[ovs-dev] [PATCH] ossfuzz: Remove duplicate tcp flags parsing in flow extract target

2019-06-21 Thread bshas3
From: Bhargava Shastry During a code audit, the flow extraction fuzzer target was seen to be parsing tcp flags from the fuzzer supplied input twice. This is probably a typo since the second call to `parse_tcp_flags()` is identical to the first. Since a call to `parse_tcp_flags()` parses the

[ovs-dev] [PATCH] ossfuzz: Add documentation

2019-06-21 Thread bshas3
From: Bhargava Shastry [RFC] Documents OvS fuzzing effort and performs a rudimentary security analysis of existing OvS fuzzing harnesses. Feedback on the documentation and analysis appreciated. Signed-off-by: Bhargava Shastry --- Documentation/automake.mk | 5 +

[ovs-dev] [PATCH v2] ossfuzz: Add documentation

2019-06-21 Thread bshas3
From: Bhargava Shastry [RFC] Documents OvS fuzzing effort and performs a rudimentary security analysis of existing OvS fuzzing harnesses. Feedback on the documentation and analysis appreciated. Signed-off-by: Bhargava Shastry --- Documentation/automake.mk | 5 +

[ovs-dev] [PATCH] Remove oss-fuzz tests carried over from ovs

2019-10-18 Thread bshas3
From: Bhargava Shastry It appears that ossfuzz specific test harnesses and configuration files were carried over to the ovn repo from the ovs repo without justification. This patch removes them until there is a need to continuously fuzz ovn code as the ovs code is currently fuzzed.

[ovs-dev] [PATCH] ossfuzz: Simplify miniflow fuzzer harness.

2019-10-18 Thread bshas3
From: Bhargava Shastry Google's oss-fuzz builder bots were complaining that miniflow_target is too slow to fuzz in that some tests take longer than a second to complete. This patch fixes this by replacing the random flow generation within the harness to a more simpler scenario. Signed-off-by: