|
21 | 21 |
|
22 | 22 | #include <sys/mman.h> |
23 | 23 |
|
24 | | -static int vmlinux_matches_kallsyms_filter(struct map *map __maybe_unused, |
25 | | - struct symbol *sym) |
26 | | -{ |
27 | | - bool *visited = symbol__priv(sym); |
28 | | - *visited = true; |
29 | | - return 0; |
30 | | -} |
31 | | - |
32 | | -static int test__vmlinux_matches_kallsyms(void) |
33 | | -{ |
34 | | - int err = -1; |
35 | | - struct rb_node *nd; |
36 | | - struct symbol *sym; |
37 | | - struct map *kallsyms_map, *vmlinux_map; |
38 | | - struct machine kallsyms, vmlinux; |
39 | | - enum map_type type = MAP__FUNCTION; |
40 | | - struct ref_reloc_sym ref_reloc_sym = { .name = "_stext", }; |
41 | | - |
42 | | - /* |
43 | | - * Step 1: |
44 | | - * |
45 | | - * Init the machines that will hold kernel, modules obtained from |
46 | | - * both vmlinux + .ko files and from /proc/kallsyms split by modules. |
47 | | - */ |
48 | | - machine__init(&kallsyms, "", HOST_KERNEL_ID); |
49 | | - machine__init(&vmlinux, "", HOST_KERNEL_ID); |
50 | | - |
51 | | - /* |
52 | | - * Step 2: |
53 | | - * |
54 | | - * Create the kernel maps for kallsyms and the DSO where we will then |
55 | | - * load /proc/kallsyms. Also create the modules maps from /proc/modules |
56 | | - * and find the .ko files that match them in /lib/modules/`uname -r`/. |
57 | | - */ |
58 | | - if (machine__create_kernel_maps(&kallsyms) < 0) { |
59 | | - pr_debug("machine__create_kernel_maps "); |
60 | | - return -1; |
61 | | - } |
62 | | - |
63 | | - /* |
64 | | - * Step 3: |
65 | | - * |
66 | | - * Load and split /proc/kallsyms into multiple maps, one per module. |
67 | | - */ |
68 | | - if (machine__load_kallsyms(&kallsyms, "/proc/kallsyms", type, NULL) <= 0) { |
69 | | - pr_debug("dso__load_kallsyms "); |
70 | | - goto out; |
71 | | - } |
72 | | - |
73 | | - /* |
74 | | - * Step 4: |
75 | | - * |
76 | | - * kallsyms will be internally on demand sorted by name so that we can |
77 | | - * find the reference relocation * symbol, i.e. the symbol we will use |
78 | | - * to see if the running kernel was relocated by checking if it has the |
79 | | - * same value in the vmlinux file we load. |
80 | | - */ |
81 | | - kallsyms_map = machine__kernel_map(&kallsyms, type); |
82 | | - |
83 | | - sym = map__find_symbol_by_name(kallsyms_map, ref_reloc_sym.name, NULL); |
84 | | - if (sym == NULL) { |
85 | | - pr_debug("dso__find_symbol_by_name "); |
86 | | - goto out; |
87 | | - } |
88 | | - |
89 | | - ref_reloc_sym.addr = sym->start; |
90 | | - |
91 | | - /* |
92 | | - * Step 5: |
93 | | - * |
94 | | - * Now repeat step 2, this time for the vmlinux file we'll auto-locate. |
95 | | - */ |
96 | | - if (machine__create_kernel_maps(&vmlinux) < 0) { |
97 | | - pr_debug("machine__create_kernel_maps "); |
98 | | - goto out; |
99 | | - } |
100 | | - |
101 | | - vmlinux_map = machine__kernel_map(&vmlinux, type); |
102 | | - map__kmap(vmlinux_map)->ref_reloc_sym = &ref_reloc_sym; |
103 | | - |
104 | | - /* |
105 | | - * Step 6: |
106 | | - * |
107 | | - * Locate a vmlinux file in the vmlinux path that has a buildid that |
108 | | - * matches the one of the running kernel. |
109 | | - * |
110 | | - * While doing that look if we find the ref reloc symbol, if we find it |
111 | | - * we'll have its ref_reloc_symbol.unrelocated_addr and then |
112 | | - * maps__reloc_vmlinux will notice and set proper ->[un]map_ip routines |
113 | | - * to fixup the symbols. |
114 | | - */ |
115 | | - if (machine__load_vmlinux_path(&vmlinux, type, |
116 | | - vmlinux_matches_kallsyms_filter) <= 0) { |
117 | | - pr_debug("machine__load_vmlinux_path "); |
118 | | - goto out; |
119 | | - } |
120 | | - |
121 | | - err = 0; |
122 | | - /* |
123 | | - * Step 7: |
124 | | - * |
125 | | - * Now look at the symbols in the vmlinux DSO and check if we find all of them |
126 | | - * in the kallsyms dso. For the ones that are in both, check its names and |
127 | | - * end addresses too. |
128 | | - */ |
129 | | - for (nd = rb_first(&vmlinux_map->dso->symbols[type]); nd; nd = rb_next(nd)) { |
130 | | - struct symbol *pair, *first_pair; |
131 | | - bool backwards = true; |
132 | | - |
133 | | - sym = rb_entry(nd, struct symbol, rb_node); |
134 | | - |
135 | | - if (sym->start == sym->end) |
136 | | - continue; |
137 | | - |
138 | | - first_pair = machine__find_kernel_symbol(&kallsyms, type, sym->start, NULL, NULL); |
139 | | - pair = first_pair; |
140 | | - |
141 | | - if (pair && pair->start == sym->start) { |
142 | | -next_pair: |
143 | | - if (strcmp(sym->name, pair->name) == 0) { |
144 | | - /* |
145 | | - * kallsyms don't have the symbol end, so we |
146 | | - * set that by using the next symbol start - 1, |
147 | | - * in some cases we get this up to a page |
148 | | - * wrong, trace_kmalloc when I was developing |
149 | | - * this code was one such example, 2106 bytes |
150 | | - * off the real size. More than that and we |
151 | | - * _really_ have a problem. |
152 | | - */ |
153 | | - s64 skew = sym->end - pair->end; |
154 | | - if (llabs(skew) < page_size) |
155 | | - continue; |
156 | | - |
157 | | - pr_debug("%#" PRIx64 ": diff end addr for %s v: %#" PRIx64 " k: %#" PRIx64 "\n", |
158 | | - sym->start, sym->name, sym->end, pair->end); |
159 | | - } else { |
160 | | - struct rb_node *nnd; |
161 | | -detour: |
162 | | - nnd = backwards ? rb_prev(&pair->rb_node) : |
163 | | - rb_next(&pair->rb_node); |
164 | | - if (nnd) { |
165 | | - struct symbol *next = rb_entry(nnd, struct symbol, rb_node); |
166 | | - |
167 | | - if (next->start == sym->start) { |
168 | | - pair = next; |
169 | | - goto next_pair; |
170 | | - } |
171 | | - } |
172 | | - |
173 | | - if (backwards) { |
174 | | - backwards = false; |
175 | | - pair = first_pair; |
176 | | - goto detour; |
177 | | - } |
178 | | - |
179 | | - pr_debug("%#" PRIx64 ": diff name v: %s k: %s\n", |
180 | | - sym->start, sym->name, pair->name); |
181 | | - } |
182 | | - } else |
183 | | - pr_debug("%#" PRIx64 ": %s not on kallsyms\n", sym->start, sym->name); |
184 | | - |
185 | | - err = -1; |
186 | | - } |
187 | | - |
188 | | - if (!verbose) |
189 | | - goto out; |
190 | | - |
191 | | - pr_info("Maps only in vmlinux:\n"); |
192 | | - |
193 | | - for (nd = rb_first(&vmlinux.kmaps.maps[type]); nd; nd = rb_next(nd)) { |
194 | | - struct map *pos = rb_entry(nd, struct map, rb_node), *pair; |
195 | | - /* |
196 | | - * If it is the kernel, kallsyms is always "[kernel.kallsyms]", while |
197 | | - * the kernel will have the path for the vmlinux file being used, |
198 | | - * so use the short name, less descriptive but the same ("[kernel]" in |
199 | | - * both cases. |
200 | | - */ |
201 | | - pair = map_groups__find_by_name(&kallsyms.kmaps, type, |
202 | | - (pos->dso->kernel ? |
203 | | - pos->dso->short_name : |
204 | | - pos->dso->name)); |
205 | | - if (pair) |
206 | | - pair->priv = 1; |
207 | | - else |
208 | | - map__fprintf(pos, stderr); |
209 | | - } |
210 | | - |
211 | | - pr_info("Maps in vmlinux with a different name in kallsyms:\n"); |
212 | | - |
213 | | - for (nd = rb_first(&vmlinux.kmaps.maps[type]); nd; nd = rb_next(nd)) { |
214 | | - struct map *pos = rb_entry(nd, struct map, rb_node), *pair; |
215 | | - |
216 | | - pair = map_groups__find(&kallsyms.kmaps, type, pos->start); |
217 | | - if (pair == NULL || pair->priv) |
218 | | - continue; |
219 | | - |
220 | | - if (pair->start == pos->start) { |
221 | | - pair->priv = 1; |
222 | | - pr_info(" %" PRIx64 "-%" PRIx64 " %" PRIx64 " %s in kallsyms as", |
223 | | - pos->start, pos->end, pos->pgoff, pos->dso->name); |
224 | | - if (pos->pgoff != pair->pgoff || pos->end != pair->end) |
225 | | - pr_info(": \n*%" PRIx64 "-%" PRIx64 " %" PRIx64 "", |
226 | | - pair->start, pair->end, pair->pgoff); |
227 | | - pr_info(" %s\n", pair->dso->name); |
228 | | - pair->priv = 1; |
229 | | - } |
230 | | - } |
231 | | - |
232 | | - pr_info("Maps only in kallsyms:\n"); |
233 | | - |
234 | | - for (nd = rb_first(&kallsyms.kmaps.maps[type]); |
235 | | - nd; nd = rb_next(nd)) { |
236 | | - struct map *pos = rb_entry(nd, struct map, rb_node); |
237 | | - |
238 | | - if (!pos->priv) |
239 | | - map__fprintf(pos, stderr); |
240 | | - } |
241 | | -out: |
242 | | - return err; |
243 | | -} |
244 | | - |
245 | 24 | #include "util/cpumap.h" |
246 | 25 | #include "util/evsel.h" |
247 | 26 | #include <sys/types.h> |
248 | 27 |
|
| 28 | +#include "tests.h" |
| 29 | + |
249 | 30 | static int trace_event__id(const char *evname) |
250 | 31 | { |
251 | 32 | char *filename; |
|
0 commit comments