aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/bpf/syscall.c
diff options
context:
space:
mode:
authorTeng Qin <qinteng@fb.com>2017-04-24 22:00:37 -0400
committerDavid S. Miller <davem@davemloft.net>2017-04-25 11:57:45 -0400
commit8fe45924387be6b5c1be59a7eb330790c61d5d10 (patch)
tree1879f4fd4d14907155b1ebb2fd85ff26aa89ebbe /kernel/bpf/syscall.c
parent472ecf084a7687347f79720c83881c07407bfd8b (diff)
bpf: map_get_next_key to return first key on NULL
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>
Diffstat (limited to 'kernel/bpf/syscall.c')
-rw-r--r--kernel/bpf/syscall.c20
1 files changed, 12 insertions, 8 deletions
diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c
index b89288e2b589..13642c73dca0 100644
--- a/kernel/bpf/syscall.c
+++ b/kernel/bpf/syscall.c
@@ -536,14 +536,18 @@ static int map_get_next_key(union bpf_attr *attr)
536 if (IS_ERR(map)) 536 if (IS_ERR(map))
537 return PTR_ERR(map); 537 return PTR_ERR(map);
538 538
539 err = -ENOMEM; 539 if (ukey) {
540 key = kmalloc(map->key_size, GFP_USER); 540 err = -ENOMEM;
541 if (!key) 541 key = kmalloc(map->key_size, GFP_USER);
542 goto err_put; 542 if (!key)
543 543 goto err_put;
544 err = -EFAULT; 544
545 if (copy_from_user(key, ukey, map->key_size) != 0) 545 err = -EFAULT;
546 goto free_key; 546 if (copy_from_user(key, ukey, map->key_size) != 0)
547 goto free_key;
548 } else {
549 key = NULL;
550 }
547 551
548 err = -ENOMEM; 552 err = -ENOMEM;
549 next_key = kmalloc(map->key_size, GFP_USER); 553 next_key = kmalloc(map->key_size, GFP_USER);