From: Pablo Neira Ayuso Date: Tue, 28 Feb 2023 16:09:03 +0000 (+0100) Subject: netfilter: nft_last: copy content when cloning expression X-Git-Tag: v6.1.21~269 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=227a7266fcd17029ba76cda8c81b38bd28fe7938;p=platform%2Fkernel%2Flinux-starfive.git netfilter: nft_last: copy content when cloning expression [ Upstream commit 860e874290fb3be08e966c9c8ffc510c5b0f2bd8 ] If the ruleset contains last timestamps, restore them accordingly. Otherwise, listing after restoration shows never used items. Fixes: 33a24de37e81 ("netfilter: nft_last: move stateful fields out of expression data") Signed-off-by: Pablo Neira Ayuso Signed-off-by: Sasha Levin --- diff --git a/net/netfilter/nft_last.c b/net/netfilter/nft_last.c index bb15a55..eaa5496 100644 --- a/net/netfilter/nft_last.c +++ b/net/netfilter/nft_last.c @@ -104,11 +104,15 @@ static void nft_last_destroy(const struct nft_ctx *ctx, static int nft_last_clone(struct nft_expr *dst, const struct nft_expr *src) { struct nft_last_priv *priv_dst = nft_expr_priv(dst); + struct nft_last_priv *priv_src = nft_expr_priv(src); priv_dst->last = kzalloc(sizeof(*priv_dst->last), GFP_ATOMIC); if (!priv_dst->last) return -ENOMEM; + priv_dst->last->set = priv_src->last->set; + priv_dst->last->jiffies = priv_src->last->jiffies; + return 0; }