]> git.ipfire.org Git - thirdparty/ipset.git/commit
netfilter: ipset: Fix race between namespace cleanup and gc in the list:set type
authorJozsef Kadlecsik <kadlec@netfilter.org>
Tue, 4 Jun 2024 07:40:37 +0000 (09:40 +0200)
committerJozsef Kadlecsik <kadlec@netfilter.org>
Tue, 4 Jun 2024 07:40:37 +0000 (09:40 +0200)
commitbfc70eba58be77aceb9e4273aa7a0a79373b7640
tree704affb7b928045b3aac53ec807abe55e76d1999
parent975403cda657f3ff8f1194b928afe974fc827490
netfilter: ipset: Fix race between namespace cleanup and gc in the list:set type

Lion Ackermann reported that there is a race condition between namespace cleanup
in ipset and the garbage collection of the list:set type. The namespace
cleanup can destroy the list:set type of sets while the gc of the set type is
waiting to run in rcu cleanup. The latter uses data from the destroyed set which
thus leads use after free. The patch contains the following parts:

- When destroying all sets, first remove the garbage collectors, then wait
  if needed and then destroy the sets.
- Fix the badly ordered "wait then remove gc" for the destroy a single set
  case.
- Fix the missing rcu locking in the list:set type in the userspace test
  case.
- Use proper RCU list handlings in the list:set type.

The patch depends on 975403cda657 (netfilter: ipset: Add list flush to cancel_gc).

Fixes: fdb8e12cc2cc (netfilter: ipset: fix performance regression in swap operation)
Reported-by: Lion Ackermann <nnamrec@gmail.com>
Tested-by: Lion Ackermann <nnamrec@gmail.com>
Signed-off-by: Jozsef Kadlecsik <kadlec@netfilter.org>
kernel/net/netfilter/ipset/ip_set_core.c
kernel/net/netfilter/ipset/ip_set_list_set.c