]> git.baikalelectronics.ru Git - kernel.git/commit
netfilter: ipset: Fix sleeping memory allocation in atomic context
authorNikolay Borisov <kernel@kyup.com>
Fri, 16 Oct 2015 06:40:28 +0000 (09:40 +0300)
committerPablo Neira Ayuso <pablo@netfilter.org>
Sat, 17 Oct 2015 11:01:24 +0000 (13:01 +0200)
commit65f766ce5cc432906bf738a1201670e089a28346
treec012653980bb096c790f7cd090ce5d14c60cb01d
parent4e64b615022b59b5979a283a3ab6691ba7277d94
netfilter: ipset: Fix sleeping memory allocation in atomic context

Commit 15c3e26b503b introduced RCU locking in list type and in
doing so introduced a memory allocation in list_set_add, which
is done in an atomic context, due to the fact that ipset rcu
list modifications are serialised with a spin lock. The reason
why we can't use a mutex is that in addition to modifying the
list with ipset commands, it's also being modified when a
particular ipset rule timeout expires aka garbage collection.
This gc is triggered from set_cleanup_entries, which in turn
is invoked from a timer thus requiring the lock to be bh-safe.

Concretely the following call chain can lead to "sleeping function
called in atomic context" splat:
call_ad -> list_set_uadt -> list_set_uadd -> kzalloc(, GFP_KERNEL).
And since GFP_KERNEL allows initiating direct reclaim thus
potentially sleeping in the allocation path.

To fix the issue change the allocation type to GFP_ATOMIC, to
correctly reflect that it is occuring in an atomic context.

Fixes: 15c3e26b503b ("netfilter: ipset: Introduce RCU locking in list type")
Signed-off-by: Nikolay Borisov <kernel@kyup.com>
Acked-by: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/ipset/ip_set_list_set.c