Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # lib/neutron |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 4 | # functions - functions specific to neutron |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 5 | |
| 6 | # Dependencies: |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 7 | # ``functions`` file |
| 8 | # ``DEST`` must be defined |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 9 | # ``STACK_USER`` must be defined |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 10 | |
| 11 | # ``stack.sh`` calls the entry points in this order: |
| 12 | # |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 13 | # - install_neutron_agent_packages |
| 14 | # - install_neutronclient |
| 15 | # - install_neutron |
| 16 | # - install_neutron_third_party |
| 17 | # - configure_neutron |
| 18 | # - init_neutron |
| 19 | # - configure_neutron_third_party |
| 20 | # - init_neutron_third_party |
| 21 | # - start_neutron_third_party |
| 22 | # - create_nova_conf_neutron |
| 23 | # - configure_neutron_after_post_config |
| 24 | # - start_neutron_service_and_check |
| 25 | # - check_neutron_third_party_integration |
| 26 | # - start_neutron_agents |
| 27 | # - create_neutron_initial_network |
| 28 | # |
| 29 | # ``unstack.sh`` calls the entry points in this order: |
| 30 | # |
| 31 | # - stop_neutron |
| 32 | # - stop_neutron_third_party |
| 33 | # - cleanup_neutron |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 34 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 35 | # Functions in lib/neutron are classified into the following categories: |
| 36 | # |
| 37 | # - entry points (called from stack.sh or unstack.sh) |
| 38 | # - internal functions |
| 39 | # - neutron exercises |
| 40 | # - 3rd party programs |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 41 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 42 | |
| 43 | # Neutron Networking |
| 44 | # ------------------ |
| 45 | |
| 46 | # Make sure that neutron is enabled in ``ENABLED_SERVICES``. If you want |
| 47 | # to run Neutron on this host, make sure that q-svc is also in |
| 48 | # ``ENABLED_SERVICES``. |
| 49 | # |
| 50 | # See "Neutron Network Configuration" below for additional variables |
| 51 | # that must be set in localrc for connectivity across hosts with |
| 52 | # Neutron. |
| 53 | |
| 54 | # Settings |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 55 | # -------- |
| 56 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 57 | |
| 58 | # Neutron Network Configuration |
| 59 | # ----------------------------- |
| 60 | |
| 61 | if is_service_enabled tls-proxy; then |
| 62 | Q_PROTOCOL="https" |
| 63 | fi |
| 64 | |
| 65 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 66 | # Set up default directories |
| 67 | GITDIR["python-neutronclient"]=$DEST/python-neutronclient |
| 68 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 69 | |
| 70 | NEUTRON_DIR=$DEST/neutron |
| 71 | NEUTRON_FWAAS_DIR=$DEST/neutron-fwaas |
| 72 | |
| 73 | # Support entry points installation of console scripts |
| 74 | if [[ -d $NEUTRON_DIR/bin/neutron-server ]]; then |
| 75 | NEUTRON_BIN_DIR=$NEUTRON_DIR/bin |
| 76 | else |
| 77 | NEUTRON_BIN_DIR=$(get_python_exec_prefix) |
| 78 | fi |
| 79 | |
| 80 | NEUTRON_CONF_DIR=/etc/neutron |
| 81 | NEUTRON_CONF=$NEUTRON_CONF_DIR/neutron.conf |
| 82 | export NEUTRON_TEST_CONFIG_FILE=${NEUTRON_TEST_CONFIG_FILE:-"$NEUTRON_CONF_DIR/debug.ini"} |
| 83 | |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 84 | # NEUTRON_DEPLOY_MOD_WSGI defines how neutron is deployed, allowed values: |
| 85 | # - False (default) : Run neutron under Eventlet |
| 86 | # - True : Run neutron under uwsgi |
| 87 | # TODO(annp): Switching to uwsgi in next cycle if things turn out to be stable |
| 88 | # enough |
Jens Harbott | 3492fee | 2018-11-30 13:57:17 +0000 | [diff] [blame] | 89 | NEUTRON_DEPLOY_MOD_WSGI=$(trueorfalse False NEUTRON_DEPLOY_MOD_WSGI) |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 90 | |
| 91 | NEUTRON_UWSGI_CONF=$NEUTRON_CONF_DIR/neutron-api-uwsgi.ini |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 92 | |
Slawek Kaplonski | 24b65ad | 2021-06-22 15:31:46 +0200 | [diff] [blame] | 93 | # If NEUTRON_ENFORCE_SCOPE == True, it will set "enforce_scope" |
| 94 | # and "enforce_new_defaults" to True in the Neutron's config to enforce usage |
| 95 | # of the new RBAC policies and scopes. |
| 96 | NEUTRON_ENFORCE_SCOPE=$(trueorfalse False NEUTRON_ENFORCE_SCOPE) |
| 97 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 98 | # Agent binaries. Note, binary paths for other agents are set in per-service |
| 99 | # scripts in lib/neutron_plugins/services/ |
| 100 | AGENT_DHCP_BINARY="$NEUTRON_BIN_DIR/neutron-dhcp-agent" |
| 101 | AGENT_L3_BINARY=${AGENT_L3_BINARY:-"$NEUTRON_BIN_DIR/neutron-l3-agent"} |
| 102 | AGENT_META_BINARY="$NEUTRON_BIN_DIR/neutron-metadata-agent" |
Brian Haley | 9aaa529 | 2017-09-20 14:23:05 -0400 | [diff] [blame] | 103 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 104 | # Agent config files. Note, plugin-specific Q_PLUGIN_CONF_FILE is set and |
| 105 | # loaded from per-plugin scripts in lib/neutron_plugins/ |
| 106 | Q_DHCP_CONF_FILE=$NEUTRON_CONF_DIR/dhcp_agent.ini |
| 107 | # NOTE(slaweq): NEUTRON_DHCP_CONF is used e.g. in neutron repository, |
| 108 | # it was previously defined in the lib/neutron module which is now deleted. |
| 109 | NEUTRON_DHCP_CONF=$Q_DHCP_CONF_FILE |
| 110 | Q_L3_CONF_FILE=$NEUTRON_CONF_DIR/l3_agent.ini |
| 111 | # NOTE(slaweq): NEUTRON_L3_CONF is used e.g. in neutron repository, |
| 112 | # it was previously defined in the lib/neutron module which is now deleted. |
| 113 | NEUTRON_L3_CONF=$Q_L3_CONF_FILE |
| 114 | Q_META_CONF_FILE=$NEUTRON_CONF_DIR/metadata_agent.ini |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 115 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 116 | # Default name for Neutron database |
| 117 | Q_DB_NAME=${Q_DB_NAME:-neutron} |
| 118 | # Default Neutron Plugin |
| 119 | Q_PLUGIN=${Q_PLUGIN:-ml2} |
| 120 | # Default Neutron Port |
| 121 | Q_PORT=${Q_PORT:-9696} |
| 122 | # Default Neutron Internal Port when using TLS proxy |
| 123 | Q_PORT_INT=${Q_PORT_INT:-19696} |
| 124 | # Default Neutron Host |
| 125 | Q_HOST=${Q_HOST:-$SERVICE_HOST} |
| 126 | # Default protocol |
| 127 | Q_PROTOCOL=${Q_PROTOCOL:-$SERVICE_PROTOCOL} |
| 128 | # Default listen address |
| 129 | Q_LISTEN_ADDRESS=${Q_LISTEN_ADDRESS:-$(ipv6_unquote $SERVICE_LISTEN_ADDRESS)} |
| 130 | # Default admin username |
| 131 | Q_ADMIN_USERNAME=${Q_ADMIN_USERNAME:-neutron} |
| 132 | # Default auth strategy |
| 133 | Q_AUTH_STRATEGY=${Q_AUTH_STRATEGY:-keystone} |
| 134 | # RHEL's support for namespaces requires using veths with ovs |
| 135 | Q_OVS_USE_VETH=${Q_OVS_USE_VETH:-False} |
| 136 | Q_USE_ROOTWRAP=${Q_USE_ROOTWRAP:-True} |
| 137 | Q_USE_ROOTWRAP_DAEMON=$(trueorfalse True Q_USE_ROOTWRAP_DAEMON) |
| 138 | # Meta data IP |
| 139 | Q_META_DATA_IP=${Q_META_DATA_IP:-$(ipv6_unquote $SERVICE_HOST)} |
| 140 | # Allow Overlapping IP among subnets |
| 141 | Q_ALLOW_OVERLAPPING_IP=${Q_ALLOW_OVERLAPPING_IP:-True} |
| 142 | Q_NOTIFY_NOVA_PORT_STATUS_CHANGES=${Q_NOTIFY_NOVA_PORT_STATUS_CHANGES:-True} |
| 143 | Q_NOTIFY_NOVA_PORT_DATA_CHANGES=${Q_NOTIFY_NOVA_PORT_DATA_CHANGES:-True} |
| 144 | VIF_PLUGGING_IS_FATAL=${VIF_PLUGGING_IS_FATAL:-True} |
| 145 | VIF_PLUGGING_TIMEOUT=${VIF_PLUGGING_TIMEOUT:-300} |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 146 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 147 | # Allow to skip stopping of OVN services |
| 148 | SKIP_STOP_OVN=${SKIP_STOP_OVN:-False} |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 149 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 150 | # The directory which contains files for Q_PLUGIN_EXTRA_CONF_FILES. |
| 151 | # /etc/neutron is assumed by many of devstack plugins. Do not change. |
| 152 | _Q_PLUGIN_EXTRA_CONF_PATH=/etc/neutron |
Julia Kreger | 6e5b138 | 2019-01-09 17:00:45 -0800 | [diff] [blame] | 153 | |
Slawek Kaplonski | 1a21ccb | 2022-07-08 21:57:45 +0200 | [diff] [blame] | 154 | # The name of the service in the endpoint URL |
| 155 | NEUTRON_ENDPOINT_SERVICE_NAME=${NEUTRON_ENDPOINT_SERVICE_NAME-"networking"} |
| 156 | if [[ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" && -z "$NEUTRON_ENDPOINT_SERVICE_NAME" ]]; then |
| 157 | NEUTRON_ENDPOINT_SERVICE_NAME="networking" |
| 158 | fi |
| 159 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 160 | # List of config file names in addition to the main plugin config file |
| 161 | # To add additional plugin config files, use ``neutron_server_config_add`` |
| 162 | # utility function. For example: |
| 163 | # |
| 164 | # ``neutron_server_config_add file1`` |
| 165 | # |
| 166 | # These config files are relative to ``/etc/neutron``. The above |
| 167 | # example would specify ``--config-file /etc/neutron/file1`` for |
| 168 | # neutron server. |
| 169 | declare -a -g Q_PLUGIN_EXTRA_CONF_FILES |
Julia Kreger | 6e5b138 | 2019-01-09 17:00:45 -0800 | [diff] [blame] | 170 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 171 | # same as Q_PLUGIN_EXTRA_CONF_FILES, but with absolute path. |
| 172 | declare -a -g _Q_PLUGIN_EXTRA_CONF_FILES_ABS |
| 173 | |
| 174 | |
| 175 | Q_RR_CONF_FILE=$NEUTRON_CONF_DIR/rootwrap.conf |
| 176 | if [[ "$Q_USE_ROOTWRAP" == "False" ]]; then |
| 177 | Q_RR_COMMAND="sudo" |
| 178 | else |
| 179 | NEUTRON_ROOTWRAP=$(get_rootwrap_location neutron) |
| 180 | Q_RR_COMMAND="sudo $NEUTRON_ROOTWRAP $Q_RR_CONF_FILE" |
| 181 | if [[ "$Q_USE_ROOTWRAP_DAEMON" == "True" ]]; then |
| 182 | Q_RR_DAEMON_COMMAND="sudo $NEUTRON_ROOTWRAP-daemon $Q_RR_CONF_FILE" |
| 183 | fi |
| 184 | fi |
| 185 | |
| 186 | |
| 187 | # Distributed Virtual Router (DVR) configuration |
| 188 | # Can be: |
| 189 | # - ``legacy`` - No DVR functionality |
| 190 | # - ``dvr_snat`` - Controller or single node DVR |
| 191 | # - ``dvr`` - Compute node in multi-node DVR |
| 192 | # - ``dvr_no_external`` - Compute node in multi-node DVR, no external network |
| 193 | # |
| 194 | Q_DVR_MODE=${Q_DVR_MODE:-legacy} |
| 195 | if [[ "$Q_DVR_MODE" != "legacy" ]]; then |
| 196 | Q_ML2_PLUGIN_MECHANISM_DRIVERS=openvswitch,l2population |
| 197 | fi |
| 198 | |
| 199 | # Provider Network Configurations |
| 200 | # -------------------------------- |
| 201 | |
| 202 | # The following variables control the Neutron ML2 plugins' allocation |
| 203 | # of tenant networks and availability of provider networks. If these |
| 204 | # are not configured in ``localrc``, tenant networks will be local to |
| 205 | # the host (with no remote connectivity), and no physical resources |
| 206 | # will be available for the allocation of provider networks. |
| 207 | |
| 208 | # To disable tunnels (GRE or VXLAN) for tenant networks, |
| 209 | # set to False in ``local.conf``. |
| 210 | # GRE tunnels are only supported by the openvswitch. |
| 211 | ENABLE_TENANT_TUNNELS=${ENABLE_TENANT_TUNNELS:-True} |
| 212 | |
| 213 | # If using GRE, VXLAN or GENEVE tunnels for tenant networks, |
| 214 | # specify the range of IDs from which tenant networks are |
| 215 | # allocated. Can be overridden in ``localrc`` if necessary. |
| 216 | TENANT_TUNNEL_RANGES=${TENANT_TUNNEL_RANGES:-1:1000} |
| 217 | |
| 218 | # To use VLANs for tenant networks, set to True in localrc. VLANs |
| 219 | # are supported by the ML2 plugins, requiring additional configuration |
| 220 | # described below. |
| 221 | ENABLE_TENANT_VLANS=${ENABLE_TENANT_VLANS:-False} |
| 222 | |
| 223 | # If using VLANs for tenant networks, set in ``localrc`` to specify |
| 224 | # the range of VLAN VIDs from which tenant networks are |
| 225 | # allocated. An external network switch must be configured to |
| 226 | # trunk these VLANs between hosts for multi-host connectivity. |
| 227 | # |
| 228 | # Example: ``TENANT_VLAN_RANGE=1000:1999`` |
| 229 | TENANT_VLAN_RANGE=${TENANT_VLAN_RANGE:-} |
| 230 | |
| 231 | # If using VLANs for tenant networks, or if using flat or VLAN |
| 232 | # provider networks, set in ``localrc`` to the name of the physical |
| 233 | # network, and also configure ``OVS_PHYSICAL_BRIDGE`` for the |
| 234 | # openvswitch agent or ``LB_PHYSICAL_INTERFACE`` for the linuxbridge |
| 235 | # agent, as described below. |
| 236 | # |
| 237 | # Example: ``PHYSICAL_NETWORK=default`` |
| 238 | PHYSICAL_NETWORK=${PHYSICAL_NETWORK:-public} |
| 239 | |
| 240 | # With the openvswitch agent, if using VLANs for tenant networks, |
| 241 | # or if using flat or VLAN provider networks, set in ``localrc`` to |
| 242 | # the name of the OVS bridge to use for the physical network. The |
| 243 | # bridge will be created if it does not already exist, but a |
| 244 | # physical interface must be manually added to the bridge as a |
| 245 | # port for external connectivity. |
| 246 | # |
| 247 | # Example: ``OVS_PHYSICAL_BRIDGE=br-eth1`` |
| 248 | OVS_PHYSICAL_BRIDGE=${OVS_PHYSICAL_BRIDGE:-br-ex} |
| 249 | |
| 250 | # With the linuxbridge agent, if using VLANs for tenant networks, |
| 251 | # or if using flat or VLAN provider networks, set in ``localrc`` to |
| 252 | # the name of the network interface to use for the physical |
| 253 | # network. |
| 254 | # |
| 255 | # Example: ``LB_PHYSICAL_INTERFACE=eth1`` |
| 256 | if [[ $Q_AGENT == "linuxbridge" && -z ${LB_PHYSICAL_INTERFACE} ]]; then |
| 257 | default_route_dev=$( (ip route; ip -6 route) | grep ^default | head -n 1 | awk '{print $5}') |
| 258 | die_if_not_set $LINENO default_route_dev "Failure retrieving default route device" |
| 259 | LB_PHYSICAL_INTERFACE=$default_route_dev |
| 260 | fi |
| 261 | |
| 262 | # With the openvswitch plugin, set to True in ``localrc`` to enable |
| 263 | # provider GRE tunnels when ``ENABLE_TENANT_TUNNELS`` is False. |
| 264 | # |
| 265 | # Example: ``OVS_ENABLE_TUNNELING=True`` |
| 266 | OVS_ENABLE_TUNNELING=${OVS_ENABLE_TUNNELING:-$ENABLE_TENANT_TUNNELS} |
| 267 | |
| 268 | # Use DHCP agent for providing metadata service in the case of |
| 269 | # without L3 agent (No Route Agent), set to True in localrc. |
| 270 | ENABLE_ISOLATED_METADATA=${ENABLE_ISOLATED_METADATA:-False} |
| 271 | |
| 272 | # Add a static route as dhcp option, so the request to 169.254.169.254 |
| 273 | # will be able to reach through a route(DHCP agent) |
| 274 | # This option require ENABLE_ISOLATED_METADATA = True |
| 275 | ENABLE_METADATA_NETWORK=${ENABLE_METADATA_NETWORK:-False} |
| 276 | # Neutron plugin specific functions |
| 277 | # --------------------------------- |
| 278 | |
| 279 | # Please refer to ``lib/neutron_plugins/README.md`` for details. |
| 280 | if [ -f $TOP_DIR/lib/neutron_plugins/$Q_PLUGIN ]; then |
| 281 | source $TOP_DIR/lib/neutron_plugins/$Q_PLUGIN |
| 282 | fi |
| 283 | |
| 284 | # Agent metering service plugin functions |
| 285 | # ------------------------------------------- |
| 286 | |
| 287 | # Hardcoding for 1 service plugin for now |
| 288 | source $TOP_DIR/lib/neutron_plugins/services/metering |
| 289 | |
| 290 | # L3 Service functions |
| 291 | source $TOP_DIR/lib/neutron_plugins/services/l3 |
| 292 | |
| 293 | # Additional Neutron service plugins |
| 294 | source $TOP_DIR/lib/neutron_plugins/services/placement |
| 295 | source $TOP_DIR/lib/neutron_plugins/services/trunk |
| 296 | source $TOP_DIR/lib/neutron_plugins/services/qos |
elajkat | a84b209 | 2021-11-17 11:52:56 +0100 | [diff] [blame] | 297 | source $TOP_DIR/lib/neutron_plugins/services/segments |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 298 | |
| 299 | # Use security group or not |
| 300 | if has_neutron_plugin_security_group; then |
| 301 | Q_USE_SECGROUP=${Q_USE_SECGROUP:-True} |
| 302 | else |
| 303 | Q_USE_SECGROUP=False |
| 304 | fi |
| 305 | |
Harald Jensås | 16ac21f | 2023-08-31 15:06:52 +0200 | [diff] [blame^] | 306 | # OVN_BRIDGE_MAPPINGS - ovn-bridge-mappings |
| 307 | # NOTE(hjensas): Initialize after sourcing neutron_plugins/services/l3 |
| 308 | # which initialize PUBLIC_BRIDGE. |
| 309 | OVN_BRIDGE_MAPPINGS=${OVN_BRIDGE_MAPPINGS:-$PHYSICAL_NETWORK:$PUBLIC_BRIDGE} |
| 310 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 311 | # Save trace setting |
| 312 | _XTRACE_NEUTRON=$(set +o | grep xtrace) |
| 313 | set +o xtrace |
| 314 | |
YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 315 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 316 | # Functions |
| 317 | # --------- |
| 318 | |
| 319 | # Test if any Neutron services are enabled |
| 320 | # is_neutron_enabled |
| 321 | function is_neutron_enabled { |
Clark Boylan | 902158b | 2017-05-30 14:11:09 -0700 | [diff] [blame] | 322 | [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1 |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 323 | [[ ,${ENABLED_SERVICES} =~ ,"neutron-" || ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0 |
| 324 | return 1 |
| 325 | } |
| 326 | |
| 327 | # Test if any Neutron services are enabled |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 328 | # TODO(slaweq): this is not really needed now and we should remove it as soon |
| 329 | # as it will not be called from any other Devstack plugins, like e.g. Neutron |
| 330 | # plugin |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 331 | function is_neutron_legacy_enabled { |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 332 | return 0 |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 333 | } |
| 334 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 335 | function _determine_config_server { |
| 336 | if [[ "$Q_PLUGIN_EXTRA_CONF_PATH" != '' ]]; then |
| 337 | if [[ "$Q_PLUGIN_EXTRA_CONF_PATH" = "$_Q_PLUGIN_EXTRA_CONF_PATH" ]]; then |
| 338 | deprecated "Q_PLUGIN_EXTRA_CONF_PATH is deprecated" |
| 339 | else |
| 340 | die $LINENO "Q_PLUGIN_EXTRA_CONF_PATH is deprecated" |
| 341 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 342 | fi |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 343 | if [[ ${#Q_PLUGIN_EXTRA_CONF_FILES[@]} > 0 ]]; then |
| 344 | deprecated "Q_PLUGIN_EXTRA_CONF_FILES is deprecated. Use neutron_server_config_add instead." |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 345 | fi |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 346 | for cfg_file in ${Q_PLUGIN_EXTRA_CONF_FILES[@]}; do |
| 347 | _Q_PLUGIN_EXTRA_CONF_FILES_ABS+=($_Q_PLUGIN_EXTRA_CONF_PATH/$cfg_file) |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 348 | done |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 349 | |
| 350 | local cfg_file |
| 351 | local opts="--config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE" |
| 352 | for cfg_file in ${_Q_PLUGIN_EXTRA_CONF_FILES_ABS[@]}; do |
| 353 | opts+=" --config-file $cfg_file" |
| 354 | done |
| 355 | echo "$opts" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 356 | } |
| 357 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 358 | function _determine_config_l3 { |
| 359 | local opts="--config-file $NEUTRON_CONF --config-file $Q_L3_CONF_FILE" |
| 360 | echo "$opts" |
Ihar Hrachyshka | e65ab4a | 2017-02-24 17:47:55 +0000 | [diff] [blame] | 361 | } |
| 362 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 363 | # For services and agents that require it, dynamically construct a list of |
| 364 | # --config-file arguments that are passed to the binary. |
| 365 | function determine_config_files { |
| 366 | local opts="" |
| 367 | case "$1" in |
| 368 | "neutron-server") opts="$(_determine_config_server)" ;; |
| 369 | "neutron-l3-agent") opts="$(_determine_config_l3)" ;; |
| 370 | esac |
| 371 | if [ -z "$opts" ] ; then |
| 372 | die $LINENO "Could not determine config files for $1." |
YAMAMOTO Takashi | 1df17c9 | 2017-05-01 17:00:42 +0900 | [diff] [blame] | 373 | fi |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 374 | echo "$opts" |
| 375 | } |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 376 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 377 | # configure_neutron() |
| 378 | # Set common config for all neutron server and agents. |
| 379 | function configure_neutron { |
| 380 | _configure_neutron_common |
Sean M. Collins | 5394cc1 | 2016-05-11 15:03:38 -0400 | [diff] [blame] | 381 | iniset_rpc_backend neutron $NEUTRON_CONF |
| 382 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 383 | if is_service_enabled q-metering neutron-metering; then |
| 384 | _configure_neutron_metering |
| 385 | fi |
| 386 | if is_service_enabled q-agt neutron-agent; then |
| 387 | _configure_neutron_plugin_agent |
| 388 | fi |
| 389 | if is_service_enabled q-dhcp neutron-dhcp; then |
| 390 | _configure_neutron_dhcp_agent |
| 391 | fi |
| 392 | if is_service_enabled q-l3 neutron-l3; then |
| 393 | _configure_neutron_l3_agent |
| 394 | fi |
| 395 | if is_service_enabled q-meta neutron-metadata-agent; then |
| 396 | _configure_neutron_metadata_agent |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 397 | fi |
| 398 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 399 | if [[ "$Q_DVR_MODE" != "legacy" ]]; then |
| 400 | _configure_dvr |
| 401 | fi |
| 402 | if is_service_enabled ceilometer; then |
| 403 | _configure_neutron_ceilometer_notifications |
| 404 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 405 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 406 | if [[ $Q_AGENT == "ovn" ]]; then |
| 407 | configure_ovn |
| 408 | configure_ovn_plugin |
| 409 | fi |
Brian Haley | 9aaa529 | 2017-09-20 14:23:05 -0400 | [diff] [blame] | 410 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 411 | # Configure Neutron's advanced services |
| 412 | if is_service_enabled q-placement neutron-placement; then |
| 413 | configure_placement_extension |
| 414 | fi |
| 415 | if is_service_enabled q-trunk neutron-trunk; then |
| 416 | configure_trunk_extension |
| 417 | fi |
| 418 | if is_service_enabled q-qos neutron-qos; then |
| 419 | configure_qos |
| 420 | if is_service_enabled q-l3 neutron-l3; then |
| 421 | configure_l3_agent_extension_fip_qos |
| 422 | configure_l3_agent_extension_gateway_ip_qos |
Denis Buliga | 0bf75a4 | 2017-02-06 16:56:46 +0200 | [diff] [blame] | 423 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 424 | fi |
elajkat | a84b209 | 2021-11-17 11:52:56 +0100 | [diff] [blame] | 425 | if is_service_enabled neutron-segments; then |
| 426 | configure_placement_neutron |
| 427 | configure_segments_extension |
| 428 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 429 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 430 | # Finally configure Neutron server and core plugin |
| 431 | if is_service_enabled q-agt neutron-agent q-svc neutron-api; then |
| 432 | _configure_neutron_service |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 433 | fi |
| 434 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 435 | iniset $NEUTRON_CONF DEFAULT api_workers "$API_WORKERS" |
| 436 | # devstack is not a tool for running uber scale OpenStack |
| 437 | # clouds, therefore running without a dedicated RPC worker |
| 438 | # for state reports is more than adequate. |
| 439 | iniset $NEUTRON_CONF DEFAULT rpc_state_report_workers 0 |
Ihar Hrachyshka | e391593 | 2017-02-24 06:24:47 +0000 | [diff] [blame] | 440 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 441 | if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then |
| 442 | write_uwsgi_config "$NEUTRON_UWSGI_CONF" "$NEUTRON_BIN_DIR/neutron-api" "/networking" |
Sean M. Collins | 8063fee | 2016-05-24 11:27:36 -0700 | [diff] [blame] | 443 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 444 | } |
| 445 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 446 | function configure_neutron_nova { |
| 447 | create_nova_conf_neutron $NOVA_CONF |
| 448 | if [[ "${CELLSV2_SETUP}" == "superconductor" ]]; then |
| 449 | for i in $(seq 1 $NOVA_NUM_CELLS); do |
| 450 | local conf |
| 451 | conf=$(conductor_conf $i) |
| 452 | create_nova_conf_neutron $conf |
| 453 | done |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 454 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 455 | } |
| 456 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 457 | function create_nova_conf_neutron { |
Lucas Alvares Gomes | e638593 | 2018-06-28 11:00:28 +0100 | [diff] [blame] | 458 | local conf=${1:-$NOVA_CONF} |
Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 459 | iniset $conf neutron auth_type "password" |
| 460 | iniset $conf neutron auth_url "$KEYSTONE_SERVICE_URI" |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 461 | iniset $conf neutron username "$Q_ADMIN_USERNAME" |
Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 462 | iniset $conf neutron password "$SERVICE_PASSWORD" |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 463 | iniset $conf neutron user_domain_name "$SERVICE_DOMAIN_NAME" |
| 464 | iniset $conf neutron project_name "$SERVICE_PROJECT_NAME" |
| 465 | iniset $conf neutron project_domain_name "$SERVICE_DOMAIN_NAME" |
| 466 | iniset $conf neutron auth_strategy "$Q_AUTH_STRATEGY" |
Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 467 | iniset $conf neutron region_name "$REGION_NAME" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 468 | |
Gary Kotton | 88f8558 | 2016-08-14 06:55:42 -0700 | [diff] [blame] | 469 | # optionally set options in nova_conf |
Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 470 | neutron_plugin_create_nova_conf $conf |
Gary Kotton | 88f8558 | 2016-08-14 06:55:42 -0700 | [diff] [blame] | 471 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 472 | if is_service_enabled q-meta neutron-metadata-agent; then |
Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 473 | iniset $conf neutron service_metadata_proxy "True" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 474 | fi |
| 475 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 476 | iniset $conf DEFAULT vif_plugging_is_fatal "$VIF_PLUGGING_IS_FATAL" |
| 477 | iniset $conf DEFAULT vif_plugging_timeout "$VIF_PLUGGING_TIMEOUT" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 478 | } |
| 479 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 480 | # create_neutron_accounts() - Set up common required neutron accounts |
| 481 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 482 | # Tenant User Roles |
| 483 | # ------------------------------------------------------------------ |
| 484 | # service neutron admin # if enabled |
| 485 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 486 | # Migrated from keystone_data.sh |
| 487 | function create_neutron_accounts { |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 488 | local neutron_url |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 489 | if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 490 | neutron_url=$Q_PROTOCOL://$SERVICE_HOST/ |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 491 | else |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 492 | neutron_url=$Q_PROTOCOL://$SERVICE_HOST:$Q_PORT/ |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 493 | fi |
Slawek Kaplonski | 1a21ccb | 2022-07-08 21:57:45 +0200 | [diff] [blame] | 494 | if [ ! -z "$NEUTRON_ENDPOINT_SERVICE_NAME" ]; then |
| 495 | neutron_url=$neutron_url$NEUTRON_ENDPOINT_SERVICE_NAME |
| 496 | fi |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 497 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 498 | if is_service_enabled q-svc neutron-api; then |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 499 | |
| 500 | create_service_user "neutron" |
| 501 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 502 | get_or_create_service "neutron" "network" "Neutron Service" |
| 503 | get_or_create_endpoint \ |
| 504 | "network" \ |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 505 | "$REGION_NAME" "$neutron_url" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 506 | fi |
| 507 | } |
| 508 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 509 | # init_neutron() - Initialize databases, etc. |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 510 | function init_neutron { |
| 511 | recreate_database $Q_DB_NAME |
Clark Boylan | 633dbc3 | 2017-06-14 12:09:21 -0700 | [diff] [blame] | 512 | time_start "dbsync" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 513 | # Run Neutron db migrations |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 514 | $NEUTRON_BIN_DIR/neutron-db-manage --config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE upgrade head |
Clark Boylan | 633dbc3 | 2017-06-14 12:09:21 -0700 | [diff] [blame] | 515 | time_stop "dbsync" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | # install_neutron() - Collect source and prepare |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 519 | function install_neutron { |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 520 | # Install neutron-lib from git so we make sure we're testing |
| 521 | # the latest code. |
| 522 | if use_library_from_git "neutron-lib"; then |
| 523 | git_clone_by_name "neutron-lib" |
| 524 | setup_dev_lib "neutron-lib" |
| 525 | fi |
| 526 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 527 | git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH |
| 528 | setup_develop $NEUTRON_DIR |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 529 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 530 | if [[ $Q_AGENT == "ovn" ]]; then |
| 531 | install_ovn |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 532 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | # install_neutronclient() - Collect source and prepare |
| 536 | function install_neutronclient { |
| 537 | if use_library_from_git "python-neutronclient"; then |
| 538 | git_clone_by_name "python-neutronclient" |
| 539 | setup_dev_lib "python-neutronclient" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 540 | fi |
| 541 | } |
| 542 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 543 | # install_neutron_agent_packages() - Collect source and prepare |
| 544 | function install_neutron_agent_packages { |
| 545 | # radvd doesn't come with the OS. Install it if the l3 service is enabled. |
| 546 | if is_service_enabled q-l3 neutron-l3; then |
| 547 | install_package radvd |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 548 | fi |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 549 | # install packages that are specific to plugin agent(s) |
| 550 | if is_service_enabled q-agt neutron-agent q-dhcp neutron-dhcp q-l3 neutron-l3; then |
| 551 | neutron_plugin_install_agent_packages |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 552 | fi |
| 553 | } |
| 554 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 555 | # Finish neutron configuration |
| 556 | function configure_neutron_after_post_config { |
| 557 | if [[ $Q_SERVICE_PLUGIN_CLASSES != '' ]]; then |
| 558 | iniset $NEUTRON_CONF DEFAULT service_plugins $Q_SERVICE_PLUGIN_CLASSES |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 559 | fi |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 560 | configure_rbac_policies |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 561 | } |
| 562 | |
Slawek Kaplonski | 24b65ad | 2021-06-22 15:31:46 +0200 | [diff] [blame] | 563 | # configure_rbac_policies() - Configure Neutron to enforce new RBAC |
| 564 | # policies and scopes if NEUTRON_ENFORCE_SCOPE == True |
| 565 | function configure_rbac_policies { |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 566 | if [[ "$NEUTRON_ENFORCE_SCOPE" == "True" || "$ENFORCE_SCOPE" == True ]]; then |
Slawek Kaplonski | 24b65ad | 2021-06-22 15:31:46 +0200 | [diff] [blame] | 567 | iniset $NEUTRON_CONF oslo_policy enforce_new_defaults True |
| 568 | iniset $NEUTRON_CONF oslo_policy enforce_scope True |
| 569 | else |
| 570 | iniset $NEUTRON_CONF oslo_policy enforce_new_defaults False |
| 571 | iniset $NEUTRON_CONF oslo_policy enforce_scope False |
| 572 | fi |
| 573 | } |
| 574 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 575 | # Start running OVN processes |
| 576 | function start_ovn_services { |
| 577 | if [[ $Q_AGENT == "ovn" ]]; then |
| 578 | init_ovn |
| 579 | start_ovn |
| 580 | if [[ "$OVN_L3_CREATE_PUBLIC_NETWORK" == "True" ]]; then |
| 581 | if [[ "$NEUTRON_CREATE_INITIAL_NETWORKS" != "True" ]]; then |
| 582 | echo "OVN_L3_CREATE_PUBLIC_NETWORK=True is being ignored " |
| 583 | echo "because NEUTRON_CREATE_INITIAL_NETWORKS is set to False" |
| 584 | else |
| 585 | create_public_bridge |
| 586 | fi |
Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 587 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 588 | fi |
| 589 | } |
| 590 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 591 | # Start running processes |
| 592 | function start_neutron_service_and_check { |
| 593 | local service_port=$Q_PORT |
| 594 | local service_protocol=$Q_PROTOCOL |
| 595 | local cfg_file_options |
| 596 | local neutron_url |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 597 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 598 | cfg_file_options="$(determine_config_files neutron-server)" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 599 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 600 | if is_service_enabled tls-proxy; then |
| 601 | service_port=$Q_PORT_INT |
| 602 | service_protocol="http" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 603 | fi |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 604 | # Start the Neutron service |
| 605 | if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then |
| 606 | enable_service neutron-api |
| 607 | run_process neutron-api "$(which uwsgi) --procname-prefix neutron-api --ini $NEUTRON_UWSGI_CONF" |
| 608 | neutron_url=$Q_PROTOCOL://$Q_HOST/ |
| 609 | enable_service neutron-rpc-server |
| 610 | run_process neutron-rpc-server "$NEUTRON_BIN_DIR/neutron-rpc-server $cfg_file_options" |
| 611 | else |
| 612 | run_process q-svc "$NEUTRON_BIN_DIR/neutron-server $cfg_file_options" |
| 613 | neutron_url=$service_protocol://$Q_HOST:$service_port/ |
| 614 | # Start proxy if enabled |
| 615 | if is_service_enabled tls-proxy; then |
| 616 | start_tls_proxy neutron '*' $Q_PORT $Q_HOST $Q_PORT_INT |
| 617 | fi |
| 618 | fi |
| 619 | if [ ! -z "$NEUTRON_ENDPOINT_SERVICE_NAME" ]; then |
| 620 | neutron_url=$neutron_url$NEUTRON_ENDPOINT_SERVICE_NAME |
| 621 | fi |
| 622 | echo "Waiting for Neutron to start..." |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 623 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 624 | local testcmd="wget ${ssl_ca} --no-proxy -q -O- $neutron_url" |
| 625 | test_with_retry "$testcmd" "Neutron did not start" $SERVICE_TIMEOUT |
YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 626 | } |
| 627 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 628 | function start_neutron { |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 629 | start_l2_agent "$@" |
| 630 | start_other_agents "$@" |
| 631 | } |
| 632 | |
| 633 | # Control of the l2 agent is separated out to make it easier to test partial |
| 634 | # upgrades (everything upgraded except the L2 agent) |
| 635 | function start_l2_agent { |
| 636 | run_process q-agt "$AGENT_BINARY --config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE" |
| 637 | |
| 638 | if is_provider_network && [[ $Q_AGENT == "openvswitch" ]]; then |
| 639 | sudo ovs-vsctl --no-wait -- --may-exist add-port $OVS_PHYSICAL_BRIDGE $PUBLIC_INTERFACE |
| 640 | sudo ip link set $OVS_PHYSICAL_BRIDGE up |
| 641 | sudo ip link set br-int up |
| 642 | sudo ip link set $PUBLIC_INTERFACE up |
| 643 | if is_ironic_hardware; then |
| 644 | for IP in $(ip addr show dev $PUBLIC_INTERFACE | grep ' inet ' | awk '{print $2}'); do |
| 645 | sudo ip addr del $IP dev $PUBLIC_INTERFACE |
| 646 | sudo ip addr add $IP dev $OVS_PHYSICAL_BRIDGE |
| 647 | done |
| 648 | sudo ip route replace $FIXED_RANGE via $NETWORK_GATEWAY dev $OVS_PHYSICAL_BRIDGE |
| 649 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 650 | fi |
| 651 | } |
| 652 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 653 | function start_other_agents { |
| 654 | run_process q-dhcp "$AGENT_DHCP_BINARY --config-file $NEUTRON_CONF --config-file $Q_DHCP_CONF_FILE" |
| 655 | |
| 656 | run_process q-l3 "$AGENT_L3_BINARY $(determine_config_files neutron-l3-agent)" |
| 657 | |
| 658 | run_process q-meta "$AGENT_META_BINARY --config-file $NEUTRON_CONF --config-file $Q_META_CONF_FILE" |
| 659 | run_process q-metering "$AGENT_METERING_BINARY --config-file $NEUTRON_CONF --config-file $METERING_AGENT_CONF_FILENAME" |
| 660 | } |
| 661 | |
| 662 | # Start running processes, including screen |
| 663 | function start_neutron_agents { |
| 664 | # NOTE(slaweq): it's now just a wrapper for start_neutron function |
| 665 | start_neutron "$@" |
| 666 | } |
| 667 | |
| 668 | function stop_l2_agent { |
| 669 | stop_process q-agt |
| 670 | } |
| 671 | |
| 672 | # stop_other() - Stop running processes |
| 673 | function stop_other { |
| 674 | if is_service_enabled q-dhcp neutron-dhcp; then |
| 675 | stop_process q-dhcp |
| 676 | pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }') |
| 677 | [ ! -z "$pid" ] && sudo kill -9 $pid |
| 678 | fi |
| 679 | |
| 680 | if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then |
| 681 | stop_process neutron-rpc-server |
| 682 | stop_process neutron-api |
| 683 | else |
| 684 | stop_process q-svc |
| 685 | fi |
| 686 | |
| 687 | if is_service_enabled q-l3 neutron-l3; then |
| 688 | sudo pkill -f "radvd -C $DATA_DIR/neutron/ra" |
| 689 | stop_process q-l3 |
| 690 | fi |
| 691 | |
| 692 | if is_service_enabled q-meta neutron-metadata-agent; then |
| 693 | stop_process q-meta |
| 694 | fi |
| 695 | |
| 696 | if is_service_enabled q-metering neutron-metering; then |
| 697 | neutron_metering_stop |
| 698 | fi |
| 699 | |
| 700 | if [[ "$Q_USE_ROOTWRAP_DAEMON" == "True" ]]; then |
Bence Romsics | 71c3c40 | 2022-12-21 13:50:54 +0100 | [diff] [blame] | 701 | # pkill takes care not to kill itself, but it may kill its parent |
| 702 | # sudo unless we use the "ps | grep [f]oo" trick |
| 703 | sudo pkill -9 -f "$NEUTRON_ROOTWRAP-[d]aemon" || : |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 704 | fi |
| 705 | } |
| 706 | |
| 707 | # stop_neutron() - Stop running processes (non-screen) |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 708 | function stop_neutron { |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 709 | stop_other |
| 710 | stop_l2_agent |
| 711 | |
| 712 | if [[ $Q_AGENT == "ovn" && $SKIP_STOP_OVN != "True" ]]; then |
| 713 | stop_ovn |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 714 | fi |
| 715 | } |
| 716 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 717 | # _move_neutron_addresses_route() - Move the primary IP to the OVS bridge |
| 718 | # on startup, or back to the public interface on cleanup. If no IP is |
| 719 | # configured on the interface, just add it as a port to the OVS bridge. |
| 720 | function _move_neutron_addresses_route { |
| 721 | local from_intf=$1 |
| 722 | local to_intf=$2 |
| 723 | local add_ovs_port=$3 |
| 724 | local del_ovs_port=$4 |
| 725 | local af=$5 |
| 726 | |
| 727 | if [[ -n "$from_intf" && -n "$to_intf" ]]; then |
| 728 | # Remove the primary IP address from $from_intf and add it to $to_intf, |
| 729 | # along with the default route, if it exists. Also, when called |
| 730 | # on configure we will also add $from_intf as a port on $to_intf, |
| 731 | # assuming it is an OVS bridge. |
| 732 | |
| 733 | local IP_REPLACE="" |
| 734 | local IP_DEL="" |
| 735 | local IP_UP="" |
| 736 | local DEFAULT_ROUTE_GW |
| 737 | DEFAULT_ROUTE_GW=$(ip -f $af r | awk "/default.+$from_intf\s/ { print \$3; exit }") |
| 738 | local ADD_OVS_PORT="" |
| 739 | local DEL_OVS_PORT="" |
| 740 | local ARP_CMD="" |
| 741 | |
| 742 | IP_BRD=$(ip -f $af a s dev $from_intf scope global primary | grep inet | awk '{ print $2, $3, $4; exit }') |
| 743 | |
| 744 | if [ "$DEFAULT_ROUTE_GW" != "" ]; then |
| 745 | ADD_DEFAULT_ROUTE="sudo ip -f $af r replace default via $DEFAULT_ROUTE_GW dev $to_intf" |
| 746 | fi |
| 747 | |
| 748 | if [[ "$add_ovs_port" == "True" ]]; then |
| 749 | ADD_OVS_PORT="sudo ovs-vsctl --may-exist add-port $to_intf $from_intf" |
| 750 | fi |
| 751 | |
| 752 | if [[ "$del_ovs_port" == "True" ]]; then |
| 753 | DEL_OVS_PORT="sudo ovs-vsctl --if-exists del-port $from_intf $to_intf" |
| 754 | fi |
| 755 | |
| 756 | if [[ "$IP_BRD" != "" ]]; then |
| 757 | IP_DEL="sudo ip addr del $IP_BRD dev $from_intf" |
| 758 | IP_REPLACE="sudo ip addr replace $IP_BRD dev $to_intf" |
| 759 | IP_UP="sudo ip link set $to_intf up" |
| 760 | if [[ "$af" == "inet" ]]; then |
| 761 | IP=$(echo $IP_BRD | awk '{ print $1; exit }' | grep -o -E '(.*)/' | cut -d "/" -f1) |
| 762 | ARP_CMD="sudo arping -A -c 3 -w 5 -I $to_intf $IP " |
| 763 | fi |
| 764 | fi |
| 765 | |
| 766 | # The add/del OVS port calls have to happen either before or |
| 767 | # after the address is moved in order to not leave it orphaned. |
| 768 | $DEL_OVS_PORT; $IP_DEL; $IP_REPLACE; $IP_UP; $ADD_OVS_PORT; $ADD_DEFAULT_ROUTE; $ARP_CMD |
| 769 | fi |
| 770 | } |
| 771 | |
| 772 | # _configure_public_network_connectivity() - Configures connectivity to the |
| 773 | # external network using $PUBLIC_INTERFACE or NAT on the single interface |
| 774 | # machines |
| 775 | function _configure_public_network_connectivity { |
| 776 | # If we've given a PUBLIC_INTERFACE to take over, then we assume |
| 777 | # that we can own the whole thing, and privot it into the OVS |
| 778 | # bridge. If we are not, we're probably on a single interface |
| 779 | # machine, and we just setup NAT so that fixed guests can get out. |
| 780 | if [[ -n "$PUBLIC_INTERFACE" ]]; then |
| 781 | _move_neutron_addresses_route "$PUBLIC_INTERFACE" "$OVS_PHYSICAL_BRIDGE" True False "inet" |
| 782 | |
| 783 | if [[ $(ip -f inet6 a s dev "$PUBLIC_INTERFACE" | grep -c 'global') != 0 ]]; then |
| 784 | _move_neutron_addresses_route "$PUBLIC_INTERFACE" "$OVS_PHYSICAL_BRIDGE" False False "inet6" |
| 785 | fi |
YAMAMOTO Takashi | c043b6f | 2017-02-23 22:30:08 -0500 | [diff] [blame] | 786 | else |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 787 | for d in $default_v4_route_devs; do |
| 788 | sudo iptables -t nat -A POSTROUTING -o $d -s $FLOATING_RANGE -j MASQUERADE |
| 789 | done |
| 790 | fi |
| 791 | } |
| 792 | |
| 793 | # cleanup_neutron() - Remove residual data files, anything left over from previous |
| 794 | # runs that a clean run would need to clean up |
| 795 | function cleanup_neutron { |
| 796 | if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then |
| 797 | stop_process neutron-api |
| 798 | stop_process neutron-rpc-server |
| 799 | remove_uwsgi_config "$NEUTRON_UWSGI_CONF" "$NEUTRON_BIN_DIR/neutron-api" |
| 800 | sudo rm -f $(apache_site_config_for neutron-api) |
| 801 | fi |
| 802 | |
| 803 | if [[ -n "$OVS_PHYSICAL_BRIDGE" ]]; then |
| 804 | _move_neutron_addresses_route "$OVS_PHYSICAL_BRIDGE" "$PUBLIC_INTERFACE" False True "inet" |
| 805 | |
| 806 | if [[ $(ip -f inet6 a s dev "$OVS_PHYSICAL_BRIDGE" | grep -c 'global') != 0 ]]; then |
| 807 | # ip(8) wants the prefix length when deleting |
| 808 | local v6_gateway |
| 809 | v6_gateway=$(ip -6 a s dev $OVS_PHYSICAL_BRIDGE | grep $IPV6_PUBLIC_NETWORK_GATEWAY | awk '{ print $2 }') |
| 810 | sudo ip -6 addr del $v6_gateway dev $OVS_PHYSICAL_BRIDGE |
| 811 | _move_neutron_addresses_route "$OVS_PHYSICAL_BRIDGE" "$PUBLIC_INTERFACE" False False "inet6" |
| 812 | fi |
| 813 | |
| 814 | if is_provider_network && is_ironic_hardware; then |
| 815 | for IP in $(ip addr show dev $OVS_PHYSICAL_BRIDGE | grep ' inet ' | awk '{print $2}'); do |
| 816 | sudo ip addr del $IP dev $OVS_PHYSICAL_BRIDGE |
| 817 | sudo ip addr add $IP dev $PUBLIC_INTERFACE |
| 818 | done |
| 819 | sudo route del -net $FIXED_RANGE gw $NETWORK_GATEWAY dev $OVS_PHYSICAL_BRIDGE |
| 820 | fi |
| 821 | fi |
| 822 | |
| 823 | if is_neutron_ovs_base_plugin; then |
| 824 | neutron_ovs_base_cleanup |
| 825 | fi |
| 826 | |
| 827 | if [[ $Q_AGENT == "linuxbridge" ]]; then |
| 828 | neutron_lb_cleanup |
| 829 | fi |
| 830 | |
| 831 | # delete all namespaces created by neutron |
| 832 | for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|fip|snat)-[0-9a-f-]*'); do |
| 833 | sudo ip netns delete ${ns} |
| 834 | done |
| 835 | |
| 836 | if [[ $Q_AGENT == "ovn" ]]; then |
| 837 | cleanup_ovn |
| 838 | fi |
| 839 | } |
| 840 | |
| 841 | |
| 842 | function _create_neutron_conf_dir { |
| 843 | # Put config files in ``NEUTRON_CONF_DIR`` for everyone to find |
| 844 | sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR |
| 845 | } |
| 846 | |
| 847 | # _configure_neutron_common() |
| 848 | # Set common config for all neutron server and agents. |
| 849 | # This MUST be called before other ``_configure_neutron_*`` functions. |
| 850 | function _configure_neutron_common { |
| 851 | _create_neutron_conf_dir |
| 852 | |
| 853 | # Uses oslo config generator to generate core sample configuration files |
| 854 | (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh) |
| 855 | |
| 856 | cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF |
| 857 | |
| 858 | Q_POLICY_FILE=$NEUTRON_CONF_DIR/policy.json |
| 859 | |
| 860 | # allow neutron user to administer neutron to match neutron account |
| 861 | # NOTE(amotoki): This is required for nova works correctly with neutron. |
| 862 | if [ -f $NEUTRON_DIR/etc/policy.json ]; then |
| 863 | cp $NEUTRON_DIR/etc/policy.json $Q_POLICY_FILE |
| 864 | sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:neutron"/g' $Q_POLICY_FILE |
| 865 | else |
| 866 | echo '{"context_is_admin": "role:admin or user_name:neutron"}' > $Q_POLICY_FILE |
| 867 | fi |
| 868 | |
| 869 | # Set plugin-specific variables ``Q_DB_NAME``, ``Q_PLUGIN_CLASS``. |
| 870 | # For main plugin config file, set ``Q_PLUGIN_CONF_PATH``, ``Q_PLUGIN_CONF_FILENAME``. |
| 871 | neutron_plugin_configure_common |
| 872 | |
| 873 | if [[ "$Q_PLUGIN_CONF_PATH" == '' || "$Q_PLUGIN_CONF_FILENAME" == '' || "$Q_PLUGIN_CLASS" == '' ]]; then |
| 874 | die $LINENO "Neutron plugin not set.. exiting" |
| 875 | fi |
| 876 | |
| 877 | # If needed, move config file from ``$NEUTRON_DIR/etc/neutron`` to ``NEUTRON_CONF_DIR`` |
| 878 | mkdir -p /$Q_PLUGIN_CONF_PATH |
| 879 | Q_PLUGIN_CONF_FILE=$Q_PLUGIN_CONF_PATH/$Q_PLUGIN_CONF_FILENAME |
| 880 | # NOTE(slaweq): NEUTRON_CORE_PLUGIN_CONF is used e.g. in neutron repository, |
| 881 | # it was previously defined in the lib/neutron module which is now deleted. |
| 882 | NEUTRON_CORE_PLUGIN_CONF=$Q_PLUGIN_CONF_FILE |
| 883 | # NOTE(hichihara): Some neutron vendor plugins were already decomposed and |
| 884 | # there is no config file in Neutron tree. They should prepare the file in each plugin. |
| 885 | if [ -f "$NEUTRON_DIR/$Q_PLUGIN_CONF_FILE.sample" ]; then |
| 886 | cp "$NEUTRON_DIR/$Q_PLUGIN_CONF_FILE.sample" /$Q_PLUGIN_CONF_FILE |
| 887 | elif [ -f $NEUTRON_DIR/$Q_PLUGIN_CONF_FILE ]; then |
| 888 | cp $NEUTRON_DIR/$Q_PLUGIN_CONF_FILE /$Q_PLUGIN_CONF_FILE |
| 889 | fi |
| 890 | |
| 891 | iniset $NEUTRON_CONF database connection `database_connection_url $Q_DB_NAME` |
| 892 | iniset $NEUTRON_CONF DEFAULT state_path $DATA_DIR/neutron |
| 893 | iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG |
| 894 | iniset $NEUTRON_CONF DEFAULT bind_host $Q_LISTEN_ADDRESS |
| 895 | iniset $NEUTRON_CONF oslo_concurrency lock_path $DATA_DIR/neutron/lock |
| 896 | |
| 897 | # NOTE(freerunner): Need to adjust Region Name for nova in multiregion installation |
| 898 | iniset $NEUTRON_CONF nova region_name $REGION_NAME |
| 899 | |
| 900 | if [ "$VIRT_DRIVER" = 'fake' ]; then |
| 901 | # Disable arbitrary limits |
| 902 | iniset $NEUTRON_CONF quotas quota_network -1 |
| 903 | iniset $NEUTRON_CONF quotas quota_subnet -1 |
| 904 | iniset $NEUTRON_CONF quotas quota_port -1 |
| 905 | iniset $NEUTRON_CONF quotas quota_security_group -1 |
| 906 | iniset $NEUTRON_CONF quotas quota_security_group_rule -1 |
| 907 | fi |
| 908 | |
| 909 | # Format logging |
| 910 | setup_logging $NEUTRON_CONF |
| 911 | |
| 912 | if is_service_enabled tls-proxy && [ "$NEUTRON_DEPLOY_MOD_WSGI" == "False" ]; then |
| 913 | # Set the service port for a proxy to take the original |
| 914 | iniset $NEUTRON_CONF DEFAULT bind_port "$Q_PORT_INT" |
| 915 | iniset $NEUTRON_CONF oslo_middleware enable_proxy_headers_parsing True |
| 916 | fi |
| 917 | |
| 918 | _neutron_setup_rootwrap |
| 919 | } |
| 920 | |
| 921 | function _configure_neutron_dhcp_agent { |
| 922 | |
| 923 | cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $Q_DHCP_CONF_FILE |
| 924 | |
| 925 | iniset $Q_DHCP_CONF_FILE DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL |
| 926 | # make it so we have working DNS from guests |
| 927 | iniset $Q_DHCP_CONF_FILE DEFAULT dnsmasq_local_resolv True |
| 928 | configure_root_helper_options $Q_DHCP_CONF_FILE |
| 929 | |
| 930 | if ! is_service_enabled q-l3 neutron-l3; then |
| 931 | if [[ "$ENABLE_ISOLATED_METADATA" = "True" ]]; then |
| 932 | iniset $Q_DHCP_CONF_FILE DEFAULT enable_isolated_metadata $ENABLE_ISOLATED_METADATA |
| 933 | iniset $Q_DHCP_CONF_FILE DEFAULT enable_metadata_network $ENABLE_METADATA_NETWORK |
| 934 | else |
| 935 | if [[ "$ENABLE_METADATA_NETWORK" = "True" ]]; then |
| 936 | die "$LINENO" "Enable isolated metadata is a must for metadata network" |
| 937 | fi |
| 938 | fi |
| 939 | fi |
| 940 | |
| 941 | _neutron_setup_interface_driver $Q_DHCP_CONF_FILE |
| 942 | |
| 943 | neutron_plugin_configure_dhcp_agent $Q_DHCP_CONF_FILE |
| 944 | } |
| 945 | |
| 946 | |
| 947 | function _configure_neutron_metadata_agent { |
| 948 | cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $Q_META_CONF_FILE |
| 949 | |
| 950 | iniset $Q_META_CONF_FILE DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL |
| 951 | iniset $Q_META_CONF_FILE DEFAULT nova_metadata_host $Q_META_DATA_IP |
| 952 | iniset $Q_META_CONF_FILE DEFAULT metadata_workers $API_WORKERS |
| 953 | configure_root_helper_options $Q_META_CONF_FILE |
| 954 | } |
| 955 | |
| 956 | function _configure_neutron_ceilometer_notifications { |
| 957 | iniset $NEUTRON_CONF oslo_messaging_notifications driver messagingv2 |
| 958 | } |
| 959 | |
| 960 | function _configure_neutron_metering { |
| 961 | neutron_agent_metering_configure_common |
| 962 | neutron_agent_metering_configure_agent |
| 963 | } |
| 964 | |
| 965 | function _configure_dvr { |
| 966 | iniset $NEUTRON_CONF DEFAULT router_distributed True |
| 967 | iniset $Q_L3_CONF_FILE DEFAULT agent_mode $Q_DVR_MODE |
| 968 | } |
| 969 | |
| 970 | |
| 971 | # _configure_neutron_plugin_agent() - Set config files for neutron plugin agent |
| 972 | # It is called when q-agt is enabled. |
| 973 | function _configure_neutron_plugin_agent { |
| 974 | # Specify the default root helper prior to agent configuration to |
| 975 | # ensure that an agent's configuration can override the default |
| 976 | configure_root_helper_options /$Q_PLUGIN_CONF_FILE |
| 977 | iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL |
| 978 | |
| 979 | # Configure agent for plugin |
| 980 | neutron_plugin_configure_plugin_agent |
| 981 | } |
| 982 | |
| 983 | function _replace_api_paste_composite { |
| 984 | local sep |
| 985 | sep=$(echo -ne "\x01") |
| 986 | # Replace it |
| 987 | $sudo sed -i -e "s/\/\: neutronversions_composite/\/"${NEUTRON_ENDPOINT_SERVICE_NAME}"\/\: neutronversions_composite/" "$Q_API_PASTE_FILE" |
| 988 | $sudo sed -i -e "s/\/healthcheck\: healthcheck/\/"${NEUTRON_ENDPOINT_SERVICE_NAME}"\/healthcheck\: healthcheck/" "$Q_API_PASTE_FILE" |
| 989 | $sudo sed -i -e "s/\/v2.0\: neutronapi_v2_0/\/"${NEUTRON_ENDPOINT_SERVICE_NAME}"\/v2.0\: neutronapi_v2_0/" "$Q_API_PASTE_FILE" |
| 990 | } |
| 991 | |
| 992 | # _configure_neutron_service() - Set config files for neutron service |
| 993 | # It is called when q-svc is enabled. |
| 994 | function _configure_neutron_service { |
| 995 | Q_API_PASTE_FILE=$NEUTRON_CONF_DIR/api-paste.ini |
| 996 | cp $NEUTRON_DIR/etc/api-paste.ini $Q_API_PASTE_FILE |
| 997 | |
| 998 | if [[ -n "$NEUTRON_ENDPOINT_SERVICE_NAME" ]]; then |
| 999 | _replace_api_paste_composite |
| 1000 | fi |
| 1001 | |
| 1002 | # Update either configuration file with plugin |
| 1003 | iniset $NEUTRON_CONF DEFAULT core_plugin $Q_PLUGIN_CLASS |
| 1004 | |
| 1005 | iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL |
| 1006 | iniset $NEUTRON_CONF oslo_policy policy_file $Q_POLICY_FILE |
| 1007 | |
| 1008 | iniset $NEUTRON_CONF DEFAULT auth_strategy $Q_AUTH_STRATEGY |
| 1009 | configure_keystone_authtoken_middleware $NEUTRON_CONF $Q_ADMIN_USERNAME |
| 1010 | |
| 1011 | # Configuration for neutron notifications to nova. |
| 1012 | iniset $NEUTRON_CONF DEFAULT notify_nova_on_port_status_changes $Q_NOTIFY_NOVA_PORT_STATUS_CHANGES |
| 1013 | iniset $NEUTRON_CONF DEFAULT notify_nova_on_port_data_changes $Q_NOTIFY_NOVA_PORT_DATA_CHANGES |
| 1014 | |
| 1015 | configure_keystone_authtoken_middleware $NEUTRON_CONF nova nova |
| 1016 | |
| 1017 | # Configuration for placement client |
| 1018 | configure_keystone_authtoken_middleware $NEUTRON_CONF placement placement |
| 1019 | |
| 1020 | # Configure plugin |
| 1021 | neutron_plugin_configure_service |
| 1022 | } |
| 1023 | |
| 1024 | # Utility Functions |
| 1025 | #------------------ |
| 1026 | |
| 1027 | # neutron_service_plugin_class_add() - add service plugin class |
| 1028 | function neutron_service_plugin_class_add { |
| 1029 | local service_plugin_class=$1 |
| 1030 | if [[ $Q_SERVICE_PLUGIN_CLASSES == '' ]]; then |
| 1031 | Q_SERVICE_PLUGIN_CLASSES=$service_plugin_class |
| 1032 | elif [[ ! ,${Q_SERVICE_PLUGIN_CLASSES}, =~ ,${service_plugin_class}, ]]; then |
| 1033 | Q_SERVICE_PLUGIN_CLASSES="$Q_SERVICE_PLUGIN_CLASSES,$service_plugin_class" |
| 1034 | fi |
| 1035 | } |
| 1036 | |
| 1037 | # neutron_ml2_extension_driver_add() - add ML2 extension driver |
| 1038 | function neutron_ml2_extension_driver_add { |
| 1039 | local extension=$1 |
| 1040 | if [[ $Q_ML2_PLUGIN_EXT_DRIVERS == '' ]]; then |
| 1041 | Q_ML2_PLUGIN_EXT_DRIVERS=$extension |
| 1042 | elif [[ ! ,${Q_ML2_PLUGIN_EXT_DRIVERS}, =~ ,${extension}, ]]; then |
| 1043 | Q_ML2_PLUGIN_EXT_DRIVERS="$Q_ML2_PLUGIN_EXT_DRIVERS,$extension" |
| 1044 | fi |
| 1045 | } |
| 1046 | |
| 1047 | # neutron_server_config_add() - add server config file |
| 1048 | function neutron_server_config_add { |
| 1049 | _Q_PLUGIN_EXTRA_CONF_FILES_ABS+=($1) |
| 1050 | } |
| 1051 | |
| 1052 | # neutron_deploy_rootwrap_filters() - deploy rootwrap filters to $Q_CONF_ROOTWRAP_D (owned by root). |
| 1053 | function neutron_deploy_rootwrap_filters { |
| 1054 | if [[ "$Q_USE_ROOTWRAP" == "False" ]]; then |
| 1055 | return |
| 1056 | fi |
| 1057 | local srcdir=$1 |
| 1058 | sudo install -d -o root -m 755 $Q_CONF_ROOTWRAP_D |
| 1059 | sudo install -o root -m 644 $srcdir/etc/neutron/rootwrap.d/* $Q_CONF_ROOTWRAP_D/ |
| 1060 | } |
| 1061 | |
| 1062 | # _neutron_setup_rootwrap() - configure Neutron's rootwrap |
| 1063 | function _neutron_setup_rootwrap { |
| 1064 | if [[ "$Q_USE_ROOTWRAP" == "False" ]]; then |
| 1065 | return |
| 1066 | fi |
| 1067 | # Wipe any existing ``rootwrap.d`` files first |
| 1068 | Q_CONF_ROOTWRAP_D=$NEUTRON_CONF_DIR/rootwrap.d |
| 1069 | if [[ -d $Q_CONF_ROOTWRAP_D ]]; then |
| 1070 | sudo rm -rf $Q_CONF_ROOTWRAP_D |
| 1071 | fi |
| 1072 | |
| 1073 | neutron_deploy_rootwrap_filters $NEUTRON_DIR |
| 1074 | |
| 1075 | # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d`` |
| 1076 | # location moved in newer versions, prefer new location |
| 1077 | if test -r $NEUTRON_DIR/etc/neutron/rootwrap.conf; then |
| 1078 | sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.conf $Q_RR_CONF_FILE |
| 1079 | else |
| 1080 | sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $Q_RR_CONF_FILE |
| 1081 | fi |
| 1082 | sudo sed -e "s:^filters_path=.*$:filters_path=$Q_CONF_ROOTWRAP_D:" -i $Q_RR_CONF_FILE |
yatinkarel | ffc1b76 | 2023-08-28 10:52:26 +0530 | [diff] [blame] | 1083 | # Rely on $PATH set by devstack to determine what is safe to execute |
| 1084 | # by rootwrap rather than use explicit whitelist of paths in |
| 1085 | # rootwrap.conf |
| 1086 | sudo sed -e 's/^exec_dirs=.*/#&/' -i $Q_RR_CONF_FILE |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 1087 | |
| 1088 | # Specify ``rootwrap.conf`` as first parameter to neutron-rootwrap |
| 1089 | ROOTWRAP_SUDOER_CMD="$NEUTRON_ROOTWRAP $Q_RR_CONF_FILE *" |
| 1090 | ROOTWRAP_DAEMON_SUDOER_CMD="$NEUTRON_ROOTWRAP-daemon $Q_RR_CONF_FILE" |
| 1091 | |
| 1092 | # Set up the rootwrap sudoers for neutron |
| 1093 | TEMPFILE=`mktemp` |
| 1094 | echo "$STACK_USER ALL=(root) NOPASSWD: $ROOTWRAP_SUDOER_CMD" >$TEMPFILE |
| 1095 | echo "$STACK_USER ALL=(root) NOPASSWD: $ROOTWRAP_DAEMON_SUDOER_CMD" >>$TEMPFILE |
| 1096 | chmod 0440 $TEMPFILE |
| 1097 | sudo chown root:root $TEMPFILE |
| 1098 | sudo mv $TEMPFILE /etc/sudoers.d/neutron-rootwrap |
| 1099 | |
| 1100 | # Update the root_helper |
| 1101 | configure_root_helper_options $NEUTRON_CONF |
| 1102 | } |
| 1103 | |
| 1104 | function configure_root_helper_options { |
| 1105 | local conffile=$1 |
| 1106 | iniset $conffile agent root_helper "$Q_RR_COMMAND" |
| 1107 | if [[ "$Q_USE_ROOTWRAP_DAEMON" == "True" ]]; then |
| 1108 | iniset $conffile agent root_helper_daemon "$Q_RR_DAEMON_COMMAND" |
| 1109 | fi |
| 1110 | } |
| 1111 | |
| 1112 | function _neutron_setup_interface_driver { |
| 1113 | |
| 1114 | # ovs_use_veth needs to be set before the plugin configuration |
| 1115 | # occurs to allow plugins to override the setting. |
| 1116 | iniset $1 DEFAULT ovs_use_veth $Q_OVS_USE_VETH |
| 1117 | |
| 1118 | neutron_plugin_setup_interface_driver $1 |
| 1119 | } |
| 1120 | # Functions for Neutron Exercises |
| 1121 | #-------------------------------- |
| 1122 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 1123 | # ssh check |
| 1124 | function _ssh_check_neutron { |
| 1125 | local from_net=$1 |
| 1126 | local key_file=$2 |
| 1127 | local ip=$3 |
| 1128 | local user=$4 |
| 1129 | local timeout_sec=$5 |
| 1130 | local probe_cmd = "" |
| 1131 | probe_cmd=`_get_probe_cmd_prefix $from_net` |
| 1132 | local testcmd="$probe_cmd ssh -o StrictHostKeyChecking=no -i $key_file ${user}@$ip echo success" |
| 1133 | test_with_retry "$testcmd" "server $ip didn't become ssh-able" $timeout_sec |
| 1134 | } |
| 1135 | |
| 1136 | function plugin_agent_add_l2_agent_extension { |
| 1137 | local l2_agent_extension=$1 |
| 1138 | if [[ -z "$L2_AGENT_EXTENSIONS" ]]; then |
| 1139 | L2_AGENT_EXTENSIONS=$l2_agent_extension |
| 1140 | elif [[ ! ,${L2_AGENT_EXTENSIONS}, =~ ,${l2_agent_extension}, ]]; then |
| 1141 | L2_AGENT_EXTENSIONS+=",$l2_agent_extension" |
YAMAMOTO Takashi | c043b6f | 2017-02-23 22:30:08 -0500 | [diff] [blame] | 1142 | fi |
| 1143 | } |
| 1144 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 1145 | # Restore xtrace |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 1146 | $_XTRACE_NEUTRON |
| 1147 | |
| 1148 | # Tell emacs to use shell-script-mode |
| 1149 | ## Local variables: |
| 1150 | ## mode: shell-script |
| 1151 | ## End: |