From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B7D57C7EE23 for ; Wed, 10 May 2023 10:56:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236707AbjEJK4W (ORCPT ); Wed, 10 May 2023 06:56:22 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56844 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236463AbjEJKzp (ORCPT ); Wed, 10 May 2023 06:55:45 -0400 Received: from mail.netfilter.org (mail.netfilter.org [217.70.188.207]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 055AF7EF9 for ; Wed, 10 May 2023 03:54:44 -0700 (PDT) Date: Wed, 10 May 2023 12:54:28 +0200 From: Pablo Neira Ayuso To: Phil Sutter Cc: Florian Westphal , netfilter-devel@vger.kernel.org Subject: Re: [nft PATCH] evaluate: Reject set stmt refs to sets without dynamic flag Message-ID: References: <20230503105022.5728-1-phil@nwl.cc> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20230503105022.5728-1-phil@nwl.cc> Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org On Wed, May 03, 2023 at 12:50:22PM +0200, Phil Sutter wrote: > This is a revert of commit 8d443adfcc8c1 ("evaluate: attempt to set_eval > flag if dynamic updates requested"), implementing the alternative > mentioned in the comment it added. > > Reason is the inconsistent behaviour when applying the same ruleset > twice: In the first call, the set lacking 'dynamic' flag does not exist > and is therefore added to the cache. Consequently, both the 'add set' > command and the set statement point at the same set object. In the > second call, a set with same name exists already, so the object created > for 'add set' command is not added to cache and consequently not updated > with the missing flag. The kernel thus rejects the NEWSET request as the > existing set differs from the new one. # cat test.nft flush ruleset table ip test { set dlist { type ipv4_addr size 65535 } chain output { type filter hook output priority filter; policy accept; udp dport 1234 update @dlist { ip daddr } counter packets 0 bytes 0 } } # nft -f test.nft # nft -f test.nft # nft list ruleset table ip test { set dlist { type ipv4_addr size 65535 flags dynamic } chain output { type filter hook output priority filter; policy accept; udp dport 1234 update @dlist { ip daddr } counter packets 0 bytes 0 } } What are the steps to reproduce this? Did I misunderstand?