aboutsummaryrefslogtreecommitdiff
path: root/util/mount.fuse
blob: 2a74449bc9b28ad04fdc2303330bb45c7fa476af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/sh
#
# FUSE mount helper
# Petr Klima <qaxi@seznam.cz>
# Thanks to Miklos Szeredi <miklos@szeredi.hu>
# to kick me to the right way
#

VERSION="0.0.1"
PRGNAME=`basename $0`

if [ -z "$HOME" ]; then
    HOME=/root
fi
export HOME

USAGE="${PRGNAME} version ${VERSION}
usage: ${PRGNAME} fusefs_type#[mountpath] mountpoint [FUSE options]

	example: ${PRGNAME} sshfs#root@tux:/ /mnt/tuxssh -o rw
"

function die {
	echo -e "$PRGNAME# $1" >&2
	[ -z "$2" ] && exit 128
	exit "$2"
}

[ "$#" -ge 2 ] || die "${USAGE}"

# for now i have to be same as FUSE mount binary
# should be configurable
eval `echo "$1" | sed -n 's,\(^[^#][^#]*\)\(#\(.*\)\)*,FSTYPE="\1" MOUNTPATH="\3",p'`

export PATH
FSBIN=`which ${FSTYPE} 2>/dev/null` \
	|| die "Can not find FUSE mount binary for FS ${FSTYPE}" 1

# was there an # in $1
[ "$1" = "$MOUNTPATH" ] && MOUNTPATH=""

MOUNTPOINT="$2"
[ -d "${MOUNTPOINT}" ] || die "Directory ${MOUNTPOINT} does not exist"

shift
shift

eval `echo $@ | sed -n "s/\([^,]*,\)*setuid=\([^,]*\).*/SETUID=\2/p"`

ignore_opts='\(user\|nouser\|users\|auto\|noauto\|_netdev\|setuid=[^,]*\)'

OPTIONS=`echo $@ | sed "s/,${ignore_opts}\|${ignore_opts},//g"`

if test -z "$SETUID"; then
    ${FSTYPE} ${MOUNTPATH} ${MOUNTPOINT} ${OPTIONS}
else
    su - "$SETUID" -c "${FSTYPE} ${MOUNTPATH} ${MOUNTPOINT} ${OPTIONS}"
fi