openrc/sh/rc-mount.sh

80 lines
1.8 KiB
Bash
Raw Normal View History

2009-05-01 19:41:40 +05:30
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.
# Declare this here so that no formatting doesn't affect the embedded newline
__IFS="
"
# Handy function to handle all our unmounting needs
# mountinfo is a C program to actually find our mounts on our supported OS's
2009-04-27 02:43:26 +05:30
# We rely on fuser being present, so if it's not then don't unmount anything.
# This isn't a real issue for the BSD's, but it is for Linux.
do_unmount()
{
2008-03-05 03:33:41 +05:30
local cmd="$1" retval=0 retry= pids=-
local f_opts="-m -c" f_kill="-s " mnt=
2009-04-27 02:43:26 +05:30
if [ "$RC_UNAME" = "Linux" ]; then
f_opts="-m"
f_kill="-"
fi
shift
local IFS="$__IFS"
set -- $(mountinfo "$@")
unset IFS
for mnt; do
# Unmounting a shared mount can unmount other mounts, so
# we need to check the mount is still valid
2009-04-27 02:43:26 +05:30
mountinfo --quiet "$mnt" || continue
# Ensure we interpret all characters properly.
mnt=$(printf "$mnt")
2009-04-27 02:43:26 +05:30
case "$cmd" in
umount)
2009-04-27 02:43:26 +05:30
ebegin "Unmounting $mnt"
;;
*)
2009-04-27 02:43:26 +05:30
ebegin "Remounting $mnt read only"
;;
esac
retry=4 # Effectively TERM, sleep 1, TERM, sleep 1, KILL, sleep 1
2009-04-27 02:43:26 +05:30
while ! LC_ALL=C $cmd "$mnt" 2>/dev/null; do
2008-03-05 03:33:41 +05:30
if type fuser >/dev/null 2>&1; then
2009-04-27 02:43:26 +05:30
pids="$(fuser $f_opts "$mnt" 2>/dev/null)"
2008-03-05 03:33:41 +05:30
fi
2009-04-27 02:43:26 +05:30
case " $pids " in
*" $$ "*)
eend 1 "failed because we are using" \
2009-04-27 02:43:26 +05:30
"$mnt"
retry=0;;
2008-03-05 03:33:41 +05:30
" - ")
eend 1
retry=0;;
" ")
eend 1 "in use but fuser finds nothing"
retry=0;;
*)
if [ $retry -le 0 ]; then
eend 1
else
local sig="TERM"
: $(( retry -= 1 ))
[ $retry = 1 ] && sig="KILL"
fuser $f_kill$sig -k $f_opts \
"$mnt" >/dev/null 2>&1
sleep 1
fi
;;
esac
2009-04-27 02:43:26 +05:30
[ $retry -le 0 ] && break
done
2009-04-27 02:43:26 +05:30
if [ $retry -le 0 ]; then
retval=1
else
eend 0
fi
done
2009-04-27 02:43:26 +05:30
return $retval
}