]> git.baikalelectronics.ru Git - kernel.git/commit
bpf: fix htab map destruction when extra reserve is in use
authorDaniel Borkmann <daniel@iogearbox.net>
Thu, 3 Nov 2016 23:01:19 +0000 (00:01 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 7 Nov 2016 18:20:52 +0000 (13:20 -0500)
commit5bf5a80413fff4338757060971c69c721c57dde5
treeaa01c5eb2cc793ea5e3629ccf59c5977c28c0264
parenta30dcfc16510ebf531ca0abc5943e99a49648785
bpf: fix htab map destruction when extra reserve is in use

Commit d9d2ccae8d6e ("bpf: restore behavior of bpf_map_update_elem")
added an extra per-cpu reserve to the hash table map to restore old
behaviour from pre prealloc times. When non-prealloc is in use for a
map, then problem is that once a hash table extra element has been
linked into the hash-table, and the hash table is destroyed due to
refcount dropping to zero, then htab_map_free() -> delete_all_elements()
will walk the whole hash table and drop all elements via htab_elem_free().
The problem is that the element from the extra reserve is first fed
to the wrong backend allocator and eventually freed twice.

Fixes: d9d2ccae8d6e ("bpf: restore behavior of bpf_map_update_elem")
Reported-by: Dmitry Vyukov <dvyukov@google.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
kernel/bpf/hashtab.c