
Prior this patch OVN Octavia provider driver used
default 5-tuple-hash algorithm which is pretty similar to
SOURCE_IP_PORT.
Unfornutelly because of the bug described here [1] it
was not clear how 5-tuple-hash works and some inconsistencies
between kernel and user space implementations were found.
OVN recently added support for selective fields in OVN LB, to
explicitly define what fields are being hashed to tackle this problem.
This commit adds support for that kind of hashing. If installation
of OVN on which OVN Octavia provider is running doesn't support
selective fields - it will use old behavior.
[1] https://mail.openvswitch.org/pipermail/ovs-discuss/2020-April/049896.html
[2] 5af304e747
Change-Id: I7b4ab99d1be2855e18b186557990c85f170ad548
Closes-Bug: #1871239
92 lines
3.3 KiB
Python
92 lines
3.3 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from octavia_lib.common import constants
|
|
|
|
|
|
# TODO(mjozefcz): Use those variables from neutron-lib once released.
|
|
LRP_PREFIX = "lrp-"
|
|
LB_VIP_PORT_PREFIX = "ovn-lb-vip-"
|
|
OVN_PORT_NAME_EXT_ID_KEY = 'neutron:port_name'
|
|
OVN_ROUTER_NAME_EXT_ID_KEY = 'neutron:router_name'
|
|
OVN_PORT_NAME_EXT_ID_KEY = 'neutron:port_name'
|
|
OVN_PORT_FIP_EXT_ID_KEY = 'neutron:port_fip'
|
|
OVN_SUBNET_EXT_ID_KEY = 'neutron:subnet_id'
|
|
OVN_SUBNET_EXT_IDS_KEY = 'neutron:subnet_ids'
|
|
OVN_NETWORK_NAME_EXT_ID_KEY = 'neutron:network_name'
|
|
OVN_SG_IDS_EXT_ID_KEY = 'neutron:security_group_ids'
|
|
OVN_DEVICE_OWNER_EXT_ID_KEY = 'neutron:device_owner'
|
|
OVN_FIP_EXT_ID_KEY = 'neutron:fip_id'
|
|
OVN_FIP_PORT_EXT_ID_KEY = 'neutron:fip_port_id'
|
|
OVN_GW_PORT_EXT_ID_KEY = 'neutron:gw_port_id'
|
|
|
|
LB_EXT_IDS_LS_REFS_KEY = 'ls_refs'
|
|
LB_EXT_IDS_LR_REF_KEY = 'lr_ref'
|
|
LB_EXT_IDS_POOL_PREFIX = 'pool_'
|
|
LB_EXT_IDS_LISTENER_PREFIX = 'listener_'
|
|
LB_EXT_IDS_MEMBER_PREFIX = 'member_'
|
|
LB_EXT_IDS_VIP_KEY = 'neutron:vip'
|
|
LB_EXT_IDS_VIP_FIP_KEY = 'neutron:vip_fip'
|
|
LB_EXT_IDS_VIP_PORT_ID_KEY = 'neutron:vip_port_id'
|
|
|
|
# Auth sections
|
|
SERVICE_AUTH = 'service_auth'
|
|
|
|
# Request type constants
|
|
REQ_TYPE_LB_CREATE = 'lb_create'
|
|
REQ_TYPE_LB_DELETE = 'lb_delete'
|
|
REQ_TYPE_LB_FAILOVER = 'lb_failover'
|
|
REQ_TYPE_LB_UPDATE = 'lb_update'
|
|
REQ_TYPE_LISTENER_CREATE = 'listener_create'
|
|
REQ_TYPE_LISTENER_DELETE = 'listener_delete'
|
|
REQ_TYPE_LISTENER_UPDATE = 'listener_update'
|
|
REQ_TYPE_POOL_CREATE = 'pool_create'
|
|
REQ_TYPE_POOL_DELETE = 'pool_delete'
|
|
REQ_TYPE_POOL_UPDATE = 'pool_update'
|
|
REQ_TYPE_MEMBER_CREATE = 'member_create'
|
|
REQ_TYPE_MEMBER_DELETE = 'member_delete'
|
|
REQ_TYPE_MEMBER_UPDATE = 'member_update'
|
|
REQ_TYPE_LB_CREATE_LRP_ASSOC = 'lb_create_lrp_assoc'
|
|
REQ_TYPE_LB_DELETE_LRP_ASSOC = 'lb_delete_lrp_assoc'
|
|
REQ_TYPE_HANDLE_VIP_FIP = 'handle_vip_fip'
|
|
REQ_TYPE_HANDLE_MEMBER_DVR = 'handle_member_dvr'
|
|
|
|
REQ_TYPE_EXIT = 'exit'
|
|
|
|
# Request information constants
|
|
REQ_INFO_ACTION_ASSOCIATE = 'associate'
|
|
REQ_INFO_ACTION_DISASSOCIATE = 'disassociate'
|
|
REQ_INFO_MEMBER_ADDED = 'member_added'
|
|
REQ_INFO_MEMBER_DELETED = 'member_deleted'
|
|
|
|
# Disabled resources have a ':D' at the end
|
|
DISABLED_RESOURCE_SUFFIX = 'D'
|
|
|
|
# This driver only supports TCP and UDP, with a single LB algorithm
|
|
OVN_NATIVE_LB_PROTOCOLS = [constants.PROTOCOL_TCP,
|
|
constants.PROTOCOL_UDP, ]
|
|
OVN_NATIVE_LB_ALGORITHMS = [constants.LB_ALGORITHM_SOURCE_IP_PORT, ]
|
|
|
|
# Prepended to exception log messages
|
|
EXCEPTION_MSG = "Exception occurred during %s"
|
|
|
|
# Used in functional tests
|
|
LR_REF_KEY_HEADER = 'neutron-'
|
|
|
|
# LB selection fields to represent LB algorithm
|
|
LB_SELECTION_FIELDS_MAP = {
|
|
constants.LB_ALGORITHM_SOURCE_IP_PORT: ["ip_dst", "ip_src",
|
|
"tp_dst", "tp_src"],
|
|
constants.LB_ALGORITHM_SOURCE_IP: ["ip_src", "ip_dst"],
|
|
None: ["ip_src", "ip_dst", "tp_src", "tp_dst"],
|
|
}
|