From: Sriram Rajagopalan Date: Wed, 13 Mar 2024 09:04:37 +0000 (-0700) Subject: nft: Do not combine inverted payload matches X-Git-Tag: v1.8.11~66 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=681935f6cb5734e120b5efe5aa8512508e2793f4;p=thirdparty%2Fiptables.git nft: Do not combine inverted payload matches Fixed the issue with combining the payload in case of invert filter for tcp src and dst ports. Signed-off-by: Sriram Rajagopalan Signed-off-by: Phil Sutter --- diff --git a/iptables/nft.c b/iptables/nft.c index ee63c3dc..884cc77e 100644 --- a/iptables/nft.c +++ b/iptables/nft.c @@ -1307,14 +1307,12 @@ static int add_nft_tcpudp(struct nft_handle *h,struct nftnl_rule *r, uint8_t reg; int ret; - if (src[0] && src[0] == src[1] && + if (!invert_src && + src[0] && src[0] == src[1] && dst[0] && dst[0] == dst[1] && invert_src == invert_dst) { uint32_t combined = dst[0] | (src[0] << 16); - if (invert_src) - op = NFT_CMP_NEQ; - expr = gen_payload(h, NFT_PAYLOAD_TRANSPORT_HEADER, 0, 4, ®); if (!expr) return -ENOMEM;