bpf: map_get_next_key to return first key on NULL
authorTeng Qin <qinteng@fb.com>
Tue, 25 Apr 2017 02:00:37 +0000 (19:00 -0700)
committerSasha Levin <alexander.levin@microsoft.com>
Wed, 23 May 2018 01:36:39 +0000 (21:36 -0400)
commit063c80eedbe1b4ed978d2de2101706e006b23132
tree103862dc09a74119d08a8dcc95e29e4dc42c82e5
parent5904e362522b33206d99f00583407402e497dfe5
bpf: map_get_next_key to return first key on NULL

[ Upstream commit 8fe45924387be6b5c1be59a7eb330790c61d5d10 ]

When iterating through a map, we need to find a key that does not exist
in the map so map_get_next_key will give us the first key of the map.
This often requires a lot of guessing in production systems.

This patch makes map_get_next_key return the first key when the key
pointer in the parameter is NULL.

Signed-off-by: Teng Qin <qinteng@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
kernel/bpf/arraymap.c
kernel/bpf/hashtab.c
kernel/bpf/syscall.c