blob: 2a660ec8e1329bddd1e5903cf4443ac1a382d418 [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
31NEUTRON_AGENT=${NEUTRON_AGENT:-openvswitch}
32NEUTRON_DIR=$DEST/neutron
33NEUTRON_AUTH_CACHE_DIR=${NEUTRON_AUTH_CACHE_DIR:-/var/cache/neutron}
34
35NEUTRON_BIN_DIR=$(get_python_exec_prefix)
36NEUTRON_DHCP_BINARY="neutron-dhcp-agent"
37
38NEUTRON_CONF_DIR=/etc/neutron
39NEUTRON_CONF=$NEUTRON_CONF_DIR/neutron.conf
40NEUTRON_META_CONF=$NEUTRON_CONF_DIR/metadata_agent.ini
41
42NEUTRON_DHCP_CONF=$NEUTRON_CONF_DIR/dhcp_agent.ini
43NEUTRON_L3_CONF=$NEUTRON_CONF_DIR/l3_agent.ini
44NEUTRON_AGENT_CONF=$NEUTRON_CONF_DIR/
45
46NEUTRON_STATE_PATH=${NEUTRON_STATE_PATH:=$DATA_DIR/neutron}
47NEUTRON_AUTH_CACHE_DIR=${NEUTRON_AUTH_CACHE_DIR:-/var/cache/neutron}
48
49# By default, use the ML2 plugin
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +090050NEUTRON_CORE_PLUGIN=${NEUTRON_CORE_PLUGIN:-ml2}
51NEUTRON_CORE_PLUGIN_CONF_FILENAME=${NEUTRON_CORE_PLUGIN_CONF_FILENAME:-ml2_conf.ini}
52NEUTRON_CORE_PLUGIN_CONF_PATH=$NEUTRON_CONF_DIR/plugins/$NEUTRON_CORE_PLUGIN
53NEUTRON_CORE_PLUGIN_CONF=$NEUTRON_CORE_PLUGIN_CONF_PATH/$NEUTRON_CORE_PLUGIN_CONF_FILENAME
Sean M. Collins2a242512016-05-03 09:03:09 -040054
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +000055NEUTRON_METERING_AGENT_CONF_FILENAME=${NEUTRON_METERING_AGENT_CONF_FILENAME:-metering_agent.ini}
56NEUTRON_METERING_AGENT_CONF=$NEUTRON_CONF_DIR/$NEUTRON_METERING_AGENT_CONF_FILENAME
57
Sean M. Collins2a242512016-05-03 09:03:09 -040058NEUTRON_AGENT_BINARY=${NEUTRON_AGENT_BINARY:-neutron-$NEUTRON_AGENT-agent}
59NEUTRON_L3_BINARY=${NEUTRON_L3_BINARY:-neutron-l3-agent}
60NEUTRON_META_BINARY=${NEUTRON_META_BINARY:-neutron-metadata-agent}
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +000061NEUTRON_METERING_BINARY=${NEUTRON_METERING_BINARY:-neutron-metering-agent}
Sean M. Collins2a242512016-05-03 09:03:09 -040062
63# Public facing bits
Sean Daguef3b2f4c2017-04-13 10:11:48 -040064if is_service_enabled tls-proxy; then
Sean M. Collins2a242512016-05-03 09:03:09 -040065 NEUTRON_SERVICE_PROTOCOL="https"
66fi
67NEUTRON_SERVICE_HOST=${NEUTRON_SERVICE_HOST:-$SERVICE_HOST}
68NEUTRON_SERVICE_PORT=${NEUTRON_SERVICE_PORT:-9696}
69NEUTRON_SERVICE_PORT_INT=${NEUTRON_SERVICE_PORT_INT:-19696}
70NEUTRON_SERVICE_PROTOCOL=${NEUTRON_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
71
72NEUTRON_AUTH_STRATEGY=${NEUTRON_AUTH_STRATEGY:-keystone}
73NEUTRON_ROOTWRAP=$(get_rootwrap_location neutron)
74NEUTRON_ROOTWRAP_CONF_FILE=$NEUTRON_CONF_DIR/rootwrap.conf
75NEUTRON_ROOTWRAP_DAEMON_CMD="sudo $NEUTRON_ROOTWRAP-daemon $NEUTRON_ROOTWRAP_CONF_FILE"
76
Ihar Hrachyshka615e1152017-02-23 10:41:51 +000077# This is needed because _neutron_ovs_base_configure_l3_agent will set
78# external_network_bridge
79Q_USE_PROVIDERNET_FOR_PUBLIC=${Q_USE_PROVIDERNET_FOR_PUBLIC:-True}
80# This is needed because _neutron_ovs_base_configure_l3_agent uses it to create
81# an external network bridge
82PUBLIC_BRIDGE=${PUBLIC_BRIDGE:-br-ex}
83PUBLIC_BRIDGE_MTU=${PUBLIC_BRIDGE_MTU:-1500}
84
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +090085# Additional neutron api config files
Sean Dagueafef8bf2017-03-06 14:07:23 -050086declare -a -g _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +090087
Sean M. Collins2a242512016-05-03 09:03:09 -040088# Functions
89# ---------
90
91# Test if any Neutron services are enabled
92# is_neutron_enabled
93function is_neutron_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -070094 [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -040095 [[ ,${ENABLED_SERVICES} =~ ,"neutron-" || ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
96 return 1
97}
98
99# Test if any Neutron services are enabled
100# is_neutron_enabled
101function is_neutron_legacy_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -0700102 [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -0400103 [[ ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
104 return 1
105}
106
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900107if is_neutron_legacy_enabled; then
108 source $TOP_DIR/lib/neutron-legacy
109fi
110
Sean M. Collins2a242512016-05-03 09:03:09 -0400111# cleanup_neutron() - Remove residual data files, anything left over from previous
112# runs that a clean run would need to clean up
113function cleanup_neutron_new {
114 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
115 if is_neutron_ovs_base_plugin; then
116 neutron_ovs_base_cleanup
117 fi
118
119 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
120 neutron_lb_cleanup
121 fi
122 # delete all namespaces created by neutron
123 for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|qlbaas|fip|snat)-[0-9a-f-]*'); do
124 sudo ip netns delete ${ns}
125 done
126}
127
128# configure_neutron() - Set config files, create data dirs, etc
129function configure_neutron_new {
130 sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR
131
132 (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh)
133
134 cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF
135
136 configure_neutron_rootwrap
137
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900138 mkdir -p $NEUTRON_CORE_PLUGIN_CONF_PATH
Sean M. Collins2a242512016-05-03 09:03:09 -0400139
YAMAMOTO Takashi1df17c92017-05-01 17:00:42 +0900140 # NOTE(yamamoto): A decomposed plugin should prepare the config file in
141 # its devstack plugin.
142 if [ -f $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample ]; then
143 cp $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample $NEUTRON_CORE_PLUGIN_CONF
144 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400145
146 iniset $NEUTRON_CONF database connection `database_connection_url neutron`
147 iniset $NEUTRON_CONF DEFAULT state_path $NEUTRON_STATE_PATH
148 iniset $NEUTRON_CONF oslo_concurrency lock_path $NEUTRON_STATE_PATH/lock
149 iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG
150
Gary Kottond2ef6152016-09-20 04:12:11 -0700151 iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collinsfbba3b92016-05-12 11:17:53 -0400152
Sean M. Collins5394cc12016-05-11 15:03:38 -0400153 iniset_rpc_backend neutron $NEUTRON_CONF
154
Sean M. Collins2a242512016-05-03 09:03:09 -0400155 # Neutron API server & Neutron plugin
156 if is_service_enabled neutron-api; then
157 local policy_file=$NEUTRON_CONF_DIR/policy.json
158 cp $NEUTRON_DIR/etc/policy.json $policy_file
159 # Allow neutron user to administer neutron to match neutron account
160 sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:neutron"/g' $policy_file
161
162 cp $NEUTRON_DIR/etc/api-paste.ini $NEUTRON_CONF_DIR/api-paste.ini
163
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900164 iniset $NEUTRON_CONF DEFAULT core_plugin $NEUTRON_CORE_PLUGIN
Sean M. Collins2a242512016-05-03 09:03:09 -0400165
Sean M. Collins2a242512016-05-03 09:03:09 -0400166 iniset $NEUTRON_CONF DEFAULT policy_file $policy_file
167 iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips True
168
169 iniset $NEUTRON_CONF DEFAULT auth_strategy $NEUTRON_AUTH_STRATEGY
170 configure_auth_token_middleware $NEUTRON_CONF neutron $NEUTRON_AUTH_CACHE_DIR keystone_authtoken
Ihar Hrachyshka0ce4ba92017-02-24 05:13:53 +0000171 configure_auth_token_middleware $NEUTRON_CONF nova $NEUTRON_AUTH_CACHE_DIR nova
Sean M. Collins2a242512016-05-03 09:03:09 -0400172
173 # Configure VXLAN
174 # TODO(sc68cal) not hardcode?
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900175 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 tenant_network_types vxlan
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900176 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 mechanism_drivers openvswitch,linuxbridge
177 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vxlan vni_ranges 1001:2000
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500178 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_flat flat_networks public
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400179 if [[ "$NEUTRON_PORT_SECURITY" = "True" ]]; then
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000180 neutron_ml2_extension_driver_add port_security
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400181 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400182 fi
183
184 # Neutron OVS or LB agent
185 if is_service_enabled neutron-agent; then
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900186 iniset $NEUTRON_CORE_PLUGIN_CONF agent tunnel_types vxlan
187 iniset $NEUTRON_CORE_PLUGIN_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400188
189 # Configure the neutron agent
190 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500191 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900192 iniset $NEUTRON_CORE_PLUGIN_CONF vxlan local_ip $HOST_IP
Sean M. Collins2a242512016-05-03 09:03:09 -0400193 else
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500194 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables_hybrid
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900195 iniset $NEUTRON_CORE_PLUGIN_CONF ovs local_ip $HOST_IP
Sean M. Collins2a242512016-05-03 09:03:09 -0400196 fi
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000197
Denis Buliga0bf75a42017-02-06 16:56:46 +0200198 if ! running_in_container; then
199 enable_kernel_bridge_firewall
200 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400201 fi
202
203 # DHCP Agent
204 if is_service_enabled neutron-dhcp; then
205 cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $NEUTRON_DHCP_CONF
206
Gary Kottond2ef6152016-09-20 04:12:11 -0700207 iniset $NEUTRON_DHCP_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean Dague78801c12016-08-04 14:10:07 -0400208 # make it so we have working DNS from guests
209 iniset $NEUTRON_DHCP_CONF DEFAULT dnsmasq_local_resolv True
210
Sean M. Collins2a242512016-05-03 09:03:09 -0400211 iniset $NEUTRON_DHCP_CONF agent root_helper_daemon "$NEUTRON_ROOTWRAP_DAEMON_CMD"
212 iniset $NEUTRON_DHCP_CONF DEFAULT interface_driver $NEUTRON_AGENT
213 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
214 fi
215
216 if is_service_enabled neutron-l3; then
217 cp $NEUTRON_DIR/etc/l3_agent.ini.sample $NEUTRON_L3_CONF
218 iniset $NEUTRON_L3_CONF DEFAULT interface_driver $NEUTRON_AGENT
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900219 neutron_service_plugin_class_add router
Sean M. Collins2a242512016-05-03 09:03:09 -0400220 iniset $NEUTRON_L3_CONF agent root_helper_daemon "$NEUTRON_ROOTWRAP_DAEMON_CMD"
Gary Kottond2ef6152016-09-20 04:12:11 -0700221 iniset $NEUTRON_L3_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400222 neutron_plugin_configure_l3_agent $NEUTRON_L3_CONF
223 fi
224
225 # Metadata
Sean M. Collins1cd28282016-05-11 15:07:19 -0400226 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400227 cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $NEUTRON_META_CONF
228
Gary Kottond2ef6152016-09-20 04:12:11 -0700229 iniset $NEUTRON_META_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400230 iniset $NEUTRON_META_CONF DEFAULT nova_metadata_ip $SERVICE_HOST
Armando Migliaccio06f2ea22017-02-02 16:47:00 -0800231 iniset $NEUTRON_META_CONF DEFAULT metadata_workers $API_WORKERS
Sean M. Collins2a242512016-05-03 09:03:09 -0400232 iniset $NEUTRON_META_CONF agent root_helper_daemon "$NEUTRON_ROOTWRAP_DAEMON_CMD"
233
234 # TODO(dtroyer): remove the v2.0 hard code below
Sean Daguec13b8a12017-04-20 06:54:51 -0400235 iniset $NEUTRON_META_CONF DEFAULT auth_url $KEYSTONE_SERVICE_URI
Sean M. Collins2a242512016-05-03 09:03:09 -0400236 configure_auth_token_middleware $NEUTRON_META_CONF neutron $NEUTRON_AUTH_CACHE_DIR DEFAULT
237 fi
238
239 # Format logging
Sean Dague27f66e92017-05-02 09:08:17 -0400240 setup_logging $NEUTRON_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400241
242 if is_service_enabled tls-proxy; then
243 # Set the service port for a proxy to take the original
244 iniset $NEUTRON_CONF DEFAULT bind_port "$NEUTRON_SERVICE_PORT_INT"
245 fi
246
Sean M. Collins8063fee2016-05-24 11:27:36 -0700247 # Metering
248 if is_service_enabled neutron-metering; then
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +0000249 cp $NEUTRON_DIR/etc/metering_agent.ini.sample $NEUTRON_METERING_AGENT_CONF
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900250 neutron_service_plugin_class_add metering
Sean M. Collins8063fee2016-05-24 11:27:36 -0700251 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400252}
253
254# configure_neutron_rootwrap() - configure Neutron's rootwrap
255function configure_neutron_rootwrap {
256 # Set the paths of certain binaries
257 neutron_rootwrap=$(get_rootwrap_location neutron)
258
259 # Specify ``rootwrap.conf`` as first parameter to neutron-rootwrap
260 local rootwrap_sudoer_cmd="${neutron_rootwrap} $NEUTRON_CONF_DIR/rootwrap.conf"
261
262 # Deploy new rootwrap filters files (owned by root).
263 # Wipe any existing rootwrap.d files first
264 if [[ -d $NEUTRON_CONF_DIR/rootwrap.d ]]; then
265 sudo rm -rf $NEUTRON_CONF_DIR/rootwrap.d
266 fi
267
268 # Deploy filters to /etc/neutron/rootwrap.d
269 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
270 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
271
272 # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d``
273 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $NEUTRON_CONF_DIR
274 sudo sed -e "s:^filters_path=.*$:filters_path=$NEUTRON_CONF_DIR/rootwrap.d:" -i $NEUTRON_CONF_DIR/rootwrap.conf
275
276 # Set up the rootwrap sudoers for Neutron
277 tempfile=`mktemp`
278 echo "$STACK_USER ALL=(root) NOPASSWD: $rootwrap_sudoer_cmd *" >$tempfile
279 chmod 0440 $tempfile
280 sudo chown root:root $tempfile
281 sudo mv $tempfile /etc/sudoers.d/neutron-rootwrap
282}
283
284# Make Neutron-required changes to nova.conf
285function configure_neutron_nova_new {
286 iniset $NOVA_CONF DEFAULT use_neutron True
287 iniset $NOVA_CONF neutron auth_type "password"
Sean Daguec13b8a12017-04-20 06:54:51 -0400288 iniset $NOVA_CONF neutron auth_url "$KEYSTONE_SERVICE_URI"
Sean M. Collins2a242512016-05-03 09:03:09 -0400289 iniset $NOVA_CONF neutron username neutron
290 iniset $NOVA_CONF neutron password "$SERVICE_PASSWORD"
291 iniset $NOVA_CONF neutron user_domain_name "Default"
292 iniset $NOVA_CONF neutron project_name "$SERVICE_TENANT_NAME"
293 iniset $NOVA_CONF neutron project_domain_name "Default"
294 iniset $NOVA_CONF neutron auth_strategy $NEUTRON_AUTH_STRATEGY
295 iniset $NOVA_CONF neutron region_name "$REGION_NAME"
296 iniset $NOVA_CONF neutron url $NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT
297
298 iniset $NOVA_CONF DEFAULT firewall_driver nova.virt.firewall.NoopFirewallDriver
299
Gary Kotton88f85582016-08-14 06:55:42 -0700300 # optionally set options in nova_conf
301 neutron_plugin_create_nova_conf
302
Sean M. Collins1cd28282016-05-11 15:07:19 -0400303 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400304 iniset $NOVA_CONF neutron service_metadata_proxy "True"
305 fi
306
307}
308
309# Tenant User Roles
310# ------------------------------------------------------------------
311# service neutron admin # if enabled
312
313# create_neutron_accounts() - Create required service accounts
314function create_neutron_accounts_new {
315 if [[ "$ENABLED_SERVICES" =~ "neutron-api" ]]; then
316
317 create_service_user "neutron"
318
319 neutron_service=$(get_or_create_service "neutron" \
320 "network" "Neutron Service")
321 get_or_create_endpoint $neutron_service \
322 "$REGION_NAME" \
Sean M. Collins2a242512016-05-03 09:03:09 -0400323 "$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT/"
324 fi
325}
326
327# create_neutron_cache_dir() - Part of the init_neutron() process
328function create_neutron_cache_dir {
329 # Create cache dir
330 sudo install -d -o $STACK_USER $NEUTRON_AUTH_CACHE_DIR
331 rm -f $NEUTRON_AUTH_CACHE_DIR/*
332}
333
334# init_neutron() - Initialize databases, etc.
335function init_neutron_new {
336
337 recreate_database neutron
338
Clark Boylan633dbc32017-06-14 12:09:21 -0700339 time_start "dbsync"
Sean M. Collins2a242512016-05-03 09:03:09 -0400340 # Run Neutron db migrations
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000341 $NEUTRON_BIN_DIR/neutron-db-manage upgrade heads
Clark Boylan633dbc32017-06-14 12:09:21 -0700342 time_stop "dbsync"
Sean M. Collins2a242512016-05-03 09:03:09 -0400343
344 create_neutron_cache_dir
345}
346
347# install_neutron() - Collect source and prepare
348function install_neutron_new {
349 git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH
350 setup_develop $NEUTRON_DIR
351
352 # Install neutron-lib from git so we make sure we're testing
353 # the latest code.
354 if use_library_from_git "neutron-lib"; then
355 git_clone_by_name "neutron-lib"
356 setup_dev_lib "neutron-lib"
357 fi
358
359 # L3 service requires radvd
360 if is_service_enabled neutron-l3; then
361 install_package radvd
362 fi
363
364 if is_service_enabled neutron-agent neutron-dhcp neutron-l3; then
365 #TODO(sc68cal) - kind of ugly
366 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
367 neutron_plugin_install_agent_packages
368 fi
369
370}
371
372# install_neutronclient() - Collect source and prepare
373function install_neutronclient {
374 if use_library_from_git "python-neutronclient"; then
375 git_clone_by_name "python-neutronclient"
376 setup_dev_lib "python-neutronclient"
377 sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-neutronclient"]}/tools/,/etc/bash_completion.d/}neutron.bash_completion
378 fi
379}
380
381# start_neutron_api() - Start the API process ahead of other things
382function start_neutron_api {
383 local service_port=$NEUTRON_SERVICE_PORT
384 local service_protocol=$NEUTRON_SERVICE_PROTOCOL
385 if is_service_enabled tls-proxy; then
386 service_port=$NEUTRON_SERVICE_PORT_INT
387 service_protocol="http"
388 fi
389
YAMAMOTO Takashied887d82017-02-22 14:21:33 -0500390 local opts=""
391 opts+=" --config-file $NEUTRON_CONF"
392 opts+=" --config-file $NEUTRON_CORE_PLUGIN_CONF"
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900393 local cfg_file
394 for cfg_file in ${_NEUTRON_SERVER_EXTRA_CONF_FILES_ABS[@]}; do
395 opts+=" --config-file $cfg_file"
396 done
397
Sean M. Collins2a242512016-05-03 09:03:09 -0400398 # Start the Neutron service
399 # TODO(sc68cal) Stop hard coding this
YAMAMOTO Takashied887d82017-02-22 14:21:33 -0500400 run_process neutron-api "$NEUTRON_BIN_DIR/neutron-server $opts"
Sean M. Collins2a242512016-05-03 09:03:09 -0400401
Sean Daguef3b2f4c2017-04-13 10:11:48 -0400402 if ! wait_for_service $SERVICE_TIMEOUT $service_protocol://$NEUTRON_SERVICE_HOST:$service_port; then
403 die $LINENO "neutron-api did not start"
Sean M. Collins2a242512016-05-03 09:03:09 -0400404 fi
405
Sean M. Collins2a242512016-05-03 09:03:09 -0400406 # Start proxy if enabled
407 if is_service_enabled tls-proxy; then
Gregory Haynes4b49e402016-08-31 18:19:51 -0700408 start_tls_proxy neutron '*' $NEUTRON_SERVICE_PORT $NEUTRON_SERVICE_HOST $NEUTRON_SERVICE_PORT_INT
Sean M. Collins2a242512016-05-03 09:03:09 -0400409 fi
410}
411
412# start_neutron() - Start running processes, including screen
413function start_neutron_new {
Sean M. Collins2a242512016-05-03 09:03:09 -0400414 # Start up the neutron agents if enabled
415 # TODO(sc68cal) Make this pluggable so different DevStack plugins for different Neutron plugins
416 # can resolve the $NEUTRON_AGENT_BINARY
417 if is_service_enabled neutron-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000418 # TODO(ihrachys) stop loading ml2_conf.ini into agents, instead load agent specific files
419 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 -0400420 fi
421 if is_service_enabled neutron-dhcp; then
422 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000423 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 -0400424 fi
425 if is_service_enabled neutron-l3; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000426 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 +0900427 fi
YAMAMOTO Takashi07edde12016-10-19 19:21:00 +0000428 if is_service_enabled neutron-api; then
429 # XXX(sc68cal) - Here's where plugins can wire up their own networks instead
430 # of the code in lib/neutron_plugins/services/l3
431 if type -p neutron_plugin_create_initial_networks > /dev/null; then
432 neutron_plugin_create_initial_networks
433 else
434 # XXX(sc68cal) Load up the built in Neutron networking code and build a topology
435 source $TOP_DIR/lib/neutron_plugins/services/l3
436 # Create the networks using servic
437 create_neutron_initial_network
438 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400439 fi
Sean M. Collins1cd28282016-05-11 15:07:19 -0400440 if is_service_enabled neutron-metadata-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000441 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 -0400442 fi
Sean M. Collins8063fee2016-05-24 11:27:36 -0700443
444 if is_service_enabled neutron-metering; then
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +0000445 run_process neutron-metering "$NEUTRON_METERING_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_METERING_AGENT_CONF"
Sean M. Collins8063fee2016-05-24 11:27:36 -0700446 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400447}
448
449# stop_neutron() - Stop running processes (non-screen)
450function stop_neutron_new {
451 for serv in neutron-api neutron-agent neutron-l3; do
452 stop_process $serv
453 done
454
455 if is_service_enabled neutron-dhcp; then
456 stop_process neutron-dhcp
457 pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }')
458 [ ! -z "$pid" ] && sudo kill -9 $pid
459 fi
460
Sean M. Collins1cd28282016-05-11 15:07:19 -0400461 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400462 sudo pkill -9 -f neutron-ns-metadata-proxy || :
Sean M. Collins1cd28282016-05-11 15:07:19 -0400463 stop_process neutron-metadata-agent
Sean M. Collins2a242512016-05-03 09:03:09 -0400464 fi
465}
466
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900467# neutron_service_plugin_class_add() - add service plugin class
468function neutron_service_plugin_class_add_new {
469 local service_plugin_class=$1
470 local plugins=""
471
472 plugins=$(iniget $NEUTRON_CONF DEFAULT service_plugins)
YAMAMOTO Takashi84e45c92017-02-22 14:25:14 -0500473 if [ $plugins ]; then
474 plugins+=","
475 fi
476 plugins+="${service_plugin_class}"
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900477 iniset $NEUTRON_CONF DEFAULT service_plugins $plugins
478}
479
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000480function _neutron_ml2_extension_driver_add {
481 local driver=$1
482 local drivers=""
483
484 drivers=$(iniget $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers)
485 if [ $drivers ]; then
486 drivers+=","
487 fi
488 drivers+="${driver}"
489 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers $drivers
490}
491
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900492function neutron_server_config_add_new {
493 _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS+=($1)
494}
495
Sean M. Collins2a242512016-05-03 09:03:09 -0400496# Dispatch functions
497# These are needed for compatibility between the old and new implementations
498# where there are function name overlaps. These will be removed when
499# neutron-legacy is removed.
500# TODO(sc68cal) Remove when neutron-legacy is no more.
501function cleanup_neutron {
502 if is_neutron_legacy_enabled; then
503 # Call back to old function
504 cleanup_mutnauq "$@"
505 else
506 cleanup_neutron_new "$@"
507 fi
508}
509
510function configure_neutron {
511 if is_neutron_legacy_enabled; then
512 # Call back to old function
513 configure_mutnauq "$@"
514 else
515 configure_neutron_new "$@"
516 fi
517}
518
519function configure_neutron_nova {
520 if is_neutron_legacy_enabled; then
521 # Call back to old function
522 create_nova_conf_neutron "$@"
523 else
524 configure_neutron_nova_new "$@"
525 fi
526}
527
528function create_neutron_accounts {
529 if is_neutron_legacy_enabled; then
530 # Call back to old function
531 create_mutnauq_accounts "$@"
532 else
533 create_neutron_accounts_new "$@"
534 fi
535}
536
537function init_neutron {
538 if is_neutron_legacy_enabled; then
539 # Call back to old function
540 init_mutnauq "$@"
541 else
542 init_neutron_new "$@"
543 fi
544}
545
546function install_neutron {
547 if is_neutron_legacy_enabled; then
548 # Call back to old function
549 install_mutnauq "$@"
550 else
551 install_neutron_new "$@"
552 fi
553}
554
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900555function neutron_service_plugin_class_add {
556 if is_neutron_legacy_enabled; then
557 # Call back to old function
558 _neutron_service_plugin_class_add "$@"
559 else
560 neutron_service_plugin_class_add_new "$@"
561 fi
562}
563
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000564function neutron_ml2_extension_driver_add {
565 if is_neutron_legacy_enabled; then
566 # Call back to old function
567 _neutron_ml2_extension_driver_add_old "$@"
568 else
569 _neutron_ml2_extension_driver_add "$@"
570 fi
571}
572
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900573function install_neutron_agent_packages {
574 if is_neutron_legacy_enabled; then
575 # Call back to old function
576 install_neutron_agent_packages_mutnauq "$@"
577 else
578 :
579 fi
580}
581
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900582function neutron_server_config_add {
583 if is_neutron_legacy_enabled; then
584 # Call back to old function
585 mutnauq_server_config_add "$@"
586 else
587 neutron_server_config_add_new "$@"
588 fi
589}
590
Sean M. Collins2a242512016-05-03 09:03:09 -0400591function start_neutron {
592 if is_neutron_legacy_enabled; then
593 # Call back to old function
594 start_mutnauq_l2_agent "$@"
595 start_mutnauq_other_agents "$@"
596 else
597 start_neutron_new "$@"
598 fi
599}
600
601function stop_neutron {
602 if is_neutron_legacy_enabled; then
603 # Call back to old function
604 stop_mutnauq "$@"
605 else
606 stop_neutron_new "$@"
607 fi
608}
609
610# Restore xtrace
611$XTRACE