2007-04-05 16:48:42 +05:30
|
|
|
#!/sbin/runscript
|
|
|
|
# Copyright 1999-2007 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2007-07-11 00:39:41 +05:30
|
|
|
description="Mounts disks and swap according to /etc/fstab."
|
|
|
|
[ -e /proc/filessystems ] && description="${description} Also mounts various filesystems in /proc."
|
|
|
|
[ -x /sbin/dumpon ] && description="${description} Also configures saving kernel dumps to swap."
|
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
depend() {
|
|
|
|
need checkfs
|
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
|
|
|
# Mount local filesystems in /etc/fstab.
|
|
|
|
local types="noproc" x=
|
|
|
|
for x in ${RC_NET_FS_LIST} ; do
|
|
|
|
types="${types},${x}"
|
|
|
|
done
|
|
|
|
|
|
|
|
ebegin "Mounting local filesystems"
|
|
|
|
mount -at "${types}"
|
|
|
|
eend $? "Some local filesystem failed to mount"
|
|
|
|
|
2007-07-26 02:28:23 +05:30
|
|
|
# Change the mount options of already mounted partitions
|
2007-04-05 16:48:42 +05:30
|
|
|
# This is needed when /usr is separate and coming back from single user
|
2007-07-26 02:28:23 +05:30
|
|
|
if [ "${RC_UNAME}" = "FreeBSD" ] ; then
|
2007-04-05 16:48:42 +05:30
|
|
|
mount -uao fstab -t "${types},linprocfs"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -x /sbin/savecore ] ; then
|
|
|
|
local dumpdir=${KERNEL_DUMP_DIR:-/var/crash}
|
|
|
|
if ! [ -d "${dumpdir}" ]; then
|
|
|
|
mkdir -p "${dumpdir}"
|
|
|
|
chmod 700 "${dumpdir}"
|
|
|
|
fi
|
|
|
|
|
2007-07-26 02:28:23 +05:30
|
|
|
if [ "${RC_UNAME}" = "FreeBSD" ] ; then
|
|
|
|
# Don't quote ${KERNEL_DUMP_DEVICE}, so that if it's unset,
|
|
|
|
# savecore will check on the partitions listed in fstab
|
|
|
|
# without errors in the output
|
|
|
|
savecore -C "${dumpdir}" ${KERNEL_DUMP_DEVICE} >/dev/null
|
|
|
|
else
|
|
|
|
ls "${dumpdir}"/bsd* > /dev/null 2>&1
|
|
|
|
fi
|
|
|
|
if [ $? = 0 ] ; then
|
|
|
|
local sopts="${dumpdir} ${KERNEL_DUMP_DEVICE}"
|
|
|
|
[ "${KERNEL_DUMP_COMPRESS}" = "yes" ] && sopts="-z ${sopts}"
|
2007-04-05 16:48:42 +05:30
|
|
|
ebegin "Saving kernel core dump in" "${dumpdir}"
|
|
|
|
savecore ${savecoreopts} >/dev/null
|
|
|
|
eend $?
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Sync bootlog now as /var should be mounted
|
|
|
|
if type bootlog >/dev/null 2>/dev/null ; then
|
|
|
|
bootlog sync 2>/dev/null
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Make sure we insert usbcore if its a module
|
|
|
|
if [ -f /proc/modules -a ! -d /proc/bus/usb ] ; then
|
2007-06-02 17:53:43 +05:30
|
|
|
modprobe -q usbcore
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
|
|
|
|
2007-06-02 17:52:07 +05:30
|
|
|
if [ -e /proc/filesystems ] ; then
|
2007-04-05 16:48:42 +05:30
|
|
|
# Check what USB fs the kernel support. Currently
|
|
|
|
# 2.5+ kernels, and later 2.4 kernels have 'usbfs',
|
|
|
|
# while older kernels have 'usbdevfs'.
|
|
|
|
if [ -d /proc/bus/usb -a ! -e /proc/bus/usb/devices ] ; then
|
|
|
|
local usbfs=$(grep -Fow usbfs /proc/filesystems ||
|
|
|
|
grep -Fow usbdevfs /proc/filesystems)
|
|
|
|
|
|
|
|
if [ -n "${usbfs}" ] ; then
|
2007-07-16 19:39:29 +05:30
|
|
|
ebegin "Mounting USB device filesystem (${usbfs})"
|
2007-04-05 16:48:42 +05:30
|
|
|
local usbgid="$(getent group usb | \
|
|
|
|
sed -e 's/.*:.*:\(.*\):.*/\1/')"
|
|
|
|
mount -t ${usbfs} \
|
|
|
|
-o ${usbgid:+devmode=0664,devgid=${usbgid},}noexec,nosuid \
|
|
|
|
usbfs /proc/bus/usb
|
|
|
|
eend $?
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2007-05-12 16:37:04 +05:30
|
|
|
# Setup Kernel Support for the NFS daemon status
|
2007-09-03 19:32:15 +05:30
|
|
|
if [ -d /proc/fs/nfsd ] && ! mountinfo -q /proc/fs/nfsd ; then
|
2007-05-12 16:37:04 +05:30
|
|
|
if grep -qs nfsd /proc/filesystems ; then
|
|
|
|
ebegin "Mounting nfsd filesystem"
|
|
|
|
mount -t nfsd -o nodev,noexec,nosuid \
|
|
|
|
nfsd /proc/fs/nfsd
|
|
|
|
eend $?
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
# Setup Kernel Support for miscellaneous Binary Formats
|
2007-09-03 19:32:15 +05:30
|
|
|
if [ -d /proc/sys/fs/binfmt_misc ] && ! mountinfo -q /proc/sys/fs/binfmt_misc ; then
|
2007-04-20 16:17:24 +05:30
|
|
|
if grep -qs binfmt_misc /proc/filesystems ; then
|
2007-04-05 16:48:42 +05:30
|
|
|
ebegin "Mounting misc binary format filesystem"
|
|
|
|
mount -t binfmt_misc -o nodev,noexec,nosuid \
|
|
|
|
binfmt_misc /proc/sys/fs/binfmt_misc
|
|
|
|
eend $?
|
|
|
|
fi
|
|
|
|
fi
|
2007-04-20 16:17:24 +05:30
|
|
|
|
|
|
|
# Setup Kernel Support for securityfs
|
2007-09-03 19:32:15 +05:30
|
|
|
if [ -d /sys/kernel/security ] && ! mountinfo -q /sys/kernel/security ; then
|
2007-04-20 16:17:24 +05:30
|
|
|
if grep -qs securityfs /proc/filesystems ; then
|
2007-04-05 16:48:42 +05:30
|
|
|
ebegin "Mounting security filesystem"
|
2007-04-20 16:17:24 +05:30
|
|
|
mount -t securityfs securityfs /sys/kernel/security \
|
2007-04-05 16:48:42 +05:30
|
|
|
-o nodev,noexec,nosuid
|
|
|
|
eend $?
|
|
|
|
fi
|
2007-04-20 16:17:24 +05:30
|
|
|
fi
|
|
|
|
|
2007-04-30 21:52:19 +05:30
|
|
|
# Setup Kernel Support for debugfs
|
2007-09-03 19:32:15 +05:30
|
|
|
if [ -d /sys/kernel/debug ] && ! mountinfo -q /sys/kernel/debug ; then
|
2007-04-30 21:52:19 +05:30
|
|
|
if grep -qs debugfs /proc/filesystems ; then
|
|
|
|
ebegin "Mounting debug filesystem"
|
|
|
|
mount -t debugfs debugfs /sys/kernel/debug \
|
|
|
|
-o nodev,noexec,nosuid
|
|
|
|
eend $?
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2007-04-20 16:17:24 +05:30
|
|
|
# Setup Kernel Support for SELinux
|
2007-09-03 19:32:15 +05:30
|
|
|
if [ -d /selinux ] && ! mountinfo -q /selinux ; then
|
2007-04-20 16:17:24 +05:30
|
|
|
if grep -qs selinuxfs /proc/filesystems ; then
|
|
|
|
ebegin "Mounting SELinux filesystem"
|
|
|
|
mount -t selinuxfs selinuxfs /selinux
|
|
|
|
eend $?
|
|
|
|
fi
|
|
|
|
fi
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
|
|
|
|
|
|
|
# We do our swapping here instead of rc so we can get urandom started
|
|
|
|
# before us for people that like an encrypted swap.
|
|
|
|
ebegin "Activating (possible) swap"
|
|
|
|
swapon -a >/dev/null
|
|
|
|
eend 0 # If swapon has nothing todo it errors, so always return 0
|
|
|
|
|
|
|
|
# Setup any user requested dump device
|
|
|
|
if [ -x /sbin/dumpon -a -n "${KERNEL_DUMP_DEVICE}" ] ; then
|
|
|
|
ebegin "Activating kernel core dump device" "(${KERNEL_DUMP_DEVICE})"
|
|
|
|
dumpon "${KERNEL_DUMP_DEVICE}"
|
|
|
|
eend $?
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Always return 0 - some local mounts may not be critical for boot
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
# Don't unmount anything for VPS systems
|
|
|
|
[ "${RC_SYS}" = "VPS" ] && return 0
|
|
|
|
|
2007-10-05 19:07:57 +05:30
|
|
|
# We never unmount / or /dev or $RC_SVCDIR
|
|
|
|
local x= no_umounts="/|/dev|/dev/.*|${RC_SVCDIR}"
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
# NO_UMOUNTS is taken from /etc/conf.d/localmount
|
|
|
|
# RC_NO_UMOUNTS is taken from /etc/conf.d/rc and can also be
|
|
|
|
# set by plugins
|
2007-07-16 21:52:37 +05:30
|
|
|
OIFS=${IFS} SIFS=${IFS-y}
|
2007-04-05 16:48:42 +05:30
|
|
|
IFS=$IFS:
|
|
|
|
for x in ${NO_UMOUNTS} ${RC_NO_UMOUNTS} ; do
|
|
|
|
no_umounts="${no_umounts}|${x}"
|
|
|
|
done
|
|
|
|
if [ "${SIFS}" = "y" ] ; then
|
|
|
|
IFS=$OIFS
|
|
|
|
else
|
|
|
|
unset IFS
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${RC_UNAME}" = "Linux" ] ; then
|
2007-10-05 19:07:57 +05:30
|
|
|
no_umounts="${no_umounts}|/proc|/proc/.*|/sys|/sys/.*"
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
|
|
|
no_umounts="^(${no_umounts})$"
|
|
|
|
|
|
|
|
# Flush all pending disk writes now
|
|
|
|
sync ; sync
|
|
|
|
|
|
|
|
# Try to unmount all tmpfs filesystems not in use, else a deadlock may
|
|
|
|
# occure, bug #13599.
|
|
|
|
# As $RC_SVCDIR may also be tmpfs we cd to it to lock it
|
|
|
|
cd "${RC_SVCDIR}"
|
|
|
|
umount -a -t tmpfs 2>/dev/null
|
|
|
|
|
|
|
|
# As we're turning off swap below, we need to disable kernel dumps
|
|
|
|
[ -x /sbin/dumpon ] && dumpon off
|
|
|
|
|
|
|
|
local swap_list=
|
|
|
|
# Turn off swap
|
|
|
|
if [ -r /proc/swaps ] ;then
|
|
|
|
swap_list=$(sed -e '1d' /proc/swaps)
|
|
|
|
else
|
|
|
|
swap_list=$(swapctl -l 2>/dev/null | sed -e '1d')
|
|
|
|
fi
|
|
|
|
if [ -n "${swap_list}" ] ; then
|
|
|
|
ebegin "Deactivating swap"
|
|
|
|
swapoff -a >/dev/null
|
|
|
|
eend $?
|
|
|
|
fi
|
|
|
|
|
|
|
|
. "${RC_LIBDIR}"/sh/rc-mount.sh
|
|
|
|
|
|
|
|
# Umount loopback devices
|
|
|
|
einfo "Unmounting loopback devices"
|
|
|
|
eindent
|
2007-10-09 21:03:05 +05:30
|
|
|
do_unmount "umount -d" --skip-point-regex "${no_umounts}" \
|
|
|
|
--node-regex "^/dev/loop"
|
2007-04-05 16:48:42 +05:30
|
|
|
eoutdent
|
|
|
|
|
2007-07-11 22:57:46 +05:30
|
|
|
# Now everything else, except network filesystems as the
|
|
|
|
# network should be down by this point.
|
2007-04-05 16:48:42 +05:30
|
|
|
einfo "Unmounting filesystems"
|
|
|
|
eindent
|
2007-07-11 22:57:46 +05:30
|
|
|
local fs=
|
|
|
|
for x in ${RC_NET_FS_LIST} ; do
|
|
|
|
fs="${fs}${fs:+|}${x}"
|
|
|
|
done
|
|
|
|
[ -n "${fs}" ] && fs="^(${fs})$"
|
2007-10-09 21:03:05 +05:30
|
|
|
do_unmount "umount" --skip-point-regex "${no_umounts}" \
|
|
|
|
${fs:+--skip-fstype-regex} ${fs} --nonetdev
|
2007-04-05 16:48:42 +05:30
|
|
|
eoutdent
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim: set ts=4 :
|