blob: 77513bf99d1b3fcaaed0378cbf34996786ee0503 [file] [log] [blame]
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +01001#include <linux/compiler.h>
2#include <linux/rbtree.h>
3#include <string.h>
4#include "map.h"
5#include "symbol.h"
6#include "util.h"
7#include "tests.h"
8#include "debug.h"
9#include "machine.h"
10
11static int vmlinux_matches_kallsyms_filter(struct map *map __maybe_unused,
12 struct symbol *sym)
13{
14 bool *visited = symbol__priv(sym);
15 *visited = true;
16 return 0;
17}
18
Adrian Hunter82e75d02013-08-07 14:38:52 +030019#define UM(x) kallsyms_map->unmap_ip(kallsyms_map, (x))
20
Arnaldo Carvalho de Melo721a1f52015-11-19 12:01:48 -030021int test__vmlinux_matches_kallsyms(int subtest __maybe_unused)
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +010022{
23 int err = -1;
24 struct rb_node *nd;
25 struct symbol *sym;
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -030026 struct map *kallsyms_map, *vmlinux_map, *map;
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +010027 struct machine kallsyms, vmlinux;
28 enum map_type type = MAP__FUNCTION;
Arnaldo Carvalho de Melo1eee78a2015-05-22 12:58:53 -030029 struct maps *maps = &vmlinux.kmaps.maps[type];
Adrian Hunterd380b3482013-08-07 14:38:48 +030030 u64 mem_start, mem_end;
Arnaldo Carvalho de Melo54da0762016-09-01 10:40:57 -030031 bool header_printed;
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +010032
33 /*
34 * Step 1:
35 *
36 * Init the machines that will hold kernel, modules obtained from
37 * both vmlinux + .ko files and from /proc/kallsyms split by modules.
38 */
39 machine__init(&kallsyms, "", HOST_KERNEL_ID);
40 machine__init(&vmlinux, "", HOST_KERNEL_ID);
41
42 /*
43 * Step 2:
44 *
45 * Create the kernel maps for kallsyms and the DSO where we will then
46 * load /proc/kallsyms. Also create the modules maps from /proc/modules
47 * and find the .ko files that match them in /lib/modules/`uname -r`/.
48 */
49 if (machine__create_kernel_maps(&kallsyms) < 0) {
50 pr_debug("machine__create_kernel_maps ");
Arnaldo Carvalho de Meloc0aab592013-01-24 23:01:50 -030051 goto out;
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +010052 }
53
54 /*
55 * Step 3:
56 *
57 * Load and split /proc/kallsyms into multiple maps, one per module.
Arnaldo Carvalho de Melo53d0fe62016-04-19 12:16:55 -030058 * Do not use kcore, as this test was designed before kcore support
59 * and has parts that only make sense if using the non-kcore code.
60 * XXX: extend it to stress the kcorre code as well, hint: the list
61 * of modules extracted from /proc/kcore, in its current form, can't
62 * be compacted against the list of modules found in the "vmlinux"
63 * code and with the one got from /proc/modules from the "kallsyms" code.
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +010064 */
Arnaldo Carvalho de Melo53d0fe62016-04-19 12:16:55 -030065 if (__machine__load_kallsyms(&kallsyms, "/proc/kallsyms", type, true, NULL) <= 0) {
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +010066 pr_debug("dso__load_kallsyms ");
67 goto out;
68 }
69
70 /*
71 * Step 4:
72 *
73 * kallsyms will be internally on demand sorted by name so that we can
74 * find the reference relocation * symbol, i.e. the symbol we will use
75 * to see if the running kernel was relocated by checking if it has the
76 * same value in the vmlinux file we load.
77 */
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -030078 kallsyms_map = machine__kernel_map(&kallsyms);
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +010079
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +010080 /*
81 * Step 5:
82 *
83 * Now repeat step 2, this time for the vmlinux file we'll auto-locate.
84 */
85 if (machine__create_kernel_maps(&vmlinux) < 0) {
86 pr_debug("machine__create_kernel_maps ");
87 goto out;
88 }
89
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -030090 vmlinux_map = machine__kernel_map(&vmlinux);
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +010091
92 /*
93 * Step 6:
94 *
95 * Locate a vmlinux file in the vmlinux path that has a buildid that
96 * matches the one of the running kernel.
97 *
98 * While doing that look if we find the ref reloc symbol, if we find it
99 * we'll have its ref_reloc_symbol.unrelocated_addr and then
100 * maps__reloc_vmlinux will notice and set proper ->[un]map_ip routines
101 * to fixup the symbols.
102 */
103 if (machine__load_vmlinux_path(&vmlinux, type,
104 vmlinux_matches_kallsyms_filter) <= 0) {
Arnaldo Carvalho de Melo531f67b2012-12-19 11:11:59 -0300105 pr_debug("Couldn't find a vmlinux that matches the kernel running on this machine, skipping test\n");
106 err = TEST_SKIP;
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100107 goto out;
108 }
109
110 err = 0;
111 /*
112 * Step 7:
113 *
114 * Now look at the symbols in the vmlinux DSO and check if we find all of them
115 * in the kallsyms dso. For the ones that are in both, check its names and
116 * end addresses too.
117 */
118 for (nd = rb_first(&vmlinux_map->dso->symbols[type]); nd; nd = rb_next(nd)) {
119 struct symbol *pair, *first_pair;
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100120
121 sym = rb_entry(nd, struct symbol, rb_node);
122
123 if (sym->start == sym->end)
124 continue;
125
Adrian Hunterd380b3482013-08-07 14:38:48 +0300126 mem_start = vmlinux_map->unmap_ip(vmlinux_map, sym->start);
127 mem_end = vmlinux_map->unmap_ip(vmlinux_map, sym->end);
128
129 first_pair = machine__find_kernel_symbol(&kallsyms, type,
130 mem_start, NULL, NULL);
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100131 pair = first_pair;
132
Adrian Hunter82e75d02013-08-07 14:38:52 +0300133 if (pair && UM(pair->start) == mem_start) {
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100134next_pair:
135 if (strcmp(sym->name, pair->name) == 0) {
136 /*
137 * kallsyms don't have the symbol end, so we
138 * set that by using the next symbol start - 1,
139 * in some cases we get this up to a page
140 * wrong, trace_kmalloc when I was developing
141 * this code was one such example, 2106 bytes
142 * off the real size. More than that and we
143 * _really_ have a problem.
144 */
Adrian Hunter82e75d02013-08-07 14:38:52 +0300145 s64 skew = mem_end - UM(pair->end);
Jiri Olsa5888a8c2013-06-07 15:37:02 +0200146 if (llabs(skew) >= page_size)
Arnaldo Carvalho de Meloe2677692016-09-01 10:26:49 -0300147 pr_debug("WARN: %#" PRIx64 ": diff end addr for %s v: %#" PRIx64 " k: %#" PRIx64 "\n",
Adrian Hunterd380b3482013-08-07 14:38:48 +0300148 mem_start, sym->name, mem_end,
Adrian Hunter82e75d02013-08-07 14:38:52 +0300149 UM(pair->end));
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100150
Jiri Olsa5888a8c2013-06-07 15:37:02 +0200151 /*
152 * Do not count this as a failure, because we
153 * could really find a case where it's not
154 * possible to get proper function end from
155 * kallsyms.
156 */
157 continue;
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100158 } else {
Arnaldo Carvalho de Meloab414dc2016-01-25 18:04:47 -0300159 pair = machine__find_kernel_symbol_by_name(&kallsyms, type, sym->name, NULL, NULL);
160 if (pair) {
161 if (UM(pair->start) == mem_start)
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100162 goto next_pair;
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100163
Arnaldo Carvalho de Melo7e1b6592016-09-01 10:40:57 -0300164 pr_debug("WARN: %#" PRIx64 ": diff name v: %s k: %s\n",
Arnaldo Carvalho de Meloab414dc2016-01-25 18:04:47 -0300165 mem_start, sym->name, pair->name);
Arnaldo Carvalho de Melo6566fea2016-04-19 12:22:25 -0300166 } else {
Arnaldo Carvalho de Melo7e1b6592016-09-01 10:40:57 -0300167 pr_debug("WARN: %#" PRIx64 ": diff name v: %s k: %s\n",
Arnaldo Carvalho de Melo6566fea2016-04-19 12:22:25 -0300168 mem_start, sym->name, first_pair->name);
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100169 }
Arnaldo Carvalho de Melo7e1b6592016-09-01 10:40:57 -0300170
171 continue;
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100172 }
173 } else
Arnaldo Carvalho de Meloe2677692016-09-01 10:26:49 -0300174 pr_debug("ERR : %#" PRIx64 ": %s not on kallsyms\n",
Adrian Hunterd380b3482013-08-07 14:38:48 +0300175 mem_start, sym->name);
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100176
177 err = -1;
178 }
179
180 if (!verbose)
181 goto out;
182
Arnaldo Carvalho de Melo54da0762016-09-01 10:40:57 -0300183 header_printed = false;
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100184
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300185 for (map = maps__first(maps); map; map = map__next(map)) {
186 struct map *
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100187 /*
188 * If it is the kernel, kallsyms is always "[kernel.kallsyms]", while
189 * the kernel will have the path for the vmlinux file being used,
190 * so use the short name, less descriptive but the same ("[kernel]" in
191 * both cases.
192 */
193 pair = map_groups__find_by_name(&kallsyms.kmaps, type,
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300194 (map->dso->kernel ?
195 map->dso->short_name :
196 map->dso->name));
Arnaldo Carvalho de Melo54da0762016-09-01 10:40:57 -0300197 if (pair) {
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100198 pair->priv = 1;
Arnaldo Carvalho de Melo54da0762016-09-01 10:40:57 -0300199 } else {
200 if (!header_printed) {
201 pr_info("WARN: Maps only in vmlinux:\n");
202 header_printed = true;
203 }
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300204 map__fprintf(map, stderr);
Arnaldo Carvalho de Melo54da0762016-09-01 10:40:57 -0300205 }
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100206 }
207
Arnaldo Carvalho de Melo54da0762016-09-01 10:40:57 -0300208 header_printed = false;
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100209
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300210 for (map = maps__first(maps); map; map = map__next(map)) {
211 struct map *pair;
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100212
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300213 mem_start = vmlinux_map->unmap_ip(vmlinux_map, map->start);
214 mem_end = vmlinux_map->unmap_ip(vmlinux_map, map->end);
Adrian Hunterd380b3482013-08-07 14:38:48 +0300215
216 pair = map_groups__find(&kallsyms.kmaps, type, mem_start);
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100217 if (pair == NULL || pair->priv)
218 continue;
219
Adrian Hunterd380b3482013-08-07 14:38:48 +0300220 if (pair->start == mem_start) {
Arnaldo Carvalho de Melo54da0762016-09-01 10:40:57 -0300221 if (!header_printed) {
222 pr_info("WARN: Maps in vmlinux with a different name in kallsyms:\n");
223 header_printed = true;
224 }
225
Arnaldo Carvalho de Meloe2677692016-09-01 10:26:49 -0300226 pr_info("WARN: %" PRIx64 "-%" PRIx64 " %" PRIx64 " %s in kallsyms as",
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300227 map->start, map->end, map->pgoff, map->dso->name);
Adrian Hunterd380b3482013-08-07 14:38:48 +0300228 if (mem_end != pair->end)
Arnaldo Carvalho de Meloe2677692016-09-01 10:26:49 -0300229 pr_info(":\nWARN: *%" PRIx64 "-%" PRIx64 " %" PRIx64,
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100230 pair->start, pair->end, pair->pgoff);
231 pr_info(" %s\n", pair->dso->name);
232 pair->priv = 1;
233 }
234 }
235
Arnaldo Carvalho de Melo54da0762016-09-01 10:40:57 -0300236 header_printed = false;
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100237
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300238 maps = &kallsyms.kmaps.maps[type];
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100239
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300240 for (map = maps__first(maps); map; map = map__next(map)) {
Arnaldo Carvalho de Melo54da0762016-09-01 10:40:57 -0300241 if (!map->priv) {
242 if (!header_printed) {
243 pr_info("WARN: Maps only in kallsyms:\n");
244 header_printed = true;
245 }
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300246 map__fprintf(map, stderr);
Arnaldo Carvalho de Melo54da0762016-09-01 10:40:57 -0300247 }
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100248 }
249out:
Arnaldo Carvalho de Meloc0aab592013-01-24 23:01:50 -0300250 machine__exit(&kallsyms);
251 machine__exit(&vmlinux);
Jiri Olsa0a4e1ae2012-11-10 01:46:41 +0100252 return err;
253}