]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - tools/perf/util/machine.c
Merge tag 'perf-core-for-mingo-2' of git://git.kernel.org/pub/scm/linux/kernel/git...
[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 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
ca33380a
JO
463static struct dso*
464machine__module_dso(struct machine *machine, struct kmod_path *m,
465 const char *filename)
da17ea33
JO
466{
467 struct dso *dso;
da17ea33 468
ca33380a 469 dso = dsos__find(&machine->kernel_dsos, m->name, true);
da17ea33 470 if (!dso) {
ca33380a 471 dso = dsos__addnew(&machine->kernel_dsos, m->name);
da17ea33
JO
472 if (dso == NULL)
473 return NULL;
474
475 if (machine__is_host(machine))
476 dso->symtab_type = DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE;
477 else
478 dso->symtab_type = DSO_BINARY_TYPE__GUEST_KMODULE;
479
480 /* _KMODULE_COMP should be next to _KMODULE */
ca33380a 481 if (m->kmod && m->comp)
da17ea33 482 dso->symtab_type++;
ca33380a
JO
483
484 dso__set_short_name(dso, strdup(m->name), true);
485 dso__set_long_name(dso, strdup(filename), true);
da17ea33
JO
486 }
487
488 return dso;
489}
490
3f067dca
ACM
491struct map *machine__new_module(struct machine *machine, u64 start,
492 const char *filename)
493{
ca33380a
JO
494 struct map *map = NULL;
495 struct dso *dso;
496 struct kmod_path m;
3f067dca 497
ca33380a 498 if (kmod_path__parse_name(&m, filename))
3f067dca
ACM
499 return NULL;
500
ca33380a
JO
501 dso = machine__module_dso(machine, &m, filename);
502 if (dso == NULL)
503 goto out;
504
3f067dca
ACM
505 map = map__new2(start, dso, MAP__FUNCTION);
506 if (map == NULL)
ca33380a 507 goto out;
3f067dca 508
3f067dca 509 map_groups__insert(&machine->kmaps, map);
ca33380a
JO
510
511out:
512 free(m.name);
3f067dca
ACM
513 return map;
514}
515
876650e6 516size_t machines__fprintf_dsos(struct machines *machines, FILE *fp)
3f067dca
ACM
517{
518 struct rb_node *nd;
8fa7d87f
WL
519 size_t ret = __dsos__fprintf(&machines->host.kernel_dsos.head, fp) +
520 __dsos__fprintf(&machines->host.user_dsos.head, fp);
3f067dca 521
876650e6 522 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
3f067dca 523 struct machine *pos = rb_entry(nd, struct machine, rb_node);
8fa7d87f
WL
524 ret += __dsos__fprintf(&pos->kernel_dsos.head, fp);
525 ret += __dsos__fprintf(&pos->user_dsos.head, fp);
3f067dca
ACM
526 }
527
528 return ret;
529}
530
8fa7d87f 531size_t machine__fprintf_dsos_buildid(struct machine *m, FILE *fp,
3f067dca
ACM
532 bool (skip)(struct dso *dso, int parm), int parm)
533{
8fa7d87f
WL
534 return __dsos__fprintf_buildid(&m->kernel_dsos.head, fp, skip, parm) +
535 __dsos__fprintf_buildid(&m->user_dsos.head, fp, skip, parm);
3f067dca
ACM
536}
537
876650e6 538size_t machines__fprintf_dsos_buildid(struct machines *machines, FILE *fp,
3f067dca
ACM
539 bool (skip)(struct dso *dso, int parm), int parm)
540{
541 struct rb_node *nd;
876650e6 542 size_t ret = machine__fprintf_dsos_buildid(&machines->host, fp, skip, parm);
3f067dca 543
876650e6 544 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
3f067dca
ACM
545 struct machine *pos = rb_entry(nd, struct machine, rb_node);
546 ret += machine__fprintf_dsos_buildid(pos, fp, skip, parm);
547 }
548 return ret;
549}
550
551size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp)
552{
553 int i;
554 size_t printed = 0;
555 struct dso *kdso = machine->vmlinux_maps[MAP__FUNCTION]->dso;
556
557 if (kdso->has_build_id) {
558 char filename[PATH_MAX];
559 if (dso__build_id_filename(kdso, filename, sizeof(filename)))
560 printed += fprintf(fp, "[0] %s\n", filename);
561 }
562
563 for (i = 0; i < vmlinux_path__nr_entries; ++i)
564 printed += fprintf(fp, "[%d] %s\n",
565 i + kdso->has_build_id, vmlinux_path[i]);
566
567 return printed;
568}
569
570size_t machine__fprintf(struct machine *machine, FILE *fp)
571{
572 size_t ret = 0;
573 struct rb_node *nd;
574
575 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
576 struct thread *pos = rb_entry(nd, struct thread, rb_node);
577
578 ret += thread__fprintf(pos, fp);
579 }
580
581 return ret;
582}
583
584static struct dso *machine__get_kernel(struct machine *machine)
585{
586 const char *vmlinux_name = NULL;
587 struct dso *kernel;
588
589 if (machine__is_host(machine)) {
590 vmlinux_name = symbol_conf.vmlinux_name;
591 if (!vmlinux_name)
592 vmlinux_name = "[kernel.kallsyms]";
593
594 kernel = dso__kernel_findnew(machine, vmlinux_name,
595 "[kernel]",
596 DSO_TYPE_KERNEL);
597 } else {
598 char bf[PATH_MAX];
599
600 if (machine__is_default_guest(machine))
601 vmlinux_name = symbol_conf.default_guest_vmlinux_name;
602 if (!vmlinux_name)
603 vmlinux_name = machine__mmap_name(machine, bf,
604 sizeof(bf));
605
606 kernel = dso__kernel_findnew(machine, vmlinux_name,
607 "[guest.kernel]",
608 DSO_TYPE_GUEST_KERNEL);
609 }
610
611 if (kernel != NULL && (!kernel->has_build_id))
612 dso__read_running_kernel_build_id(kernel, machine);
613
614 return kernel;
615}
616
617struct process_args {
618 u64 start;
619};
620
15a0a870
AH
621static void machine__get_kallsyms_filename(struct machine *machine, char *buf,
622 size_t bufsz)
623{
624 if (machine__is_default_guest(machine))
625 scnprintf(buf, bufsz, "%s", symbol_conf.default_guest_kallsyms);
626 else
627 scnprintf(buf, bufsz, "%s/proc/kallsyms", machine->root_dir);
628}
629
a93f0e55
SQ
630const char *ref_reloc_sym_names[] = {"_text", "_stext", NULL};
631
632/* Figure out the start address of kernel map from /proc/kallsyms.
633 * Returns the name of the start symbol in *symbol_name. Pass in NULL as
634 * symbol_name if it's not that important.
635 */
4b99375b
AH
636static u64 machine__get_running_kernel_start(struct machine *machine,
637 const char **symbol_name)
3f067dca 638{
15a0a870 639 char filename[PATH_MAX];
a93f0e55
SQ
640 int i;
641 const char *name;
642 u64 addr = 0;
3f067dca 643
15a0a870 644 machine__get_kallsyms_filename(machine, filename, PATH_MAX);
3f067dca
ACM
645
646 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
647 return 0;
648
a93f0e55
SQ
649 for (i = 0; (name = ref_reloc_sym_names[i]) != NULL; i++) {
650 addr = kallsyms__get_function_start(filename, name);
651 if (addr)
652 break;
653 }
654
655 if (symbol_name)
656 *symbol_name = name;
3f067dca 657
a93f0e55 658 return addr;
3f067dca
ACM
659}
660
661int __machine__create_kernel_maps(struct machine *machine, struct dso *kernel)
662{
663 enum map_type type;
4b99375b 664 u64 start = machine__get_running_kernel_start(machine, NULL);
3f067dca
ACM
665
666 for (type = 0; type < MAP__NR_TYPES; ++type) {
667 struct kmap *kmap;
668
669 machine->vmlinux_maps[type] = map__new2(start, kernel, type);
670 if (machine->vmlinux_maps[type] == NULL)
671 return -1;
672
673 machine->vmlinux_maps[type]->map_ip =
674 machine->vmlinux_maps[type]->unmap_ip =
675 identity__map_ip;
676 kmap = map__kmap(machine->vmlinux_maps[type]);
677 kmap->kmaps = &machine->kmaps;
678 map_groups__insert(&machine->kmaps,
679 machine->vmlinux_maps[type]);
680 }
681
682 return 0;
683}
684
685void machine__destroy_kernel_maps(struct machine *machine)
686{
687 enum map_type type;
688
689 for (type = 0; type < MAP__NR_TYPES; ++type) {
690 struct kmap *kmap;
691
692 if (machine->vmlinux_maps[type] == NULL)
693 continue;
694
695 kmap = map__kmap(machine->vmlinux_maps[type]);
696 map_groups__remove(&machine->kmaps,
697 machine->vmlinux_maps[type]);
698 if (kmap->ref_reloc_sym) {
699 /*
700 * ref_reloc_sym is shared among all maps, so free just
701 * on one of them.
702 */
703 if (type == MAP__FUNCTION) {
04662523
ACM
704 zfree((char **)&kmap->ref_reloc_sym->name);
705 zfree(&kmap->ref_reloc_sym);
706 } else
707 kmap->ref_reloc_sym = NULL;
3f067dca
ACM
708 }
709
710 map__delete(machine->vmlinux_maps[type]);
711 machine->vmlinux_maps[type] = NULL;
712 }
713}
714
876650e6 715int machines__create_guest_kernel_maps(struct machines *machines)
3f067dca
ACM
716{
717 int ret = 0;
718 struct dirent **namelist = NULL;
719 int i, items = 0;
720 char path[PATH_MAX];
721 pid_t pid;
722 char *endp;
723
724 if (symbol_conf.default_guest_vmlinux_name ||
725 symbol_conf.default_guest_modules ||
726 symbol_conf.default_guest_kallsyms) {
727 machines__create_kernel_maps(machines, DEFAULT_GUEST_KERNEL_ID);
728 }
729
730 if (symbol_conf.guestmount) {
731 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
732 if (items <= 0)
733 return -ENOENT;
734 for (i = 0; i < items; i++) {
735 if (!isdigit(namelist[i]->d_name[0])) {
736 /* Filter out . and .. */
737 continue;
738 }
739 pid = (pid_t)strtol(namelist[i]->d_name, &endp, 10);
740 if ((*endp != '\0') ||
741 (endp == namelist[i]->d_name) ||
742 (errno == ERANGE)) {
743 pr_debug("invalid directory (%s). Skipping.\n",
744 namelist[i]->d_name);
745 continue;
746 }
747 sprintf(path, "%s/%s/proc/kallsyms",
748 symbol_conf.guestmount,
749 namelist[i]->d_name);
750 ret = access(path, R_OK);
751 if (ret) {
752 pr_debug("Can't access file %s\n", path);
753 goto failure;
754 }
755 machines__create_kernel_maps(machines, pid);
756 }
757failure:
758 free(namelist);
759 }
760
761 return ret;
762}
763
876650e6 764void machines__destroy_kernel_maps(struct machines *machines)
3f067dca 765{
876650e6
ACM
766 struct rb_node *next = rb_first(&machines->guests);
767
768 machine__destroy_kernel_maps(&machines->host);
3f067dca
ACM
769
770 while (next) {
771 struct machine *pos = rb_entry(next, struct machine, rb_node);
772
773 next = rb_next(&pos->rb_node);
876650e6 774 rb_erase(&pos->rb_node, &machines->guests);
3f067dca
ACM
775 machine__delete(pos);
776 }
777}
778
876650e6 779int machines__create_kernel_maps(struct machines *machines, pid_t pid)
3f067dca
ACM
780{
781 struct machine *machine = machines__findnew(machines, pid);
782
783 if (machine == NULL)
784 return -1;
785
786 return machine__create_kernel_maps(machine);
787}
788
789int machine__load_kallsyms(struct machine *machine, const char *filename,
790 enum map_type type, symbol_filter_t filter)
791{
792 struct map *map = machine->vmlinux_maps[type];
793 int ret = dso__load_kallsyms(map->dso, filename, map, filter);
794
795 if (ret > 0) {
796 dso__set_loaded(map->dso, type);
797 /*
798 * Since /proc/kallsyms will have multiple sessions for the
799 * kernel, with modules between them, fixup the end of all
800 * sections.
801 */
802 __map_groups__fixup_end(&machine->kmaps, type);
803 }
804
805 return ret;
806}
807
808int machine__load_vmlinux_path(struct machine *machine, enum map_type type,
809 symbol_filter_t filter)
810{
811 struct map *map = machine->vmlinux_maps[type];
812 int ret = dso__load_vmlinux_path(map->dso, map, filter);
813
39b12f78 814 if (ret > 0)
3f067dca 815 dso__set_loaded(map->dso, type);
3f067dca
ACM
816
817 return ret;
818}
819
820static void map_groups__fixup_end(struct map_groups *mg)
821{
822 int i;
823 for (i = 0; i < MAP__NR_TYPES; ++i)
824 __map_groups__fixup_end(mg, i);
825}
826
827static char *get_kernel_version(const char *root_dir)
828{
829 char version[PATH_MAX];
830 FILE *file;
831 char *name, *tmp;
832 const char *prefix = "Linux version ";
833
834 sprintf(version, "%s/proc/version", root_dir);
835 file = fopen(version, "r");
836 if (!file)
837 return NULL;
838
839 version[0] = '\0';
840 tmp = fgets(version, sizeof(version), file);
841 fclose(file);
842
843 name = strstr(version, prefix);
844 if (!name)
845 return NULL;
846 name += strlen(prefix);
847 tmp = strchr(name, ' ');
848 if (tmp)
849 *tmp = '\0';
850
851 return strdup(name);
852}
853
854static int map_groups__set_modules_path_dir(struct map_groups *mg,
61d4290c 855 const char *dir_name, int depth)
3f067dca
ACM
856{
857 struct dirent *dent;
858 DIR *dir = opendir(dir_name);
859 int ret = 0;
860
861 if (!dir) {
862 pr_debug("%s: cannot open %s dir\n", __func__, dir_name);
863 return -1;
864 }
865
866 while ((dent = readdir(dir)) != NULL) {
867 char path[PATH_MAX];
868 struct stat st;
869
870 /*sshfs might return bad dent->d_type, so we have to stat*/
871 snprintf(path, sizeof(path), "%s/%s", dir_name, dent->d_name);
872 if (stat(path, &st))
873 continue;
874
875 if (S_ISDIR(st.st_mode)) {
876 if (!strcmp(dent->d_name, ".") ||
877 !strcmp(dent->d_name, ".."))
878 continue;
879
61d4290c
RY
880 /* Do not follow top-level source and build symlinks */
881 if (depth == 0) {
882 if (!strcmp(dent->d_name, "source") ||
883 !strcmp(dent->d_name, "build"))
884 continue;
885 }
886
887 ret = map_groups__set_modules_path_dir(mg, path,
888 depth + 1);
3f067dca
ACM
889 if (ret < 0)
890 goto out;
891 } else {
892 char *dot = strrchr(dent->d_name, '.'),
893 dso_name[PATH_MAX];
894 struct map *map;
895 char *long_name;
896
c00c48fc 897 if (dot == NULL)
3f067dca 898 continue;
c00c48fc
NK
899
900 /* On some system, modules are compressed like .ko.gz */
901 if (is_supported_compression(dot + 1) &&
902 is_kmodule_extension(dot - 2))
903 dot -= 3;
904
3f067dca
ACM
905 snprintf(dso_name, sizeof(dso_name), "[%.*s]",
906 (int)(dot - dent->d_name), dent->d_name);
907
908 strxfrchar(dso_name, '-', '_');
909 map = map_groups__find_by_name(mg, MAP__FUNCTION,
910 dso_name);
911 if (map == NULL)
912 continue;
913
914 long_name = strdup(path);
915 if (long_name == NULL) {
916 ret = -1;
917 goto out;
918 }
7e155d4d 919 dso__set_long_name(map->dso, long_name, true);
3f067dca
ACM
920 dso__kernel_module_get_build_id(map->dso, "");
921 }
922 }
923
924out:
925 closedir(dir);
926 return ret;
927}
928
929static int machine__set_modules_path(struct machine *machine)
930{
931 char *version;
932 char modules_path[PATH_MAX];
933
934 version = get_kernel_version(machine->root_dir);
935 if (!version)
936 return -1;
937
61d4290c 938 snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s",
3f067dca
ACM
939 machine->root_dir, version);
940 free(version);
941
61d4290c 942 return map_groups__set_modules_path_dir(&machine->kmaps, modules_path, 0);
3f067dca
ACM
943}
944
316d70d6 945static int machine__create_module(void *arg, const char *name, u64 start)
3f067dca 946{
316d70d6 947 struct machine *machine = arg;
3f067dca 948 struct map *map;
316d70d6
AH
949
950 map = machine__new_module(machine, start, name);
951 if (map == NULL)
952 return -1;
953
954 dso__kernel_module_get_build_id(map->dso, machine->root_dir);
955
956 return 0;
957}
958
959static int machine__create_modules(struct machine *machine)
960{
3f067dca
ACM
961 const char *modules;
962 char path[PATH_MAX];
963
f4be904d 964 if (machine__is_default_guest(machine)) {
3f067dca 965 modules = symbol_conf.default_guest_modules;
f4be904d
AH
966 } else {
967 snprintf(path, PATH_MAX, "%s/proc/modules", machine->root_dir);
3f067dca
ACM
968 modules = path;
969 }
970
aa7fe3b0 971 if (symbol__restricted_filename(modules, "/proc/modules"))
3f067dca
ACM
972 return -1;
973
316d70d6 974 if (modules__parse(modules, machine, machine__create_module))
3f067dca
ACM
975 return -1;
976
316d70d6
AH
977 if (!machine__set_modules_path(machine))
978 return 0;
3f067dca 979
316d70d6 980 pr_debug("Problems setting modules path maps, continuing anyway...\n");
3f067dca 981
8f76fcd9 982 return 0;
3f067dca
ACM
983}
984
985int machine__create_kernel_maps(struct machine *machine)
986{
987 struct dso *kernel = machine__get_kernel(machine);
5512cf24 988 const char *name;
4b99375b 989 u64 addr = machine__get_running_kernel_start(machine, &name);
5512cf24
AH
990 if (!addr)
991 return -1;
3f067dca
ACM
992
993 if (kernel == NULL ||
994 __machine__create_kernel_maps(machine, kernel) < 0)
995 return -1;
996
997 if (symbol_conf.use_modules && machine__create_modules(machine) < 0) {
998 if (machine__is_host(machine))
999 pr_debug("Problems creating module maps, "
1000 "continuing anyway...\n");
1001 else
1002 pr_debug("Problems creating module maps for guest %d, "
1003 "continuing anyway...\n", machine->pid);
1004 }
1005
1006 /*
1007 * Now that we have all the maps created, just set the ->end of them:
1008 */
1009 map_groups__fixup_end(&machine->kmaps);
5512cf24
AH
1010
1011 if (maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps, name,
1012 addr)) {
1013 machine__destroy_kernel_maps(machine);
1014 return -1;
1015 }
1016
3f067dca
ACM
1017 return 0;
1018}
1019
b0a7d1a0
ACM
1020static void machine__set_kernel_mmap_len(struct machine *machine,
1021 union perf_event *event)
1022{
4552cf0f
NK
1023 int i;
1024
1025 for (i = 0; i < MAP__NR_TYPES; i++) {
1026 machine->vmlinux_maps[i]->start = event->mmap.start;
1027 machine->vmlinux_maps[i]->end = (event->mmap.start +
1028 event->mmap.len);
1029 /*
1030 * Be a bit paranoid here, some perf.data file came with
1031 * a zero sized synthesized MMAP event for the kernel.
1032 */
1033 if (machine->vmlinux_maps[i]->end == 0)
1034 machine->vmlinux_maps[i]->end = ~0ULL;
1035 }
b0a7d1a0
ACM
1036}
1037
8e0cf965
AH
1038static bool machine__uses_kcore(struct machine *machine)
1039{
1040 struct dso *dso;
1041
8fa7d87f 1042 list_for_each_entry(dso, &machine->kernel_dsos.head, node) {
8e0cf965
AH
1043 if (dso__is_kcore(dso))
1044 return true;
1045 }
1046
1047 return false;
1048}
1049
b0a7d1a0
ACM
1050static int machine__process_kernel_mmap_event(struct machine *machine,
1051 union perf_event *event)
1052{
1053 struct map *map;
1054 char kmmap_prefix[PATH_MAX];
1055 enum dso_kernel_type kernel_type;
1056 bool is_kernel_mmap;
1057
8e0cf965
AH
1058 /* If we have maps from kcore then we do not need or want any others */
1059 if (machine__uses_kcore(machine))
1060 return 0;
1061
b0a7d1a0
ACM
1062 machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
1063 if (machine__is_host(machine))
1064 kernel_type = DSO_TYPE_KERNEL;
1065 else
1066 kernel_type = DSO_TYPE_GUEST_KERNEL;
1067
1068 is_kernel_mmap = memcmp(event->mmap.filename,
1069 kmmap_prefix,
1070 strlen(kmmap_prefix) - 1) == 0;
1071 if (event->mmap.filename[0] == '/' ||
1072 (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
b0a7d1a0
ACM
1073 map = machine__new_module(machine, event->mmap.start,
1074 event->mmap.filename);
1075 if (map == NULL)
1076 goto out_problem;
1077
b0a7d1a0
ACM
1078 map->end = map->start + event->mmap.len;
1079 } else if (is_kernel_mmap) {
1080 const char *symbol_name = (event->mmap.filename +
1081 strlen(kmmap_prefix));
1082 /*
1083 * Should be there already, from the build-id table in
1084 * the header.
1085 */
b837a8bd
NK
1086 struct dso *kernel = NULL;
1087 struct dso *dso;
1088
1089 list_for_each_entry(dso, &machine->kernel_dsos.head, node) {
1090 if (is_kernel_module(dso->long_name, NULL))
1091 continue;
1092
1093 kernel = dso;
1094 break;
1095 }
1096
1097 if (kernel == NULL)
1098 kernel = __dsos__findnew(&machine->kernel_dsos,
1099 kmmap_prefix);
b0a7d1a0
ACM
1100 if (kernel == NULL)
1101 goto out_problem;
1102
1103 kernel->kernel = kernel_type;
1104 if (__machine__create_kernel_maps(machine, kernel) < 0)
1105 goto out_problem;
1106
330dfa22
NK
1107 if (strstr(kernel->long_name, "vmlinux"))
1108 dso__set_short_name(kernel, "[kernel.vmlinux]", false);
96d78059 1109
b0a7d1a0
ACM
1110 machine__set_kernel_mmap_len(machine, event);
1111
1112 /*
1113 * Avoid using a zero address (kptr_restrict) for the ref reloc
1114 * symbol. Effectively having zero here means that at record
1115 * time /proc/sys/kernel/kptr_restrict was non zero.
1116 */
1117 if (event->mmap.pgoff != 0) {
1118 maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps,
1119 symbol_name,
1120 event->mmap.pgoff);
1121 }
1122
1123 if (machine__is_default_guest(machine)) {
1124 /*
1125 * preload dso of guest kernel and modules
1126 */
1127 dso__load(kernel, machine->vmlinux_maps[MAP__FUNCTION],
1128 NULL);
1129 }
1130 }
1131 return 0;
1132out_problem:
1133 return -1;
1134}
1135
5c5e854b 1136int machine__process_mmap2_event(struct machine *machine,
162f0bef
FW
1137 union perf_event *event,
1138 struct perf_sample *sample __maybe_unused)
5c5e854b
SE
1139{
1140 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1141 struct thread *thread;
1142 struct map *map;
1143 enum map_type type;
1144 int ret = 0;
1145
1146 if (dump_trace)
1147 perf_event__fprintf_mmap2(event, stdout);
1148
1149 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1150 cpumode == PERF_RECORD_MISC_KERNEL) {
1151 ret = machine__process_kernel_mmap_event(machine, event);
1152 if (ret < 0)
1153 goto out_problem;
1154 return 0;
1155 }
1156
1157 thread = machine__findnew_thread(machine, event->mmap2.pid,
11c9abf2 1158 event->mmap2.tid);
5c5e854b
SE
1159 if (thread == NULL)
1160 goto out_problem;
1161
1162 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1163 type = MAP__VARIABLE;
1164 else
1165 type = MAP__FUNCTION;
1166
2a03068c 1167 map = map__new(machine, event->mmap2.start,
5c5e854b
SE
1168 event->mmap2.len, event->mmap2.pgoff,
1169 event->mmap2.pid, event->mmap2.maj,
1170 event->mmap2.min, event->mmap2.ino,
1171 event->mmap2.ino_generation,
7ef80703
DZ
1172 event->mmap2.prot,
1173 event->mmap2.flags,
5835edda 1174 event->mmap2.filename, type, thread);
5c5e854b
SE
1175
1176 if (map == NULL)
1177 goto out_problem;
1178
1179 thread__insert_map(thread, map);
1180 return 0;
1181
1182out_problem:
1183 dump_printf("problem processing PERF_RECORD_MMAP2, skipping event.\n");
1184 return 0;
1185}
1186
162f0bef
FW
1187int machine__process_mmap_event(struct machine *machine, union perf_event *event,
1188 struct perf_sample *sample __maybe_unused)
b0a7d1a0
ACM
1189{
1190 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1191 struct thread *thread;
1192 struct map *map;
bad40917 1193 enum map_type type;
b0a7d1a0
ACM
1194 int ret = 0;
1195
1196 if (dump_trace)
1197 perf_event__fprintf_mmap(event, stdout);
1198
1199 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1200 cpumode == PERF_RECORD_MISC_KERNEL) {
1201 ret = machine__process_kernel_mmap_event(machine, event);
1202 if (ret < 0)
1203 goto out_problem;
1204 return 0;
1205 }
1206
314add6b 1207 thread = machine__findnew_thread(machine, event->mmap.pid,
11c9abf2 1208 event->mmap.tid);
b0a7d1a0
ACM
1209 if (thread == NULL)
1210 goto out_problem;
bad40917
SE
1211
1212 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1213 type = MAP__VARIABLE;
1214 else
1215 type = MAP__FUNCTION;
1216
2a03068c 1217 map = map__new(machine, event->mmap.start,
b0a7d1a0 1218 event->mmap.len, event->mmap.pgoff,
7ef80703 1219 event->mmap.pid, 0, 0, 0, 0, 0, 0,
5c5e854b 1220 event->mmap.filename,
5835edda 1221 type, thread);
bad40917 1222
b0a7d1a0
ACM
1223 if (map == NULL)
1224 goto out_problem;
1225
1226 thread__insert_map(thread, map);
1227 return 0;
1228
1229out_problem:
1230 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
1231 return 0;
1232}
1233
236a3bbd
DA
1234static void machine__remove_thread(struct machine *machine, struct thread *th)
1235{
f3b623b8
ACM
1236 if (machine->last_match == th)
1237 thread__zput(machine->last_match);
1238
236a3bbd
DA
1239 rb_erase(&th->rb_node, &machine->threads);
1240 /*
f3b623b8
ACM
1241 * Move it first to the dead_threads list, then drop the reference,
1242 * if this is the last reference, then the thread__delete destructor
1243 * will be called and we will remove it from the dead_threads list.
236a3bbd
DA
1244 */
1245 list_add_tail(&th->node, &machine->dead_threads);
f3b623b8 1246 thread__put(th);
236a3bbd
DA
1247}
1248
162f0bef
FW
1249int machine__process_fork_event(struct machine *machine, union perf_event *event,
1250 struct perf_sample *sample)
b0a7d1a0 1251{
d75e6097
JO
1252 struct thread *thread = machine__find_thread(machine,
1253 event->fork.pid,
1254 event->fork.tid);
314add6b
AH
1255 struct thread *parent = machine__findnew_thread(machine,
1256 event->fork.ppid,
1257 event->fork.ptid);
b0a7d1a0 1258
236a3bbd
DA
1259 /* if a thread currently exists for the thread id remove it */
1260 if (thread != NULL)
1261 machine__remove_thread(machine, thread);
1262
314add6b
AH
1263 thread = machine__findnew_thread(machine, event->fork.pid,
1264 event->fork.tid);
b0a7d1a0
ACM
1265 if (dump_trace)
1266 perf_event__fprintf_task(event, stdout);
1267
1268 if (thread == NULL || parent == NULL ||
162f0bef 1269 thread__fork(thread, parent, sample->time) < 0) {
b0a7d1a0
ACM
1270 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
1271 return -1;
1272 }
1273
1274 return 0;
1275}
1276
162f0bef
FW
1277int machine__process_exit_event(struct machine *machine, union perf_event *event,
1278 struct perf_sample *sample __maybe_unused)
b0a7d1a0 1279{
d75e6097
JO
1280 struct thread *thread = machine__find_thread(machine,
1281 event->fork.pid,
1282 event->fork.tid);
b0a7d1a0
ACM
1283
1284 if (dump_trace)
1285 perf_event__fprintf_task(event, stdout);
1286
1287 if (thread != NULL)
236a3bbd 1288 thread__exited(thread);
b0a7d1a0
ACM
1289
1290 return 0;
1291}
1292
162f0bef
FW
1293int machine__process_event(struct machine *machine, union perf_event *event,
1294 struct perf_sample *sample)
b0a7d1a0
ACM
1295{
1296 int ret;
1297
1298 switch (event->header.type) {
1299 case PERF_RECORD_COMM:
162f0bef 1300 ret = machine__process_comm_event(machine, event, sample); break;
b0a7d1a0 1301 case PERF_RECORD_MMAP:
162f0bef 1302 ret = machine__process_mmap_event(machine, event, sample); break;
5c5e854b 1303 case PERF_RECORD_MMAP2:
162f0bef 1304 ret = machine__process_mmap2_event(machine, event, sample); break;
b0a7d1a0 1305 case PERF_RECORD_FORK:
162f0bef 1306 ret = machine__process_fork_event(machine, event, sample); break;
b0a7d1a0 1307 case PERF_RECORD_EXIT:
162f0bef 1308 ret = machine__process_exit_event(machine, event, sample); break;
b0a7d1a0 1309 case PERF_RECORD_LOST:
162f0bef 1310 ret = machine__process_lost_event(machine, event, sample); break;
b0a7d1a0
ACM
1311 default:
1312 ret = -1;
1313 break;
1314 }
1315
1316 return ret;
1317}
3f067dca 1318
b21484f1 1319static bool symbol__match_regex(struct symbol *sym, regex_t *regex)
3f067dca 1320{
b21484f1 1321 if (sym->name && !regexec(regex, sym->name, 0, NULL, 0))
3f067dca 1322 return 1;
3f067dca
ACM
1323 return 0;
1324}
1325
bb871a9c 1326static void ip__resolve_ams(struct thread *thread,
3f067dca
ACM
1327 struct addr_map_symbol *ams,
1328 u64 ip)
1329{
1330 struct addr_location al;
3f067dca
ACM
1331
1332 memset(&al, 0, sizeof(al));
52a3cb8c
ACM
1333 /*
1334 * We cannot use the header.misc hint to determine whether a
1335 * branch stack address is user, kernel, guest, hypervisor.
1336 * Branches may straddle the kernel/user/hypervisor boundaries.
1337 * Thus, we have to try consecutively until we find a match
1338 * or else, the symbol is unknown
1339 */
bb871a9c 1340 thread__find_cpumode_addr_location(thread, MAP__FUNCTION, ip, &al);
3f067dca 1341
3f067dca
ACM
1342 ams->addr = ip;
1343 ams->al_addr = al.addr;
1344 ams->sym = al.sym;
1345 ams->map = al.map;
1346}
1347
bb871a9c 1348static void ip__resolve_data(struct thread *thread,
98a3b32c
SE
1349 u8 m, struct addr_map_symbol *ams, u64 addr)
1350{
1351 struct addr_location al;
1352
1353 memset(&al, 0, sizeof(al));
1354
bb871a9c 1355 thread__find_addr_location(thread, m, MAP__VARIABLE, addr, &al);
06b2afc0
DZ
1356 if (al.map == NULL) {
1357 /*
1358 * some shared data regions have execute bit set which puts
1359 * their mapping in the MAP__FUNCTION type array.
1360 * Check there as a fallback option before dropping the sample.
1361 */
bb871a9c 1362 thread__find_addr_location(thread, m, MAP__FUNCTION, addr, &al);
06b2afc0
DZ
1363 }
1364
98a3b32c
SE
1365 ams->addr = addr;
1366 ams->al_addr = al.addr;
1367 ams->sym = al.sym;
1368 ams->map = al.map;
1369}
1370
e80faac0
ACM
1371struct mem_info *sample__resolve_mem(struct perf_sample *sample,
1372 struct addr_location *al)
98a3b32c
SE
1373{
1374 struct mem_info *mi = zalloc(sizeof(*mi));
1375
1376 if (!mi)
1377 return NULL;
1378
bb871a9c
ACM
1379 ip__resolve_ams(al->thread, &mi->iaddr, sample->ip);
1380 ip__resolve_data(al->thread, al->cpumode, &mi->daddr, sample->addr);
98a3b32c
SE
1381 mi->data_src.val = sample->data_src;
1382
1383 return mi;
1384}
1385
37592b8a
AK
1386static int add_callchain_ip(struct thread *thread,
1387 struct symbol **parent,
1388 struct addr_location *root_al,
2e77784b 1389 bool branch_history,
37592b8a
AK
1390 u64 ip)
1391{
1392 struct addr_location al;
1393
1394 al.filtered = 0;
1395 al.sym = NULL;
2e77784b 1396 if (branch_history)
8b7bad58
AK
1397 thread__find_cpumode_addr_location(thread, MAP__FUNCTION,
1398 ip, &al);
2e77784b
KL
1399 else {
1400 u8 cpumode = PERF_RECORD_MISC_USER;
1401
1402 if (ip >= PERF_CONTEXT_MAX) {
1403 switch (ip) {
1404 case PERF_CONTEXT_HV:
1405 cpumode = PERF_RECORD_MISC_HYPERVISOR;
1406 break;
1407 case PERF_CONTEXT_KERNEL:
1408 cpumode = PERF_RECORD_MISC_KERNEL;
1409 break;
1410 case PERF_CONTEXT_USER:
1411 cpumode = PERF_RECORD_MISC_USER;
1412 break;
1413 default:
1414 pr_debug("invalid callchain context: "
1415 "%"PRId64"\n", (s64) ip);
1416 /*
1417 * It seems the callchain is corrupted.
1418 * Discard all.
1419 */
1420 callchain_cursor_reset(&callchain_cursor);
1421 return 1;
1422 }
1423 return 0;
1424 }
8b7bad58 1425 thread__find_addr_location(thread, cpumode, MAP__FUNCTION,
37592b8a 1426 ip, &al);
2e77784b
KL
1427 }
1428
37592b8a
AK
1429 if (al.sym != NULL) {
1430 if (sort__has_parent && !*parent &&
1431 symbol__match_regex(al.sym, &parent_regex))
1432 *parent = al.sym;
1433 else if (have_ignore_callees && root_al &&
1434 symbol__match_regex(al.sym, &ignore_callees_regex)) {
1435 /* Treat this symbol as the root,
1436 forgetting its callees. */
1437 *root_al = al;
1438 callchain_cursor_reset(&callchain_cursor);
1439 }
1440 }
1441
5550171b 1442 return callchain_cursor_append(&callchain_cursor, al.addr, al.map, al.sym);
37592b8a
AK
1443}
1444
644f2df2
ACM
1445struct branch_info *sample__resolve_bstack(struct perf_sample *sample,
1446 struct addr_location *al)
3f067dca 1447{
3f067dca 1448 unsigned int i;
644f2df2
ACM
1449 const struct branch_stack *bs = sample->branch_stack;
1450 struct branch_info *bi = calloc(bs->nr, sizeof(struct branch_info));
3f067dca 1451
3f067dca
ACM
1452 if (!bi)
1453 return NULL;
1454
1455 for (i = 0; i < bs->nr; i++) {
bb871a9c
ACM
1456 ip__resolve_ams(al->thread, &bi[i].to, bs->entries[i].to);
1457 ip__resolve_ams(al->thread, &bi[i].from, bs->entries[i].from);
3f067dca
ACM
1458 bi[i].flags = bs->entries[i].flags;
1459 }
1460 return bi;
1461}
1462
8b7bad58
AK
1463#define CHASHSZ 127
1464#define CHASHBITS 7
1465#define NO_ENTRY 0xff
1466
1467#define PERF_MAX_BRANCH_DEPTH 127
1468
1469/* Remove loops. */
1470static int remove_loops(struct branch_entry *l, int nr)
1471{
1472 int i, j, off;
1473 unsigned char chash[CHASHSZ];
1474
1475 memset(chash, NO_ENTRY, sizeof(chash));
1476
1477 BUG_ON(PERF_MAX_BRANCH_DEPTH > 255);
1478
1479 for (i = 0; i < nr; i++) {
1480 int h = hash_64(l[i].from, CHASHBITS) % CHASHSZ;
1481
1482 /* no collision handling for now */
1483 if (chash[h] == NO_ENTRY) {
1484 chash[h] = i;
1485 } else if (l[chash[h]].from == l[i].from) {
1486 bool is_loop = true;
1487 /* check if it is a real loop */
1488 off = 0;
1489 for (j = chash[h]; j < i && i + off < nr; j++, off++)
1490 if (l[j].from != l[i + off].from) {
1491 is_loop = false;
1492 break;
1493 }
1494 if (is_loop) {
1495 memmove(l + i, l + i + off,
1496 (nr - (i + off)) * sizeof(*l));
1497 nr -= off;
1498 }
1499 }
1500 }
1501 return nr;
1502}
1503
384b6055
KL
1504/*
1505 * Recolve LBR callstack chain sample
1506 * Return:
1507 * 1 on success get LBR callchain information
1508 * 0 no available LBR callchain information, should try fp
1509 * negative error code on other errors.
1510 */
1511static int resolve_lbr_callchain_sample(struct thread *thread,
1512 struct perf_sample *sample,
1513 struct symbol **parent,
1514 struct addr_location *root_al,
1515 int max_stack)
3f067dca 1516{
384b6055
KL
1517 struct ip_callchain *chain = sample->callchain;
1518 int chain_nr = min(max_stack, (int)chain->nr);
1519 int i, j, err;
1520 u64 ip;
1521
1522 for (i = 0; i < chain_nr; i++) {
1523 if (chain->ips[i] == PERF_CONTEXT_USER)
1524 break;
1525 }
1526
1527 /* LBR only affects the user callchain */
1528 if (i != chain_nr) {
1529 struct branch_stack *lbr_stack = sample->branch_stack;
1530 int lbr_nr = lbr_stack->nr;
1531 /*
1532 * LBR callstack can only get user call chain.
1533 * The mix_chain_nr is kernel call chain
1534 * number plus LBR user call chain number.
1535 * i is kernel call chain number,
1536 * 1 is PERF_CONTEXT_USER,
1537 * lbr_nr + 1 is the user call chain number.
1538 * For details, please refer to the comments
1539 * in callchain__printf
1540 */
1541 int mix_chain_nr = i + 1 + lbr_nr + 1;
1542
1543 if (mix_chain_nr > PERF_MAX_STACK_DEPTH + PERF_MAX_BRANCH_DEPTH) {
1544 pr_warning("corrupted callchain. skipping...\n");
1545 return 0;
1546 }
1547
1548 for (j = 0; j < mix_chain_nr; j++) {
1549 if (callchain_param.order == ORDER_CALLEE) {
1550 if (j < i + 1)
1551 ip = chain->ips[j];
1552 else if (j > i + 1)
1553 ip = lbr_stack->entries[j - i - 2].from;
1554 else
1555 ip = lbr_stack->entries[0].to;
1556 } else {
1557 if (j < lbr_nr)
1558 ip = lbr_stack->entries[lbr_nr - j - 1].from;
1559 else if (j > lbr_nr)
1560 ip = chain->ips[i + 1 - (j - lbr_nr)];
1561 else
1562 ip = lbr_stack->entries[0].to;
1563 }
1564
1565 err = add_callchain_ip(thread, parent, root_al, false, ip);
1566 if (err)
1567 return (err < 0) ? err : 0;
1568 }
1569 return 1;
1570 }
1571
1572 return 0;
1573}
1574
1575static int thread__resolve_callchain_sample(struct thread *thread,
1576 struct perf_evsel *evsel,
1577 struct perf_sample *sample,
1578 struct symbol **parent,
1579 struct addr_location *root_al,
1580 int max_stack)
1581{
1582 struct branch_stack *branch = sample->branch_stack;
1583 struct ip_callchain *chain = sample->callchain;
91e95617 1584 int chain_nr = min(max_stack, (int)chain->nr);
2e77784b 1585 int i, j, err;
8b7bad58
AK
1586 int skip_idx = -1;
1587 int first_call = 0;
1588
384b6055
KL
1589 callchain_cursor_reset(&callchain_cursor);
1590
1591 if (has_branch_callstack(evsel)) {
1592 err = resolve_lbr_callchain_sample(thread, sample, parent,
1593 root_al, max_stack);
1594 if (err)
1595 return (err < 0) ? err : 0;
1596 }
1597
8b7bad58
AK
1598 /*
1599 * Based on DWARF debug information, some architectures skip
1600 * a callchain entry saved by the kernel.
1601 */
1602 if (chain->nr < PERF_MAX_STACK_DEPTH)
1603 skip_idx = arch_skip_callchain_idx(thread, chain);
3f067dca 1604
8b7bad58
AK
1605 /*
1606 * Add branches to call stack for easier browsing. This gives
1607 * more context for a sample than just the callers.
1608 *
1609 * This uses individual histograms of paths compared to the
1610 * aggregated histograms the normal LBR mode uses.
1611 *
1612 * Limitations for now:
1613 * - No extra filters
1614 * - No annotations (should annotate somehow)
1615 */
1616
1617 if (branch && callchain_param.branch_callstack) {
1618 int nr = min(max_stack, (int)branch->nr);
1619 struct branch_entry be[nr];
1620
1621 if (branch->nr > PERF_MAX_BRANCH_DEPTH) {
1622 pr_warning("corrupted branch chain. skipping...\n");
1623 goto check_calls;
1624 }
1625
1626 for (i = 0; i < nr; i++) {
1627 if (callchain_param.order == ORDER_CALLEE) {
1628 be[i] = branch->entries[i];
1629 /*
1630 * Check for overlap into the callchain.
1631 * The return address is one off compared to
1632 * the branch entry. To adjust for this
1633 * assume the calling instruction is not longer
1634 * than 8 bytes.
1635 */
1636 if (i == skip_idx ||
1637 chain->ips[first_call] >= PERF_CONTEXT_MAX)
1638 first_call++;
1639 else if (be[i].from < chain->ips[first_call] &&
1640 be[i].from >= chain->ips[first_call] - 8)
1641 first_call++;
1642 } else
1643 be[i] = branch->entries[branch->nr - i - 1];
1644 }
1645
1646 nr = remove_loops(be, nr);
1647
1648 for (i = 0; i < nr; i++) {
1649 err = add_callchain_ip(thread, parent, root_al,
2e77784b 1650 true, be[i].to);
8b7bad58
AK
1651 if (!err)
1652 err = add_callchain_ip(thread, parent, root_al,
2e77784b 1653 true, be[i].from);
8b7bad58
AK
1654 if (err == -EINVAL)
1655 break;
1656 if (err)
1657 return err;
1658 }
1659 chain_nr -= nr;
1660 }
1661
1662check_calls:
3f067dca
ACM
1663 if (chain->nr > PERF_MAX_STACK_DEPTH) {
1664 pr_warning("corrupted callchain. skipping...\n");
1665 return 0;
1666 }
1667
8b7bad58 1668 for (i = first_call; i < chain_nr; i++) {
3f067dca 1669 u64 ip;
3f067dca
ACM
1670
1671 if (callchain_param.order == ORDER_CALLEE)
a60335ba 1672 j = i;
3f067dca 1673 else
a60335ba
SB
1674 j = chain->nr - i - 1;
1675
1676#ifdef HAVE_SKIP_CALLCHAIN_IDX
1677 if (j == skip_idx)
1678 continue;
1679#endif
1680 ip = chain->ips[j];
3f067dca 1681
2e77784b 1682 err = add_callchain_ip(thread, parent, root_al, false, ip);
3f067dca 1683
3f067dca 1684 if (err)
2e77784b 1685 return (err < 0) ? err : 0;
3f067dca
ACM
1686 }
1687
1688 return 0;
1689}
1690
1691static int unwind_entry(struct unwind_entry *entry, void *arg)
1692{
1693 struct callchain_cursor *cursor = arg;
1694 return callchain_cursor_append(cursor, entry->ip,
1695 entry->map, entry->sym);
1696}
1697
cc8b7c2b
ACM
1698int thread__resolve_callchain(struct thread *thread,
1699 struct perf_evsel *evsel,
1700 struct perf_sample *sample,
1701 struct symbol **parent,
1702 struct addr_location *root_al,
1703 int max_stack)
3f067dca 1704{
384b6055
KL
1705 int ret = thread__resolve_callchain_sample(thread, evsel,
1706 sample, parent,
1707 root_al, max_stack);
3f067dca
ACM
1708 if (ret)
1709 return ret;
1710
1711 /* Can we do dwarf post unwind? */
1712 if (!((evsel->attr.sample_type & PERF_SAMPLE_REGS_USER) &&
1713 (evsel->attr.sample_type & PERF_SAMPLE_STACK_USER)))
1714 return 0;
1715
1716 /* Bail out if nothing was captured. */
1717 if ((!sample->user_regs.regs) ||
1718 (!sample->user_stack.size))
1719 return 0;
1720
dd8c17a5 1721 return unwind__get_entries(unwind_entry, &callchain_cursor,
352ea45a 1722 thread, sample, max_stack);
3f067dca
ACM
1723
1724}
35feee19
DA
1725
1726int machine__for_each_thread(struct machine *machine,
1727 int (*fn)(struct thread *thread, void *p),
1728 void *priv)
1729{
1730 struct rb_node *nd;
1731 struct thread *thread;
1732 int rc = 0;
1733
1734 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
1735 thread = rb_entry(nd, struct thread, rb_node);
1736 rc = fn(thread, priv);
1737 if (rc != 0)
1738 return rc;
1739 }
1740
1741 list_for_each_entry(thread, &machine->dead_threads, node) {
1742 rc = fn(thread, priv);
1743 if (rc != 0)
1744 return rc;
1745 }
1746 return rc;
1747}
58d925dc 1748
a33fbd56 1749int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool,
602ad878 1750 struct target *target, struct thread_map *threads,
a33fbd56 1751 perf_event__handler_t process, bool data_mmap)
58d925dc 1752{
602ad878 1753 if (target__has_task(target))
58d925dc 1754 return perf_event__synthesize_thread_map(tool, threads, process, machine, data_mmap);
602ad878 1755 else if (target__has_cpu(target))
58d925dc
ACM
1756 return perf_event__synthesize_threads(tool, process, machine, data_mmap);
1757 /* command specified */
1758 return 0;
1759}
b9d266ba
AH
1760
1761pid_t machine__get_current_tid(struct machine *machine, int cpu)
1762{
1763 if (cpu < 0 || cpu >= MAX_NR_CPUS || !machine->current_tid)
1764 return -1;
1765
1766 return machine->current_tid[cpu];
1767}
1768
1769int machine__set_current_tid(struct machine *machine, int cpu, pid_t pid,
1770 pid_t tid)
1771{
1772 struct thread *thread;
1773
1774 if (cpu < 0)
1775 return -EINVAL;
1776
1777 if (!machine->current_tid) {
1778 int i;
1779
1780 machine->current_tid = calloc(MAX_NR_CPUS, sizeof(pid_t));
1781 if (!machine->current_tid)
1782 return -ENOMEM;
1783 for (i = 0; i < MAX_NR_CPUS; i++)
1784 machine->current_tid[i] = -1;
1785 }
1786
1787 if (cpu >= MAX_NR_CPUS) {
1788 pr_err("Requested CPU %d too large. ", cpu);
1789 pr_err("Consider raising MAX_NR_CPUS\n");
1790 return -EINVAL;
1791 }
1792
1793 machine->current_tid[cpu] = tid;
1794
1795 thread = machine__findnew_thread(machine, pid, tid);
1796 if (!thread)
1797 return -ENOMEM;
1798
1799 thread->cpu = cpu;
1800
1801 return 0;
1802}
fbe2af45
AH
1803
1804int machine__get_kernel_start(struct machine *machine)
1805{
1806 struct map *map = machine__kernel_map(machine, MAP__FUNCTION);
1807 int err = 0;
1808
1809 /*
1810 * The only addresses above 2^63 are kernel addresses of a 64-bit
1811 * kernel. Note that addresses are unsigned so that on a 32-bit system
1812 * all addresses including kernel addresses are less than 2^32. In
1813 * that case (32-bit system), if the kernel mapping is unknown, all
1814 * addresses will be assumed to be in user space - see
1815 * machine__kernel_ip().
1816 */
1817 machine->kernel_start = 1ULL << 63;
1818 if (map) {
1819 err = map__load(map, machine->symbol_filter);
1820 if (map->start)
1821 machine->kernel_start = map->start;
1822 }
1823 return err;
1824}