2009-05-01 19:41:40 +05:30
|
|
|
# Copyright (c) 2007-2008 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-01-11 20:38:57 +05:30
|
|
|
tuntap_depend()
|
|
|
|
{
|
2007-04-05 16:48:42 +05:30
|
|
|
before bridge interface macchanger
|
2012-01-09 05:54:03 +05:30
|
|
|
program ip openvpn tunctl
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2011-12-12 09:36:30 +05:30
|
|
|
_config_vars="$_config_vars iproute2 openvpn tunctl"
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2008-01-11 20:38:57 +05:30
|
|
|
_is_tuntap()
|
|
|
|
{
|
2008-03-20 01:27:24 +05:30
|
|
|
[ -n "$(export RC_SVCNAME="net.${IFACE}"; service_get_value tuntap)" ]
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 20:38:57 +05:30
|
|
|
tuntap_pre_start()
|
|
|
|
{
|
2007-04-05 16:48:42 +05:30
|
|
|
local tuntap=
|
2011-12-13 11:55:58 +05:30
|
|
|
local rc=
|
2007-04-05 16:48:42 +05:30
|
|
|
eval tuntap=\$tuntap_${IFVAR}
|
|
|
|
|
|
|
|
[ -z "${tuntap}" ] && return 0
|
|
|
|
|
2007-10-03 19:05:39 +05:30
|
|
|
if [ ! -e /dev/net/tun ]; then
|
2008-01-29 21:04:17 +05:30
|
|
|
if ! modprobe tun; then
|
2007-04-05 16:48:42 +05:30
|
|
|
eerror "TUN/TAP support is not present in this kernel"
|
|
|
|
return 1
|
|
|
|
fi
|
2008-01-30 21:27:01 +05:30
|
|
|
vebegin "Waiting for /dev/net/tun"
|
2010-01-08 14:09:25 +05:30
|
|
|
# /dev/net/tun can take its time to appear
|
2008-01-30 21:27:01 +05:30
|
|
|
local timeout=10
|
|
|
|
while [ ! -e /dev/net/tun -a ${timeout} -gt 0 ]; do
|
|
|
|
sleep 1
|
2011-11-11 08:16:08 +05:30
|
|
|
: $(( timeout -= 1 ))
|
2008-01-30 21:27:01 +05:30
|
|
|
done
|
|
|
|
if [ ! -e /dev/net/tun ]; then
|
|
|
|
eerror "TUN/TAP support present but /dev/net/tun is not"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
veend 0
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
|
|
|
|
|
|
|
ebegin "Creating Tun/Tap interface ${IFACE}"
|
|
|
|
|
|
|
|
# Set the base metric to 1000
|
|
|
|
metric=1000
|
2007-10-03 19:05:39 +05:30
|
|
|
|
2011-12-12 09:36:30 +05:30
|
|
|
local i_opts= o_opts= t_opts=
|
|
|
|
local do_iproute2=false do_openvpn=false do_tunctl=false
|
|
|
|
eval i_opts=\$iproute2_${IFVAR}
|
2008-01-30 15:56:52 +05:30
|
|
|
eval o_opts=\$openvpn_${IFVAR}
|
|
|
|
eval t_opts=\$tunctl_${IFVAR}
|
|
|
|
|
2011-12-12 09:36:30 +05:30
|
|
|
if [ -n "${i_opts}" ] && type ip >/dev/null 2>&1; then
|
|
|
|
do_iproute2=true
|
|
|
|
elif [ -n "${o_opts}" ] && type openvpn >/dev/null 2>&1; then
|
2008-01-30 21:42:19 +05:30
|
|
|
do_openvpn=true
|
2008-01-30 15:56:52 +05:30
|
|
|
elif [ -n "${t_opts}" ] && type tunctl >/dev/null 2>&1; then
|
|
|
|
do_tunctl=true
|
2011-12-12 09:36:30 +05:30
|
|
|
elif type ip >/dev/null 2>&1; then
|
|
|
|
do_iproute2=true
|
2008-01-30 15:56:52 +05:30
|
|
|
elif type openvpn >/dev/null 2>&1; then
|
|
|
|
do_openvpn=true
|
2011-09-17 03:17:20 +05:30
|
|
|
elif type tunctl >/dev/null 2>&1; then
|
2008-01-30 15:56:52 +05:30
|
|
|
do_tunctl=true
|
|
|
|
fi
|
|
|
|
|
2011-12-12 09:36:30 +05:30
|
|
|
if ${do_iproute2}; then
|
|
|
|
ip tuntap add dev "${IFACE}" mode "${tuntap}" ${i_opts}
|
2011-12-13 11:55:58 +05:30
|
|
|
rc=$?
|
2011-12-12 09:36:30 +05:30
|
|
|
elif ${do_openvpn}; then
|
2008-01-30 15:56:52 +05:30
|
|
|
openvpn --mktun --dev-type "${tuntap}" --dev "${IFACE}" \
|
|
|
|
${o_opts} >/dev/null
|
2011-12-13 11:55:58 +05:30
|
|
|
rc=$?
|
2011-09-17 03:17:20 +05:30
|
|
|
elif ${do_tunctl}; then
|
2008-01-30 15:56:52 +05:30
|
|
|
tunctl ${t_opts} -t "${IFACE}" >/dev/null
|
2011-12-13 11:55:58 +05:30
|
|
|
rc=$?
|
2011-09-17 03:17:20 +05:30
|
|
|
else
|
2011-12-12 09:36:30 +05:30
|
|
|
eerror "Neither iproute2, openvpn nor tunctl has been found, please install"
|
|
|
|
eerror "either \"iproute2\" \"openvpn\" or \"usermode-utilities\"."
|
2011-12-13 11:55:58 +05:30
|
|
|
rc=1
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
2011-12-13 11:55:58 +05:30
|
|
|
eend $rc && _up && service_set_value tuntap "${tuntap}"
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 20:38:57 +05:30
|
|
|
tuntap_post_stop()
|
|
|
|
{
|
2007-04-05 16:48:42 +05:30
|
|
|
_is_tuntap || return 0
|
|
|
|
|
|
|
|
ebegin "Destroying Tun/Tap interface ${IFACE}"
|
2011-12-12 09:36:30 +05:30
|
|
|
if type ip > /dev/null 2>&1; then
|
|
|
|
ip tuntap del dev ${IFACE} mode $(service_get_value tuntap)
|
|
|
|
elif type tunctl >/dev/null 2>&1; then
|
2007-10-03 19:05:39 +05:30
|
|
|
tunctl -d "${IFACE}" >/dev/null
|
|
|
|
else
|
2007-04-05 16:48:42 +05:30
|
|
|
openvpn --rmtun \
|
2007-12-19 19:58:38 +05:30
|
|
|
--dev-type "$(service_get_value tuntap)" \
|
2007-10-03 19:05:39 +05:30
|
|
|
--dev "${IFACE}" >/dev/null
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
|
|
|
eend $?
|
|
|
|
}
|