blob: 888b5e864e16d7e7427b3abb1d6e11286be4b390 [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
Brian Haleya5491912019-07-31 12:18:39 -040057NEUTRON_META_DATA_HOST=${NEUTRON_META_DATA_HOST:-$(ipv6_unquote $SERVICE_HOST)}
Sean M. Collins2a242512016-05-03 09:03:09 -040058
59NEUTRON_DHCP_CONF=$NEUTRON_CONF_DIR/dhcp_agent.ini
60NEUTRON_L3_CONF=$NEUTRON_CONF_DIR/l3_agent.ini
61NEUTRON_AGENT_CONF=$NEUTRON_CONF_DIR/
Josh8f721622018-02-01 09:45:47 +020062NEUTRON_CREATE_INITIAL_NETWORKS=${NEUTRON_CREATE_INITIAL_NETWORKS:-True}
Sean M. Collins2a242512016-05-03 09:03:09 -040063
64NEUTRON_STATE_PATH=${NEUTRON_STATE_PATH:=$DATA_DIR/neutron}
Sean M. Collins2a242512016-05-03 09:03:09 -040065
Kevin Benton66b361b2017-06-13 00:31:01 -070066NEUTRON_UWSGI_CONF=$NEUTRON_CONF_DIR/neutron-api-uwsgi.ini
67
Sean M. Collins2a242512016-05-03 09:03:09 -040068# By default, use the ML2 plugin
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +090069NEUTRON_CORE_PLUGIN=${NEUTRON_CORE_PLUGIN:-ml2}
70NEUTRON_CORE_PLUGIN_CONF_FILENAME=${NEUTRON_CORE_PLUGIN_CONF_FILENAME:-ml2_conf.ini}
71NEUTRON_CORE_PLUGIN_CONF_PATH=$NEUTRON_CONF_DIR/plugins/$NEUTRON_CORE_PLUGIN
72NEUTRON_CORE_PLUGIN_CONF=$NEUTRON_CORE_PLUGIN_CONF_PATH/$NEUTRON_CORE_PLUGIN_CONF_FILENAME
Sean M. Collins2a242512016-05-03 09:03:09 -040073
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +000074NEUTRON_METERING_AGENT_CONF_FILENAME=${NEUTRON_METERING_AGENT_CONF_FILENAME:-metering_agent.ini}
75NEUTRON_METERING_AGENT_CONF=$NEUTRON_CONF_DIR/$NEUTRON_METERING_AGENT_CONF_FILENAME
76
Sean M. Collins2a242512016-05-03 09:03:09 -040077NEUTRON_AGENT_BINARY=${NEUTRON_AGENT_BINARY:-neutron-$NEUTRON_AGENT-agent}
78NEUTRON_L3_BINARY=${NEUTRON_L3_BINARY:-neutron-l3-agent}
79NEUTRON_META_BINARY=${NEUTRON_META_BINARY:-neutron-metadata-agent}
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +000080NEUTRON_METERING_BINARY=${NEUTRON_METERING_BINARY:-neutron-metering-agent}
Sean M. Collins2a242512016-05-03 09:03:09 -040081
82# Public facing bits
Sean Daguef3b2f4c2017-04-13 10:11:48 -040083if is_service_enabled tls-proxy; then
Sean M. Collins2a242512016-05-03 09:03:09 -040084 NEUTRON_SERVICE_PROTOCOL="https"
85fi
86NEUTRON_SERVICE_HOST=${NEUTRON_SERVICE_HOST:-$SERVICE_HOST}
87NEUTRON_SERVICE_PORT=${NEUTRON_SERVICE_PORT:-9696}
88NEUTRON_SERVICE_PORT_INT=${NEUTRON_SERVICE_PORT_INT:-19696}
89NEUTRON_SERVICE_PROTOCOL=${NEUTRON_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
90
91NEUTRON_AUTH_STRATEGY=${NEUTRON_AUTH_STRATEGY:-keystone}
92NEUTRON_ROOTWRAP=$(get_rootwrap_location neutron)
93NEUTRON_ROOTWRAP_CONF_FILE=$NEUTRON_CONF_DIR/rootwrap.conf
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +000094NEUTRON_ROOTWRAP_CMD="$NEUTRON_ROOTWRAP $NEUTRON_ROOTWRAP_CONF_FILE"
95NEUTRON_ROOTWRAP_DAEMON_CMD="$NEUTRON_ROOTWRAP-daemon $NEUTRON_ROOTWRAP_CONF_FILE"
Sean M. Collins2a242512016-05-03 09:03:09 -040096
Ihar Hrachyshka615e1152017-02-23 10:41:51 +000097# This is needed because _neutron_ovs_base_configure_l3_agent uses it to create
98# an external network bridge
99PUBLIC_BRIDGE=${PUBLIC_BRIDGE:-br-ex}
100PUBLIC_BRIDGE_MTU=${PUBLIC_BRIDGE_MTU:-1500}
101
Julia Kreger6e5b1382019-01-09 17:00:45 -0800102# Network type - default vxlan, however enables vlan based jobs to override
103# using the legacy environment variable as well as a new variable in greater
104# alignment with the naming scheme of this plugin.
105NEUTRON_TENANT_NETWORK_TYPE=${NEUTRON_TENANT_NETWORK_TYPE:-vxlan}
106
107NEUTRON_TENANT_VLAN_RANGE=${NEUTRON_TENANT_VLAN_RANGE:-${TENANT_VLAN_RANGE:-100:150}}
108
109# Physical network for VLAN network usage.
110NEUTRON_PHYSICAL_NETWORK=${NEUTRON_PHYSICAL_NETWORK:-}
111
112
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900113# Additional neutron api config files
Sean Dagueafef8bf2017-03-06 14:07:23 -0500114declare -a -g _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900115
Sean M. Collins2a242512016-05-03 09:03:09 -0400116# Functions
117# ---------
118
119# Test if any Neutron services are enabled
120# is_neutron_enabled
121function is_neutron_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -0700122 [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -0400123 [[ ,${ENABLED_SERVICES} =~ ,"neutron-" || ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
124 return 1
125}
126
127# Test if any Neutron services are enabled
128# is_neutron_enabled
129function is_neutron_legacy_enabled {
Slawek Kaplonskia9a51ca2019-04-15 23:54:31 +0200130 # first we need to remove all "neutron-" from DISABLED_SERVICES list
131 disabled_services_copy=$(echo $DISABLED_SERVICES | sed 's/neutron-//g')
132 [[ ,${disabled_services_copy} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -0400133 [[ ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
134 return 1
135}
136
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900137if is_neutron_legacy_enabled; then
138 source $TOP_DIR/lib/neutron-legacy
139fi
140
Sean M. Collins2a242512016-05-03 09:03:09 -0400141# cleanup_neutron() - Remove residual data files, anything left over from previous
142# runs that a clean run would need to clean up
143function cleanup_neutron_new {
144 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
145 if is_neutron_ovs_base_plugin; then
146 neutron_ovs_base_cleanup
147 fi
148
149 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
150 neutron_lb_cleanup
151 fi
152 # delete all namespaces created by neutron
153 for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|qlbaas|fip|snat)-[0-9a-f-]*'); do
154 sudo ip netns delete ${ns}
155 done
156}
157
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000158# configure_root_helper_options() - Configure agent rootwrap helper options
159function configure_root_helper_options {
160 local conffile=$1
161 iniset $conffile agent root_helper "sudo $NEUTRON_ROOTWRAP_CMD"
162 iniset $conffile agent root_helper_daemon "sudo $NEUTRON_ROOTWRAP_DAEMON_CMD"
163}
164
Sean M. Collins2a242512016-05-03 09:03:09 -0400165# configure_neutron() - Set config files, create data dirs, etc
166function configure_neutron_new {
167 sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR
168
169 (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh)
170
171 cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF
172
173 configure_neutron_rootwrap
174
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900175 mkdir -p $NEUTRON_CORE_PLUGIN_CONF_PATH
Sean M. Collins2a242512016-05-03 09:03:09 -0400176
YAMAMOTO Takashi1df17c92017-05-01 17:00:42 +0900177 # NOTE(yamamoto): A decomposed plugin should prepare the config file in
178 # its devstack plugin.
179 if [ -f $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample ]; then
180 cp $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample $NEUTRON_CORE_PLUGIN_CONF
181 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400182
183 iniset $NEUTRON_CONF database connection `database_connection_url neutron`
184 iniset $NEUTRON_CONF DEFAULT state_path $NEUTRON_STATE_PATH
185 iniset $NEUTRON_CONF oslo_concurrency lock_path $NEUTRON_STATE_PATH/lock
186 iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG
187
Gary Kottond2ef6152016-09-20 04:12:11 -0700188 iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collinsfbba3b92016-05-12 11:17:53 -0400189
Sean M. Collins5394cc12016-05-11 15:03:38 -0400190 iniset_rpc_backend neutron $NEUTRON_CONF
191
Sean M. Collins2a242512016-05-03 09:03:09 -0400192 # Neutron API server & Neutron plugin
193 if is_service_enabled neutron-api; then
194 local policy_file=$NEUTRON_CONF_DIR/policy.json
Sean M. Collins2a242512016-05-03 09:03:09 -0400195 # Allow neutron user to administer neutron to match neutron account
Akihiro Motoki80769c52018-11-23 05:18:40 +0900196 # NOTE(amotoki): This is required for nova works correctly with neutron.
197 if [ -f $NEUTRON_DIR/etc/policy.json ]; then
198 cp $NEUTRON_DIR/etc/policy.json $policy_file
199 sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:neutron"/g' $policy_file
200 else
201 echo '{"context_is_admin": "role:admin or user_name:neutron"}' > $policy_file
202 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400203
204 cp $NEUTRON_DIR/etc/api-paste.ini $NEUTRON_CONF_DIR/api-paste.ini
205
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900206 iniset $NEUTRON_CONF DEFAULT core_plugin $NEUTRON_CORE_PLUGIN
Sean M. Collins2a242512016-05-03 09:03:09 -0400207
Sean M. Collins2a242512016-05-03 09:03:09 -0400208 iniset $NEUTRON_CONF DEFAULT policy_file $policy_file
209 iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips True
Brian Haley9aaa5292017-09-20 14:23:05 -0400210 iniset $NEUTRON_CONF DEFAULT router_distributed $NEUTRON_DISTRIBUTED_ROUTING
Sean M. Collins2a242512016-05-03 09:03:09 -0400211
212 iniset $NEUTRON_CONF DEFAULT auth_strategy $NEUTRON_AUTH_STRATEGY
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100213 configure_keystone_authtoken_middleware $NEUTRON_CONF neutron
214 configure_keystone_authtoken_middleware $NEUTRON_CONF nova nova
Sean M. Collins2a242512016-05-03 09:03:09 -0400215
Julia Kreger6e5b1382019-01-09 17:00:45 -0800216 # Configure tenant network type
217 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 tenant_network_types $NEUTRON_TENANT_NETWORK_TYPE
Brian Haley9aaa5292017-09-20 14:23:05 -0400218
219 local mech_drivers="openvswitch"
220 if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
221 mech_drivers+=",l2population"
222 else
223 mech_drivers+=",linuxbridge"
224 fi
225 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 mechanism_drivers $mech_drivers
226
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900227 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vxlan vni_ranges 1001:2000
Harald Jensåsf1a794e2019-08-21 10:49:57 +0200228 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_flat flat_networks $PUBLIC_NETWORK_NAME
Julia Kreger6e5b1382019-01-09 17:00:45 -0800229 if [[ "$NEUTRON_TENANT_NETWORK_TYPE" =~ "vlan" ]] && [[ "$NEUTRON_PHYSICAL_NETWORK" != "" ]]; then
230 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vlan network_vlan_ranges ${NEUTRON_PHYSICAL_NETWORK}:${NEUTRON_TENANT_VLAN_RANGE}
231 fi
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400232 if [[ "$NEUTRON_PORT_SECURITY" = "True" ]]; then
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000233 neutron_ml2_extension_driver_add port_security
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400234 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400235 fi
236
237 # Neutron OVS or LB agent
238 if is_service_enabled neutron-agent; then
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900239 iniset $NEUTRON_CORE_PLUGIN_CONF agent tunnel_types vxlan
240 iniset $NEUTRON_CORE_PLUGIN_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000241 configure_root_helper_options $NEUTRON_CORE_PLUGIN_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400242
243 # Configure the neutron agent
244 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500245 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900246 iniset $NEUTRON_CORE_PLUGIN_CONF vxlan local_ip $HOST_IP
Jakub Libosvara99ab702018-05-14 16:12:52 +0200247 elif [[ $NEUTRON_AGENT == "openvswitch" ]]; then
248 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver openvswitch
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900249 iniset $NEUTRON_CORE_PLUGIN_CONF ovs local_ip $HOST_IP
Brian Haley9aaa5292017-09-20 14:23:05 -0400250
251 if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
252 iniset $NEUTRON_CORE_PLUGIN_CONF agent l2_population True
253 iniset $NEUTRON_CORE_PLUGIN_CONF agent enable_distributed_routing True
Swaminathan Vasudevan9bf7e262019-05-02 13:45:46 -0700254 iniset $NEUTRON_CORE_PLUGIN_CONF agent arp_responder True
Brian Haley9aaa5292017-09-20 14:23:05 -0400255 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400256 fi
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000257
Denis Buliga0bf75a42017-02-06 16:56:46 +0200258 if ! running_in_container; then
259 enable_kernel_bridge_firewall
260 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400261 fi
262
263 # DHCP Agent
264 if is_service_enabled neutron-dhcp; then
265 cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $NEUTRON_DHCP_CONF
266
Gary Kottond2ef6152016-09-20 04:12:11 -0700267 iniset $NEUTRON_DHCP_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean Dague78801c12016-08-04 14:10:07 -0400268 # make it so we have working DNS from guests
269 iniset $NEUTRON_DHCP_CONF DEFAULT dnsmasq_local_resolv True
270
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000271 configure_root_helper_options $NEUTRON_DHCP_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400272 iniset $NEUTRON_DHCP_CONF DEFAULT interface_driver $NEUTRON_AGENT
273 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
274 fi
275
276 if is_service_enabled neutron-l3; then
277 cp $NEUTRON_DIR/etc/l3_agent.ini.sample $NEUTRON_L3_CONF
278 iniset $NEUTRON_L3_CONF DEFAULT interface_driver $NEUTRON_AGENT
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900279 neutron_service_plugin_class_add router
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000280 configure_root_helper_options $NEUTRON_L3_CONF
Gary Kottond2ef6152016-09-20 04:12:11 -0700281 iniset $NEUTRON_L3_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400282 neutron_plugin_configure_l3_agent $NEUTRON_L3_CONF
Ihar Hrachyshkae3915932017-02-24 06:24:47 +0000283
284 # Configure the neutron agent to serve external network ports
285 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
286 iniset $NEUTRON_CORE_PLUGIN_CONF linux_bridge bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE"
287 else
288 iniset $NEUTRON_CORE_PLUGIN_CONF ovs bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE"
289 fi
Brian Haley9aaa5292017-09-20 14:23:05 -0400290
291 if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
292 iniset $NEUTRON_L3_CONF DEFAULT agent_mode $NEUTRON_DVR_MODE
293 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400294 fi
295
296 # Metadata
Sean M. Collins1cd28282016-05-11 15:07:19 -0400297 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400298 cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $NEUTRON_META_CONF
299
Gary Kottond2ef6152016-09-20 04:12:11 -0700300 iniset $NEUTRON_META_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Brian Haleya5491912019-07-31 12:18:39 -0400301 iniset $NEUTRON_META_CONF DEFAULT nova_metadata_host $NEUTRON_META_DATA_HOST
Armando Migliaccio06f2ea22017-02-02 16:47:00 -0800302 iniset $NEUTRON_META_CONF DEFAULT metadata_workers $API_WORKERS
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000303 # TODO(ihrachys) do we really need to set rootwrap for metadata agent?
304 configure_root_helper_options $NEUTRON_META_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400305
306 # TODO(dtroyer): remove the v2.0 hard code below
Sean Daguec13b8a12017-04-20 06:54:51 -0400307 iniset $NEUTRON_META_CONF DEFAULT auth_url $KEYSTONE_SERVICE_URI
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100308 configure_keystone_authtoken_middleware $NEUTRON_META_CONF neutron DEFAULT
Sean M. Collins2a242512016-05-03 09:03:09 -0400309 fi
310
311 # Format logging
Sean Dague27f66e92017-05-02 09:08:17 -0400312 setup_logging $NEUTRON_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400313
Kevin Benton66b361b2017-06-13 00:31:01 -0700314 if is_service_enabled tls-proxy && [ "$NEUTRON_DEPLOY_MOD_WSGI" == "False" ]; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400315 # Set the service port for a proxy to take the original
316 iniset $NEUTRON_CONF DEFAULT bind_port "$NEUTRON_SERVICE_PORT_INT"
Jens Harbott411c34d2017-08-29 14:40:26 +0000317 iniset $NEUTRON_CONF oslo_middleware enable_proxy_headers_parsing True
Sean M. Collins2a242512016-05-03 09:03:09 -0400318 fi
319
Sean M. Collins8063fee2016-05-24 11:27:36 -0700320 # Metering
321 if is_service_enabled neutron-metering; then
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +0000322 cp $NEUTRON_DIR/etc/metering_agent.ini.sample $NEUTRON_METERING_AGENT_CONF
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900323 neutron_service_plugin_class_add metering
Sean M. Collins8063fee2016-05-24 11:27:36 -0700324 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400325}
326
327# configure_neutron_rootwrap() - configure Neutron's rootwrap
328function configure_neutron_rootwrap {
Sean M. Collins2a242512016-05-03 09:03:09 -0400329 # Deploy new rootwrap filters files (owned by root).
330 # Wipe any existing rootwrap.d files first
331 if [[ -d $NEUTRON_CONF_DIR/rootwrap.d ]]; then
332 sudo rm -rf $NEUTRON_CONF_DIR/rootwrap.d
333 fi
334
335 # Deploy filters to /etc/neutron/rootwrap.d
336 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
337 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
338
339 # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d``
340 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $NEUTRON_CONF_DIR
341 sudo sed -e "s:^filters_path=.*$:filters_path=$NEUTRON_CONF_DIR/rootwrap.d:" -i $NEUTRON_CONF_DIR/rootwrap.conf
342
343 # Set up the rootwrap sudoers for Neutron
344 tempfile=`mktemp`
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000345 echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_CMD *" >$tempfile
346 echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_DAEMON_CMD" >>$tempfile
Sean M. Collins2a242512016-05-03 09:03:09 -0400347 chmod 0440 $tempfile
348 sudo chown root:root $tempfile
349 sudo mv $tempfile /etc/sudoers.d/neutron-rootwrap
350}
351
352# Make Neutron-required changes to nova.conf
Lucas Alvares Gomese6385932018-06-28 11:00:28 +0100353# Takes a single optional argument which is the config file to update,
354# if not passed $NOVA_CONF is used.
Sean M. Collins2a242512016-05-03 09:03:09 -0400355function configure_neutron_nova_new {
Lucas Alvares Gomese6385932018-06-28 11:00:28 +0100356 local conf=${1:-$NOVA_CONF}
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400357 iniset $conf DEFAULT use_neutron True
358 iniset $conf neutron auth_type "password"
359 iniset $conf neutron auth_url "$KEYSTONE_SERVICE_URI"
360 iniset $conf neutron username neutron
361 iniset $conf neutron password "$SERVICE_PASSWORD"
362 iniset $conf neutron user_domain_name "Default"
363 iniset $conf neutron project_name "$SERVICE_TENANT_NAME"
364 iniset $conf neutron project_domain_name "Default"
365 iniset $conf neutron auth_strategy $NEUTRON_AUTH_STRATEGY
366 iniset $conf neutron region_name "$REGION_NAME"
Sean M. Collins2a242512016-05-03 09:03:09 -0400367
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400368 iniset $conf DEFAULT firewall_driver nova.virt.firewall.NoopFirewallDriver
Sean M. Collins2a242512016-05-03 09:03:09 -0400369
Gary Kotton88f85582016-08-14 06:55:42 -0700370 # optionally set options in nova_conf
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400371 neutron_plugin_create_nova_conf $conf
Gary Kotton88f85582016-08-14 06:55:42 -0700372
Sean M. Collins1cd28282016-05-11 15:07:19 -0400373 if is_service_enabled neutron-metadata-agent; then
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400374 iniset $conf neutron service_metadata_proxy "True"
Sean M. Collins2a242512016-05-03 09:03:09 -0400375 fi
376
377}
378
379# Tenant User Roles
380# ------------------------------------------------------------------
381# service neutron admin # if enabled
382
383# create_neutron_accounts() - Create required service accounts
384function create_neutron_accounts_new {
Kevin Benton66b361b2017-06-13 00:31:01 -0700385 local neutron_url
386
387 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
388 neutron_url=$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST/networking/
389 else
390 neutron_url=$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT/
391 fi
392
393
Sean M. Collins2a242512016-05-03 09:03:09 -0400394 if [[ "$ENABLED_SERVICES" =~ "neutron-api" ]]; then
395
396 create_service_user "neutron"
397
398 neutron_service=$(get_or_create_service "neutron" \
399 "network" "Neutron Service")
400 get_or_create_endpoint $neutron_service \
Kevin Benton66b361b2017-06-13 00:31:01 -0700401 "$REGION_NAME" "$neutron_url"
Sean M. Collins2a242512016-05-03 09:03:09 -0400402 fi
403}
404
Sean M. Collins2a242512016-05-03 09:03:09 -0400405# init_neutron() - Initialize databases, etc.
406function init_neutron_new {
407
408 recreate_database neutron
409
Clark Boylan633dbc32017-06-14 12:09:21 -0700410 time_start "dbsync"
Sean M. Collins2a242512016-05-03 09:03:09 -0400411 # Run Neutron db migrations
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000412 $NEUTRON_BIN_DIR/neutron-db-manage upgrade heads
Clark Boylan633dbc32017-06-14 12:09:21 -0700413 time_stop "dbsync"
Sean M. Collins2a242512016-05-03 09:03:09 -0400414}
415
416# install_neutron() - Collect source and prepare
417function install_neutron_new {
418 git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH
419 setup_develop $NEUTRON_DIR
420
421 # Install neutron-lib from git so we make sure we're testing
422 # the latest code.
423 if use_library_from_git "neutron-lib"; then
424 git_clone_by_name "neutron-lib"
425 setup_dev_lib "neutron-lib"
426 fi
427
428 # L3 service requires radvd
429 if is_service_enabled neutron-l3; then
430 install_package radvd
431 fi
432
433 if is_service_enabled neutron-agent neutron-dhcp neutron-l3; then
434 #TODO(sc68cal) - kind of ugly
435 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
436 neutron_plugin_install_agent_packages
437 fi
438
439}
440
441# install_neutronclient() - Collect source and prepare
442function install_neutronclient {
443 if use_library_from_git "python-neutronclient"; then
444 git_clone_by_name "python-neutronclient"
445 setup_dev_lib "python-neutronclient"
446 sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-neutronclient"]}/tools/,/etc/bash_completion.d/}neutron.bash_completion
447 fi
448}
449
450# start_neutron_api() - Start the API process ahead of other things
451function start_neutron_api {
452 local service_port=$NEUTRON_SERVICE_PORT
453 local service_protocol=$NEUTRON_SERVICE_PROTOCOL
Kevin Benton66b361b2017-06-13 00:31:01 -0700454 local neutron_url
Sean M. Collins2a242512016-05-03 09:03:09 -0400455 if is_service_enabled tls-proxy; then
456 service_port=$NEUTRON_SERVICE_PORT_INT
457 service_protocol="http"
458 fi
459
YAMAMOTO Takashied887d82017-02-22 14:21:33 -0500460 local opts=""
461 opts+=" --config-file $NEUTRON_CONF"
462 opts+=" --config-file $NEUTRON_CORE_PLUGIN_CONF"
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900463 local cfg_file
464 for cfg_file in ${_NEUTRON_SERVER_EXTRA_CONF_FILES_ABS[@]}; do
465 opts+=" --config-file $cfg_file"
466 done
467
Kevin Benton66b361b2017-06-13 00:31:01 -0700468 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
469 run_process neutron-api "$NEUTRON_BIN_DIR/uwsgi --procname-prefix neutron-api --ini $NEUTRON_UWSGI_CONF"
470 neutron_url=$service_protocol://$NEUTRON_SERVICE_HOST/networking/
471 enable_service neutron-rpc-server
472 run_process neutron-rpc-server "$NEUTRON_BIN_DIR/neutron-rpc-server $opts"
473 else
474 # Start the Neutron service
475 # TODO(sc68cal) Stop hard coding this
476 run_process neutron-api "$NEUTRON_BIN_DIR/neutron-server $opts"
477 neutron_url=$service_protocol://$NEUTRON_SERVICE_HOST:$service_port
478 # Start proxy if enabled
479 if is_service_enabled tls-proxy; then
480 start_tls_proxy neutron '*' $NEUTRON_SERVICE_PORT $NEUTRON_SERVICE_HOST $NEUTRON_SERVICE_PORT_INT
481 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400482 fi
483
Kevin Benton66b361b2017-06-13 00:31:01 -0700484 if ! wait_for_service $SERVICE_TIMEOUT $neutron_url; then
485 die $LINENO "neutron-api did not start"
Sean M. Collins2a242512016-05-03 09:03:09 -0400486 fi
487}
488
Sean Dague0eebeb42017-08-30 14:16:58 -0400489# start_neutron() - Start running processes
Sean M. Collins2a242512016-05-03 09:03:09 -0400490function start_neutron_new {
Sean M. Collins2a242512016-05-03 09:03:09 -0400491 # Start up the neutron agents if enabled
492 # TODO(sc68cal) Make this pluggable so different DevStack plugins for different Neutron plugins
493 # can resolve the $NEUTRON_AGENT_BINARY
494 if is_service_enabled neutron-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000495 # TODO(ihrachys) stop loading ml2_conf.ini into agents, instead load agent specific files
496 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 -0400497 fi
498 if is_service_enabled neutron-dhcp; then
499 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000500 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 -0400501 fi
502 if is_service_enabled neutron-l3; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000503 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 +0900504 fi
Josh8f721622018-02-01 09:45:47 +0200505 if is_service_enabled neutron-api && [[ "$NEUTRON_CREATE_INITIAL_NETWORKS" == "True" ]]; then
YAMAMOTO Takashi07edde12016-10-19 19:21:00 +0000506 # XXX(sc68cal) - Here's where plugins can wire up their own networks instead
507 # of the code in lib/neutron_plugins/services/l3
508 if type -p neutron_plugin_create_initial_networks > /dev/null; then
509 neutron_plugin_create_initial_networks
510 else
511 # XXX(sc68cal) Load up the built in Neutron networking code and build a topology
512 source $TOP_DIR/lib/neutron_plugins/services/l3
513 # Create the networks using servic
514 create_neutron_initial_network
515 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400516 fi
Sean M. Collins1cd28282016-05-11 15:07:19 -0400517 if is_service_enabled neutron-metadata-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000518 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 -0400519 fi
Sean M. Collins8063fee2016-05-24 11:27:36 -0700520
521 if is_service_enabled neutron-metering; then
Ihar Hrachyshka868746b2017-09-13 15:44:18 -0600522 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 -0700523 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400524}
525
Sean Dague0eebeb42017-08-30 14:16:58 -0400526# stop_neutron() - Stop running processes
Sean M. Collins2a242512016-05-03 09:03:09 -0400527function stop_neutron_new {
528 for serv in neutron-api neutron-agent neutron-l3; do
529 stop_process $serv
530 done
531
Kevin Benton66b361b2017-06-13 00:31:01 -0700532 if is_service_enabled neutron-rpc-server; then
533 stop_process neutron-rpc-server
534 fi
535
Sean M. Collins2a242512016-05-03 09:03:09 -0400536 if is_service_enabled neutron-dhcp; then
537 stop_process neutron-dhcp
538 pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }')
539 [ ! -z "$pid" ] && sudo kill -9 $pid
540 fi
541
Sean M. Collins1cd28282016-05-11 15:07:19 -0400542 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400543 sudo pkill -9 -f neutron-ns-metadata-proxy || :
Sean M. Collins1cd28282016-05-11 15:07:19 -0400544 stop_process neutron-metadata-agent
Sean M. Collins2a242512016-05-03 09:03:09 -0400545 fi
546}
547
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900548# neutron_service_plugin_class_add() - add service plugin class
549function neutron_service_plugin_class_add_new {
550 local service_plugin_class=$1
551 local plugins=""
552
553 plugins=$(iniget $NEUTRON_CONF DEFAULT service_plugins)
YAMAMOTO Takashi84e45c92017-02-22 14:25:14 -0500554 if [ $plugins ]; then
555 plugins+=","
556 fi
557 plugins+="${service_plugin_class}"
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900558 iniset $NEUTRON_CONF DEFAULT service_plugins $plugins
559}
560
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000561function _neutron_ml2_extension_driver_add {
562 local driver=$1
563 local drivers=""
564
565 drivers=$(iniget $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers)
566 if [ $drivers ]; then
567 drivers+=","
568 fi
569 drivers+="${driver}"
570 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers $drivers
571}
572
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900573function neutron_server_config_add_new {
574 _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS+=($1)
575}
576
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500577# neutron_deploy_rootwrap_filters() - deploy rootwrap filters
578function neutron_deploy_rootwrap_filters_new {
579 local srcdir=$1
580 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
581 sudo install -o root -g root -m 644 $srcdir/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
582}
583
Sean M. Collins2a242512016-05-03 09:03:09 -0400584# Dispatch functions
585# These are needed for compatibility between the old and new implementations
586# where there are function name overlaps. These will be removed when
587# neutron-legacy is removed.
588# TODO(sc68cal) Remove when neutron-legacy is no more.
589function cleanup_neutron {
Kevin Benton66b361b2017-06-13 00:31:01 -0700590 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
591 stop_process neutron-api
592 stop_process neutron-rpc-server
593 remove_uwsgi_config "$NEUTRON_UWSGI_CONF" "$NEUTRON_BIN_DIR/neutron-api"
594 sudo rm -f $(apache_site_config_for neutron-api)
595 fi
596
Sean M. Collins2a242512016-05-03 09:03:09 -0400597 if is_neutron_legacy_enabled; then
598 # Call back to old function
599 cleanup_mutnauq "$@"
600 else
601 cleanup_neutron_new "$@"
602 fi
603}
604
605function configure_neutron {
606 if is_neutron_legacy_enabled; then
607 # Call back to old function
608 configure_mutnauq "$@"
609 else
610 configure_neutron_new "$@"
611 fi
Kevin Benton66b361b2017-06-13 00:31:01 -0700612
613 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
614 write_uwsgi_config "$NEUTRON_UWSGI_CONF" "$NEUTRON_BIN_DIR/neutron-api" "/networking"
615 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400616}
617
618function configure_neutron_nova {
619 if is_neutron_legacy_enabled; then
620 # Call back to old function
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400621 create_nova_conf_neutron $NOVA_CONF
622 if [[ "${CELLSV2_SETUP}" == "superconductor" ]]; then
623 for i in $(seq 1 $NOVA_NUM_CELLS); do
624 local conf
625 conf=$(conductor_conf $i)
626 create_nova_conf_neutron $conf
627 done
628 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400629 else
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400630 configure_neutron_nova_new $NOVA_CONF
631 if [[ "${CELLSV2_SETUP}" == "superconductor" ]]; then
632 for i in $(seq 1 $NOVA_NUM_CELLS); do
633 local conf
634 conf=$(conductor_conf $i)
635 configure_neutron_nova_new $conf
636 done
637 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400638 fi
639}
640
641function create_neutron_accounts {
642 if is_neutron_legacy_enabled; then
643 # Call back to old function
644 create_mutnauq_accounts "$@"
645 else
646 create_neutron_accounts_new "$@"
647 fi
648}
649
650function init_neutron {
651 if is_neutron_legacy_enabled; then
652 # Call back to old function
653 init_mutnauq "$@"
654 else
655 init_neutron_new "$@"
656 fi
657}
658
659function install_neutron {
660 if is_neutron_legacy_enabled; then
661 # Call back to old function
662 install_mutnauq "$@"
663 else
664 install_neutron_new "$@"
665 fi
666}
667
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900668function neutron_service_plugin_class_add {
669 if is_neutron_legacy_enabled; then
670 # Call back to old function
671 _neutron_service_plugin_class_add "$@"
672 else
673 neutron_service_plugin_class_add_new "$@"
674 fi
675}
676
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000677function neutron_ml2_extension_driver_add {
678 if is_neutron_legacy_enabled; then
679 # Call back to old function
680 _neutron_ml2_extension_driver_add_old "$@"
681 else
682 _neutron_ml2_extension_driver_add "$@"
683 fi
684}
685
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900686function install_neutron_agent_packages {
687 if is_neutron_legacy_enabled; then
688 # Call back to old function
689 install_neutron_agent_packages_mutnauq "$@"
690 else
691 :
692 fi
693}
694
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900695function neutron_server_config_add {
696 if is_neutron_legacy_enabled; then
697 # Call back to old function
698 mutnauq_server_config_add "$@"
699 else
700 neutron_server_config_add_new "$@"
701 fi
702}
703
Sean M. Collins2a242512016-05-03 09:03:09 -0400704function start_neutron {
705 if is_neutron_legacy_enabled; then
706 # Call back to old function
707 start_mutnauq_l2_agent "$@"
708 start_mutnauq_other_agents "$@"
709 else
710 start_neutron_new "$@"
711 fi
712}
713
714function stop_neutron {
715 if is_neutron_legacy_enabled; then
716 # Call back to old function
717 stop_mutnauq "$@"
718 else
719 stop_neutron_new "$@"
720 fi
721}
722
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500723function neutron_deploy_rootwrap_filters {
724 if is_neutron_legacy_enabled; then
725 # Call back to old function
726 _neutron_deploy_rootwrap_filters "$@"
727 else
728 neutron_deploy_rootwrap_filters_new "$@"
729 fi
730}
731
Sean M. Collins2a242512016-05-03 09:03:09 -0400732# Restore xtrace
733$XTRACE