Skip to content

Commit 23509e9

Browse files
author
Martin KaFai Lau
committed
Merge branch 'Fix elem_size not being set for inner maps'
Rhys Rustad-Elliott says: ==================== Commit d937bc3 ("bpf: make uniform use of array->elem_size everywhere in arraymap.c") changed array_map_gen_lookup to use array->elem_size instead of round_up(map->value_size, 8) as the element size when generating code to access a value in an array map. array->elem_size, however, is not set by bpf_map_meta_alloc when initializing an BPF_MAP_TYPE_ARRAY_OF_MAPS or BPF_MAP_TYPE_HASH_OF_MAPS. This results in array_map_gen_lookup incorrectly outputting code that always accesses index 0 in the array (as the index will be calculated via a multiplication with the element size, which is incorrectly set to 0). This patchset sets elem_size on the bpf_array object when allocating an array or hash of maps to fix this and adds a selftest that accesses an array map nested within a hash of maps at a nonzero index to prevent regressions. v1: https://lore.kernel.org/bpf/[email protected]/ Changelog: v1 -> v2: Address comments by Martin KaFai Lau: - Directly use inner_array->elem_size instead of using round_up - Move selftests to a new patch - Use ASSERT_* macros instead of CHECK and remove duration - Remove unnecessary usleep - Shorten selftest name ==================== Signed-off-by: Martin KaFai Lau <[email protected]>
2 parents b0fd185 + 1022b67 commit 23509e9

File tree

3 files changed

+82
-2
lines changed

3 files changed

+82
-2
lines changed

kernel/bpf/map_in_map.c

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,13 @@ struct bpf_map *bpf_map_meta_alloc(int inner_map_ufd)
6969
/* Misc members not needed in bpf_map_meta_equal() check. */
7070
inner_map_meta->ops = inner_map->ops;
7171
if (inner_map->ops == &array_map_ops) {
72+
struct bpf_array *inner_array_meta =
73+
container_of(inner_map_meta, struct bpf_array, map);
74+
struct bpf_array *inner_array = container_of(inner_map, struct bpf_array, map);
75+
76+
inner_array_meta->index_mask = inner_array->index_mask;
77+
inner_array_meta->elem_size = inner_array->elem_size;
7278
inner_map_meta->bypass_spec_v1 = inner_map->bypass_spec_v1;
73-
container_of(inner_map_meta, struct bpf_array, map)->index_mask =
74-
container_of(inner_map, struct bpf_array, map)->index_mask;
7579
}
7680

7781
fdput(f);
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// SPDX-License-Identifier: GPL-2.0-only
2+
3+
#include <test_progs.h>
4+
5+
#include "inner_array_lookup.skel.h"
6+
7+
void test_inner_array_lookup(void)
8+
{
9+
int map1_fd, err;
10+
int key = 3;
11+
int val = 1;
12+
struct inner_array_lookup *skel;
13+
14+
skel = inner_array_lookup__open_and_load();
15+
if (!ASSERT_OK_PTR(skel, "open_load_skeleton"))
16+
return;
17+
18+
err = inner_array_lookup__attach(skel);
19+
if (!ASSERT_OK(err, "skeleton_attach"))
20+
goto cleanup;
21+
22+
map1_fd = bpf_map__fd(skel->maps.inner_map1);
23+
bpf_map_update_elem(map1_fd, &key, &val, 0);
24+
25+
/* Probe should have set the element at index 3 to 2 */
26+
bpf_map_lookup_elem(map1_fd, &key, &val);
27+
ASSERT_EQ(val, 2, "value_is_2");
28+
29+
cleanup:
30+
inner_array_lookup__destroy(skel);
31+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
// SPDX-License-Identifier: GPL-2.0-only
2+
3+
#include <linux/bpf.h>
4+
#include <bpf/bpf_helpers.h>
5+
6+
struct inner_map {
7+
__uint(type, BPF_MAP_TYPE_ARRAY);
8+
__uint(max_entries, 5);
9+
__type(key, int);
10+
__type(value, int);
11+
} inner_map1 SEC(".maps");
12+
13+
struct outer_map {
14+
__uint(type, BPF_MAP_TYPE_HASH_OF_MAPS);
15+
__uint(max_entries, 3);
16+
__type(key, int);
17+
__array(values, struct inner_map);
18+
} outer_map1 SEC(".maps") = {
19+
.values = {
20+
[2] = &inner_map1,
21+
},
22+
};
23+
24+
SEC("raw_tp/sys_enter")
25+
int handle__sys_enter(void *ctx)
26+
{
27+
int outer_key = 2, inner_key = 3;
28+
int *val;
29+
void *map;
30+
31+
map = bpf_map_lookup_elem(&outer_map1, &outer_key);
32+
if (!map)
33+
return 1;
34+
35+
val = bpf_map_lookup_elem(map, &inner_key);
36+
if (!val)
37+
return 1;
38+
39+
if (*val == 1)
40+
*val = 2;
41+
42+
return 0;
43+
}
44+
45+
char _license[] SEC("license") = "GPL";

0 commit comments

Comments
 (0)