]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
cache: recycle existing cache with incremental updates
authorPablo Neira Ayuso <pablo@netfilter.org>
Mon, 27 May 2024 11:26:01 +0000 (13:26 +0200)
committerPablo Neira Ayuso <pablo@netfilter.org>
Mon, 3 Jun 2024 18:17:49 +0000 (20:17 +0200)
Cache tracking has improved over time by incrementally adding/deleting
objects when evaluating commands that are going to be sent to the kernel.

nft_cache_is_complete() already checks that the cache contains objects
that are required to handle this batch of commands by comparing cache
flags.

Infer from the current generation ID if no other transaction has
invalidated the existing cache, this allows to skip unnecessary cache
flush then refill situations which slow down incremental updates.

Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
src/cache.c

index e88cbae2ad9598a85ee0f4b79ed9e27d34137ac1..4b797ec79ae54c7572750dc3c5af4df2bdb8985c 100644 (file)
@@ -1184,9 +1184,21 @@ static bool nft_cache_needs_refresh(struct nft_cache *cache, unsigned int flags)
               (flags & NFT_CACHE_REFRESH);
 }
 
-static bool nft_cache_is_updated(struct nft_cache *cache, uint16_t genid)
+static bool nft_cache_is_updated(struct nft_cache *cache, unsigned int flags,
+                                uint16_t genid)
 {
-       return genid && genid == cache->genid;
+       if (!genid)
+               return false;
+
+       if (genid == cache->genid)
+               return true;
+
+       if (genid == cache->genid + 1) {
+               cache->genid++;
+               return true;
+       }
+
+       return false;
 }
 
 bool nft_cache_needs_update(struct nft_cache *cache)
@@ -1211,7 +1223,7 @@ replay:
        genid = mnl_genid_get(&ctx);
        if (!nft_cache_needs_refresh(cache, flags) &&
            nft_cache_is_complete(cache, flags) &&
-           nft_cache_is_updated(cache, genid))
+           nft_cache_is_updated(cache, flags, genid))
                return 0;
 
        if (cache->genid)