From f27901afb038b07532b4c31cb77bbc0bd8068253 Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Mon, 2 Sep 2019 18:39:51 +0200 Subject: conntrack: Fix CIDR to mask conversion on Big Endian Code assumed host architecture to be Little Endian. Instead produce a proper mask by pushing the set bits into most significant position and apply htonl() on the result. Fixes: 3f6a2e90936bb ("conntrack: add support for CIDR notation") Signed-off-by: Phil Sutter Acked-by: Pablo Neira Ayuso --- src/conntrack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/conntrack.c') diff --git a/src/conntrack.c b/src/conntrack.c index c980a13..f65926b 100644 --- a/src/conntrack.c +++ b/src/conntrack.c @@ -2210,7 +2210,7 @@ nfct_build_netmask(uint32_t *dst, int b, int n) dst[i] = 0xffffffff; b -= 32; } else if (b > 0) { - dst[i] = (1 << b) - 1; + dst[i] = htonl(~0u << (32 - b)); b = 0; } else { dst[i] = 0; -- cgit v1.2.3