flowprobe: fix accumulation of tcp flags in flow entries 70/39770/2
authorAlexander Chernavin <achernavin@netgate.com>
Thu, 26 Oct 2023 11:18:19 +0000 (11:18 +0000)
committerMatthew Smith <mgsmith@netgate.com>
Mon, 30 Oct 2023 13:32:50 +0000 (13:32 +0000)
commit21922cec7339f48989f230248de36a98816c4b1b
tree6bc384314e1190e80424bb049b5da459ec35814b
parent4197fb95f29a934034833534f1b0bf414e889fcf
flowprobe: fix accumulation of tcp flags in flow entries

Currently, TCP flags of a flow entry don't get reset once the flow is
exported (unlike other meta information about a flow - packet delta
count and octet delta count). So TCP flags are accumulated as long as
the flow is active. When the flow expires, it is exported the last time,
and its pool entry is freed for further reuse. The next flow that gets
this pool entry will already have non-zero TCP flags. If it's a TCP
flow, the flags will keep being accumulated. This might look fine when
exported. If it's a non-TCP flow, that will definitely look erroneous.

With this fix, reset TCP flags once the flow is exported. Also, cover
the reuse case with tests.

Type: fix
Change-Id: I5f8560afffcfe107909117d3d063e8a69793437e
Signed-off-by: Alexander Chernavin <achernavin@netgate.com>
src/plugins/flowprobe/node.c
test/test_flowprobe.py