| 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 | # lib/neutron | 
| Joe Gordon | 2394605 | 2014-01-15 21:42:32 +0000 | [diff] [blame] | 4 | # functions - functions specific to neutron | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 5 |  | 
 | 6 | # Dependencies: | 
 | 7 | # ``functions`` file | 
 | 8 | # ``DEST`` must be defined | 
| Stephan Renatus | e578eff | 2013-11-19 13:31:04 +0100 | [diff] [blame] | 9 | # ``STACK_USER`` must be defined | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 10 |  | 
 | 11 | # ``stack.sh`` calls the entry points in this order: | 
 | 12 | # | 
| Adam Spiers | 6a5aa7c | 2013-10-24 11:27:02 +0100 | [diff] [blame] | 13 | # - install_neutron_agent_packages | 
| YAMAMOTO Takashi | 1a669dc | 2015-02-05 11:54:12 +0900 | [diff] [blame] | 14 | # - install_neutronclient | 
 | 15 | # - install_neutron | 
| Adam Spiers | 6a5aa7c | 2013-10-24 11:27:02 +0100 | [diff] [blame] | 16 | # - install_neutron_third_party | 
 | 17 | # - configure_neutron | 
 | 18 | # - init_neutron | 
 | 19 | # - configure_neutron_third_party | 
 | 20 | # - init_neutron_third_party | 
 | 21 | # - start_neutron_third_party | 
 | 22 | # - create_nova_conf_neutron | 
| YAMAMOTO Takashi | a1875b1 | 2017-02-23 05:44:22 +0900 | [diff] [blame] | 23 | # - configure_neutron_after_post_config | 
| Adam Spiers | 6a5aa7c | 2013-10-24 11:27:02 +0100 | [diff] [blame] | 24 | # - start_neutron_service_and_check | 
| YAMAMOTO Takashi | 1a669dc | 2015-02-05 11:54:12 +0900 | [diff] [blame] | 25 | # - check_neutron_third_party_integration | 
| yunhong jiang | 0d6e992 | 2014-10-10 06:12:47 -0700 | [diff] [blame] | 26 | # - start_neutron_agents | 
| Adam Spiers | 6a5aa7c | 2013-10-24 11:27:02 +0100 | [diff] [blame] | 27 | # - create_neutron_initial_network | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 28 | # | 
 | 29 | # ``unstack.sh`` calls the entry points in this order: | 
 | 30 | # | 
| Adam Spiers | 6a5aa7c | 2013-10-24 11:27:02 +0100 | [diff] [blame] | 31 | # - stop_neutron | 
| yunhong jiang | 0d6e992 | 2014-10-10 06:12:47 -0700 | [diff] [blame] | 32 | # - stop_neutron_third_party | 
 | 33 | # - cleanup_neutron | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 34 |  | 
 | 35 | # Functions in lib/neutron are classified into the following categories: | 
 | 36 | # | 
 | 37 | # - entry points (called from stack.sh or unstack.sh) | 
 | 38 | # - internal functions | 
 | 39 | # - neutron exercises | 
 | 40 | # - 3rd party programs | 
 | 41 |  | 
 | 42 |  | 
 | 43 | # Neutron Networking | 
 | 44 | # ------------------ | 
 | 45 |  | 
 | 46 | # Make sure that neutron is enabled in ``ENABLED_SERVICES``.  If you want | 
 | 47 | # to run Neutron on this host, make sure that q-svc is also in | 
 | 48 | # ``ENABLED_SERVICES``. | 
 | 49 | # | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 50 | # See "Neutron Network Configuration" below for additional variables | 
 | 51 | # that must be set in localrc for connectivity across hosts with | 
 | 52 | # Neutron. | 
 | 53 | # | 
 | 54 | # With Neutron networking the NETWORK_MANAGER variable is ignored. | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 55 |  | 
| John Davidge | 21529a5 | 2014-06-30 09:55:11 -0400 | [diff] [blame] | 56 | # Settings | 
 | 57 | # -------- | 
 | 58 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 59 |  | 
 | 60 | # Neutron Network Configuration | 
 | 61 | # ----------------------------- | 
 | 62 |  | 
| Matthew Treinish | abde96a | 2016-05-12 19:26:20 -0400 | [diff] [blame] | 63 | deprecated "Using lib/neutron-legacy is deprecated, and it will be removed in the future" | 
| Armando Migliaccio | 7dbcfae | 2016-02-19 14:43:42 -0800 | [diff] [blame] | 64 |  | 
| Sean Dague | f3b2f4c | 2017-04-13 10:11:48 -0400 | [diff] [blame] | 65 | if is_service_enabled tls-proxy; then | 
| Rob Crittenden | 18d4778 | 2014-03-19 17:47:42 -0400 | [diff] [blame] | 66 |     Q_PROTOCOL="https" | 
 | 67 | fi | 
 | 68 |  | 
 | 69 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 70 | # Set up default directories | 
| Sean Dague | e08ab10 | 2014-11-13 17:09:28 -0500 | [diff] [blame] | 71 | GITDIR["python-neutronclient"]=$DEST/python-neutronclient | 
| Sean Dague | 5cb1906 | 2014-11-01 01:37:45 +0100 | [diff] [blame] | 72 |  | 
| Doug Wiegley | 93e682c | 2015-03-03 10:31:30 -0700 | [diff] [blame] | 73 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 74 | NEUTRON_DIR=$DEST/neutron | 
| Kyle Mestery | 20b839f | 2014-12-08 06:17:27 +0000 | [diff] [blame] | 75 | NEUTRON_FWAAS_DIR=$DEST/neutron-fwaas | 
| Ian Wienand | 1f82f43 | 2017-10-04 09:51:02 +1100 | [diff] [blame] | 76 | NEUTRON_AUTH_CACHE_DIR=${NEUTRON_AUTH_CACHE_DIR:-/var/cache/neutron} | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 77 |  | 
 | 78 | # Support entry points installation of console scripts | 
 | 79 | if [[ -d $NEUTRON_DIR/bin/neutron-server ]]; then | 
 | 80 |     NEUTRON_BIN_DIR=$NEUTRON_DIR/bin | 
| Sean Dague | 3bdb922 | 2013-10-22 08:36:16 -0400 | [diff] [blame] | 81 | else | 
 | 82 |     NEUTRON_BIN_DIR=$(get_python_exec_prefix) | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 83 | fi | 
 | 84 |  | 
 | 85 | NEUTRON_CONF_DIR=/etc/neutron | 
 | 86 | NEUTRON_CONF=$NEUTRON_CONF_DIR/neutron.conf | 
 | 87 | export NEUTRON_TEST_CONFIG_FILE=${NEUTRON_TEST_CONFIG_FILE:-"$NEUTRON_CONF_DIR/debug.ini"} | 
 | 88 |  | 
| Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 89 | # NEUTRON_DEPLOY_MOD_WSGI defines how neutron is deployed, allowed values: | 
 | 90 | # - False (default) : Run neutron under Eventlet | 
 | 91 | # - True : Run neutron under uwsgi | 
 | 92 | # TODO(annp): Switching to uwsgi in next cycle if things turn out to be stable | 
 | 93 | # enough | 
 | 94 | NEUTRON_DEPLOY_MOD_WSGI=${NEUTRON_DEPLOY_MOD_WSGI:-False} | 
 | 95 |  | 
 | 96 | NEUTRON_UWSGI_CONF=$NEUTRON_CONF_DIR/neutron-api-uwsgi.ini | 
 | 97 |  | 
| Adam Gandelman | 7614d21 | 2014-08-11 14:27:50 -0700 | [diff] [blame] | 98 | # Agent binaries.  Note, binary paths for other agents are set in per-service | 
 | 99 | # scripts in lib/neutron_plugins/services/ | 
 | 100 | AGENT_DHCP_BINARY="$NEUTRON_BIN_DIR/neutron-dhcp-agent" | 
 | 101 | AGENT_L3_BINARY=${AGENT_L3_BINARY:-"$NEUTRON_BIN_DIR/neutron-l3-agent"} | 
 | 102 | AGENT_META_BINARY="$NEUTRON_BIN_DIR/neutron-metadata-agent" | 
 | 103 |  | 
 | 104 | # Agent config files. Note, plugin-specific Q_PLUGIN_CONF_FILE is set and | 
 | 105 | # loaded from per-plugin  scripts in lib/neutron_plugins/ | 
 | 106 | Q_DHCP_CONF_FILE=$NEUTRON_CONF_DIR/dhcp_agent.ini | 
 | 107 | Q_L3_CONF_FILE=$NEUTRON_CONF_DIR/l3_agent.ini | 
| Adam Gandelman | 7614d21 | 2014-08-11 14:27:50 -0700 | [diff] [blame] | 108 | Q_META_CONF_FILE=$NEUTRON_CONF_DIR/metadata_agent.ini | 
 | 109 |  | 
| Henry Gessau | 0fc1cc2 | 2014-07-06 22:54:34 -0400 | [diff] [blame] | 110 | # Default name for Neutron database | 
 | 111 | Q_DB_NAME=${Q_DB_NAME:-neutron} | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 112 | # Default Neutron Plugin | 
| Kyle Mestery | 6d23500 | 2013-09-18 20:27:08 +0000 | [diff] [blame] | 113 | Q_PLUGIN=${Q_PLUGIN:-ml2} | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 114 | # Default Neutron Port | 
 | 115 | Q_PORT=${Q_PORT:-9696} | 
| Rob Crittenden | 18d4778 | 2014-03-19 17:47:42 -0400 | [diff] [blame] | 116 | # Default Neutron Internal Port when using TLS proxy | 
 | 117 | Q_PORT_INT=${Q_PORT_INT:-19696} | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 118 | # Default Neutron Host | 
 | 119 | Q_HOST=${Q_HOST:-$SERVICE_HOST} | 
| Rob Crittenden | 18d4778 | 2014-03-19 17:47:42 -0400 | [diff] [blame] | 120 | # Default protocol | 
 | 121 | Q_PROTOCOL=${Q_PROTOCOL:-$SERVICE_PROTOCOL} | 
| Brian Haley | 180f5eb | 2015-06-16 13:14:31 -0400 | [diff] [blame] | 122 | # Default listen address | 
| Jens Harbott | dc7b429 | 2017-09-19 10:52:32 +0000 | [diff] [blame] | 123 | Q_LISTEN_ADDRESS=${Q_LISTEN_ADDRESS:-$(ipv6_unquote $SERVICE_LISTEN_ADDRESS)} | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 124 | # Default admin username | 
 | 125 | Q_ADMIN_USERNAME=${Q_ADMIN_USERNAME:-neutron} | 
 | 126 | # Default auth strategy | 
 | 127 | Q_AUTH_STRATEGY=${Q_AUTH_STRATEGY:-keystone} | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 128 | # RHEL's support for namespaces requires using veths with ovs | 
 | 129 | Q_OVS_USE_VETH=${Q_OVS_USE_VETH:-False} | 
 | 130 | Q_USE_ROOTWRAP=${Q_USE_ROOTWRAP:-True} | 
| Yuriy Taraday | 2662395 | 2014-07-16 17:41:53 +0400 | [diff] [blame] | 131 | Q_USE_ROOTWRAP_DAEMON=$(trueorfalse True Q_USE_ROOTWRAP_DAEMON) | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 132 | # Meta data IP | 
| Jens Harbott | dc7b429 | 2017-09-19 10:52:32 +0000 | [diff] [blame] | 133 | Q_META_DATA_IP=${Q_META_DATA_IP:-$(ipv6_unquote $SERVICE_HOST)} | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 134 | # Allow Overlapping IP among subnets | 
 | 135 | Q_ALLOW_OVERLAPPING_IP=${Q_ALLOW_OVERLAPPING_IP:-True} | 
| Terry Wilson | f06c443 | 2014-05-20 10:54:51 -0500 | [diff] [blame] | 136 | Q_NOTIFY_NOVA_PORT_STATUS_CHANGES=${Q_NOTIFY_NOVA_PORT_STATUS_CHANGES:-True} | 
 | 137 | Q_NOTIFY_NOVA_PORT_DATA_CHANGES=${Q_NOTIFY_NOVA_PORT_DATA_CHANGES:-True} | 
| Aaron Rosen | cea32b1 | 2014-03-04 16:20:14 -0800 | [diff] [blame] | 138 | VIF_PLUGGING_IS_FATAL=${VIF_PLUGGING_IS_FATAL:-True} | 
 | 139 | VIF_PLUGGING_TIMEOUT=${VIF_PLUGGING_TIMEOUT:-300} | 
| Aaron Rosen | 4540d00 | 2013-10-24 13:59:33 -0700 | [diff] [blame] | 140 |  | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 141 | # The directory which contains files for Q_PLUGIN_EXTRA_CONF_FILES. | 
 | 142 | # /etc/neutron is assumed by many of devstack plugins.  Do not change. | 
 | 143 | _Q_PLUGIN_EXTRA_CONF_PATH=/etc/neutron | 
 | 144 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 145 | # List of config file names in addition to the main plugin config file | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 146 | # To add additional plugin config files, use ``neutron_server_config_add`` | 
 | 147 | # utility function.  For example: | 
 | 148 | # | 
 | 149 | #    ``neutron_server_config_add file1`` | 
 | 150 | # | 
 | 151 | # These config files are relative to ``/etc/neutron``.  The above | 
 | 152 | # example would specify ``--config-file /etc/neutron/file1`` for | 
 | 153 | # neutron server. | 
| Sean Dague | afef8bf | 2017-03-06 14:07:23 -0500 | [diff] [blame] | 154 | declare -a -g Q_PLUGIN_EXTRA_CONF_FILES | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 155 |  | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 156 | # same as Q_PLUGIN_EXTRA_CONF_FILES, but with absolute path. | 
| Sean Dague | afef8bf | 2017-03-06 14:07:23 -0500 | [diff] [blame] | 157 | declare -a -g _Q_PLUGIN_EXTRA_CONF_FILES_ABS | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 158 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 159 |  | 
| Dean Troyer | e2907b4 | 2014-02-26 17:35:37 -0600 | [diff] [blame] | 160 | Q_RR_CONF_FILE=$NEUTRON_CONF_DIR/rootwrap.conf | 
 | 161 | if [[ "$Q_USE_ROOTWRAP" == "False" ]]; then | 
 | 162 |     Q_RR_COMMAND="sudo" | 
 | 163 | else | 
 | 164 |     NEUTRON_ROOTWRAP=$(get_rootwrap_location neutron) | 
 | 165 |     Q_RR_COMMAND="sudo $NEUTRON_ROOTWRAP $Q_RR_CONF_FILE" | 
| Yuriy Taraday | 2662395 | 2014-07-16 17:41:53 +0400 | [diff] [blame] | 166 |     if [[ "$Q_USE_ROOTWRAP_DAEMON" == "True" ]]; then | 
 | 167 |         Q_RR_DAEMON_COMMAND="sudo $NEUTRON_ROOTWRAP-daemon $Q_RR_CONF_FILE" | 
 | 168 |     fi | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 169 | fi | 
 | 170 |  | 
| Brian Haley | eea7621 | 2014-06-27 11:45:50 -0400 | [diff] [blame] | 171 |  | 
 | 172 | # Distributed Virtual Router (DVR) configuration | 
 | 173 | # Can be: | 
| Dean Troyer | 3324f19 | 2014-09-18 09:26:39 -0500 | [diff] [blame] | 174 | # - ``legacy``   - No DVR functionality | 
 | 175 | # - ``dvr_snat`` - Controller or single node DVR | 
 | 176 | # - ``dvr``      - Compute node in multi-node DVR | 
 | 177 | # | 
| Brian Haley | eea7621 | 2014-06-27 11:45:50 -0400 | [diff] [blame] | 178 | Q_DVR_MODE=${Q_DVR_MODE:-legacy} | 
 | 179 | if [[ "$Q_DVR_MODE" != "legacy" ]]; then | 
| Brian Haley | e43dfdd | 2017-09-12 16:13:26 -0600 | [diff] [blame] | 180 |     Q_ML2_PLUGIN_MECHANISM_DRIVERS=openvswitch,l2population | 
| Brian Haley | eea7621 | 2014-06-27 11:45:50 -0400 | [diff] [blame] | 181 | fi | 
 | 182 |  | 
| Dean Troyer | e2907b4 | 2014-02-26 17:35:37 -0600 | [diff] [blame] | 183 | # Provider Network Configurations | 
 | 184 | # -------------------------------- | 
 | 185 |  | 
| YAMAMOTO Takashi | 15130cd | 2014-10-28 11:49:58 +0900 | [diff] [blame] | 186 | # The following variables control the Neutron ML2 plugins' allocation | 
 | 187 | # of tenant networks and availability of provider networks. If these | 
 | 188 | # are not configured in ``localrc``, tenant networks will be local to | 
 | 189 | # the host (with no remote connectivity), and no physical resources | 
 | 190 | # will be available for the allocation of provider networks. | 
| Dean Troyer | e2907b4 | 2014-02-26 17:35:37 -0600 | [diff] [blame] | 191 |  | 
| Attila Fazekas | 8feaf6c | 2014-07-27 20:47:04 +0200 | [diff] [blame] | 192 | # To disable tunnels (GRE or VXLAN) for tenant networks, | 
 | 193 | # set to False in ``local.conf``. | 
 | 194 | # GRE tunnels are only supported by the openvswitch. | 
 | 195 | ENABLE_TENANT_TUNNELS=${ENABLE_TENANT_TUNNELS:-True} | 
| Dean Troyer | e2907b4 | 2014-02-26 17:35:37 -0600 | [diff] [blame] | 196 |  | 
| Richard Theis | 8906b48 | 2016-06-08 10:28:37 -0500 | [diff] [blame] | 197 | # If using GRE, VXLAN or GENEVE tunnels for tenant networks, | 
 | 198 | # specify the range of IDs from which tenant networks are | 
 | 199 | # allocated. Can be overridden in ``localrc`` if necessary. | 
| Anant Patil | 3827dc0 | 2014-07-03 21:38:16 +0530 | [diff] [blame] | 200 | TENANT_TUNNEL_RANGES=${TENANT_TUNNEL_RANGES:-1:1000} | 
| Dean Troyer | e2907b4 | 2014-02-26 17:35:37 -0600 | [diff] [blame] | 201 |  | 
 | 202 | # To use VLANs for tenant networks, set to True in localrc. VLANs | 
| YAMAMOTO Takashi | 15130cd | 2014-10-28 11:49:58 +0900 | [diff] [blame] | 203 | # are supported by the ML2 plugins, requiring additional configuration | 
 | 204 | # described below. | 
| Dean Troyer | e2907b4 | 2014-02-26 17:35:37 -0600 | [diff] [blame] | 205 | ENABLE_TENANT_VLANS=${ENABLE_TENANT_VLANS:-False} | 
 | 206 |  | 
 | 207 | # If using VLANs for tenant networks, set in ``localrc`` to specify | 
 | 208 | # the range of VLAN VIDs from which tenant networks are | 
 | 209 | # allocated. An external network switch must be configured to | 
 | 210 | # trunk these VLANs between hosts for multi-host connectivity. | 
 | 211 | # | 
 | 212 | # Example: ``TENANT_VLAN_RANGE=1000:1999`` | 
 | 213 | TENANT_VLAN_RANGE=${TENANT_VLAN_RANGE:-} | 
 | 214 |  | 
 | 215 | # If using VLANs for tenant networks, or if using flat or VLAN | 
 | 216 | # provider networks, set in ``localrc`` to the name of the physical | 
 | 217 | # network, and also configure ``OVS_PHYSICAL_BRIDGE`` for the | 
 | 218 | # openvswitch agent or ``LB_PHYSICAL_INTERFACE`` for the linuxbridge | 
 | 219 | # agent, as described below. | 
 | 220 | # | 
 | 221 | # Example: ``PHYSICAL_NETWORK=default`` | 
| Kevin Benton | 1554ade | 2016-07-22 09:40:19 -0700 | [diff] [blame] | 222 | PHYSICAL_NETWORK=${PHYSICAL_NETWORK:-public} | 
| Dean Troyer | e2907b4 | 2014-02-26 17:35:37 -0600 | [diff] [blame] | 223 |  | 
| YAMAMOTO Takashi | 15130cd | 2014-10-28 11:49:58 +0900 | [diff] [blame] | 224 | # With the openvswitch agent, if using VLANs for tenant networks, | 
| Dean Troyer | e2907b4 | 2014-02-26 17:35:37 -0600 | [diff] [blame] | 225 | # or if using flat or VLAN provider networks, set in ``localrc`` to | 
 | 226 | # the name of the OVS bridge to use for the physical network. The | 
 | 227 | # bridge will be created if it does not already exist, but a | 
 | 228 | # physical interface must be manually added to the bridge as a | 
 | 229 | # port for external connectivity. | 
 | 230 | # | 
 | 231 | # Example: ``OVS_PHYSICAL_BRIDGE=br-eth1`` | 
| Kevin Benton | 1554ade | 2016-07-22 09:40:19 -0700 | [diff] [blame] | 232 | OVS_PHYSICAL_BRIDGE=${OVS_PHYSICAL_BRIDGE:-br-ex} | 
| Dean Troyer | e2907b4 | 2014-02-26 17:35:37 -0600 | [diff] [blame] | 233 |  | 
| Clark Boylan | 9546903 | 2016-09-08 17:08:36 -0700 | [diff] [blame] | 234 | default_route_dev=$(ip route | grep ^default | awk '{print $5}') | 
 | 235 | die_if_not_set $LINENO default_route_dev "Failure retrieving default route device" | 
| YAMAMOTO Takashi | 15130cd | 2014-10-28 11:49:58 +0900 | [diff] [blame] | 236 | # With the linuxbridge agent, if using VLANs for tenant networks, | 
| Dean Troyer | e2907b4 | 2014-02-26 17:35:37 -0600 | [diff] [blame] | 237 | # or if using flat or VLAN provider networks, set in ``localrc`` to | 
 | 238 | # the name of the network interface to use for the physical | 
 | 239 | # network. | 
 | 240 | # | 
 | 241 | # Example: ``LB_PHYSICAL_INTERFACE=eth1`` | 
| Clark Boylan | 9546903 | 2016-09-08 17:08:36 -0700 | [diff] [blame] | 242 | LB_PHYSICAL_INTERFACE=${LB_PHYSICAL_INTERFACE:-$default_route_dev} | 
| Dean Troyer | e2907b4 | 2014-02-26 17:35:37 -0600 | [diff] [blame] | 243 |  | 
| Edgar Magana | 6f335b9 | 2014-07-10 15:42:44 -0700 | [diff] [blame] | 244 | # When Neutron tunnels are enabled it is needed to specify the | 
 | 245 | # IP address of the end point in the local server. This IP is set | 
 | 246 | # by default to the same IP address that the HOST IP. | 
 | 247 | # This variable can be used to specify a different end point IP address | 
 | 248 | # Example: ``TUNNEL_ENDPOINT_IP=1.1.1.1`` | 
 | 249 | TUNNEL_ENDPOINT_IP=${TUNNEL_ENDPOINT_IP:-$HOST_IP} | 
 | 250 |  | 
| Dean Troyer | e2907b4 | 2014-02-26 17:35:37 -0600 | [diff] [blame] | 251 | # With the openvswitch plugin, set to True in ``localrc`` to enable | 
 | 252 | # provider GRE tunnels when ``ENABLE_TENANT_TUNNELS`` is False. | 
 | 253 | # | 
 | 254 | # Example: ``OVS_ENABLE_TUNNELING=True`` | 
 | 255 | OVS_ENABLE_TUNNELING=${OVS_ENABLE_TUNNELING:-$ENABLE_TENANT_TUNNELS} | 
 | 256 |  | 
| Tan Lin | 27a196e | 2014-10-31 15:44:34 +0800 | [diff] [blame] | 257 | # Use DHCP agent for providing metadata service in the case of | 
 | 258 | # without L3 agent (No Route Agent), set to True in localrc. | 
 | 259 | ENABLE_ISOLATED_METADATA=${ENABLE_ISOLATED_METADATA:-False} | 
 | 260 |  | 
 | 261 | # Add a static route as dhcp option, so the request to 169.254.169.254 | 
 | 262 | # will be able to reach through a route(DHCP agent) | 
 | 263 | # This option require ENABLE_ISOLATED_METADATA = True | 
 | 264 | ENABLE_METADATA_NETWORK=${ENABLE_METADATA_NETWORK:-False} | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 265 | # Neutron plugin specific functions | 
 | 266 | # --------------------------------- | 
 | 267 |  | 
 | 268 | # Please refer to ``lib/neutron_plugins/README.md`` for details. | 
| Hirofumi Ichihara | 36daecd | 2015-07-23 17:50:40 +0900 | [diff] [blame] | 269 | if [ -f $TOP_DIR/lib/neutron_plugins/$Q_PLUGIN ]; then | 
 | 270 |     source $TOP_DIR/lib/neutron_plugins/$Q_PLUGIN | 
 | 271 | fi | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 272 |  | 
| Emilien Macchi | 40546f7 | 2013-09-24 15:10:25 +0200 | [diff] [blame] | 273 | # Agent metering service plugin functions | 
 | 274 | # ------------------------------------------- | 
 | 275 |  | 
 | 276 | # Hardcoding for 1 service plugin for now | 
 | 277 | source $TOP_DIR/lib/neutron_plugins/services/metering | 
 | 278 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 279 | # L3 Service functions | 
 | 280 | source $TOP_DIR/lib/neutron_plugins/services/l3 | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 281 | # Use security group or not | 
 | 282 | if has_neutron_plugin_security_group; then | 
 | 283 |     Q_USE_SECGROUP=${Q_USE_SECGROUP:-True} | 
 | 284 | else | 
 | 285 |     Q_USE_SECGROUP=False | 
 | 286 | fi | 
 | 287 |  | 
| Dean Troyer | e2907b4 | 2014-02-26 17:35:37 -0600 | [diff] [blame] | 288 | # Save trace setting | 
| Ian Wienand | 523f488 | 2015-10-13 11:03:03 +1100 | [diff] [blame] | 289 | _XTRACE_NEUTRON=$(set +o | grep xtrace) | 
| Dean Troyer | e2907b4 | 2014-02-26 17:35:37 -0600 | [diff] [blame] | 290 | set +o xtrace | 
 | 291 |  | 
 | 292 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 293 | # Functions | 
 | 294 | # --------- | 
 | 295 |  | 
| Adam Gandelman | 7614d21 | 2014-08-11 14:27:50 -0700 | [diff] [blame] | 296 | function _determine_config_server { | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 297 |     if [[ "$Q_PLUGIN_EXTRA_CONF_PATH" != '' ]]; then | 
 | 298 |         if [[ "$Q_PLUGIN_EXTRA_CONF_PATH" = "$_Q_PLUGIN_EXTRA_CONF_PATH" ]]; then | 
 | 299 |             deprecated "Q_PLUGIN_EXTRA_CONF_PATH is deprecated" | 
 | 300 |         else | 
 | 301 |             die $LINENO "Q_PLUGIN_EXTRA_CONF_PATH is deprecated" | 
 | 302 |         fi | 
 | 303 |     fi | 
 | 304 |     if [[ ${#Q_PLUGIN_EXTRA_CONF_FILES[@]} > 0 ]]; then | 
 | 305 |         deprecated "Q_PLUGIN_EXTRA_CONF_FILES is deprecated.  Use neutron_server_config_add instead." | 
 | 306 |     fi | 
 | 307 |     for cfg_file in ${Q_PLUGIN_EXTRA_CONF_FILES[@]}; do | 
 | 308 |         _Q_PLUGIN_EXTRA_CONF_FILES_ABS+=($_Q_PLUGIN_EXTRA_CONF_PATH/$cfg_file) | 
 | 309 |     done | 
 | 310 |  | 
| Adam Gandelman | 7614d21 | 2014-08-11 14:27:50 -0700 | [diff] [blame] | 311 |     local cfg_file | 
 | 312 |     local opts="--config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE" | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 313 |     for cfg_file in ${_Q_PLUGIN_EXTRA_CONF_FILES_ABS[@]}; do | 
| Tom Patzig | 7346704 | 2016-04-19 17:02:34 +0200 | [diff] [blame] | 314 |         opts+=" --config-file $cfg_file" | 
| Adam Gandelman | 7614d21 | 2014-08-11 14:27:50 -0700 | [diff] [blame] | 315 |     done | 
 | 316 |     echo "$opts" | 
 | 317 | } | 
 | 318 |  | 
| Adam Gandelman | 7614d21 | 2014-08-11 14:27:50 -0700 | [diff] [blame] | 319 | function _determine_config_l3 { | 
| Angus Lees | a1c70f2 | 2016-05-31 14:43:14 +1000 | [diff] [blame] | 320 |     local opts="--config-file $NEUTRON_CONF --config-file $Q_L3_CONF_FILE" | 
| Adam Gandelman | 7614d21 | 2014-08-11 14:27:50 -0700 | [diff] [blame] | 321 |     echo "$opts" | 
 | 322 | } | 
 | 323 |  | 
 | 324 | # For services and agents that require it, dynamically construct a list of | 
 | 325 | # --config-file arguments that are passed to the binary. | 
 | 326 | function determine_config_files { | 
 | 327 |     local opts="" | 
 | 328 |     case "$1" in | 
 | 329 |         "neutron-server") opts="$(_determine_config_server)" ;; | 
| Adam Gandelman | 7614d21 | 2014-08-11 14:27:50 -0700 | [diff] [blame] | 330 |         "neutron-l3-agent") opts="$(_determine_config_l3)" ;; | 
 | 331 |     esac | 
 | 332 |     if [ -z "$opts" ] ; then | 
 | 333 |         die $LINENO "Could not determine config files for $1." | 
 | 334 |     fi | 
 | 335 |     echo "$opts" | 
 | 336 | } | 
 | 337 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 338 | # configure_mutnauq() | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 339 | # Set common config for all neutron server and agents. | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 340 | function configure_mutnauq { | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 341 |     _configure_neutron_common | 
| Brant Knudson | 2dd110c | 2015-03-14 12:39:14 -0500 | [diff] [blame] | 342 |     iniset_rpc_backend neutron $NEUTRON_CONF | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 343 |  | 
| Emilien Macchi | 40546f7 | 2013-09-24 15:10:25 +0200 | [diff] [blame] | 344 |     if is_service_enabled q-metering; then | 
 | 345 |         _configure_neutron_metering | 
 | 346 |     fi | 
| Stephen Ma | 9b38eb2 | 2014-04-02 02:13:09 +0000 | [diff] [blame] | 347 |     if is_service_enabled q-agt q-svc; then | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 348 |         _configure_neutron_service | 
 | 349 |     fi | 
 | 350 |     if is_service_enabled q-agt; then | 
 | 351 |         _configure_neutron_plugin_agent | 
 | 352 |     fi | 
 | 353 |     if is_service_enabled q-dhcp; then | 
 | 354 |         _configure_neutron_dhcp_agent | 
 | 355 |     fi | 
 | 356 |     if is_service_enabled q-l3; then | 
 | 357 |         _configure_neutron_l3_agent | 
 | 358 |     fi | 
 | 359 |     if is_service_enabled q-meta; then | 
 | 360 |         _configure_neutron_metadata_agent | 
 | 361 |     fi | 
 | 362 |  | 
| Brian Haley | eea7621 | 2014-06-27 11:45:50 -0400 | [diff] [blame] | 363 |     if [[ "$Q_DVR_MODE" != "legacy" ]]; then | 
 | 364 |         _configure_dvr | 
 | 365 |     fi | 
| Dina Belova | 58adaa6 | 2014-07-11 18:18:12 +0400 | [diff] [blame] | 366 |     if is_service_enabled ceilometer; then | 
 | 367 |         _configure_neutron_ceilometer_notifications | 
 | 368 |     fi | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 369 |  | 
| armando-migliaccio | e155b89 | 2015-06-12 08:55:02 -0700 | [diff] [blame] | 370 |     iniset $NEUTRON_CONF DEFAULT api_workers "$API_WORKERS" | 
| Armando Migliaccio | 06f2ea2 | 2017-02-02 16:47:00 -0800 | [diff] [blame] | 371 |     # devstack is not a tool for running uber scale OpenStack | 
 | 372 |     # clouds, therefore running without a dedicated RPC worker | 
 | 373 |     # for state reports is more than adequate. | 
 | 374 |     iniset $NEUTRON_CONF DEFAULT rpc_state_report_workers 0 | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 375 | } | 
 | 376 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 377 | function create_nova_conf_neutron { | 
| Lucas Alvares Gomes | e638593 | 2018-06-28 11:00:28 +0100 | [diff] [blame] | 378 |     local conf=${1:-$NOVA_CONF} | 
| Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 379 |     iniset $conf DEFAULT use_neutron True | 
 | 380 |     iniset $conf neutron auth_type "password" | 
 | 381 |     iniset $conf neutron auth_url "$KEYSTONE_AUTH_URI" | 
 | 382 |     iniset $conf neutron username "$Q_ADMIN_USERNAME" | 
 | 383 |     iniset $conf neutron password "$SERVICE_PASSWORD" | 
 | 384 |     iniset $conf neutron user_domain_name "$SERVICE_DOMAIN_NAME" | 
 | 385 |     iniset $conf neutron project_name "$SERVICE_PROJECT_NAME" | 
 | 386 |     iniset $conf neutron project_domain_name "$SERVICE_DOMAIN_NAME" | 
 | 387 |     iniset $conf neutron auth_strategy "$Q_AUTH_STRATEGY" | 
 | 388 |     iniset $conf neutron region_name "$REGION_NAME" | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 389 |  | 
 | 390 |     if [[ "$Q_USE_SECGROUP" == "True" ]]; then | 
 | 391 |         LIBVIRT_FIREWALL_DRIVER=nova.virt.firewall.NoopFirewallDriver | 
| Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 392 |         iniset $conf DEFAULT firewall_driver $LIBVIRT_FIREWALL_DRIVER | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 393 |     fi | 
 | 394 |  | 
| Matt Riedemann | 925c256 | 2015-08-25 13:40:25 -0700 | [diff] [blame] | 395 |     # optionally set options in nova_conf | 
| Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 396 |     neutron_plugin_create_nova_conf $conf | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 397 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 398 |     if is_service_enabled q-meta; then | 
| Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 399 |         iniset $conf neutron service_metadata_proxy "True" | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 400 |     fi | 
| Aaron Rosen | cea32b1 | 2014-03-04 16:20:14 -0800 | [diff] [blame] | 401 |  | 
| Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 402 |     iniset $conf DEFAULT vif_plugging_is_fatal "$VIF_PLUGGING_IS_FATAL" | 
 | 403 |     iniset $conf DEFAULT vif_plugging_timeout "$VIF_PLUGGING_TIMEOUT" | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 404 | } | 
 | 405 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 406 | # create_mutnauq_accounts() - Set up common required neutron accounts | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 407 |  | 
 | 408 | # Tenant               User       Roles | 
 | 409 | # ------------------------------------------------------------------ | 
 | 410 | # service              neutron    admin        # if enabled | 
 | 411 |  | 
 | 412 | # Migrated from keystone_data.sh | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 413 | function create_mutnauq_accounts { | 
| Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 414 |     local neutron_url | 
 | 415 |     if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then | 
 | 416 |         neutron_url=$Q_PROTOCOL://$SERVICE_HOST/networking/ | 
 | 417 |     else | 
 | 418 |         neutron_url=$Q_PROTOCOL://$SERVICE_HOST:$Q_PORT/ | 
 | 419 |     fi | 
 | 420 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 421 |     if [[ "$ENABLED_SERVICES" =~ "q-svc" ]]; then | 
| Bartosz Górski | 0abde39 | 2014-02-28 14:15:19 +0100 | [diff] [blame] | 422 |  | 
| Jamie Lennox | 85ff532 | 2015-01-28 14:28:01 +1000 | [diff] [blame] | 423 |         create_service_user "neutron" | 
| Bartosz Górski | 0abde39 | 2014-02-28 14:15:19 +0100 | [diff] [blame] | 424 |  | 
| Sean Dague | 985e958 | 2016-02-10 07:25:24 -0500 | [diff] [blame] | 425 |         get_or_create_service "neutron" "network" "Neutron Service" | 
| Matt Riedemann | ae4578b | 2016-04-23 01:45:40 +0000 | [diff] [blame] | 426 |         get_or_create_endpoint \ | 
| Sean Dague | 985e958 | 2016-02-10 07:25:24 -0500 | [diff] [blame] | 427 |             "network" \ | 
| Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 428 |             "$REGION_NAME" "$neutron_url" | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 429 |     fi | 
 | 430 | } | 
 | 431 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 432 | # init_mutnauq() - Initialize databases, etc. | 
 | 433 | function init_mutnauq { | 
| Ihar Hrachyshka | 157c84b | 2014-10-06 13:29:39 +0200 | [diff] [blame] | 434 |     recreate_database $Q_DB_NAME | 
| Clark Boylan | 633dbc3 | 2017-06-14 12:09:21 -0700 | [diff] [blame] | 435 |     time_start "dbsync" | 
| Salvatore Orlando | dd64988 | 2013-08-05 08:56:17 -0700 | [diff] [blame] | 436 |     # Run Neutron db migrations | 
 | 437 |     $NEUTRON_BIN_DIR/neutron-db-manage --config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE upgrade head | 
| Clark Boylan | 633dbc3 | 2017-06-14 12:09:21 -0700 | [diff] [blame] | 438 |     time_stop "dbsync" | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 439 | } | 
 | 440 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 441 | # install_mutnauq() - Collect source and prepare | 
 | 442 | function install_mutnauq { | 
| Doug Wiegley | 86561c3 | 2016-02-10 18:37:21 -0700 | [diff] [blame] | 443 |     # Install neutron-lib from git so we make sure we're testing | 
 | 444 |     # the latest code. | 
 | 445 |     if use_library_from_git "neutron-lib"; then | 
 | 446 |         git_clone_by_name "neutron-lib" | 
 | 447 |         setup_dev_lib "neutron-lib" | 
 | 448 |     fi | 
 | 449 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 450 |     git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH | 
 | 451 |     setup_develop $NEUTRON_DIR | 
 | 452 | } | 
 | 453 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 454 | # install_neutron_agent_packages() - Collect source and prepare | 
| YAMAMOTO Takashi | c74315e | 2016-07-21 17:49:43 +0900 | [diff] [blame] | 455 | function install_neutron_agent_packages_mutnauq { | 
| Robert Li | 72b3e44 | 2014-07-17 15:04:52 -0400 | [diff] [blame] | 456 |     # radvd doesn't come with the OS. Install it if the l3 service is enabled. | 
 | 457 |     if is_service_enabled q-l3; then | 
 | 458 |         install_package radvd | 
 | 459 |     fi | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 460 |     # install packages that are specific to plugin agent(s) | 
 | 461 |     if is_service_enabled q-agt q-dhcp q-l3; then | 
 | 462 |         neutron_plugin_install_agent_packages | 
 | 463 |     fi | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 464 | } | 
 | 465 |  | 
| YAMAMOTO Takashi | a1875b1 | 2017-02-23 05:44:22 +0900 | [diff] [blame] | 466 | # Finish neutron configuration | 
 | 467 | function configure_neutron_after_post_config { | 
 | 468 |     if [[ $Q_SERVICE_PLUGIN_CLASSES != '' ]]; then | 
 | 469 |         iniset $NEUTRON_CONF DEFAULT service_plugins $Q_SERVICE_PLUGIN_CLASSES | 
 | 470 |     fi | 
 | 471 | } | 
 | 472 |  | 
| Sean Dague | 0eebeb4 | 2017-08-30 14:16:58 -0400 | [diff] [blame] | 473 | # Start running processes | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 474 | function start_neutron_service_and_check { | 
| Rob Crittenden | 18d4778 | 2014-03-19 17:47:42 -0400 | [diff] [blame] | 475 |     local service_port=$Q_PORT | 
 | 476 |     local service_protocol=$Q_PROTOCOL | 
| Ian Wienand | 7ae9729 | 2016-02-16 14:50:53 +1100 | [diff] [blame] | 477 |     local cfg_file_options | 
| Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 478 |     local neutron_url | 
| Ian Wienand | 7ae9729 | 2016-02-16 14:50:53 +1100 | [diff] [blame] | 479 |  | 
 | 480 |     cfg_file_options="$(determine_config_files neutron-server)" | 
 | 481 |  | 
| Rob Crittenden | 18d4778 | 2014-03-19 17:47:42 -0400 | [diff] [blame] | 482 |     if is_service_enabled tls-proxy; then | 
 | 483 |         service_port=$Q_PORT_INT | 
 | 484 |         service_protocol="http" | 
 | 485 |     fi | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 486 |     # Start the Neutron service | 
| Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 487 |     if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then | 
 | 488 |         enable_service neutron-api | 
 | 489 |         run_process neutron-api "$NEUTRON_BIN_DIR/uwsgi --procname-prefix neutron-api --ini $NEUTRON_UWSGI_CONF" | 
 | 490 |         neutron_url=$Q_PROTOCOL://$Q_HOST/networking/ | 
 | 491 |         enable_service neutron-rpc-server | 
 | 492 |         run_process neutron-rpc-server "$NEUTRON_BIN_DIR/neutron-rpc-server $cfg_file_options" | 
 | 493 |     else | 
 | 494 |         run_process q-svc "$NEUTRON_BIN_DIR/neutron-server $cfg_file_options" | 
 | 495 |         neutron_url=$service_protocol://$Q_HOST:$service_port | 
 | 496 |         # Start proxy if enabled | 
 | 497 |         if is_service_enabled tls-proxy; then | 
 | 498 |             start_tls_proxy neutron '*' $Q_PORT $Q_HOST $Q_PORT_INT | 
 | 499 |         fi | 
 | 500 |     fi | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 501 |     echo "Waiting for Neutron to start..." | 
| Sean Dague | 442e4e9 | 2015-06-24 13:24:02 -0400 | [diff] [blame] | 502 |  | 
| Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 503 |     local testcmd="wget ${ssl_ca} --no-proxy -q -O- $neutron_url" | 
| Sean Dague | 442e4e9 | 2015-06-24 13:24:02 -0400 | [diff] [blame] | 504 |     test_with_retry "$testcmd" "Neutron did not start" $SERVICE_TIMEOUT | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 505 | } | 
 | 506 |  | 
| Russell Bryant | 09b9460 | 2015-06-08 15:25:43 -0400 | [diff] [blame] | 507 | # Control of the l2 agent is separated out to make it easier to test partial | 
 | 508 | # upgrades (everything upgraded except the L2 agent) | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 509 | function start_mutnauq_l2_agent { | 
| Davanum Srinivas | 59756e9 | 2015-09-23 17:42:54 -0400 | [diff] [blame] | 510 |     run_process q-agt "$AGENT_BINARY --config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE" | 
| Nachi Ueno | 584750f | 2013-07-15 18:22:21 -0700 | [diff] [blame] | 511 |  | 
| Kahou Lei | d663e29 | 2015-10-24 12:18:57 -0700 | [diff] [blame] | 512 |     if is_provider_network && [[ $Q_AGENT == "openvswitch" ]]; then | 
| Zhongyue Luo | 56b7efb | 2014-12-16 11:36:49 +0800 | [diff] [blame] | 513 |         sudo ovs-vsctl --no-wait -- --may-exist add-port $OVS_PHYSICAL_BRIDGE $PUBLIC_INTERFACE | 
| Sean M. Collins | 5ec6f8f | 2014-05-14 17:01:03 -0400 | [diff] [blame] | 514 |         sudo ip link set $OVS_PHYSICAL_BRIDGE up | 
 | 515 |         sudo ip link set br-int up | 
 | 516 |         sudo ip link set $PUBLIC_INTERFACE up | 
| yunhong jiang | ae9ee6b | 2014-10-08 07:01:02 -0700 | [diff] [blame] | 517 |         if is_ironic_hardware; then | 
 | 518 |             for IP in $(ip addr show dev $PUBLIC_INTERFACE | grep ' inet ' | awk '{print $2}'); do | 
 | 519 |                 sudo ip addr del $IP dev $PUBLIC_INTERFACE | 
 | 520 |                 sudo ip addr add $IP dev $OVS_PHYSICAL_BRIDGE | 
 | 521 |             done | 
| gong yong sheng | 348c6ac | 2015-06-23 14:03:47 +0800 | [diff] [blame] | 522 |             sudo ip route replace $FIXED_RANGE via $NETWORK_GATEWAY dev $OVS_PHYSICAL_BRIDGE | 
| yunhong jiang | ae9ee6b | 2014-10-08 07:01:02 -0700 | [diff] [blame] | 523 |         fi | 
| Sean M. Collins | 5ec6f8f | 2014-05-14 17:01:03 -0400 | [diff] [blame] | 524 |     fi | 
| Russell Bryant | 09b9460 | 2015-06-08 15:25:43 -0400 | [diff] [blame] | 525 | } | 
 | 526 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 527 | function start_mutnauq_other_agents { | 
| Angus Lees | a1c70f2 | 2016-05-31 14:43:14 +1000 | [diff] [blame] | 528 |     run_process q-dhcp "$AGENT_DHCP_BINARY --config-file $NEUTRON_CONF --config-file $Q_DHCP_CONF_FILE" | 
| Sean M. Collins | 5ec6f8f | 2014-05-14 17:01:03 -0400 | [diff] [blame] | 529 |  | 
| Paul Michali | e4289c8 | 2015-08-14 11:49:27 -0400 | [diff] [blame] | 530 |     if is_service_enabled neutron-vpnaas; then | 
 | 531 |         :  # Started by plugin | 
| Ravi Chunduru | 95c93e2 | 2013-07-16 04:18:47 -0700 | [diff] [blame] | 532 |     else | 
| Davanum Srinivas | 59756e9 | 2015-09-23 17:42:54 -0400 | [diff] [blame] | 533 |         run_process q-l3 "$AGENT_L3_BINARY $(determine_config_files neutron-l3-agent)" | 
| Ravi Chunduru | 95c93e2 | 2013-07-16 04:18:47 -0700 | [diff] [blame] | 534 |     fi | 
 | 535 |  | 
| Angus Lees | a1c70f2 | 2016-05-31 14:43:14 +1000 | [diff] [blame] | 536 |     run_process q-meta "$AGENT_META_BINARY --config-file $NEUTRON_CONF --config-file $Q_META_CONF_FILE" | 
| Davanum Srinivas | 59756e9 | 2015-09-23 17:42:54 -0400 | [diff] [blame] | 537 |     run_process q-metering "$AGENT_METERING_BINARY --config-file $NEUTRON_CONF --config-file $METERING_AGENT_CONF_FILENAME" | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 538 | } | 
 | 539 |  | 
| Russell Bryant | 09b9460 | 2015-06-08 15:25:43 -0400 | [diff] [blame] | 540 | # Start running processes, including screen | 
 | 541 | function start_neutron_agents { | 
 | 542 |     # Start up the neutron agents if enabled | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 543 |     start_mutnauq_l2_agent | 
 | 544 |     start_mutnauq_other_agents | 
| Russell Bryant | 09b9460 | 2015-06-08 15:25:43 -0400 | [diff] [blame] | 545 | } | 
 | 546 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 547 | function stop_mutnauq_l2_agent { | 
| Russell Bryant | 09b9460 | 2015-06-08 15:25:43 -0400 | [diff] [blame] | 548 |     stop_process q-agt | 
 | 549 | } | 
 | 550 |  | 
| Sean Dague | 0eebeb4 | 2017-08-30 14:16:58 -0400 | [diff] [blame] | 551 | # stop_mutnauq_other() - Stop running processes | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 552 | function stop_mutnauq_other { | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 553 |     if is_service_enabled q-dhcp; then | 
| Chris Dent | 36891dc | 2015-02-03 16:22:44 +0000 | [diff] [blame] | 554 |         stop_process q-dhcp | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 555 |         pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }') | 
 | 556 |         [ ! -z "$pid" ] && sudo kill -9 $pid | 
 | 557 |     fi | 
| Chris Dent | 36891dc | 2015-02-03 16:22:44 +0000 | [diff] [blame] | 558 |  | 
| Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 559 |     if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then | 
 | 560 |         stop_process neutron-rpc-server | 
 | 561 |         stop_process neutron-api | 
 | 562 |     else | 
 | 563 |         stop_process q-svc | 
 | 564 |     fi | 
| Li Ma | a15d9de | 2016-01-19 19:11:51 +0800 | [diff] [blame] | 565 |  | 
 | 566 |     if is_service_enabled q-l3; then | 
 | 567 |         sudo pkill -f "radvd -C $DATA_DIR/neutron/ra" | 
 | 568 |         stop_process q-l3 | 
 | 569 |     fi | 
| Chris Dent | 36891dc | 2015-02-03 16:22:44 +0000 | [diff] [blame] | 570 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 571 |     if is_service_enabled q-meta; then | 
| Jakub Libosvar | 1f76328 | 2014-01-28 23:01:38 +0100 | [diff] [blame] | 572 |         sudo pkill -9 -f neutron-ns-metadata-proxy || : | 
| Chris Dent | 36891dc | 2015-02-03 16:22:44 +0000 | [diff] [blame] | 573 |         stop_process q-meta | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 574 |     fi | 
| Akihiro Motoki | edddb1f | 2013-12-09 20:21:06 +0900 | [diff] [blame] | 575 |  | 
| Akihiro Motoki | edddb1f | 2013-12-09 20:21:06 +0900 | [diff] [blame] | 576 |     if is_service_enabled q-metering; then | 
 | 577 |         neutron_metering_stop | 
 | 578 |     fi | 
| Li Ma | 50120fa | 2015-12-13 10:41:34 +0800 | [diff] [blame] | 579 |  | 
 | 580 |     if [[ "$Q_USE_ROOTWRAP_DAEMON" == "True" ]]; then | 
 | 581 |         sudo pkill -9 -f $NEUTRON_ROOTWRAP-daemon || : | 
 | 582 |     fi | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 583 | } | 
 | 584 |  | 
| Russell Bryant | 09b9460 | 2015-06-08 15:25:43 -0400 | [diff] [blame] | 585 | # stop_neutron() - Stop running processes (non-screen) | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 586 | function stop_mutnauq { | 
 | 587 |     stop_mutnauq_other | 
 | 588 |     stop_mutnauq_l2_agent | 
| Russell Bryant | 09b9460 | 2015-06-08 15:25:43 -0400 | [diff] [blame] | 589 | } | 
 | 590 |  | 
| Sean M. Collins | 00e16a9 | 2015-02-20 11:45:21 -0500 | [diff] [blame] | 591 | # _move_neutron_addresses_route() - Move the primary IP to the OVS bridge | 
| Adam Kacmarsky | 6b172c8 | 2015-08-13 15:14:05 -0600 | [diff] [blame] | 592 | # on startup, or back to the public interface on cleanup. If no IP is | 
 | 593 | # configured on the interface, just add it as a port to the OVS bridge. | 
| Sean M. Collins | 00e16a9 | 2015-02-20 11:45:21 -0500 | [diff] [blame] | 594 | function _move_neutron_addresses_route { | 
 | 595 |     local from_intf=$1 | 
 | 596 |     local to_intf=$2 | 
 | 597 |     local add_ovs_port=$3 | 
| Brian Haley | a0d1b01 | 2015-11-16 17:30:48 -0500 | [diff] [blame] | 598 |     local del_ovs_port=$4 | 
 | 599 |     local af=$5 | 
| Sean M. Collins | 00e16a9 | 2015-02-20 11:45:21 -0500 | [diff] [blame] | 600 |  | 
 | 601 |     if [[ -n "$from_intf" && -n "$to_intf" ]]; then | 
 | 602 |         # Remove the primary IP address from $from_intf and add it to $to_intf, | 
 | 603 |         # along with the default route, if it exists.  Also, when called | 
 | 604 |         # on configure we will also add $from_intf as a port on $to_intf, | 
 | 605 |         # assuming it is an OVS bridge. | 
 | 606 |  | 
| Matt McEuen | e24707b | 2016-07-11 08:37:59 -0500 | [diff] [blame] | 607 |         local IP_REPLACE="" | 
| Adam Kacmarsky | 6b172c8 | 2015-08-13 15:14:05 -0600 | [diff] [blame] | 608 |         local IP_DEL="" | 
| Shinobu KINJO | f95315b | 2015-11-07 10:21:08 +0900 | [diff] [blame] | 609 |         local IP_UP="" | 
| Ian Wienand | ada886d | 2015-10-07 14:06:26 +1100 | [diff] [blame] | 610 |         local DEFAULT_ROUTE_GW | 
| Andreas Scheuring | 92e6b1a | 2017-04-26 13:40:42 +0200 | [diff] [blame] | 611 |         DEFAULT_ROUTE_GW=$(ip -f $af r | awk "/default.+$from_intf\s/ { print \$3; exit }") | 
| Sean M. Collins | 00e16a9 | 2015-02-20 11:45:21 -0500 | [diff] [blame] | 612 |         local ADD_OVS_PORT="" | 
| Brian Haley | a0d1b01 | 2015-11-16 17:30:48 -0500 | [diff] [blame] | 613 |         local DEL_OVS_PORT="" | 
| Sean M. Collins | 17398a3 | 2016-05-11 18:24:46 +0000 | [diff] [blame] | 614 |         local ARP_CMD="" | 
| Sean M. Collins | 00e16a9 | 2015-02-20 11:45:21 -0500 | [diff] [blame] | 615 |  | 
| Brian Haley | bb9caea | 2015-11-16 17:18:42 -0500 | [diff] [blame] | 616 |         IP_BRD=$(ip -f $af a s dev $from_intf scope global primary | grep inet | awk '{ print $2, $3, $4; exit }') | 
| Adam Kacmarsky | 11298a0 | 2015-06-26 14:49:47 -0600 | [diff] [blame] | 617 |  | 
| Sean M. Collins | 00e16a9 | 2015-02-20 11:45:21 -0500 | [diff] [blame] | 618 |         if [ "$DEFAULT_ROUTE_GW" != "" ]; then | 
| Sean M. Collins | 59e86a3 | 2015-11-09 11:06:39 -0500 | [diff] [blame] | 619 |             ADD_DEFAULT_ROUTE="sudo ip -f $af r replace default via $DEFAULT_ROUTE_GW dev $to_intf" | 
| Sean M. Collins | 00e16a9 | 2015-02-20 11:45:21 -0500 | [diff] [blame] | 620 |         fi | 
 | 621 |  | 
 | 622 |         if [[ "$add_ovs_port" == "True" ]]; then | 
| Raman Budny | db02bbf | 2015-03-31 13:09:09 +0300 | [diff] [blame] | 623 |             ADD_OVS_PORT="sudo ovs-vsctl --may-exist add-port $to_intf $from_intf" | 
| Sean M. Collins | 00e16a9 | 2015-02-20 11:45:21 -0500 | [diff] [blame] | 624 |         fi | 
 | 625 |  | 
| Brian Haley | a0d1b01 | 2015-11-16 17:30:48 -0500 | [diff] [blame] | 626 |         if [[ "$del_ovs_port" == "True" ]]; then | 
 | 627 |             DEL_OVS_PORT="sudo ovs-vsctl --if-exists del-port $from_intf $to_intf" | 
 | 628 |         fi | 
 | 629 |  | 
| Adam Kacmarsky | 6b172c8 | 2015-08-13 15:14:05 -0600 | [diff] [blame] | 630 |         if [[ "$IP_BRD" != "" ]]; then | 
| Brian Haley | 9451021 | 2015-09-02 15:40:04 -0400 | [diff] [blame] | 631 |             IP_DEL="sudo ip addr del $IP_BRD dev $from_intf" | 
| Matt McEuen | e24707b | 2016-07-11 08:37:59 -0500 | [diff] [blame] | 632 |             IP_REPLACE="sudo ip addr replace $IP_BRD dev $to_intf" | 
| Shinobu KINJO | f95315b | 2015-11-07 10:21:08 +0900 | [diff] [blame] | 633 |             IP_UP="sudo ip link set $to_intf up" | 
| Sean M. Collins | 6d4843e | 2016-05-12 16:14:26 -0400 | [diff] [blame] | 634 |             if [[ "$af" == "inet" ]]; then | 
 | 635 |                 IP=$(echo $IP_BRD | awk '{ print $1; exit }' | grep -o -E '(.*)/' | cut -d "/" -f1) | 
 | 636 |                 ARP_CMD="arping -A -c 3 -w 4.5 -I $to_intf $IP " | 
 | 637 |             fi | 
| Adam Kacmarsky | 6b172c8 | 2015-08-13 15:14:05 -0600 | [diff] [blame] | 638 |         fi | 
 | 639 |  | 
| Brian Haley | a0d1b01 | 2015-11-16 17:30:48 -0500 | [diff] [blame] | 640 |         # The add/del OVS port calls have to happen either before or | 
 | 641 |         # after the address is moved in order to not leave it orphaned. | 
| Matt McEuen | e24707b | 2016-07-11 08:37:59 -0500 | [diff] [blame] | 642 |         $DEL_OVS_PORT; $IP_DEL; $IP_REPLACE; $IP_UP; $ADD_OVS_PORT; $ADD_DEFAULT_ROUTE; $ARP_CMD | 
| Sean M. Collins | 00e16a9 | 2015-02-20 11:45:21 -0500 | [diff] [blame] | 643 |     fi | 
 | 644 | } | 
 | 645 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 646 | # cleanup_mutnauq() - Remove residual data files, anything left over from previous | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 647 | # runs that a clean run would need to clean up | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 648 | function cleanup_mutnauq { | 
| Sean M. Collins | 00e16a9 | 2015-02-20 11:45:21 -0500 | [diff] [blame] | 649 |  | 
| Yalei Wang | 316b348 | 2015-07-15 21:00:31 +0800 | [diff] [blame] | 650 |     if [[ -n "$OVS_PHYSICAL_BRIDGE" ]]; then | 
| Brian Haley | a0d1b01 | 2015-11-16 17:30:48 -0500 | [diff] [blame] | 651 |         _move_neutron_addresses_route "$OVS_PHYSICAL_BRIDGE" "$PUBLIC_INTERFACE" False True "inet" | 
| Adam Kacmarsky | 11298a0 | 2015-06-26 14:49:47 -0600 | [diff] [blame] | 652 |  | 
| Yalei Wang | 316b348 | 2015-07-15 21:00:31 +0800 | [diff] [blame] | 653 |         if [[ $(ip -f inet6 a s dev "$OVS_PHYSICAL_BRIDGE" | grep -c 'global') != 0 ]]; then | 
| Sean M. Collins | 790266f | 2015-11-11 13:36:35 -0500 | [diff] [blame] | 654 |             # ip(8) wants the prefix length when deleting | 
 | 655 |             local v6_gateway | 
 | 656 |             v6_gateway=$(ip -6 a s dev $OVS_PHYSICAL_BRIDGE | grep $IPV6_PUBLIC_NETWORK_GATEWAY | awk '{ print $2 }') | 
 | 657 |             sudo ip -6 addr del $v6_gateway dev $OVS_PHYSICAL_BRIDGE | 
| Brian Haley | a0d1b01 | 2015-11-16 17:30:48 -0500 | [diff] [blame] | 658 |             _move_neutron_addresses_route "$OVS_PHYSICAL_BRIDGE" "$PUBLIC_INTERFACE" False False "inet6" | 
| Yalei Wang | 316b348 | 2015-07-15 21:00:31 +0800 | [diff] [blame] | 659 |         fi | 
| Sean M. Collins | 00e16a9 | 2015-02-20 11:45:21 -0500 | [diff] [blame] | 660 |  | 
| Yalei Wang | 316b348 | 2015-07-15 21:00:31 +0800 | [diff] [blame] | 661 |         if is_provider_network && is_ironic_hardware; then | 
 | 662 |             for IP in $(ip addr show dev $OVS_PHYSICAL_BRIDGE | grep ' inet ' | awk '{print $2}'); do | 
 | 663 |                 sudo ip addr del $IP dev $OVS_PHYSICAL_BRIDGE | 
 | 664 |                 sudo ip addr add $IP dev $PUBLIC_INTERFACE | 
 | 665 |             done | 
 | 666 |             sudo route del -net $FIXED_RANGE gw $NETWORK_GATEWAY dev $OVS_PHYSICAL_BRIDGE | 
 | 667 |         fi | 
| yunhong jiang | ae9ee6b | 2014-10-08 07:01:02 -0700 | [diff] [blame] | 668 |     fi | 
 | 669 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 670 |     if is_neutron_ovs_base_plugin; then | 
 | 671 |         neutron_ovs_base_cleanup | 
 | 672 |     fi | 
 | 673 |  | 
| Sean M. Collins | 7bc2af7 | 2015-06-08 12:36:30 -0400 | [diff] [blame] | 674 |     if [[ $Q_AGENT == "linuxbridge" ]]; then | 
 | 675 |         neutron_lb_cleanup | 
 | 676 |     fi | 
 | 677 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 678 |     # delete all namespaces created by neutron | 
| Doug Wiegley | 7e40c64 | 2016-08-20 16:32:14 +0000 | [diff] [blame] | 679 |     for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|fip|snat)-[0-9a-f-]*'); do | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 680 |         sudo ip netns delete ${ns} | 
 | 681 |     done | 
 | 682 | } | 
 | 683 |  | 
| Doug Wiegley | 93e682c | 2015-03-03 10:31:30 -0700 | [diff] [blame] | 684 |  | 
| Maru Newby | 952fd90 | 2015-01-30 22:27:12 +0000 | [diff] [blame] | 685 | function _create_neutron_conf_dir { | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 686 |     # Put config files in ``NEUTRON_CONF_DIR`` for everyone to find | 
| Dean Troyer | 8421c2b | 2015-03-16 13:52:19 -0500 | [diff] [blame] | 687 |     sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR | 
| Maru Newby | 952fd90 | 2015-01-30 22:27:12 +0000 | [diff] [blame] | 688 | } | 
 | 689 |  | 
 | 690 | # _configure_neutron_common() | 
 | 691 | # Set common config for all neutron server and agents. | 
 | 692 | # This MUST be called before other ``_configure_neutron_*`` functions. | 
 | 693 | function _configure_neutron_common { | 
 | 694 |     _create_neutron_conf_dir | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 695 |  | 
| Martin Hickey | 30d5fae | 2015-11-10 13:44:15 +0000 | [diff] [blame] | 696 |     # Uses oslo config generator to generate core sample configuration files | 
 | 697 |     (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh) | 
 | 698 |  | 
 | 699 |     cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 700 |  | 
| Jerry Zhao | 296c1e3 | 2015-08-07 20:43:54 -0400 | [diff] [blame] | 701 |     Q_POLICY_FILE=$NEUTRON_CONF_DIR/policy.json | 
 | 702 |     cp $NEUTRON_DIR/etc/policy.json $Q_POLICY_FILE | 
 | 703 |  | 
 | 704 |     # allow neutron user to administer neutron to match neutron account | 
 | 705 |     sed -i 's/"context_is_admin":  "role:admin"/"context_is_admin":  "role:admin or user_name:neutron"/g' $Q_POLICY_FILE | 
 | 706 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 707 |     # Set plugin-specific variables ``Q_DB_NAME``, ``Q_PLUGIN_CLASS``. | 
 | 708 |     # For main plugin config file, set ``Q_PLUGIN_CONF_PATH``, ``Q_PLUGIN_CONF_FILENAME``. | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 709 |     neutron_plugin_configure_common | 
 | 710 |  | 
| sbauza | e2c4ee2 | 2013-08-29 17:29:46 +0200 | [diff] [blame] | 711 |     if [[ "$Q_PLUGIN_CONF_PATH" == '' || "$Q_PLUGIN_CONF_FILENAME" == '' || "$Q_PLUGIN_CLASS" == '' ]]; then | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 712 |         die $LINENO "Neutron plugin not set.. exiting" | 
 | 713 |     fi | 
 | 714 |  | 
 | 715 |     # If needed, move config file from ``$NEUTRON_DIR/etc/neutron`` to ``NEUTRON_CONF_DIR`` | 
 | 716 |     mkdir -p /$Q_PLUGIN_CONF_PATH | 
 | 717 |     Q_PLUGIN_CONF_FILE=$Q_PLUGIN_CONF_PATH/$Q_PLUGIN_CONF_FILENAME | 
| Hirofumi Ichihara | 97cc85b | 2015-09-08 13:51:01 +0900 | [diff] [blame] | 718 |     # NOTE(hichihara): Some neutron vendor plugins were already decomposed and | 
 | 719 |     # there is no config file in Neutron tree. They should prepare the file in each plugin. | 
| Martin Hickey | 30d5fae | 2015-11-10 13:44:15 +0000 | [diff] [blame] | 720 |     if [ -f "$NEUTRON_DIR/$Q_PLUGIN_CONF_FILE.sample" ]; then | 
 | 721 |         cp "$NEUTRON_DIR/$Q_PLUGIN_CONF_FILE.sample" /$Q_PLUGIN_CONF_FILE | 
 | 722 |     elif [ -f $NEUTRON_DIR/$Q_PLUGIN_CONF_FILE ]; then | 
| Hirofumi Ichihara | 97cc85b | 2015-09-08 13:51:01 +0900 | [diff] [blame] | 723 |         cp $NEUTRON_DIR/$Q_PLUGIN_CONF_FILE /$Q_PLUGIN_CONF_FILE | 
 | 724 |     fi | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 725 |  | 
| Ihar Hrachyshka | b816e5d | 2014-07-21 13:53:50 +0200 | [diff] [blame] | 726 |     iniset $NEUTRON_CONF database connection `database_connection_url $Q_DB_NAME` | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 727 |     iniset $NEUTRON_CONF DEFAULT state_path $DATA_DIR/neutron | 
| salvatore | e4e535b | 2014-10-29 18:22:46 +0100 | [diff] [blame] | 728 |     iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG | 
| Brian Haley | 180f5eb | 2015-06-16 13:14:31 -0400 | [diff] [blame] | 729 |     iniset $NEUTRON_CONF DEFAULT bind_host $Q_LISTEN_ADDRESS | 
| Martin Hickey | 30d5fae | 2015-11-10 13:44:15 +0000 | [diff] [blame] | 730 |     iniset $NEUTRON_CONF oslo_concurrency lock_path $DATA_DIR/neutron/lock | 
 | 731 |  | 
| Victor Ryzhenkin | 878d7d8 | 2016-04-27 15:15:52 +0300 | [diff] [blame] | 732 |     # NOTE(freerunner): Need to adjust Region Name for nova in multiregion installation | 
 | 733 |     iniset $NEUTRON_CONF nova region_name $REGION_NAME | 
 | 734 |  | 
| Joe Gordon | bee5c50 | 2013-08-30 13:48:08 -0400 | [diff] [blame] | 735 |     if [ "$VIRT_DRIVER" = 'fake' ]; then | 
 | 736 |         # Disable arbitrary limits | 
 | 737 |         iniset $NEUTRON_CONF quotas quota_network -1 | 
 | 738 |         iniset $NEUTRON_CONF quotas quota_subnet -1 | 
 | 739 |         iniset $NEUTRON_CONF quotas quota_port -1 | 
 | 740 |         iniset $NEUTRON_CONF quotas quota_security_group -1 | 
 | 741 |         iniset $NEUTRON_CONF quotas quota_security_group_rule -1 | 
 | 742 |     fi | 
 | 743 |  | 
| Salvatore Orlando | 05ae833 | 2013-08-20 14:51:08 -0700 | [diff] [blame] | 744 |     # Format logging | 
| Sean Dague | 9751be6 | 2016-04-05 12:08:57 -0400 | [diff] [blame] | 745 |     setup_logging $NEUTRON_CONF | 
| Salvatore Orlando | 05ae833 | 2013-08-20 14:51:08 -0700 | [diff] [blame] | 746 |  | 
| Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 747 |     if is_service_enabled tls-proxy && [ "$NEUTRON_DEPLOY_MOD_WSGI" == "False" ]; then | 
| Rob Crittenden | 18d4778 | 2014-03-19 17:47:42 -0400 | [diff] [blame] | 748 |         # Set the service port for a proxy to take the original | 
 | 749 |         iniset $NEUTRON_CONF DEFAULT bind_port "$Q_PORT_INT" | 
| Jens Harbott | 411c34d | 2017-08-29 14:40:26 +0000 | [diff] [blame] | 750 |         iniset $NEUTRON_CONF oslo_middleware enable_proxy_headers_parsing True | 
| Rob Crittenden | 18d4778 | 2014-03-19 17:47:42 -0400 | [diff] [blame] | 751 |     fi | 
 | 752 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 753 |     _neutron_setup_rootwrap | 
 | 754 | } | 
 | 755 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 756 | function _configure_neutron_dhcp_agent { | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 757 |  | 
| Martin Hickey | 30d5fae | 2015-11-10 13:44:15 +0000 | [diff] [blame] | 758 |     cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $Q_DHCP_CONF_FILE | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 759 |  | 
| Ben Nemec | 0399794 | 2013-08-10 09:56:16 -0500 | [diff] [blame] | 760 |     iniset $Q_DHCP_CONF_FILE DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL | 
| Sean Dague | 78801c1 | 2016-08-04 14:10:07 -0400 | [diff] [blame] | 761 |     # make it so we have working DNS from guests | 
 | 762 |     iniset $Q_DHCP_CONF_FILE DEFAULT dnsmasq_local_resolv True | 
| Hirofumi Ichihara | 2bb3a64 | 2015-08-18 12:59:08 -0700 | [diff] [blame] | 763 |     iniset $Q_DHCP_CONF_FILE AGENT root_helper "$Q_RR_COMMAND" | 
| Yuriy Taraday | 2662395 | 2014-07-16 17:41:53 +0400 | [diff] [blame] | 764 |     if [[ "$Q_USE_ROOTWRAP_DAEMON" == "True" ]]; then | 
| Hirofumi Ichihara | 2bb3a64 | 2015-08-18 12:59:08 -0700 | [diff] [blame] | 765 |         iniset $Q_DHCP_CONF_FILE AGENT root_helper_daemon "$Q_RR_DAEMON_COMMAND" | 
| Yuriy Taraday | 2662395 | 2014-07-16 17:41:53 +0400 | [diff] [blame] | 766 |     fi | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 767 |  | 
| Tan Lin | 27a196e | 2014-10-31 15:44:34 +0800 | [diff] [blame] | 768 |     if ! is_service_enabled q-l3; then | 
 | 769 |         if [[ "$ENABLE_ISOLATED_METADATA" = "True" ]]; then | 
 | 770 |             iniset $Q_DHCP_CONF_FILE DEFAULT enable_isolated_metadata $ENABLE_ISOLATED_METADATA | 
 | 771 |             iniset $Q_DHCP_CONF_FILE DEFAULT enable_metadata_network $ENABLE_METADATA_NETWORK | 
 | 772 |         else | 
 | 773 |             if [[ "$ENABLE_METADATA_NETWORK" = "True" ]]; then | 
 | 774 |                 die "$LINENO" "Enable isolated metadata is a must for metadata network" | 
 | 775 |             fi | 
 | 776 |         fi | 
 | 777 |     fi | 
 | 778 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 779 |     _neutron_setup_interface_driver $Q_DHCP_CONF_FILE | 
 | 780 |  | 
| xurong00037997 | 7ef31d0 | 2016-07-05 11:09:40 +0800 | [diff] [blame] | 781 |     neutron_plugin_configure_dhcp_agent $Q_DHCP_CONF_FILE | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 782 | } | 
 | 783 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 784 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 785 | function _configure_neutron_metadata_agent { | 
| Martin Hickey | 30d5fae | 2015-11-10 13:44:15 +0000 | [diff] [blame] | 786 |     cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $Q_META_CONF_FILE | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 787 |  | 
| Ben Nemec | 0399794 | 2013-08-10 09:56:16 -0500 | [diff] [blame] | 788 |     iniset $Q_META_CONF_FILE DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL | 
| Brian Haley | efc5168 | 2017-11-10 00:50:48 -0500 | [diff] [blame] | 789 |     iniset $Q_META_CONF_FILE DEFAULT nova_metadata_host $Q_META_DATA_IP | 
| Armando Migliaccio | 06f2ea2 | 2017-02-02 16:47:00 -0800 | [diff] [blame] | 790 |     iniset $Q_META_CONF_FILE DEFAULT metadata_workers $API_WORKERS | 
| Hirofumi Ichihara | 2bb3a64 | 2015-08-18 12:59:08 -0700 | [diff] [blame] | 791 |     iniset $Q_META_CONF_FILE AGENT root_helper "$Q_RR_COMMAND" | 
| Yuriy Taraday | 2662395 | 2014-07-16 17:41:53 +0400 | [diff] [blame] | 792 |     if [[ "$Q_USE_ROOTWRAP_DAEMON" == "True" ]]; then | 
| Hirofumi Ichihara | 2bb3a64 | 2015-08-18 12:59:08 -0700 | [diff] [blame] | 793 |         iniset $Q_META_CONF_FILE AGENT root_helper_daemon "$Q_RR_DAEMON_COMMAND" | 
| Yuriy Taraday | 2662395 | 2014-07-16 17:41:53 +0400 | [diff] [blame] | 794 |     fi | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 795 | } | 
 | 796 |  | 
| Dina Belova | 58adaa6 | 2014-07-11 18:18:12 +0400 | [diff] [blame] | 797 | function _configure_neutron_ceilometer_notifications { | 
| Matt Riedemann | 45da777 | 2017-03-05 13:07:39 -0500 | [diff] [blame] | 798 |     iniset $NEUTRON_CONF oslo_messaging_notifications driver messagingv2 | 
| Dina Belova | 58adaa6 | 2014-07-11 18:18:12 +0400 | [diff] [blame] | 799 | } | 
 | 800 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 801 | function _configure_neutron_metering { | 
| Emilien Macchi | 40546f7 | 2013-09-24 15:10:25 +0200 | [diff] [blame] | 802 |     neutron_agent_metering_configure_common | 
 | 803 |     neutron_agent_metering_configure_agent | 
 | 804 | } | 
 | 805 |  | 
| Brian Haley | eea7621 | 2014-06-27 11:45:50 -0400 | [diff] [blame] | 806 | function _configure_dvr { | 
 | 807 |     iniset $NEUTRON_CONF DEFAULT router_distributed True | 
 | 808 |     iniset $Q_L3_CONF_FILE DEFAULT agent_mode $Q_DVR_MODE | 
 | 809 | } | 
 | 810 |  | 
 | 811 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 812 | # _configure_neutron_plugin_agent() - Set config files for neutron plugin agent | 
 | 813 | # It is called when q-agt is enabled. | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 814 | function _configure_neutron_plugin_agent { | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 815 |     # Specify the default root helper prior to agent configuration to | 
 | 816 |     # ensure that an agent's configuration can override the default | 
 | 817 |     iniset /$Q_PLUGIN_CONF_FILE agent root_helper "$Q_RR_COMMAND" | 
| Yuriy Taraday | 2662395 | 2014-07-16 17:41:53 +0400 | [diff] [blame] | 818 |     if [[ "$Q_USE_ROOTWRAP_DAEMON" == "True" ]]; then | 
 | 819 |         iniset /$Q_PLUGIN_CONF_FILE  agent root_helper_daemon "$Q_RR_DAEMON_COMMAND" | 
 | 820 |     fi | 
| Ben Nemec | 0399794 | 2013-08-10 09:56:16 -0500 | [diff] [blame] | 821 |     iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 822 |  | 
 | 823 |     # Configure agent for plugin | 
 | 824 |     neutron_plugin_configure_plugin_agent | 
 | 825 | } | 
 | 826 |  | 
 | 827 | # _configure_neutron_service() - Set config files for neutron service | 
 | 828 | # It is called when q-svc is enabled. | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 829 | function _configure_neutron_service { | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 830 |     Q_API_PASTE_FILE=$NEUTRON_CONF_DIR/api-paste.ini | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 831 |     cp $NEUTRON_DIR/etc/api-paste.ini $Q_API_PASTE_FILE | 
| Kevin Benton | 08a5fcc | 2014-07-18 16:06:12 -0700 | [diff] [blame] | 832 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 833 |     # Update either configuration file with plugin | 
 | 834 |     iniset $NEUTRON_CONF DEFAULT core_plugin $Q_PLUGIN_CLASS | 
 | 835 |  | 
| Ben Nemec | 0399794 | 2013-08-10 09:56:16 -0500 | [diff] [blame] | 836 |     iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL | 
| Chris Dent | 74a85b0 | 2015-04-22 18:02:39 +0000 | [diff] [blame] | 837 |     iniset $NEUTRON_CONF oslo_policy policy_file $Q_POLICY_FILE | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 838 |     iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips $Q_ALLOW_OVERLAPPING_IP | 
 | 839 |  | 
 | 840 |     iniset $NEUTRON_CONF DEFAULT auth_strategy $Q_AUTH_STRATEGY | 
 | 841 |     _neutron_setup_keystone $NEUTRON_CONF keystone_authtoken | 
 | 842 |  | 
| Atsushi SAKAI | fe7b56c | 2015-11-13 17:06:16 +0900 | [diff] [blame] | 843 |     # Configuration for neutron notifications to nova. | 
| Terry Wilson | f06c443 | 2014-05-20 10:54:51 -0500 | [diff] [blame] | 844 |     iniset $NEUTRON_CONF DEFAULT notify_nova_on_port_status_changes $Q_NOTIFY_NOVA_PORT_STATUS_CHANGES | 
 | 845 |     iniset $NEUTRON_CONF DEFAULT notify_nova_on_port_data_changes $Q_NOTIFY_NOVA_PORT_DATA_CHANGES | 
| Jamie Lennox | dc757dd | 2015-03-09 14:48:09 +1100 | [diff] [blame] | 846 |  | 
| Ian Wienand | 1f82f43 | 2017-10-04 09:51:02 +1100 | [diff] [blame] | 847 |     configure_auth_token_middleware $NEUTRON_CONF nova $NEUTRON_AUTH_CACHE_DIR nova | 
| Aaron Rosen | cea32b1 | 2014-03-04 16:20:14 -0800 | [diff] [blame] | 848 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 849 |     # Configure plugin | 
 | 850 |     neutron_plugin_configure_service | 
 | 851 | } | 
 | 852 |  | 
 | 853 | # Utility Functions | 
 | 854 | #------------------ | 
 | 855 |  | 
| Isaku Yamahata | 9e136b4 | 2013-12-16 15:52:03 +0900 | [diff] [blame] | 856 | # _neutron_service_plugin_class_add() - add service plugin class | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 857 | function _neutron_service_plugin_class_add { | 
| Isaku Yamahata | 9e136b4 | 2013-12-16 15:52:03 +0900 | [diff] [blame] | 858 |     local service_plugin_class=$1 | 
 | 859 |     if [[ $Q_SERVICE_PLUGIN_CLASSES == '' ]]; then | 
 | 860 |         Q_SERVICE_PLUGIN_CLASSES=$service_plugin_class | 
 | 861 |     elif [[ ! ,${Q_SERVICE_PLUGIN_CLASSES}, =~ ,${service_plugin_class}, ]]; then | 
 | 862 |         Q_SERVICE_PLUGIN_CLASSES="$Q_SERVICE_PLUGIN_CLASSES,$service_plugin_class" | 
 | 863 |     fi | 
 | 864 | } | 
 | 865 |  | 
| Ihar Hrachyshka | f511c36 | 2017-03-07 06:31:49 +0000 | [diff] [blame] | 866 | # _neutron_ml2_extension_driver_add_old() - add ML2 extension driver | 
 | 867 | function _neutron_ml2_extension_driver_add_old { | 
 | 868 |     local extension=$1 | 
 | 869 |     if [[ $Q_ML2_PLUGIN_EXT_DRIVERS == '' ]]; then | 
 | 870 |         Q_ML2_PLUGIN_EXT_DRIVERS=$extension | 
 | 871 |     elif [[ ! ,${Q_ML2_PLUGIN_EXT_DRIVERS}, =~ ,${extension}, ]]; then | 
 | 872 |         Q_ML2_PLUGIN_EXT_DRIVERS="$Q_ML2_PLUGIN_EXT_DRIVERS,$extension" | 
 | 873 |     fi | 
 | 874 | } | 
 | 875 |  | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 876 | # mutnauq_server_config_add() - add server config file | 
 | 877 | function mutnauq_server_config_add { | 
 | 878 |     _Q_PLUGIN_EXTRA_CONF_FILES_ABS+=($1) | 
 | 879 | } | 
 | 880 |  | 
| Ihar Hrachyshka | 5893cc7 | 2014-12-22 11:49:42 +0100 | [diff] [blame] | 881 | # _neutron_deploy_rootwrap_filters() - deploy rootwrap filters to $Q_CONF_ROOTWRAP_D (owned by root). | 
 | 882 | function _neutron_deploy_rootwrap_filters { | 
| gong yong sheng | 3d6eaae | 2015-09-15 15:00:29 +0800 | [diff] [blame] | 883 |     if [[ "$Q_USE_ROOTWRAP" == "False" ]]; then | 
 | 884 |         return | 
 | 885 |     fi | 
| Ihar Hrachyshka | 5893cc7 | 2014-12-22 11:49:42 +0100 | [diff] [blame] | 886 |     local srcdir=$1 | 
| Dean Troyer | 8421c2b | 2015-03-16 13:52:19 -0500 | [diff] [blame] | 887 |     sudo install -d -o root -m 755 $Q_CONF_ROOTWRAP_D | 
 | 888 |     sudo install -o root -m 644 $srcdir/etc/neutron/rootwrap.d/* $Q_CONF_ROOTWRAP_D/ | 
| Ihar Hrachyshka | 5893cc7 | 2014-12-22 11:49:42 +0100 | [diff] [blame] | 889 | } | 
 | 890 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 891 | # _neutron_setup_rootwrap() - configure Neutron's rootwrap | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 892 | function _neutron_setup_rootwrap { | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 893 |     if [[ "$Q_USE_ROOTWRAP" == "False" ]]; then | 
 | 894 |         return | 
 | 895 |     fi | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 896 |     # Wipe any existing ``rootwrap.d`` files first | 
 | 897 |     Q_CONF_ROOTWRAP_D=$NEUTRON_CONF_DIR/rootwrap.d | 
 | 898 |     if [[ -d $Q_CONF_ROOTWRAP_D ]]; then | 
 | 899 |         sudo rm -rf $Q_CONF_ROOTWRAP_D | 
 | 900 |     fi | 
| Ihar Hrachyshka | 5893cc7 | 2014-12-22 11:49:42 +0100 | [diff] [blame] | 901 |  | 
 | 902 |     _neutron_deploy_rootwrap_filters $NEUTRON_DIR | 
 | 903 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 904 |     # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d`` | 
 | 905 |     # location moved in newer versions, prefer new location | 
 | 906 |     if test -r $NEUTRON_DIR/etc/neutron/rootwrap.conf; then | 
| Dean Troyer | 8421c2b | 2015-03-16 13:52:19 -0500 | [diff] [blame] | 907 |         sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.conf $Q_RR_CONF_FILE | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 908 |     else | 
| Dean Troyer | 8421c2b | 2015-03-16 13:52:19 -0500 | [diff] [blame] | 909 |         sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $Q_RR_CONF_FILE | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 910 |     fi | 
 | 911 |     sudo sed -e "s:^filters_path=.*$:filters_path=$Q_CONF_ROOTWRAP_D:" -i $Q_RR_CONF_FILE | 
| Robert Li | 2c5d462 | 2015-04-21 15:48:22 -0400 | [diff] [blame] | 912 |     sudo sed -e 's:^exec_dirs=\(.*\)$:exec_dirs=\1,/usr/local/bin:' -i $Q_RR_CONF_FILE | 
 | 913 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 914 |     # Specify ``rootwrap.conf`` as first parameter to neutron-rootwrap | 
 | 915 |     ROOTWRAP_SUDOER_CMD="$NEUTRON_ROOTWRAP $Q_RR_CONF_FILE *" | 
| Yuriy Taraday | 2662395 | 2014-07-16 17:41:53 +0400 | [diff] [blame] | 916 |     ROOTWRAP_DAEMON_SUDOER_CMD="$NEUTRON_ROOTWRAP-daemon $Q_RR_CONF_FILE" | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 917 |  | 
 | 918 |     # Set up the rootwrap sudoers for neutron | 
 | 919 |     TEMPFILE=`mktemp` | 
| Stephan Renatus | e578eff | 2013-11-19 13:31:04 +0100 | [diff] [blame] | 920 |     echo "$STACK_USER ALL=(root) NOPASSWD: $ROOTWRAP_SUDOER_CMD" >$TEMPFILE | 
| Yuriy Taraday | 2662395 | 2014-07-16 17:41:53 +0400 | [diff] [blame] | 921 |     echo "$STACK_USER ALL=(root) NOPASSWD: $ROOTWRAP_DAEMON_SUDOER_CMD" >>$TEMPFILE | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 922 |     chmod 0440 $TEMPFILE | 
 | 923 |     sudo chown root:root $TEMPFILE | 
 | 924 |     sudo mv $TEMPFILE /etc/sudoers.d/neutron-rootwrap | 
 | 925 |  | 
 | 926 |     # Update the root_helper | 
 | 927 |     iniset $NEUTRON_CONF agent root_helper "$Q_RR_COMMAND" | 
| Yuriy Taraday | 2662395 | 2014-07-16 17:41:53 +0400 | [diff] [blame] | 928 |     if [[ "$Q_USE_ROOTWRAP_DAEMON" == "True" ]]; then | 
 | 929 |         iniset $NEUTRON_CONF agent root_helper_daemon "$Q_RR_DAEMON_COMMAND" | 
 | 930 |     fi | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 931 | } | 
 | 932 |  | 
| Ihar Hrachyshka | bb4654b | 2015-10-06 18:09:07 +0200 | [diff] [blame] | 933 | # Configures keystone integration for neutron service | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 934 | function _neutron_setup_keystone { | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 935 |     local conf_file=$1 | 
 | 936 |     local section=$2 | 
| Jamie Lennox | 3561d7f | 2014-05-21 17:18:43 +1000 | [diff] [blame] | 937 |  | 
| Ian Wienand | 1f82f43 | 2017-10-04 09:51:02 +1100 | [diff] [blame] | 938 |     create_neutron_cache_dir | 
 | 939 |     configure_auth_token_middleware $conf_file $Q_ADMIN_USERNAME $NEUTRON_AUTH_CACHE_DIR $section | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 940 | } | 
 | 941 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 942 | function _neutron_setup_interface_driver { | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 943 |  | 
 | 944 |     # ovs_use_veth needs to be set before the plugin configuration | 
 | 945 |     # occurs to allow plugins to override the setting. | 
 | 946 |     iniset $1 DEFAULT ovs_use_veth $Q_OVS_USE_VETH | 
 | 947 |  | 
 | 948 |     neutron_plugin_setup_interface_driver $1 | 
 | 949 | } | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 950 | # Functions for Neutron Exercises | 
 | 951 | #-------------------------------- | 
 | 952 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 953 | function delete_probe { | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 954 |     local from_net="$1" | 
 | 955 |     net_id=`_get_net_id $from_net` | 
 | 956 |     probe_id=`neutron-debug --os-tenant-name admin --os-username admin --os-password $ADMIN_PASSWORD probe-list -c id -c network_id | grep $net_id | awk '{print $2}'` | 
 | 957 |     neutron-debug --os-tenant-name admin --os-username admin probe-delete $probe_id | 
 | 958 | } | 
 | 959 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 960 | function _get_net_id { | 
| Brian Haley | 4bc42c7 | 2017-11-07 15:22:00 -0500 | [diff] [blame] | 961 |     openstack --os-cloud devstack-admin --os-region-name="$REGION_NAME" --os-project-name admin --os-username admin --os-password $ADMIN_PASSWORD network list | grep $1 | awk '{print $2}' | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 962 | } | 
 | 963 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 964 | function _get_probe_cmd_prefix { | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 965 |     local from_net="$1" | 
 | 966 |     net_id=`_get_net_id $from_net` | 
 | 967 |     probe_id=`neutron-debug --os-tenant-name admin --os-username admin --os-password $ADMIN_PASSWORD probe-list -c id -c network_id | grep $net_id | awk '{print $2}' | head -n 1` | 
 | 968 |     echo "$Q_RR_COMMAND ip netns exec qprobe-$probe_id" | 
 | 969 | } | 
 | 970 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 971 | # ssh check | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 972 | function _ssh_check_neutron { | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 973 |     local from_net=$1 | 
 | 974 |     local key_file=$2 | 
 | 975 |     local ip=$3 | 
 | 976 |     local user=$4 | 
 | 977 |     local timeout_sec=$5 | 
 | 978 |     local probe_cmd = "" | 
 | 979 |     probe_cmd=`_get_probe_cmd_prefix $from_net` | 
| Sean Dague | 442e4e9 | 2015-06-24 13:24:02 -0400 | [diff] [blame] | 980 |     local testcmd="$probe_cmd ssh -o StrictHostKeyChecking=no -i $key_file ${user}@$ip echo success" | 
 | 981 |     test_with_retry "$testcmd" "server $ip didn't become ssh-able" $timeout_sec | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 982 | } | 
 | 983 |  | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 984 | # Restore xtrace | 
| Ian Wienand | 523f488 | 2015-10-13 11:03:03 +1100 | [diff] [blame] | 985 | $_XTRACE_NEUTRON | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 986 |  | 
| Adam Spiers | 6a5aa7c | 2013-10-24 11:27:02 +0100 | [diff] [blame] | 987 | # Tell emacs to use shell-script-mode | 
 | 988 | ## Local variables: | 
 | 989 | ## mode: shell-script | 
 | 990 | ## End: |