X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=xenserver%2Fetc_xensource_scripts_vif;h=3a209f9b4ae315d732483d0d6fb8f9f4eb1323d5;hb=883b106184656ff004f15c7872de31433918c94f;hp=91131598b1b56047fb6d6744ac5a89413ed8e251;hpb=49c36903d6d65bed96cba31f05534510a21a68d7;p=openvswitch diff --git a/xenserver/etc_xensource_scripts_vif b/xenserver/etc_xensource_scripts_vif index 91131598..3a209f9b 100755 --- a/xenserver/etc_xensource_scripts_vif +++ b/xenserver/etc_xensource_scripts_vif @@ -23,9 +23,7 @@ BRCTL="/usr/sbin/brctl" IP="/sbin/ip" -cfg_mod="/usr/bin/ovs-cfg-mod" vsctl="/usr/bin/ovs-vsctl" -service="/sbin/service" handle_promiscuous() { @@ -62,26 +60,37 @@ handle_mtu() { local mtu=$(xenstore-read "${PRIVATE}/MTU" 2>/dev/null) if [ $? -eq 0 -a -n "${mtu}" ]; then - echo "${mtu}" > /sys/class/net/${dev}/mtu + logger -t scripts-vif "Setting ${dev} MTU ${mtu}" + ${IP} link set "${dev}" mtu ${mtu} || logger -t scripts-vif "Failed to ip link set ${dev} mtu ${mtu}. Error code $?" fi } +set_vif_external_id() +{ + local key=$1 + local value=$2 + + logger -t scripts-vif "vif${DOMID}.${DEVID} external-ids:\"${key}\"=\"${value}\"" + + echo "-- set interface vif${DOMID}.${DEVID} external-ids:\"${key}\"=\"${value}\"" +} + handle_vswitch_vif_details() { local vif_details= local net_uuid=$(xenstore-read "${PRIVATE}/network-uuid" 2>/dev/null) if [ -n "${net_uuid}" ] ; then - vif_details="$vif_details --add=port.${dev}.net-uuid=${net_uuid}" + set_vif_external_id "xs-network-uuid" "${net_uuid}" fi local address=$(xenstore-read "/local/domain/$DOMID/device/vif/$DEVID/mac" 2>/dev/null) if [ -n "${address}" ] ; then - vif_details="$vif_details --add=port.${dev}.vif-mac=${address}" + set_vif_external_id "xs-vif-mac" "${address}" fi local vif_uuid=$(xenstore-read "${PRIVATE}/vif-uuid" 2>/dev/null) if [ -n "${vif_uuid}" ] ; then - vif_details="$vif_details --add=port.${dev}.vif-uuid=${vif_uuid}" + set_vif_external_id "xs-vif-uuid" "${vif_uuid}" fi local vm=$(xenstore-read "/local/domain/$DOMID/vm" 2>/dev/null) @@ -89,9 +98,34 @@ handle_vswitch_vif_details() local vm_uuid=$(xenstore-read "$vm/uuid" 2>/dev/null) fi if [ -n "${vm_uuid}" ] ; then - vif_details="$vif_details --add=port.${dev}.vm-uuid=${vm_uuid}" + set_vif_external_id "xs-vm-uuid" "${vm_uuid}" + fi +} + +xs550_set_internal_network_uuid() +{ + . /etc/xensource-inventory + if test "$PRODUCT_VERSION" = "5.5.0" || test "${BUILD_NUMBER%p}" -le 26131 + then + # vNetManager needs to know the network UUID(s) associated with each + # datapath. Normally interface-reconfigure adds them, but XAPI does + # not use interface-reconfigure for internal networks. Instead, XAPI + # calls the addbr ioctl internally, so we have to do it here instead + # for internal networks. This is only acceptable because xapi is lazy + # about creating internal networks: it only creates one just before it + # adds the first vif to it. There may still be a brief delay between + # the initial ovs-vswitchd connection to vNetManager and setting this + # configuration variable, but vNetManager can tolerate that. + local bridge=$1 + local net_uuid=$(xenstore-read "${PRIVATE}/network-uuid" 2>/dev/null) + if [ -n "${net_uuid}" ] ; then + logger -t scripts-vif "${bridge} xs-network-uuids ${net_uuid}" + echo "-- br-set-external-id $bridge xs-network-uuids ${net_uuid}" + fi + else + # XAPI after 5.5.0 sets the network external ids itself, via ovs-vsctl. + : fi - echo ${vif_details} } add_to_bridge() @@ -120,25 +154,11 @@ add_to_bridge() ${BRCTL} addif "${bridge}" "${dev}" || logger -t scripts-vif "Failed to brctl addif ${bridge} ${dev}" ;; vswitch) - local VLAN_ID=$($vsctl br-to-vlan $bridge) - local vid= - if [ "$VLAN_ID" -ne 0 ] ; then - bridge=$($vsctl br-to-parent $bridge) - vid="--add=vlan.${dev}.tag=${VLAN_ID}" - fi - if [ "$TYPE" = "vif" ] ; then local vif_details=$(handle_vswitch_vif_details) fi - $cfg_mod -F /etc/ovs-vswitchd.conf \ - --del-match="bridge.*.port=${dev}" \ - --del-match="vlan.${dev}.trunks=*" \ - --del-match="vlan.${dev}.tag=*" \ - --del-match="port.${dev}.[!0-9]*" \ - --add="bridge.$bridge.port=${dev}" \ - $vid $vif_details -c - $service vswitch reload + $vsctl -- --if-exists del-port $dev -- add-port $bridge $dev $vif_details $(xs550_set_internal_network_uuid $bridge) ;; esac @@ -152,19 +172,23 @@ remove_from_bridge() # Nothing to do ;; vswitch) - $cfg_mod -vANY:console:emer -F /etc/ovs-vswitchd.conf \ - --del-match="bridge.*.port=${dev}" \ - --del-match="vlan.${dev}.trunks=*" \ - --del-match="vlan.${dev}.tag=*" \ - --del-match="port.${dev}.[!0-9]*" -c - $service vswitch reload + # If ovs-brcompatd is running, it might already have deleted the + # port. Use --if-exists to suppress the error that would otherwise + # arise in that case. + $vsctl -- --if-exists del-port $dev ;; esac } NETWORK_MODE=$(cat /etc/xensource/network.conf) ACTION=$1 -TYPE=$2 + +# Older versions of XenServer do not pass in the type as an argument +if [[ $# -lt 2 ]]; then + TYPE=vif +else + TYPE=$2 +fi case $NETWORK_MODE in bridge|vswitch) ;;