netfilter: nft_set_bitmap: initialize set element extension in lookups
authorPablo Neira Ayuso <pablo@netfilter.org>
Fri, 27 Mar 2020 16:43:04 +0000 (17:43 +0100)
committerPablo Neira Ayuso <pablo@netfilter.org>
Mon, 30 Mar 2020 00:05:37 +0000 (02:05 +0200)
Otherwise, nft_lookup might dereference an uninitialized pointer to the
element extension.

Fixes: 665153ff5752 ("netfilter: nf_tables: add bitmap set type")
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/nft_set_bitmap.c

index 1cb2e67..6829a49 100644 (file)
@@ -81,6 +81,7 @@ static bool nft_bitmap_lookup(const struct net *net, const struct nft_set *set,
        u32 idx, off;
 
        nft_bitmap_location(set, key, &idx, &off);
+       *ext = NULL;
 
        return nft_bitmap_active(priv->bitmap, idx, off, genmask);
 }