| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 1 | #!/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 | 
 | 22 | XTRACE=$(set +o | grep xtrace) | 
 | 23 | set +o xtrace | 
 | 24 |  | 
 | 25 | # Defaults | 
 | 26 | # -------- | 
 | 27 |  | 
 | 28 | # Set up default directories | 
 | 29 | GITDIR["python-neutronclient"]=$DEST/python-neutronclient | 
 | 30 |  | 
 | 31 | NEUTRON_AGENT=${NEUTRON_AGENT:-openvswitch} | 
 | 32 | NEUTRON_DIR=$DEST/neutron | 
| Ian Wienand | 1f82f43 | 2017-10-04 09:51:02 +1100 | [diff] [blame] | 33 | NEUTRON_AUTH_CACHE_DIR=${NEUTRON_AUTH_CACHE_DIR:-/var/cache/neutron} | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 34 |  | 
| Brian Haley | 9aaa529 | 2017-09-20 14:23:05 -0400 | [diff] [blame] | 35 | NEUTRON_DISTRIBUTED_ROUTING=$(trueorfalse False NEUTRON_DISTRIBUTED_ROUTING) | 
 | 36 | # Distributed Virtual Router (DVR) configuration | 
 | 37 | # Can be: | 
 | 38 | # - ``legacy``          - No DVR functionality | 
 | 39 | # - ``dvr_snat``        - Controller or single node DVR | 
 | 40 | # - ``dvr``             - Compute node in multi-node DVR | 
 | 41 | # - ``dvr_no_external`` - Compute node in multi-node DVR, no external network | 
 | 42 | # | 
 | 43 | # Default is 'dvr_snat' since it can handle both DVR and legacy routers | 
 | 44 | NEUTRON_DVR_MODE=${NEUTRON_DVR_MODE:-dvr_snat} | 
 | 45 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 46 | NEUTRON_BIN_DIR=$(get_python_exec_prefix) | 
 | 47 | NEUTRON_DHCP_BINARY="neutron-dhcp-agent" | 
 | 48 |  | 
 | 49 | NEUTRON_CONF_DIR=/etc/neutron | 
 | 50 | NEUTRON_CONF=$NEUTRON_CONF_DIR/neutron.conf | 
 | 51 | NEUTRON_META_CONF=$NEUTRON_CONF_DIR/metadata_agent.ini | 
 | 52 |  | 
 | 53 | NEUTRON_DHCP_CONF=$NEUTRON_CONF_DIR/dhcp_agent.ini | 
 | 54 | NEUTRON_L3_CONF=$NEUTRON_CONF_DIR/l3_agent.ini | 
 | 55 | NEUTRON_AGENT_CONF=$NEUTRON_CONF_DIR/ | 
| Josh | 8f72162 | 2018-02-01 09:45:47 +0200 | [diff] [blame] | 56 | NEUTRON_CREATE_INITIAL_NETWORKS=${NEUTRON_CREATE_INITIAL_NETWORKS:-True} | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 57 |  | 
 | 58 | NEUTRON_STATE_PATH=${NEUTRON_STATE_PATH:=$DATA_DIR/neutron} | 
| Ian Wienand | 1f82f43 | 2017-10-04 09:51:02 +1100 | [diff] [blame] | 59 | NEUTRON_AUTH_CACHE_DIR=${NEUTRON_AUTH_CACHE_DIR:-/var/cache/neutron} | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 60 |  | 
 | 61 | # By default, use the ML2 plugin | 
| YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 62 | NEUTRON_CORE_PLUGIN=${NEUTRON_CORE_PLUGIN:-ml2} | 
 | 63 | NEUTRON_CORE_PLUGIN_CONF_FILENAME=${NEUTRON_CORE_PLUGIN_CONF_FILENAME:-ml2_conf.ini} | 
 | 64 | NEUTRON_CORE_PLUGIN_CONF_PATH=$NEUTRON_CONF_DIR/plugins/$NEUTRON_CORE_PLUGIN | 
 | 65 | NEUTRON_CORE_PLUGIN_CONF=$NEUTRON_CORE_PLUGIN_CONF_PATH/$NEUTRON_CORE_PLUGIN_CONF_FILENAME | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 66 |  | 
| Ihar Hrachyshka | bf697f5 | 2017-02-23 12:09:01 +0000 | [diff] [blame] | 67 | NEUTRON_METERING_AGENT_CONF_FILENAME=${NEUTRON_METERING_AGENT_CONF_FILENAME:-metering_agent.ini} | 
 | 68 | NEUTRON_METERING_AGENT_CONF=$NEUTRON_CONF_DIR/$NEUTRON_METERING_AGENT_CONF_FILENAME | 
 | 69 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 70 | NEUTRON_AGENT_BINARY=${NEUTRON_AGENT_BINARY:-neutron-$NEUTRON_AGENT-agent} | 
 | 71 | NEUTRON_L3_BINARY=${NEUTRON_L3_BINARY:-neutron-l3-agent} | 
 | 72 | NEUTRON_META_BINARY=${NEUTRON_META_BINARY:-neutron-metadata-agent} | 
| Ihar Hrachyshka | bf697f5 | 2017-02-23 12:09:01 +0000 | [diff] [blame] | 73 | NEUTRON_METERING_BINARY=${NEUTRON_METERING_BINARY:-neutron-metering-agent} | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 74 |  | 
 | 75 | # Public facing bits | 
| Sean Dague | f3b2f4c | 2017-04-13 10:11:48 -0400 | [diff] [blame] | 76 | if is_service_enabled tls-proxy; then | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 77 |     NEUTRON_SERVICE_PROTOCOL="https" | 
 | 78 | fi | 
 | 79 | NEUTRON_SERVICE_HOST=${NEUTRON_SERVICE_HOST:-$SERVICE_HOST} | 
 | 80 | NEUTRON_SERVICE_PORT=${NEUTRON_SERVICE_PORT:-9696} | 
 | 81 | NEUTRON_SERVICE_PORT_INT=${NEUTRON_SERVICE_PORT_INT:-19696} | 
 | 82 | NEUTRON_SERVICE_PROTOCOL=${NEUTRON_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL} | 
 | 83 |  | 
 | 84 | NEUTRON_AUTH_STRATEGY=${NEUTRON_AUTH_STRATEGY:-keystone} | 
 | 85 | NEUTRON_ROOTWRAP=$(get_rootwrap_location neutron) | 
 | 86 | NEUTRON_ROOTWRAP_CONF_FILE=$NEUTRON_CONF_DIR/rootwrap.conf | 
| Ihar Hrachyshka | e65ab4a | 2017-02-24 17:47:55 +0000 | [diff] [blame] | 87 | NEUTRON_ROOTWRAP_CMD="$NEUTRON_ROOTWRAP $NEUTRON_ROOTWRAP_CONF_FILE" | 
 | 88 | NEUTRON_ROOTWRAP_DAEMON_CMD="$NEUTRON_ROOTWRAP-daemon $NEUTRON_ROOTWRAP_CONF_FILE" | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 89 |  | 
| Ihar Hrachyshka | 615e115 | 2017-02-23 10:41:51 +0000 | [diff] [blame] | 90 | # This is needed because _neutron_ovs_base_configure_l3_agent will set | 
 | 91 | # external_network_bridge | 
 | 92 | Q_USE_PROVIDERNET_FOR_PUBLIC=${Q_USE_PROVIDERNET_FOR_PUBLIC:-True} | 
 | 93 | # This is needed because _neutron_ovs_base_configure_l3_agent uses it to create | 
 | 94 | # an external network bridge | 
 | 95 | PUBLIC_BRIDGE=${PUBLIC_BRIDGE:-br-ex} | 
 | 96 | PUBLIC_BRIDGE_MTU=${PUBLIC_BRIDGE_MTU:-1500} | 
 | 97 |  | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 98 | # Additional neutron api config files | 
| Sean Dague | afef8bf | 2017-03-06 14:07:23 -0500 | [diff] [blame] | 99 | declare -a -g _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 100 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 101 | # Functions | 
 | 102 | # --------- | 
 | 103 |  | 
 | 104 | # Test if any Neutron services are enabled | 
 | 105 | # is_neutron_enabled | 
 | 106 | function is_neutron_enabled { | 
| Clark Boylan | 902158b | 2017-05-30 14:11:09 -0700 | [diff] [blame] | 107 |     [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1 | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 108 |     [[ ,${ENABLED_SERVICES} =~ ,"neutron-" || ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0 | 
 | 109 |     return 1 | 
 | 110 | } | 
 | 111 |  | 
 | 112 | # Test if any Neutron services are enabled | 
 | 113 | # is_neutron_enabled | 
 | 114 | function is_neutron_legacy_enabled { | 
| Clark Boylan | 902158b | 2017-05-30 14:11:09 -0700 | [diff] [blame] | 115 |     [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1 | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 116 |     [[ ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0 | 
 | 117 |     return 1 | 
 | 118 | } | 
 | 119 |  | 
| YAMAMOTO Takashi | c74315e | 2016-07-21 17:49:43 +0900 | [diff] [blame] | 120 | if is_neutron_legacy_enabled; then | 
 | 121 |     source $TOP_DIR/lib/neutron-legacy | 
 | 122 | fi | 
 | 123 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 124 | # cleanup_neutron() - Remove residual data files, anything left over from previous | 
 | 125 | # runs that a clean run would need to clean up | 
 | 126 | function cleanup_neutron_new { | 
 | 127 |     source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent | 
 | 128 |     if is_neutron_ovs_base_plugin; then | 
 | 129 |         neutron_ovs_base_cleanup | 
 | 130 |     fi | 
 | 131 |  | 
 | 132 |     if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then | 
 | 133 |         neutron_lb_cleanup | 
 | 134 |     fi | 
 | 135 |     # delete all namespaces created by neutron | 
 | 136 |     for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|qlbaas|fip|snat)-[0-9a-f-]*'); do | 
 | 137 |         sudo ip netns delete ${ns} | 
 | 138 |     done | 
 | 139 | } | 
 | 140 |  | 
| Ihar Hrachyshka | e65ab4a | 2017-02-24 17:47:55 +0000 | [diff] [blame] | 141 | # configure_root_helper_options() - Configure agent rootwrap helper options | 
 | 142 | function configure_root_helper_options { | 
 | 143 |     local conffile=$1 | 
 | 144 |     iniset $conffile agent root_helper "sudo $NEUTRON_ROOTWRAP_CMD" | 
 | 145 |     iniset $conffile agent root_helper_daemon "sudo $NEUTRON_ROOTWRAP_DAEMON_CMD" | 
 | 146 | } | 
 | 147 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 148 | # configure_neutron() - Set config files, create data dirs, etc | 
 | 149 | function configure_neutron_new { | 
 | 150 |     sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR | 
 | 151 |  | 
 | 152 |     (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh) | 
 | 153 |  | 
 | 154 |     cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF | 
 | 155 |  | 
 | 156 |     configure_neutron_rootwrap | 
 | 157 |  | 
| YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 158 |     mkdir -p $NEUTRON_CORE_PLUGIN_CONF_PATH | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 159 |  | 
| YAMAMOTO Takashi | 1df17c9 | 2017-05-01 17:00:42 +0900 | [diff] [blame] | 160 |     # NOTE(yamamoto): A decomposed plugin should prepare the config file in | 
 | 161 |     # its devstack plugin. | 
 | 162 |     if [ -f $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample ]; then | 
 | 163 |         cp $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample $NEUTRON_CORE_PLUGIN_CONF | 
 | 164 |     fi | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 165 |  | 
 | 166 |     iniset $NEUTRON_CONF database connection `database_connection_url neutron` | 
 | 167 |     iniset $NEUTRON_CONF DEFAULT state_path $NEUTRON_STATE_PATH | 
 | 168 |     iniset $NEUTRON_CONF oslo_concurrency lock_path $NEUTRON_STATE_PATH/lock | 
 | 169 |     iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG | 
 | 170 |  | 
| Gary Kotton | d2ef615 | 2016-09-20 04:12:11 -0700 | [diff] [blame] | 171 |     iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL | 
| Sean M. Collins | fbba3b9 | 2016-05-12 11:17:53 -0400 | [diff] [blame] | 172 |  | 
| Sean M. Collins | 5394cc1 | 2016-05-11 15:03:38 -0400 | [diff] [blame] | 173 |     iniset_rpc_backend neutron $NEUTRON_CONF | 
 | 174 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 175 |     # Neutron API server & Neutron plugin | 
 | 176 |     if is_service_enabled neutron-api; then | 
 | 177 |         local policy_file=$NEUTRON_CONF_DIR/policy.json | 
 | 178 |         cp $NEUTRON_DIR/etc/policy.json $policy_file | 
 | 179 |         # Allow neutron user to administer neutron to match neutron account | 
 | 180 |         sed -i 's/"context_is_admin":  "role:admin"/"context_is_admin":  "role:admin or user_name:neutron"/g' $policy_file | 
 | 181 |  | 
 | 182 |         cp $NEUTRON_DIR/etc/api-paste.ini $NEUTRON_CONF_DIR/api-paste.ini | 
 | 183 |  | 
| YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 184 |         iniset $NEUTRON_CONF DEFAULT core_plugin $NEUTRON_CORE_PLUGIN | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 185 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 186 |         iniset $NEUTRON_CONF DEFAULT policy_file $policy_file | 
 | 187 |         iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips True | 
| Brian Haley | 9aaa529 | 2017-09-20 14:23:05 -0400 | [diff] [blame] | 188 |         iniset $NEUTRON_CONF DEFAULT router_distributed $NEUTRON_DISTRIBUTED_ROUTING | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 189 |  | 
 | 190 |         iniset $NEUTRON_CONF DEFAULT auth_strategy $NEUTRON_AUTH_STRATEGY | 
| Ian Wienand | 1f82f43 | 2017-10-04 09:51:02 +1100 | [diff] [blame] | 191 |         configure_auth_token_middleware $NEUTRON_CONF neutron $NEUTRON_AUTH_CACHE_DIR keystone_authtoken | 
 | 192 |         configure_auth_token_middleware $NEUTRON_CONF nova $NEUTRON_AUTH_CACHE_DIR nova | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 193 |  | 
 | 194 |         # Configure VXLAN | 
 | 195 |         # TODO(sc68cal) not hardcode? | 
| YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 196 |         iniset $NEUTRON_CORE_PLUGIN_CONF ml2 tenant_network_types vxlan | 
| Brian Haley | 9aaa529 | 2017-09-20 14:23:05 -0400 | [diff] [blame] | 197 |  | 
 | 198 |         local mech_drivers="openvswitch" | 
 | 199 |         if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then | 
 | 200 |             mech_drivers+=",l2population" | 
 | 201 |         else | 
 | 202 |             mech_drivers+=",linuxbridge" | 
 | 203 |         fi | 
 | 204 |         iniset $NEUTRON_CORE_PLUGIN_CONF ml2 mechanism_drivers $mech_drivers | 
 | 205 |  | 
| YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 206 |         iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vxlan vni_ranges 1001:2000 | 
| Sean M. Collins | edcb7e5 | 2016-12-15 11:29:28 -0500 | [diff] [blame] | 207 |         iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_flat flat_networks public | 
| Matt Riedemann | c9c9d31 | 2016-09-15 20:33:22 -0400 | [diff] [blame] | 208 |         if [[ "$NEUTRON_PORT_SECURITY" = "True" ]]; then | 
| Ihar Hrachyshka | f511c36 | 2017-03-07 06:31:49 +0000 | [diff] [blame] | 209 |             neutron_ml2_extension_driver_add port_security | 
| Matt Riedemann | c9c9d31 | 2016-09-15 20:33:22 -0400 | [diff] [blame] | 210 |         fi | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 211 |     fi | 
 | 212 |  | 
 | 213 |     # Neutron OVS or LB agent | 
 | 214 |     if is_service_enabled neutron-agent; then | 
| YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 215 |         iniset $NEUTRON_CORE_PLUGIN_CONF agent tunnel_types vxlan | 
 | 216 |         iniset $NEUTRON_CORE_PLUGIN_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL | 
| Ihar Hrachyshka | e65ab4a | 2017-02-24 17:47:55 +0000 | [diff] [blame] | 217 |         configure_root_helper_options $NEUTRON_CORE_PLUGIN_CONF | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 218 |  | 
 | 219 |         # Configure the neutron agent | 
 | 220 |         if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then | 
| Sean M. Collins | edcb7e5 | 2016-12-15 11:29:28 -0500 | [diff] [blame] | 221 |             iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables | 
| YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 222 |             iniset $NEUTRON_CORE_PLUGIN_CONF vxlan local_ip $HOST_IP | 
| Jakub Libosvar | a99ab70 | 2018-05-14 16:12:52 +0200 | [diff] [blame] | 223 |         elif [[ $NEUTRON_AGENT == "openvswitch" ]]; then | 
 | 224 |             iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver openvswitch | 
| YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 225 |             iniset $NEUTRON_CORE_PLUGIN_CONF ovs local_ip $HOST_IP | 
| Brian Haley | 9aaa529 | 2017-09-20 14:23:05 -0400 | [diff] [blame] | 226 |  | 
 | 227 |             if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then | 
 | 228 |                 iniset $NEUTRON_CORE_PLUGIN_CONF agent l2_population True | 
 | 229 |                 iniset $NEUTRON_CORE_PLUGIN_CONF agent enable_distributed_routing True | 
 | 230 |             fi | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 231 |         fi | 
| Ihar Hrachyshka | b3a210f | 2016-09-29 13:26:30 +0000 | [diff] [blame] | 232 |  | 
| Denis Buliga | 0bf75a4 | 2017-02-06 16:56:46 +0200 | [diff] [blame] | 233 |         if ! running_in_container; then | 
 | 234 |             enable_kernel_bridge_firewall | 
 | 235 |         fi | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 236 |     fi | 
 | 237 |  | 
 | 238 |     # DHCP Agent | 
 | 239 |     if is_service_enabled neutron-dhcp; then | 
 | 240 |         cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $NEUTRON_DHCP_CONF | 
 | 241 |  | 
| Gary Kotton | d2ef615 | 2016-09-20 04:12:11 -0700 | [diff] [blame] | 242 |         iniset $NEUTRON_DHCP_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL | 
| Sean Dague | 78801c1 | 2016-08-04 14:10:07 -0400 | [diff] [blame] | 243 |         # make it so we have working DNS from guests | 
 | 244 |         iniset $NEUTRON_DHCP_CONF DEFAULT dnsmasq_local_resolv True | 
 | 245 |  | 
| Ihar Hrachyshka | e65ab4a | 2017-02-24 17:47:55 +0000 | [diff] [blame] | 246 |         configure_root_helper_options $NEUTRON_DHCP_CONF | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 247 |         iniset $NEUTRON_DHCP_CONF DEFAULT interface_driver $NEUTRON_AGENT | 
 | 248 |         neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF | 
 | 249 |     fi | 
 | 250 |  | 
 | 251 |     if is_service_enabled neutron-l3; then | 
 | 252 |         cp $NEUTRON_DIR/etc/l3_agent.ini.sample $NEUTRON_L3_CONF | 
 | 253 |         iniset $NEUTRON_L3_CONF DEFAULT interface_driver $NEUTRON_AGENT | 
| YAMAMOTO Takashi | d9ec420 | 2016-07-21 16:14:52 +0900 | [diff] [blame] | 254 |         neutron_service_plugin_class_add router | 
| Ihar Hrachyshka | e65ab4a | 2017-02-24 17:47:55 +0000 | [diff] [blame] | 255 |         configure_root_helper_options $NEUTRON_L3_CONF | 
| Gary Kotton | d2ef615 | 2016-09-20 04:12:11 -0700 | [diff] [blame] | 256 |         iniset $NEUTRON_L3_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 257 |         neutron_plugin_configure_l3_agent $NEUTRON_L3_CONF | 
| Ihar Hrachyshka | e391593 | 2017-02-24 06:24:47 +0000 | [diff] [blame] | 258 |  | 
 | 259 |         # Configure the neutron agent to serve external network ports | 
 | 260 |         if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then | 
 | 261 |             iniset $NEUTRON_CORE_PLUGIN_CONF linux_bridge bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE" | 
 | 262 |         else | 
 | 263 |             iniset $NEUTRON_CORE_PLUGIN_CONF ovs bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE" | 
 | 264 |         fi | 
| Brian Haley | 9aaa529 | 2017-09-20 14:23:05 -0400 | [diff] [blame] | 265 |  | 
 | 266 |         if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then | 
 | 267 |             iniset $NEUTRON_L3_CONF DEFAULT agent_mode $NEUTRON_DVR_MODE | 
 | 268 |         fi | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 269 |     fi | 
 | 270 |  | 
 | 271 |     # Metadata | 
| Sean M. Collins | 1cd2828 | 2016-05-11 15:07:19 -0400 | [diff] [blame] | 272 |     if is_service_enabled neutron-metadata-agent; then | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 273 |         cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $NEUTRON_META_CONF | 
 | 274 |  | 
| Gary Kotton | d2ef615 | 2016-09-20 04:12:11 -0700 | [diff] [blame] | 275 |         iniset $NEUTRON_META_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL | 
| Ken'ichi Ohmichi | 2da019f | 2017-10-11 09:57:25 -0700 | [diff] [blame] | 276 |         iniset $NEUTRON_META_CONF DEFAULT nova_metadata_host $SERVICE_HOST | 
| Armando Migliaccio | 06f2ea2 | 2017-02-02 16:47:00 -0800 | [diff] [blame] | 277 |         iniset $NEUTRON_META_CONF DEFAULT metadata_workers $API_WORKERS | 
| Ihar Hrachyshka | e65ab4a | 2017-02-24 17:47:55 +0000 | [diff] [blame] | 278 |         # TODO(ihrachys) do we really need to set rootwrap for metadata agent? | 
 | 279 |         configure_root_helper_options $NEUTRON_META_CONF | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 280 |  | 
 | 281 |         # TODO(dtroyer): remove the v2.0 hard code below | 
| Sean Dague | c13b8a1 | 2017-04-20 06:54:51 -0400 | [diff] [blame] | 282 |         iniset $NEUTRON_META_CONF DEFAULT auth_url $KEYSTONE_SERVICE_URI | 
| Ian Wienand | 1f82f43 | 2017-10-04 09:51:02 +1100 | [diff] [blame] | 283 |         configure_auth_token_middleware $NEUTRON_META_CONF neutron $NEUTRON_AUTH_CACHE_DIR DEFAULT | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 284 |     fi | 
 | 285 |  | 
 | 286 |     # Format logging | 
| Sean Dague | 27f66e9 | 2017-05-02 09:08:17 -0400 | [diff] [blame] | 287 |     setup_logging $NEUTRON_CONF | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 288 |  | 
 | 289 |     if is_service_enabled tls-proxy; then | 
 | 290 |         # Set the service port for a proxy to take the original | 
 | 291 |         iniset $NEUTRON_CONF DEFAULT bind_port "$NEUTRON_SERVICE_PORT_INT" | 
| Jens Harbott | 411c34d | 2017-08-29 14:40:26 +0000 | [diff] [blame] | 292 |         iniset $NEUTRON_CONF oslo_middleware enable_proxy_headers_parsing True | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 293 |     fi | 
 | 294 |  | 
| Sean M. Collins | 8063fee | 2016-05-24 11:27:36 -0700 | [diff] [blame] | 295 |     # Metering | 
 | 296 |     if is_service_enabled neutron-metering; then | 
| Ihar Hrachyshka | bf697f5 | 2017-02-23 12:09:01 +0000 | [diff] [blame] | 297 |         cp $NEUTRON_DIR/etc/metering_agent.ini.sample $NEUTRON_METERING_AGENT_CONF | 
| YAMAMOTO Takashi | d9ec420 | 2016-07-21 16:14:52 +0900 | [diff] [blame] | 298 |         neutron_service_plugin_class_add metering | 
| Sean M. Collins | 8063fee | 2016-05-24 11:27:36 -0700 | [diff] [blame] | 299 |     fi | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 300 | } | 
 | 301 |  | 
 | 302 | # configure_neutron_rootwrap() - configure Neutron's rootwrap | 
 | 303 | function configure_neutron_rootwrap { | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 304 |     # Deploy new rootwrap filters files (owned by root). | 
 | 305 |     # Wipe any existing rootwrap.d files first | 
 | 306 |     if [[ -d $NEUTRON_CONF_DIR/rootwrap.d ]]; then | 
 | 307 |         sudo rm -rf $NEUTRON_CONF_DIR/rootwrap.d | 
 | 308 |     fi | 
 | 309 |  | 
 | 310 |     # Deploy filters to /etc/neutron/rootwrap.d | 
 | 311 |     sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d | 
 | 312 |     sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d | 
 | 313 |  | 
 | 314 |     # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d`` | 
 | 315 |     sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $NEUTRON_CONF_DIR | 
 | 316 |     sudo sed -e "s:^filters_path=.*$:filters_path=$NEUTRON_CONF_DIR/rootwrap.d:" -i $NEUTRON_CONF_DIR/rootwrap.conf | 
 | 317 |  | 
 | 318 |     # Set up the rootwrap sudoers for Neutron | 
 | 319 |     tempfile=`mktemp` | 
| Ihar Hrachyshka | e65ab4a | 2017-02-24 17:47:55 +0000 | [diff] [blame] | 320 |     echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_CMD *" >$tempfile | 
 | 321 |     echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_DAEMON_CMD" >>$tempfile | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 322 |     chmod 0440 $tempfile | 
 | 323 |     sudo chown root:root $tempfile | 
 | 324 |     sudo mv $tempfile /etc/sudoers.d/neutron-rootwrap | 
 | 325 | } | 
 | 326 |  | 
 | 327 | # Make Neutron-required changes to nova.conf | 
| Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 328 | # Takes a single argument which is the config file to update. | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 329 | function configure_neutron_nova_new { | 
| Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 330 |     local conf="$1" | 
 | 331 |     iniset $conf DEFAULT use_neutron True | 
 | 332 |     iniset $conf neutron auth_type "password" | 
 | 333 |     iniset $conf neutron auth_url "$KEYSTONE_SERVICE_URI" | 
 | 334 |     iniset $conf neutron username neutron | 
 | 335 |     iniset $conf neutron password "$SERVICE_PASSWORD" | 
 | 336 |     iniset $conf neutron user_domain_name "Default" | 
 | 337 |     iniset $conf neutron project_name "$SERVICE_TENANT_NAME" | 
 | 338 |     iniset $conf neutron project_domain_name "Default" | 
 | 339 |     iniset $conf neutron auth_strategy $NEUTRON_AUTH_STRATEGY | 
 | 340 |     iniset $conf neutron region_name "$REGION_NAME" | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 341 |  | 
| Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 342 |     iniset $conf DEFAULT firewall_driver nova.virt.firewall.NoopFirewallDriver | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 343 |  | 
| Gary Kotton | 88f8558 | 2016-08-14 06:55:42 -0700 | [diff] [blame] | 344 |     # optionally set options in nova_conf | 
| Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 345 |     neutron_plugin_create_nova_conf $conf | 
| Gary Kotton | 88f8558 | 2016-08-14 06:55:42 -0700 | [diff] [blame] | 346 |  | 
| Sean M. Collins | 1cd2828 | 2016-05-11 15:07:19 -0400 | [diff] [blame] | 347 |     if is_service_enabled neutron-metadata-agent; then | 
| Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 348 |         iniset $conf neutron service_metadata_proxy "True" | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 349 |     fi | 
 | 350 |  | 
 | 351 | } | 
 | 352 |  | 
 | 353 | # Tenant               User       Roles | 
 | 354 | # ------------------------------------------------------------------ | 
 | 355 | # service              neutron    admin        # if enabled | 
 | 356 |  | 
 | 357 | # create_neutron_accounts() - Create required service accounts | 
 | 358 | function create_neutron_accounts_new { | 
 | 359 |     if [[ "$ENABLED_SERVICES" =~ "neutron-api" ]]; then | 
 | 360 |  | 
 | 361 |         create_service_user "neutron" | 
 | 362 |  | 
 | 363 |         neutron_service=$(get_or_create_service "neutron" \ | 
 | 364 |             "network" "Neutron Service") | 
 | 365 |         get_or_create_endpoint $neutron_service \ | 
 | 366 |             "$REGION_NAME" \ | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 367 |             "$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT/" | 
 | 368 |     fi | 
 | 369 | } | 
 | 370 |  | 
| Ian Wienand | 1f82f43 | 2017-10-04 09:51:02 +1100 | [diff] [blame] | 371 | # create_neutron_cache_dir() - Part of the init_neutron() process | 
 | 372 | function create_neutron_cache_dir { | 
 | 373 |     # Create cache dir | 
 | 374 |     sudo install -d -o $STACK_USER $NEUTRON_AUTH_CACHE_DIR | 
 | 375 |     rm -f $NEUTRON_AUTH_CACHE_DIR/* | 
 | 376 | } | 
 | 377 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 378 | # init_neutron() - Initialize databases, etc. | 
 | 379 | function init_neutron_new { | 
 | 380 |  | 
 | 381 |     recreate_database neutron | 
 | 382 |  | 
| Clark Boylan | 633dbc3 | 2017-06-14 12:09:21 -0700 | [diff] [blame] | 383 |     time_start "dbsync" | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 384 |     # Run Neutron db migrations | 
| Ihar Hrachyshka | 19f4b3f | 2017-02-23 20:44:18 +0000 | [diff] [blame] | 385 |     $NEUTRON_BIN_DIR/neutron-db-manage upgrade heads | 
| Clark Boylan | 633dbc3 | 2017-06-14 12:09:21 -0700 | [diff] [blame] | 386 |     time_stop "dbsync" | 
| Ian Wienand | 1f82f43 | 2017-10-04 09:51:02 +1100 | [diff] [blame] | 387 |  | 
 | 388 |     create_neutron_cache_dir | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 389 | } | 
 | 390 |  | 
 | 391 | # install_neutron() - Collect source and prepare | 
 | 392 | function install_neutron_new { | 
 | 393 |     git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH | 
 | 394 |     setup_develop $NEUTRON_DIR | 
 | 395 |  | 
 | 396 |     # Install neutron-lib from git so we make sure we're testing | 
 | 397 |     # the latest code. | 
 | 398 |     if use_library_from_git "neutron-lib"; then | 
 | 399 |         git_clone_by_name "neutron-lib" | 
 | 400 |         setup_dev_lib "neutron-lib" | 
 | 401 |     fi | 
 | 402 |  | 
 | 403 |     # L3 service requires radvd | 
 | 404 |     if is_service_enabled neutron-l3; then | 
 | 405 |         install_package radvd | 
 | 406 |     fi | 
 | 407 |  | 
 | 408 |     if is_service_enabled neutron-agent neutron-dhcp neutron-l3; then | 
 | 409 |         #TODO(sc68cal) - kind of ugly | 
 | 410 |         source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent | 
 | 411 |         neutron_plugin_install_agent_packages | 
 | 412 |     fi | 
 | 413 |  | 
 | 414 | } | 
 | 415 |  | 
 | 416 | # install_neutronclient() - Collect source and prepare | 
 | 417 | function install_neutronclient { | 
 | 418 |     if use_library_from_git "python-neutronclient"; then | 
 | 419 |         git_clone_by_name "python-neutronclient" | 
 | 420 |         setup_dev_lib "python-neutronclient" | 
 | 421 |         sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-neutronclient"]}/tools/,/etc/bash_completion.d/}neutron.bash_completion | 
 | 422 |     fi | 
 | 423 | } | 
 | 424 |  | 
 | 425 | # start_neutron_api() - Start the API process ahead of other things | 
 | 426 | function start_neutron_api { | 
 | 427 |     local service_port=$NEUTRON_SERVICE_PORT | 
 | 428 |     local service_protocol=$NEUTRON_SERVICE_PROTOCOL | 
 | 429 |     if is_service_enabled tls-proxy; then | 
 | 430 |         service_port=$NEUTRON_SERVICE_PORT_INT | 
 | 431 |         service_protocol="http" | 
 | 432 |     fi | 
 | 433 |  | 
| YAMAMOTO Takashi | ed887d8 | 2017-02-22 14:21:33 -0500 | [diff] [blame] | 434 |     local opts="" | 
 | 435 |     opts+=" --config-file $NEUTRON_CONF" | 
 | 436 |     opts+=" --config-file $NEUTRON_CORE_PLUGIN_CONF" | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 437 |     local cfg_file | 
 | 438 |     for cfg_file in ${_NEUTRON_SERVER_EXTRA_CONF_FILES_ABS[@]}; do | 
 | 439 |         opts+=" --config-file $cfg_file" | 
 | 440 |     done | 
 | 441 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 442 |     # Start the Neutron service | 
 | 443 |     # TODO(sc68cal) Stop hard coding this | 
| YAMAMOTO Takashi | ed887d8 | 2017-02-22 14:21:33 -0500 | [diff] [blame] | 444 |     run_process neutron-api "$NEUTRON_BIN_DIR/neutron-server $opts" | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 445 |  | 
| Sean Dague | f3b2f4c | 2017-04-13 10:11:48 -0400 | [diff] [blame] | 446 |     if ! wait_for_service $SERVICE_TIMEOUT $service_protocol://$NEUTRON_SERVICE_HOST:$service_port; then | 
 | 447 |         die $LINENO "neutron-api did not start" | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 448 |     fi | 
 | 449 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 450 |     # Start proxy if enabled | 
 | 451 |     if is_service_enabled tls-proxy; then | 
| Gregory Haynes | 4b49e40 | 2016-08-31 18:19:51 -0700 | [diff] [blame] | 452 |         start_tls_proxy neutron '*' $NEUTRON_SERVICE_PORT $NEUTRON_SERVICE_HOST $NEUTRON_SERVICE_PORT_INT | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 453 |     fi | 
 | 454 | } | 
 | 455 |  | 
| Sean Dague | 0eebeb4 | 2017-08-30 14:16:58 -0400 | [diff] [blame] | 456 | # start_neutron() - Start running processes | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 457 | function start_neutron_new { | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 458 |     # Start up the neutron agents if enabled | 
 | 459 |     # TODO(sc68cal) Make this pluggable so different DevStack plugins for different Neutron plugins | 
 | 460 |     # can resolve the $NEUTRON_AGENT_BINARY | 
 | 461 |     if is_service_enabled neutron-agent; then | 
| Ihar Hrachyshka | 19f4b3f | 2017-02-23 20:44:18 +0000 | [diff] [blame] | 462 |         # TODO(ihrachys) stop loading ml2_conf.ini into agents, instead load agent specific files | 
 | 463 |         run_process neutron-agent "$NEUTRON_BIN_DIR/$NEUTRON_AGENT_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_CORE_PLUGIN_CONF" | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 464 |     fi | 
 | 465 |     if is_service_enabled neutron-dhcp; then | 
 | 466 |         neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF | 
| Ihar Hrachyshka | 19f4b3f | 2017-02-23 20:44:18 +0000 | [diff] [blame] | 467 |         run_process neutron-dhcp "$NEUTRON_BIN_DIR/$NEUTRON_DHCP_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_DHCP_CONF" | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 468 |     fi | 
 | 469 |     if is_service_enabled neutron-l3; then | 
| Ihar Hrachyshka | 19f4b3f | 2017-02-23 20:44:18 +0000 | [diff] [blame] | 470 |         run_process neutron-l3 "$NEUTRON_BIN_DIR/$NEUTRON_L3_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_L3_CONF" | 
| YAMAMOTO Takashi | c07170a | 2016-07-20 19:44:05 +0900 | [diff] [blame] | 471 |     fi | 
| Josh | 8f72162 | 2018-02-01 09:45:47 +0200 | [diff] [blame] | 472 |     if is_service_enabled neutron-api && [[ "$NEUTRON_CREATE_INITIAL_NETWORKS" == "True" ]]; then | 
| YAMAMOTO Takashi | 07edde1 | 2016-10-19 19:21:00 +0000 | [diff] [blame] | 473 |         # XXX(sc68cal) - Here's where plugins can wire up their own networks instead | 
 | 474 |         # of the code in lib/neutron_plugins/services/l3 | 
 | 475 |         if type -p neutron_plugin_create_initial_networks > /dev/null; then | 
 | 476 |             neutron_plugin_create_initial_networks | 
 | 477 |         else | 
 | 478 |             # XXX(sc68cal) Load up the built in Neutron networking code and build a topology | 
 | 479 |             source $TOP_DIR/lib/neutron_plugins/services/l3 | 
 | 480 |             # Create the networks using servic | 
 | 481 |             create_neutron_initial_network | 
 | 482 |         fi | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 483 |     fi | 
| Sean M. Collins | 1cd2828 | 2016-05-11 15:07:19 -0400 | [diff] [blame] | 484 |     if is_service_enabled neutron-metadata-agent; then | 
| Ihar Hrachyshka | 19f4b3f | 2017-02-23 20:44:18 +0000 | [diff] [blame] | 485 |         run_process neutron-metadata-agent "$NEUTRON_BIN_DIR/$NEUTRON_META_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_META_CONF" | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 486 |     fi | 
| Sean M. Collins | 8063fee | 2016-05-24 11:27:36 -0700 | [diff] [blame] | 487 |  | 
 | 488 |     if is_service_enabled neutron-metering; then | 
| Ihar Hrachyshka | 868746b | 2017-09-13 15:44:18 -0600 | [diff] [blame] | 489 |         run_process neutron-metering "$NEUTRON_BIN_DIR/$NEUTRON_METERING_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_METERING_AGENT_CONF" | 
| Sean M. Collins | 8063fee | 2016-05-24 11:27:36 -0700 | [diff] [blame] | 490 |     fi | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 491 | } | 
 | 492 |  | 
| Sean Dague | 0eebeb4 | 2017-08-30 14:16:58 -0400 | [diff] [blame] | 493 | # stop_neutron() - Stop running processes | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 494 | function stop_neutron_new { | 
 | 495 |     for serv in neutron-api neutron-agent neutron-l3; do | 
 | 496 |         stop_process $serv | 
 | 497 |     done | 
 | 498 |  | 
 | 499 |     if is_service_enabled neutron-dhcp; then | 
 | 500 |         stop_process neutron-dhcp | 
 | 501 |         pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }') | 
 | 502 |         [ ! -z "$pid" ] && sudo kill -9 $pid | 
 | 503 |     fi | 
 | 504 |  | 
| Sean M. Collins | 1cd2828 | 2016-05-11 15:07:19 -0400 | [diff] [blame] | 505 |     if is_service_enabled neutron-metadata-agent; then | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 506 |         sudo pkill -9 -f neutron-ns-metadata-proxy || : | 
| Sean M. Collins | 1cd2828 | 2016-05-11 15:07:19 -0400 | [diff] [blame] | 507 |         stop_process neutron-metadata-agent | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 508 |     fi | 
 | 509 | } | 
 | 510 |  | 
| YAMAMOTO Takashi | d9ec420 | 2016-07-21 16:14:52 +0900 | [diff] [blame] | 511 | # neutron_service_plugin_class_add() - add service plugin class | 
 | 512 | function neutron_service_plugin_class_add_new { | 
 | 513 |     local service_plugin_class=$1 | 
 | 514 |     local plugins="" | 
 | 515 |  | 
 | 516 |     plugins=$(iniget $NEUTRON_CONF DEFAULT service_plugins) | 
| YAMAMOTO Takashi | 84e45c9 | 2017-02-22 14:25:14 -0500 | [diff] [blame] | 517 |     if [ $plugins ]; then | 
 | 518 |         plugins+="," | 
 | 519 |     fi | 
 | 520 |     plugins+="${service_plugin_class}" | 
| YAMAMOTO Takashi | d9ec420 | 2016-07-21 16:14:52 +0900 | [diff] [blame] | 521 |     iniset $NEUTRON_CONF DEFAULT service_plugins $plugins | 
 | 522 | } | 
 | 523 |  | 
| Ihar Hrachyshka | f511c36 | 2017-03-07 06:31:49 +0000 | [diff] [blame] | 524 | function _neutron_ml2_extension_driver_add { | 
 | 525 |     local driver=$1 | 
 | 526 |     local drivers="" | 
 | 527 |  | 
 | 528 |     drivers=$(iniget $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers) | 
 | 529 |     if [ $drivers ]; then | 
 | 530 |         drivers+="," | 
 | 531 |     fi | 
 | 532 |     drivers+="${driver}" | 
 | 533 |     iniset $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers $drivers | 
 | 534 | } | 
 | 535 |  | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 536 | function neutron_server_config_add_new { | 
 | 537 |     _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS+=($1) | 
 | 538 | } | 
 | 539 |  | 
| YAMAMOTO Takashi | c043b6f | 2017-02-23 22:30:08 -0500 | [diff] [blame] | 540 | # neutron_deploy_rootwrap_filters() - deploy rootwrap filters | 
 | 541 | function neutron_deploy_rootwrap_filters_new { | 
 | 542 |     local srcdir=$1 | 
 | 543 |     sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d | 
 | 544 |     sudo install -o root -g root -m 644 $srcdir/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d | 
 | 545 | } | 
 | 546 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 547 | # Dispatch functions | 
 | 548 | # These are needed for compatibility between the old and new implementations | 
 | 549 | # where there are function name overlaps.  These will be removed when | 
 | 550 | # neutron-legacy is removed. | 
 | 551 | # TODO(sc68cal) Remove when neutron-legacy is no more. | 
 | 552 | function cleanup_neutron { | 
 | 553 |     if is_neutron_legacy_enabled; then | 
 | 554 |         # Call back to old function | 
 | 555 |         cleanup_mutnauq "$@" | 
 | 556 |     else | 
 | 557 |         cleanup_neutron_new "$@" | 
 | 558 |     fi | 
 | 559 | } | 
 | 560 |  | 
 | 561 | function configure_neutron { | 
 | 562 |     if is_neutron_legacy_enabled; then | 
 | 563 |         # Call back to old function | 
 | 564 |         configure_mutnauq "$@" | 
 | 565 |     else | 
 | 566 |         configure_neutron_new "$@" | 
 | 567 |     fi | 
 | 568 | } | 
 | 569 |  | 
 | 570 | function configure_neutron_nova { | 
 | 571 |     if is_neutron_legacy_enabled; then | 
 | 572 |         # Call back to old function | 
| Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 573 |         create_nova_conf_neutron $NOVA_CONF | 
 | 574 |         if [[ "${CELLSV2_SETUP}" == "superconductor" ]]; then | 
 | 575 |             for i in $(seq 1 $NOVA_NUM_CELLS); do | 
 | 576 |                 local conf | 
 | 577 |                 conf=$(conductor_conf $i) | 
 | 578 |                 create_nova_conf_neutron $conf | 
 | 579 |             done | 
 | 580 |         fi | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 581 |     else | 
| Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 582 |         configure_neutron_nova_new $NOVA_CONF | 
 | 583 |         if [[ "${CELLSV2_SETUP}" == "superconductor" ]]; then | 
 | 584 |             for i in $(seq 1 $NOVA_NUM_CELLS); do | 
 | 585 |                 local conf | 
 | 586 |                 conf=$(conductor_conf $i) | 
 | 587 |                 configure_neutron_nova_new $conf | 
 | 588 |             done | 
 | 589 |         fi | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 590 |     fi | 
 | 591 | } | 
 | 592 |  | 
 | 593 | function create_neutron_accounts { | 
 | 594 |     if is_neutron_legacy_enabled; then | 
 | 595 |         # Call back to old function | 
 | 596 |         create_mutnauq_accounts "$@" | 
 | 597 |     else | 
 | 598 |         create_neutron_accounts_new "$@" | 
 | 599 |     fi | 
 | 600 | } | 
 | 601 |  | 
 | 602 | function init_neutron { | 
 | 603 |     if is_neutron_legacy_enabled; then | 
 | 604 |         # Call back to old function | 
 | 605 |         init_mutnauq "$@" | 
 | 606 |     else | 
 | 607 |         init_neutron_new "$@" | 
 | 608 |     fi | 
 | 609 | } | 
 | 610 |  | 
 | 611 | function install_neutron { | 
 | 612 |     if is_neutron_legacy_enabled; then | 
 | 613 |         # Call back to old function | 
 | 614 |         install_mutnauq "$@" | 
 | 615 |     else | 
 | 616 |         install_neutron_new "$@" | 
 | 617 |     fi | 
 | 618 | } | 
 | 619 |  | 
| YAMAMOTO Takashi | d9ec420 | 2016-07-21 16:14:52 +0900 | [diff] [blame] | 620 | function neutron_service_plugin_class_add { | 
 | 621 |     if is_neutron_legacy_enabled; then | 
 | 622 |         # Call back to old function | 
 | 623 |         _neutron_service_plugin_class_add "$@" | 
 | 624 |     else | 
 | 625 |         neutron_service_plugin_class_add_new "$@" | 
 | 626 |     fi | 
 | 627 | } | 
 | 628 |  | 
| Ihar Hrachyshka | f511c36 | 2017-03-07 06:31:49 +0000 | [diff] [blame] | 629 | function neutron_ml2_extension_driver_add { | 
 | 630 |     if is_neutron_legacy_enabled; then | 
 | 631 |         # Call back to old function | 
 | 632 |         _neutron_ml2_extension_driver_add_old "$@" | 
 | 633 |     else | 
 | 634 |         _neutron_ml2_extension_driver_add "$@" | 
 | 635 |     fi | 
 | 636 | } | 
 | 637 |  | 
| YAMAMOTO Takashi | c74315e | 2016-07-21 17:49:43 +0900 | [diff] [blame] | 638 | function install_neutron_agent_packages { | 
 | 639 |     if is_neutron_legacy_enabled; then | 
 | 640 |         # Call back to old function | 
 | 641 |         install_neutron_agent_packages_mutnauq "$@" | 
 | 642 |     else | 
 | 643 |         : | 
 | 644 |     fi | 
 | 645 | } | 
 | 646 |  | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 647 | function neutron_server_config_add { | 
 | 648 |     if is_neutron_legacy_enabled; then | 
 | 649 |         # Call back to old function | 
 | 650 |         mutnauq_server_config_add "$@" | 
 | 651 |     else | 
 | 652 |         neutron_server_config_add_new "$@" | 
 | 653 |     fi | 
 | 654 | } | 
 | 655 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 656 | function start_neutron { | 
 | 657 |     if is_neutron_legacy_enabled; then | 
 | 658 |         # Call back to old function | 
 | 659 |         start_mutnauq_l2_agent "$@" | 
 | 660 |         start_mutnauq_other_agents "$@" | 
 | 661 |     else | 
 | 662 |         start_neutron_new "$@" | 
 | 663 |     fi | 
 | 664 | } | 
 | 665 |  | 
 | 666 | function stop_neutron { | 
 | 667 |     if is_neutron_legacy_enabled; then | 
 | 668 |         # Call back to old function | 
 | 669 |         stop_mutnauq "$@" | 
 | 670 |     else | 
 | 671 |         stop_neutron_new "$@" | 
 | 672 |     fi | 
 | 673 | } | 
 | 674 |  | 
| YAMAMOTO Takashi | c043b6f | 2017-02-23 22:30:08 -0500 | [diff] [blame] | 675 | function neutron_deploy_rootwrap_filters { | 
 | 676 |     if is_neutron_legacy_enabled; then | 
 | 677 |         # Call back to old function | 
 | 678 |         _neutron_deploy_rootwrap_filters "$@" | 
 | 679 |     else | 
 | 680 |         neutron_deploy_rootwrap_filters_new "$@" | 
 | 681 |     fi | 
 | 682 | } | 
 | 683 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 684 | # Restore xtrace | 
 | 685 | $XTRACE |