2015-10-15 04:34:55 +02:00
|
|
|
#!/bin/bash
|
2010-09-06 17:07:42 +02:00
|
|
|
#============================================================================
|
2015-10-15 04:34:55 +02:00
|
|
|
# /etc/xen/vif-route-qubes
|
|
|
|
#
|
|
|
|
# Script for configuring a vif in routed mode.
|
|
|
|
# The hotplugging system will call this script if it is specified either in
|
|
|
|
# the device configuration given to Xend, or the default Xend configuration
|
2010-09-06 17:07:42 +02:00
|
|
|
# in /etc/xen/xend-config.sxp. If the script is specified in neither of those
|
2015-10-15 04:34:55 +02:00
|
|
|
# places, then vif-bridge is the default.
|
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
# vif-route (add|remove|online|offline)
|
|
|
|
#
|
|
|
|
# Environment vars:
|
|
|
|
# vif vif interface name (required).
|
|
|
|
# XENBUS_PATH path to this device's details in the XenStore (required).
|
|
|
|
#
|
|
|
|
# Read from the store:
|
|
|
|
# ip list of IP networks for the vif, space-separated (default given in
|
|
|
|
# this script).
|
|
|
|
#============================================================================
|
2010-09-06 17:07:42 +02:00
|
|
|
|
|
|
|
dir=$(dirname "$0")
|
2017-09-30 03:17:14 +02:00
|
|
|
# shellcheck disable=SC1091,SC1090
|
2010-09-06 17:07:42 +02:00
|
|
|
. "$dir/vif-common.sh"
|
|
|
|
|
|
|
|
#main_ip=$(dom0_ip)
|
2015-07-01 01:25:00 +02:00
|
|
|
lockfile=/var/run/xen-hotplug/vif-lock
|
2010-09-06 17:07:42 +02:00
|
|
|
|
2017-09-30 03:17:14 +02:00
|
|
|
# shellcheck disable=SC2154
|
2016-10-30 21:41:35 +01:00
|
|
|
if [ "${ip}" ]; then
|
2017-12-03 03:27:45 +01:00
|
|
|
# get first IPv4 and first IPv6
|
|
|
|
for addr in ${ip}; do
|
|
|
|
if [ -z "$ip4" ] && [[ "$addr" = *.* ]]; then
|
|
|
|
ip4="$addr"
|
|
|
|
elif [ -z "$ip6" ] && [[ "$addr" = *:* ]]; then
|
|
|
|
ip6="$addr"
|
|
|
|
fi
|
|
|
|
done
|
2016-10-30 21:41:35 +01:00
|
|
|
# IPs as seen by this VM
|
2017-12-03 03:27:45 +01:00
|
|
|
netvm_ip="$ip4"
|
2017-09-30 03:17:14 +02:00
|
|
|
netvm_gw_ip=$(qubesdb-read /qubes-netvm-gateway)
|
|
|
|
netvm_dns1_ip=$(qubesdb-read /qubes-netvm-primary-dns)
|
|
|
|
netvm_dns2_ip=$(qubesdb-read /qubes-netvm-secondary-dns)
|
2016-10-30 21:41:35 +01:00
|
|
|
|
|
|
|
back_ip="$netvm_gw_ip"
|
|
|
|
|
|
|
|
# IPs as seen by the VM - if other than $netvm_ip
|
2017-12-03 03:27:45 +01:00
|
|
|
appvm_gw_ip="$(qubesdb-read "/mapped-ip/$ip4/visible-gateway" 2>/dev/null || :)"
|
|
|
|
appvm_ip="$(qubesdb-read "/mapped-ip/$ip4/visible-ip" 2>/dev/null || :)"
|
2016-10-30 21:41:35 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Apply NAT if IP visible from the VM is different than the "real" one
|
|
|
|
# See vif-qubes-nat.sh for details
|
2017-12-03 03:27:45 +01:00
|
|
|
# XXX: supported only for the first IPv4 address, IPv6 is dropped if this
|
|
|
|
# feature is enabled
|
2017-09-30 03:17:14 +02:00
|
|
|
if [ -n "$appvm_ip" ] && [ -n "$appvm_gw_ip" ] && [ "$appvm_ip" != "$netvm_ip" ]; then
|
|
|
|
# shellcheck disable=SC2154
|
2016-10-30 21:41:35 +01:00
|
|
|
if test "$command" == online; then
|
2017-09-30 03:17:14 +02:00
|
|
|
# shellcheck disable=SC2154
|
|
|
|
echo 1 >"/proc/sys/net/ipv4/conf/${vif}/proxy_arp"
|
2016-10-30 21:41:35 +01:00
|
|
|
fi
|
|
|
|
|
2017-09-30 03:17:14 +02:00
|
|
|
# shellcheck source=network/vif-qubes-nat.sh
|
2016-10-30 21:41:35 +01:00
|
|
|
. "$dir/vif-qubes-nat.sh"
|
|
|
|
fi
|
|
|
|
|
2017-09-30 03:17:14 +02:00
|
|
|
# shellcheck disable=SC2154
|
2010-09-06 17:07:42 +02:00
|
|
|
case "$command" in
|
|
|
|
online)
|
2017-09-30 03:17:14 +02:00
|
|
|
ifconfig "${vif}" up
|
|
|
|
echo 1 >"/proc/sys/net/ipv4/conf/${vif}/proxy_arp"
|
2012-03-08 14:57:10 +01:00
|
|
|
ipcmd='add'
|
2012-03-03 01:30:04 +01:00
|
|
|
iptables_cmd='-I PREROUTING 1'
|
2010-09-06 17:07:42 +02:00
|
|
|
cmdprefix=''
|
|
|
|
;;
|
|
|
|
offline)
|
2017-09-30 03:17:14 +02:00
|
|
|
do_without_error ifdown "${vif}"
|
2010-09-06 17:07:42 +02:00
|
|
|
ipcmd='del'
|
2012-03-03 01:30:04 +01:00
|
|
|
iptables_cmd='-D PREROUTING'
|
2010-09-06 17:07:42 +02:00
|
|
|
cmdprefix='do_without_error'
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2012-03-08 14:57:10 +01:00
|
|
|
domid=${vif/vif/}
|
|
|
|
domid=${domid/.*/}
|
|
|
|
# metric must be possitive, but prefer later interface
|
|
|
|
# 32752 is max XID aka domid
|
2017-09-30 03:17:14 +02:00
|
|
|
metric=$(( 32752 - domid ))
|
2012-03-08 14:57:10 +01:00
|
|
|
|
2010-09-06 17:07:42 +02:00
|
|
|
if [ "${ip}" ] ; then
|
|
|
|
# If we've been given a list of IP addresses, then add routes from dom0 to
|
|
|
|
# the guest using those addresses.
|
|
|
|
for addr in ${ip} ; do
|
2017-09-30 03:17:14 +02:00
|
|
|
${cmdprefix} ip route "${ipcmd}" "${addr}" dev "${vif}" metric "$metric"
|
2017-12-03 03:27:45 +01:00
|
|
|
if [[ "$addr" = *:* ]]; then
|
|
|
|
ipt=ip6tables-restore
|
|
|
|
else
|
|
|
|
ipt=iptables-restore
|
|
|
|
fi
|
|
|
|
echo -e "*raw\n$iptables_cmd -i ${vif} ! -s ${addr} -j DROP\nCOMMIT" | \
|
|
|
|
${cmdprefix} flock $lockfile $ipt --noflush
|
2010-09-06 17:07:42 +02:00
|
|
|
done
|
2017-12-03 03:27:45 +01:00
|
|
|
# if no IPv6 is assigned, block all IPv6 traffic on that interface
|
|
|
|
if ! [[ "$ip" = *:* ]]; then
|
|
|
|
echo -e "*raw\n$iptables_cmd -i ${vif} -j DROP\nCOMMIT" | \
|
|
|
|
${cmdprefix} flock $lockfile ip6tables-restore --noflush
|
|
|
|
fi
|
2017-09-30 03:17:14 +02:00
|
|
|
${cmdprefix} ip addr "${ipcmd}" "${back_ip}/32" dev "${vif}"
|
2010-09-06 17:07:42 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
log debug "Successful vif-route-qubes $command for $vif."
|
|
|
|
if [ "$command" = "online" ]
|
|
|
|
then
|
2015-07-01 04:52:37 +02:00
|
|
|
# disable tx checksumming offload, apparently it doesn't work with our ancient qemu in stubdom
|
2017-09-30 03:17:14 +02:00
|
|
|
do_without_error ethtool -K "$vif" tx off
|
2010-09-06 17:07:42 +02:00
|
|
|
success
|
|
|
|
fi
|