]> git.ipfire.org Git - thirdparty/libnftnl.git/commitdiff
expr/exthdr: Fix JSON parsing on big endian
authorPhil Sutter <phil@nwl.cc>
Fri, 22 Jun 2018 12:18:59 +0000 (14:18 +0200)
committerFlorian Westphal <fw@strlen.de>
Tue, 26 Jun 2018 18:19:44 +0000 (20:19 +0200)
When setting NFTNL_EXPR_EXTHDR_TYPE, one needs to call
nftnl_expr_set_u8() and not nftnl_expr_set_u32(). Otherwise 'type'
variable is assigned to uint32_t parameter before being passed to
nftnl_expr_exthdr_set() as void pointer which casts it to uint8_t.
On big endian systems, the latter would only consider the most
significant byte instead of the least significant one.

Signed-off-by: Phil Sutter <phil@nwl.cc>
src/expr/exthdr.c

index 75cafbc113f73f0523872162a41f107efd8de303..a3518353be09aebb65a460e25feaefbd98bbb197 100644 (file)
@@ -270,7 +270,7 @@ nftnl_expr_exthdr_json_parse(struct nftnl_expr *e, json_t *root,
                type = str2exthdr_type(exthdr_type);
                if (type < 0)
                        return -1;
-               nftnl_expr_set_u32(e, NFTNL_EXPR_EXTHDR_TYPE, type);
+               nftnl_expr_set_u8(e, NFTNL_EXPR_EXTHDR_TYPE, type);
        }
 
        if (nftnl_jansson_parse_val(root, "offset", NFTNL_TYPE_U32, &uval32,