diff options
author | Benoît Ganne <bganne@cisco.com> | 2021-02-19 16:39:13 +0100 |
---|---|---|
committer | Beno�t Ganne <bganne@cisco.com> | 2021-03-02 10:38:24 +0000 |
commit | 8c45e5109522cf9bbc98785283cd4c923f486fe6 (patch) | |
tree | 7ccab546f7c83daa72fd9cae5273935fc0f27c28 /test | |
parent | 2c0b6b462b86d4010cf551b545083c3509839cac (diff) |
classify: fix multiple filters support
This fix the classify filter if we attach several different filters.
This also fix some issues with l3 and l4 parsing.
Type: fix
Change-Id: I9dc6c55049a3bbc0110d1097b40d9da27633626b
Signed-off-by: Benoît Ganne <bganne@cisco.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/framework.py | 16 | ||||
-rw-r--r-- | test/test_trace_filter.py | 96 |
2 files changed, 56 insertions, 56 deletions
diff --git a/test/framework.py b/test/framework.py index 9bb3e01c31e..4d0f45621b4 100644 --- a/test/framework.py +++ b/test/framework.py @@ -824,9 +824,11 @@ class VppTestCase(unittest.TestCase): cls.sleep(0.1) @classmethod - def pg_start(cls): + def pg_start(cls, trace=True): """ Enable the PG, wait till it is done, then clean up """ - cls.vapi.cli("trace add pg-input 1000") + if trace: + cls.vapi.cli("clear trace") + cls.vapi.cli("trace add pg-input 1000") cls.vapi.cli('packet-generator enable') # PG, when starts, runs to completion - # so let's avoid a race condition, @@ -1192,11 +1194,10 @@ class VppTestCase(unittest.TestCase): "Finished sleep (%s) - slept %es (wanted %es)", remark, after - before, timeout) - def pg_send(self, intf, pkts, worker=None): - self.vapi.cli("clear trace") + def pg_send(self, intf, pkts, worker=None, trace=True): intf.add_stream(pkts, worker=worker) self.pg_enable_capture(self.pg_interfaces) - self.pg_start() + self.pg_start(trace=trace) def send_and_assert_no_replies(self, intf, pkts, remark="", timeout=None): self.pg_send(intf, pkts) @@ -1207,10 +1208,11 @@ class VppTestCase(unittest.TestCase): i.assert_nothing_captured(remark=remark) timeout = 0.1 - def send_and_expect(self, intf, pkts, output, n_rx=None, worker=None): + def send_and_expect(self, intf, pkts, output, n_rx=None, worker=None, + trace=True): if not n_rx: n_rx = len(pkts) - self.pg_send(intf, pkts, worker=worker) + self.pg_send(intf, pkts, worker=worker, trace=trace) rx = output.get_capture(n_rx) return rx diff --git a/test/test_trace_filter.py b/test/test_trace_filter.py index a9f28787eda..89ab3648169 100644 --- a/test/test_trace_filter.py +++ b/test/test_trace_filter.py @@ -26,10 +26,12 @@ class TestTracefilter(VppTestCase): def setUp(self): super(TestTracefilter, self).setUp() - self.create_pg_interfaces(range(1)) + self.create_pg_interfaces(range(2)) + self.pg0.generate_remote_hosts(11) for i in self.pg_interfaces: i.admin_up() i.config_ip4() + i.resolve_arp() def tearDown(self): super(TestTracefilter, self).tearDown() @@ -40,74 +42,70 @@ class TestTracefilter(VppTestCase): def cli(self, cmd): r = self.vapi.cli_return_response(cmd) if r.retval != 0: - if hasattr(r, 'reply'): - self.logger.info(cmd + " FAIL reply " + r.reply) - else: - self.logger.info(cmd + " FAIL retval " + str(r.retval)) + s = "reply '%s'" % r.reply if hasattr( + r, "reply") else "retval '%s'" % r.retval + raise RuntimeError("cli command '%s' FAIL with %s" % (cmd, s)) return r # check number of hits for classifier def assert_hits(self, n): r = self.cli("show classify table verbose 2") - self.assertTrue(r.retval == 0) - self.assertTrue(hasattr(r, 'reply')) self.assertTrue(r.reply.find("hits %i" % n) != -1) - def test_mactime_unitTest(self): + def add_filter(self, mask, match): + r = self.cli("classify filter trace mask %s match %s" % (mask, match)) + self.vapi.cli("clear trace") + r = self.cli("trace add pg-input 1000 filter") + + def del_all_filters(self): + self.cli("classify filter trace del") + r = self.cli("show classify filter") + s = "packet tracer: first table none" + self.assertTrue(r.reply.find(s) != -1) + + def test_basic(self): """ Packet Tracer Filter Test """ - cmds = ["loopback create", - "set int ip address loop0 192.168.1.1/24", - "set int state loop0 up", - "packet-generator new {\n" - " name classifyme\n" - " limit 100\n" - " size 300-300\n" - " interface loop0\n" - " node ethernet-input\n" - " data { \n" - " IP4: 1.2.3 -> 4.5.6\n" - " UDP: 192.168.1.10 - 192.168.1.20 -> 192.168.2.10\n" - " UDP: 1234 -> 2345\n" - " incrementing 286\n" - " }\n" - "}\n", - "classify filter trace mask l3 ip4 src" - " match l3 ip4 src 192.168.1.15", - "trace add pg-input 100 filter", - "pa en classifyme"] - - for cmd in cmds: - self.cli(cmd) - - # Check for 9 classifier hits, which is the right answer + self.add_filter( + "l3 ip4 src", + "l3 ip4 src %s" % + self.pg0.remote_hosts[5].ip4) + self.add_filter( + "l3 ip4 proto l4 src_port", + "l3 ip4 proto 17 l4 src_port 2345") + # the packet we are trying to match + p = list() + for i in range(100): + src = self.pg0.remote_hosts[i % len(self.pg0.remote_hosts)].ip4 + p.append((Ether(src=self.pg0.remote_mac, dst=self.pg0.local_mac) / + IP(src=src, dst=self.pg1.remote_ip4) / + UDP(sport=1234, dport=2345) / Raw('\xa5' * 100))) + for i in range(17): + p.append((Ether(src=self.pg0.remote_mac, dst=self.pg0.local_mac) / + IP(src=self.pg0.remote_hosts[0].ip4, + dst=self.pg1.remote_ip4) / + UDP(sport=2345, dport=1234) / Raw('\xa5' * 100))) + + self.send_and_expect(self.pg0, p, self.pg1, trace=False) + + # Check for 9 and 17 classifier hits, which is the right answer self.assert_hits(9) + self.assert_hits(17) - # cleanup - self.cli("pa de classifyme") - self.cli("classify filter trace del mask l3 ip4 src") + self.del_all_filters() # install a classify rule, inject traffic and check for hits def assert_classify(self, mask, match, packets, n=None): - r = self.cli( - "classify filter trace mask hex %s match hex %s" % - (mask, match)) - self.assertTrue(r.retval == 0) - r = self.cli("trace add pg-input %i filter" % len(packets)) - self.assertTrue(r.retval == 0) - self.pg0.add_stream(packets) - self.cli("pa en") + self.add_filter("hex %s" % mask, "hex %s" % match) + self.send_and_expect(self.pg0, packets, self.pg1, trace=False) self.assert_hits(n if n is not None else len(packets)) - self.cli("clear trace") - self.cli( - "classify filter trace del mask hex %s" % - (mask)) + self.del_all_filters() def test_encap(self): """ Packet Tracer Filter Test with encap """ # the packet we are trying to match p = (Ether(src=self.pg0.remote_mac, dst=self.pg0.local_mac) / - IP(src=self.pg0.remote_ip4, dst=self.pg0.local_ip4) / + IP(src=self.pg0.remote_ip4, dst=self.pg1.remote_ip4) / UDP() / VXLAN() / Ether() / |