blob: 9923721e7435eb00ec15c343fe5c40acea7c8139 [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
73# Add all enabled config files to a single config arg
74NEUTRON_CONFIG_ARG=${NEUTRON_CONFIG_ARG:-""}
75
76# 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
93# cleanup_neutron() - Remove residual data files, anything left over from previous
94# runs that a clean run would need to clean up
95function cleanup_neutron_new {
96 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
97 if is_neutron_ovs_base_plugin; then
98 neutron_ovs_base_cleanup
99 fi
100
101 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
102 neutron_lb_cleanup
103 fi
104 # delete all namespaces created by neutron
105 for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|qlbaas|fip|snat)-[0-9a-f-]*'); do
106 sudo ip netns delete ${ns}
107 done
108}
109
110# configure_neutron() - Set config files, create data dirs, etc
111function configure_neutron_new {
112 sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR
113
114 (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh)
115
116 cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF
117
118 configure_neutron_rootwrap
119
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900120 mkdir -p $NEUTRON_CORE_PLUGIN_CONF_PATH
Sean M. Collins2a242512016-05-03 09:03:09 -0400121
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900122 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 -0400123
124 iniset $NEUTRON_CONF database connection `database_connection_url neutron`
125 iniset $NEUTRON_CONF DEFAULT state_path $NEUTRON_STATE_PATH
126 iniset $NEUTRON_CONF oslo_concurrency lock_path $NEUTRON_STATE_PATH/lock
127 iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG
128
Gary Kottond2ef6152016-09-20 04:12:11 -0700129 iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collinsfbba3b92016-05-12 11:17:53 -0400130
Sean M. Collins5394cc12016-05-11 15:03:38 -0400131 iniset_rpc_backend neutron $NEUTRON_CONF
132
Sean M. Collins2a242512016-05-03 09:03:09 -0400133 # Neutron API server & Neutron plugin
134 if is_service_enabled neutron-api; then
135 local policy_file=$NEUTRON_CONF_DIR/policy.json
136 cp $NEUTRON_DIR/etc/policy.json $policy_file
137 # Allow neutron user to administer neutron to match neutron account
138 sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:neutron"/g' $policy_file
139
140 cp $NEUTRON_DIR/etc/api-paste.ini $NEUTRON_CONF_DIR/api-paste.ini
141
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900142 iniset $NEUTRON_CONF DEFAULT core_plugin $NEUTRON_CORE_PLUGIN
Sean M. Collins2a242512016-05-03 09:03:09 -0400143
Sean M. Collins2a242512016-05-03 09:03:09 -0400144 iniset $NEUTRON_CONF DEFAULT policy_file $policy_file
145 iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips True
146
147 iniset $NEUTRON_CONF DEFAULT auth_strategy $NEUTRON_AUTH_STRATEGY
148 configure_auth_token_middleware $NEUTRON_CONF neutron $NEUTRON_AUTH_CACHE_DIR keystone_authtoken
149
Sean M. Collins2a242512016-05-03 09:03:09 -0400150 iniset $NEUTRON_CONF nova auth_type password
151 iniset $NEUTRON_CONF nova auth_url "$KEYSTONE_SERVICE_PROTOCOL://$KEYSTONE_SERVICE_HOST:$KEYSTONE_AUTH_PORT/v3"
152 iniset $NEUTRON_CONF nova username nova
153 iniset $NEUTRON_CONF nova password $SERVICE_PASSWORD
154 iniset $NEUTRON_CONF nova user_domain_id default
155 iniset $NEUTRON_CONF nova project_name $SERVICE_TENANT_NAME
156 iniset $NEUTRON_CONF nova project_domain_id default
157 iniset $NEUTRON_CONF nova region_name $REGION_NAME
158
159 # Configure VXLAN
160 # TODO(sc68cal) not hardcode?
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900161 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 tenant_network_types vxlan
162 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 type_drivers vxlan
163 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 mechanism_drivers openvswitch,linuxbridge
164 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vxlan vni_ranges 1001:2000
165 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers port_security
Sean M. Collins2a242512016-05-03 09:03:09 -0400166 fi
167
168 # Neutron OVS or LB agent
169 if is_service_enabled neutron-agent; then
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900170 iniset $NEUTRON_CORE_PLUGIN_CONF agent tunnel_types vxlan
171 iniset $NEUTRON_CORE_PLUGIN_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400172
173 # Configure the neutron agent
174 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900175 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup iptables
176 iniset $NEUTRON_CORE_PLUGIN_CONF vxlan local_ip $HOST_IP
Sean M. Collins2a242512016-05-03 09:03:09 -0400177 else
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900178 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup iptables_hybrid
179 iniset $NEUTRON_CORE_PLUGIN_CONF ovs local_ip $HOST_IP
Sean M. Collins2a242512016-05-03 09:03:09 -0400180 fi
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000181
182 enable_kernel_bridge_firewall
Sean M. Collins2a242512016-05-03 09:03:09 -0400183 fi
184
185 # DHCP Agent
186 if is_service_enabled neutron-dhcp; then
187 cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $NEUTRON_DHCP_CONF
188
Gary Kottond2ef6152016-09-20 04:12:11 -0700189 iniset $NEUTRON_DHCP_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean Dague78801c12016-08-04 14:10:07 -0400190 # make it so we have working DNS from guests
191 iniset $NEUTRON_DHCP_CONF DEFAULT dnsmasq_local_resolv True
192
Sean M. Collins2a242512016-05-03 09:03:09 -0400193 iniset $NEUTRON_DHCP_CONF agent root_helper_daemon "$NEUTRON_ROOTWRAP_DAEMON_CMD"
194 iniset $NEUTRON_DHCP_CONF DEFAULT interface_driver $NEUTRON_AGENT
195 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
196 fi
197
198 if is_service_enabled neutron-l3; then
199 cp $NEUTRON_DIR/etc/l3_agent.ini.sample $NEUTRON_L3_CONF
200 iniset $NEUTRON_L3_CONF DEFAULT interface_driver $NEUTRON_AGENT
201 iniset $NEUTRON_CONF DEFAULT service_plugins router
202 iniset $NEUTRON_L3_CONF agent root_helper_daemon "$NEUTRON_ROOTWRAP_DAEMON_CMD"
Gary Kottond2ef6152016-09-20 04:12:11 -0700203 iniset $NEUTRON_L3_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400204 neutron_plugin_configure_l3_agent $NEUTRON_L3_CONF
205 fi
206
207 # Metadata
Sean M. Collins1cd28282016-05-11 15:07:19 -0400208 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400209 cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $NEUTRON_META_CONF
210
Gary Kottond2ef6152016-09-20 04:12:11 -0700211 iniset $NEUTRON_META_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400212 iniset $NEUTRON_META_CONF DEFAULT nova_metadata_ip $SERVICE_HOST
213 iniset $NEUTRON_META_CONF agent root_helper_daemon "$NEUTRON_ROOTWRAP_DAEMON_CMD"
214
215 # TODO(dtroyer): remove the v2.0 hard code below
216 iniset $NEUTRON_META_CONF DEFAULT auth_url $KEYSTONE_SERVICE_URI/v2.0
217 configure_auth_token_middleware $NEUTRON_META_CONF neutron $NEUTRON_AUTH_CACHE_DIR DEFAULT
218 fi
219
220 # Format logging
221 if [ "$LOG_COLOR" == "True" ] && [ "$SYSLOG" == "False" ]; then
222 setup_colorized_logging $NEUTRON_CONF DEFAULT project_id
223 else
224 # Show user_name and project_name by default
225 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"
226 fi
227
228 if is_service_enabled tls-proxy; then
229 # Set the service port for a proxy to take the original
230 iniset $NEUTRON_CONF DEFAULT bind_port "$NEUTRON_SERVICE_PORT_INT"
231 fi
232
233 if is_ssl_enabled_service "nova"; then
234 iniset $NEUTRON_CONF nova cafile $SSL_BUNDLE_FILE
235 fi
236
237 if is_ssl_enabled_service "neutron"; then
238 ensure_certificates NEUTRON
239
240 iniset $NEUTRON_CONF DEFAULT use_ssl True
241 iniset $NEUTRON_CONF DEFAULT ssl_cert_file "$NEUTRON_SSL_CERT"
242 iniset $NEUTRON_CONF DEFAULT ssl_key_file "$NEUTRON_SSL_KEY"
243 fi
244
Sean M. Collins8063fee2016-05-24 11:27:36 -0700245 # Metering
246 if is_service_enabled neutron-metering; then
Sean M. Collins60f394a2016-06-17 16:15:30 -0400247 source $TOP_DIR/lib/neutron_plugins/services/metering
Sean M. Collins8063fee2016-05-24 11:27:36 -0700248 neutron_agent_metering_configure_common
249 neutron_agent_metering_configure_agent
Sean M. Collinsa9286882016-06-20 13:23:11 -0400250 # TODO(sc68cal) hack because we don't pass around
251 # $Q_SERVICE_PLUGIN_CLASSES like -legacy does
252 local plugins=""
253 plugins=$(iniget $NEUTRON_CONF DEFAULT service_plugins)
254 plugins+=",metering"
255 iniset $NEUTRON_CONF DEFAULT service_plugins $plugins
Sean M. Collins8063fee2016-05-24 11:27:36 -0700256 fi
257
Sean M. Collins2a242512016-05-03 09:03:09 -0400258}
259
260# configure_neutron_rootwrap() - configure Neutron's rootwrap
261function configure_neutron_rootwrap {
262 # Set the paths of certain binaries
263 neutron_rootwrap=$(get_rootwrap_location neutron)
264
265 # Specify ``rootwrap.conf`` as first parameter to neutron-rootwrap
266 local rootwrap_sudoer_cmd="${neutron_rootwrap} $NEUTRON_CONF_DIR/rootwrap.conf"
267
268 # Deploy new rootwrap filters files (owned by root).
269 # Wipe any existing rootwrap.d files first
270 if [[ -d $NEUTRON_CONF_DIR/rootwrap.d ]]; then
271 sudo rm -rf $NEUTRON_CONF_DIR/rootwrap.d
272 fi
273
274 # Deploy filters to /etc/neutron/rootwrap.d
275 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
276 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
277
278 # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d``
279 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $NEUTRON_CONF_DIR
280 sudo sed -e "s:^filters_path=.*$:filters_path=$NEUTRON_CONF_DIR/rootwrap.d:" -i $NEUTRON_CONF_DIR/rootwrap.conf
281
282 # Set up the rootwrap sudoers for Neutron
283 tempfile=`mktemp`
284 echo "$STACK_USER ALL=(root) NOPASSWD: $rootwrap_sudoer_cmd *" >$tempfile
285 chmod 0440 $tempfile
286 sudo chown root:root $tempfile
287 sudo mv $tempfile /etc/sudoers.d/neutron-rootwrap
288}
289
290# Make Neutron-required changes to nova.conf
291function configure_neutron_nova_new {
292 iniset $NOVA_CONF DEFAULT use_neutron True
293 iniset $NOVA_CONF neutron auth_type "password"
294 iniset $NOVA_CONF neutron auth_url "$KEYSTONE_SERVICE_PROTOCOL://$KEYSTONE_SERVICE_HOST:$KEYSTONE_AUTH_PORT/v3"
295 iniset $NOVA_CONF neutron username neutron
296 iniset $NOVA_CONF neutron password "$SERVICE_PASSWORD"
297 iniset $NOVA_CONF neutron user_domain_name "Default"
298 iniset $NOVA_CONF neutron project_name "$SERVICE_TENANT_NAME"
299 iniset $NOVA_CONF neutron project_domain_name "Default"
300 iniset $NOVA_CONF neutron auth_strategy $NEUTRON_AUTH_STRATEGY
301 iniset $NOVA_CONF neutron region_name "$REGION_NAME"
302 iniset $NOVA_CONF neutron url $NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT
303
304 iniset $NOVA_CONF DEFAULT firewall_driver nova.virt.firewall.NoopFirewallDriver
305
Gary Kotton88f85582016-08-14 06:55:42 -0700306 # optionally set options in nova_conf
307 neutron_plugin_create_nova_conf
308
Sean M. Collins1cd28282016-05-11 15:07:19 -0400309 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400310 iniset $NOVA_CONF neutron service_metadata_proxy "True"
311 fi
312
313}
314
315# Tenant User Roles
316# ------------------------------------------------------------------
317# service neutron admin # if enabled
318
319# create_neutron_accounts() - Create required service accounts
320function create_neutron_accounts_new {
321 if [[ "$ENABLED_SERVICES" =~ "neutron-api" ]]; then
322
323 create_service_user "neutron"
324
325 neutron_service=$(get_or_create_service "neutron" \
326 "network" "Neutron Service")
327 get_or_create_endpoint $neutron_service \
328 "$REGION_NAME" \
329 "$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT/" \
330 "$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT/" \
331 "$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT/"
332 fi
333}
334
335# create_neutron_cache_dir() - Part of the init_neutron() process
336function create_neutron_cache_dir {
337 # Create cache dir
338 sudo install -d -o $STACK_USER $NEUTRON_AUTH_CACHE_DIR
339 rm -f $NEUTRON_AUTH_CACHE_DIR/*
340}
341
342# init_neutron() - Initialize databases, etc.
343function init_neutron_new {
344
345 recreate_database neutron
346
347 # Run Neutron db migrations
348 $NEUTRON_BIN_DIR/neutron-db-manage $NEUTRON_CONFIG_ARG upgrade heads
349
350 create_neutron_cache_dir
351}
352
353# install_neutron() - Collect source and prepare
354function install_neutron_new {
355 git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH
356 setup_develop $NEUTRON_DIR
357
358 # Install neutron-lib from git so we make sure we're testing
359 # the latest code.
360 if use_library_from_git "neutron-lib"; then
361 git_clone_by_name "neutron-lib"
362 setup_dev_lib "neutron-lib"
363 fi
364
365 # L3 service requires radvd
366 if is_service_enabled neutron-l3; then
367 install_package radvd
368 fi
369
370 if is_service_enabled neutron-agent neutron-dhcp neutron-l3; then
371 #TODO(sc68cal) - kind of ugly
372 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
373 neutron_plugin_install_agent_packages
374 fi
375
376}
377
378# install_neutronclient() - Collect source and prepare
379function install_neutronclient {
380 if use_library_from_git "python-neutronclient"; then
381 git_clone_by_name "python-neutronclient"
382 setup_dev_lib "python-neutronclient"
383 sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-neutronclient"]}/tools/,/etc/bash_completion.d/}neutron.bash_completion
384 fi
385}
386
387# start_neutron_api() - Start the API process ahead of other things
388function start_neutron_api {
389 local service_port=$NEUTRON_SERVICE_PORT
390 local service_protocol=$NEUTRON_SERVICE_PROTOCOL
391 if is_service_enabled tls-proxy; then
392 service_port=$NEUTRON_SERVICE_PORT_INT
393 service_protocol="http"
394 fi
395
396 # Start the Neutron service
397 # TODO(sc68cal) Stop hard coding this
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900398 run_process neutron-api "$NEUTRON_BIN_DIR/neutron-server --config-file $NEUTRON_CONF --config-file $NEUTRON_CORE_PLUGIN_CONF"
Sean M. Collins2a242512016-05-03 09:03:09 -0400399
400 if is_ssl_enabled_service "neutron"; then
401 ssl_ca="--ca-certificate=${SSL_BUNDLE_FILE}"
402 local testcmd="wget ${ssl_ca} --no-proxy -q -O- $service_protocol://$NEUTRON_SERVICE_HOST:$service_port"
403 test_with_retry "$testcmd" "Neutron did not start" $SERVICE_TIMEOUT
404 else
405 if ! wait_for_service $SERVICE_TIMEOUT $service_protocol://$NEUTRON_SERVICE_HOST:$service_port; then
406 die $LINENO "neutron-api did not start"
407 fi
408 fi
409
410
411 # Start proxy if enabled
412 if is_service_enabled tls-proxy; then
Gregory Haynes4b49e402016-08-31 18:19:51 -0700413 start_tls_proxy neutron '*' $NEUTRON_SERVICE_PORT $NEUTRON_SERVICE_HOST $NEUTRON_SERVICE_PORT_INT
Sean M. Collins2a242512016-05-03 09:03:09 -0400414 fi
415}
416
417# start_neutron() - Start running processes, including screen
418function start_neutron_new {
419 _set_config_files
420
421 # Start up the neutron agents if enabled
422 # TODO(sc68cal) Make this pluggable so different DevStack plugins for different Neutron plugins
423 # can resolve the $NEUTRON_AGENT_BINARY
424 if is_service_enabled neutron-agent; then
425 run_process neutron-agent "$NEUTRON_BIN_DIR/$NEUTRON_AGENT_BINARY $NEUTRON_CONFIG_ARG"
426 fi
427 if is_service_enabled neutron-dhcp; then
428 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
429 run_process neutron-dhcp "$NEUTRON_BIN_DIR/$NEUTRON_DHCP_BINARY $NEUTRON_CONFIG_ARG"
430 fi
431 if is_service_enabled neutron-l3; then
432 run_process neutron-l3 "$NEUTRON_BIN_DIR/$NEUTRON_L3_BINARY $NEUTRON_CONFIG_ARG"
YAMAMOTO Takashic07170a2016-07-20 19:44:05 +0900433 fi
YAMAMOTO Takashi07edde12016-10-19 19:21:00 +0000434 if is_service_enabled neutron-api; then
435 # XXX(sc68cal) - Here's where plugins can wire up their own networks instead
436 # of the code in lib/neutron_plugins/services/l3
437 if type -p neutron_plugin_create_initial_networks > /dev/null; then
438 neutron_plugin_create_initial_networks
439 else
440 # XXX(sc68cal) Load up the built in Neutron networking code and build a topology
441 source $TOP_DIR/lib/neutron_plugins/services/l3
442 # Create the networks using servic
443 create_neutron_initial_network
444 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400445 fi
Sean M. Collins1cd28282016-05-11 15:07:19 -0400446 if is_service_enabled neutron-metadata-agent; then
447 run_process neutron-metadata-agent "$NEUTRON_BIN_DIR/$NEUTRON_META_BINARY $NEUTRON_CONFIG_ARG"
Sean M. Collins2a242512016-05-03 09:03:09 -0400448 fi
Sean M. Collins8063fee2016-05-24 11:27:36 -0700449
450 if is_service_enabled neutron-metering; then
451 run_process neutron-metering "$AGENT_METERING_BINARY --config-file $NEUTRON_CONF --config-file $METERING_AGENT_CONF_FILENAME"
452 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400453}
454
455# stop_neutron() - Stop running processes (non-screen)
456function stop_neutron_new {
457 for serv in neutron-api neutron-agent neutron-l3; do
458 stop_process $serv
459 done
460
461 if is_service_enabled neutron-dhcp; then
462 stop_process neutron-dhcp
463 pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }')
464 [ ! -z "$pid" ] && sudo kill -9 $pid
465 fi
466
Sean M. Collins1cd28282016-05-11 15:07:19 -0400467 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400468 sudo pkill -9 -f neutron-ns-metadata-proxy || :
Sean M. Collins1cd28282016-05-11 15:07:19 -0400469 stop_process neutron-metadata-agent
Sean M. Collins2a242512016-05-03 09:03:09 -0400470 fi
471}
472
473# Compile the lost of enabled config files
474function _set_config_files {
475
Sean M. Collinse7d2b562016-05-12 12:04:03 -0400476 NEUTRON_CONFIG_ARG+=" --config-file $NEUTRON_CONF"
Sean M. Collins2a242512016-05-03 09:03:09 -0400477
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900478 #TODO(sc68cal) OVS and LB agent uses settings in NEUTRON_CORE_PLUGIN_CONF (ml2_conf.ini) but others may not
Sean M. Collins2a242512016-05-03 09:03:09 -0400479 if is_service_enabled neutron-agent; then
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900480 NEUTRON_CONFIG_ARG+=" --config-file $NEUTRON_CORE_PLUGIN_CONF"
Sean M. Collins2a242512016-05-03 09:03:09 -0400481 fi
482
483 if is_service_enabled neutron-dhcp; then
484 NEUTRON_CONFIG_ARG+=" --config-file $NEUTRON_DHCP_CONF"
485 fi
486
487 if is_service_enabled neutron-l3; then
488 NEUTRON_CONFIG_ARG+=" --config-file $NEUTRON_L3_CONF"
489 fi
490
Sean M. Collins1cd28282016-05-11 15:07:19 -0400491 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400492 NEUTRON_CONFIG_ARG+=" --config-file $NEUTRON_META_CONF"
493 fi
494
495}
496
497# Dispatch functions
498# These are needed for compatibility between the old and new implementations
499# where there are function name overlaps. These will be removed when
500# neutron-legacy is removed.
501# TODO(sc68cal) Remove when neutron-legacy is no more.
502function cleanup_neutron {
503 if is_neutron_legacy_enabled; then
504 # Call back to old function
505 cleanup_mutnauq "$@"
506 else
507 cleanup_neutron_new "$@"
508 fi
509}
510
511function configure_neutron {
512 if is_neutron_legacy_enabled; then
513 # Call back to old function
514 configure_mutnauq "$@"
515 else
516 configure_neutron_new "$@"
517 fi
518}
519
520function configure_neutron_nova {
521 if is_neutron_legacy_enabled; then
522 # Call back to old function
523 create_nova_conf_neutron "$@"
524 else
525 configure_neutron_nova_new "$@"
526 fi
527}
528
529function create_neutron_accounts {
530 if is_neutron_legacy_enabled; then
531 # Call back to old function
532 create_mutnauq_accounts "$@"
533 else
534 create_neutron_accounts_new "$@"
535 fi
536}
537
538function init_neutron {
539 if is_neutron_legacy_enabled; then
540 # Call back to old function
541 init_mutnauq "$@"
542 else
543 init_neutron_new "$@"
544 fi
545}
546
547function install_neutron {
548 if is_neutron_legacy_enabled; then
549 # Call back to old function
550 install_mutnauq "$@"
551 else
552 install_neutron_new "$@"
553 fi
554}
555
556function start_neutron {
557 if is_neutron_legacy_enabled; then
558 # Call back to old function
559 start_mutnauq_l2_agent "$@"
560 start_mutnauq_other_agents "$@"
561 else
562 start_neutron_new "$@"
563 fi
564}
565
566function stop_neutron {
567 if is_neutron_legacy_enabled; then
568 # Call back to old function
569 stop_mutnauq "$@"
570 else
571 stop_neutron_new "$@"
572 fi
573}
574
575# Restore xtrace
576$XTRACE