blob: 4e9691dfc069d07fca19dd911a273b863d699fcc [file] [log] [blame]
Sean M. Collins2a242512016-05-03 09:03:09 -04001#!/bin/bash
2#
3# lib/neutron
4# Install and start **Neutron** network services
5
6# Dependencies:
7#
8# ``functions`` file
9# ``DEST`` must be defined
10
11# ``stack.sh`` calls the entry points in this order:
12#
13# - is_XXXX_enabled
14# - install_XXXX
15# - configure_XXXX
16# - init_XXXX
17# - start_XXXX
18# - stop_XXXX
19# - cleanup_XXXX
20
21# Save trace setting
22XTRACE=$(set +o | grep xtrace)
23set +o xtrace
24
25# Defaults
26# --------
27
28# Set up default directories
29GITDIR["python-neutronclient"]=$DEST/python-neutronclient
30
Kevin Benton66b361b2017-06-13 00:31:01 -070031# NEUTRON_DEPLOY_MOD_WSGI defines how neutron is deployed, allowed values:
32# - False (default) : Run neutron under Eventlet
33# - True : Run neutron under uwsgi
34# TODO(annp): Switching to uwsgi in next cycle if things turn out to be stable
35# enough
36NEUTRON_DEPLOY_MOD_WSGI=${NEUTRON_DEPLOY_MOD_WSGI:-False}
Sean M. Collins2a242512016-05-03 09:03:09 -040037NEUTRON_AGENT=${NEUTRON_AGENT:-openvswitch}
38NEUTRON_DIR=$DEST/neutron
Ian Wienand1f82f432017-10-04 09:51:02 +110039NEUTRON_AUTH_CACHE_DIR=${NEUTRON_AUTH_CACHE_DIR:-/var/cache/neutron}
Sean M. Collins2a242512016-05-03 09:03:09 -040040
Brian Haley9aaa5292017-09-20 14:23:05 -040041NEUTRON_DISTRIBUTED_ROUTING=$(trueorfalse False NEUTRON_DISTRIBUTED_ROUTING)
42# Distributed Virtual Router (DVR) configuration
43# Can be:
44# - ``legacy`` - No DVR functionality
45# - ``dvr_snat`` - Controller or single node DVR
46# - ``dvr`` - Compute node in multi-node DVR
47# - ``dvr_no_external`` - Compute node in multi-node DVR, no external network
48#
49# Default is 'dvr_snat' since it can handle both DVR and legacy routers
50NEUTRON_DVR_MODE=${NEUTRON_DVR_MODE:-dvr_snat}
51
Sean M. Collins2a242512016-05-03 09:03:09 -040052NEUTRON_BIN_DIR=$(get_python_exec_prefix)
53NEUTRON_DHCP_BINARY="neutron-dhcp-agent"
54
55NEUTRON_CONF_DIR=/etc/neutron
56NEUTRON_CONF=$NEUTRON_CONF_DIR/neutron.conf
57NEUTRON_META_CONF=$NEUTRON_CONF_DIR/metadata_agent.ini
58
59NEUTRON_DHCP_CONF=$NEUTRON_CONF_DIR/dhcp_agent.ini
60NEUTRON_L3_CONF=$NEUTRON_CONF_DIR/l3_agent.ini
61NEUTRON_AGENT_CONF=$NEUTRON_CONF_DIR/
Josh8f721622018-02-01 09:45:47 +020062NEUTRON_CREATE_INITIAL_NETWORKS=${NEUTRON_CREATE_INITIAL_NETWORKS:-True}
Sean M. Collins2a242512016-05-03 09:03:09 -040063
64NEUTRON_STATE_PATH=${NEUTRON_STATE_PATH:=$DATA_DIR/neutron}
Ian Wienand1f82f432017-10-04 09:51:02 +110065NEUTRON_AUTH_CACHE_DIR=${NEUTRON_AUTH_CACHE_DIR:-/var/cache/neutron}
Sean M. Collins2a242512016-05-03 09:03:09 -040066
Kevin Benton66b361b2017-06-13 00:31:01 -070067NEUTRON_UWSGI_CONF=$NEUTRON_CONF_DIR/neutron-api-uwsgi.ini
68
Sean M. Collins2a242512016-05-03 09:03:09 -040069# By default, use the ML2 plugin
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +090070NEUTRON_CORE_PLUGIN=${NEUTRON_CORE_PLUGIN:-ml2}
71NEUTRON_CORE_PLUGIN_CONF_FILENAME=${NEUTRON_CORE_PLUGIN_CONF_FILENAME:-ml2_conf.ini}
72NEUTRON_CORE_PLUGIN_CONF_PATH=$NEUTRON_CONF_DIR/plugins/$NEUTRON_CORE_PLUGIN
73NEUTRON_CORE_PLUGIN_CONF=$NEUTRON_CORE_PLUGIN_CONF_PATH/$NEUTRON_CORE_PLUGIN_CONF_FILENAME
Sean M. Collins2a242512016-05-03 09:03:09 -040074
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +000075NEUTRON_METERING_AGENT_CONF_FILENAME=${NEUTRON_METERING_AGENT_CONF_FILENAME:-metering_agent.ini}
76NEUTRON_METERING_AGENT_CONF=$NEUTRON_CONF_DIR/$NEUTRON_METERING_AGENT_CONF_FILENAME
77
Sean M. Collins2a242512016-05-03 09:03:09 -040078NEUTRON_AGENT_BINARY=${NEUTRON_AGENT_BINARY:-neutron-$NEUTRON_AGENT-agent}
79NEUTRON_L3_BINARY=${NEUTRON_L3_BINARY:-neutron-l3-agent}
80NEUTRON_META_BINARY=${NEUTRON_META_BINARY:-neutron-metadata-agent}
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +000081NEUTRON_METERING_BINARY=${NEUTRON_METERING_BINARY:-neutron-metering-agent}
Sean M. Collins2a242512016-05-03 09:03:09 -040082
83# Public facing bits
Sean Daguef3b2f4c2017-04-13 10:11:48 -040084if is_service_enabled tls-proxy; then
Sean M. Collins2a242512016-05-03 09:03:09 -040085 NEUTRON_SERVICE_PROTOCOL="https"
86fi
87NEUTRON_SERVICE_HOST=${NEUTRON_SERVICE_HOST:-$SERVICE_HOST}
88NEUTRON_SERVICE_PORT=${NEUTRON_SERVICE_PORT:-9696}
89NEUTRON_SERVICE_PORT_INT=${NEUTRON_SERVICE_PORT_INT:-19696}
90NEUTRON_SERVICE_PROTOCOL=${NEUTRON_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
91
92NEUTRON_AUTH_STRATEGY=${NEUTRON_AUTH_STRATEGY:-keystone}
93NEUTRON_ROOTWRAP=$(get_rootwrap_location neutron)
94NEUTRON_ROOTWRAP_CONF_FILE=$NEUTRON_CONF_DIR/rootwrap.conf
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +000095NEUTRON_ROOTWRAP_CMD="$NEUTRON_ROOTWRAP $NEUTRON_ROOTWRAP_CONF_FILE"
96NEUTRON_ROOTWRAP_DAEMON_CMD="$NEUTRON_ROOTWRAP-daemon $NEUTRON_ROOTWRAP_CONF_FILE"
Sean M. Collins2a242512016-05-03 09:03:09 -040097
Ihar Hrachyshka615e1152017-02-23 10:41:51 +000098# This is needed because _neutron_ovs_base_configure_l3_agent uses it to create
99# an external network bridge
100PUBLIC_BRIDGE=${PUBLIC_BRIDGE:-br-ex}
101PUBLIC_BRIDGE_MTU=${PUBLIC_BRIDGE_MTU:-1500}
102
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900103# Additional neutron api config files
Sean Dagueafef8bf2017-03-06 14:07:23 -0500104declare -a -g _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900105
Sean M. Collins2a242512016-05-03 09:03:09 -0400106# Functions
107# ---------
108
109# Test if any Neutron services are enabled
110# is_neutron_enabled
111function is_neutron_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -0700112 [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -0400113 [[ ,${ENABLED_SERVICES} =~ ,"neutron-" || ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
114 return 1
115}
116
117# Test if any Neutron services are enabled
118# is_neutron_enabled
119function is_neutron_legacy_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -0700120 [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -0400121 [[ ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
122 return 1
123}
124
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900125if is_neutron_legacy_enabled; then
126 source $TOP_DIR/lib/neutron-legacy
127fi
128
Sean M. Collins2a242512016-05-03 09:03:09 -0400129# cleanup_neutron() - Remove residual data files, anything left over from previous
130# runs that a clean run would need to clean up
131function cleanup_neutron_new {
132 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
133 if is_neutron_ovs_base_plugin; then
134 neutron_ovs_base_cleanup
135 fi
136
137 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
138 neutron_lb_cleanup
139 fi
140 # delete all namespaces created by neutron
141 for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|qlbaas|fip|snat)-[0-9a-f-]*'); do
142 sudo ip netns delete ${ns}
143 done
144}
145
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000146# configure_root_helper_options() - Configure agent rootwrap helper options
147function configure_root_helper_options {
148 local conffile=$1
149 iniset $conffile agent root_helper "sudo $NEUTRON_ROOTWRAP_CMD"
150 iniset $conffile agent root_helper_daemon "sudo $NEUTRON_ROOTWRAP_DAEMON_CMD"
151}
152
Sean M. Collins2a242512016-05-03 09:03:09 -0400153# configure_neutron() - Set config files, create data dirs, etc
154function configure_neutron_new {
155 sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR
156
157 (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh)
158
159 cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF
160
161 configure_neutron_rootwrap
162
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900163 mkdir -p $NEUTRON_CORE_PLUGIN_CONF_PATH
Sean M. Collins2a242512016-05-03 09:03:09 -0400164
YAMAMOTO Takashi1df17c92017-05-01 17:00:42 +0900165 # NOTE(yamamoto): A decomposed plugin should prepare the config file in
166 # its devstack plugin.
167 if [ -f $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample ]; then
168 cp $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample $NEUTRON_CORE_PLUGIN_CONF
169 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400170
171 iniset $NEUTRON_CONF database connection `database_connection_url neutron`
172 iniset $NEUTRON_CONF DEFAULT state_path $NEUTRON_STATE_PATH
173 iniset $NEUTRON_CONF oslo_concurrency lock_path $NEUTRON_STATE_PATH/lock
174 iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG
175
Gary Kottond2ef6152016-09-20 04:12:11 -0700176 iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collinsfbba3b92016-05-12 11:17:53 -0400177
Sean M. Collins5394cc12016-05-11 15:03:38 -0400178 iniset_rpc_backend neutron $NEUTRON_CONF
179
Sean M. Collins2a242512016-05-03 09:03:09 -0400180 # Neutron API server & Neutron plugin
181 if is_service_enabled neutron-api; then
182 local policy_file=$NEUTRON_CONF_DIR/policy.json
183 cp $NEUTRON_DIR/etc/policy.json $policy_file
184 # Allow neutron user to administer neutron to match neutron account
185 sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:neutron"/g' $policy_file
186
187 cp $NEUTRON_DIR/etc/api-paste.ini $NEUTRON_CONF_DIR/api-paste.ini
188
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900189 iniset $NEUTRON_CONF DEFAULT core_plugin $NEUTRON_CORE_PLUGIN
Sean M. Collins2a242512016-05-03 09:03:09 -0400190
Sean M. Collins2a242512016-05-03 09:03:09 -0400191 iniset $NEUTRON_CONF DEFAULT policy_file $policy_file
192 iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips True
Brian Haley9aaa5292017-09-20 14:23:05 -0400193 iniset $NEUTRON_CONF DEFAULT router_distributed $NEUTRON_DISTRIBUTED_ROUTING
Sean M. Collins2a242512016-05-03 09:03:09 -0400194
195 iniset $NEUTRON_CONF DEFAULT auth_strategy $NEUTRON_AUTH_STRATEGY
Ian Wienand1f82f432017-10-04 09:51:02 +1100196 configure_auth_token_middleware $NEUTRON_CONF neutron $NEUTRON_AUTH_CACHE_DIR keystone_authtoken
197 configure_auth_token_middleware $NEUTRON_CONF nova $NEUTRON_AUTH_CACHE_DIR nova
Sean M. Collins2a242512016-05-03 09:03:09 -0400198
199 # Configure VXLAN
200 # TODO(sc68cal) not hardcode?
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900201 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 tenant_network_types vxlan
Brian Haley9aaa5292017-09-20 14:23:05 -0400202
203 local mech_drivers="openvswitch"
204 if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
205 mech_drivers+=",l2population"
206 else
207 mech_drivers+=",linuxbridge"
208 fi
209 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 mechanism_drivers $mech_drivers
210
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900211 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vxlan vni_ranges 1001:2000
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500212 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_flat flat_networks public
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400213 if [[ "$NEUTRON_PORT_SECURITY" = "True" ]]; then
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000214 neutron_ml2_extension_driver_add port_security
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400215 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400216 fi
217
218 # Neutron OVS or LB agent
219 if is_service_enabled neutron-agent; then
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900220 iniset $NEUTRON_CORE_PLUGIN_CONF agent tunnel_types vxlan
221 iniset $NEUTRON_CORE_PLUGIN_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000222 configure_root_helper_options $NEUTRON_CORE_PLUGIN_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400223
224 # Configure the neutron agent
225 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500226 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900227 iniset $NEUTRON_CORE_PLUGIN_CONF vxlan local_ip $HOST_IP
Jakub Libosvara99ab702018-05-14 16:12:52 +0200228 elif [[ $NEUTRON_AGENT == "openvswitch" ]]; then
229 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver openvswitch
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900230 iniset $NEUTRON_CORE_PLUGIN_CONF ovs local_ip $HOST_IP
Brian Haley9aaa5292017-09-20 14:23:05 -0400231
232 if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
233 iniset $NEUTRON_CORE_PLUGIN_CONF agent l2_population True
234 iniset $NEUTRON_CORE_PLUGIN_CONF agent enable_distributed_routing True
235 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400236 fi
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000237
Denis Buliga0bf75a42017-02-06 16:56:46 +0200238 if ! running_in_container; then
239 enable_kernel_bridge_firewall
240 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400241 fi
242
243 # DHCP Agent
244 if is_service_enabled neutron-dhcp; then
245 cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $NEUTRON_DHCP_CONF
246
Gary Kottond2ef6152016-09-20 04:12:11 -0700247 iniset $NEUTRON_DHCP_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean Dague78801c12016-08-04 14:10:07 -0400248 # make it so we have working DNS from guests
249 iniset $NEUTRON_DHCP_CONF DEFAULT dnsmasq_local_resolv True
250
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000251 configure_root_helper_options $NEUTRON_DHCP_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400252 iniset $NEUTRON_DHCP_CONF DEFAULT interface_driver $NEUTRON_AGENT
253 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
254 fi
255
256 if is_service_enabled neutron-l3; then
257 cp $NEUTRON_DIR/etc/l3_agent.ini.sample $NEUTRON_L3_CONF
258 iniset $NEUTRON_L3_CONF DEFAULT interface_driver $NEUTRON_AGENT
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900259 neutron_service_plugin_class_add router
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000260 configure_root_helper_options $NEUTRON_L3_CONF
Gary Kottond2ef6152016-09-20 04:12:11 -0700261 iniset $NEUTRON_L3_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400262 neutron_plugin_configure_l3_agent $NEUTRON_L3_CONF
Ihar Hrachyshkae3915932017-02-24 06:24:47 +0000263
264 # Configure the neutron agent to serve external network ports
265 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
266 iniset $NEUTRON_CORE_PLUGIN_CONF linux_bridge bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE"
267 else
268 iniset $NEUTRON_CORE_PLUGIN_CONF ovs bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE"
269 fi
Brian Haley9aaa5292017-09-20 14:23:05 -0400270
271 if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
272 iniset $NEUTRON_L3_CONF DEFAULT agent_mode $NEUTRON_DVR_MODE
273 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400274 fi
275
276 # Metadata
Sean M. Collins1cd28282016-05-11 15:07:19 -0400277 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400278 cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $NEUTRON_META_CONF
279
Gary Kottond2ef6152016-09-20 04:12:11 -0700280 iniset $NEUTRON_META_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Ken'ichi Ohmichi2da019f2017-10-11 09:57:25 -0700281 iniset $NEUTRON_META_CONF DEFAULT nova_metadata_host $SERVICE_HOST
Armando Migliaccio06f2ea22017-02-02 16:47:00 -0800282 iniset $NEUTRON_META_CONF DEFAULT metadata_workers $API_WORKERS
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000283 # TODO(ihrachys) do we really need to set rootwrap for metadata agent?
284 configure_root_helper_options $NEUTRON_META_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400285
286 # TODO(dtroyer): remove the v2.0 hard code below
Sean Daguec13b8a12017-04-20 06:54:51 -0400287 iniset $NEUTRON_META_CONF DEFAULT auth_url $KEYSTONE_SERVICE_URI
Ian Wienand1f82f432017-10-04 09:51:02 +1100288 configure_auth_token_middleware $NEUTRON_META_CONF neutron $NEUTRON_AUTH_CACHE_DIR DEFAULT
Sean M. Collins2a242512016-05-03 09:03:09 -0400289 fi
290
291 # Format logging
Sean Dague27f66e92017-05-02 09:08:17 -0400292 setup_logging $NEUTRON_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400293
Kevin Benton66b361b2017-06-13 00:31:01 -0700294 if is_service_enabled tls-proxy && [ "$NEUTRON_DEPLOY_MOD_WSGI" == "False" ]; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400295 # Set the service port for a proxy to take the original
296 iniset $NEUTRON_CONF DEFAULT bind_port "$NEUTRON_SERVICE_PORT_INT"
Jens Harbott411c34d2017-08-29 14:40:26 +0000297 iniset $NEUTRON_CONF oslo_middleware enable_proxy_headers_parsing True
Sean M. Collins2a242512016-05-03 09:03:09 -0400298 fi
299
Sean M. Collins8063fee2016-05-24 11:27:36 -0700300 # Metering
301 if is_service_enabled neutron-metering; then
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +0000302 cp $NEUTRON_DIR/etc/metering_agent.ini.sample $NEUTRON_METERING_AGENT_CONF
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900303 neutron_service_plugin_class_add metering
Sean M. Collins8063fee2016-05-24 11:27:36 -0700304 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400305}
306
307# configure_neutron_rootwrap() - configure Neutron's rootwrap
308function configure_neutron_rootwrap {
Sean M. Collins2a242512016-05-03 09:03:09 -0400309 # Deploy new rootwrap filters files (owned by root).
310 # Wipe any existing rootwrap.d files first
311 if [[ -d $NEUTRON_CONF_DIR/rootwrap.d ]]; then
312 sudo rm -rf $NEUTRON_CONF_DIR/rootwrap.d
313 fi
314
315 # Deploy filters to /etc/neutron/rootwrap.d
316 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
317 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
318
319 # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d``
320 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $NEUTRON_CONF_DIR
321 sudo sed -e "s:^filters_path=.*$:filters_path=$NEUTRON_CONF_DIR/rootwrap.d:" -i $NEUTRON_CONF_DIR/rootwrap.conf
322
323 # Set up the rootwrap sudoers for Neutron
324 tempfile=`mktemp`
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000325 echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_CMD *" >$tempfile
326 echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_DAEMON_CMD" >>$tempfile
Sean M. Collins2a242512016-05-03 09:03:09 -0400327 chmod 0440 $tempfile
328 sudo chown root:root $tempfile
329 sudo mv $tempfile /etc/sudoers.d/neutron-rootwrap
330}
331
332# Make Neutron-required changes to nova.conf
Lucas Alvares Gomese6385932018-06-28 11:00:28 +0100333# Takes a single optional argument which is the config file to update,
334# if not passed $NOVA_CONF is used.
Sean M. Collins2a242512016-05-03 09:03:09 -0400335function configure_neutron_nova_new {
Lucas Alvares Gomese6385932018-06-28 11:00:28 +0100336 local conf=${1:-$NOVA_CONF}
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400337 iniset $conf DEFAULT use_neutron True
338 iniset $conf neutron auth_type "password"
339 iniset $conf neutron auth_url "$KEYSTONE_SERVICE_URI"
340 iniset $conf neutron username neutron
341 iniset $conf neutron password "$SERVICE_PASSWORD"
342 iniset $conf neutron user_domain_name "Default"
343 iniset $conf neutron project_name "$SERVICE_TENANT_NAME"
344 iniset $conf neutron project_domain_name "Default"
345 iniset $conf neutron auth_strategy $NEUTRON_AUTH_STRATEGY
346 iniset $conf neutron region_name "$REGION_NAME"
Sean M. Collins2a242512016-05-03 09:03:09 -0400347
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400348 iniset $conf DEFAULT firewall_driver nova.virt.firewall.NoopFirewallDriver
Sean M. Collins2a242512016-05-03 09:03:09 -0400349
Gary Kotton88f85582016-08-14 06:55:42 -0700350 # optionally set options in nova_conf
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400351 neutron_plugin_create_nova_conf $conf
Gary Kotton88f85582016-08-14 06:55:42 -0700352
Sean M. Collins1cd28282016-05-11 15:07:19 -0400353 if is_service_enabled neutron-metadata-agent; then
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400354 iniset $conf neutron service_metadata_proxy "True"
Sean M. Collins2a242512016-05-03 09:03:09 -0400355 fi
356
357}
358
359# Tenant User Roles
360# ------------------------------------------------------------------
361# service neutron admin # if enabled
362
363# create_neutron_accounts() - Create required service accounts
364function create_neutron_accounts_new {
Kevin Benton66b361b2017-06-13 00:31:01 -0700365 local neutron_url
366
367 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
368 neutron_url=$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST/networking/
369 else
370 neutron_url=$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT/
371 fi
372
373
Sean M. Collins2a242512016-05-03 09:03:09 -0400374 if [[ "$ENABLED_SERVICES" =~ "neutron-api" ]]; then
375
376 create_service_user "neutron"
377
378 neutron_service=$(get_or_create_service "neutron" \
379 "network" "Neutron Service")
380 get_or_create_endpoint $neutron_service \
Kevin Benton66b361b2017-06-13 00:31:01 -0700381 "$REGION_NAME" "$neutron_url"
Sean M. Collins2a242512016-05-03 09:03:09 -0400382 fi
383}
384
Ian Wienand1f82f432017-10-04 09:51:02 +1100385# create_neutron_cache_dir() - Part of the init_neutron() process
386function create_neutron_cache_dir {
387 # Create cache dir
388 sudo install -d -o $STACK_USER $NEUTRON_AUTH_CACHE_DIR
389 rm -f $NEUTRON_AUTH_CACHE_DIR/*
390}
391
Sean M. Collins2a242512016-05-03 09:03:09 -0400392# init_neutron() - Initialize databases, etc.
393function init_neutron_new {
394
395 recreate_database neutron
396
Clark Boylan633dbc32017-06-14 12:09:21 -0700397 time_start "dbsync"
Sean M. Collins2a242512016-05-03 09:03:09 -0400398 # Run Neutron db migrations
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000399 $NEUTRON_BIN_DIR/neutron-db-manage upgrade heads
Clark Boylan633dbc32017-06-14 12:09:21 -0700400 time_stop "dbsync"
Ian Wienand1f82f432017-10-04 09:51:02 +1100401
402 create_neutron_cache_dir
Sean M. Collins2a242512016-05-03 09:03:09 -0400403}
404
405# install_neutron() - Collect source and prepare
406function install_neutron_new {
407 git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH
408 setup_develop $NEUTRON_DIR
409
410 # Install neutron-lib from git so we make sure we're testing
411 # the latest code.
412 if use_library_from_git "neutron-lib"; then
413 git_clone_by_name "neutron-lib"
414 setup_dev_lib "neutron-lib"
415 fi
416
417 # L3 service requires radvd
418 if is_service_enabled neutron-l3; then
419 install_package radvd
420 fi
421
422 if is_service_enabled neutron-agent neutron-dhcp neutron-l3; then
423 #TODO(sc68cal) - kind of ugly
424 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
425 neutron_plugin_install_agent_packages
426 fi
427
428}
429
430# install_neutronclient() - Collect source and prepare
431function install_neutronclient {
432 if use_library_from_git "python-neutronclient"; then
433 git_clone_by_name "python-neutronclient"
434 setup_dev_lib "python-neutronclient"
435 sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-neutronclient"]}/tools/,/etc/bash_completion.d/}neutron.bash_completion
436 fi
437}
438
439# start_neutron_api() - Start the API process ahead of other things
440function start_neutron_api {
441 local service_port=$NEUTRON_SERVICE_PORT
442 local service_protocol=$NEUTRON_SERVICE_PROTOCOL
Kevin Benton66b361b2017-06-13 00:31:01 -0700443 local neutron_url
Sean M. Collins2a242512016-05-03 09:03:09 -0400444 if is_service_enabled tls-proxy; then
445 service_port=$NEUTRON_SERVICE_PORT_INT
446 service_protocol="http"
447 fi
448
YAMAMOTO Takashied887d82017-02-22 14:21:33 -0500449 local opts=""
450 opts+=" --config-file $NEUTRON_CONF"
451 opts+=" --config-file $NEUTRON_CORE_PLUGIN_CONF"
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900452 local cfg_file
453 for cfg_file in ${_NEUTRON_SERVER_EXTRA_CONF_FILES_ABS[@]}; do
454 opts+=" --config-file $cfg_file"
455 done
456
Kevin Benton66b361b2017-06-13 00:31:01 -0700457 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
458 run_process neutron-api "$NEUTRON_BIN_DIR/uwsgi --procname-prefix neutron-api --ini $NEUTRON_UWSGI_CONF"
459 neutron_url=$service_protocol://$NEUTRON_SERVICE_HOST/networking/
460 enable_service neutron-rpc-server
461 run_process neutron-rpc-server "$NEUTRON_BIN_DIR/neutron-rpc-server $opts"
462 else
463 # Start the Neutron service
464 # TODO(sc68cal) Stop hard coding this
465 run_process neutron-api "$NEUTRON_BIN_DIR/neutron-server $opts"
466 neutron_url=$service_protocol://$NEUTRON_SERVICE_HOST:$service_port
467 # Start proxy if enabled
468 if is_service_enabled tls-proxy; then
469 start_tls_proxy neutron '*' $NEUTRON_SERVICE_PORT $NEUTRON_SERVICE_HOST $NEUTRON_SERVICE_PORT_INT
470 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400471 fi
472
Kevin Benton66b361b2017-06-13 00:31:01 -0700473 if ! wait_for_service $SERVICE_TIMEOUT $neutron_url; then
474 die $LINENO "neutron-api did not start"
Sean M. Collins2a242512016-05-03 09:03:09 -0400475 fi
476}
477
Sean Dague0eebeb42017-08-30 14:16:58 -0400478# start_neutron() - Start running processes
Sean M. Collins2a242512016-05-03 09:03:09 -0400479function start_neutron_new {
Sean M. Collins2a242512016-05-03 09:03:09 -0400480 # Start up the neutron agents if enabled
481 # TODO(sc68cal) Make this pluggable so different DevStack plugins for different Neutron plugins
482 # can resolve the $NEUTRON_AGENT_BINARY
483 if is_service_enabled neutron-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000484 # TODO(ihrachys) stop loading ml2_conf.ini into agents, instead load agent specific files
485 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 -0400486 fi
487 if is_service_enabled neutron-dhcp; then
488 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000489 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 -0400490 fi
491 if is_service_enabled neutron-l3; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000492 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 +0900493 fi
Josh8f721622018-02-01 09:45:47 +0200494 if is_service_enabled neutron-api && [[ "$NEUTRON_CREATE_INITIAL_NETWORKS" == "True" ]]; then
YAMAMOTO Takashi07edde12016-10-19 19:21:00 +0000495 # XXX(sc68cal) - Here's where plugins can wire up their own networks instead
496 # of the code in lib/neutron_plugins/services/l3
497 if type -p neutron_plugin_create_initial_networks > /dev/null; then
498 neutron_plugin_create_initial_networks
499 else
500 # XXX(sc68cal) Load up the built in Neutron networking code and build a topology
501 source $TOP_DIR/lib/neutron_plugins/services/l3
502 # Create the networks using servic
503 create_neutron_initial_network
504 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400505 fi
Sean M. Collins1cd28282016-05-11 15:07:19 -0400506 if is_service_enabled neutron-metadata-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000507 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 -0400508 fi
Sean M. Collins8063fee2016-05-24 11:27:36 -0700509
510 if is_service_enabled neutron-metering; then
Ihar Hrachyshka868746b2017-09-13 15:44:18 -0600511 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 -0700512 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400513}
514
Sean Dague0eebeb42017-08-30 14:16:58 -0400515# stop_neutron() - Stop running processes
Sean M. Collins2a242512016-05-03 09:03:09 -0400516function stop_neutron_new {
517 for serv in neutron-api neutron-agent neutron-l3; do
518 stop_process $serv
519 done
520
Kevin Benton66b361b2017-06-13 00:31:01 -0700521 if is_service_enabled neutron-rpc-server; then
522 stop_process neutron-rpc-server
523 fi
524
Sean M. Collins2a242512016-05-03 09:03:09 -0400525 if is_service_enabled neutron-dhcp; then
526 stop_process neutron-dhcp
527 pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }')
528 [ ! -z "$pid" ] && sudo kill -9 $pid
529 fi
530
Sean M. Collins1cd28282016-05-11 15:07:19 -0400531 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400532 sudo pkill -9 -f neutron-ns-metadata-proxy || :
Sean M. Collins1cd28282016-05-11 15:07:19 -0400533 stop_process neutron-metadata-agent
Sean M. Collins2a242512016-05-03 09:03:09 -0400534 fi
535}
536
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900537# neutron_service_plugin_class_add() - add service plugin class
538function neutron_service_plugin_class_add_new {
539 local service_plugin_class=$1
540 local plugins=""
541
542 plugins=$(iniget $NEUTRON_CONF DEFAULT service_plugins)
YAMAMOTO Takashi84e45c92017-02-22 14:25:14 -0500543 if [ $plugins ]; then
544 plugins+=","
545 fi
546 plugins+="${service_plugin_class}"
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900547 iniset $NEUTRON_CONF DEFAULT service_plugins $plugins
548}
549
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000550function _neutron_ml2_extension_driver_add {
551 local driver=$1
552 local drivers=""
553
554 drivers=$(iniget $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers)
555 if [ $drivers ]; then
556 drivers+=","
557 fi
558 drivers+="${driver}"
559 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers $drivers
560}
561
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900562function neutron_server_config_add_new {
563 _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS+=($1)
564}
565
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500566# neutron_deploy_rootwrap_filters() - deploy rootwrap filters
567function neutron_deploy_rootwrap_filters_new {
568 local srcdir=$1
569 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
570 sudo install -o root -g root -m 644 $srcdir/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
571}
572
Sean M. Collins2a242512016-05-03 09:03:09 -0400573# Dispatch functions
574# These are needed for compatibility between the old and new implementations
575# where there are function name overlaps. These will be removed when
576# neutron-legacy is removed.
577# TODO(sc68cal) Remove when neutron-legacy is no more.
578function cleanup_neutron {
Kevin Benton66b361b2017-06-13 00:31:01 -0700579 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
580 stop_process neutron-api
581 stop_process neutron-rpc-server
582 remove_uwsgi_config "$NEUTRON_UWSGI_CONF" "$NEUTRON_BIN_DIR/neutron-api"
583 sudo rm -f $(apache_site_config_for neutron-api)
584 fi
585
Sean M. Collins2a242512016-05-03 09:03:09 -0400586 if is_neutron_legacy_enabled; then
587 # Call back to old function
588 cleanup_mutnauq "$@"
589 else
590 cleanup_neutron_new "$@"
591 fi
592}
593
594function configure_neutron {
595 if is_neutron_legacy_enabled; then
596 # Call back to old function
597 configure_mutnauq "$@"
598 else
599 configure_neutron_new "$@"
600 fi
Kevin Benton66b361b2017-06-13 00:31:01 -0700601
602 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
603 write_uwsgi_config "$NEUTRON_UWSGI_CONF" "$NEUTRON_BIN_DIR/neutron-api" "/networking"
604 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400605}
606
607function configure_neutron_nova {
608 if is_neutron_legacy_enabled; then
609 # Call back to old function
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400610 create_nova_conf_neutron $NOVA_CONF
611 if [[ "${CELLSV2_SETUP}" == "superconductor" ]]; then
612 for i in $(seq 1 $NOVA_NUM_CELLS); do
613 local conf
614 conf=$(conductor_conf $i)
615 create_nova_conf_neutron $conf
616 done
617 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400618 else
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400619 configure_neutron_nova_new $NOVA_CONF
620 if [[ "${CELLSV2_SETUP}" == "superconductor" ]]; then
621 for i in $(seq 1 $NOVA_NUM_CELLS); do
622 local conf
623 conf=$(conductor_conf $i)
624 configure_neutron_nova_new $conf
625 done
626 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400627 fi
628}
629
630function create_neutron_accounts {
631 if is_neutron_legacy_enabled; then
632 # Call back to old function
633 create_mutnauq_accounts "$@"
634 else
635 create_neutron_accounts_new "$@"
636 fi
637}
638
639function init_neutron {
640 if is_neutron_legacy_enabled; then
641 # Call back to old function
642 init_mutnauq "$@"
643 else
644 init_neutron_new "$@"
645 fi
646}
647
648function install_neutron {
649 if is_neutron_legacy_enabled; then
650 # Call back to old function
651 install_mutnauq "$@"
652 else
653 install_neutron_new "$@"
654 fi
655}
656
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900657function neutron_service_plugin_class_add {
658 if is_neutron_legacy_enabled; then
659 # Call back to old function
660 _neutron_service_plugin_class_add "$@"
661 else
662 neutron_service_plugin_class_add_new "$@"
663 fi
664}
665
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000666function neutron_ml2_extension_driver_add {
667 if is_neutron_legacy_enabled; then
668 # Call back to old function
669 _neutron_ml2_extension_driver_add_old "$@"
670 else
671 _neutron_ml2_extension_driver_add "$@"
672 fi
673}
674
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900675function install_neutron_agent_packages {
676 if is_neutron_legacy_enabled; then
677 # Call back to old function
678 install_neutron_agent_packages_mutnauq "$@"
679 else
680 :
681 fi
682}
683
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900684function neutron_server_config_add {
685 if is_neutron_legacy_enabled; then
686 # Call back to old function
687 mutnauq_server_config_add "$@"
688 else
689 neutron_server_config_add_new "$@"
690 fi
691}
692
Sean M. Collins2a242512016-05-03 09:03:09 -0400693function start_neutron {
694 if is_neutron_legacy_enabled; then
695 # Call back to old function
696 start_mutnauq_l2_agent "$@"
697 start_mutnauq_other_agents "$@"
698 else
699 start_neutron_new "$@"
700 fi
701}
702
703function stop_neutron {
704 if is_neutron_legacy_enabled; then
705 # Call back to old function
706 stop_mutnauq "$@"
707 else
708 stop_neutron_new "$@"
709 fi
710}
711
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500712function neutron_deploy_rootwrap_filters {
713 if is_neutron_legacy_enabled; then
714 # Call back to old function
715 _neutron_deploy_rootwrap_filters "$@"
716 else
717 neutron_deploy_rootwrap_filters_new "$@"
718 fi
719}
720
Sean M. Collins2a242512016-05-03 09:03:09 -0400721# Restore xtrace
722$XTRACE