blob: 08347926f759bd160ab808da322a1936e245866b [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/
Josh8f721622018-02-01 09:45:47 +020045NEUTRON_CREATE_INITIAL_NETWORKS=${NEUTRON_CREATE_INITIAL_NETWORKS:-True}
Sean M. Collins2a242512016-05-03 09:03:09 -040046
47NEUTRON_STATE_PATH=${NEUTRON_STATE_PATH:=$DATA_DIR/neutron}
Ian Wienand1f82f432017-10-04 09:51:02 +110048NEUTRON_AUTH_CACHE_DIR=${NEUTRON_AUTH_CACHE_DIR:-/var/cache/neutron}
Sean M. Collins2a242512016-05-03 09:03:09 -040049
50# By default, use the ML2 plugin
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +090051NEUTRON_CORE_PLUGIN=${NEUTRON_CORE_PLUGIN:-ml2}
52NEUTRON_CORE_PLUGIN_CONF_FILENAME=${NEUTRON_CORE_PLUGIN_CONF_FILENAME:-ml2_conf.ini}
53NEUTRON_CORE_PLUGIN_CONF_PATH=$NEUTRON_CONF_DIR/plugins/$NEUTRON_CORE_PLUGIN
54NEUTRON_CORE_PLUGIN_CONF=$NEUTRON_CORE_PLUGIN_CONF_PATH/$NEUTRON_CORE_PLUGIN_CONF_FILENAME
Sean M. Collins2a242512016-05-03 09:03:09 -040055
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +000056NEUTRON_METERING_AGENT_CONF_FILENAME=${NEUTRON_METERING_AGENT_CONF_FILENAME:-metering_agent.ini}
57NEUTRON_METERING_AGENT_CONF=$NEUTRON_CONF_DIR/$NEUTRON_METERING_AGENT_CONF_FILENAME
58
Sean M. Collins2a242512016-05-03 09:03:09 -040059NEUTRON_AGENT_BINARY=${NEUTRON_AGENT_BINARY:-neutron-$NEUTRON_AGENT-agent}
60NEUTRON_L3_BINARY=${NEUTRON_L3_BINARY:-neutron-l3-agent}
61NEUTRON_META_BINARY=${NEUTRON_META_BINARY:-neutron-metadata-agent}
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +000062NEUTRON_METERING_BINARY=${NEUTRON_METERING_BINARY:-neutron-metering-agent}
Sean M. Collins2a242512016-05-03 09:03:09 -040063
64# Public facing bits
Sean Daguef3b2f4c2017-04-13 10:11:48 -040065if is_service_enabled tls-proxy; then
Sean M. Collins2a242512016-05-03 09:03:09 -040066 NEUTRON_SERVICE_PROTOCOL="https"
67fi
68NEUTRON_SERVICE_HOST=${NEUTRON_SERVICE_HOST:-$SERVICE_HOST}
69NEUTRON_SERVICE_PORT=${NEUTRON_SERVICE_PORT:-9696}
70NEUTRON_SERVICE_PORT_INT=${NEUTRON_SERVICE_PORT_INT:-19696}
71NEUTRON_SERVICE_PROTOCOL=${NEUTRON_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
72
73NEUTRON_AUTH_STRATEGY=${NEUTRON_AUTH_STRATEGY:-keystone}
74NEUTRON_ROOTWRAP=$(get_rootwrap_location neutron)
75NEUTRON_ROOTWRAP_CONF_FILE=$NEUTRON_CONF_DIR/rootwrap.conf
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +000076NEUTRON_ROOTWRAP_CMD="$NEUTRON_ROOTWRAP $NEUTRON_ROOTWRAP_CONF_FILE"
77NEUTRON_ROOTWRAP_DAEMON_CMD="$NEUTRON_ROOTWRAP-daemon $NEUTRON_ROOTWRAP_CONF_FILE"
Sean M. Collins2a242512016-05-03 09:03:09 -040078
Ihar Hrachyshka615e1152017-02-23 10:41:51 +000079# This is needed because _neutron_ovs_base_configure_l3_agent will set
80# external_network_bridge
81Q_USE_PROVIDERNET_FOR_PUBLIC=${Q_USE_PROVIDERNET_FOR_PUBLIC:-True}
82# This is needed because _neutron_ovs_base_configure_l3_agent uses it to create
83# an external network bridge
84PUBLIC_BRIDGE=${PUBLIC_BRIDGE:-br-ex}
85PUBLIC_BRIDGE_MTU=${PUBLIC_BRIDGE_MTU:-1500}
86
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +090087# Additional neutron api config files
Sean Dagueafef8bf2017-03-06 14:07:23 -050088declare -a -g _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +090089
Sean M. Collins2a242512016-05-03 09:03:09 -040090# Functions
91# ---------
92
93# Test if any Neutron services are enabled
94# is_neutron_enabled
95function is_neutron_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -070096 [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -040097 [[ ,${ENABLED_SERVICES} =~ ,"neutron-" || ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
98 return 1
99}
100
101# Test if any Neutron services are enabled
102# is_neutron_enabled
103function is_neutron_legacy_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -0700104 [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -0400105 [[ ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
106 return 1
107}
108
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900109if is_neutron_legacy_enabled; then
110 source $TOP_DIR/lib/neutron-legacy
111fi
112
Sean M. Collins2a242512016-05-03 09:03:09 -0400113# cleanup_neutron() - Remove residual data files, anything left over from previous
114# runs that a clean run would need to clean up
115function cleanup_neutron_new {
116 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
117 if is_neutron_ovs_base_plugin; then
118 neutron_ovs_base_cleanup
119 fi
120
121 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
122 neutron_lb_cleanup
123 fi
124 # delete all namespaces created by neutron
125 for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|qlbaas|fip|snat)-[0-9a-f-]*'); do
126 sudo ip netns delete ${ns}
127 done
128}
129
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000130# configure_root_helper_options() - Configure agent rootwrap helper options
131function configure_root_helper_options {
132 local conffile=$1
133 iniset $conffile agent root_helper "sudo $NEUTRON_ROOTWRAP_CMD"
134 iniset $conffile agent root_helper_daemon "sudo $NEUTRON_ROOTWRAP_DAEMON_CMD"
135}
136
Sean M. Collins2a242512016-05-03 09:03:09 -0400137# configure_neutron() - Set config files, create data dirs, etc
138function configure_neutron_new {
139 sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR
140
141 (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh)
142
143 cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF
144
145 configure_neutron_rootwrap
146
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900147 mkdir -p $NEUTRON_CORE_PLUGIN_CONF_PATH
Sean M. Collins2a242512016-05-03 09:03:09 -0400148
YAMAMOTO Takashi1df17c92017-05-01 17:00:42 +0900149 # NOTE(yamamoto): A decomposed plugin should prepare the config file in
150 # its devstack plugin.
151 if [ -f $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample ]; then
152 cp $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample $NEUTRON_CORE_PLUGIN_CONF
153 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400154
155 iniset $NEUTRON_CONF database connection `database_connection_url neutron`
156 iniset $NEUTRON_CONF DEFAULT state_path $NEUTRON_STATE_PATH
157 iniset $NEUTRON_CONF oslo_concurrency lock_path $NEUTRON_STATE_PATH/lock
158 iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG
159
Gary Kottond2ef6152016-09-20 04:12:11 -0700160 iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collinsfbba3b92016-05-12 11:17:53 -0400161
Sean M. Collins5394cc12016-05-11 15:03:38 -0400162 iniset_rpc_backend neutron $NEUTRON_CONF
163
Sean M. Collins2a242512016-05-03 09:03:09 -0400164 # Neutron API server & Neutron plugin
165 if is_service_enabled neutron-api; then
166 local policy_file=$NEUTRON_CONF_DIR/policy.json
167 cp $NEUTRON_DIR/etc/policy.json $policy_file
168 # Allow neutron user to administer neutron to match neutron account
169 sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:neutron"/g' $policy_file
170
171 cp $NEUTRON_DIR/etc/api-paste.ini $NEUTRON_CONF_DIR/api-paste.ini
172
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900173 iniset $NEUTRON_CONF DEFAULT core_plugin $NEUTRON_CORE_PLUGIN
Sean M. Collins2a242512016-05-03 09:03:09 -0400174
Sean M. Collins2a242512016-05-03 09:03:09 -0400175 iniset $NEUTRON_CONF DEFAULT policy_file $policy_file
176 iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips True
177
178 iniset $NEUTRON_CONF DEFAULT auth_strategy $NEUTRON_AUTH_STRATEGY
Ian Wienand1f82f432017-10-04 09:51:02 +1100179 configure_auth_token_middleware $NEUTRON_CONF neutron $NEUTRON_AUTH_CACHE_DIR keystone_authtoken
180 configure_auth_token_middleware $NEUTRON_CONF nova $NEUTRON_AUTH_CACHE_DIR nova
Sean M. Collins2a242512016-05-03 09:03:09 -0400181
182 # Configure VXLAN
183 # TODO(sc68cal) not hardcode?
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900184 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 tenant_network_types vxlan
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900185 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 mechanism_drivers openvswitch,linuxbridge
186 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vxlan vni_ranges 1001:2000
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500187 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_flat flat_networks public
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400188 if [[ "$NEUTRON_PORT_SECURITY" = "True" ]]; then
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000189 neutron_ml2_extension_driver_add port_security
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400190 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400191 fi
192
193 # Neutron OVS or LB agent
194 if is_service_enabled neutron-agent; then
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900195 iniset $NEUTRON_CORE_PLUGIN_CONF agent tunnel_types vxlan
196 iniset $NEUTRON_CORE_PLUGIN_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000197 configure_root_helper_options $NEUTRON_CORE_PLUGIN_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400198
199 # Configure the neutron agent
200 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500201 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900202 iniset $NEUTRON_CORE_PLUGIN_CONF vxlan local_ip $HOST_IP
Sean M. Collins2a242512016-05-03 09:03:09 -0400203 else
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500204 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables_hybrid
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900205 iniset $NEUTRON_CORE_PLUGIN_CONF ovs local_ip $HOST_IP
Sean M. Collins2a242512016-05-03 09:03:09 -0400206 fi
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000207
Denis Buliga0bf75a42017-02-06 16:56:46 +0200208 if ! running_in_container; then
209 enable_kernel_bridge_firewall
210 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400211 fi
212
213 # DHCP Agent
214 if is_service_enabled neutron-dhcp; then
215 cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $NEUTRON_DHCP_CONF
216
Gary Kottond2ef6152016-09-20 04:12:11 -0700217 iniset $NEUTRON_DHCP_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean Dague78801c12016-08-04 14:10:07 -0400218 # make it so we have working DNS from guests
219 iniset $NEUTRON_DHCP_CONF DEFAULT dnsmasq_local_resolv True
220
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000221 configure_root_helper_options $NEUTRON_DHCP_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400222 iniset $NEUTRON_DHCP_CONF DEFAULT interface_driver $NEUTRON_AGENT
223 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
224 fi
225
226 if is_service_enabled neutron-l3; then
227 cp $NEUTRON_DIR/etc/l3_agent.ini.sample $NEUTRON_L3_CONF
228 iniset $NEUTRON_L3_CONF DEFAULT interface_driver $NEUTRON_AGENT
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900229 neutron_service_plugin_class_add router
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000230 configure_root_helper_options $NEUTRON_L3_CONF
Gary Kottond2ef6152016-09-20 04:12:11 -0700231 iniset $NEUTRON_L3_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400232 neutron_plugin_configure_l3_agent $NEUTRON_L3_CONF
Ihar Hrachyshkae3915932017-02-24 06:24:47 +0000233
234 # Configure the neutron agent to serve external network ports
235 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
236 iniset $NEUTRON_CORE_PLUGIN_CONF linux_bridge bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE"
237 else
238 iniset $NEUTRON_CORE_PLUGIN_CONF ovs bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE"
239 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400240 fi
241
242 # Metadata
Sean M. Collins1cd28282016-05-11 15:07:19 -0400243 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400244 cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $NEUTRON_META_CONF
245
Gary Kottond2ef6152016-09-20 04:12:11 -0700246 iniset $NEUTRON_META_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Ken'ichi Ohmichi2da019f2017-10-11 09:57:25 -0700247 iniset $NEUTRON_META_CONF DEFAULT nova_metadata_host $SERVICE_HOST
Armando Migliaccio06f2ea22017-02-02 16:47:00 -0800248 iniset $NEUTRON_META_CONF DEFAULT metadata_workers $API_WORKERS
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000249 # TODO(ihrachys) do we really need to set rootwrap for metadata agent?
250 configure_root_helper_options $NEUTRON_META_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400251
252 # TODO(dtroyer): remove the v2.0 hard code below
Sean Daguec13b8a12017-04-20 06:54:51 -0400253 iniset $NEUTRON_META_CONF DEFAULT auth_url $KEYSTONE_SERVICE_URI
Ian Wienand1f82f432017-10-04 09:51:02 +1100254 configure_auth_token_middleware $NEUTRON_META_CONF neutron $NEUTRON_AUTH_CACHE_DIR DEFAULT
Sean M. Collins2a242512016-05-03 09:03:09 -0400255 fi
256
257 # Format logging
Sean Dague27f66e92017-05-02 09:08:17 -0400258 setup_logging $NEUTRON_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400259
260 if is_service_enabled tls-proxy; then
261 # Set the service port for a proxy to take the original
262 iniset $NEUTRON_CONF DEFAULT bind_port "$NEUTRON_SERVICE_PORT_INT"
Jens Harbott411c34d2017-08-29 14:40:26 +0000263 iniset $NEUTRON_CONF oslo_middleware enable_proxy_headers_parsing True
Sean M. Collins2a242512016-05-03 09:03:09 -0400264 fi
265
Sean M. Collins8063fee2016-05-24 11:27:36 -0700266 # Metering
267 if is_service_enabled neutron-metering; then
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +0000268 cp $NEUTRON_DIR/etc/metering_agent.ini.sample $NEUTRON_METERING_AGENT_CONF
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900269 neutron_service_plugin_class_add metering
Sean M. Collins8063fee2016-05-24 11:27:36 -0700270 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400271}
272
273# configure_neutron_rootwrap() - configure Neutron's rootwrap
274function configure_neutron_rootwrap {
Sean M. Collins2a242512016-05-03 09:03:09 -0400275 # Deploy new rootwrap filters files (owned by root).
276 # Wipe any existing rootwrap.d files first
277 if [[ -d $NEUTRON_CONF_DIR/rootwrap.d ]]; then
278 sudo rm -rf $NEUTRON_CONF_DIR/rootwrap.d
279 fi
280
281 # Deploy filters to /etc/neutron/rootwrap.d
282 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
283 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
284
285 # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d``
286 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $NEUTRON_CONF_DIR
287 sudo sed -e "s:^filters_path=.*$:filters_path=$NEUTRON_CONF_DIR/rootwrap.d:" -i $NEUTRON_CONF_DIR/rootwrap.conf
288
289 # Set up the rootwrap sudoers for Neutron
290 tempfile=`mktemp`
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000291 echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_CMD *" >$tempfile
292 echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_DAEMON_CMD" >>$tempfile
Sean M. Collins2a242512016-05-03 09:03:09 -0400293 chmod 0440 $tempfile
294 sudo chown root:root $tempfile
295 sudo mv $tempfile /etc/sudoers.d/neutron-rootwrap
296}
297
298# Make Neutron-required changes to nova.conf
299function configure_neutron_nova_new {
300 iniset $NOVA_CONF DEFAULT use_neutron True
301 iniset $NOVA_CONF neutron auth_type "password"
Sean Daguec13b8a12017-04-20 06:54:51 -0400302 iniset $NOVA_CONF neutron auth_url "$KEYSTONE_SERVICE_URI"
Sean M. Collins2a242512016-05-03 09:03:09 -0400303 iniset $NOVA_CONF neutron username neutron
304 iniset $NOVA_CONF neutron password "$SERVICE_PASSWORD"
305 iniset $NOVA_CONF neutron user_domain_name "Default"
306 iniset $NOVA_CONF neutron project_name "$SERVICE_TENANT_NAME"
307 iniset $NOVA_CONF neutron project_domain_name "Default"
308 iniset $NOVA_CONF neutron auth_strategy $NEUTRON_AUTH_STRATEGY
309 iniset $NOVA_CONF neutron region_name "$REGION_NAME"
310 iniset $NOVA_CONF neutron url $NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT
311
312 iniset $NOVA_CONF DEFAULT firewall_driver nova.virt.firewall.NoopFirewallDriver
313
Gary Kotton88f85582016-08-14 06:55:42 -0700314 # optionally set options in nova_conf
315 neutron_plugin_create_nova_conf
316
Sean M. Collins1cd28282016-05-11 15:07:19 -0400317 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400318 iniset $NOVA_CONF neutron service_metadata_proxy "True"
319 fi
320
321}
322
323# Tenant User Roles
324# ------------------------------------------------------------------
325# service neutron admin # if enabled
326
327# create_neutron_accounts() - Create required service accounts
328function create_neutron_accounts_new {
329 if [[ "$ENABLED_SERVICES" =~ "neutron-api" ]]; then
330
331 create_service_user "neutron"
332
333 neutron_service=$(get_or_create_service "neutron" \
334 "network" "Neutron Service")
335 get_or_create_endpoint $neutron_service \
336 "$REGION_NAME" \
Sean M. Collins2a242512016-05-03 09:03:09 -0400337 "$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT/"
338 fi
339}
340
Ian Wienand1f82f432017-10-04 09:51:02 +1100341# create_neutron_cache_dir() - Part of the init_neutron() process
342function create_neutron_cache_dir {
343 # Create cache dir
344 sudo install -d -o $STACK_USER $NEUTRON_AUTH_CACHE_DIR
345 rm -f $NEUTRON_AUTH_CACHE_DIR/*
346}
347
Sean M. Collins2a242512016-05-03 09:03:09 -0400348# init_neutron() - Initialize databases, etc.
349function init_neutron_new {
350
351 recreate_database neutron
352
Clark Boylan633dbc32017-06-14 12:09:21 -0700353 time_start "dbsync"
Sean M. Collins2a242512016-05-03 09:03:09 -0400354 # Run Neutron db migrations
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000355 $NEUTRON_BIN_DIR/neutron-db-manage upgrade heads
Clark Boylan633dbc32017-06-14 12:09:21 -0700356 time_stop "dbsync"
Ian Wienand1f82f432017-10-04 09:51:02 +1100357
358 create_neutron_cache_dir
Sean M. Collins2a242512016-05-03 09:03:09 -0400359}
360
361# install_neutron() - Collect source and prepare
362function install_neutron_new {
363 git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH
364 setup_develop $NEUTRON_DIR
365
366 # Install neutron-lib from git so we make sure we're testing
367 # the latest code.
368 if use_library_from_git "neutron-lib"; then
369 git_clone_by_name "neutron-lib"
370 setup_dev_lib "neutron-lib"
371 fi
372
373 # L3 service requires radvd
374 if is_service_enabled neutron-l3; then
375 install_package radvd
376 fi
377
378 if is_service_enabled neutron-agent neutron-dhcp neutron-l3; then
379 #TODO(sc68cal) - kind of ugly
380 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
381 neutron_plugin_install_agent_packages
382 fi
383
384}
385
386# install_neutronclient() - Collect source and prepare
387function install_neutronclient {
388 if use_library_from_git "python-neutronclient"; then
389 git_clone_by_name "python-neutronclient"
390 setup_dev_lib "python-neutronclient"
391 sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-neutronclient"]}/tools/,/etc/bash_completion.d/}neutron.bash_completion
392 fi
393}
394
395# start_neutron_api() - Start the API process ahead of other things
396function start_neutron_api {
397 local service_port=$NEUTRON_SERVICE_PORT
398 local service_protocol=$NEUTRON_SERVICE_PROTOCOL
399 if is_service_enabled tls-proxy; then
400 service_port=$NEUTRON_SERVICE_PORT_INT
401 service_protocol="http"
402 fi
403
YAMAMOTO Takashied887d82017-02-22 14:21:33 -0500404 local opts=""
405 opts+=" --config-file $NEUTRON_CONF"
406 opts+=" --config-file $NEUTRON_CORE_PLUGIN_CONF"
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900407 local cfg_file
408 for cfg_file in ${_NEUTRON_SERVER_EXTRA_CONF_FILES_ABS[@]}; do
409 opts+=" --config-file $cfg_file"
410 done
411
Sean M. Collins2a242512016-05-03 09:03:09 -0400412 # Start the Neutron service
413 # TODO(sc68cal) Stop hard coding this
YAMAMOTO Takashied887d82017-02-22 14:21:33 -0500414 run_process neutron-api "$NEUTRON_BIN_DIR/neutron-server $opts"
Sean M. Collins2a242512016-05-03 09:03:09 -0400415
Sean Daguef3b2f4c2017-04-13 10:11:48 -0400416 if ! wait_for_service $SERVICE_TIMEOUT $service_protocol://$NEUTRON_SERVICE_HOST:$service_port; then
417 die $LINENO "neutron-api did not start"
Sean M. Collins2a242512016-05-03 09:03:09 -0400418 fi
419
Sean M. Collins2a242512016-05-03 09:03:09 -0400420 # Start proxy if enabled
421 if is_service_enabled tls-proxy; then
Gregory Haynes4b49e402016-08-31 18:19:51 -0700422 start_tls_proxy neutron '*' $NEUTRON_SERVICE_PORT $NEUTRON_SERVICE_HOST $NEUTRON_SERVICE_PORT_INT
Sean M. Collins2a242512016-05-03 09:03:09 -0400423 fi
424}
425
Sean Dague0eebeb42017-08-30 14:16:58 -0400426# start_neutron() - Start running processes
Sean M. Collins2a242512016-05-03 09:03:09 -0400427function start_neutron_new {
Sean M. Collins2a242512016-05-03 09:03:09 -0400428 # Start up the neutron agents if enabled
429 # TODO(sc68cal) Make this pluggable so different DevStack plugins for different Neutron plugins
430 # can resolve the $NEUTRON_AGENT_BINARY
431 if is_service_enabled neutron-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000432 # TODO(ihrachys) stop loading ml2_conf.ini into agents, instead load agent specific files
433 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 -0400434 fi
435 if is_service_enabled neutron-dhcp; then
436 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000437 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 -0400438 fi
439 if is_service_enabled neutron-l3; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000440 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 +0900441 fi
Josh8f721622018-02-01 09:45:47 +0200442 if is_service_enabled neutron-api && [[ "$NEUTRON_CREATE_INITIAL_NETWORKS" == "True" ]]; then
YAMAMOTO Takashi07edde12016-10-19 19:21:00 +0000443 # XXX(sc68cal) - Here's where plugins can wire up their own networks instead
444 # of the code in lib/neutron_plugins/services/l3
445 if type -p neutron_plugin_create_initial_networks > /dev/null; then
446 neutron_plugin_create_initial_networks
447 else
448 # XXX(sc68cal) Load up the built in Neutron networking code and build a topology
449 source $TOP_DIR/lib/neutron_plugins/services/l3
450 # Create the networks using servic
451 create_neutron_initial_network
452 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400453 fi
Sean M. Collins1cd28282016-05-11 15:07:19 -0400454 if is_service_enabled neutron-metadata-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000455 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 -0400456 fi
Sean M. Collins8063fee2016-05-24 11:27:36 -0700457
458 if is_service_enabled neutron-metering; then
Ihar Hrachyshka868746b2017-09-13 15:44:18 -0600459 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 -0700460 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400461}
462
Sean Dague0eebeb42017-08-30 14:16:58 -0400463# stop_neutron() - Stop running processes
Sean M. Collins2a242512016-05-03 09:03:09 -0400464function stop_neutron_new {
465 for serv in neutron-api neutron-agent neutron-l3; do
466 stop_process $serv
467 done
468
469 if is_service_enabled neutron-dhcp; then
470 stop_process neutron-dhcp
471 pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }')
472 [ ! -z "$pid" ] && sudo kill -9 $pid
473 fi
474
Sean M. Collins1cd28282016-05-11 15:07:19 -0400475 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400476 sudo pkill -9 -f neutron-ns-metadata-proxy || :
Sean M. Collins1cd28282016-05-11 15:07:19 -0400477 stop_process neutron-metadata-agent
Sean M. Collins2a242512016-05-03 09:03:09 -0400478 fi
479}
480
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900481# neutron_service_plugin_class_add() - add service plugin class
482function neutron_service_plugin_class_add_new {
483 local service_plugin_class=$1
484 local plugins=""
485
486 plugins=$(iniget $NEUTRON_CONF DEFAULT service_plugins)
YAMAMOTO Takashi84e45c92017-02-22 14:25:14 -0500487 if [ $plugins ]; then
488 plugins+=","
489 fi
490 plugins+="${service_plugin_class}"
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900491 iniset $NEUTRON_CONF DEFAULT service_plugins $plugins
492}
493
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000494function _neutron_ml2_extension_driver_add {
495 local driver=$1
496 local drivers=""
497
498 drivers=$(iniget $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers)
499 if [ $drivers ]; then
500 drivers+=","
501 fi
502 drivers+="${driver}"
503 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers $drivers
504}
505
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900506function neutron_server_config_add_new {
507 _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS+=($1)
508}
509
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500510# neutron_deploy_rootwrap_filters() - deploy rootwrap filters
511function neutron_deploy_rootwrap_filters_new {
512 local srcdir=$1
513 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
514 sudo install -o root -g root -m 644 $srcdir/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
515}
516
Sean M. Collins2a242512016-05-03 09:03:09 -0400517# Dispatch functions
518# These are needed for compatibility between the old and new implementations
519# where there are function name overlaps. These will be removed when
520# neutron-legacy is removed.
521# TODO(sc68cal) Remove when neutron-legacy is no more.
522function cleanup_neutron {
523 if is_neutron_legacy_enabled; then
524 # Call back to old function
525 cleanup_mutnauq "$@"
526 else
527 cleanup_neutron_new "$@"
528 fi
529}
530
531function configure_neutron {
532 if is_neutron_legacy_enabled; then
533 # Call back to old function
534 configure_mutnauq "$@"
535 else
536 configure_neutron_new "$@"
537 fi
538}
539
540function configure_neutron_nova {
541 if is_neutron_legacy_enabled; then
542 # Call back to old function
543 create_nova_conf_neutron "$@"
544 else
545 configure_neutron_nova_new "$@"
546 fi
547}
548
549function create_neutron_accounts {
550 if is_neutron_legacy_enabled; then
551 # Call back to old function
552 create_mutnauq_accounts "$@"
553 else
554 create_neutron_accounts_new "$@"
555 fi
556}
557
558function init_neutron {
559 if is_neutron_legacy_enabled; then
560 # Call back to old function
561 init_mutnauq "$@"
562 else
563 init_neutron_new "$@"
564 fi
565}
566
567function install_neutron {
568 if is_neutron_legacy_enabled; then
569 # Call back to old function
570 install_mutnauq "$@"
571 else
572 install_neutron_new "$@"
573 fi
574}
575
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900576function neutron_service_plugin_class_add {
577 if is_neutron_legacy_enabled; then
578 # Call back to old function
579 _neutron_service_plugin_class_add "$@"
580 else
581 neutron_service_plugin_class_add_new "$@"
582 fi
583}
584
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000585function neutron_ml2_extension_driver_add {
586 if is_neutron_legacy_enabled; then
587 # Call back to old function
588 _neutron_ml2_extension_driver_add_old "$@"
589 else
590 _neutron_ml2_extension_driver_add "$@"
591 fi
592}
593
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900594function install_neutron_agent_packages {
595 if is_neutron_legacy_enabled; then
596 # Call back to old function
597 install_neutron_agent_packages_mutnauq "$@"
598 else
599 :
600 fi
601}
602
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900603function neutron_server_config_add {
604 if is_neutron_legacy_enabled; then
605 # Call back to old function
606 mutnauq_server_config_add "$@"
607 else
608 neutron_server_config_add_new "$@"
609 fi
610}
611
Sean M. Collins2a242512016-05-03 09:03:09 -0400612function start_neutron {
613 if is_neutron_legacy_enabled; then
614 # Call back to old function
615 start_mutnauq_l2_agent "$@"
616 start_mutnauq_other_agents "$@"
617 else
618 start_neutron_new "$@"
619 fi
620}
621
622function stop_neutron {
623 if is_neutron_legacy_enabled; then
624 # Call back to old function
625 stop_mutnauq "$@"
626 else
627 stop_neutron_new "$@"
628 fi
629}
630
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500631function neutron_deploy_rootwrap_filters {
632 if is_neutron_legacy_enabled; then
633 # Call back to old function
634 _neutron_deploy_rootwrap_filters "$@"
635 else
636 neutron_deploy_rootwrap_filters_new "$@"
637 fi
638}
639
Sean M. Collins2a242512016-05-03 09:03:09 -0400640# Restore xtrace
641$XTRACE