| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 1 | #!/bin/bash | 
|  | 2 | # | 
|  | 3 | #    Licensed under the Apache License, Version 2.0 (the "License"); you may | 
|  | 4 | #    not use this file except in compliance with the License. You may obtain | 
|  | 5 | #    a copy of the License at | 
|  | 6 | # | 
|  | 7 | #         http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 8 | # | 
|  | 9 | #    Unless required by applicable law or agreed to in writing, software | 
|  | 10 | #    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | 
|  | 11 | #    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | 
|  | 12 | #    License for the specific language governing permissions and limitations | 
|  | 13 | #    under the License. | 
|  | 14 | # | 
|  | 15 |  | 
|  | 16 | # Global Sources | 
|  | 17 | # -------------- | 
|  | 18 |  | 
|  | 19 | # There are some ovs functions OVN depends on that must be sourced from | 
|  | 20 | # the ovs neutron plugins. | 
|  | 21 | source ${TOP_DIR}/lib/neutron_plugins/ovs_base | 
|  | 22 | source ${TOP_DIR}/lib/neutron_plugins/openvswitch_agent | 
|  | 23 |  | 
| Ian Wienand | 7783563 | 2021-05-13 13:14:42 +1000 | [diff] [blame] | 24 | # Load devstack ovs compliation and loading functions | 
|  | 25 | source ${TOP_DIR}/lib/neutron_plugins/ovs_source | 
|  | 26 |  | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 27 | # Set variables for building OVN from source | 
|  | 28 | OVN_REPO=${OVN_REPO:-https://github.com/ovn-org/ovn.git} | 
|  | 29 | OVN_REPO_NAME=$(basename ${OVN_REPO} | cut -f1 -d'.') | 
|  | 30 | OVN_REPO_NAME=${OVN_REPO_NAME:-ovn} | 
|  | 31 | OVN_BRANCH=${OVN_BRANCH:-v20.06.1} | 
|  | 32 | # The commit removing OVN bits from the OVS tree, it is the commit that is not | 
|  | 33 | # present in OVN tree and is used to distinguish if OVN is part of OVS or not. | 
|  | 34 | # https://github.com/openvswitch/ovs/commit/05bf1dbb98b0635a51f75e268ef8aed27601401d | 
|  | 35 | OVN_SPLIT_HASH=05bf1dbb98b0635a51f75e268ef8aed27601401d | 
|  | 36 |  | 
|  | 37 | if is_service_enabled tls-proxy; then | 
|  | 38 | OVN_PROTO=ssl | 
|  | 39 | else | 
|  | 40 | OVN_PROTO=tcp | 
|  | 41 | fi | 
|  | 42 |  | 
|  | 43 | # How to connect to ovsdb-server hosting the OVN SB database. | 
|  | 44 | OVN_SB_REMOTE=${OVN_SB_REMOTE:-$OVN_PROTO:$SERVICE_HOST:6642} | 
|  | 45 |  | 
|  | 46 | # How to connect to ovsdb-server hosting the OVN NB database | 
|  | 47 | OVN_NB_REMOTE=${OVN_NB_REMOTE:-$OVN_PROTO:$SERVICE_HOST:6641} | 
|  | 48 |  | 
|  | 49 | # ml2/config for neutron_sync_mode | 
|  | 50 | OVN_NEUTRON_SYNC_MODE=${OVN_NEUTRON_SYNC_MODE:-log} | 
|  | 51 |  | 
|  | 52 | # Configured DNS servers to be used with internal_dns extension, only | 
|  | 53 | # if the subnet DNS is not configured. | 
|  | 54 | OVN_DNS_SERVERS=${OVN_DNS_SERVERS:-8.8.8.8} | 
|  | 55 |  | 
|  | 56 | # The type of OVN L3 Scheduler to use. The OVN L3 Scheduler determines the | 
|  | 57 | # hypervisor/chassis where a routers gateway should be hosted in OVN. The | 
|  | 58 | # default OVN L3 scheduler is leastloaded | 
|  | 59 | OVN_L3_SCHEDULER=${OVN_L3_SCHEDULER:-leastloaded} | 
|  | 60 |  | 
|  | 61 | # A UUID to uniquely identify this system.  If one is not specified, a random | 
|  | 62 | # one will be generated.  A randomly generated UUID will be saved in a file | 
| Slawek Kaplonski | 1ed276c | 2021-03-11 13:10:28 +0100 | [diff] [blame] | 63 | # $OVS_SYSCONFDIR/system-id.conf (typically /etc/openvswitch/system-id.conf) | 
|  | 64 | # so that the same one will be re-used if you re-run DevStack or restart | 
|  | 65 | # Open vSwitch service. | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 66 | OVN_UUID=${OVN_UUID:-} | 
|  | 67 |  | 
|  | 68 | # Whether or not to build the openvswitch kernel module from ovs.  This is required | 
|  | 69 | # unless the distro kernel includes ovs+conntrack support. | 
|  | 70 | OVN_BUILD_MODULES=$(trueorfalse False OVN_BUILD_MODULES) | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 71 | OVN_BUILD_FROM_SOURCE=$(trueorfalse False OVN_BUILD_FROM_SOURCE) | 
| Slawek Kaplonski | 4185358 | 2021-07-06 12:05:31 +0200 | [diff] [blame] | 72 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then | 
|  | 73 | Q_BUILD_OVS_FROM_GIT=True | 
|  | 74 | fi | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 75 |  | 
|  | 76 | # Whether or not to install the ovs python module from ovs source.  This can be | 
|  | 77 | # used to test and validate new ovs python features.  This should only be used | 
|  | 78 | # for development purposes since the ovs python version is controlled by OpenStack | 
|  | 79 | # requirements. | 
|  | 80 | OVN_INSTALL_OVS_PYTHON_MODULE=$(trueorfalse False OVN_INSTALL_OVS_PYTHON_MODULE) | 
|  | 81 |  | 
|  | 82 | # GENEVE overlay protocol overhead. Defaults to 38 bytes plus the IP version | 
|  | 83 | # overhead (20 bytes for IPv4 (default) or 40 bytes for IPv6) which is determined | 
|  | 84 | # based on the ML2 overlay_ip_version option. The ML2 framework will use this to | 
|  | 85 | # configure the MTU DHCP option. | 
|  | 86 | OVN_GENEVE_OVERHEAD=${OVN_GENEVE_OVERHEAD:-38} | 
|  | 87 |  | 
| Lucas Alvares Gomes | e38a39a | 2021-05-14 09:14:24 +0100 | [diff] [blame] | 88 | # The log level of the OVN databases (north and south). | 
|  | 89 | # Supported log levels are: off, emer, err, warn, info or dbg. | 
|  | 90 | # More information about log levels can be found at | 
|  | 91 | # http://www.openvswitch.org/support/dist-docs/ovs-appctl.8.txt | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 92 | OVN_DBS_LOG_LEVEL=${OVN_DBS_LOG_LEVEL:-info} | 
|  | 93 |  | 
|  | 94 | OVN_META_CONF=$NEUTRON_CONF_DIR/neutron_ovn_metadata_agent.ini | 
|  | 95 | OVN_META_DATA_HOST=${OVN_META_DATA_HOST:-$(ipv6_unquote $SERVICE_HOST)} | 
|  | 96 |  | 
| Lucas Alvares Gomes | e38a39a | 2021-05-14 09:14:24 +0100 | [diff] [blame] | 97 | # If True (default) the node will be considered a gateway node. | 
|  | 98 | ENABLE_CHASSIS_AS_GW=$(trueorfalse True ENABLE_CHASSIS_AS_GW) | 
| Lucas Alvares Gomes | 22038a9 | 2021-05-27 13:44:20 +0100 | [diff] [blame] | 99 | OVN_L3_CREATE_PUBLIC_NETWORK=$(trueorfalse True OVN_L3_CREATE_PUBLIC_NETWORK) | 
| Lucas Alvares Gomes | e38a39a | 2021-05-14 09:14:24 +0100 | [diff] [blame] | 100 |  | 
| Lucas Alvares Gomes | 6ecfe67 | 2020-09-23 11:54:19 +0100 | [diff] [blame] | 101 | export OVSDB_SERVER_LOCAL_HOST=$SERVICE_LOCAL_HOST | 
| Brian Haley | c869d59 | 2020-02-28 14:55:08 -0500 | [diff] [blame] | 102 | TUNNEL_IP=$TUNNEL_ENDPOINT_IP | 
| Lucas Alvares Gomes | 6ecfe67 | 2020-09-23 11:54:19 +0100 | [diff] [blame] | 103 | if [[ "$SERVICE_IP_VERSION" == 6 ]]; then | 
|  | 104 | OVSDB_SERVER_LOCAL_HOST=[$OVSDB_SERVER_LOCAL_HOST] | 
| Brian Haley | c869d59 | 2020-02-28 14:55:08 -0500 | [diff] [blame] | 105 | TUNNEL_IP=[$TUNNEL_IP] | 
| Lucas Alvares Gomes | 6ecfe67 | 2020-09-23 11:54:19 +0100 | [diff] [blame] | 106 | fi | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 107 |  | 
|  | 108 | OVN_IGMP_SNOOPING_ENABLE=$(trueorfalse False OVN_IGMP_SNOOPING_ENABLE) | 
|  | 109 |  | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 110 | OVS_PREFIX= | 
|  | 111 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then | 
|  | 112 | OVS_PREFIX=/usr/local | 
|  | 113 | fi | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 114 | OVS_SBINDIR=$OVS_PREFIX/sbin | 
|  | 115 | OVS_BINDIR=$OVS_PREFIX/bin | 
|  | 116 | OVS_RUNDIR=$OVS_PREFIX/var/run/openvswitch | 
|  | 117 | OVS_SHAREDIR=$OVS_PREFIX/share/openvswitch | 
|  | 118 | OVS_SCRIPTDIR=$OVS_SHAREDIR/scripts | 
|  | 119 | OVS_DATADIR=$DATA_DIR/ovs | 
| Rodolfo Alonso Hernandez | 30819e6 | 2021-03-22 07:14:50 +0000 | [diff] [blame] | 120 | OVS_SYSCONFDIR=${OVS_SYSCONFDIR:-$OVS_PREFIX/etc/openvswitch} | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 121 |  | 
| Gregory Thiemonge | 6822ff3 | 2021-09-01 09:36:31 +0200 | [diff] [blame] | 122 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then | 
|  | 123 | OVN_DATADIR=$DATA_DIR/ovn | 
|  | 124 | else | 
|  | 125 | # When using OVN from packages, the data dir for OVN DBs is | 
|  | 126 | # /var/lib/ovn | 
|  | 127 | OVN_DATADIR=/var/lib/ovn | 
|  | 128 | fi | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 129 | OVN_SHAREDIR=$OVS_PREFIX/share/ovn | 
|  | 130 | OVN_SCRIPTDIR=$OVN_SHAREDIR/scripts | 
|  | 131 | OVN_RUNDIR=$OVS_PREFIX/var/run/ovn | 
|  | 132 |  | 
|  | 133 | NEUTRON_OVN_BIN_DIR=$(get_python_exec_prefix) | 
|  | 134 | NEUTRON_OVN_METADATA_BINARY="neutron-ovn-metadata-agent" | 
|  | 135 |  | 
|  | 136 | STACK_GROUP="$( id --group --name "$STACK_USER" )" | 
|  | 137 |  | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 138 | OVN_NORTHD_SERVICE=ovn-northd.service | 
|  | 139 | if is_ubuntu; then | 
|  | 140 | # The ovn-central.service file on Ubuntu is responsible for starting | 
|  | 141 | # ovn-northd and the OVN DBs (on CentOS this is done by ovn-northd.service) | 
|  | 142 | OVN_NORTHD_SERVICE=ovn-central.service | 
|  | 143 | fi | 
|  | 144 | OVSDB_SERVER_SERVICE=ovsdb-server.service | 
|  | 145 | OVS_VSWITCHD_SERVICE=ovs-vswitchd.service | 
|  | 146 | OVN_CONTROLLER_SERVICE=ovn-controller.service | 
|  | 147 | OVN_CONTROLLER_VTEP_SERVICE=ovn-controller-vtep.service | 
|  | 148 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then | 
|  | 149 | OVSDB_SERVER_SERVICE=devstack@ovsdb-server.service | 
|  | 150 | OVS_VSWITCHD_SERVICE=devstack@ovs-vswitchd.service | 
|  | 151 | OVN_NORTHD_SERVICE=devstack@ovn-northd.service | 
|  | 152 | OVN_CONTROLLER_SERVICE=devstack@ovn-controller.service | 
|  | 153 | OVN_CONTROLLER_VTEP_SERVICE=devstack@ovn-controller-vtep.service | 
|  | 154 | fi | 
|  | 155 |  | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 156 | # Defaults Overwrite | 
|  | 157 | # ------------------ | 
|  | 158 |  | 
|  | 159 | Q_ML2_PLUGIN_MECHANISM_DRIVERS=${Q_ML2_PLUGIN_MECHANISM_DRIVERS:-ovn,logger} | 
|  | 160 | Q_ML2_PLUGIN_TYPE_DRIVERS=${Q_ML2_PLUGIN_TYPE_DRIVERS:-local,flat,vlan,geneve} | 
|  | 161 | Q_ML2_TENANT_NETWORK_TYPE=${Q_ML2_TENANT_NETWORK_TYPE:-"geneve"} | 
|  | 162 | Q_ML2_PLUGIN_GENEVE_TYPE_OPTIONS=${Q_ML2_PLUGIN_GENEVE_TYPE_OPTIONS:-"vni_ranges=1:65536"} | 
| Lucas Alvares Gomes | e7625fc | 2020-08-26 09:46:35 +0100 | [diff] [blame] | 163 | Q_ML2_PLUGIN_EXT_DRIVERS=${Q_ML2_PLUGIN_EXT_DRIVERS:-port_security,qos} | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 164 | # this one allows empty: | 
|  | 165 | ML2_L3_PLUGIN=${ML2_L3_PLUGIN-"ovn-router"} | 
|  | 166 |  | 
| Flavio Fernandes | a2273cc | 2021-02-06 16:23:36 -0500 | [diff] [blame] | 167 | Q_LOG_DRIVER_RATE_LIMIT=${Q_LOG_DRIVER_RATE_LIMIT:-100} | 
|  | 168 | Q_LOG_DRIVER_BURST_LIMIT=${Q_LOG_DRIVER_BURST_LIMIT:-25} | 
|  | 169 | Q_LOG_DRIVER_LOG_BASE=${Q_LOG_DRIVER_LOG_BASE:-acl_log_meter} | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 170 |  | 
|  | 171 | # Utility Functions | 
|  | 172 | # ----------------- | 
|  | 173 |  | 
| yatinkarel | 1baa890 | 2022-05-06 17:53:54 +0530 | [diff] [blame] | 174 | function wait_for_db_file { | 
|  | 175 | local count=0 | 
|  | 176 | while [ ! -f $1 ]; do | 
|  | 177 | sleep 1 | 
|  | 178 | count=$((count+1)) | 
| Dr. Jens Harbott | bd6e520 | 2022-07-03 22:27:15 +0200 | [diff] [blame] | 179 | if [ "$count" -gt 40 ]; then | 
| yatinkarel | 1baa890 | 2022-05-06 17:53:54 +0530 | [diff] [blame] | 180 | die $LINENO "DB File $1 not found" | 
|  | 181 | fi | 
|  | 182 | done | 
|  | 183 | } | 
|  | 184 |  | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 185 | function wait_for_sock_file { | 
|  | 186 | local count=0 | 
|  | 187 | while [ ! -S $1 ]; do | 
|  | 188 | sleep 1 | 
|  | 189 | count=$((count+1)) | 
| Dr. Jens Harbott | bd6e520 | 2022-07-03 22:27:15 +0200 | [diff] [blame] | 190 | if [ "$count" -gt 40 ]; then | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 191 | die $LINENO "Socket $1 not found" | 
|  | 192 | fi | 
|  | 193 | done | 
|  | 194 | } | 
|  | 195 |  | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 196 | function use_new_ovn_repository { | 
| Lucas Alvares Gomes | e38a39a | 2021-05-14 09:14:24 +0100 | [diff] [blame] | 197 | if [[ "$OVN_BUILD_FROM_SOURCE" == "False" ]]; then | 
|  | 198 | return 0 | 
|  | 199 | fi | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 200 | if [ -z "$is_new_ovn" ]; then | 
|  | 201 | local ovs_repo_dir=$DEST/$OVS_REPO_NAME | 
|  | 202 | if [ ! -d $ovs_repo_dir ]; then | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 203 | git_timed clone $OVS_REPO $ovs_repo_dir | 
|  | 204 | pushd $ovs_repo_dir | 
|  | 205 | git checkout $OVS_BRANCH | 
|  | 206 | popd | 
|  | 207 | else | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 208 | clone_repository $OVS_REPO $ovs_repo_dir $OVS_BRANCH | 
|  | 209 | fi | 
|  | 210 | # Check the split commit exists in the current branch | 
|  | 211 | pushd $ovs_repo_dir | 
|  | 212 | git log $OVS_BRANCH --pretty=format:"%H" | grep -q $OVN_SPLIT_HASH | 
|  | 213 | is_new_ovn=$? | 
|  | 214 | popd | 
|  | 215 | fi | 
|  | 216 | return $is_new_ovn | 
|  | 217 | } | 
|  | 218 |  | 
|  | 219 | # NOTE(rtheis): Function copied from DevStack _neutron_ovs_base_setup_bridge | 
|  | 220 | # and _neutron_ovs_base_add_bridge with the call to neutron-ovs-cleanup | 
|  | 221 | # removed. The call is not relevant for OVN, as it is specific to the use | 
|  | 222 | # of Neutron's OVS agent and hangs when running stack.sh because | 
|  | 223 | # neutron-ovs-cleanup uses the OVSDB native interface. | 
|  | 224 | function ovn_base_setup_bridge { | 
|  | 225 | local bridge=$1 | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 226 | local addbr_cmd="sudo ovs-vsctl --no-wait -- --may-exist add-br $bridge -- set bridge $bridge protocols=OpenFlow13,OpenFlow15" | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 227 |  | 
|  | 228 | if [ "$OVS_DATAPATH_TYPE" != "system" ] ; then | 
|  | 229 | addbr_cmd="$addbr_cmd -- set Bridge $bridge datapath_type=${OVS_DATAPATH_TYPE}" | 
|  | 230 | fi | 
|  | 231 |  | 
|  | 232 | $addbr_cmd | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 233 | sudo ovs-vsctl --no-wait br-set-external-id $bridge bridge-id $bridge | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 234 | } | 
|  | 235 |  | 
|  | 236 | function _start_process { | 
|  | 237 | $SYSTEMCTL daemon-reload | 
|  | 238 | $SYSTEMCTL enable $1 | 
|  | 239 | $SYSTEMCTL restart $1 | 
|  | 240 | } | 
|  | 241 |  | 
|  | 242 | function _run_process { | 
|  | 243 | local service=$1 | 
|  | 244 | local cmd="$2" | 
|  | 245 | local stop_cmd="$3" | 
|  | 246 | local group=$4 | 
|  | 247 | local user=${5:-$STACK_USER} | 
|  | 248 |  | 
|  | 249 | local systemd_service="devstack@$service.service" | 
|  | 250 | local unit_file="$SYSTEMD_DIR/$systemd_service" | 
|  | 251 | local environment="OVN_RUNDIR=$OVS_RUNDIR OVN_DBDIR=$OVN_DATADIR OVN_LOGDIR=$LOGDIR OVS_RUNDIR=$OVS_RUNDIR OVS_DBDIR=$OVS_DATADIR OVS_LOGDIR=$LOGDIR" | 
|  | 252 |  | 
|  | 253 | echo "Starting $service executed command": $cmd | 
|  | 254 |  | 
|  | 255 | write_user_unit_file $systemd_service "$cmd" "$group" "$user" | 
|  | 256 | iniset -sudo $unit_file "Service" "Type" "forking" | 
|  | 257 | iniset -sudo $unit_file "Service" "RemainAfterExit" "yes" | 
|  | 258 | iniset -sudo $unit_file "Service" "KillMode" "mixed" | 
|  | 259 | iniset -sudo $unit_file "Service" "LimitNOFILE" "65536" | 
|  | 260 | iniset -sudo $unit_file "Service" "Environment" "$environment" | 
|  | 261 | if [ -n "$stop_cmd" ]; then | 
|  | 262 | iniset -sudo $unit_file "Service" "ExecStop" "$stop_cmd" | 
|  | 263 | fi | 
|  | 264 |  | 
|  | 265 | _start_process $systemd_service | 
|  | 266 |  | 
|  | 267 | local testcmd="test -e $OVS_RUNDIR/$service.pid" | 
|  | 268 | test_with_retry "$testcmd" "$service did not start" $SERVICE_TIMEOUT 1 | 
| Rodolfo Alonso Hernandez | 8c67103 | 2022-02-09 18:01:46 +0000 | [diff] [blame] | 269 | local service_ctl_file | 
|  | 270 | service_ctl_file=$(ls $OVS_RUNDIR | grep $service | grep ctl) | 
|  | 271 | if [ -z "$service_ctl_file" ]; then | 
|  | 272 | die $LINENO "ctl file for service $service is not present." | 
|  | 273 | fi | 
|  | 274 | sudo ovs-appctl -t $OVS_RUNDIR/$service_ctl_file vlog/set console:off syslog:info file:info | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 275 | } | 
|  | 276 |  | 
|  | 277 | function clone_repository { | 
|  | 278 | local repo=$1 | 
|  | 279 | local dir=$2 | 
|  | 280 | local branch=$3 | 
|  | 281 | # Set ERROR_ON_CLONE to false to avoid the need of having the | 
|  | 282 | # repositories like OVN and OVS in the required_projects of the job | 
|  | 283 | # definition. | 
|  | 284 | ERROR_ON_CLONE=false git_clone $repo $dir $branch | 
|  | 285 | } | 
|  | 286 |  | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 287 | function create_public_bridge { | 
|  | 288 | # Create the public bridge that OVN will use | 
| Radosław Piliszek | 9529878 | 2021-06-08 16:19:40 +0000 | [diff] [blame] | 289 | sudo ovs-vsctl --may-exist add-br $PUBLIC_BRIDGE -- set bridge $PUBLIC_BRIDGE protocols=OpenFlow13,OpenFlow15 | 
|  | 290 | sudo ovs-vsctl set open . external-ids:ovn-bridge-mappings=$PHYSICAL_NETWORK:$PUBLIC_BRIDGE | 
| Slawek Kaplonski | b1a89eb | 2021-08-26 21:42:32 +0200 | [diff] [blame] | 291 | _configure_public_network_connectivity | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 292 | } | 
|  | 293 |  | 
|  | 294 | function _disable_libvirt_apparmor { | 
|  | 295 | if ! sudo aa-status --enabled ; then | 
|  | 296 | return 0 | 
|  | 297 | fi | 
|  | 298 | # NOTE(arosen): This is used as a work around to allow newer versions | 
|  | 299 | # of libvirt to work with ovs configured ports. See LP#1466631. | 
|  | 300 | # requires the apparmor-utils | 
|  | 301 | install_package apparmor-utils | 
|  | 302 | # disables apparmor for libvirtd | 
|  | 303 | sudo aa-complain /etc/apparmor.d/usr.sbin.libvirtd | 
|  | 304 | } | 
|  | 305 |  | 
|  | 306 |  | 
|  | 307 | # OVN compilation functions | 
|  | 308 | # ------------------------- | 
|  | 309 |  | 
|  | 310 |  | 
|  | 311 | # compile_ovn() - Compile OVN from source and load needed modules | 
|  | 312 | #                 Accepts three parameters: | 
| Slawek Kaplonski | 5888947 | 2021-12-22 16:00:29 +0100 | [diff] [blame] | 313 | #                   - first optional parameter defines prefix for | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 314 | #                     ovn compilation | 
| Slawek Kaplonski | 5888947 | 2021-12-22 16:00:29 +0100 | [diff] [blame] | 315 | #                   - second optional parameter defines localstatedir for | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 316 | #                     ovn single machine runtime | 
|  | 317 | function compile_ovn { | 
| Slawek Kaplonski | 5888947 | 2021-12-22 16:00:29 +0100 | [diff] [blame] | 318 | local prefix=$1 | 
|  | 319 | local localstatedir=$2 | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 320 |  | 
|  | 321 | if [ -n "$prefix" ]; then | 
|  | 322 | prefix="--prefix=$prefix" | 
|  | 323 | fi | 
|  | 324 |  | 
|  | 325 | if [ -n "$localstatedir" ]; then | 
|  | 326 | localstatedir="--localstatedir=$localstatedir" | 
|  | 327 | fi | 
|  | 328 |  | 
|  | 329 | clone_repository $OVN_REPO $DEST/$OVN_REPO_NAME $OVN_BRANCH | 
|  | 330 | pushd $DEST/$OVN_REPO_NAME | 
|  | 331 |  | 
|  | 332 | if [ ! -f configure ] ; then | 
|  | 333 | ./boot.sh | 
|  | 334 | fi | 
|  | 335 |  | 
|  | 336 | if [ ! -f config.status ] || [ configure -nt config.status ] ; then | 
|  | 337 | ./configure --with-ovs-source=$DEST/$OVS_REPO_NAME $prefix $localstatedir | 
|  | 338 | fi | 
|  | 339 | make -j$(($(nproc) + 1)) | 
|  | 340 | sudo make install | 
|  | 341 | popd | 
|  | 342 | } | 
|  | 343 |  | 
|  | 344 |  | 
|  | 345 | # OVN Neutron driver functions | 
|  | 346 | # ---------------------------- | 
|  | 347 |  | 
|  | 348 | # OVN service sanity check | 
|  | 349 | function ovn_sanity_check { | 
|  | 350 | if is_service_enabled q-agt neutron-agt; then | 
|  | 351 | die $LINENO "The q-agt/neutron-agt service must be disabled with OVN." | 
|  | 352 | elif is_service_enabled q-l3 neutron-l3; then | 
|  | 353 | die $LINENO "The q-l3/neutron-l3 service must be disabled with OVN." | 
|  | 354 | elif is_service_enabled q-svc neutron-api && [[ ! $Q_ML2_PLUGIN_MECHANISM_DRIVERS =~ "ovn" ]]; then | 
|  | 355 | die $LINENO "OVN needs to be enabled in \$Q_ML2_PLUGIN_MECHANISM_DRIVERS" | 
|  | 356 | elif is_service_enabled q-svc neutron-api && [[ ! $Q_ML2_PLUGIN_TYPE_DRIVERS =~ "geneve" ]]; then | 
|  | 357 | die $LINENO "Geneve needs to be enabled in \$Q_ML2_PLUGIN_TYPE_DRIVERS to be used with OVN" | 
|  | 358 | fi | 
|  | 359 | } | 
|  | 360 |  | 
|  | 361 | # install_ovn() - Collect source and prepare | 
|  | 362 | function install_ovn { | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 363 | echo "Installing OVN and dependent packages" | 
|  | 364 |  | 
|  | 365 | # Check the OVN configuration | 
|  | 366 | ovn_sanity_check | 
|  | 367 |  | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 368 | # Install tox, used to generate the config (see devstack/override-defaults) | 
|  | 369 | pip_install tox | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 370 |  | 
|  | 371 | sudo mkdir -p $OVS_RUNDIR | 
|  | 372 | sudo chown $(whoami) $OVS_RUNDIR | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 373 | # NOTE(lucasagomes): To keep things simpler, let's reuse the same | 
|  | 374 | # RUNDIR for both OVS and OVN. This way we avoid having to specify the | 
|  | 375 | # --db option in the ovn-{n,s}bctl commands while playing with DevStack | 
|  | 376 | sudo ln -s $OVS_RUNDIR $OVN_RUNDIR | 
|  | 377 |  | 
|  | 378 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then | 
|  | 379 | # If OVS is already installed, remove it, because we're about to | 
|  | 380 | # re-install it from source. | 
|  | 381 | for package in openvswitch openvswitch-switch openvswitch-common; do | 
|  | 382 | if is_package_installed $package ; then | 
|  | 383 | uninstall_package $package | 
|  | 384 | fi | 
|  | 385 | done | 
|  | 386 |  | 
|  | 387 | remove_ovs_packages | 
|  | 388 | sudo rm -f $OVS_RUNDIR/* | 
|  | 389 |  | 
|  | 390 | compile_ovs $OVN_BUILD_MODULES | 
|  | 391 | if use_new_ovn_repository; then | 
| Slawek Kaplonski | 5888947 | 2021-12-22 16:00:29 +0100 | [diff] [blame] | 392 | compile_ovn | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 393 | fi | 
|  | 394 |  | 
|  | 395 | sudo mkdir -p $OVS_PREFIX/var/log/openvswitch | 
|  | 396 | sudo chown $(whoami) $OVS_PREFIX/var/log/openvswitch | 
|  | 397 | sudo mkdir -p $OVS_PREFIX/var/log/ovn | 
|  | 398 | sudo chown $(whoami) $OVS_PREFIX/var/log/ovn | 
|  | 399 | else | 
| yatinkarel | 6dd896f | 2022-04-26 16:37:07 +0530 | [diff] [blame] | 400 | # Load fixup_ovn_centos | 
|  | 401 | source ${TOP_DIR}/tools/fixup_stuff.sh | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 402 | fixup_ovn_centos | 
|  | 403 | install_package $(get_packages openvswitch) | 
|  | 404 | install_package $(get_packages ovn) | 
|  | 405 | fi | 
|  | 406 |  | 
|  | 407 | # Ensure that the OVS commands are accessible in the PATH | 
|  | 408 | export PATH=$OVS_BINDIR:$PATH | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 409 |  | 
|  | 410 | # Archive log files and create new | 
|  | 411 | local log_archive_dir=$LOGDIR/archive | 
|  | 412 | mkdir -p $log_archive_dir | 
|  | 413 | for logfile in ovs-vswitchd.log ovn-northd.log ovn-controller.log ovn-controller-vtep.log ovs-vtep.log ovsdb-server.log ovsdb-server-nb.log ovsdb-server-sb.log; do | 
|  | 414 | if [ -f "$LOGDIR/$logfile" ] ; then | 
|  | 415 | mv "$LOGDIR/$logfile"  "$log_archive_dir/$logfile.${CURRENT_LOG_TIME}" | 
|  | 416 | fi | 
|  | 417 | done | 
|  | 418 |  | 
|  | 419 | # Install ovsdbapp from source if requested | 
|  | 420 | if use_library_from_git "ovsdbapp"; then | 
|  | 421 | git_clone_by_name "ovsdbapp" | 
|  | 422 | setup_dev_lib "ovsdbapp" | 
|  | 423 | fi | 
|  | 424 |  | 
|  | 425 | # Install ovs python module from ovs source. | 
|  | 426 | if [[ "$OVN_INSTALL_OVS_PYTHON_MODULE" == "True" ]]; then | 
|  | 427 | sudo pip uninstall -y ovs | 
|  | 428 | # Clone the OVS repository if it's not yet present | 
|  | 429 | clone_repository $OVS_REPO $DEST/$OVS_REPO_NAME $OVS_BRANCH | 
|  | 430 | sudo pip install -e $DEST/$OVS_REPO_NAME/python | 
|  | 431 | fi | 
|  | 432 | } | 
|  | 433 |  | 
|  | 434 | # filter_network_api_extensions() - Remove non-supported API extensions by | 
|  | 435 | # the OVN driver from the list of enabled API extensions | 
|  | 436 | function filter_network_api_extensions { | 
|  | 437 | SUPPORTED_NETWORK_API_EXTENSIONS=$($PYTHON -c \ | 
|  | 438 | 'from neutron.common.ovn import extensions ;\ | 
|  | 439 | print(",".join(extensions.ML2_SUPPORTED_API_EXTENSIONS))') | 
|  | 440 | SUPPORTED_NETWORK_API_EXTENSIONS=$SUPPORTED_NETWORK_API_EXTENSIONS,$($PYTHON -c \ | 
|  | 441 | 'from neutron.common.ovn import extensions ;\ | 
|  | 442 | print(",".join(extensions.ML2_SUPPORTED_API_EXTENSIONS_OVN_L3))') | 
|  | 443 | if is_service_enabled q-qos neutron-qos ; then | 
|  | 444 | SUPPORTED_NETWORK_API_EXTENSIONS="$SUPPORTED_NETWORK_API_EXTENSIONS,qos" | 
|  | 445 | fi | 
|  | 446 | NETWORK_API_EXTENSIONS=${NETWORK_API_EXTENSIONS:-$SUPPORTED_NETWORK_API_EXTENSIONS} | 
|  | 447 | extensions=$(echo $NETWORK_API_EXTENSIONS | tr ', ' '\n' | sort -u) | 
|  | 448 | supported_ext=$(echo $SUPPORTED_NETWORK_API_EXTENSIONS | tr ', ' '\n' | sort -u) | 
|  | 449 | enabled_ext=$(comm -12 <(echo -e "$extensions") <(echo -e "$supported_ext")) | 
|  | 450 | disabled_ext=$(comm -3 <(echo -e "$extensions") <(echo -e "$enabled_ext")) | 
|  | 451 |  | 
|  | 452 | # Log a message in case some extensions had to be disabled because | 
|  | 453 | # they are not supported by the OVN driver | 
|  | 454 | if [ ! -z "$disabled_ext" ]; then | 
|  | 455 | _disabled=$(echo $disabled_ext | tr ' ' ',') | 
|  | 456 | echo "The folling network API extensions have been disabled because they are not supported by OVN: $_disabled" | 
|  | 457 | fi | 
|  | 458 |  | 
|  | 459 | # Export the final list of extensions that have been enabled and are | 
|  | 460 | # supported by OVN | 
|  | 461 | export NETWORK_API_EXTENSIONS=$(echo $enabled_ext | tr ' ' ',') | 
|  | 462 | } | 
|  | 463 |  | 
|  | 464 | function configure_ovn_plugin { | 
|  | 465 | echo "Configuring Neutron for OVN" | 
|  | 466 |  | 
|  | 467 | if is_service_enabled q-svc ; then | 
|  | 468 | filter_network_api_extensions | 
|  | 469 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ml2_type_geneve max_header_size=$OVN_GENEVE_OVERHEAD | 
|  | 470 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_nb_connection="$OVN_NB_REMOTE" | 
|  | 471 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_sb_connection="$OVN_SB_REMOTE" | 
|  | 472 | if is_service_enabled tls-proxy; then | 
|  | 473 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_sb_ca_cert="$INT_CA_DIR/ca-chain.pem" | 
|  | 474 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_sb_certificate="$INT_CA_DIR/$DEVSTACK_CERT_NAME.crt" | 
|  | 475 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_sb_private_key="$INT_CA_DIR/private/$DEVSTACK_CERT_NAME.key" | 
|  | 476 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_nb_ca_cert="$INT_CA_DIR/ca-chain.pem" | 
|  | 477 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_nb_certificate="$INT_CA_DIR/$DEVSTACK_CERT_NAME.crt" | 
|  | 478 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_nb_private_key="$INT_CA_DIR/private/$DEVSTACK_CERT_NAME.key" | 
|  | 479 | fi | 
|  | 480 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn neutron_sync_mode="$OVN_NEUTRON_SYNC_MODE" | 
|  | 481 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_l3_scheduler="$OVN_L3_SCHEDULER" | 
|  | 482 | populate_ml2_config /$Q_PLUGIN_CONF_FILE securitygroup enable_security_group="$Q_USE_SECGROUP" | 
|  | 483 | inicomment /$Q_PLUGIN_CONF_FILE securitygroup firewall_driver | 
|  | 484 |  | 
| Flavio Fernandes | a2273cc | 2021-02-06 16:23:36 -0500 | [diff] [blame] | 485 | if is_service_enabled q-log neutron-log; then | 
|  | 486 | populate_ml2_config /$Q_PLUGIN_CONF_FILE network_log rate_limit="$Q_LOG_DRIVER_RATE_LIMIT" | 
|  | 487 | populate_ml2_config /$Q_PLUGIN_CONF_FILE network_log burst_limit="$Q_LOG_DRIVER_BURST_LIMIT" | 
|  | 488 | inicomment /$Q_PLUGIN_CONF_FILE network_log local_output_log_base="$Q_LOG_DRIVER_LOG_BASE" | 
|  | 489 | fi | 
|  | 490 |  | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 491 | if is_service_enabled q-ovn-metadata-agent; then | 
|  | 492 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_metadata_enabled=True | 
|  | 493 | else | 
|  | 494 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_metadata_enabled=False | 
|  | 495 | fi | 
|  | 496 |  | 
|  | 497 | if is_service_enabled q-dns neutron-dns ; then | 
|  | 498 | iniset $NEUTRON_CONF DEFAULT dns_domain openstackgate.local | 
|  | 499 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn dns_servers="$OVN_DNS_SERVERS" | 
|  | 500 | fi | 
|  | 501 |  | 
|  | 502 | iniset $NEUTRON_CONF ovs igmp_snooping_enable $OVN_IGMP_SNOOPING_ENABLE | 
|  | 503 | fi | 
|  | 504 |  | 
|  | 505 | if is_service_enabled q-dhcp neutron-dhcp ; then | 
|  | 506 | iniset $NEUTRON_CONF DEFAULT dhcp_agent_notification True | 
|  | 507 | else | 
|  | 508 | iniset $NEUTRON_CONF DEFAULT dhcp_agent_notification False | 
|  | 509 | fi | 
|  | 510 |  | 
|  | 511 | if is_service_enabled n-api-meta ; then | 
|  | 512 | if is_service_enabled q-ovn-metadata-agent ; then | 
|  | 513 | iniset $NOVA_CONF neutron service_metadata_proxy True | 
|  | 514 | fi | 
|  | 515 | fi | 
|  | 516 | } | 
|  | 517 |  | 
|  | 518 | function configure_ovn { | 
|  | 519 | echo "Configuring OVN" | 
|  | 520 |  | 
|  | 521 | if [ -z "$OVN_UUID" ] ; then | 
| Slawek Kaplonski | 1ed276c | 2021-03-11 13:10:28 +0100 | [diff] [blame] | 522 | if [ -f $OVS_SYSCONFDIR/system-id.conf ]; then | 
|  | 523 | OVN_UUID=$(cat $OVS_SYSCONFDIR/system-id.conf) | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 524 | else | 
|  | 525 | OVN_UUID=$(uuidgen) | 
| Slawek Kaplonski | 1ed276c | 2021-03-11 13:10:28 +0100 | [diff] [blame] | 526 | echo $OVN_UUID | sudo tee $OVS_SYSCONFDIR/system-id.conf | 
|  | 527 | fi | 
|  | 528 | else | 
|  | 529 | local ovs_uuid | 
|  | 530 | ovs_uuid=$(cat $OVS_SYSCONFDIR/system-id.conf) | 
|  | 531 | if [ "$ovs_uuid" != $OVN_UUID ]; then | 
|  | 532 | echo $OVN_UUID | sudo tee $OVS_SYSCONFDIR/system-id.conf | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 533 | fi | 
|  | 534 | fi | 
|  | 535 |  | 
| Lucas Alvares Gomes | 8903d8c | 2021-01-15 09:26:44 +0000 | [diff] [blame] | 536 | # Erase the pre-set configurations from packages. DevStack will | 
|  | 537 | # configure OVS and OVN accordingly for its use. | 
|  | 538 | if [[ "$OVN_BUILD_FROM_SOURCE" == "False" ]] && is_fedora; then | 
|  | 539 | sudo truncate -s 0 /etc/openvswitch/default.conf | 
|  | 540 | sudo truncate -s 0 /etc/sysconfig/openvswitch | 
|  | 541 | sudo truncate -s 0 /etc/sysconfig/ovn | 
|  | 542 | fi | 
|  | 543 |  | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 544 | # Metadata | 
|  | 545 | if is_service_enabled q-ovn-metadata-agent && is_service_enabled ovn-controller; then | 
|  | 546 | sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR | 
|  | 547 |  | 
|  | 548 | mkdir -p $NEUTRON_DIR/etc/neutron/plugins/ml2 | 
|  | 549 | (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh) | 
|  | 550 |  | 
|  | 551 | cp $NEUTRON_DIR/etc/neutron_ovn_metadata_agent.ini.sample $OVN_META_CONF | 
|  | 552 | configure_root_helper_options $OVN_META_CONF | 
|  | 553 |  | 
|  | 554 | iniset $OVN_META_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL | 
|  | 555 | iniset $OVN_META_CONF DEFAULT nova_metadata_host $OVN_META_DATA_HOST | 
|  | 556 | iniset $OVN_META_CONF DEFAULT metadata_workers $API_WORKERS | 
|  | 557 | iniset $OVN_META_CONF DEFAULT state_path $NEUTRON_STATE_PATH | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 558 | iniset $OVN_META_CONF ovs ovsdb_connection tcp:$OVSDB_SERVER_LOCAL_HOST:6640 | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 559 | iniset $OVN_META_CONF ovn ovn_sb_connection $OVN_SB_REMOTE | 
|  | 560 | if is_service_enabled tls-proxy; then | 
|  | 561 | iniset $OVN_META_CONF ovn \ | 
|  | 562 | ovn_sb_ca_cert $INT_CA_DIR/ca-chain.pem | 
|  | 563 | iniset $OVN_META_CONF ovn \ | 
|  | 564 | ovn_sb_certificate $INT_CA_DIR/$DEVSTACK_CERT_NAME.crt | 
|  | 565 | iniset $OVN_META_CONF ovn \ | 
|  | 566 | ovn_sb_private_key $INT_CA_DIR/private/$DEVSTACK_CERT_NAME.key | 
|  | 567 | fi | 
|  | 568 | fi | 
|  | 569 | } | 
|  | 570 |  | 
|  | 571 | function init_ovn { | 
|  | 572 | # clean up from previous (possibly aborted) runs | 
|  | 573 | # create required data files | 
|  | 574 |  | 
|  | 575 | # Assumption: this is a dedicated test system and there is nothing important | 
|  | 576 | # in the ovn, ovn-nb, or ovs databases.  We're going to trash them and | 
|  | 577 | # create new ones on each devstack run. | 
|  | 578 |  | 
|  | 579 | _disable_libvirt_apparmor | 
| Roman Dobosz | bd68251 | 2021-11-26 15:34:50 +0100 | [diff] [blame] | 580 | local mkdir_cmd="mkdir -p ${OVN_DATADIR}" | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 581 |  | 
| Roman Dobosz | bd68251 | 2021-11-26 15:34:50 +0100 | [diff] [blame] | 582 | if [[ "$OVN_BUILD_FROM_SOURCE" == "False" ]]; then | 
|  | 583 | mkdir_cmd="sudo ${mkdir_cmd}" | 
| yatinkarel | b575af0 | 2021-11-26 12:44:41 +0530 | [diff] [blame] | 584 | fi | 
| Roman Dobosz | bd68251 | 2021-11-26 15:34:50 +0100 | [diff] [blame] | 585 |  | 
|  | 586 | $mkdir_cmd | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 587 | mkdir -p $OVS_DATADIR | 
|  | 588 |  | 
|  | 589 | rm -f $OVS_DATADIR/*.db | 
|  | 590 | rm -f $OVS_DATADIR/.*.db.~lock~ | 
| Gregory Thiemonge | 6822ff3 | 2021-09-01 09:36:31 +0200 | [diff] [blame] | 591 | sudo rm -f $OVN_DATADIR/*.db | 
|  | 592 | sudo rm -f $OVN_DATADIR/.*.db.~lock~ | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 593 | } | 
|  | 594 |  | 
|  | 595 | function _start_ovs { | 
|  | 596 | echo "Starting OVS" | 
|  | 597 | if is_service_enabled ovn-controller ovn-controller-vtep ovn-northd; then | 
|  | 598 | # ovsdb-server and ovs-vswitchd are used privately in OVN as openvswitch service names. | 
|  | 599 | enable_service ovsdb-server | 
|  | 600 | enable_service ovs-vswitchd | 
|  | 601 |  | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 602 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then | 
|  | 603 | if [ ! -f $OVS_DATADIR/conf.db ]; then | 
|  | 604 | ovsdb-tool create $OVS_DATADIR/conf.db $OVS_SHAREDIR/vswitch.ovsschema | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 605 | fi | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 606 |  | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 607 | if is_service_enabled ovn-controller-vtep; then | 
|  | 608 | if [ ! -f $OVS_DATADIR/vtep.db ]; then | 
|  | 609 | ovsdb-tool create $OVS_DATADIR/vtep.db $OVS_SHAREDIR/vtep.ovsschema | 
|  | 610 | fi | 
|  | 611 | fi | 
|  | 612 |  | 
|  | 613 | local dbcmd="$OVS_SBINDIR/ovsdb-server --remote=punix:$OVS_RUNDIR/db.sock --remote=ptcp:6640:$OVSDB_SERVER_LOCAL_HOST --pidfile --detach --log-file" | 
|  | 614 | dbcmd+=" --remote=db:Open_vSwitch,Open_vSwitch,manager_options" | 
|  | 615 | if is_service_enabled ovn-controller-vtep; then | 
|  | 616 | dbcmd+=" --remote=db:hardware_vtep,Global,managers $OVS_DATADIR/vtep.db" | 
|  | 617 | fi | 
|  | 618 | dbcmd+=" $OVS_DATADIR/conf.db" | 
| Slawek Kaplonski | 3de92db | 2022-08-26 12:58:29 +0200 | [diff] [blame] | 619 | _run_process ovsdb-server "$dbcmd" "" "$STACK_GROUP" "root" | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 620 |  | 
|  | 621 | # Note: ovn-controller will create and configure br-int once it is started. | 
|  | 622 | # So, no need to create it now because nothing depends on that bridge here. | 
|  | 623 | local ovscmd="$OVS_SBINDIR/ovs-vswitchd --log-file --pidfile --detach" | 
|  | 624 | _run_process ovs-vswitchd "$ovscmd" "" "$STACK_GROUP" "root" | 
|  | 625 | else | 
|  | 626 | _start_process "$OVSDB_SERVER_SERVICE" | 
|  | 627 | _start_process "$OVS_VSWITCHD_SERVICE" | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 628 | fi | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 629 |  | 
|  | 630 | echo "Configuring OVSDB" | 
|  | 631 | if is_service_enabled tls-proxy; then | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 632 | sudo ovs-vsctl --no-wait set-ssl \ | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 633 | $INT_CA_DIR/private/$DEVSTACK_CERT_NAME.key \ | 
|  | 634 | $INT_CA_DIR/$DEVSTACK_CERT_NAME.crt \ | 
|  | 635 | $INT_CA_DIR/ca-chain.pem | 
|  | 636 | fi | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 637 |  | 
|  | 638 | sudo ovs-vsctl --no-wait set-manager ptcp:6640:$OVSDB_SERVER_LOCAL_HOST | 
|  | 639 | sudo ovs-vsctl --no-wait set open_vswitch . system-type="devstack" | 
|  | 640 | sudo ovs-vsctl --no-wait set open_vswitch . external-ids:system-id="$OVN_UUID" | 
|  | 641 | sudo ovs-vsctl --no-wait set open_vswitch . external-ids:ovn-remote="$OVN_SB_REMOTE" | 
|  | 642 | sudo ovs-vsctl --no-wait set open_vswitch . external-ids:ovn-bridge="br-int" | 
|  | 643 | sudo ovs-vsctl --no-wait set open_vswitch . external-ids:ovn-encap-type="geneve" | 
| Brian Haley | c869d59 | 2020-02-28 14:55:08 -0500 | [diff] [blame] | 644 | sudo ovs-vsctl --no-wait set open_vswitch . external-ids:ovn-encap-ip="$TUNNEL_IP" | 
| Vladislav Belogrudov | 8a38a73 | 2022-05-25 12:58:52 +0300 | [diff] [blame] | 645 | sudo ovs-vsctl --no-wait set open_vswitch . external-ids:hostname=$(hostname) | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 646 | # Select this chassis to host gateway routers | 
|  | 647 | if [[ "$ENABLE_CHASSIS_AS_GW" == "True" ]]; then | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 648 | sudo ovs-vsctl --no-wait set open_vswitch . external-ids:ovn-cms-options="enable-chassis-as-gw" | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 649 | fi | 
|  | 650 |  | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 651 | if is_provider_network || [[ $Q_USE_PROVIDERNET_FOR_PUBLIC == "True" ]]; then | 
|  | 652 | ovn_base_setup_bridge $OVS_PHYSICAL_BRIDGE | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 653 | sudo ovs-vsctl set open . external-ids:ovn-bridge-mappings=${PHYSICAL_NETWORK}:${OVS_PHYSICAL_BRIDGE} | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 654 | fi | 
|  | 655 |  | 
|  | 656 | if is_service_enabled ovn-controller-vtep ; then | 
|  | 657 | ovn_base_setup_bridge br-v | 
|  | 658 | vtep-ctl add-ps br-v | 
| Brian Haley | c869d59 | 2020-02-28 14:55:08 -0500 | [diff] [blame] | 659 | vtep-ctl set Physical_Switch br-v tunnel_ips=$TUNNEL_IP | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 660 |  | 
|  | 661 | enable_service ovs-vtep | 
|  | 662 | local vtepcmd="$OVS_SCRIPTDIR/ovs-vtep --log-file --pidfile --detach br-v" | 
|  | 663 | _run_process ovs-vtep "$vtepcmd" "" "$STACK_GROUP" "root" | 
|  | 664 |  | 
|  | 665 | vtep-ctl set-manager tcp:$HOST_IP:6640 | 
|  | 666 | fi | 
|  | 667 | fi | 
|  | 668 | } | 
|  | 669 |  | 
|  | 670 | function _start_ovn_services { | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 671 | _start_process "$OVSDB_SERVER_SERVICE" | 
|  | 672 | _start_process "$OVS_VSWITCHD_SERVICE" | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 673 |  | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 674 | if is_service_enabled ovn-northd ; then | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 675 | _start_process "$OVN_NORTHD_SERVICE" | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 676 | fi | 
|  | 677 | if is_service_enabled ovn-controller ; then | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 678 | _start_process "$OVN_CONTROLLER_SERVICE" | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 679 | fi | 
|  | 680 | if is_service_enabled ovn-controller-vtep ; then | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 681 | _start_process "$OVN_CONTROLLER_VTEP_SERVICE" | 
|  | 682 | fi | 
|  | 683 | if is_service_enabled ovs-vtep ; then | 
|  | 684 | _start_process "devstack@ovs-vtep.service" | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 685 | fi | 
|  | 686 | if is_service_enabled q-ovn-metadata-agent; then | 
|  | 687 | _start_process "devstack@q-ovn-metadata-agent.service" | 
|  | 688 | fi | 
|  | 689 | } | 
|  | 690 |  | 
|  | 691 | # start_ovn() - Start running processes, including screen | 
|  | 692 | function start_ovn { | 
|  | 693 | echo "Starting OVN" | 
|  | 694 |  | 
|  | 695 | _start_ovs | 
|  | 696 |  | 
|  | 697 | local SCRIPTDIR=$OVN_SCRIPTDIR | 
|  | 698 | if ! use_new_ovn_repository; then | 
|  | 699 | SCRIPTDIR=$OVS_SCRIPTDIR | 
|  | 700 | fi | 
|  | 701 |  | 
|  | 702 | if is_service_enabled ovn-northd ; then | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 703 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then | 
|  | 704 | local cmd="/bin/bash $SCRIPTDIR/ovn-ctl --no-monitor start_northd" | 
|  | 705 | local stop_cmd="/bin/bash $SCRIPTDIR/ovn-ctl stop_northd" | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 706 |  | 
| Slawek Kaplonski | 3de92db | 2022-08-26 12:58:29 +0200 | [diff] [blame] | 707 | _run_process ovn-northd "$cmd" "$stop_cmd" "$STACK_GROUP" "root" | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 708 | else | 
|  | 709 | _start_process "$OVN_NORTHD_SERVICE" | 
|  | 710 | fi | 
|  | 711 |  | 
|  | 712 | # Wait for the service to be ready | 
| yatinkarel | 1baa890 | 2022-05-06 17:53:54 +0530 | [diff] [blame] | 713 | # Check for socket and db files for both OVN NB and SB | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 714 | wait_for_sock_file $OVS_RUNDIR/ovnnb_db.sock | 
|  | 715 | wait_for_sock_file $OVS_RUNDIR/ovnsb_db.sock | 
| yatinkarel | 1baa890 | 2022-05-06 17:53:54 +0530 | [diff] [blame] | 716 | wait_for_db_file $OVN_DATADIR/ovnnb_db.db | 
|  | 717 | wait_for_db_file $OVN_DATADIR/ovnsb_db.db | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 718 |  | 
|  | 719 | if is_service_enabled tls-proxy; then | 
|  | 720 | sudo ovn-nbctl --db=unix:$OVS_RUNDIR/ovnnb_db.sock set-ssl $INT_CA_DIR/private/$DEVSTACK_CERT_NAME.key $INT_CA_DIR/$DEVSTACK_CERT_NAME.crt $INT_CA_DIR/ca-chain.pem | 
|  | 721 | sudo ovn-sbctl --db=unix:$OVS_RUNDIR/ovnsb_db.sock set-ssl $INT_CA_DIR/private/$DEVSTACK_CERT_NAME.key $INT_CA_DIR/$DEVSTACK_CERT_NAME.crt $INT_CA_DIR/ca-chain.pem | 
|  | 722 | fi | 
|  | 723 | sudo ovn-nbctl --db=unix:$OVS_RUNDIR/ovnnb_db.sock set-connection p${OVN_PROTO}:6641:$SERVICE_LISTEN_ADDRESS -- set connection . inactivity_probe=60000 | 
|  | 724 | sudo ovn-sbctl --db=unix:$OVS_RUNDIR/ovnsb_db.sock set-connection p${OVN_PROTO}:6642:$SERVICE_LISTEN_ADDRESS -- set connection . inactivity_probe=60000 | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 725 | sudo ovs-appctl -t $OVS_RUNDIR/ovnnb_db.ctl vlog/set console:off syslog:$OVN_DBS_LOG_LEVEL file:$OVN_DBS_LOG_LEVEL | 
|  | 726 | sudo ovs-appctl -t $OVS_RUNDIR/ovnsb_db.ctl vlog/set console:off syslog:$OVN_DBS_LOG_LEVEL file:$OVN_DBS_LOG_LEVEL | 
|  | 727 | fi | 
|  | 728 |  | 
|  | 729 | if is_service_enabled ovn-controller ; then | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 730 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then | 
|  | 731 | local cmd="/bin/bash $SCRIPTDIR/ovn-ctl --no-monitor start_controller" | 
|  | 732 | local stop_cmd="/bin/bash $SCRIPTDIR/ovn-ctl stop_controller" | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 733 |  | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 734 | _run_process ovn-controller "$cmd" "$stop_cmd" "$STACK_GROUP" "root" | 
|  | 735 | else | 
|  | 736 | _start_process "$OVN_CONTROLLER_SERVICE" | 
|  | 737 | fi | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 738 | fi | 
|  | 739 |  | 
|  | 740 | if is_service_enabled ovn-controller-vtep ; then | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 741 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then | 
|  | 742 | local cmd="$OVS_BINDIR/ovn-controller-vtep --log-file --pidfile --detach --ovnsb-db=$OVN_SB_REMOTE" | 
|  | 743 | _run_process ovn-controller-vtep "$cmd" "" "$STACK_GROUP" "root" | 
|  | 744 | else | 
|  | 745 | _start_process "$OVN_CONTROLLER_VTEP_SERVICE" | 
|  | 746 | fi | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 747 | fi | 
|  | 748 |  | 
|  | 749 | if is_service_enabled q-ovn-metadata-agent; then | 
|  | 750 | run_process q-ovn-metadata-agent "$NEUTRON_OVN_BIN_DIR/$NEUTRON_OVN_METADATA_BINARY --config-file $OVN_META_CONF" | 
|  | 751 | # Format logging | 
|  | 752 | setup_logging $OVN_META_CONF | 
|  | 753 | fi | 
|  | 754 |  | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 755 | _start_ovn_services | 
|  | 756 | } | 
|  | 757 |  | 
|  | 758 | function _stop_ovs_dp { | 
|  | 759 | sudo ovs-dpctl dump-dps | sudo xargs -n1 ovs-dpctl del-dp | 
|  | 760 | modprobe -q -r vport_geneve vport_vxlan openvswitch || true | 
|  | 761 | } | 
|  | 762 |  | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 763 | function _stop_process { | 
|  | 764 | local service=$1 | 
|  | 765 | echo "Stopping process $service" | 
|  | 766 | if $SYSTEMCTL is-enabled $service; then | 
|  | 767 | $SYSTEMCTL stop $service | 
|  | 768 | $SYSTEMCTL disable $service | 
|  | 769 | fi | 
|  | 770 | } | 
|  | 771 |  | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 772 | function stop_ovn { | 
|  | 773 | if is_service_enabled q-ovn-metadata-agent; then | 
|  | 774 | sudo pkill -9 -f haproxy || : | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 775 | _stop_process "devstack@q-ovn-metadata-agent.service" | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 776 | fi | 
|  | 777 | if is_service_enabled ovn-controller-vtep ; then | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 778 | _stop_process "$OVN_CONTROLLER_VTEP_SERVICE" | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 779 | fi | 
|  | 780 | if is_service_enabled ovn-controller ; then | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 781 | _stop_process "$OVN_CONTROLLER_SERVICE" | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 782 | fi | 
|  | 783 | if is_service_enabled ovn-northd ; then | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 784 | _stop_process "$OVN_NORTHD_SERVICE" | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 785 | fi | 
|  | 786 | if is_service_enabled ovs-vtep ; then | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 787 | _stop_process "devstack@ovs-vtep.service" | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 788 | fi | 
|  | 789 |  | 
| Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 790 | _stop_process "$OVS_VSWITCHD_SERVICE" | 
|  | 791 | _stop_process "$OVSDB_SERVER_SERVICE" | 
| Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 792 |  | 
|  | 793 | _stop_ovs_dp | 
|  | 794 | } | 
|  | 795 |  | 
|  | 796 | function _cleanup { | 
|  | 797 | local path=${1:-$DEST/$OVN_REPO_NAME} | 
|  | 798 | pushd $path | 
|  | 799 | cd $path | 
|  | 800 | sudo make uninstall | 
|  | 801 | sudo make distclean | 
|  | 802 | popd | 
|  | 803 | } | 
|  | 804 |  | 
|  | 805 | # cleanup_ovn() - Remove residual data files, anything left over from previous | 
|  | 806 | # runs that a clean run would need to clean up | 
|  | 807 | function cleanup_ovn { | 
|  | 808 | local ovn_path=$DEST/$OVN_REPO_NAME | 
|  | 809 | local ovs_path=$DEST/$OVS_REPO_NAME | 
|  | 810 |  | 
|  | 811 | if [ -d $ovn_path ]; then | 
|  | 812 | _cleanup $ovn_path | 
|  | 813 | fi | 
|  | 814 |  | 
|  | 815 | if [ -d $ovs_path ]; then | 
|  | 816 | _cleanup $ovs_path | 
|  | 817 | fi | 
|  | 818 |  | 
|  | 819 | sudo rm -f $OVN_RUNDIR | 
|  | 820 | } |