xenserver: In vif script, tolerate port existing when we (re)add it.
[cascardo/ovs.git] / xenserver / etc_xensource_scripts_vif
1 #!/bin/sh
2
3 # Copyright (C) 2008,2009 Citrix Systems, Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU Lesser General Public License as published
7 # by the Free Software Foundation; version 2.1 only. with the special
8 # exception on linking described in file LICENSE.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU Lesser General Public License for more details.
14
15 # CA-23900: Warning: when VIFs are added to windows guests with PV drivers the backend vif device is registered,
16 # unregistered and then registered again. This causes the udev event to fire twice and this script runs twice.
17 # Since the first invocation of the script races with the device unregistration, spurious errors are possible
18 # which will be logged but are safe to ignore since the second script invocation should complete the operation.
19 # Note that each script invocation is run synchronously from udev and so the scripts don't race with each other.
20
21 # Keep other-config/ keys in sync with device.ml:vif_udev_keys
22
23 BRCTL="/usr/sbin/brctl"
24 IP="/sbin/ip"
25
26 vsctl="/usr/bin/ovs-vsctl"
27 dump_vif_details="/usr/share/vswitch/scripts/dump-vif-details"
28
29 handle_promiscuous()
30 {
31     local arg=$(xenstore-read "${PRIVATE}/other-config/promiscuous" 2>/dev/null)
32     if [ $? -eq 0 -a -n "${arg}" ] ; then
33         case $NETWORK_MODE in
34             bridge)
35                 case "${arg}" in 
36                     true|on) echo 1 > /sys/class/net/${dev}/brport/promisc ;;
37                     *) echo 0 > /sys/class/net/${dev}/brport/promisc ;;
38                 esac
39                 ;;
40             vswitch)
41                 logger -t script-vif "${dev}: Promiscuous ports are not supported via vSwitch."
42                 ;;
43         esac
44     fi
45 }
46
47 handle_ethtool()
48 {
49     local opt=$1
50     local arg=$(xenstore-read "${PRIVATE}/other-config/ethtool-${opt}" 2>/dev/null)
51     if [ $? -eq 0 -a -n "${arg}" ] ; then
52         case "${arg}" in
53             true|on)   /sbin/ethtool -K "${dev}" "${opt}" on ;;
54             false|off) /sbin/ethtool -K "${dev}" "${opt}" off ;;
55             *) logger -t scripts-vif "Unknown ethtool argument ${opt}=${arg} on ${dev}/${VIFUUID}" ;;
56         esac
57     fi
58 }
59
60 handle_mtu()
61 {
62     local mtu=$(xenstore-read "${PRIVATE}/MTU" 2>/dev/null)
63     if [ $? -eq 0 -a -n "${mtu}" ]; then
64         logger -t scripts-vif "Setting ${dev} MTU ${mtu}"
65         ${IP} link set "${dev}" mtu ${mtu} || logger -t scripts-vif "Failed to ip link set ${dev} mtu ${mtu}. Error code $?"
66     fi
67 }
68
69 add_to_bridge()
70 {
71     local address=$(xenstore-read "${PRIVATE}/bridge-MAC")
72     if [ $? -ne 0 -o -z "${address}" ]; then
73         logger -t scripts-vif "Failed to read ${PRIVATE}/bridge-MAC from xenstore"
74         exit 1
75     fi
76     local bridge=$(xenstore-read "${PRIVATE}/bridge")
77     if [ $? -ne 0 -o -z "${bridge}" ]; then
78         logger -t scripts-vif "Failed to read ${PRIVATE}/bridge from xenstore"
79         exit 1
80     fi
81     logger -t scripts-vif "Adding ${dev} to ${bridge} with address ${address}"
82
83     ${IP} link set "${dev}" down                        || logger -t scripts-vif "Failed to ip link set ${dev} down"
84     ${IP} link set "${dev}" arp off                     || logger -t scripts-vif "Failed to ip link set ${dev} arp off"
85     ${IP} link set "${dev}" multicast off               || logger -t scripts-vif "Failed to ip link set ${dev} multicast off"
86     ${IP} link set "${dev}" address "${address}"        || logger -t scripts-vif "Failed to ip link set ${dev} address ${address}"
87     ${IP} addr flush "${dev}"                           || logger -t scripts-vif "Failed to ip addr flush ${dev}"
88
89     case $NETWORK_MODE in
90         bridge)
91             ${BRCTL} setfd "${bridge}" 0                        || logger -t scripts-vif "Failed to brctl setfd ${bridge} 0"
92             ${BRCTL} addif "${bridge}" "${dev}"                 || logger -t scripts-vif "Failed to brctl addif ${bridge} ${dev}"
93             ;;
94         vswitch)
95                 local vif_details=$($dump_vif_details $DOMID $DEVID)
96                 if [ $? -ne 0 -o -z "${vif_details}" ]; then
97                         logger -t scripts-vif "Failed to retrieve vif details for vswitch"
98                 fi
99
100                 $vsctl -- --if-exists del-port $dev -- add-port $bridge $dev $vif_details
101             ;;
102     esac
103             
104     ${IP} link set "${dev}" up                          || logger -t scripts-vif "Failed to ip link set ${dev} up"
105 }
106
107 remove_from_bridge()
108 {
109     case $NETWORK_MODE in
110         bridge)
111             # Nothing to do
112             ;;
113         vswitch)
114         $vsctl del-port $bridge $dev
115             ;;
116     esac
117 }
118
119 NETWORK_MODE=$(cat /etc/xensource/network.conf)
120 ACTION=$1
121
122 # Older versions of XenServer do not pass in the type as an argument
123 if [[ $# -lt 2 ]]; then
124     TYPE=vif
125 else
126     TYPE=$2
127 fi
128
129 case $NETWORK_MODE in
130     bridge|vswitch) ;;
131     *)
132         logger -t scripts-vif "Unknown network mode $NETWORK_MODE"
133         exit 1
134         ;;
135 esac
136
137 case ${TYPE} in
138     vif)
139         DOMID=`echo ${XENBUS_PATH} | cut -f 3 -d '/'`
140         DEVID=`echo ${XENBUS_PATH} | cut -f 4 -d '/'`
141         dev=vif${DOMID}.${DEVID}
142         ;;
143     tap)
144         dev=$INTERFACE
145         DOMID=`echo ${dev#tap} | cut -f 1 -d '.'`
146         DEVID=`echo ${dev#tap} | cut -f 2 -d '.'`
147         ;;
148     *)  
149         logger -t scripts-vif "unknown interface type ${TYPE}"
150         exit 1
151         ;;
152 esac
153
154 XAPI=/xapi/${DOMID}/hotplug/vif/${DEVID}
155 HOTPLUG=/xapi/${DOMID}/hotplug/vif/${DEVID}
156 PRIVATE=/xapi/${DOMID}/private/vif/${DEVID}
157
158 logger -t scripts-vif "Called as \"$@\" domid:$DOMID devid:$DEVID mode:$NETWORK_MODE"
159 case "${ACTION}" in
160 online)
161         if [ "${TYPE}" = "vif" ] ; then
162             handle_ethtool rx
163             handle_ethtool tx
164             handle_ethtool sg
165             handle_ethtool tso
166             handle_ethtool ufo
167             handle_ethtool gso
168
169             handle_mtu
170             add_to_bridge
171             handle_promiscuous
172
173             xenstore-write "${HOTPLUG}/vif" "${dev}"
174             xenstore-write "${HOTPLUG}/hotplug" "online"
175
176             # xs-xen.pq.hq:91e986b8e49f netback-wait-for-hotplug
177             xenstore-write "/local/domain/0/backend/vif/${DOMID}/${DEVID}/hotplug-status" "connected"
178         fi
179         ;;
180
181 add)
182         if [ "${TYPE}" = "tap" ] ; then
183             add_to_bridge
184         fi
185         ;;
186
187 remove)
188         if [ "${TYPE}" = "vif" ] ;then
189             xenstore-rm "${HOTPLUG}/hotplug"
190         fi
191         logger -t scripts-vif "${dev} has been removed"
192         remove_from_bridge
193         ;;
194 esac