netfilter: nft_payload: skbuff vlan metadata mangle support
authorPablo Neira Ayuso <pablo@netfilter.org>
Wed, 8 May 2024 20:50:34 +0000 (22:50 +0200)
committerPablo Neira Ayuso <pablo@netfilter.org>
Tue, 28 May 2024 22:35:32 +0000 (00:35 +0200)
commit33c563ebf8d3deed7d8addd20d77398ac737ef9a
tree93fae8936c2ba4d98ab347278fe2f10cceeaa524
parentaff5c01fa1284d606f8e7cbdaafeef2511bb46c1
netfilter: nft_payload: skbuff vlan metadata mangle support

Userspace assumes vlan header is present at a given offset, but vlan
offload allows to store this in metadata fields of the skbuff. Hence
mangling vlan results in a garbled packet. Handle this transparently by
adding a parser to the kernel.

If vlan metadata is present and payload offset is over 12 bytes (source
and destination mac address fields), then subtract vlan header present
in vlan metadata, otherwise mangle vlan metadata based on offset and
length, extracting data from the source register.

This is similar to:

  8cfd23e67401 ("netfilter: nft_payload: work around vlan header stripping")

to deal with vlan payload mangling.

Fixes: 7ec3f7b47b8d ("netfilter: nft_payload: add packet mangling support")
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/nft_payload.c