[BACK]Return to rc CVS log [TXT][DIR] Up to [local] / src / etc

Annotation of src/etc/rc, Revision 1.526

1.526   ! florian     1: #      $OpenBSD: rc,v 1.525 2018/02/18 18:52:02 rpe Exp $
1.1       deraadt     2:
1.450     rpe         3: # System startup script run by init on autoboot or after single-user.
                      4: # Output and error are redirected to console by init, and the console is the
                      5: # controlling terminal.
1.454     rpe         6:
                      7: # Turn off Strict Bourne shell.
                      8: set +o sh
1.1       deraadt     9:
1.131     millert    10: # Subroutines (have to come first).
                     11:
1.456     rpe        12: # Strip in- and whole-line comments from a file.
                     13: # Strip leading and trailing whitespace if IFS is set.
                     14: # Usage: stripcom /path/to/file
1.131     millert    15: stripcom() {
1.456     rpe        16:        local _file=$1 _line
1.131     millert    17:
1.456     rpe        18:        [[ -s $_file ]] || return
                     19:
                     20:        while read _line ; do
                     21:                _line=${_line%%#*}
                     22:                [[ -n $_line ]] && print -r -- "$_line"
                     23:        done <$_file
1.131     millert    24: }
                     25:
1.456     rpe        26: # Update resource limits based on login.conf settings.
                     27: # Usage: update_limit -flag capability
1.265     millert    28: update_limit() {
1.456     rpe        29:        local _flag=$1          # ulimit flag
                     30:        local _cap=$2 _val      # login.conf capability and its value
                     31:        local _suffix
                     32:
1.490     otto       33:        for _suffix in {,-max,-cur}; do
1.456     rpe        34:                _val=$(getcap -f /etc/login.conf -s ${_cap}${_suffix} daemon 2>/dev/null)
                     35:                [[ -n $_val ]] || continue
                     36:                [[ $_val == infinity ]] && _val=unlimited
                     37:
                     38:                case $_suffix in
                     39:                -cur)   ulimit -S $_flag $_val
                     40:                        ;;
                     41:                -max)   ulimit -H $_flag $_val
                     42:                        ;;
                     43:                *)      ulimit $_flag $_val
                     44:                        return
                     45:                        ;;
                     46:                esac
1.265     millert    47:        done
                     48: }
                     49:
1.457     rpe        50: # Apply sysctl.conf(5) settings.
1.265     millert    51: sysctl_conf() {
1.520     bluhm      52:        # do not use a pipe as limits would only be applied to the subshell
                     53:        set -- $(stripcom /etc/sysctl.conf)
                     54:        while [[ $# > 0 ]] ; do
                     55:                sysctl "$1"
1.267     millert    56:
1.520     bluhm      57:                case "$1" in
1.265     millert    58:                kern.maxproc=*)
1.520     bluhm      59:                        update_limit -p maxproc
                     60:                        ;;
1.265     millert    61:                kern.maxfiles=*)
1.520     bluhm      62:                        update_limit -n openfiles
                     63:                        ;;
1.265     millert    64:                esac
1.520     bluhm      65:                shift
1.265     millert    66:        done
                     67: }
                     68:
1.457     rpe        69: # Apply mixerctl.conf(5) settings.
1.452     rpe        70: mixerctl_conf() {
1.457     rpe        71:        stripcom /etc/mixerctl.conf |
                     72:        while read _line; do
                     73:                mixerctl -q "$_line" 2>/dev/null
1.265     millert    74:        done
                     75: }
                     76:
1.457     rpe        77: # Apply wsconsctl.conf(5) settings.
1.452     rpe        78: wsconsctl_conf() {
1.457     rpe        79:        [[ -x /sbin/wsconsctl ]] || return
1.267     millert    80:
1.457     rpe        81:        stripcom /etc/wsconsctl.conf |
                     82:        while read _line; do
1.458     rpe        83:                eval "wsconsctl $_line"
1.267     millert    84:        done
                     85: }
                     86:
1.495     rpe        87: # Push the old seed into the kernel, create a future seed  and create a seed
                     88: # file for the boot-loader.
1.452     rpe        89: random_seed() {
1.427     bluhm      90:        dd if=/var/db/host.random of=/dev/random bs=65536 count=1 status=none
                     91:        chmod 600 /var/db/host.random
                     92:        dd if=/dev/random of=/var/db/host.random bs=65536 count=1 status=none
                     93:        dd if=/dev/random of=/etc/random.seed bs=512 count=1 status=none
                     94:        chmod 600 /etc/random.seed
1.312     djm        95: }
                     96:
1.450     rpe        97: # Populate net.inet.(tcp|udp).baddynamic with the contents of /etc/services so
                     98: # as to avoid randomly allocating source ports that correspond to well-known
1.451     rpe        99: # services.
1.459     rpe       100: # Usage: fill_baddynamic tcp|udp
1.452     rpe       101: fill_baddynamic() {
1.390     halex     102:        local _service=$1
1.318     djm       103:        local _sysctl="net.inet.${_service}.baddynamic"
1.459     rpe       104:
1.390     halex     105:        stripcom /etc/services |
                    106:        {
1.459     rpe       107:                _ban=
1.390     halex     108:                while IFS="     /" read _name _port _srv _junk; do
1.459     rpe       109:                        [[ $_srv == $_service ]] || continue
                    110:
                    111:                        _ban="${_ban:+$_ban,}+$_port"
                    112:
1.390     halex     113:                        # Flush before argv gets too long
1.459     rpe       114:                        if ((${#_ban} > 1024)); then
                    115:                                sysctl -q "$_sysctl=$_ban"
                    116:                                _ban=
1.390     halex     117:                        fi
                    118:                done
1.459     rpe       119:                [[ -n $_ban ]] && sysctl -q "$_sysctl=$_ban"
1.390     halex     120:        }
1.318     djm       121: }
                    122:
1.450     rpe       123: # Start daemon using the rc.d daemon control scripts.
1.451     rpe       124: # Usage: start_daemon daemon1 daemon2 daemon3
1.452     rpe       125: start_daemon() {
1.460     rpe       126:        local _daemon
                    127:
                    128:        for _daemon; do
                    129:                eval "_do=\${${_daemon}_flags}"
                    130:                [[ $_do != NO ]] && /etc/rc.d/${_daemon} start
1.353     robert    131:        done
                    132: }
                    133:
1.469     tim       134: # Generate keys for isakmpd, iked and sshd if they don't exist yet.
1.452     rpe       135: make_keys() {
1.460     rpe       136:        local _isakmpd_key=/etc/isakmpd/private/local.key
                    137:        local _isakmpd_pub=/etc/isakmpd/local.pub
                    138:        local _iked_key=/etc/iked/private/local.key
                    139:        local _iked_pub=/etc/iked/local.pub
                    140:
                    141:        if [[ ! -f $_isakmpd_key ]]; then
                    142:                echo -n "openssl: generating isakmpd/iked RSA keys... "
                    143:                if openssl genrsa -out $_isakmpd_key 2048 >/dev/null 2>&1 &&
                    144:                        chmod 600 $_isakmpd_key &&
                    145:                        openssl rsa -out $_isakmpd_pub -in $_isakmpd_key \
                    146:                            -pubout >/dev/null 2>&1; then
1.373     deraadt   147:                        echo done.
                    148:                else
                    149:                        echo failed.
                    150:                fi
                    151:        fi
                    152:
1.460     rpe       153:        if [[ ! -f $_iked_key ]]; then
1.373     deraadt   154:                # Just copy the generated isakmpd key
1.460     rpe       155:                cp $_isakmpd_key $_iked_key
                    156:                chmod 600 $_iked_key
                    157:                cp $_isakmpd_pub $_iked_pub
1.373     deraadt   158:        fi
                    159:
                    160:        ssh-keygen -A
1.524     florian   161:
                    162:        if [[ ! -f /etc/soii.key ]]; then
1.525     rpe       163:                openssl rand -hex 16 > /etc/soii.key &&
1.524     florian   164:                    chmod 600 /etc/soii.key && sysctl -q \
                    165:                    "net.inet6.ip6.soiikey=$(</etc/soii.key)"
                    166:        fi
1.373     deraadt   167: }
                    168:
1.483     rpe       169: # Re-link libraries, placing the objects in a random order.
1.481     rpe       170: reorder_libs() {
1.521     rpe       171:        local _error=false _dkdev _liba _libas _mp _ro_list _tmpdir
1.522     rpe       172:        local _relink=/usr/share/relink
1.498     tb        173:
                    174:        [[ $library_aslr == NO ]] && return
                    175:
1.521     rpe       176:        # Skip if /usr/lib, /usr/libexec or /usr/share/relink are on nfs mounted
                    177:        # filesystems, otherwise record which ones are mounted read-only.
                    178:        for _d in /usr/{lib,libexec,share/relink}; do
                    179:                _dkdev=$(df $_d | sed '1d;s/ .*//')
                    180:                _mp=$(mount | grep "^$_dkdev")
                    181:                [[ $_mp == *" type nfs "* ]] && return
                    182:                if [[ $_mp == *" type ffs "*"read-only"* &&
                    183:                        $_ro_list != *${_mp%% *}* ]]; then
                    184:                                _ro_list="$_ro_list ${_mp%% *}"
                    185:                fi
                    186:        done
1.484     rpe       187:
1.481     rpe       188:        echo -n 'reordering libraries:'
1.523     tb        189:
1.521     rpe       190:        # Remount the (read-only) filessystems in _ro_list as read-write.
                    191:        for _mp in $_ro_list; do
                    192:                if ! mount -u -w $_mp; then
1.481     rpe       193:                        echo ' failed.'
                    194:                        return
                    195:                fi
1.521     rpe       196:        done
1.509     tb        197:
                    198:        # Only choose the latest version of the libraries.
1.522     rpe       199:        for _liba in $_relink/usr/lib/lib{c,crypto}; do
1.513     zhuk      200:                _libas="$_libas $(ls $_liba.so.+([0-9.]).a | sort -rV | head -1)"
1.509     tb        201:        done
1.481     rpe       202:
1.522     rpe       203:        for _liba in $_relink/usr/libexec/ld.so.a $_libas; do
                    204:                _tmpdir=$(mktemp -dq $_relink/_rebuild.XXXXXXXXXXXX) &&
1.517     rpe       205:                (
                    206:                set -o errexit
                    207:                _install='install -F -S -o root -g bin -m 0444'
                    208:                _lib=${_liba##*/}
                    209:                _lib=${_lib%.a}
1.522     rpe       210:                _lib_dir=${_liba#$_relink}
1.523     tb        211:                _lib_dir=${_lib_dir%/*}
1.517     rpe       212:                cd $_tmpdir
                    213:                ar x $_liba
                    214:                if [[ $_lib == ld.so ]]; then
                    215:                        ld -g -x -e _dl_start \
                    216:                            --version-script=Symbols.map --shared -Bsymbolic \
                    217:                            --no-undefined -o ld.so.test $(ls *.o | sort -R)
                    218:                        chmod u+x test-ld.so
                    219:                        [[ $(./test-ld.so ok) == './test-ld.so: ok!' ]]
                    220:                        $_install /usr/libexec/ld.so /usr/libexec/ld.so.save
1.521     rpe       221:                        $_install ld.so.test $_lib_dir/ld.so
1.517     rpe       222:                else
1.475     deraadt   223:                        cc -shared -o $_lib $(ls *.so | sort -R) $(cat .ldadd)
                    224:                        [[ -s $_lib ]] && file $_lib | fgrep -q 'shared object'
                    225:                        LD_BIND_NOW=1 LD_LIBRARY_PATH=$_tmpdir awk 'BEGIN {exit 0}'
1.500     deraadt   226:                        LD_BIND_NOW=1 LD_LIBRARY_PATH=$_tmpdir openssl \
                    227:                            x509 -in /etc/ssl/cert.pem -out /dev/null
1.521     rpe       228:                        $_install $_lib $_lib_dir/$_lib
1.517     rpe       229:                fi
1.485     rpe       230:                ) || { _error=true; break; }
1.475     deraadt   231:        done
1.481     rpe       232:
1.522     rpe       233:        rm -rf $_relink/_rebuild.*
1.485     rpe       234:
1.481     rpe       235:        # Restore previous mount state if it was changed.
1.521     rpe       236:        for _mp in $_ro_list; do
                    237:                mount -u -r $_mp || _error=true
                    238:        done
1.482     deraadt   239:
1.485     rpe       240:        if $_error; then
                    241:                echo ' failed.'
                    242:        else
                    243:                echo ' done.'
                    244:        fi
1.475     deraadt   245: }
                    246:
1.483     rpe       247: # Run rc.* script and email output to root.
                    248: # Usage: run_upgrade_script firsttime|sysmerge
1.477     ajacouto  249: run_upgrade_script() {
                    250:        local _suffix=$1
1.491     rpe       251:
1.477     ajacouto  252:        [[ -n $_suffix ]] || return 1
1.491     rpe       253:
1.477     ajacouto  254:        if [[ -f /etc/rc.$_suffix ]]; then
1.516     ajacouto  255:                echo "running rc.$_suffix"
1.477     ajacouto  256:                mv /etc/rc.$_suffix /etc/rc.$_suffix.run
                    257:                . /etc/rc.$_suffix.run 2>&1 | tee /dev/tty |
                    258:                        mail -Es "$(hostname) rc.$_suffix output" root >/dev/null
                    259:        fi
                    260:        rm -f /etc/rc.$_suffix.run
                    261: }
                    262:
1.462     rpe       263: # Check filesystems, optionally by using a fsck(8) flag.
                    264: # Usage: do_fsck [-flag]
1.452     rpe       265: do_fsck() {
1.462     rpe       266:        fsck -p "$@"
1.429     claudio   267:        case $? in
1.462     rpe       268:        0)      ;;
                    269:        2)      exit 1
1.429     claudio   270:                ;;
1.462     rpe       271:        4)      echo "Rebooting..."
1.429     claudio   272:                reboot
                    273:                echo "Reboot failed; help!"
                    274:                exit 1
                    275:                ;;
1.462     rpe       276:        8)      echo "Automatic file system check failed; help!"
1.429     claudio   277:                exit 1
                    278:                ;;
1.462     rpe       279:        12)     echo "Boot interrupted."
1.429     claudio   280:                exit 1
                    281:                ;;
1.462     rpe       282:        130)    # Interrupt before catcher installed.
1.429     claudio   283:                exit 1
                    284:                ;;
1.462     rpe       285:        *)      echo "Unknown error; help!"
1.429     claudio   286:                exit 1
                    287:                ;;
                    288:        esac
                    289: }
                    290:
1.450     rpe       291: # End subroutines.
1.131     millert   292:
1.1       deraadt   293: stty status '^T'
                    294:
1.450     rpe       295: # Set shell to ignore SIGINT (2), but not children; shell catches SIGQUIT (3)
                    296: # and returns to single user after fsck.
1.1       deraadt   297: trap : 2
1.450     rpe       298: trap : 3       # Shouldn't be needed.
1.1       deraadt   299:
1.463     rpe       300: export HOME=/
                    301: export INRC=1
                    302: export PATH=/sbin:/bin:/usr/sbin:/usr/bin
1.395     deraadt   303:
1.450     rpe       304: # Must set the domainname before rc.conf, so YP startup choices can be made.
1.463     rpe       305: if [[ -s /etc/defaultdomain ]]; then
                    306:        domainname "$(stripcom /etc/defaultdomain)"
1.395     deraadt   307: fi
1.108     deraadt   308:
1.495     rpe       309: # Get local functions from rc.subr to load rc.conf into scope.
1.428     robert    310: FUNCS_ONLY=1 . /etc/rc.d/rc.subr
                    311: _rc_parse_conf
1.343     robert    312:
1.495     rpe       313: # If executed with the 'shutdown' parameter by the halt, reboot or shutdown:
                    314: # - update seed files
                    315: # - execute the rc.d scripts specified by $pkg_scripts in reverse order
                    316: # - bring carp interfaces down gracefully
1.463     rpe       317: if [[ $1 == shutdown ]]; then
1.525     rpe       318:        if echo 2>/dev/null >>/var/db/host.random ||
1.437     bluhm     319:            echo 2>/dev/null >>/etc/random.seed; then
                    320:                random_seed
                    321:        else
                    322:                echo warning: cannot write random seed to disk
                    323:        fi
1.416     rpe       324:
1.469     tim       325:        # If we are in secure level 0, assume single user mode.
1.463     rpe       326:        if (($(sysctl -n kern.securelevel) == 0)); then
                    327:                echo 'single user: not running shutdown scripts'
                    328:        else
1.514     rpe       329:                set -A _d -- $pkg_scripts
                    330:                _i=${#_d[*]}
                    331:                if ((_i)); then
1.413     deraadt   332:                        echo -n 'stopping package daemons:'
1.514     rpe       333:                        while ((--_i >= 0)); do
                    334:                                [[ -x /etc/rc.d/${_d[_i]} ]] &&
                    335:                                        /etc/rc.d/${_d[_i]} stop
1.413     deraadt   336:                        done
                    337:                        echo '.'
                    338:                fi
                    339:
1.463     rpe       340:                [[ -f /etc/rc.shutdown ]] && sh /etc/rc.shutdown
1.413     deraadt   341:        fi
1.240     mcbride   342:
1.463     rpe       343:        ifconfig | while read _if _junk; do
1.474     rpe       344:                [[ $_if == carp+([0-9]): ]] && ifconfig ${_if%:} down
1.413     deraadt   345:        done
1.246     mcbride   346:
1.108     deraadt   347:        exit 0
1.1       deraadt   348: fi
1.98      jakob     349:
1.482     deraadt   350: # Add swap block-devices.
1.172     miod      351: swapctl -A -t blk
1.170     deraadt   352:
1.495     rpe       353: # Run filesystem check unless a /fastboot file exists.
1.463     rpe       354: if [[ -e /fastboot ]]; then
1.1       deraadt   355:        echo "Fast boot: skipping disk checks."
1.463     rpe       356: elif [[ $1 == autoboot ]]; then
1.1       deraadt   357:        echo "Automatic boot in progress: starting file system checks."
1.429     claudio   358:        do_fsck
1.1       deraadt   359: fi
                    360:
1.495     rpe       361: # From now on, allow user to interrupt (^C) the boot process.
1.1       deraadt   362: trap "echo 'Boot interrupted.'; exit 1" 3
                    363:
1.495     rpe       364: # Unmount all filesystems except root.
1.1       deraadt   365: umount -a >/dev/null 2>&1
1.495     rpe       366:
                    367: # Mount all filesystems except those of type NFS and VND.
1.303     grunk     368: mount -a -t nonfs,vnd
1.177     deraadt   369:
1.495     rpe       370: # Re-mount the root filesystem read/writeable. (root on nfs requires this,
                    371: # others aren't hurt.)
                    372: mount -uw /
1.499     deraadt   373: chmod og-rwx /bsd
1.503     deraadt   374: ln -fh /bsd /bsd.booted
1.495     rpe       375:
                    376: rm -f /fastboot
                    377:
1.505     tedu      378: # Set flags on ttys.
1.1       deraadt   379: echo 'setting tty flags'
                    380: ttyflags -a
1.77      angelos   381:
1.464     rpe       382: # Set keyboard encoding.
                    383: if [[ -x /sbin/kbd && -s /etc/kbdtype ]]; then
                    384:        kbd "$(cat /etc/kbdtype)"
1.252     mcbride   385: fi
                    386:
1.279     deraadt   387: wsconsctl_conf
                    388:
1.464     rpe       389: # Set initial temporary pf rule set.
                    390: if [[ $pf != NO ]]; then
1.511     rpe       391:        RULES="
1.510     rpe       392:        block all
                    393:        pass on lo0
                    394:        pass in proto tcp from any to any port ssh keep state
                    395:        pass out proto { tcp, udp } from any to any port domain keep state
                    396:        pass out inet proto icmp all icmp-type echoreq keep state
                    397:        pass out inet proto udp from any port bootpc to any port bootps
1.511     rpe       398:        pass in inet proto udp from any port bootps to any port bootpc"
1.510     rpe       399:
1.257     grange    400:        if ifconfig lo0 inet6 >/dev/null 2>&1; then
1.510     rpe       401:                RULES="$RULES
                    402:                pass out inet6 proto icmp6 all icmp6-type neighbrsol
                    403:                pass in inet6 proto icmp6 all icmp6-type neighbradv
                    404:                pass out inet6 proto icmp6 all icmp6-type routersol
                    405:                pass in inet6 proto icmp6 all icmp6-type routeradv
                    406:                pass out inet6 proto udp from any port dhcpv6-client to any port dhcpv6-server
                    407:                pass in inet6 proto udp from any port dhcpv6-server to any port dhcpv6-client"
1.257     grange    408:        fi
1.510     rpe       409:
                    410:        RULES="$RULES
                    411:        pass in proto carp keep state (no-sync)
                    412:        pass out proto carp !received-on any keep state (no-sync)"
                    413:
1.512     rpe       414:        if (($(sysctl -n vfs.mounts.nfs 2>/dev/null) > 0)); then
1.511     rpe       415:                # Don't kill NFS.
1.510     rpe       416:                RULES="set reassemble yes no-df
                    417:                $RULES
                    418:                pass in proto { tcp, udp } from any port { sunrpc, nfsd } to any
                    419:                pass out proto { tcp, udp } from any to any port { sunrpc, nfsd } !received-on any"
1.474     rpe       420:        fi
1.511     rpe       421:
1.464     rpe       422:        print -- "$RULES" | pfctl -f -
1.269     dhartmei  423:        pfctl -e
1.176     kjell     424: fi
1.318     djm       425:
                    426: fill_baddynamic udp
                    427: fill_baddynamic tcp
1.176     kjell     428:
1.267     millert   429: sysctl_conf
1.260     jsg       430:
1.501     florian   431: start_daemon slaacd >/dev/null 2>&1
                    432:
1.1       deraadt   433: echo 'starting network'
1.464     rpe       434:
                    435: # Set carp interlock by increasing the demotion counter.
                    436: # Prevents carp from preempting until the system is booted.
1.289     henning   437: ifconfig -g carp carpdemote 128
1.464     rpe       438:
1.439     ajacouto  439: sh /etc/netstart
1.464     rpe       440:
1.495     rpe       441: # Any write triggers a rekey.
                    442: dmesg >/dev/random
1.176     kjell     443:
1.450     rpe       444: # Load pf rules and bring up pfsync interface.
1.464     rpe       445: if [[ $pf != NO ]]; then
                    446:        if [[ -f /etc/pf.conf ]]; then
1.449     ajacouto  447:                pfctl -f /etc/pf.conf
1.309     mpf       448:        fi
1.464     rpe       449:        if [[ -f /etc/hostname.pfsync0 ]]; then
1.435     deraadt   450:                sh /etc/netstart pfsync0
1.367     deraadt   451:        fi
1.176     kjell     452: fi
1.1       deraadt   453:
1.278     otto      454: mount -s /usr >/dev/null 2>&1
                    455: mount -s /var >/dev/null 2>&1
1.180     deraadt   456:
1.389     deraadt   457: random_seed
1.475     deraadt   458:
1.481     rpe       459: reorder_libs
1.29      deraadt   460:
1.450     rpe       461: # Clean up left-over files.
1.492     jca       462: rm -f /etc/nologin /var/spool/lock/LCK.*
1.247     henning   463: (cd /var/run && { rm -rf -- *; install -c -m 664 -g utmp /dev/null utmp; })
1.196     beck      464: (cd /var/authpf && rm -rf -- *)
1.96      alex      465:
1.495     rpe       466: # Save a copy of the boot messages.
                    467: dmesg >/var/run/dmesg.boot
1.55      deraadt   468:
1.373     deraadt   469: make_keys
                    470:
1.379     deraadt   471: echo -n 'starting early daemons:'
1.501     florian   472: start_daemon syslogd ldattach pflogd nsd rebound unbound ntpd
1.429     claudio   473: start_daemon iscsid isakmpd iked sasyncd ldapd npppd
1.353     robert    474: echo '.'
1.280     hshoexer  475:
1.450     rpe       476: # Load IPsec rules.
1.464     rpe       477: if [[ $ipsec != NO && -f /etc/ipsec.conf ]]; then
                    478:        ipsecctl -f /etc/ipsec.conf
1.40      provos    479: fi
1.1       deraadt   480:
1.379     deraadt   481: echo -n 'starting RPC daemons:'
1.399     dlg       482: start_daemon portmap ypldap
1.466     deraadt   483: rm -f /var/run/ypbind.lock
1.464     rpe       484: if [[ -n $(domainname) ]]; then
1.470     deraadt   485:        start_daemon ypserv ypbind
1.376     deraadt   486: fi
1.399     dlg       487: start_daemon mountd nfsd lockd statd amd
1.1       deraadt   488: echo '.'
1.58      deraadt   489:
1.464     rpe       490: # Check and mount remaining file systems and enable additional swap.
1.278     otto      491: mount -a
1.172     miod      492: swapctl -A -t noblk
1.429     claudio   493: do_fsck -N
                    494: mount -a -N
1.1       deraadt   495:
1.450     rpe       496: # /var/crash should be a directory or a symbolic link to the crash directory
                    497: # if core dumps are to be saved.
1.464     rpe       498: if [[ -d /var/crash ]]; then
                    499:        savecore $savecore_flags /var/crash
1.487     rpe       500: fi
                    501:
                    502: # Store ACPI tables in /var/db/acpi to be used by sendbug(1).
                    503: if [[ -x /usr/sbin/acpidump ]]; then
                    504:        acpidump -o /var/db/acpi/
1.90      art       505: fi
                    506:
1.464     rpe       507: if [[ $check_quotas == YES ]]; then
1.41      downsj    508:        echo -n 'checking quotas:'
                    509:        quotacheck -a
                    510:        echo ' done.'
                    511:        quotaon -a
                    512: fi
1.1       deraadt   513:
1.464     rpe       514: # Build kvm(3) and /dev databases.
                    515: kvm_mkdb
1.1       deraadt   516: dev_mkdb
1.464     rpe       517:
                    518: # Set proper permission for the tty device files.
1.101     deraadt   519: chmod 666 /dev/tty[pqrstuvwxyzPQRST]*
1.226     millert   520: chown root:wheel /dev/tty[pqrstuvwxyzPQRST]*
1.1       deraadt   521:
1.495     rpe       522: # Check for the password temp/lock file.
1.467     rpe       523: if [[ -f /etc/ptmp ]]; then
1.1       deraadt   524:        logger -s -p auth.err \
1.376     deraadt   525:            'password file may be incorrect -- /etc/ptmp exists'
1.32      deraadt   526: fi
                    527:
1.49      millert   528: echo clearing /tmp
                    529:
1.450     rpe       530: # Prune quickly with one rm, then use find to clean up /tmp/[lqv]*
                    531: # (not needed with mfs /tmp, but doesn't hurt there...).
1.444     deraadt   532: (cd /tmp && rm -rf [a-km-pr-uw-zA-Z]*)
1.339     sthen     533: (cd /tmp &&
1.443     millert   534:     find . -maxdepth 1 ! -name . ! -name lost+found ! -name quota.user \
1.444     deraadt   535:        ! -name quota.group ! -name vi.recover -execdir rm -rf -- {} \;)
1.373     deraadt   536:
1.462     rpe       537: # Create Unix sockets directories for X if needed and make sure they have
                    538: # correct permissions.
                    539: [[ -d /usr/X11R6/lib ]] && mkdir -m 1777 /tmp/.{X11,ICE}-unix
1.203     hugh      540:
1.467     rpe       541: [[ -f /etc/rc.securelevel ]] && sh /etc/rc.securelevel
                    542:
1.450     rpe       543: # rc.securelevel did not specifically set -1 or 2, so select the default: 1.
1.467     rpe       544: (($(sysctl -n kern.securelevel) == 0)) && sysctl kern.securelevel=1
                    545:
1.1       deraadt   546:
1.450     rpe       547: # Patch /etc/motd.
1.467     rpe       548: if [[ ! -f /etc/motd ]]; then
1.34      deraadt   549:        install -c -o root -g wheel -m 664 /dev/null /etc/motd
                    550: fi
1.467     rpe       551: if T=$(mktemp /tmp/_motd.XXXXXXXXXX); then
1.451     rpe       552:        sysctl -n kern.version | sed 1q >$T
1.494     schwarze  553:        sed -n '/^$/,$p' </etc/motd >>$T
1.102     millert   554:        cmp -s $T /etc/motd || cp $T /etc/motd
                    555:        rm -f $T
                    556: fi
1.34      deraadt   557:
1.467     rpe       558: if [[ $accounting == YES ]]; then
                    559:        [[ ! -f /var/account/acct ]] && touch /var/account/acct
                    560:        echo 'turning on accounting'
                    561:        accton /var/account/acct
1.1       deraadt   562: fi
                    563:
1.467     rpe       564: if [[ -x /sbin/ldconfig ]]; then
1.115     deraadt   565:        echo 'creating runtime link editor directory cache.'
1.471     rpe       566:        [[ -d /usr/local/lib ]] && shlib_dirs="/usr/local/lib $shlib_dirs"
1.467     rpe       567:        [[ -d /usr/X11R6/lib ]] && shlib_dirs="/usr/X11R6/lib $shlib_dirs"
1.115     deraadt   568:        ldconfig $shlib_dirs
1.231     millert   569: fi
                    570:
1.451     rpe       571: echo 'preserving editor files.'; /usr/libexec/vi.recover
1.244     markus    572:
1.477     ajacouto  573: # If rc.sysmerge exists, run it just once, and make sure it is deleted.
                    574: run_upgrade_script sysmerge
                    575:
1.353     robert    576: echo -n 'starting network daemons:'
1.489     reyk      577: start_daemon ldomd sshd switchd snmpd ldpd ripd ospfd ospf6d bgpd ifstated
1.526   ! florian   578: start_daemon relayd dhcpd dhcrelay mrouted dvmrpd radiusd eigrpd route6d rtadvd
1.442     matthieu  579: start_daemon hostapd lpd smtpd slowcgi httpd ftpd
1.461     sthen     580: start_daemon ftpproxy ftpproxy6 tftpd tftpproxy identd inetd rarpd bootparamd
1.488     reyk      581: start_daemon rbootd mopd vmd spamd spamlogd sndiod
1.377     robert    582: echo '.'
1.335     deraadt   583:
1.450     rpe       584: # If rc.firsttime exists, run it just once, and make sure it is deleted.
1.477     ajacouto  585: run_upgrade_script firsttime
1.352     ajacouto  586:
1.450     rpe       587: # Run rc.d(8) scripts from packages.
1.467     rpe       588: if [[ -n $pkg_scripts ]]; then
1.352     ajacouto  589:        echo -n 'starting package daemons:'
1.467     rpe       590:        for _daemon in $pkg_scripts; do
                    591:                if [[ -x /etc/rc.d/$_daemon ]]; then
                    592:                        start_daemon $_daemon
1.410     espie     593:                else
1.467     rpe       594:                        echo -n " ${_daemon}(absent)"
1.410     espie     595:                fi
1.352     ajacouto  596:        done
                    597:        echo '.'
                    598: fi
1.17      deraadt   599:
1.467     rpe       600: [[ -f /etc/rc.local ]] && sh /etc/rc.local
1.73      millert   601:
1.495     rpe       602: # Disable carp interlock.
                    603: ifconfig -g carp -carpdemote 128
1.286     mcbride   604:
1.379     deraadt   605: mixerctl_conf
1.467     rpe       606:
1.379     deraadt   607: echo -n 'starting local daemons:'
1.493     matthieu  608: start_daemon apmd sensorsd hotplugd watchdogd cron wsmoused xenodm
1.73      millert   609: echo '.'
1.502     rpe       610:
1.515     rpe       611: # Re-link the kernel, placing the objects in a random order.
                    612: # Replace current with relinked kernel and inform root about it.
                    613: /usr/libexec/reorder_kernel &
1.1       deraadt   614:
                    615: date
                    616: exit 0