blob: d80e9d90a169ce9f207594d86a6c7c015e02f05d [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
55NEUTRON_AGENT_BINARY=${NEUTRON_AGENT_BINARY:-neutron-$NEUTRON_AGENT-agent}
56NEUTRON_L3_BINARY=${NEUTRON_L3_BINARY:-neutron-l3-agent}
57NEUTRON_META_BINARY=${NEUTRON_META_BINARY:-neutron-metadata-agent}
58
59# Public facing bits
60if is_ssl_enabled_service "neutron" || is_service_enabled tls-proxy; then
61 NEUTRON_SERVICE_PROTOCOL="https"
62fi
63NEUTRON_SERVICE_HOST=${NEUTRON_SERVICE_HOST:-$SERVICE_HOST}
64NEUTRON_SERVICE_PORT=${NEUTRON_SERVICE_PORT:-9696}
65NEUTRON_SERVICE_PORT_INT=${NEUTRON_SERVICE_PORT_INT:-19696}
66NEUTRON_SERVICE_PROTOCOL=${NEUTRON_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
67
68NEUTRON_AUTH_STRATEGY=${NEUTRON_AUTH_STRATEGY:-keystone}
69NEUTRON_ROOTWRAP=$(get_rootwrap_location neutron)
70NEUTRON_ROOTWRAP_CONF_FILE=$NEUTRON_CONF_DIR/rootwrap.conf
71NEUTRON_ROOTWRAP_DAEMON_CMD="sudo $NEUTRON_ROOTWRAP-daemon $NEUTRON_ROOTWRAP_CONF_FILE"
72
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +090073# Additional neutron api config files
74declare -a _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS
75
Sean M. Collins2a242512016-05-03 09:03:09 -040076# Functions
77# ---------
78
79# Test if any Neutron services are enabled
80# is_neutron_enabled
81function is_neutron_enabled {
82 [[ ,${ENABLED_SERVICES} =~ ,"neutron-" || ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
83 return 1
84}
85
86# Test if any Neutron services are enabled
87# is_neutron_enabled
88function is_neutron_legacy_enabled {
89 [[ ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
90 return 1
91}
92
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +090093if is_neutron_legacy_enabled; then
94 source $TOP_DIR/lib/neutron-legacy
95fi
96
Sean M. Collins2a242512016-05-03 09:03:09 -040097# cleanup_neutron() - Remove residual data files, anything left over from previous
98# runs that a clean run would need to clean up
99function cleanup_neutron_new {
100 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
101 if is_neutron_ovs_base_plugin; then
102 neutron_ovs_base_cleanup
103 fi
104
105 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
106 neutron_lb_cleanup
107 fi
108 # delete all namespaces created by neutron
109 for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|qlbaas|fip|snat)-[0-9a-f-]*'); do
110 sudo ip netns delete ${ns}
111 done
112}
113
114# configure_neutron() - Set config files, create data dirs, etc
115function configure_neutron_new {
116 sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR
117
118 (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh)
119
120 cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF
121
122 configure_neutron_rootwrap
123
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900124 mkdir -p $NEUTRON_CORE_PLUGIN_CONF_PATH
Sean M. Collins2a242512016-05-03 09:03:09 -0400125
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900126 cp $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample $NEUTRON_CORE_PLUGIN_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400127
128 iniset $NEUTRON_CONF database connection `database_connection_url neutron`
129 iniset $NEUTRON_CONF DEFAULT state_path $NEUTRON_STATE_PATH
130 iniset $NEUTRON_CONF oslo_concurrency lock_path $NEUTRON_STATE_PATH/lock
131 iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG
132
Gary Kottond2ef6152016-09-20 04:12:11 -0700133 iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collinsfbba3b92016-05-12 11:17:53 -0400134
Sean M. Collins5394cc12016-05-11 15:03:38 -0400135 iniset_rpc_backend neutron $NEUTRON_CONF
136
Sean M. Collins2a242512016-05-03 09:03:09 -0400137 # Neutron API server & Neutron plugin
138 if is_service_enabled neutron-api; then
139 local policy_file=$NEUTRON_CONF_DIR/policy.json
140 cp $NEUTRON_DIR/etc/policy.json $policy_file
141 # Allow neutron user to administer neutron to match neutron account
142 sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:neutron"/g' $policy_file
143
144 cp $NEUTRON_DIR/etc/api-paste.ini $NEUTRON_CONF_DIR/api-paste.ini
145
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900146 iniset $NEUTRON_CONF DEFAULT core_plugin $NEUTRON_CORE_PLUGIN
Sean M. Collins2a242512016-05-03 09:03:09 -0400147
Sean M. Collins2a242512016-05-03 09:03:09 -0400148 iniset $NEUTRON_CONF DEFAULT policy_file $policy_file
149 iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips True
150
151 iniset $NEUTRON_CONF DEFAULT auth_strategy $NEUTRON_AUTH_STRATEGY
152 configure_auth_token_middleware $NEUTRON_CONF neutron $NEUTRON_AUTH_CACHE_DIR keystone_authtoken
153
Sean M. Collins2a242512016-05-03 09:03:09 -0400154 iniset $NEUTRON_CONF nova auth_type password
155 iniset $NEUTRON_CONF nova auth_url "$KEYSTONE_SERVICE_PROTOCOL://$KEYSTONE_SERVICE_HOST:$KEYSTONE_AUTH_PORT/v3"
156 iniset $NEUTRON_CONF nova username nova
157 iniset $NEUTRON_CONF nova password $SERVICE_PASSWORD
158 iniset $NEUTRON_CONF nova user_domain_id default
159 iniset $NEUTRON_CONF nova project_name $SERVICE_TENANT_NAME
160 iniset $NEUTRON_CONF nova project_domain_id default
161 iniset $NEUTRON_CONF nova region_name $REGION_NAME
162
163 # Configure VXLAN
164 # TODO(sc68cal) not hardcode?
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900165 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 tenant_network_types vxlan
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900166 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 mechanism_drivers openvswitch,linuxbridge
167 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vxlan vni_ranges 1001:2000
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500168 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_flat flat_networks public
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400169 if [[ "$NEUTRON_PORT_SECURITY" = "True" ]]; then
170 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers port_security
171 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400172 fi
173
174 # Neutron OVS or LB agent
175 if is_service_enabled neutron-agent; then
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900176 iniset $NEUTRON_CORE_PLUGIN_CONF agent tunnel_types vxlan
177 iniset $NEUTRON_CORE_PLUGIN_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400178
179 # Configure the neutron agent
180 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500181 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900182 iniset $NEUTRON_CORE_PLUGIN_CONF vxlan local_ip $HOST_IP
Sean M. Collins2a242512016-05-03 09:03:09 -0400183 else
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500184 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables_hybrid
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900185 iniset $NEUTRON_CORE_PLUGIN_CONF ovs local_ip $HOST_IP
Sean M. Collins2a242512016-05-03 09:03:09 -0400186 fi
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000187
188 enable_kernel_bridge_firewall
Sean M. Collins2a242512016-05-03 09:03:09 -0400189 fi
190
191 # DHCP Agent
192 if is_service_enabled neutron-dhcp; then
193 cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $NEUTRON_DHCP_CONF
194
Gary Kottond2ef6152016-09-20 04:12:11 -0700195 iniset $NEUTRON_DHCP_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean Dague78801c12016-08-04 14:10:07 -0400196 # make it so we have working DNS from guests
197 iniset $NEUTRON_DHCP_CONF DEFAULT dnsmasq_local_resolv True
198
Sean M. Collins2a242512016-05-03 09:03:09 -0400199 iniset $NEUTRON_DHCP_CONF agent root_helper_daemon "$NEUTRON_ROOTWRAP_DAEMON_CMD"
200 iniset $NEUTRON_DHCP_CONF DEFAULT interface_driver $NEUTRON_AGENT
201 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
202 fi
203
204 if is_service_enabled neutron-l3; then
205 cp $NEUTRON_DIR/etc/l3_agent.ini.sample $NEUTRON_L3_CONF
206 iniset $NEUTRON_L3_CONF DEFAULT interface_driver $NEUTRON_AGENT
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900207 neutron_service_plugin_class_add router
Sean M. Collins2a242512016-05-03 09:03:09 -0400208 iniset $NEUTRON_L3_CONF agent root_helper_daemon "$NEUTRON_ROOTWRAP_DAEMON_CMD"
Gary Kottond2ef6152016-09-20 04:12:11 -0700209 iniset $NEUTRON_L3_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400210 neutron_plugin_configure_l3_agent $NEUTRON_L3_CONF
211 fi
212
213 # Metadata
Sean M. Collins1cd28282016-05-11 15:07:19 -0400214 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400215 cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $NEUTRON_META_CONF
216
Gary Kottond2ef6152016-09-20 04:12:11 -0700217 iniset $NEUTRON_META_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400218 iniset $NEUTRON_META_CONF DEFAULT nova_metadata_ip $SERVICE_HOST
Armando Migliaccio06f2ea22017-02-02 16:47:00 -0800219 iniset $NEUTRON_META_CONF DEFAULT metadata_workers $API_WORKERS
Sean M. Collins2a242512016-05-03 09:03:09 -0400220 iniset $NEUTRON_META_CONF agent root_helper_daemon "$NEUTRON_ROOTWRAP_DAEMON_CMD"
221
222 # TODO(dtroyer): remove the v2.0 hard code below
223 iniset $NEUTRON_META_CONF DEFAULT auth_url $KEYSTONE_SERVICE_URI/v2.0
224 configure_auth_token_middleware $NEUTRON_META_CONF neutron $NEUTRON_AUTH_CACHE_DIR DEFAULT
225 fi
226
227 # Format logging
228 if [ "$LOG_COLOR" == "True" ] && [ "$SYSLOG" == "False" ]; then
229 setup_colorized_logging $NEUTRON_CONF DEFAULT project_id
230 else
231 # Show user_name and project_name by default
232 iniset $NEUTRON_CONF DEFAULT logging_context_format_string "%(asctime)s.%(msecs)03d %(levelname)s %(name)s [%(request_id)s %(user_name)s %(project_name)s] %(instance)s%(message)s"
233 fi
234
235 if is_service_enabled tls-proxy; then
236 # Set the service port for a proxy to take the original
237 iniset $NEUTRON_CONF DEFAULT bind_port "$NEUTRON_SERVICE_PORT_INT"
238 fi
239
240 if is_ssl_enabled_service "nova"; then
241 iniset $NEUTRON_CONF nova cafile $SSL_BUNDLE_FILE
242 fi
243
244 if is_ssl_enabled_service "neutron"; then
245 ensure_certificates NEUTRON
246
247 iniset $NEUTRON_CONF DEFAULT use_ssl True
248 iniset $NEUTRON_CONF DEFAULT ssl_cert_file "$NEUTRON_SSL_CERT"
249 iniset $NEUTRON_CONF DEFAULT ssl_key_file "$NEUTRON_SSL_KEY"
250 fi
251
Sean M. Collins8063fee2016-05-24 11:27:36 -0700252 # Metering
253 if is_service_enabled neutron-metering; then
Sean M. Collins60f394a2016-06-17 16:15:30 -0400254 source $TOP_DIR/lib/neutron_plugins/services/metering
Sean M. Collins8063fee2016-05-24 11:27:36 -0700255 neutron_agent_metering_configure_common
256 neutron_agent_metering_configure_agent
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900257 neutron_service_plugin_class_add metering
Sean M. Collins8063fee2016-05-24 11:27:36 -0700258 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400259}
260
261# configure_neutron_rootwrap() - configure Neutron's rootwrap
262function configure_neutron_rootwrap {
263 # Set the paths of certain binaries
264 neutron_rootwrap=$(get_rootwrap_location neutron)
265
266 # Specify ``rootwrap.conf`` as first parameter to neutron-rootwrap
267 local rootwrap_sudoer_cmd="${neutron_rootwrap} $NEUTRON_CONF_DIR/rootwrap.conf"
268
269 # Deploy new rootwrap filters files (owned by root).
270 # Wipe any existing rootwrap.d files first
271 if [[ -d $NEUTRON_CONF_DIR/rootwrap.d ]]; then
272 sudo rm -rf $NEUTRON_CONF_DIR/rootwrap.d
273 fi
274
275 # Deploy filters to /etc/neutron/rootwrap.d
276 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
277 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
278
279 # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d``
280 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $NEUTRON_CONF_DIR
281 sudo sed -e "s:^filters_path=.*$:filters_path=$NEUTRON_CONF_DIR/rootwrap.d:" -i $NEUTRON_CONF_DIR/rootwrap.conf
282
283 # Set up the rootwrap sudoers for Neutron
284 tempfile=`mktemp`
285 echo "$STACK_USER ALL=(root) NOPASSWD: $rootwrap_sudoer_cmd *" >$tempfile
286 chmod 0440 $tempfile
287 sudo chown root:root $tempfile
288 sudo mv $tempfile /etc/sudoers.d/neutron-rootwrap
289}
290
291# Make Neutron-required changes to nova.conf
292function configure_neutron_nova_new {
293 iniset $NOVA_CONF DEFAULT use_neutron True
294 iniset $NOVA_CONF neutron auth_type "password"
295 iniset $NOVA_CONF neutron auth_url "$KEYSTONE_SERVICE_PROTOCOL://$KEYSTONE_SERVICE_HOST:$KEYSTONE_AUTH_PORT/v3"
296 iniset $NOVA_CONF neutron username neutron
297 iniset $NOVA_CONF neutron password "$SERVICE_PASSWORD"
298 iniset $NOVA_CONF neutron user_domain_name "Default"
299 iniset $NOVA_CONF neutron project_name "$SERVICE_TENANT_NAME"
300 iniset $NOVA_CONF neutron project_domain_name "Default"
301 iniset $NOVA_CONF neutron auth_strategy $NEUTRON_AUTH_STRATEGY
302 iniset $NOVA_CONF neutron region_name "$REGION_NAME"
303 iniset $NOVA_CONF neutron url $NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT
304
305 iniset $NOVA_CONF DEFAULT firewall_driver nova.virt.firewall.NoopFirewallDriver
306
Gary Kotton88f85582016-08-14 06:55:42 -0700307 # optionally set options in nova_conf
308 neutron_plugin_create_nova_conf
309
Sean M. Collins1cd28282016-05-11 15:07:19 -0400310 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400311 iniset $NOVA_CONF neutron service_metadata_proxy "True"
312 fi
313
314}
315
316# Tenant User Roles
317# ------------------------------------------------------------------
318# service neutron admin # if enabled
319
320# create_neutron_accounts() - Create required service accounts
321function create_neutron_accounts_new {
322 if [[ "$ENABLED_SERVICES" =~ "neutron-api" ]]; then
323
324 create_service_user "neutron"
325
326 neutron_service=$(get_or_create_service "neutron" \
327 "network" "Neutron Service")
328 get_or_create_endpoint $neutron_service \
329 "$REGION_NAME" \
Sean M. Collins2a242512016-05-03 09:03:09 -0400330 "$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT/"
331 fi
332}
333
334# create_neutron_cache_dir() - Part of the init_neutron() process
335function create_neutron_cache_dir {
336 # Create cache dir
337 sudo install -d -o $STACK_USER $NEUTRON_AUTH_CACHE_DIR
338 rm -f $NEUTRON_AUTH_CACHE_DIR/*
339}
340
341# init_neutron() - Initialize databases, etc.
342function init_neutron_new {
343
344 recreate_database neutron
345
346 # Run Neutron db migrations
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000347 $NEUTRON_BIN_DIR/neutron-db-manage upgrade heads
Sean M. Collins2a242512016-05-03 09:03:09 -0400348
349 create_neutron_cache_dir
350}
351
352# install_neutron() - Collect source and prepare
353function install_neutron_new {
354 git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH
355 setup_develop $NEUTRON_DIR
356
357 # Install neutron-lib from git so we make sure we're testing
358 # the latest code.
359 if use_library_from_git "neutron-lib"; then
360 git_clone_by_name "neutron-lib"
361 setup_dev_lib "neutron-lib"
362 fi
363
364 # L3 service requires radvd
365 if is_service_enabled neutron-l3; then
366 install_package radvd
367 fi
368
369 if is_service_enabled neutron-agent neutron-dhcp neutron-l3; then
370 #TODO(sc68cal) - kind of ugly
371 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
372 neutron_plugin_install_agent_packages
373 fi
374
375}
376
377# install_neutronclient() - Collect source and prepare
378function install_neutronclient {
379 if use_library_from_git "python-neutronclient"; then
380 git_clone_by_name "python-neutronclient"
381 setup_dev_lib "python-neutronclient"
382 sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-neutronclient"]}/tools/,/etc/bash_completion.d/}neutron.bash_completion
383 fi
384}
385
386# start_neutron_api() - Start the API process ahead of other things
387function start_neutron_api {
388 local service_port=$NEUTRON_SERVICE_PORT
389 local service_protocol=$NEUTRON_SERVICE_PROTOCOL
390 if is_service_enabled tls-proxy; then
391 service_port=$NEUTRON_SERVICE_PORT_INT
392 service_protocol="http"
393 fi
394
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900395 local opts = ""
396 opts+="--config-file $NEUTRON_CONF"
397 opts+="--config-file $NEUTRON_CORE_PLUGIN_CONF"
398 local cfg_file
399 for cfg_file in ${_NEUTRON_SERVER_EXTRA_CONF_FILES_ABS[@]}; do
400 opts+=" --config-file $cfg_file"
401 done
402
Sean M. Collins2a242512016-05-03 09:03:09 -0400403 # Start the Neutron service
404 # TODO(sc68cal) Stop hard coding this
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900405 run_process neutron-api "$NEUTRON_BIN_DIR/neutron-server $ops"
Sean M. Collins2a242512016-05-03 09:03:09 -0400406
407 if is_ssl_enabled_service "neutron"; then
408 ssl_ca="--ca-certificate=${SSL_BUNDLE_FILE}"
409 local testcmd="wget ${ssl_ca} --no-proxy -q -O- $service_protocol://$NEUTRON_SERVICE_HOST:$service_port"
410 test_with_retry "$testcmd" "Neutron did not start" $SERVICE_TIMEOUT
411 else
412 if ! wait_for_service $SERVICE_TIMEOUT $service_protocol://$NEUTRON_SERVICE_HOST:$service_port; then
413 die $LINENO "neutron-api did not start"
414 fi
415 fi
416
417
418 # Start proxy if enabled
419 if is_service_enabled tls-proxy; then
Gregory Haynes4b49e402016-08-31 18:19:51 -0700420 start_tls_proxy neutron '*' $NEUTRON_SERVICE_PORT $NEUTRON_SERVICE_HOST $NEUTRON_SERVICE_PORT_INT
Sean M. Collins2a242512016-05-03 09:03:09 -0400421 fi
422}
423
424# start_neutron() - Start running processes, including screen
425function start_neutron_new {
Sean M. Collins2a242512016-05-03 09:03:09 -0400426 # Start up the neutron agents if enabled
427 # TODO(sc68cal) Make this pluggable so different DevStack plugins for different Neutron plugins
428 # can resolve the $NEUTRON_AGENT_BINARY
429 if is_service_enabled neutron-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000430 # TODO(ihrachys) stop loading ml2_conf.ini into agents, instead load agent specific files
431 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 -0400432 fi
433 if is_service_enabled neutron-dhcp; then
434 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000435 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 -0400436 fi
437 if is_service_enabled neutron-l3; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000438 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 +0900439 fi
YAMAMOTO Takashi07edde12016-10-19 19:21:00 +0000440 if is_service_enabled neutron-api; then
441 # XXX(sc68cal) - Here's where plugins can wire up their own networks instead
442 # of the code in lib/neutron_plugins/services/l3
443 if type -p neutron_plugin_create_initial_networks > /dev/null; then
444 neutron_plugin_create_initial_networks
445 else
446 # XXX(sc68cal) Load up the built in Neutron networking code and build a topology
447 source $TOP_DIR/lib/neutron_plugins/services/l3
448 # Create the networks using servic
449 create_neutron_initial_network
450 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400451 fi
Sean M. Collins1cd28282016-05-11 15:07:19 -0400452 if is_service_enabled neutron-metadata-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000453 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 -0400454 fi
Sean M. Collins8063fee2016-05-24 11:27:36 -0700455
456 if is_service_enabled neutron-metering; then
457 run_process neutron-metering "$AGENT_METERING_BINARY --config-file $NEUTRON_CONF --config-file $METERING_AGENT_CONF_FILENAME"
458 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400459}
460
461# stop_neutron() - Stop running processes (non-screen)
462function stop_neutron_new {
463 for serv in neutron-api neutron-agent neutron-l3; do
464 stop_process $serv
465 done
466
467 if is_service_enabled neutron-dhcp; then
468 stop_process neutron-dhcp
469 pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }')
470 [ ! -z "$pid" ] && sudo kill -9 $pid
471 fi
472
Sean M. Collins1cd28282016-05-11 15:07:19 -0400473 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400474 sudo pkill -9 -f neutron-ns-metadata-proxy || :
Sean M. Collins1cd28282016-05-11 15:07:19 -0400475 stop_process neutron-metadata-agent
Sean M. Collins2a242512016-05-03 09:03:09 -0400476 fi
477}
478
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900479# neutron_service_plugin_class_add() - add service plugin class
480function neutron_service_plugin_class_add_new {
481 local service_plugin_class=$1
482 local plugins=""
483
484 plugins=$(iniget $NEUTRON_CONF DEFAULT service_plugins)
485 plugins+=",${service_plugin_class}"
486 iniset $NEUTRON_CONF DEFAULT service_plugins $plugins
487}
488
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900489function neutron_server_config_add_new {
490 _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS+=($1)
491}
492
Sean M. Collins2a242512016-05-03 09:03:09 -0400493# Dispatch functions
494# These are needed for compatibility between the old and new implementations
495# where there are function name overlaps. These will be removed when
496# neutron-legacy is removed.
497# TODO(sc68cal) Remove when neutron-legacy is no more.
498function cleanup_neutron {
499 if is_neutron_legacy_enabled; then
500 # Call back to old function
501 cleanup_mutnauq "$@"
502 else
503 cleanup_neutron_new "$@"
504 fi
505}
506
507function configure_neutron {
508 if is_neutron_legacy_enabled; then
509 # Call back to old function
510 configure_mutnauq "$@"
511 else
512 configure_neutron_new "$@"
513 fi
514}
515
516function configure_neutron_nova {
517 if is_neutron_legacy_enabled; then
518 # Call back to old function
519 create_nova_conf_neutron "$@"
520 else
521 configure_neutron_nova_new "$@"
522 fi
523}
524
525function create_neutron_accounts {
526 if is_neutron_legacy_enabled; then
527 # Call back to old function
528 create_mutnauq_accounts "$@"
529 else
530 create_neutron_accounts_new "$@"
531 fi
532}
533
534function init_neutron {
535 if is_neutron_legacy_enabled; then
536 # Call back to old function
537 init_mutnauq "$@"
538 else
539 init_neutron_new "$@"
540 fi
541}
542
543function install_neutron {
544 if is_neutron_legacy_enabled; then
545 # Call back to old function
546 install_mutnauq "$@"
547 else
548 install_neutron_new "$@"
549 fi
550}
551
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900552function neutron_service_plugin_class_add {
553 if is_neutron_legacy_enabled; then
554 # Call back to old function
555 _neutron_service_plugin_class_add "$@"
556 else
557 neutron_service_plugin_class_add_new "$@"
558 fi
559}
560
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900561function install_neutron_agent_packages {
562 if is_neutron_legacy_enabled; then
563 # Call back to old function
564 install_neutron_agent_packages_mutnauq "$@"
565 else
566 :
567 fi
568}
569
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900570function neutron_server_config_add {
571 if is_neutron_legacy_enabled; then
572 # Call back to old function
573 mutnauq_server_config_add "$@"
574 else
575 neutron_server_config_add_new "$@"
576 fi
577}
578
Sean M. Collins2a242512016-05-03 09:03:09 -0400579function start_neutron {
580 if is_neutron_legacy_enabled; then
581 # Call back to old function
582 start_mutnauq_l2_agent "$@"
583 start_mutnauq_other_agents "$@"
584 else
585 start_neutron_new "$@"
586 fi
587}
588
589function stop_neutron {
590 if is_neutron_legacy_enabled; then
591 # Call back to old function
592 stop_mutnauq "$@"
593 else
594 stop_neutron_new "$@"
595 fi
596}
597
598# Restore xtrace
599$XTRACE