aboutsummaryrefslogtreecommitdiffstats
path: root/samples/bpf/test_map_in_map_user.c
diff options
context:
space:
mode:
authorMartin KaFai Lau <kafai@fb.com>2017-06-28 02:08:35 -0400
committerDavid S. Miller <davem@davemloft.net>2017-06-29 13:13:26 -0400
commita8744f2528c14e4545c6071b6681ab17607be2fa (patch)
tree7e7b11a58be303f42072fd51c260354cf110b5e2 /samples/bpf/test_map_in_map_user.c
parent14dc6f04f49dc12614d7e90928b495b8d73cd471 (diff)
bpf: Add test for syscall on fd array/htab lookup
Checks are added to the existing sockex3 and test_map_in_map test. Signed-off-by: Martin KaFai Lau <kafai@fb.com> Acked-by: Daniel Borkmann <daniel@iogearbox.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'samples/bpf/test_map_in_map_user.c')
-rw-r--r--samples/bpf/test_map_in_map_user.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/samples/bpf/test_map_in_map_user.c b/samples/bpf/test_map_in_map_user.c
index f62fdc2bd428..1aca18539d8d 100644
--- a/samples/bpf/test_map_in_map_user.c
+++ b/samples/bpf/test_map_in_map_user.c
@@ -32,6 +32,20 @@ static const char * const test_names[] = {
32 32
33#define NR_TESTS (sizeof(test_names) / sizeof(*test_names)) 33#define NR_TESTS (sizeof(test_names) / sizeof(*test_names))
34 34
35static void check_map_id(int inner_map_fd, int map_in_map_fd, uint32_t key)
36{
37 struct bpf_map_info info = {};
38 uint32_t info_len = sizeof(info);
39 int ret, id;
40
41 ret = bpf_obj_get_info_by_fd(inner_map_fd, &info, &info_len);
42 assert(!ret);
43
44 ret = bpf_map_lookup_elem(map_in_map_fd, &key, &id);
45 assert(!ret);
46 assert(id == info.id);
47}
48
35static void populate_map(uint32_t port_key, int magic_result) 49static void populate_map(uint32_t port_key, int magic_result)
36{ 50{
37 int ret; 51 int ret;
@@ -45,12 +59,15 @@ static void populate_map(uint32_t port_key, int magic_result)
45 59
46 ret = bpf_map_update_elem(A_OF_PORT_A, &port_key, &PORT_A, BPF_ANY); 60 ret = bpf_map_update_elem(A_OF_PORT_A, &port_key, &PORT_A, BPF_ANY);
47 assert(!ret); 61 assert(!ret);
62 check_map_id(PORT_A, A_OF_PORT_A, port_key);
48 63
49 ret = bpf_map_update_elem(H_OF_PORT_A, &port_key, &PORT_A, BPF_NOEXIST); 64 ret = bpf_map_update_elem(H_OF_PORT_A, &port_key, &PORT_A, BPF_NOEXIST);
50 assert(!ret); 65 assert(!ret);
66 check_map_id(PORT_A, H_OF_PORT_A, port_key);
51 67
52 ret = bpf_map_update_elem(H_OF_PORT_H, &port_key, &PORT_H, BPF_NOEXIST); 68 ret = bpf_map_update_elem(H_OF_PORT_H, &port_key, &PORT_H, BPF_NOEXIST);
53 assert(!ret); 69 assert(!ret);
70 check_map_id(PORT_H, H_OF_PORT_H, port_key);
54} 71}
55 72
56static void test_map_in_map(void) 73static void test_map_in_map(void)