blob: a6504e8dc25595d6db09298d6075c690e907d4de [file] [log] [blame]
Sean M. Collins2a242512016-05-03 09:03:09 -04001#!/bin/bash
2#
3# lib/neutron
4# Install and start **Neutron** network services
5
6# Dependencies:
7#
8# ``functions`` file
9# ``DEST`` must be defined
10
11# ``stack.sh`` calls the entry points in this order:
12#
13# - is_XXXX_enabled
14# - install_XXXX
15# - configure_XXXX
16# - init_XXXX
17# - start_XXXX
18# - stop_XXXX
19# - cleanup_XXXX
20
21# Save trace setting
22XTRACE=$(set +o | grep xtrace)
23set +o xtrace
24
25# Defaults
26# --------
27
28# Set up default directories
29GITDIR["python-neutronclient"]=$DEST/python-neutronclient
30
Kevin Benton66b361b2017-06-13 00:31:01 -070031# NEUTRON_DEPLOY_MOD_WSGI defines how neutron is deployed, allowed values:
32# - False (default) : Run neutron under Eventlet
33# - True : Run neutron under uwsgi
34# TODO(annp): Switching to uwsgi in next cycle if things turn out to be stable
35# enough
Jens Harbott3492fee2018-11-30 13:57:17 +000036NEUTRON_DEPLOY_MOD_WSGI=$(trueorfalse False NEUTRON_DEPLOY_MOD_WSGI)
Sean M. Collins2a242512016-05-03 09:03:09 -040037NEUTRON_AGENT=${NEUTRON_AGENT:-openvswitch}
38NEUTRON_DIR=$DEST/neutron
Sean M. Collins2a242512016-05-03 09:03:09 -040039
Brian Haley9aaa5292017-09-20 14:23:05 -040040NEUTRON_DISTRIBUTED_ROUTING=$(trueorfalse False NEUTRON_DISTRIBUTED_ROUTING)
41# Distributed Virtual Router (DVR) configuration
42# Can be:
43# - ``legacy`` - No DVR functionality
44# - ``dvr_snat`` - Controller or single node DVR
45# - ``dvr`` - Compute node in multi-node DVR
46# - ``dvr_no_external`` - Compute node in multi-node DVR, no external network
47#
48# Default is 'dvr_snat' since it can handle both DVR and legacy routers
49NEUTRON_DVR_MODE=${NEUTRON_DVR_MODE:-dvr_snat}
50
Sean M. Collins2a242512016-05-03 09:03:09 -040051NEUTRON_BIN_DIR=$(get_python_exec_prefix)
52NEUTRON_DHCP_BINARY="neutron-dhcp-agent"
53
54NEUTRON_CONF_DIR=/etc/neutron
55NEUTRON_CONF=$NEUTRON_CONF_DIR/neutron.conf
56NEUTRON_META_CONF=$NEUTRON_CONF_DIR/metadata_agent.ini
57
58NEUTRON_DHCP_CONF=$NEUTRON_CONF_DIR/dhcp_agent.ini
59NEUTRON_L3_CONF=$NEUTRON_CONF_DIR/l3_agent.ini
60NEUTRON_AGENT_CONF=$NEUTRON_CONF_DIR/
Josh8f721622018-02-01 09:45:47 +020061NEUTRON_CREATE_INITIAL_NETWORKS=${NEUTRON_CREATE_INITIAL_NETWORKS:-True}
Sean M. Collins2a242512016-05-03 09:03:09 -040062
63NEUTRON_STATE_PATH=${NEUTRON_STATE_PATH:=$DATA_DIR/neutron}
Sean M. Collins2a242512016-05-03 09:03:09 -040064
Kevin Benton66b361b2017-06-13 00:31:01 -070065NEUTRON_UWSGI_CONF=$NEUTRON_CONF_DIR/neutron-api-uwsgi.ini
66
Sean M. Collins2a242512016-05-03 09:03:09 -040067# By default, use the ML2 plugin
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +090068NEUTRON_CORE_PLUGIN=${NEUTRON_CORE_PLUGIN:-ml2}
69NEUTRON_CORE_PLUGIN_CONF_FILENAME=${NEUTRON_CORE_PLUGIN_CONF_FILENAME:-ml2_conf.ini}
70NEUTRON_CORE_PLUGIN_CONF_PATH=$NEUTRON_CONF_DIR/plugins/$NEUTRON_CORE_PLUGIN
71NEUTRON_CORE_PLUGIN_CONF=$NEUTRON_CORE_PLUGIN_CONF_PATH/$NEUTRON_CORE_PLUGIN_CONF_FILENAME
Sean M. Collins2a242512016-05-03 09:03:09 -040072
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +000073NEUTRON_METERING_AGENT_CONF_FILENAME=${NEUTRON_METERING_AGENT_CONF_FILENAME:-metering_agent.ini}
74NEUTRON_METERING_AGENT_CONF=$NEUTRON_CONF_DIR/$NEUTRON_METERING_AGENT_CONF_FILENAME
75
Sean M. Collins2a242512016-05-03 09:03:09 -040076NEUTRON_AGENT_BINARY=${NEUTRON_AGENT_BINARY:-neutron-$NEUTRON_AGENT-agent}
77NEUTRON_L3_BINARY=${NEUTRON_L3_BINARY:-neutron-l3-agent}
78NEUTRON_META_BINARY=${NEUTRON_META_BINARY:-neutron-metadata-agent}
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +000079NEUTRON_METERING_BINARY=${NEUTRON_METERING_BINARY:-neutron-metering-agent}
Sean M. Collins2a242512016-05-03 09:03:09 -040080
81# Public facing bits
Sean Daguef3b2f4c2017-04-13 10:11:48 -040082if is_service_enabled tls-proxy; then
Sean M. Collins2a242512016-05-03 09:03:09 -040083 NEUTRON_SERVICE_PROTOCOL="https"
84fi
85NEUTRON_SERVICE_HOST=${NEUTRON_SERVICE_HOST:-$SERVICE_HOST}
86NEUTRON_SERVICE_PORT=${NEUTRON_SERVICE_PORT:-9696}
87NEUTRON_SERVICE_PORT_INT=${NEUTRON_SERVICE_PORT_INT:-19696}
88NEUTRON_SERVICE_PROTOCOL=${NEUTRON_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
89
90NEUTRON_AUTH_STRATEGY=${NEUTRON_AUTH_STRATEGY:-keystone}
91NEUTRON_ROOTWRAP=$(get_rootwrap_location neutron)
92NEUTRON_ROOTWRAP_CONF_FILE=$NEUTRON_CONF_DIR/rootwrap.conf
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +000093NEUTRON_ROOTWRAP_CMD="$NEUTRON_ROOTWRAP $NEUTRON_ROOTWRAP_CONF_FILE"
94NEUTRON_ROOTWRAP_DAEMON_CMD="$NEUTRON_ROOTWRAP-daemon $NEUTRON_ROOTWRAP_CONF_FILE"
Sean M. Collins2a242512016-05-03 09:03:09 -040095
Ihar Hrachyshka615e1152017-02-23 10:41:51 +000096# This is needed because _neutron_ovs_base_configure_l3_agent uses it to create
97# an external network bridge
98PUBLIC_BRIDGE=${PUBLIC_BRIDGE:-br-ex}
99PUBLIC_BRIDGE_MTU=${PUBLIC_BRIDGE_MTU:-1500}
100
Julia Kreger6e5b1382019-01-09 17:00:45 -0800101# Network type - default vxlan, however enables vlan based jobs to override
102# using the legacy environment variable as well as a new variable in greater
103# alignment with the naming scheme of this plugin.
104NEUTRON_TENANT_NETWORK_TYPE=${NEUTRON_TENANT_NETWORK_TYPE:-vxlan}
105
106NEUTRON_TENANT_VLAN_RANGE=${NEUTRON_TENANT_VLAN_RANGE:-${TENANT_VLAN_RANGE:-100:150}}
107
108# Physical network for VLAN network usage.
109NEUTRON_PHYSICAL_NETWORK=${NEUTRON_PHYSICAL_NETWORK:-}
110
111
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900112# Additional neutron api config files
Sean Dagueafef8bf2017-03-06 14:07:23 -0500113declare -a -g _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900114
Sean M. Collins2a242512016-05-03 09:03:09 -0400115# Functions
116# ---------
117
118# Test if any Neutron services are enabled
119# is_neutron_enabled
120function is_neutron_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -0700121 [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -0400122 [[ ,${ENABLED_SERVICES} =~ ,"neutron-" || ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
123 return 1
124}
125
126# Test if any Neutron services are enabled
127# is_neutron_enabled
128function is_neutron_legacy_enabled {
Slawek Kaplonskia9a51ca2019-04-15 23:54:31 +0200129 # first we need to remove all "neutron-" from DISABLED_SERVICES list
130 disabled_services_copy=$(echo $DISABLED_SERVICES | sed 's/neutron-//g')
131 [[ ,${disabled_services_copy} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -0400132 [[ ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
133 return 1
134}
135
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900136if is_neutron_legacy_enabled; then
137 source $TOP_DIR/lib/neutron-legacy
138fi
139
Sean M. Collins2a242512016-05-03 09:03:09 -0400140# cleanup_neutron() - Remove residual data files, anything left over from previous
141# runs that a clean run would need to clean up
142function cleanup_neutron_new {
143 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
144 if is_neutron_ovs_base_plugin; then
145 neutron_ovs_base_cleanup
146 fi
147
148 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
149 neutron_lb_cleanup
150 fi
151 # delete all namespaces created by neutron
152 for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|qlbaas|fip|snat)-[0-9a-f-]*'); do
153 sudo ip netns delete ${ns}
154 done
155}
156
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000157# configure_root_helper_options() - Configure agent rootwrap helper options
158function configure_root_helper_options {
159 local conffile=$1
160 iniset $conffile agent root_helper "sudo $NEUTRON_ROOTWRAP_CMD"
161 iniset $conffile agent root_helper_daemon "sudo $NEUTRON_ROOTWRAP_DAEMON_CMD"
162}
163
Sean M. Collins2a242512016-05-03 09:03:09 -0400164# configure_neutron() - Set config files, create data dirs, etc
165function configure_neutron_new {
166 sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR
167
168 (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh)
169
170 cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF
171
172 configure_neutron_rootwrap
173
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900174 mkdir -p $NEUTRON_CORE_PLUGIN_CONF_PATH
Sean M. Collins2a242512016-05-03 09:03:09 -0400175
YAMAMOTO Takashi1df17c92017-05-01 17:00:42 +0900176 # NOTE(yamamoto): A decomposed plugin should prepare the config file in
177 # its devstack plugin.
178 if [ -f $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample ]; then
179 cp $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample $NEUTRON_CORE_PLUGIN_CONF
180 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400181
182 iniset $NEUTRON_CONF database connection `database_connection_url neutron`
183 iniset $NEUTRON_CONF DEFAULT state_path $NEUTRON_STATE_PATH
184 iniset $NEUTRON_CONF oslo_concurrency lock_path $NEUTRON_STATE_PATH/lock
185 iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG
186
Gary Kottond2ef6152016-09-20 04:12:11 -0700187 iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collinsfbba3b92016-05-12 11:17:53 -0400188
Sean M. Collins5394cc12016-05-11 15:03:38 -0400189 iniset_rpc_backend neutron $NEUTRON_CONF
190
Sean M. Collins2a242512016-05-03 09:03:09 -0400191 # Neutron API server & Neutron plugin
192 if is_service_enabled neutron-api; then
193 local policy_file=$NEUTRON_CONF_DIR/policy.json
Sean M. Collins2a242512016-05-03 09:03:09 -0400194 # Allow neutron user to administer neutron to match neutron account
Akihiro Motoki80769c52018-11-23 05:18:40 +0900195 # NOTE(amotoki): This is required for nova works correctly with neutron.
196 if [ -f $NEUTRON_DIR/etc/policy.json ]; then
197 cp $NEUTRON_DIR/etc/policy.json $policy_file
198 sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:neutron"/g' $policy_file
199 else
200 echo '{"context_is_admin": "role:admin or user_name:neutron"}' > $policy_file
201 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400202
203 cp $NEUTRON_DIR/etc/api-paste.ini $NEUTRON_CONF_DIR/api-paste.ini
204
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900205 iniset $NEUTRON_CONF DEFAULT core_plugin $NEUTRON_CORE_PLUGIN
Sean M. Collins2a242512016-05-03 09:03:09 -0400206
Sean M. Collins2a242512016-05-03 09:03:09 -0400207 iniset $NEUTRON_CONF DEFAULT policy_file $policy_file
208 iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips True
Brian Haley9aaa5292017-09-20 14:23:05 -0400209 iniset $NEUTRON_CONF DEFAULT router_distributed $NEUTRON_DISTRIBUTED_ROUTING
Sean M. Collins2a242512016-05-03 09:03:09 -0400210
211 iniset $NEUTRON_CONF DEFAULT auth_strategy $NEUTRON_AUTH_STRATEGY
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100212 configure_keystone_authtoken_middleware $NEUTRON_CONF neutron
213 configure_keystone_authtoken_middleware $NEUTRON_CONF nova nova
Sean M. Collins2a242512016-05-03 09:03:09 -0400214
Julia Kreger6e5b1382019-01-09 17:00:45 -0800215 # Configure tenant network type
216 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 tenant_network_types $NEUTRON_TENANT_NETWORK_TYPE
Brian Haley9aaa5292017-09-20 14:23:05 -0400217
218 local mech_drivers="openvswitch"
219 if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
220 mech_drivers+=",l2population"
221 else
222 mech_drivers+=",linuxbridge"
223 fi
224 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 mechanism_drivers $mech_drivers
225
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900226 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vxlan vni_ranges 1001:2000
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500227 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_flat flat_networks public
Julia Kreger6e5b1382019-01-09 17:00:45 -0800228 if [[ "$NEUTRON_TENANT_NETWORK_TYPE" =~ "vlan" ]] && [[ "$NEUTRON_PHYSICAL_NETWORK" != "" ]]; then
229 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vlan network_vlan_ranges ${NEUTRON_PHYSICAL_NETWORK}:${NEUTRON_TENANT_VLAN_RANGE}
230 fi
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400231 if [[ "$NEUTRON_PORT_SECURITY" = "True" ]]; then
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000232 neutron_ml2_extension_driver_add port_security
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400233 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400234 fi
235
236 # Neutron OVS or LB agent
237 if is_service_enabled neutron-agent; then
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900238 iniset $NEUTRON_CORE_PLUGIN_CONF agent tunnel_types vxlan
239 iniset $NEUTRON_CORE_PLUGIN_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000240 configure_root_helper_options $NEUTRON_CORE_PLUGIN_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400241
242 # Configure the neutron agent
243 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500244 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900245 iniset $NEUTRON_CORE_PLUGIN_CONF vxlan local_ip $HOST_IP
Jakub Libosvara99ab702018-05-14 16:12:52 +0200246 elif [[ $NEUTRON_AGENT == "openvswitch" ]]; then
247 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver openvswitch
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900248 iniset $NEUTRON_CORE_PLUGIN_CONF ovs local_ip $HOST_IP
Brian Haley9aaa5292017-09-20 14:23:05 -0400249
250 if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
251 iniset $NEUTRON_CORE_PLUGIN_CONF agent l2_population True
252 iniset $NEUTRON_CORE_PLUGIN_CONF agent enable_distributed_routing True
253 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400254 fi
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000255
Denis Buliga0bf75a42017-02-06 16:56:46 +0200256 if ! running_in_container; then
257 enable_kernel_bridge_firewall
258 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400259 fi
260
261 # DHCP Agent
262 if is_service_enabled neutron-dhcp; then
263 cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $NEUTRON_DHCP_CONF
264
Gary Kottond2ef6152016-09-20 04:12:11 -0700265 iniset $NEUTRON_DHCP_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean Dague78801c12016-08-04 14:10:07 -0400266 # make it so we have working DNS from guests
267 iniset $NEUTRON_DHCP_CONF DEFAULT dnsmasq_local_resolv True
268
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000269 configure_root_helper_options $NEUTRON_DHCP_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400270 iniset $NEUTRON_DHCP_CONF DEFAULT interface_driver $NEUTRON_AGENT
271 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
272 fi
273
274 if is_service_enabled neutron-l3; then
275 cp $NEUTRON_DIR/etc/l3_agent.ini.sample $NEUTRON_L3_CONF
276 iniset $NEUTRON_L3_CONF DEFAULT interface_driver $NEUTRON_AGENT
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900277 neutron_service_plugin_class_add router
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000278 configure_root_helper_options $NEUTRON_L3_CONF
Gary Kottond2ef6152016-09-20 04:12:11 -0700279 iniset $NEUTRON_L3_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400280 neutron_plugin_configure_l3_agent $NEUTRON_L3_CONF
Ihar Hrachyshkae3915932017-02-24 06:24:47 +0000281
282 # Configure the neutron agent to serve external network ports
283 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
284 iniset $NEUTRON_CORE_PLUGIN_CONF linux_bridge bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE"
285 else
286 iniset $NEUTRON_CORE_PLUGIN_CONF ovs bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE"
287 fi
Brian Haley9aaa5292017-09-20 14:23:05 -0400288
289 if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
290 iniset $NEUTRON_L3_CONF DEFAULT agent_mode $NEUTRON_DVR_MODE
291 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400292 fi
293
294 # Metadata
Sean M. Collins1cd28282016-05-11 15:07:19 -0400295 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400296 cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $NEUTRON_META_CONF
297
Gary Kottond2ef6152016-09-20 04:12:11 -0700298 iniset $NEUTRON_META_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Ken'ichi Ohmichi2da019f2017-10-11 09:57:25 -0700299 iniset $NEUTRON_META_CONF DEFAULT nova_metadata_host $SERVICE_HOST
Armando Migliaccio06f2ea22017-02-02 16:47:00 -0800300 iniset $NEUTRON_META_CONF DEFAULT metadata_workers $API_WORKERS
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000301 # TODO(ihrachys) do we really need to set rootwrap for metadata agent?
302 configure_root_helper_options $NEUTRON_META_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400303
304 # TODO(dtroyer): remove the v2.0 hard code below
Sean Daguec13b8a12017-04-20 06:54:51 -0400305 iniset $NEUTRON_META_CONF DEFAULT auth_url $KEYSTONE_SERVICE_URI
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100306 configure_keystone_authtoken_middleware $NEUTRON_META_CONF neutron DEFAULT
Sean M. Collins2a242512016-05-03 09:03:09 -0400307 fi
308
309 # Format logging
Sean Dague27f66e92017-05-02 09:08:17 -0400310 setup_logging $NEUTRON_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400311
Kevin Benton66b361b2017-06-13 00:31:01 -0700312 if is_service_enabled tls-proxy && [ "$NEUTRON_DEPLOY_MOD_WSGI" == "False" ]; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400313 # Set the service port for a proxy to take the original
314 iniset $NEUTRON_CONF DEFAULT bind_port "$NEUTRON_SERVICE_PORT_INT"
Jens Harbott411c34d2017-08-29 14:40:26 +0000315 iniset $NEUTRON_CONF oslo_middleware enable_proxy_headers_parsing True
Sean M. Collins2a242512016-05-03 09:03:09 -0400316 fi
317
Sean M. Collins8063fee2016-05-24 11:27:36 -0700318 # Metering
319 if is_service_enabled neutron-metering; then
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +0000320 cp $NEUTRON_DIR/etc/metering_agent.ini.sample $NEUTRON_METERING_AGENT_CONF
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900321 neutron_service_plugin_class_add metering
Sean M. Collins8063fee2016-05-24 11:27:36 -0700322 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400323}
324
325# configure_neutron_rootwrap() - configure Neutron's rootwrap
326function configure_neutron_rootwrap {
Sean M. Collins2a242512016-05-03 09:03:09 -0400327 # Deploy new rootwrap filters files (owned by root).
328 # Wipe any existing rootwrap.d files first
329 if [[ -d $NEUTRON_CONF_DIR/rootwrap.d ]]; then
330 sudo rm -rf $NEUTRON_CONF_DIR/rootwrap.d
331 fi
332
333 # Deploy filters to /etc/neutron/rootwrap.d
334 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
335 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
336
337 # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d``
338 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $NEUTRON_CONF_DIR
339 sudo sed -e "s:^filters_path=.*$:filters_path=$NEUTRON_CONF_DIR/rootwrap.d:" -i $NEUTRON_CONF_DIR/rootwrap.conf
340
341 # Set up the rootwrap sudoers for Neutron
342 tempfile=`mktemp`
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000343 echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_CMD *" >$tempfile
344 echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_DAEMON_CMD" >>$tempfile
Sean M. Collins2a242512016-05-03 09:03:09 -0400345 chmod 0440 $tempfile
346 sudo chown root:root $tempfile
347 sudo mv $tempfile /etc/sudoers.d/neutron-rootwrap
348}
349
350# Make Neutron-required changes to nova.conf
Lucas Alvares Gomese6385932018-06-28 11:00:28 +0100351# Takes a single optional argument which is the config file to update,
352# if not passed $NOVA_CONF is used.
Sean M. Collins2a242512016-05-03 09:03:09 -0400353function configure_neutron_nova_new {
Lucas Alvares Gomese6385932018-06-28 11:00:28 +0100354 local conf=${1:-$NOVA_CONF}
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400355 iniset $conf DEFAULT use_neutron True
356 iniset $conf neutron auth_type "password"
357 iniset $conf neutron auth_url "$KEYSTONE_SERVICE_URI"
358 iniset $conf neutron username neutron
359 iniset $conf neutron password "$SERVICE_PASSWORD"
360 iniset $conf neutron user_domain_name "Default"
361 iniset $conf neutron project_name "$SERVICE_TENANT_NAME"
362 iniset $conf neutron project_domain_name "Default"
363 iniset $conf neutron auth_strategy $NEUTRON_AUTH_STRATEGY
364 iniset $conf neutron region_name "$REGION_NAME"
Sean M. Collins2a242512016-05-03 09:03:09 -0400365
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400366 iniset $conf DEFAULT firewall_driver nova.virt.firewall.NoopFirewallDriver
Sean M. Collins2a242512016-05-03 09:03:09 -0400367
Gary Kotton88f85582016-08-14 06:55:42 -0700368 # optionally set options in nova_conf
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400369 neutron_plugin_create_nova_conf $conf
Gary Kotton88f85582016-08-14 06:55:42 -0700370
Sean M. Collins1cd28282016-05-11 15:07:19 -0400371 if is_service_enabled neutron-metadata-agent; then
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400372 iniset $conf neutron service_metadata_proxy "True"
Sean M. Collins2a242512016-05-03 09:03:09 -0400373 fi
374
375}
376
377# Tenant User Roles
378# ------------------------------------------------------------------
379# service neutron admin # if enabled
380
381# create_neutron_accounts() - Create required service accounts
382function create_neutron_accounts_new {
Kevin Benton66b361b2017-06-13 00:31:01 -0700383 local neutron_url
384
385 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
386 neutron_url=$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST/networking/
387 else
388 neutron_url=$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT/
389 fi
390
391
Sean M. Collins2a242512016-05-03 09:03:09 -0400392 if [[ "$ENABLED_SERVICES" =~ "neutron-api" ]]; then
393
394 create_service_user "neutron"
395
396 neutron_service=$(get_or_create_service "neutron" \
397 "network" "Neutron Service")
398 get_or_create_endpoint $neutron_service \
Kevin Benton66b361b2017-06-13 00:31:01 -0700399 "$REGION_NAME" "$neutron_url"
Sean M. Collins2a242512016-05-03 09:03:09 -0400400 fi
401}
402
Sean M. Collins2a242512016-05-03 09:03:09 -0400403# init_neutron() - Initialize databases, etc.
404function init_neutron_new {
405
406 recreate_database neutron
407
Clark Boylan633dbc32017-06-14 12:09:21 -0700408 time_start "dbsync"
Sean M. Collins2a242512016-05-03 09:03:09 -0400409 # Run Neutron db migrations
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000410 $NEUTRON_BIN_DIR/neutron-db-manage upgrade heads
Clark Boylan633dbc32017-06-14 12:09:21 -0700411 time_stop "dbsync"
Sean M. Collins2a242512016-05-03 09:03:09 -0400412}
413
414# install_neutron() - Collect source and prepare
415function install_neutron_new {
416 git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH
417 setup_develop $NEUTRON_DIR
418
419 # Install neutron-lib from git so we make sure we're testing
420 # the latest code.
421 if use_library_from_git "neutron-lib"; then
422 git_clone_by_name "neutron-lib"
423 setup_dev_lib "neutron-lib"
424 fi
425
426 # L3 service requires radvd
427 if is_service_enabled neutron-l3; then
428 install_package radvd
429 fi
430
431 if is_service_enabled neutron-agent neutron-dhcp neutron-l3; then
432 #TODO(sc68cal) - kind of ugly
433 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
434 neutron_plugin_install_agent_packages
435 fi
436
437}
438
439# install_neutronclient() - Collect source and prepare
440function install_neutronclient {
441 if use_library_from_git "python-neutronclient"; then
442 git_clone_by_name "python-neutronclient"
443 setup_dev_lib "python-neutronclient"
444 sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-neutronclient"]}/tools/,/etc/bash_completion.d/}neutron.bash_completion
445 fi
446}
447
448# start_neutron_api() - Start the API process ahead of other things
449function start_neutron_api {
450 local service_port=$NEUTRON_SERVICE_PORT
451 local service_protocol=$NEUTRON_SERVICE_PROTOCOL
Kevin Benton66b361b2017-06-13 00:31:01 -0700452 local neutron_url
Sean M. Collins2a242512016-05-03 09:03:09 -0400453 if is_service_enabled tls-proxy; then
454 service_port=$NEUTRON_SERVICE_PORT_INT
455 service_protocol="http"
456 fi
457
YAMAMOTO Takashied887d82017-02-22 14:21:33 -0500458 local opts=""
459 opts+=" --config-file $NEUTRON_CONF"
460 opts+=" --config-file $NEUTRON_CORE_PLUGIN_CONF"
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900461 local cfg_file
462 for cfg_file in ${_NEUTRON_SERVER_EXTRA_CONF_FILES_ABS[@]}; do
463 opts+=" --config-file $cfg_file"
464 done
465
Kevin Benton66b361b2017-06-13 00:31:01 -0700466 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
467 run_process neutron-api "$NEUTRON_BIN_DIR/uwsgi --procname-prefix neutron-api --ini $NEUTRON_UWSGI_CONF"
468 neutron_url=$service_protocol://$NEUTRON_SERVICE_HOST/networking/
469 enable_service neutron-rpc-server
470 run_process neutron-rpc-server "$NEUTRON_BIN_DIR/neutron-rpc-server $opts"
471 else
472 # Start the Neutron service
473 # TODO(sc68cal) Stop hard coding this
474 run_process neutron-api "$NEUTRON_BIN_DIR/neutron-server $opts"
475 neutron_url=$service_protocol://$NEUTRON_SERVICE_HOST:$service_port
476 # Start proxy if enabled
477 if is_service_enabled tls-proxy; then
478 start_tls_proxy neutron '*' $NEUTRON_SERVICE_PORT $NEUTRON_SERVICE_HOST $NEUTRON_SERVICE_PORT_INT
479 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400480 fi
481
Kevin Benton66b361b2017-06-13 00:31:01 -0700482 if ! wait_for_service $SERVICE_TIMEOUT $neutron_url; then
483 die $LINENO "neutron-api did not start"
Sean M. Collins2a242512016-05-03 09:03:09 -0400484 fi
485}
486
Sean Dague0eebeb42017-08-30 14:16:58 -0400487# start_neutron() - Start running processes
Sean M. Collins2a242512016-05-03 09:03:09 -0400488function start_neutron_new {
Sean M. Collins2a242512016-05-03 09:03:09 -0400489 # Start up the neutron agents if enabled
490 # TODO(sc68cal) Make this pluggable so different DevStack plugins for different Neutron plugins
491 # can resolve the $NEUTRON_AGENT_BINARY
492 if is_service_enabled neutron-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000493 # TODO(ihrachys) stop loading ml2_conf.ini into agents, instead load agent specific files
494 run_process neutron-agent "$NEUTRON_BIN_DIR/$NEUTRON_AGENT_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_CORE_PLUGIN_CONF"
Sean M. Collins2a242512016-05-03 09:03:09 -0400495 fi
496 if is_service_enabled neutron-dhcp; then
497 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000498 run_process neutron-dhcp "$NEUTRON_BIN_DIR/$NEUTRON_DHCP_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_DHCP_CONF"
Sean M. Collins2a242512016-05-03 09:03:09 -0400499 fi
500 if is_service_enabled neutron-l3; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000501 run_process neutron-l3 "$NEUTRON_BIN_DIR/$NEUTRON_L3_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_L3_CONF"
YAMAMOTO Takashic07170a2016-07-20 19:44:05 +0900502 fi
Josh8f721622018-02-01 09:45:47 +0200503 if is_service_enabled neutron-api && [[ "$NEUTRON_CREATE_INITIAL_NETWORKS" == "True" ]]; then
YAMAMOTO Takashi07edde12016-10-19 19:21:00 +0000504 # XXX(sc68cal) - Here's where plugins can wire up their own networks instead
505 # of the code in lib/neutron_plugins/services/l3
506 if type -p neutron_plugin_create_initial_networks > /dev/null; then
507 neutron_plugin_create_initial_networks
508 else
509 # XXX(sc68cal) Load up the built in Neutron networking code and build a topology
510 source $TOP_DIR/lib/neutron_plugins/services/l3
511 # Create the networks using servic
512 create_neutron_initial_network
513 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400514 fi
Sean M. Collins1cd28282016-05-11 15:07:19 -0400515 if is_service_enabled neutron-metadata-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000516 run_process neutron-metadata-agent "$NEUTRON_BIN_DIR/$NEUTRON_META_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_META_CONF"
Sean M. Collins2a242512016-05-03 09:03:09 -0400517 fi
Sean M. Collins8063fee2016-05-24 11:27:36 -0700518
519 if is_service_enabled neutron-metering; then
Ihar Hrachyshka868746b2017-09-13 15:44:18 -0600520 run_process neutron-metering "$NEUTRON_BIN_DIR/$NEUTRON_METERING_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_METERING_AGENT_CONF"
Sean M. Collins8063fee2016-05-24 11:27:36 -0700521 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400522}
523
Sean Dague0eebeb42017-08-30 14:16:58 -0400524# stop_neutron() - Stop running processes
Sean M. Collins2a242512016-05-03 09:03:09 -0400525function stop_neutron_new {
526 for serv in neutron-api neutron-agent neutron-l3; do
527 stop_process $serv
528 done
529
Kevin Benton66b361b2017-06-13 00:31:01 -0700530 if is_service_enabled neutron-rpc-server; then
531 stop_process neutron-rpc-server
532 fi
533
Sean M. Collins2a242512016-05-03 09:03:09 -0400534 if is_service_enabled neutron-dhcp; then
535 stop_process neutron-dhcp
536 pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }')
537 [ ! -z "$pid" ] && sudo kill -9 $pid
538 fi
539
Sean M. Collins1cd28282016-05-11 15:07:19 -0400540 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400541 sudo pkill -9 -f neutron-ns-metadata-proxy || :
Sean M. Collins1cd28282016-05-11 15:07:19 -0400542 stop_process neutron-metadata-agent
Sean M. Collins2a242512016-05-03 09:03:09 -0400543 fi
544}
545
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900546# neutron_service_plugin_class_add() - add service plugin class
547function neutron_service_plugin_class_add_new {
548 local service_plugin_class=$1
549 local plugins=""
550
551 plugins=$(iniget $NEUTRON_CONF DEFAULT service_plugins)
YAMAMOTO Takashi84e45c92017-02-22 14:25:14 -0500552 if [ $plugins ]; then
553 plugins+=","
554 fi
555 plugins+="${service_plugin_class}"
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900556 iniset $NEUTRON_CONF DEFAULT service_plugins $plugins
557}
558
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000559function _neutron_ml2_extension_driver_add {
560 local driver=$1
561 local drivers=""
562
563 drivers=$(iniget $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers)
564 if [ $drivers ]; then
565 drivers+=","
566 fi
567 drivers+="${driver}"
568 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers $drivers
569}
570
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900571function neutron_server_config_add_new {
572 _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS+=($1)
573}
574
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500575# neutron_deploy_rootwrap_filters() - deploy rootwrap filters
576function neutron_deploy_rootwrap_filters_new {
577 local srcdir=$1
578 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
579 sudo install -o root -g root -m 644 $srcdir/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
580}
581
Sean M. Collins2a242512016-05-03 09:03:09 -0400582# Dispatch functions
583# These are needed for compatibility between the old and new implementations
584# where there are function name overlaps. These will be removed when
585# neutron-legacy is removed.
586# TODO(sc68cal) Remove when neutron-legacy is no more.
587function cleanup_neutron {
Kevin Benton66b361b2017-06-13 00:31:01 -0700588 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
589 stop_process neutron-api
590 stop_process neutron-rpc-server
591 remove_uwsgi_config "$NEUTRON_UWSGI_CONF" "$NEUTRON_BIN_DIR/neutron-api"
592 sudo rm -f $(apache_site_config_for neutron-api)
593 fi
594
Sean M. Collins2a242512016-05-03 09:03:09 -0400595 if is_neutron_legacy_enabled; then
596 # Call back to old function
597 cleanup_mutnauq "$@"
598 else
599 cleanup_neutron_new "$@"
600 fi
601}
602
603function configure_neutron {
604 if is_neutron_legacy_enabled; then
605 # Call back to old function
606 configure_mutnauq "$@"
607 else
608 configure_neutron_new "$@"
609 fi
Kevin Benton66b361b2017-06-13 00:31:01 -0700610
611 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
612 write_uwsgi_config "$NEUTRON_UWSGI_CONF" "$NEUTRON_BIN_DIR/neutron-api" "/networking"
613 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400614}
615
616function configure_neutron_nova {
617 if is_neutron_legacy_enabled; then
618 # Call back to old function
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400619 create_nova_conf_neutron $NOVA_CONF
620 if [[ "${CELLSV2_SETUP}" == "superconductor" ]]; then
621 for i in $(seq 1 $NOVA_NUM_CELLS); do
622 local conf
623 conf=$(conductor_conf $i)
624 create_nova_conf_neutron $conf
625 done
626 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400627 else
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400628 configure_neutron_nova_new $NOVA_CONF
629 if [[ "${CELLSV2_SETUP}" == "superconductor" ]]; then
630 for i in $(seq 1 $NOVA_NUM_CELLS); do
631 local conf
632 conf=$(conductor_conf $i)
633 configure_neutron_nova_new $conf
634 done
635 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400636 fi
637}
638
639function create_neutron_accounts {
640 if is_neutron_legacy_enabled; then
641 # Call back to old function
642 create_mutnauq_accounts "$@"
643 else
644 create_neutron_accounts_new "$@"
645 fi
646}
647
648function init_neutron {
649 if is_neutron_legacy_enabled; then
650 # Call back to old function
651 init_mutnauq "$@"
652 else
653 init_neutron_new "$@"
654 fi
655}
656
657function install_neutron {
658 if is_neutron_legacy_enabled; then
659 # Call back to old function
660 install_mutnauq "$@"
661 else
662 install_neutron_new "$@"
663 fi
664}
665
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900666function neutron_service_plugin_class_add {
667 if is_neutron_legacy_enabled; then
668 # Call back to old function
669 _neutron_service_plugin_class_add "$@"
670 else
671 neutron_service_plugin_class_add_new "$@"
672 fi
673}
674
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000675function neutron_ml2_extension_driver_add {
676 if is_neutron_legacy_enabled; then
677 # Call back to old function
678 _neutron_ml2_extension_driver_add_old "$@"
679 else
680 _neutron_ml2_extension_driver_add "$@"
681 fi
682}
683
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900684function install_neutron_agent_packages {
685 if is_neutron_legacy_enabled; then
686 # Call back to old function
687 install_neutron_agent_packages_mutnauq "$@"
688 else
689 :
690 fi
691}
692
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900693function neutron_server_config_add {
694 if is_neutron_legacy_enabled; then
695 # Call back to old function
696 mutnauq_server_config_add "$@"
697 else
698 neutron_server_config_add_new "$@"
699 fi
700}
701
Sean M. Collins2a242512016-05-03 09:03:09 -0400702function start_neutron {
703 if is_neutron_legacy_enabled; then
704 # Call back to old function
705 start_mutnauq_l2_agent "$@"
706 start_mutnauq_other_agents "$@"
707 else
708 start_neutron_new "$@"
709 fi
710}
711
712function stop_neutron {
713 if is_neutron_legacy_enabled; then
714 # Call back to old function
715 stop_mutnauq "$@"
716 else
717 stop_neutron_new "$@"
718 fi
719}
720
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500721function neutron_deploy_rootwrap_filters {
722 if is_neutron_legacy_enabled; then
723 # Call back to old function
724 _neutron_deploy_rootwrap_filters "$@"
725 else
726 neutron_deploy_rootwrap_filters_new "$@"
727 fi
728}
729
Sean M. Collins2a242512016-05-03 09:03:09 -0400730# Restore xtrace
731$XTRACE