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