blob: 954a2d9524998250ce0a84075ebde25c71fc38cd [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
14# - install_neutronclient
15# - install_neutron_agent_packages
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
Emilien Macchia677b7f2013-11-25 23:40:20 +010022# - create_neutron_cache_dir
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010023# - create_nova_conf_neutron
24# - start_neutron_service_and_check
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#
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010031# - stop_neutron
yunhong jiang0d6e9922014-10-10 06:12:47 -070032# - stop_neutron_third_party
33# - cleanup_neutron
Mark McClainb05c8762013-07-06 23:29:39 -040034
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 McClainb05c8762013-07-06 23:29:39 -040050# 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 McClainb05c8762013-07-06 23:29:39 -040055
John Davidge21529a52014-06-30 09:55:11 -040056# Settings
57# --------
58
59# Timeout value in seconds to wait for IPv6 gateway configuration
60GATEWAY_TIMEOUT=30
61
Mark McClainb05c8762013-07-06 23:29:39 -040062
63# Neutron Network Configuration
64# -----------------------------
65
John Davidge21529a52014-06-30 09:55:11 -040066# Subnet IP version
67IP_VERSION=${IP_VERSION:-4}
68# Validate IP_VERSION
69if [[ $IP_VERSION != "4" ]] && [[ $IP_VERSION != "6" ]] && [[ $IP_VERSION != "4+6" ]]; then
70 die $LINENO "IP_VERSION must be either 4, 6, or 4+6"
71fi
Mark McClainb05c8762013-07-06 23:29:39 -040072# Gateway and subnet defaults, in case they are not customized in localrc
73NETWORK_GATEWAY=${NETWORK_GATEWAY:-10.0.0.1}
Salvatore Orlando90234ac2013-11-25 05:44:10 -080074PUBLIC_NETWORK_GATEWAY=${PUBLIC_NETWORK_GATEWAY:-172.24.4.1}
Mark McClainb05c8762013-07-06 23:29:39 -040075PRIVATE_SUBNET_NAME=${PRIVATE_SUBNET_NAME:-"private-subnet"}
76PUBLIC_SUBNET_NAME=${PUBLIC_SUBNET_NAME:-"public-subnet"}
77
Rob Crittenden18d47782014-03-19 17:47:42 -040078if is_ssl_enabled_service "neutron" || is_service_enabled tls-proxy; then
79 Q_PROTOCOL="https"
80fi
81
John Davidge21529a52014-06-30 09:55:11 -040082# Generate 40-bit IPv6 Global ID to comply with RFC 4193
83IPV6_GLOBAL_ID=`uuidgen | sed s/-//g | cut -c 23- | sed -e "s/\(..\)\(....\)\(....\)/\1:\2:\3/"`
84
85# IPv6 gateway and subnet defaults, in case they are not customized in localrc
86IPV6_RA_MODE=${IPV6_RA_MODE:-slaac}
87IPV6_ADDRESS_MODE=${IPV6_ADDRESS_MODE:-slaac}
88IPV6_PUBLIC_SUBNET_NAME=${IPV6_PUBLIC_SUBNET_NAME:-ipv6-public-subnet}
89IPV6_PRIVATE_SUBNET_NAME=${IPV6_PRIVATE_SUBNET_NAME:-ipv6-private-subnet}
90FIXED_RANGE_V6=${FIXED_RANGE_V6:-fd$IPV6_GLOBAL_ID::/64}
91IPV6_PRIVATE_NETWORK_GATEWAY=${IPV6_PRIVATE_NETWORK_GATEWAY:-fd$IPV6_GLOBAL_ID::1}
92IPV6_PUBLIC_RANGE=${IPV6_PUBLIC_RANGE:-fe80:cafe:cafe::/64}
93IPV6_PUBLIC_NETWORK_GATEWAY=${IPV6_PUBLIC_NETWORK_GATEWAY:-fe80:cafe:cafe::2}
94# IPV6_ROUTER_GW_IP must be defined when IP_VERSION=4+6 as it cannot be
95# obtained conventionally until the l3-agent has support for dual-stack
96# TODO (john-davidge) Remove once l3-agent supports dual-stack
97IPV6_ROUTER_GW_IP=${IPV6_ROUTER_GW_IP:-fe80:cafe:cafe::1}
Rob Crittenden18d47782014-03-19 17:47:42 -040098
Mark McClainb05c8762013-07-06 23:29:39 -040099# Set up default directories
Sean Daguee08ab102014-11-13 17:09:28 -0500100GITDIR["python-neutronclient"]=$DEST/python-neutronclient
Sean Dague5cb19062014-11-01 01:37:45 +0100101
102
Mark McClainb05c8762013-07-06 23:29:39 -0400103NEUTRON_DIR=$DEST/neutron
Kyle Mestery20b839f2014-12-08 06:17:27 +0000104NEUTRON_FWAAS_DIR=$DEST/neutron-fwaas
105NEUTRON_LBAAS_DIR=$DEST/neutron-lbaas
106NEUTRON_VPNAAS_DIR=$DEST/neutron-vpnaas
Mark McClainb05c8762013-07-06 23:29:39 -0400107NEUTRON_AUTH_CACHE_DIR=${NEUTRON_AUTH_CACHE_DIR:-/var/cache/neutron}
108
109# Support entry points installation of console scripts
110if [[ -d $NEUTRON_DIR/bin/neutron-server ]]; then
111 NEUTRON_BIN_DIR=$NEUTRON_DIR/bin
Sean Dague3bdb9222013-10-22 08:36:16 -0400112else
113 NEUTRON_BIN_DIR=$(get_python_exec_prefix)
Mark McClainb05c8762013-07-06 23:29:39 -0400114fi
115
116NEUTRON_CONF_DIR=/etc/neutron
117NEUTRON_CONF=$NEUTRON_CONF_DIR/neutron.conf
118export NEUTRON_TEST_CONFIG_FILE=${NEUTRON_TEST_CONFIG_FILE:-"$NEUTRON_CONF_DIR/debug.ini"}
119
Adam Gandelman7614d212014-08-11 14:27:50 -0700120# Agent binaries. Note, binary paths for other agents are set in per-service
121# scripts in lib/neutron_plugins/services/
122AGENT_DHCP_BINARY="$NEUTRON_BIN_DIR/neutron-dhcp-agent"
123AGENT_L3_BINARY=${AGENT_L3_BINARY:-"$NEUTRON_BIN_DIR/neutron-l3-agent"}
124AGENT_META_BINARY="$NEUTRON_BIN_DIR/neutron-metadata-agent"
125
126# Agent config files. Note, plugin-specific Q_PLUGIN_CONF_FILE is set and
127# loaded from per-plugin scripts in lib/neutron_plugins/
128Q_DHCP_CONF_FILE=$NEUTRON_CONF_DIR/dhcp_agent.ini
129Q_L3_CONF_FILE=$NEUTRON_CONF_DIR/l3_agent.ini
130Q_FWAAS_CONF_FILE=$NEUTRON_CONF_DIR/fwaas_driver.ini
131Q_VPN_CONF_FILE=$NEUTRON_CONF_DIR/vpn_agent.ini
132Q_META_CONF_FILE=$NEUTRON_CONF_DIR/metadata_agent.ini
133
Henry Gessau0fc1cc22014-07-06 22:54:34 -0400134# Default name for Neutron database
135Q_DB_NAME=${Q_DB_NAME:-neutron}
Mark McClainb05c8762013-07-06 23:29:39 -0400136# Default Neutron Plugin
Kyle Mestery6d235002013-09-18 20:27:08 +0000137Q_PLUGIN=${Q_PLUGIN:-ml2}
Mark McClainb05c8762013-07-06 23:29:39 -0400138# Default Neutron Port
139Q_PORT=${Q_PORT:-9696}
Rob Crittenden18d47782014-03-19 17:47:42 -0400140# Default Neutron Internal Port when using TLS proxy
141Q_PORT_INT=${Q_PORT_INT:-19696}
Mark McClainb05c8762013-07-06 23:29:39 -0400142# Default Neutron Host
143Q_HOST=${Q_HOST:-$SERVICE_HOST}
Rob Crittenden18d47782014-03-19 17:47:42 -0400144# Default protocol
145Q_PROTOCOL=${Q_PROTOCOL:-$SERVICE_PROTOCOL}
Mark McClainb05c8762013-07-06 23:29:39 -0400146# Default admin username
147Q_ADMIN_USERNAME=${Q_ADMIN_USERNAME:-neutron}
148# Default auth strategy
149Q_AUTH_STRATEGY=${Q_AUTH_STRATEGY:-keystone}
150# Use namespace or not
151Q_USE_NAMESPACE=${Q_USE_NAMESPACE:-True}
152# RHEL's support for namespaces requires using veths with ovs
153Q_OVS_USE_VETH=${Q_OVS_USE_VETH:-False}
154Q_USE_ROOTWRAP=${Q_USE_ROOTWRAP:-True}
155# Meta data IP
156Q_META_DATA_IP=${Q_META_DATA_IP:-$SERVICE_HOST}
157# Allow Overlapping IP among subnets
158Q_ALLOW_OVERLAPPING_IP=${Q_ALLOW_OVERLAPPING_IP:-True}
159# Use neutron-debug command
160Q_USE_DEBUG_COMMAND=${Q_USE_DEBUG_COMMAND:-False}
161# The name of the default q-l3 router
162Q_ROUTER_NAME=${Q_ROUTER_NAME:-router1}
Aaron Rosen4540d002013-10-24 13:59:33 -0700163# nova vif driver that all plugins should use
164NOVA_VIF_DRIVER=${NOVA_VIF_DRIVER:-"nova.virt.libvirt.vif.LibvirtGenericVIFDriver"}
Terry Wilsonf06c4432014-05-20 10:54:51 -0500165Q_NOTIFY_NOVA_PORT_STATUS_CHANGES=${Q_NOTIFY_NOVA_PORT_STATUS_CHANGES:-True}
166Q_NOTIFY_NOVA_PORT_DATA_CHANGES=${Q_NOTIFY_NOVA_PORT_DATA_CHANGES:-True}
Aaron Rosencea32b12014-03-04 16:20:14 -0800167VIF_PLUGGING_IS_FATAL=${VIF_PLUGGING_IS_FATAL:-True}
168VIF_PLUGGING_TIMEOUT=${VIF_PLUGGING_TIMEOUT:-300}
Edgar Magana7bce8fa2014-11-04 17:32:54 +0100169# Specify if the initial private and external networks should be created
170NEUTRON_CREATE_INITIAL_NETWORKS=${NEUTRON_CREATE_INITIAL_NETWORKS:-True}
Aaron Rosen4540d002013-10-24 13:59:33 -0700171
Sean M. Collins5ec6f8f2014-05-14 17:01:03 -0400172## Provider Network Information
173PROVIDER_SUBNET_NAME=${PROVIDER_SUBNET_NAME:-"provider_net"}
174
YAMAMOTO Takashi6a633fd2014-07-23 12:02:18 +0900175# Use flat providernet for public network
176#
177# If Q_USE_PROVIDERNET_FOR_PUBLIC=True, use a flat provider network
178# for external interface of neutron l3-agent. In that case,
179# PUBLIC_PHYSICAL_NETWORK specifies provider:physical_network value
YAMAMOTO Takashi0f18c232014-09-12 23:44:58 +0900180# used for the network. In case of ofagent, you should add the
181# corresponding entry to your OFAGENT_PHYSICAL_INTERFACE_MAPPINGS.
182# For openvswitch agent, you should add the corresponding entry to
183# your OVS_BRIDGE_MAPPINGS.
YAMAMOTO Takashi6a633fd2014-07-23 12:02:18 +0900184#
YAMAMOTO Takashi0f18c232014-09-12 23:44:58 +0900185# eg. (ofagent)
186# Q_USE_PROVIDERNET_FOR_PUBLIC=True
187# Q_USE_PUBLIC_VETH=True
188# PUBLIC_PHYSICAL_NETWORK=public
189# OFAGENT_PHYSICAL_INTERFACE_MAPPINGS=public:veth-pub-int
190#
191# eg. (openvswitch agent)
YAMAMOTO Takashi6a633fd2014-07-23 12:02:18 +0900192# Q_USE_PROVIDERNET_FOR_PUBLIC=True
193# PUBLIC_PHYSICAL_NETWORK=public
194# OVS_BRIDGE_MAPPINGS=public:br-ex
195Q_USE_PROVIDERNET_FOR_PUBLIC=${Q_USE_PROVIDERNET_FOR_PUBLIC:-False}
196PUBLIC_PHYSICAL_NETWORK=${PUBLIC_PHYSICAL_NETWORK:-public}
197
YAMAMOTO Takashi0f18c232014-09-12 23:44:58 +0900198# If Q_USE_PUBLIC_VETH=True, create and use a veth pair instead of
199# PUBLIC_BRIDGE. This is intended to be used with
200# Q_USE_PROVIDERNET_FOR_PUBLIC=True.
201Q_USE_PUBLIC_VETH=${Q_USE_PUBLIC_VETH:-False}
202Q_PUBLIC_VETH_EX=${Q_PUBLIC_VETH_EX:-veth-pub-ex}
203Q_PUBLIC_VETH_INT=${Q_PUBLIC_VETH_INT:-veth-pub-int}
204
Tomoe Sugiharaafbc6312013-11-14 20:02:47 +0000205# The next two variables are configured by plugin
206# e.g. _configure_neutron_l3_agent or lib/neutron_plugins/*
207#
208# The plugin supports L3.
209Q_L3_ENABLED=${Q_L3_ENABLED:-False}
210# L3 routers exist per tenant
211Q_L3_ROUTER_PER_TENANT=${Q_L3_ROUTER_PER_TENANT:-False}
Aaron Rosen4540d002013-10-24 13:59:33 -0700212
Mark McClainb05c8762013-07-06 23:29:39 -0400213# List of config file names in addition to the main plugin config file
214# See _configure_neutron_common() for details about setting it up
215declare -a Q_PLUGIN_EXTRA_CONF_FILES
216
Paul Michali746dcee2014-04-02 19:12:22 +0000217# List of (optional) config files for VPN device drivers to use with
218# the neutron-q-vpn agent
219declare -a Q_VPN_EXTRA_CONF_FILES
220
Mark McClainb05c8762013-07-06 23:29:39 -0400221
Dean Troyere2907b42014-02-26 17:35:37 -0600222Q_RR_CONF_FILE=$NEUTRON_CONF_DIR/rootwrap.conf
223if [[ "$Q_USE_ROOTWRAP" == "False" ]]; then
224 Q_RR_COMMAND="sudo"
225else
226 NEUTRON_ROOTWRAP=$(get_rootwrap_location neutron)
227 Q_RR_COMMAND="sudo $NEUTRON_ROOTWRAP $Q_RR_CONF_FILE"
Mark McClainb05c8762013-07-06 23:29:39 -0400228fi
229
Brian Haleyeea76212014-06-27 11:45:50 -0400230
231# Distributed Virtual Router (DVR) configuration
232# Can be:
Dean Troyer3324f192014-09-18 09:26:39 -0500233# - ``legacy`` - No DVR functionality
234# - ``dvr_snat`` - Controller or single node DVR
235# - ``dvr`` - Compute node in multi-node DVR
236#
Brian Haleyeea76212014-06-27 11:45:50 -0400237Q_DVR_MODE=${Q_DVR_MODE:-legacy}
238if [[ "$Q_DVR_MODE" != "legacy" ]]; then
239 Q_ML2_PLUGIN_MECHANISM_DRIVERS=openvswitch,linuxbridge,l2population
240fi
241
Dean Troyere2907b42014-02-26 17:35:37 -0600242# Provider Network Configurations
243# --------------------------------
244
YAMAMOTO Takashi15130cd2014-10-28 11:49:58 +0900245# The following variables control the Neutron ML2 plugins' allocation
246# of tenant networks and availability of provider networks. If these
247# are not configured in ``localrc``, tenant networks will be local to
248# the host (with no remote connectivity), and no physical resources
249# will be available for the allocation of provider networks.
Dean Troyere2907b42014-02-26 17:35:37 -0600250
Attila Fazekas8feaf6c2014-07-27 20:47:04 +0200251# To disable tunnels (GRE or VXLAN) for tenant networks,
252# set to False in ``local.conf``.
253# GRE tunnels are only supported by the openvswitch.
254ENABLE_TENANT_TUNNELS=${ENABLE_TENANT_TUNNELS:-True}
Dean Troyere2907b42014-02-26 17:35:37 -0600255
256# If using GRE tunnels for tenant networks, specify the range of
257# tunnel IDs from which tenant networks are allocated. Can be
258# overriden in ``localrc`` in necesssary.
Anant Patil3827dc02014-07-03 21:38:16 +0530259TENANT_TUNNEL_RANGES=${TENANT_TUNNEL_RANGES:-1:1000}
Dean Troyere2907b42014-02-26 17:35:37 -0600260
261# To use VLANs for tenant networks, set to True in localrc. VLANs
YAMAMOTO Takashi15130cd2014-10-28 11:49:58 +0900262# are supported by the ML2 plugins, requiring additional configuration
263# described below.
Dean Troyere2907b42014-02-26 17:35:37 -0600264ENABLE_TENANT_VLANS=${ENABLE_TENANT_VLANS:-False}
265
266# If using VLANs for tenant networks, set in ``localrc`` to specify
267# the range of VLAN VIDs from which tenant networks are
268# allocated. An external network switch must be configured to
269# trunk these VLANs between hosts for multi-host connectivity.
270#
271# Example: ``TENANT_VLAN_RANGE=1000:1999``
272TENANT_VLAN_RANGE=${TENANT_VLAN_RANGE:-}
273
274# If using VLANs for tenant networks, or if using flat or VLAN
275# provider networks, set in ``localrc`` to the name of the physical
276# network, and also configure ``OVS_PHYSICAL_BRIDGE`` for the
277# openvswitch agent or ``LB_PHYSICAL_INTERFACE`` for the linuxbridge
278# agent, as described below.
279#
280# Example: ``PHYSICAL_NETWORK=default``
281PHYSICAL_NETWORK=${PHYSICAL_NETWORK:-}
282
YAMAMOTO Takashi15130cd2014-10-28 11:49:58 +0900283# With the openvswitch agent, if using VLANs for tenant networks,
Dean Troyere2907b42014-02-26 17:35:37 -0600284# or if using flat or VLAN provider networks, set in ``localrc`` to
285# the name of the OVS bridge to use for the physical network. The
286# bridge will be created if it does not already exist, but a
287# physical interface must be manually added to the bridge as a
288# port for external connectivity.
289#
290# Example: ``OVS_PHYSICAL_BRIDGE=br-eth1``
291OVS_PHYSICAL_BRIDGE=${OVS_PHYSICAL_BRIDGE:-}
292
YAMAMOTO Takashi15130cd2014-10-28 11:49:58 +0900293# With the linuxbridge agent, if using VLANs for tenant networks,
Dean Troyere2907b42014-02-26 17:35:37 -0600294# or if using flat or VLAN provider networks, set in ``localrc`` to
295# the name of the network interface to use for the physical
296# network.
297#
298# Example: ``LB_PHYSICAL_INTERFACE=eth1``
299LB_PHYSICAL_INTERFACE=${LB_PHYSICAL_INTERFACE:-}
300
Edgar Magana6f335b92014-07-10 15:42:44 -0700301# When Neutron tunnels are enabled it is needed to specify the
302# IP address of the end point in the local server. This IP is set
303# by default to the same IP address that the HOST IP.
304# This variable can be used to specify a different end point IP address
305# Example: ``TUNNEL_ENDPOINT_IP=1.1.1.1``
306TUNNEL_ENDPOINT_IP=${TUNNEL_ENDPOINT_IP:-$HOST_IP}
307
Dean Troyere2907b42014-02-26 17:35:37 -0600308# With the openvswitch plugin, set to True in ``localrc`` to enable
309# provider GRE tunnels when ``ENABLE_TENANT_TUNNELS`` is False.
310#
311# Example: ``OVS_ENABLE_TUNNELING=True``
312OVS_ENABLE_TUNNELING=${OVS_ENABLE_TUNNELING:-$ENABLE_TENANT_TUNNELS}
313
Tan Lin27a196e2014-10-31 15:44:34 +0800314# Use DHCP agent for providing metadata service in the case of
315# without L3 agent (No Route Agent), set to True in localrc.
316ENABLE_ISOLATED_METADATA=${ENABLE_ISOLATED_METADATA:-False}
317
318# Add a static route as dhcp option, so the request to 169.254.169.254
319# will be able to reach through a route(DHCP agent)
320# This option require ENABLE_ISOLATED_METADATA = True
321ENABLE_METADATA_NETWORK=${ENABLE_METADATA_NETWORK:-False}
Mark McClainb05c8762013-07-06 23:29:39 -0400322# Neutron plugin specific functions
323# ---------------------------------
324
325# Please refer to ``lib/neutron_plugins/README.md`` for details.
326source $TOP_DIR/lib/neutron_plugins/$Q_PLUGIN
327
328# Agent loadbalancer service plugin functions
329# -------------------------------------------
330
331# Hardcoding for 1 service plugin for now
332source $TOP_DIR/lib/neutron_plugins/services/loadbalancer
333
Emilien Macchi40546f72013-09-24 15:10:25 +0200334# Agent metering service plugin functions
335# -------------------------------------------
336
337# Hardcoding for 1 service plugin for now
338source $TOP_DIR/lib/neutron_plugins/services/metering
339
Nachi Ueno69b3ff62013-06-07 10:28:33 -0700340# VPN service plugin functions
341# -------------------------------------------
342# Hardcoding for 1 service plugin for now
343source $TOP_DIR/lib/neutron_plugins/services/vpn
344
Ravi Chunduru95c93e22013-07-16 04:18:47 -0700345# Firewall Service Plugin functions
Adam Spierscb961592013-10-05 12:11:07 +0100346# ---------------------------------
Ravi Chunduru95c93e22013-07-16 04:18:47 -0700347source $TOP_DIR/lib/neutron_plugins/services/firewall
348
Mark McClainb05c8762013-07-06 23:29:39 -0400349# Use security group or not
350if has_neutron_plugin_security_group; then
351 Q_USE_SECGROUP=${Q_USE_SECGROUP:-True}
352else
353 Q_USE_SECGROUP=False
354fi
355
Dean Troyer4237f592014-01-29 16:22:11 -0600356# Tell Tempest this project is present
357TEMPEST_SERVICES+=,neutron
358
359
Dean Troyere2907b42014-02-26 17:35:37 -0600360# Save trace setting
361XTRACE=$(set +o | grep xtrace)
362set +o xtrace
363
364
Mark McClainb05c8762013-07-06 23:29:39 -0400365# Functions
366# ---------
367
Adam Gandelman7614d212014-08-11 14:27:50 -0700368function _determine_config_server {
369 local cfg_file
370 local opts="--config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE"
371 for cfg_file in ${Q_PLUGIN_EXTRA_CONF_FILES[@]}; do
372 opts+=" --config-file /$cfg_file"
373 done
374 echo "$opts"
375}
376
377function _determine_config_vpn {
378 local cfg_file
379 local opts="--config-file $NEUTRON_CONF --config-file=$Q_L3_CONF_FILE --config-file=$Q_VPN_CONF_FILE"
380 if is_service_enabled q-fwaas; then
381 opts+=" --config-file $Q_FWAAS_CONF_FILE"
382 fi
383 for cfg_file in ${Q_VPN_EXTRA_CONF_FILES[@]}; do
384 opts+=" --config-file $cfg_file"
385 done
386 echo "$opts"
387
388}
389
390function _determine_config_l3 {
391 local opts="--config-file $NEUTRON_CONF --config-file=$Q_L3_CONF_FILE"
392 if is_service_enabled q-fwaas; then
393 opts+=" --config-file $Q_FWAAS_CONF_FILE"
394 fi
395 echo "$opts"
396}
397
398# For services and agents that require it, dynamically construct a list of
399# --config-file arguments that are passed to the binary.
400function determine_config_files {
401 local opts=""
402 case "$1" in
403 "neutron-server") opts="$(_determine_config_server)" ;;
404 "neutron-vpn-agent") opts="$(_determine_config_vpn)" ;;
405 "neutron-l3-agent") opts="$(_determine_config_l3)" ;;
406 esac
407 if [ -z "$opts" ] ; then
408 die $LINENO "Could not determine config files for $1."
409 fi
410 echo "$opts"
411}
412
Dean Troyere4fa7212014-01-15 15:04:49 -0600413# Test if any Neutron services are enabled
414# is_neutron_enabled
415function is_neutron_enabled {
416 [[ ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
417 return 1
418}
419
Mark McClainb05c8762013-07-06 23:29:39 -0400420# configure_neutron()
421# Set common config for all neutron server and agents.
Ian Wienandaee18c72014-02-21 15:35:08 +1100422function configure_neutron {
Mark McClainb05c8762013-07-06 23:29:39 -0400423 _configure_neutron_common
424 iniset_rpc_backend neutron $NEUTRON_CONF DEFAULT
425
426 # goes before q-svc to init Q_SERVICE_PLUGIN_CLASSES
427 if is_service_enabled q-lbaas; then
428 _configure_neutron_lbaas
429 fi
Emilien Macchi40546f72013-09-24 15:10:25 +0200430 if is_service_enabled q-metering; then
431 _configure_neutron_metering
432 fi
Nachi Ueno69b3ff62013-06-07 10:28:33 -0700433 if is_service_enabled q-vpn; then
434 _configure_neutron_vpn
435 fi
Ravi Chunduru95c93e22013-07-16 04:18:47 -0700436 if is_service_enabled q-fwaas; then
437 _configure_neutron_fwaas
438 fi
Stephen Ma9b38eb22014-04-02 02:13:09 +0000439 if is_service_enabled q-agt q-svc; then
Mark McClainb05c8762013-07-06 23:29:39 -0400440 _configure_neutron_service
441 fi
442 if is_service_enabled q-agt; then
443 _configure_neutron_plugin_agent
444 fi
445 if is_service_enabled q-dhcp; then
446 _configure_neutron_dhcp_agent
447 fi
448 if is_service_enabled q-l3; then
449 _configure_neutron_l3_agent
450 fi
451 if is_service_enabled q-meta; then
452 _configure_neutron_metadata_agent
453 fi
454
Brian Haleyeea76212014-06-27 11:45:50 -0400455 if [[ "$Q_DVR_MODE" != "legacy" ]]; then
456 _configure_dvr
457 fi
Dina Belova58adaa62014-07-11 18:18:12 +0400458 if is_service_enabled ceilometer; then
459 _configure_neutron_ceilometer_notifications
460 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400461
462 _configure_neutron_debug_command
463}
464
Ian Wienandaee18c72014-02-21 15:35:08 +1100465function create_nova_conf_neutron {
Yong Sheng Gong032e4542013-08-25 10:21:10 +0800466 iniset $NOVA_CONF DEFAULT network_api_class "nova.network.neutronv2.api.API"
Gary Kotton13d385e2014-06-17 23:24:53 -0700467 iniset $NOVA_CONF neutron admin_username "$Q_ADMIN_USERNAME"
468 iniset $NOVA_CONF neutron admin_password "$SERVICE_PASSWORD"
469 iniset $NOVA_CONF neutron admin_auth_url "$KEYSTONE_SERVICE_PROTOCOL://$KEYSTONE_SERVICE_HOST:$KEYSTONE_AUTH_PORT/v2.0"
470 iniset $NOVA_CONF neutron auth_strategy "$Q_AUTH_STRATEGY"
471 iniset $NOVA_CONF neutron admin_tenant_name "$SERVICE_TENANT_NAME"
Bartosz Górski0abde392014-02-28 14:15:19 +0100472 iniset $NOVA_CONF neutron region_name "$REGION_NAME"
Rob Crittenden18d47782014-03-19 17:47:42 -0400473 iniset $NOVA_CONF neutron url "${Q_PROTOCOL}://$Q_HOST:$Q_PORT"
Mark McClainb05c8762013-07-06 23:29:39 -0400474
475 if [[ "$Q_USE_SECGROUP" == "True" ]]; then
476 LIBVIRT_FIREWALL_DRIVER=nova.virt.firewall.NoopFirewallDriver
Jeff Peeler1143f7e2013-10-31 16:21:52 -0400477 iniset $NOVA_CONF DEFAULT firewall_driver $LIBVIRT_FIREWALL_DRIVER
Yong Sheng Gong032e4542013-08-25 10:21:10 +0800478 iniset $NOVA_CONF DEFAULT security_group_api neutron
Mark McClainb05c8762013-07-06 23:29:39 -0400479 fi
480
481 # set NOVA_VIF_DRIVER and optionally set options in nova_conf
482 neutron_plugin_create_nova_conf
483
Gary Kotton51c681d2014-04-22 01:40:56 -0700484 iniset $NOVA_CONF libvirt vif_driver "$NOVA_VIF_DRIVER"
Mark McClainb05c8762013-07-06 23:29:39 -0400485 iniset $NOVA_CONF DEFAULT linuxnet_interface_driver "$LINUXNET_VIF_DRIVER"
486 if is_service_enabled q-meta; then
Gary Kottondd745502014-08-11 23:38:47 -0700487 iniset $NOVA_CONF neutron service_metadata_proxy "True"
Mark McClainb05c8762013-07-06 23:29:39 -0400488 fi
Aaron Rosencea32b12014-03-04 16:20:14 -0800489
490 iniset $NOVA_CONF DEFAULT vif_plugging_is_fatal "$VIF_PLUGGING_IS_FATAL"
491 iniset $NOVA_CONF DEFAULT vif_plugging_timeout "$VIF_PLUGGING_TIMEOUT"
Mark McClainb05c8762013-07-06 23:29:39 -0400492}
493
Emilien Macchia677b7f2013-11-25 23:40:20 +0100494# create_neutron_cache_dir() - Part of the _neutron_setup_keystone() process
Ian Wienandaee18c72014-02-21 15:35:08 +1100495function create_neutron_cache_dir {
Emilien Macchia677b7f2013-11-25 23:40:20 +0100496 # Create cache dir
497 sudo mkdir -p $NEUTRON_AUTH_CACHE_DIR
498 sudo chown $STACK_USER $NEUTRON_AUTH_CACHE_DIR
499 rm -f $NEUTRON_AUTH_CACHE_DIR/*
500}
501
Mark McClainb05c8762013-07-06 23:29:39 -0400502# create_neutron_accounts() - Set up common required neutron accounts
503
504# Tenant User Roles
505# ------------------------------------------------------------------
506# service neutron admin # if enabled
507
508# Migrated from keystone_data.sh
Ian Wienandaee18c72014-02-21 15:35:08 +1100509function create_neutron_accounts {
Mark McClainb05c8762013-07-06 23:29:39 -0400510
Dean Troyer188493d2014-07-25 15:54:11 -0500511 local service_tenant=$(openstack project list | awk "/ $SERVICE_TENANT_NAME / { print \$2 }")
Kevin Benton08a5fcc2014-07-18 16:06:12 -0700512 local service_role=$(openstack role list | awk "/ service / { print \$2 }")
Mark McClainb05c8762013-07-06 23:29:39 -0400513
514 if [[ "$ENABLED_SERVICES" =~ "q-svc" ]]; then
Bartosz Górski0abde392014-02-28 14:15:19 +0100515
Dean Troyer188493d2014-07-25 15:54:11 -0500516 local neutron_user=$(get_or_create_user "neutron" \
517 "$SERVICE_PASSWORD" $service_tenant)
Kevin Benton08a5fcc2014-07-18 16:06:12 -0700518 get_or_add_user_role $service_role $neutron_user $service_tenant
Bartosz Górski0abde392014-02-28 14:15:19 +0100519
Mark McClainb05c8762013-07-06 23:29:39 -0400520 if [[ "$KEYSTONE_CATALOG_BACKEND" = 'sql' ]]; then
Bartosz Górski0abde392014-02-28 14:15:19 +0100521
Dean Troyer188493d2014-07-25 15:54:11 -0500522 local neutron_service=$(get_or_create_service "neutron" \
Bartosz Górski0abde392014-02-28 14:15:19 +0100523 "network" "Neutron Service")
Dean Troyer188493d2014-07-25 15:54:11 -0500524 get_or_create_endpoint $neutron_service \
Bartosz Górski0abde392014-02-28 14:15:19 +0100525 "$REGION_NAME" \
Rob Crittenden18d47782014-03-19 17:47:42 -0400526 "$Q_PROTOCOL://$SERVICE_HOST:$Q_PORT/" \
527 "$Q_PROTOCOL://$SERVICE_HOST:$Q_PORT/" \
528 "$Q_PROTOCOL://$SERVICE_HOST:$Q_PORT/"
Mark McClainb05c8762013-07-06 23:29:39 -0400529 fi
530 fi
531}
532
Ian Wienandaee18c72014-02-21 15:35:08 +1100533function create_neutron_initial_network {
Steve Martinelli19685422014-01-24 13:02:26 -0600534 TENANT_ID=$(openstack project list | grep " demo " | get_field 1)
DennyZhang23178a92013-10-22 17:07:32 -0500535 die_if_not_set $LINENO TENANT_ID "Failure retrieving TENANT_ID for demo"
Mark McClainb05c8762013-07-06 23:29:39 -0400536
Sean Dague2f8e08b2014-12-05 08:31:16 -0500537 if is_provider_network; then
Satoru Moriyaaf9b2512014-09-01 20:43:08 +0900538 die_if_not_set $LINENO PHYSICAL_NETWORK "You must specify the PHYSICAL_NETWORK"
Sean M. Collins5ec6f8f2014-05-14 17:01:03 -0400539 die_if_not_set $LINENO PROVIDER_NETWORK_TYPE "You must specifiy the PROVIDER_NETWORK_TYPE"
Satoru Moriyaaf9b2512014-09-01 20:43:08 +0900540 NET_ID=$(neutron net-create $PHYSICAL_NETWORK --tenant_id $TENANT_ID --provider:network_type $PROVIDER_NETWORK_TYPE --provider:physical_network "$PHYSICAL_NETWORK" ${SEGMENTATION_ID:+--provider:segmentation_id $SEGMENTATION_ID} --shared | grep ' id ' | get_field 2)
Zhongyue Luo2548e6f2014-12-18 15:57:31 +0800541
542 if [[ "$IP_VERSION" =~ 4.* ]]; then
543 SUBNET_ID=$(neutron subnet-create --tenant_id $TENANT_ID --ip_version 4 ${ALLOCATION_POOL:+--allocation-pool $ALLOCATION_POOL} --name $PROVIDER_SUBNET_NAME --gateway $NETWORK_GATEWAY $NET_ID $FIXED_RANGE | grep ' id ' | get_field 2)
544 fi
545
546 if [[ "$IP_VERSION" =~ .*6 ]]; then
547 SUBNET_V6_ID=$(neutron subnet-create --tenant_id $TENANT_ID --ip_version 6 --ipv6-address-mode slaac --gateway $V6_NETWORK_GATEWAY --name $PROVIDER_SUBNET_NAME_V6 $NET_ID $FIXED_RANGE_V6 | grep 'id' | get_field 2)
548 fi
549
Sean M. Collins5ec6f8f2014-05-14 17:01:03 -0400550 sudo ip link set $OVS_PHYSICAL_BRIDGE up
551 sudo ip link set br-int up
552 sudo ip link set $PUBLIC_INTERFACE up
Mark McClainb05c8762013-07-06 23:29:39 -0400553 else
Dirk Mueller25049cd2014-01-09 13:53:52 +0100554 NET_ID=$(neutron net-create --tenant-id $TENANT_ID "$PRIVATE_NETWORK_NAME" | grep ' id ' | get_field 2)
DennyZhang23178a92013-10-22 17:07:32 -0500555 die_if_not_set $LINENO NET_ID "Failure creating NET_ID for $PHYSICAL_NETWORK $TENANT_ID"
John Davidge21529a52014-06-30 09:55:11 -0400556
557 if [[ "$IP_VERSION" =~ 4.* ]]; then
558 # Create IPv4 private subnet
559 SUBNET_ID=$(_neutron_create_private_subnet_v4)
560 fi
561
562 if [[ "$IP_VERSION" =~ .*6 ]]; then
563 # Create IPv6 private subnet
564 IPV6_SUBNET_ID=$(_neutron_create_private_subnet_v6)
565 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400566 fi
567
568 if [[ "$Q_L3_ENABLED" == "True" ]]; then
569 # Create a router, and add the private subnet as one of its interfaces
570 if [[ "$Q_L3_ROUTER_PER_TENANT" == "True" ]]; then
571 # create a tenant-owned router.
Dirk Mueller25049cd2014-01-09 13:53:52 +0100572 ROUTER_ID=$(neutron router-create --tenant-id $TENANT_ID $Q_ROUTER_NAME | grep ' id ' | get_field 2)
DennyZhang23178a92013-10-22 17:07:32 -0500573 die_if_not_set $LINENO ROUTER_ID "Failure creating ROUTER_ID for $TENANT_ID $Q_ROUTER_NAME"
Mark McClainb05c8762013-07-06 23:29:39 -0400574 else
575 # Plugin only supports creating a single router, which should be admin owned.
576 ROUTER_ID=$(neutron router-create $Q_ROUTER_NAME | grep ' id ' | get_field 2)
DennyZhang23178a92013-10-22 17:07:32 -0500577 die_if_not_set $LINENO ROUTER_ID "Failure creating ROUTER_ID for $Q_ROUTER_NAME"
Mark McClainb05c8762013-07-06 23:29:39 -0400578 fi
John Davidge21529a52014-06-30 09:55:11 -0400579
Mark McClainb05c8762013-07-06 23:29:39 -0400580 # Create an external network, and a subnet. Configure the external network as router gw
YAMAMOTO Takashi6a633fd2014-07-23 12:02:18 +0900581 if [ "$Q_USE_PROVIDERNET_FOR_PUBLIC" = "True" ]; then
582 EXT_NET_ID=$(neutron net-create "$PUBLIC_NETWORK_NAME" -- --router:external=True --provider:network_type=flat --provider:physical_network=${PUBLIC_PHYSICAL_NETWORK} | grep ' id ' | get_field 2)
583 else
584 EXT_NET_ID=$(neutron net-create "$PUBLIC_NETWORK_NAME" -- --router:external=True | grep ' id ' | get_field 2)
585 fi
DennyZhang23178a92013-10-22 17:07:32 -0500586 die_if_not_set $LINENO EXT_NET_ID "Failure creating EXT_NET_ID for $PUBLIC_NETWORK_NAME"
Mark McClainb05c8762013-07-06 23:29:39 -0400587
John Davidge21529a52014-06-30 09:55:11 -0400588 if [[ "$IP_VERSION" =~ 4.* ]]; then
589 # Configure router for IPv4 public access
590 _neutron_configure_router_v4
591 fi
YAMAMOTO Takashi0f18c232014-09-12 23:44:58 +0900592
John Davidge21529a52014-06-30 09:55:11 -0400593 if [[ "$IP_VERSION" =~ .*6 ]]; then
594 # Configure router for IPv6 public access
595 _neutron_configure_router_v6
Mark McClainb05c8762013-07-06 23:29:39 -0400596 fi
Sean Dague3bdb9222013-10-22 08:36:16 -0400597 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400598}
599
600# init_neutron() - Initialize databases, etc.
Ian Wienandaee18c72014-02-21 15:35:08 +1100601function init_neutron {
Ihar Hrachyshka157c84b2014-10-06 13:29:39 +0200602 recreate_database $Q_DB_NAME
Salvatore Orlandodd649882013-08-05 08:56:17 -0700603 # Run Neutron db migrations
604 $NEUTRON_BIN_DIR/neutron-db-manage --config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE upgrade head
Doug Wiegleyf9512d62014-12-15 10:23:20 -0800605 for svc in fwaas lbaas vpnaas; do
606 if [ "$svc" = "vpnaas" ]; then
607 q_svc="q-vpn"
608 else
609 q_svc="q-$svc"
610 fi
611 if is_service_enabled $q_svc; then
612 $NEUTRON_BIN_DIR/neutron-db-manage --service $svc --config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE upgrade head
613 fi
614 done
Mark McClainb05c8762013-07-06 23:29:39 -0400615}
616
617# install_neutron() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100618function install_neutron {
Mark McClainb05c8762013-07-06 23:29:39 -0400619 git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH
620 setup_develop $NEUTRON_DIR
Kyle Mestery20b839f2014-12-08 06:17:27 +0000621 if is_service_enabled q-fwaas; then
622 git_clone $NEUTRON_FWAAS_REPO $NEUTRON_FWAAS_DIR $NEUTRON_FWAAS_BRANCH
623 setup_develop $NEUTRON_FWAAS_DIR
624 fi
625 if is_service_enabled q-lbaas; then
626 git_clone $NEUTRON_LBAAS_REPO $NEUTRON_LBAAS_DIR $NEUTRON_LBAAS_BRANCH
627 setup_develop $NEUTRON_LBAAS_DIR
628 fi
629 if is_service_enabled q-vpn; then
630 git_clone $NEUTRON_VPNAAS_REPO $NEUTRON_VPNAAS_DIR $NEUTRON_VPNAAS_BRANCH
631 setup_develop $NEUTRON_VPNAAS_DIR
632 fi
Mate Lakat6df64892014-10-17 13:09:49 +0200633
634 if [ "$VIRT_DRIVER" == 'xenserver' ]; then
635 local dom0_ip
636 dom0_ip=$(echo "$XENAPI_CONNECTION_URL" | cut -d "/" -f 3-)
637
638 local ssh_dom0
639 ssh_dom0="sudo -u $DOMZERO_USER ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null root@$dom0_ip"
640
641 # Find where the plugins should go in dom0
642 local xen_functions
643 xen_functions=$(cat $TOP_DIR/tools/xen/functions)
644 local plugin_dir
645 plugin_dir=$($ssh_dom0 "$xen_functions; set -eux; xapi_plugin_location")
646
647 # install neutron plugins to dom0
648 tar -czf - -C $NEUTRON_DIR/neutron/plugins/openvswitch/agent/xenapi/etc/xapi.d/plugins/ ./ |
649 $ssh_dom0 "tar -xzf - -C $plugin_dir && chmod a+x $plugin_dir/*"
650 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400651}
652
653# install_neutronclient() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100654function install_neutronclient {
Sean Daguee08ab102014-11-13 17:09:28 -0500655 if use_library_from_git "python-neutronclient"; then
656 git_clone_by_name "python-neutronclient"
657 setup_dev_lib "python-neutronclient"
658 sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-neutronclient"]}/tools/,/etc/bash_completion.d/}neutron.bash_completion
Sean Dague5cb19062014-11-01 01:37:45 +0100659 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400660}
661
662# install_neutron_agent_packages() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100663function install_neutron_agent_packages {
Robert Li72b3e442014-07-17 15:04:52 -0400664 # radvd doesn't come with the OS. Install it if the l3 service is enabled.
665 if is_service_enabled q-l3; then
666 install_package radvd
667 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400668 # install packages that are specific to plugin agent(s)
669 if is_service_enabled q-agt q-dhcp q-l3; then
670 neutron_plugin_install_agent_packages
671 fi
672
673 if is_service_enabled q-lbaas; then
Sean Dague3bdb9222013-10-22 08:36:16 -0400674 neutron_agent_lbaas_install_agent_packages
Mark McClainb05c8762013-07-06 23:29:39 -0400675 fi
676}
677
678# Start running processes, including screen
Ian Wienandaee18c72014-02-21 15:35:08 +1100679function start_neutron_service_and_check {
Adam Gandelman7614d212014-08-11 14:27:50 -0700680 local cfg_file_options="$(determine_config_files neutron-server)"
Rob Crittenden18d47782014-03-19 17:47:42 -0400681 local service_port=$Q_PORT
682 local service_protocol=$Q_PROTOCOL
683 if is_service_enabled tls-proxy; then
684 service_port=$Q_PORT_INT
685 service_protocol="http"
686 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400687 # Start the Neutron service
Chris Dent2f27a0e2014-09-09 13:46:02 +0100688 run_process q-svc "python $NEUTRON_BIN_DIR/neutron-server $cfg_file_options"
Mark McClainb05c8762013-07-06 23:29:39 -0400689 echo "Waiting for Neutron to start..."
Rob Crittenden18d47782014-03-19 17:47:42 -0400690 if is_ssl_enabled_service "neutron"; then
691 ssl_ca="--ca-certificate=${SSL_BUNDLE_FILE}"
692 fi
693 if ! timeout $SERVICE_TIMEOUT sh -c "while ! wget ${ssl_ca} --no-proxy -q -O- $service_protocol://$Q_HOST:$service_port; do sleep 1; done"; then
Sean Dague3bdb9222013-10-22 08:36:16 -0400694 die $LINENO "Neutron did not start"
Mark McClainb05c8762013-07-06 23:29:39 -0400695 fi
Rob Crittenden18d47782014-03-19 17:47:42 -0400696 # Start proxy if enabled
697 if is_service_enabled tls-proxy; then
698 start_tls_proxy '*' $Q_PORT $Q_HOST $Q_PORT_INT &
699 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400700}
701
702# Start running processes, including screen
Ian Wienandaee18c72014-02-21 15:35:08 +1100703function start_neutron_agents {
Mark McClainb05c8762013-07-06 23:29:39 -0400704 # Start up the neutron agents if enabled
Chris Dent2f27a0e2014-09-09 13:46:02 +0100705 run_process q-agt "python $AGENT_BINARY --config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE"
706 run_process q-dhcp "python $AGENT_DHCP_BINARY --config-file $NEUTRON_CONF --config-file=$Q_DHCP_CONF_FILE"
Nachi Ueno584750f2013-07-15 18:22:21 -0700707
Sean M. Collins5ec6f8f2014-05-14 17:01:03 -0400708 if is_provider_network; then
Zhongyue Luo56b7efb2014-12-16 11:36:49 +0800709 sudo ovs-vsctl --no-wait -- --may-exist add-port $OVS_PHYSICAL_BRIDGE $PUBLIC_INTERFACE
Sean M. Collins5ec6f8f2014-05-14 17:01:03 -0400710 sudo ip link set $OVS_PHYSICAL_BRIDGE up
711 sudo ip link set br-int up
712 sudo ip link set $PUBLIC_INTERFACE up
yunhong jiangae9ee6b2014-10-08 07:01:02 -0700713 if is_ironic_hardware; then
714 for IP in $(ip addr show dev $PUBLIC_INTERFACE | grep ' inet ' | awk '{print $2}'); do
715 sudo ip addr del $IP dev $PUBLIC_INTERFACE
716 sudo ip addr add $IP dev $OVS_PHYSICAL_BRIDGE
717 done
718 sudo route add -net $FIXED_RANGE gw $NETWORK_GATEWAY dev $OVS_PHYSICAL_BRIDGE
719 fi
Sean M. Collins5ec6f8f2014-05-14 17:01:03 -0400720 fi
721
Ravi Chunduru95c93e22013-07-16 04:18:47 -0700722 if is_service_enabled q-vpn; then
Chris Dent2f27a0e2014-09-09 13:46:02 +0100723 run_process q-vpn "$AGENT_VPN_BINARY $(determine_config_files neutron-vpn-agent)"
Ravi Chunduru95c93e22013-07-16 04:18:47 -0700724 else
Chris Dent2f27a0e2014-09-09 13:46:02 +0100725 run_process q-l3 "python $AGENT_L3_BINARY $(determine_config_files neutron-l3-agent)"
Ravi Chunduru95c93e22013-07-16 04:18:47 -0700726 fi
727
Chris Dent2f27a0e2014-09-09 13:46:02 +0100728 run_process q-meta "python $AGENT_META_BINARY --config-file $NEUTRON_CONF --config-file=$Q_META_CONF_FILE"
Mark McClainb05c8762013-07-06 23:29:39 -0400729
730 if [ "$VIRT_DRIVER" = 'xenserver' ]; then
731 # For XenServer, start an agent for the domU openvswitch
Chris Dent2f27a0e2014-09-09 13:46:02 +0100732 run_process q-domua "python $AGENT_BINARY --config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE.domU"
Mark McClainb05c8762013-07-06 23:29:39 -0400733 fi
734
735 if is_service_enabled q-lbaas; then
Chris Dent2f27a0e2014-09-09 13:46:02 +0100736 run_process q-lbaas "python $AGENT_LBAAS_BINARY --config-file $NEUTRON_CONF --config-file=$LBAAS_AGENT_CONF_FILENAME"
Mark McClainb05c8762013-07-06 23:29:39 -0400737 fi
Emilien Macchi40546f72013-09-24 15:10:25 +0200738
739 if is_service_enabled q-metering; then
Chris Dent2f27a0e2014-09-09 13:46:02 +0100740 run_process q-metering "python $AGENT_METERING_BINARY --config-file $NEUTRON_CONF --config-file $METERING_AGENT_CONF_FILENAME"
Emilien Macchi40546f72013-09-24 15:10:25 +0200741 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400742}
743
744# stop_neutron() - Stop running processes (non-screen)
Ian Wienandaee18c72014-02-21 15:35:08 +1100745function stop_neutron {
Mark McClainb05c8762013-07-06 23:29:39 -0400746 if is_service_enabled q-dhcp; then
747 pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }')
748 [ ! -z "$pid" ] && sudo kill -9 $pid
749 fi
750 if is_service_enabled q-meta; then
Jakub Libosvar1f763282014-01-28 23:01:38 +0100751 sudo pkill -9 -f neutron-ns-metadata-proxy || :
Mark McClainb05c8762013-07-06 23:29:39 -0400752 fi
Akihiro Motokiedddb1f2013-12-09 20:21:06 +0900753
754 if is_service_enabled q-lbaas; then
755 neutron_lbaas_stop
756 fi
757 if is_service_enabled q-fwaas; then
758 neutron_fwaas_stop
759 fi
760 if is_service_enabled q-vpn; then
761 neutron_vpn_stop
762 fi
763 if is_service_enabled q-metering; then
764 neutron_metering_stop
765 fi
Mark McClainb05c8762013-07-06 23:29:39 -0400766}
767
768# cleanup_neutron() - Remove residual data files, anything left over from previous
769# runs that a clean run would need to clean up
Ian Wienandaee18c72014-02-21 15:35:08 +1100770function cleanup_neutron {
gong yong sheng1eb4c6a2014-12-24 09:21:01 +0800771 if is_provider_network && is_ironic_hardware; then
yunhong jiangae9ee6b2014-10-08 07:01:02 -0700772 for IP in $(ip addr show dev $OVS_PHYSICAL_BRIDGE | grep ' inet ' | awk '{print $2}'); do
773 sudo ip addr del $IP dev $OVS_PHYSICAL_BRIDGE
774 sudo ip addr add $IP dev $PUBLIC_INTERFACE
775 done
776 sudo route del -net $FIXED_RANGE gw $NETWORK_GATEWAY dev $OVS_PHYSICAL_BRIDGE
777 fi
778
Mark McClainb05c8762013-07-06 23:29:39 -0400779 if is_neutron_ovs_base_plugin; then
780 neutron_ovs_base_cleanup
781 fi
782
783 # delete all namespaces created by neutron
Brian Haleyeea76212014-06-27 11:45:50 -0400784 for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|qlbaas|fip|snat)-[0-9a-f-]*'); do
Mark McClainb05c8762013-07-06 23:29:39 -0400785 sudo ip netns delete ${ns}
786 done
787}
788
789# _configure_neutron_common()
790# Set common config for all neutron server and agents.
791# This MUST be called before other ``_configure_neutron_*`` functions.
Ian Wienandaee18c72014-02-21 15:35:08 +1100792function _configure_neutron_common {
Mark McClainb05c8762013-07-06 23:29:39 -0400793 # Put config files in ``NEUTRON_CONF_DIR`` for everyone to find
794 if [[ ! -d $NEUTRON_CONF_DIR ]]; then
795 sudo mkdir -p $NEUTRON_CONF_DIR
796 fi
797 sudo chown $STACK_USER $NEUTRON_CONF_DIR
798
799 cp $NEUTRON_DIR/etc/neutron.conf $NEUTRON_CONF
800
801 # Set plugin-specific variables ``Q_DB_NAME``, ``Q_PLUGIN_CLASS``.
802 # For main plugin config file, set ``Q_PLUGIN_CONF_PATH``, ``Q_PLUGIN_CONF_FILENAME``.
803 # For addition plugin config files, set ``Q_PLUGIN_EXTRA_CONF_PATH``,
804 # ``Q_PLUGIN_EXTRA_CONF_FILES``. For example:
Adam Spierscb961592013-10-05 12:11:07 +0100805 #
Mark McClainb05c8762013-07-06 23:29:39 -0400806 # ``Q_PLUGIN_EXTRA_CONF_FILES=(file1, file2)``
807 neutron_plugin_configure_common
808
sbauzae2c4ee22013-08-29 17:29:46 +0200809 if [[ "$Q_PLUGIN_CONF_PATH" == '' || "$Q_PLUGIN_CONF_FILENAME" == '' || "$Q_PLUGIN_CLASS" == '' ]]; then
Mark McClainb05c8762013-07-06 23:29:39 -0400810 die $LINENO "Neutron plugin not set.. exiting"
811 fi
812
813 # If needed, move config file from ``$NEUTRON_DIR/etc/neutron`` to ``NEUTRON_CONF_DIR``
814 mkdir -p /$Q_PLUGIN_CONF_PATH
815 Q_PLUGIN_CONF_FILE=$Q_PLUGIN_CONF_PATH/$Q_PLUGIN_CONF_FILENAME
816 cp $NEUTRON_DIR/$Q_PLUGIN_CONF_FILE /$Q_PLUGIN_CONF_FILE
817
Ihar Hrachyshkab816e5d2014-07-21 13:53:50 +0200818 iniset $NEUTRON_CONF database connection `database_connection_url $Q_DB_NAME`
Mark McClainb05c8762013-07-06 23:29:39 -0400819 iniset $NEUTRON_CONF DEFAULT state_path $DATA_DIR/neutron
salvatoree4e535b2014-10-29 18:22:46 +0100820 iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG
Mark McClainb05c8762013-07-06 23:29:39 -0400821 # If addition config files are set, make sure their path name is set as well
822 if [[ ${#Q_PLUGIN_EXTRA_CONF_FILES[@]} > 0 && $Q_PLUGIN_EXTRA_CONF_PATH == '' ]]; then
823 die $LINENO "Neutron additional plugin config not set.. exiting"
824 fi
825
826 # If additional config files exist, copy them over to neutron configuration
827 # directory
828 if [[ $Q_PLUGIN_EXTRA_CONF_PATH != '' ]]; then
Mark McClainb05c8762013-07-06 23:29:39 -0400829 local f
830 for (( f=0; $f < ${#Q_PLUGIN_EXTRA_CONF_FILES[@]}; f+=1 )); do
831 Q_PLUGIN_EXTRA_CONF_FILES[$f]=$Q_PLUGIN_EXTRA_CONF_PATH/${Q_PLUGIN_EXTRA_CONF_FILES[$f]}
Mark McClainb05c8762013-07-06 23:29:39 -0400832 done
833 fi
834
Joe Gordonbee5c502013-08-30 13:48:08 -0400835 if [ "$VIRT_DRIVER" = 'fake' ]; then
836 # Disable arbitrary limits
837 iniset $NEUTRON_CONF quotas quota_network -1
838 iniset $NEUTRON_CONF quotas quota_subnet -1
839 iniset $NEUTRON_CONF quotas quota_port -1
840 iniset $NEUTRON_CONF quotas quota_security_group -1
841 iniset $NEUTRON_CONF quotas quota_security_group_rule -1
842 fi
843
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700844 # Format logging
845 if [ "$LOG_COLOR" == "True" ] && [ "$SYSLOG" == "False" ]; then
Salvatore Orlandobc7f6432013-11-25 10:11:14 -0800846 setup_colorized_logging $NEUTRON_CONF DEFAULT project_id
venkata anil9b1df572015-01-15 07:38:22 +0000847 else
848 # Show user_name and project_name by default like in nova
849 iniset $NEUTRON_CONF DEFAULT logging_context_format_string "%(asctime)s.%(msecs)03d %(levelname)s %(name)s [%(request_id)s %(user_name)s %(project_name)s] %(instance)s%(message)s"
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700850 fi
851
Rob Crittenden18d47782014-03-19 17:47:42 -0400852 if is_service_enabled tls-proxy; then
853 # Set the service port for a proxy to take the original
854 iniset $NEUTRON_CONF DEFAULT bind_port "$Q_PORT_INT"
855 fi
856
857 if is_ssl_enabled_service "nova"; then
858 iniset $NEUTRON_CONF DEFAULT nova_ca_certificates_file "$SSL_BUNDLE_FILE"
859 fi
860
861 if is_ssl_enabled_service "neutron"; then
862 ensure_certificates NEUTRON
863
864 iniset $NEUTRON_CONF DEFAULT use_ssl True
865 iniset $NEUTRON_CONF DEFAULT ssl_cert_file "$NEUTRON_SSL_CERT"
866 iniset $NEUTRON_CONF DEFAULT ssl_key_file "$NEUTRON_SSL_KEY"
867 fi
868
Mark McClainb05c8762013-07-06 23:29:39 -0400869 _neutron_setup_rootwrap
870}
871
Ian Wienandaee18c72014-02-21 15:35:08 +1100872function _configure_neutron_debug_command {
Mark McClainb05c8762013-07-06 23:29:39 -0400873 if [[ "$Q_USE_DEBUG_COMMAND" != "True" ]]; then
874 return
875 fi
876
877 cp $NEUTRON_DIR/etc/l3_agent.ini $NEUTRON_TEST_CONFIG_FILE
878
879 iniset $NEUTRON_TEST_CONFIG_FILE DEFAULT verbose False
880 iniset $NEUTRON_TEST_CONFIG_FILE DEFAULT debug False
881 iniset $NEUTRON_TEST_CONFIG_FILE DEFAULT use_namespaces $Q_USE_NAMESPACE
Mark McClainb05c8762013-07-06 23:29:39 -0400882 iniset $NEUTRON_TEST_CONFIG_FILE agent root_helper "$Q_RR_COMMAND"
883
Mark McClainb05c8762013-07-06 23:29:39 -0400884 _neutron_setup_interface_driver $NEUTRON_TEST_CONFIG_FILE
885
886 neutron_plugin_configure_debug_command
887}
888
Ian Wienandaee18c72014-02-21 15:35:08 +1100889function _configure_neutron_dhcp_agent {
Mark McClainb05c8762013-07-06 23:29:39 -0400890
891 cp $NEUTRON_DIR/etc/dhcp_agent.ini $Q_DHCP_CONF_FILE
892
893 iniset $Q_DHCP_CONF_FILE DEFAULT verbose True
Ben Nemec03997942013-08-10 09:56:16 -0500894 iniset $Q_DHCP_CONF_FILE DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Mark McClainb05c8762013-07-06 23:29:39 -0400895 iniset $Q_DHCP_CONF_FILE DEFAULT use_namespaces $Q_USE_NAMESPACE
896 iniset $Q_DHCP_CONF_FILE DEFAULT root_helper "$Q_RR_COMMAND"
897
Tan Lin27a196e2014-10-31 15:44:34 +0800898 if ! is_service_enabled q-l3; then
899 if [[ "$ENABLE_ISOLATED_METADATA" = "True" ]]; then
900 iniset $Q_DHCP_CONF_FILE DEFAULT enable_isolated_metadata $ENABLE_ISOLATED_METADATA
901 iniset $Q_DHCP_CONF_FILE DEFAULT enable_metadata_network $ENABLE_METADATA_NETWORK
902 else
903 if [[ "$ENABLE_METADATA_NETWORK" = "True" ]]; then
904 die "$LINENO" "Enable isolated metadata is a must for metadata network"
905 fi
906 fi
907 fi
908
Mark McClainb05c8762013-07-06 23:29:39 -0400909 _neutron_setup_interface_driver $Q_DHCP_CONF_FILE
910
911 neutron_plugin_configure_dhcp_agent
912}
913
Ian Wienandaee18c72014-02-21 15:35:08 +1100914function _configure_neutron_l3_agent {
Paul Michali746dcee2014-04-02 19:12:22 +0000915 local cfg_file
Mark McClainb05c8762013-07-06 23:29:39 -0400916 Q_L3_ENABLED=True
917 # for l3-agent, only use per tenant router if we have namespaces
918 Q_L3_ROUTER_PER_TENANT=$Q_USE_NAMESPACE
Nachi Ueno69b3ff62013-06-07 10:28:33 -0700919
Paul Michali746dcee2014-04-02 19:12:22 +0000920 if is_service_enabled q-vpn; then
Ihar Hrachyshka5893cc72014-12-22 11:49:42 +0100921 cp $NEUTRON_VPNAAS_DIR/etc/vpn_agent.ini $Q_VPN_CONF_FILE
Paul Michali746dcee2014-04-02 19:12:22 +0000922 fi
923
Mark McClainb05c8762013-07-06 23:29:39 -0400924 cp $NEUTRON_DIR/etc/l3_agent.ini $Q_L3_CONF_FILE
925
926 iniset $Q_L3_CONF_FILE DEFAULT verbose True
Ben Nemec03997942013-08-10 09:56:16 -0500927 iniset $Q_L3_CONF_FILE DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Mark McClainb05c8762013-07-06 23:29:39 -0400928 iniset $Q_L3_CONF_FILE DEFAULT use_namespaces $Q_USE_NAMESPACE
929 iniset $Q_L3_CONF_FILE DEFAULT root_helper "$Q_RR_COMMAND"
930
Mark McClainb05c8762013-07-06 23:29:39 -0400931 _neutron_setup_interface_driver $Q_L3_CONF_FILE
932
933 neutron_plugin_configure_l3_agent
934}
935
Ian Wienandaee18c72014-02-21 15:35:08 +1100936function _configure_neutron_metadata_agent {
Mark McClainb05c8762013-07-06 23:29:39 -0400937 cp $NEUTRON_DIR/etc/metadata_agent.ini $Q_META_CONF_FILE
938
939 iniset $Q_META_CONF_FILE DEFAULT verbose True
Ben Nemec03997942013-08-10 09:56:16 -0500940 iniset $Q_META_CONF_FILE DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Mark McClainb05c8762013-07-06 23:29:39 -0400941 iniset $Q_META_CONF_FILE DEFAULT nova_metadata_ip $Q_META_DATA_IP
942 iniset $Q_META_CONF_FILE DEFAULT root_helper "$Q_RR_COMMAND"
943
Hirofumi Ichiharacc571552014-09-25 20:00:29 +0900944 # Configures keystone for metadata_agent
945 # The third argument "True" sets auth_url needed to communicate with keystone
946 _neutron_setup_keystone $Q_META_CONF_FILE DEFAULT True
Maru Newbybf10ac52013-08-10 21:27:54 +0000947
Mark McClainb05c8762013-07-06 23:29:39 -0400948}
949
Dina Belova58adaa62014-07-11 18:18:12 +0400950function _configure_neutron_ceilometer_notifications {
JordanPd4d4a342014-09-15 09:26:53 +0000951 iniset $NEUTRON_CONF DEFAULT notification_driver messaging
Dina Belova58adaa62014-07-11 18:18:12 +0400952}
953
Ian Wienandaee18c72014-02-21 15:35:08 +1100954function _configure_neutron_lbaas {
Mark McClainb05c8762013-07-06 23:29:39 -0400955 neutron_agent_lbaas_configure_common
956 neutron_agent_lbaas_configure_agent
957}
958
Ian Wienandaee18c72014-02-21 15:35:08 +1100959function _configure_neutron_metering {
Emilien Macchi40546f72013-09-24 15:10:25 +0200960 neutron_agent_metering_configure_common
961 neutron_agent_metering_configure_agent
962}
963
Ian Wienandaee18c72014-02-21 15:35:08 +1100964function _configure_neutron_fwaas {
Ravi Chunduru95c93e22013-07-16 04:18:47 -0700965 neutron_fwaas_configure_common
966 neutron_fwaas_configure_driver
967}
968
Ian Wienandaee18c72014-02-21 15:35:08 +1100969function _configure_neutron_vpn {
Nachi Ueno69b3ff62013-06-07 10:28:33 -0700970 neutron_vpn_install_agent_packages
971 neutron_vpn_configure_common
Nachi Ueno69b3ff62013-06-07 10:28:33 -0700972}
973
Brian Haleyeea76212014-06-27 11:45:50 -0400974function _configure_dvr {
975 iniset $NEUTRON_CONF DEFAULT router_distributed True
976 iniset $Q_L3_CONF_FILE DEFAULT agent_mode $Q_DVR_MODE
977}
978
979
Mark McClainb05c8762013-07-06 23:29:39 -0400980# _configure_neutron_plugin_agent() - Set config files for neutron plugin agent
981# It is called when q-agt is enabled.
Ian Wienandaee18c72014-02-21 15:35:08 +1100982function _configure_neutron_plugin_agent {
Mark McClainb05c8762013-07-06 23:29:39 -0400983 # Specify the default root helper prior to agent configuration to
984 # ensure that an agent's configuration can override the default
985 iniset /$Q_PLUGIN_CONF_FILE agent root_helper "$Q_RR_COMMAND"
986 iniset $NEUTRON_CONF DEFAULT verbose True
Ben Nemec03997942013-08-10 09:56:16 -0500987 iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Mark McClainb05c8762013-07-06 23:29:39 -0400988
989 # Configure agent for plugin
990 neutron_plugin_configure_plugin_agent
991}
992
993# _configure_neutron_service() - Set config files for neutron service
994# It is called when q-svc is enabled.
Ian Wienandaee18c72014-02-21 15:35:08 +1100995function _configure_neutron_service {
Mark McClainb05c8762013-07-06 23:29:39 -0400996 Q_API_PASTE_FILE=$NEUTRON_CONF_DIR/api-paste.ini
997 Q_POLICY_FILE=$NEUTRON_CONF_DIR/policy.json
998
999 cp $NEUTRON_DIR/etc/api-paste.ini $Q_API_PASTE_FILE
1000 cp $NEUTRON_DIR/etc/policy.json $Q_POLICY_FILE
1001
Kevin Benton08a5fcc2014-07-18 16:06:12 -07001002 # allow neutron user to administer neutron to match neutron account
1003 sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:neutron"/g' $Q_POLICY_FILE
1004
Mark McClainb05c8762013-07-06 23:29:39 -04001005 # Update either configuration file with plugin
1006 iniset $NEUTRON_CONF DEFAULT core_plugin $Q_PLUGIN_CLASS
1007
1008 if [[ $Q_SERVICE_PLUGIN_CLASSES != '' ]]; then
1009 iniset $NEUTRON_CONF DEFAULT service_plugins $Q_SERVICE_PLUGIN_CLASSES
1010 fi
1011
1012 iniset $NEUTRON_CONF DEFAULT verbose True
Ben Nemec03997942013-08-10 09:56:16 -05001013 iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Mark McClainb05c8762013-07-06 23:29:39 -04001014 iniset $NEUTRON_CONF DEFAULT policy_file $Q_POLICY_FILE
1015 iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips $Q_ALLOW_OVERLAPPING_IP
1016
1017 iniset $NEUTRON_CONF DEFAULT auth_strategy $Q_AUTH_STRATEGY
1018 _neutron_setup_keystone $NEUTRON_CONF keystone_authtoken
1019
Aaron Rosencea32b12014-03-04 16:20:14 -08001020 # Configuration for neutron notifations to nova.
Terry Wilsonf06c4432014-05-20 10:54:51 -05001021 iniset $NEUTRON_CONF DEFAULT notify_nova_on_port_status_changes $Q_NOTIFY_NOVA_PORT_STATUS_CHANGES
1022 iniset $NEUTRON_CONF DEFAULT notify_nova_on_port_data_changes $Q_NOTIFY_NOVA_PORT_DATA_CHANGES
Aaron Rosencea32b12014-03-04 16:20:14 -08001023 iniset $NEUTRON_CONF DEFAULT nova_url "$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST:$NOVA_SERVICE_PORT/v2"
Dirk Mueller5ca261a2014-04-04 22:48:02 +02001024 iniset $NEUTRON_CONF DEFAULT nova_admin_username nova
Aaron Rosencea32b12014-03-04 16:20:14 -08001025 iniset $NEUTRON_CONF DEFAULT nova_admin_password $SERVICE_PASSWORD
1026 ADMIN_TENANT_ID=$(openstack project list | awk "/ service / { print \$2 }")
1027 iniset $NEUTRON_CONF DEFAULT nova_admin_tenant_id $ADMIN_TENANT_ID
1028 iniset $NEUTRON_CONF DEFAULT nova_admin_auth_url "$KEYSTONE_SERVICE_PROTOCOL://$KEYSTONE_SERVICE_HOST:$KEYSTONE_AUTH_PORT/v2.0"
1029
Mark McClainb05c8762013-07-06 23:29:39 -04001030 # Configure plugin
1031 neutron_plugin_configure_service
1032}
1033
1034# Utility Functions
1035#------------------
1036
Isaku Yamahata9e136b42013-12-16 15:52:03 +09001037# _neutron_service_plugin_class_add() - add service plugin class
Ian Wienandaee18c72014-02-21 15:35:08 +11001038function _neutron_service_plugin_class_add {
Isaku Yamahata9e136b42013-12-16 15:52:03 +09001039 local service_plugin_class=$1
1040 if [[ $Q_SERVICE_PLUGIN_CLASSES == '' ]]; then
1041 Q_SERVICE_PLUGIN_CLASSES=$service_plugin_class
1042 elif [[ ! ,${Q_SERVICE_PLUGIN_CLASSES}, =~ ,${service_plugin_class}, ]]; then
1043 Q_SERVICE_PLUGIN_CLASSES="$Q_SERVICE_PLUGIN_CLASSES,$service_plugin_class"
1044 fi
1045}
1046
Ihar Hrachyshka5893cc72014-12-22 11:49:42 +01001047# _neutron_deploy_rootwrap_filters() - deploy rootwrap filters to $Q_CONF_ROOTWRAP_D (owned by root).
1048function _neutron_deploy_rootwrap_filters {
1049 local srcdir=$1
1050 mkdir -p -m 755 $Q_CONF_ROOTWRAP_D
1051 sudo cp -pr $srcdir/etc/neutron/rootwrap.d/* $Q_CONF_ROOTWRAP_D/
1052 sudo chown -R root:root $Q_CONF_ROOTWRAP_D
1053 sudo chmod 644 $Q_CONF_ROOTWRAP_D/*
1054}
1055
Mark McClainb05c8762013-07-06 23:29:39 -04001056# _neutron_setup_rootwrap() - configure Neutron's rootwrap
Ian Wienandaee18c72014-02-21 15:35:08 +11001057function _neutron_setup_rootwrap {
Mark McClainb05c8762013-07-06 23:29:39 -04001058 if [[ "$Q_USE_ROOTWRAP" == "False" ]]; then
1059 return
1060 fi
Mark McClainb05c8762013-07-06 23:29:39 -04001061 # Wipe any existing ``rootwrap.d`` files first
1062 Q_CONF_ROOTWRAP_D=$NEUTRON_CONF_DIR/rootwrap.d
1063 if [[ -d $Q_CONF_ROOTWRAP_D ]]; then
1064 sudo rm -rf $Q_CONF_ROOTWRAP_D
1065 fi
Ihar Hrachyshka5893cc72014-12-22 11:49:42 +01001066
1067 _neutron_deploy_rootwrap_filters $NEUTRON_DIR
1068
Mark McClainb05c8762013-07-06 23:29:39 -04001069 # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d``
1070 # location moved in newer versions, prefer new location
1071 if test -r $NEUTRON_DIR/etc/neutron/rootwrap.conf; then
Sean Dague3bdb9222013-10-22 08:36:16 -04001072 sudo cp -p $NEUTRON_DIR/etc/neutron/rootwrap.conf $Q_RR_CONF_FILE
Mark McClainb05c8762013-07-06 23:29:39 -04001073 else
Sean Dague3bdb9222013-10-22 08:36:16 -04001074 sudo cp -p $NEUTRON_DIR/etc/rootwrap.conf $Q_RR_CONF_FILE
Mark McClainb05c8762013-07-06 23:29:39 -04001075 fi
1076 sudo sed -e "s:^filters_path=.*$:filters_path=$Q_CONF_ROOTWRAP_D:" -i $Q_RR_CONF_FILE
1077 sudo chown root:root $Q_RR_CONF_FILE
1078 sudo chmod 0644 $Q_RR_CONF_FILE
1079 # Specify ``rootwrap.conf`` as first parameter to neutron-rootwrap
1080 ROOTWRAP_SUDOER_CMD="$NEUTRON_ROOTWRAP $Q_RR_CONF_FILE *"
1081
1082 # Set up the rootwrap sudoers for neutron
1083 TEMPFILE=`mktemp`
Stephan Renatuse578eff2013-11-19 13:31:04 +01001084 echo "$STACK_USER ALL=(root) NOPASSWD: $ROOTWRAP_SUDOER_CMD" >$TEMPFILE
Mark McClainb05c8762013-07-06 23:29:39 -04001085 chmod 0440 $TEMPFILE
1086 sudo chown root:root $TEMPFILE
1087 sudo mv $TEMPFILE /etc/sudoers.d/neutron-rootwrap
1088
1089 # Update the root_helper
1090 iniset $NEUTRON_CONF agent root_helper "$Q_RR_COMMAND"
1091}
1092
1093# Configures keystone integration for neutron service and agents
Ian Wienandaee18c72014-02-21 15:35:08 +11001094function _neutron_setup_keystone {
Mark McClainb05c8762013-07-06 23:29:39 -04001095 local conf_file=$1
1096 local section=$2
Hirofumi Ichiharacc571552014-09-25 20:00:29 +09001097 local use_auth_url=$3
1098
1099 # Configures keystone for metadata_agent
1100 # metadata_agent needs auth_url to communicate with keystone
1101 if [[ "$use_auth_url" == "True" ]]; then
1102 iniset $conf_file $section auth_url $KEYSTONE_SERVICE_URI/v2.0
1103 fi
Jamie Lennox3561d7f2014-05-21 17:18:43 +10001104
Brant Knudson05952372014-09-19 17:22:22 -05001105 create_neutron_cache_dir
1106 configure_auth_token_middleware $conf_file $Q_ADMIN_USERNAME $NEUTRON_AUTH_CACHE_DIR $section
Mark McClainb05c8762013-07-06 23:29:39 -04001107}
1108
Ian Wienandaee18c72014-02-21 15:35:08 +11001109function _neutron_setup_interface_driver {
Mark McClainb05c8762013-07-06 23:29:39 -04001110
1111 # ovs_use_veth needs to be set before the plugin configuration
1112 # occurs to allow plugins to override the setting.
1113 iniset $1 DEFAULT ovs_use_veth $Q_OVS_USE_VETH
1114
1115 neutron_plugin_setup_interface_driver $1
1116}
1117
John Davidge21529a52014-06-30 09:55:11 -04001118# Create private IPv4 subnet
1119function _neutron_create_private_subnet_v4 {
1120 local subnet_params="--tenant-id $TENANT_ID "
1121 subnet_params+="--ip_version 4 "
1122 subnet_params+="--gateway $NETWORK_GATEWAY "
1123 subnet_params+="--name $PRIVATE_SUBNET_NAME "
1124 subnet_params+="$NET_ID $FIXED_RANGE"
1125 local subnet_id=$(neutron subnet-create $subnet_params | grep ' id ' | get_field 2)
1126 die_if_not_set $LINENO subnet_id "Failure creating private IPv4 subnet for $TENANT_ID"
1127 echo $subnet_id
1128}
1129
1130# Create private IPv6 subnet
1131function _neutron_create_private_subnet_v6 {
1132 die_if_not_set $LINENO IPV6_RA_MODE "IPV6 RA Mode not set"
1133 die_if_not_set $LINENO IPV6_ADDRESS_MODE "IPV6 Address Mode not set"
1134 local ipv6_modes="--ipv6-ra-mode $IPV6_RA_MODE --ipv6-address-mode $IPV6_ADDRESS_MODE"
1135 local subnet_params="--tenant-id $TENANT_ID "
1136 subnet_params+="--ip_version 6 "
1137 subnet_params+="--gateway $IPV6_PRIVATE_NETWORK_GATEWAY "
1138 subnet_params+="--name $IPV6_PRIVATE_SUBNET_NAME "
1139 subnet_params+="$NET_ID $FIXED_RANGE_V6 $ipv6_modes"
1140 local ipv6_subnet_id=$(neutron subnet-create $subnet_params | grep ' id ' | get_field 2)
1141 die_if_not_set $LINENO ipv6_subnet_id "Failure creating private IPv6 subnet for $TENANT_ID"
1142 echo $ipv6_subnet_id
1143}
1144
1145# Create public IPv4 subnet
1146function _neutron_create_public_subnet_v4 {
1147 local subnet_params+="--ip_version 4 "
1148 subnet_params+="${Q_FLOATING_ALLOCATION_POOL:+--allocation-pool $Q_FLOATING_ALLOCATION_POOL} "
1149 subnet_params+="--gateway $PUBLIC_NETWORK_GATEWAY "
1150 subnet_params+="--name $PUBLIC_SUBNET_NAME "
1151 subnet_params+="$EXT_NET_ID $FLOATING_RANGE "
1152 subnet_params+="-- --enable_dhcp=False"
1153 local id_and_ext_gw_ip=$(neutron subnet-create $subnet_params | grep -e 'gateway_ip' -e ' id ')
1154 die_if_not_set $LINENO id_and_ext_gw_ip "Failure creating public IPv4 subnet"
1155 echo $id_and_ext_gw_ip
1156}
1157
1158# Create public IPv6 subnet
1159function _neutron_create_public_subnet_v6 {
1160 local subnet_params="--ip_version 6 "
1161 subnet_params+="--gateway $IPV6_PUBLIC_NETWORK_GATEWAY "
1162 subnet_params+="--name $IPV6_PUBLIC_SUBNET_NAME "
1163 subnet_params+="$EXT_NET_ID $IPV6_PUBLIC_RANGE "
1164 subnet_params+="-- --enable_dhcp=False"
1165 local ipv6_id_and_ext_gw_ip=$(neutron subnet-create $subnet_params | grep -e 'gateway_ip' -e ' id ')
1166 die_if_not_set $LINENO ipv6_id_and_ext_gw_ip "Failure creating an IPv6 public subnet"
1167 echo $ipv6_id_and_ext_gw_ip
1168}
1169
1170# Configure neutron router for IPv4 public access
1171function _neutron_configure_router_v4 {
1172 neutron router-interface-add $ROUTER_ID $SUBNET_ID
1173 # Create a public subnet on the external network
1174 local id_and_ext_gw_ip=$(_neutron_create_public_subnet_v4 $EXT_NET_ID)
1175 local ext_gw_ip=$(echo $id_and_ext_gw_ip | get_field 2)
1176 PUB_SUBNET_ID=$(echo $id_and_ext_gw_ip | get_field 5)
1177 # Configure the external network as the default router gateway
1178 neutron router-gateway-set $ROUTER_ID $EXT_NET_ID
1179
1180 # This logic is specific to using the l3-agent for layer 3
1181 if is_service_enabled q-l3; then
1182 # Configure and enable public bridge
1183 if is_neutron_ovs_base_plugin && [[ "$Q_USE_NAMESPACE" = "True" ]]; then
1184 local ext_gw_interface=$(_neutron_get_ext_gw_interface)
1185 local cidr_len=${FLOATING_RANGE#*/}
1186 sudo ip addr add $ext_gw_ip/$cidr_len dev $ext_gw_interface
1187 sudo ip link set $ext_gw_interface up
1188 ROUTER_GW_IP=`neutron port-list -c fixed_ips -c device_owner | grep router_gateway | awk -F '"' -v subnet_id=$PUB_SUBNET_ID '$4 == subnet_id { print $8; }'`
1189 die_if_not_set $LINENO ROUTER_GW_IP "Failure retrieving ROUTER_GW_IP"
1190 sudo route add -net $FIXED_RANGE gw $ROUTER_GW_IP
1191 fi
1192 _neutron_set_router_id
1193 fi
1194}
1195
1196# Configure neutron router for IPv6 public access
1197function _neutron_configure_router_v6 {
1198 neutron router-interface-add $ROUTER_ID $IPV6_SUBNET_ID
1199 # Create a public subnet on the external network
1200 local ipv6_id_and_ext_gw_ip=$(_neutron_create_public_subnet_v6 $EXT_NET_ID)
1201 local ipv6_ext_gw_ip=$(echo $ipv6_id_and_ext_gw_ip | get_field 2)
1202 local ipv6_pub_subnet_id=$(echo $ipv6_id_and_ext_gw_ip | get_field 5)
1203
1204 # If the external network has not already been set as the default router
1205 # gateway when configuring an IPv4 public subnet, do so now
1206 if [[ "$IP_VERSION" == "6" ]]; then
1207 neutron router-gateway-set $ROUTER_ID $EXT_NET_ID
1208 fi
1209
1210 # This logic is specific to using the l3-agent for layer 3
1211 if is_service_enabled q-l3; then
1212 local ipv6_router_gw_port
1213 # Ensure IPv6 forwarding is enabled on the host
1214 sudo sysctl -w net.ipv6.conf.all.forwarding=1
1215 # Configure and enable public bridge
1216 if [[ "$IP_VERSION" = "6" ]]; then
1217 # Override global IPV6_ROUTER_GW_IP with the true value from neutron
1218 IPV6_ROUTER_GW_IP=`neutron port-list -c fixed_ips -c device_owner | grep router_gateway | awk -F '"' -v subnet_id=$ipv6_pub_subnet_id '$4 == subnet_id { print $8; }'`
1219 die_if_not_set $LINENO IPV6_ROUTER_GW_IP "Failure retrieving IPV6_ROUTER_GW_IP"
1220 ipv6_router_gw_port=`neutron port-list -c id -c fixed_ips -c device_owner | grep router_gateway | awk -F '"' -v subnet_id=$ipv6_pub_subnet_id '$4 == subnet_id { print $1; }' | awk -F ' | ' '{ print $2; }'`
1221 die_if_not_set $LINENO ipv6_router_gw_port "Failure retrieving ipv6_router_gw_port"
1222 else
1223 ipv6_router_gw_port=`neutron port-list -c id -c fixed_ips -c device_owner | grep router_gateway | awk -F '"' -v subnet_id=$PUB_SUBNET_ID '$4 == subnet_id { print $1; }' | awk -F ' | ' '{ print $2; }'`
1224 die_if_not_set $LINENO ipv6_router_gw_port "Failure retrieving ipv6_router_gw_port"
1225 fi
1226
1227 # The ovs_base_configure_l3_agent function flushes the public
1228 # bridge's ip addresses, so turn IPv6 support in the host off
1229 # and then on to recover the public bridge's link local address
1230 sudo sysctl -w net.ipv6.conf.${PUBLIC_BRIDGE}.disable_ipv6=1
1231 sudo sysctl -w net.ipv6.conf.${PUBLIC_BRIDGE}.disable_ipv6=0
Sean M. Collinsfc094652014-12-09 11:36:53 -07001232 if ! ip -6 addr show dev $PUBLIC_BRIDGE | grep 'scope global'; then
1233 # Create an IPv6 ULA address for PUBLIC_BRIDGE if one is not present
1234 IPV6_BRIDGE_ULA=`uuidgen | sed s/-//g | cut -c 23- | sed -e "s/\(..\)\(....\)\(....\)/\1:\2:\3/"`
1235 sudo ip -6 addr add fd$IPV6_BRIDGE_ULA::1 dev $PUBLIC_BRIDGE
1236 fi
1237
John Davidge21529a52014-06-30 09:55:11 -04001238 if is_neutron_ovs_base_plugin && [[ "$Q_USE_NAMESPACE" = "True" ]]; then
1239 local ext_gw_interface=$(_neutron_get_ext_gw_interface)
1240 local ipv6_cidr_len=${IPV6_PUBLIC_RANGE#*/}
1241
1242 # Define router_ns based on whether DVR is enabled
1243 local router_ns=qrouter
1244 if [[ "$Q_DVR_MODE" == "dvr_snat" ]]; then
1245 router_ns=snat
1246 fi
1247
1248 # Configure interface for public bridge
1249 sudo ip -6 addr add $ipv6_ext_gw_ip/$ipv6_cidr_len dev $ext_gw_interface
1250
1251 # Wait until layer 3 agent has configured the gateway port on
1252 # the public bridge, then add gateway address to the interface
1253 # TODO (john-davidge) Remove once l3-agent supports dual-stack
1254 if [[ "$IP_VERSION" == "4+6" ]]; then
1255 if ! timeout $GATEWAY_TIMEOUT sh -c "until sudo ip netns exec $router_ns-$ROUTER_ID ip addr show qg-${ipv6_router_gw_port:0:11} | grep $ROUTER_GW_IP; do sleep 1; done"; then
1256 die $LINENO "Timeout retrieving ROUTER_GW_IP"
1257 fi
1258 # Configure the gateway port with the public IPv6 adress
1259 sudo ip netns exec $router_ns-$ROUTER_ID ip -6 addr add $IPV6_ROUTER_GW_IP/$ipv6_cidr_len dev qg-${ipv6_router_gw_port:0:11}
1260 # Add a default IPv6 route to the neutron router as the
1261 # l3-agent does not add one in the dual-stack case
1262 sudo ip netns exec $router_ns-$ROUTER_ID ip -6 route replace default via $ipv6_ext_gw_ip dev qg-${ipv6_router_gw_port:0:11}
1263 fi
1264 sudo ip -6 route add $FIXED_RANGE_V6 via $IPV6_ROUTER_GW_IP dev $ext_gw_interface
1265 fi
1266 _neutron_set_router_id
1267 fi
1268}
1269
1270# Explicitly set router id in l3 agent configuration
1271function _neutron_set_router_id {
1272 if [[ "$Q_USE_NAMESPACE" == "False" ]]; then
1273 iniset $Q_L3_CONF_FILE DEFAULT router_id $ROUTER_ID
1274 fi
1275}
1276
1277# Get ext_gw_interface depending on value of Q_USE_PUBLIC_VETH
1278function _neutron_get_ext_gw_interface {
1279 if [[ "$Q_USE_PUBLIC_VETH" == "True" ]]; then
1280 echo $Q_PUBLIC_VETH_EX
1281 else
1282 # Disable in-band as we are going to use local port
1283 # to communicate with VMs
1284 sudo ovs-vsctl set Bridge $PUBLIC_BRIDGE \
1285 other_config:disable-in-band=true
1286 echo $PUBLIC_BRIDGE
1287 fi
1288}
1289
Mark McClainb05c8762013-07-06 23:29:39 -04001290# Functions for Neutron Exercises
1291#--------------------------------
1292
Ian Wienandaee18c72014-02-21 15:35:08 +11001293function delete_probe {
Mark McClainb05c8762013-07-06 23:29:39 -04001294 local from_net="$1"
1295 net_id=`_get_net_id $from_net`
1296 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}'`
1297 neutron-debug --os-tenant-name admin --os-username admin probe-delete $probe_id
1298}
1299
Ian Wienandaee18c72014-02-21 15:35:08 +11001300function setup_neutron_debug {
Mark McClainb05c8762013-07-06 23:29:39 -04001301 if [[ "$Q_USE_DEBUG_COMMAND" == "True" ]]; then
1302 public_net_id=`_get_net_id $PUBLIC_NETWORK_NAME`
1303 neutron-debug --os-tenant-name admin --os-username admin --os-password $ADMIN_PASSWORD probe-create --device-owner compute $public_net_id
1304 private_net_id=`_get_net_id $PRIVATE_NETWORK_NAME`
1305 neutron-debug --os-tenant-name admin --os-username admin --os-password $ADMIN_PASSWORD probe-create --device-owner compute $private_net_id
1306 fi
1307}
1308
Ian Wienandaee18c72014-02-21 15:35:08 +11001309function teardown_neutron_debug {
Mark McClainb05c8762013-07-06 23:29:39 -04001310 delete_probe $PUBLIC_NETWORK_NAME
1311 delete_probe $PRIVATE_NETWORK_NAME
1312}
1313
Ian Wienandaee18c72014-02-21 15:35:08 +11001314function _get_net_id {
Mark McClainb05c8762013-07-06 23:29:39 -04001315 neutron --os-tenant-name admin --os-username admin --os-password $ADMIN_PASSWORD net-list | grep $1 | awk '{print $2}'
1316}
1317
Ian Wienandaee18c72014-02-21 15:35:08 +11001318function _get_probe_cmd_prefix {
Mark McClainb05c8762013-07-06 23:29:39 -04001319 local from_net="$1"
1320 net_id=`_get_net_id $from_net`
1321 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`
1322 echo "$Q_RR_COMMAND ip netns exec qprobe-$probe_id"
1323}
1324
Ian Wienandaee18c72014-02-21 15:35:08 +11001325function _ping_check_neutron {
Mark McClainb05c8762013-07-06 23:29:39 -04001326 local from_net=$1
1327 local ip=$2
1328 local timeout_sec=$3
1329 local expected=${4:-"True"}
1330 local check_command=""
1331 probe_cmd=`_get_probe_cmd_prefix $from_net`
1332 if [[ "$expected" = "True" ]]; then
1333 check_command="while ! $probe_cmd ping -w 1 -c 1 $ip; do sleep 1; done"
1334 else
1335 check_command="while $probe_cmd ping -w 1 -c 1 $ip; do sleep 1; done"
1336 fi
1337 if ! timeout $timeout_sec sh -c "$check_command"; then
1338 if [[ "$expected" = "True" ]]; then
1339 die $LINENO "[Fail] Couldn't ping server"
1340 else
1341 die $LINENO "[Fail] Could ping server"
1342 fi
1343 fi
1344}
1345
1346# ssh check
Ian Wienandaee18c72014-02-21 15:35:08 +11001347function _ssh_check_neutron {
Mark McClainb05c8762013-07-06 23:29:39 -04001348 local from_net=$1
1349 local key_file=$2
1350 local ip=$3
1351 local user=$4
1352 local timeout_sec=$5
1353 local probe_cmd = ""
1354 probe_cmd=`_get_probe_cmd_prefix $from_net`
1355 if ! timeout $timeout_sec sh -c "while ! $probe_cmd ssh -o StrictHostKeyChecking=no -i $key_file ${user}@$ip echo success; do sleep 1; done"; then
1356 die $LINENO "server didn't become ssh-able!"
1357 fi
1358}
1359
1360# Neutron 3rd party programs
1361#---------------------------
1362
1363# please refer to ``lib/neutron_thirdparty/README.md`` for details
1364NEUTRON_THIRD_PARTIES=""
1365for f in $TOP_DIR/lib/neutron_thirdparty/*; do
Sean Dague3bdb9222013-10-22 08:36:16 -04001366 third_party=$(basename $f)
1367 if is_service_enabled $third_party; then
1368 source $TOP_DIR/lib/neutron_thirdparty/$third_party
1369 NEUTRON_THIRD_PARTIES="$NEUTRON_THIRD_PARTIES,$third_party"
1370 fi
Mark McClainb05c8762013-07-06 23:29:39 -04001371done
1372
Ian Wienandaee18c72014-02-21 15:35:08 +11001373function _neutron_third_party_do {
Mark McClainb05c8762013-07-06 23:29:39 -04001374 for third_party in ${NEUTRON_THIRD_PARTIES//,/ }; do
1375 ${1}_${third_party}
1376 done
1377}
1378
1379# configure_neutron_third_party() - Set config files, create data dirs, etc
Ian Wienandaee18c72014-02-21 15:35:08 +11001380function configure_neutron_third_party {
Mark McClainb05c8762013-07-06 23:29:39 -04001381 _neutron_third_party_do configure
1382}
1383
1384# init_neutron_third_party() - Initialize databases, etc.
Ian Wienandaee18c72014-02-21 15:35:08 +11001385function init_neutron_third_party {
Mark McClainb05c8762013-07-06 23:29:39 -04001386 _neutron_third_party_do init
1387}
1388
1389# install_neutron_third_party() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +11001390function install_neutron_third_party {
Mark McClainb05c8762013-07-06 23:29:39 -04001391 _neutron_third_party_do install
1392}
1393
1394# start_neutron_third_party() - Start running processes, including screen
Ian Wienandaee18c72014-02-21 15:35:08 +11001395function start_neutron_third_party {
Mark McClainb05c8762013-07-06 23:29:39 -04001396 _neutron_third_party_do start
1397}
1398
1399# stop_neutron_third_party - Stop running processes (non-screen)
Ian Wienandaee18c72014-02-21 15:35:08 +11001400function stop_neutron_third_party {
Mark McClainb05c8762013-07-06 23:29:39 -04001401 _neutron_third_party_do stop
1402}
1403
armando-migliaccioef1e0802014-01-02 16:33:53 -08001404# check_neutron_third_party_integration() - Check that third party integration is sane
Ian Wienandaee18c72014-02-21 15:35:08 +11001405function check_neutron_third_party_integration {
armando-migliaccioef1e0802014-01-02 16:33:53 -08001406 _neutron_third_party_do check
1407}
1408
Sean M. Collins5ec6f8f2014-05-14 17:01:03 -04001409function is_provider_network {
1410 if [ "$Q_USE_PROVIDER_NETWORKING" == "True" ] && [ "$Q_L3_ENABLED" == "False" ]; then
1411 return 0
1412 fi
1413 return 1
1414}
1415
Mark McClainb05c8762013-07-06 23:29:39 -04001416
1417# Restore xtrace
1418$XTRACE
1419
Adam Spiers6a5aa7c2013-10-24 11:27:02 +01001420# Tell emacs to use shell-script-mode
1421## Local variables:
1422## mode: shell-script
1423## End: