blob: bac817ab2068accc0c40a430cf95aed60ed672b6 [file] [log] [blame]
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001#include "callchain.h"
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03002#include "debug.h"
3#include "event.h"
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03004#include "evsel.h"
5#include "hist.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -03006#include "machine.h"
7#include "map.h"
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03008#include "sort.h"
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -03009#include "strlist.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030010#include "thread.h"
11#include <stdbool.h>
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030012#include "unwind.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030013
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030014int machine__init(struct machine *machine, const char *root_dir, pid_t pid)
15{
16 map_groups__init(&machine->kmaps);
17 RB_CLEAR_NODE(&machine->rb_node);
18 INIT_LIST_HEAD(&machine->user_dsos);
19 INIT_LIST_HEAD(&machine->kernel_dsos);
20
21 machine->threads = RB_ROOT;
22 INIT_LIST_HEAD(&machine->dead_threads);
23 machine->last_match = NULL;
24
25 machine->kmaps.machine = machine;
26 machine->pid = pid;
27
Adrian Hunter611a5ce2013-08-08 14:32:20 +030028 machine->symbol_filter = NULL;
29
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030030 machine->root_dir = strdup(root_dir);
31 if (machine->root_dir == NULL)
32 return -ENOMEM;
33
34 if (pid != HOST_KERNEL_ID) {
Adrian Hunter314add62013-08-27 11:23:03 +030035 struct thread *thread = machine__findnew_thread(machine, 0,
36 pid);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030037 char comm[64];
38
39 if (thread == NULL)
40 return -ENOMEM;
41
42 snprintf(comm, sizeof(comm), "[guest/%d]", pid);
Frederic Weisbecker162f0be2013-09-11 16:18:24 +020043 thread__set_comm(thread, comm, 0);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030044 }
45
46 return 0;
47}
48
David Ahern8fb598e2013-09-28 13:13:00 -060049struct machine *machine__new_host(void)
50{
51 struct machine *machine = malloc(sizeof(*machine));
52
53 if (machine != NULL) {
54 machine__init(machine, "", HOST_KERNEL_ID);
55
56 if (machine__create_kernel_maps(machine) < 0)
57 goto out_delete;
58 }
59
60 return machine;
61out_delete:
62 free(machine);
63 return NULL;
64}
65
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030066static void dsos__delete(struct list_head *dsos)
67{
68 struct dso *pos, *n;
69
70 list_for_each_entry_safe(pos, n, dsos, node) {
71 list_del(&pos->node);
72 dso__delete(pos);
73 }
74}
75
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030076void machine__delete_dead_threads(struct machine *machine)
77{
78 struct thread *n, *t;
79
80 list_for_each_entry_safe(t, n, &machine->dead_threads, node) {
81 list_del(&t->node);
82 thread__delete(t);
83 }
84}
85
86void machine__delete_threads(struct machine *machine)
87{
88 struct rb_node *nd = rb_first(&machine->threads);
89
90 while (nd) {
91 struct thread *t = rb_entry(nd, struct thread, rb_node);
92
93 rb_erase(&t->rb_node, &machine->threads);
94 nd = rb_next(nd);
95 thread__delete(t);
96 }
97}
98
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030099void machine__exit(struct machine *machine)
100{
101 map_groups__exit(&machine->kmaps);
102 dsos__delete(&machine->user_dsos);
103 dsos__delete(&machine->kernel_dsos);
104 free(machine->root_dir);
105 machine->root_dir = NULL;
106}
107
108void machine__delete(struct machine *machine)
109{
110 machine__exit(machine);
111 free(machine);
112}
113
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300114void machines__init(struct machines *machines)
115{
116 machine__init(&machines->host, "", HOST_KERNEL_ID);
117 machines->guests = RB_ROOT;
Adrian Hunter611a5ce2013-08-08 14:32:20 +0300118 machines->symbol_filter = NULL;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300119}
120
121void machines__exit(struct machines *machines)
122{
123 machine__exit(&machines->host);
124 /* XXX exit guest */
125}
126
127struct machine *machines__add(struct machines *machines, pid_t pid,
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300128 const char *root_dir)
129{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300130 struct rb_node **p = &machines->guests.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300131 struct rb_node *parent = NULL;
132 struct machine *pos, *machine = malloc(sizeof(*machine));
133
134 if (machine == NULL)
135 return NULL;
136
137 if (machine__init(machine, root_dir, pid) != 0) {
138 free(machine);
139 return NULL;
140 }
141
Adrian Hunter611a5ce2013-08-08 14:32:20 +0300142 machine->symbol_filter = machines->symbol_filter;
143
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300144 while (*p != NULL) {
145 parent = *p;
146 pos = rb_entry(parent, struct machine, rb_node);
147 if (pid < pos->pid)
148 p = &(*p)->rb_left;
149 else
150 p = &(*p)->rb_right;
151 }
152
153 rb_link_node(&machine->rb_node, parent, p);
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300154 rb_insert_color(&machine->rb_node, &machines->guests);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300155
156 return machine;
157}
158
Adrian Hunter611a5ce2013-08-08 14:32:20 +0300159void machines__set_symbol_filter(struct machines *machines,
160 symbol_filter_t symbol_filter)
161{
162 struct rb_node *nd;
163
164 machines->symbol_filter = symbol_filter;
165 machines->host.symbol_filter = symbol_filter;
166
167 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
168 struct machine *machine = rb_entry(nd, struct machine, rb_node);
169
170 machine->symbol_filter = symbol_filter;
171 }
172}
173
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300174struct machine *machines__find(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300175{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300176 struct rb_node **p = &machines->guests.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300177 struct rb_node *parent = NULL;
178 struct machine *machine;
179 struct machine *default_machine = NULL;
180
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300181 if (pid == HOST_KERNEL_ID)
182 return &machines->host;
183
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300184 while (*p != NULL) {
185 parent = *p;
186 machine = rb_entry(parent, struct machine, rb_node);
187 if (pid < machine->pid)
188 p = &(*p)->rb_left;
189 else if (pid > machine->pid)
190 p = &(*p)->rb_right;
191 else
192 return machine;
193 if (!machine->pid)
194 default_machine = machine;
195 }
196
197 return default_machine;
198}
199
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300200struct machine *machines__findnew(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300201{
202 char path[PATH_MAX];
203 const char *root_dir = "";
204 struct machine *machine = machines__find(machines, pid);
205
206 if (machine && (machine->pid == pid))
207 goto out;
208
209 if ((pid != HOST_KERNEL_ID) &&
210 (pid != DEFAULT_GUEST_KERNEL_ID) &&
211 (symbol_conf.guestmount)) {
212 sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
213 if (access(path, R_OK)) {
214 static struct strlist *seen;
215
216 if (!seen)
217 seen = strlist__new(true, NULL);
218
219 if (!strlist__has_entry(seen, path)) {
220 pr_err("Can't access file %s\n", path);
221 strlist__add(seen, path);
222 }
223 machine = NULL;
224 goto out;
225 }
226 root_dir = path;
227 }
228
229 machine = machines__add(machines, pid, root_dir);
230out:
231 return machine;
232}
233
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300234void machines__process_guests(struct machines *machines,
235 machine__process_t process, void *data)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300236{
237 struct rb_node *nd;
238
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300239 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300240 struct machine *pos = rb_entry(nd, struct machine, rb_node);
241 process(pos, data);
242 }
243}
244
245char *machine__mmap_name(struct machine *machine, char *bf, size_t size)
246{
247 if (machine__is_host(machine))
248 snprintf(bf, size, "[%s]", "kernel.kallsyms");
249 else if (machine__is_default_guest(machine))
250 snprintf(bf, size, "[%s]", "guest.kernel.kallsyms");
251 else {
252 snprintf(bf, size, "[%s.%d]", "guest.kernel.kallsyms",
253 machine->pid);
254 }
255
256 return bf;
257}
258
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300259void machines__set_id_hdr_size(struct machines *machines, u16 id_hdr_size)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300260{
261 struct rb_node *node;
262 struct machine *machine;
263
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300264 machines->host.id_hdr_size = id_hdr_size;
265
266 for (node = rb_first(&machines->guests); node; node = rb_next(node)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300267 machine = rb_entry(node, struct machine, rb_node);
268 machine->id_hdr_size = id_hdr_size;
269 }
270
271 return;
272}
273
Adrian Hunter99d725f2013-08-26 16:00:19 +0300274static struct thread *__machine__findnew_thread(struct machine *machine,
275 pid_t pid, pid_t tid,
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300276 bool create)
277{
278 struct rb_node **p = &machine->threads.rb_node;
279 struct rb_node *parent = NULL;
280 struct thread *th;
281
282 /*
Adrian Hunter38051232013-07-04 16:20:31 +0300283 * Front-end cache - TID lookups come in blocks,
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300284 * so most of the time we dont have to look up
285 * the full rbtree:
286 */
Adrian Hunter99d725f2013-08-26 16:00:19 +0300287 if (machine->last_match && machine->last_match->tid == tid) {
288 if (pid && pid != machine->last_match->pid_)
289 machine->last_match->pid_ = pid;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300290 return machine->last_match;
Adrian Hunter99d725f2013-08-26 16:00:19 +0300291 }
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300292
293 while (*p != NULL) {
294 parent = *p;
295 th = rb_entry(parent, struct thread, rb_node);
296
Adrian Hunter38051232013-07-04 16:20:31 +0300297 if (th->tid == tid) {
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300298 machine->last_match = th;
Adrian Hunter99d725f2013-08-26 16:00:19 +0300299 if (pid && pid != th->pid_)
300 th->pid_ = pid;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300301 return th;
302 }
303
Adrian Hunter38051232013-07-04 16:20:31 +0300304 if (tid < th->tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300305 p = &(*p)->rb_left;
306 else
307 p = &(*p)->rb_right;
308 }
309
310 if (!create)
311 return NULL;
312
Adrian Hunter99d725f2013-08-26 16:00:19 +0300313 th = thread__new(pid, tid);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300314 if (th != NULL) {
315 rb_link_node(&th->rb_node, parent, p);
316 rb_insert_color(&th->rb_node, &machine->threads);
317 machine->last_match = th;
318 }
319
320 return th;
321}
322
Adrian Hunter314add62013-08-27 11:23:03 +0300323struct thread *machine__findnew_thread(struct machine *machine, pid_t pid,
324 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300325{
Adrian Hunter314add62013-08-27 11:23:03 +0300326 return __machine__findnew_thread(machine, pid, tid, true);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300327}
328
Adrian Hunter38051232013-07-04 16:20:31 +0300329struct thread *machine__find_thread(struct machine *machine, pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300330{
Adrian Hunter99d725f2013-08-26 16:00:19 +0300331 return __machine__findnew_thread(machine, 0, tid, false);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300332}
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300333
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200334int machine__process_comm_event(struct machine *machine, union perf_event *event,
335 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300336{
Adrian Hunter314add62013-08-27 11:23:03 +0300337 struct thread *thread = machine__findnew_thread(machine,
338 event->comm.pid,
339 event->comm.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300340
341 if (dump_trace)
342 perf_event__fprintf_comm(event, stdout);
343
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200344 if (thread == NULL || thread__set_comm(thread, event->comm.comm, sample->time)) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300345 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
346 return -1;
347 }
348
349 return 0;
350}
351
352int machine__process_lost_event(struct machine *machine __maybe_unused,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200353 union perf_event *event, struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300354{
355 dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
356 event->lost.id, event->lost.lost);
357 return 0;
358}
359
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300360struct map *machine__new_module(struct machine *machine, u64 start,
361 const char *filename)
362{
363 struct map *map;
364 struct dso *dso = __dsos__findnew(&machine->kernel_dsos, filename);
365
366 if (dso == NULL)
367 return NULL;
368
369 map = map__new2(start, dso, MAP__FUNCTION);
370 if (map == NULL)
371 return NULL;
372
373 if (machine__is_host(machine))
374 dso->symtab_type = DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE;
375 else
376 dso->symtab_type = DSO_BINARY_TYPE__GUEST_KMODULE;
377 map_groups__insert(&machine->kmaps, map);
378 return map;
379}
380
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300381size_t machines__fprintf_dsos(struct machines *machines, FILE *fp)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300382{
383 struct rb_node *nd;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300384 size_t ret = __dsos__fprintf(&machines->host.kernel_dsos, fp) +
385 __dsos__fprintf(&machines->host.user_dsos, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300386
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300387 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300388 struct machine *pos = rb_entry(nd, struct machine, rb_node);
389 ret += __dsos__fprintf(&pos->kernel_dsos, fp);
390 ret += __dsos__fprintf(&pos->user_dsos, fp);
391 }
392
393 return ret;
394}
395
396size_t machine__fprintf_dsos_buildid(struct machine *machine, FILE *fp,
397 bool (skip)(struct dso *dso, int parm), int parm)
398{
399 return __dsos__fprintf_buildid(&machine->kernel_dsos, fp, skip, parm) +
400 __dsos__fprintf_buildid(&machine->user_dsos, fp, skip, parm);
401}
402
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300403size_t machines__fprintf_dsos_buildid(struct machines *machines, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300404 bool (skip)(struct dso *dso, int parm), int parm)
405{
406 struct rb_node *nd;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300407 size_t ret = machine__fprintf_dsos_buildid(&machines->host, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300408
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300409 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300410 struct machine *pos = rb_entry(nd, struct machine, rb_node);
411 ret += machine__fprintf_dsos_buildid(pos, fp, skip, parm);
412 }
413 return ret;
414}
415
416size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp)
417{
418 int i;
419 size_t printed = 0;
420 struct dso *kdso = machine->vmlinux_maps[MAP__FUNCTION]->dso;
421
422 if (kdso->has_build_id) {
423 char filename[PATH_MAX];
424 if (dso__build_id_filename(kdso, filename, sizeof(filename)))
425 printed += fprintf(fp, "[0] %s\n", filename);
426 }
427
428 for (i = 0; i < vmlinux_path__nr_entries; ++i)
429 printed += fprintf(fp, "[%d] %s\n",
430 i + kdso->has_build_id, vmlinux_path[i]);
431
432 return printed;
433}
434
435size_t machine__fprintf(struct machine *machine, FILE *fp)
436{
437 size_t ret = 0;
438 struct rb_node *nd;
439
440 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
441 struct thread *pos = rb_entry(nd, struct thread, rb_node);
442
443 ret += thread__fprintf(pos, fp);
444 }
445
446 return ret;
447}
448
449static struct dso *machine__get_kernel(struct machine *machine)
450{
451 const char *vmlinux_name = NULL;
452 struct dso *kernel;
453
454 if (machine__is_host(machine)) {
455 vmlinux_name = symbol_conf.vmlinux_name;
456 if (!vmlinux_name)
457 vmlinux_name = "[kernel.kallsyms]";
458
459 kernel = dso__kernel_findnew(machine, vmlinux_name,
460 "[kernel]",
461 DSO_TYPE_KERNEL);
462 } else {
463 char bf[PATH_MAX];
464
465 if (machine__is_default_guest(machine))
466 vmlinux_name = symbol_conf.default_guest_vmlinux_name;
467 if (!vmlinux_name)
468 vmlinux_name = machine__mmap_name(machine, bf,
469 sizeof(bf));
470
471 kernel = dso__kernel_findnew(machine, vmlinux_name,
472 "[guest.kernel]",
473 DSO_TYPE_GUEST_KERNEL);
474 }
475
476 if (kernel != NULL && (!kernel->has_build_id))
477 dso__read_running_kernel_build_id(kernel, machine);
478
479 return kernel;
480}
481
482struct process_args {
483 u64 start;
484};
485
486static int symbol__in_kernel(void *arg, const char *name,
487 char type __maybe_unused, u64 start)
488{
489 struct process_args *args = arg;
490
491 if (strchr(name, '['))
492 return 0;
493
494 args->start = start;
495 return 1;
496}
497
498/* Figure out the start address of kernel map from /proc/kallsyms */
499static u64 machine__get_kernel_start_addr(struct machine *machine)
500{
501 const char *filename;
502 char path[PATH_MAX];
503 struct process_args args;
504
Dongsheng Yang2f375732013-12-04 17:56:39 -0500505 if (machine__is_default_guest(machine))
506 filename = (char *)symbol_conf.default_guest_kallsyms;
507 else {
508 sprintf(path, "%s/proc/kallsyms", machine->root_dir);
509 filename = path;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300510 }
511
512 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
513 return 0;
514
515 if (kallsyms__parse(filename, &args, symbol__in_kernel) <= 0)
516 return 0;
517
518 return args.start;
519}
520
521int __machine__create_kernel_maps(struct machine *machine, struct dso *kernel)
522{
523 enum map_type type;
524 u64 start = machine__get_kernel_start_addr(machine);
525
526 for (type = 0; type < MAP__NR_TYPES; ++type) {
527 struct kmap *kmap;
528
529 machine->vmlinux_maps[type] = map__new2(start, kernel, type);
530 if (machine->vmlinux_maps[type] == NULL)
531 return -1;
532
533 machine->vmlinux_maps[type]->map_ip =
534 machine->vmlinux_maps[type]->unmap_ip =
535 identity__map_ip;
536 kmap = map__kmap(machine->vmlinux_maps[type]);
537 kmap->kmaps = &machine->kmaps;
538 map_groups__insert(&machine->kmaps,
539 machine->vmlinux_maps[type]);
540 }
541
542 return 0;
543}
544
545void machine__destroy_kernel_maps(struct machine *machine)
546{
547 enum map_type type;
548
549 for (type = 0; type < MAP__NR_TYPES; ++type) {
550 struct kmap *kmap;
551
552 if (machine->vmlinux_maps[type] == NULL)
553 continue;
554
555 kmap = map__kmap(machine->vmlinux_maps[type]);
556 map_groups__remove(&machine->kmaps,
557 machine->vmlinux_maps[type]);
558 if (kmap->ref_reloc_sym) {
559 /*
560 * ref_reloc_sym is shared among all maps, so free just
561 * on one of them.
562 */
563 if (type == MAP__FUNCTION) {
564 free((char *)kmap->ref_reloc_sym->name);
565 kmap->ref_reloc_sym->name = NULL;
566 free(kmap->ref_reloc_sym);
567 }
568 kmap->ref_reloc_sym = NULL;
569 }
570
571 map__delete(machine->vmlinux_maps[type]);
572 machine->vmlinux_maps[type] = NULL;
573 }
574}
575
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300576int machines__create_guest_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300577{
578 int ret = 0;
579 struct dirent **namelist = NULL;
580 int i, items = 0;
581 char path[PATH_MAX];
582 pid_t pid;
583 char *endp;
584
585 if (symbol_conf.default_guest_vmlinux_name ||
586 symbol_conf.default_guest_modules ||
587 symbol_conf.default_guest_kallsyms) {
588 machines__create_kernel_maps(machines, DEFAULT_GUEST_KERNEL_ID);
589 }
590
591 if (symbol_conf.guestmount) {
592 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
593 if (items <= 0)
594 return -ENOENT;
595 for (i = 0; i < items; i++) {
596 if (!isdigit(namelist[i]->d_name[0])) {
597 /* Filter out . and .. */
598 continue;
599 }
600 pid = (pid_t)strtol(namelist[i]->d_name, &endp, 10);
601 if ((*endp != '\0') ||
602 (endp == namelist[i]->d_name) ||
603 (errno == ERANGE)) {
604 pr_debug("invalid directory (%s). Skipping.\n",
605 namelist[i]->d_name);
606 continue;
607 }
608 sprintf(path, "%s/%s/proc/kallsyms",
609 symbol_conf.guestmount,
610 namelist[i]->d_name);
611 ret = access(path, R_OK);
612 if (ret) {
613 pr_debug("Can't access file %s\n", path);
614 goto failure;
615 }
616 machines__create_kernel_maps(machines, pid);
617 }
618failure:
619 free(namelist);
620 }
621
622 return ret;
623}
624
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300625void machines__destroy_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300626{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300627 struct rb_node *next = rb_first(&machines->guests);
628
629 machine__destroy_kernel_maps(&machines->host);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300630
631 while (next) {
632 struct machine *pos = rb_entry(next, struct machine, rb_node);
633
634 next = rb_next(&pos->rb_node);
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300635 rb_erase(&pos->rb_node, &machines->guests);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300636 machine__delete(pos);
637 }
638}
639
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300640int machines__create_kernel_maps(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300641{
642 struct machine *machine = machines__findnew(machines, pid);
643
644 if (machine == NULL)
645 return -1;
646
647 return machine__create_kernel_maps(machine);
648}
649
650int machine__load_kallsyms(struct machine *machine, const char *filename,
651 enum map_type type, symbol_filter_t filter)
652{
653 struct map *map = machine->vmlinux_maps[type];
654 int ret = dso__load_kallsyms(map->dso, filename, map, filter);
655
656 if (ret > 0) {
657 dso__set_loaded(map->dso, type);
658 /*
659 * Since /proc/kallsyms will have multiple sessions for the
660 * kernel, with modules between them, fixup the end of all
661 * sections.
662 */
663 __map_groups__fixup_end(&machine->kmaps, type);
664 }
665
666 return ret;
667}
668
669int machine__load_vmlinux_path(struct machine *machine, enum map_type type,
670 symbol_filter_t filter)
671{
672 struct map *map = machine->vmlinux_maps[type];
673 int ret = dso__load_vmlinux_path(map->dso, map, filter);
674
Adrian Hunter39b12f782013-08-07 14:38:47 +0300675 if (ret > 0)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300676 dso__set_loaded(map->dso, type);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300677
678 return ret;
679}
680
681static void map_groups__fixup_end(struct map_groups *mg)
682{
683 int i;
684 for (i = 0; i < MAP__NR_TYPES; ++i)
685 __map_groups__fixup_end(mg, i);
686}
687
688static char *get_kernel_version(const char *root_dir)
689{
690 char version[PATH_MAX];
691 FILE *file;
692 char *name, *tmp;
693 const char *prefix = "Linux version ";
694
695 sprintf(version, "%s/proc/version", root_dir);
696 file = fopen(version, "r");
697 if (!file)
698 return NULL;
699
700 version[0] = '\0';
701 tmp = fgets(version, sizeof(version), file);
702 fclose(file);
703
704 name = strstr(version, prefix);
705 if (!name)
706 return NULL;
707 name += strlen(prefix);
708 tmp = strchr(name, ' ');
709 if (tmp)
710 *tmp = '\0';
711
712 return strdup(name);
713}
714
715static int map_groups__set_modules_path_dir(struct map_groups *mg,
716 const char *dir_name)
717{
718 struct dirent *dent;
719 DIR *dir = opendir(dir_name);
720 int ret = 0;
721
722 if (!dir) {
723 pr_debug("%s: cannot open %s dir\n", __func__, dir_name);
724 return -1;
725 }
726
727 while ((dent = readdir(dir)) != NULL) {
728 char path[PATH_MAX];
729 struct stat st;
730
731 /*sshfs might return bad dent->d_type, so we have to stat*/
732 snprintf(path, sizeof(path), "%s/%s", dir_name, dent->d_name);
733 if (stat(path, &st))
734 continue;
735
736 if (S_ISDIR(st.st_mode)) {
737 if (!strcmp(dent->d_name, ".") ||
738 !strcmp(dent->d_name, ".."))
739 continue;
740
741 ret = map_groups__set_modules_path_dir(mg, path);
742 if (ret < 0)
743 goto out;
744 } else {
745 char *dot = strrchr(dent->d_name, '.'),
746 dso_name[PATH_MAX];
747 struct map *map;
748 char *long_name;
749
750 if (dot == NULL || strcmp(dot, ".ko"))
751 continue;
752 snprintf(dso_name, sizeof(dso_name), "[%.*s]",
753 (int)(dot - dent->d_name), dent->d_name);
754
755 strxfrchar(dso_name, '-', '_');
756 map = map_groups__find_by_name(mg, MAP__FUNCTION,
757 dso_name);
758 if (map == NULL)
759 continue;
760
761 long_name = strdup(path);
762 if (long_name == NULL) {
763 ret = -1;
764 goto out;
765 }
766 dso__set_long_name(map->dso, long_name);
767 map->dso->lname_alloc = 1;
768 dso__kernel_module_get_build_id(map->dso, "");
769 }
770 }
771
772out:
773 closedir(dir);
774 return ret;
775}
776
777static int machine__set_modules_path(struct machine *machine)
778{
779 char *version;
780 char modules_path[PATH_MAX];
781
782 version = get_kernel_version(machine->root_dir);
783 if (!version)
784 return -1;
785
786 snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s/kernel",
787 machine->root_dir, version);
788 free(version);
789
790 return map_groups__set_modules_path_dir(&machine->kmaps, modules_path);
791}
792
Adrian Hunter316d70d2013-10-08 11:45:48 +0300793static int machine__create_module(void *arg, const char *name, u64 start)
794{
795 struct machine *machine = arg;
796 struct map *map;
797
798 map = machine__new_module(machine, start, name);
799 if (map == NULL)
800 return -1;
801
802 dso__kernel_module_get_build_id(map->dso, machine->root_dir);
803
804 return 0;
805}
806
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300807static int machine__create_modules(struct machine *machine)
808{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300809 const char *modules;
810 char path[PATH_MAX];
811
Adrian Hunterf4be9042013-09-22 13:22:09 +0300812 if (machine__is_default_guest(machine)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300813 modules = symbol_conf.default_guest_modules;
Adrian Hunterf4be9042013-09-22 13:22:09 +0300814 } else {
815 snprintf(path, PATH_MAX, "%s/proc/modules", machine->root_dir);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300816 modules = path;
817 }
818
Adrian Hunteraa7fe3b2013-09-22 13:22:09 +0300819 if (symbol__restricted_filename(modules, "/proc/modules"))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300820 return -1;
821
Adrian Hunter316d70d2013-10-08 11:45:48 +0300822 if (modules__parse(modules, machine, machine__create_module))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300823 return -1;
824
Adrian Hunter316d70d2013-10-08 11:45:48 +0300825 if (!machine__set_modules_path(machine))
826 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300827
Adrian Hunter316d70d2013-10-08 11:45:48 +0300828 pr_debug("Problems setting modules path maps, continuing anyway...\n");
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300829
Jason Wessel8f76fcd2013-07-15 15:27:53 -0500830 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300831}
832
833int machine__create_kernel_maps(struct machine *machine)
834{
835 struct dso *kernel = machine__get_kernel(machine);
836
837 if (kernel == NULL ||
838 __machine__create_kernel_maps(machine, kernel) < 0)
839 return -1;
840
841 if (symbol_conf.use_modules && machine__create_modules(machine) < 0) {
842 if (machine__is_host(machine))
843 pr_debug("Problems creating module maps, "
844 "continuing anyway...\n");
845 else
846 pr_debug("Problems creating module maps for guest %d, "
847 "continuing anyway...\n", machine->pid);
848 }
849
850 /*
851 * Now that we have all the maps created, just set the ->end of them:
852 */
853 map_groups__fixup_end(&machine->kmaps);
854 return 0;
855}
856
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300857static void machine__set_kernel_mmap_len(struct machine *machine,
858 union perf_event *event)
859{
Namhyung Kim4552cf0f2012-11-07 16:27:10 +0900860 int i;
861
862 for (i = 0; i < MAP__NR_TYPES; i++) {
863 machine->vmlinux_maps[i]->start = event->mmap.start;
864 machine->vmlinux_maps[i]->end = (event->mmap.start +
865 event->mmap.len);
866 /*
867 * Be a bit paranoid here, some perf.data file came with
868 * a zero sized synthesized MMAP event for the kernel.
869 */
870 if (machine->vmlinux_maps[i]->end == 0)
871 machine->vmlinux_maps[i]->end = ~0ULL;
872 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300873}
874
Adrian Hunter8e0cf962013-08-07 14:38:51 +0300875static bool machine__uses_kcore(struct machine *machine)
876{
877 struct dso *dso;
878
879 list_for_each_entry(dso, &machine->kernel_dsos, node) {
880 if (dso__is_kcore(dso))
881 return true;
882 }
883
884 return false;
885}
886
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300887static int machine__process_kernel_mmap_event(struct machine *machine,
888 union perf_event *event)
889{
890 struct map *map;
891 char kmmap_prefix[PATH_MAX];
892 enum dso_kernel_type kernel_type;
893 bool is_kernel_mmap;
894
Adrian Hunter8e0cf962013-08-07 14:38:51 +0300895 /* If we have maps from kcore then we do not need or want any others */
896 if (machine__uses_kcore(machine))
897 return 0;
898
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300899 machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
900 if (machine__is_host(machine))
901 kernel_type = DSO_TYPE_KERNEL;
902 else
903 kernel_type = DSO_TYPE_GUEST_KERNEL;
904
905 is_kernel_mmap = memcmp(event->mmap.filename,
906 kmmap_prefix,
907 strlen(kmmap_prefix) - 1) == 0;
908 if (event->mmap.filename[0] == '/' ||
909 (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
910
911 char short_module_name[1024];
912 char *name, *dot;
913
914 if (event->mmap.filename[0] == '/') {
915 name = strrchr(event->mmap.filename, '/');
916 if (name == NULL)
917 goto out_problem;
918
919 ++name; /* skip / */
920 dot = strrchr(name, '.');
921 if (dot == NULL)
922 goto out_problem;
923 snprintf(short_module_name, sizeof(short_module_name),
924 "[%.*s]", (int)(dot - name), name);
925 strxfrchar(short_module_name, '-', '_');
926 } else
927 strcpy(short_module_name, event->mmap.filename);
928
929 map = machine__new_module(machine, event->mmap.start,
930 event->mmap.filename);
931 if (map == NULL)
932 goto out_problem;
933
934 name = strdup(short_module_name);
935 if (name == NULL)
936 goto out_problem;
937
938 map->dso->short_name = name;
939 map->dso->sname_alloc = 1;
940 map->end = map->start + event->mmap.len;
941 } else if (is_kernel_mmap) {
942 const char *symbol_name = (event->mmap.filename +
943 strlen(kmmap_prefix));
944 /*
945 * Should be there already, from the build-id table in
946 * the header.
947 */
948 struct dso *kernel = __dsos__findnew(&machine->kernel_dsos,
949 kmmap_prefix);
950 if (kernel == NULL)
951 goto out_problem;
952
953 kernel->kernel = kernel_type;
954 if (__machine__create_kernel_maps(machine, kernel) < 0)
955 goto out_problem;
956
957 machine__set_kernel_mmap_len(machine, event);
958
959 /*
960 * Avoid using a zero address (kptr_restrict) for the ref reloc
961 * symbol. Effectively having zero here means that at record
962 * time /proc/sys/kernel/kptr_restrict was non zero.
963 */
964 if (event->mmap.pgoff != 0) {
965 maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps,
966 symbol_name,
967 event->mmap.pgoff);
968 }
969
970 if (machine__is_default_guest(machine)) {
971 /*
972 * preload dso of guest kernel and modules
973 */
974 dso__load(kernel, machine->vmlinux_maps[MAP__FUNCTION],
975 NULL);
976 }
977 }
978 return 0;
979out_problem:
980 return -1;
981}
982
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200983int machine__process_mmap2_event(struct machine *machine,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200984 union perf_event *event,
985 struct perf_sample *sample __maybe_unused)
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200986{
987 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
988 struct thread *thread;
989 struct map *map;
990 enum map_type type;
991 int ret = 0;
992
993 if (dump_trace)
994 perf_event__fprintf_mmap2(event, stdout);
995
996 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
997 cpumode == PERF_RECORD_MISC_KERNEL) {
998 ret = machine__process_kernel_mmap_event(machine, event);
999 if (ret < 0)
1000 goto out_problem;
1001 return 0;
1002 }
1003
1004 thread = machine__findnew_thread(machine, event->mmap2.pid,
1005 event->mmap2.pid);
1006 if (thread == NULL)
1007 goto out_problem;
1008
1009 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1010 type = MAP__VARIABLE;
1011 else
1012 type = MAP__FUNCTION;
1013
1014 map = map__new(&machine->user_dsos, event->mmap2.start,
1015 event->mmap2.len, event->mmap2.pgoff,
1016 event->mmap2.pid, event->mmap2.maj,
1017 event->mmap2.min, event->mmap2.ino,
1018 event->mmap2.ino_generation,
1019 event->mmap2.filename, type);
1020
1021 if (map == NULL)
1022 goto out_problem;
1023
1024 thread__insert_map(thread, map);
1025 return 0;
1026
1027out_problem:
1028 dump_printf("problem processing PERF_RECORD_MMAP2, skipping event.\n");
1029 return 0;
1030}
1031
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001032int machine__process_mmap_event(struct machine *machine, union perf_event *event,
1033 struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001034{
1035 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1036 struct thread *thread;
1037 struct map *map;
Stephane Eranianbad40912013-01-24 16:10:40 +01001038 enum map_type type;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001039 int ret = 0;
1040
1041 if (dump_trace)
1042 perf_event__fprintf_mmap(event, stdout);
1043
1044 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1045 cpumode == PERF_RECORD_MISC_KERNEL) {
1046 ret = machine__process_kernel_mmap_event(machine, event);
1047 if (ret < 0)
1048 goto out_problem;
1049 return 0;
1050 }
1051
Adrian Hunter314add62013-08-27 11:23:03 +03001052 thread = machine__findnew_thread(machine, event->mmap.pid,
1053 event->mmap.pid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001054 if (thread == NULL)
1055 goto out_problem;
Stephane Eranianbad40912013-01-24 16:10:40 +01001056
1057 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1058 type = MAP__VARIABLE;
1059 else
1060 type = MAP__FUNCTION;
1061
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001062 map = map__new(&machine->user_dsos, event->mmap.start,
1063 event->mmap.len, event->mmap.pgoff,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001064 event->mmap.pid, 0, 0, 0, 0,
1065 event->mmap.filename,
Stephane Eranianbad40912013-01-24 16:10:40 +01001066 type);
1067
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001068 if (map == NULL)
1069 goto out_problem;
1070
1071 thread__insert_map(thread, map);
1072 return 0;
1073
1074out_problem:
1075 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
1076 return 0;
1077}
1078
David Ahern236a3bb2013-08-14 08:49:27 -06001079static void machine__remove_thread(struct machine *machine, struct thread *th)
1080{
1081 machine->last_match = NULL;
1082 rb_erase(&th->rb_node, &machine->threads);
1083 /*
1084 * We may have references to this thread, for instance in some hist_entry
1085 * instances, so just move them to a separate list.
1086 */
1087 list_add_tail(&th->node, &machine->dead_threads);
1088}
1089
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001090int machine__process_fork_event(struct machine *machine, union perf_event *event,
1091 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001092{
David Ahern236a3bb2013-08-14 08:49:27 -06001093 struct thread *thread = machine__find_thread(machine, event->fork.tid);
Adrian Hunter314add62013-08-27 11:23:03 +03001094 struct thread *parent = machine__findnew_thread(machine,
1095 event->fork.ppid,
1096 event->fork.ptid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001097
David Ahern236a3bb2013-08-14 08:49:27 -06001098 /* if a thread currently exists for the thread id remove it */
1099 if (thread != NULL)
1100 machine__remove_thread(machine, thread);
1101
Adrian Hunter314add62013-08-27 11:23:03 +03001102 thread = machine__findnew_thread(machine, event->fork.pid,
1103 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001104 if (dump_trace)
1105 perf_event__fprintf_task(event, stdout);
1106
1107 if (thread == NULL || parent == NULL ||
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001108 thread__fork(thread, parent, sample->time) < 0) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001109 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
1110 return -1;
1111 }
1112
1113 return 0;
1114}
1115
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001116int machine__process_exit_event(struct machine *machine, union perf_event *event,
1117 struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001118{
1119 struct thread *thread = machine__find_thread(machine, event->fork.tid);
1120
1121 if (dump_trace)
1122 perf_event__fprintf_task(event, stdout);
1123
1124 if (thread != NULL)
David Ahern236a3bb2013-08-14 08:49:27 -06001125 thread__exited(thread);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001126
1127 return 0;
1128}
1129
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001130int machine__process_event(struct machine *machine, union perf_event *event,
1131 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001132{
1133 int ret;
1134
1135 switch (event->header.type) {
1136 case PERF_RECORD_COMM:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001137 ret = machine__process_comm_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001138 case PERF_RECORD_MMAP:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001139 ret = machine__process_mmap_event(machine, event, sample); break;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001140 case PERF_RECORD_MMAP2:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001141 ret = machine__process_mmap2_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001142 case PERF_RECORD_FORK:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001143 ret = machine__process_fork_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001144 case PERF_RECORD_EXIT:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001145 ret = machine__process_exit_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001146 case PERF_RECORD_LOST:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001147 ret = machine__process_lost_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001148 default:
1149 ret = -1;
1150 break;
1151 }
1152
1153 return ret;
1154}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001155
Greg Priceb21484f2012-12-06 21:48:05 -08001156static bool symbol__match_regex(struct symbol *sym, regex_t *regex)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001157{
Greg Priceb21484f2012-12-06 21:48:05 -08001158 if (sym->name && !regexec(regex, sym->name, 0, NULL, 0))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001159 return 1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001160 return 0;
1161}
1162
1163static const u8 cpumodes[] = {
1164 PERF_RECORD_MISC_USER,
1165 PERF_RECORD_MISC_KERNEL,
1166 PERF_RECORD_MISC_GUEST_USER,
1167 PERF_RECORD_MISC_GUEST_KERNEL
1168};
1169#define NCPUMODES (sizeof(cpumodes)/sizeof(u8))
1170
1171static void ip__resolve_ams(struct machine *machine, struct thread *thread,
1172 struct addr_map_symbol *ams,
1173 u64 ip)
1174{
1175 struct addr_location al;
1176 size_t i;
1177 u8 m;
1178
1179 memset(&al, 0, sizeof(al));
1180
1181 for (i = 0; i < NCPUMODES; i++) {
1182 m = cpumodes[i];
1183 /*
1184 * We cannot use the header.misc hint to determine whether a
1185 * branch stack address is user, kernel, guest, hypervisor.
1186 * Branches may straddle the kernel/user/hypervisor boundaries.
1187 * Thus, we have to try consecutively until we find a match
1188 * or else, the symbol is unknown
1189 */
1190 thread__find_addr_location(thread, machine, m, MAP__FUNCTION,
Adrian Hunter61710bd2013-08-08 14:32:26 +03001191 ip, &al);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001192 if (al.sym)
1193 goto found;
1194 }
1195found:
1196 ams->addr = ip;
1197 ams->al_addr = al.addr;
1198 ams->sym = al.sym;
1199 ams->map = al.map;
1200}
1201
Stephane Eranian98a3b322013-01-24 16:10:35 +01001202static void ip__resolve_data(struct machine *machine, struct thread *thread,
1203 u8 m, struct addr_map_symbol *ams, u64 addr)
1204{
1205 struct addr_location al;
1206
1207 memset(&al, 0, sizeof(al));
1208
Adrian Hunter61710bd2013-08-08 14:32:26 +03001209 thread__find_addr_location(thread, machine, m, MAP__VARIABLE, addr,
1210 &al);
Stephane Eranian98a3b322013-01-24 16:10:35 +01001211 ams->addr = addr;
1212 ams->al_addr = al.addr;
1213 ams->sym = al.sym;
1214 ams->map = al.map;
1215}
1216
1217struct mem_info *machine__resolve_mem(struct machine *machine,
1218 struct thread *thr,
1219 struct perf_sample *sample,
1220 u8 cpumode)
1221{
1222 struct mem_info *mi = zalloc(sizeof(*mi));
1223
1224 if (!mi)
1225 return NULL;
1226
1227 ip__resolve_ams(machine, thr, &mi->iaddr, sample->ip);
1228 ip__resolve_data(machine, thr, cpumode, &mi->daddr, sample->addr);
1229 mi->data_src.val = sample->data_src;
1230
1231 return mi;
1232}
1233
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001234struct branch_info *machine__resolve_bstack(struct machine *machine,
1235 struct thread *thr,
1236 struct branch_stack *bs)
1237{
1238 struct branch_info *bi;
1239 unsigned int i;
1240
1241 bi = calloc(bs->nr, sizeof(struct branch_info));
1242 if (!bi)
1243 return NULL;
1244
1245 for (i = 0; i < bs->nr; i++) {
1246 ip__resolve_ams(machine, thr, &bi[i].to, bs->entries[i].to);
1247 ip__resolve_ams(machine, thr, &bi[i].from, bs->entries[i].from);
1248 bi[i].flags = bs->entries[i].flags;
1249 }
1250 return bi;
1251}
1252
1253static int machine__resolve_callchain_sample(struct machine *machine,
1254 struct thread *thread,
1255 struct ip_callchain *chain,
Greg Priceb21484f2012-12-06 21:48:05 -08001256 struct symbol **parent,
Waiman Long91e95612013-10-18 10:38:48 -04001257 struct addr_location *root_al,
1258 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001259{
1260 u8 cpumode = PERF_RECORD_MISC_USER;
Waiman Long91e95612013-10-18 10:38:48 -04001261 int chain_nr = min(max_stack, (int)chain->nr);
1262 int i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001263 int err;
1264
1265 callchain_cursor_reset(&callchain_cursor);
1266
1267 if (chain->nr > PERF_MAX_STACK_DEPTH) {
1268 pr_warning("corrupted callchain. skipping...\n");
1269 return 0;
1270 }
1271
Waiman Long91e95612013-10-18 10:38:48 -04001272 for (i = 0; i < chain_nr; i++) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001273 u64 ip;
1274 struct addr_location al;
1275
1276 if (callchain_param.order == ORDER_CALLEE)
1277 ip = chain->ips[i];
1278 else
1279 ip = chain->ips[chain->nr - i - 1];
1280
1281 if (ip >= PERF_CONTEXT_MAX) {
1282 switch (ip) {
1283 case PERF_CONTEXT_HV:
1284 cpumode = PERF_RECORD_MISC_HYPERVISOR;
1285 break;
1286 case PERF_CONTEXT_KERNEL:
1287 cpumode = PERF_RECORD_MISC_KERNEL;
1288 break;
1289 case PERF_CONTEXT_USER:
1290 cpumode = PERF_RECORD_MISC_USER;
1291 break;
1292 default:
1293 pr_debug("invalid callchain context: "
1294 "%"PRId64"\n", (s64) ip);
1295 /*
1296 * It seems the callchain is corrupted.
1297 * Discard all.
1298 */
1299 callchain_cursor_reset(&callchain_cursor);
1300 return 0;
1301 }
1302 continue;
1303 }
1304
1305 al.filtered = false;
1306 thread__find_addr_location(thread, machine, cpumode,
Adrian Hunter61710bd2013-08-08 14:32:26 +03001307 MAP__FUNCTION, ip, &al);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001308 if (al.sym != NULL) {
1309 if (sort__has_parent && !*parent &&
Greg Priceb21484f2012-12-06 21:48:05 -08001310 symbol__match_regex(al.sym, &parent_regex))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001311 *parent = al.sym;
Greg Priceb21484f2012-12-06 21:48:05 -08001312 else if (have_ignore_callees && root_al &&
1313 symbol__match_regex(al.sym, &ignore_callees_regex)) {
1314 /* Treat this symbol as the root,
1315 forgetting its callees. */
1316 *root_al = al;
1317 callchain_cursor_reset(&callchain_cursor);
1318 }
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001319 if (!symbol_conf.use_callchain)
1320 break;
1321 }
1322
1323 err = callchain_cursor_append(&callchain_cursor,
1324 ip, al.map, al.sym);
1325 if (err)
1326 return err;
1327 }
1328
1329 return 0;
1330}
1331
1332static int unwind_entry(struct unwind_entry *entry, void *arg)
1333{
1334 struct callchain_cursor *cursor = arg;
1335 return callchain_cursor_append(cursor, entry->ip,
1336 entry->map, entry->sym);
1337}
1338
1339int machine__resolve_callchain(struct machine *machine,
1340 struct perf_evsel *evsel,
1341 struct thread *thread,
1342 struct perf_sample *sample,
Greg Priceb21484f2012-12-06 21:48:05 -08001343 struct symbol **parent,
Waiman Long91e95612013-10-18 10:38:48 -04001344 struct addr_location *root_al,
1345 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001346{
1347 int ret;
1348
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001349 ret = machine__resolve_callchain_sample(machine, thread,
Waiman Long91e95612013-10-18 10:38:48 -04001350 sample->callchain, parent,
1351 root_al, max_stack);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001352 if (ret)
1353 return ret;
1354
1355 /* Can we do dwarf post unwind? */
1356 if (!((evsel->attr.sample_type & PERF_SAMPLE_REGS_USER) &&
1357 (evsel->attr.sample_type & PERF_SAMPLE_STACK_USER)))
1358 return 0;
1359
1360 /* Bail out if nothing was captured. */
1361 if ((!sample->user_regs.regs) ||
1362 (!sample->user_stack.size))
1363 return 0;
1364
1365 return unwind__get_entries(unwind_entry, &callchain_cursor, machine,
1366 thread, evsel->attr.sample_regs_user,
Arnaldo Carvalho de Melo37676af2013-11-13 17:40:36 -03001367 sample, max_stack);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001368
1369}
David Ahern35feee12013-09-28 13:12:58 -06001370
1371int machine__for_each_thread(struct machine *machine,
1372 int (*fn)(struct thread *thread, void *p),
1373 void *priv)
1374{
1375 struct rb_node *nd;
1376 struct thread *thread;
1377 int rc = 0;
1378
1379 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
1380 thread = rb_entry(nd, struct thread, rb_node);
1381 rc = fn(thread, priv);
1382 if (rc != 0)
1383 return rc;
1384 }
1385
1386 list_for_each_entry(thread, &machine->dead_threads, node) {
1387 rc = fn(thread, priv);
1388 if (rc != 0)
1389 return rc;
1390 }
1391 return rc;
1392}
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001393
Arnaldo Carvalho de Meloa33fbd52013-11-11 11:36:12 -03001394int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool,
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001395 struct target *target, struct thread_map *threads,
Arnaldo Carvalho de Meloa33fbd52013-11-11 11:36:12 -03001396 perf_event__handler_t process, bool data_mmap)
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001397{
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001398 if (target__has_task(target))
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001399 return perf_event__synthesize_thread_map(tool, threads, process, machine, data_mmap);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001400 else if (target__has_cpu(target))
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001401 return perf_event__synthesize_threads(tool, process, machine, data_mmap);
1402 /* command specified */
1403 return 0;
1404}