blob: e27b8a634a9f51b875613b94541c26eb86a06c8d [file] [log] [blame]
Sean Daguee263c822014-12-05 14:25:28 -05001#!/bin/bash
2#
Mark McClainb05c8762013-07-06 23:29:39 -04003# Neutron Open vSwitch L2 agent
Bob Kukurac9b0f1a2013-04-23 16:28:24 -04004# -----------------------------
5
6# Save trace setting
Ian Wienand523f4882015-10-13 11:03:03 +11007_XTRACE_NEUTRON_OVSL2=$(set +o | grep xtrace)
Bob Kukurac9b0f1a2013-04-23 16:28:24 -04008set +o xtrace
9
Mark McClainb05c8762013-07-06 23:29:39 -040010source $TOP_DIR/lib/neutron_plugins/ovs_base
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040011
Ian Wienandaee18c72014-02-21 15:35:08 +110012function neutron_plugin_create_nova_conf {
Mark McClainb05c8762013-07-06 23:29:39 -040013 _neutron_ovs_base_configure_nova_vif_driver
Kyle Mesterybd085502014-04-30 23:50:29 +000014 if [ "$VIRT_DRIVER" == 'xenserver' ]; then
Gary Kotton51c681d2014-04-22 01:40:56 -070015 iniset $NOVA_CONF xenserver vif_driver nova.virt.xenapi.vif.XenAPIOpenVswitchDriver
16 iniset $NOVA_CONF xenserver ovs_integration_bridge $XEN_INTEGRATION_BRIDGE
Mark McClainb05c8762013-07-06 23:29:39 -040017 # Disable nova's firewall so that it does not conflict with neutron
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040018 iniset $NOVA_CONF DEFAULT firewall_driver nova.virt.firewall.NoopFirewallDriver
19 fi
20}
21
Ian Wienandaee18c72014-02-21 15:35:08 +110022function neutron_plugin_install_agent_packages {
Mark McClainb05c8762013-07-06 23:29:39 -040023 _neutron_ovs_base_install_agent_packages
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040024}
25
Ian Wienandaee18c72014-02-21 15:35:08 +110026function neutron_plugin_configure_debug_command {
Mark McClainb05c8762013-07-06 23:29:39 -040027 _neutron_ovs_base_configure_debug_command
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040028}
29
Ian Wienandaee18c72014-02-21 15:35:08 +110030function neutron_plugin_configure_dhcp_agent {
Sean M. Collins2a242512016-05-03 09:03:09 -040031 local conf_file=$1
Armando Migliaccio14b12a72016-08-12 19:07:12 -070032 :
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040033}
34
Ian Wienandaee18c72014-02-21 15:35:08 +110035function neutron_plugin_configure_l3_agent {
Sean M. Collins2a242512016-05-03 09:03:09 -040036 local conf_file=$1
Mark McClainb05c8762013-07-06 23:29:39 -040037 _neutron_ovs_base_configure_l3_agent
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040038}
39
Ian Wienandaee18c72014-02-21 15:35:08 +110040function neutron_plugin_configure_plugin_agent {
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040041 # Setup integration bridge
Mark McClainb05c8762013-07-06 23:29:39 -040042 _neutron_ovs_base_setup_bridge $OVS_BRIDGE
43 _neutron_ovs_base_configure_firewall_driver
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040044
45 # Setup agent for tunneling
Kyle Mesterybd085502014-04-30 23:50:29 +000046 if [[ "$OVS_ENABLE_TUNNELING" == "True" ]]; then
Edgar Magana6f335b92014-07-10 15:42:44 -070047 iniset /$Q_PLUGIN_CONF_FILE ovs local_ip $TUNNEL_ENDPOINT_IP
Hirofumi Ichiharad48d6722015-07-04 22:58:44 +090048 iniset /$Q_PLUGIN_CONF_FILE ovs tunnel_bridge $OVS_TUNNEL_BRIDGE
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040049 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 Mesterybd085502014-04-30 23:50:29 +000054 if [[ "$OVS_BRIDGE_MAPPINGS" == "" ]] && [[ "$PHYSICAL_NETWORK" != "" ]] && [[ "$OVS_PHYSICAL_BRIDGE" != "" ]]; then
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040055 OVS_BRIDGE_MAPPINGS=$PHYSICAL_NETWORK:$OVS_PHYSICAL_BRIDGE
56
Sean M. Collins54d16f72016-03-15 15:18:14 -040057 # Configure bridge manually with physical interface as port for multi-node
58 _neutron_ovs_base_add_bridge $OVS_PHYSICAL_BRIDGE
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040059 fi
60 if [[ "$OVS_BRIDGE_MAPPINGS" != "" ]]; then
Gary Kottond42634f2013-06-24 09:26:55 +000061 iniset /$Q_PLUGIN_CONF_FILE ovs bridge_mappings $OVS_BRIDGE_MAPPINGS
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040062 fi
Mark McClainb05c8762013-07-06 23:29:39 -040063 AGENT_BINARY="$NEUTRON_BIN_DIR/neutron-openvswitch-agent"
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040064
Kyle Mesterybd085502014-04-30 23:50:29 +000065 if [ "$VIRT_DRIVER" == 'xenserver' ]; then
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040066 # Make a copy of our config for domU
Mate Lakat1a247e82014-08-05 14:32:51 +010067 sudo cp /$Q_PLUGIN_CONF_FILE "/$Q_PLUGIN_CONF_FILE.domU"
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040068
Huan Xie201e3c12015-08-27 12:34:24 +010069 # change domU's config file to STACK_USER
70 sudo chown $STACK_USER:$STACK_USER /$Q_PLUGIN_CONF_FILE.domU
71
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040072 # Deal with Dom0's L2 Agent:
Mark McClainb05c8762013-07-06 23:29:39 -040073 Q_RR_DOM0_COMMAND="$NEUTRON_BIN_DIR/neutron-rootwrap-xen-dom0 $Q_RR_CONF_FILE"
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040074
75 # For now, duplicate the xen configuration already found in nova.conf
Gary Kottond42634f2013-06-24 09:26:55 +000076 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 Kukurac9b0f1a2013-04-23 16:28:24 -040079
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 Xie201e3c12015-08-27 12:34:24 +010083 # XenAPI does not support daemon rootwrap now, so set root_helper_daemon empty
Gary Kottond42634f2013-06-24 09:26:55 +000084 iniset /$Q_PLUGIN_CONF_FILE agent root_helper "$Q_RR_DOM0_COMMAND"
Huan Xie201e3c12015-08-27 12:34:24 +010085 iniset /$Q_PLUGIN_CONF_FILE agent root_helper_daemon ""
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
90 iniset /$Q_PLUGIN_CONF_FILE agent minimize_polling False
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040091
92 # Set "physical" mapping
Gary Kottond42634f2013-06-24 09:26:55 +000093 iniset /$Q_PLUGIN_CONF_FILE ovs bridge_mappings "physnet1:$FLAT_NETWORK_BRIDGE"
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040094
95 # XEN_INTEGRATION_BRIDGE is the integration bridge in dom0
Gary Kottond42634f2013-06-24 09:26:55 +000096 iniset /$Q_PLUGIN_CONF_FILE ovs integration_bridge $XEN_INTEGRATION_BRIDGE
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040097
98 # Set up domU's L2 agent:
99
Huan Xie2f5596e2016-04-05 22:22:48 -0700100 # Create a bridge "br-$VLAN_INTERFACE"
101 _neutron_ovs_base_add_bridge "br-$VLAN_INTERFACE"
102 # Add $VLAN_INTERFACE to that bridge
103 sudo ovs-vsctl -- --may-exist add-port "br-$VLAN_INTERFACE" $VLAN_INTERFACE
Huan Xie201e3c12015-08-27 12:34:24 +0100104
105 # Create external bridge and add port
Ihar Hrachyshka7b5c7dc2016-07-15 20:17:13 +0200106 _neutron_ovs_base_add_public_bridge
Huan Xie2f5596e2016-04-05 22:22:48 -0700107 sudo ovs-vsctl -- --may-exist add-port $PUBLIC_BRIDGE $PUBLIC_INTERFACE
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400108
109 # Set bridge mappings to "physnet1:br-$GUEST_INTERFACE_DEFAULT"
Huan Xie2f5596e2016-04-05 22:22:48 -0700110 iniset "/$Q_PLUGIN_CONF_FILE.domU" ovs bridge_mappings "physnet1:br-$VLAN_INTERFACE,physnet-ex:$PUBLIC_BRIDGE"
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400111 # Set integration bridge to domU's
Gary Kottond42634f2013-06-24 09:26:55 +0000112 iniset "/$Q_PLUGIN_CONF_FILE.domU" ovs integration_bridge $OVS_BRIDGE
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400113 # Set root wrap
Gary Kottond42634f2013-06-24 09:26:55 +0000114 iniset "/$Q_PLUGIN_CONF_FILE.domU" agent root_helper "$Q_RR_COMMAND"
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400115 fi
Akihiro Motoki2307f9d2014-08-09 18:58:20 +0900116 iniset /$Q_PLUGIN_CONF_FILE agent tunnel_types $Q_TUNNEL_TYPES
Michal Ptacekc1605552015-09-23 21:02:02 +0100117 iniset /$Q_PLUGIN_CONF_FILE ovs datapath_type $OVS_DATAPATH_TYPE
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400118}
119
Ian Wienandaee18c72014-02-21 15:35:08 +1100120function neutron_plugin_setup_interface_driver {
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400121 local conf_file=$1
Martin Hickeydca49de2015-10-20 12:13:19 +0100122 iniset $conf_file DEFAULT interface_driver openvswitch
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400123}
124
Ian Wienandaee18c72014-02-21 15:35:08 +1100125function neutron_plugin_check_adv_test_requirements {
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400126 is_service_enabled q-agt && is_service_enabled q-dhcp && return 0
127}
128
129# Restore xtrace
Ian Wienand523f4882015-10-13 11:03:03 +1100130$_XTRACE_NEUTRON_OVSL2