blob: e8f9aeb938f04aafa9cf754e1797ee15360d21a1 [file] [log] [blame]
Sean Daguee263c822014-12-05 14:25:28 -05001#!/bin/bash
2#
Mark McClainb05c8762013-07-06 23:29:39 -04003# lib/neutron
Joe Gordon23946052014-01-15 21:42:32 +00004# functions - functions specific to neutron
Mark McClainb05c8762013-07-06 23:29:39 -04005
6# Dependencies:
7# ``functions`` file
8# ``DEST`` must be defined
Stephan Renatuse578eff2013-11-19 13:31:04 +01009# ``STACK_USER`` must be defined
Mark McClainb05c8762013-07-06 23:29:39 -040010
11# ``stack.sh`` calls the entry points in this order:
12#
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010013# - install_neutron_agent_packages
YAMAMOTO Takashi1a669dc2015-02-05 11:54:12 +090014# - install_neutronclient
15# - install_neutron
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010016# - 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
23# - start_neutron_service_and_check
YAMAMOTO Takashi1a669dc2015-02-05 11:54:12 +090024# - check_neutron_third_party_integration
yunhong jiang0d6e9922014-10-10 06:12:47 -070025# - start_neutron_agents
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010026# - create_neutron_initial_network
27# - setup_neutron_debug
Mark McClainb05c8762013-07-06 23:29:39 -040028#
29# ``unstack.sh`` calls the entry points in this order:
30#
YAMAMOTO Takashi1a669dc2015-02-05 11:54:12 +090031# - teardown_neutron_debug
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010032# - stop_neutron
yunhong jiang0d6e9922014-10-10 06:12:47 -070033# - stop_neutron_third_party
34# - cleanup_neutron
Mark McClainb05c8762013-07-06 23:29:39 -040035
36# Functions in lib/neutron are classified into the following categories:
37#
38# - entry points (called from stack.sh or unstack.sh)
39# - internal functions
40# - neutron exercises
41# - 3rd party programs
42
43
44# Neutron Networking
45# ------------------
46
47# Make sure that neutron is enabled in ``ENABLED_SERVICES``. If you want
48# to run Neutron on this host, make sure that q-svc is also in
49# ``ENABLED_SERVICES``.
50#
Mark McClainb05c8762013-07-06 23:29:39 -040051# See "Neutron Network Configuration" below for additional variables
52# that must be set in localrc for connectivity across hosts with
53# Neutron.
54#
55# With Neutron networking the NETWORK_MANAGER variable is ignored.
Mark McClainb05c8762013-07-06 23:29:39 -040056
John Davidge21529a52014-06-30 09:55:11 -040057# Settings
58# --------
59
Mark McClainb05c8762013-07-06 23:29:39 -040060
61# Neutron Network Configuration
62# -----------------------------
63
Matthew Treinishabde96a2016-05-12 19:26:20 -040064deprecated "Using lib/neutron-legacy is deprecated, and it will be removed in the future"
Armando Migliaccio7dbcfae2016-02-19 14:43:42 -080065
Rob Crittenden18d47782014-03-19 17:47:42 -040066if is_ssl_enabled_service "neutron" || is_service_enabled tls-proxy; then
67 Q_PROTOCOL="https"
68fi
69
70
Mark McClainb05c8762013-07-06 23:29:39 -040071# Set up default directories
Sean Daguee08ab102014-11-13 17:09:28 -050072GITDIR["python-neutronclient"]=$DEST/python-neutronclient
Sean Dague5cb19062014-11-01 01:37:45 +010073
Doug Wiegley93e682c2015-03-03 10:31:30 -070074
Mark McClainb05c8762013-07-06 23:29:39 -040075NEUTRON_DIR=$DEST/neutron
Kyle Mestery20b839f2014-12-08 06:17:27 +000076NEUTRON_FWAAS_DIR=$DEST/neutron-fwaas
Mark McClainb05c8762013-07-06 23:29:39 -040077NEUTRON_AUTH_CACHE_DIR=${NEUTRON_AUTH_CACHE_DIR:-/var/cache/neutron}
78
79# Support entry points installation of console scripts
80if [[ -d $NEUTRON_DIR/bin/neutron-server ]]; then
81 NEUTRON_BIN_DIR=$NEUTRON_DIR/bin
Sean Dague3bdb9222013-10-22 08:36:16 -040082else
83 NEUTRON_BIN_DIR=$(get_python_exec_prefix)
Mark McClainb05c8762013-07-06 23:29:39 -040084fi
85
86NEUTRON_CONF_DIR=/etc/neutron
87NEUTRON_CONF=$NEUTRON_CONF_DIR/neutron.conf
88export NEUTRON_TEST_CONFIG_FILE=${NEUTRON_TEST_CONFIG_FILE:-"$NEUTRON_CONF_DIR/debug.ini"}
89
Adam Gandelman7614d212014-08-11 14:27:50 -070090# Agent binaries. Note, binary paths for other agents are set in per-service
91# scripts in lib/neutron_plugins/services/
92AGENT_DHCP_BINARY="$NEUTRON_BIN_DIR/neutron-dhcp-agent"
93AGENT_L3_BINARY=${AGENT_L3_BINARY:-"$NEUTRON_BIN_DIR/neutron-l3-agent"}
94AGENT_META_BINARY="$NEUTRON_BIN_DIR/neutron-metadata-agent"
95
96# Agent config files. Note, plugin-specific Q_PLUGIN_CONF_FILE is set and
97# loaded from per-plugin scripts in lib/neutron_plugins/
98Q_DHCP_CONF_FILE=$NEUTRON_CONF_DIR/dhcp_agent.ini
99Q_L3_CONF_FILE=$NEUTRON_CONF_DIR/l3_agent.ini
Adam Gandelman7614d212014-08-11 14:27:50 -0700100Q_META_CONF_FILE=$NEUTRON_CONF_DIR/metadata_agent.ini
101
Henry Gessau0fc1cc22014-07-06 22:54:34 -0400102# Default name for Neutron database
103Q_DB_NAME=${Q_DB_NAME:-neutron}
Mark McClainb05c8762013-07-06 23:29:39 -0400104# Default Neutron Plugin
Kyle Mestery6d235002013-09-18 20:27:08 +0000105Q_PLUGIN=${Q_PLUGIN:-ml2}
Mark McClainb05c8762013-07-06 23:29:39 -0400106# Default Neutron Port
107Q_PORT=${Q_PORT:-9696}
Rob Crittenden18d47782014-03-19 17:47:42 -0400108# Default Neutron Internal Port when using TLS proxy
109Q_PORT_INT=${Q_PORT_INT:-19696}
Mark McClainb05c8762013-07-06 23:29:39 -0400110# Default Neutron Host
111Q_HOST=${Q_HOST:-$SERVICE_HOST}
Rob Crittenden18d47782014-03-19 17:47:42 -0400112# Default protocol
113Q_PROTOCOL=${Q_PROTOCOL:-$SERVICE_PROTOCOL}
Brian Haley180f5eb2015-06-16 13:14:31 -0400114# Default listen address
115Q_LISTEN_ADDRESS=${Q_LISTEN_ADDRESS:-$SERVICE_LISTEN_ADDRESS}
Mark McClainb05c8762013-07-06 23:29:39 -0400116# Default admin username
117Q_ADMIN_USERNAME=${Q_ADMIN_USERNAME:-neutron}
118# Default auth strategy
119Q_AUTH_STRATEGY=${Q_AUTH_STRATEGY:-keystone}
Mark McClainb05c8762013-07-06 23:29:39 -0400120# RHEL's support for namespaces requires using veths with ovs
121Q_OVS_USE_VETH=${Q_OVS_USE_VETH:-False}
122Q_USE_ROOTWRAP=${Q_USE_ROOTWRAP:-True}
Yuriy Taraday26623952014-07-16 17:41:53 +0400123Q_USE_ROOTWRAP_DAEMON=$(trueorfalse True Q_USE_ROOTWRAP_DAEMON)
Mark McClainb05c8762013-07-06 23:29:39 -0400124# Meta data IP
125Q_META_DATA_IP=${Q_META_DATA_IP:-$SERVICE_HOST}
126# Allow Overlapping IP among subnets
127Q_ALLOW_OVERLAPPING_IP=${Q_ALLOW_OVERLAPPING_IP:-True}
Mark McClainb05c8762013-07-06 23:29:39 -0400128# The name of the default q-l3 router
129Q_ROUTER_NAME=${Q_ROUTER_NAME:-router1}
Terry Wilsonf06c4432014-05-20 10:54:51 -0500130Q_NOTIFY_NOVA_PORT_STATUS_CHANGES=${Q_NOTIFY_NOVA_PORT_STATUS_CHANGES:-True}
131Q_NOTIFY_NOVA_PORT_DATA_CHANGES=${Q_NOTIFY_NOVA_PORT_DATA_CHANGES:-True}
Aaron Rosencea32b12014-03-04 16:20:14 -0800132VIF_PLUGGING_IS_FATAL=${VIF_PLUGGING_IS_FATAL:-True}
133VIF_PLUGGING_TIMEOUT=${VIF_PLUGGING_TIMEOUT:-300}
Aaron Rosen4540d002013-10-24 13:59:33 -0700134
Mark McClainb05c8762013-07-06 23:29:39 -0400135# List of config file names in addition to the main plugin config file
136# See _configure_neutron_common() for details about setting it up
137declare -a Q_PLUGIN_EXTRA_CONF_FILES
138
Mark McClainb05c8762013-07-06 23:29:39 -0400139
Dean Troyere2907b42014-02-26 17:35:37 -0600140Q_RR_CONF_FILE=$NEUTRON_CONF_DIR/rootwrap.conf
141if [[ "$Q_USE_ROOTWRAP" == "False" ]]; then
142 Q_RR_COMMAND="sudo"
143else
144 NEUTRON_ROOTWRAP=$(get_rootwrap_location neutron)
145 Q_RR_COMMAND="sudo $NEUTRON_ROOTWRAP $Q_RR_CONF_FILE"
Yuriy Taraday26623952014-07-16 17:41:53 +0400146 if [[ "$Q_USE_ROOTWRAP_DAEMON" == "True" ]]; then
147 Q_RR_DAEMON_COMMAND="sudo $NEUTRON_ROOTWRAP-daemon $Q_RR_CONF_FILE"
148 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400149fi
150
Brian Haleyeea76212014-06-27 11:45:50 -0400151
152# Distributed Virtual Router (DVR) configuration
153# Can be:
Dean Troyer3324f192014-09-18 09:26:39 -0500154# - ``legacy`` - No DVR functionality
155# - ``dvr_snat`` - Controller or single node DVR
156# - ``dvr`` - Compute node in multi-node DVR
157#
Brian Haleyeea76212014-06-27 11:45:50 -0400158Q_DVR_MODE=${Q_DVR_MODE:-legacy}
159if [[ "$Q_DVR_MODE" != "legacy" ]]; then
160 Q_ML2_PLUGIN_MECHANISM_DRIVERS=openvswitch,linuxbridge,l2population
161fi
162
Dean Troyere2907b42014-02-26 17:35:37 -0600163# Provider Network Configurations
164# --------------------------------
165
YAMAMOTO Takashi15130cd2014-10-28 11:49:58 +0900166# The following variables control the Neutron ML2 plugins' allocation
167# of tenant networks and availability of provider networks. If these
168# are not configured in ``localrc``, tenant networks will be local to
169# the host (with no remote connectivity), and no physical resources
170# will be available for the allocation of provider networks.
Dean Troyere2907b42014-02-26 17:35:37 -0600171
Attila Fazekas8feaf6c2014-07-27 20:47:04 +0200172# To disable tunnels (GRE or VXLAN) for tenant networks,
173# set to False in ``local.conf``.
174# GRE tunnels are only supported by the openvswitch.
175ENABLE_TENANT_TUNNELS=${ENABLE_TENANT_TUNNELS:-True}
Dean Troyere2907b42014-02-26 17:35:37 -0600176
Richard Theis8906b482016-06-08 10:28:37 -0500177# If using GRE, VXLAN or GENEVE tunnels for tenant networks,
178# specify the range of IDs from which tenant networks are
179# allocated. Can be overridden in ``localrc`` if necessary.
Anant Patil3827dc02014-07-03 21:38:16 +0530180TENANT_TUNNEL_RANGES=${TENANT_TUNNEL_RANGES:-1:1000}
Dean Troyere2907b42014-02-26 17:35:37 -0600181
182# To use VLANs for tenant networks, set to True in localrc. VLANs
YAMAMOTO Takashi15130cd2014-10-28 11:49:58 +0900183# are supported by the ML2 plugins, requiring additional configuration
184# described below.
Dean Troyere2907b42014-02-26 17:35:37 -0600185ENABLE_TENANT_VLANS=${ENABLE_TENANT_VLANS:-False}
186
187# If using VLANs for tenant networks, set in ``localrc`` to specify
188# the range of VLAN VIDs from which tenant networks are
189# allocated. An external network switch must be configured to
190# trunk these VLANs between hosts for multi-host connectivity.
191#
192# Example: ``TENANT_VLAN_RANGE=1000:1999``
193TENANT_VLAN_RANGE=${TENANT_VLAN_RANGE:-}
194
195# If using VLANs for tenant networks, or if using flat or VLAN
196# provider networks, set in ``localrc`` to the name of the physical
197# network, and also configure ``OVS_PHYSICAL_BRIDGE`` for the
198# openvswitch agent or ``LB_PHYSICAL_INTERFACE`` for the linuxbridge
199# agent, as described below.
200#
201# Example: ``PHYSICAL_NETWORK=default``
Kevin Benton7da968a2016-07-22 06:02:22 +0000202PHYSICAL_NETWORK=${PHYSICAL_NETWORK:-}
Dean Troyere2907b42014-02-26 17:35:37 -0600203
YAMAMOTO Takashi15130cd2014-10-28 11:49:58 +0900204# With the openvswitch agent, if using VLANs for tenant networks,
Dean Troyere2907b42014-02-26 17:35:37 -0600205# or if using flat or VLAN provider networks, set in ``localrc`` to
206# the name of the OVS bridge to use for the physical network. The
207# bridge will be created if it does not already exist, but a
208# physical interface must be manually added to the bridge as a
209# port for external connectivity.
210#
211# Example: ``OVS_PHYSICAL_BRIDGE=br-eth1``
Kevin Benton7da968a2016-07-22 06:02:22 +0000212OVS_PHYSICAL_BRIDGE=${OVS_PHYSICAL_BRIDGE:-}
Dean Troyere2907b42014-02-26 17:35:37 -0600213
YAMAMOTO Takashi15130cd2014-10-28 11:49:58 +0900214# With the linuxbridge agent, if using VLANs for tenant networks,
Dean Troyere2907b42014-02-26 17:35:37 -0600215# or if using flat or VLAN provider networks, set in ``localrc`` to
216# the name of the network interface to use for the physical
217# network.
218#
219# Example: ``LB_PHYSICAL_INTERFACE=eth1``
220LB_PHYSICAL_INTERFACE=${LB_PHYSICAL_INTERFACE:-}
221
Edgar Magana6f335b92014-07-10 15:42:44 -0700222# When Neutron tunnels are enabled it is needed to specify the
223# IP address of the end point in the local server. This IP is set
224# by default to the same IP address that the HOST IP.
225# This variable can be used to specify a different end point IP address
226# Example: ``TUNNEL_ENDPOINT_IP=1.1.1.1``
227TUNNEL_ENDPOINT_IP=${TUNNEL_ENDPOINT_IP:-$HOST_IP}
228
Dean Troyere2907b42014-02-26 17:35:37 -0600229# With the openvswitch plugin, set to True in ``localrc`` to enable
230# provider GRE tunnels when ``ENABLE_TENANT_TUNNELS`` is False.
231#
232# Example: ``OVS_ENABLE_TUNNELING=True``
233OVS_ENABLE_TUNNELING=${OVS_ENABLE_TUNNELING:-$ENABLE_TENANT_TUNNELS}
234
Tan Lin27a196e2014-10-31 15:44:34 +0800235# Use DHCP agent for providing metadata service in the case of
236# without L3 agent (No Route Agent), set to True in localrc.
237ENABLE_ISOLATED_METADATA=${ENABLE_ISOLATED_METADATA:-False}
238
239# Add a static route as dhcp option, so the request to 169.254.169.254
240# will be able to reach through a route(DHCP agent)
241# This option require ENABLE_ISOLATED_METADATA = True
242ENABLE_METADATA_NETWORK=${ENABLE_METADATA_NETWORK:-False}
Mark McClainb05c8762013-07-06 23:29:39 -0400243# Neutron plugin specific functions
244# ---------------------------------
245
246# Please refer to ``lib/neutron_plugins/README.md`` for details.
Hirofumi Ichihara36daecd2015-07-23 17:50:40 +0900247if [ -f $TOP_DIR/lib/neutron_plugins/$Q_PLUGIN ]; then
248 source $TOP_DIR/lib/neutron_plugins/$Q_PLUGIN
249fi
Mark McClainb05c8762013-07-06 23:29:39 -0400250
Emilien Macchi40546f72013-09-24 15:10:25 +0200251# Agent metering service plugin functions
252# -------------------------------------------
253
254# Hardcoding for 1 service plugin for now
255source $TOP_DIR/lib/neutron_plugins/services/metering
256
Sean M. Collins2a242512016-05-03 09:03:09 -0400257# L3 Service functions
258source $TOP_DIR/lib/neutron_plugins/services/l3
Mark McClainb05c8762013-07-06 23:29:39 -0400259# Use security group or not
260if has_neutron_plugin_security_group; then
261 Q_USE_SECGROUP=${Q_USE_SECGROUP:-True}
262else
263 Q_USE_SECGROUP=False
264fi
265
Dean Troyere2907b42014-02-26 17:35:37 -0600266# Save trace setting
Ian Wienand523f4882015-10-13 11:03:03 +1100267_XTRACE_NEUTRON=$(set +o | grep xtrace)
Dean Troyere2907b42014-02-26 17:35:37 -0600268set +o xtrace
269
270
Mark McClainb05c8762013-07-06 23:29:39 -0400271# Functions
272# ---------
273
Adam Gandelman7614d212014-08-11 14:27:50 -0700274function _determine_config_server {
275 local cfg_file
276 local opts="--config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE"
277 for cfg_file in ${Q_PLUGIN_EXTRA_CONF_FILES[@]}; do
Tom Patzig73467042016-04-19 17:02:34 +0200278 opts+=" --config-file $cfg_file"
Adam Gandelman7614d212014-08-11 14:27:50 -0700279 done
280 echo "$opts"
281}
282
Adam Gandelman7614d212014-08-11 14:27:50 -0700283function _determine_config_l3 {
Angus Leesa1c70f22016-05-31 14:43:14 +1000284 local opts="--config-file $NEUTRON_CONF --config-file $Q_L3_CONF_FILE"
Adam Gandelman7614d212014-08-11 14:27:50 -0700285 echo "$opts"
286}
287
288# For services and agents that require it, dynamically construct a list of
289# --config-file arguments that are passed to the binary.
290function determine_config_files {
291 local opts=""
292 case "$1" in
293 "neutron-server") opts="$(_determine_config_server)" ;;
Adam Gandelman7614d212014-08-11 14:27:50 -0700294 "neutron-l3-agent") opts="$(_determine_config_l3)" ;;
295 esac
296 if [ -z "$opts" ] ; then
297 die $LINENO "Could not determine config files for $1."
298 fi
299 echo "$opts"
300}
301
Sean M. Collins2a242512016-05-03 09:03:09 -0400302# configure_mutnauq()
Mark McClainb05c8762013-07-06 23:29:39 -0400303# Set common config for all neutron server and agents.
Sean M. Collins2a242512016-05-03 09:03:09 -0400304function configure_mutnauq {
Mark McClainb05c8762013-07-06 23:29:39 -0400305 _configure_neutron_common
Brant Knudson2dd110c2015-03-14 12:39:14 -0500306 iniset_rpc_backend neutron $NEUTRON_CONF
Mark McClainb05c8762013-07-06 23:29:39 -0400307
308 # goes before q-svc to init Q_SERVICE_PLUGIN_CLASSES
Emilien Macchi40546f72013-09-24 15:10:25 +0200309 if is_service_enabled q-metering; then
310 _configure_neutron_metering
311 fi
Stephen Ma9b38eb22014-04-02 02:13:09 +0000312 if is_service_enabled q-agt q-svc; then
Mark McClainb05c8762013-07-06 23:29:39 -0400313 _configure_neutron_service
314 fi
315 if is_service_enabled q-agt; then
316 _configure_neutron_plugin_agent
317 fi
318 if is_service_enabled q-dhcp; then
319 _configure_neutron_dhcp_agent
320 fi
321 if is_service_enabled q-l3; then
322 _configure_neutron_l3_agent
323 fi
324 if is_service_enabled q-meta; then
325 _configure_neutron_metadata_agent
326 fi
327
Brian Haleyeea76212014-06-27 11:45:50 -0400328 if [[ "$Q_DVR_MODE" != "legacy" ]]; then
329 _configure_dvr
330 fi
Dina Belova58adaa62014-07-11 18:18:12 +0400331 if is_service_enabled ceilometer; then
332 _configure_neutron_ceilometer_notifications
333 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400334
armando-migliaccioe155b892015-06-12 08:55:02 -0700335 iniset $NEUTRON_CONF DEFAULT api_workers "$API_WORKERS"
Mark McClainb05c8762013-07-06 23:29:39 -0400336}
337
Ian Wienandaee18c72014-02-21 15:35:08 +1100338function create_nova_conf_neutron {
Sean Daguef21cc1f2016-03-04 11:08:32 -0500339 iniset $NOVA_CONF DEFAULT use_neutron True
Matthew Kassawara28af7962016-02-10 19:04:08 +0000340 iniset $NOVA_CONF neutron auth_type "password"
Brant Knudsone86b91b2016-05-03 15:21:47 -0500341 iniset $NOVA_CONF neutron auth_url "$KEYSTONE_AUTH_URI/v3"
Jamie Lennox394968f2015-08-28 09:18:26 +1000342 iniset $NOVA_CONF neutron username "$Q_ADMIN_USERNAME"
343 iniset $NOVA_CONF neutron password "$SERVICE_PASSWORD"
Jamie Lennoxcbcbd8f2016-01-21 16:08:14 -0600344 iniset $NOVA_CONF neutron user_domain_name "$SERVICE_DOMAIN_NAME"
Sean Dague7580a0c2016-02-17 06:23:36 -0500345 iniset $NOVA_CONF neutron project_name "$SERVICE_PROJECT_NAME"
Jamie Lennoxcbcbd8f2016-01-21 16:08:14 -0600346 iniset $NOVA_CONF neutron project_domain_name "$SERVICE_DOMAIN_NAME"
Gary Kotton13d385e2014-06-17 23:24:53 -0700347 iniset $NOVA_CONF neutron auth_strategy "$Q_AUTH_STRATEGY"
Bartosz Górski0abde392014-02-28 14:15:19 +0100348 iniset $NOVA_CONF neutron region_name "$REGION_NAME"
Rob Crittenden18d47782014-03-19 17:47:42 -0400349 iniset $NOVA_CONF neutron url "${Q_PROTOCOL}://$Q_HOST:$Q_PORT"
Mark McClainb05c8762013-07-06 23:29:39 -0400350
351 if [[ "$Q_USE_SECGROUP" == "True" ]]; then
352 LIBVIRT_FIREWALL_DRIVER=nova.virt.firewall.NoopFirewallDriver
Jeff Peeler1143f7e2013-10-31 16:21:52 -0400353 iniset $NOVA_CONF DEFAULT firewall_driver $LIBVIRT_FIREWALL_DRIVER
Mark McClainb05c8762013-07-06 23:29:39 -0400354 fi
355
Matt Riedemann925c2562015-08-25 13:40:25 -0700356 # optionally set options in nova_conf
Mark McClainb05c8762013-07-06 23:29:39 -0400357 neutron_plugin_create_nova_conf
358
Mark McClainb05c8762013-07-06 23:29:39 -0400359 if is_service_enabled q-meta; then
Gary Kottondd745502014-08-11 23:38:47 -0700360 iniset $NOVA_CONF neutron service_metadata_proxy "True"
Mark McClainb05c8762013-07-06 23:29:39 -0400361 fi
Aaron Rosencea32b12014-03-04 16:20:14 -0800362
363 iniset $NOVA_CONF DEFAULT vif_plugging_is_fatal "$VIF_PLUGGING_IS_FATAL"
364 iniset $NOVA_CONF DEFAULT vif_plugging_timeout "$VIF_PLUGGING_TIMEOUT"
Mark McClainb05c8762013-07-06 23:29:39 -0400365}
366
Sean M. Collins2a242512016-05-03 09:03:09 -0400367# create_mutnauq_accounts() - Set up common required neutron accounts
Mark McClainb05c8762013-07-06 23:29:39 -0400368
369# Tenant User Roles
370# ------------------------------------------------------------------
371# service neutron admin # if enabled
372
373# Migrated from keystone_data.sh
Sean M. Collins2a242512016-05-03 09:03:09 -0400374function create_mutnauq_accounts {
Mark McClainb05c8762013-07-06 23:29:39 -0400375 if [[ "$ENABLED_SERVICES" =~ "q-svc" ]]; then
Bartosz Górski0abde392014-02-28 14:15:19 +0100376
Jamie Lennox85ff5322015-01-28 14:28:01 +1000377 create_service_user "neutron"
Bartosz Górski0abde392014-02-28 14:15:19 +0100378
Sean Dague985e9582016-02-10 07:25:24 -0500379 get_or_create_service "neutron" "network" "Neutron Service"
Matt Riedemannae4578b2016-04-23 01:45:40 +0000380 get_or_create_endpoint \
Sean Dague985e9582016-02-10 07:25:24 -0500381 "network" \
382 "$REGION_NAME" \
383 "$Q_PROTOCOL://$SERVICE_HOST:$Q_PORT/" \
384 "$Q_PROTOCOL://$SERVICE_HOST:$Q_PORT/" \
385 "$Q_PROTOCOL://$SERVICE_HOST:$Q_PORT/"
Mark McClainb05c8762013-07-06 23:29:39 -0400386 fi
387}
388
Sean M. Collins2a242512016-05-03 09:03:09 -0400389# init_mutnauq() - Initialize databases, etc.
390function init_mutnauq {
Ihar Hrachyshka157c84b2014-10-06 13:29:39 +0200391 recreate_database $Q_DB_NAME
Salvatore Orlandodd649882013-08-05 08:56:17 -0700392 # Run Neutron db migrations
393 $NEUTRON_BIN_DIR/neutron-db-manage --config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE upgrade head
Mark McClainb05c8762013-07-06 23:29:39 -0400394}
395
Sean M. Collins2a242512016-05-03 09:03:09 -0400396# install_mutnauq() - Collect source and prepare
397function install_mutnauq {
Doug Wiegley86561c32016-02-10 18:37:21 -0700398 # Install neutron-lib from git so we make sure we're testing
399 # the latest code.
400 if use_library_from_git "neutron-lib"; then
401 git_clone_by_name "neutron-lib"
402 setup_dev_lib "neutron-lib"
403 fi
404
Mark McClainb05c8762013-07-06 23:29:39 -0400405 git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH
406 setup_develop $NEUTRON_DIR
Mate Lakat6df64892014-10-17 13:09:49 +0200407
408 if [ "$VIRT_DRIVER" == 'xenserver' ]; then
409 local dom0_ip
410 dom0_ip=$(echo "$XENAPI_CONNECTION_URL" | cut -d "/" -f 3-)
411
412 local ssh_dom0
413 ssh_dom0="sudo -u $DOMZERO_USER ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null root@$dom0_ip"
414
415 # Find where the plugins should go in dom0
416 local xen_functions
417 xen_functions=$(cat $TOP_DIR/tools/xen/functions)
418 local plugin_dir
419 plugin_dir=$($ssh_dom0 "$xen_functions; set -eux; xapi_plugin_location")
420
421 # install neutron plugins to dom0
Huan Xie201e3c12015-08-27 12:34:24 +0100422 tar -czf - -C $NEUTRON_DIR/neutron/plugins/ml2/drivers/openvswitch/agent/xenapi/etc/xapi.d/plugins/ ./ |
Mate Lakat6df64892014-10-17 13:09:49 +0200423 $ssh_dom0 "tar -xzf - -C $plugin_dir && chmod a+x $plugin_dir/*"
424 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400425}
426
Mark McClainb05c8762013-07-06 23:29:39 -0400427# install_neutron_agent_packages() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100428function install_neutron_agent_packages {
Robert Li72b3e442014-07-17 15:04:52 -0400429 # radvd doesn't come with the OS. Install it if the l3 service is enabled.
430 if is_service_enabled q-l3; then
431 install_package radvd
432 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400433 # install packages that are specific to plugin agent(s)
434 if is_service_enabled q-agt q-dhcp q-l3; then
435 neutron_plugin_install_agent_packages
436 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400437}
438
439# Start running processes, including screen
Ian Wienandaee18c72014-02-21 15:35:08 +1100440function start_neutron_service_and_check {
Rob Crittenden18d47782014-03-19 17:47:42 -0400441 local service_port=$Q_PORT
442 local service_protocol=$Q_PROTOCOL
Ian Wienand7ae97292016-02-16 14:50:53 +1100443 local cfg_file_options
444
445 cfg_file_options="$(determine_config_files neutron-server)"
446
Rob Crittenden18d47782014-03-19 17:47:42 -0400447 if is_service_enabled tls-proxy; then
448 service_port=$Q_PORT_INT
449 service_protocol="http"
450 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400451 # Start the Neutron service
Davanum Srinivas59756e92015-09-23 17:42:54 -0400452 run_process q-svc "$NEUTRON_BIN_DIR/neutron-server $cfg_file_options"
Mark McClainb05c8762013-07-06 23:29:39 -0400453 echo "Waiting for Neutron to start..."
Rob Crittenden18d47782014-03-19 17:47:42 -0400454 if is_ssl_enabled_service "neutron"; then
455 ssl_ca="--ca-certificate=${SSL_BUNDLE_FILE}"
456 fi
Sean Dague442e4e92015-06-24 13:24:02 -0400457
458 local testcmd="wget ${ssl_ca} --no-proxy -q -O- $service_protocol://$Q_HOST:$service_port"
459 test_with_retry "$testcmd" "Neutron did not start" $SERVICE_TIMEOUT
460
Rob Crittenden18d47782014-03-19 17:47:42 -0400461 # Start proxy if enabled
462 if is_service_enabled tls-proxy; then
463 start_tls_proxy '*' $Q_PORT $Q_HOST $Q_PORT_INT &
464 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400465}
466
Russell Bryant09b94602015-06-08 15:25:43 -0400467# Control of the l2 agent is separated out to make it easier to test partial
468# upgrades (everything upgraded except the L2 agent)
Sean M. Collins2a242512016-05-03 09:03:09 -0400469function start_mutnauq_l2_agent {
Davanum Srinivas59756e92015-09-23 17:42:54 -0400470 run_process q-agt "$AGENT_BINARY --config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE"
Nachi Ueno584750f2013-07-15 18:22:21 -0700471
Kahou Leid663e292015-10-24 12:18:57 -0700472 if is_provider_network && [[ $Q_AGENT == "openvswitch" ]]; then
Zhongyue Luo56b7efb2014-12-16 11:36:49 +0800473 sudo ovs-vsctl --no-wait -- --may-exist add-port $OVS_PHYSICAL_BRIDGE $PUBLIC_INTERFACE
Sean M. Collins5ec6f8f2014-05-14 17:01:03 -0400474 sudo ip link set $OVS_PHYSICAL_BRIDGE up
475 sudo ip link set br-int up
476 sudo ip link set $PUBLIC_INTERFACE up
yunhong jiangae9ee6b2014-10-08 07:01:02 -0700477 if is_ironic_hardware; then
478 for IP in $(ip addr show dev $PUBLIC_INTERFACE | grep ' inet ' | awk '{print $2}'); do
479 sudo ip addr del $IP dev $PUBLIC_INTERFACE
480 sudo ip addr add $IP dev $OVS_PHYSICAL_BRIDGE
481 done
gong yong sheng348c6ac2015-06-23 14:03:47 +0800482 sudo ip route replace $FIXED_RANGE via $NETWORK_GATEWAY dev $OVS_PHYSICAL_BRIDGE
yunhong jiangae9ee6b2014-10-08 07:01:02 -0700483 fi
Sean M. Collins5ec6f8f2014-05-14 17:01:03 -0400484 fi
Russell Bryant09b94602015-06-08 15:25:43 -0400485}
486
Sean M. Collins2a242512016-05-03 09:03:09 -0400487function start_mutnauq_other_agents {
Angus Leesa1c70f22016-05-31 14:43:14 +1000488 run_process q-dhcp "$AGENT_DHCP_BINARY --config-file $NEUTRON_CONF --config-file $Q_DHCP_CONF_FILE"
Sean M. Collins5ec6f8f2014-05-14 17:01:03 -0400489
Paul Michalie4289c82015-08-14 11:49:27 -0400490 if is_service_enabled neutron-vpnaas; then
491 : # Started by plugin
Ravi Chunduru95c93e22013-07-16 04:18:47 -0700492 else
Davanum Srinivas59756e92015-09-23 17:42:54 -0400493 run_process q-l3 "$AGENT_L3_BINARY $(determine_config_files neutron-l3-agent)"
Ravi Chunduru95c93e22013-07-16 04:18:47 -0700494 fi
495
Angus Leesa1c70f22016-05-31 14:43:14 +1000496 run_process q-meta "$AGENT_META_BINARY --config-file $NEUTRON_CONF --config-file $Q_META_CONF_FILE"
Davanum Srinivas59756e92015-09-23 17:42:54 -0400497 run_process q-metering "$AGENT_METERING_BINARY --config-file $NEUTRON_CONF --config-file $METERING_AGENT_CONF_FILENAME"
Mark McClainb05c8762013-07-06 23:29:39 -0400498
499 if [ "$VIRT_DRIVER" = 'xenserver' ]; then
500 # For XenServer, start an agent for the domU openvswitch
Davanum Srinivas59756e92015-09-23 17:42:54 -0400501 run_process q-domua "$AGENT_BINARY --config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE.domU"
Mark McClainb05c8762013-07-06 23:29:39 -0400502 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400503}
504
Russell Bryant09b94602015-06-08 15:25:43 -0400505# Start running processes, including screen
506function start_neutron_agents {
507 # Start up the neutron agents if enabled
Sean M. Collins2a242512016-05-03 09:03:09 -0400508 start_mutnauq_l2_agent
509 start_mutnauq_other_agents
Russell Bryant09b94602015-06-08 15:25:43 -0400510}
511
Sean M. Collins2a242512016-05-03 09:03:09 -0400512function stop_mutnauq_l2_agent {
Russell Bryant09b94602015-06-08 15:25:43 -0400513 stop_process q-agt
514}
515
Sean M. Collins2a242512016-05-03 09:03:09 -0400516# stop_mutnauq_other() - Stop running processes (non-screen)
517function stop_mutnauq_other {
Mark McClainb05c8762013-07-06 23:29:39 -0400518 if is_service_enabled q-dhcp; then
Chris Dent36891dc2015-02-03 16:22:44 +0000519 stop_process q-dhcp
Mark McClainb05c8762013-07-06 23:29:39 -0400520 pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }')
521 [ ! -z "$pid" ] && sudo kill -9 $pid
522 fi
Chris Dent36891dc2015-02-03 16:22:44 +0000523
524 stop_process q-svc
Li Maa15d9de2016-01-19 19:11:51 +0800525
526 if is_service_enabled q-l3; then
527 sudo pkill -f "radvd -C $DATA_DIR/neutron/ra"
528 stop_process q-l3
529 fi
Chris Dent36891dc2015-02-03 16:22:44 +0000530
Mark McClainb05c8762013-07-06 23:29:39 -0400531 if is_service_enabled q-meta; then
Jakub Libosvar1f763282014-01-28 23:01:38 +0100532 sudo pkill -9 -f neutron-ns-metadata-proxy || :
Chris Dent36891dc2015-02-03 16:22:44 +0000533 stop_process q-meta
Mark McClainb05c8762013-07-06 23:29:39 -0400534 fi
Akihiro Motokiedddb1f2013-12-09 20:21:06 +0900535
Akihiro Motokiedddb1f2013-12-09 20:21:06 +0900536 if is_service_enabled q-metering; then
537 neutron_metering_stop
538 fi
Li Ma50120fa2015-12-13 10:41:34 +0800539
540 if [[ "$Q_USE_ROOTWRAP_DAEMON" == "True" ]]; then
541 sudo pkill -9 -f $NEUTRON_ROOTWRAP-daemon || :
542 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400543}
544
Russell Bryant09b94602015-06-08 15:25:43 -0400545# stop_neutron() - Stop running processes (non-screen)
Sean M. Collins2a242512016-05-03 09:03:09 -0400546function stop_mutnauq {
547 stop_mutnauq_other
548 stop_mutnauq_l2_agent
Russell Bryant09b94602015-06-08 15:25:43 -0400549}
550
Sean M. Collins00e16a92015-02-20 11:45:21 -0500551# _move_neutron_addresses_route() - Move the primary IP to the OVS bridge
Adam Kacmarsky6b172c82015-08-13 15:14:05 -0600552# on startup, or back to the public interface on cleanup. If no IP is
553# configured on the interface, just add it as a port to the OVS bridge.
Sean M. Collins00e16a92015-02-20 11:45:21 -0500554function _move_neutron_addresses_route {
555 local from_intf=$1
556 local to_intf=$2
557 local add_ovs_port=$3
Brian Haleya0d1b012015-11-16 17:30:48 -0500558 local del_ovs_port=$4
559 local af=$5
Sean M. Collins00e16a92015-02-20 11:45:21 -0500560
561 if [[ -n "$from_intf" && -n "$to_intf" ]]; then
562 # Remove the primary IP address from $from_intf and add it to $to_intf,
563 # along with the default route, if it exists. Also, when called
564 # on configure we will also add $from_intf as a port on $to_intf,
565 # assuming it is an OVS bridge.
566
Matt McEuene24707b2016-07-11 08:37:59 -0500567 local IP_REPLACE=""
Adam Kacmarsky6b172c82015-08-13 15:14:05 -0600568 local IP_DEL=""
Shinobu KINJOf95315b2015-11-07 10:21:08 +0900569 local IP_UP=""
Ian Wienandada886d2015-10-07 14:06:26 +1100570 local DEFAULT_ROUTE_GW
Sean M. Collins59e86a32015-11-09 11:06:39 -0500571 DEFAULT_ROUTE_GW=$(ip -f $af r | awk "/default.+$from_intf/ { print \$3; exit }")
Sean M. Collins00e16a92015-02-20 11:45:21 -0500572 local ADD_OVS_PORT=""
Brian Haleya0d1b012015-11-16 17:30:48 -0500573 local DEL_OVS_PORT=""
Sean M. Collins17398a32016-05-11 18:24:46 +0000574 local ARP_CMD=""
Sean M. Collins00e16a92015-02-20 11:45:21 -0500575
Brian Haleybb9caea2015-11-16 17:18:42 -0500576 IP_BRD=$(ip -f $af a s dev $from_intf scope global primary | grep inet | awk '{ print $2, $3, $4; exit }')
Adam Kacmarsky11298a02015-06-26 14:49:47 -0600577
Sean M. Collins00e16a92015-02-20 11:45:21 -0500578 if [ "$DEFAULT_ROUTE_GW" != "" ]; then
Sean M. Collins59e86a32015-11-09 11:06:39 -0500579 ADD_DEFAULT_ROUTE="sudo ip -f $af r replace default via $DEFAULT_ROUTE_GW dev $to_intf"
Sean M. Collins00e16a92015-02-20 11:45:21 -0500580 fi
581
582 if [[ "$add_ovs_port" == "True" ]]; then
Raman Budnydb02bbf2015-03-31 13:09:09 +0300583 ADD_OVS_PORT="sudo ovs-vsctl --may-exist add-port $to_intf $from_intf"
Sean M. Collins00e16a92015-02-20 11:45:21 -0500584 fi
585
Brian Haleya0d1b012015-11-16 17:30:48 -0500586 if [[ "$del_ovs_port" == "True" ]]; then
587 DEL_OVS_PORT="sudo ovs-vsctl --if-exists del-port $from_intf $to_intf"
588 fi
589
Adam Kacmarsky6b172c82015-08-13 15:14:05 -0600590 if [[ "$IP_BRD" != "" ]]; then
Brian Haley94510212015-09-02 15:40:04 -0400591 IP_DEL="sudo ip addr del $IP_BRD dev $from_intf"
Matt McEuene24707b2016-07-11 08:37:59 -0500592 IP_REPLACE="sudo ip addr replace $IP_BRD dev $to_intf"
Shinobu KINJOf95315b2015-11-07 10:21:08 +0900593 IP_UP="sudo ip link set $to_intf up"
Sean M. Collins6d4843e2016-05-12 16:14:26 -0400594 if [[ "$af" == "inet" ]]; then
595 IP=$(echo $IP_BRD | awk '{ print $1; exit }' | grep -o -E '(.*)/' | cut -d "/" -f1)
596 ARP_CMD="arping -A -c 3 -w 4.5 -I $to_intf $IP "
597 fi
Adam Kacmarsky6b172c82015-08-13 15:14:05 -0600598 fi
599
Brian Haleya0d1b012015-11-16 17:30:48 -0500600 # The add/del OVS port calls have to happen either before or
601 # after the address is moved in order to not leave it orphaned.
Matt McEuene24707b2016-07-11 08:37:59 -0500602 $DEL_OVS_PORT; $IP_DEL; $IP_REPLACE; $IP_UP; $ADD_OVS_PORT; $ADD_DEFAULT_ROUTE; $ARP_CMD
Sean M. Collins00e16a92015-02-20 11:45:21 -0500603 fi
604}
605
Sean M. Collins2a242512016-05-03 09:03:09 -0400606# cleanup_mutnauq() - Remove residual data files, anything left over from previous
Mark McClainb05c8762013-07-06 23:29:39 -0400607# runs that a clean run would need to clean up
Sean M. Collins2a242512016-05-03 09:03:09 -0400608function cleanup_mutnauq {
Sean M. Collins00e16a92015-02-20 11:45:21 -0500609
Yalei Wang316b3482015-07-15 21:00:31 +0800610 if [[ -n "$OVS_PHYSICAL_BRIDGE" ]]; then
Brian Haleya0d1b012015-11-16 17:30:48 -0500611 _move_neutron_addresses_route "$OVS_PHYSICAL_BRIDGE" "$PUBLIC_INTERFACE" False True "inet"
Adam Kacmarsky11298a02015-06-26 14:49:47 -0600612
Yalei Wang316b3482015-07-15 21:00:31 +0800613 if [[ $(ip -f inet6 a s dev "$OVS_PHYSICAL_BRIDGE" | grep -c 'global') != 0 ]]; then
Sean M. Collins790266f2015-11-11 13:36:35 -0500614 # ip(8) wants the prefix length when deleting
615 local v6_gateway
616 v6_gateway=$(ip -6 a s dev $OVS_PHYSICAL_BRIDGE | grep $IPV6_PUBLIC_NETWORK_GATEWAY | awk '{ print $2 }')
617 sudo ip -6 addr del $v6_gateway dev $OVS_PHYSICAL_BRIDGE
Brian Haleya0d1b012015-11-16 17:30:48 -0500618 _move_neutron_addresses_route "$OVS_PHYSICAL_BRIDGE" "$PUBLIC_INTERFACE" False False "inet6"
Yalei Wang316b3482015-07-15 21:00:31 +0800619 fi
Sean M. Collins00e16a92015-02-20 11:45:21 -0500620
Yalei Wang316b3482015-07-15 21:00:31 +0800621 if is_provider_network && is_ironic_hardware; then
622 for IP in $(ip addr show dev $OVS_PHYSICAL_BRIDGE | grep ' inet ' | awk '{print $2}'); do
623 sudo ip addr del $IP dev $OVS_PHYSICAL_BRIDGE
624 sudo ip addr add $IP dev $PUBLIC_INTERFACE
625 done
626 sudo route del -net $FIXED_RANGE gw $NETWORK_GATEWAY dev $OVS_PHYSICAL_BRIDGE
627 fi
yunhong jiangae9ee6b2014-10-08 07:01:02 -0700628 fi
629
Mark McClainb05c8762013-07-06 23:29:39 -0400630 if is_neutron_ovs_base_plugin; then
631 neutron_ovs_base_cleanup
632 fi
633
Sean M. Collins7bc2af72015-06-08 12:36:30 -0400634 if [[ $Q_AGENT == "linuxbridge" ]]; then
635 neutron_lb_cleanup
636 fi
637
Mark McClainb05c8762013-07-06 23:29:39 -0400638 # delete all namespaces created by neutron
Doug Wiegley7e40c642016-08-20 16:32:14 +0000639 for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|fip|snat)-[0-9a-f-]*'); do
Mark McClainb05c8762013-07-06 23:29:39 -0400640 sudo ip netns delete ${ns}
641 done
642}
643
Doug Wiegley93e682c2015-03-03 10:31:30 -0700644
Maru Newby952fd902015-01-30 22:27:12 +0000645function _create_neutron_conf_dir {
Mark McClainb05c8762013-07-06 23:29:39 -0400646 # Put config files in ``NEUTRON_CONF_DIR`` for everyone to find
Dean Troyer8421c2b2015-03-16 13:52:19 -0500647 sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR
Maru Newby952fd902015-01-30 22:27:12 +0000648}
649
650# _configure_neutron_common()
651# Set common config for all neutron server and agents.
652# This MUST be called before other ``_configure_neutron_*`` functions.
653function _configure_neutron_common {
654 _create_neutron_conf_dir
Mark McClainb05c8762013-07-06 23:29:39 -0400655
Martin Hickey30d5fae2015-11-10 13:44:15 +0000656 # Uses oslo config generator to generate core sample configuration files
657 (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh)
658
659 cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF
Mark McClainb05c8762013-07-06 23:29:39 -0400660
Jerry Zhao296c1e32015-08-07 20:43:54 -0400661 Q_POLICY_FILE=$NEUTRON_CONF_DIR/policy.json
662 cp $NEUTRON_DIR/etc/policy.json $Q_POLICY_FILE
663
664 # allow neutron user to administer neutron to match neutron account
665 sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:neutron"/g' $Q_POLICY_FILE
666
Mark McClainb05c8762013-07-06 23:29:39 -0400667 # Set plugin-specific variables ``Q_DB_NAME``, ``Q_PLUGIN_CLASS``.
668 # For main plugin config file, set ``Q_PLUGIN_CONF_PATH``, ``Q_PLUGIN_CONF_FILENAME``.
Tom Patzig67223b02016-04-19 16:43:05 +0200669 # For additional plugin config files, set ``Q_PLUGIN_EXTRA_CONF_PATH`` and
Mark McClainb05c8762013-07-06 23:29:39 -0400670 # ``Q_PLUGIN_EXTRA_CONF_FILES``. For example:
Adam Spierscb961592013-10-05 12:11:07 +0100671 #
Tom Patzig67223b02016-04-19 16:43:05 +0200672 # ``Q_PLUGIN_EXTRA_CONF_PATH=/path/to/plugins``
Boden R82bca442016-04-15 10:56:09 -0600673 # ``Q_PLUGIN_EXTRA_CONF_FILES=(file1 file2)``
Mark McClainb05c8762013-07-06 23:29:39 -0400674 neutron_plugin_configure_common
675
sbauzae2c4ee22013-08-29 17:29:46 +0200676 if [[ "$Q_PLUGIN_CONF_PATH" == '' || "$Q_PLUGIN_CONF_FILENAME" == '' || "$Q_PLUGIN_CLASS" == '' ]]; then
Mark McClainb05c8762013-07-06 23:29:39 -0400677 die $LINENO "Neutron plugin not set.. exiting"
678 fi
679
680 # If needed, move config file from ``$NEUTRON_DIR/etc/neutron`` to ``NEUTRON_CONF_DIR``
681 mkdir -p /$Q_PLUGIN_CONF_PATH
682 Q_PLUGIN_CONF_FILE=$Q_PLUGIN_CONF_PATH/$Q_PLUGIN_CONF_FILENAME
Hirofumi Ichihara97cc85b2015-09-08 13:51:01 +0900683 # NOTE(hichihara): Some neutron vendor plugins were already decomposed and
684 # there is no config file in Neutron tree. They should prepare the file in each plugin.
Martin Hickey30d5fae2015-11-10 13:44:15 +0000685 if [ -f "$NEUTRON_DIR/$Q_PLUGIN_CONF_FILE.sample" ]; then
686 cp "$NEUTRON_DIR/$Q_PLUGIN_CONF_FILE.sample" /$Q_PLUGIN_CONF_FILE
687 elif [ -f $NEUTRON_DIR/$Q_PLUGIN_CONF_FILE ]; then
Hirofumi Ichihara97cc85b2015-09-08 13:51:01 +0900688 cp $NEUTRON_DIR/$Q_PLUGIN_CONF_FILE /$Q_PLUGIN_CONF_FILE
689 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400690
Ihar Hrachyshkab816e5d2014-07-21 13:53:50 +0200691 iniset $NEUTRON_CONF database connection `database_connection_url $Q_DB_NAME`
Mark McClainb05c8762013-07-06 23:29:39 -0400692 iniset $NEUTRON_CONF DEFAULT state_path $DATA_DIR/neutron
salvatoree4e535b2014-10-29 18:22:46 +0100693 iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG
Brian Haley180f5eb2015-06-16 13:14:31 -0400694 iniset $NEUTRON_CONF DEFAULT bind_host $Q_LISTEN_ADDRESS
Martin Hickey30d5fae2015-11-10 13:44:15 +0000695 iniset $NEUTRON_CONF oslo_concurrency lock_path $DATA_DIR/neutron/lock
696
Victor Ryzhenkin878d7d82016-04-27 15:15:52 +0300697 # NOTE(freerunner): Need to adjust Region Name for nova in multiregion installation
698 iniset $NEUTRON_CONF nova region_name $REGION_NAME
699
Mark McClainb05c8762013-07-06 23:29:39 -0400700 # If addition config files are set, make sure their path name is set as well
701 if [[ ${#Q_PLUGIN_EXTRA_CONF_FILES[@]} > 0 && $Q_PLUGIN_EXTRA_CONF_PATH == '' ]]; then
702 die $LINENO "Neutron additional plugin config not set.. exiting"
703 fi
704
705 # If additional config files exist, copy them over to neutron configuration
706 # directory
707 if [[ $Q_PLUGIN_EXTRA_CONF_PATH != '' ]]; then
Mark McClainb05c8762013-07-06 23:29:39 -0400708 local f
709 for (( f=0; $f < ${#Q_PLUGIN_EXTRA_CONF_FILES[@]}; f+=1 )); do
710 Q_PLUGIN_EXTRA_CONF_FILES[$f]=$Q_PLUGIN_EXTRA_CONF_PATH/${Q_PLUGIN_EXTRA_CONF_FILES[$f]}
Mark McClainb05c8762013-07-06 23:29:39 -0400711 done
712 fi
713
Joe Gordonbee5c502013-08-30 13:48:08 -0400714 if [ "$VIRT_DRIVER" = 'fake' ]; then
715 # Disable arbitrary limits
716 iniset $NEUTRON_CONF quotas quota_network -1
717 iniset $NEUTRON_CONF quotas quota_subnet -1
718 iniset $NEUTRON_CONF quotas quota_port -1
719 iniset $NEUTRON_CONF quotas quota_security_group -1
720 iniset $NEUTRON_CONF quotas quota_security_group_rule -1
721 fi
722
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700723 # Format logging
724 if [ "$LOG_COLOR" == "True" ] && [ "$SYSLOG" == "False" ]; then
Salvatore Orlandobc7f6432013-11-25 10:11:14 -0800725 setup_colorized_logging $NEUTRON_CONF DEFAULT project_id
venkata anil9b1df572015-01-15 07:38:22 +0000726 else
727 # Show user_name and project_name by default like in nova
Ronald Bradforde8264902016-01-20 21:16:33 +0000728 iniset $NEUTRON_CONF DEFAULT logging_user_identity_format "%(user_name)s %(project_name)s"
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700729 fi
730
Rob Crittenden18d47782014-03-19 17:47:42 -0400731 if is_service_enabled tls-proxy; then
732 # Set the service port for a proxy to take the original
733 iniset $NEUTRON_CONF DEFAULT bind_port "$Q_PORT_INT"
734 fi
735
736 if is_ssl_enabled_service "nova"; then
Jamie Lennoxdc757dd2015-03-09 14:48:09 +1100737 iniset $NEUTRON_CONF nova cafile $SSL_BUNDLE_FILE
Rob Crittenden18d47782014-03-19 17:47:42 -0400738 fi
739
740 if is_ssl_enabled_service "neutron"; then
741 ensure_certificates NEUTRON
742
743 iniset $NEUTRON_CONF DEFAULT use_ssl True
744 iniset $NEUTRON_CONF DEFAULT ssl_cert_file "$NEUTRON_SSL_CERT"
745 iniset $NEUTRON_CONF DEFAULT ssl_key_file "$NEUTRON_SSL_KEY"
746 fi
747
Mark McClainb05c8762013-07-06 23:29:39 -0400748 _neutron_setup_rootwrap
749}
750
Ian Wienandaee18c72014-02-21 15:35:08 +1100751function _configure_neutron_dhcp_agent {
Mark McClainb05c8762013-07-06 23:29:39 -0400752
Martin Hickey30d5fae2015-11-10 13:44:15 +0000753 cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $Q_DHCP_CONF_FILE
Mark McClainb05c8762013-07-06 23:29:39 -0400754
Ben Nemec03997942013-08-10 09:56:16 -0500755 iniset $Q_DHCP_CONF_FILE DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean Dague78801c12016-08-04 14:10:07 -0400756 # make it so we have working DNS from guests
757 iniset $Q_DHCP_CONF_FILE DEFAULT dnsmasq_local_resolv True
Hirofumi Ichihara2bb3a642015-08-18 12:59:08 -0700758 iniset $Q_DHCP_CONF_FILE AGENT root_helper "$Q_RR_COMMAND"
Yuriy Taraday26623952014-07-16 17:41:53 +0400759 if [[ "$Q_USE_ROOTWRAP_DAEMON" == "True" ]]; then
Hirofumi Ichihara2bb3a642015-08-18 12:59:08 -0700760 iniset $Q_DHCP_CONF_FILE AGENT root_helper_daemon "$Q_RR_DAEMON_COMMAND"
Yuriy Taraday26623952014-07-16 17:41:53 +0400761 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400762
Tan Lin27a196e2014-10-31 15:44:34 +0800763 if ! is_service_enabled q-l3; then
764 if [[ "$ENABLE_ISOLATED_METADATA" = "True" ]]; then
765 iniset $Q_DHCP_CONF_FILE DEFAULT enable_isolated_metadata $ENABLE_ISOLATED_METADATA
766 iniset $Q_DHCP_CONF_FILE DEFAULT enable_metadata_network $ENABLE_METADATA_NETWORK
767 else
768 if [[ "$ENABLE_METADATA_NETWORK" = "True" ]]; then
769 die "$LINENO" "Enable isolated metadata is a must for metadata network"
770 fi
771 fi
772 fi
773
Mark McClainb05c8762013-07-06 23:29:39 -0400774 _neutron_setup_interface_driver $Q_DHCP_CONF_FILE
775
xurong000379977ef31d02016-07-05 11:09:40 +0800776 neutron_plugin_configure_dhcp_agent $Q_DHCP_CONF_FILE
Mark McClainb05c8762013-07-06 23:29:39 -0400777}
778
Mark McClainb05c8762013-07-06 23:29:39 -0400779
Ian Wienandaee18c72014-02-21 15:35:08 +1100780function _configure_neutron_metadata_agent {
Martin Hickey30d5fae2015-11-10 13:44:15 +0000781 cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $Q_META_CONF_FILE
Mark McClainb05c8762013-07-06 23:29:39 -0400782
Ben Nemec03997942013-08-10 09:56:16 -0500783 iniset $Q_META_CONF_FILE DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Mark McClainb05c8762013-07-06 23:29:39 -0400784 iniset $Q_META_CONF_FILE DEFAULT nova_metadata_ip $Q_META_DATA_IP
Hirofumi Ichihara2bb3a642015-08-18 12:59:08 -0700785 iniset $Q_META_CONF_FILE AGENT root_helper "$Q_RR_COMMAND"
Yuriy Taraday26623952014-07-16 17:41:53 +0400786 if [[ "$Q_USE_ROOTWRAP_DAEMON" == "True" ]]; then
Hirofumi Ichihara2bb3a642015-08-18 12:59:08 -0700787 iniset $Q_META_CONF_FILE AGENT root_helper_daemon "$Q_RR_DAEMON_COMMAND"
Yuriy Taraday26623952014-07-16 17:41:53 +0400788 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400789}
790
Dina Belova58adaa62014-07-11 18:18:12 +0400791function _configure_neutron_ceilometer_notifications {
Wanlong Gaocf04a9a2016-01-16 17:46:35 +0800792 iniset $NEUTRON_CONF oslo_messaging_notifications driver messaging
Dina Belova58adaa62014-07-11 18:18:12 +0400793}
794
Ian Wienandaee18c72014-02-21 15:35:08 +1100795function _configure_neutron_metering {
Emilien Macchi40546f72013-09-24 15:10:25 +0200796 neutron_agent_metering_configure_common
797 neutron_agent_metering_configure_agent
798}
799
Brian Haleyeea76212014-06-27 11:45:50 -0400800function _configure_dvr {
801 iniset $NEUTRON_CONF DEFAULT router_distributed True
802 iniset $Q_L3_CONF_FILE DEFAULT agent_mode $Q_DVR_MODE
803}
804
805
Mark McClainb05c8762013-07-06 23:29:39 -0400806# _configure_neutron_plugin_agent() - Set config files for neutron plugin agent
807# It is called when q-agt is enabled.
Ian Wienandaee18c72014-02-21 15:35:08 +1100808function _configure_neutron_plugin_agent {
Mark McClainb05c8762013-07-06 23:29:39 -0400809 # Specify the default root helper prior to agent configuration to
810 # ensure that an agent's configuration can override the default
811 iniset /$Q_PLUGIN_CONF_FILE agent root_helper "$Q_RR_COMMAND"
Yuriy Taraday26623952014-07-16 17:41:53 +0400812 if [[ "$Q_USE_ROOTWRAP_DAEMON" == "True" ]]; then
813 iniset /$Q_PLUGIN_CONF_FILE agent root_helper_daemon "$Q_RR_DAEMON_COMMAND"
814 fi
Ben Nemec03997942013-08-10 09:56:16 -0500815 iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Mark McClainb05c8762013-07-06 23:29:39 -0400816
817 # Configure agent for plugin
818 neutron_plugin_configure_plugin_agent
819}
820
821# _configure_neutron_service() - Set config files for neutron service
822# It is called when q-svc is enabled.
Ian Wienandaee18c72014-02-21 15:35:08 +1100823function _configure_neutron_service {
Mark McClainb05c8762013-07-06 23:29:39 -0400824 Q_API_PASTE_FILE=$NEUTRON_CONF_DIR/api-paste.ini
Mark McClainb05c8762013-07-06 23:29:39 -0400825 cp $NEUTRON_DIR/etc/api-paste.ini $Q_API_PASTE_FILE
Kevin Benton08a5fcc2014-07-18 16:06:12 -0700826
Mark McClainb05c8762013-07-06 23:29:39 -0400827 # Update either configuration file with plugin
828 iniset $NEUTRON_CONF DEFAULT core_plugin $Q_PLUGIN_CLASS
829
830 if [[ $Q_SERVICE_PLUGIN_CLASSES != '' ]]; then
831 iniset $NEUTRON_CONF DEFAULT service_plugins $Q_SERVICE_PLUGIN_CLASSES
832 fi
833
Ben Nemec03997942013-08-10 09:56:16 -0500834 iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Chris Dent74a85b02015-04-22 18:02:39 +0000835 iniset $NEUTRON_CONF oslo_policy policy_file $Q_POLICY_FILE
Mark McClainb05c8762013-07-06 23:29:39 -0400836 iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips $Q_ALLOW_OVERLAPPING_IP
837
838 iniset $NEUTRON_CONF DEFAULT auth_strategy $Q_AUTH_STRATEGY
839 _neutron_setup_keystone $NEUTRON_CONF keystone_authtoken
840
Atsushi SAKAIfe7b56c2015-11-13 17:06:16 +0900841 # Configuration for neutron notifications to nova.
Terry Wilsonf06c4432014-05-20 10:54:51 -0500842 iniset $NEUTRON_CONF DEFAULT notify_nova_on_port_status_changes $Q_NOTIFY_NOVA_PORT_STATUS_CHANGES
843 iniset $NEUTRON_CONF DEFAULT notify_nova_on_port_data_changes $Q_NOTIFY_NOVA_PORT_DATA_CHANGES
Jamie Lennoxdc757dd2015-03-09 14:48:09 +1100844
Thomas Bechtoldfb948912016-03-27 08:59:42 +0200845 configure_auth_token_middleware $NEUTRON_CONF nova $NEUTRON_AUTH_CACHE_DIR nova
Aaron Rosencea32b12014-03-04 16:20:14 -0800846
Mark McClainb05c8762013-07-06 23:29:39 -0400847 # Configure plugin
848 neutron_plugin_configure_service
849}
850
851# Utility Functions
852#------------------
853
Isaku Yamahata9e136b42013-12-16 15:52:03 +0900854# _neutron_service_plugin_class_add() - add service plugin class
Ian Wienandaee18c72014-02-21 15:35:08 +1100855function _neutron_service_plugin_class_add {
Isaku Yamahata9e136b42013-12-16 15:52:03 +0900856 local service_plugin_class=$1
857 if [[ $Q_SERVICE_PLUGIN_CLASSES == '' ]]; then
858 Q_SERVICE_PLUGIN_CLASSES=$service_plugin_class
859 elif [[ ! ,${Q_SERVICE_PLUGIN_CLASSES}, =~ ,${service_plugin_class}, ]]; then
860 Q_SERVICE_PLUGIN_CLASSES="$Q_SERVICE_PLUGIN_CLASSES,$service_plugin_class"
861 fi
862}
863
Ihar Hrachyshka5893cc72014-12-22 11:49:42 +0100864# _neutron_deploy_rootwrap_filters() - deploy rootwrap filters to $Q_CONF_ROOTWRAP_D (owned by root).
865function _neutron_deploy_rootwrap_filters {
gong yong sheng3d6eaae2015-09-15 15:00:29 +0800866 if [[ "$Q_USE_ROOTWRAP" == "False" ]]; then
867 return
868 fi
Ihar Hrachyshka5893cc72014-12-22 11:49:42 +0100869 local srcdir=$1
Dean Troyer8421c2b2015-03-16 13:52:19 -0500870 sudo install -d -o root -m 755 $Q_CONF_ROOTWRAP_D
871 sudo install -o root -m 644 $srcdir/etc/neutron/rootwrap.d/* $Q_CONF_ROOTWRAP_D/
Ihar Hrachyshka5893cc72014-12-22 11:49:42 +0100872}
873
Mark McClainb05c8762013-07-06 23:29:39 -0400874# _neutron_setup_rootwrap() - configure Neutron's rootwrap
Ian Wienandaee18c72014-02-21 15:35:08 +1100875function _neutron_setup_rootwrap {
Mark McClainb05c8762013-07-06 23:29:39 -0400876 if [[ "$Q_USE_ROOTWRAP" == "False" ]]; then
877 return
878 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400879 # Wipe any existing ``rootwrap.d`` files first
880 Q_CONF_ROOTWRAP_D=$NEUTRON_CONF_DIR/rootwrap.d
881 if [[ -d $Q_CONF_ROOTWRAP_D ]]; then
882 sudo rm -rf $Q_CONF_ROOTWRAP_D
883 fi
Ihar Hrachyshka5893cc72014-12-22 11:49:42 +0100884
885 _neutron_deploy_rootwrap_filters $NEUTRON_DIR
886
Mark McClainb05c8762013-07-06 23:29:39 -0400887 # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d``
888 # location moved in newer versions, prefer new location
889 if test -r $NEUTRON_DIR/etc/neutron/rootwrap.conf; then
Dean Troyer8421c2b2015-03-16 13:52:19 -0500890 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.conf $Q_RR_CONF_FILE
Mark McClainb05c8762013-07-06 23:29:39 -0400891 else
Dean Troyer8421c2b2015-03-16 13:52:19 -0500892 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $Q_RR_CONF_FILE
Mark McClainb05c8762013-07-06 23:29:39 -0400893 fi
894 sudo sed -e "s:^filters_path=.*$:filters_path=$Q_CONF_ROOTWRAP_D:" -i $Q_RR_CONF_FILE
Robert Li2c5d4622015-04-21 15:48:22 -0400895 sudo sed -e 's:^exec_dirs=\(.*\)$:exec_dirs=\1,/usr/local/bin:' -i $Q_RR_CONF_FILE
896
Mark McClainb05c8762013-07-06 23:29:39 -0400897 # Specify ``rootwrap.conf`` as first parameter to neutron-rootwrap
898 ROOTWRAP_SUDOER_CMD="$NEUTRON_ROOTWRAP $Q_RR_CONF_FILE *"
Yuriy Taraday26623952014-07-16 17:41:53 +0400899 ROOTWRAP_DAEMON_SUDOER_CMD="$NEUTRON_ROOTWRAP-daemon $Q_RR_CONF_FILE"
Mark McClainb05c8762013-07-06 23:29:39 -0400900
901 # Set up the rootwrap sudoers for neutron
902 TEMPFILE=`mktemp`
Stephan Renatuse578eff2013-11-19 13:31:04 +0100903 echo "$STACK_USER ALL=(root) NOPASSWD: $ROOTWRAP_SUDOER_CMD" >$TEMPFILE
Yuriy Taraday26623952014-07-16 17:41:53 +0400904 echo "$STACK_USER ALL=(root) NOPASSWD: $ROOTWRAP_DAEMON_SUDOER_CMD" >>$TEMPFILE
Mark McClainb05c8762013-07-06 23:29:39 -0400905 chmod 0440 $TEMPFILE
906 sudo chown root:root $TEMPFILE
907 sudo mv $TEMPFILE /etc/sudoers.d/neutron-rootwrap
908
909 # Update the root_helper
910 iniset $NEUTRON_CONF agent root_helper "$Q_RR_COMMAND"
Yuriy Taraday26623952014-07-16 17:41:53 +0400911 if [[ "$Q_USE_ROOTWRAP_DAEMON" == "True" ]]; then
912 iniset $NEUTRON_CONF agent root_helper_daemon "$Q_RR_DAEMON_COMMAND"
913 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400914}
915
Ihar Hrachyshkabb4654b2015-10-06 18:09:07 +0200916# Configures keystone integration for neutron service
Ian Wienandaee18c72014-02-21 15:35:08 +1100917function _neutron_setup_keystone {
Mark McClainb05c8762013-07-06 23:29:39 -0400918 local conf_file=$1
919 local section=$2
Jamie Lennox3561d7f2014-05-21 17:18:43 +1000920
Brant Knudson05952372014-09-19 17:22:22 -0500921 create_neutron_cache_dir
922 configure_auth_token_middleware $conf_file $Q_ADMIN_USERNAME $NEUTRON_AUTH_CACHE_DIR $section
Mark McClainb05c8762013-07-06 23:29:39 -0400923}
924
Ian Wienandaee18c72014-02-21 15:35:08 +1100925function _neutron_setup_interface_driver {
Mark McClainb05c8762013-07-06 23:29:39 -0400926
927 # ovs_use_veth needs to be set before the plugin configuration
928 # occurs to allow plugins to override the setting.
929 iniset $1 DEFAULT ovs_use_veth $Q_OVS_USE_VETH
930
931 neutron_plugin_setup_interface_driver $1
932}
Mark McClainb05c8762013-07-06 23:29:39 -0400933# Functions for Neutron Exercises
934#--------------------------------
935
Ian Wienandaee18c72014-02-21 15:35:08 +1100936function delete_probe {
Mark McClainb05c8762013-07-06 23:29:39 -0400937 local from_net="$1"
938 net_id=`_get_net_id $from_net`
939 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}'`
940 neutron-debug --os-tenant-name admin --os-username admin probe-delete $probe_id
941}
942
Ian Wienandaee18c72014-02-21 15:35:08 +1100943function _get_net_id {
Victor Ryzhenkin878d7d82016-04-27 15:15:52 +0300944 neutron --os-cloud devstack-admin --os-region "$REGION_NAME" --os-tenant-name admin --os-username admin --os-password $ADMIN_PASSWORD net-list | grep $1 | awk '{print $2}'
Mark McClainb05c8762013-07-06 23:29:39 -0400945}
946
Ian Wienandaee18c72014-02-21 15:35:08 +1100947function _get_probe_cmd_prefix {
Mark McClainb05c8762013-07-06 23:29:39 -0400948 local from_net="$1"
949 net_id=`_get_net_id $from_net`
950 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`
951 echo "$Q_RR_COMMAND ip netns exec qprobe-$probe_id"
952}
953
Mark McClainb05c8762013-07-06 23:29:39 -0400954# ssh check
Ian Wienandaee18c72014-02-21 15:35:08 +1100955function _ssh_check_neutron {
Mark McClainb05c8762013-07-06 23:29:39 -0400956 local from_net=$1
957 local key_file=$2
958 local ip=$3
959 local user=$4
960 local timeout_sec=$5
961 local probe_cmd = ""
962 probe_cmd=`_get_probe_cmd_prefix $from_net`
Sean Dague442e4e92015-06-24 13:24:02 -0400963 local testcmd="$probe_cmd ssh -o StrictHostKeyChecking=no -i $key_file ${user}@$ip echo success"
964 test_with_retry "$testcmd" "server $ip didn't become ssh-able" $timeout_sec
Mark McClainb05c8762013-07-06 23:29:39 -0400965}
966
Mark McClainb05c8762013-07-06 23:29:39 -0400967# Restore xtrace
Ian Wienand523f4882015-10-13 11:03:03 +1100968$_XTRACE_NEUTRON
Mark McClainb05c8762013-07-06 23:29:39 -0400969
Adam Spiers6a5aa7c2013-10-24 11:27:02 +0100970# Tell emacs to use shell-script-mode
971## Local variables:
972## mode: shell-script
973## End: