]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
netfilter: nft_dynset: add timeout extension to template
authorPablo Neira Ayuso <pablo@netfilter.org>
Sat, 16 Jan 2021 18:20:15 +0000 (19:20 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 3 Feb 2021 22:16:17 +0000 (23:16 +0100)
commit 0c5b7a501e7400869ee905b4f7af3d6717802bcb upstream.

Otherwise, the newly create element shows no timeout when listing the
ruleset. If the set definition does not specify a default timeout, then
the set element only shows the expiration time, but not the timeout.
This is a problem when restoring a stateful ruleset listing since it
skips the timeout policy entirely.

Fixes: 22fe54d5fefc ("netfilter: nf_tables: add support for dynamic set updates")
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/netfilter/nft_dynset.c

index a6c29c5bbfbd4d619d6e2c08ebdb154c712f7d00..d6fcfc995420235cfb581cab9b37410b8e8a0830 100644 (file)
@@ -189,8 +189,10 @@ static int nft_dynset_init(const struct nft_ctx *ctx,
                nft_set_ext_add_length(&priv->tmpl, NFT_SET_EXT_EXPR,
                                       priv->expr->ops->size);
        if (set->flags & NFT_SET_TIMEOUT) {
-               if (timeout || set->timeout)
+               if (timeout || set->timeout) {
+                       nft_set_ext_add(&priv->tmpl, NFT_SET_EXT_TIMEOUT);
                        nft_set_ext_add(&priv->tmpl, NFT_SET_EXT_EXPIRATION);
+               }
        }
 
        priv->timeout = timeout;