diff options
Diffstat (limited to 'tools/perf/tests/map_groups.c')
-rw-r--r-- | tools/perf/tests/map_groups.c | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/tools/perf/tests/map_groups.c b/tools/perf/tests/map_groups.c new file mode 100644 index 000000000000..70d96acc6dcf --- /dev/null +++ b/tools/perf/tests/map_groups.c | |||
@@ -0,0 +1,120 @@ | |||
1 | #include <linux/compiler.h> | ||
2 | #include <linux/kernel.h> | ||
3 | #include "tests.h" | ||
4 | #include "map.h" | ||
5 | #include "map_groups.h" | ||
6 | #include "dso.h" | ||
7 | #include "debug.h" | ||
8 | |||
9 | struct map_def { | ||
10 | const char *name; | ||
11 | u64 start; | ||
12 | u64 end; | ||
13 | }; | ||
14 | |||
15 | static int check_maps(struct map_def *merged, unsigned int size, struct map_groups *mg) | ||
16 | { | ||
17 | struct map *map; | ||
18 | unsigned int i = 0; | ||
19 | |||
20 | map = map_groups__first(mg); | ||
21 | while (map) { | ||
22 | TEST_ASSERT_VAL("wrong map start", map->start == merged[i].start); | ||
23 | TEST_ASSERT_VAL("wrong map end", map->end == merged[i].end); | ||
24 | TEST_ASSERT_VAL("wrong map name", !strcmp(map->dso->name, merged[i].name)); | ||
25 | TEST_ASSERT_VAL("wrong map refcnt", refcount_read(&map->refcnt) == 2); | ||
26 | |||
27 | i++; | ||
28 | map = map_groups__next(map); | ||
29 | |||
30 | TEST_ASSERT_VAL("less maps expected", (map && i < size) || (!map && i == size)); | ||
31 | } | ||
32 | |||
33 | return TEST_OK; | ||
34 | } | ||
35 | |||
36 | int test__map_groups__merge_in(struct test *t __maybe_unused, int subtest __maybe_unused) | ||
37 | { | ||
38 | struct map_groups mg; | ||
39 | unsigned int i; | ||
40 | struct map_def bpf_progs[] = { | ||
41 | { "bpf_prog_1", 200, 300 }, | ||
42 | { "bpf_prog_2", 500, 600 }, | ||
43 | { "bpf_prog_3", 800, 900 }, | ||
44 | }; | ||
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 }, | ||
53 | }; | ||
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 }, | ||
63 | }; | ||
64 | struct map *map_kcore1, *map_kcore2, *map_kcore3; | ||
65 | int ret; | ||
66 | |||
67 | map_groups__init(&mg, NULL); | ||
68 | |||
69 | for (i = 0; i < ARRAY_SIZE(bpf_progs); i++) { | ||
70 | struct map *map; | ||
71 | |||
72 | map = dso__new_map(bpf_progs[i].name); | ||
73 | TEST_ASSERT_VAL("failed to create map", map); | ||
74 | |||
75 | map->start = bpf_progs[i].start; | ||
76 | map->end = bpf_progs[i].end; | ||
77 | map_groups__insert(&mg, map); | ||
78 | map__put(map); | ||
79 | } | ||
80 | |||
81 | map_kcore1 = dso__new_map("kcore1"); | ||
82 | TEST_ASSERT_VAL("failed to create map", map_kcore1); | ||
83 | |||
84 | map_kcore2 = dso__new_map("kcore2"); | ||
85 | TEST_ASSERT_VAL("failed to create map", map_kcore2); | ||
86 | |||
87 | map_kcore3 = dso__new_map("kcore3"); | ||
88 | TEST_ASSERT_VAL("failed to create map", map_kcore3); | ||
89 | |||
90 | /* kcore1 map overlaps over all bpf maps */ | ||
91 | map_kcore1->start = 100; | ||
92 | map_kcore1->end = 1000; | ||
93 | |||
94 | /* kcore2 map hides behind bpf_prog_2 */ | ||
95 | map_kcore2->start = 550; | ||
96 | map_kcore2->end = 570; | ||
97 | |||
98 | /* kcore3 map hides behind bpf_prog_3, kcore1 and adds new map */ | ||
99 | map_kcore3->start = 880; | ||
100 | map_kcore3->end = 1100; | ||
101 | |||
102 | ret = map_groups__merge_in(&mg, map_kcore1); | ||
103 | TEST_ASSERT_VAL("failed to merge map", !ret); | ||
104 | |||
105 | ret = check_maps(merged12, ARRAY_SIZE(merged12), &mg); | ||
106 | TEST_ASSERT_VAL("merge check failed", !ret); | ||
107 | |||
108 | ret = map_groups__merge_in(&mg, map_kcore2); | ||
109 | TEST_ASSERT_VAL("failed to merge map", !ret); | ||
110 | |||
111 | ret = check_maps(merged12, ARRAY_SIZE(merged12), &mg); | ||
112 | TEST_ASSERT_VAL("merge check failed", !ret); | ||
113 | |||
114 | ret = map_groups__merge_in(&mg, map_kcore3); | ||
115 | TEST_ASSERT_VAL("failed to merge map", !ret); | ||
116 | |||
117 | ret = check_maps(merged3, ARRAY_SIZE(merged3), &mg); | ||
118 | TEST_ASSERT_VAL("merge check failed", !ret); | ||
119 | return TEST_OK; | ||
120 | } | ||