summaryrefslogtreecommitdiff
path: root/tests/system-interface.at
diff options
context:
space:
mode:
authorTiago Lam <tiago.lam@intel.com>2018-06-21 18:39:16 +0100
committerBen Pfaff <blp@ovn.org>2018-07-10 14:10:25 -0700
commit208ff139395aa80c00e58e3d9c5a0e03faf1bdd5 (patch)
tree782587d08a12491cdfb14c84c09c2988fa7d4d65 /tests/system-interface.at
parent96bbcbf7f05f27725252897efb4894a281824d13 (diff)
downloadopenvswitch-208ff139395aa80c00e58e3d9c5a0e03faf1bdd5.tar.gz
bridge: Clean leaking netdevs when route is added.
When adding a route to a bridge, by executing "$appctl ovs/route/add $IP/$MASK $BR", a reference to the existing netdev is taken and stored in an instantiated ip_dev struct which is then stored in an addr_list list in tnl-ports.c. When OvS is signaled to exit, as a result of a "$appctl $OVS_PID exit --cleanup", for example, the bridge takes care of destroying its allocated port and iface structs. While destroying and freeing an iface, the netdev associated with it is also destroyed. However, for this to happen its ref_cnt must be 0. Otherwise the destructor of the netdev (specific to each datapath) won't be called. On the userspace datapath this means a system interface, such as "br0", wouldn't get deleted upon exit of OvS (when a route happens to be assocaited). This was first observed in the "ptap - triangle bridge setup with L2 and L3 GRE tunnels" test, which runs as part of the system userspace testsuite and uses the netdev datapath (as opoosed to several tests which use the dummy datapath, where this issue isn't seen). The test would pass every other time and fail the rest of the times because the needed system interfaces (br-p1, br-p2 and br-p3) were already present (from the previous successfull run which didn't clean up properly), leading to a failure. To fix the leak and clean up the interfaces upon exit, on its final stage before destroying a netdev, in iface_destroy__(), the bridge calls tnl_port_map_delete_ipdev() which takes care of freeing the instatiated ip_dev structs that refer to a specific netdev. An extra test is also introduced which verifies that the resources used by OvS netdev datapath have been correctly cleaned up between OVS_TRAFFIC_VSWITCHD_STOP and AT_CLEANUP. Signed-off-by: Tiago Lam <tiago.lam@intel.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'tests/system-interface.at')
-rw-r--r--tests/system-interface.at38
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/system-interface.at b/tests/system-interface.at
index db790d59e..784bada12 100644
--- a/tests/system-interface.at
+++ b/tests/system-interface.at
@@ -25,3 +25,41 @@ OVS_TRAFFIC_VSWITCHD_STOP(["dnl
AT_CLEANUP
+dnl add a p1-0 interface to br-p1, then add a route to br-p1 and stop the OvS
+dnl instance. Confirm br-p1 interface has been deleted from the system.
+AT_SETUP([interface - add route to br and verify clean-up])
+
+OVS_TRAFFIC_VSWITCHD_START()
+
+HWADDR_BRP1=aa:55:00:00:00:01
+
+dnl Create tap port to later add to br-p1
+AT_CHECK([ip tuntap add name p1-0 mode tap])
+AT_CHECK([ip link set p1-0 up])
+on_exit 'ip link del p1-0'
+
+AT_CHECK([
+ ovs-vsctl add-br br-p1 -- \
+ set bridge br-p1 datapath_type=netdev fail-mode=standalone other-config:hwaddr=$HWADDR_BRP1
+
+ ovs-vsctl add-port br-p1 p1-0
+
+ ovs-ofctl del-flows br-p1
+], [0])
+
+AT_CHECK([
+ ip addr add 10.0.0.1/24 dev br-p1
+ ip link set br-p1 up
+], [0], [stdout])
+
+AT_CHECK([
+ ovs-appctl ovs/route/add 10.0.0.0/24 br-p1
+ ovs-appctl tnl/arp/set br-p1 10.0.0.1 $HWADDR_BRP1
+], [0], [stdout])
+
+OVS_TRAFFIC_VSWITCHD_STOP
+AT_CHECK([
+ ip link show br-p1], [1],
+ [stdout], [Device "br-p1" does not exist.]
+)
+AT_CLEANUP