2009-05-01 19:41:40 +05:30
|
|
|
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
|
2011-06-30 05:16:31 +05:30
|
|
|
# Released under the 2-clause BSD license.
|
2007-11-14 20:52:04 +05:30
|
|
|
|
2008-10-09 22:06:42 +05:30
|
|
|
# Declare this here so that no formatting doesn't affect the embedded newline
|
|
|
|
__IFS="
|
|
|
|
"
|
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
# Handy function to handle all our unmounting needs
|
2007-07-11 22:57:46 +05:30
|
|
|
# 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.
|
2007-11-21 21:11:45 +05:30
|
|
|
# This isn't a real issue for the BSD's, but it is for Linux.
|
2008-01-11 17:43:46 +05:30
|
|
|
do_unmount()
|
|
|
|
{
|
2008-03-05 03:33:41 +05:30
|
|
|
local cmd="$1" retval=0 retry= pids=-
|
2007-04-05 16:48:42 +05:30
|
|
|
local f_opts="-m -c" f_kill="-s " mnt=
|
2009-04-27 02:43:26 +05:30
|
|
|
if [ "$RC_UNAME" = "Linux" ]; then
|
2007-05-30 20:54:21 +05:30
|
|
|
f_opts="-m"
|
2007-04-05 16:48:42 +05:30
|
|
|
f_kill="-"
|
|
|
|
fi
|
|
|
|
|
2007-10-09 21:03:05 +05:30
|
|
|
shift
|
2008-10-09 22:06:42 +05:30
|
|
|
local IFS="$__IFS"
|
|
|
|
set -- $(mountinfo "$@")
|
|
|
|
unset IFS
|
|
|
|
for mnt; do
|
2008-01-30 17:28:21 +05:30
|
|
|
# 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
|
2010-10-29 07:04:34 +05:30
|
|
|
# Ensure we interpret all characters properly.
|
|
|
|
mnt=$(printf "$mnt")
|
2008-01-30 17:28:21 +05:30
|
|
|
|
2009-04-27 02:43:26 +05:30
|
|
|
case "$cmd" in
|
2008-11-04 17:00:15 +05:30
|
|
|
umount)
|
2009-04-27 02:43:26 +05:30
|
|
|
ebegin "Unmounting $mnt"
|
2007-04-05 16:48:42 +05:30
|
|
|
;;
|
|
|
|
*)
|
2009-04-27 02:43:26 +05:30
|
|
|
ebegin "Remounting $mnt read only"
|
2007-04-05 16:48:42 +05:30
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2010-03-17 03:04:48 +05:30
|
|
|
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
|
2008-01-30 17:28:21 +05:30
|
|
|
*" $$ "*)
|
|
|
|
eend 1 "failed because we are using" \
|
2009-04-27 02:43:26 +05:30
|
|
|
"$mnt"
|
2008-01-30 17:28:21 +05:30
|
|
|
retry=0;;
|
2008-03-05 03:33:41 +05:30
|
|
|
" - ")
|
|
|
|
eend 1
|
|
|
|
retry=0;;
|
2008-01-30 17:28:21 +05:30
|
|
|
" ")
|
|
|
|
eend 1 "in use but fuser finds nothing"
|
|
|
|
retry=0;;
|
2007-04-05 16:48:42 +05:30
|
|
|
*)
|
2010-03-17 03:04:48 +05:30
|
|
|
if [ $retry -le 0 ]; then
|
|
|
|
eend 1
|
|
|
|
else
|
|
|
|
local sig="TERM"
|
2011-11-11 08:16:08 +05:30
|
|
|
: $(( retry -= 1 ))
|
2010-03-17 03:04:48 +05:30
|
|
|
[ $retry = 1 ] && sig="KILL"
|
|
|
|
fuser $f_kill$sig -k $f_opts \
|
|
|
|
"$mnt" >/dev/null 2>&1
|
|
|
|
sleep 1
|
|
|
|
fi
|
2007-04-05 16:48:42 +05:30
|
|
|
;;
|
|
|
|
esac
|
2009-04-27 02:43:26 +05:30
|
|
|
[ $retry -le 0 ] && break
|
2007-04-05 16:48:42 +05:30
|
|
|
done
|
2009-04-27 02:43:26 +05:30
|
|
|
if [ $retry -le 0 ]; then
|
2007-04-05 16:48:42 +05:30
|
|
|
retval=1
|
|
|
|
else
|
|
|
|
eend 0
|
|
|
|
fi
|
|
|
|
done
|
2009-04-27 02:43:26 +05:30
|
|
|
return $retval
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|