]> git.pld-linux.org Git - projects/rc-scripts.git/blob - rc.d/rc.sysinit
28da1a9428d7c1761ae91c3abf6da141c7aadcab
[projects/rc-scripts.git] / rc.d / rc.sysinit
1 #!/bin/sh
2 #
3 # /etc/rc.d/rc.sysinit - run once at boot time
4 # $Id$
5 #
6 # Taken in part from Miquel van Smoorenburg's bcheckrc.
7 #
8
9 # reasonable start values for bootsplash progress.
10 export progress=0
11 export sscripts=45
12 export kscripts=45
13
14 # NLS
15 if [ -r /etc/sysconfig/i18n ]; then
16         . /etc/sysconfig/i18n
17         [ -n "$LANG" ] && export LANG || unset LANG
18         [ -n "$LC_CTYPE" ] && export LC_CTYPE || unset LC_CTYPE
19         [ -n "$LC_COLLATE" ] && export LC_COLLATE || unset LC_COLLATE
20         [ -n "$LC_MESSAGES" ] && export LC_MESSAGES || unset LC_MESSAGES
21         [ -n "$LC_NUMERIC" ] && export LC_NUMERIC || unset LC_NUMERIC
22         [ -n "$LC_MONETARY" ] && export LC_MONETARY || unset LC_MONETARY
23         [ -n "$LC_TIME" ] && export LC_TIME || unset LC_TIME
24         [ -n "$LC_ALL" ] && export LC_ALL || unset LC_ALL
25         [ -n "$LANGUAGE" ] && export LANGUAGE || unset LANGUAGE
26         [ -n "$LINGUAS" ] && export LINGUAS || unset LINGUAS
27 fi
28
29 # Read network config data
30 if [ -r /etc/sysconfig/network ]; then
31         . /etc/sysconfig/network
32 else
33         NETWORKING=no
34         HOSTNAME=localhost
35 fi
36
37 CONSOLE_LOGLEVEL=1
38
39 # Read functions
40 . /lib/rc-scripts/functions
41
42 disable_selinux() {
43         local _d selinuxfs _t _r
44
45         while read _d selinuxfs _t _r; do
46                 [ "$_t" = "selinuxfs" ] && break
47         done </proc/mounts
48         echo "*** Warning -- SELinux is active"
49         echo "*** Disabling security enforcement for system recovery."
50         echo "*** Run 'setenforce 1' to reenable."
51         echo "0" > $selinuxfs/enforce
52 }
53
54 relabel_selinux() {
55         local _d selinuxfs _t _r
56
57         while read _d selinuxfs _t _r; do
58                 [ "$_t" = "selinuxfs" ] && break
59         done </proc/mounts
60         echo "
61          *** Warning -- SELinux relabel is required. ***
62          *** Disabling security enforcement.         ***
63          *** Relabeling could take a very long time, ***
64          *** depending on file system size.          ***
65          "
66         echo "0" > $selinuxfs/enforce
67         /sbin/fixfiles -F relabel > /dev/null 2>&1
68         rm -f /.autorelabel
69         echo "*** Enabling security enforcement.         ***"
70         echo $SELINUX > $selinuxfs/enforce
71 }
72
73 # Remove duplicate entries from mtab (for vserver guest use only)
74 clean_vserver_mtab() {
75         :>/etc/mtab.clean
76         while read device mountpoint line; do
77                 grep -qs "$mountpoint" /etc/mtab.clean || \
78                         echo "$device $mountpoint $line" >> /etc/mtab.clean
79         done < /etc/mtab
80         cat /etc/mtab.clean > /etc/mtab
81         rm -f /etc/mtab.clean
82 }
83
84 # Loads modules from /etc/modules, /etc/modules.X.Y and /etc/modules.X.Y.Z
85 load_kernel_modules() {
86         local modules_file=$1
87         local _x _y _z v v1 old_IFS kernel kerneleq
88         {
89                 read _x _y v _z
90                 old_IFS=$IFS
91                 # strip _* or -* from versions like: "2.6.25_vanilla-1", "2.6.25-1"
92                 IFS='_-'
93                 set -- $v
94                 v1=${1}
95                 IFS='.'
96                 set -- $v1
97                 IFS=$old_IFS
98
99                 kernel="$1.$2"
100                 kerneleq="$1.$2.$3"
101         } < /proc/version
102
103         local module args
104         # Loop over every line in modules file
105         ( \
106                 grep -hvE '^(#|[[:blank:]]*$)' /etc/$modules_file /etc/$modules_file.$kernel /etc/$modules_file.$kerneleq 2>/dev/null
107                 echo '' # make sure there is a LF at the end
108         ) | while read module args; do
109                 [ -z "$module" ] && continue
110                 # strip comments
111                 args=${args%%#*}
112                 show "Loading %s kernel module(s)" "$module"
113                 busy
114                 modprobe -s $module -- $args && ok || fail
115         done
116 }
117
118 check_root_fs() {
119         show "Checking root filesystem"; started
120         initlog -c "fsck -C -T -a $fsckoptions /"
121         rc=$?
122
123         # A return of 4 or higher means there were serious problems.
124         if [ $rc -gt 3 ]; then
125                 [ -e /proc/splash ] && echo "verbose" > /proc/splash
126                 # don't use '\n' in nls macro !
127                 echo
128                 echo
129                 nls "*** An error occurred during the file system check."
130                 nls "*** Dropping you to a shell; the system will reboot"
131                 nls "*** when you leave the shell."
132                 echo
133
134                 PS1="$(nls '(Repair filesystem)# ')"; export PS1
135                 [ "$SELINUX" = "1" ] && disable_selinux
136                 if ! is_no "$RUN_SULOGIN_ON_ERR"; then
137                         /sbin/sulogin
138                 else
139                         /bin/sh
140                 fi
141
142                 run_cmd "Unmounting file systems" umount -a
143                 mount -n -o remount,ro /
144                 run_cmd "Automatic reboot in progress" reboot
145         # A return of 2 or 3 means that filesystem was repaired but we need
146         # to reboot.
147         elif [ "$rc" = "2" -o "$rc" = "3" ]; then
148                 [ -e /proc/splash ] && echo "verbose" > /proc/splash
149                 echo
150                 nls "*** Filesystem was repaired but system needs to be"
151                 nls "*** rebooted before mounting it."
152                 nls "*** REBOOTING ***"
153                 echo
154
155                 run_cmd "Unmounting file systems" umount -a
156                 mount -n -o remount,ro /
157                 run_cmd "Automatic reboot in progress" reboot
158         elif [ "$rc" = "1" ]; then
159                 _RUN_QUOTACHECK=1
160         fi
161 }
162
163 # boot logging to /var/log/boot.log. install showconsole package to get it.
164 if [ -x /sbin/blogd ] && ! is_no "$RC_BOOTLOG"; then
165         RC_BOOTLOG=1
166 else
167         RC_BOOTLOG=
168 fi
169
170 if ! is_yes "$VSERVER" ; then
171         if [ -d /run ]; then
172                 is_fsmounted tmpfs /run || mount -n -t tmpfs run /run
173         fi
174
175         # we need /proc mounted before everything
176         is_fsmounted proc /proc || mount -n /proc || mount -n -o gid=17,hidepid=2 -t proc /proc /proc
177
178         # Only read this once.
179         cmdline=$(cat /proc/cmdline)
180         if strstr "$cmdline" "pld.no-upstart" ; then
181                 USE_UPSTART="no"
182         fi
183
184         # sysfs is also needed before any other things (under kernel > 2.5)
185         if grep -q sysfs /proc/filesystems 2>/dev/null ; then
186                 is_fsmounted sysfs /sys || mount -n -o gid=17 -t sysfs sysfs /sys
187                 if grep -q securityfs /proc/filesystems 2>/dev/null ; then
188                         mount -n -o gid=17 -t securityfs securityfs /sys/kernel/security
189                 fi
190         fi
191
192         # selinux
193         if grep -q selinuxfs /proc/filesystems 2>/dev/null && ! is_fsmounted selinuxfs /selinux; then
194                 mount -n -o gid=17 -t selinuxfs selinuxfs /selinux
195         fi
196
197         # PLD Linux LiveCD support
198         if [ -x /etc/rc.d/rc.live ]; then
199                 /etc/rc.d/rc.live
200         fi
201
202         # Choose Hardware profile
203         if [ -f /etc/sysconfig/hwprof ]; then
204                 . /etc/sysconfig/hwprof
205                 if is_yes "${HWPROFILES}" && [ -x /sbin/hwprofile -a -d /etc/sysconfig/hwprofiles/data ]; then
206                         mount -n / -o rw,remount
207                         /sbin/hwprofile -qf
208                         mount -n / -o ro,remount
209                 fi
210         fi
211
212         # Disable splash when requested
213         is_no "$BOOT_SPLASH" && [ -e /proc/splash ] && echo "0" > /proc/splash
214
215         # Check SELinux status
216         selinuxfs=$(awk '/ selinuxfs / { print $2 }' /proc/mounts 2> /dev/null)
217         SELINUX=
218         if [ -n "$selinuxfs" ] && [ "$(cat /proc/self/attr/current)" != "kernel" ]; then
219                 if [ -r $selinuxfs/enforce ] ; then
220                         SELINUX=$(cat $selinuxfs/enforce)
221                 else
222                         # assume enforcing if you can't read it
223                         SELINUX=1
224                 fi
225         fi
226
227         if [ -x /sbin/restorecon ] && is_fsmounted tmpfs /dev; then
228                 /sbin/restorecon -R /dev 2>/dev/null
229         fi
230
231         [ -z "${CONSOLETYPE}" ] && CONSOLETYPE="$(/sbin/consoletype)"
232
233         if [ "$CONSOLETYPE" = "vt" -a -x /sbin/setsysfont ]; then
234                 /sbin/setsysfont
235         fi
236 fi
237
238
239 # Print welcome message
240 nls "\t\t\t%sPowered by %sPLD Linux Distribution%s" "$(termput setaf $CPOWEREDBY)" "$(termput setaf $CPLD)" "$(termput op)"
241 if ! is_no "$RC_PROMPT"; then
242         nls -n "\t\t  Press %sI%s to enter interactive startup" "$(termput setaf $CI)" "$(termput op)"
243         echo
244 fi
245
246 # Set the hostname
247 if [ -z "${HOSTNAME}" ]; then
248         show "$(nls 'Host:') $(hostname)" ; ok
249 else
250         run_cmd "$(nls 'Host:') ${HOSTNAME}" hostname ${HOSTNAME}
251 fi
252
253 # Set the NIS domain name
254 if [ -n "$NISDOMAIN" ]; then
255         run_cmd "$(nls 'NIS Domain:') ${NISDOMAIN}" domainname $NISDOMAIN
256 else
257         domainname ""
258 fi
259
260 if ! is_yes "$VSERVER"; then
261         # Set console loglevel
262         if [ -n "$CONSOLE_LOGLEVEL" ]; then
263                 dmesg -n $CONSOLE_LOGLEVEL
264         fi
265
266         if ! is_no "$START_UDEV" && [ -x /sbin/start_udev ]; then
267                 is_fsmounted devtmpfs /dev || mount -n -t devtmpfs devtmpfs /dev
268                 load_kernel_modules modules.preudev
269                 /sbin/start_udev
270                 [ -x /sbin/initctl ] && /sbin/initctl -q start udev
271         elif [ -x /lib/firmware/firmware-loader.sh ]; then
272                 /sbin/sysctl -e -w kernel.hotplug=/lib/firmware/firmware-loader.sh > /dev/null 2>&1
273         fi
274
275         # Unmount the initrd, if necessary
276         if grep -q /initrd /proc/mounts 2>/dev/null && ! grep -q /initrd/loopfs /proc/mounts 2>/dev/null; then
277                 umount /initrd/dev 2>/dev/null
278                 umount /initrd
279                 /sbin/blockdev --flushbufs /dev/ram0 >/dev/null 2>&1
280         fi
281
282         # Start logging console output since we have all /dev stuff setup
283         if [ "$RC_BOOTLOG" ]; then
284                 /sbin/blogd
285         fi
286
287         # Configure Linux kernel (initial configuration, some required modules still
288         # may be missing).
289         sysctl -e -p /etc/sysctl.conf > /dev/null 2>&1
290
291         # Check if timezone definition is available
292         if [ -e /etc/localtime ] && [ -e /dev/rtc -o -e /dev/rtc0 ] ; then
293                 if run_cmd "$(nls 'Setting clock')" hwclock --hctosys; then
294                         show "$(nls 'Today`s date:') $(LC_CTYPE=C date)"; ok
295                 fi
296         else
297                 TIME_SETUP_DELAYED=yes
298         fi
299
300         delay_cryptsetup=0
301         if [ -f /etc/crypttab ] && ! is_empty_file /etc/crypttab; then
302                 # XXX might need modules dep
303                 # Device mapper & related initialization
304                 if ! grep -qF device-mapper /proc/devices; then
305                         modprobe dm-mod
306                 fi
307
308                 . /etc/rc.d/init.d/cryptsetup
309                 show "Starting disk encryption"
310                 init_crypto 0
311                 delay_cryptsetup=$?
312                 [ $delay_cryptsetup = 0 ] && ok || fail
313         fi
314
315         # Start up swapping
316         run_cmd "Activating swap partitions" swapon -a -e
317
318         # Initialize USB controllers
319         usb=0
320         if ! strstr "$cmdline" "nousb" && ! is_fsmounted usbfs /proc/bus/usb ; then
321                 aliases=$(/sbin/modprobe -c | awk '/^alias[\t ]+usb-controller/ { print $3 }')
322                 if [ -n "$aliases" -a "$aliases" != "off" ] ; then
323                         /sbin/modprobe -s usbcore
324                         for alias in $aliases ; do
325                                 [ "$alias" = "off" ] && continue
326                                 run_cmd "$(nls 'Initializing USB controller') ($alias)" /sbin/modprobe -s $alias
327                         done
328                         [ $? -eq 0 -a -n "$aliases" ] && usb=1
329                 fi
330                 if grep -iq "usb" /proc/devices 2>/dev/null ; then
331                         usb=1
332                 fi
333         fi
334
335         if [ "$usb" = "1" ] && ! is_fsmounted usbfs /proc/bus/usb ; then
336                 run_cmd "Mounting USB filesystem" mount -n -t usbfs -o devgid=78,devmode=664 usbfs /proc/bus/usb
337         fi
338
339         needusbstorage=
340         if [ "$usb" = "1" ]; then
341                 needusbstorage=$(cat /proc/bus/usb/devices 2>/dev/null | grep -e "^I.*Cls=08" 2>/dev/null)
342                 if [ "$(kernelverser)" -lt "002006" ]; then
343                         grep -q 'hid' /proc/bus/usb/drivers 2>/dev/null || run_cmd "Initializing USB HID interface" modprobe hid 2> /dev/null
344                         mouseoutput=$(cat /proc/bus/usb/devices 2>/dev/null|grep -E "^I.*Cls=03.*Prot=02" 2>/dev/null)
345                         kbdoutput=$(cat /proc/bus/usb/devices 2>/dev/null|grep -E "^I.*Cls=03.*Prot=01" 2>/dev/null)
346                         if [ -n "$kbdoutput" ]; then
347                                 run_cmd "Initializing USB keyboard" modprobe keybdev
348                         fi
349                         if [ -n "$mouseoutput" ]; then
350                                 run_cmd "Initializing USB mouse" modprobe mousedev
351                         fi
352                 fi
353         fi
354
355         # Setup hdparm thing (if exists and is needed)
356         if ! strstr "$cmdline" nohdparm; then
357                 [ -x /etc/rc.d/rc.hdparm ] && /etc/rc.d/rc.hdparm
358         fi
359
360         if [ -f /fastboot ] || strstr "$cmdline" "fastboot"; then
361                 fastboot=yes
362         else
363                 fastboot=
364         fi
365
366         if [ -f /fsckoptions ]; then
367                 fsckoptions=$(cat /fsckoptions)
368         else
369                 fsckoptions=''
370         fi
371
372         if [ -f /forcefsck ]; then
373                 fsckoptions="-f $fsckoptions"
374         else
375                 # Obey the fs_passno setting for / (see fstab(5))
376                 # - find the / entry
377                 # - make sure we have at least 6 fields
378                 _ROOTFS_PASSNO=$(awk '($1 !~ /^#/ && $2 == "/" && NF >= 6) { print $6}' /etc/fstab)
379         fi
380
381         _RUN_QUOTACHECK=0
382         _ROOTFS_DEVICE=$(awk '($1 !~ /^#/ && $2 == "/" && NF >= 6) { print $1}' /etc/fstab)
383         _ROOTFS_TYPE=$(awk '$2 == "/" && $3 != "rootfs" { print $3 }' /proc/mounts 2>/dev/null)
384
385         if [ -z "$fastboot" -a "$_ROOTFS_TYPE" != "aufs" -a "$_ROOTFS_TYPE" != "nfs" -a "$_ROOTFS_TYPE" != "romfs" -a "$_ROOTFS_TYPE" != "squashfs" -a "$_ROOTFS_PASSNO" != 0 -a -e $_ROOTFS_DEVICE ]; then
386                 check_root_fs
387         fi
388
389         # Check for arguments
390         if strstr "$cmdline" nopnp; then
391                 PNP=
392         else
393                 PNP=yes
394         fi
395
396         # set up pnp and kernel pnp
397         if [ -n "$PNP" ]; then
398                 if ! is_no "$RUN_USERPNP" && [ -x /sbin/isapnp -a -f /etc/isapnp/isapnp.conf ]; then
399                         run_cmd "Setting up ISA PNP devices (userspace pnp)" /sbin/isapnp /etc/isapnp/isapnp.conf
400                 fi
401                 if ! is_no "$RUN_KERNELPNP"; then
402                         /sbin/modprobe isa-pnp 2> /dev/null
403                         if [ -e /proc/isapnp -a -f /etc/isapnp/isapnp-kernel.conf ]; then
404                                 show "Setting up ISA PNP devices (kernelspace pnp)"; busy
405                                 grep -v "^#" /etc/isapnp/isapnp-kernel.conf 2>/dev/null >/proc/isapnp && (deltext; ok) || (deltext; fail)
406                         fi
407                 fi
408         fi
409
410         _ROOTFS_RO=$(awk '($1 !~ /^#/ && $2 == "/" && ($4 == "ro" || $4 ~ /,ro$/ || $4 ~ /^ro,/ || $4 ~ /,ro,/ ) && NF >= 6) { print "ro" }' /etc/fstab)
411         # Remount the root filesystem read-write
412         if [ -z "$_ROOTFS_RO" ]; then
413                 run_cmd "Remounting root filesystem in rw mode" mount -n -o remount,rw /
414         fi
415
416         # Update quotas if fsck was run on /
417         if [ "$_RUN_QUOTACHECK" = "1" -a -x /sbin/quotacheck ]; then
418                 run_cmd "Checking root filesystem quotas" /sbin/quotacheck -vnug /
419         fi
420
421         # Clean up SELinux labels
422         if [ -n "$SELINUX" ]; then
423                 for file in /etc/mtab /etc/cryptomtab /etc/ld.so.cache ; do
424                         [ -r $file ] && restorecon $file >/dev/null 2>&1
425                 done
426         fi
427
428         if [ "$delay_cryptsetup" != 0 ]; then
429                 show "Starting disk encryption using the RNG"
430                 init_crypto 1
431                 delay_cryptsetup=$?
432                 [ $delay_cryptsetup = 0 ] && ok || fail
433         fi
434 else
435         # Start logging console output since we have all /dev stuff setup
436         if [ "$RC_BOOTLOG" ]; then
437                 /sbin/blogd -q
438         fi
439 fi
440
441 # Remove stale backups
442 rm -f /etc/mtab~ /etc/mtab~~ /etc/cryptomtab~ /etc/cryptomtab~~ >/dev/null 2>&1
443
444 # Remove /etc/nologin when starting system
445 [ -f /etc/nologin.boot ] && rm -f /etc/nologin /etc/nologin.boot
446
447 if ! is_no "$DELAY_LOGIN" && [ ! -f /etc/nologin ]; then
448         show "Enabling Delay Login"; busy
449         echo > /etc/nologin
450         nls "System bootup in progress - please wait" >> /etc/nologin
451         echo >> /etc/nologin
452         chmod 644 /etc/nologin
453         cp -fp /etc/nologin /etc/nologin.boot
454         ok
455 fi
456
457 # The root filesystem is now read-write, so we can now log via
458 # syslog() directly...
459 if [ -n "$IN_INITLOG" ]; then
460         IN_INITLOG=""
461 fi
462
463 if ! is_yes "$VSERVER"; then
464         # Clear mtab
465         :>/etc/mtab
466         [ -f /etc/cryptomtab ] && :>/etc/cryptomtab
467
468         # Enter root, /proc, /sys and other into mtab.
469         mount -f / 2> /dev/null
470         mount -f /proc 2> /dev/null
471         if is_fsmounted devtmpfs /dev; then
472                 mount -f -t devtmpfs devtmpfs /dev 2> /dev/null
473         fi
474         if is_fsmounted tmpfs /run; then
475                 mount -f -t tmpfs run /run 2> /dev/null
476         fi
477
478         if is_fsmounted usbfs /proc/bus/usb; then
479                 mount -f -t usbfs -o devgid=78,devmode=664 usbfs /proc/bus/usb 2> /dev/null
480         fi
481
482         if is_fsmounted sysfs /sys; then
483                 mount -f -t sysfs sysfs /sys 2> /dev/null
484                 if is_fsmounted securityfs /sys/kernel/security ; then
485                         mount -f -t securityfs securityfs /sys/kernel/security 2> /dev/null
486                 fi
487         fi
488
489         if is_fsmounted selinuxfs /selinux; then
490                 mount -f -t selinuxfs selinuxfs /selinux 2> /dev/null
491         fi
492
493         emit --no-wait root-filesystem
494         emit --no-wait virtual-filesystems
495
496         if [ ! -f /proc/modules ]; then
497                 USEMODULES=
498         elif ! strstr "$cmdline" nomodules; then
499                 USEMODULES=y
500         else
501                 USEMODULES=
502         fi
503
504         uname_r=$(uname -r)
505         # Adjust symlinks as necessary in /boot to keep system services from
506         # spewing messages about mismatched System maps and so on.
507         if ! is_no "$SET_SLINKS"; then
508                 if [ -L /boot/System.map -a -r /boot/System.map-$uname_r ] ; then
509                         ln -s -f System.map-$uname_r /boot/System.map
510                 fi
511                 if [ ! -e /boot/System.map -a -r /boot/System.map-$uname_r ] ; then
512                         ln -s -f System.map-$uname_r /boot/System.map
513                 fi
514         fi
515
516         # Run depmod if RUN_DEPMOD != "no" and:
517         # a) user requested or RUN_DEPMOD="";
518         # b) modules.dep is missing
519         if ! is_no "$RUN_DEPMOD" && [ -n "$USEMODULES" ]; then
520                 if is_yes "$RUN_DEPMOD" || [ -z "$RUN_DEPMOD" ]; then
521                         run_cmd "Finding module dependencies" depmod -a
522                 elif [ "$RUN_DEPMOD" = "ifmissing" ] && [ ! -f /lib/modules/$uname_r/modules.dep ]; then
523                         run_cmd "Finding module dependencies" depmod -A
524                 fi
525         fi
526         unset uname_r
527
528         if [ -f /proc/sys/kernel/modprobe ]; then
529                 if [ -n "$USEMODULES" ]; then
530                         sysctl -w kernel.modprobe="/sbin/modprobe" >/dev/null 2>&1
531                 else
532                         # We used to set this to NULL, but that causes
533                         # 'failed to exec' messages"
534                         sysctl -w kernel.modprobe="/bin/true" >/dev/null 2>&1
535                 fi
536         fi
537
538         # Load usb storage here, to match most other things
539         if [ -n "$needusbstorage" ]; then
540                 modprobe usb-storage >/dev/null 2>&1
541         fi
542
543         # Load firewire devices
544         if ! strstr "$cmdline" nofirewire; then
545                 aliases=$(/sbin/modprobe -c | awk '/^alias ieee1394-controller/ { print $3 }')
546                 if [ -n "$aliases" -a "$aliases" != "off" ] ; then
547                         for alias in $aliases ; do
548                                 [ "$alias" = "off" ] && continue
549                                 run_cmd "$(nls 'Initializing firewire controller') ($alias)" /sbin/modprobe $alias
550                         done
551                         grep -E "SBP2" /proc/bus/ieee1394/devices 2>/dev/null && /sbin/modprobe -s sbp2 > /dev/null 2>&1
552                 fi
553         fi
554
555         # Load sound modules if they need persistent DMA buffers
556         if /sbin/modprobe -c | grep -q "^options sound dmabuf=1"; then
557                 RETURN=0
558                 alias=$(/sbin/modprobe -c | grep -sE "^alias[[:space:]]+sound[[:space:]]+" 2>/dev/null | awk '{ print $3 }')
559                 if [ -n "$alias" -a "$alias" != "off" ] ; then
560                         run_cmd "$(nls 'Loading sound module') ($alias)" modprobe -s $alias
561                         RETURN=$?
562                 fi
563                 alias=$(/sbin/modprobe -c | grep -sE "^alias[[:space:]]+sound-slot-0[[:space:]]+" 2>/dev/null | awk '{ print $3 }')
564                 if [ -n "$alias" -a "$alias" != "off" ] ; then
565                         run_cmd "$(nls 'Loading sound module') ($alias)" modprobe -s $alias
566                         RETURN=$?
567                 fi
568         fi
569
570         # Load modules
571         if ! use_upstart; then
572                 load_kernel_modules modules
573                 for f in /etc/modules-load.d/*.conf ; do
574                         [ -r $f ] || continue
575                         load_kernel_modules ${f##/etc/}
576                 done
577         fi
578
579         if [ -x /sbin/multipath ] && ! is_no "$DM_MULTIPATH"; then
580                 # first make nodes that were discarded due (possible) new /dev mount
581                 modprobe -s dm-mod
582                 /sbin/dmsetup mknodes
583                 modprobe -s dm-multipath
584                 run_cmd "Activating dm-multipath" /sbin/multipath -v 0
585                 /sbin/dmsetup ls --target multipath --exec '/sbin/kpartx -a -p p'
586         fi
587
588         if [ -x /sbin/dmraid ]; then
589                 run_cmd "Activating ATARAID devices" /sbin/dmraid -ay
590         fi
591
592         # Find and activate volume groups:
593         # EVMS
594         if [ -x /sbin/evms_activate ]; then
595                 if [ "$(kernelverser)" -lt "002006" ]; then
596                         # Linux 2.4 core modules
597                         modprobe -s evms > /dev/null 2>&1
598                         modprobe -s evms_passthru > /dev/null 2>&1
599                         modprobe -s ldev_mgr > /dev/null 2>&1
600                         modprobe -s dos_part > /dev/null 2>&1
601                 else
602                         # Linux 2.6 core module
603                         modprobe -s evmscore > /dev/null 2>&1
604                 fi
605
606                 is_yes "$EVMS_GUID_PTABLE" && modprobe -s gpt_part >/dev/null 2>&1
607                 is_yes "$EVMS_LVM" && modprobe -s lvm_vge >/dev/null 2>&1
608                 is_yes "$EVMS_AIX" && modprobe -s AIXlvm_vge >/dev/null 2>&1
609                 is_yes "$EVMS_OS2" && modprobe -s os2lvm_vge >/dev/null 2>&1
610                 run_cmd "Discovering EVMS volumes" /sbin/evms_activate
611                 if is_yes "$EVMS_LVM" && is_yes "$EVMS_LVM_COMPAT_NODES" ; then
612                         # Link nodes for compatibility with LVM
613                         if [ "$(echo /dev/evms/lvm/*)" != '/dev/evms/lvm/*' ] ; then
614                                 ln -s /dev/evms/lvm/* /dev
615                         fi
616                 fi
617         fi
618
619         # LVM (keep in sync with LVM starting after RAID run!)
620         if ! is_no "$LVM2" && [ -x /sbin/vgscan -a -x /sbin/vgchange ] || is_yes "$EVMS_LVM"; then
621                 if is_no "$LVM2"; then
622                         lvmversion=$(LC_ALL=C /sbin/vgchange --version 2>/dev/null | awk '/LVM version:/{if ($3 >= 2) print "2"}')
623                 else
624                         lvmversion=2
625                 fi
626                 if [ "$lvmversion" = "1" ] ; then
627                         modprobe -s lvm-mod >/dev/null 2>&1
628                         lvmignorelocking=""
629                         lvmsysinit=""
630                 elif [ "$lvmversion" = "2" ] ; then
631                         modprobe -s dm-mod >/dev/null 2>&1
632                         lvmignorelocking="--ignorelockingfailure"
633                         lvmsysinit="--sysinit"
634                 else
635                         modprobe -s lvm-mod >/dev/null 2>&1
636                         # device mapper (2.5+ and patched 2.4)
637                         modprobe -s dm-mod >/dev/null 2>&1
638                         lvmignorelocking=""
639                         lvmsysinit=""
640                 fi
641
642                 run_cmd "Scanning for LVM volume groups" /sbin/vgscan $lvmignorelocking
643                 run_cmd "Activating LVM volume groups" /sbin/vgchange -a y $lvmsysinit
644                 if [ "$lvmversion" = "2" ]; then
645                         /sbin/vgmknodes $lvmignorelocking
646                         # display VG statistics
647                         /sbin/vgdisplay -s $lvmignorelocking
648                 fi
649         fi
650
651         if [ "$delay_cryptsetup" != 0 ]; then
652                 show "Starting disk encryption"
653                 init_crypto 1
654                 delay_cryptsetup=$?
655                 [ $delay_cryptsetup = 0 ] && ok || fail
656         fi
657
658         # Add raid devices
659         if [ -x /sbin/mdadm -a -f /etc/mdadm.conf ] || [ -f /etc/raidtab ]; then
660                 modprobe -s md >/dev/null 2>&1
661                 if [ -f /proc/mdstat ]; then
662                         goraidtab=1
663                         golvm=0
664                         rc=0
665                         if [ -x /sbin/mdadm -a -f /etc/mdadm.conf ]; then
666                                 if (grep -qE "^([[:blank:]]|)ARRAY[[:blank:]]" /etc/mdadm.conf 2>/dev/null); then
667                                         show "Starting up RAID devices"; busy
668                                         /sbin/mdadm --assemble --scan --auto=yes
669                                         rc=$?
670                                         if [ "$rc" -eq 0 -o "$rc" -eq 2 ]; then
671                                                 # rc is used later, too so set sane value
672                                                 rc=0
673                                                 deltext; ok
674                                                 goraidtab=0
675                                                 golvm=1
676                                         else
677                                                 deltext; fail
678                                         fi
679
680                                 fi
681                         fi
682
683                         if [ -f /etc/raidtab -a "$goraidtab" -eq 1 ]; then
684                                 for i in $(awk '!/^#/ && /raiddev/{print $2}' /etc/raidtab 2>/dev/null); do
685                                         golvm=1
686                                         RAIDDEV=$(basename $i)
687                                         RAIDSTAT=$(grep "^$RAIDDEV : active" /proc/mdstat 2>/dev/null)
688                                         show "Starting up RAID device %s" $RAIDDEV
689                                         busy
690                                         if [ -z "$RAIDSTAT" ]; then
691                                                 # Try raidstart first...if that fails then
692                                                 # fall back to raid0run and if that fails too
693                                                 # fall back to raidadd, raidrun.
694                                                 RESULT=1
695                                                 if [ -x /sbin/raidstart ]; then
696                                                         /sbin/raidstart $i
697                                                         RESULT=$?
698                                                 fi
699                                                 if [ $RESULT -gt 0 -a -x /sbin/raid0run ]; then
700                                                         /sbin/raid0run $i
701                                                         RESULT=$?
702                                                 fi
703                                                 if [ $RESULT -gt 0 -a -x /sbin/raidadd -a -x /sbin/raidrun ]; then
704                                                         /sbin/raidadd $i
705                                                         /sbin/raidrun $i
706                                                         RESULT=$?
707                                                 fi
708                                                 if [ $RESULT -gt 0 ]; then
709                                                         rc=1
710                                                         fail
711                                                 else
712                                                         ok
713                                                 fi
714                                         else
715                                                 ok
716                                         fi
717                                 done
718                         fi
719
720                         # A non-zero return means there were problems
721                         if [ $rc -gt 0 ]; then
722                                 [ -e /proc/splash ] && echo "verbose" > /proc/splash
723                                 show "Starting up RAID devices"; fail
724                                 echo
725                                 echo
726                                 nls "*** An error occurred during the RAID startup."
727                                 nls "*** Dropping you to a shell; the system will reboot"
728                                 nls "*** when you leave the shell."
729                                 echo
730
731                                 PS1="$(nls '(RAID Repair)# ')"; export PS1
732                                 [ "$SELINUX" = "1" ] && disable_selinux
733                                 if ! is_no "$RUN_SULOGIN_ON_ERR"; then
734                                         /sbin/sulogin
735                                 else
736                                         /bin/sh
737                                 fi
738
739                                 run_cmd "Unmounting file systems" umount -a
740                                 run_cmd "Remounting root filesystem in ro mode" mount -n -o remount,ro /
741                                 run_cmd "Automatic reboot in progress" reboot
742                         fi
743                         # LVM on RAID (keep in sync with LVM setting few lines above)
744                         if [ "$golvm" -eq "1" ]; then
745                                 if [ -x /sbin/vgscan -a -x /sbin/vgchange ]; then
746                                         run_cmd "Scanning for LVM volume groups (on RAID)" /sbin/vgscan $lvmignorelocking
747                                         run_cmd "Activating LVM volume groups (on RAID)" /sbin/vgchange -a y $lvmsysinit
748                                         [ "$lvmversion" = "2" ] && /sbin/vgmknodes
749                                 fi
750                         fi
751                         show "Starting up RAID devices"; ok
752                 fi
753         fi
754
755         _RUN_QUOTACHECK=0
756         # Check filesystems
757         if [ -z "$fastboot" ] && ! strstr "$cmdline" nofsck; then
758                 rc_splash "fsck start"
759                 show "Checking filesystems"; started
760                 initlog -c "fsck -C -T -R -A -a -P $fsckoptions"
761
762                 rc=$?
763
764                 # A return of 2 or higher means there were serious problems
765                 if [ $rc -gt 1 ]; then
766                         [ -e /proc/splash ] && echo "verbose" > /proc/splash
767                         echo
768                         echo
769                         nls "*** An error occurred during the file system check."
770                         nls "*** Dropping you to a shell; the system will reboot"
771                         nls "*** when you leave the shell."
772                         echo
773
774                         PS1="$(nls '(Repair filesystem)# ')"; export PS1
775                         [ "$SELINUX" = "1" ] && disable_selinux
776                         if ! is_no "$RUN_SULOGIN_ON_ERR"; then
777                                 /sbin/sulogin
778                         else
779                                 /bin/sh
780                         fi
781
782                         run_cmd "Unmounting file systems" umount -a
783                         run_cmd "Remounting root filesystem in ro mode" mount -n -o remount,ro /
784                         run_cmd "Automatic reboot in progress" reboot
785                 elif [ "$rc" = "1" -a -x /sbin/quotacheck ]; then
786                         _RUN_QUOTACHECK=1
787                 fi
788                 rc_splash "fsck stop"
789         fi
790
791         # Mount all other filesystems (except for NFS and /proc, which is already
792         # mounted). Contrary to standard usage,
793         # filesystems are NOT unmounted in single user mode.
794
795         run_cmd "Mounting local filesystems" mount -a -t nonfs,nfs4,smbfs,ncpfs,proc,cifs -O no_netdev
796
797         # now we have /usr mounted, recheck if we have gettext and tput available.
798         if is_no "$TPUT"; then
799                 GETTEXT=
800                 TPUT=
801                 rc_gettext_init
802         fi
803
804         # Now do some workaround - encrypted filesystems couldn't have been fsck-ed
805         # before mount - that's where the password is entered.
806         # mount is buggy - when remounting loopback filesystem, loop=XXX
807         # option is removed from /etc/mtab
808         if [ -z "$fastboot" ] && grep "^[^#].*encryption=" /etc/fstab 2>/dev/null | grep -v -q "noauto" 2>/dev/null; then
809                 show "Checking encrypted filesystems"; started
810                 LOOPLIST="$(awk '
811                 FILENAME=="/proc/mounts" {
812                         TAB[$2]=$1;
813                 }
814                 FILENAME=="/etc/fstab" && /encryption=/ && ! /noauto/ && /[^a-zA-Z_]ro[^a-zA-Z_]/ {
815                         if ($2 in TAB){print TAB[$2];}
816                 }
817                 FILENAME=="/etc/fstab" && /encryption=/ && ! /noauto/ && ! /[^a-zA-Z_]ro[^a-zA-Z_]/ {
818                         if ($2 in TAB){print TAB[$2];}
819                         sub("loop(=[^,]*)?","loop=" TAB[$2] ",ro",$4);
820                         cmd="mount " $2 " -o remount," $4;
821                         system(cmd);
822                 }
823                 ' /proc/mounts /etc/fstab)"
824                 initlog -c "fsck -T -C -a $fsckoptions $LOOPLIST"
825                 rc=$?
826
827                 # A return of 2 or higher means there were serious problems.
828                 if [ $rc -gt 1 ]; then
829                         [ -e /proc/splash ] && echo "verbose" > /proc/splash
830                         echo
831                         echo
832                         nls "*** An error occurred during the file system check."
833                         nls "*** Dropping you to a shell; the system will reboot"
834                         nls "*** when you leave the shell."
835                         echo
836
837                         PS1="$(nls '(Repair filesystem)# ')"; export PS1
838                         [ "$SELINUX" = "1" ] && disable_selinux
839                         if ! is_no "$RUN_SULOGIN_ON_ERR"; then
840                                 /sbin/sulogin
841                         else
842                                 /bin/sh
843                         fi
844
845                         run_cmd "Unmounting file systems" umount -a
846                         run_cmd "Remounting root filesystem in ro mode" mount -n -o remount,ro /
847                         run_cmd "Automatic reboot in progress" reboot
848                 elif [ "$rc" = "1" -a -x /sbin/quotacheck ]; then
849                         _RUN_QUOTACHECK=1
850                 fi
851
852                 show "Remounting encrypted filesystems back in rw mode"; busy
853                 awk '
854                 FILENAME=="/proc/mounts" {
855                         TAB[$2]=$1;
856                 }
857                 FILENAME=="/etc/fstab" && /encryption=/ && ! /noauto/ && ! /[^a-zA-Z_]ro[^a-zA-Z_]/ {
858                         sub("loop(=[^,]*)?","loop=" TAB[$2] ",rw",$4);
859                         cmd="mount " $2 " -o remount," $4;
860                         system(cmd);
861                 }
862                 ' /proc/mounts /etc/fstab
863                 ok
864         fi
865
866         # /var/log should be writable now, so start saving the boot output
867         if [ "$RC_BOOTLOG" ]; then
868                 echo > /var/log/boot.log
869                 killall -IO blogd
870         fi
871
872         if [ "$_RUN_QUOTACHECK" = "1" -a -x /sbin/quotacheck ]; then
873                 run_cmd "Checking filesystem quotas" /sbin/quotacheck -vnugRa
874         fi
875
876         # Turn on quota
877         if [ -x /sbin/quotaon ]; then
878                 run_cmd "Turning on quotas for local filesystems" /sbin/quotaon -aug
879         fi
880
881         emit --no-wait local-filesystems
882
883         # FIXME: this should be delayed until remote filesystems are mounted,
884         #        especialy when /usr or other standard fs is remote
885         emit --no-wait filesystem
886
887         # Turn on process accounting
888         if [ -x /etc/rc.d/rc.acct ]; then
889                 /etc/rc.d/rc.acct start
890         fi
891
892         # Set the clock if timezone definition wasn't available (eg. /usr not mounted)
893         if is_yes "$TIME_SETUP_DELAYED" && [ -e /dev/rtc -o -e /dev/rtc0 ]; then
894                 if run_cmd "$(nls 'Setting clock')" hwclock --hctosys; then
895                         show "$(nls 'Today`s date:') $(LC_CTYPE=C date)"; ok
896                 fi
897         fi
898
899         # Initialize the serial ports
900         if [ -f /etc/rc.d/rc.serial ]; then
901                 . /etc/rc.d/rc.serial
902         fi
903
904         if [ -f /proc/sys/kernel/panic -a -n "$PANIC_REBOOT_TIME" -a "$PANIC_REBOOT_TIME" -gt "0" ]; then
905                 show 'Setting %s seconds for kernel reboot after panic' "$PANIC_REBOOT_TIME"; busy
906                 # NOTE: you should use /etc/sysctl.conf instead
907                 if sysctl -w kernel.panic=$PANIC_REBOOT_TIME >/dev/null 2>&1; then ok; else fail; fi
908         fi
909
910         # ... and here finish configuring parameters
911         sysctl -e -p /etc/sysctl.conf > /dev/null 2>&1
912 else
913         emit --no-wait root-filesystem
914         emit --no-wait virtual-filesystems
915         emit --no-wait local-filesystems
916         emit --no-wait filesystem
917
918         # /var/log should be writable now, so start saving the boot output
919         if [ "$RC_BOOTLOG" ]; then
920                 echo > /var/log/boot.log
921                 killall -IO blogd
922         fi
923
924         clean_vserver_mtab
925 fi
926
927
928 [ -n "$SELINUX" ] && [ -f /.autorelabel ] && relabel_selinux
929
930 # Clean up /.
931 rm -f /fastboot /fsckoptions /forcefsck /halt /poweroff >/dev/null 2>&1
932
933 # Clean up /var
934 # /usr could be still not mounted if it is on NFS.
935 for afile in /var/lock/* /var/run/*; do
936         bafile=${afile##*/}
937         if [ -d "$afile" ]; then
938                 case $bafile in
939                 news|sudo|mon|cvs)
940                         ;;
941                 *)
942                         echo $afile/* | xargs rm -rf
943                         ;;
944                 esac
945         else
946                 [ "$bafile" != "hwprofile" -a "$bafile" != "random-seed" ] && rm -f $afile 2> /dev/null
947         fi
948 done
949
950 # Delete stale files
951 rm -f /var/lib/rpm/__db* /var/spool/postoffice/.pid.* /tmp/.X*-lock \
952         /tmp/.lock.* /tmp/.gdm_socket /tmp/.s.PGSQL.*
953 rm -rf /tmp/.X*-unix /tmp/.ICE-unix /tmp/.font-unix /tmp/hsperfdata_* \
954         /tmp/kde-* /tmp/ksocket-* /tmp/mc-* /tmp/mcop-* /tmp/orbit-* \
955         /tmp/scrollkeeper-* /tmp/ssh-*
956
957 {
958 # Clean up utmp/wtmp
959 if ! is_no "$NEED_XFILES"; then
960         :>/var/run/utmpx
961         touch /var/log/wtmpx
962         chown root:utmp /var/run/utmpx /var/log/wtmpx
963         chmod 0664 /var/run/utmpx /var/log/wtmpx
964 else
965         :>/var/run/utmp
966         touch /var/log/wtmp
967         chown root:utmp /var/run/utmp /var/log/wtmp
968         chmod 0664 /var/run/utmp /var/log/wtmp
969 fi
970
971 # Clean /tmp
972 if is_yes "$CLEAN_TMP" && ! is_fsmounted tmpfs /tmp; then
973         LC_ALL=C rm -rf /tmp/* /tmp/.[a-zA-Z0-9]*
974 fi
975
976 # System protected dirs
977 mkdir -m 1777 -p /tmp/.ICE-unix > /dev/null 2>&1
978 chown root:root /tmp/.ICE-unix
979 [ -n "$SELINUX" ] && restorecon /tmp/.ICE-unix >/dev/null 2>&1
980
981 if ! is_yes "$VSERVER"; then
982         run_cmd "Enabling swap space" true
983         # Right, now turn on swap in case we swap to files
984         swapon -a >/dev/null 2>&1
985         emit --no-wait all-swaps
986
987         # If a SCSI tape has been detected, load the st module unconditionally
988         # since many SCSI tapes don't deal well with st being loaded and unloaded
989         if [ -f /proc/scsi/scsi ] && grep -q 'Type:   Sequential-Access' /proc/scsi/scsi 2>/dev/null ; then
990                 if grep -qv ' 9 st' /proc/devices 2>/dev/null; then
991                         if [ -n "$USEMODULES" ] ; then
992                                 # Try to load the module. If it fails, ignore it...
993                                 insmod -p st >/dev/null 2>&1 && modprobe -s st >/dev/null 2>&1
994                         fi
995                 fi
996         fi
997
998         # Now that we have all of our basic modules loaded and the kernel going,
999         # let's dump the syslog ring somewhere so we can find it later
1000         dmesg > /var/log/dmesg
1001         i=5
1002         while [ $i -ge 0 ]; do
1003                 if [ -f /var/log/dmesg.$i ]; then
1004                         chmod 0600 /var/log/dmesg.$i
1005                         mv -f /var/log/dmesg.$i /var/log/dmesg.$(($i+1))
1006                 fi
1007                 i=$(($i-1))
1008         done
1009         cp -f /var/log/dmesg /var/log/dmesg.0
1010         chmod 0600 /var/log/dmesg /var/log/dmesg.0
1011 else
1012         emit --no-wait all-swaps
1013 fi
1014
1015 if ! is_no "$RC_PROMPT"; then
1016         while :; do
1017                 pid=$(/sbin/pidof getkey)
1018                 [ -n "$pid" -o -e /var/run/getkey_done ] && break
1019                 usleep 100000
1020         done
1021         [ -n "$pid" ] && kill -TERM "$pid" >/dev/null 2>&1
1022 fi
1023 } &
1024
1025 # /proc extra check if the background process we just spawned is still running,
1026 # as in case of vserver bootup it finishes quite instantly.
1027 if ! is_no "$RC_PROMPT" && [ -d /proc/$! ]; then
1028         /sbin/getkey i && touch /var/run/confirm
1029         touch /var/run/getkey_done
1030 fi
1031 wait
1032 if ! is_no "$RC_PROMPT"; then
1033         rm -f /var/run/getkey_done
1034 fi
1035 echo
1036
1037 emit --no-wait pld.sysinit-done
1038
This page took 0.119364 seconds and 2 git commands to generate.