blob: 65269b8ac1866da1133be1e6553c1b6f17c1c178 [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"
Adrian Hunterd027b642014-07-23 14:23:00 +030011#include "vdso.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030012#include <stdbool.h>
Arnaldo Carvalho de Meloc506c962013-12-11 09:15:00 -030013#include <symbol/kallsyms.h>
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030014#include "unwind.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030015
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030016int machine__init(struct machine *machine, const char *root_dir, pid_t pid)
17{
18 map_groups__init(&machine->kmaps);
19 RB_CLEAR_NODE(&machine->rb_node);
20 INIT_LIST_HEAD(&machine->user_dsos);
21 INIT_LIST_HEAD(&machine->kernel_dsos);
22
23 machine->threads = RB_ROOT;
24 INIT_LIST_HEAD(&machine->dead_threads);
25 machine->last_match = NULL;
26
Adrian Hunterd027b642014-07-23 14:23:00 +030027 machine->vdso_info = NULL;
28
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030029 machine->kmaps.machine = machine;
30 machine->pid = pid;
31
Adrian Hunter611a5ce2013-08-08 14:32:20 +030032 machine->symbol_filter = NULL;
Jiri Olsa14bd6d22014-01-07 13:47:19 +010033 machine->id_hdr_size = 0;
Adrian Hunter611a5ce2013-08-08 14:32:20 +030034
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030035 machine->root_dir = strdup(root_dir);
36 if (machine->root_dir == NULL)
37 return -ENOMEM;
38
39 if (pid != HOST_KERNEL_ID) {
Adrian Hunter1fcb8762014-07-14 13:02:25 +030040 struct thread *thread = machine__findnew_thread(machine, -1,
Adrian Hunter314add62013-08-27 11:23:03 +030041 pid);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030042 char comm[64];
43
44 if (thread == NULL)
45 return -ENOMEM;
46
47 snprintf(comm, sizeof(comm), "[guest/%d]", pid);
Frederic Weisbecker162f0be2013-09-11 16:18:24 +020048 thread__set_comm(thread, comm, 0);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030049 }
50
Adrian Hunterb9d266b2014-07-22 16:17:25 +030051 machine->current_tid = NULL;
52
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030053 return 0;
54}
55
David Ahern8fb598e2013-09-28 13:13:00 -060056struct machine *machine__new_host(void)
57{
58 struct machine *machine = malloc(sizeof(*machine));
59
60 if (machine != NULL) {
61 machine__init(machine, "", HOST_KERNEL_ID);
62
63 if (machine__create_kernel_maps(machine) < 0)
64 goto out_delete;
65 }
66
67 return machine;
68out_delete:
69 free(machine);
70 return NULL;
71}
72
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030073static void dsos__delete(struct list_head *dsos)
74{
75 struct dso *pos, *n;
76
77 list_for_each_entry_safe(pos, n, dsos, node) {
78 list_del(&pos->node);
79 dso__delete(pos);
80 }
81}
82
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030083void machine__delete_dead_threads(struct machine *machine)
84{
85 struct thread *n, *t;
86
87 list_for_each_entry_safe(t, n, &machine->dead_threads, node) {
88 list_del(&t->node);
89 thread__delete(t);
90 }
91}
92
93void machine__delete_threads(struct machine *machine)
94{
95 struct rb_node *nd = rb_first(&machine->threads);
96
97 while (nd) {
98 struct thread *t = rb_entry(nd, struct thread, rb_node);
99
100 rb_erase(&t->rb_node, &machine->threads);
101 nd = rb_next(nd);
102 thread__delete(t);
103 }
104}
105
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300106void machine__exit(struct machine *machine)
107{
108 map_groups__exit(&machine->kmaps);
109 dsos__delete(&machine->user_dsos);
110 dsos__delete(&machine->kernel_dsos);
Adrian Hunterd027b642014-07-23 14:23:00 +0300111 vdso__exit(machine);
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300112 zfree(&machine->root_dir);
Adrian Hunterb9d266b2014-07-22 16:17:25 +0300113 zfree(&machine->current_tid);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300114}
115
116void machine__delete(struct machine *machine)
117{
118 machine__exit(machine);
119 free(machine);
120}
121
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300122void machines__init(struct machines *machines)
123{
124 machine__init(&machines->host, "", HOST_KERNEL_ID);
125 machines->guests = RB_ROOT;
Adrian Hunter611a5ce2013-08-08 14:32:20 +0300126 machines->symbol_filter = NULL;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300127}
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,
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300136 const char *root_dir)
137{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300138 struct rb_node **p = &machines->guests.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300139 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
Adrian Hunter611a5ce2013-08-08 14:32:20 +0300150 machine->symbol_filter = machines->symbol_filter;
151
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300152 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);
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300162 rb_insert_color(&machine->rb_node, &machines->guests);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300163
164 return machine;
165}
166
Adrian Hunter611a5ce2013-08-08 14:32:20 +0300167void 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
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300182struct machine *machines__find(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300183{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300184 struct rb_node **p = &machines->guests.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300185 struct rb_node *parent = NULL;
186 struct machine *machine;
187 struct machine *default_machine = NULL;
188
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300189 if (pid == HOST_KERNEL_ID)
190 return &machines->host;
191
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300192 while (*p != NULL) {
193 parent = *p;
194 machine = rb_entry(parent, struct machine, rb_node);
195 if (pid < machine->pid)
196 p = &(*p)->rb_left;
197 else if (pid > machine->pid)
198 p = &(*p)->rb_right;
199 else
200 return machine;
201 if (!machine->pid)
202 default_machine = machine;
203 }
204
205 return default_machine;
206}
207
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300208struct machine *machines__findnew(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300209{
210 char path[PATH_MAX];
211 const char *root_dir = "";
212 struct machine *machine = machines__find(machines, pid);
213
214 if (machine && (machine->pid == pid))
215 goto out;
216
217 if ((pid != HOST_KERNEL_ID) &&
218 (pid != DEFAULT_GUEST_KERNEL_ID) &&
219 (symbol_conf.guestmount)) {
220 sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
221 if (access(path, R_OK)) {
222 static struct strlist *seen;
223
224 if (!seen)
225 seen = strlist__new(true, NULL);
226
227 if (!strlist__has_entry(seen, path)) {
228 pr_err("Can't access file %s\n", path);
229 strlist__add(seen, path);
230 }
231 machine = NULL;
232 goto out;
233 }
234 root_dir = path;
235 }
236
237 machine = machines__add(machines, pid, root_dir);
238out:
239 return machine;
240}
241
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300242void machines__process_guests(struct machines *machines,
243 machine__process_t process, void *data)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300244{
245 struct rb_node *nd;
246
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300247 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300248 struct machine *pos = rb_entry(nd, struct machine, rb_node);
249 process(pos, data);
250 }
251}
252
253char *machine__mmap_name(struct machine *machine, char *bf, size_t size)
254{
255 if (machine__is_host(machine))
256 snprintf(bf, size, "[%s]", "kernel.kallsyms");
257 else if (machine__is_default_guest(machine))
258 snprintf(bf, size, "[%s]", "guest.kernel.kallsyms");
259 else {
260 snprintf(bf, size, "[%s.%d]", "guest.kernel.kallsyms",
261 machine->pid);
262 }
263
264 return bf;
265}
266
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300267void machines__set_id_hdr_size(struct machines *machines, u16 id_hdr_size)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300268{
269 struct rb_node *node;
270 struct machine *machine;
271
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300272 machines->host.id_hdr_size = id_hdr_size;
273
274 for (node = rb_first(&machines->guests); node; node = rb_next(node)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300275 machine = rb_entry(node, struct machine, rb_node);
276 machine->id_hdr_size = id_hdr_size;
277 }
278
279 return;
280}
281
Adrian Hunter29ce3612014-07-16 11:07:13 +0300282static void machine__update_thread_pid(struct machine *machine,
283 struct thread *th, pid_t pid)
284{
285 struct thread *leader;
286
287 if (pid == th->pid_ || pid == -1 || th->pid_ != -1)
288 return;
289
290 th->pid_ = pid;
291
292 if (th->pid_ == th->tid)
293 return;
294
295 leader = machine__findnew_thread(machine, th->pid_, th->pid_);
296 if (!leader)
297 goto out_err;
298
299 if (!leader->mg)
300 leader->mg = map_groups__new();
301
302 if (!leader->mg)
303 goto out_err;
304
305 if (th->mg == leader->mg)
306 return;
307
308 if (th->mg) {
309 /*
310 * Maps are created from MMAP events which provide the pid and
311 * tid. Consequently there never should be any maps on a thread
312 * with an unknown pid. Just print an error if there are.
313 */
314 if (!map_groups__empty(th->mg))
315 pr_err("Discarding thread maps for %d:%d\n",
316 th->pid_, th->tid);
317 map_groups__delete(th->mg);
318 }
319
320 th->mg = map_groups__get(leader->mg);
321
322 return;
323
324out_err:
325 pr_err("Failed to join map groups for %d:%d\n", th->pid_, th->tid);
326}
327
Adrian Hunter99d725f2013-08-26 16:00:19 +0300328static struct thread *__machine__findnew_thread(struct machine *machine,
329 pid_t pid, pid_t tid,
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300330 bool create)
331{
332 struct rb_node **p = &machine->threads.rb_node;
333 struct rb_node *parent = NULL;
334 struct thread *th;
335
336 /*
Adrian Hunter38051232013-07-04 16:20:31 +0300337 * Front-end cache - TID lookups come in blocks,
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300338 * so most of the time we dont have to look up
339 * the full rbtree:
340 */
Adrian Hunter29ce3612014-07-16 11:07:13 +0300341 th = machine->last_match;
342 if (th && th->tid == tid) {
343 machine__update_thread_pid(machine, th, pid);
344 return th;
Adrian Hunter99d725f2013-08-26 16:00:19 +0300345 }
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300346
347 while (*p != NULL) {
348 parent = *p;
349 th = rb_entry(parent, struct thread, rb_node);
350
Adrian Hunter38051232013-07-04 16:20:31 +0300351 if (th->tid == tid) {
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300352 machine->last_match = th;
Adrian Hunter29ce3612014-07-16 11:07:13 +0300353 machine__update_thread_pid(machine, th, pid);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300354 return th;
355 }
356
Adrian Hunter38051232013-07-04 16:20:31 +0300357 if (tid < th->tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300358 p = &(*p)->rb_left;
359 else
360 p = &(*p)->rb_right;
361 }
362
363 if (!create)
364 return NULL;
365
Adrian Hunter99d725f2013-08-26 16:00:19 +0300366 th = thread__new(pid, tid);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300367 if (th != NULL) {
368 rb_link_node(&th->rb_node, parent, p);
369 rb_insert_color(&th->rb_node, &machine->threads);
370 machine->last_match = th;
Jiri Olsacddcef62014-04-09 20:54:29 +0200371
372 /*
373 * We have to initialize map_groups separately
374 * after rb tree is updated.
375 *
376 * The reason is that we call machine__findnew_thread
377 * within thread__init_map_groups to find the thread
378 * leader and that would screwed the rb tree.
379 */
Adrian Hunter418029b2014-07-16 10:19:44 +0300380 if (thread__init_map_groups(th, machine)) {
381 thread__delete(th);
Jiri Olsacddcef62014-04-09 20:54:29 +0200382 return NULL;
Adrian Hunter418029b2014-07-16 10:19:44 +0300383 }
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300384 }
385
386 return th;
387}
388
Adrian Hunter314add62013-08-27 11:23:03 +0300389struct thread *machine__findnew_thread(struct machine *machine, pid_t pid,
390 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300391{
Adrian Hunter314add62013-08-27 11:23:03 +0300392 return __machine__findnew_thread(machine, pid, tid, true);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300393}
394
Jiri Olsad75e6092014-03-14 15:00:03 +0100395struct thread *machine__find_thread(struct machine *machine, pid_t pid,
396 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300397{
Jiri Olsad75e6092014-03-14 15:00:03 +0100398 return __machine__findnew_thread(machine, pid, tid, false);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300399}
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300400
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200401int machine__process_comm_event(struct machine *machine, union perf_event *event,
402 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300403{
Adrian Hunter314add62013-08-27 11:23:03 +0300404 struct thread *thread = machine__findnew_thread(machine,
405 event->comm.pid,
406 event->comm.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300407
408 if (dump_trace)
409 perf_event__fprintf_comm(event, stdout);
410
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200411 if (thread == NULL || thread__set_comm(thread, event->comm.comm, sample->time)) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300412 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
413 return -1;
414 }
415
416 return 0;
417}
418
419int machine__process_lost_event(struct machine *machine __maybe_unused,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200420 union perf_event *event, struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300421{
422 dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
423 event->lost.id, event->lost.lost);
424 return 0;
425}
426
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300427struct map *machine__new_module(struct machine *machine, u64 start,
428 const char *filename)
429{
430 struct map *map;
431 struct dso *dso = __dsos__findnew(&machine->kernel_dsos, filename);
432
433 if (dso == NULL)
434 return NULL;
435
436 map = map__new2(start, dso, MAP__FUNCTION);
437 if (map == NULL)
438 return NULL;
439
440 if (machine__is_host(machine))
441 dso->symtab_type = DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE;
442 else
443 dso->symtab_type = DSO_BINARY_TYPE__GUEST_KMODULE;
444 map_groups__insert(&machine->kmaps, map);
445 return map;
446}
447
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300448size_t machines__fprintf_dsos(struct machines *machines, FILE *fp)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300449{
450 struct rb_node *nd;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300451 size_t ret = __dsos__fprintf(&machines->host.kernel_dsos, fp) +
452 __dsos__fprintf(&machines->host.user_dsos, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300453
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300454 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300455 struct machine *pos = rb_entry(nd, struct machine, rb_node);
456 ret += __dsos__fprintf(&pos->kernel_dsos, fp);
457 ret += __dsos__fprintf(&pos->user_dsos, fp);
458 }
459
460 return ret;
461}
462
463size_t machine__fprintf_dsos_buildid(struct machine *machine, FILE *fp,
464 bool (skip)(struct dso *dso, int parm), int parm)
465{
466 return __dsos__fprintf_buildid(&machine->kernel_dsos, fp, skip, parm) +
467 __dsos__fprintf_buildid(&machine->user_dsos, fp, skip, parm);
468}
469
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300470size_t machines__fprintf_dsos_buildid(struct machines *machines, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300471 bool (skip)(struct dso *dso, int parm), int parm)
472{
473 struct rb_node *nd;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300474 size_t ret = machine__fprintf_dsos_buildid(&machines->host, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300475
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300476 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300477 struct machine *pos = rb_entry(nd, struct machine, rb_node);
478 ret += machine__fprintf_dsos_buildid(pos, fp, skip, parm);
479 }
480 return ret;
481}
482
483size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp)
484{
485 int i;
486 size_t printed = 0;
487 struct dso *kdso = machine->vmlinux_maps[MAP__FUNCTION]->dso;
488
489 if (kdso->has_build_id) {
490 char filename[PATH_MAX];
491 if (dso__build_id_filename(kdso, filename, sizeof(filename)))
492 printed += fprintf(fp, "[0] %s\n", filename);
493 }
494
495 for (i = 0; i < vmlinux_path__nr_entries; ++i)
496 printed += fprintf(fp, "[%d] %s\n",
497 i + kdso->has_build_id, vmlinux_path[i]);
498
499 return printed;
500}
501
502size_t machine__fprintf(struct machine *machine, FILE *fp)
503{
504 size_t ret = 0;
505 struct rb_node *nd;
506
507 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
508 struct thread *pos = rb_entry(nd, struct thread, rb_node);
509
510 ret += thread__fprintf(pos, fp);
511 }
512
513 return ret;
514}
515
516static struct dso *machine__get_kernel(struct machine *machine)
517{
518 const char *vmlinux_name = NULL;
519 struct dso *kernel;
520
521 if (machine__is_host(machine)) {
522 vmlinux_name = symbol_conf.vmlinux_name;
523 if (!vmlinux_name)
524 vmlinux_name = "[kernel.kallsyms]";
525
526 kernel = dso__kernel_findnew(machine, vmlinux_name,
527 "[kernel]",
528 DSO_TYPE_KERNEL);
529 } else {
530 char bf[PATH_MAX];
531
532 if (machine__is_default_guest(machine))
533 vmlinux_name = symbol_conf.default_guest_vmlinux_name;
534 if (!vmlinux_name)
535 vmlinux_name = machine__mmap_name(machine, bf,
536 sizeof(bf));
537
538 kernel = dso__kernel_findnew(machine, vmlinux_name,
539 "[guest.kernel]",
540 DSO_TYPE_GUEST_KERNEL);
541 }
542
543 if (kernel != NULL && (!kernel->has_build_id))
544 dso__read_running_kernel_build_id(kernel, machine);
545
546 return kernel;
547}
548
549struct process_args {
550 u64 start;
551};
552
Adrian Hunter15a0a872014-01-29 16:14:38 +0200553static void machine__get_kallsyms_filename(struct machine *machine, char *buf,
554 size_t bufsz)
555{
556 if (machine__is_default_guest(machine))
557 scnprintf(buf, bufsz, "%s", symbol_conf.default_guest_kallsyms);
558 else
559 scnprintf(buf, bufsz, "%s/proc/kallsyms", machine->root_dir);
560}
561
Simon Quea93f0e52014-06-16 11:32:09 -0700562const char *ref_reloc_sym_names[] = {"_text", "_stext", NULL};
563
564/* Figure out the start address of kernel map from /proc/kallsyms.
565 * Returns the name of the start symbol in *symbol_name. Pass in NULL as
566 * symbol_name if it's not that important.
567 */
568static u64 machine__get_kernel_start_addr(struct machine *machine,
569 const char **symbol_name)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300570{
Adrian Hunter15a0a872014-01-29 16:14:38 +0200571 char filename[PATH_MAX];
Simon Quea93f0e52014-06-16 11:32:09 -0700572 int i;
573 const char *name;
574 u64 addr = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300575
Adrian Hunter15a0a872014-01-29 16:14:38 +0200576 machine__get_kallsyms_filename(machine, filename, PATH_MAX);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300577
578 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
579 return 0;
580
Simon Quea93f0e52014-06-16 11:32:09 -0700581 for (i = 0; (name = ref_reloc_sym_names[i]) != NULL; i++) {
582 addr = kallsyms__get_function_start(filename, name);
583 if (addr)
584 break;
585 }
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300586
Simon Quea93f0e52014-06-16 11:32:09 -0700587 if (symbol_name)
588 *symbol_name = name;
589
590 return addr;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300591}
592
593int __machine__create_kernel_maps(struct machine *machine, struct dso *kernel)
594{
595 enum map_type type;
Simon Quea93f0e52014-06-16 11:32:09 -0700596 u64 start = machine__get_kernel_start_addr(machine, NULL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300597
598 for (type = 0; type < MAP__NR_TYPES; ++type) {
599 struct kmap *kmap;
600
601 machine->vmlinux_maps[type] = map__new2(start, kernel, type);
602 if (machine->vmlinux_maps[type] == NULL)
603 return -1;
604
605 machine->vmlinux_maps[type]->map_ip =
606 machine->vmlinux_maps[type]->unmap_ip =
607 identity__map_ip;
608 kmap = map__kmap(machine->vmlinux_maps[type]);
609 kmap->kmaps = &machine->kmaps;
610 map_groups__insert(&machine->kmaps,
611 machine->vmlinux_maps[type]);
612 }
613
614 return 0;
615}
616
617void machine__destroy_kernel_maps(struct machine *machine)
618{
619 enum map_type type;
620
621 for (type = 0; type < MAP__NR_TYPES; ++type) {
622 struct kmap *kmap;
623
624 if (machine->vmlinux_maps[type] == NULL)
625 continue;
626
627 kmap = map__kmap(machine->vmlinux_maps[type]);
628 map_groups__remove(&machine->kmaps,
629 machine->vmlinux_maps[type]);
630 if (kmap->ref_reloc_sym) {
631 /*
632 * ref_reloc_sym is shared among all maps, so free just
633 * on one of them.
634 */
635 if (type == MAP__FUNCTION) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300636 zfree((char **)&kmap->ref_reloc_sym->name);
637 zfree(&kmap->ref_reloc_sym);
638 } else
639 kmap->ref_reloc_sym = NULL;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300640 }
641
642 map__delete(machine->vmlinux_maps[type]);
643 machine->vmlinux_maps[type] = NULL;
644 }
645}
646
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300647int machines__create_guest_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300648{
649 int ret = 0;
650 struct dirent **namelist = NULL;
651 int i, items = 0;
652 char path[PATH_MAX];
653 pid_t pid;
654 char *endp;
655
656 if (symbol_conf.default_guest_vmlinux_name ||
657 symbol_conf.default_guest_modules ||
658 symbol_conf.default_guest_kallsyms) {
659 machines__create_kernel_maps(machines, DEFAULT_GUEST_KERNEL_ID);
660 }
661
662 if (symbol_conf.guestmount) {
663 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
664 if (items <= 0)
665 return -ENOENT;
666 for (i = 0; i < items; i++) {
667 if (!isdigit(namelist[i]->d_name[0])) {
668 /* Filter out . and .. */
669 continue;
670 }
671 pid = (pid_t)strtol(namelist[i]->d_name, &endp, 10);
672 if ((*endp != '\0') ||
673 (endp == namelist[i]->d_name) ||
674 (errno == ERANGE)) {
675 pr_debug("invalid directory (%s). Skipping.\n",
676 namelist[i]->d_name);
677 continue;
678 }
679 sprintf(path, "%s/%s/proc/kallsyms",
680 symbol_conf.guestmount,
681 namelist[i]->d_name);
682 ret = access(path, R_OK);
683 if (ret) {
684 pr_debug("Can't access file %s\n", path);
685 goto failure;
686 }
687 machines__create_kernel_maps(machines, pid);
688 }
689failure:
690 free(namelist);
691 }
692
693 return ret;
694}
695
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300696void machines__destroy_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300697{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300698 struct rb_node *next = rb_first(&machines->guests);
699
700 machine__destroy_kernel_maps(&machines->host);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300701
702 while (next) {
703 struct machine *pos = rb_entry(next, struct machine, rb_node);
704
705 next = rb_next(&pos->rb_node);
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300706 rb_erase(&pos->rb_node, &machines->guests);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300707 machine__delete(pos);
708 }
709}
710
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300711int machines__create_kernel_maps(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300712{
713 struct machine *machine = machines__findnew(machines, pid);
714
715 if (machine == NULL)
716 return -1;
717
718 return machine__create_kernel_maps(machine);
719}
720
721int machine__load_kallsyms(struct machine *machine, const char *filename,
722 enum map_type type, symbol_filter_t filter)
723{
724 struct map *map = machine->vmlinux_maps[type];
725 int ret = dso__load_kallsyms(map->dso, filename, map, filter);
726
727 if (ret > 0) {
728 dso__set_loaded(map->dso, type);
729 /*
730 * Since /proc/kallsyms will have multiple sessions for the
731 * kernel, with modules between them, fixup the end of all
732 * sections.
733 */
734 __map_groups__fixup_end(&machine->kmaps, type);
735 }
736
737 return ret;
738}
739
740int machine__load_vmlinux_path(struct machine *machine, enum map_type type,
741 symbol_filter_t filter)
742{
743 struct map *map = machine->vmlinux_maps[type];
744 int ret = dso__load_vmlinux_path(map->dso, map, filter);
745
Adrian Hunter39b12f782013-08-07 14:38:47 +0300746 if (ret > 0)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300747 dso__set_loaded(map->dso, type);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300748
749 return ret;
750}
751
752static void map_groups__fixup_end(struct map_groups *mg)
753{
754 int i;
755 for (i = 0; i < MAP__NR_TYPES; ++i)
756 __map_groups__fixup_end(mg, i);
757}
758
759static char *get_kernel_version(const char *root_dir)
760{
761 char version[PATH_MAX];
762 FILE *file;
763 char *name, *tmp;
764 const char *prefix = "Linux version ";
765
766 sprintf(version, "%s/proc/version", root_dir);
767 file = fopen(version, "r");
768 if (!file)
769 return NULL;
770
771 version[0] = '\0';
772 tmp = fgets(version, sizeof(version), file);
773 fclose(file);
774
775 name = strstr(version, prefix);
776 if (!name)
777 return NULL;
778 name += strlen(prefix);
779 tmp = strchr(name, ' ');
780 if (tmp)
781 *tmp = '\0';
782
783 return strdup(name);
784}
785
786static int map_groups__set_modules_path_dir(struct map_groups *mg,
Richard Yao61d42902014-04-26 13:17:55 -0400787 const char *dir_name, int depth)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300788{
789 struct dirent *dent;
790 DIR *dir = opendir(dir_name);
791 int ret = 0;
792
793 if (!dir) {
794 pr_debug("%s: cannot open %s dir\n", __func__, dir_name);
795 return -1;
796 }
797
798 while ((dent = readdir(dir)) != NULL) {
799 char path[PATH_MAX];
800 struct stat st;
801
802 /*sshfs might return bad dent->d_type, so we have to stat*/
803 snprintf(path, sizeof(path), "%s/%s", dir_name, dent->d_name);
804 if (stat(path, &st))
805 continue;
806
807 if (S_ISDIR(st.st_mode)) {
808 if (!strcmp(dent->d_name, ".") ||
809 !strcmp(dent->d_name, ".."))
810 continue;
811
Richard Yao61d42902014-04-26 13:17:55 -0400812 /* Do not follow top-level source and build symlinks */
813 if (depth == 0) {
814 if (!strcmp(dent->d_name, "source") ||
815 !strcmp(dent->d_name, "build"))
816 continue;
817 }
818
819 ret = map_groups__set_modules_path_dir(mg, path,
820 depth + 1);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300821 if (ret < 0)
822 goto out;
823 } else {
824 char *dot = strrchr(dent->d_name, '.'),
825 dso_name[PATH_MAX];
826 struct map *map;
827 char *long_name;
828
829 if (dot == NULL || strcmp(dot, ".ko"))
830 continue;
831 snprintf(dso_name, sizeof(dso_name), "[%.*s]",
832 (int)(dot - dent->d_name), dent->d_name);
833
834 strxfrchar(dso_name, '-', '_');
835 map = map_groups__find_by_name(mg, MAP__FUNCTION,
836 dso_name);
837 if (map == NULL)
838 continue;
839
840 long_name = strdup(path);
841 if (long_name == NULL) {
842 ret = -1;
843 goto out;
844 }
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -0300845 dso__set_long_name(map->dso, long_name, true);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300846 dso__kernel_module_get_build_id(map->dso, "");
847 }
848 }
849
850out:
851 closedir(dir);
852 return ret;
853}
854
855static int machine__set_modules_path(struct machine *machine)
856{
857 char *version;
858 char modules_path[PATH_MAX];
859
860 version = get_kernel_version(machine->root_dir);
861 if (!version)
862 return -1;
863
Richard Yao61d42902014-04-26 13:17:55 -0400864 snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s",
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300865 machine->root_dir, version);
866 free(version);
867
Richard Yao61d42902014-04-26 13:17:55 -0400868 return map_groups__set_modules_path_dir(&machine->kmaps, modules_path, 0);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300869}
870
Adrian Hunter316d70d2013-10-08 11:45:48 +0300871static int machine__create_module(void *arg, const char *name, u64 start)
872{
873 struct machine *machine = arg;
874 struct map *map;
875
876 map = machine__new_module(machine, start, name);
877 if (map == NULL)
878 return -1;
879
880 dso__kernel_module_get_build_id(map->dso, machine->root_dir);
881
882 return 0;
883}
884
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300885static int machine__create_modules(struct machine *machine)
886{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300887 const char *modules;
888 char path[PATH_MAX];
889
Adrian Hunterf4be9042013-09-22 13:22:09 +0300890 if (machine__is_default_guest(machine)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300891 modules = symbol_conf.default_guest_modules;
Adrian Hunterf4be9042013-09-22 13:22:09 +0300892 } else {
893 snprintf(path, PATH_MAX, "%s/proc/modules", machine->root_dir);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300894 modules = path;
895 }
896
Adrian Hunteraa7fe3b2013-09-22 13:22:09 +0300897 if (symbol__restricted_filename(modules, "/proc/modules"))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300898 return -1;
899
Adrian Hunter316d70d2013-10-08 11:45:48 +0300900 if (modules__parse(modules, machine, machine__create_module))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300901 return -1;
902
Adrian Hunter316d70d2013-10-08 11:45:48 +0300903 if (!machine__set_modules_path(machine))
904 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300905
Adrian Hunter316d70d2013-10-08 11:45:48 +0300906 pr_debug("Problems setting modules path maps, continuing anyway...\n");
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300907
Jason Wessel8f76fcd2013-07-15 15:27:53 -0500908 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300909}
910
911int machine__create_kernel_maps(struct machine *machine)
912{
913 struct dso *kernel = machine__get_kernel(machine);
Adrian Hunter5512cf22014-01-29 16:14:39 +0200914 const char *name;
Simon Quea93f0e52014-06-16 11:32:09 -0700915 u64 addr = machine__get_kernel_start_addr(machine, &name);
Adrian Hunter5512cf22014-01-29 16:14:39 +0200916 if (!addr)
917 return -1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300918
919 if (kernel == NULL ||
920 __machine__create_kernel_maps(machine, kernel) < 0)
921 return -1;
922
923 if (symbol_conf.use_modules && machine__create_modules(machine) < 0) {
924 if (machine__is_host(machine))
925 pr_debug("Problems creating module maps, "
926 "continuing anyway...\n");
927 else
928 pr_debug("Problems creating module maps for guest %d, "
929 "continuing anyway...\n", machine->pid);
930 }
931
932 /*
933 * Now that we have all the maps created, just set the ->end of them:
934 */
935 map_groups__fixup_end(&machine->kmaps);
Adrian Hunter5512cf22014-01-29 16:14:39 +0200936
937 if (maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps, name,
938 addr)) {
939 machine__destroy_kernel_maps(machine);
940 return -1;
941 }
942
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300943 return 0;
944}
945
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300946static void machine__set_kernel_mmap_len(struct machine *machine,
947 union perf_event *event)
948{
Namhyung Kim4552cf0f2012-11-07 16:27:10 +0900949 int i;
950
951 for (i = 0; i < MAP__NR_TYPES; i++) {
952 machine->vmlinux_maps[i]->start = event->mmap.start;
953 machine->vmlinux_maps[i]->end = (event->mmap.start +
954 event->mmap.len);
955 /*
956 * Be a bit paranoid here, some perf.data file came with
957 * a zero sized synthesized MMAP event for the kernel.
958 */
959 if (machine->vmlinux_maps[i]->end == 0)
960 machine->vmlinux_maps[i]->end = ~0ULL;
961 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300962}
963
Adrian Hunter8e0cf962013-08-07 14:38:51 +0300964static bool machine__uses_kcore(struct machine *machine)
965{
966 struct dso *dso;
967
968 list_for_each_entry(dso, &machine->kernel_dsos, node) {
969 if (dso__is_kcore(dso))
970 return true;
971 }
972
973 return false;
974}
975
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300976static int machine__process_kernel_mmap_event(struct machine *machine,
977 union perf_event *event)
978{
979 struct map *map;
980 char kmmap_prefix[PATH_MAX];
981 enum dso_kernel_type kernel_type;
982 bool is_kernel_mmap;
983
Adrian Hunter8e0cf962013-08-07 14:38:51 +0300984 /* If we have maps from kcore then we do not need or want any others */
985 if (machine__uses_kcore(machine))
986 return 0;
987
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300988 machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
989 if (machine__is_host(machine))
990 kernel_type = DSO_TYPE_KERNEL;
991 else
992 kernel_type = DSO_TYPE_GUEST_KERNEL;
993
994 is_kernel_mmap = memcmp(event->mmap.filename,
995 kmmap_prefix,
996 strlen(kmmap_prefix) - 1) == 0;
997 if (event->mmap.filename[0] == '/' ||
998 (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
999
1000 char short_module_name[1024];
1001 char *name, *dot;
1002
1003 if (event->mmap.filename[0] == '/') {
1004 name = strrchr(event->mmap.filename, '/');
1005 if (name == NULL)
1006 goto out_problem;
1007
1008 ++name; /* skip / */
1009 dot = strrchr(name, '.');
1010 if (dot == NULL)
1011 goto out_problem;
1012 snprintf(short_module_name, sizeof(short_module_name),
1013 "[%.*s]", (int)(dot - name), name);
1014 strxfrchar(short_module_name, '-', '_');
1015 } else
1016 strcpy(short_module_name, event->mmap.filename);
1017
1018 map = machine__new_module(machine, event->mmap.start,
1019 event->mmap.filename);
1020 if (map == NULL)
1021 goto out_problem;
1022
1023 name = strdup(short_module_name);
1024 if (name == NULL)
1025 goto out_problem;
1026
Adrian Hunter58a98c92013-12-10 11:11:46 -03001027 dso__set_short_name(map->dso, name, true);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001028 map->end = map->start + event->mmap.len;
1029 } else if (is_kernel_mmap) {
1030 const char *symbol_name = (event->mmap.filename +
1031 strlen(kmmap_prefix));
1032 /*
1033 * Should be there already, from the build-id table in
1034 * the header.
1035 */
1036 struct dso *kernel = __dsos__findnew(&machine->kernel_dsos,
1037 kmmap_prefix);
1038 if (kernel == NULL)
1039 goto out_problem;
1040
1041 kernel->kernel = kernel_type;
1042 if (__machine__create_kernel_maps(machine, kernel) < 0)
1043 goto out_problem;
1044
1045 machine__set_kernel_mmap_len(machine, event);
1046
1047 /*
1048 * Avoid using a zero address (kptr_restrict) for the ref reloc
1049 * symbol. Effectively having zero here means that at record
1050 * time /proc/sys/kernel/kptr_restrict was non zero.
1051 */
1052 if (event->mmap.pgoff != 0) {
1053 maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps,
1054 symbol_name,
1055 event->mmap.pgoff);
1056 }
1057
1058 if (machine__is_default_guest(machine)) {
1059 /*
1060 * preload dso of guest kernel and modules
1061 */
1062 dso__load(kernel, machine->vmlinux_maps[MAP__FUNCTION],
1063 NULL);
1064 }
1065 }
1066 return 0;
1067out_problem:
1068 return -1;
1069}
1070
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001071int machine__process_mmap2_event(struct machine *machine,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001072 union perf_event *event,
1073 struct perf_sample *sample __maybe_unused)
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001074{
1075 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1076 struct thread *thread;
1077 struct map *map;
1078 enum map_type type;
1079 int ret = 0;
1080
1081 if (dump_trace)
1082 perf_event__fprintf_mmap2(event, stdout);
1083
1084 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1085 cpumode == PERF_RECORD_MISC_KERNEL) {
1086 ret = machine__process_kernel_mmap_event(machine, event);
1087 if (ret < 0)
1088 goto out_problem;
1089 return 0;
1090 }
1091
1092 thread = machine__findnew_thread(machine, event->mmap2.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001093 event->mmap2.tid);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001094 if (thread == NULL)
1095 goto out_problem;
1096
1097 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1098 type = MAP__VARIABLE;
1099 else
1100 type = MAP__FUNCTION;
1101
Adrian Hunter2a030682014-07-22 16:17:53 +03001102 map = map__new(machine, event->mmap2.start,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001103 event->mmap2.len, event->mmap2.pgoff,
1104 event->mmap2.pid, event->mmap2.maj,
1105 event->mmap2.min, event->mmap2.ino,
1106 event->mmap2.ino_generation,
Don Zickus7ef80702014-05-19 15:13:49 -04001107 event->mmap2.prot,
1108 event->mmap2.flags,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001109 event->mmap2.filename, type);
1110
1111 if (map == NULL)
1112 goto out_problem;
1113
1114 thread__insert_map(thread, map);
1115 return 0;
1116
1117out_problem:
1118 dump_printf("problem processing PERF_RECORD_MMAP2, skipping event.\n");
1119 return 0;
1120}
1121
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001122int machine__process_mmap_event(struct machine *machine, union perf_event *event,
1123 struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001124{
1125 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1126 struct thread *thread;
1127 struct map *map;
Stephane Eranianbad40912013-01-24 16:10:40 +01001128 enum map_type type;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001129 int ret = 0;
1130
1131 if (dump_trace)
1132 perf_event__fprintf_mmap(event, stdout);
1133
1134 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1135 cpumode == PERF_RECORD_MISC_KERNEL) {
1136 ret = machine__process_kernel_mmap_event(machine, event);
1137 if (ret < 0)
1138 goto out_problem;
1139 return 0;
1140 }
1141
Adrian Hunter314add62013-08-27 11:23:03 +03001142 thread = machine__findnew_thread(machine, event->mmap.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001143 event->mmap.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001144 if (thread == NULL)
1145 goto out_problem;
Stephane Eranianbad40912013-01-24 16:10:40 +01001146
1147 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1148 type = MAP__VARIABLE;
1149 else
1150 type = MAP__FUNCTION;
1151
Adrian Hunter2a030682014-07-22 16:17:53 +03001152 map = map__new(machine, event->mmap.start,
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001153 event->mmap.len, event->mmap.pgoff,
Don Zickus7ef80702014-05-19 15:13:49 -04001154 event->mmap.pid, 0, 0, 0, 0, 0, 0,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001155 event->mmap.filename,
Stephane Eranianbad40912013-01-24 16:10:40 +01001156 type);
1157
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001158 if (map == NULL)
1159 goto out_problem;
1160
1161 thread__insert_map(thread, map);
1162 return 0;
1163
1164out_problem:
1165 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
1166 return 0;
1167}
1168
David Ahern236a3bb2013-08-14 08:49:27 -06001169static void machine__remove_thread(struct machine *machine, struct thread *th)
1170{
1171 machine->last_match = NULL;
1172 rb_erase(&th->rb_node, &machine->threads);
1173 /*
1174 * We may have references to this thread, for instance in some hist_entry
1175 * instances, so just move them to a separate list.
1176 */
1177 list_add_tail(&th->node, &machine->dead_threads);
1178}
1179
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001180int machine__process_fork_event(struct machine *machine, union perf_event *event,
1181 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001182{
Jiri Olsad75e6092014-03-14 15:00:03 +01001183 struct thread *thread = machine__find_thread(machine,
1184 event->fork.pid,
1185 event->fork.tid);
Adrian Hunter314add62013-08-27 11:23:03 +03001186 struct thread *parent = machine__findnew_thread(machine,
1187 event->fork.ppid,
1188 event->fork.ptid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001189
David Ahern236a3bb2013-08-14 08:49:27 -06001190 /* if a thread currently exists for the thread id remove it */
1191 if (thread != NULL)
1192 machine__remove_thread(machine, thread);
1193
Adrian Hunter314add62013-08-27 11:23:03 +03001194 thread = machine__findnew_thread(machine, event->fork.pid,
1195 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001196 if (dump_trace)
1197 perf_event__fprintf_task(event, stdout);
1198
1199 if (thread == NULL || parent == NULL ||
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001200 thread__fork(thread, parent, sample->time) < 0) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001201 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
1202 return -1;
1203 }
1204
1205 return 0;
1206}
1207
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001208int machine__process_exit_event(struct machine *machine, union perf_event *event,
1209 struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001210{
Jiri Olsad75e6092014-03-14 15:00:03 +01001211 struct thread *thread = machine__find_thread(machine,
1212 event->fork.pid,
1213 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001214
1215 if (dump_trace)
1216 perf_event__fprintf_task(event, stdout);
1217
1218 if (thread != NULL)
David Ahern236a3bb2013-08-14 08:49:27 -06001219 thread__exited(thread);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001220
1221 return 0;
1222}
1223
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001224int machine__process_event(struct machine *machine, union perf_event *event,
1225 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001226{
1227 int ret;
1228
1229 switch (event->header.type) {
1230 case PERF_RECORD_COMM:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001231 ret = machine__process_comm_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001232 case PERF_RECORD_MMAP:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001233 ret = machine__process_mmap_event(machine, event, sample); break;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001234 case PERF_RECORD_MMAP2:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001235 ret = machine__process_mmap2_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001236 case PERF_RECORD_FORK:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001237 ret = machine__process_fork_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001238 case PERF_RECORD_EXIT:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001239 ret = machine__process_exit_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001240 case PERF_RECORD_LOST:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001241 ret = machine__process_lost_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001242 default:
1243 ret = -1;
1244 break;
1245 }
1246
1247 return ret;
1248}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001249
Greg Priceb21484f2012-12-06 21:48:05 -08001250static bool symbol__match_regex(struct symbol *sym, regex_t *regex)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001251{
Greg Priceb21484f2012-12-06 21:48:05 -08001252 if (sym->name && !regexec(regex, sym->name, 0, NULL, 0))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001253 return 1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001254 return 0;
1255}
1256
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001257static void ip__resolve_ams(struct machine *machine, struct thread *thread,
1258 struct addr_map_symbol *ams,
1259 u64 ip)
1260{
1261 struct addr_location al;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001262
1263 memset(&al, 0, sizeof(al));
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -03001264 /*
1265 * We cannot use the header.misc hint to determine whether a
1266 * branch stack address is user, kernel, guest, hypervisor.
1267 * Branches may straddle the kernel/user/hypervisor boundaries.
1268 * Thus, we have to try consecutively until we find a match
1269 * or else, the symbol is unknown
1270 */
1271 thread__find_cpumode_addr_location(thread, machine, MAP__FUNCTION, ip, &al);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001272
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001273 ams->addr = ip;
1274 ams->al_addr = al.addr;
1275 ams->sym = al.sym;
1276 ams->map = al.map;
1277}
1278
Stephane Eranian98a3b322013-01-24 16:10:35 +01001279static void ip__resolve_data(struct machine *machine, struct thread *thread,
1280 u8 m, struct addr_map_symbol *ams, u64 addr)
1281{
1282 struct addr_location al;
1283
1284 memset(&al, 0, sizeof(al));
1285
Adrian Hunter61710bd2013-08-08 14:32:26 +03001286 thread__find_addr_location(thread, machine, m, MAP__VARIABLE, addr,
1287 &al);
Stephane Eranian98a3b322013-01-24 16:10:35 +01001288 ams->addr = addr;
1289 ams->al_addr = al.addr;
1290 ams->sym = al.sym;
1291 ams->map = al.map;
1292}
1293
Arnaldo Carvalho de Meloe80faac2014-01-22 13:05:06 -03001294struct mem_info *sample__resolve_mem(struct perf_sample *sample,
1295 struct addr_location *al)
Stephane Eranian98a3b322013-01-24 16:10:35 +01001296{
1297 struct mem_info *mi = zalloc(sizeof(*mi));
1298
1299 if (!mi)
1300 return NULL;
1301
Arnaldo Carvalho de Meloe80faac2014-01-22 13:05:06 -03001302 ip__resolve_ams(al->machine, al->thread, &mi->iaddr, sample->ip);
1303 ip__resolve_data(al->machine, al->thread, al->cpumode,
1304 &mi->daddr, sample->addr);
Stephane Eranian98a3b322013-01-24 16:10:35 +01001305 mi->data_src.val = sample->data_src;
1306
1307 return mi;
1308}
1309
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03001310struct branch_info *sample__resolve_bstack(struct perf_sample *sample,
1311 struct addr_location *al)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001312{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001313 unsigned int i;
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03001314 const struct branch_stack *bs = sample->branch_stack;
1315 struct branch_info *bi = calloc(bs->nr, sizeof(struct branch_info));
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001316
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001317 if (!bi)
1318 return NULL;
1319
1320 for (i = 0; i < bs->nr; i++) {
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03001321 ip__resolve_ams(al->machine, al->thread, &bi[i].to, bs->entries[i].to);
1322 ip__resolve_ams(al->machine, al->thread, &bi[i].from, bs->entries[i].from);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001323 bi[i].flags = bs->entries[i].flags;
1324 }
1325 return bi;
1326}
1327
1328static int machine__resolve_callchain_sample(struct machine *machine,
1329 struct thread *thread,
1330 struct ip_callchain *chain,
Greg Priceb21484f2012-12-06 21:48:05 -08001331 struct symbol **parent,
Waiman Long91e95612013-10-18 10:38:48 -04001332 struct addr_location *root_al,
1333 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001334{
1335 u8 cpumode = PERF_RECORD_MISC_USER;
Waiman Long91e95612013-10-18 10:38:48 -04001336 int chain_nr = min(max_stack, (int)chain->nr);
1337 int i;
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001338 int j;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001339 int err;
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001340 int skip_idx __maybe_unused;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001341
1342 callchain_cursor_reset(&callchain_cursor);
1343
1344 if (chain->nr > PERF_MAX_STACK_DEPTH) {
1345 pr_warning("corrupted callchain. skipping...\n");
1346 return 0;
1347 }
1348
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001349 /*
1350 * Based on DWARF debug information, some architectures skip
1351 * a callchain entry saved by the kernel.
1352 */
1353 skip_idx = arch_skip_callchain_idx(machine, thread, chain);
1354
Waiman Long91e95612013-10-18 10:38:48 -04001355 for (i = 0; i < chain_nr; i++) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001356 u64 ip;
1357 struct addr_location al;
1358
1359 if (callchain_param.order == ORDER_CALLEE)
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001360 j = i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001361 else
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001362 j = chain->nr - i - 1;
1363
1364#ifdef HAVE_SKIP_CALLCHAIN_IDX
1365 if (j == skip_idx)
1366 continue;
1367#endif
1368 ip = chain->ips[j];
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001369
1370 if (ip >= PERF_CONTEXT_MAX) {
1371 switch (ip) {
1372 case PERF_CONTEXT_HV:
1373 cpumode = PERF_RECORD_MISC_HYPERVISOR;
1374 break;
1375 case PERF_CONTEXT_KERNEL:
1376 cpumode = PERF_RECORD_MISC_KERNEL;
1377 break;
1378 case PERF_CONTEXT_USER:
1379 cpumode = PERF_RECORD_MISC_USER;
1380 break;
1381 default:
1382 pr_debug("invalid callchain context: "
1383 "%"PRId64"\n", (s64) ip);
1384 /*
1385 * It seems the callchain is corrupted.
1386 * Discard all.
1387 */
1388 callchain_cursor_reset(&callchain_cursor);
1389 return 0;
1390 }
1391 continue;
1392 }
1393
Namhyung Kimb3cef7f2014-03-17 16:59:21 -03001394 al.filtered = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001395 thread__find_addr_location(thread, machine, cpumode,
Adrian Hunter61710bd2013-08-08 14:32:26 +03001396 MAP__FUNCTION, ip, &al);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001397 if (al.sym != NULL) {
1398 if (sort__has_parent && !*parent &&
Greg Priceb21484f2012-12-06 21:48:05 -08001399 symbol__match_regex(al.sym, &parent_regex))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001400 *parent = al.sym;
Greg Priceb21484f2012-12-06 21:48:05 -08001401 else if (have_ignore_callees && root_al &&
1402 symbol__match_regex(al.sym, &ignore_callees_regex)) {
1403 /* Treat this symbol as the root,
1404 forgetting its callees. */
1405 *root_al = al;
1406 callchain_cursor_reset(&callchain_cursor);
1407 }
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001408 }
1409
1410 err = callchain_cursor_append(&callchain_cursor,
1411 ip, al.map, al.sym);
1412 if (err)
1413 return err;
1414 }
1415
1416 return 0;
1417}
1418
1419static int unwind_entry(struct unwind_entry *entry, void *arg)
1420{
1421 struct callchain_cursor *cursor = arg;
1422 return callchain_cursor_append(cursor, entry->ip,
1423 entry->map, entry->sym);
1424}
1425
1426int machine__resolve_callchain(struct machine *machine,
1427 struct perf_evsel *evsel,
1428 struct thread *thread,
1429 struct perf_sample *sample,
Greg Priceb21484f2012-12-06 21:48:05 -08001430 struct symbol **parent,
Waiman Long91e95612013-10-18 10:38:48 -04001431 struct addr_location *root_al,
1432 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001433{
1434 int ret;
1435
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001436 ret = machine__resolve_callchain_sample(machine, thread,
Waiman Long91e95612013-10-18 10:38:48 -04001437 sample->callchain, parent,
1438 root_al, max_stack);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001439 if (ret)
1440 return ret;
1441
1442 /* Can we do dwarf post unwind? */
1443 if (!((evsel->attr.sample_type & PERF_SAMPLE_REGS_USER) &&
1444 (evsel->attr.sample_type & PERF_SAMPLE_STACK_USER)))
1445 return 0;
1446
1447 /* Bail out if nothing was captured. */
1448 if ((!sample->user_regs.regs) ||
1449 (!sample->user_stack.size))
1450 return 0;
1451
1452 return unwind__get_entries(unwind_entry, &callchain_cursor, machine,
Jiri Olsa352ea452014-01-07 13:47:25 +01001453 thread, sample, max_stack);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001454
1455}
David Ahern35feee12013-09-28 13:12:58 -06001456
1457int machine__for_each_thread(struct machine *machine,
1458 int (*fn)(struct thread *thread, void *p),
1459 void *priv)
1460{
1461 struct rb_node *nd;
1462 struct thread *thread;
1463 int rc = 0;
1464
1465 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
1466 thread = rb_entry(nd, struct thread, rb_node);
1467 rc = fn(thread, priv);
1468 if (rc != 0)
1469 return rc;
1470 }
1471
1472 list_for_each_entry(thread, &machine->dead_threads, node) {
1473 rc = fn(thread, priv);
1474 if (rc != 0)
1475 return rc;
1476 }
1477 return rc;
1478}
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001479
Arnaldo Carvalho de Meloa33fbd52013-11-11 11:36:12 -03001480int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool,
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001481 struct target *target, struct thread_map *threads,
Arnaldo Carvalho de Meloa33fbd52013-11-11 11:36:12 -03001482 perf_event__handler_t process, bool data_mmap)
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001483{
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001484 if (target__has_task(target))
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001485 return perf_event__synthesize_thread_map(tool, threads, process, machine, data_mmap);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001486 else if (target__has_cpu(target))
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001487 return perf_event__synthesize_threads(tool, process, machine, data_mmap);
1488 /* command specified */
1489 return 0;
1490}
Adrian Hunterb9d266b2014-07-22 16:17:25 +03001491
1492pid_t machine__get_current_tid(struct machine *machine, int cpu)
1493{
1494 if (cpu < 0 || cpu >= MAX_NR_CPUS || !machine->current_tid)
1495 return -1;
1496
1497 return machine->current_tid[cpu];
1498}
1499
1500int machine__set_current_tid(struct machine *machine, int cpu, pid_t pid,
1501 pid_t tid)
1502{
1503 struct thread *thread;
1504
1505 if (cpu < 0)
1506 return -EINVAL;
1507
1508 if (!machine->current_tid) {
1509 int i;
1510
1511 machine->current_tid = calloc(MAX_NR_CPUS, sizeof(pid_t));
1512 if (!machine->current_tid)
1513 return -ENOMEM;
1514 for (i = 0; i < MAX_NR_CPUS; i++)
1515 machine->current_tid[i] = -1;
1516 }
1517
1518 if (cpu >= MAX_NR_CPUS) {
1519 pr_err("Requested CPU %d too large. ", cpu);
1520 pr_err("Consider raising MAX_NR_CPUS\n");
1521 return -EINVAL;
1522 }
1523
1524 machine->current_tid[cpu] = tid;
1525
1526 thread = machine__findnew_thread(machine, pid, tid);
1527 if (!thread)
1528 return -ENOMEM;
1529
1530 thread->cpu = cpu;
1531
1532 return 0;
1533}