From: Florian Westphal Date: Sun, 8 Oct 2023 17:36:53 +0000 (+0200) Subject: netfilter: nft_payload: fix wrong mac header matching X-Git-Tag: v6.1.63~699 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=02322c5177e819fb68583de9a02c402860fa1685;p=sdk%2Femulator%2Femulator-kernel.git netfilter: nft_payload: fix wrong mac header matching commit d351c1ea2de3e36e608fc355d8ae7d0cc80e6cd6 upstream. mcast packets get looped back to the local machine. Such packets have a 0-length mac header, we should treat this like "mac header not set" and abort rule evaluation. As-is, we just copy data from the network header instead. Fixes: 96518518cc41 ("netfilter: add nftables") Reported-by: Blažej Krajňák Signed-off-by: Florian Westphal Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/netfilter/nft_payload.c b/net/netfilter/nft_payload.c index d7de2ecb287e..f44f2eaf3217 100644 --- a/net/netfilter/nft_payload.c +++ b/net/netfilter/nft_payload.c @@ -132,7 +132,7 @@ void nft_payload_eval(const struct nft_expr *expr, switch (priv->base) { case NFT_PAYLOAD_LL_HEADER: - if (!skb_mac_header_was_set(skb)) + if (!skb_mac_header_was_set(skb) || skb_mac_header_len(skb) == 0) goto err; if (skb_vlan_tag_present(skb)) {