Merge branch 'ovs-selftests'
From: Aaron Conole <aconole@redhat.com> To: netdev@vger.kernel.org Cc: dev@openvswitch.org, linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org, Pravin B Shelar <pshelar@ovn.org>, "David S. Miller" <davem@davemloft.net>, Eric Dumazet <edumazet@google.com>, Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>, Adrian Moreno <amorenoz@redhat.com>, Eelco Chaudron <echaudro@redhat.com>, shuah@kernel.org Subject: [PATCH net v2 0/4] selftests: openvswitch: Minor fixes for some systems Date: Wed, 11 Oct 2023 15:49:35 -0400 [thread overview] Message-ID: <20231011194939.704565-1-aconole@redhat.com> (raw) A number of corner cases were caught when trying to run the selftests on older systems. Missed skip conditions, some error cases, and outdated python setups would all report failures but the issue would actually be related to some other condition rather than the selftest suite. Address these individual cases. ==================== Reviewed-by: Simon Horman <horms@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
883f0dc0e4
@ -3,6 +3,8 @@
|
||||
#
|
||||
# OVS kernel module self tests
|
||||
|
||||
trap ovs_exit_sig EXIT TERM INT ERR
|
||||
|
||||
# Kselftest framework requirement - SKIP code is 4.
|
||||
ksft_skip=4
|
||||
|
||||
@ -142,6 +144,12 @@ ovs_add_flow () {
|
||||
return 0
|
||||
}
|
||||
|
||||
ovs_del_flows () {
|
||||
info "Deleting all flows from DP: sbx:$1 br:$2"
|
||||
ovs_sbx "$1" python3 $ovs_base/ovs-dpctl.py del-flows "$2"
|
||||
return 0
|
||||
}
|
||||
|
||||
ovs_drop_record_and_run () {
|
||||
local sbx=$1
|
||||
shift
|
||||
@ -198,6 +206,17 @@ test_drop_reason() {
|
||||
ip netns exec server ip addr add 172.31.110.20/24 dev s1
|
||||
ip netns exec server ip link set s1 up
|
||||
|
||||
# Check if drop reasons can be sent
|
||||
ovs_add_flow "test_drop_reason" dropreason \
|
||||
'in_port(1),eth(),eth_type(0x0806),arp()' 'drop(10)' 2>/dev/null
|
||||
if [ $? == 1 ]; then
|
||||
info "no support for drop reasons - skipping"
|
||||
ovs_exit_sig
|
||||
return $ksft_skip
|
||||
fi
|
||||
|
||||
ovs_del_flows "test_drop_reason" dropreason
|
||||
|
||||
# Allow ARP
|
||||
ovs_add_flow "test_drop_reason" dropreason \
|
||||
'in_port(1),eth(),eth_type(0x0806),arp()' '2' || return 1
|
||||
@ -525,7 +544,7 @@ run_test() {
|
||||
fi
|
||||
|
||||
if python3 ovs-dpctl.py -h 2>&1 | \
|
||||
grep "Need to install the python" >/dev/null 2>&1; then
|
||||
grep -E "Need to (install|upgrade) the python" >/dev/null 2>&1; then
|
||||
stdbuf -o0 printf "TEST: %-60s [PYLIB]\n" "${tdesc}"
|
||||
return $ksft_skip
|
||||
fi
|
||||
|
@ -28,8 +28,10 @@ try:
|
||||
from pyroute2.netlink import nlmsg_atoms
|
||||
from pyroute2.netlink.exceptions import NetlinkError
|
||||
from pyroute2.netlink.generic import GenericNetlinkSocket
|
||||
import pyroute2
|
||||
|
||||
except ModuleNotFoundError:
|
||||
print("Need to install the python pyroute2 package.")
|
||||
print("Need to install the python pyroute2 package >= 0.6.")
|
||||
sys.exit(0)
|
||||
|
||||
|
||||
@ -1117,12 +1119,14 @@ class ovskey(nla):
|
||||
"src",
|
||||
lambda x: str(ipaddress.IPv4Address(x)),
|
||||
int,
|
||||
convert_ipv4,
|
||||
),
|
||||
(
|
||||
"dst",
|
||||
"dst",
|
||||
lambda x: str(ipaddress.IPv6Address(x)),
|
||||
lambda x: str(ipaddress.IPv4Address(x)),
|
||||
int,
|
||||
convert_ipv4,
|
||||
),
|
||||
("tp_src", "tp_src", "%d", int),
|
||||
("tp_dst", "tp_dst", "%d", int),
|
||||
@ -1904,6 +1908,32 @@ class OvsFlow(GenericNetlinkSocket):
|
||||
raise ne
|
||||
return reply
|
||||
|
||||
def del_flows(self, dpifindex):
|
||||
"""
|
||||
Send a del message to the kernel that will drop all flows.
|
||||
|
||||
dpifindex should be a valid datapath obtained by calling
|
||||
into the OvsDatapath lookup
|
||||
"""
|
||||
|
||||
flowmsg = OvsFlow.ovs_flow_msg()
|
||||
flowmsg["cmd"] = OVS_FLOW_CMD_DEL
|
||||
flowmsg["version"] = OVS_DATAPATH_VERSION
|
||||
flowmsg["reserved"] = 0
|
||||
flowmsg["dpifindex"] = dpifindex
|
||||
|
||||
try:
|
||||
reply = self.nlm_request(
|
||||
flowmsg,
|
||||
msg_type=self.prid,
|
||||
msg_flags=NLM_F_REQUEST | NLM_F_ACK,
|
||||
)
|
||||
reply = reply[0]
|
||||
except NetlinkError as ne:
|
||||
print(flowmsg)
|
||||
raise ne
|
||||
return reply
|
||||
|
||||
def dump(self, dpifindex, flowspec=None):
|
||||
"""
|
||||
Returns a list of messages containing flows.
|
||||
@ -1998,6 +2028,12 @@ def main(argv):
|
||||
nlmsg_atoms.ovskey = ovskey
|
||||
nlmsg_atoms.ovsactions = ovsactions
|
||||
|
||||
# version check for pyroute2
|
||||
prverscheck = pyroute2.__version__.split(".")
|
||||
if int(prverscheck[0]) == 0 and int(prverscheck[1]) < 6:
|
||||
print("Need to upgrade the python pyroute2 package to >= 0.6.")
|
||||
sys.exit(0)
|
||||
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument(
|
||||
"-v",
|
||||
@ -2060,6 +2096,9 @@ def main(argv):
|
||||
addflcmd.add_argument("flow", help="Flow specification")
|
||||
addflcmd.add_argument("acts", help="Flow actions")
|
||||
|
||||
delfscmd = subparsers.add_parser("del-flows")
|
||||
delfscmd.add_argument("flsbr", help="Datapath name")
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
if args.verbose > 0:
|
||||
@ -2143,6 +2182,11 @@ def main(argv):
|
||||
flow = OvsFlow.ovs_flow_msg()
|
||||
flow.parse(args.flow, args.acts, rep["dpifindex"])
|
||||
ovsflow.add_flow(rep["dpifindex"], flow)
|
||||
elif hasattr(args, "flsbr"):
|
||||
rep = ovsdp.info(args.flsbr, 0)
|
||||
if rep is None:
|
||||
print("DP '%s' not found." % args.flsbr)
|
||||
ovsflow.del_flows(rep["dpifindex"])
|
||||
|
||||
return 0
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user