1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/compiler.h>
3 #include <linux/kernel.h>
16 static int check_maps(struct map_def
*merged
, unsigned int size
, struct maps
*maps
)
21 maps__for_each_entry(maps
, map
) {
23 TEST_ASSERT_VAL("less maps expected", (map
&& i
< size
) || (!map
&& i
== size
));
25 TEST_ASSERT_VAL("wrong map start", map
->start
== merged
[i
].start
);
26 TEST_ASSERT_VAL("wrong map end", map
->end
== merged
[i
].end
);
27 TEST_ASSERT_VAL("wrong map name", !strcmp(map
->dso
->name
, merged
[i
].name
));
28 TEST_ASSERT_VAL("wrong map refcnt", refcount_read(&map
->refcnt
) == 1);
36 int test__maps__merge_in(struct test
*t __maybe_unused
, int subtest __maybe_unused
)
40 struct map_def bpf_progs
[] = {
41 { "bpf_prog_1", 200, 300 },
42 { "bpf_prog_2", 500, 600 },
43 { "bpf_prog_3", 800, 900 },
45 struct map_def merged12
[] = {
46 { "kcore1", 100, 200 },
47 { "bpf_prog_1", 200, 300 },
48 { "kcore1", 300, 500 },
49 { "bpf_prog_2", 500, 600 },
50 { "kcore1", 600, 800 },
51 { "bpf_prog_3", 800, 900 },
52 { "kcore1", 900, 1000 },
54 struct map_def merged3
[] = {
55 { "kcore1", 100, 200 },
56 { "bpf_prog_1", 200, 300 },
57 { "kcore1", 300, 500 },
58 { "bpf_prog_2", 500, 600 },
59 { "kcore1", 600, 800 },
60 { "bpf_prog_3", 800, 900 },
61 { "kcore1", 900, 1000 },
62 { "kcore3", 1000, 1100 },
64 struct map
*map_kcore1
, *map_kcore2
, *map_kcore3
;
67 maps__init(&maps
, NULL
);
69 for (i
= 0; i
< ARRAY_SIZE(bpf_progs
); i
++) {
72 map
= dso__new_map(bpf_progs
[i
].name
);
73 TEST_ASSERT_VAL("failed to create map", map
);
75 map
->start
= bpf_progs
[i
].start
;
76 map
->end
= bpf_progs
[i
].end
;
77 maps__insert(&maps
, map
);
81 map_kcore1
= dso__new_map("kcore1");
82 TEST_ASSERT_VAL("failed to create map", map_kcore1
);
84 map_kcore2
= dso__new_map("kcore2");
85 TEST_ASSERT_VAL("failed to create map", map_kcore2
);
87 map_kcore3
= dso__new_map("kcore3");
88 TEST_ASSERT_VAL("failed to create map", map_kcore3
);
90 /* kcore1 map overlaps over all bpf maps */
91 map_kcore1
->start
= 100;
92 map_kcore1
->end
= 1000;
94 /* kcore2 map hides behind bpf_prog_2 */
95 map_kcore2
->start
= 550;
96 map_kcore2
->end
= 570;
98 /* kcore3 map hides behind bpf_prog_3, kcore1 and adds new map */
99 map_kcore3
->start
= 880;
100 map_kcore3
->end
= 1100;
102 ret
= maps__merge_in(&maps
, map_kcore1
);
103 TEST_ASSERT_VAL("failed to merge map", !ret
);
105 ret
= check_maps(merged12
, ARRAY_SIZE(merged12
), &maps
);
106 TEST_ASSERT_VAL("merge check failed", !ret
);
108 ret
= maps__merge_in(&maps
, map_kcore2
);
109 TEST_ASSERT_VAL("failed to merge map", !ret
);
111 ret
= check_maps(merged12
, ARRAY_SIZE(merged12
), &maps
);
112 TEST_ASSERT_VAL("merge check failed", !ret
);
114 ret
= maps__merge_in(&maps
, map_kcore3
);
115 TEST_ASSERT_VAL("failed to merge map", !ret
);
117 ret
= check_maps(merged3
, ARRAY_SIZE(merged3
), &maps
);
118 TEST_ASSERT_VAL("merge check failed", !ret
);