]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - tools/perf/util/machine.c
perf session: Change perf_session__has_traces to actually check for tracepoints
[mirror_ubuntu-artful-kernel.git] / tools / perf / util / machine.c
CommitLineData
3f067dca 1#include "callchain.h"
b0a7d1a0
ACM
2#include "debug.h"
3#include "event.h"
3f067dca
ACM
4#include "evsel.h"
5#include "hist.h"
9d2f8e22
ACM
6#include "machine.h"
7#include "map.h"
3f067dca 8#include "sort.h"
69d2591a 9#include "strlist.h"
9d2f8e22
ACM
10#include "thread.h"
11#include <stdbool.h>
3f067dca 12#include "unwind.h"
9d2f8e22 13
69d2591a
ACM
14int machine__init(struct machine *machine, const char *root_dir, pid_t pid)
15{
16 map_groups__init(&machine->kmaps);
17 RB_CLEAR_NODE(&machine->rb_node);
18 INIT_LIST_HEAD(&machine->user_dsos);
19 INIT_LIST_HEAD(&machine->kernel_dsos);
20
21 machine->threads = RB_ROOT;
22 INIT_LIST_HEAD(&machine->dead_threads);
23 machine->last_match = NULL;
24
25 machine->kmaps.machine = machine;
26 machine->pid = pid;
27
28 machine->root_dir = strdup(root_dir);
29 if (machine->root_dir == NULL)
30 return -ENOMEM;
31
32 if (pid != HOST_KERNEL_ID) {
33 struct thread *thread = machine__findnew_thread(machine, pid);
34 char comm[64];
35
36 if (thread == NULL)
37 return -ENOMEM;
38
39 snprintf(comm, sizeof(comm), "[guest/%d]", pid);
40 thread__set_comm(thread, comm);
41 }
42
43 return 0;
44}
45
46static void dsos__delete(struct list_head *dsos)
47{
48 struct dso *pos, *n;
49
50 list_for_each_entry_safe(pos, n, dsos, node) {
51 list_del(&pos->node);
52 dso__delete(pos);
53 }
54}
55
3f067dca
ACM
56void machine__delete_dead_threads(struct machine *machine)
57{
58 struct thread *n, *t;
59
60 list_for_each_entry_safe(t, n, &machine->dead_threads, node) {
61 list_del(&t->node);
62 thread__delete(t);
63 }
64}
65
66void machine__delete_threads(struct machine *machine)
67{
68 struct rb_node *nd = rb_first(&machine->threads);
69
70 while (nd) {
71 struct thread *t = rb_entry(nd, struct thread, rb_node);
72
73 rb_erase(&t->rb_node, &machine->threads);
74 nd = rb_next(nd);
75 thread__delete(t);
76 }
77}
78
69d2591a
ACM
79void machine__exit(struct machine *machine)
80{
81 map_groups__exit(&machine->kmaps);
82 dsos__delete(&machine->user_dsos);
83 dsos__delete(&machine->kernel_dsos);
84 free(machine->root_dir);
85 machine->root_dir = NULL;
86}
87
88void machine__delete(struct machine *machine)
89{
90 machine__exit(machine);
91 free(machine);
92}
93
876650e6
ACM
94void machines__init(struct machines *machines)
95{
96 machine__init(&machines->host, "", HOST_KERNEL_ID);
97 machines->guests = RB_ROOT;
98}
99
100void machines__exit(struct machines *machines)
101{
102 machine__exit(&machines->host);
103 /* XXX exit guest */
104}
105
106struct machine *machines__add(struct machines *machines, pid_t pid,
69d2591a
ACM
107 const char *root_dir)
108{
876650e6 109 struct rb_node **p = &machines->guests.rb_node;
69d2591a
ACM
110 struct rb_node *parent = NULL;
111 struct machine *pos, *machine = malloc(sizeof(*machine));
112
113 if (machine == NULL)
114 return NULL;
115
116 if (machine__init(machine, root_dir, pid) != 0) {
117 free(machine);
118 return NULL;
119 }
120
121 while (*p != NULL) {
122 parent = *p;
123 pos = rb_entry(parent, struct machine, rb_node);
124 if (pid < pos->pid)
125 p = &(*p)->rb_left;
126 else
127 p = &(*p)->rb_right;
128 }
129
130 rb_link_node(&machine->rb_node, parent, p);
876650e6 131 rb_insert_color(&machine->rb_node, &machines->guests);
69d2591a
ACM
132
133 return machine;
134}
135
876650e6 136struct machine *machines__find(struct machines *machines, pid_t pid)
69d2591a 137{
876650e6 138 struct rb_node **p = &machines->guests.rb_node;
69d2591a
ACM
139 struct rb_node *parent = NULL;
140 struct machine *machine;
141 struct machine *default_machine = NULL;
142
876650e6
ACM
143 if (pid == HOST_KERNEL_ID)
144 return &machines->host;
145
69d2591a
ACM
146 while (*p != NULL) {
147 parent = *p;
148 machine = rb_entry(parent, struct machine, rb_node);
149 if (pid < machine->pid)
150 p = &(*p)->rb_left;
151 else if (pid > machine->pid)
152 p = &(*p)->rb_right;
153 else
154 return machine;
155 if (!machine->pid)
156 default_machine = machine;
157 }
158
159 return default_machine;
160}
161
876650e6 162struct machine *machines__findnew(struct machines *machines, pid_t pid)
69d2591a
ACM
163{
164 char path[PATH_MAX];
165 const char *root_dir = "";
166 struct machine *machine = machines__find(machines, pid);
167
168 if (machine && (machine->pid == pid))
169 goto out;
170
171 if ((pid != HOST_KERNEL_ID) &&
172 (pid != DEFAULT_GUEST_KERNEL_ID) &&
173 (symbol_conf.guestmount)) {
174 sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
175 if (access(path, R_OK)) {
176 static struct strlist *seen;
177
178 if (!seen)
179 seen = strlist__new(true, NULL);
180
181 if (!strlist__has_entry(seen, path)) {
182 pr_err("Can't access file %s\n", path);
183 strlist__add(seen, path);
184 }
185 machine = NULL;
186 goto out;
187 }
188 root_dir = path;
189 }
190
191 machine = machines__add(machines, pid, root_dir);
192out:
193 return machine;
194}
195
876650e6
ACM
196void machines__process_guests(struct machines *machines,
197 machine__process_t process, void *data)
69d2591a
ACM
198{
199 struct rb_node *nd;
200
876650e6 201 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
69d2591a
ACM
202 struct machine *pos = rb_entry(nd, struct machine, rb_node);
203 process(pos, data);
204 }
205}
206
207char *machine__mmap_name(struct machine *machine, char *bf, size_t size)
208{
209 if (machine__is_host(machine))
210 snprintf(bf, size, "[%s]", "kernel.kallsyms");
211 else if (machine__is_default_guest(machine))
212 snprintf(bf, size, "[%s]", "guest.kernel.kallsyms");
213 else {
214 snprintf(bf, size, "[%s.%d]", "guest.kernel.kallsyms",
215 machine->pid);
216 }
217
218 return bf;
219}
220
876650e6 221void machines__set_id_hdr_size(struct machines *machines, u16 id_hdr_size)
69d2591a
ACM
222{
223 struct rb_node *node;
224 struct machine *machine;
225
876650e6
ACM
226 machines->host.id_hdr_size = id_hdr_size;
227
228 for (node = rb_first(&machines->guests); node; node = rb_next(node)) {
69d2591a
ACM
229 machine = rb_entry(node, struct machine, rb_node);
230 machine->id_hdr_size = id_hdr_size;
231 }
232
233 return;
234}
235
38051234 236static struct thread *__machine__findnew_thread(struct machine *machine, pid_t tid,
9d2f8e22
ACM
237 bool create)
238{
239 struct rb_node **p = &machine->threads.rb_node;
240 struct rb_node *parent = NULL;
241 struct thread *th;
242
243 /*
38051234 244 * Front-end cache - TID lookups come in blocks,
9d2f8e22
ACM
245 * so most of the time we dont have to look up
246 * the full rbtree:
247 */
38051234 248 if (machine->last_match && machine->last_match->tid == tid)
9d2f8e22
ACM
249 return machine->last_match;
250
251 while (*p != NULL) {
252 parent = *p;
253 th = rb_entry(parent, struct thread, rb_node);
254
38051234 255 if (th->tid == tid) {
9d2f8e22
ACM
256 machine->last_match = th;
257 return th;
258 }
259
38051234 260 if (tid < th->tid)
9d2f8e22
ACM
261 p = &(*p)->rb_left;
262 else
263 p = &(*p)->rb_right;
264 }
265
266 if (!create)
267 return NULL;
268
38051234 269 th = thread__new(tid);
9d2f8e22
ACM
270 if (th != NULL) {
271 rb_link_node(&th->rb_node, parent, p);
272 rb_insert_color(&th->rb_node, &machine->threads);
273 machine->last_match = th;
274 }
275
276 return th;
277}
278
38051234 279struct thread *machine__findnew_thread(struct machine *machine, pid_t tid)
9d2f8e22 280{
38051234 281 return __machine__findnew_thread(machine, tid, true);
9d2f8e22
ACM
282}
283
38051234 284struct thread *machine__find_thread(struct machine *machine, pid_t tid)
9d2f8e22 285{
38051234 286 return __machine__findnew_thread(machine, tid, false);
9d2f8e22 287}
b0a7d1a0
ACM
288
289int machine__process_comm_event(struct machine *machine, union perf_event *event)
290{
291 struct thread *thread = machine__findnew_thread(machine, event->comm.tid);
292
293 if (dump_trace)
294 perf_event__fprintf_comm(event, stdout);
295
296 if (thread == NULL || thread__set_comm(thread, event->comm.comm)) {
297 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
298 return -1;
299 }
300
301 return 0;
302}
303
304int machine__process_lost_event(struct machine *machine __maybe_unused,
305 union perf_event *event)
306{
307 dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
308 event->lost.id, event->lost.lost);
309 return 0;
310}
311
3f067dca
ACM
312struct map *machine__new_module(struct machine *machine, u64 start,
313 const char *filename)
314{
315 struct map *map;
316 struct dso *dso = __dsos__findnew(&machine->kernel_dsos, filename);
317
318 if (dso == NULL)
319 return NULL;
320
321 map = map__new2(start, dso, MAP__FUNCTION);
322 if (map == NULL)
323 return NULL;
324
325 if (machine__is_host(machine))
326 dso->symtab_type = DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE;
327 else
328 dso->symtab_type = DSO_BINARY_TYPE__GUEST_KMODULE;
329 map_groups__insert(&machine->kmaps, map);
330 return map;
331}
332
876650e6 333size_t machines__fprintf_dsos(struct machines *machines, FILE *fp)
3f067dca
ACM
334{
335 struct rb_node *nd;
876650e6
ACM
336 size_t ret = __dsos__fprintf(&machines->host.kernel_dsos, fp) +
337 __dsos__fprintf(&machines->host.user_dsos, fp);
3f067dca 338
876650e6 339 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
3f067dca
ACM
340 struct machine *pos = rb_entry(nd, struct machine, rb_node);
341 ret += __dsos__fprintf(&pos->kernel_dsos, fp);
342 ret += __dsos__fprintf(&pos->user_dsos, fp);
343 }
344
345 return ret;
346}
347
348size_t machine__fprintf_dsos_buildid(struct machine *machine, FILE *fp,
349 bool (skip)(struct dso *dso, int parm), int parm)
350{
351 return __dsos__fprintf_buildid(&machine->kernel_dsos, fp, skip, parm) +
352 __dsos__fprintf_buildid(&machine->user_dsos, fp, skip, parm);
353}
354
876650e6 355size_t machines__fprintf_dsos_buildid(struct machines *machines, FILE *fp,
3f067dca
ACM
356 bool (skip)(struct dso *dso, int parm), int parm)
357{
358 struct rb_node *nd;
876650e6 359 size_t ret = machine__fprintf_dsos_buildid(&machines->host, fp, skip, parm);
3f067dca 360
876650e6 361 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
3f067dca
ACM
362 struct machine *pos = rb_entry(nd, struct machine, rb_node);
363 ret += machine__fprintf_dsos_buildid(pos, fp, skip, parm);
364 }
365 return ret;
366}
367
368size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp)
369{
370 int i;
371 size_t printed = 0;
372 struct dso *kdso = machine->vmlinux_maps[MAP__FUNCTION]->dso;
373
374 if (kdso->has_build_id) {
375 char filename[PATH_MAX];
376 if (dso__build_id_filename(kdso, filename, sizeof(filename)))
377 printed += fprintf(fp, "[0] %s\n", filename);
378 }
379
380 for (i = 0; i < vmlinux_path__nr_entries; ++i)
381 printed += fprintf(fp, "[%d] %s\n",
382 i + kdso->has_build_id, vmlinux_path[i]);
383
384 return printed;
385}
386
387size_t machine__fprintf(struct machine *machine, FILE *fp)
388{
389 size_t ret = 0;
390 struct rb_node *nd;
391
392 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
393 struct thread *pos = rb_entry(nd, struct thread, rb_node);
394
395 ret += thread__fprintf(pos, fp);
396 }
397
398 return ret;
399}
400
401static struct dso *machine__get_kernel(struct machine *machine)
402{
403 const char *vmlinux_name = NULL;
404 struct dso *kernel;
405
406 if (machine__is_host(machine)) {
407 vmlinux_name = symbol_conf.vmlinux_name;
408 if (!vmlinux_name)
409 vmlinux_name = "[kernel.kallsyms]";
410
411 kernel = dso__kernel_findnew(machine, vmlinux_name,
412 "[kernel]",
413 DSO_TYPE_KERNEL);
414 } else {
415 char bf[PATH_MAX];
416
417 if (machine__is_default_guest(machine))
418 vmlinux_name = symbol_conf.default_guest_vmlinux_name;
419 if (!vmlinux_name)
420 vmlinux_name = machine__mmap_name(machine, bf,
421 sizeof(bf));
422
423 kernel = dso__kernel_findnew(machine, vmlinux_name,
424 "[guest.kernel]",
425 DSO_TYPE_GUEST_KERNEL);
426 }
427
428 if (kernel != NULL && (!kernel->has_build_id))
429 dso__read_running_kernel_build_id(kernel, machine);
430
431 return kernel;
432}
433
434struct process_args {
435 u64 start;
436};
437
438static int symbol__in_kernel(void *arg, const char *name,
439 char type __maybe_unused, u64 start)
440{
441 struct process_args *args = arg;
442
443 if (strchr(name, '['))
444 return 0;
445
446 args->start = start;
447 return 1;
448}
449
450/* Figure out the start address of kernel map from /proc/kallsyms */
451static u64 machine__get_kernel_start_addr(struct machine *machine)
452{
453 const char *filename;
454 char path[PATH_MAX];
455 struct process_args args;
456
457 if (machine__is_host(machine)) {
458 filename = "/proc/kallsyms";
459 } else {
460 if (machine__is_default_guest(machine))
461 filename = (char *)symbol_conf.default_guest_kallsyms;
462 else {
463 sprintf(path, "%s/proc/kallsyms", machine->root_dir);
464 filename = path;
465 }
466 }
467
468 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
469 return 0;
470
471 if (kallsyms__parse(filename, &args, symbol__in_kernel) <= 0)
472 return 0;
473
474 return args.start;
475}
476
477int __machine__create_kernel_maps(struct machine *machine, struct dso *kernel)
478{
479 enum map_type type;
480 u64 start = machine__get_kernel_start_addr(machine);
481
482 for (type = 0; type < MAP__NR_TYPES; ++type) {
483 struct kmap *kmap;
484
485 machine->vmlinux_maps[type] = map__new2(start, kernel, type);
486 if (machine->vmlinux_maps[type] == NULL)
487 return -1;
488
489 machine->vmlinux_maps[type]->map_ip =
490 machine->vmlinux_maps[type]->unmap_ip =
491 identity__map_ip;
492 kmap = map__kmap(machine->vmlinux_maps[type]);
493 kmap->kmaps = &machine->kmaps;
494 map_groups__insert(&machine->kmaps,
495 machine->vmlinux_maps[type]);
496 }
497
498 return 0;
499}
500
501void machine__destroy_kernel_maps(struct machine *machine)
502{
503 enum map_type type;
504
505 for (type = 0; type < MAP__NR_TYPES; ++type) {
506 struct kmap *kmap;
507
508 if (machine->vmlinux_maps[type] == NULL)
509 continue;
510
511 kmap = map__kmap(machine->vmlinux_maps[type]);
512 map_groups__remove(&machine->kmaps,
513 machine->vmlinux_maps[type]);
514 if (kmap->ref_reloc_sym) {
515 /*
516 * ref_reloc_sym is shared among all maps, so free just
517 * on one of them.
518 */
519 if (type == MAP__FUNCTION) {
520 free((char *)kmap->ref_reloc_sym->name);
521 kmap->ref_reloc_sym->name = NULL;
522 free(kmap->ref_reloc_sym);
523 }
524 kmap->ref_reloc_sym = NULL;
525 }
526
527 map__delete(machine->vmlinux_maps[type]);
528 machine->vmlinux_maps[type] = NULL;
529 }
530}
531
876650e6 532int machines__create_guest_kernel_maps(struct machines *machines)
3f067dca
ACM
533{
534 int ret = 0;
535 struct dirent **namelist = NULL;
536 int i, items = 0;
537 char path[PATH_MAX];
538 pid_t pid;
539 char *endp;
540
541 if (symbol_conf.default_guest_vmlinux_name ||
542 symbol_conf.default_guest_modules ||
543 symbol_conf.default_guest_kallsyms) {
544 machines__create_kernel_maps(machines, DEFAULT_GUEST_KERNEL_ID);
545 }
546
547 if (symbol_conf.guestmount) {
548 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
549 if (items <= 0)
550 return -ENOENT;
551 for (i = 0; i < items; i++) {
552 if (!isdigit(namelist[i]->d_name[0])) {
553 /* Filter out . and .. */
554 continue;
555 }
556 pid = (pid_t)strtol(namelist[i]->d_name, &endp, 10);
557 if ((*endp != '\0') ||
558 (endp == namelist[i]->d_name) ||
559 (errno == ERANGE)) {
560 pr_debug("invalid directory (%s). Skipping.\n",
561 namelist[i]->d_name);
562 continue;
563 }
564 sprintf(path, "%s/%s/proc/kallsyms",
565 symbol_conf.guestmount,
566 namelist[i]->d_name);
567 ret = access(path, R_OK);
568 if (ret) {
569 pr_debug("Can't access file %s\n", path);
570 goto failure;
571 }
572 machines__create_kernel_maps(machines, pid);
573 }
574failure:
575 free(namelist);
576 }
577
578 return ret;
579}
580
876650e6 581void machines__destroy_kernel_maps(struct machines *machines)
3f067dca 582{
876650e6
ACM
583 struct rb_node *next = rb_first(&machines->guests);
584
585 machine__destroy_kernel_maps(&machines->host);
3f067dca
ACM
586
587 while (next) {
588 struct machine *pos = rb_entry(next, struct machine, rb_node);
589
590 next = rb_next(&pos->rb_node);
876650e6 591 rb_erase(&pos->rb_node, &machines->guests);
3f067dca
ACM
592 machine__delete(pos);
593 }
594}
595
876650e6 596int machines__create_kernel_maps(struct machines *machines, pid_t pid)
3f067dca
ACM
597{
598 struct machine *machine = machines__findnew(machines, pid);
599
600 if (machine == NULL)
601 return -1;
602
603 return machine__create_kernel_maps(machine);
604}
605
606int machine__load_kallsyms(struct machine *machine, const char *filename,
607 enum map_type type, symbol_filter_t filter)
608{
609 struct map *map = machine->vmlinux_maps[type];
610 int ret = dso__load_kallsyms(map->dso, filename, map, filter);
611
612 if (ret > 0) {
613 dso__set_loaded(map->dso, type);
614 /*
615 * Since /proc/kallsyms will have multiple sessions for the
616 * kernel, with modules between them, fixup the end of all
617 * sections.
618 */
619 __map_groups__fixup_end(&machine->kmaps, type);
620 }
621
622 return ret;
623}
624
625int machine__load_vmlinux_path(struct machine *machine, enum map_type type,
626 symbol_filter_t filter)
627{
628 struct map *map = machine->vmlinux_maps[type];
629 int ret = dso__load_vmlinux_path(map->dso, map, filter);
630
39b12f78 631 if (ret > 0)
3f067dca 632 dso__set_loaded(map->dso, type);
3f067dca
ACM
633
634 return ret;
635}
636
637static void map_groups__fixup_end(struct map_groups *mg)
638{
639 int i;
640 for (i = 0; i < MAP__NR_TYPES; ++i)
641 __map_groups__fixup_end(mg, i);
642}
643
644static char *get_kernel_version(const char *root_dir)
645{
646 char version[PATH_MAX];
647 FILE *file;
648 char *name, *tmp;
649 const char *prefix = "Linux version ";
650
651 sprintf(version, "%s/proc/version", root_dir);
652 file = fopen(version, "r");
653 if (!file)
654 return NULL;
655
656 version[0] = '\0';
657 tmp = fgets(version, sizeof(version), file);
658 fclose(file);
659
660 name = strstr(version, prefix);
661 if (!name)
662 return NULL;
663 name += strlen(prefix);
664 tmp = strchr(name, ' ');
665 if (tmp)
666 *tmp = '\0';
667
668 return strdup(name);
669}
670
671static int map_groups__set_modules_path_dir(struct map_groups *mg,
672 const char *dir_name)
673{
674 struct dirent *dent;
675 DIR *dir = opendir(dir_name);
676 int ret = 0;
677
678 if (!dir) {
679 pr_debug("%s: cannot open %s dir\n", __func__, dir_name);
680 return -1;
681 }
682
683 while ((dent = readdir(dir)) != NULL) {
684 char path[PATH_MAX];
685 struct stat st;
686
687 /*sshfs might return bad dent->d_type, so we have to stat*/
688 snprintf(path, sizeof(path), "%s/%s", dir_name, dent->d_name);
689 if (stat(path, &st))
690 continue;
691
692 if (S_ISDIR(st.st_mode)) {
693 if (!strcmp(dent->d_name, ".") ||
694 !strcmp(dent->d_name, ".."))
695 continue;
696
697 ret = map_groups__set_modules_path_dir(mg, path);
698 if (ret < 0)
699 goto out;
700 } else {
701 char *dot = strrchr(dent->d_name, '.'),
702 dso_name[PATH_MAX];
703 struct map *map;
704 char *long_name;
705
706 if (dot == NULL || strcmp(dot, ".ko"))
707 continue;
708 snprintf(dso_name, sizeof(dso_name), "[%.*s]",
709 (int)(dot - dent->d_name), dent->d_name);
710
711 strxfrchar(dso_name, '-', '_');
712 map = map_groups__find_by_name(mg, MAP__FUNCTION,
713 dso_name);
714 if (map == NULL)
715 continue;
716
717 long_name = strdup(path);
718 if (long_name == NULL) {
719 ret = -1;
720 goto out;
721 }
722 dso__set_long_name(map->dso, long_name);
723 map->dso->lname_alloc = 1;
724 dso__kernel_module_get_build_id(map->dso, "");
725 }
726 }
727
728out:
729 closedir(dir);
730 return ret;
731}
732
733static int machine__set_modules_path(struct machine *machine)
734{
735 char *version;
736 char modules_path[PATH_MAX];
737
738 version = get_kernel_version(machine->root_dir);
739 if (!version)
740 return -1;
741
742 snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s/kernel",
743 machine->root_dir, version);
744 free(version);
745
746 return map_groups__set_modules_path_dir(&machine->kmaps, modules_path);
747}
748
749static int machine__create_modules(struct machine *machine)
750{
751 char *line = NULL;
752 size_t n;
753 FILE *file;
754 struct map *map;
755 const char *modules;
756 char path[PATH_MAX];
757
758 if (machine__is_default_guest(machine))
759 modules = symbol_conf.default_guest_modules;
760 else {
761 sprintf(path, "%s/proc/modules", machine->root_dir);
762 modules = path;
763 }
764
765 if (symbol__restricted_filename(path, "/proc/modules"))
766 return -1;
767
768 file = fopen(modules, "r");
769 if (file == NULL)
770 return -1;
771
772 while (!feof(file)) {
773 char name[PATH_MAX];
774 u64 start;
775 char *sep;
776 int line_len;
777
778 line_len = getline(&line, &n, file);
779 if (line_len < 0)
780 break;
781
782 if (!line)
783 goto out_failure;
784
785 line[--line_len] = '\0'; /* \n */
786
787 sep = strrchr(line, 'x');
788 if (sep == NULL)
789 continue;
790
791 hex2u64(sep + 1, &start);
792
793 sep = strchr(line, ' ');
794 if (sep == NULL)
795 continue;
796
797 *sep = '\0';
798
799 snprintf(name, sizeof(name), "[%s]", line);
800 map = machine__new_module(machine, start, name);
801 if (map == NULL)
802 goto out_delete_line;
803 dso__kernel_module_get_build_id(map->dso, machine->root_dir);
804 }
805
806 free(line);
807 fclose(file);
808
8f76fcd9
JW
809 if (machine__set_modules_path(machine) < 0) {
810 pr_debug("Problems setting modules path maps, continuing anyway...\n");
811 }
812 return 0;
3f067dca
ACM
813
814out_delete_line:
815 free(line);
816out_failure:
817 return -1;
818}
819
820int machine__create_kernel_maps(struct machine *machine)
821{
822 struct dso *kernel = machine__get_kernel(machine);
823
824 if (kernel == NULL ||
825 __machine__create_kernel_maps(machine, kernel) < 0)
826 return -1;
827
828 if (symbol_conf.use_modules && machine__create_modules(machine) < 0) {
829 if (machine__is_host(machine))
830 pr_debug("Problems creating module maps, "
831 "continuing anyway...\n");
832 else
833 pr_debug("Problems creating module maps for guest %d, "
834 "continuing anyway...\n", machine->pid);
835 }
836
837 /*
838 * Now that we have all the maps created, just set the ->end of them:
839 */
840 map_groups__fixup_end(&machine->kmaps);
841 return 0;
842}
843
b0a7d1a0
ACM
844static void machine__set_kernel_mmap_len(struct machine *machine,
845 union perf_event *event)
846{
4552cf0f
NK
847 int i;
848
849 for (i = 0; i < MAP__NR_TYPES; i++) {
850 machine->vmlinux_maps[i]->start = event->mmap.start;
851 machine->vmlinux_maps[i]->end = (event->mmap.start +
852 event->mmap.len);
853 /*
854 * Be a bit paranoid here, some perf.data file came with
855 * a zero sized synthesized MMAP event for the kernel.
856 */
857 if (machine->vmlinux_maps[i]->end == 0)
858 machine->vmlinux_maps[i]->end = ~0ULL;
859 }
b0a7d1a0
ACM
860}
861
8e0cf965
AH
862static bool machine__uses_kcore(struct machine *machine)
863{
864 struct dso *dso;
865
866 list_for_each_entry(dso, &machine->kernel_dsos, node) {
867 if (dso__is_kcore(dso))
868 return true;
869 }
870
871 return false;
872}
873
b0a7d1a0
ACM
874static int machine__process_kernel_mmap_event(struct machine *machine,
875 union perf_event *event)
876{
877 struct map *map;
878 char kmmap_prefix[PATH_MAX];
879 enum dso_kernel_type kernel_type;
880 bool is_kernel_mmap;
881
8e0cf965
AH
882 /* If we have maps from kcore then we do not need or want any others */
883 if (machine__uses_kcore(machine))
884 return 0;
885
b0a7d1a0
ACM
886 machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
887 if (machine__is_host(machine))
888 kernel_type = DSO_TYPE_KERNEL;
889 else
890 kernel_type = DSO_TYPE_GUEST_KERNEL;
891
892 is_kernel_mmap = memcmp(event->mmap.filename,
893 kmmap_prefix,
894 strlen(kmmap_prefix) - 1) == 0;
895 if (event->mmap.filename[0] == '/' ||
896 (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
897
898 char short_module_name[1024];
899 char *name, *dot;
900
901 if (event->mmap.filename[0] == '/') {
902 name = strrchr(event->mmap.filename, '/');
903 if (name == NULL)
904 goto out_problem;
905
906 ++name; /* skip / */
907 dot = strrchr(name, '.');
908 if (dot == NULL)
909 goto out_problem;
910 snprintf(short_module_name, sizeof(short_module_name),
911 "[%.*s]", (int)(dot - name), name);
912 strxfrchar(short_module_name, '-', '_');
913 } else
914 strcpy(short_module_name, event->mmap.filename);
915
916 map = machine__new_module(machine, event->mmap.start,
917 event->mmap.filename);
918 if (map == NULL)
919 goto out_problem;
920
921 name = strdup(short_module_name);
922 if (name == NULL)
923 goto out_problem;
924
925 map->dso->short_name = name;
926 map->dso->sname_alloc = 1;
927 map->end = map->start + event->mmap.len;
928 } else if (is_kernel_mmap) {
929 const char *symbol_name = (event->mmap.filename +
930 strlen(kmmap_prefix));
931 /*
932 * Should be there already, from the build-id table in
933 * the header.
934 */
935 struct dso *kernel = __dsos__findnew(&machine->kernel_dsos,
936 kmmap_prefix);
937 if (kernel == NULL)
938 goto out_problem;
939
940 kernel->kernel = kernel_type;
941 if (__machine__create_kernel_maps(machine, kernel) < 0)
942 goto out_problem;
943
944 machine__set_kernel_mmap_len(machine, event);
945
946 /*
947 * Avoid using a zero address (kptr_restrict) for the ref reloc
948 * symbol. Effectively having zero here means that at record
949 * time /proc/sys/kernel/kptr_restrict was non zero.
950 */
951 if (event->mmap.pgoff != 0) {
952 maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps,
953 symbol_name,
954 event->mmap.pgoff);
955 }
956
957 if (machine__is_default_guest(machine)) {
958 /*
959 * preload dso of guest kernel and modules
960 */
961 dso__load(kernel, machine->vmlinux_maps[MAP__FUNCTION],
962 NULL);
963 }
964 }
965 return 0;
966out_problem:
967 return -1;
968}
969
970int machine__process_mmap_event(struct machine *machine, union perf_event *event)
971{
972 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
973 struct thread *thread;
974 struct map *map;
bad40917 975 enum map_type type;
b0a7d1a0
ACM
976 int ret = 0;
977
978 if (dump_trace)
979 perf_event__fprintf_mmap(event, stdout);
980
981 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
982 cpumode == PERF_RECORD_MISC_KERNEL) {
983 ret = machine__process_kernel_mmap_event(machine, event);
984 if (ret < 0)
985 goto out_problem;
986 return 0;
987 }
988
989 thread = machine__findnew_thread(machine, event->mmap.pid);
990 if (thread == NULL)
991 goto out_problem;
bad40917
SE
992
993 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
994 type = MAP__VARIABLE;
995 else
996 type = MAP__FUNCTION;
997
b0a7d1a0
ACM
998 map = map__new(&machine->user_dsos, event->mmap.start,
999 event->mmap.len, event->mmap.pgoff,
1000 event->mmap.pid, event->mmap.filename,
bad40917
SE
1001 type);
1002
b0a7d1a0
ACM
1003 if (map == NULL)
1004 goto out_problem;
1005
1006 thread__insert_map(thread, map);
1007 return 0;
1008
1009out_problem:
1010 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
1011 return 0;
1012}
1013
1014int machine__process_fork_event(struct machine *machine, union perf_event *event)
1015{
1016 struct thread *thread = machine__findnew_thread(machine, event->fork.tid);
1017 struct thread *parent = machine__findnew_thread(machine, event->fork.ptid);
1018
1019 if (dump_trace)
1020 perf_event__fprintf_task(event, stdout);
1021
1022 if (thread == NULL || parent == NULL ||
1023 thread__fork(thread, parent) < 0) {
1024 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
1025 return -1;
1026 }
1027
1028 return 0;
1029}
1030
ed8996a6
DA
1031static void machine__remove_thread(struct machine *machine, struct thread *th)
1032{
1033 machine->last_match = NULL;
1034 rb_erase(&th->rb_node, &machine->threads);
1035 /*
1036 * We may have references to this thread, for instance in some hist_entry
1037 * instances, so just move them to a separate list.
1038 */
1039 list_add_tail(&th->node, &machine->dead_threads);
1040}
1041
b0a7d1a0
ACM
1042int machine__process_exit_event(struct machine *machine, union perf_event *event)
1043{
1044 struct thread *thread = machine__find_thread(machine, event->fork.tid);
1045
1046 if (dump_trace)
1047 perf_event__fprintf_task(event, stdout);
1048
1049 if (thread != NULL)
1050 machine__remove_thread(machine, thread);
1051
1052 return 0;
1053}
1054
1055int machine__process_event(struct machine *machine, union perf_event *event)
1056{
1057 int ret;
1058
1059 switch (event->header.type) {
1060 case PERF_RECORD_COMM:
1061 ret = machine__process_comm_event(machine, event); break;
1062 case PERF_RECORD_MMAP:
1063 ret = machine__process_mmap_event(machine, event); break;
1064 case PERF_RECORD_FORK:
1065 ret = machine__process_fork_event(machine, event); break;
1066 case PERF_RECORD_EXIT:
1067 ret = machine__process_exit_event(machine, event); break;
1068 case PERF_RECORD_LOST:
1069 ret = machine__process_lost_event(machine, event); break;
1070 default:
1071 ret = -1;
1072 break;
1073 }
1074
1075 return ret;
1076}
3f067dca 1077
b21484f1 1078static bool symbol__match_regex(struct symbol *sym, regex_t *regex)
3f067dca 1079{
b21484f1 1080 if (sym->name && !regexec(regex, sym->name, 0, NULL, 0))
3f067dca 1081 return 1;
3f067dca
ACM
1082 return 0;
1083}
1084
1085static const u8 cpumodes[] = {
1086 PERF_RECORD_MISC_USER,
1087 PERF_RECORD_MISC_KERNEL,
1088 PERF_RECORD_MISC_GUEST_USER,
1089 PERF_RECORD_MISC_GUEST_KERNEL
1090};
1091#define NCPUMODES (sizeof(cpumodes)/sizeof(u8))
1092
1093static void ip__resolve_ams(struct machine *machine, struct thread *thread,
1094 struct addr_map_symbol *ams,
1095 u64 ip)
1096{
1097 struct addr_location al;
1098 size_t i;
1099 u8 m;
1100
1101 memset(&al, 0, sizeof(al));
1102
1103 for (i = 0; i < NCPUMODES; i++) {
1104 m = cpumodes[i];
1105 /*
1106 * We cannot use the header.misc hint to determine whether a
1107 * branch stack address is user, kernel, guest, hypervisor.
1108 * Branches may straddle the kernel/user/hypervisor boundaries.
1109 * Thus, we have to try consecutively until we find a match
1110 * or else, the symbol is unknown
1111 */
1112 thread__find_addr_location(thread, machine, m, MAP__FUNCTION,
1113 ip, &al, NULL);
1114 if (al.sym)
1115 goto found;
1116 }
1117found:
1118 ams->addr = ip;
1119 ams->al_addr = al.addr;
1120 ams->sym = al.sym;
1121 ams->map = al.map;
1122}
1123
98a3b32c
SE
1124static void ip__resolve_data(struct machine *machine, struct thread *thread,
1125 u8 m, struct addr_map_symbol *ams, u64 addr)
1126{
1127 struct addr_location al;
1128
1129 memset(&al, 0, sizeof(al));
1130
1131 thread__find_addr_location(thread, machine, m, MAP__VARIABLE, addr, &al,
1132 NULL);
1133 ams->addr = addr;
1134 ams->al_addr = al.addr;
1135 ams->sym = al.sym;
1136 ams->map = al.map;
1137}
1138
1139struct mem_info *machine__resolve_mem(struct machine *machine,
1140 struct thread *thr,
1141 struct perf_sample *sample,
1142 u8 cpumode)
1143{
1144 struct mem_info *mi = zalloc(sizeof(*mi));
1145
1146 if (!mi)
1147 return NULL;
1148
1149 ip__resolve_ams(machine, thr, &mi->iaddr, sample->ip);
1150 ip__resolve_data(machine, thr, cpumode, &mi->daddr, sample->addr);
1151 mi->data_src.val = sample->data_src;
1152
1153 return mi;
1154}
1155
3f067dca
ACM
1156struct branch_info *machine__resolve_bstack(struct machine *machine,
1157 struct thread *thr,
1158 struct branch_stack *bs)
1159{
1160 struct branch_info *bi;
1161 unsigned int i;
1162
1163 bi = calloc(bs->nr, sizeof(struct branch_info));
1164 if (!bi)
1165 return NULL;
1166
1167 for (i = 0; i < bs->nr; i++) {
1168 ip__resolve_ams(machine, thr, &bi[i].to, bs->entries[i].to);
1169 ip__resolve_ams(machine, thr, &bi[i].from, bs->entries[i].from);
1170 bi[i].flags = bs->entries[i].flags;
1171 }
1172 return bi;
1173}
1174
1175static int machine__resolve_callchain_sample(struct machine *machine,
1176 struct thread *thread,
1177 struct ip_callchain *chain,
b21484f1
GP
1178 struct symbol **parent,
1179 struct addr_location *root_al)
3f067dca
ACM
1180{
1181 u8 cpumode = PERF_RECORD_MISC_USER;
1182 unsigned int i;
1183 int err;
1184
1185 callchain_cursor_reset(&callchain_cursor);
1186
1187 if (chain->nr > PERF_MAX_STACK_DEPTH) {
1188 pr_warning("corrupted callchain. skipping...\n");
1189 return 0;
1190 }
1191
1192 for (i = 0; i < chain->nr; i++) {
1193 u64 ip;
1194 struct addr_location al;
1195
1196 if (callchain_param.order == ORDER_CALLEE)
1197 ip = chain->ips[i];
1198 else
1199 ip = chain->ips[chain->nr - i - 1];
1200
1201 if (ip >= PERF_CONTEXT_MAX) {
1202 switch (ip) {
1203 case PERF_CONTEXT_HV:
1204 cpumode = PERF_RECORD_MISC_HYPERVISOR;
1205 break;
1206 case PERF_CONTEXT_KERNEL:
1207 cpumode = PERF_RECORD_MISC_KERNEL;
1208 break;
1209 case PERF_CONTEXT_USER:
1210 cpumode = PERF_RECORD_MISC_USER;
1211 break;
1212 default:
1213 pr_debug("invalid callchain context: "
1214 "%"PRId64"\n", (s64) ip);
1215 /*
1216 * It seems the callchain is corrupted.
1217 * Discard all.
1218 */
1219 callchain_cursor_reset(&callchain_cursor);
1220 return 0;
1221 }
1222 continue;
1223 }
1224
1225 al.filtered = false;
1226 thread__find_addr_location(thread, machine, cpumode,
1227 MAP__FUNCTION, ip, &al, NULL);
1228 if (al.sym != NULL) {
1229 if (sort__has_parent && !*parent &&
b21484f1 1230 symbol__match_regex(al.sym, &parent_regex))
3f067dca 1231 *parent = al.sym;
b21484f1
GP
1232 else if (have_ignore_callees && root_al &&
1233 symbol__match_regex(al.sym, &ignore_callees_regex)) {
1234 /* Treat this symbol as the root,
1235 forgetting its callees. */
1236 *root_al = al;
1237 callchain_cursor_reset(&callchain_cursor);
1238 }
3f067dca
ACM
1239 if (!symbol_conf.use_callchain)
1240 break;
1241 }
1242
1243 err = callchain_cursor_append(&callchain_cursor,
1244 ip, al.map, al.sym);
1245 if (err)
1246 return err;
1247 }
1248
1249 return 0;
1250}
1251
1252static int unwind_entry(struct unwind_entry *entry, void *arg)
1253{
1254 struct callchain_cursor *cursor = arg;
1255 return callchain_cursor_append(cursor, entry->ip,
1256 entry->map, entry->sym);
1257}
1258
1259int machine__resolve_callchain(struct machine *machine,
1260 struct perf_evsel *evsel,
1261 struct thread *thread,
1262 struct perf_sample *sample,
b21484f1
GP
1263 struct symbol **parent,
1264 struct addr_location *root_al)
3f067dca
ACM
1265{
1266 int ret;
1267
3f067dca 1268 ret = machine__resolve_callchain_sample(machine, thread,
b21484f1 1269 sample->callchain, parent, root_al);
3f067dca
ACM
1270 if (ret)
1271 return ret;
1272
1273 /* Can we do dwarf post unwind? */
1274 if (!((evsel->attr.sample_type & PERF_SAMPLE_REGS_USER) &&
1275 (evsel->attr.sample_type & PERF_SAMPLE_STACK_USER)))
1276 return 0;
1277
1278 /* Bail out if nothing was captured. */
1279 if ((!sample->user_regs.regs) ||
1280 (!sample->user_stack.size))
1281 return 0;
1282
1283 return unwind__get_entries(unwind_entry, &callchain_cursor, machine,
1284 thread, evsel->attr.sample_regs_user,
1285 sample);
1286
1287}