neutron/neutron/tests/unit/agent/linux
Rodolfo Alonso Hernandez 0eebd002cc [OVS][FW] Remote SG IDs left behind when a SG is removed
When any port in the OVS agent is using a security groups (SG) and
this SG is removed, is marked to be deleted. This deletion process
is done in [1].

The SG deletion process consists on removing any reference of this SG
from the firewall and the SG port map. The firewall removes this SG in
[2].

The information of a SG is stored in:
* ConjIPFlowManager.conj_id_map = ConjIdMap(). This class stores the
  conjunction IDS (conj_ids) in a dictionary using the following keys:

    ConjIdMap.id_map[(sg_id, remote_sg_id, direction, ethertype,
      conj_ids)] = conj_id_XXX

* ConjIPFlowManager.conj_ids is a nested dictionary, built in the
  following way:

    self.conj_ids[vlan_tag][(direction, ethertype)][remote_sg_id] = \
      set([conj_id_1, conj_id_2, ...])

This patch stores all conjuntion IDs generated and assigned to the
tuple (sg_id, remote_sg_id, direction, ethertype). When a SG is
removed, the deletion method will look for this SG in the new storage
variable created, ConjIdMap.id_map_group, and will mark all the
conjuntion IDs related to be removed. That will cleanup those rules
left in the OVS matching:
  action=conjunction(conj_id, 1/2)

[1]118930f03d/neutron/agent/linux/openvswitch_firewall/firewall.py (L731)
[2]118930f03d/neutron/agent/linux/openvswitch_firewall/firewall.py (L399)

Change-Id: I63e446a30cf10e7bcd34a6f0d6ba1711301efcbe
Related-Bug: #1881157
2020-07-20 08:45:46 +00:00
..
openvswitch_firewall [OVS][FW] Remote SG IDs left behind when a SG is removed 2020-07-20 08:45:46 +00:00
__init__.py Empty files should not contain copyright or license 2014-10-20 00:50:32 +00:00
failing_process.py Keep reading stdout/stderr until after kill 2015-11-19 19:14:13 +02:00
test_bridge_lib.py Implement "BridgeDevice" with Pyroute2 2020-07-06 11:01:21 +00:00
test_daemon.py Remove the dependency on the "mock" package 2020-04-28 18:05:37 -04:00
test_dhcp.py Merge "Migrate "dhcp_release" to oslo.privsep" 2020-07-08 16:01:21 +00:00
test_external_process.py Remove the dependency on the "mock" package 2020-04-28 18:05:37 -04:00
test_interface.py Merge "Workaround for TCP checksum issue with ovs-dpdk and veth pair" 2020-06-20 18:58:11 +00:00
test_ip_conntrack.py Remove the dependency on the "mock" package 2020-04-28 18:05:37 -04:00
test_ip_lib.py Remove the dependency on the "mock" package 2020-04-28 18:05:37 -04:00
test_ipset_manager.py Remove the dependency on the "mock" package 2020-04-28 18:05:37 -04:00
test_iptables_firewall.py Fix iptables rules comments 2020-06-03 16:29:22 +00:00
test_iptables_manager.py Remove the dependency on the "mock" package 2020-04-28 18:05:37 -04:00
test_keepalived.py Remove the dependency on the "mock" package 2020-04-28 18:05:37 -04:00
test_l3_tc_lib.py Remove the dependency on the "mock" package 2020-04-28 18:05:37 -04:00
test_pd.py Remove the dependency on the "mock" package 2020-04-28 18:05:37 -04:00
test_tc_lib.py Fix the wrong value for QoS rate conversion to bytes/s 2020-06-20 19:38:30 +00:00
test_utils.py Remove usage of six.PY2 2020-05-22 12:59:01 -04:00
test_xenapi_root_helper.py Remove the dependency on the "mock" package 2020-04-28 18:05:37 -04:00