perf tools: Add machine__module_dso function
[linux-2.6-block.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 10#include "thread.h"
d027b640 11#include "vdso.h"
9d2f8e22 12#include <stdbool.h>
c506c96b 13#include <symbol/kallsyms.h>
3f067dca 14#include "unwind.h"
8b7bad58 15#include "linux/hash.h"
9d2f8e22 16
f3b623b8
ACM
17static void machine__remove_thread(struct machine *machine, struct thread *th);
18
e167f995
ACM
19static void dsos__init(struct dsos *dsos)
20{
21 INIT_LIST_HEAD(&dsos->head);
22 dsos->root = RB_ROOT;
23}
24
69d2591a
ACM
25int machine__init(struct machine *machine, const char *root_dir, pid_t pid)
26{
11246c70 27 map_groups__init(&machine->kmaps, machine);
69d2591a 28 RB_CLEAR_NODE(&machine->rb_node);
e167f995
ACM
29 dsos__init(&machine->user_dsos);
30 dsos__init(&machine->kernel_dsos);
69d2591a
ACM
31
32 machine->threads = RB_ROOT;
33 INIT_LIST_HEAD(&machine->dead_threads);
34 machine->last_match = NULL;
35
d027b640
AH
36 machine->vdso_info = NULL;
37
69d2591a
ACM
38 machine->pid = pid;
39
611a5ce8 40 machine->symbol_filter = NULL;
14bd6d20 41 machine->id_hdr_size = 0;
cfe1c414 42 machine->comm_exec = false;
fbe2af45 43 machine->kernel_start = 0;
611a5ce8 44
69d2591a
ACM
45 machine->root_dir = strdup(root_dir);
46 if (machine->root_dir == NULL)
47 return -ENOMEM;
48
49 if (pid != HOST_KERNEL_ID) {
1fcb8768 50 struct thread *thread = machine__findnew_thread(machine, -1,
314add6b 51 pid);
69d2591a
ACM
52 char comm[64];
53
54 if (thread == NULL)
55 return -ENOMEM;
56
57 snprintf(comm, sizeof(comm), "[guest/%d]", pid);
162f0bef 58 thread__set_comm(thread, comm, 0);
69d2591a
ACM
59 }
60
b9d266ba
AH
61 machine->current_tid = NULL;
62
69d2591a
ACM
63 return 0;
64}
65
8fb598e5
DA
66struct machine *machine__new_host(void)
67{
68 struct machine *machine = malloc(sizeof(*machine));
69
70 if (machine != NULL) {
71 machine__init(machine, "", HOST_KERNEL_ID);
72
73 if (machine__create_kernel_maps(machine) < 0)
74 goto out_delete;
75 }
76
77 return machine;
78out_delete:
79 free(machine);
80 return NULL;
81}
82
8fa7d87f 83static void dsos__delete(struct dsos *dsos)
69d2591a
ACM
84{
85 struct dso *pos, *n;
86
8fa7d87f 87 list_for_each_entry_safe(pos, n, &dsos->head, node) {
4598a0a6 88 RB_CLEAR_NODE(&pos->rb_node);
69d2591a
ACM
89 list_del(&pos->node);
90 dso__delete(pos);
91 }
92}
93
3f067dca
ACM
94void machine__delete_threads(struct machine *machine)
95{
96 struct rb_node *nd = rb_first(&machine->threads);
97
98 while (nd) {
99 struct thread *t = rb_entry(nd, struct thread, rb_node);
100
3f067dca 101 nd = rb_next(nd);
f3b623b8 102 machine__remove_thread(machine, t);
3f067dca
ACM
103 }
104}
105
69d2591a
ACM
106void machine__exit(struct machine *machine)
107{
108 map_groups__exit(&machine->kmaps);
109 dsos__delete(&machine->user_dsos);
110 dsos__delete(&machine->kernel_dsos);
d027b640 111 vdso__exit(machine);
04662523 112 zfree(&machine->root_dir);
b9d266ba 113 zfree(&machine->current_tid);
69d2591a
ACM
114}
115
116void machine__delete(struct machine *machine)
117{
118 machine__exit(machine);
119 free(machine);
120}
121
876650e6
ACM
122void machines__init(struct machines *machines)
123{
124 machine__init(&machines->host, "", HOST_KERNEL_ID);
125 machines->guests = RB_ROOT;
611a5ce8 126 machines->symbol_filter = NULL;
876650e6
ACM
127}
128
129void machines__exit(struct machines *machines)
130{
131 machine__exit(&machines->host);
132 /* XXX exit guest */
133}
134
135struct machine *machines__add(struct machines *machines, pid_t pid,
69d2591a
ACM
136 const char *root_dir)
137{
876650e6 138 struct rb_node **p = &machines->guests.rb_node;
69d2591a
ACM
139 struct rb_node *parent = NULL;
140 struct machine *pos, *machine = malloc(sizeof(*machine));
141
142 if (machine == NULL)
143 return NULL;
144
145 if (machine__init(machine, root_dir, pid) != 0) {
146 free(machine);
147 return NULL;
148 }
149
611a5ce8
AH
150 machine->symbol_filter = machines->symbol_filter;
151
69d2591a
ACM
152 while (*p != NULL) {
153 parent = *p;
154 pos = rb_entry(parent, struct machine, rb_node);
155 if (pid < pos->pid)
156 p = &(*p)->rb_left;
157 else
158 p = &(*p)->rb_right;
159 }
160
161 rb_link_node(&machine->rb_node, parent, p);
876650e6 162 rb_insert_color(&machine->rb_node, &machines->guests);
69d2591a
ACM
163
164 return machine;
165}
166
611a5ce8
AH
167void machines__set_symbol_filter(struct machines *machines,
168 symbol_filter_t symbol_filter)
169{
170 struct rb_node *nd;
171
172 machines->symbol_filter = symbol_filter;
173 machines->host.symbol_filter = symbol_filter;
174
175 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
176 struct machine *machine = rb_entry(nd, struct machine, rb_node);
177
178 machine->symbol_filter = symbol_filter;
179 }
180}
181
cfe1c414
AH
182void machines__set_comm_exec(struct machines *machines, bool comm_exec)
183{
184 struct rb_node *nd;
185
186 machines->host.comm_exec = comm_exec;
187
188 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
189 struct machine *machine = rb_entry(nd, struct machine, rb_node);
190
191 machine->comm_exec = comm_exec;
192 }
193}
194
876650e6 195struct machine *machines__find(struct machines *machines, pid_t pid)
69d2591a 196{
876650e6 197 struct rb_node **p = &machines->guests.rb_node;
69d2591a
ACM
198 struct rb_node *parent = NULL;
199 struct machine *machine;
200 struct machine *default_machine = NULL;
201
876650e6
ACM
202 if (pid == HOST_KERNEL_ID)
203 return &machines->host;
204
69d2591a
ACM
205 while (*p != NULL) {
206 parent = *p;
207 machine = rb_entry(parent, struct machine, rb_node);
208 if (pid < machine->pid)
209 p = &(*p)->rb_left;
210 else if (pid > machine->pid)
211 p = &(*p)->rb_right;
212 else
213 return machine;
214 if (!machine->pid)
215 default_machine = machine;
216 }
217
218 return default_machine;
219}
220
876650e6 221struct machine *machines__findnew(struct machines *machines, pid_t pid)
69d2591a
ACM
222{
223 char path[PATH_MAX];
224 const char *root_dir = "";
225 struct machine *machine = machines__find(machines, pid);
226
227 if (machine && (machine->pid == pid))
228 goto out;
229
230 if ((pid != HOST_KERNEL_ID) &&
231 (pid != DEFAULT_GUEST_KERNEL_ID) &&
232 (symbol_conf.guestmount)) {
233 sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
234 if (access(path, R_OK)) {
235 static struct strlist *seen;
236
237 if (!seen)
238 seen = strlist__new(true, NULL);
239
240 if (!strlist__has_entry(seen, path)) {
241 pr_err("Can't access file %s\n", path);
242 strlist__add(seen, path);
243 }
244 machine = NULL;
245 goto out;
246 }
247 root_dir = path;
248 }
249
250 machine = machines__add(machines, pid, root_dir);
251out:
252 return machine;
253}
254
876650e6
ACM
255void machines__process_guests(struct machines *machines,
256 machine__process_t process, void *data)
69d2591a
ACM
257{
258 struct rb_node *nd;
259
876650e6 260 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
69d2591a
ACM
261 struct machine *pos = rb_entry(nd, struct machine, rb_node);
262 process(pos, data);
263 }
264}
265
266char *machine__mmap_name(struct machine *machine, char *bf, size_t size)
267{
268 if (machine__is_host(machine))
269 snprintf(bf, size, "[%s]", "kernel.kallsyms");
270 else if (machine__is_default_guest(machine))
271 snprintf(bf, size, "[%s]", "guest.kernel.kallsyms");
272 else {
273 snprintf(bf, size, "[%s.%d]", "guest.kernel.kallsyms",
274 machine->pid);
275 }
276
277 return bf;
278}
279
876650e6 280void machines__set_id_hdr_size(struct machines *machines, u16 id_hdr_size)
69d2591a
ACM
281{
282 struct rb_node *node;
283 struct machine *machine;
284
876650e6
ACM
285 machines->host.id_hdr_size = id_hdr_size;
286
287 for (node = rb_first(&machines->guests); node; node = rb_next(node)) {
69d2591a
ACM
288 machine = rb_entry(node, struct machine, rb_node);
289 machine->id_hdr_size = id_hdr_size;
290 }
291
292 return;
293}
294
29ce3612
AH
295static void machine__update_thread_pid(struct machine *machine,
296 struct thread *th, pid_t pid)
297{
298 struct thread *leader;
299
300 if (pid == th->pid_ || pid == -1 || th->pid_ != -1)
301 return;
302
303 th->pid_ = pid;
304
305 if (th->pid_ == th->tid)
306 return;
307
308 leader = machine__findnew_thread(machine, th->pid_, th->pid_);
309 if (!leader)
310 goto out_err;
311
312 if (!leader->mg)
11246c70 313 leader->mg = map_groups__new(machine);
29ce3612
AH
314
315 if (!leader->mg)
316 goto out_err;
317
318 if (th->mg == leader->mg)
319 return;
320
321 if (th->mg) {
322 /*
323 * Maps are created from MMAP events which provide the pid and
324 * tid. Consequently there never should be any maps on a thread
325 * with an unknown pid. Just print an error if there are.
326 */
327 if (!map_groups__empty(th->mg))
328 pr_err("Discarding thread maps for %d:%d\n",
329 th->pid_, th->tid);
330 map_groups__delete(th->mg);
331 }
332
333 th->mg = map_groups__get(leader->mg);
334
335 return;
336
337out_err:
338 pr_err("Failed to join map groups for %d:%d\n", th->pid_, th->tid);
339}
340
99d725fc
AH
341static struct thread *__machine__findnew_thread(struct machine *machine,
342 pid_t pid, pid_t tid,
9d2f8e22
ACM
343 bool create)
344{
345 struct rb_node **p = &machine->threads.rb_node;
346 struct rb_node *parent = NULL;
347 struct thread *th;
348
349 /*
38051234 350 * Front-end cache - TID lookups come in blocks,
9d2f8e22
ACM
351 * so most of the time we dont have to look up
352 * the full rbtree:
353 */
29ce3612 354 th = machine->last_match;
f3b623b8
ACM
355 if (th != NULL) {
356 if (th->tid == tid) {
357 machine__update_thread_pid(machine, th, pid);
358 return th;
359 }
360
361 thread__zput(machine->last_match);
99d725fc 362 }
9d2f8e22
ACM
363
364 while (*p != NULL) {
365 parent = *p;
366 th = rb_entry(parent, struct thread, rb_node);
367
38051234 368 if (th->tid == tid) {
f3b623b8 369 machine->last_match = thread__get(th);
29ce3612 370 machine__update_thread_pid(machine, th, pid);
9d2f8e22
ACM
371 return th;
372 }
373
38051234 374 if (tid < th->tid)
9d2f8e22
ACM
375 p = &(*p)->rb_left;
376 else
377 p = &(*p)->rb_right;
378 }
379
380 if (!create)
381 return NULL;
382
99d725fc 383 th = thread__new(pid, tid);
9d2f8e22
ACM
384 if (th != NULL) {
385 rb_link_node(&th->rb_node, parent, p);
386 rb_insert_color(&th->rb_node, &machine->threads);
cddcef60
JO
387
388 /*
389 * We have to initialize map_groups separately
390 * after rb tree is updated.
391 *
392 * The reason is that we call machine__findnew_thread
393 * within thread__init_map_groups to find the thread
394 * leader and that would screwed the rb tree.
395 */
418029b7 396 if (thread__init_map_groups(th, machine)) {
260d819e 397 rb_erase(&th->rb_node, &machine->threads);
418029b7 398 thread__delete(th);
cddcef60 399 return NULL;
418029b7 400 }
f3b623b8
ACM
401 /*
402 * It is now in the rbtree, get a ref
403 */
404 thread__get(th);
405 machine->last_match = thread__get(th);
9d2f8e22
ACM
406 }
407
408 return th;
409}
410
314add6b
AH
411struct thread *machine__findnew_thread(struct machine *machine, pid_t pid,
412 pid_t tid)
9d2f8e22 413{
314add6b 414 return __machine__findnew_thread(machine, pid, tid, true);
9d2f8e22
ACM
415}
416
d75e6097
JO
417struct thread *machine__find_thread(struct machine *machine, pid_t pid,
418 pid_t tid)
9d2f8e22 419{
d75e6097 420 return __machine__findnew_thread(machine, pid, tid, false);
9d2f8e22 421}
b0a7d1a0 422
cfe1c414
AH
423struct comm *machine__thread_exec_comm(struct machine *machine,
424 struct thread *thread)
425{
426 if (machine->comm_exec)
427 return thread__exec_comm(thread);
428 else
429 return thread__comm(thread);
430}
431
162f0bef
FW
432int machine__process_comm_event(struct machine *machine, union perf_event *event,
433 struct perf_sample *sample)
b0a7d1a0 434{
314add6b
AH
435 struct thread *thread = machine__findnew_thread(machine,
436 event->comm.pid,
437 event->comm.tid);
65de51f9 438 bool exec = event->header.misc & PERF_RECORD_MISC_COMM_EXEC;
b0a7d1a0 439
cfe1c414
AH
440 if (exec)
441 machine->comm_exec = true;
442
b0a7d1a0
ACM
443 if (dump_trace)
444 perf_event__fprintf_comm(event, stdout);
445
65de51f9
AH
446 if (thread == NULL ||
447 __thread__set_comm(thread, event->comm.comm, sample->time, exec)) {
b0a7d1a0
ACM
448 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
449 return -1;
450 }
451
452 return 0;
453}
454
455int machine__process_lost_event(struct machine *machine __maybe_unused,
162f0bef 456 union perf_event *event, struct perf_sample *sample __maybe_unused)
b0a7d1a0
ACM
457{
458 dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
459 event->lost.id, event->lost.lost);
460 return 0;
461}
462
da17ea33
JO
463static struct dso *machine__module_dso(struct machine *machine, const char *filename)
464{
465 struct dso *dso;
466 bool compressed;
467
468 dso = dsos__find(&machine->kernel_dsos, filename, false);
469 if (!dso) {
470 dso = dsos__addnew(&machine->kernel_dsos, filename);
471 if (dso == NULL)
472 return NULL;
473
474 if (machine__is_host(machine))
475 dso->symtab_type = DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE;
476 else
477 dso->symtab_type = DSO_BINARY_TYPE__GUEST_KMODULE;
478
479 /* _KMODULE_COMP should be next to _KMODULE */
480 if (is_kernel_module(filename, &compressed) && compressed)
481 dso->symtab_type++;
482 }
483
484 return dso;
485}
486
3f067dca
ACM
487struct map *machine__new_module(struct machine *machine, u64 start,
488 const char *filename)
489{
490 struct map *map;
da17ea33 491 struct dso *dso = machine__module_dso(machine, filename);
3f067dca
ACM
492
493 if (dso == NULL)
494 return NULL;
495
496 map = map__new2(start, dso, MAP__FUNCTION);
497 if (map == NULL)
498 return NULL;
499
3f067dca
ACM
500 map_groups__insert(&machine->kmaps, map);
501 return map;
502}
503
876650e6 504size_t machines__fprintf_dsos(struct machines *machines, FILE *fp)
3f067dca
ACM
505{
506 struct rb_node *nd;
8fa7d87f
WL
507 size_t ret = __dsos__fprintf(&machines->host.kernel_dsos.head, fp) +
508 __dsos__fprintf(&machines->host.user_dsos.head, fp);
3f067dca 509
876650e6 510 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
3f067dca 511 struct machine *pos = rb_entry(nd, struct machine, rb_node);
8fa7d87f
WL
512 ret += __dsos__fprintf(&pos->kernel_dsos.head, fp);
513 ret += __dsos__fprintf(&pos->user_dsos.head, fp);
3f067dca
ACM
514 }
515
516 return ret;
517}
518
8fa7d87f 519size_t machine__fprintf_dsos_buildid(struct machine *m, FILE *fp,
3f067dca
ACM
520 bool (skip)(struct dso *dso, int parm), int parm)
521{
8fa7d87f
WL
522 return __dsos__fprintf_buildid(&m->kernel_dsos.head, fp, skip, parm) +
523 __dsos__fprintf_buildid(&m->user_dsos.head, fp, skip, parm);
3f067dca
ACM
524}
525
876650e6 526size_t machines__fprintf_dsos_buildid(struct machines *machines, FILE *fp,
3f067dca
ACM
527 bool (skip)(struct dso *dso, int parm), int parm)
528{
529 struct rb_node *nd;
876650e6 530 size_t ret = machine__fprintf_dsos_buildid(&machines->host, fp, skip, parm);
3f067dca 531
876650e6 532 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
3f067dca
ACM
533 struct machine *pos = rb_entry(nd, struct machine, rb_node);
534 ret += machine__fprintf_dsos_buildid(pos, fp, skip, parm);
535 }
536 return ret;
537}
538
539size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp)
540{
541 int i;
542 size_t printed = 0;
543 struct dso *kdso = machine->vmlinux_maps[MAP__FUNCTION]->dso;
544
545 if (kdso->has_build_id) {
546 char filename[PATH_MAX];
547 if (dso__build_id_filename(kdso, filename, sizeof(filename)))
548 printed += fprintf(fp, "[0] %s\n", filename);
549 }
550
551 for (i = 0; i < vmlinux_path__nr_entries; ++i)
552 printed += fprintf(fp, "[%d] %s\n",
553 i + kdso->has_build_id, vmlinux_path[i]);
554
555 return printed;
556}
557
558size_t machine__fprintf(struct machine *machine, FILE *fp)
559{
560 size_t ret = 0;
561 struct rb_node *nd;
562
563 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
564 struct thread *pos = rb_entry(nd, struct thread, rb_node);
565
566 ret += thread__fprintf(pos, fp);
567 }
568
569 return ret;
570}
571
572static struct dso *machine__get_kernel(struct machine *machine)
573{
574 const char *vmlinux_name = NULL;
575 struct dso *kernel;
576
577 if (machine__is_host(machine)) {
578 vmlinux_name = symbol_conf.vmlinux_name;
579 if (!vmlinux_name)
580 vmlinux_name = "[kernel.kallsyms]";
581
582 kernel = dso__kernel_findnew(machine, vmlinux_name,
583 "[kernel]",
584 DSO_TYPE_KERNEL);
585 } else {
586 char bf[PATH_MAX];
587
588 if (machine__is_default_guest(machine))
589 vmlinux_name = symbol_conf.default_guest_vmlinux_name;
590 if (!vmlinux_name)
591 vmlinux_name = machine__mmap_name(machine, bf,
592 sizeof(bf));
593
594 kernel = dso__kernel_findnew(machine, vmlinux_name,
595 "[guest.kernel]",
596 DSO_TYPE_GUEST_KERNEL);
597 }
598
599 if (kernel != NULL && (!kernel->has_build_id))
600 dso__read_running_kernel_build_id(kernel, machine);
601
602 return kernel;
603}
604
605struct process_args {
606 u64 start;
607};
608
15a0a870
AH
609static void machine__get_kallsyms_filename(struct machine *machine, char *buf,
610 size_t bufsz)
611{
612 if (machine__is_default_guest(machine))
613 scnprintf(buf, bufsz, "%s", symbol_conf.default_guest_kallsyms);
614 else
615 scnprintf(buf, bufsz, "%s/proc/kallsyms", machine->root_dir);
616}
617
a93f0e55
SQ
618const char *ref_reloc_sym_names[] = {"_text", "_stext", NULL};
619
620/* Figure out the start address of kernel map from /proc/kallsyms.
621 * Returns the name of the start symbol in *symbol_name. Pass in NULL as
622 * symbol_name if it's not that important.
623 */
4b99375b
AH
624static u64 machine__get_running_kernel_start(struct machine *machine,
625 const char **symbol_name)
3f067dca 626{
15a0a870 627 char filename[PATH_MAX];
a93f0e55
SQ
628 int i;
629 const char *name;
630 u64 addr = 0;
3f067dca 631
15a0a870 632 machine__get_kallsyms_filename(machine, filename, PATH_MAX);
3f067dca
ACM
633
634 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
635 return 0;
636
a93f0e55
SQ
637 for (i = 0; (name = ref_reloc_sym_names[i]) != NULL; i++) {
638 addr = kallsyms__get_function_start(filename, name);
639 if (addr)
640 break;
641 }
642
643 if (symbol_name)
644 *symbol_name = name;
3f067dca 645
a93f0e55 646 return addr;
3f067dca
ACM
647}
648
649int __machine__create_kernel_maps(struct machine *machine, struct dso *kernel)
650{
651 enum map_type type;
4b99375b 652 u64 start = machine__get_running_kernel_start(machine, NULL);
3f067dca
ACM
653
654 for (type = 0; type < MAP__NR_TYPES; ++type) {
655 struct kmap *kmap;
656
657 machine->vmlinux_maps[type] = map__new2(start, kernel, type);
658 if (machine->vmlinux_maps[type] == NULL)
659 return -1;
660
661 machine->vmlinux_maps[type]->map_ip =
662 machine->vmlinux_maps[type]->unmap_ip =
663 identity__map_ip;
664 kmap = map__kmap(machine->vmlinux_maps[type]);
665 kmap->kmaps = &machine->kmaps;
666 map_groups__insert(&machine->kmaps,
667 machine->vmlinux_maps[type]);
668 }
669
670 return 0;
671}
672
673void machine__destroy_kernel_maps(struct machine *machine)
674{
675 enum map_type type;
676
677 for (type = 0; type < MAP__NR_TYPES; ++type) {
678 struct kmap *kmap;
679
680 if (machine->vmlinux_maps[type] == NULL)
681 continue;
682
683 kmap = map__kmap(machine->vmlinux_maps[type]);
684 map_groups__remove(&machine->kmaps,
685 machine->vmlinux_maps[type]);
686 if (kmap->ref_reloc_sym) {
687 /*
688 * ref_reloc_sym is shared among all maps, so free just
689 * on one of them.
690 */
691 if (type == MAP__FUNCTION) {
04662523
ACM
692 zfree((char **)&kmap->ref_reloc_sym->name);
693 zfree(&kmap->ref_reloc_sym);
694 } else
695 kmap->ref_reloc_sym = NULL;
3f067dca
ACM
696 }
697
698 map__delete(machine->vmlinux_maps[type]);
699 machine->vmlinux_maps[type] = NULL;
700 }
701}
702
876650e6 703int machines__create_guest_kernel_maps(struct machines *machines)
3f067dca
ACM
704{
705 int ret = 0;
706 struct dirent **namelist = NULL;
707 int i, items = 0;
708 char path[PATH_MAX];
709 pid_t pid;
710 char *endp;
711
712 if (symbol_conf.default_guest_vmlinux_name ||
713 symbol_conf.default_guest_modules ||
714 symbol_conf.default_guest_kallsyms) {
715 machines__create_kernel_maps(machines, DEFAULT_GUEST_KERNEL_ID);
716 }
717
718 if (symbol_conf.guestmount) {
719 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
720 if (items <= 0)
721 return -ENOENT;
722 for (i = 0; i < items; i++) {
723 if (!isdigit(namelist[i]->d_name[0])) {
724 /* Filter out . and .. */
725 continue;
726 }
727 pid = (pid_t)strtol(namelist[i]->d_name, &endp, 10);
728 if ((*endp != '\0') ||
729 (endp == namelist[i]->d_name) ||
730 (errno == ERANGE)) {
731 pr_debug("invalid directory (%s). Skipping.\n",
732 namelist[i]->d_name);
733 continue;
734 }
735 sprintf(path, "%s/%s/proc/kallsyms",
736 symbol_conf.guestmount,
737 namelist[i]->d_name);
738 ret = access(path, R_OK);
739 if (ret) {
740 pr_debug("Can't access file %s\n", path);
741 goto failure;
742 }
743 machines__create_kernel_maps(machines, pid);
744 }
745failure:
746 free(namelist);
747 }
748
749 return ret;
750}
751
876650e6 752void machines__destroy_kernel_maps(struct machines *machines)
3f067dca 753{
876650e6
ACM
754 struct rb_node *next = rb_first(&machines->guests);
755
756 machine__destroy_kernel_maps(&machines->host);
3f067dca
ACM
757
758 while (next) {
759 struct machine *pos = rb_entry(next, struct machine, rb_node);
760
761 next = rb_next(&pos->rb_node);
876650e6 762 rb_erase(&pos->rb_node, &machines->guests);
3f067dca
ACM
763 machine__delete(pos);
764 }
765}
766
876650e6 767int machines__create_kernel_maps(struct machines *machines, pid_t pid)
3f067dca
ACM
768{
769 struct machine *machine = machines__findnew(machines, pid);
770
771 if (machine == NULL)
772 return -1;
773
774 return machine__create_kernel_maps(machine);
775}
776
777int machine__load_kallsyms(struct machine *machine, const char *filename,
778 enum map_type type, symbol_filter_t filter)
779{
780 struct map *map = machine->vmlinux_maps[type];
781 int ret = dso__load_kallsyms(map->dso, filename, map, filter);
782
783 if (ret > 0) {
784 dso__set_loaded(map->dso, type);
785 /*
786 * Since /proc/kallsyms will have multiple sessions for the
787 * kernel, with modules between them, fixup the end of all
788 * sections.
789 */
790 __map_groups__fixup_end(&machine->kmaps, type);
791 }
792
793 return ret;
794}
795
796int machine__load_vmlinux_path(struct machine *machine, enum map_type type,
797 symbol_filter_t filter)
798{
799 struct map *map = machine->vmlinux_maps[type];
800 int ret = dso__load_vmlinux_path(map->dso, map, filter);
801
39b12f78 802 if (ret > 0)
3f067dca 803 dso__set_loaded(map->dso, type);
3f067dca
ACM
804
805 return ret;
806}
807
808static void map_groups__fixup_end(struct map_groups *mg)
809{
810 int i;
811 for (i = 0; i < MAP__NR_TYPES; ++i)
812 __map_groups__fixup_end(mg, i);
813}
814
815static char *get_kernel_version(const char *root_dir)
816{
817 char version[PATH_MAX];
818 FILE *file;
819 char *name, *tmp;
820 const char *prefix = "Linux version ";
821
822 sprintf(version, "%s/proc/version", root_dir);
823 file = fopen(version, "r");
824 if (!file)
825 return NULL;
826
827 version[0] = '\0';
828 tmp = fgets(version, sizeof(version), file);
829 fclose(file);
830
831 name = strstr(version, prefix);
832 if (!name)
833 return NULL;
834 name += strlen(prefix);
835 tmp = strchr(name, ' ');
836 if (tmp)
837 *tmp = '\0';
838
839 return strdup(name);
840}
841
842static int map_groups__set_modules_path_dir(struct map_groups *mg,
61d4290c 843 const char *dir_name, int depth)
3f067dca
ACM
844{
845 struct dirent *dent;
846 DIR *dir = opendir(dir_name);
847 int ret = 0;
848
849 if (!dir) {
850 pr_debug("%s: cannot open %s dir\n", __func__, dir_name);
851 return -1;
852 }
853
854 while ((dent = readdir(dir)) != NULL) {
855 char path[PATH_MAX];
856 struct stat st;
857
858 /*sshfs might return bad dent->d_type, so we have to stat*/
859 snprintf(path, sizeof(path), "%s/%s", dir_name, dent->d_name);
860 if (stat(path, &st))
861 continue;
862
863 if (S_ISDIR(st.st_mode)) {
864 if (!strcmp(dent->d_name, ".") ||
865 !strcmp(dent->d_name, ".."))
866 continue;
867
61d4290c
RY
868 /* Do not follow top-level source and build symlinks */
869 if (depth == 0) {
870 if (!strcmp(dent->d_name, "source") ||
871 !strcmp(dent->d_name, "build"))
872 continue;
873 }
874
875 ret = map_groups__set_modules_path_dir(mg, path,
876 depth + 1);
3f067dca
ACM
877 if (ret < 0)
878 goto out;
879 } else {
880 char *dot = strrchr(dent->d_name, '.'),
881 dso_name[PATH_MAX];
882 struct map *map;
883 char *long_name;
884
c00c48fc 885 if (dot == NULL)
3f067dca 886 continue;
c00c48fc
NK
887
888 /* On some system, modules are compressed like .ko.gz */
889 if (is_supported_compression(dot + 1) &&
890 is_kmodule_extension(dot - 2))
891 dot -= 3;
892
3f067dca
ACM
893 snprintf(dso_name, sizeof(dso_name), "[%.*s]",
894 (int)(dot - dent->d_name), dent->d_name);
895
896 strxfrchar(dso_name, '-', '_');
897 map = map_groups__find_by_name(mg, MAP__FUNCTION,
898 dso_name);
899 if (map == NULL)
900 continue;
901
902 long_name = strdup(path);
903 if (long_name == NULL) {
904 ret = -1;
905 goto out;
906 }
7e155d4d 907 dso__set_long_name(map->dso, long_name, true);
3f067dca
ACM
908 dso__kernel_module_get_build_id(map->dso, "");
909 }
910 }
911
912out:
913 closedir(dir);
914 return ret;
915}
916
917static int machine__set_modules_path(struct machine *machine)
918{
919 char *version;
920 char modules_path[PATH_MAX];
921
922 version = get_kernel_version(machine->root_dir);
923 if (!version)
924 return -1;
925
61d4290c 926 snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s",
3f067dca
ACM
927 machine->root_dir, version);
928 free(version);
929
61d4290c 930 return map_groups__set_modules_path_dir(&machine->kmaps, modules_path, 0);
3f067dca
ACM
931}
932
316d70d6 933static int machine__create_module(void *arg, const char *name, u64 start)
3f067dca 934{
316d70d6 935 struct machine *machine = arg;
3f067dca 936 struct map *map;
316d70d6
AH
937
938 map = machine__new_module(machine, start, name);
939 if (map == NULL)
940 return -1;
941
942 dso__kernel_module_get_build_id(map->dso, machine->root_dir);
943
944 return 0;
945}
946
947static int machine__create_modules(struct machine *machine)
948{
3f067dca
ACM
949 const char *modules;
950 char path[PATH_MAX];
951
f4be904d 952 if (machine__is_default_guest(machine)) {
3f067dca 953 modules = symbol_conf.default_guest_modules;
f4be904d
AH
954 } else {
955 snprintf(path, PATH_MAX, "%s/proc/modules", machine->root_dir);
3f067dca
ACM
956 modules = path;
957 }
958
aa7fe3b0 959 if (symbol__restricted_filename(modules, "/proc/modules"))
3f067dca
ACM
960 return -1;
961
316d70d6 962 if (modules__parse(modules, machine, machine__create_module))
3f067dca
ACM
963 return -1;
964
316d70d6
AH
965 if (!machine__set_modules_path(machine))
966 return 0;
3f067dca 967
316d70d6 968 pr_debug("Problems setting modules path maps, continuing anyway...\n");
3f067dca 969
8f76fcd9 970 return 0;
3f067dca
ACM
971}
972
973int machine__create_kernel_maps(struct machine *machine)
974{
975 struct dso *kernel = machine__get_kernel(machine);
5512cf24 976 const char *name;
4b99375b 977 u64 addr = machine__get_running_kernel_start(machine, &name);
5512cf24
AH
978 if (!addr)
979 return -1;
3f067dca
ACM
980
981 if (kernel == NULL ||
982 __machine__create_kernel_maps(machine, kernel) < 0)
983 return -1;
984
985 if (symbol_conf.use_modules && machine__create_modules(machine) < 0) {
986 if (machine__is_host(machine))
987 pr_debug("Problems creating module maps, "
988 "continuing anyway...\n");
989 else
990 pr_debug("Problems creating module maps for guest %d, "
991 "continuing anyway...\n", machine->pid);
992 }
993
994 /*
995 * Now that we have all the maps created, just set the ->end of them:
996 */
997 map_groups__fixup_end(&machine->kmaps);
5512cf24
AH
998
999 if (maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps, name,
1000 addr)) {
1001 machine__destroy_kernel_maps(machine);
1002 return -1;
1003 }
1004
3f067dca
ACM
1005 return 0;
1006}
1007
b0a7d1a0
ACM
1008static void machine__set_kernel_mmap_len(struct machine *machine,
1009 union perf_event *event)
1010{
4552cf0f
NK
1011 int i;
1012
1013 for (i = 0; i < MAP__NR_TYPES; i++) {
1014 machine->vmlinux_maps[i]->start = event->mmap.start;
1015 machine->vmlinux_maps[i]->end = (event->mmap.start +
1016 event->mmap.len);
1017 /*
1018 * Be a bit paranoid here, some perf.data file came with
1019 * a zero sized synthesized MMAP event for the kernel.
1020 */
1021 if (machine->vmlinux_maps[i]->end == 0)
1022 machine->vmlinux_maps[i]->end = ~0ULL;
1023 }
b0a7d1a0
ACM
1024}
1025
8e0cf965
AH
1026static bool machine__uses_kcore(struct machine *machine)
1027{
1028 struct dso *dso;
1029
8fa7d87f 1030 list_for_each_entry(dso, &machine->kernel_dsos.head, node) {
8e0cf965
AH
1031 if (dso__is_kcore(dso))
1032 return true;
1033 }
1034
1035 return false;
1036}
1037
b0a7d1a0
ACM
1038static int machine__process_kernel_mmap_event(struct machine *machine,
1039 union perf_event *event)
1040{
1041 struct map *map;
1042 char kmmap_prefix[PATH_MAX];
1043 enum dso_kernel_type kernel_type;
1044 bool is_kernel_mmap;
1045
8e0cf965
AH
1046 /* If we have maps from kcore then we do not need or want any others */
1047 if (machine__uses_kcore(machine))
1048 return 0;
1049
b0a7d1a0
ACM
1050 machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
1051 if (machine__is_host(machine))
1052 kernel_type = DSO_TYPE_KERNEL;
1053 else
1054 kernel_type = DSO_TYPE_GUEST_KERNEL;
1055
1056 is_kernel_mmap = memcmp(event->mmap.filename,
1057 kmmap_prefix,
1058 strlen(kmmap_prefix) - 1) == 0;
1059 if (event->mmap.filename[0] == '/' ||
1060 (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
1061
1062 char short_module_name[1024];
1063 char *name, *dot;
1064
1065 if (event->mmap.filename[0] == '/') {
1066 name = strrchr(event->mmap.filename, '/');
1067 if (name == NULL)
1068 goto out_problem;
1069
1070 ++name; /* skip / */
1071 dot = strrchr(name, '.');
1072 if (dot == NULL)
1073 goto out_problem;
c00c48fc
NK
1074 /* On some system, modules are compressed like .ko.gz */
1075 if (is_supported_compression(dot + 1))
1076 dot -= 3;
1077 if (!is_kmodule_extension(dot + 1))
1078 goto out_problem;
b0a7d1a0
ACM
1079 snprintf(short_module_name, sizeof(short_module_name),
1080 "[%.*s]", (int)(dot - name), name);
1081 strxfrchar(short_module_name, '-', '_');
1082 } else
1083 strcpy(short_module_name, event->mmap.filename);
1084
1085 map = machine__new_module(machine, event->mmap.start,
1086 event->mmap.filename);
1087 if (map == NULL)
1088 goto out_problem;
1089
1090 name = strdup(short_module_name);
1091 if (name == NULL)
1092 goto out_problem;
1093
58a98c9c 1094 dso__set_short_name(map->dso, name, true);
b0a7d1a0
ACM
1095 map->end = map->start + event->mmap.len;
1096 } else if (is_kernel_mmap) {
1097 const char *symbol_name = (event->mmap.filename +
1098 strlen(kmmap_prefix));
1099 /*
1100 * Should be there already, from the build-id table in
1101 * the header.
1102 */
b837a8bd
NK
1103 struct dso *kernel = NULL;
1104 struct dso *dso;
1105
1106 list_for_each_entry(dso, &machine->kernel_dsos.head, node) {
1107 if (is_kernel_module(dso->long_name, NULL))
1108 continue;
1109
1110 kernel = dso;
1111 break;
1112 }
1113
1114 if (kernel == NULL)
1115 kernel = __dsos__findnew(&machine->kernel_dsos,
1116 kmmap_prefix);
b0a7d1a0
ACM
1117 if (kernel == NULL)
1118 goto out_problem;
1119
1120 kernel->kernel = kernel_type;
1121 if (__machine__create_kernel_maps(machine, kernel) < 0)
1122 goto out_problem;
1123
330dfa22
NK
1124 if (strstr(kernel->long_name, "vmlinux"))
1125 dso__set_short_name(kernel, "[kernel.vmlinux]", false);
96d78059 1126
b0a7d1a0
ACM
1127 machine__set_kernel_mmap_len(machine, event);
1128
1129 /*
1130 * Avoid using a zero address (kptr_restrict) for the ref reloc
1131 * symbol. Effectively having zero here means that at record
1132 * time /proc/sys/kernel/kptr_restrict was non zero.
1133 */
1134 if (event->mmap.pgoff != 0) {
1135 maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps,
1136 symbol_name,
1137 event->mmap.pgoff);
1138 }
1139
1140 if (machine__is_default_guest(machine)) {
1141 /*
1142 * preload dso of guest kernel and modules
1143 */
1144 dso__load(kernel, machine->vmlinux_maps[MAP__FUNCTION],
1145 NULL);
1146 }
1147 }
1148 return 0;
1149out_problem:
1150 return -1;
1151}
1152
5c5e854b 1153int machine__process_mmap2_event(struct machine *machine,
162f0bef
FW
1154 union perf_event *event,
1155 struct perf_sample *sample __maybe_unused)
5c5e854b
SE
1156{
1157 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1158 struct thread *thread;
1159 struct map *map;
1160 enum map_type type;
1161 int ret = 0;
1162
1163 if (dump_trace)
1164 perf_event__fprintf_mmap2(event, stdout);
1165
1166 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1167 cpumode == PERF_RECORD_MISC_KERNEL) {
1168 ret = machine__process_kernel_mmap_event(machine, event);
1169 if (ret < 0)
1170 goto out_problem;
1171 return 0;
1172 }
1173
1174 thread = machine__findnew_thread(machine, event->mmap2.pid,
11c9abf2 1175 event->mmap2.tid);
5c5e854b
SE
1176 if (thread == NULL)
1177 goto out_problem;
1178
1179 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1180 type = MAP__VARIABLE;
1181 else
1182 type = MAP__FUNCTION;
1183
2a03068c 1184 map = map__new(machine, event->mmap2.start,
5c5e854b
SE
1185 event->mmap2.len, event->mmap2.pgoff,
1186 event->mmap2.pid, event->mmap2.maj,
1187 event->mmap2.min, event->mmap2.ino,
1188 event->mmap2.ino_generation,
7ef80703
DZ
1189 event->mmap2.prot,
1190 event->mmap2.flags,
5835edda 1191 event->mmap2.filename, type, thread);
5c5e854b
SE
1192
1193 if (map == NULL)
1194 goto out_problem;
1195
1196 thread__insert_map(thread, map);
1197 return 0;
1198
1199out_problem:
1200 dump_printf("problem processing PERF_RECORD_MMAP2, skipping event.\n");
1201 return 0;
1202}
1203
162f0bef
FW
1204int machine__process_mmap_event(struct machine *machine, union perf_event *event,
1205 struct perf_sample *sample __maybe_unused)
b0a7d1a0
ACM
1206{
1207 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1208 struct thread *thread;
1209 struct map *map;
bad40917 1210 enum map_type type;
b0a7d1a0
ACM
1211 int ret = 0;
1212
1213 if (dump_trace)
1214 perf_event__fprintf_mmap(event, stdout);
1215
1216 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1217 cpumode == PERF_RECORD_MISC_KERNEL) {
1218 ret = machine__process_kernel_mmap_event(machine, event);
1219 if (ret < 0)
1220 goto out_problem;
1221 return 0;
1222 }
1223
314add6b 1224 thread = machine__findnew_thread(machine, event->mmap.pid,
11c9abf2 1225 event->mmap.tid);
b0a7d1a0
ACM
1226 if (thread == NULL)
1227 goto out_problem;
bad40917
SE
1228
1229 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1230 type = MAP__VARIABLE;
1231 else
1232 type = MAP__FUNCTION;
1233
2a03068c 1234 map = map__new(machine, event->mmap.start,
b0a7d1a0 1235 event->mmap.len, event->mmap.pgoff,
7ef80703 1236 event->mmap.pid, 0, 0, 0, 0, 0, 0,
5c5e854b 1237 event->mmap.filename,
5835edda 1238 type, thread);
bad40917 1239
b0a7d1a0
ACM
1240 if (map == NULL)
1241 goto out_problem;
1242
1243 thread__insert_map(thread, map);
1244 return 0;
1245
1246out_problem:
1247 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
1248 return 0;
1249}
1250
236a3bbd
DA
1251static void machine__remove_thread(struct machine *machine, struct thread *th)
1252{
f3b623b8
ACM
1253 if (machine->last_match == th)
1254 thread__zput(machine->last_match);
1255
236a3bbd
DA
1256 rb_erase(&th->rb_node, &machine->threads);
1257 /*
f3b623b8
ACM
1258 * Move it first to the dead_threads list, then drop the reference,
1259 * if this is the last reference, then the thread__delete destructor
1260 * will be called and we will remove it from the dead_threads list.
236a3bbd
DA
1261 */
1262 list_add_tail(&th->node, &machine->dead_threads);
f3b623b8 1263 thread__put(th);
236a3bbd
DA
1264}
1265
162f0bef
FW
1266int machine__process_fork_event(struct machine *machine, union perf_event *event,
1267 struct perf_sample *sample)
b0a7d1a0 1268{
d75e6097
JO
1269 struct thread *thread = machine__find_thread(machine,
1270 event->fork.pid,
1271 event->fork.tid);
314add6b
AH
1272 struct thread *parent = machine__findnew_thread(machine,
1273 event->fork.ppid,
1274 event->fork.ptid);
b0a7d1a0 1275
236a3bbd
DA
1276 /* if a thread currently exists for the thread id remove it */
1277 if (thread != NULL)
1278 machine__remove_thread(machine, thread);
1279
314add6b
AH
1280 thread = machine__findnew_thread(machine, event->fork.pid,
1281 event->fork.tid);
b0a7d1a0
ACM
1282 if (dump_trace)
1283 perf_event__fprintf_task(event, stdout);
1284
1285 if (thread == NULL || parent == NULL ||
162f0bef 1286 thread__fork(thread, parent, sample->time) < 0) {
b0a7d1a0
ACM
1287 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
1288 return -1;
1289 }
1290
1291 return 0;
1292}
1293
162f0bef
FW
1294int machine__process_exit_event(struct machine *machine, union perf_event *event,
1295 struct perf_sample *sample __maybe_unused)
b0a7d1a0 1296{
d75e6097
JO
1297 struct thread *thread = machine__find_thread(machine,
1298 event->fork.pid,
1299 event->fork.tid);
b0a7d1a0
ACM
1300
1301 if (dump_trace)
1302 perf_event__fprintf_task(event, stdout);
1303
1304 if (thread != NULL)
236a3bbd 1305 thread__exited(thread);
b0a7d1a0
ACM
1306
1307 return 0;
1308}
1309
162f0bef
FW
1310int machine__process_event(struct machine *machine, union perf_event *event,
1311 struct perf_sample *sample)
b0a7d1a0
ACM
1312{
1313 int ret;
1314
1315 switch (event->header.type) {
1316 case PERF_RECORD_COMM:
162f0bef 1317 ret = machine__process_comm_event(machine, event, sample); break;
b0a7d1a0 1318 case PERF_RECORD_MMAP:
162f0bef 1319 ret = machine__process_mmap_event(machine, event, sample); break;
5c5e854b 1320 case PERF_RECORD_MMAP2:
162f0bef 1321 ret = machine__process_mmap2_event(machine, event, sample); break;
b0a7d1a0 1322 case PERF_RECORD_FORK:
162f0bef 1323 ret = machine__process_fork_event(machine, event, sample); break;
b0a7d1a0 1324 case PERF_RECORD_EXIT:
162f0bef 1325 ret = machine__process_exit_event(machine, event, sample); break;
b0a7d1a0 1326 case PERF_RECORD_LOST:
162f0bef 1327 ret = machine__process_lost_event(machine, event, sample); break;
b0a7d1a0
ACM
1328 default:
1329 ret = -1;
1330 break;
1331 }
1332
1333 return ret;
1334}
3f067dca 1335
b21484f1 1336static bool symbol__match_regex(struct symbol *sym, regex_t *regex)
3f067dca 1337{
b21484f1 1338 if (sym->name && !regexec(regex, sym->name, 0, NULL, 0))
3f067dca 1339 return 1;
3f067dca
ACM
1340 return 0;
1341}
1342
bb871a9c 1343static void ip__resolve_ams(struct thread *thread,
3f067dca
ACM
1344 struct addr_map_symbol *ams,
1345 u64 ip)
1346{
1347 struct addr_location al;
3f067dca
ACM
1348
1349 memset(&al, 0, sizeof(al));
52a3cb8c
ACM
1350 /*
1351 * We cannot use the header.misc hint to determine whether a
1352 * branch stack address is user, kernel, guest, hypervisor.
1353 * Branches may straddle the kernel/user/hypervisor boundaries.
1354 * Thus, we have to try consecutively until we find a match
1355 * or else, the symbol is unknown
1356 */
bb871a9c 1357 thread__find_cpumode_addr_location(thread, MAP__FUNCTION, ip, &al);
3f067dca 1358
3f067dca
ACM
1359 ams->addr = ip;
1360 ams->al_addr = al.addr;
1361 ams->sym = al.sym;
1362 ams->map = al.map;
1363}
1364
bb871a9c 1365static void ip__resolve_data(struct thread *thread,
98a3b32c
SE
1366 u8 m, struct addr_map_symbol *ams, u64 addr)
1367{
1368 struct addr_location al;
1369
1370 memset(&al, 0, sizeof(al));
1371
bb871a9c 1372 thread__find_addr_location(thread, m, MAP__VARIABLE, addr, &al);
06b2afc0
DZ
1373 if (al.map == NULL) {
1374 /*
1375 * some shared data regions have execute bit set which puts
1376 * their mapping in the MAP__FUNCTION type array.
1377 * Check there as a fallback option before dropping the sample.
1378 */
bb871a9c 1379 thread__find_addr_location(thread, m, MAP__FUNCTION, addr, &al);
06b2afc0
DZ
1380 }
1381
98a3b32c
SE
1382 ams->addr = addr;
1383 ams->al_addr = al.addr;
1384 ams->sym = al.sym;
1385 ams->map = al.map;
1386}
1387
e80faac0
ACM
1388struct mem_info *sample__resolve_mem(struct perf_sample *sample,
1389 struct addr_location *al)
98a3b32c
SE
1390{
1391 struct mem_info *mi = zalloc(sizeof(*mi));
1392
1393 if (!mi)
1394 return NULL;
1395
bb871a9c
ACM
1396 ip__resolve_ams(al->thread, &mi->iaddr, sample->ip);
1397 ip__resolve_data(al->thread, al->cpumode, &mi->daddr, sample->addr);
98a3b32c
SE
1398 mi->data_src.val = sample->data_src;
1399
1400 return mi;
1401}
1402
37592b8a
AK
1403static int add_callchain_ip(struct thread *thread,
1404 struct symbol **parent,
1405 struct addr_location *root_al,
2e77784b 1406 bool branch_history,
37592b8a
AK
1407 u64 ip)
1408{
1409 struct addr_location al;
1410
1411 al.filtered = 0;
1412 al.sym = NULL;
2e77784b 1413 if (branch_history)
8b7bad58
AK
1414 thread__find_cpumode_addr_location(thread, MAP__FUNCTION,
1415 ip, &al);
2e77784b
KL
1416 else {
1417 u8 cpumode = PERF_RECORD_MISC_USER;
1418
1419 if (ip >= PERF_CONTEXT_MAX) {
1420 switch (ip) {
1421 case PERF_CONTEXT_HV:
1422 cpumode = PERF_RECORD_MISC_HYPERVISOR;
1423 break;
1424 case PERF_CONTEXT_KERNEL:
1425 cpumode = PERF_RECORD_MISC_KERNEL;
1426 break;
1427 case PERF_CONTEXT_USER:
1428 cpumode = PERF_RECORD_MISC_USER;
1429 break;
1430 default:
1431 pr_debug("invalid callchain context: "
1432 "%"PRId64"\n", (s64) ip);
1433 /*
1434 * It seems the callchain is corrupted.
1435 * Discard all.
1436 */
1437 callchain_cursor_reset(&callchain_cursor);
1438 return 1;
1439 }
1440 return 0;
1441 }
8b7bad58 1442 thread__find_addr_location(thread, cpumode, MAP__FUNCTION,
37592b8a 1443 ip, &al);
2e77784b
KL
1444 }
1445
37592b8a
AK
1446 if (al.sym != NULL) {
1447 if (sort__has_parent && !*parent &&
1448 symbol__match_regex(al.sym, &parent_regex))
1449 *parent = al.sym;
1450 else if (have_ignore_callees && root_al &&
1451 symbol__match_regex(al.sym, &ignore_callees_regex)) {
1452 /* Treat this symbol as the root,
1453 forgetting its callees. */
1454 *root_al = al;
1455 callchain_cursor_reset(&callchain_cursor);
1456 }
1457 }
1458
5550171b 1459 return callchain_cursor_append(&callchain_cursor, al.addr, al.map, al.sym);
37592b8a
AK
1460}
1461
644f2df2
ACM
1462struct branch_info *sample__resolve_bstack(struct perf_sample *sample,
1463 struct addr_location *al)
3f067dca 1464{
3f067dca 1465 unsigned int i;
644f2df2
ACM
1466 const struct branch_stack *bs = sample->branch_stack;
1467 struct branch_info *bi = calloc(bs->nr, sizeof(struct branch_info));
3f067dca 1468
3f067dca
ACM
1469 if (!bi)
1470 return NULL;
1471
1472 for (i = 0; i < bs->nr; i++) {
bb871a9c
ACM
1473 ip__resolve_ams(al->thread, &bi[i].to, bs->entries[i].to);
1474 ip__resolve_ams(al->thread, &bi[i].from, bs->entries[i].from);
3f067dca
ACM
1475 bi[i].flags = bs->entries[i].flags;
1476 }
1477 return bi;
1478}
1479
8b7bad58
AK
1480#define CHASHSZ 127
1481#define CHASHBITS 7
1482#define NO_ENTRY 0xff
1483
1484#define PERF_MAX_BRANCH_DEPTH 127
1485
1486/* Remove loops. */
1487static int remove_loops(struct branch_entry *l, int nr)
1488{
1489 int i, j, off;
1490 unsigned char chash[CHASHSZ];
1491
1492 memset(chash, NO_ENTRY, sizeof(chash));
1493
1494 BUG_ON(PERF_MAX_BRANCH_DEPTH > 255);
1495
1496 for (i = 0; i < nr; i++) {
1497 int h = hash_64(l[i].from, CHASHBITS) % CHASHSZ;
1498
1499 /* no collision handling for now */
1500 if (chash[h] == NO_ENTRY) {
1501 chash[h] = i;
1502 } else if (l[chash[h]].from == l[i].from) {
1503 bool is_loop = true;
1504 /* check if it is a real loop */
1505 off = 0;
1506 for (j = chash[h]; j < i && i + off < nr; j++, off++)
1507 if (l[j].from != l[i + off].from) {
1508 is_loop = false;
1509 break;
1510 }
1511 if (is_loop) {
1512 memmove(l + i, l + i + off,
1513 (nr - (i + off)) * sizeof(*l));
1514 nr -= off;
1515 }
1516 }
1517 }
1518 return nr;
1519}
1520
384b6055
KL
1521/*
1522 * Recolve LBR callstack chain sample
1523 * Return:
1524 * 1 on success get LBR callchain information
1525 * 0 no available LBR callchain information, should try fp
1526 * negative error code on other errors.
1527 */
1528static int resolve_lbr_callchain_sample(struct thread *thread,
1529 struct perf_sample *sample,
1530 struct symbol **parent,
1531 struct addr_location *root_al,
1532 int max_stack)
3f067dca 1533{
384b6055
KL
1534 struct ip_callchain *chain = sample->callchain;
1535 int chain_nr = min(max_stack, (int)chain->nr);
1536 int i, j, err;
1537 u64 ip;
1538
1539 for (i = 0; i < chain_nr; i++) {
1540 if (chain->ips[i] == PERF_CONTEXT_USER)
1541 break;
1542 }
1543
1544 /* LBR only affects the user callchain */
1545 if (i != chain_nr) {
1546 struct branch_stack *lbr_stack = sample->branch_stack;
1547 int lbr_nr = lbr_stack->nr;
1548 /*
1549 * LBR callstack can only get user call chain.
1550 * The mix_chain_nr is kernel call chain
1551 * number plus LBR user call chain number.
1552 * i is kernel call chain number,
1553 * 1 is PERF_CONTEXT_USER,
1554 * lbr_nr + 1 is the user call chain number.
1555 * For details, please refer to the comments
1556 * in callchain__printf
1557 */
1558 int mix_chain_nr = i + 1 + lbr_nr + 1;
1559
1560 if (mix_chain_nr > PERF_MAX_STACK_DEPTH + PERF_MAX_BRANCH_DEPTH) {
1561 pr_warning("corrupted callchain. skipping...\n");
1562 return 0;
1563 }
1564
1565 for (j = 0; j < mix_chain_nr; j++) {
1566 if (callchain_param.order == ORDER_CALLEE) {
1567 if (j < i + 1)
1568 ip = chain->ips[j];
1569 else if (j > i + 1)
1570 ip = lbr_stack->entries[j - i - 2].from;
1571 else
1572 ip = lbr_stack->entries[0].to;
1573 } else {
1574 if (j < lbr_nr)
1575 ip = lbr_stack->entries[lbr_nr - j - 1].from;
1576 else if (j > lbr_nr)
1577 ip = chain->ips[i + 1 - (j - lbr_nr)];
1578 else
1579 ip = lbr_stack->entries[0].to;
1580 }
1581
1582 err = add_callchain_ip(thread, parent, root_al, false, ip);
1583 if (err)
1584 return (err < 0) ? err : 0;
1585 }
1586 return 1;
1587 }
1588
1589 return 0;
1590}
1591
1592static int thread__resolve_callchain_sample(struct thread *thread,
1593 struct perf_evsel *evsel,
1594 struct perf_sample *sample,
1595 struct symbol **parent,
1596 struct addr_location *root_al,
1597 int max_stack)
1598{
1599 struct branch_stack *branch = sample->branch_stack;
1600 struct ip_callchain *chain = sample->callchain;
91e95617 1601 int chain_nr = min(max_stack, (int)chain->nr);
2e77784b 1602 int i, j, err;
8b7bad58
AK
1603 int skip_idx = -1;
1604 int first_call = 0;
1605
384b6055
KL
1606 callchain_cursor_reset(&callchain_cursor);
1607
1608 if (has_branch_callstack(evsel)) {
1609 err = resolve_lbr_callchain_sample(thread, sample, parent,
1610 root_al, max_stack);
1611 if (err)
1612 return (err < 0) ? err : 0;
1613 }
1614
8b7bad58
AK
1615 /*
1616 * Based on DWARF debug information, some architectures skip
1617 * a callchain entry saved by the kernel.
1618 */
1619 if (chain->nr < PERF_MAX_STACK_DEPTH)
1620 skip_idx = arch_skip_callchain_idx(thread, chain);
3f067dca 1621
8b7bad58
AK
1622 /*
1623 * Add branches to call stack for easier browsing. This gives
1624 * more context for a sample than just the callers.
1625 *
1626 * This uses individual histograms of paths compared to the
1627 * aggregated histograms the normal LBR mode uses.
1628 *
1629 * Limitations for now:
1630 * - No extra filters
1631 * - No annotations (should annotate somehow)
1632 */
1633
1634 if (branch && callchain_param.branch_callstack) {
1635 int nr = min(max_stack, (int)branch->nr);
1636 struct branch_entry be[nr];
1637
1638 if (branch->nr > PERF_MAX_BRANCH_DEPTH) {
1639 pr_warning("corrupted branch chain. skipping...\n");
1640 goto check_calls;
1641 }
1642
1643 for (i = 0; i < nr; i++) {
1644 if (callchain_param.order == ORDER_CALLEE) {
1645 be[i] = branch->entries[i];
1646 /*
1647 * Check for overlap into the callchain.
1648 * The return address is one off compared to
1649 * the branch entry. To adjust for this
1650 * assume the calling instruction is not longer
1651 * than 8 bytes.
1652 */
1653 if (i == skip_idx ||
1654 chain->ips[first_call] >= PERF_CONTEXT_MAX)
1655 first_call++;
1656 else if (be[i].from < chain->ips[first_call] &&
1657 be[i].from >= chain->ips[first_call] - 8)
1658 first_call++;
1659 } else
1660 be[i] = branch->entries[branch->nr - i - 1];
1661 }
1662
1663 nr = remove_loops(be, nr);
1664
1665 for (i = 0; i < nr; i++) {
1666 err = add_callchain_ip(thread, parent, root_al,
2e77784b 1667 true, be[i].to);
8b7bad58
AK
1668 if (!err)
1669 err = add_callchain_ip(thread, parent, root_al,
2e77784b 1670 true, be[i].from);
8b7bad58
AK
1671 if (err == -EINVAL)
1672 break;
1673 if (err)
1674 return err;
1675 }
1676 chain_nr -= nr;
1677 }
1678
1679check_calls:
3f067dca
ACM
1680 if (chain->nr > PERF_MAX_STACK_DEPTH) {
1681 pr_warning("corrupted callchain. skipping...\n");
1682 return 0;
1683 }
1684
8b7bad58 1685 for (i = first_call; i < chain_nr; i++) {
3f067dca 1686 u64 ip;
3f067dca
ACM
1687
1688 if (callchain_param.order == ORDER_CALLEE)
a60335ba 1689 j = i;
3f067dca 1690 else
a60335ba
SB
1691 j = chain->nr - i - 1;
1692
1693#ifdef HAVE_SKIP_CALLCHAIN_IDX
1694 if (j == skip_idx)
1695 continue;
1696#endif
1697 ip = chain->ips[j];
3f067dca 1698
2e77784b 1699 err = add_callchain_ip(thread, parent, root_al, false, ip);
3f067dca 1700
3f067dca 1701 if (err)
2e77784b 1702 return (err < 0) ? err : 0;
3f067dca
ACM
1703 }
1704
1705 return 0;
1706}
1707
1708static int unwind_entry(struct unwind_entry *entry, void *arg)
1709{
1710 struct callchain_cursor *cursor = arg;
1711 return callchain_cursor_append(cursor, entry->ip,
1712 entry->map, entry->sym);
1713}
1714
cc8b7c2b
ACM
1715int thread__resolve_callchain(struct thread *thread,
1716 struct perf_evsel *evsel,
1717 struct perf_sample *sample,
1718 struct symbol **parent,
1719 struct addr_location *root_al,
1720 int max_stack)
3f067dca 1721{
384b6055
KL
1722 int ret = thread__resolve_callchain_sample(thread, evsel,
1723 sample, parent,
1724 root_al, max_stack);
3f067dca
ACM
1725 if (ret)
1726 return ret;
1727
1728 /* Can we do dwarf post unwind? */
1729 if (!((evsel->attr.sample_type & PERF_SAMPLE_REGS_USER) &&
1730 (evsel->attr.sample_type & PERF_SAMPLE_STACK_USER)))
1731 return 0;
1732
1733 /* Bail out if nothing was captured. */
1734 if ((!sample->user_regs.regs) ||
1735 (!sample->user_stack.size))
1736 return 0;
1737
dd8c17a5 1738 return unwind__get_entries(unwind_entry, &callchain_cursor,
352ea45a 1739 thread, sample, max_stack);
3f067dca
ACM
1740
1741}
35feee19
DA
1742
1743int machine__for_each_thread(struct machine *machine,
1744 int (*fn)(struct thread *thread, void *p),
1745 void *priv)
1746{
1747 struct rb_node *nd;
1748 struct thread *thread;
1749 int rc = 0;
1750
1751 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
1752 thread = rb_entry(nd, struct thread, rb_node);
1753 rc = fn(thread, priv);
1754 if (rc != 0)
1755 return rc;
1756 }
1757
1758 list_for_each_entry(thread, &machine->dead_threads, node) {
1759 rc = fn(thread, priv);
1760 if (rc != 0)
1761 return rc;
1762 }
1763 return rc;
1764}
58d925dc 1765
a33fbd56 1766int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool,
602ad878 1767 struct target *target, struct thread_map *threads,
a33fbd56 1768 perf_event__handler_t process, bool data_mmap)
58d925dc 1769{
602ad878 1770 if (target__has_task(target))
58d925dc 1771 return perf_event__synthesize_thread_map(tool, threads, process, machine, data_mmap);
602ad878 1772 else if (target__has_cpu(target))
58d925dc
ACM
1773 return perf_event__synthesize_threads(tool, process, machine, data_mmap);
1774 /* command specified */
1775 return 0;
1776}
b9d266ba
AH
1777
1778pid_t machine__get_current_tid(struct machine *machine, int cpu)
1779{
1780 if (cpu < 0 || cpu >= MAX_NR_CPUS || !machine->current_tid)
1781 return -1;
1782
1783 return machine->current_tid[cpu];
1784}
1785
1786int machine__set_current_tid(struct machine *machine, int cpu, pid_t pid,
1787 pid_t tid)
1788{
1789 struct thread *thread;
1790
1791 if (cpu < 0)
1792 return -EINVAL;
1793
1794 if (!machine->current_tid) {
1795 int i;
1796
1797 machine->current_tid = calloc(MAX_NR_CPUS, sizeof(pid_t));
1798 if (!machine->current_tid)
1799 return -ENOMEM;
1800 for (i = 0; i < MAX_NR_CPUS; i++)
1801 machine->current_tid[i] = -1;
1802 }
1803
1804 if (cpu >= MAX_NR_CPUS) {
1805 pr_err("Requested CPU %d too large. ", cpu);
1806 pr_err("Consider raising MAX_NR_CPUS\n");
1807 return -EINVAL;
1808 }
1809
1810 machine->current_tid[cpu] = tid;
1811
1812 thread = machine__findnew_thread(machine, pid, tid);
1813 if (!thread)
1814 return -ENOMEM;
1815
1816 thread->cpu = cpu;
1817
1818 return 0;
1819}
fbe2af45
AH
1820
1821int machine__get_kernel_start(struct machine *machine)
1822{
1823 struct map *map = machine__kernel_map(machine, MAP__FUNCTION);
1824 int err = 0;
1825
1826 /*
1827 * The only addresses above 2^63 are kernel addresses of a 64-bit
1828 * kernel. Note that addresses are unsigned so that on a 32-bit system
1829 * all addresses including kernel addresses are less than 2^32. In
1830 * that case (32-bit system), if the kernel mapping is unknown, all
1831 * addresses will be assumed to be in user space - see
1832 * machine__kernel_ip().
1833 */
1834 machine->kernel_start = 1ULL << 63;
1835 if (map) {
1836 err = map__load(map, machine->symbol_filter);
1837 if (map->start)
1838 machine->kernel_start = map->start;
1839 }
1840 return err;
1841}