blob: 359f19820db1cd8c11ea8688a3c8940958794a46 [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
Sean M. Collins2a242512016-05-03 09:03:09 -040033
34NEUTRON_BIN_DIR=$(get_python_exec_prefix)
35NEUTRON_DHCP_BINARY="neutron-dhcp-agent"
36
37NEUTRON_CONF_DIR=/etc/neutron
38NEUTRON_CONF=$NEUTRON_CONF_DIR/neutron.conf
39NEUTRON_META_CONF=$NEUTRON_CONF_DIR/metadata_agent.ini
40
41NEUTRON_DHCP_CONF=$NEUTRON_CONF_DIR/dhcp_agent.ini
42NEUTRON_L3_CONF=$NEUTRON_CONF_DIR/l3_agent.ini
43NEUTRON_AGENT_CONF=$NEUTRON_CONF_DIR/
44
45NEUTRON_STATE_PATH=${NEUTRON_STATE_PATH:=$DATA_DIR/neutron}
Sean M. Collins2a242512016-05-03 09:03:09 -040046
47# By default, use the ML2 plugin
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +090048NEUTRON_CORE_PLUGIN=${NEUTRON_CORE_PLUGIN:-ml2}
49NEUTRON_CORE_PLUGIN_CONF_FILENAME=${NEUTRON_CORE_PLUGIN_CONF_FILENAME:-ml2_conf.ini}
50NEUTRON_CORE_PLUGIN_CONF_PATH=$NEUTRON_CONF_DIR/plugins/$NEUTRON_CORE_PLUGIN
51NEUTRON_CORE_PLUGIN_CONF=$NEUTRON_CORE_PLUGIN_CONF_PATH/$NEUTRON_CORE_PLUGIN_CONF_FILENAME
Sean M. Collins2a242512016-05-03 09:03:09 -040052
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +000053NEUTRON_METERING_AGENT_CONF_FILENAME=${NEUTRON_METERING_AGENT_CONF_FILENAME:-metering_agent.ini}
54NEUTRON_METERING_AGENT_CONF=$NEUTRON_CONF_DIR/$NEUTRON_METERING_AGENT_CONF_FILENAME
55
Sean M. Collins2a242512016-05-03 09:03:09 -040056NEUTRON_AGENT_BINARY=${NEUTRON_AGENT_BINARY:-neutron-$NEUTRON_AGENT-agent}
57NEUTRON_L3_BINARY=${NEUTRON_L3_BINARY:-neutron-l3-agent}
58NEUTRON_META_BINARY=${NEUTRON_META_BINARY:-neutron-metadata-agent}
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +000059NEUTRON_METERING_BINARY=${NEUTRON_METERING_BINARY:-neutron-metering-agent}
Sean M. Collins2a242512016-05-03 09:03:09 -040060
61# Public facing bits
Sean Daguef3b2f4c2017-04-13 10:11:48 -040062if is_service_enabled tls-proxy; then
Sean M. Collins2a242512016-05-03 09:03:09 -040063 NEUTRON_SERVICE_PROTOCOL="https"
64fi
65NEUTRON_SERVICE_HOST=${NEUTRON_SERVICE_HOST:-$SERVICE_HOST}
66NEUTRON_SERVICE_PORT=${NEUTRON_SERVICE_PORT:-9696}
67NEUTRON_SERVICE_PORT_INT=${NEUTRON_SERVICE_PORT_INT:-19696}
68NEUTRON_SERVICE_PROTOCOL=${NEUTRON_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
69
70NEUTRON_AUTH_STRATEGY=${NEUTRON_AUTH_STRATEGY:-keystone}
71NEUTRON_ROOTWRAP=$(get_rootwrap_location neutron)
72NEUTRON_ROOTWRAP_CONF_FILE=$NEUTRON_CONF_DIR/rootwrap.conf
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +000073NEUTRON_ROOTWRAP_CMD="$NEUTRON_ROOTWRAP $NEUTRON_ROOTWRAP_CONF_FILE"
74NEUTRON_ROOTWRAP_DAEMON_CMD="$NEUTRON_ROOTWRAP-daemon $NEUTRON_ROOTWRAP_CONF_FILE"
Sean M. Collins2a242512016-05-03 09:03:09 -040075
Ihar Hrachyshka615e1152017-02-23 10:41:51 +000076# This is needed because _neutron_ovs_base_configure_l3_agent will set
77# external_network_bridge
78Q_USE_PROVIDERNET_FOR_PUBLIC=${Q_USE_PROVIDERNET_FOR_PUBLIC:-True}
79# This is needed because _neutron_ovs_base_configure_l3_agent uses it to create
80# an external network bridge
81PUBLIC_BRIDGE=${PUBLIC_BRIDGE:-br-ex}
82PUBLIC_BRIDGE_MTU=${PUBLIC_BRIDGE_MTU:-1500}
83
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +090084# Additional neutron api config files
Sean Dagueafef8bf2017-03-06 14:07:23 -050085declare -a -g _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +090086
Sean M. Collins2a242512016-05-03 09:03:09 -040087# Functions
88# ---------
89
90# Test if any Neutron services are enabled
91# is_neutron_enabled
92function is_neutron_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -070093 [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -040094 [[ ,${ENABLED_SERVICES} =~ ,"neutron-" || ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
95 return 1
96}
97
98# Test if any Neutron services are enabled
99# is_neutron_enabled
100function is_neutron_legacy_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -0700101 [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -0400102 [[ ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
103 return 1
104}
105
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900106if is_neutron_legacy_enabled; then
107 source $TOP_DIR/lib/neutron-legacy
108fi
109
Sean M. Collins2a242512016-05-03 09:03:09 -0400110# cleanup_neutron() - Remove residual data files, anything left over from previous
111# runs that a clean run would need to clean up
112function cleanup_neutron_new {
113 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
114 if is_neutron_ovs_base_plugin; then
115 neutron_ovs_base_cleanup
116 fi
117
118 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
119 neutron_lb_cleanup
120 fi
121 # delete all namespaces created by neutron
122 for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|qlbaas|fip|snat)-[0-9a-f-]*'); do
123 sudo ip netns delete ${ns}
124 done
125}
126
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000127# configure_root_helper_options() - Configure agent rootwrap helper options
128function configure_root_helper_options {
129 local conffile=$1
130 iniset $conffile agent root_helper "sudo $NEUTRON_ROOTWRAP_CMD"
131 iniset $conffile agent root_helper_daemon "sudo $NEUTRON_ROOTWRAP_DAEMON_CMD"
132}
133
Sean M. Collins2a242512016-05-03 09:03:09 -0400134# configure_neutron() - Set config files, create data dirs, etc
135function configure_neutron_new {
136 sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR
137
138 (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh)
139
140 cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF
141
142 configure_neutron_rootwrap
143
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900144 mkdir -p $NEUTRON_CORE_PLUGIN_CONF_PATH
Sean M. Collins2a242512016-05-03 09:03:09 -0400145
YAMAMOTO Takashi1df17c92017-05-01 17:00:42 +0900146 # NOTE(yamamoto): A decomposed plugin should prepare the config file in
147 # its devstack plugin.
148 if [ -f $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample ]; then
149 cp $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample $NEUTRON_CORE_PLUGIN_CONF
150 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400151
152 iniset $NEUTRON_CONF database connection `database_connection_url neutron`
153 iniset $NEUTRON_CONF DEFAULT state_path $NEUTRON_STATE_PATH
154 iniset $NEUTRON_CONF oslo_concurrency lock_path $NEUTRON_STATE_PATH/lock
155 iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG
156
Gary Kottond2ef6152016-09-20 04:12:11 -0700157 iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collinsfbba3b92016-05-12 11:17:53 -0400158
Sean M. Collins5394cc12016-05-11 15:03:38 -0400159 iniset_rpc_backend neutron $NEUTRON_CONF
160
Sean M. Collins2a242512016-05-03 09:03:09 -0400161 # Neutron API server & Neutron plugin
162 if is_service_enabled neutron-api; then
163 local policy_file=$NEUTRON_CONF_DIR/policy.json
164 cp $NEUTRON_DIR/etc/policy.json $policy_file
165 # Allow neutron user to administer neutron to match neutron account
166 sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:neutron"/g' $policy_file
167
168 cp $NEUTRON_DIR/etc/api-paste.ini $NEUTRON_CONF_DIR/api-paste.ini
169
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900170 iniset $NEUTRON_CONF DEFAULT core_plugin $NEUTRON_CORE_PLUGIN
Sean M. Collins2a242512016-05-03 09:03:09 -0400171
Sean M. Collins2a242512016-05-03 09:03:09 -0400172 iniset $NEUTRON_CONF DEFAULT policy_file $policy_file
173 iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips True
174
175 iniset $NEUTRON_CONF DEFAULT auth_strategy $NEUTRON_AUTH_STRATEGY
Jamie Lennoxef5ebed2017-09-25 09:38:38 +1000176 configure_auth_token_middleware $NEUTRON_CONF neutron keystone_authtoken
177 configure_auth_token_middleware $NEUTRON_CONF nova nova
Sean M. Collins2a242512016-05-03 09:03:09 -0400178
179 # Configure VXLAN
180 # TODO(sc68cal) not hardcode?
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900181 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 tenant_network_types vxlan
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900182 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 mechanism_drivers openvswitch,linuxbridge
183 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vxlan vni_ranges 1001:2000
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500184 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_flat flat_networks public
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400185 if [[ "$NEUTRON_PORT_SECURITY" = "True" ]]; then
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000186 neutron_ml2_extension_driver_add port_security
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400187 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400188 fi
189
190 # Neutron OVS or LB agent
191 if is_service_enabled neutron-agent; then
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900192 iniset $NEUTRON_CORE_PLUGIN_CONF agent tunnel_types vxlan
193 iniset $NEUTRON_CORE_PLUGIN_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000194 configure_root_helper_options $NEUTRON_CORE_PLUGIN_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400195
196 # Configure the neutron agent
197 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500198 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900199 iniset $NEUTRON_CORE_PLUGIN_CONF vxlan local_ip $HOST_IP
Sean M. Collins2a242512016-05-03 09:03:09 -0400200 else
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500201 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables_hybrid
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900202 iniset $NEUTRON_CORE_PLUGIN_CONF ovs local_ip $HOST_IP
Sean M. Collins2a242512016-05-03 09:03:09 -0400203 fi
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000204
Denis Buliga0bf75a42017-02-06 16:56:46 +0200205 if ! running_in_container; then
206 enable_kernel_bridge_firewall
207 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400208 fi
209
210 # DHCP Agent
211 if is_service_enabled neutron-dhcp; then
212 cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $NEUTRON_DHCP_CONF
213
Gary Kottond2ef6152016-09-20 04:12:11 -0700214 iniset $NEUTRON_DHCP_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean Dague78801c12016-08-04 14:10:07 -0400215 # make it so we have working DNS from guests
216 iniset $NEUTRON_DHCP_CONF DEFAULT dnsmasq_local_resolv True
217
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000218 configure_root_helper_options $NEUTRON_DHCP_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400219 iniset $NEUTRON_DHCP_CONF DEFAULT interface_driver $NEUTRON_AGENT
220 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
221 fi
222
223 if is_service_enabled neutron-l3; then
224 cp $NEUTRON_DIR/etc/l3_agent.ini.sample $NEUTRON_L3_CONF
225 iniset $NEUTRON_L3_CONF DEFAULT interface_driver $NEUTRON_AGENT
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900226 neutron_service_plugin_class_add router
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000227 configure_root_helper_options $NEUTRON_L3_CONF
Gary Kottond2ef6152016-09-20 04:12:11 -0700228 iniset $NEUTRON_L3_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400229 neutron_plugin_configure_l3_agent $NEUTRON_L3_CONF
Ihar Hrachyshkae3915932017-02-24 06:24:47 +0000230
231 # Configure the neutron agent to serve external network ports
232 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
233 iniset $NEUTRON_CORE_PLUGIN_CONF linux_bridge bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE"
234 else
235 iniset $NEUTRON_CORE_PLUGIN_CONF ovs bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE"
236 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400237 fi
238
239 # Metadata
Sean M. Collins1cd28282016-05-11 15:07:19 -0400240 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400241 cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $NEUTRON_META_CONF
242
Gary Kottond2ef6152016-09-20 04:12:11 -0700243 iniset $NEUTRON_META_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400244 iniset $NEUTRON_META_CONF DEFAULT nova_metadata_ip $SERVICE_HOST
Armando Migliaccio06f2ea22017-02-02 16:47:00 -0800245 iniset $NEUTRON_META_CONF DEFAULT metadata_workers $API_WORKERS
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000246 # TODO(ihrachys) do we really need to set rootwrap for metadata agent?
247 configure_root_helper_options $NEUTRON_META_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400248
249 # TODO(dtroyer): remove the v2.0 hard code below
Sean Daguec13b8a12017-04-20 06:54:51 -0400250 iniset $NEUTRON_META_CONF DEFAULT auth_url $KEYSTONE_SERVICE_URI
Jamie Lennoxef5ebed2017-09-25 09:38:38 +1000251 configure_auth_token_middleware $NEUTRON_META_CONF neutron DEFAULT
Sean M. Collins2a242512016-05-03 09:03:09 -0400252 fi
253
254 # Format logging
Sean Dague27f66e92017-05-02 09:08:17 -0400255 setup_logging $NEUTRON_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400256
257 if is_service_enabled tls-proxy; then
258 # Set the service port for a proxy to take the original
259 iniset $NEUTRON_CONF DEFAULT bind_port "$NEUTRON_SERVICE_PORT_INT"
Jens Harbott411c34d2017-08-29 14:40:26 +0000260 iniset $NEUTRON_CONF oslo_middleware enable_proxy_headers_parsing True
Sean M. Collins2a242512016-05-03 09:03:09 -0400261 fi
262
Sean M. Collins8063fee2016-05-24 11:27:36 -0700263 # Metering
264 if is_service_enabled neutron-metering; then
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +0000265 cp $NEUTRON_DIR/etc/metering_agent.ini.sample $NEUTRON_METERING_AGENT_CONF
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900266 neutron_service_plugin_class_add metering
Sean M. Collins8063fee2016-05-24 11:27:36 -0700267 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400268}
269
270# configure_neutron_rootwrap() - configure Neutron's rootwrap
271function configure_neutron_rootwrap {
Sean M. Collins2a242512016-05-03 09:03:09 -0400272 # Deploy new rootwrap filters files (owned by root).
273 # Wipe any existing rootwrap.d files first
274 if [[ -d $NEUTRON_CONF_DIR/rootwrap.d ]]; then
275 sudo rm -rf $NEUTRON_CONF_DIR/rootwrap.d
276 fi
277
278 # Deploy filters to /etc/neutron/rootwrap.d
279 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
280 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
281
282 # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d``
283 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $NEUTRON_CONF_DIR
284 sudo sed -e "s:^filters_path=.*$:filters_path=$NEUTRON_CONF_DIR/rootwrap.d:" -i $NEUTRON_CONF_DIR/rootwrap.conf
285
286 # Set up the rootwrap sudoers for Neutron
287 tempfile=`mktemp`
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000288 echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_CMD *" >$tempfile
289 echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_DAEMON_CMD" >>$tempfile
Sean M. Collins2a242512016-05-03 09:03:09 -0400290 chmod 0440 $tempfile
291 sudo chown root:root $tempfile
292 sudo mv $tempfile /etc/sudoers.d/neutron-rootwrap
293}
294
295# Make Neutron-required changes to nova.conf
296function configure_neutron_nova_new {
297 iniset $NOVA_CONF DEFAULT use_neutron True
298 iniset $NOVA_CONF neutron auth_type "password"
Sean Daguec13b8a12017-04-20 06:54:51 -0400299 iniset $NOVA_CONF neutron auth_url "$KEYSTONE_SERVICE_URI"
Sean M. Collins2a242512016-05-03 09:03:09 -0400300 iniset $NOVA_CONF neutron username neutron
301 iniset $NOVA_CONF neutron password "$SERVICE_PASSWORD"
302 iniset $NOVA_CONF neutron user_domain_name "Default"
303 iniset $NOVA_CONF neutron project_name "$SERVICE_TENANT_NAME"
304 iniset $NOVA_CONF neutron project_domain_name "Default"
305 iniset $NOVA_CONF neutron auth_strategy $NEUTRON_AUTH_STRATEGY
306 iniset $NOVA_CONF neutron region_name "$REGION_NAME"
307 iniset $NOVA_CONF neutron url $NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT
308
309 iniset $NOVA_CONF DEFAULT firewall_driver nova.virt.firewall.NoopFirewallDriver
310
Gary Kotton88f85582016-08-14 06:55:42 -0700311 # optionally set options in nova_conf
312 neutron_plugin_create_nova_conf
313
Sean M. Collins1cd28282016-05-11 15:07:19 -0400314 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400315 iniset $NOVA_CONF neutron service_metadata_proxy "True"
316 fi
317
318}
319
320# Tenant User Roles
321# ------------------------------------------------------------------
322# service neutron admin # if enabled
323
324# create_neutron_accounts() - Create required service accounts
325function create_neutron_accounts_new {
326 if [[ "$ENABLED_SERVICES" =~ "neutron-api" ]]; then
327
328 create_service_user "neutron"
329
330 neutron_service=$(get_or_create_service "neutron" \
331 "network" "Neutron Service")
332 get_or_create_endpoint $neutron_service \
333 "$REGION_NAME" \
Sean M. Collins2a242512016-05-03 09:03:09 -0400334 "$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT/"
335 fi
336}
337
Sean M. Collins2a242512016-05-03 09:03:09 -0400338# init_neutron() - Initialize databases, etc.
339function init_neutron_new {
340
341 recreate_database neutron
342
Clark Boylan633dbc32017-06-14 12:09:21 -0700343 time_start "dbsync"
Sean M. Collins2a242512016-05-03 09:03:09 -0400344 # Run Neutron db migrations
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000345 $NEUTRON_BIN_DIR/neutron-db-manage upgrade heads
Clark Boylan633dbc32017-06-14 12:09:21 -0700346 time_stop "dbsync"
Sean M. Collins2a242512016-05-03 09:03:09 -0400347}
348
349# install_neutron() - Collect source and prepare
350function install_neutron_new {
351 git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH
352 setup_develop $NEUTRON_DIR
353
354 # Install neutron-lib from git so we make sure we're testing
355 # the latest code.
356 if use_library_from_git "neutron-lib"; then
357 git_clone_by_name "neutron-lib"
358 setup_dev_lib "neutron-lib"
359 fi
360
361 # L3 service requires radvd
362 if is_service_enabled neutron-l3; then
363 install_package radvd
364 fi
365
366 if is_service_enabled neutron-agent neutron-dhcp neutron-l3; then
367 #TODO(sc68cal) - kind of ugly
368 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
369 neutron_plugin_install_agent_packages
370 fi
371
372}
373
374# install_neutronclient() - Collect source and prepare
375function install_neutronclient {
376 if use_library_from_git "python-neutronclient"; then
377 git_clone_by_name "python-neutronclient"
378 setup_dev_lib "python-neutronclient"
379 sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-neutronclient"]}/tools/,/etc/bash_completion.d/}neutron.bash_completion
380 fi
381}
382
383# start_neutron_api() - Start the API process ahead of other things
384function start_neutron_api {
385 local service_port=$NEUTRON_SERVICE_PORT
386 local service_protocol=$NEUTRON_SERVICE_PROTOCOL
387 if is_service_enabled tls-proxy; then
388 service_port=$NEUTRON_SERVICE_PORT_INT
389 service_protocol="http"
390 fi
391
YAMAMOTO Takashied887d82017-02-22 14:21:33 -0500392 local opts=""
393 opts+=" --config-file $NEUTRON_CONF"
394 opts+=" --config-file $NEUTRON_CORE_PLUGIN_CONF"
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900395 local cfg_file
396 for cfg_file in ${_NEUTRON_SERVER_EXTRA_CONF_FILES_ABS[@]}; do
397 opts+=" --config-file $cfg_file"
398 done
399
Sean M. Collins2a242512016-05-03 09:03:09 -0400400 # Start the Neutron service
401 # TODO(sc68cal) Stop hard coding this
YAMAMOTO Takashied887d82017-02-22 14:21:33 -0500402 run_process neutron-api "$NEUTRON_BIN_DIR/neutron-server $opts"
Sean M. Collins2a242512016-05-03 09:03:09 -0400403
Sean Daguef3b2f4c2017-04-13 10:11:48 -0400404 if ! wait_for_service $SERVICE_TIMEOUT $service_protocol://$NEUTRON_SERVICE_HOST:$service_port; then
405 die $LINENO "neutron-api did not start"
Sean M. Collins2a242512016-05-03 09:03:09 -0400406 fi
407
Sean M. Collins2a242512016-05-03 09:03:09 -0400408 # Start proxy if enabled
409 if is_service_enabled tls-proxy; then
Gregory Haynes4b49e402016-08-31 18:19:51 -0700410 start_tls_proxy neutron '*' $NEUTRON_SERVICE_PORT $NEUTRON_SERVICE_HOST $NEUTRON_SERVICE_PORT_INT
Sean M. Collins2a242512016-05-03 09:03:09 -0400411 fi
412}
413
Sean Dague0eebeb42017-08-30 14:16:58 -0400414# start_neutron() - Start running processes
Sean M. Collins2a242512016-05-03 09:03:09 -0400415function start_neutron_new {
Sean M. Collins2a242512016-05-03 09:03:09 -0400416 # Start up the neutron agents if enabled
417 # TODO(sc68cal) Make this pluggable so different DevStack plugins for different Neutron plugins
418 # can resolve the $NEUTRON_AGENT_BINARY
419 if is_service_enabled neutron-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000420 # TODO(ihrachys) stop loading ml2_conf.ini into agents, instead load agent specific files
421 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 -0400422 fi
423 if is_service_enabled neutron-dhcp; then
424 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000425 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 -0400426 fi
427 if is_service_enabled neutron-l3; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000428 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 +0900429 fi
YAMAMOTO Takashi07edde12016-10-19 19:21:00 +0000430 if is_service_enabled neutron-api; then
431 # XXX(sc68cal) - Here's where plugins can wire up their own networks instead
432 # of the code in lib/neutron_plugins/services/l3
433 if type -p neutron_plugin_create_initial_networks > /dev/null; then
434 neutron_plugin_create_initial_networks
435 else
436 # XXX(sc68cal) Load up the built in Neutron networking code and build a topology
437 source $TOP_DIR/lib/neutron_plugins/services/l3
438 # Create the networks using servic
439 create_neutron_initial_network
440 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400441 fi
Sean M. Collins1cd28282016-05-11 15:07:19 -0400442 if is_service_enabled neutron-metadata-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000443 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 -0400444 fi
Sean M. Collins8063fee2016-05-24 11:27:36 -0700445
446 if is_service_enabled neutron-metering; then
Ihar Hrachyshka868746b2017-09-13 15:44:18 -0600447 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 -0700448 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400449}
450
Sean Dague0eebeb42017-08-30 14:16:58 -0400451# stop_neutron() - Stop running processes
Sean M. Collins2a242512016-05-03 09:03:09 -0400452function stop_neutron_new {
453 for serv in neutron-api neutron-agent neutron-l3; do
454 stop_process $serv
455 done
456
457 if is_service_enabled neutron-dhcp; then
458 stop_process neutron-dhcp
459 pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }')
460 [ ! -z "$pid" ] && sudo kill -9 $pid
461 fi
462
Sean M. Collins1cd28282016-05-11 15:07:19 -0400463 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400464 sudo pkill -9 -f neutron-ns-metadata-proxy || :
Sean M. Collins1cd28282016-05-11 15:07:19 -0400465 stop_process neutron-metadata-agent
Sean M. Collins2a242512016-05-03 09:03:09 -0400466 fi
467}
468
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900469# neutron_service_plugin_class_add() - add service plugin class
470function neutron_service_plugin_class_add_new {
471 local service_plugin_class=$1
472 local plugins=""
473
474 plugins=$(iniget $NEUTRON_CONF DEFAULT service_plugins)
YAMAMOTO Takashi84e45c92017-02-22 14:25:14 -0500475 if [ $plugins ]; then
476 plugins+=","
477 fi
478 plugins+="${service_plugin_class}"
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900479 iniset $NEUTRON_CONF DEFAULT service_plugins $plugins
480}
481
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000482function _neutron_ml2_extension_driver_add {
483 local driver=$1
484 local drivers=""
485
486 drivers=$(iniget $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers)
487 if [ $drivers ]; then
488 drivers+=","
489 fi
490 drivers+="${driver}"
491 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers $drivers
492}
493
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900494function neutron_server_config_add_new {
495 _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS+=($1)
496}
497
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500498# neutron_deploy_rootwrap_filters() - deploy rootwrap filters
499function neutron_deploy_rootwrap_filters_new {
500 local srcdir=$1
501 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
502 sudo install -o root -g root -m 644 $srcdir/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
503}
504
Sean M. Collins2a242512016-05-03 09:03:09 -0400505# Dispatch functions
506# These are needed for compatibility between the old and new implementations
507# where there are function name overlaps. These will be removed when
508# neutron-legacy is removed.
509# TODO(sc68cal) Remove when neutron-legacy is no more.
510function cleanup_neutron {
511 if is_neutron_legacy_enabled; then
512 # Call back to old function
513 cleanup_mutnauq "$@"
514 else
515 cleanup_neutron_new "$@"
516 fi
517}
518
519function configure_neutron {
520 if is_neutron_legacy_enabled; then
521 # Call back to old function
522 configure_mutnauq "$@"
523 else
524 configure_neutron_new "$@"
525 fi
526}
527
528function configure_neutron_nova {
529 if is_neutron_legacy_enabled; then
530 # Call back to old function
531 create_nova_conf_neutron "$@"
532 else
533 configure_neutron_nova_new "$@"
534 fi
535}
536
537function create_neutron_accounts {
538 if is_neutron_legacy_enabled; then
539 # Call back to old function
540 create_mutnauq_accounts "$@"
541 else
542 create_neutron_accounts_new "$@"
543 fi
544}
545
546function init_neutron {
547 if is_neutron_legacy_enabled; then
548 # Call back to old function
549 init_mutnauq "$@"
550 else
551 init_neutron_new "$@"
552 fi
553}
554
555function install_neutron {
556 if is_neutron_legacy_enabled; then
557 # Call back to old function
558 install_mutnauq "$@"
559 else
560 install_neutron_new "$@"
561 fi
562}
563
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900564function neutron_service_plugin_class_add {
565 if is_neutron_legacy_enabled; then
566 # Call back to old function
567 _neutron_service_plugin_class_add "$@"
568 else
569 neutron_service_plugin_class_add_new "$@"
570 fi
571}
572
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000573function neutron_ml2_extension_driver_add {
574 if is_neutron_legacy_enabled; then
575 # Call back to old function
576 _neutron_ml2_extension_driver_add_old "$@"
577 else
578 _neutron_ml2_extension_driver_add "$@"
579 fi
580}
581
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900582function install_neutron_agent_packages {
583 if is_neutron_legacy_enabled; then
584 # Call back to old function
585 install_neutron_agent_packages_mutnauq "$@"
586 else
587 :
588 fi
589}
590
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900591function neutron_server_config_add {
592 if is_neutron_legacy_enabled; then
593 # Call back to old function
594 mutnauq_server_config_add "$@"
595 else
596 neutron_server_config_add_new "$@"
597 fi
598}
599
Sean M. Collins2a242512016-05-03 09:03:09 -0400600function start_neutron {
601 if is_neutron_legacy_enabled; then
602 # Call back to old function
603 start_mutnauq_l2_agent "$@"
604 start_mutnauq_other_agents "$@"
605 else
606 start_neutron_new "$@"
607 fi
608}
609
610function stop_neutron {
611 if is_neutron_legacy_enabled; then
612 # Call back to old function
613 stop_mutnauq "$@"
614 else
615 stop_neutron_new "$@"
616 fi
617}
618
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500619function neutron_deploy_rootwrap_filters {
620 if is_neutron_legacy_enabled; then
621 # Call back to old function
622 _neutron_deploy_rootwrap_filters "$@"
623 else
624 neutron_deploy_rootwrap_filters_new "$@"
625 fi
626}
627
Sean M. Collins2a242512016-05-03 09:03:09 -0400628# Restore xtrace
629$XTRACE