]> granicus.if.org Git - ipset/commitdiff
Fix rename concurrency with listing
authorJozsef Kadlecsik <kadlec@netfilter.org>
Tue, 23 Jul 2019 08:25:55 +0000 (10:25 +0200)
committerJozsef Kadlecsik <kadlec@netfilter.org>
Tue, 23 Jul 2019 08:25:55 +0000 (10:25 +0200)
Shijie Luo reported that when stress-testing ipset with multiple concurrent
create, rename, flush, list, destroy commands, it can result

ipset <version>: Broken LIST kernel message: missing DATA part!

error messages and broken list results. The problem was the rename operation
was not properly handled with respect of listing. The patch fixes the issue.

Reported-by: Shijie Luo <luoshijie1@huawei.com>
Signed-off-by: Jozsef Kadlecsik <kadlec@netfilter.org>
kernel/net/netfilter/ipset/ip_set_core.c

index 6659e032fc4a429a2a89fc6cc386f65245d8ad1b..791453d4ec46689ac3b7f15f3fe2e2b8a7a18aaf 100644 (file)
@@ -1173,7 +1173,7 @@ IPSET_CBFN(ip_set_rename, struct net *net, struct sock *ctnl,
                return -ENOENT;
 
        write_lock_bh(&ip_set_ref_lock);
-       if (set->ref != 0) {
+       if (set->ref != 0 || set->ref_netlink != 0) {
                ret = -IPSET_ERR_REFERENCED;
                goto out;
        }