diff options
author | Andrew Yourtchenko <ayourtch@gmail.com> | 2017-11-15 14:04:05 +0100 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2017-11-16 21:38:25 +0000 |
commit | aa0d62a9adcb2deec6c247a4d2b8a1265356c625 (patch) | |
tree | 489b2481fb739d22f197c32699cf416ec85b6086 /src/plugins/acl/fa_node.c | |
parent | 403642734cbc8fce203e0e4130904ecf2eb2cc8e (diff) |
acl-plugin: also print human-friendly format of 5tuple in packet trace
The original version printed just a few u64s, which is useful for
directly working on the code, but not when figuring out what is
possibly a config or environment-related issue. So, add printing
the 5-tuple struct in a way that is usable by an operator.
Change-Id: I84cc3a239cdaff05ed31c3458cea198e38b58e03
Signed-off-by: Andrew Yourtchenko <ayourtch@gmail.com>
Diffstat (limited to 'src/plugins/acl/fa_node.c')
-rw-r--r-- | src/plugins/acl/fa_node.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/plugins/acl/fa_node.c b/src/plugins/acl/fa_node.c index a7e7b056a0b..f1e7426e4a7 100644 --- a/src/plugins/acl/fa_node.c +++ b/src/plugins/acl/fa_node.c @@ -39,6 +39,25 @@ typedef struct u8 action; } acl_fa_trace_t; +static u8 * +format_fa_5tuple (u8 * s, va_list * args) +{ + fa_5tuple_t *p5t = va_arg (*args, fa_5tuple_t *); + + return format(s, "%s sw_if_index %d (lsb16 %d) l3 %s%s %U -> %U" + " l4 proto %d l4_valid %d port %d -> %d tcp flags (%s) %02x rsvd %x", + p5t->pkt.is_input ? "input" : "output", + p5t->pkt.sw_if_index, p5t->l4.lsb_of_sw_if_index, p5t->pkt.is_ip6 ? "ip6" : "ip4", + p5t->pkt.is_nonfirst_fragment ? " non-initial fragment" : "", + format_ip46_address, &p5t->addr[0], p5t->pkt.is_ip6 ? IP46_TYPE_IP6 : IP46_TYPE_IP4, + format_ip46_address, &p5t->addr[1], p5t->pkt.is_ip6 ? IP46_TYPE_IP6 : IP46_TYPE_IP4, + p5t->l4.proto, p5t->pkt.l4_valid, + p5t->l4.port[0], p5t->l4.port[1], + p5t->pkt.tcp_flags_valid ? "valid": "invalid", + p5t->pkt.tcp_flags, + p5t->pkt.flags_reserved); +} + /* packet trace format function */ static u8 * format_acl_fa_trace (u8 * s, va_list * args) @@ -55,6 +74,9 @@ format_acl_fa_trace (u8 * s, va_list * args) t->match_rule_index, t->trace_bitmap, t->packet_info[0], t->packet_info[1], t->packet_info[2], t->packet_info[3], t->packet_info[4], t->packet_info[5]); + + /* Now also print out the packet_info in a form usable by humans */ + s = format (s, "\n %U", format_fa_5tuple, t->packet_info); return s; } |