mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
netfilter: nft_payload: rebuild vlan header when needed
Skip rebuilding the vlan header when accessing destination and source mac address. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
@@ -171,7 +171,8 @@ void nft_payload_eval(const struct nft_expr *expr,
|
|||||||
if (!skb_mac_header_was_set(skb))
|
if (!skb_mac_header_was_set(skb))
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
if (skb_vlan_tag_present(skb)) {
|
if (skb_vlan_tag_present(skb) &&
|
||||||
|
priv->offset >= offsetof(struct ethhdr, h_proto)) {
|
||||||
if (!nft_payload_copy_vlan(dest, skb,
|
if (!nft_payload_copy_vlan(dest, skb,
|
||||||
priv->offset, priv->len))
|
priv->offset, priv->len))
|
||||||
goto err;
|
goto err;
|
||||||
|
|||||||
Reference in New Issue
Block a user