perf symbols: Simplify out_fixup in kernel syms loading
[deliverable/linux.git] / tools / perf / util / symbol.c
CommitLineData
5aab621b
ACM
1#include <dirent.h>
2#include <errno.h>
5aab621b
ACM
3#include <stdlib.h>
4#include <stdio.h>
5#include <string.h>
6#include <sys/types.h>
7#include <sys/stat.h>
8#include <sys/param.h>
9#include <fcntl.h>
10#include <unistd.h>
9486aa38 11#include <inttypes.h>
b36f19d5 12#include "build-id.h"
e334c726 13#include "util.h"
8a6c5b26 14#include "debug.h"
a2928c42 15#include "symbol.h"
5aab621b 16#include "strlist.h"
a2928c42 17
a2928c42 18#include <elf.h>
f1617b40 19#include <limits.h>
439d473b 20#include <sys/utsname.h>
2cdbc46d 21
3b01a413 22#ifndef KSYM_NAME_LEN
c752d040 23#define KSYM_NAME_LEN 256
3b01a413
ACM
24#endif
25
4dff624a 26static void dso_cache__free(struct rb_root *root);
aeafcbaf 27static int dso__load_kernel_sym(struct dso *dso, struct map *map,
9de89fe7 28 symbol_filter_t filter);
aeafcbaf 29static int dso__load_guest_kernel_sym(struct dso *dso, struct map *map,
a1645ce1 30 symbol_filter_t filter);
cc612d81
ACM
31static int vmlinux_path__nr_entries;
32static char **vmlinux_path;
439d473b 33
75be6cf4 34struct symbol_conf symbol_conf = {
d599db3f 35 .exclude_other = true,
b32d133a
ACM
36 .use_modules = true,
37 .try_vmlinux_path = true,
3e6a2a7f 38 .annotate_src = true,
ec5761ea 39 .symfs = "",
b32d133a
ACM
40};
41
44f24cb3
JO
42static enum dso_binary_type binary_type_symtab[] = {
43 DSO_BINARY_TYPE__KALLSYMS,
44 DSO_BINARY_TYPE__GUEST_KALLSYMS,
45 DSO_BINARY_TYPE__JAVA_JIT,
46 DSO_BINARY_TYPE__DEBUGLINK,
47 DSO_BINARY_TYPE__BUILD_ID_CACHE,
48 DSO_BINARY_TYPE__FEDORA_DEBUGINFO,
49 DSO_BINARY_TYPE__UBUNTU_DEBUGINFO,
50 DSO_BINARY_TYPE__BUILDID_DEBUGINFO,
51 DSO_BINARY_TYPE__SYSTEM_PATH_DSO,
52 DSO_BINARY_TYPE__GUEST_KMODULE,
53 DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE,
54 DSO_BINARY_TYPE__NOT_FOUND,
55};
56
028df767 57#define DSO_BINARY_TYPE__SYMTAB_CNT ARRAY_SIZE(binary_type_symtab)
44f24cb3 58
949d160b
JO
59static enum dso_binary_type binary_type_data[] = {
60 DSO_BINARY_TYPE__BUILD_ID_CACHE,
61 DSO_BINARY_TYPE__SYSTEM_PATH_DSO,
62 DSO_BINARY_TYPE__NOT_FOUND,
63};
64
028df767 65#define DSO_BINARY_TYPE__DATA_CNT ARRAY_SIZE(binary_type_data)
949d160b 66
aeafcbaf 67int dso__name_len(const struct dso *dso)
8a6c5b26 68{
1e2dd2f7
DM
69 if (!dso)
70 return strlen("[unknown]");
8a6c5b26 71 if (verbose)
aeafcbaf 72 return dso->long_name_len;
8a6c5b26 73
aeafcbaf 74 return dso->short_name_len;
8a6c5b26
ACM
75}
76
aeafcbaf 77bool dso__loaded(const struct dso *dso, enum map_type type)
3610583c 78{
aeafcbaf 79 return dso->loaded & (1 << type);
3610583c
ACM
80}
81
aeafcbaf 82bool dso__sorted_by_name(const struct dso *dso, enum map_type type)
79406cd7 83{
aeafcbaf 84 return dso->sorted_by_name & (1 << type);
79406cd7
ACM
85}
86
aeafcbaf 87static void dso__set_sorted_by_name(struct dso *dso, enum map_type type)
79406cd7 88{
aeafcbaf 89 dso->sorted_by_name |= (1 << type);
79406cd7
ACM
90}
91
36a3e646 92bool symbol_type__is_a(char symbol_type, enum map_type map_type)
6893d4ee 93{
31877908
AB
94 symbol_type = toupper(symbol_type);
95
6893d4ee
ACM
96 switch (map_type) {
97 case MAP__FUNCTION:
98 return symbol_type == 'T' || symbol_type == 'W';
f1dfa0b1 99 case MAP__VARIABLE:
31877908 100 return symbol_type == 'D';
6893d4ee
ACM
101 default:
102 return false;
103 }
104}
105
694bf407
AB
106static int prefix_underscores_count(const char *str)
107{
108 const char *tail = str;
109
110 while (*tail == '_')
111 tail++;
112
113 return tail - str;
114}
115
116#define SYMBOL_A 0
117#define SYMBOL_B 1
118
119static int choose_best_symbol(struct symbol *syma, struct symbol *symb)
120{
121 s64 a;
122 s64 b;
123
124 /* Prefer a symbol with non zero length */
125 a = syma->end - syma->start;
126 b = symb->end - symb->start;
127 if ((b == 0) && (a > 0))
128 return SYMBOL_A;
129 else if ((a == 0) && (b > 0))
130 return SYMBOL_B;
131
132 /* Prefer a non weak symbol over a weak one */
133 a = syma->binding == STB_WEAK;
134 b = symb->binding == STB_WEAK;
135 if (b && !a)
136 return SYMBOL_A;
137 if (a && !b)
138 return SYMBOL_B;
139
140 /* Prefer a global symbol over a non global one */
141 a = syma->binding == STB_GLOBAL;
142 b = symb->binding == STB_GLOBAL;
143 if (a && !b)
144 return SYMBOL_A;
145 if (b && !a)
146 return SYMBOL_B;
147
148 /* Prefer a symbol with less underscores */
149 a = prefix_underscores_count(syma->name);
150 b = prefix_underscores_count(symb->name);
151 if (b > a)
152 return SYMBOL_A;
153 else if (a > b)
154 return SYMBOL_B;
155
156 /* If all else fails, choose the symbol with the longest name */
157 if (strlen(syma->name) >= strlen(symb->name))
158 return SYMBOL_A;
159 else
160 return SYMBOL_B;
161}
162
e5a1845f 163void symbols__fixup_duplicate(struct rb_root *symbols)
694bf407
AB
164{
165 struct rb_node *nd;
166 struct symbol *curr, *next;
167
168 nd = rb_first(symbols);
169
170 while (nd) {
171 curr = rb_entry(nd, struct symbol, rb_node);
172again:
173 nd = rb_next(&curr->rb_node);
174 next = rb_entry(nd, struct symbol, rb_node);
175
176 if (!nd)
177 break;
178
179 if (curr->start != next->start)
180 continue;
181
182 if (choose_best_symbol(curr, next) == SYMBOL_A) {
183 rb_erase(&next->rb_node, symbols);
184 goto again;
185 } else {
186 nd = rb_next(&curr->rb_node);
187 rb_erase(&curr->rb_node, symbols);
188 }
189 }
190}
191
e5a1845f 192void symbols__fixup_end(struct rb_root *symbols)
af427bf5 193{
aeafcbaf 194 struct rb_node *nd, *prevnd = rb_first(symbols);
2e538c4a 195 struct symbol *curr, *prev;
af427bf5
ACM
196
197 if (prevnd == NULL)
198 return;
199
2e538c4a
ACM
200 curr = rb_entry(prevnd, struct symbol, rb_node);
201
af427bf5 202 for (nd = rb_next(prevnd); nd; nd = rb_next(nd)) {
2e538c4a
ACM
203 prev = curr;
204 curr = rb_entry(nd, struct symbol, rb_node);
af427bf5 205
3b01a413 206 if (prev->end == prev->start && prev->end != curr->start)
af427bf5 207 prev->end = curr->start - 1;
af427bf5 208 }
2e538c4a
ACM
209
210 /* Last entry */
211 if (curr->end == curr->start)
212 curr->end = roundup(curr->start, 4096);
af427bf5
ACM
213}
214
e5a1845f 215void __map_groups__fixup_end(struct map_groups *mg, enum map_type type)
af427bf5
ACM
216{
217 struct map *prev, *curr;
aeafcbaf 218 struct rb_node *nd, *prevnd = rb_first(&mg->maps[type]);
af427bf5
ACM
219
220 if (prevnd == NULL)
221 return;
222
223 curr = rb_entry(prevnd, struct map, rb_node);
af427bf5
ACM
224
225 for (nd = rb_next(prevnd); nd; nd = rb_next(nd)) {
226 prev = curr;
227 curr = rb_entry(nd, struct map, rb_node);
228 prev->end = curr->start - 1;
2e538c4a 229 }
90c83218
ACM
230
231 /*
232 * We still haven't the actual symbols, so guess the
233 * last map final address.
234 */
9d1faba5 235 curr->end = ~0ULL;
af427bf5
ACM
236}
237
aeafcbaf 238static void map_groups__fixup_end(struct map_groups *mg)
23ea4a3f
ACM
239{
240 int i;
241 for (i = 0; i < MAP__NR_TYPES; ++i)
aeafcbaf 242 __map_groups__fixup_end(mg, i);
23ea4a3f
ACM
243}
244
e5a1845f 245struct symbol *symbol__new(u64 start, u64 len, u8 binding, const char *name)
a2928c42 246{
0085c954 247 size_t namelen = strlen(name) + 1;
aeafcbaf
ACM
248 struct symbol *sym = calloc(1, (symbol_conf.priv_size +
249 sizeof(*sym) + namelen));
250 if (sym == NULL)
0b73da3f
IM
251 return NULL;
252
75be6cf4 253 if (symbol_conf.priv_size)
aeafcbaf 254 sym = ((void *)sym) + symbol_conf.priv_size;
e4204992 255
aeafcbaf
ACM
256 sym->start = start;
257 sym->end = len ? start + len - 1 : start;
258 sym->binding = binding;
259 sym->namelen = namelen - 1;
e4204992 260
aeafcbaf
ACM
261 pr_debug4("%s: %s %#" PRIx64 "-%#" PRIx64 "\n",
262 __func__, name, start, sym->end);
263 memcpy(sym->name, name, namelen);
a2928c42 264
aeafcbaf 265 return sym;
a2928c42
ACM
266}
267
aeafcbaf 268void symbol__delete(struct symbol *sym)
a2928c42 269{
aeafcbaf 270 free(((void *)sym) - symbol_conf.priv_size);
a2928c42
ACM
271}
272
aeafcbaf 273static size_t symbol__fprintf(struct symbol *sym, FILE *fp)
a2928c42 274{
9486aa38 275 return fprintf(fp, " %" PRIx64 "-%" PRIx64 " %c %s\n",
aeafcbaf
ACM
276 sym->start, sym->end,
277 sym->binding == STB_GLOBAL ? 'g' :
278 sym->binding == STB_LOCAL ? 'l' : 'w',
279 sym->name);
a2928c42
ACM
280}
281
a978f2ab
AN
282size_t symbol__fprintf_symname_offs(const struct symbol *sym,
283 const struct addr_location *al, FILE *fp)
547a92e0 284{
a978f2ab
AN
285 unsigned long offset;
286 size_t length;
287
288 if (sym && sym->name) {
289 length = fprintf(fp, "%s", sym->name);
290 if (al) {
291 offset = al->addr - sym->start;
292 length += fprintf(fp, "+0x%lx", offset);
293 }
294 return length;
295 } else
296 return fprintf(fp, "[unknown]");
297}
547a92e0 298
a978f2ab
AN
299size_t symbol__fprintf_symname(const struct symbol *sym, FILE *fp)
300{
301 return symbol__fprintf_symname_offs(sym, NULL, fp);
547a92e0
AN
302}
303
aeafcbaf 304void dso__set_long_name(struct dso *dso, char *name)
cfc10d3b 305{
ef6ae724
ACM
306 if (name == NULL)
307 return;
aeafcbaf
ACM
308 dso->long_name = name;
309 dso->long_name_len = strlen(name);
cfc10d3b
ACM
310}
311
aeafcbaf 312static void dso__set_short_name(struct dso *dso, const char *name)
b63be8d7
ACM
313{
314 if (name == NULL)
315 return;
aeafcbaf
ACM
316 dso->short_name = name;
317 dso->short_name_len = strlen(name);
b63be8d7
ACM
318}
319
aeafcbaf 320static void dso__set_basename(struct dso *dso)
cfc10d3b 321{
aeafcbaf 322 dso__set_short_name(dso, basename(dso->long_name));
cfc10d3b
ACM
323}
324
00a192b3 325struct dso *dso__new(const char *name)
a2928c42 326{
aeafcbaf 327 struct dso *dso = calloc(1, sizeof(*dso) + strlen(name) + 1);
a2928c42 328
aeafcbaf 329 if (dso != NULL) {
6a4694a4 330 int i;
aeafcbaf
ACM
331 strcpy(dso->name, name);
332 dso__set_long_name(dso, dso->name);
333 dso__set_short_name(dso, dso->name);
6a4694a4 334 for (i = 0; i < MAP__NR_TYPES; ++i)
aeafcbaf 335 dso->symbols[i] = dso->symbol_names[i] = RB_ROOT;
4dff624a 336 dso->cache = RB_ROOT;
44f24cb3 337 dso->symtab_type = DSO_BINARY_TYPE__NOT_FOUND;
949d160b 338 dso->data_type = DSO_BINARY_TYPE__NOT_FOUND;
aeafcbaf
ACM
339 dso->loaded = 0;
340 dso->sorted_by_name = 0;
341 dso->has_build_id = 0;
342 dso->kernel = DSO_TYPE_USER;
8db4841f 343 dso->needs_swap = DSO_SWAP__UNSET;
aeafcbaf 344 INIT_LIST_HEAD(&dso->node);
a2928c42
ACM
345 }
346
aeafcbaf 347 return dso;
a2928c42
ACM
348}
349
aeafcbaf 350static void symbols__delete(struct rb_root *symbols)
a2928c42
ACM
351{
352 struct symbol *pos;
aeafcbaf 353 struct rb_node *next = rb_first(symbols);
a2928c42
ACM
354
355 while (next) {
356 pos = rb_entry(next, struct symbol, rb_node);
357 next = rb_next(&pos->rb_node);
aeafcbaf 358 rb_erase(&pos->rb_node, symbols);
00a192b3 359 symbol__delete(pos);
a2928c42
ACM
360 }
361}
362
aeafcbaf 363void dso__delete(struct dso *dso)
a2928c42 364{
6a4694a4
ACM
365 int i;
366 for (i = 0; i < MAP__NR_TYPES; ++i)
aeafcbaf
ACM
367 symbols__delete(&dso->symbols[i]);
368 if (dso->sname_alloc)
369 free((char *)dso->short_name);
370 if (dso->lname_alloc)
371 free(dso->long_name);
4dff624a 372 dso_cache__free(&dso->cache);
aeafcbaf 373 free(dso);
a2928c42
ACM
374}
375
aeafcbaf 376void dso__set_build_id(struct dso *dso, void *build_id)
8d06367f 377{
aeafcbaf
ACM
378 memcpy(dso->build_id, build_id, sizeof(dso->build_id));
379 dso->has_build_id = 1;
8d06367f
ACM
380}
381
e5a1845f 382void symbols__insert(struct rb_root *symbols, struct symbol *sym)
a2928c42 383{
aeafcbaf 384 struct rb_node **p = &symbols->rb_node;
a2928c42 385 struct rb_node *parent = NULL;
9cffa8d5 386 const u64 ip = sym->start;
a2928c42
ACM
387 struct symbol *s;
388
389 while (*p != NULL) {
390 parent = *p;
391 s = rb_entry(parent, struct symbol, rb_node);
392 if (ip < s->start)
393 p = &(*p)->rb_left;
394 else
395 p = &(*p)->rb_right;
396 }
397 rb_link_node(&sym->rb_node, parent, p);
aeafcbaf 398 rb_insert_color(&sym->rb_node, symbols);
a2928c42
ACM
399}
400
aeafcbaf 401static struct symbol *symbols__find(struct rb_root *symbols, u64 ip)
a2928c42
ACM
402{
403 struct rb_node *n;
404
aeafcbaf 405 if (symbols == NULL)
a2928c42
ACM
406 return NULL;
407
aeafcbaf 408 n = symbols->rb_node;
a2928c42
ACM
409
410 while (n) {
411 struct symbol *s = rb_entry(n, struct symbol, rb_node);
412
413 if (ip < s->start)
414 n = n->rb_left;
415 else if (ip > s->end)
416 n = n->rb_right;
417 else
418 return s;
419 }
420
421 return NULL;
422}
423
79406cd7
ACM
424struct symbol_name_rb_node {
425 struct rb_node rb_node;
426 struct symbol sym;
427};
428
aeafcbaf 429static void symbols__insert_by_name(struct rb_root *symbols, struct symbol *sym)
79406cd7 430{
aeafcbaf 431 struct rb_node **p = &symbols->rb_node;
79406cd7 432 struct rb_node *parent = NULL;
02a9d037
RV
433 struct symbol_name_rb_node *symn, *s;
434
435 symn = container_of(sym, struct symbol_name_rb_node, sym);
79406cd7
ACM
436
437 while (*p != NULL) {
438 parent = *p;
439 s = rb_entry(parent, struct symbol_name_rb_node, rb_node);
440 if (strcmp(sym->name, s->sym.name) < 0)
441 p = &(*p)->rb_left;
442 else
443 p = &(*p)->rb_right;
444 }
445 rb_link_node(&symn->rb_node, parent, p);
aeafcbaf 446 rb_insert_color(&symn->rb_node, symbols);
79406cd7
ACM
447}
448
aeafcbaf
ACM
449static void symbols__sort_by_name(struct rb_root *symbols,
450 struct rb_root *source)
79406cd7
ACM
451{
452 struct rb_node *nd;
453
454 for (nd = rb_first(source); nd; nd = rb_next(nd)) {
455 struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
aeafcbaf 456 symbols__insert_by_name(symbols, pos);
79406cd7
ACM
457 }
458}
459
aeafcbaf
ACM
460static struct symbol *symbols__find_by_name(struct rb_root *symbols,
461 const char *name)
79406cd7
ACM
462{
463 struct rb_node *n;
464
aeafcbaf 465 if (symbols == NULL)
79406cd7
ACM
466 return NULL;
467
aeafcbaf 468 n = symbols->rb_node;
79406cd7
ACM
469
470 while (n) {
471 struct symbol_name_rb_node *s;
472 int cmp;
473
474 s = rb_entry(n, struct symbol_name_rb_node, rb_node);
475 cmp = strcmp(name, s->sym.name);
476
477 if (cmp < 0)
478 n = n->rb_left;
479 else if (cmp > 0)
480 n = n->rb_right;
481 else
482 return &s->sym;
483 }
484
485 return NULL;
486}
487
aeafcbaf 488struct symbol *dso__find_symbol(struct dso *dso,
79406cd7 489 enum map_type type, u64 addr)
fcf1203a 490{
aeafcbaf 491 return symbols__find(&dso->symbols[type], addr);
fcf1203a
ACM
492}
493
aeafcbaf 494struct symbol *dso__find_symbol_by_name(struct dso *dso, enum map_type type,
79406cd7
ACM
495 const char *name)
496{
aeafcbaf 497 return symbols__find_by_name(&dso->symbol_names[type], name);
79406cd7
ACM
498}
499
aeafcbaf 500void dso__sort_by_name(struct dso *dso, enum map_type type)
79406cd7 501{
aeafcbaf
ACM
502 dso__set_sorted_by_name(dso, type);
503 return symbols__sort_by_name(&dso->symbol_names[type],
504 &dso->symbols[type]);
79406cd7
ACM
505}
506
aeafcbaf 507int build_id__sprintf(const u8 *build_id, int len, char *bf)
a2928c42 508{
8d06367f 509 char *bid = bf;
aeafcbaf 510 const u8 *raw = build_id;
8d06367f 511 int i;
a2928c42 512
8d06367f
ACM
513 for (i = 0; i < len; ++i) {
514 sprintf(bid, "%02x", *raw);
515 ++raw;
516 bid += 2;
517 }
518
aeafcbaf 519 return raw - build_id;
8d06367f
ACM
520}
521
aeafcbaf 522size_t dso__fprintf_buildid(struct dso *dso, FILE *fp)
8d06367f
ACM
523{
524 char sbuild_id[BUILD_ID_SIZE * 2 + 1];
8d06367f 525
aeafcbaf 526 build_id__sprintf(dso->build_id, sizeof(dso->build_id), sbuild_id);
9e03eb2d
ACM
527 return fprintf(fp, "%s", sbuild_id);
528}
529
aeafcbaf
ACM
530size_t dso__fprintf_symbols_by_name(struct dso *dso,
531 enum map_type type, FILE *fp)
90f18e63
SD
532{
533 size_t ret = 0;
534 struct rb_node *nd;
535 struct symbol_name_rb_node *pos;
536
aeafcbaf 537 for (nd = rb_first(&dso->symbol_names[type]); nd; nd = rb_next(nd)) {
90f18e63
SD
538 pos = rb_entry(nd, struct symbol_name_rb_node, rb_node);
539 fprintf(fp, "%s\n", pos->sym.name);
540 }
541
542 return ret;
543}
544
aeafcbaf 545size_t dso__fprintf(struct dso *dso, enum map_type type, FILE *fp)
9e03eb2d
ACM
546{
547 struct rb_node *nd;
aeafcbaf 548 size_t ret = fprintf(fp, "dso: %s (", dso->short_name);
9e03eb2d 549
aeafcbaf
ACM
550 if (dso->short_name != dso->long_name)
551 ret += fprintf(fp, "%s, ", dso->long_name);
3846df2e 552 ret += fprintf(fp, "%s, %sloaded, ", map_type__name[type],
aeafcbaf
ACM
553 dso->loaded ? "" : "NOT ");
554 ret += dso__fprintf_buildid(dso, fp);
6a4694a4 555 ret += fprintf(fp, ")\n");
aeafcbaf 556 for (nd = rb_first(&dso->symbols[type]); nd; nd = rb_next(nd)) {
95011c60
ACM
557 struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
558 ret += symbol__fprintf(pos, fp);
a2928c42
ACM
559 }
560
561 return ret;
562}
563
9e201442
ACM
564int kallsyms__parse(const char *filename, void *arg,
565 int (*process_symbol)(void *arg, const char *name,
82151520 566 char type, u64 start))
a2928c42 567{
a2928c42
ACM
568 char *line = NULL;
569 size_t n;
3b01a413 570 int err = -1;
9e201442 571 FILE *file = fopen(filename, "r");
a2928c42
ACM
572
573 if (file == NULL)
574 goto out_failure;
575
3b01a413
ACM
576 err = 0;
577
a2928c42 578 while (!feof(file)) {
9cffa8d5 579 u64 start;
a2928c42
ACM
580 int line_len, len;
581 char symbol_type;
2e538c4a 582 char *symbol_name;
a2928c42
ACM
583
584 line_len = getline(&line, &n, file);
a1645ce1 585 if (line_len < 0 || !line)
a2928c42
ACM
586 break;
587
a2928c42
ACM
588 line[--line_len] = '\0'; /* \n */
589
a0055ae2 590 len = hex2u64(line, &start);
a2928c42
ACM
591
592 len++;
593 if (len + 2 >= line_len)
594 continue;
595
31877908 596 symbol_type = line[len];
3b01a413
ACM
597 len += 2;
598 symbol_name = line + len;
599 len = line_len - len;
682b335a 600
3b01a413
ACM
601 if (len >= KSYM_NAME_LEN) {
602 err = -1;
682b335a 603 break;
3b01a413
ACM
604 }
605
3f5a4272 606 err = process_symbol(arg, symbol_name,
82151520 607 symbol_type, start);
3f5a4272
AB
608 if (err)
609 break;
2e538c4a
ACM
610 }
611
612 free(line);
613 fclose(file);
682b335a 614 return err;
2e538c4a 615
2e538c4a
ACM
616out_failure:
617 return -1;
618}
619
682b335a
ACM
620struct process_kallsyms_args {
621 struct map *map;
622 struct dso *dso;
623};
624
c408fedf
ACM
625static u8 kallsyms2elf_type(char type)
626{
627 if (type == 'W')
628 return STB_WEAK;
629
630 return isupper(type) ? STB_GLOBAL : STB_LOCAL;
631}
632
682b335a 633static int map__process_kallsym_symbol(void *arg, const char *name,
82151520 634 char type, u64 start)
682b335a
ACM
635{
636 struct symbol *sym;
637 struct process_kallsyms_args *a = arg;
638 struct rb_root *root = &a->dso->symbols[a->map->type];
639
640 if (!symbol_type__is_a(type, a->map->type))
641 return 0;
642
82151520
CS
643 /*
644 * module symbols are not sorted so we add all
645 * symbols, setting length to 0, and rely on
646 * symbols__fixup_end() to fix it up.
647 */
648 sym = symbol__new(start, 0, kallsyms2elf_type(type), name);
682b335a
ACM
649 if (sym == NULL)
650 return -ENOMEM;
651 /*
652 * We will pass the symbols to the filter later, in
653 * map__split_kallsyms, when we have split the maps per module
654 */
655 symbols__insert(root, sym);
a1645ce1 656
682b335a
ACM
657 return 0;
658}
659
660/*
661 * Loads the function entries in /proc/kallsyms into kernel_map->dso,
662 * so that we can in the next step set the symbol ->end address and then
663 * call kernel_maps__split_kallsyms.
664 */
aeafcbaf 665static int dso__load_all_kallsyms(struct dso *dso, const char *filename,
9e201442 666 struct map *map)
682b335a 667{
aeafcbaf 668 struct process_kallsyms_args args = { .map = map, .dso = dso, };
9e201442 669 return kallsyms__parse(filename, &args, map__process_kallsym_symbol);
682b335a
ACM
670}
671
2e538c4a
ACM
672/*
673 * Split the symbols into maps, making sure there are no overlaps, i.e. the
674 * kernel range is broken in several maps, named [kernel].N, as we don't have
675 * the original ELF section names vmlinux have.
676 */
aeafcbaf 677static int dso__split_kallsyms(struct dso *dso, struct map *map,
9de89fe7 678 symbol_filter_t filter)
2e538c4a 679{
9de89fe7 680 struct map_groups *kmaps = map__kmap(map)->kmaps;
23346f21 681 struct machine *machine = kmaps->machine;
4e06255f 682 struct map *curr_map = map;
2e538c4a 683 struct symbol *pos;
8a953312 684 int count = 0, moved = 0;
aeafcbaf 685 struct rb_root *root = &dso->symbols[map->type];
4e06255f 686 struct rb_node *next = rb_first(root);
2e538c4a
ACM
687 int kernel_range = 0;
688
689 while (next) {
690 char *module;
691
692 pos = rb_entry(next, struct symbol, rb_node);
693 next = rb_next(&pos->rb_node);
694
695 module = strchr(pos->name, '\t');
696 if (module) {
75be6cf4 697 if (!symbol_conf.use_modules)
1de8e245
ACM
698 goto discard_symbol;
699
2e538c4a
ACM
700 *module++ = '\0';
701
b7cece76 702 if (strcmp(curr_map->dso->short_name, module)) {
a1645ce1 703 if (curr_map != map &&
aeafcbaf 704 dso->kernel == DSO_TYPE_GUEST_KERNEL &&
23346f21 705 machine__is_default_guest(machine)) {
a1645ce1
ZY
706 /*
707 * We assume all symbols of a module are
708 * continuous in * kallsyms, so curr_map
709 * points to a module and all its
710 * symbols are in its kmap. Mark it as
711 * loaded.
712 */
713 dso__set_loaded(curr_map->dso,
714 curr_map->type);
715 }
716
717 curr_map = map_groups__find_by_name(kmaps,
718 map->type, module);
4e06255f 719 if (curr_map == NULL) {
2f51903b 720 pr_debug("%s/proc/{kallsyms,modules} "
b7cece76 721 "inconsistency while looking "
a1645ce1 722 "for \"%s\" module!\n",
23346f21 723 machine->root_dir, module);
a1645ce1
ZY
724 curr_map = map;
725 goto discard_symbol;
af427bf5 726 }
b7cece76 727
a1645ce1 728 if (curr_map->dso->loaded &&
23346f21 729 !machine__is_default_guest(machine))
b7cece76 730 goto discard_symbol;
af427bf5 731 }
2e538c4a
ACM
732 /*
733 * So that we look just like we get from .ko files,
734 * i.e. not prelinked, relative to map->start.
735 */
4e06255f
ACM
736 pos->start = curr_map->map_ip(curr_map, pos->start);
737 pos->end = curr_map->map_ip(curr_map, pos->end);
738 } else if (curr_map != map) {
2e538c4a 739 char dso_name[PATH_MAX];
aeafcbaf 740 struct dso *ndso;
2e538c4a 741
8a953312
ACM
742 if (count == 0) {
743 curr_map = map;
744 goto filter_symbol;
745 }
746
aeafcbaf 747 if (dso->kernel == DSO_TYPE_GUEST_KERNEL)
a1645ce1
ZY
748 snprintf(dso_name, sizeof(dso_name),
749 "[guest.kernel].%d",
750 kernel_range++);
751 else
752 snprintf(dso_name, sizeof(dso_name),
753 "[kernel].%d",
754 kernel_range++);
2e538c4a 755
aeafcbaf
ACM
756 ndso = dso__new(dso_name);
757 if (ndso == NULL)
2e538c4a
ACM
758 return -1;
759
aeafcbaf 760 ndso->kernel = dso->kernel;
a1645ce1 761
aeafcbaf 762 curr_map = map__new2(pos->start, ndso, map->type);
37fe5fcb 763 if (curr_map == NULL) {
aeafcbaf 764 dso__delete(ndso);
2e538c4a
ACM
765 return -1;
766 }
a2928c42 767
4e06255f 768 curr_map->map_ip = curr_map->unmap_ip = identity__map_ip;
9de89fe7 769 map_groups__insert(kmaps, curr_map);
2e538c4a
ACM
770 ++kernel_range;
771 }
8a953312 772filter_symbol:
4e06255f 773 if (filter && filter(curr_map, pos)) {
1de8e245 774discard_symbol: rb_erase(&pos->rb_node, root);
00a192b3 775 symbol__delete(pos);
2e538c4a 776 } else {
4e06255f
ACM
777 if (curr_map != map) {
778 rb_erase(&pos->rb_node, root);
779 symbols__insert(&curr_map->dso->symbols[curr_map->type], pos);
8a953312
ACM
780 ++moved;
781 } else
782 ++count;
9974f496 783 }
a2928c42
ACM
784 }
785
a1645ce1 786 if (curr_map != map &&
aeafcbaf 787 dso->kernel == DSO_TYPE_GUEST_KERNEL &&
23346f21 788 machine__is_default_guest(kmaps->machine)) {
a1645ce1
ZY
789 dso__set_loaded(curr_map->dso, curr_map->type);
790 }
791
8a953312 792 return count + moved;
2e538c4a 793}
a2928c42 794
ec80fde7
ACM
795static bool symbol__restricted_filename(const char *filename,
796 const char *restricted_filename)
797{
798 bool restricted = false;
799
800 if (symbol_conf.kptr_restrict) {
801 char *r = realpath(filename, NULL);
802
803 if (r != NULL) {
804 restricted = strcmp(r, restricted_filename) == 0;
805 free(r);
806 return restricted;
807 }
808 }
809
810 return restricted;
811}
812
aeafcbaf 813int dso__load_kallsyms(struct dso *dso, const char *filename,
9de89fe7 814 struct map *map, symbol_filter_t filter)
2e538c4a 815{
ec80fde7
ACM
816 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
817 return -1;
818
aeafcbaf 819 if (dso__load_all_kallsyms(dso, filename, map) < 0)
2e538c4a
ACM
820 return -1;
821
694bf407 822 symbols__fixup_duplicate(&dso->symbols[map->type]);
3f5a4272
AB
823 symbols__fixup_end(&dso->symbols[map->type]);
824
aeafcbaf 825 if (dso->kernel == DSO_TYPE_GUEST_KERNEL)
44f24cb3 826 dso->symtab_type = DSO_BINARY_TYPE__GUEST_KALLSYMS;
a1645ce1 827 else
44f24cb3 828 dso->symtab_type = DSO_BINARY_TYPE__KALLSYMS;
2e538c4a 829
aeafcbaf 830 return dso__split_kallsyms(dso, map, filter);
af427bf5
ACM
831}
832
aeafcbaf 833static int dso__load_perf_map(struct dso *dso, struct map *map,
6beba7ad 834 symbol_filter_t filter)
80d496be
PE
835{
836 char *line = NULL;
837 size_t n;
838 FILE *file;
839 int nr_syms = 0;
840
aeafcbaf 841 file = fopen(dso->long_name, "r");
80d496be
PE
842 if (file == NULL)
843 goto out_failure;
844
845 while (!feof(file)) {
9cffa8d5 846 u64 start, size;
80d496be
PE
847 struct symbol *sym;
848 int line_len, len;
849
850 line_len = getline(&line, &n, file);
851 if (line_len < 0)
852 break;
853
854 if (!line)
855 goto out_failure;
856
857 line[--line_len] = '\0'; /* \n */
858
859 len = hex2u64(line, &start);
860
861 len++;
862 if (len + 2 >= line_len)
863 continue;
864
865 len += hex2u64(line + len, &size);
866
867 len++;
868 if (len + 2 >= line_len)
869 continue;
870
c408fedf 871 sym = symbol__new(start, size, STB_GLOBAL, line + len);
80d496be
PE
872
873 if (sym == NULL)
874 goto out_delete_line;
875
439d473b 876 if (filter && filter(map, sym))
00a192b3 877 symbol__delete(sym);
80d496be 878 else {
aeafcbaf 879 symbols__insert(&dso->symbols[map->type], sym);
80d496be
PE
880 nr_syms++;
881 }
882 }
883
884 free(line);
885 fclose(file);
886
887 return nr_syms;
888
889out_delete_line:
890 free(line);
891out_failure:
892 return -1;
893}
894
e5a1845f 895bool dso__build_id_equal(const struct dso *dso, u8 *build_id)
78075caa 896{
aeafcbaf 897 return memcmp(dso->build_id, build_id, sizeof(dso->build_id)) == 0;
78075caa
ACM
898}
899
a1645ce1 900bool __dsos__read_build_ids(struct list_head *head, bool with_hits)
57f395a7 901{
e30a3d12 902 bool have_build_id = false;
57f395a7
FW
903 struct dso *pos;
904
6122e4e4
ACM
905 list_for_each_entry(pos, head, node) {
906 if (with_hits && !pos->hit)
907 continue;
f6e1467d
ACM
908 if (pos->has_build_id) {
909 have_build_id = true;
910 continue;
911 }
e30a3d12
ACM
912 if (filename__read_build_id(pos->long_name, pos->build_id,
913 sizeof(pos->build_id)) > 0) {
914 have_build_id = true;
915 pos->has_build_id = true;
916 }
6122e4e4 917 }
57f395a7 918
e30a3d12 919 return have_build_id;
57f395a7
FW
920}
921
aeafcbaf 922char dso__symtab_origin(const struct dso *dso)
94cb9e38
ACM
923{
924 static const char origin[] = {
44f24cb3
JO
925 [DSO_BINARY_TYPE__KALLSYMS] = 'k',
926 [DSO_BINARY_TYPE__JAVA_JIT] = 'j',
927 [DSO_BINARY_TYPE__DEBUGLINK] = 'l',
928 [DSO_BINARY_TYPE__BUILD_ID_CACHE] = 'B',
929 [DSO_BINARY_TYPE__FEDORA_DEBUGINFO] = 'f',
930 [DSO_BINARY_TYPE__UBUNTU_DEBUGINFO] = 'u',
931 [DSO_BINARY_TYPE__BUILDID_DEBUGINFO] = 'b',
932 [DSO_BINARY_TYPE__SYSTEM_PATH_DSO] = 'd',
933 [DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE] = 'K',
934 [DSO_BINARY_TYPE__GUEST_KALLSYMS] = 'g',
935 [DSO_BINARY_TYPE__GUEST_KMODULE] = 'G',
94cb9e38
ACM
936 };
937
44f24cb3 938 if (dso == NULL || dso->symtab_type == DSO_BINARY_TYPE__NOT_FOUND)
94cb9e38 939 return '!';
aeafcbaf 940 return origin[dso->symtab_type];
94cb9e38
ACM
941}
942
44f24cb3
JO
943int dso__binary_type_file(struct dso *dso, enum dso_binary_type type,
944 char *root_dir, char *file, size_t size)
945{
946 char build_id_hex[BUILD_ID_SIZE * 2 + 1];
947 int ret = 0;
948
949 switch (type) {
950 case DSO_BINARY_TYPE__DEBUGLINK: {
951 char *debuglink;
952
953 strncpy(file, dso->long_name, size);
954 debuglink = file + dso->long_name_len;
955 while (debuglink != file && *debuglink != '/')
956 debuglink--;
957 if (*debuglink == '/')
958 debuglink++;
959 filename__read_debuglink(dso->long_name, debuglink,
960 size - (debuglink - file));
961 }
962 break;
963 case DSO_BINARY_TYPE__BUILD_ID_CACHE:
964 /* skip the locally configured cache if a symfs is given */
965 if (symbol_conf.symfs[0] ||
966 (dso__build_id_filename(dso, file, size) == NULL))
967 ret = -1;
968 break;
969
970 case DSO_BINARY_TYPE__FEDORA_DEBUGINFO:
971 snprintf(file, size, "%s/usr/lib/debug%s.debug",
972 symbol_conf.symfs, dso->long_name);
973 break;
974
975 case DSO_BINARY_TYPE__UBUNTU_DEBUGINFO:
976 snprintf(file, size, "%s/usr/lib/debug%s",
977 symbol_conf.symfs, dso->long_name);
978 break;
979
980 case DSO_BINARY_TYPE__BUILDID_DEBUGINFO:
981 if (!dso->has_build_id) {
982 ret = -1;
983 break;
984 }
985
986 build_id__sprintf(dso->build_id,
987 sizeof(dso->build_id),
988 build_id_hex);
989 snprintf(file, size,
990 "%s/usr/lib/debug/.build-id/%.2s/%s.debug",
991 symbol_conf.symfs, build_id_hex, build_id_hex + 2);
992 break;
993
994 case DSO_BINARY_TYPE__SYSTEM_PATH_DSO:
995 snprintf(file, size, "%s%s",
996 symbol_conf.symfs, dso->long_name);
997 break;
998
999 case DSO_BINARY_TYPE__GUEST_KMODULE:
1000 snprintf(file, size, "%s%s%s", symbol_conf.symfs,
1001 root_dir, dso->long_name);
1002 break;
1003
1004 case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE:
1005 snprintf(file, size, "%s%s", symbol_conf.symfs,
1006 dso->long_name);
1007 break;
1008
1009 default:
1010 case DSO_BINARY_TYPE__KALLSYMS:
1011 case DSO_BINARY_TYPE__GUEST_KALLSYMS:
1012 case DSO_BINARY_TYPE__JAVA_JIT:
1013 case DSO_BINARY_TYPE__NOT_FOUND:
1014 ret = -1;
1015 break;
1016 }
1017
1018 return ret;
1019}
1020
aeafcbaf 1021int dso__load(struct dso *dso, struct map *map, symbol_filter_t filter)
a2928c42 1022{
c338aee8 1023 char *name;
a2928c42
ACM
1024 int ret = -1;
1025 int fd;
44f24cb3 1026 u_int i;
23346f21 1027 struct machine *machine;
44f24cb3 1028 char *root_dir = (char *) "";
6da80ce8 1029 int want_symtab;
a2928c42 1030
aeafcbaf 1031 dso__set_loaded(dso, map->type);
66bd8424 1032
aeafcbaf
ACM
1033 if (dso->kernel == DSO_TYPE_KERNEL)
1034 return dso__load_kernel_sym(dso, map, filter);
1035 else if (dso->kernel == DSO_TYPE_GUEST_KERNEL)
1036 return dso__load_guest_kernel_sym(dso, map, filter);
a1645ce1 1037
23346f21
ACM
1038 if (map->groups && map->groups->machine)
1039 machine = map->groups->machine;
a1645ce1 1040 else
23346f21 1041 machine = NULL;
c338aee8 1042
44f24cb3 1043 name = malloc(PATH_MAX);
a2928c42
ACM
1044 if (!name)
1045 return -1;
1046
aeafcbaf 1047 dso->adjust_symbols = 0;
f5812a7a 1048
aeafcbaf 1049 if (strncmp(dso->name, "/tmp/perf-", 10) == 0) {
981c1252
PE
1050 struct stat st;
1051
e9b52ef2 1052 if (lstat(dso->name, &st) < 0)
981c1252
PE
1053 return -1;
1054
1055 if (st.st_uid && (st.st_uid != geteuid())) {
1056 pr_warning("File %s not owned by current user or root, "
1057 "ignoring it.\n", dso->name);
1058 return -1;
1059 }
1060
aeafcbaf 1061 ret = dso__load_perf_map(dso, map, filter);
44f24cb3
JO
1062 dso->symtab_type = ret > 0 ? DSO_BINARY_TYPE__JAVA_JIT :
1063 DSO_BINARY_TYPE__NOT_FOUND;
94cb9e38
ACM
1064 return ret;
1065 }
1066
44f24cb3
JO
1067 if (machine)
1068 root_dir = machine->root_dir;
1069
6da80ce8
DM
1070 /* Iterate over candidate debug images.
1071 * On the first pass, only load images if they have a full symtab.
1072 * Failing that, do a second pass where we accept .dynsym also
1073 */
60e4b10c
ACM
1074 want_symtab = 1;
1075restart:
44f24cb3 1076 for (i = 0; i < DSO_BINARY_TYPE__SYMTAB_CNT; i++) {
6da80ce8 1077
44f24cb3 1078 dso->symtab_type = binary_type_symtab[i];
ec5761ea 1079
44f24cb3
JO
1080 if (dso__binary_type_file(dso, dso->symtab_type,
1081 root_dir, name, PATH_MAX))
1082 continue;
6da80ce8
DM
1083
1084 /* Name is now the name of the next image to try */
a2928c42 1085 fd = open(name, O_RDONLY);
6da80ce8
DM
1086 if (fd < 0)
1087 continue;
a2928c42 1088
aeafcbaf 1089 ret = dso__load_sym(dso, map, name, fd, filter, 0,
6da80ce8
DM
1090 want_symtab);
1091 close(fd);
a2928c42 1092
6da80ce8
DM
1093 /*
1094 * Some people seem to have debuginfo files _WITHOUT_ debug
1095 * info!?!?
1096 */
1097 if (!ret)
1098 continue;
a2928c42 1099
6da80ce8 1100 if (ret > 0) {
33ff581e
JO
1101 int nr_plt;
1102
1103 nr_plt = dso__synthesize_plt_symbols(dso, name, map, filter);
6da80ce8
DM
1104 if (nr_plt > 0)
1105 ret += nr_plt;
1106 break;
1107 }
a25e46c4 1108 }
6da80ce8 1109
60e4b10c
ACM
1110 /*
1111 * If we wanted a full symtab but no image had one,
1112 * relax our requirements and repeat the search.
1113 */
1114 if (ret <= 0 && want_symtab) {
1115 want_symtab = 0;
1116 goto restart;
1117 }
1118
a2928c42 1119 free(name);
aeafcbaf 1120 if (ret < 0 && strstr(dso->name, " (deleted)") != NULL)
1340e6bb 1121 return 0;
a2928c42
ACM
1122 return ret;
1123}
1124
aeafcbaf 1125struct map *map_groups__find_by_name(struct map_groups *mg,
79406cd7 1126 enum map_type type, const char *name)
439d473b
ACM
1127{
1128 struct rb_node *nd;
1129
aeafcbaf 1130 for (nd = rb_first(&mg->maps[type]); nd; nd = rb_next(nd)) {
439d473b
ACM
1131 struct map *map = rb_entry(nd, struct map, rb_node);
1132
b7cece76 1133 if (map->dso && strcmp(map->dso->short_name, name) == 0)
439d473b
ACM
1134 return map;
1135 }
1136
1137 return NULL;
1138}
1139
aeafcbaf
ACM
1140static int dso__kernel_module_get_build_id(struct dso *dso,
1141 const char *root_dir)
b7cece76
ACM
1142{
1143 char filename[PATH_MAX];
1144 /*
1145 * kernel module short names are of the form "[module]" and
1146 * we need just "module" here.
1147 */
aeafcbaf 1148 const char *name = dso->short_name + 1;
b7cece76
ACM
1149
1150 snprintf(filename, sizeof(filename),
a1645ce1
ZY
1151 "%s/sys/module/%.*s/notes/.note.gnu.build-id",
1152 root_dir, (int)strlen(name) - 1, name);
b7cece76 1153
aeafcbaf
ACM
1154 if (sysfs__read_build_id(filename, dso->build_id,
1155 sizeof(dso->build_id)) == 0)
1156 dso->has_build_id = true;
b7cece76
ACM
1157
1158 return 0;
1159}
1160
aeafcbaf 1161static int map_groups__set_modules_path_dir(struct map_groups *mg,
a1645ce1 1162 const char *dir_name)
6cfcc53e 1163{
439d473b 1164 struct dirent *dent;
5aab621b 1165 DIR *dir = opendir(dir_name);
74534341 1166 int ret = 0;
6cfcc53e 1167
439d473b 1168 if (!dir) {
5aab621b 1169 pr_debug("%s: cannot open %s dir\n", __func__, dir_name);
439d473b
ACM
1170 return -1;
1171 }
6cfcc53e 1172
439d473b
ACM
1173 while ((dent = readdir(dir)) != NULL) {
1174 char path[PATH_MAX];
a1645ce1
ZY
1175 struct stat st;
1176
1177 /*sshfs might return bad dent->d_type, so we have to stat*/
2b600f95 1178 snprintf(path, sizeof(path), "%s/%s", dir_name, dent->d_name);
a1645ce1
ZY
1179 if (stat(path, &st))
1180 continue;
439d473b 1181
a1645ce1 1182 if (S_ISDIR(st.st_mode)) {
439d473b
ACM
1183 if (!strcmp(dent->d_name, ".") ||
1184 !strcmp(dent->d_name, ".."))
1185 continue;
1186
aeafcbaf 1187 ret = map_groups__set_modules_path_dir(mg, path);
74534341
GJ
1188 if (ret < 0)
1189 goto out;
439d473b
ACM
1190 } else {
1191 char *dot = strrchr(dent->d_name, '.'),
1192 dso_name[PATH_MAX];
1193 struct map *map;
cfc10d3b 1194 char *long_name;
439d473b
ACM
1195
1196 if (dot == NULL || strcmp(dot, ".ko"))
1197 continue;
1198 snprintf(dso_name, sizeof(dso_name), "[%.*s]",
1199 (int)(dot - dent->d_name), dent->d_name);
1200
a2a99e8e 1201 strxfrchar(dso_name, '-', '_');
aeafcbaf
ACM
1202 map = map_groups__find_by_name(mg, MAP__FUNCTION,
1203 dso_name);
439d473b
ACM
1204 if (map == NULL)
1205 continue;
1206
cfc10d3b 1207 long_name = strdup(path);
74534341
GJ
1208 if (long_name == NULL) {
1209 ret = -1;
1210 goto out;
1211 }
cfc10d3b 1212 dso__set_long_name(map->dso, long_name);
6e406257 1213 map->dso->lname_alloc = 1;
a1645ce1 1214 dso__kernel_module_get_build_id(map->dso, "");
439d473b 1215 }
439d473b 1216 }
6cfcc53e 1217
74534341 1218out:
439d473b 1219 closedir(dir);
74534341 1220 return ret;
439d473b 1221}
6cfcc53e 1222
a1645ce1 1223static char *get_kernel_version(const char *root_dir)
439d473b 1224{
a1645ce1
ZY
1225 char version[PATH_MAX];
1226 FILE *file;
1227 char *name, *tmp;
1228 const char *prefix = "Linux version ";
1229
1230 sprintf(version, "%s/proc/version", root_dir);
1231 file = fopen(version, "r");
1232 if (!file)
1233 return NULL;
1234
1235 version[0] = '\0';
1236 tmp = fgets(version, sizeof(version), file);
1237 fclose(file);
1238
1239 name = strstr(version, prefix);
1240 if (!name)
1241 return NULL;
1242 name += strlen(prefix);
1243 tmp = strchr(name, ' ');
1244 if (tmp)
1245 *tmp = '\0';
1246
1247 return strdup(name);
1248}
1249
aeafcbaf 1250static int machine__set_modules_path(struct machine *machine)
a1645ce1
ZY
1251{
1252 char *version;
439d473b 1253 char modules_path[PATH_MAX];
6cfcc53e 1254
aeafcbaf 1255 version = get_kernel_version(machine->root_dir);
a1645ce1 1256 if (!version)
439d473b 1257 return -1;
6cfcc53e 1258
a1645ce1 1259 snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s/kernel",
aeafcbaf 1260 machine->root_dir, version);
a1645ce1 1261 free(version);
6cfcc53e 1262
aeafcbaf 1263 return map_groups__set_modules_path_dir(&machine->kmaps, modules_path);
6cfcc53e
MG
1264}
1265
aeafcbaf 1266struct map *machine__new_module(struct machine *machine, u64 start,
d28c6223 1267 const char *filename)
b7cece76
ACM
1268{
1269 struct map *map;
aeafcbaf 1270 struct dso *dso = __dsos__findnew(&machine->kernel_dsos, filename);
b7cece76
ACM
1271
1272 if (dso == NULL)
1273 return NULL;
1274
1275 map = map__new2(start, dso, MAP__FUNCTION);
1276 if (map == NULL)
1277 return NULL;
1278
aeafcbaf 1279 if (machine__is_host(machine))
44f24cb3 1280 dso->symtab_type = DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE;
a1645ce1 1281 else
44f24cb3 1282 dso->symtab_type = DSO_BINARY_TYPE__GUEST_KMODULE;
aeafcbaf 1283 map_groups__insert(&machine->kmaps, map);
b7cece76
ACM
1284 return map;
1285}
1286
aeafcbaf 1287static int machine__create_modules(struct machine *machine)
439d473b
ACM
1288{
1289 char *line = NULL;
1290 size_t n;
a1645ce1 1291 FILE *file;
439d473b 1292 struct map *map;
a1645ce1
ZY
1293 const char *modules;
1294 char path[PATH_MAX];
1295
aeafcbaf 1296 if (machine__is_default_guest(machine))
a1645ce1
ZY
1297 modules = symbol_conf.default_guest_modules;
1298 else {
aeafcbaf 1299 sprintf(path, "%s/proc/modules", machine->root_dir);
a1645ce1
ZY
1300 modules = path;
1301 }
6cfcc53e 1302
ec80fde7
ACM
1303 if (symbol__restricted_filename(path, "/proc/modules"))
1304 return -1;
1305
a1645ce1 1306 file = fopen(modules, "r");
439d473b
ACM
1307 if (file == NULL)
1308 return -1;
6cfcc53e 1309
439d473b
ACM
1310 while (!feof(file)) {
1311 char name[PATH_MAX];
1312 u64 start;
439d473b
ACM
1313 char *sep;
1314 int line_len;
6cfcc53e 1315
439d473b
ACM
1316 line_len = getline(&line, &n, file);
1317 if (line_len < 0)
1318 break;
1319
1320 if (!line)
1321 goto out_failure;
1322
1323 line[--line_len] = '\0'; /* \n */
1324
1325 sep = strrchr(line, 'x');
1326 if (sep == NULL)
1327 continue;
1328
1329 hex2u64(sep + 1, &start);
1330
1331 sep = strchr(line, ' ');
1332 if (sep == NULL)
1333 continue;
1334
1335 *sep = '\0';
1336
1337 snprintf(name, sizeof(name), "[%s]", line);
aeafcbaf 1338 map = machine__new_module(machine, start, name);
b7cece76 1339 if (map == NULL)
439d473b 1340 goto out_delete_line;
aeafcbaf 1341 dso__kernel_module_get_build_id(map->dso, machine->root_dir);
6cfcc53e 1342 }
439d473b
ACM
1343
1344 free(line);
1345 fclose(file);
1346
aeafcbaf 1347 return machine__set_modules_path(machine);
439d473b
ACM
1348
1349out_delete_line:
1350 free(line);
1351out_failure:
1352 return -1;
6cfcc53e
MG
1353}
1354
aeafcbaf 1355int dso__load_vmlinux(struct dso *dso, struct map *map,
fd930ff9 1356 const char *vmlinux, symbol_filter_t filter)
a2928c42 1357{
fbd733b8 1358 int err = -1, fd;
ec5761ea 1359 char symfs_vmlinux[PATH_MAX];
a2928c42 1360
a639dc64 1361 snprintf(symfs_vmlinux, sizeof(symfs_vmlinux), "%s%s",
ec5761ea
DA
1362 symbol_conf.symfs, vmlinux);
1363 fd = open(symfs_vmlinux, O_RDONLY);
a2928c42
ACM
1364 if (fd < 0)
1365 return -1;
1366
aeafcbaf
ACM
1367 dso__set_long_name(dso, (char *)vmlinux);
1368 dso__set_loaded(dso, map->type);
1369 err = dso__load_sym(dso, map, symfs_vmlinux, fd, filter, 0, 0);
a2928c42
ACM
1370 close(fd);
1371
3846df2e 1372 if (err > 0)
ec5761ea 1373 pr_debug("Using %s for symbols\n", symfs_vmlinux);
3846df2e 1374
a2928c42
ACM
1375 return err;
1376}
1377
aeafcbaf 1378int dso__load_vmlinux_path(struct dso *dso, struct map *map,
9de89fe7 1379 symbol_filter_t filter)
a19afe46
ACM
1380{
1381 int i, err = 0;
5ad90e4e 1382 char *filename;
a19afe46
ACM
1383
1384 pr_debug("Looking at the vmlinux_path (%d entries long)\n",
5ad90e4e
ACM
1385 vmlinux_path__nr_entries + 1);
1386
aeafcbaf 1387 filename = dso__build_id_filename(dso, NULL, 0);
5ad90e4e 1388 if (filename != NULL) {
aeafcbaf 1389 err = dso__load_vmlinux(dso, map, filename, filter);
261ee821 1390 if (err > 0)
5ad90e4e 1391 goto out;
5ad90e4e
ACM
1392 free(filename);
1393 }
a19afe46
ACM
1394
1395 for (i = 0; i < vmlinux_path__nr_entries; ++i) {
aeafcbaf 1396 err = dso__load_vmlinux(dso, map, vmlinux_path[i], filter);
a19afe46 1397 if (err > 0) {
aeafcbaf 1398 dso__set_long_name(dso, strdup(vmlinux_path[i]));
a19afe46
ACM
1399 break;
1400 }
1401 }
5ad90e4e 1402out:
a19afe46
ACM
1403 return err;
1404}
1405
aeafcbaf 1406static int dso__load_kernel_sym(struct dso *dso, struct map *map,
9de89fe7 1407 symbol_filter_t filter)
a827c875 1408{
cc612d81 1409 int err;
9e201442
ACM
1410 const char *kallsyms_filename = NULL;
1411 char *kallsyms_allocated_filename = NULL;
dc8d6ab2 1412 /*
b226a5a7
DA
1413 * Step 1: if the user specified a kallsyms or vmlinux filename, use
1414 * it and only it, reporting errors to the user if it cannot be used.
dc8d6ab2
ACM
1415 *
1416 * For instance, try to analyse an ARM perf.data file _without_ a
1417 * build-id, or if the user specifies the wrong path to the right
1418 * vmlinux file, obviously we can't fallback to another vmlinux (a
1419 * x86_86 one, on the machine where analysis is being performed, say),
1420 * or worse, /proc/kallsyms.
1421 *
1422 * If the specified file _has_ a build-id and there is a build-id
1423 * section in the perf.data file, we will still do the expected
1424 * validation in dso__load_vmlinux and will bail out if they don't
1425 * match.
1426 */
b226a5a7
DA
1427 if (symbol_conf.kallsyms_name != NULL) {
1428 kallsyms_filename = symbol_conf.kallsyms_name;
1429 goto do_kallsyms;
1430 }
1431
dc8d6ab2 1432 if (symbol_conf.vmlinux_name != NULL) {
aeafcbaf 1433 err = dso__load_vmlinux(dso, map,
dc8d6ab2 1434 symbol_conf.vmlinux_name, filter);
e7dadc00 1435 if (err > 0) {
aeafcbaf 1436 dso__set_long_name(dso,
e7dadc00
ACM
1437 strdup(symbol_conf.vmlinux_name));
1438 goto out_fixup;
1439 }
1440 return err;
dc8d6ab2 1441 }
cc612d81
ACM
1442
1443 if (vmlinux_path != NULL) {
aeafcbaf 1444 err = dso__load_vmlinux_path(dso, map, filter);
a19afe46
ACM
1445 if (err > 0)
1446 goto out_fixup;
cc612d81
ACM
1447 }
1448
ec5761ea
DA
1449 /* do not try local files if a symfs was given */
1450 if (symbol_conf.symfs[0] != 0)
1451 return -1;
1452
b7cece76
ACM
1453 /*
1454 * Say the kernel DSO was created when processing the build-id header table,
1455 * we have a build-id, so check if it is the same as the running kernel,
1456 * using it if it is.
1457 */
aeafcbaf 1458 if (dso->has_build_id) {
b7cece76 1459 u8 kallsyms_build_id[BUILD_ID_SIZE];
9e201442 1460 char sbuild_id[BUILD_ID_SIZE * 2 + 1];
b7cece76
ACM
1461
1462 if (sysfs__read_build_id("/sys/kernel/notes", kallsyms_build_id,
8d0591f6 1463 sizeof(kallsyms_build_id)) == 0) {
aeafcbaf 1464 if (dso__build_id_equal(dso, kallsyms_build_id)) {
9e201442 1465 kallsyms_filename = "/proc/kallsyms";
8d0591f6 1466 goto do_kallsyms;
9e201442 1467 }
8d0591f6 1468 }
dc8d6ab2
ACM
1469 /*
1470 * Now look if we have it on the build-id cache in
1471 * $HOME/.debug/[kernel.kallsyms].
1472 */
aeafcbaf 1473 build_id__sprintf(dso->build_id, sizeof(dso->build_id),
9e201442
ACM
1474 sbuild_id);
1475
1476 if (asprintf(&kallsyms_allocated_filename,
1477 "%s/.debug/[kernel.kallsyms]/%s",
3846df2e
ACM
1478 getenv("HOME"), sbuild_id) == -1) {
1479 pr_err("Not enough memory for kallsyms file lookup\n");
dc8d6ab2 1480 return -1;
3846df2e 1481 }
dc8d6ab2 1482
19fc2ded
ACM
1483 kallsyms_filename = kallsyms_allocated_filename;
1484
dc8d6ab2 1485 if (access(kallsyms_filename, F_OK)) {
3846df2e
ACM
1486 pr_err("No kallsyms or vmlinux with build-id %s "
1487 "was found\n", sbuild_id);
9e201442 1488 free(kallsyms_allocated_filename);
dc8d6ab2 1489 return -1;
9e201442 1490 }
dc8d6ab2
ACM
1491 } else {
1492 /*
1493 * Last resort, if we don't have a build-id and couldn't find
1494 * any vmlinux file, try the running kernel kallsyms table.
1495 */
9e201442 1496 kallsyms_filename = "/proc/kallsyms";
9e201442 1497 }
439d473b 1498
cc612d81 1499do_kallsyms:
aeafcbaf 1500 err = dso__load_kallsyms(dso, kallsyms_filename, map, filter);
3846df2e
ACM
1501 if (err > 0)
1502 pr_debug("Using %s for symbols\n", kallsyms_filename);
dc8d6ab2 1503 free(kallsyms_allocated_filename);
439d473b
ACM
1504
1505 if (err > 0) {
0a0317b4 1506 dso__set_long_name(dso, strdup("[kernel.kallsyms]"));
cc612d81 1507out_fixup:
6a4694a4
ACM
1508 map__fixup_start(map);
1509 map__fixup_end(map);
439d473b 1510 }
94cb9e38 1511
a827c875
ACM
1512 return err;
1513}
1514
aeafcbaf
ACM
1515static int dso__load_guest_kernel_sym(struct dso *dso, struct map *map,
1516 symbol_filter_t filter)
a1645ce1
ZY
1517{
1518 int err;
1519 const char *kallsyms_filename = NULL;
23346f21 1520 struct machine *machine;
a1645ce1
ZY
1521 char path[PATH_MAX];
1522
1523 if (!map->groups) {
1524 pr_debug("Guest kernel map hasn't the point to groups\n");
1525 return -1;
1526 }
23346f21 1527 machine = map->groups->machine;
a1645ce1 1528
23346f21 1529 if (machine__is_default_guest(machine)) {
a1645ce1
ZY
1530 /*
1531 * if the user specified a vmlinux filename, use it and only
1532 * it, reporting errors to the user if it cannot be used.
1533 * Or use file guest_kallsyms inputted by user on commandline
1534 */
1535 if (symbol_conf.default_guest_vmlinux_name != NULL) {
aeafcbaf 1536 err = dso__load_vmlinux(dso, map,
a1645ce1
ZY
1537 symbol_conf.default_guest_vmlinux_name, filter);
1538 goto out_try_fixup;
1539 }
1540
1541 kallsyms_filename = symbol_conf.default_guest_kallsyms;
1542 if (!kallsyms_filename)
1543 return -1;
1544 } else {
23346f21 1545 sprintf(path, "%s/proc/kallsyms", machine->root_dir);
a1645ce1
ZY
1546 kallsyms_filename = path;
1547 }
1548
aeafcbaf 1549 err = dso__load_kallsyms(dso, kallsyms_filename, map, filter);
a1645ce1
ZY
1550 if (err > 0)
1551 pr_debug("Using %s for symbols\n", kallsyms_filename);
1552
1553out_try_fixup:
1554 if (err > 0) {
1555 if (kallsyms_filename != NULL) {
48ea8f54 1556 machine__mmap_name(machine, path, sizeof(path));
aeafcbaf 1557 dso__set_long_name(dso, strdup(path));
a1645ce1
ZY
1558 }
1559 map__fixup_start(map);
1560 map__fixup_end(map);
1561 }
1562
1563 return err;
1564}
cd84c2ac 1565
e5a1845f 1566void dsos__add(struct list_head *head, struct dso *dso)
cd84c2ac 1567{
b0da954a 1568 list_add_tail(&dso->node, head);
cd84c2ac
FW
1569}
1570
b0da954a 1571static struct dso *dsos__find(struct list_head *head, const char *name)
cd84c2ac
FW
1572{
1573 struct dso *pos;
1574
b0da954a 1575 list_for_each_entry(pos, head, node)
cf4e5b08 1576 if (strcmp(pos->long_name, name) == 0)
cd84c2ac
FW
1577 return pos;
1578 return NULL;
1579}
1580
a89e5abe 1581struct dso *__dsos__findnew(struct list_head *head, const char *name)
cd84c2ac 1582{
a89e5abe 1583 struct dso *dso = dsos__find(head, name);
cd84c2ac 1584
e4204992 1585 if (!dso) {
00a192b3 1586 dso = dso__new(name);
cfc10d3b 1587 if (dso != NULL) {
a89e5abe 1588 dsos__add(head, dso);
cfc10d3b
ACM
1589 dso__set_basename(dso);
1590 }
66bd8424 1591 }
cd84c2ac
FW
1592
1593 return dso;
cd84c2ac
FW
1594}
1595
1f626bc3 1596size_t __dsos__fprintf(struct list_head *head, FILE *fp)
cd84c2ac
FW
1597{
1598 struct dso *pos;
cbf69680 1599 size_t ret = 0;
cd84c2ac 1600
95011c60
ACM
1601 list_for_each_entry(pos, head, node) {
1602 int i;
1603 for (i = 0; i < MAP__NR_TYPES; ++i)
cbf69680 1604 ret += dso__fprintf(pos, i, fp);
95011c60 1605 }
cbf69680
ACM
1606
1607 return ret;
cd84c2ac
FW
1608}
1609
aeafcbaf 1610size_t machines__fprintf_dsos(struct rb_root *machines, FILE *fp)
b0da954a 1611{
a1645ce1 1612 struct rb_node *nd;
cbf69680 1613 size_t ret = 0;
a1645ce1 1614
aeafcbaf 1615 for (nd = rb_first(machines); nd; nd = rb_next(nd)) {
23346f21 1616 struct machine *pos = rb_entry(nd, struct machine, rb_node);
cbf69680
ACM
1617 ret += __dsos__fprintf(&pos->kernel_dsos, fp);
1618 ret += __dsos__fprintf(&pos->user_dsos, fp);
a1645ce1 1619 }
cbf69680
ACM
1620
1621 return ret;
b0da954a
ACM
1622}
1623
88d3d9b7
ACM
1624static size_t __dsos__fprintf_buildid(struct list_head *head, FILE *fp,
1625 bool with_hits)
9e03eb2d
ACM
1626{
1627 struct dso *pos;
1628 size_t ret = 0;
1629
b0da954a 1630 list_for_each_entry(pos, head, node) {
88d3d9b7
ACM
1631 if (with_hits && !pos->hit)
1632 continue;
9e03eb2d 1633 ret += dso__fprintf_buildid(pos, fp);
1124ba73 1634 ret += fprintf(fp, " %s\n", pos->long_name);
9e03eb2d
ACM
1635 }
1636 return ret;
1637}
1638
aeafcbaf
ACM
1639size_t machine__fprintf_dsos_buildid(struct machine *machine, FILE *fp,
1640 bool with_hits)
f869097e 1641{
aeafcbaf
ACM
1642 return __dsos__fprintf_buildid(&machine->kernel_dsos, fp, with_hits) +
1643 __dsos__fprintf_buildid(&machine->user_dsos, fp, with_hits);
f869097e
ACM
1644}
1645
aeafcbaf
ACM
1646size_t machines__fprintf_dsos_buildid(struct rb_root *machines,
1647 FILE *fp, bool with_hits)
b0da954a 1648{
a1645ce1
ZY
1649 struct rb_node *nd;
1650 size_t ret = 0;
1651
aeafcbaf 1652 for (nd = rb_first(machines); nd; nd = rb_next(nd)) {
23346f21 1653 struct machine *pos = rb_entry(nd, struct machine, rb_node);
f869097e 1654 ret += machine__fprintf_dsos_buildid(pos, fp, with_hits);
a1645ce1
ZY
1655 }
1656 return ret;
b0da954a
ACM
1657}
1658
f57b05ed
JO
1659static struct dso*
1660dso__kernel_findnew(struct machine *machine, const char *name,
1661 const char *short_name, int dso_type)
fd1d908c 1662{
f57b05ed
JO
1663 /*
1664 * The kernel dso could be created by build_id processing.
1665 */
1666 struct dso *dso = __dsos__findnew(&machine->kernel_dsos, name);
a1645ce1 1667
f57b05ed
JO
1668 /*
1669 * We need to run this in all cases, since during the build_id
1670 * processing we had no idea this was the kernel dso.
1671 */
aeafcbaf 1672 if (dso != NULL) {
f57b05ed
JO
1673 dso__set_short_name(dso, short_name);
1674 dso->kernel = dso_type;
fd1d908c
ACM
1675 }
1676
aeafcbaf 1677 return dso;
fd1d908c
ACM
1678}
1679
aeafcbaf 1680void dso__read_running_kernel_build_id(struct dso *dso, struct machine *machine)
fd1d908c 1681{
a1645ce1
ZY
1682 char path[PATH_MAX];
1683
23346f21 1684 if (machine__is_default_guest(machine))
a1645ce1 1685 return;
23346f21 1686 sprintf(path, "%s/sys/kernel/notes", machine->root_dir);
aeafcbaf
ACM
1687 if (sysfs__read_build_id(path, dso->build_id,
1688 sizeof(dso->build_id)) == 0)
1689 dso->has_build_id = true;
fd1d908c
ACM
1690}
1691
f57b05ed 1692static struct dso *machine__get_kernel(struct machine *machine)
cd84c2ac 1693{
a1645ce1
ZY
1694 const char *vmlinux_name = NULL;
1695 struct dso *kernel;
cd84c2ac 1696
aeafcbaf 1697 if (machine__is_host(machine)) {
a1645ce1 1698 vmlinux_name = symbol_conf.vmlinux_name;
f57b05ed
JO
1699 if (!vmlinux_name)
1700 vmlinux_name = "[kernel.kallsyms]";
1701
1702 kernel = dso__kernel_findnew(machine, vmlinux_name,
1703 "[kernel]",
1704 DSO_TYPE_KERNEL);
a1645ce1 1705 } else {
f57b05ed
JO
1706 char bf[PATH_MAX];
1707
aeafcbaf 1708 if (machine__is_default_guest(machine))
a1645ce1 1709 vmlinux_name = symbol_conf.default_guest_vmlinux_name;
f57b05ed
JO
1710 if (!vmlinux_name)
1711 vmlinux_name = machine__mmap_name(machine, bf,
1712 sizeof(bf));
1713
1714 kernel = dso__kernel_findnew(machine, vmlinux_name,
1715 "[guest.kernel]",
1716 DSO_TYPE_GUEST_KERNEL);
8d92c02a 1717 }
cd84c2ac 1718
f57b05ed 1719 if (kernel != NULL && (!kernel->has_build_id))
aeafcbaf 1720 dso__read_running_kernel_build_id(kernel, machine);
f57b05ed 1721
f1dfa0b1 1722 return kernel;
f1dfa0b1
ACM
1723}
1724
d214afbd
ML
1725struct process_args {
1726 u64 start;
1727};
1728
1729static int symbol__in_kernel(void *arg, const char *name,
82151520 1730 char type __used, u64 start)
d214afbd
ML
1731{
1732 struct process_args *args = arg;
1733
1734 if (strchr(name, '['))
1735 return 0;
1736
1737 args->start = start;
1738 return 1;
1739}
1740
1741/* Figure out the start address of kernel map from /proc/kallsyms */
1742static u64 machine__get_kernel_start_addr(struct machine *machine)
1743{
1744 const char *filename;
1745 char path[PATH_MAX];
1746 struct process_args args;
1747
1748 if (machine__is_host(machine)) {
1749 filename = "/proc/kallsyms";
1750 } else {
1751 if (machine__is_default_guest(machine))
1752 filename = (char *)symbol_conf.default_guest_kallsyms;
1753 else {
1754 sprintf(path, "%s/proc/kallsyms", machine->root_dir);
1755 filename = path;
1756 }
1757 }
1758
ec80fde7
ACM
1759 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
1760 return 0;
1761
d214afbd
ML
1762 if (kallsyms__parse(filename, &args, symbol__in_kernel) <= 0)
1763 return 0;
1764
1765 return args.start;
1766}
1767
aeafcbaf 1768int __machine__create_kernel_maps(struct machine *machine, struct dso *kernel)
f1dfa0b1 1769{
de176489 1770 enum map_type type;
aeafcbaf 1771 u64 start = machine__get_kernel_start_addr(machine);
f1dfa0b1 1772
de176489 1773 for (type = 0; type < MAP__NR_TYPES; ++type) {
9de89fe7
ACM
1774 struct kmap *kmap;
1775
aeafcbaf
ACM
1776 machine->vmlinux_maps[type] = map__new2(start, kernel, type);
1777 if (machine->vmlinux_maps[type] == NULL)
de176489 1778 return -1;
f1dfa0b1 1779
aeafcbaf
ACM
1780 machine->vmlinux_maps[type]->map_ip =
1781 machine->vmlinux_maps[type]->unmap_ip =
1782 identity__map_ip;
1783 kmap = map__kmap(machine->vmlinux_maps[type]);
1784 kmap->kmaps = &machine->kmaps;
1785 map_groups__insert(&machine->kmaps,
1786 machine->vmlinux_maps[type]);
f1dfa0b1
ACM
1787 }
1788
f1dfa0b1 1789 return 0;
2446042c
ACM
1790}
1791
aeafcbaf 1792void machine__destroy_kernel_maps(struct machine *machine)
076c6e45
ACM
1793{
1794 enum map_type type;
1795
1796 for (type = 0; type < MAP__NR_TYPES; ++type) {
1797 struct kmap *kmap;
1798
aeafcbaf 1799 if (machine->vmlinux_maps[type] == NULL)
076c6e45
ACM
1800 continue;
1801
aeafcbaf
ACM
1802 kmap = map__kmap(machine->vmlinux_maps[type]);
1803 map_groups__remove(&machine->kmaps,
1804 machine->vmlinux_maps[type]);
076c6e45
ACM
1805 if (kmap->ref_reloc_sym) {
1806 /*
1807 * ref_reloc_sym is shared among all maps, so free just
1808 * on one of them.
1809 */
1810 if (type == MAP__FUNCTION) {
1811 free((char *)kmap->ref_reloc_sym->name);
1812 kmap->ref_reloc_sym->name = NULL;
1813 free(kmap->ref_reloc_sym);
1814 }
1815 kmap->ref_reloc_sym = NULL;
1816 }
1817
aeafcbaf
ACM
1818 map__delete(machine->vmlinux_maps[type]);
1819 machine->vmlinux_maps[type] = NULL;
076c6e45
ACM
1820 }
1821}
1822
aeafcbaf 1823int machine__create_kernel_maps(struct machine *machine)
5c0541d5 1824{
f57b05ed 1825 struct dso *kernel = machine__get_kernel(machine);
5c0541d5
ACM
1826
1827 if (kernel == NULL ||
aeafcbaf 1828 __machine__create_kernel_maps(machine, kernel) < 0)
5c0541d5
ACM
1829 return -1;
1830
f51304d3
DA
1831 if (symbol_conf.use_modules && machine__create_modules(machine) < 0) {
1832 if (machine__is_host(machine))
1833 pr_debug("Problems creating module maps, "
1834 "continuing anyway...\n");
1835 else
1836 pr_debug("Problems creating module maps for guest %d, "
1837 "continuing anyway...\n", machine->pid);
1838 }
1839
5c0541d5
ACM
1840 /*
1841 * Now that we have all the maps created, just set the ->end of them:
1842 */
aeafcbaf 1843 map_groups__fixup_end(&machine->kmaps);
5c0541d5
ACM
1844 return 0;
1845}
1846
cc612d81
ACM
1847static void vmlinux_path__exit(void)
1848{
1849 while (--vmlinux_path__nr_entries >= 0) {
1850 free(vmlinux_path[vmlinux_path__nr_entries]);
1851 vmlinux_path[vmlinux_path__nr_entries] = NULL;
1852 }
1853
1854 free(vmlinux_path);
1855 vmlinux_path = NULL;
1856}
1857
1858static int vmlinux_path__init(void)
1859{
1860 struct utsname uts;
1861 char bf[PATH_MAX];
1862
cc612d81
ACM
1863 vmlinux_path = malloc(sizeof(char *) * 5);
1864 if (vmlinux_path == NULL)
1865 return -1;
1866
1867 vmlinux_path[vmlinux_path__nr_entries] = strdup("vmlinux");
1868 if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
1869 goto out_fail;
1870 ++vmlinux_path__nr_entries;
1871 vmlinux_path[vmlinux_path__nr_entries] = strdup("/boot/vmlinux");
1872 if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
1873 goto out_fail;
1874 ++vmlinux_path__nr_entries;
ec5761ea
DA
1875
1876 /* only try running kernel version if no symfs was given */
1877 if (symbol_conf.symfs[0] != 0)
1878 return 0;
1879
1880 if (uname(&uts) < 0)
1881 return -1;
1882
cc612d81
ACM
1883 snprintf(bf, sizeof(bf), "/boot/vmlinux-%s", uts.release);
1884 vmlinux_path[vmlinux_path__nr_entries] = strdup(bf);
1885 if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
1886 goto out_fail;
1887 ++vmlinux_path__nr_entries;
1888 snprintf(bf, sizeof(bf), "/lib/modules/%s/build/vmlinux", uts.release);
1889 vmlinux_path[vmlinux_path__nr_entries] = strdup(bf);
1890 if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
1891 goto out_fail;
1892 ++vmlinux_path__nr_entries;
1893 snprintf(bf, sizeof(bf), "/usr/lib/debug/lib/modules/%s/vmlinux",
1894 uts.release);
1895 vmlinux_path[vmlinux_path__nr_entries] = strdup(bf);
1896 if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
1897 goto out_fail;
1898 ++vmlinux_path__nr_entries;
1899
1900 return 0;
1901
1902out_fail:
1903 vmlinux_path__exit();
1904 return -1;
1905}
1906
aeafcbaf 1907size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp)
b0a9ab62
ACM
1908{
1909 int i;
1910 size_t printed = 0;
aeafcbaf 1911 struct dso *kdso = machine->vmlinux_maps[MAP__FUNCTION]->dso;
5ad90e4e
ACM
1912
1913 if (kdso->has_build_id) {
1914 char filename[PATH_MAX];
1915 if (dso__build_id_filename(kdso, filename, sizeof(filename)))
1916 printed += fprintf(fp, "[0] %s\n", filename);
1917 }
b0a9ab62
ACM
1918
1919 for (i = 0; i < vmlinux_path__nr_entries; ++i)
5ad90e4e
ACM
1920 printed += fprintf(fp, "[%d] %s\n",
1921 i + kdso->has_build_id, vmlinux_path[i]);
b0a9ab62
ACM
1922
1923 return printed;
1924}
1925
655000e7
ACM
1926static int setup_list(struct strlist **list, const char *list_str,
1927 const char *list_name)
1928{
1929 if (list_str == NULL)
1930 return 0;
1931
1932 *list = strlist__new(true, list_str);
1933 if (!*list) {
1934 pr_err("problems parsing %s list\n", list_name);
1935 return -1;
1936 }
1937 return 0;
1938}
1939
ec80fde7
ACM
1940static bool symbol__read_kptr_restrict(void)
1941{
1942 bool value = false;
1943
1944 if (geteuid() != 0) {
1945 FILE *fp = fopen("/proc/sys/kernel/kptr_restrict", "r");
1946 if (fp != NULL) {
1947 char line[8];
1948
1949 if (fgets(line, sizeof(line), fp) != NULL)
1950 value = atoi(line) != 0;
1951
1952 fclose(fp);
1953 }
1954 }
1955
1956 return value;
1957}
1958
75be6cf4 1959int symbol__init(void)
2446042c 1960{
ec5761ea
DA
1961 const char *symfs;
1962
85e00b55
JZ
1963 if (symbol_conf.initialized)
1964 return 0;
1965
4d439517
DM
1966 symbol_conf.priv_size = ALIGN(symbol_conf.priv_size, sizeof(u64));
1967
166ccc9c
NK
1968 symbol__elf_init();
1969
75be6cf4
ACM
1970 if (symbol_conf.sort_by_name)
1971 symbol_conf.priv_size += (sizeof(struct symbol_name_rb_node) -
1972 sizeof(struct symbol));
b32d133a 1973
75be6cf4 1974 if (symbol_conf.try_vmlinux_path && vmlinux_path__init() < 0)
2446042c
ACM
1975 return -1;
1976
c410a338
ACM
1977 if (symbol_conf.field_sep && *symbol_conf.field_sep == '.') {
1978 pr_err("'.' is the only non valid --field-separator argument\n");
1979 return -1;
1980 }
1981
655000e7
ACM
1982 if (setup_list(&symbol_conf.dso_list,
1983 symbol_conf.dso_list_str, "dso") < 0)
1984 return -1;
1985
1986 if (setup_list(&symbol_conf.comm_list,
1987 symbol_conf.comm_list_str, "comm") < 0)
1988 goto out_free_dso_list;
1989
1990 if (setup_list(&symbol_conf.sym_list,
1991 symbol_conf.sym_list_str, "symbol") < 0)
1992 goto out_free_comm_list;
1993
ec5761ea
DA
1994 /*
1995 * A path to symbols of "/" is identical to ""
1996 * reset here for simplicity.
1997 */
1998 symfs = realpath(symbol_conf.symfs, NULL);
1999 if (symfs == NULL)
2000 symfs = symbol_conf.symfs;
2001 if (strcmp(symfs, "/") == 0)
2002 symbol_conf.symfs = "";
2003 if (symfs != symbol_conf.symfs)
2004 free((void *)symfs);
2005
ec80fde7
ACM
2006 symbol_conf.kptr_restrict = symbol__read_kptr_restrict();
2007
85e00b55 2008 symbol_conf.initialized = true;
4aa65636 2009 return 0;
655000e7 2010
655000e7
ACM
2011out_free_comm_list:
2012 strlist__delete(symbol_conf.comm_list);
d74c896b
NK
2013out_free_dso_list:
2014 strlist__delete(symbol_conf.dso_list);
655000e7 2015 return -1;
4aa65636
ACM
2016}
2017
d65a458b
ACM
2018void symbol__exit(void)
2019{
85e00b55
JZ
2020 if (!symbol_conf.initialized)
2021 return;
d65a458b
ACM
2022 strlist__delete(symbol_conf.sym_list);
2023 strlist__delete(symbol_conf.dso_list);
2024 strlist__delete(symbol_conf.comm_list);
2025 vmlinux_path__exit();
2026 symbol_conf.sym_list = symbol_conf.dso_list = symbol_conf.comm_list = NULL;
85e00b55 2027 symbol_conf.initialized = false;
d65a458b
ACM
2028}
2029
aeafcbaf 2030int machines__create_kernel_maps(struct rb_root *machines, pid_t pid)
4aa65636 2031{
aeafcbaf 2032 struct machine *machine = machines__findnew(machines, pid);
9de89fe7 2033
23346f21 2034 if (machine == NULL)
a1645ce1 2035 return -1;
cc612d81 2036
5c0541d5 2037 return machine__create_kernel_maps(machine);
cd84c2ac 2038}
5aab621b
ACM
2039
2040static int hex(char ch)
2041{
2042 if ((ch >= '0') && (ch <= '9'))
2043 return ch - '0';
2044 if ((ch >= 'a') && (ch <= 'f'))
2045 return ch - 'a' + 10;
2046 if ((ch >= 'A') && (ch <= 'F'))
2047 return ch - 'A' + 10;
2048 return -1;
2049}
2050
2051/*
2052 * While we find nice hex chars, build a long_val.
2053 * Return number of chars processed.
2054 */
2055int hex2u64(const char *ptr, u64 *long_val)
2056{
2057 const char *p = ptr;
2058 *long_val = 0;
2059
2060 while (*p) {
2061 const int hex_val = hex(*p);
2062
2063 if (hex_val < 0)
2064 break;
2065
2066 *long_val = (*long_val << 4) | hex_val;
2067 p++;
2068 }
2069
2070 return p - ptr;
2071}
2072
2073char *strxfrchar(char *s, char from, char to)
2074{
2075 char *p = s;
2076
2077 while ((p = strchr(p, from)) != NULL)
2078 *p++ = to;
2079
2080 return s;
2081}
a1645ce1 2082
aeafcbaf 2083int machines__create_guest_kernel_maps(struct rb_root *machines)
a1645ce1
ZY
2084{
2085 int ret = 0;
2086 struct dirent **namelist = NULL;
2087 int i, items = 0;
2088 char path[PATH_MAX];
2089 pid_t pid;
347ed990 2090 char *endp;
a1645ce1
ZY
2091
2092 if (symbol_conf.default_guest_vmlinux_name ||
2093 symbol_conf.default_guest_modules ||
2094 symbol_conf.default_guest_kallsyms) {
aeafcbaf 2095 machines__create_kernel_maps(machines, DEFAULT_GUEST_KERNEL_ID);
a1645ce1
ZY
2096 }
2097
2098 if (symbol_conf.guestmount) {
2099 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
2100 if (items <= 0)
2101 return -ENOENT;
2102 for (i = 0; i < items; i++) {
2103 if (!isdigit(namelist[i]->d_name[0])) {
2104 /* Filter out . and .. */
2105 continue;
2106 }
347ed990
DA
2107 pid = (pid_t)strtol(namelist[i]->d_name, &endp, 10);
2108 if ((*endp != '\0') ||
2109 (endp == namelist[i]->d_name) ||
2110 (errno == ERANGE)) {
2111 pr_debug("invalid directory (%s). Skipping.\n",
2112 namelist[i]->d_name);
2113 continue;
2114 }
a1645ce1
ZY
2115 sprintf(path, "%s/%s/proc/kallsyms",
2116 symbol_conf.guestmount,
2117 namelist[i]->d_name);
2118 ret = access(path, R_OK);
2119 if (ret) {
2120 pr_debug("Can't access file %s\n", path);
2121 goto failure;
2122 }
aeafcbaf 2123 machines__create_kernel_maps(machines, pid);
a1645ce1
ZY
2124 }
2125failure:
2126 free(namelist);
2127 }
2128
2129 return ret;
2130}
5c0541d5 2131
aeafcbaf 2132void machines__destroy_guest_kernel_maps(struct rb_root *machines)
076c6e45 2133{
aeafcbaf 2134 struct rb_node *next = rb_first(machines);
076c6e45
ACM
2135
2136 while (next) {
2137 struct machine *pos = rb_entry(next, struct machine, rb_node);
2138
2139 next = rb_next(&pos->rb_node);
aeafcbaf 2140 rb_erase(&pos->rb_node, machines);
076c6e45
ACM
2141 machine__delete(pos);
2142 }
2143}
2144
aeafcbaf 2145int machine__load_kallsyms(struct machine *machine, const char *filename,
5c0541d5
ACM
2146 enum map_type type, symbol_filter_t filter)
2147{
aeafcbaf 2148 struct map *map = machine->vmlinux_maps[type];
5c0541d5
ACM
2149 int ret = dso__load_kallsyms(map->dso, filename, map, filter);
2150
2151 if (ret > 0) {
2152 dso__set_loaded(map->dso, type);
2153 /*
2154 * Since /proc/kallsyms will have multiple sessions for the
2155 * kernel, with modules between them, fixup the end of all
2156 * sections.
2157 */
aeafcbaf 2158 __map_groups__fixup_end(&machine->kmaps, type);
5c0541d5
ACM
2159 }
2160
2161 return ret;
2162}
2163
aeafcbaf 2164int machine__load_vmlinux_path(struct machine *machine, enum map_type type,
5c0541d5
ACM
2165 symbol_filter_t filter)
2166{
aeafcbaf 2167 struct map *map = machine->vmlinux_maps[type];
5c0541d5
ACM
2168 int ret = dso__load_vmlinux_path(map->dso, map, filter);
2169
2170 if (ret > 0) {
2171 dso__set_loaded(map->dso, type);
2172 map__reloc_vmlinux(map);
2173 }
2174
2175 return ret;
2176}
225466f1
SD
2177
2178struct map *dso__new_map(const char *name)
2179{
378474e4 2180 struct map *map = NULL;
225466f1 2181 struct dso *dso = dso__new(name);
378474e4
SD
2182
2183 if (dso)
2184 map = map__new2(0, dso, MAP__FUNCTION);
225466f1
SD
2185
2186 return map;
2187}
949d160b
JO
2188
2189static int open_dso(struct dso *dso, struct machine *machine)
2190{
2191 char *root_dir = (char *) "";
2192 char *name;
2193 int fd;
2194
2195 name = malloc(PATH_MAX);
2196 if (!name)
2197 return -ENOMEM;
2198
2199 if (machine)
2200 root_dir = machine->root_dir;
2201
2202 if (dso__binary_type_file(dso, dso->data_type,
2203 root_dir, name, PATH_MAX)) {
2204 free(name);
2205 return -EINVAL;
2206 }
2207
2208 fd = open(name, O_RDONLY);
2209 free(name);
2210 return fd;
2211}
2212
2213int dso__data_fd(struct dso *dso, struct machine *machine)
2214{
2215 int i = 0;
2216
2217 if (dso->data_type != DSO_BINARY_TYPE__NOT_FOUND)
2218 return open_dso(dso, machine);
2219
2220 do {
2221 int fd;
2222
2223 dso->data_type = binary_type_data[i++];
2224
2225 fd = open_dso(dso, machine);
2226 if (fd >= 0)
2227 return fd;
2228
2229 } while (dso->data_type != DSO_BINARY_TYPE__NOT_FOUND);
2230
2231 return -EINVAL;
2232}
2233
4dff624a
JO
2234static void
2235dso_cache__free(struct rb_root *root)
949d160b 2236{
4dff624a
JO
2237 struct rb_node *next = rb_first(root);
2238
2239 while (next) {
2240 struct dso_cache *cache;
2241
2242 cache = rb_entry(next, struct dso_cache, rb_node);
2243 next = rb_next(&cache->rb_node);
2244 rb_erase(&cache->rb_node, root);
2245 free(cache);
2246 }
949d160b
JO
2247}
2248
4dff624a
JO
2249static struct dso_cache*
2250dso_cache__find(struct rb_root *root, u64 offset)
949d160b 2251{
4dff624a
JO
2252 struct rb_node **p = &root->rb_node;
2253 struct rb_node *parent = NULL;
2254 struct dso_cache *cache;
2255
2256 while (*p != NULL) {
2257 u64 end;
2258
2259 parent = *p;
2260 cache = rb_entry(parent, struct dso_cache, rb_node);
2261 end = cache->offset + DSO__DATA_CACHE_SIZE;
2262
2263 if (offset < cache->offset)
2264 p = &(*p)->rb_left;
2265 else if (offset >= end)
2266 p = &(*p)->rb_right;
2267 else
2268 return cache;
2269 }
2270 return NULL;
2271}
2272
2273static void
2274dso_cache__insert(struct rb_root *root, struct dso_cache *new)
2275{
2276 struct rb_node **p = &root->rb_node;
2277 struct rb_node *parent = NULL;
2278 struct dso_cache *cache;
2279 u64 offset = new->offset;
2280
2281 while (*p != NULL) {
2282 u64 end;
2283
2284 parent = *p;
2285 cache = rb_entry(parent, struct dso_cache, rb_node);
2286 end = cache->offset + DSO__DATA_CACHE_SIZE;
2287
2288 if (offset < cache->offset)
2289 p = &(*p)->rb_left;
2290 else if (offset >= end)
2291 p = &(*p)->rb_right;
2292 }
2293
2294 rb_link_node(&new->rb_node, parent, p);
2295 rb_insert_color(&new->rb_node, root);
2296}
2297
2298static ssize_t
2299dso_cache__memcpy(struct dso_cache *cache, u64 offset,
2300 u8 *data, u64 size)
2301{
2302 u64 cache_offset = offset - cache->offset;
2303 u64 cache_size = min(cache->size - cache_offset, size);
2304
2305 memcpy(data, cache->data + cache_offset, cache_size);
2306 return cache_size;
949d160b
JO
2307}
2308
4dff624a
JO
2309static ssize_t
2310dso_cache__read(struct dso *dso, struct machine *machine,
2311 u64 offset, u8 *data, ssize_t size)
949d160b 2312{
4dff624a
JO
2313 struct dso_cache *cache;
2314 ssize_t ret;
949d160b
JO
2315 int fd;
2316
2317 fd = dso__data_fd(dso, machine);
2318 if (fd < 0)
2319 return -1;
2320
2321 do {
4dff624a
JO
2322 u64 cache_offset;
2323
2324 ret = -ENOMEM;
2325
2326 cache = zalloc(sizeof(*cache) + DSO__DATA_CACHE_SIZE);
2327 if (!cache)
949d160b
JO
2328 break;
2329
4dff624a
JO
2330 cache_offset = offset & DSO__DATA_CACHE_MASK;
2331 ret = -EINVAL;
2332
2333 if (-1 == lseek(fd, cache_offset, SEEK_SET))
949d160b
JO
2334 break;
2335
4dff624a
JO
2336 ret = read(fd, cache->data, DSO__DATA_CACHE_SIZE);
2337 if (ret <= 0)
2338 break;
2339
2340 cache->offset = cache_offset;
2341 cache->size = ret;
2342 dso_cache__insert(&dso->cache, cache);
2343
2344 ret = dso_cache__memcpy(cache, offset, data, size);
949d160b
JO
2345
2346 } while (0);
2347
4dff624a
JO
2348 if (ret <= 0)
2349 free(cache);
2350
949d160b 2351 close(fd);
4dff624a
JO
2352 return ret;
2353}
2354
2355static ssize_t dso_cache_read(struct dso *dso, struct machine *machine,
2356 u64 offset, u8 *data, ssize_t size)
2357{
2358 struct dso_cache *cache;
2359
2360 cache = dso_cache__find(&dso->cache, offset);
2361 if (cache)
2362 return dso_cache__memcpy(cache, offset, data, size);
2363 else
2364 return dso_cache__read(dso, machine, offset, data, size);
949d160b
JO
2365}
2366
2367ssize_t dso__data_read_offset(struct dso *dso, struct machine *machine,
2368 u64 offset, u8 *data, ssize_t size)
2369{
4dff624a
JO
2370 ssize_t r = 0;
2371 u8 *p = data;
2372
2373 do {
2374 ssize_t ret;
2375
2376 ret = dso_cache_read(dso, machine, offset, p, size);
2377 if (ret < 0)
2378 return ret;
2379
2380 /* Reached EOF, return what we have. */
2381 if (!ret)
2382 break;
2383
2384 BUG_ON(ret > size);
2385
2386 r += ret;
2387 p += ret;
2388 offset += ret;
2389 size -= ret;
2390
2391 } while (size);
2392
2393 return r;
949d160b
JO
2394}
2395
2396ssize_t dso__data_read_addr(struct dso *dso, struct map *map,
2397 struct machine *machine, u64 addr,
2398 u8 *data, ssize_t size)
2399{
2400 u64 offset = map->map_ip(map, addr);
2401 return dso__data_read_offset(dso, machine, offset, data, size);
2402}
This page took 0.396195 seconds and 5 git commands to generate.