Fragmentation support for userspace datapath conntrack is added; both
v4 and v6 are supported. See the patches for additional details.
v3->v4: Add V6 support to the patches.
Fix possible race cleanup bug when the user disables
fragmentation and there are list occupancies, not cleaned up
yet.
Add missed orig tuple fields for copy from reassembled packet
to fragments.
Fix an fragment list increment check - shoiuld have been "> 0"
rather then "!= 0".
Fix max frags calculation in case of theoretical corner case.
Add proper lock annotations.
Made some other improvements while adding V6 support.
v2->v3: Patch 2 was updated:
Remove "XXX" todo items by implementing the ones needed,
including realloc frag_list contexts to save memory.
Fix related bug with max_frag_list_size when min_frag_size is
reconfigured.
Tighten ip_tot_len sanity check for reassembled packets which
was more loose than intended.
Add another sanity check for fragment ip_tot_len; even though
it be redundant, add for completeness.
v1->v2: Few fixes, improvements and cleanups.
Darrell Ball (10):
dp-packet: Add const qualifiers for checksum apis.
flow: Enhance parse_ipv6_ext_hdrs.
Userspace datapath: Add fragmentation handling.
conntrack: Support fragmentation.
ipf: Add command to enable fragmentation handling.
ipf: Add set minimum fragment size command.
ipf: Add set maximum fragments supported command.
ipf: Add command to get fragmentation handling status.
tests: Add missed local stack checks.
tests: Enable fragmentation for userspace datapath.
NEWS | 10 +
include/sparse/netinet/ip6.h | 1 +
lib/automake.mk | 2 +
lib/conntrack.c | 10 +-
lib/ct-dpif.c | 45 ++
lib/ct-dpif.h | 9 +
lib/dp-packet.h | 4 +-
lib/dpctl.c | 183 ++++++
lib/dpctl.man | 31 +
lib/dpif-netdev.c | 58 ++
lib/dpif-netlink.c | 4 +
lib/dpif-provider.h | 13 +
lib/flow.c | 23 +-
lib/flow.h | 3 +-
lib/ipf.c | 1253 ++++++++++++++++++++++++++++++++++++++
lib/ipf.h | 73 +++
tests/system-kmod-macros.at | 14 +-
tests/system-traffic.at | 36 +-
tests/system-userspace-macros.at | 49 +-
19 files changed, 1783 insertions(+), 38 deletions(-)
create mode 100644 lib/ipf.c
create mode 100644 lib/ipf.h
--
1.9.1
_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev