2008-01-11 21:01:10 +05:30
|
|
|
# Copyright 2007-2008 Roy Marples <roy@marples.name>
|
|
|
|
# All rights reserved. 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
|
2007-11-21 21:11:45 +05:30
|
|
|
# We rely on fuser being preset, so if it's not then we don't unmount anything.
|
|
|
|
# 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=
|
2007-11-28 21:15:03 +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
|
|
|
|
mountinfo --quiet "${mnt}" || continue
|
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
case "${cmd}" in
|
|
|
|
umount*)
|
|
|
|
ebegin "Unmounting ${mnt}"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
ebegin "Remounting ${mnt}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
retry=3
|
2007-11-28 21:15:03 +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
|
|
|
|
pids="$(fuser ${f_opts} "${mnt}" 2>/dev/null)"
|
|
|
|
fi
|
2007-04-05 16:48:42 +05:30
|
|
|
case " ${pids} " in
|
2008-01-30 17:28:21 +05:30
|
|
|
*" $$ "*)
|
|
|
|
eend 1 "failed because we are using" \
|
|
|
|
"${mnt}"
|
|
|
|
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
|
|
|
*)
|
|
|
|
local sig="KILL"
|
|
|
|
[ ${retry} -gt 0 ] && sig="TERM"
|
2008-01-30 17:28:21 +05:30
|
|
|
fuser ${f_kill}${sig} -k ${f_opts} \
|
|
|
|
"${mnt}" >/dev/null 2>&1
|
2007-04-05 16:48:42 +05:30
|
|
|
sleep 1
|
|
|
|
retry=$((${retry} - 1))
|
2008-03-21 16:50:03 +05:30
|
|
|
[ ${retry} -le 0 ] && eend 1
|
2007-04-05 16:48:42 +05:30
|
|
|
;;
|
|
|
|
esac
|
2008-03-21 16:32:02 +05:30
|
|
|
[ ${retry} -le 0 ] && break
|
2007-04-05 16:48:42 +05:30
|
|
|
done
|
2008-03-21 16:32:02 +05:30
|
|
|
if [ ${retry} -le 0 ]; then
|
2007-04-05 16:48:42 +05:30
|
|
|
retval=1
|
|
|
|
else
|
|
|
|
eend 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
return ${retval}
|
|
|
|
}
|