vmlinux-kallsyms.c 6.8 KB
Newer Older
1 2
#include <linux/compiler.h>
#include <linux/rbtree.h>
3
#include <inttypes.h>
4 5 6 7 8 9 10 11
#include <string.h>
#include "map.h"
#include "symbol.h"
#include "util.h"
#include "tests.h"
#include "debug.h"
#include "machine.h"

12 13
#define UM(x) kallsyms_map->unmap_ip(kallsyms_map, (x))

14
int test__vmlinux_matches_kallsyms(struct test *test __maybe_unused, int subtest __maybe_unused)
15 16 17 18
{
	int err = -1;
	struct rb_node *nd;
	struct symbol *sym;
19
	struct map *kallsyms_map, *vmlinux_map, *map;
20 21
	struct machine kallsyms, vmlinux;
	enum map_type type = MAP__FUNCTION;
22
	struct maps *maps = &vmlinux.kmaps.maps[type];
23
	u64 mem_start, mem_end;
24
	bool header_printed;
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43

	/*
	 * Step 1:
	 *
	 * Init the machines that will hold kernel, modules obtained from
	 * both vmlinux + .ko files and from /proc/kallsyms split by modules.
	 */
	machine__init(&kallsyms, "", HOST_KERNEL_ID);
	machine__init(&vmlinux, "", HOST_KERNEL_ID);

	/*
	 * Step 2:
	 *
	 * Create the kernel maps for kallsyms and the DSO where we will then
	 * load /proc/kallsyms. Also create the modules maps from /proc/modules
	 * and find the .ko files that match them in /lib/modules/`uname -r`/.
	 */
	if (machine__create_kernel_maps(&kallsyms) < 0) {
		pr_debug("machine__create_kernel_maps ");
44
		goto out;
45 46 47 48 49 50
	}

	/*
	 * Step 3:
	 *
	 * Load and split /proc/kallsyms into multiple maps, one per module.
51 52 53 54 55 56
	 * Do not use kcore, as this test was designed before kcore support
	 * and has parts that only make sense if using the non-kcore code.
	 * XXX: extend it to stress the kcorre code as well, hint: the list
	 * of modules extracted from /proc/kcore, in its current form, can't
	 * be compacted against the list of modules found in the "vmlinux"
	 * code and with the one got from /proc/modules from the "kallsyms" code.
57
	 */
58
	if (__machine__load_kallsyms(&kallsyms, "/proc/kallsyms", type, true) <= 0) {
59 60 61 62 63 64 65 66 67 68 69 70
		pr_debug("dso__load_kallsyms ");
		goto out;
	}

	/*
	 * Step 4:
	 *
	 * kallsyms will be internally on demand sorted by name so that we can
	 * find the reference relocation * symbol, i.e. the symbol we will use
	 * to see if the running kernel was relocated by checking if it has the
	 * same value in the vmlinux file we load.
	 */
71
	kallsyms_map = machine__kernel_map(&kallsyms);
72 73 74 75 76 77 78 79 80 81 82

	/*
	 * Step 5:
	 *
	 * Now repeat step 2, this time for the vmlinux file we'll auto-locate.
	 */
	if (machine__create_kernel_maps(&vmlinux) < 0) {
		pr_debug("machine__create_kernel_maps ");
		goto out;
	}

83
	vmlinux_map = machine__kernel_map(&vmlinux);
84 85 86 87 88 89 90 91 92 93 94 95

	/*
	 * Step 6:
	 *
	 * Locate a vmlinux file in the vmlinux path that has a buildid that
	 * matches the one of the running kernel.
	 *
	 * While doing that look if we find the ref reloc symbol, if we find it
	 * we'll have its ref_reloc_symbol.unrelocated_addr and then
	 * maps__reloc_vmlinux will notice and set proper ->[un]map_ip routines
	 * to fixup the symbols.
	 */
96
	if (machine__load_vmlinux_path(&vmlinux, type) <= 0) {
97 98
		pr_debug("Couldn't find a vmlinux that matches the kernel running on this machine, skipping test\n");
		err = TEST_SKIP;
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
		goto out;
	}

	err = 0;
	/*
	 * Step 7:
	 *
	 * Now look at the symbols in the vmlinux DSO and check if we find all of them
	 * in the kallsyms dso. For the ones that are in both, check its names and
	 * end addresses too.
	 */
	for (nd = rb_first(&vmlinux_map->dso->symbols[type]); nd; nd = rb_next(nd)) {
		struct symbol *pair, *first_pair;

		sym  = rb_entry(nd, struct symbol, rb_node);

		if (sym->start == sym->end)
			continue;

118 119 120 121
		mem_start = vmlinux_map->unmap_ip(vmlinux_map, sym->start);
		mem_end = vmlinux_map->unmap_ip(vmlinux_map, sym->end);

		first_pair = machine__find_kernel_symbol(&kallsyms, type,
122
							 mem_start, NULL);
123 124
		pair = first_pair;

125
		if (pair && UM(pair->start) == mem_start) {
126 127 128 129 130 131 132 133 134 135 136
next_pair:
			if (strcmp(sym->name, pair->name) == 0) {
				/*
				 * kallsyms don't have the symbol end, so we
				 * set that by using the next symbol start - 1,
				 * in some cases we get this up to a page
				 * wrong, trace_kmalloc when I was developing
				 * this code was one such example, 2106 bytes
				 * off the real size. More than that and we
				 * _really_ have a problem.
				 */
137
				s64 skew = mem_end - UM(pair->end);
138
				if (llabs(skew) >= page_size)
139
					pr_debug("WARN: %#" PRIx64 ": diff end addr for %s v: %#" PRIx64 " k: %#" PRIx64 "\n",
140
						 mem_start, sym->name, mem_end,
141
						 UM(pair->end));
142 143 144 145 146 147 148 149

				/*
				 * Do not count this as a failure, because we
				 * could really find a case where it's not
				 * possible to get proper function end from
				 * kallsyms.
				 */
				continue;
150
			} else {
151
				pair = machine__find_kernel_symbol_by_name(&kallsyms, type, sym->name, NULL);
152 153
				if (pair) {
					if (UM(pair->start) == mem_start)
154 155
						goto next_pair;

156
					pr_debug("WARN: %#" PRIx64 ": diff name v: %s k: %s\n",
157
						 mem_start, sym->name, pair->name);
158
				} else {
159
					pr_debug("WARN: %#" PRIx64 ": diff name v: %s k: %s\n",
160
						 mem_start, sym->name, first_pair->name);
161
				}
162 163

				continue;
164 165
			}
		} else
166
			pr_debug("ERR : %#" PRIx64 ": %s not on kallsyms\n",
167
				 mem_start, sym->name);
168 169 170 171

		err = -1;
	}

172
	if (verbose <= 0)
173 174
		goto out;

175
	header_printed = false;
176

177 178
	for (map = maps__first(maps); map; map = map__next(map)) {
		struct map *
179 180 181 182 183 184 185
		/*
		 * If it is the kernel, kallsyms is always "[kernel.kallsyms]", while
		 * the kernel will have the path for the vmlinux file being used,
		 * so use the short name, less descriptive but the same ("[kernel]" in
		 * both cases.
		 */
		pair = map_groups__find_by_name(&kallsyms.kmaps, type,
186 187 188
						(map->dso->kernel ?
							map->dso->short_name :
							map->dso->name));
189
		if (pair) {
190
			pair->priv = 1;
191 192 193 194 195
		} else {
			if (!header_printed) {
				pr_info("WARN: Maps only in vmlinux:\n");
				header_printed = true;
			}
196
			map__fprintf(map, stderr);
197
		}
198 199
	}

200
	header_printed = false;
201

202 203
	for (map = maps__first(maps); map; map = map__next(map)) {
		struct map *pair;
204

205 206
		mem_start = vmlinux_map->unmap_ip(vmlinux_map, map->start);
		mem_end = vmlinux_map->unmap_ip(vmlinux_map, map->end);
207 208

		pair = map_groups__find(&kallsyms.kmaps, type, mem_start);
209 210 211
		if (pair == NULL || pair->priv)
			continue;

212
		if (pair->start == mem_start) {
213 214 215 216 217
			if (!header_printed) {
				pr_info("WARN: Maps in vmlinux with a different name in kallsyms:\n");
				header_printed = true;
			}

218
			pr_info("WARN: %" PRIx64 "-%" PRIx64 " %" PRIx64 " %s in kallsyms as",
219
				map->start, map->end, map->pgoff, map->dso->name);
220
			if (mem_end != pair->end)
221
				pr_info(":\nWARN: *%" PRIx64 "-%" PRIx64 " %" PRIx64,
222 223 224 225 226 227
					pair->start, pair->end, pair->pgoff);
			pr_info(" %s\n", pair->dso->name);
			pair->priv = 1;
		}
	}

228
	header_printed = false;
229

230
	maps = &kallsyms.kmaps.maps[type];
231

232
	for (map = maps__first(maps); map; map = map__next(map)) {
233 234 235 236 237
		if (!map->priv) {
			if (!header_printed) {
				pr_info("WARN: Maps only in kallsyms:\n");
				header_printed = true;
			}
238
			map__fprintf(map, stderr);
239
		}
240 241
	}
out:
242 243
	machine__exit(&kallsyms);
	machine__exit(&vmlinux);
244 245
	return err;
}