blob: 946c7d62cb6ed1e8b71193f817ca9b70b1f53037 [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 Meloe167f992014-10-14 15:07:48 -030016static void dsos__init(struct dsos *dsos)
17{
18 INIT_LIST_HEAD(&dsos->head);
19 dsos->root = RB_ROOT;
20}
21
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030022int machine__init(struct machine *machine, const char *root_dir, pid_t pid)
23{
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -030024 map_groups__init(&machine->kmaps, machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030025 RB_CLEAR_NODE(&machine->rb_node);
Arnaldo Carvalho de Meloe167f992014-10-14 15:07:48 -030026 dsos__init(&machine->user_dsos);
27 dsos__init(&machine->kernel_dsos);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030028
29 machine->threads = RB_ROOT;
30 INIT_LIST_HEAD(&machine->dead_threads);
31 machine->last_match = NULL;
32
Adrian Hunterd027b642014-07-23 14:23:00 +030033 machine->vdso_info = NULL;
34
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030035 machine->pid = pid;
36
Adrian Hunter611a5ce2013-08-08 14:32:20 +030037 machine->symbol_filter = NULL;
Jiri Olsa14bd6d22014-01-07 13:47:19 +010038 machine->id_hdr_size = 0;
Adrian Huntercfe1c412014-07-31 09:00:45 +030039 machine->comm_exec = false;
Adrian Hunterfbe2af42014-08-15 22:08:39 +030040 machine->kernel_start = 0;
Adrian Hunter611a5ce2013-08-08 14:32:20 +030041
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030042 machine->root_dir = strdup(root_dir);
43 if (machine->root_dir == NULL)
44 return -ENOMEM;
45
46 if (pid != HOST_KERNEL_ID) {
Adrian Hunter1fcb8762014-07-14 13:02:25 +030047 struct thread *thread = machine__findnew_thread(machine, -1,
Adrian Hunter314add62013-08-27 11:23:03 +030048 pid);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030049 char comm[64];
50
51 if (thread == NULL)
52 return -ENOMEM;
53
54 snprintf(comm, sizeof(comm), "[guest/%d]", pid);
Frederic Weisbecker162f0be2013-09-11 16:18:24 +020055 thread__set_comm(thread, comm, 0);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030056 }
57
Adrian Hunterb9d266b2014-07-22 16:17:25 +030058 machine->current_tid = NULL;
59
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030060 return 0;
61}
62
David Ahern8fb598e2013-09-28 13:13:00 -060063struct machine *machine__new_host(void)
64{
65 struct machine *machine = malloc(sizeof(*machine));
66
67 if (machine != NULL) {
68 machine__init(machine, "", HOST_KERNEL_ID);
69
70 if (machine__create_kernel_maps(machine) < 0)
71 goto out_delete;
72 }
73
74 return machine;
75out_delete:
76 free(machine);
77 return NULL;
78}
79
Waiman Long8fa7d872014-09-29 16:07:28 -040080static void dsos__delete(struct dsos *dsos)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030081{
82 struct dso *pos, *n;
83
Waiman Long8fa7d872014-09-29 16:07:28 -040084 list_for_each_entry_safe(pos, n, &dsos->head, node) {
Waiman Long4598a0a2014-09-30 13:36:15 -040085 RB_CLEAR_NODE(&pos->rb_node);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030086 list_del(&pos->node);
87 dso__delete(pos);
88 }
89}
90
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030091void machine__delete_dead_threads(struct machine *machine)
92{
93 struct thread *n, *t;
94
95 list_for_each_entry_safe(t, n, &machine->dead_threads, node) {
96 list_del(&t->node);
97 thread__delete(t);
98 }
99}
100
101void machine__delete_threads(struct machine *machine)
102{
103 struct rb_node *nd = rb_first(&machine->threads);
104
105 while (nd) {
106 struct thread *t = rb_entry(nd, struct thread, rb_node);
107
108 rb_erase(&t->rb_node, &machine->threads);
109 nd = rb_next(nd);
110 thread__delete(t);
111 }
112}
113
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300114void machine__exit(struct machine *machine)
115{
116 map_groups__exit(&machine->kmaps);
117 dsos__delete(&machine->user_dsos);
118 dsos__delete(&machine->kernel_dsos);
Adrian Hunterd027b642014-07-23 14:23:00 +0300119 vdso__exit(machine);
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300120 zfree(&machine->root_dir);
Adrian Hunterb9d266b2014-07-22 16:17:25 +0300121 zfree(&machine->current_tid);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300122}
123
124void machine__delete(struct machine *machine)
125{
126 machine__exit(machine);
127 free(machine);
128}
129
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300130void machines__init(struct machines *machines)
131{
132 machine__init(&machines->host, "", HOST_KERNEL_ID);
133 machines->guests = RB_ROOT;
Adrian Hunter611a5ce2013-08-08 14:32:20 +0300134 machines->symbol_filter = NULL;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300135}
136
137void machines__exit(struct machines *machines)
138{
139 machine__exit(&machines->host);
140 /* XXX exit guest */
141}
142
143struct machine *machines__add(struct machines *machines, pid_t pid,
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300144 const char *root_dir)
145{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300146 struct rb_node **p = &machines->guests.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300147 struct rb_node *parent = NULL;
148 struct machine *pos, *machine = malloc(sizeof(*machine));
149
150 if (machine == NULL)
151 return NULL;
152
153 if (machine__init(machine, root_dir, pid) != 0) {
154 free(machine);
155 return NULL;
156 }
157
Adrian Hunter611a5ce2013-08-08 14:32:20 +0300158 machine->symbol_filter = machines->symbol_filter;
159
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300160 while (*p != NULL) {
161 parent = *p;
162 pos = rb_entry(parent, struct machine, rb_node);
163 if (pid < pos->pid)
164 p = &(*p)->rb_left;
165 else
166 p = &(*p)->rb_right;
167 }
168
169 rb_link_node(&machine->rb_node, parent, p);
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300170 rb_insert_color(&machine->rb_node, &machines->guests);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300171
172 return machine;
173}
174
Adrian Hunter611a5ce2013-08-08 14:32:20 +0300175void machines__set_symbol_filter(struct machines *machines,
176 symbol_filter_t symbol_filter)
177{
178 struct rb_node *nd;
179
180 machines->symbol_filter = symbol_filter;
181 machines->host.symbol_filter = symbol_filter;
182
183 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
184 struct machine *machine = rb_entry(nd, struct machine, rb_node);
185
186 machine->symbol_filter = symbol_filter;
187 }
188}
189
Adrian Huntercfe1c412014-07-31 09:00:45 +0300190void machines__set_comm_exec(struct machines *machines, bool comm_exec)
191{
192 struct rb_node *nd;
193
194 machines->host.comm_exec = comm_exec;
195
196 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
197 struct machine *machine = rb_entry(nd, struct machine, rb_node);
198
199 machine->comm_exec = comm_exec;
200 }
201}
202
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300203struct machine *machines__find(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300204{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300205 struct rb_node **p = &machines->guests.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300206 struct rb_node *parent = NULL;
207 struct machine *machine;
208 struct machine *default_machine = NULL;
209
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300210 if (pid == HOST_KERNEL_ID)
211 return &machines->host;
212
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300213 while (*p != NULL) {
214 parent = *p;
215 machine = rb_entry(parent, struct machine, rb_node);
216 if (pid < machine->pid)
217 p = &(*p)->rb_left;
218 else if (pid > machine->pid)
219 p = &(*p)->rb_right;
220 else
221 return machine;
222 if (!machine->pid)
223 default_machine = machine;
224 }
225
226 return default_machine;
227}
228
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300229struct machine *machines__findnew(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300230{
231 char path[PATH_MAX];
232 const char *root_dir = "";
233 struct machine *machine = machines__find(machines, pid);
234
235 if (machine && (machine->pid == pid))
236 goto out;
237
238 if ((pid != HOST_KERNEL_ID) &&
239 (pid != DEFAULT_GUEST_KERNEL_ID) &&
240 (symbol_conf.guestmount)) {
241 sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
242 if (access(path, R_OK)) {
243 static struct strlist *seen;
244
245 if (!seen)
246 seen = strlist__new(true, NULL);
247
248 if (!strlist__has_entry(seen, path)) {
249 pr_err("Can't access file %s\n", path);
250 strlist__add(seen, path);
251 }
252 machine = NULL;
253 goto out;
254 }
255 root_dir = path;
256 }
257
258 machine = machines__add(machines, pid, root_dir);
259out:
260 return machine;
261}
262
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300263void machines__process_guests(struct machines *machines,
264 machine__process_t process, void *data)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300265{
266 struct rb_node *nd;
267
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300268 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300269 struct machine *pos = rb_entry(nd, struct machine, rb_node);
270 process(pos, data);
271 }
272}
273
274char *machine__mmap_name(struct machine *machine, char *bf, size_t size)
275{
276 if (machine__is_host(machine))
277 snprintf(bf, size, "[%s]", "kernel.kallsyms");
278 else if (machine__is_default_guest(machine))
279 snprintf(bf, size, "[%s]", "guest.kernel.kallsyms");
280 else {
281 snprintf(bf, size, "[%s.%d]", "guest.kernel.kallsyms",
282 machine->pid);
283 }
284
285 return bf;
286}
287
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300288void machines__set_id_hdr_size(struct machines *machines, u16 id_hdr_size)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300289{
290 struct rb_node *node;
291 struct machine *machine;
292
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300293 machines->host.id_hdr_size = id_hdr_size;
294
295 for (node = rb_first(&machines->guests); node; node = rb_next(node)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300296 machine = rb_entry(node, struct machine, rb_node);
297 machine->id_hdr_size = id_hdr_size;
298 }
299
300 return;
301}
302
Adrian Hunter29ce3612014-07-16 11:07:13 +0300303static void machine__update_thread_pid(struct machine *machine,
304 struct thread *th, pid_t pid)
305{
306 struct thread *leader;
307
308 if (pid == th->pid_ || pid == -1 || th->pid_ != -1)
309 return;
310
311 th->pid_ = pid;
312
313 if (th->pid_ == th->tid)
314 return;
315
316 leader = machine__findnew_thread(machine, th->pid_, th->pid_);
317 if (!leader)
318 goto out_err;
319
320 if (!leader->mg)
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -0300321 leader->mg = map_groups__new(machine);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300322
323 if (!leader->mg)
324 goto out_err;
325
326 if (th->mg == leader->mg)
327 return;
328
329 if (th->mg) {
330 /*
331 * Maps are created from MMAP events which provide the pid and
332 * tid. Consequently there never should be any maps on a thread
333 * with an unknown pid. Just print an error if there are.
334 */
335 if (!map_groups__empty(th->mg))
336 pr_err("Discarding thread maps for %d:%d\n",
337 th->pid_, th->tid);
338 map_groups__delete(th->mg);
339 }
340
341 th->mg = map_groups__get(leader->mg);
342
343 return;
344
345out_err:
346 pr_err("Failed to join map groups for %d:%d\n", th->pid_, th->tid);
347}
348
Adrian Hunter99d725f2013-08-26 16:00:19 +0300349static struct thread *__machine__findnew_thread(struct machine *machine,
350 pid_t pid, pid_t tid,
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300351 bool create)
352{
353 struct rb_node **p = &machine->threads.rb_node;
354 struct rb_node *parent = NULL;
355 struct thread *th;
356
357 /*
Adrian Hunter38051232013-07-04 16:20:31 +0300358 * Front-end cache - TID lookups come in blocks,
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300359 * so most of the time we dont have to look up
360 * the full rbtree:
361 */
Adrian Hunter29ce3612014-07-16 11:07:13 +0300362 th = machine->last_match;
363 if (th && th->tid == tid) {
364 machine__update_thread_pid(machine, th, pid);
365 return th;
Adrian Hunter99d725f2013-08-26 16:00:19 +0300366 }
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300367
368 while (*p != NULL) {
369 parent = *p;
370 th = rb_entry(parent, struct thread, rb_node);
371
Adrian Hunter38051232013-07-04 16:20:31 +0300372 if (th->tid == tid) {
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300373 machine->last_match = th;
Adrian Hunter29ce3612014-07-16 11:07:13 +0300374 machine__update_thread_pid(machine, th, pid);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300375 return th;
376 }
377
Adrian Hunter38051232013-07-04 16:20:31 +0300378 if (tid < th->tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300379 p = &(*p)->rb_left;
380 else
381 p = &(*p)->rb_right;
382 }
383
384 if (!create)
385 return NULL;
386
Adrian Hunter99d725f2013-08-26 16:00:19 +0300387 th = thread__new(pid, tid);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300388 if (th != NULL) {
389 rb_link_node(&th->rb_node, parent, p);
390 rb_insert_color(&th->rb_node, &machine->threads);
391 machine->last_match = th;
Jiri Olsacddcef62014-04-09 20:54:29 +0200392
393 /*
394 * We have to initialize map_groups separately
395 * after rb tree is updated.
396 *
397 * The reason is that we call machine__findnew_thread
398 * within thread__init_map_groups to find the thread
399 * leader and that would screwed the rb tree.
400 */
Adrian Hunter418029b2014-07-16 10:19:44 +0300401 if (thread__init_map_groups(th, machine)) {
402 thread__delete(th);
Jiri Olsacddcef62014-04-09 20:54:29 +0200403 return NULL;
Adrian Hunter418029b2014-07-16 10:19:44 +0300404 }
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300405 }
406
407 return th;
408}
409
Adrian Hunter314add62013-08-27 11:23:03 +0300410struct thread *machine__findnew_thread(struct machine *machine, pid_t pid,
411 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300412{
Adrian Hunter314add62013-08-27 11:23:03 +0300413 return __machine__findnew_thread(machine, pid, tid, true);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300414}
415
Jiri Olsad75e6092014-03-14 15:00:03 +0100416struct thread *machine__find_thread(struct machine *machine, pid_t pid,
417 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300418{
Jiri Olsad75e6092014-03-14 15:00:03 +0100419 return __machine__findnew_thread(machine, pid, tid, false);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300420}
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300421
Adrian Huntercfe1c412014-07-31 09:00:45 +0300422struct comm *machine__thread_exec_comm(struct machine *machine,
423 struct thread *thread)
424{
425 if (machine->comm_exec)
426 return thread__exec_comm(thread);
427 else
428 return thread__comm(thread);
429}
430
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200431int machine__process_comm_event(struct machine *machine, union perf_event *event,
432 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300433{
Adrian Hunter314add62013-08-27 11:23:03 +0300434 struct thread *thread = machine__findnew_thread(machine,
435 event->comm.pid,
436 event->comm.tid);
Adrian Hunter65de51f2014-07-31 09:00:44 +0300437 bool exec = event->header.misc & PERF_RECORD_MISC_COMM_EXEC;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300438
Adrian Huntercfe1c412014-07-31 09:00:45 +0300439 if (exec)
440 machine->comm_exec = true;
441
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300442 if (dump_trace)
443 perf_event__fprintf_comm(event, stdout);
444
Adrian Hunter65de51f2014-07-31 09:00:44 +0300445 if (thread == NULL ||
446 __thread__set_comm(thread, event->comm.comm, sample->time, exec)) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300447 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
448 return -1;
449 }
450
451 return 0;
452}
453
454int machine__process_lost_event(struct machine *machine __maybe_unused,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200455 union perf_event *event, struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300456{
457 dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
458 event->lost.id, event->lost.lost);
459 return 0;
460}
461
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300462struct map *machine__new_module(struct machine *machine, u64 start,
463 const char *filename)
464{
465 struct map *map;
466 struct dso *dso = __dsos__findnew(&machine->kernel_dsos, filename);
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900467 bool compressed;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300468
469 if (dso == NULL)
470 return NULL;
471
472 map = map__new2(start, dso, MAP__FUNCTION);
473 if (map == NULL)
474 return NULL;
475
476 if (machine__is_host(machine))
477 dso->symtab_type = DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE;
478 else
479 dso->symtab_type = DSO_BINARY_TYPE__GUEST_KMODULE;
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900480
481 /* _KMODULE_COMP should be next to _KMODULE */
482 if (is_kernel_module(filename, &compressed) && compressed)
483 dso->symtab_type++;
484
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300485 map_groups__insert(&machine->kmaps, map);
486 return map;
487}
488
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300489size_t machines__fprintf_dsos(struct machines *machines, FILE *fp)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300490{
491 struct rb_node *nd;
Waiman Long8fa7d872014-09-29 16:07:28 -0400492 size_t ret = __dsos__fprintf(&machines->host.kernel_dsos.head, fp) +
493 __dsos__fprintf(&machines->host.user_dsos.head, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300494
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300495 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300496 struct machine *pos = rb_entry(nd, struct machine, rb_node);
Waiman Long8fa7d872014-09-29 16:07:28 -0400497 ret += __dsos__fprintf(&pos->kernel_dsos.head, fp);
498 ret += __dsos__fprintf(&pos->user_dsos.head, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300499 }
500
501 return ret;
502}
503
Waiman Long8fa7d872014-09-29 16:07:28 -0400504size_t machine__fprintf_dsos_buildid(struct machine *m, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300505 bool (skip)(struct dso *dso, int parm), int parm)
506{
Waiman Long8fa7d872014-09-29 16:07:28 -0400507 return __dsos__fprintf_buildid(&m->kernel_dsos.head, fp, skip, parm) +
508 __dsos__fprintf_buildid(&m->user_dsos.head, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300509}
510
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300511size_t machines__fprintf_dsos_buildid(struct machines *machines, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300512 bool (skip)(struct dso *dso, int parm), int parm)
513{
514 struct rb_node *nd;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300515 size_t ret = machine__fprintf_dsos_buildid(&machines->host, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300516
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300517 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300518 struct machine *pos = rb_entry(nd, struct machine, rb_node);
519 ret += machine__fprintf_dsos_buildid(pos, fp, skip, parm);
520 }
521 return ret;
522}
523
524size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp)
525{
526 int i;
527 size_t printed = 0;
528 struct dso *kdso = machine->vmlinux_maps[MAP__FUNCTION]->dso;
529
530 if (kdso->has_build_id) {
531 char filename[PATH_MAX];
532 if (dso__build_id_filename(kdso, filename, sizeof(filename)))
533 printed += fprintf(fp, "[0] %s\n", filename);
534 }
535
536 for (i = 0; i < vmlinux_path__nr_entries; ++i)
537 printed += fprintf(fp, "[%d] %s\n",
538 i + kdso->has_build_id, vmlinux_path[i]);
539
540 return printed;
541}
542
543size_t machine__fprintf(struct machine *machine, FILE *fp)
544{
545 size_t ret = 0;
546 struct rb_node *nd;
547
548 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
549 struct thread *pos = rb_entry(nd, struct thread, rb_node);
550
551 ret += thread__fprintf(pos, fp);
552 }
553
554 return ret;
555}
556
557static struct dso *machine__get_kernel(struct machine *machine)
558{
559 const char *vmlinux_name = NULL;
560 struct dso *kernel;
561
562 if (machine__is_host(machine)) {
563 vmlinux_name = symbol_conf.vmlinux_name;
564 if (!vmlinux_name)
565 vmlinux_name = "[kernel.kallsyms]";
566
567 kernel = dso__kernel_findnew(machine, vmlinux_name,
568 "[kernel]",
569 DSO_TYPE_KERNEL);
570 } else {
571 char bf[PATH_MAX];
572
573 if (machine__is_default_guest(machine))
574 vmlinux_name = symbol_conf.default_guest_vmlinux_name;
575 if (!vmlinux_name)
576 vmlinux_name = machine__mmap_name(machine, bf,
577 sizeof(bf));
578
579 kernel = dso__kernel_findnew(machine, vmlinux_name,
580 "[guest.kernel]",
581 DSO_TYPE_GUEST_KERNEL);
582 }
583
584 if (kernel != NULL && (!kernel->has_build_id))
585 dso__read_running_kernel_build_id(kernel, machine);
586
587 return kernel;
588}
589
590struct process_args {
591 u64 start;
592};
593
Adrian Hunter15a0a872014-01-29 16:14:38 +0200594static void machine__get_kallsyms_filename(struct machine *machine, char *buf,
595 size_t bufsz)
596{
597 if (machine__is_default_guest(machine))
598 scnprintf(buf, bufsz, "%s", symbol_conf.default_guest_kallsyms);
599 else
600 scnprintf(buf, bufsz, "%s/proc/kallsyms", machine->root_dir);
601}
602
Simon Quea93f0e52014-06-16 11:32:09 -0700603const char *ref_reloc_sym_names[] = {"_text", "_stext", NULL};
604
605/* Figure out the start address of kernel map from /proc/kallsyms.
606 * Returns the name of the start symbol in *symbol_name. Pass in NULL as
607 * symbol_name if it's not that important.
608 */
Adrian Hunter4b993752014-08-15 22:08:38 +0300609static u64 machine__get_running_kernel_start(struct machine *machine,
610 const char **symbol_name)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300611{
Adrian Hunter15a0a872014-01-29 16:14:38 +0200612 char filename[PATH_MAX];
Simon Quea93f0e52014-06-16 11:32:09 -0700613 int i;
614 const char *name;
615 u64 addr = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300616
Adrian Hunter15a0a872014-01-29 16:14:38 +0200617 machine__get_kallsyms_filename(machine, filename, PATH_MAX);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300618
619 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
620 return 0;
621
Simon Quea93f0e52014-06-16 11:32:09 -0700622 for (i = 0; (name = ref_reloc_sym_names[i]) != NULL; i++) {
623 addr = kallsyms__get_function_start(filename, name);
624 if (addr)
625 break;
626 }
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300627
Simon Quea93f0e52014-06-16 11:32:09 -0700628 if (symbol_name)
629 *symbol_name = name;
630
631 return addr;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300632}
633
634int __machine__create_kernel_maps(struct machine *machine, struct dso *kernel)
635{
636 enum map_type type;
Adrian Hunter4b993752014-08-15 22:08:38 +0300637 u64 start = machine__get_running_kernel_start(machine, NULL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300638
639 for (type = 0; type < MAP__NR_TYPES; ++type) {
640 struct kmap *kmap;
641
642 machine->vmlinux_maps[type] = map__new2(start, kernel, type);
643 if (machine->vmlinux_maps[type] == NULL)
644 return -1;
645
646 machine->vmlinux_maps[type]->map_ip =
647 machine->vmlinux_maps[type]->unmap_ip =
648 identity__map_ip;
649 kmap = map__kmap(machine->vmlinux_maps[type]);
650 kmap->kmaps = &machine->kmaps;
651 map_groups__insert(&machine->kmaps,
652 machine->vmlinux_maps[type]);
653 }
654
655 return 0;
656}
657
658void machine__destroy_kernel_maps(struct machine *machine)
659{
660 enum map_type type;
661
662 for (type = 0; type < MAP__NR_TYPES; ++type) {
663 struct kmap *kmap;
664
665 if (machine->vmlinux_maps[type] == NULL)
666 continue;
667
668 kmap = map__kmap(machine->vmlinux_maps[type]);
669 map_groups__remove(&machine->kmaps,
670 machine->vmlinux_maps[type]);
671 if (kmap->ref_reloc_sym) {
672 /*
673 * ref_reloc_sym is shared among all maps, so free just
674 * on one of them.
675 */
676 if (type == MAP__FUNCTION) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300677 zfree((char **)&kmap->ref_reloc_sym->name);
678 zfree(&kmap->ref_reloc_sym);
679 } else
680 kmap->ref_reloc_sym = NULL;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300681 }
682
683 map__delete(machine->vmlinux_maps[type]);
684 machine->vmlinux_maps[type] = NULL;
685 }
686}
687
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300688int machines__create_guest_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300689{
690 int ret = 0;
691 struct dirent **namelist = NULL;
692 int i, items = 0;
693 char path[PATH_MAX];
694 pid_t pid;
695 char *endp;
696
697 if (symbol_conf.default_guest_vmlinux_name ||
698 symbol_conf.default_guest_modules ||
699 symbol_conf.default_guest_kallsyms) {
700 machines__create_kernel_maps(machines, DEFAULT_GUEST_KERNEL_ID);
701 }
702
703 if (symbol_conf.guestmount) {
704 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
705 if (items <= 0)
706 return -ENOENT;
707 for (i = 0; i < items; i++) {
708 if (!isdigit(namelist[i]->d_name[0])) {
709 /* Filter out . and .. */
710 continue;
711 }
712 pid = (pid_t)strtol(namelist[i]->d_name, &endp, 10);
713 if ((*endp != '\0') ||
714 (endp == namelist[i]->d_name) ||
715 (errno == ERANGE)) {
716 pr_debug("invalid directory (%s). Skipping.\n",
717 namelist[i]->d_name);
718 continue;
719 }
720 sprintf(path, "%s/%s/proc/kallsyms",
721 symbol_conf.guestmount,
722 namelist[i]->d_name);
723 ret = access(path, R_OK);
724 if (ret) {
725 pr_debug("Can't access file %s\n", path);
726 goto failure;
727 }
728 machines__create_kernel_maps(machines, pid);
729 }
730failure:
731 free(namelist);
732 }
733
734 return ret;
735}
736
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300737void machines__destroy_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300738{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300739 struct rb_node *next = rb_first(&machines->guests);
740
741 machine__destroy_kernel_maps(&machines->host);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300742
743 while (next) {
744 struct machine *pos = rb_entry(next, struct machine, rb_node);
745
746 next = rb_next(&pos->rb_node);
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300747 rb_erase(&pos->rb_node, &machines->guests);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300748 machine__delete(pos);
749 }
750}
751
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300752int machines__create_kernel_maps(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300753{
754 struct machine *machine = machines__findnew(machines, pid);
755
756 if (machine == NULL)
757 return -1;
758
759 return machine__create_kernel_maps(machine);
760}
761
762int machine__load_kallsyms(struct machine *machine, const char *filename,
763 enum map_type type, symbol_filter_t filter)
764{
765 struct map *map = machine->vmlinux_maps[type];
766 int ret = dso__load_kallsyms(map->dso, filename, map, filter);
767
768 if (ret > 0) {
769 dso__set_loaded(map->dso, type);
770 /*
771 * Since /proc/kallsyms will have multiple sessions for the
772 * kernel, with modules between them, fixup the end of all
773 * sections.
774 */
775 __map_groups__fixup_end(&machine->kmaps, type);
776 }
777
778 return ret;
779}
780
781int machine__load_vmlinux_path(struct machine *machine, enum map_type type,
782 symbol_filter_t filter)
783{
784 struct map *map = machine->vmlinux_maps[type];
785 int ret = dso__load_vmlinux_path(map->dso, map, filter);
786
Adrian Hunter39b12f782013-08-07 14:38:47 +0300787 if (ret > 0)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300788 dso__set_loaded(map->dso, type);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300789
790 return ret;
791}
792
793static void map_groups__fixup_end(struct map_groups *mg)
794{
795 int i;
796 for (i = 0; i < MAP__NR_TYPES; ++i)
797 __map_groups__fixup_end(mg, i);
798}
799
800static char *get_kernel_version(const char *root_dir)
801{
802 char version[PATH_MAX];
803 FILE *file;
804 char *name, *tmp;
805 const char *prefix = "Linux version ";
806
807 sprintf(version, "%s/proc/version", root_dir);
808 file = fopen(version, "r");
809 if (!file)
810 return NULL;
811
812 version[0] = '\0';
813 tmp = fgets(version, sizeof(version), file);
814 fclose(file);
815
816 name = strstr(version, prefix);
817 if (!name)
818 return NULL;
819 name += strlen(prefix);
820 tmp = strchr(name, ' ');
821 if (tmp)
822 *tmp = '\0';
823
824 return strdup(name);
825}
826
827static int map_groups__set_modules_path_dir(struct map_groups *mg,
Richard Yao61d42902014-04-26 13:17:55 -0400828 const char *dir_name, int depth)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300829{
830 struct dirent *dent;
831 DIR *dir = opendir(dir_name);
832 int ret = 0;
833
834 if (!dir) {
835 pr_debug("%s: cannot open %s dir\n", __func__, dir_name);
836 return -1;
837 }
838
839 while ((dent = readdir(dir)) != NULL) {
840 char path[PATH_MAX];
841 struct stat st;
842
843 /*sshfs might return bad dent->d_type, so we have to stat*/
844 snprintf(path, sizeof(path), "%s/%s", dir_name, dent->d_name);
845 if (stat(path, &st))
846 continue;
847
848 if (S_ISDIR(st.st_mode)) {
849 if (!strcmp(dent->d_name, ".") ||
850 !strcmp(dent->d_name, ".."))
851 continue;
852
Richard Yao61d42902014-04-26 13:17:55 -0400853 /* Do not follow top-level source and build symlinks */
854 if (depth == 0) {
855 if (!strcmp(dent->d_name, "source") ||
856 !strcmp(dent->d_name, "build"))
857 continue;
858 }
859
860 ret = map_groups__set_modules_path_dir(mg, path,
861 depth + 1);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300862 if (ret < 0)
863 goto out;
864 } else {
865 char *dot = strrchr(dent->d_name, '.'),
866 dso_name[PATH_MAX];
867 struct map *map;
868 char *long_name;
869
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900870 if (dot == NULL)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300871 continue;
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900872
873 /* On some system, modules are compressed like .ko.gz */
874 if (is_supported_compression(dot + 1) &&
875 is_kmodule_extension(dot - 2))
876 dot -= 3;
877
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300878 snprintf(dso_name, sizeof(dso_name), "[%.*s]",
879 (int)(dot - dent->d_name), dent->d_name);
880
881 strxfrchar(dso_name, '-', '_');
882 map = map_groups__find_by_name(mg, MAP__FUNCTION,
883 dso_name);
884 if (map == NULL)
885 continue;
886
887 long_name = strdup(path);
888 if (long_name == NULL) {
889 ret = -1;
890 goto out;
891 }
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -0300892 dso__set_long_name(map->dso, long_name, true);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300893 dso__kernel_module_get_build_id(map->dso, "");
894 }
895 }
896
897out:
898 closedir(dir);
899 return ret;
900}
901
902static int machine__set_modules_path(struct machine *machine)
903{
904 char *version;
905 char modules_path[PATH_MAX];
906
907 version = get_kernel_version(machine->root_dir);
908 if (!version)
909 return -1;
910
Richard Yao61d42902014-04-26 13:17:55 -0400911 snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s",
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300912 machine->root_dir, version);
913 free(version);
914
Richard Yao61d42902014-04-26 13:17:55 -0400915 return map_groups__set_modules_path_dir(&machine->kmaps, modules_path, 0);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300916}
917
Adrian Hunter316d70d2013-10-08 11:45:48 +0300918static int machine__create_module(void *arg, const char *name, u64 start)
919{
920 struct machine *machine = arg;
921 struct map *map;
922
923 map = machine__new_module(machine, start, name);
924 if (map == NULL)
925 return -1;
926
927 dso__kernel_module_get_build_id(map->dso, machine->root_dir);
928
929 return 0;
930}
931
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300932static int machine__create_modules(struct machine *machine)
933{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300934 const char *modules;
935 char path[PATH_MAX];
936
Adrian Hunterf4be9042013-09-22 13:22:09 +0300937 if (machine__is_default_guest(machine)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300938 modules = symbol_conf.default_guest_modules;
Adrian Hunterf4be9042013-09-22 13:22:09 +0300939 } else {
940 snprintf(path, PATH_MAX, "%s/proc/modules", machine->root_dir);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300941 modules = path;
942 }
943
Adrian Hunteraa7fe3b2013-09-22 13:22:09 +0300944 if (symbol__restricted_filename(modules, "/proc/modules"))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300945 return -1;
946
Adrian Hunter316d70d2013-10-08 11:45:48 +0300947 if (modules__parse(modules, machine, machine__create_module))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300948 return -1;
949
Adrian Hunter316d70d2013-10-08 11:45:48 +0300950 if (!machine__set_modules_path(machine))
951 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300952
Adrian Hunter316d70d2013-10-08 11:45:48 +0300953 pr_debug("Problems setting modules path maps, continuing anyway...\n");
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300954
Jason Wessel8f76fcd2013-07-15 15:27:53 -0500955 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300956}
957
958int machine__create_kernel_maps(struct machine *machine)
959{
960 struct dso *kernel = machine__get_kernel(machine);
Adrian Hunter5512cf22014-01-29 16:14:39 +0200961 const char *name;
Adrian Hunter4b993752014-08-15 22:08:38 +0300962 u64 addr = machine__get_running_kernel_start(machine, &name);
Adrian Hunter5512cf22014-01-29 16:14:39 +0200963 if (!addr)
964 return -1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300965
966 if (kernel == NULL ||
967 __machine__create_kernel_maps(machine, kernel) < 0)
968 return -1;
969
970 if (symbol_conf.use_modules && machine__create_modules(machine) < 0) {
971 if (machine__is_host(machine))
972 pr_debug("Problems creating module maps, "
973 "continuing anyway...\n");
974 else
975 pr_debug("Problems creating module maps for guest %d, "
976 "continuing anyway...\n", machine->pid);
977 }
978
979 /*
980 * Now that we have all the maps created, just set the ->end of them:
981 */
982 map_groups__fixup_end(&machine->kmaps);
Adrian Hunter5512cf22014-01-29 16:14:39 +0200983
984 if (maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps, name,
985 addr)) {
986 machine__destroy_kernel_maps(machine);
987 return -1;
988 }
989
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300990 return 0;
991}
992
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300993static void machine__set_kernel_mmap_len(struct machine *machine,
994 union perf_event *event)
995{
Namhyung Kim4552cf0f2012-11-07 16:27:10 +0900996 int i;
997
998 for (i = 0; i < MAP__NR_TYPES; i++) {
999 machine->vmlinux_maps[i]->start = event->mmap.start;
1000 machine->vmlinux_maps[i]->end = (event->mmap.start +
1001 event->mmap.len);
1002 /*
1003 * Be a bit paranoid here, some perf.data file came with
1004 * a zero sized synthesized MMAP event for the kernel.
1005 */
1006 if (machine->vmlinux_maps[i]->end == 0)
1007 machine->vmlinux_maps[i]->end = ~0ULL;
1008 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001009}
1010
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001011static bool machine__uses_kcore(struct machine *machine)
1012{
1013 struct dso *dso;
1014
Waiman Long8fa7d872014-09-29 16:07:28 -04001015 list_for_each_entry(dso, &machine->kernel_dsos.head, node) {
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001016 if (dso__is_kcore(dso))
1017 return true;
1018 }
1019
1020 return false;
1021}
1022
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001023static int machine__process_kernel_mmap_event(struct machine *machine,
1024 union perf_event *event)
1025{
1026 struct map *map;
1027 char kmmap_prefix[PATH_MAX];
1028 enum dso_kernel_type kernel_type;
1029 bool is_kernel_mmap;
1030
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001031 /* If we have maps from kcore then we do not need or want any others */
1032 if (machine__uses_kcore(machine))
1033 return 0;
1034
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001035 machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
1036 if (machine__is_host(machine))
1037 kernel_type = DSO_TYPE_KERNEL;
1038 else
1039 kernel_type = DSO_TYPE_GUEST_KERNEL;
1040
1041 is_kernel_mmap = memcmp(event->mmap.filename,
1042 kmmap_prefix,
1043 strlen(kmmap_prefix) - 1) == 0;
1044 if (event->mmap.filename[0] == '/' ||
1045 (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
1046
1047 char short_module_name[1024];
1048 char *name, *dot;
1049
1050 if (event->mmap.filename[0] == '/') {
1051 name = strrchr(event->mmap.filename, '/');
1052 if (name == NULL)
1053 goto out_problem;
1054
1055 ++name; /* skip / */
1056 dot = strrchr(name, '.');
1057 if (dot == NULL)
1058 goto out_problem;
Namhyung Kimc00c48f2014-11-04 10:14:27 +09001059 /* On some system, modules are compressed like .ko.gz */
1060 if (is_supported_compression(dot + 1))
1061 dot -= 3;
1062 if (!is_kmodule_extension(dot + 1))
1063 goto out_problem;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001064 snprintf(short_module_name, sizeof(short_module_name),
1065 "[%.*s]", (int)(dot - name), name);
1066 strxfrchar(short_module_name, '-', '_');
1067 } else
1068 strcpy(short_module_name, event->mmap.filename);
1069
1070 map = machine__new_module(machine, event->mmap.start,
1071 event->mmap.filename);
1072 if (map == NULL)
1073 goto out_problem;
1074
1075 name = strdup(short_module_name);
1076 if (name == NULL)
1077 goto out_problem;
1078
Adrian Hunter58a98c92013-12-10 11:11:46 -03001079 dso__set_short_name(map->dso, name, true);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001080 map->end = map->start + event->mmap.len;
1081 } else if (is_kernel_mmap) {
1082 const char *symbol_name = (event->mmap.filename +
1083 strlen(kmmap_prefix));
1084 /*
1085 * Should be there already, from the build-id table in
1086 * the header.
1087 */
1088 struct dso *kernel = __dsos__findnew(&machine->kernel_dsos,
1089 kmmap_prefix);
1090 if (kernel == NULL)
1091 goto out_problem;
1092
1093 kernel->kernel = kernel_type;
1094 if (__machine__create_kernel_maps(machine, kernel) < 0)
1095 goto out_problem;
1096
1097 machine__set_kernel_mmap_len(machine, event);
1098
1099 /*
1100 * Avoid using a zero address (kptr_restrict) for the ref reloc
1101 * symbol. Effectively having zero here means that at record
1102 * time /proc/sys/kernel/kptr_restrict was non zero.
1103 */
1104 if (event->mmap.pgoff != 0) {
1105 maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps,
1106 symbol_name,
1107 event->mmap.pgoff);
1108 }
1109
1110 if (machine__is_default_guest(machine)) {
1111 /*
1112 * preload dso of guest kernel and modules
1113 */
1114 dso__load(kernel, machine->vmlinux_maps[MAP__FUNCTION],
1115 NULL);
1116 }
1117 }
1118 return 0;
1119out_problem:
1120 return -1;
1121}
1122
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001123int machine__process_mmap2_event(struct machine *machine,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001124 union perf_event *event,
1125 struct perf_sample *sample __maybe_unused)
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001126{
1127 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1128 struct thread *thread;
1129 struct map *map;
1130 enum map_type type;
1131 int ret = 0;
1132
1133 if (dump_trace)
1134 perf_event__fprintf_mmap2(event, stdout);
1135
1136 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1137 cpumode == PERF_RECORD_MISC_KERNEL) {
1138 ret = machine__process_kernel_mmap_event(machine, event);
1139 if (ret < 0)
1140 goto out_problem;
1141 return 0;
1142 }
1143
1144 thread = machine__findnew_thread(machine, event->mmap2.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001145 event->mmap2.tid);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001146 if (thread == NULL)
1147 goto out_problem;
1148
1149 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1150 type = MAP__VARIABLE;
1151 else
1152 type = MAP__FUNCTION;
1153
Adrian Hunter2a030682014-07-22 16:17:53 +03001154 map = map__new(machine, event->mmap2.start,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001155 event->mmap2.len, event->mmap2.pgoff,
1156 event->mmap2.pid, event->mmap2.maj,
1157 event->mmap2.min, event->mmap2.ino,
1158 event->mmap2.ino_generation,
Don Zickus7ef80702014-05-19 15:13:49 -04001159 event->mmap2.prot,
1160 event->mmap2.flags,
Adrian Hunter5835edd2014-07-22 16:18:00 +03001161 event->mmap2.filename, type, thread);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001162
1163 if (map == NULL)
1164 goto out_problem;
1165
1166 thread__insert_map(thread, map);
1167 return 0;
1168
1169out_problem:
1170 dump_printf("problem processing PERF_RECORD_MMAP2, skipping event.\n");
1171 return 0;
1172}
1173
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001174int machine__process_mmap_event(struct machine *machine, union perf_event *event,
1175 struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001176{
1177 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1178 struct thread *thread;
1179 struct map *map;
Stephane Eranianbad40912013-01-24 16:10:40 +01001180 enum map_type type;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001181 int ret = 0;
1182
1183 if (dump_trace)
1184 perf_event__fprintf_mmap(event, stdout);
1185
1186 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1187 cpumode == PERF_RECORD_MISC_KERNEL) {
1188 ret = machine__process_kernel_mmap_event(machine, event);
1189 if (ret < 0)
1190 goto out_problem;
1191 return 0;
1192 }
1193
Adrian Hunter314add62013-08-27 11:23:03 +03001194 thread = machine__findnew_thread(machine, event->mmap.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001195 event->mmap.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001196 if (thread == NULL)
1197 goto out_problem;
Stephane Eranianbad40912013-01-24 16:10:40 +01001198
1199 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1200 type = MAP__VARIABLE;
1201 else
1202 type = MAP__FUNCTION;
1203
Adrian Hunter2a030682014-07-22 16:17:53 +03001204 map = map__new(machine, event->mmap.start,
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001205 event->mmap.len, event->mmap.pgoff,
Don Zickus7ef80702014-05-19 15:13:49 -04001206 event->mmap.pid, 0, 0, 0, 0, 0, 0,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001207 event->mmap.filename,
Adrian Hunter5835edd2014-07-22 16:18:00 +03001208 type, thread);
Stephane Eranianbad40912013-01-24 16:10:40 +01001209
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001210 if (map == NULL)
1211 goto out_problem;
1212
1213 thread__insert_map(thread, map);
1214 return 0;
1215
1216out_problem:
1217 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
1218 return 0;
1219}
1220
David Ahern236a3bb2013-08-14 08:49:27 -06001221static void machine__remove_thread(struct machine *machine, struct thread *th)
1222{
1223 machine->last_match = NULL;
1224 rb_erase(&th->rb_node, &machine->threads);
1225 /*
1226 * We may have references to this thread, for instance in some hist_entry
1227 * instances, so just move them to a separate list.
1228 */
1229 list_add_tail(&th->node, &machine->dead_threads);
1230}
1231
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001232int machine__process_fork_event(struct machine *machine, union perf_event *event,
1233 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001234{
Jiri Olsad75e6092014-03-14 15:00:03 +01001235 struct thread *thread = machine__find_thread(machine,
1236 event->fork.pid,
1237 event->fork.tid);
Adrian Hunter314add62013-08-27 11:23:03 +03001238 struct thread *parent = machine__findnew_thread(machine,
1239 event->fork.ppid,
1240 event->fork.ptid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001241
David Ahern236a3bb2013-08-14 08:49:27 -06001242 /* if a thread currently exists for the thread id remove it */
1243 if (thread != NULL)
1244 machine__remove_thread(machine, thread);
1245
Adrian Hunter314add62013-08-27 11:23:03 +03001246 thread = machine__findnew_thread(machine, event->fork.pid,
1247 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001248 if (dump_trace)
1249 perf_event__fprintf_task(event, stdout);
1250
1251 if (thread == NULL || parent == NULL ||
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001252 thread__fork(thread, parent, sample->time) < 0) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001253 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
1254 return -1;
1255 }
1256
1257 return 0;
1258}
1259
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001260int machine__process_exit_event(struct machine *machine, union perf_event *event,
1261 struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001262{
Jiri Olsad75e6092014-03-14 15:00:03 +01001263 struct thread *thread = machine__find_thread(machine,
1264 event->fork.pid,
1265 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001266
1267 if (dump_trace)
1268 perf_event__fprintf_task(event, stdout);
1269
1270 if (thread != NULL)
David Ahern236a3bb2013-08-14 08:49:27 -06001271 thread__exited(thread);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001272
1273 return 0;
1274}
1275
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001276int machine__process_event(struct machine *machine, union perf_event *event,
1277 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001278{
1279 int ret;
1280
1281 switch (event->header.type) {
1282 case PERF_RECORD_COMM:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001283 ret = machine__process_comm_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001284 case PERF_RECORD_MMAP:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001285 ret = machine__process_mmap_event(machine, event, sample); break;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001286 case PERF_RECORD_MMAP2:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001287 ret = machine__process_mmap2_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001288 case PERF_RECORD_FORK:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001289 ret = machine__process_fork_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001290 case PERF_RECORD_EXIT:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001291 ret = machine__process_exit_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001292 case PERF_RECORD_LOST:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001293 ret = machine__process_lost_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001294 default:
1295 ret = -1;
1296 break;
1297 }
1298
1299 return ret;
1300}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001301
Greg Priceb21484f2012-12-06 21:48:05 -08001302static bool symbol__match_regex(struct symbol *sym, regex_t *regex)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001303{
Greg Priceb21484f2012-12-06 21:48:05 -08001304 if (sym->name && !regexec(regex, sym->name, 0, NULL, 0))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001305 return 1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001306 return 0;
1307}
1308
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001309static void ip__resolve_ams(struct thread *thread,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001310 struct addr_map_symbol *ams,
1311 u64 ip)
1312{
1313 struct addr_location al;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001314
1315 memset(&al, 0, sizeof(al));
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -03001316 /*
1317 * We cannot use the header.misc hint to determine whether a
1318 * branch stack address is user, kernel, guest, hypervisor.
1319 * Branches may straddle the kernel/user/hypervisor boundaries.
1320 * Thus, we have to try consecutively until we find a match
1321 * or else, the symbol is unknown
1322 */
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001323 thread__find_cpumode_addr_location(thread, MAP__FUNCTION, ip, &al);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001324
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001325 ams->addr = ip;
1326 ams->al_addr = al.addr;
1327 ams->sym = al.sym;
1328 ams->map = al.map;
1329}
1330
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001331static void ip__resolve_data(struct thread *thread,
Stephane Eranian98a3b322013-01-24 16:10:35 +01001332 u8 m, struct addr_map_symbol *ams, u64 addr)
1333{
1334 struct addr_location al;
1335
1336 memset(&al, 0, sizeof(al));
1337
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001338 thread__find_addr_location(thread, m, MAP__VARIABLE, addr, &al);
Don Zickus06b2afc2014-08-20 23:25:11 -04001339 if (al.map == NULL) {
1340 /*
1341 * some shared data regions have execute bit set which puts
1342 * their mapping in the MAP__FUNCTION type array.
1343 * Check there as a fallback option before dropping the sample.
1344 */
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001345 thread__find_addr_location(thread, m, MAP__FUNCTION, addr, &al);
Don Zickus06b2afc2014-08-20 23:25:11 -04001346 }
1347
Stephane Eranian98a3b322013-01-24 16:10:35 +01001348 ams->addr = addr;
1349 ams->al_addr = al.addr;
1350 ams->sym = al.sym;
1351 ams->map = al.map;
1352}
1353
Arnaldo Carvalho de Meloe80faac2014-01-22 13:05:06 -03001354struct mem_info *sample__resolve_mem(struct perf_sample *sample,
1355 struct addr_location *al)
Stephane Eranian98a3b322013-01-24 16:10:35 +01001356{
1357 struct mem_info *mi = zalloc(sizeof(*mi));
1358
1359 if (!mi)
1360 return NULL;
1361
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001362 ip__resolve_ams(al->thread, &mi->iaddr, sample->ip);
1363 ip__resolve_data(al->thread, al->cpumode, &mi->daddr, sample->addr);
Stephane Eranian98a3b322013-01-24 16:10:35 +01001364 mi->data_src.val = sample->data_src;
1365
1366 return mi;
1367}
1368
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03001369struct branch_info *sample__resolve_bstack(struct perf_sample *sample,
1370 struct addr_location *al)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001371{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001372 unsigned int i;
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03001373 const struct branch_stack *bs = sample->branch_stack;
1374 struct branch_info *bi = calloc(bs->nr, sizeof(struct branch_info));
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001375
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001376 if (!bi)
1377 return NULL;
1378
1379 for (i = 0; i < bs->nr; i++) {
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001380 ip__resolve_ams(al->thread, &bi[i].to, bs->entries[i].to);
1381 ip__resolve_ams(al->thread, &bi[i].from, bs->entries[i].from);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001382 bi[i].flags = bs->entries[i].flags;
1383 }
1384 return bi;
1385}
1386
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001387static int thread__resolve_callchain_sample(struct thread *thread,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001388 struct ip_callchain *chain,
Greg Priceb21484f2012-12-06 21:48:05 -08001389 struct symbol **parent,
Waiman Long91e95612013-10-18 10:38:48 -04001390 struct addr_location *root_al,
1391 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001392{
1393 u8 cpumode = PERF_RECORD_MISC_USER;
Waiman Long91e95612013-10-18 10:38:48 -04001394 int chain_nr = min(max_stack, (int)chain->nr);
1395 int i;
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001396 int j;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001397 int err;
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001398 int skip_idx __maybe_unused;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001399
1400 callchain_cursor_reset(&callchain_cursor);
1401
1402 if (chain->nr > PERF_MAX_STACK_DEPTH) {
1403 pr_warning("corrupted callchain. skipping...\n");
1404 return 0;
1405 }
1406
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001407 /*
1408 * Based on DWARF debug information, some architectures skip
1409 * a callchain entry saved by the kernel.
1410 */
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001411 skip_idx = arch_skip_callchain_idx(thread, chain);
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001412
Waiman Long91e95612013-10-18 10:38:48 -04001413 for (i = 0; i < chain_nr; i++) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001414 u64 ip;
1415 struct addr_location al;
1416
1417 if (callchain_param.order == ORDER_CALLEE)
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001418 j = i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001419 else
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001420 j = chain->nr - i - 1;
1421
1422#ifdef HAVE_SKIP_CALLCHAIN_IDX
1423 if (j == skip_idx)
1424 continue;
1425#endif
1426 ip = chain->ips[j];
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001427
1428 if (ip >= PERF_CONTEXT_MAX) {
1429 switch (ip) {
1430 case PERF_CONTEXT_HV:
1431 cpumode = PERF_RECORD_MISC_HYPERVISOR;
1432 break;
1433 case PERF_CONTEXT_KERNEL:
1434 cpumode = PERF_RECORD_MISC_KERNEL;
1435 break;
1436 case PERF_CONTEXT_USER:
1437 cpumode = PERF_RECORD_MISC_USER;
1438 break;
1439 default:
1440 pr_debug("invalid callchain context: "
1441 "%"PRId64"\n", (s64) ip);
1442 /*
1443 * It seems the callchain is corrupted.
1444 * Discard all.
1445 */
1446 callchain_cursor_reset(&callchain_cursor);
1447 return 0;
1448 }
1449 continue;
1450 }
1451
Namhyung Kimb3cef7f2014-03-17 16:59:21 -03001452 al.filtered = 0;
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001453 thread__find_addr_location(thread, cpumode,
Adrian Hunter61710bd2013-08-08 14:32:26 +03001454 MAP__FUNCTION, ip, &al);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001455 if (al.sym != NULL) {
1456 if (sort__has_parent && !*parent &&
Greg Priceb21484f2012-12-06 21:48:05 -08001457 symbol__match_regex(al.sym, &parent_regex))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001458 *parent = al.sym;
Greg Priceb21484f2012-12-06 21:48:05 -08001459 else if (have_ignore_callees && root_al &&
1460 symbol__match_regex(al.sym, &ignore_callees_regex)) {
1461 /* Treat this symbol as the root,
1462 forgetting its callees. */
1463 *root_al = al;
1464 callchain_cursor_reset(&callchain_cursor);
1465 }
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001466 }
1467
1468 err = callchain_cursor_append(&callchain_cursor,
1469 ip, al.map, al.sym);
1470 if (err)
1471 return err;
1472 }
1473
1474 return 0;
1475}
1476
1477static int unwind_entry(struct unwind_entry *entry, void *arg)
1478{
1479 struct callchain_cursor *cursor = arg;
1480 return callchain_cursor_append(cursor, entry->ip,
1481 entry->map, entry->sym);
1482}
1483
Arnaldo Carvalho de Melocc8b7c22014-10-23 15:26:17 -03001484int thread__resolve_callchain(struct thread *thread,
1485 struct perf_evsel *evsel,
1486 struct perf_sample *sample,
1487 struct symbol **parent,
1488 struct addr_location *root_al,
1489 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001490{
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001491 int ret = thread__resolve_callchain_sample(thread, sample->callchain,
1492 parent, root_al, max_stack);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001493 if (ret)
1494 return ret;
1495
1496 /* Can we do dwarf post unwind? */
1497 if (!((evsel->attr.sample_type & PERF_SAMPLE_REGS_USER) &&
1498 (evsel->attr.sample_type & PERF_SAMPLE_STACK_USER)))
1499 return 0;
1500
1501 /* Bail out if nothing was captured. */
1502 if ((!sample->user_regs.regs) ||
1503 (!sample->user_stack.size))
1504 return 0;
1505
Arnaldo Carvalho de Melodd8c17a2014-10-23 16:42:19 -03001506 return unwind__get_entries(unwind_entry, &callchain_cursor,
Jiri Olsa352ea452014-01-07 13:47:25 +01001507 thread, sample, max_stack);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001508
1509}
David Ahern35feee12013-09-28 13:12:58 -06001510
1511int machine__for_each_thread(struct machine *machine,
1512 int (*fn)(struct thread *thread, void *p),
1513 void *priv)
1514{
1515 struct rb_node *nd;
1516 struct thread *thread;
1517 int rc = 0;
1518
1519 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
1520 thread = rb_entry(nd, struct thread, rb_node);
1521 rc = fn(thread, priv);
1522 if (rc != 0)
1523 return rc;
1524 }
1525
1526 list_for_each_entry(thread, &machine->dead_threads, node) {
1527 rc = fn(thread, priv);
1528 if (rc != 0)
1529 return rc;
1530 }
1531 return rc;
1532}
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001533
Arnaldo Carvalho de Meloa33fbd52013-11-11 11:36:12 -03001534int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool,
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001535 struct target *target, struct thread_map *threads,
Arnaldo Carvalho de Meloa33fbd52013-11-11 11:36:12 -03001536 perf_event__handler_t process, bool data_mmap)
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001537{
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001538 if (target__has_task(target))
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001539 return perf_event__synthesize_thread_map(tool, threads, process, machine, data_mmap);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001540 else if (target__has_cpu(target))
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001541 return perf_event__synthesize_threads(tool, process, machine, data_mmap);
1542 /* command specified */
1543 return 0;
1544}
Adrian Hunterb9d266b2014-07-22 16:17:25 +03001545
1546pid_t machine__get_current_tid(struct machine *machine, int cpu)
1547{
1548 if (cpu < 0 || cpu >= MAX_NR_CPUS || !machine->current_tid)
1549 return -1;
1550
1551 return machine->current_tid[cpu];
1552}
1553
1554int machine__set_current_tid(struct machine *machine, int cpu, pid_t pid,
1555 pid_t tid)
1556{
1557 struct thread *thread;
1558
1559 if (cpu < 0)
1560 return -EINVAL;
1561
1562 if (!machine->current_tid) {
1563 int i;
1564
1565 machine->current_tid = calloc(MAX_NR_CPUS, sizeof(pid_t));
1566 if (!machine->current_tid)
1567 return -ENOMEM;
1568 for (i = 0; i < MAX_NR_CPUS; i++)
1569 machine->current_tid[i] = -1;
1570 }
1571
1572 if (cpu >= MAX_NR_CPUS) {
1573 pr_err("Requested CPU %d too large. ", cpu);
1574 pr_err("Consider raising MAX_NR_CPUS\n");
1575 return -EINVAL;
1576 }
1577
1578 machine->current_tid[cpu] = tid;
1579
1580 thread = machine__findnew_thread(machine, pid, tid);
1581 if (!thread)
1582 return -ENOMEM;
1583
1584 thread->cpu = cpu;
1585
1586 return 0;
1587}
Adrian Hunterfbe2af42014-08-15 22:08:39 +03001588
1589int machine__get_kernel_start(struct machine *machine)
1590{
1591 struct map *map = machine__kernel_map(machine, MAP__FUNCTION);
1592 int err = 0;
1593
1594 /*
1595 * The only addresses above 2^63 are kernel addresses of a 64-bit
1596 * kernel. Note that addresses are unsigned so that on a 32-bit system
1597 * all addresses including kernel addresses are less than 2^32. In
1598 * that case (32-bit system), if the kernel mapping is unknown, all
1599 * addresses will be assumed to be in user space - see
1600 * machine__kernel_ip().
1601 */
1602 machine->kernel_start = 1ULL << 63;
1603 if (map) {
1604 err = map__load(map, machine->symbol_filter);
1605 if (map->start)
1606 machine->kernel_start = map->start;
1607 }
1608 return err;
1609}