| Sean Dague | e263c82 | 2014-12-05 14:25:28 -0500 | [diff] [blame] | 1 | #!/bin/bash | 
|  | 2 | # | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 3 | # Neutron Open vSwitch L2 agent | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 4 | # ----------------------------- | 
|  | 5 |  | 
|  | 6 | # Save trace setting | 
| Ian Wienand | 523f488 | 2015-10-13 11:03:03 +1100 | [diff] [blame] | 7 | _XTRACE_NEUTRON_OVSL2=$(set +o | grep xtrace) | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 8 | set +o xtrace | 
|  | 9 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 10 | source $TOP_DIR/lib/neutron_plugins/ovs_base | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 11 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 12 | function neutron_plugin_create_nova_conf { | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 13 | _neutron_ovs_base_configure_nova_vif_driver | 
| Kyle Mestery | bd08550 | 2014-04-30 23:50:29 +0000 | [diff] [blame] | 14 | if [ "$VIRT_DRIVER" == 'xenserver' ]; then | 
| Gary Kotton | 51c681d | 2014-04-22 01:40:56 -0700 | [diff] [blame] | 15 | iniset $NOVA_CONF xenserver vif_driver nova.virt.xenapi.vif.XenAPIOpenVswitchDriver | 
|  | 16 | iniset $NOVA_CONF xenserver ovs_integration_bridge $XEN_INTEGRATION_BRIDGE | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 17 | # Disable nova's firewall so that it does not conflict with neutron | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 18 | iniset $NOVA_CONF DEFAULT firewall_driver nova.virt.firewall.NoopFirewallDriver | 
|  | 19 | fi | 
|  | 20 | } | 
|  | 21 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 22 | function neutron_plugin_install_agent_packages { | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 23 | _neutron_ovs_base_install_agent_packages | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 24 | } | 
|  | 25 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 26 | function neutron_plugin_configure_debug_command { | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 27 | _neutron_ovs_base_configure_debug_command | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 28 | } | 
|  | 29 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 30 | function neutron_plugin_configure_dhcp_agent { | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 31 | local conf_file=$1 | 
| Armando Migliaccio | 14b12a7 | 2016-08-12 19:07:12 -0700 | [diff] [blame] | 32 | : | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 33 | } | 
|  | 34 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 35 | function neutron_plugin_configure_l3_agent { | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 36 | local conf_file=$1 | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 37 | _neutron_ovs_base_configure_l3_agent | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 38 | } | 
|  | 39 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 40 | function neutron_plugin_configure_plugin_agent { | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 41 | # Setup integration bridge | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 42 | _neutron_ovs_base_setup_bridge $OVS_BRIDGE | 
|  | 43 | _neutron_ovs_base_configure_firewall_driver | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 44 |  | 
|  | 45 | # Setup agent for tunneling | 
| Kyle Mestery | bd08550 | 2014-04-30 23:50:29 +0000 | [diff] [blame] | 46 | if [[ "$OVS_ENABLE_TUNNELING" == "True" ]]; then | 
| Edgar Magana | 6f335b9 | 2014-07-10 15:42:44 -0700 | [diff] [blame] | 47 | iniset /$Q_PLUGIN_CONF_FILE ovs local_ip $TUNNEL_ENDPOINT_IP | 
| Hirofumi Ichihara | d48d672 | 2015-07-04 22:58:44 +0900 | [diff] [blame] | 48 | iniset /$Q_PLUGIN_CONF_FILE ovs tunnel_bridge $OVS_TUNNEL_BRIDGE | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 49 | fi | 
|  | 50 |  | 
|  | 51 | # Setup physical network bridge mappings.  Override | 
|  | 52 | # ``OVS_VLAN_RANGES`` and ``OVS_BRIDGE_MAPPINGS`` in ``localrc`` for more | 
|  | 53 | # complex physical network configurations. | 
| Kyle Mestery | bd08550 | 2014-04-30 23:50:29 +0000 | [diff] [blame] | 54 | if [[ "$OVS_BRIDGE_MAPPINGS" == "" ]] && [[ "$PHYSICAL_NETWORK" != "" ]] && [[ "$OVS_PHYSICAL_BRIDGE" != "" ]]; then | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 55 | OVS_BRIDGE_MAPPINGS=$PHYSICAL_NETWORK:$OVS_PHYSICAL_BRIDGE | 
|  | 56 |  | 
| Sean M. Collins | 54d16f7 | 2016-03-15 15:18:14 -0400 | [diff] [blame] | 57 | # Configure bridge manually with physical interface as port for multi-node | 
|  | 58 | _neutron_ovs_base_add_bridge $OVS_PHYSICAL_BRIDGE | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 59 | fi | 
|  | 60 | if [[ "$OVS_BRIDGE_MAPPINGS" != "" ]]; then | 
| Gary Kotton | d42634f | 2013-06-24 09:26:55 +0000 | [diff] [blame] | 61 | iniset /$Q_PLUGIN_CONF_FILE ovs bridge_mappings $OVS_BRIDGE_MAPPINGS | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 62 | fi | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 63 | AGENT_BINARY="$NEUTRON_BIN_DIR/neutron-openvswitch-agent" | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 64 |  | 
| Kyle Mestery | bd08550 | 2014-04-30 23:50:29 +0000 | [diff] [blame] | 65 | if [ "$VIRT_DRIVER" == 'xenserver' ]; then | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 66 | # Make a copy of our config for domU | 
| Mate Lakat | 1a247e8 | 2014-08-05 14:32:51 +0100 | [diff] [blame] | 67 | sudo cp /$Q_PLUGIN_CONF_FILE "/$Q_PLUGIN_CONF_FILE.domU" | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 68 |  | 
| Huan Xie | 201e3c1 | 2015-08-27 12:34:24 +0100 | [diff] [blame] | 69 | # change domU's config file to STACK_USER | 
|  | 70 | sudo chown $STACK_USER:$STACK_USER /$Q_PLUGIN_CONF_FILE.domU | 
|  | 71 |  | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 72 | # Deal with Dom0's L2 Agent: | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 73 | Q_RR_DOM0_COMMAND="$NEUTRON_BIN_DIR/neutron-rootwrap-xen-dom0 $Q_RR_CONF_FILE" | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 74 |  | 
|  | 75 | # For now, duplicate the xen configuration already found in nova.conf | 
| Gary Kotton | d42634f | 2013-06-24 09:26:55 +0000 | [diff] [blame] | 76 | iniset $Q_RR_CONF_FILE xenapi xenapi_connection_url "$XENAPI_CONNECTION_URL" | 
|  | 77 | iniset $Q_RR_CONF_FILE xenapi xenapi_connection_username "$XENAPI_USER" | 
|  | 78 | iniset $Q_RR_CONF_FILE xenapi xenapi_connection_password "$XENAPI_PASSWORD" | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 79 |  | 
|  | 80 | # Under XS/XCP, the ovs agent needs to target the dom0 | 
|  | 81 | # integration bridge.  This is enabled by using a root wrapper | 
|  | 82 | # that executes commands on dom0 via a XenAPI plugin. | 
| Huan Xie | 201e3c1 | 2015-08-27 12:34:24 +0100 | [diff] [blame] | 83 | # XenAPI does not support daemon rootwrap now, so set root_helper_daemon empty | 
| Jianghua Wang | caa822f | 2016-11-11 18:23:17 +0800 | [diff] [blame] | 84 | iniset "/$Q_PLUGIN_CONF_FILE.domU" agent root_helper "$Q_RR_DOM0_COMMAND" | 
|  | 85 | iniset "/$Q_PLUGIN_CONF_FILE.domU" agent root_helper_daemon "" | 
| Huan Xie | 201e3c1 | 2015-08-27 12:34:24 +0100 | [diff] [blame] | 86 |  | 
|  | 87 | # Disable minimize polling, so that it can always detect OVS and Port changes | 
|  | 88 | # This is a problem of xenserver + neutron, bug has been reported | 
|  | 89 | # https://bugs.launchpad.net/neutron/+bug/1495423 | 
| Jianghua Wang | caa822f | 2016-11-11 18:23:17 +0800 | [diff] [blame] | 90 | iniset "/$Q_PLUGIN_CONF_FILE.domU" agent minimize_polling False | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 91 |  | 
|  | 92 | # Set "physical" mapping | 
| Jianghua Wang | caa822f | 2016-11-11 18:23:17 +0800 | [diff] [blame] | 93 | iniset "/$Q_PLUGIN_CONF_FILE.domU" ovs bridge_mappings "physnet1:$FLAT_NETWORK_BRIDGE" | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 94 |  | 
|  | 95 | # XEN_INTEGRATION_BRIDGE is the integration bridge in dom0 | 
| Jianghua Wang | caa822f | 2016-11-11 18:23:17 +0800 | [diff] [blame] | 96 | iniset "/$Q_PLUGIN_CONF_FILE.domU" ovs integration_bridge $XEN_INTEGRATION_BRIDGE | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 97 |  | 
| Huan Xie | 2864150 | 2016-09-20 06:49:50 +0000 | [diff] [blame] | 98 | # Set OVS native interface for ovs-agent in compute node | 
|  | 99 | XEN_DOM0_IP=$(echo "$XENAPI_CONNECTION_URL" | cut -d "/" -f 3) | 
| Huan Xie | df875c5 | 2016-11-30 19:47:24 -0800 | [diff] [blame] | 100 | iniset /$Q_PLUGIN_CONF_FILE.domU ovs ovsdb_connection tcp:$XEN_DOM0_IP:6640 | 
|  | 101 | iniset /$Q_PLUGIN_CONF_FILE.domU ovs of_listen_address $HOST_IP | 
| Huan Xie | 2864150 | 2016-09-20 06:49:50 +0000 | [diff] [blame] | 102 |  | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 103 | # Set up domU's L2 agent: | 
|  | 104 |  | 
| Huan Xie | 2f5596e | 2016-04-05 22:22:48 -0700 | [diff] [blame] | 105 | # Create a bridge "br-$VLAN_INTERFACE" | 
|  | 106 | _neutron_ovs_base_add_bridge "br-$VLAN_INTERFACE" | 
|  | 107 | # Add $VLAN_INTERFACE to that bridge | 
|  | 108 | sudo ovs-vsctl -- --may-exist add-port "br-$VLAN_INTERFACE" $VLAN_INTERFACE | 
| Huan Xie | 201e3c1 | 2015-08-27 12:34:24 +0100 | [diff] [blame] | 109 |  | 
|  | 110 | # Create external bridge and add port | 
| Ihar Hrachyshka | 7b5c7dc | 2016-07-15 20:17:13 +0200 | [diff] [blame] | 111 | _neutron_ovs_base_add_public_bridge | 
| Huan Xie | 2f5596e | 2016-04-05 22:22:48 -0700 | [diff] [blame] | 112 | sudo ovs-vsctl -- --may-exist add-port $PUBLIC_BRIDGE $PUBLIC_INTERFACE | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 113 |  | 
|  | 114 | # Set bridge mappings to "physnet1:br-$GUEST_INTERFACE_DEFAULT" | 
| Jianghua Wang | caa822f | 2016-11-11 18:23:17 +0800 | [diff] [blame] | 115 | iniset /$Q_PLUGIN_CONF_FILE ovs bridge_mappings "physnet1:br-$VLAN_INTERFACE,physnet-ex:$PUBLIC_BRIDGE" | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 116 | # Set integration bridge to domU's | 
| Jianghua Wang | caa822f | 2016-11-11 18:23:17 +0800 | [diff] [blame] | 117 | iniset /$Q_PLUGIN_CONF_FILE ovs integration_bridge $OVS_BRIDGE | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 118 | # Set root wrap | 
| Jianghua Wang | caa822f | 2016-11-11 18:23:17 +0800 | [diff] [blame] | 119 | iniset /$Q_PLUGIN_CONF_FILE agent root_helper "$Q_RR_COMMAND" | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 120 | fi | 
| Akihiro Motoki | 2307f9d | 2014-08-09 18:58:20 +0900 | [diff] [blame] | 121 | iniset /$Q_PLUGIN_CONF_FILE agent tunnel_types $Q_TUNNEL_TYPES | 
| Michal Ptacek | c160555 | 2015-09-23 21:02:02 +0100 | [diff] [blame] | 122 | iniset /$Q_PLUGIN_CONF_FILE ovs datapath_type $OVS_DATAPATH_TYPE | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 123 | } | 
|  | 124 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 125 | function neutron_plugin_setup_interface_driver { | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 126 | local conf_file=$1 | 
| Martin Hickey | dca49de | 2015-10-20 12:13:19 +0100 | [diff] [blame] | 127 | iniset $conf_file DEFAULT interface_driver openvswitch | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 128 | } | 
|  | 129 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 130 | function neutron_plugin_check_adv_test_requirements { | 
| Bob Kukura | c9b0f1a | 2013-04-23 16:28:24 -0400 | [diff] [blame] | 131 | is_service_enabled q-agt && is_service_enabled q-dhcp && return 0 | 
|  | 132 | } | 
|  | 133 |  | 
|  | 134 | # Restore xtrace | 
| Ian Wienand | 523f488 | 2015-10-13 11:03:03 +1100 | [diff] [blame] | 135 | $_XTRACE_NEUTRON_OVSL2 |