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