diff options
author | Dave Barach <dave@barachs.net> | 2019-12-24 16:59:38 -0500 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2019-12-25 13:01:48 +0000 |
commit | 29c6132108be68feb11c8d9bfaaf674cba86ee33 (patch) | |
tree | 9f5fae68a7d6361a2c40ea9df340f6e80aea4ca3 | |
parent | 1decd98e2edab69c3c7d6814d2da483175124dbd (diff) |
classify: "classify filter ..." debug CLI cleanup
The pcap trace filter initial table index lives in
cm->filter_set_by_sw_if_index [0], which corresponds to the "local0"
interface. Debug cli makes sure that folks don't accidentally specify
the "local0" interface. At least it does now...
Fix the "vlib format.c code coverage" test in test/test_vlib.py.
Type: fix
Change-Id: I35320bc2c8f0c6f1f8c12e3529d1938548185151
Signed-off-by: Dave Barach <dave@barachs.net>
-rwxr-xr-x | src/vnet/classify/vnet_classify.c | 15 | ||||
-rw-r--r-- | test/test_vlib.py | 4 |
2 files changed, 10 insertions, 9 deletions
diff --git a/src/vnet/classify/vnet_classify.c b/src/vnet/classify/vnet_classify.c index de11a107ef0..b02a5dc6e5e 100755 --- a/src/vnet/classify/vnet_classify.c +++ b/src/vnet/classify/vnet_classify.c @@ -1697,6 +1697,7 @@ classify_filter_command_fn (vlib_main_t * vm, int current_data_offset = 0; u32 sw_if_index = ~0; int pkt_trace = 0; + int pcap = 0; int i; vnet_classify_table_t *t; u8 *mask = 0; @@ -1709,13 +1710,16 @@ classify_filter_command_fn (vlib_main_t * vm, { if (unformat (input, "del")) is_add = 0; - else if (unformat (input, "pcap %=", &sw_if_index, 0)) - ; + else if (unformat (input, "pcap %=", &pcap, 1)) + sw_if_index = 0; else if (unformat (input, "trace")) pkt_trace = 1; else if (unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index)) - ; + { + if (sw_if_index == 0) + return clib_error_return (0, "Local interface not supported..."); + } else if (unformat (input, "buckets %d", &nbuckets)) ; else if (unformat (input, "mask %U", unformat_classify_mask, @@ -1728,9 +1732,6 @@ classify_filter_command_fn (vlib_main_t * vm, break; } - if (sw_if_index == 0) - return clib_error_return (0, "Local interface not supported..."); - if (is_add && mask == 0 && table_index == ~0) return clib_error_return (0, "Mask required"); @@ -1740,7 +1741,7 @@ classify_filter_command_fn (vlib_main_t * vm, if (is_add && match == ~0 && table_index == ~0) return clib_error_return (0, "match count required"); - if (sw_if_index == ~0 && pkt_trace == 0) + if (sw_if_index == ~0 && pkt_trace == 0 && pcap == 0) return clib_error_return (0, "Must specify trace, pcap or interface..."); if (pkt_trace && sw_if_index != ~0) diff --git a/test/test_vlib.py b/test/test_vlib.py index eedfb2fff89..33dc602cf2a 100644 --- a/test/test_vlib.py +++ b/test/test_vlib.py @@ -170,8 +170,8 @@ class TestVlib(VppTestCase): """ Vlib format.c Code Coverage Test """ cmds = ["loopback create", - "classify filter pcap mask l2 proto ipv6 match l2 proto 86dd", - "classify filter del", + "classify filter pcap mask l2 proto match l2 proto 0x86dd", + "classify filter pcap del", "test format-vlib", ] |