blob: c5839f5c3ea42d154f172de246bdb60bcc820cd9 [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
Ian Wienand1f82f432017-10-04 09:51:02 +110033NEUTRON_AUTH_CACHE_DIR=${NEUTRON_AUTH_CACHE_DIR:-/var/cache/neutron}
Sean M. Collins2a242512016-05-03 09:03:09 -040034
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}
Ian Wienand1f82f432017-10-04 09:51:02 +110047NEUTRON_AUTH_CACHE_DIR=${NEUTRON_AUTH_CACHE_DIR:-/var/cache/neutron}
Sean M. Collins2a242512016-05-03 09:03:09 -040048
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
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +000075NEUTRON_ROOTWRAP_CMD="$NEUTRON_ROOTWRAP $NEUTRON_ROOTWRAP_CONF_FILE"
76NEUTRON_ROOTWRAP_DAEMON_CMD="$NEUTRON_ROOTWRAP-daemon $NEUTRON_ROOTWRAP_CONF_FILE"
Sean M. Collins2a242512016-05-03 09:03:09 -040077
Ihar Hrachyshka615e1152017-02-23 10:41:51 +000078# This is needed because _neutron_ovs_base_configure_l3_agent will set
79# external_network_bridge
80Q_USE_PROVIDERNET_FOR_PUBLIC=${Q_USE_PROVIDERNET_FOR_PUBLIC:-True}
81# This is needed because _neutron_ovs_base_configure_l3_agent uses it to create
82# an external network bridge
83PUBLIC_BRIDGE=${PUBLIC_BRIDGE:-br-ex}
84PUBLIC_BRIDGE_MTU=${PUBLIC_BRIDGE_MTU:-1500}
85
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +090086# Additional neutron api config files
Sean Dagueafef8bf2017-03-06 14:07:23 -050087declare -a -g _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +090088
Sean M. Collins2a242512016-05-03 09:03:09 -040089# Functions
90# ---------
91
92# Test if any Neutron services are enabled
93# is_neutron_enabled
94function is_neutron_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -070095 [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -040096 [[ ,${ENABLED_SERVICES} =~ ,"neutron-" || ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
97 return 1
98}
99
100# Test if any Neutron services are enabled
101# is_neutron_enabled
102function is_neutron_legacy_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -0700103 [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -0400104 [[ ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
105 return 1
106}
107
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900108if is_neutron_legacy_enabled; then
109 source $TOP_DIR/lib/neutron-legacy
110fi
111
Sean M. Collins2a242512016-05-03 09:03:09 -0400112# cleanup_neutron() - Remove residual data files, anything left over from previous
113# runs that a clean run would need to clean up
114function cleanup_neutron_new {
115 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
116 if is_neutron_ovs_base_plugin; then
117 neutron_ovs_base_cleanup
118 fi
119
120 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
121 neutron_lb_cleanup
122 fi
123 # delete all namespaces created by neutron
124 for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|qlbaas|fip|snat)-[0-9a-f-]*'); do
125 sudo ip netns delete ${ns}
126 done
127}
128
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000129# configure_root_helper_options() - Configure agent rootwrap helper options
130function configure_root_helper_options {
131 local conffile=$1
132 iniset $conffile agent root_helper "sudo $NEUTRON_ROOTWRAP_CMD"
133 iniset $conffile agent root_helper_daemon "sudo $NEUTRON_ROOTWRAP_DAEMON_CMD"
134}
135
Sean M. Collins2a242512016-05-03 09:03:09 -0400136# configure_neutron() - Set config files, create data dirs, etc
137function configure_neutron_new {
138 sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR
139
140 (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh)
141
142 cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF
143
144 configure_neutron_rootwrap
145
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900146 mkdir -p $NEUTRON_CORE_PLUGIN_CONF_PATH
Sean M. Collins2a242512016-05-03 09:03:09 -0400147
YAMAMOTO Takashi1df17c92017-05-01 17:00:42 +0900148 # NOTE(yamamoto): A decomposed plugin should prepare the config file in
149 # its devstack plugin.
150 if [ -f $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample ]; then
151 cp $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample $NEUTRON_CORE_PLUGIN_CONF
152 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400153
154 iniset $NEUTRON_CONF database connection `database_connection_url neutron`
155 iniset $NEUTRON_CONF DEFAULT state_path $NEUTRON_STATE_PATH
156 iniset $NEUTRON_CONF oslo_concurrency lock_path $NEUTRON_STATE_PATH/lock
157 iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG
158
Gary Kottond2ef6152016-09-20 04:12:11 -0700159 iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collinsfbba3b92016-05-12 11:17:53 -0400160
Sean M. Collins5394cc12016-05-11 15:03:38 -0400161 iniset_rpc_backend neutron $NEUTRON_CONF
162
Sean M. Collins2a242512016-05-03 09:03:09 -0400163 # Neutron API server & Neutron plugin
164 if is_service_enabled neutron-api; then
165 local policy_file=$NEUTRON_CONF_DIR/policy.json
166 cp $NEUTRON_DIR/etc/policy.json $policy_file
167 # Allow neutron user to administer neutron to match neutron account
168 sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:neutron"/g' $policy_file
169
170 cp $NEUTRON_DIR/etc/api-paste.ini $NEUTRON_CONF_DIR/api-paste.ini
171
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900172 iniset $NEUTRON_CONF DEFAULT core_plugin $NEUTRON_CORE_PLUGIN
Sean M. Collins2a242512016-05-03 09:03:09 -0400173
Sean M. Collins2a242512016-05-03 09:03:09 -0400174 iniset $NEUTRON_CONF DEFAULT policy_file $policy_file
175 iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips True
176
177 iniset $NEUTRON_CONF DEFAULT auth_strategy $NEUTRON_AUTH_STRATEGY
Ian Wienand1f82f432017-10-04 09:51:02 +1100178 configure_auth_token_middleware $NEUTRON_CONF neutron $NEUTRON_AUTH_CACHE_DIR keystone_authtoken
179 configure_auth_token_middleware $NEUTRON_CONF nova $NEUTRON_AUTH_CACHE_DIR nova
Sean M. Collins2a242512016-05-03 09:03:09 -0400180
181 # Configure VXLAN
182 # TODO(sc68cal) not hardcode?
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900183 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 tenant_network_types vxlan
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900184 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 mechanism_drivers openvswitch,linuxbridge
185 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vxlan vni_ranges 1001:2000
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500186 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_flat flat_networks public
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400187 if [[ "$NEUTRON_PORT_SECURITY" = "True" ]]; then
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000188 neutron_ml2_extension_driver_add port_security
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400189 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400190 fi
191
192 # Neutron OVS or LB agent
193 if is_service_enabled neutron-agent; then
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900194 iniset $NEUTRON_CORE_PLUGIN_CONF agent tunnel_types vxlan
195 iniset $NEUTRON_CORE_PLUGIN_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000196 configure_root_helper_options $NEUTRON_CORE_PLUGIN_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400197
198 # Configure the neutron agent
199 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500200 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900201 iniset $NEUTRON_CORE_PLUGIN_CONF vxlan local_ip $HOST_IP
Sean M. Collins2a242512016-05-03 09:03:09 -0400202 else
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500203 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables_hybrid
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900204 iniset $NEUTRON_CORE_PLUGIN_CONF ovs local_ip $HOST_IP
Sean M. Collins2a242512016-05-03 09:03:09 -0400205 fi
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000206
Denis Buliga0bf75a42017-02-06 16:56:46 +0200207 if ! running_in_container; then
208 enable_kernel_bridge_firewall
209 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400210 fi
211
212 # DHCP Agent
213 if is_service_enabled neutron-dhcp; then
214 cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $NEUTRON_DHCP_CONF
215
Gary Kottond2ef6152016-09-20 04:12:11 -0700216 iniset $NEUTRON_DHCP_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean Dague78801c12016-08-04 14:10:07 -0400217 # make it so we have working DNS from guests
218 iniset $NEUTRON_DHCP_CONF DEFAULT dnsmasq_local_resolv True
219
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000220 configure_root_helper_options $NEUTRON_DHCP_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400221 iniset $NEUTRON_DHCP_CONF DEFAULT interface_driver $NEUTRON_AGENT
222 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
223 fi
224
225 if is_service_enabled neutron-l3; then
226 cp $NEUTRON_DIR/etc/l3_agent.ini.sample $NEUTRON_L3_CONF
227 iniset $NEUTRON_L3_CONF DEFAULT interface_driver $NEUTRON_AGENT
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900228 neutron_service_plugin_class_add router
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000229 configure_root_helper_options $NEUTRON_L3_CONF
Gary Kottond2ef6152016-09-20 04:12:11 -0700230 iniset $NEUTRON_L3_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400231 neutron_plugin_configure_l3_agent $NEUTRON_L3_CONF
Ihar Hrachyshkae3915932017-02-24 06:24:47 +0000232
233 # Configure the neutron agent to serve external network ports
234 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
235 iniset $NEUTRON_CORE_PLUGIN_CONF linux_bridge bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE"
236 else
237 iniset $NEUTRON_CORE_PLUGIN_CONF ovs bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE"
238 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400239 fi
240
241 # Metadata
Sean M. Collins1cd28282016-05-11 15:07:19 -0400242 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400243 cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $NEUTRON_META_CONF
244
Gary Kottond2ef6152016-09-20 04:12:11 -0700245 iniset $NEUTRON_META_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Ken'ichi Ohmichi2da019f2017-10-11 09:57:25 -0700246 iniset $NEUTRON_META_CONF DEFAULT nova_metadata_host $SERVICE_HOST
Armando Migliaccio06f2ea22017-02-02 16:47:00 -0800247 iniset $NEUTRON_META_CONF DEFAULT metadata_workers $API_WORKERS
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000248 # TODO(ihrachys) do we really need to set rootwrap for metadata agent?
249 configure_root_helper_options $NEUTRON_META_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400250
251 # TODO(dtroyer): remove the v2.0 hard code below
Sean Daguec13b8a12017-04-20 06:54:51 -0400252 iniset $NEUTRON_META_CONF DEFAULT auth_url $KEYSTONE_SERVICE_URI
Ian Wienand1f82f432017-10-04 09:51:02 +1100253 configure_auth_token_middleware $NEUTRON_META_CONF neutron $NEUTRON_AUTH_CACHE_DIR DEFAULT
Sean M. Collins2a242512016-05-03 09:03:09 -0400254 fi
255
256 # Format logging
Sean Dague27f66e92017-05-02 09:08:17 -0400257 setup_logging $NEUTRON_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400258
259 if is_service_enabled tls-proxy; then
260 # Set the service port for a proxy to take the original
261 iniset $NEUTRON_CONF DEFAULT bind_port "$NEUTRON_SERVICE_PORT_INT"
Jens Harbott411c34d2017-08-29 14:40:26 +0000262 iniset $NEUTRON_CONF oslo_middleware enable_proxy_headers_parsing True
Sean M. Collins2a242512016-05-03 09:03:09 -0400263 fi
264
Sean M. Collins8063fee2016-05-24 11:27:36 -0700265 # Metering
266 if is_service_enabled neutron-metering; then
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +0000267 cp $NEUTRON_DIR/etc/metering_agent.ini.sample $NEUTRON_METERING_AGENT_CONF
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900268 neutron_service_plugin_class_add metering
Sean M. Collins8063fee2016-05-24 11:27:36 -0700269 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400270}
271
272# configure_neutron_rootwrap() - configure Neutron's rootwrap
273function configure_neutron_rootwrap {
Sean M. Collins2a242512016-05-03 09:03:09 -0400274 # Deploy new rootwrap filters files (owned by root).
275 # Wipe any existing rootwrap.d files first
276 if [[ -d $NEUTRON_CONF_DIR/rootwrap.d ]]; then
277 sudo rm -rf $NEUTRON_CONF_DIR/rootwrap.d
278 fi
279
280 # Deploy filters to /etc/neutron/rootwrap.d
281 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
282 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
283
284 # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d``
285 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $NEUTRON_CONF_DIR
286 sudo sed -e "s:^filters_path=.*$:filters_path=$NEUTRON_CONF_DIR/rootwrap.d:" -i $NEUTRON_CONF_DIR/rootwrap.conf
287
288 # Set up the rootwrap sudoers for Neutron
289 tempfile=`mktemp`
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000290 echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_CMD *" >$tempfile
291 echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_DAEMON_CMD" >>$tempfile
Sean M. Collins2a242512016-05-03 09:03:09 -0400292 chmod 0440 $tempfile
293 sudo chown root:root $tempfile
294 sudo mv $tempfile /etc/sudoers.d/neutron-rootwrap
295}
296
297# Make Neutron-required changes to nova.conf
298function configure_neutron_nova_new {
299 iniset $NOVA_CONF DEFAULT use_neutron True
300 iniset $NOVA_CONF neutron auth_type "password"
Sean Daguec13b8a12017-04-20 06:54:51 -0400301 iniset $NOVA_CONF neutron auth_url "$KEYSTONE_SERVICE_URI"
Sean M. Collins2a242512016-05-03 09:03:09 -0400302 iniset $NOVA_CONF neutron username neutron
303 iniset $NOVA_CONF neutron password "$SERVICE_PASSWORD"
304 iniset $NOVA_CONF neutron user_domain_name "Default"
305 iniset $NOVA_CONF neutron project_name "$SERVICE_TENANT_NAME"
306 iniset $NOVA_CONF neutron project_domain_name "Default"
307 iniset $NOVA_CONF neutron auth_strategy $NEUTRON_AUTH_STRATEGY
308 iniset $NOVA_CONF neutron region_name "$REGION_NAME"
309 iniset $NOVA_CONF neutron url $NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT
310
311 iniset $NOVA_CONF DEFAULT firewall_driver nova.virt.firewall.NoopFirewallDriver
312
Gary Kotton88f85582016-08-14 06:55:42 -0700313 # optionally set options in nova_conf
314 neutron_plugin_create_nova_conf
315
Sean M. Collins1cd28282016-05-11 15:07:19 -0400316 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400317 iniset $NOVA_CONF neutron service_metadata_proxy "True"
318 fi
319
320}
321
322# Tenant User Roles
323# ------------------------------------------------------------------
324# service neutron admin # if enabled
325
326# create_neutron_accounts() - Create required service accounts
327function create_neutron_accounts_new {
328 if [[ "$ENABLED_SERVICES" =~ "neutron-api" ]]; then
329
330 create_service_user "neutron"
331
332 neutron_service=$(get_or_create_service "neutron" \
333 "network" "Neutron Service")
334 get_or_create_endpoint $neutron_service \
335 "$REGION_NAME" \
Sean M. Collins2a242512016-05-03 09:03:09 -0400336 "$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT/"
337 fi
338}
339
Ian Wienand1f82f432017-10-04 09:51:02 +1100340# create_neutron_cache_dir() - Part of the init_neutron() process
341function create_neutron_cache_dir {
342 # Create cache dir
343 sudo install -d -o $STACK_USER $NEUTRON_AUTH_CACHE_DIR
344 rm -f $NEUTRON_AUTH_CACHE_DIR/*
345}
346
Sean M. Collins2a242512016-05-03 09:03:09 -0400347# init_neutron() - Initialize databases, etc.
348function init_neutron_new {
349
350 recreate_database neutron
351
Clark Boylan633dbc32017-06-14 12:09:21 -0700352 time_start "dbsync"
Sean M. Collins2a242512016-05-03 09:03:09 -0400353 # Run Neutron db migrations
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000354 $NEUTRON_BIN_DIR/neutron-db-manage upgrade heads
Clark Boylan633dbc32017-06-14 12:09:21 -0700355 time_stop "dbsync"
Ian Wienand1f82f432017-10-04 09:51:02 +1100356
357 create_neutron_cache_dir
Sean M. Collins2a242512016-05-03 09:03:09 -0400358}
359
360# install_neutron() - Collect source and prepare
361function install_neutron_new {
362 git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH
363 setup_develop $NEUTRON_DIR
364
365 # Install neutron-lib from git so we make sure we're testing
366 # the latest code.
367 if use_library_from_git "neutron-lib"; then
368 git_clone_by_name "neutron-lib"
369 setup_dev_lib "neutron-lib"
370 fi
371
372 # L3 service requires radvd
373 if is_service_enabled neutron-l3; then
374 install_package radvd
375 fi
376
377 if is_service_enabled neutron-agent neutron-dhcp neutron-l3; then
378 #TODO(sc68cal) - kind of ugly
379 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
380 neutron_plugin_install_agent_packages
381 fi
382
383}
384
385# install_neutronclient() - Collect source and prepare
386function install_neutronclient {
387 if use_library_from_git "python-neutronclient"; then
388 git_clone_by_name "python-neutronclient"
389 setup_dev_lib "python-neutronclient"
390 sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-neutronclient"]}/tools/,/etc/bash_completion.d/}neutron.bash_completion
391 fi
392}
393
394# start_neutron_api() - Start the API process ahead of other things
395function start_neutron_api {
396 local service_port=$NEUTRON_SERVICE_PORT
397 local service_protocol=$NEUTRON_SERVICE_PROTOCOL
398 if is_service_enabled tls-proxy; then
399 service_port=$NEUTRON_SERVICE_PORT_INT
400 service_protocol="http"
401 fi
402
YAMAMOTO Takashied887d82017-02-22 14:21:33 -0500403 local opts=""
404 opts+=" --config-file $NEUTRON_CONF"
405 opts+=" --config-file $NEUTRON_CORE_PLUGIN_CONF"
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900406 local cfg_file
407 for cfg_file in ${_NEUTRON_SERVER_EXTRA_CONF_FILES_ABS[@]}; do
408 opts+=" --config-file $cfg_file"
409 done
410
Sean M. Collins2a242512016-05-03 09:03:09 -0400411 # Start the Neutron service
412 # TODO(sc68cal) Stop hard coding this
YAMAMOTO Takashied887d82017-02-22 14:21:33 -0500413 run_process neutron-api "$NEUTRON_BIN_DIR/neutron-server $opts"
Sean M. Collins2a242512016-05-03 09:03:09 -0400414
Sean Daguef3b2f4c2017-04-13 10:11:48 -0400415 if ! wait_for_service $SERVICE_TIMEOUT $service_protocol://$NEUTRON_SERVICE_HOST:$service_port; then
416 die $LINENO "neutron-api did not start"
Sean M. Collins2a242512016-05-03 09:03:09 -0400417 fi
418
Sean M. Collins2a242512016-05-03 09:03:09 -0400419 # Start proxy if enabled
420 if is_service_enabled tls-proxy; then
Gregory Haynes4b49e402016-08-31 18:19:51 -0700421 start_tls_proxy neutron '*' $NEUTRON_SERVICE_PORT $NEUTRON_SERVICE_HOST $NEUTRON_SERVICE_PORT_INT
Sean M. Collins2a242512016-05-03 09:03:09 -0400422 fi
423}
424
Sean Dague0eebeb42017-08-30 14:16:58 -0400425# start_neutron() - Start running processes
Sean M. Collins2a242512016-05-03 09:03:09 -0400426function start_neutron_new {
Sean M. Collins2a242512016-05-03 09:03:09 -0400427 # Start up the neutron agents if enabled
428 # TODO(sc68cal) Make this pluggable so different DevStack plugins for different Neutron plugins
429 # can resolve the $NEUTRON_AGENT_BINARY
430 if is_service_enabled neutron-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000431 # TODO(ihrachys) stop loading ml2_conf.ini into agents, instead load agent specific files
432 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 -0400433 fi
434 if is_service_enabled neutron-dhcp; then
435 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000436 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 -0400437 fi
438 if is_service_enabled neutron-l3; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000439 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 +0900440 fi
YAMAMOTO Takashi07edde12016-10-19 19:21:00 +0000441 if is_service_enabled neutron-api; then
442 # XXX(sc68cal) - Here's where plugins can wire up their own networks instead
443 # of the code in lib/neutron_plugins/services/l3
444 if type -p neutron_plugin_create_initial_networks > /dev/null; then
445 neutron_plugin_create_initial_networks
446 else
447 # XXX(sc68cal) Load up the built in Neutron networking code and build a topology
448 source $TOP_DIR/lib/neutron_plugins/services/l3
449 # Create the networks using servic
450 create_neutron_initial_network
451 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400452 fi
Sean M. Collins1cd28282016-05-11 15:07:19 -0400453 if is_service_enabled neutron-metadata-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000454 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 -0400455 fi
Sean M. Collins8063fee2016-05-24 11:27:36 -0700456
457 if is_service_enabled neutron-metering; then
Ihar Hrachyshka868746b2017-09-13 15:44:18 -0600458 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 -0700459 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400460}
461
Sean Dague0eebeb42017-08-30 14:16:58 -0400462# stop_neutron() - Stop running processes
Sean M. Collins2a242512016-05-03 09:03:09 -0400463function stop_neutron_new {
464 for serv in neutron-api neutron-agent neutron-l3; do
465 stop_process $serv
466 done
467
468 if is_service_enabled neutron-dhcp; then
469 stop_process neutron-dhcp
470 pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }')
471 [ ! -z "$pid" ] && sudo kill -9 $pid
472 fi
473
Sean M. Collins1cd28282016-05-11 15:07:19 -0400474 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400475 sudo pkill -9 -f neutron-ns-metadata-proxy || :
Sean M. Collins1cd28282016-05-11 15:07:19 -0400476 stop_process neutron-metadata-agent
Sean M. Collins2a242512016-05-03 09:03:09 -0400477 fi
478}
479
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900480# neutron_service_plugin_class_add() - add service plugin class
481function neutron_service_plugin_class_add_new {
482 local service_plugin_class=$1
483 local plugins=""
484
485 plugins=$(iniget $NEUTRON_CONF DEFAULT service_plugins)
YAMAMOTO Takashi84e45c92017-02-22 14:25:14 -0500486 if [ $plugins ]; then
487 plugins+=","
488 fi
489 plugins+="${service_plugin_class}"
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900490 iniset $NEUTRON_CONF DEFAULT service_plugins $plugins
491}
492
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000493function _neutron_ml2_extension_driver_add {
494 local driver=$1
495 local drivers=""
496
497 drivers=$(iniget $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers)
498 if [ $drivers ]; then
499 drivers+=","
500 fi
501 drivers+="${driver}"
502 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers $drivers
503}
504
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900505function neutron_server_config_add_new {
506 _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS+=($1)
507}
508
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500509# neutron_deploy_rootwrap_filters() - deploy rootwrap filters
510function neutron_deploy_rootwrap_filters_new {
511 local srcdir=$1
512 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
513 sudo install -o root -g root -m 644 $srcdir/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
514}
515
Sean M. Collins2a242512016-05-03 09:03:09 -0400516# Dispatch functions
517# These are needed for compatibility between the old and new implementations
518# where there are function name overlaps. These will be removed when
519# neutron-legacy is removed.
520# TODO(sc68cal) Remove when neutron-legacy is no more.
521function cleanup_neutron {
522 if is_neutron_legacy_enabled; then
523 # Call back to old function
524 cleanup_mutnauq "$@"
525 else
526 cleanup_neutron_new "$@"
527 fi
528}
529
530function configure_neutron {
531 if is_neutron_legacy_enabled; then
532 # Call back to old function
533 configure_mutnauq "$@"
534 else
535 configure_neutron_new "$@"
536 fi
537}
538
539function configure_neutron_nova {
540 if is_neutron_legacy_enabled; then
541 # Call back to old function
542 create_nova_conf_neutron "$@"
543 else
544 configure_neutron_nova_new "$@"
545 fi
546}
547
548function create_neutron_accounts {
549 if is_neutron_legacy_enabled; then
550 # Call back to old function
551 create_mutnauq_accounts "$@"
552 else
553 create_neutron_accounts_new "$@"
554 fi
555}
556
557function init_neutron {
558 if is_neutron_legacy_enabled; then
559 # Call back to old function
560 init_mutnauq "$@"
561 else
562 init_neutron_new "$@"
563 fi
564}
565
566function install_neutron {
567 if is_neutron_legacy_enabled; then
568 # Call back to old function
569 install_mutnauq "$@"
570 else
571 install_neutron_new "$@"
572 fi
573}
574
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900575function neutron_service_plugin_class_add {
576 if is_neutron_legacy_enabled; then
577 # Call back to old function
578 _neutron_service_plugin_class_add "$@"
579 else
580 neutron_service_plugin_class_add_new "$@"
581 fi
582}
583
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000584function neutron_ml2_extension_driver_add {
585 if is_neutron_legacy_enabled; then
586 # Call back to old function
587 _neutron_ml2_extension_driver_add_old "$@"
588 else
589 _neutron_ml2_extension_driver_add "$@"
590 fi
591}
592
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900593function install_neutron_agent_packages {
594 if is_neutron_legacy_enabled; then
595 # Call back to old function
596 install_neutron_agent_packages_mutnauq "$@"
597 else
598 :
599 fi
600}
601
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900602function neutron_server_config_add {
603 if is_neutron_legacy_enabled; then
604 # Call back to old function
605 mutnauq_server_config_add "$@"
606 else
607 neutron_server_config_add_new "$@"
608 fi
609}
610
Sean M. Collins2a242512016-05-03 09:03:09 -0400611function start_neutron {
612 if is_neutron_legacy_enabled; then
613 # Call back to old function
614 start_mutnauq_l2_agent "$@"
615 start_mutnauq_other_agents "$@"
616 else
617 start_neutron_new "$@"
618 fi
619}
620
621function stop_neutron {
622 if is_neutron_legacy_enabled; then
623 # Call back to old function
624 stop_mutnauq "$@"
625 else
626 stop_neutron_new "$@"
627 fi
628}
629
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500630function neutron_deploy_rootwrap_filters {
631 if is_neutron_legacy_enabled; then
632 # Call back to old function
633 _neutron_deploy_rootwrap_filters "$@"
634 else
635 neutron_deploy_rootwrap_filters_new "$@"
636 fi
637}
638
Sean M. Collins2a242512016-05-03 09:03:09 -0400639# Restore xtrace
640$XTRACE