blob: e45c8f33a8fd2776d4acbb3565534a6bb0716c4b [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"
Andi Kleen8b7bad52014-11-12 18:05:20 -080015#include "linux/hash.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030016
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -030017static void machine__remove_thread(struct machine *machine, struct thread *th);
18
Arnaldo Carvalho de Meloe167f992014-10-14 15:07:48 -030019static void dsos__init(struct dsos *dsos)
20{
21 INIT_LIST_HEAD(&dsos->head);
22 dsos->root = RB_ROOT;
23}
24
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030025int machine__init(struct machine *machine, const char *root_dir, pid_t pid)
26{
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -030027 map_groups__init(&machine->kmaps, machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030028 RB_CLEAR_NODE(&machine->rb_node);
Arnaldo Carvalho de Meloe167f992014-10-14 15:07:48 -030029 dsos__init(&machine->user_dsos);
30 dsos__init(&machine->kernel_dsos);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030031
32 machine->threads = RB_ROOT;
33 INIT_LIST_HEAD(&machine->dead_threads);
34 machine->last_match = NULL;
35
Adrian Hunterd027b642014-07-23 14:23:00 +030036 machine->vdso_info = NULL;
37
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030038 machine->pid = pid;
39
Adrian Hunter611a5ce2013-08-08 14:32:20 +030040 machine->symbol_filter = NULL;
Jiri Olsa14bd6d22014-01-07 13:47:19 +010041 machine->id_hdr_size = 0;
Adrian Huntercfe1c412014-07-31 09:00:45 +030042 machine->comm_exec = false;
Adrian Hunterfbe2af42014-08-15 22:08:39 +030043 machine->kernel_start = 0;
Adrian Hunter611a5ce2013-08-08 14:32:20 +030044
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030045 machine->root_dir = strdup(root_dir);
46 if (machine->root_dir == NULL)
47 return -ENOMEM;
48
49 if (pid != HOST_KERNEL_ID) {
Adrian Hunter1fcb8762014-07-14 13:02:25 +030050 struct thread *thread = machine__findnew_thread(machine, -1,
Adrian Hunter314add62013-08-27 11:23:03 +030051 pid);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030052 char comm[64];
53
54 if (thread == NULL)
55 return -ENOMEM;
56
57 snprintf(comm, sizeof(comm), "[guest/%d]", pid);
Frederic Weisbecker162f0be2013-09-11 16:18:24 +020058 thread__set_comm(thread, comm, 0);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030059 }
60
Adrian Hunterb9d266b2014-07-22 16:17:25 +030061 machine->current_tid = NULL;
62
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030063 return 0;
64}
65
David Ahern8fb598e2013-09-28 13:13:00 -060066struct machine *machine__new_host(void)
67{
68 struct machine *machine = malloc(sizeof(*machine));
69
70 if (machine != NULL) {
71 machine__init(machine, "", HOST_KERNEL_ID);
72
73 if (machine__create_kernel_maps(machine) < 0)
74 goto out_delete;
75 }
76
77 return machine;
78out_delete:
79 free(machine);
80 return NULL;
81}
82
Waiman Long8fa7d872014-09-29 16:07:28 -040083static void dsos__delete(struct dsos *dsos)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030084{
85 struct dso *pos, *n;
86
Waiman Long8fa7d872014-09-29 16:07:28 -040087 list_for_each_entry_safe(pos, n, &dsos->head, node) {
Waiman Long4598a0a2014-09-30 13:36:15 -040088 RB_CLEAR_NODE(&pos->rb_node);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030089 list_del(&pos->node);
90 dso__delete(pos);
91 }
92}
93
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030094void machine__delete_threads(struct machine *machine)
95{
96 struct rb_node *nd = rb_first(&machine->threads);
97
98 while (nd) {
99 struct thread *t = rb_entry(nd, struct thread, rb_node);
100
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300101 nd = rb_next(nd);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300102 machine__remove_thread(machine, t);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300103 }
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
Adrian Huntercfe1c412014-07-31 09:00:45 +0300182void machines__set_comm_exec(struct machines *machines, bool comm_exec)
183{
184 struct rb_node *nd;
185
186 machines->host.comm_exec = comm_exec;
187
188 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
189 struct machine *machine = rb_entry(nd, struct machine, rb_node);
190
191 machine->comm_exec = comm_exec;
192 }
193}
194
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300195struct machine *machines__find(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300196{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300197 struct rb_node **p = &machines->guests.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300198 struct rb_node *parent = NULL;
199 struct machine *machine;
200 struct machine *default_machine = NULL;
201
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300202 if (pid == HOST_KERNEL_ID)
203 return &machines->host;
204
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300205 while (*p != NULL) {
206 parent = *p;
207 machine = rb_entry(parent, struct machine, rb_node);
208 if (pid < machine->pid)
209 p = &(*p)->rb_left;
210 else if (pid > machine->pid)
211 p = &(*p)->rb_right;
212 else
213 return machine;
214 if (!machine->pid)
215 default_machine = machine;
216 }
217
218 return default_machine;
219}
220
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300221struct machine *machines__findnew(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300222{
223 char path[PATH_MAX];
224 const char *root_dir = "";
225 struct machine *machine = machines__find(machines, pid);
226
227 if (machine && (machine->pid == pid))
228 goto out;
229
230 if ((pid != HOST_KERNEL_ID) &&
231 (pid != DEFAULT_GUEST_KERNEL_ID) &&
232 (symbol_conf.guestmount)) {
233 sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
234 if (access(path, R_OK)) {
235 static struct strlist *seen;
236
237 if (!seen)
238 seen = strlist__new(true, NULL);
239
240 if (!strlist__has_entry(seen, path)) {
241 pr_err("Can't access file %s\n", path);
242 strlist__add(seen, path);
243 }
244 machine = NULL;
245 goto out;
246 }
247 root_dir = path;
248 }
249
250 machine = machines__add(machines, pid, root_dir);
251out:
252 return machine;
253}
254
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300255void machines__process_guests(struct machines *machines,
256 machine__process_t process, void *data)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300257{
258 struct rb_node *nd;
259
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300260 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300261 struct machine *pos = rb_entry(nd, struct machine, rb_node);
262 process(pos, data);
263 }
264}
265
266char *machine__mmap_name(struct machine *machine, char *bf, size_t size)
267{
268 if (machine__is_host(machine))
269 snprintf(bf, size, "[%s]", "kernel.kallsyms");
270 else if (machine__is_default_guest(machine))
271 snprintf(bf, size, "[%s]", "guest.kernel.kallsyms");
272 else {
273 snprintf(bf, size, "[%s.%d]", "guest.kernel.kallsyms",
274 machine->pid);
275 }
276
277 return bf;
278}
279
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300280void machines__set_id_hdr_size(struct machines *machines, u16 id_hdr_size)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300281{
282 struct rb_node *node;
283 struct machine *machine;
284
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300285 machines->host.id_hdr_size = id_hdr_size;
286
287 for (node = rb_first(&machines->guests); node; node = rb_next(node)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300288 machine = rb_entry(node, struct machine, rb_node);
289 machine->id_hdr_size = id_hdr_size;
290 }
291
292 return;
293}
294
Adrian Hunter29ce3612014-07-16 11:07:13 +0300295static void machine__update_thread_pid(struct machine *machine,
296 struct thread *th, pid_t pid)
297{
298 struct thread *leader;
299
300 if (pid == th->pid_ || pid == -1 || th->pid_ != -1)
301 return;
302
303 th->pid_ = pid;
304
305 if (th->pid_ == th->tid)
306 return;
307
308 leader = machine__findnew_thread(machine, th->pid_, th->pid_);
309 if (!leader)
310 goto out_err;
311
312 if (!leader->mg)
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -0300313 leader->mg = map_groups__new(machine);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300314
315 if (!leader->mg)
316 goto out_err;
317
318 if (th->mg == leader->mg)
319 return;
320
321 if (th->mg) {
322 /*
323 * Maps are created from MMAP events which provide the pid and
324 * tid. Consequently there never should be any maps on a thread
325 * with an unknown pid. Just print an error if there are.
326 */
327 if (!map_groups__empty(th->mg))
328 pr_err("Discarding thread maps for %d:%d\n",
329 th->pid_, th->tid);
330 map_groups__delete(th->mg);
331 }
332
333 th->mg = map_groups__get(leader->mg);
334
335 return;
336
337out_err:
338 pr_err("Failed to join map groups for %d:%d\n", th->pid_, th->tid);
339}
340
Adrian Hunter99d725f2013-08-26 16:00:19 +0300341static struct thread *__machine__findnew_thread(struct machine *machine,
342 pid_t pid, pid_t tid,
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300343 bool create)
344{
345 struct rb_node **p = &machine->threads.rb_node;
346 struct rb_node *parent = NULL;
347 struct thread *th;
348
349 /*
Adrian Hunter38051232013-07-04 16:20:31 +0300350 * Front-end cache - TID lookups come in blocks,
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300351 * so most of the time we dont have to look up
352 * the full rbtree:
353 */
Adrian Hunter29ce3612014-07-16 11:07:13 +0300354 th = machine->last_match;
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300355 if (th != NULL) {
356 if (th->tid == tid) {
357 machine__update_thread_pid(machine, th, pid);
358 return th;
359 }
360
361 thread__zput(machine->last_match);
Adrian Hunter99d725f2013-08-26 16:00:19 +0300362 }
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300363
364 while (*p != NULL) {
365 parent = *p;
366 th = rb_entry(parent, struct thread, rb_node);
367
Adrian Hunter38051232013-07-04 16:20:31 +0300368 if (th->tid == tid) {
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300369 machine->last_match = thread__get(th);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300370 machine__update_thread_pid(machine, th, pid);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300371 return th;
372 }
373
Adrian Hunter38051232013-07-04 16:20:31 +0300374 if (tid < th->tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300375 p = &(*p)->rb_left;
376 else
377 p = &(*p)->rb_right;
378 }
379
380 if (!create)
381 return NULL;
382
Adrian Hunter99d725f2013-08-26 16:00:19 +0300383 th = thread__new(pid, tid);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300384 if (th != NULL) {
385 rb_link_node(&th->rb_node, parent, p);
386 rb_insert_color(&th->rb_node, &machine->threads);
Jiri Olsacddcef62014-04-09 20:54:29 +0200387
388 /*
389 * We have to initialize map_groups separately
390 * after rb tree is updated.
391 *
392 * The reason is that we call machine__findnew_thread
393 * within thread__init_map_groups to find the thread
394 * leader and that would screwed the rb tree.
395 */
Adrian Hunter418029b2014-07-16 10:19:44 +0300396 if (thread__init_map_groups(th, machine)) {
Namhyung Kim260d8192015-01-09 09:38:12 +0900397 rb_erase(&th->rb_node, &machine->threads);
Adrian Hunter418029b2014-07-16 10:19:44 +0300398 thread__delete(th);
Jiri Olsacddcef62014-04-09 20:54:29 +0200399 return NULL;
Adrian Hunter418029b2014-07-16 10:19:44 +0300400 }
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300401 /*
402 * It is now in the rbtree, get a ref
403 */
404 thread__get(th);
405 machine->last_match = thread__get(th);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300406 }
407
408 return th;
409}
410
Adrian Hunter314add62013-08-27 11:23:03 +0300411struct thread *machine__findnew_thread(struct machine *machine, pid_t pid,
412 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300413{
Adrian Hunter314add62013-08-27 11:23:03 +0300414 return __machine__findnew_thread(machine, pid, tid, true);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300415}
416
Jiri Olsad75e6092014-03-14 15:00:03 +0100417struct thread *machine__find_thread(struct machine *machine, pid_t pid,
418 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300419{
Jiri Olsad75e6092014-03-14 15:00:03 +0100420 return __machine__findnew_thread(machine, pid, tid, false);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300421}
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300422
Adrian Huntercfe1c412014-07-31 09:00:45 +0300423struct comm *machine__thread_exec_comm(struct machine *machine,
424 struct thread *thread)
425{
426 if (machine->comm_exec)
427 return thread__exec_comm(thread);
428 else
429 return thread__comm(thread);
430}
431
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200432int machine__process_comm_event(struct machine *machine, union perf_event *event,
433 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300434{
Adrian Hunter314add62013-08-27 11:23:03 +0300435 struct thread *thread = machine__findnew_thread(machine,
436 event->comm.pid,
437 event->comm.tid);
Adrian Hunter65de51f2014-07-31 09:00:44 +0300438 bool exec = event->header.misc & PERF_RECORD_MISC_COMM_EXEC;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300439
Adrian Huntercfe1c412014-07-31 09:00:45 +0300440 if (exec)
441 machine->comm_exec = true;
442
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300443 if (dump_trace)
444 perf_event__fprintf_comm(event, stdout);
445
Adrian Hunter65de51f2014-07-31 09:00:44 +0300446 if (thread == NULL ||
447 __thread__set_comm(thread, event->comm.comm, sample->time, exec)) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300448 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
449 return -1;
450 }
451
452 return 0;
453}
454
455int machine__process_lost_event(struct machine *machine __maybe_unused,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200456 union perf_event *event, struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300457{
458 dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
459 event->lost.id, event->lost.lost);
460 return 0;
461}
462
Jiri Olsaca333802015-02-17 17:29:57 +0100463static struct dso*
464machine__module_dso(struct machine *machine, struct kmod_path *m,
465 const char *filename)
Jiri Olsada17ea32015-02-12 22:10:52 +0100466{
467 struct dso *dso;
Jiri Olsada17ea32015-02-12 22:10:52 +0100468
Jiri Olsaca333802015-02-17 17:29:57 +0100469 dso = dsos__find(&machine->kernel_dsos, m->name, true);
Jiri Olsada17ea32015-02-12 22:10:52 +0100470 if (!dso) {
Jiri Olsaca333802015-02-17 17:29:57 +0100471 dso = dsos__addnew(&machine->kernel_dsos, m->name);
Jiri Olsada17ea32015-02-12 22:10:52 +0100472 if (dso == NULL)
473 return NULL;
474
475 if (machine__is_host(machine))
476 dso->symtab_type = DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE;
477 else
478 dso->symtab_type = DSO_BINARY_TYPE__GUEST_KMODULE;
479
480 /* _KMODULE_COMP should be next to _KMODULE */
Jiri Olsaca333802015-02-17 17:29:57 +0100481 if (m->kmod && m->comp)
Jiri Olsada17ea32015-02-12 22:10:52 +0100482 dso->symtab_type++;
Jiri Olsaca333802015-02-17 17:29:57 +0100483
484 dso__set_short_name(dso, strdup(m->name), true);
485 dso__set_long_name(dso, strdup(filename), true);
Jiri Olsada17ea32015-02-12 22:10:52 +0100486 }
487
488 return dso;
489}
490
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300491struct map *machine__new_module(struct machine *machine, u64 start,
492 const char *filename)
493{
Jiri Olsaca333802015-02-17 17:29:57 +0100494 struct map *map = NULL;
495 struct dso *dso;
496 struct kmod_path m;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300497
Jiri Olsaca333802015-02-17 17:29:57 +0100498 if (kmod_path__parse_name(&m, filename))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300499 return NULL;
500
Jiri Olsabc84f462015-02-17 17:31:18 +0100501 map = map_groups__find_by_name(&machine->kmaps, MAP__FUNCTION,
502 m.name);
503 if (map)
504 goto out;
505
Jiri Olsaca333802015-02-17 17:29:57 +0100506 dso = machine__module_dso(machine, &m, filename);
507 if (dso == NULL)
508 goto out;
509
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300510 map = map__new2(start, dso, MAP__FUNCTION);
511 if (map == NULL)
Jiri Olsaca333802015-02-17 17:29:57 +0100512 goto out;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300513
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300514 map_groups__insert(&machine->kmaps, map);
Jiri Olsaca333802015-02-17 17:29:57 +0100515
516out:
517 free(m.name);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300518 return map;
519}
520
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300521size_t machines__fprintf_dsos(struct machines *machines, FILE *fp)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300522{
523 struct rb_node *nd;
Waiman Long8fa7d872014-09-29 16:07:28 -0400524 size_t ret = __dsos__fprintf(&machines->host.kernel_dsos.head, fp) +
525 __dsos__fprintf(&machines->host.user_dsos.head, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300526
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300527 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300528 struct machine *pos = rb_entry(nd, struct machine, rb_node);
Waiman Long8fa7d872014-09-29 16:07:28 -0400529 ret += __dsos__fprintf(&pos->kernel_dsos.head, fp);
530 ret += __dsos__fprintf(&pos->user_dsos.head, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300531 }
532
533 return ret;
534}
535
Waiman Long8fa7d872014-09-29 16:07:28 -0400536size_t machine__fprintf_dsos_buildid(struct machine *m, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300537 bool (skip)(struct dso *dso, int parm), int parm)
538{
Waiman Long8fa7d872014-09-29 16:07:28 -0400539 return __dsos__fprintf_buildid(&m->kernel_dsos.head, fp, skip, parm) +
540 __dsos__fprintf_buildid(&m->user_dsos.head, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300541}
542
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300543size_t machines__fprintf_dsos_buildid(struct machines *machines, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300544 bool (skip)(struct dso *dso, int parm), int parm)
545{
546 struct rb_node *nd;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300547 size_t ret = machine__fprintf_dsos_buildid(&machines->host, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300548
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300549 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300550 struct machine *pos = rb_entry(nd, struct machine, rb_node);
551 ret += machine__fprintf_dsos_buildid(pos, fp, skip, parm);
552 }
553 return ret;
554}
555
556size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp)
557{
558 int i;
559 size_t printed = 0;
560 struct dso *kdso = machine->vmlinux_maps[MAP__FUNCTION]->dso;
561
562 if (kdso->has_build_id) {
563 char filename[PATH_MAX];
564 if (dso__build_id_filename(kdso, filename, sizeof(filename)))
565 printed += fprintf(fp, "[0] %s\n", filename);
566 }
567
568 for (i = 0; i < vmlinux_path__nr_entries; ++i)
569 printed += fprintf(fp, "[%d] %s\n",
570 i + kdso->has_build_id, vmlinux_path[i]);
571
572 return printed;
573}
574
575size_t machine__fprintf(struct machine *machine, FILE *fp)
576{
577 size_t ret = 0;
578 struct rb_node *nd;
579
580 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
581 struct thread *pos = rb_entry(nd, struct thread, rb_node);
582
583 ret += thread__fprintf(pos, fp);
584 }
585
586 return ret;
587}
588
589static struct dso *machine__get_kernel(struct machine *machine)
590{
591 const char *vmlinux_name = NULL;
592 struct dso *kernel;
593
594 if (machine__is_host(machine)) {
595 vmlinux_name = symbol_conf.vmlinux_name;
596 if (!vmlinux_name)
597 vmlinux_name = "[kernel.kallsyms]";
598
599 kernel = dso__kernel_findnew(machine, vmlinux_name,
600 "[kernel]",
601 DSO_TYPE_KERNEL);
602 } else {
603 char bf[PATH_MAX];
604
605 if (machine__is_default_guest(machine))
606 vmlinux_name = symbol_conf.default_guest_vmlinux_name;
607 if (!vmlinux_name)
608 vmlinux_name = machine__mmap_name(machine, bf,
609 sizeof(bf));
610
611 kernel = dso__kernel_findnew(machine, vmlinux_name,
612 "[guest.kernel]",
613 DSO_TYPE_GUEST_KERNEL);
614 }
615
616 if (kernel != NULL && (!kernel->has_build_id))
617 dso__read_running_kernel_build_id(kernel, machine);
618
619 return kernel;
620}
621
622struct process_args {
623 u64 start;
624};
625
Adrian Hunter15a0a872014-01-29 16:14:38 +0200626static void machine__get_kallsyms_filename(struct machine *machine, char *buf,
627 size_t bufsz)
628{
629 if (machine__is_default_guest(machine))
630 scnprintf(buf, bufsz, "%s", symbol_conf.default_guest_kallsyms);
631 else
632 scnprintf(buf, bufsz, "%s/proc/kallsyms", machine->root_dir);
633}
634
Simon Quea93f0e52014-06-16 11:32:09 -0700635const char *ref_reloc_sym_names[] = {"_text", "_stext", NULL};
636
637/* Figure out the start address of kernel map from /proc/kallsyms.
638 * Returns the name of the start symbol in *symbol_name. Pass in NULL as
639 * symbol_name if it's not that important.
640 */
Adrian Hunter4b993752014-08-15 22:08:38 +0300641static u64 machine__get_running_kernel_start(struct machine *machine,
642 const char **symbol_name)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300643{
Adrian Hunter15a0a872014-01-29 16:14:38 +0200644 char filename[PATH_MAX];
Simon Quea93f0e52014-06-16 11:32:09 -0700645 int i;
646 const char *name;
647 u64 addr = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300648
Adrian Hunter15a0a872014-01-29 16:14:38 +0200649 machine__get_kallsyms_filename(machine, filename, PATH_MAX);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300650
651 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
652 return 0;
653
Simon Quea93f0e52014-06-16 11:32:09 -0700654 for (i = 0; (name = ref_reloc_sym_names[i]) != NULL; i++) {
655 addr = kallsyms__get_function_start(filename, name);
656 if (addr)
657 break;
658 }
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300659
Simon Quea93f0e52014-06-16 11:32:09 -0700660 if (symbol_name)
661 *symbol_name = name;
662
663 return addr;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300664}
665
666int __machine__create_kernel_maps(struct machine *machine, struct dso *kernel)
667{
668 enum map_type type;
Adrian Hunter4b993752014-08-15 22:08:38 +0300669 u64 start = machine__get_running_kernel_start(machine, NULL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300670
671 for (type = 0; type < MAP__NR_TYPES; ++type) {
672 struct kmap *kmap;
673
674 machine->vmlinux_maps[type] = map__new2(start, kernel, type);
675 if (machine->vmlinux_maps[type] == NULL)
676 return -1;
677
678 machine->vmlinux_maps[type]->map_ip =
679 machine->vmlinux_maps[type]->unmap_ip =
680 identity__map_ip;
681 kmap = map__kmap(machine->vmlinux_maps[type]);
682 kmap->kmaps = &machine->kmaps;
683 map_groups__insert(&machine->kmaps,
684 machine->vmlinux_maps[type]);
685 }
686
687 return 0;
688}
689
690void machine__destroy_kernel_maps(struct machine *machine)
691{
692 enum map_type type;
693
694 for (type = 0; type < MAP__NR_TYPES; ++type) {
695 struct kmap *kmap;
696
697 if (machine->vmlinux_maps[type] == NULL)
698 continue;
699
700 kmap = map__kmap(machine->vmlinux_maps[type]);
701 map_groups__remove(&machine->kmaps,
702 machine->vmlinux_maps[type]);
703 if (kmap->ref_reloc_sym) {
704 /*
705 * ref_reloc_sym is shared among all maps, so free just
706 * on one of them.
707 */
708 if (type == MAP__FUNCTION) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300709 zfree((char **)&kmap->ref_reloc_sym->name);
710 zfree(&kmap->ref_reloc_sym);
711 } else
712 kmap->ref_reloc_sym = NULL;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300713 }
714
715 map__delete(machine->vmlinux_maps[type]);
716 machine->vmlinux_maps[type] = NULL;
717 }
718}
719
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300720int machines__create_guest_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300721{
722 int ret = 0;
723 struct dirent **namelist = NULL;
724 int i, items = 0;
725 char path[PATH_MAX];
726 pid_t pid;
727 char *endp;
728
729 if (symbol_conf.default_guest_vmlinux_name ||
730 symbol_conf.default_guest_modules ||
731 symbol_conf.default_guest_kallsyms) {
732 machines__create_kernel_maps(machines, DEFAULT_GUEST_KERNEL_ID);
733 }
734
735 if (symbol_conf.guestmount) {
736 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
737 if (items <= 0)
738 return -ENOENT;
739 for (i = 0; i < items; i++) {
740 if (!isdigit(namelist[i]->d_name[0])) {
741 /* Filter out . and .. */
742 continue;
743 }
744 pid = (pid_t)strtol(namelist[i]->d_name, &endp, 10);
745 if ((*endp != '\0') ||
746 (endp == namelist[i]->d_name) ||
747 (errno == ERANGE)) {
748 pr_debug("invalid directory (%s). Skipping.\n",
749 namelist[i]->d_name);
750 continue;
751 }
752 sprintf(path, "%s/%s/proc/kallsyms",
753 symbol_conf.guestmount,
754 namelist[i]->d_name);
755 ret = access(path, R_OK);
756 if (ret) {
757 pr_debug("Can't access file %s\n", path);
758 goto failure;
759 }
760 machines__create_kernel_maps(machines, pid);
761 }
762failure:
763 free(namelist);
764 }
765
766 return ret;
767}
768
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300769void machines__destroy_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300770{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300771 struct rb_node *next = rb_first(&machines->guests);
772
773 machine__destroy_kernel_maps(&machines->host);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300774
775 while (next) {
776 struct machine *pos = rb_entry(next, struct machine, rb_node);
777
778 next = rb_next(&pos->rb_node);
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300779 rb_erase(&pos->rb_node, &machines->guests);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300780 machine__delete(pos);
781 }
782}
783
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300784int machines__create_kernel_maps(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300785{
786 struct machine *machine = machines__findnew(machines, pid);
787
788 if (machine == NULL)
789 return -1;
790
791 return machine__create_kernel_maps(machine);
792}
793
794int machine__load_kallsyms(struct machine *machine, const char *filename,
795 enum map_type type, symbol_filter_t filter)
796{
797 struct map *map = machine->vmlinux_maps[type];
798 int ret = dso__load_kallsyms(map->dso, filename, map, filter);
799
800 if (ret > 0) {
801 dso__set_loaded(map->dso, type);
802 /*
803 * Since /proc/kallsyms will have multiple sessions for the
804 * kernel, with modules between them, fixup the end of all
805 * sections.
806 */
807 __map_groups__fixup_end(&machine->kmaps, type);
808 }
809
810 return ret;
811}
812
813int machine__load_vmlinux_path(struct machine *machine, enum map_type type,
814 symbol_filter_t filter)
815{
816 struct map *map = machine->vmlinux_maps[type];
817 int ret = dso__load_vmlinux_path(map->dso, map, filter);
818
Adrian Hunter39b12f782013-08-07 14:38:47 +0300819 if (ret > 0)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300820 dso__set_loaded(map->dso, type);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300821
822 return ret;
823}
824
825static void map_groups__fixup_end(struct map_groups *mg)
826{
827 int i;
828 for (i = 0; i < MAP__NR_TYPES; ++i)
829 __map_groups__fixup_end(mg, i);
830}
831
832static char *get_kernel_version(const char *root_dir)
833{
834 char version[PATH_MAX];
835 FILE *file;
836 char *name, *tmp;
837 const char *prefix = "Linux version ";
838
839 sprintf(version, "%s/proc/version", root_dir);
840 file = fopen(version, "r");
841 if (!file)
842 return NULL;
843
844 version[0] = '\0';
845 tmp = fgets(version, sizeof(version), file);
846 fclose(file);
847
848 name = strstr(version, prefix);
849 if (!name)
850 return NULL;
851 name += strlen(prefix);
852 tmp = strchr(name, ' ');
853 if (tmp)
854 *tmp = '\0';
855
856 return strdup(name);
857}
858
Jiri Olsabb58a8a2015-02-12 22:20:01 +0100859static bool is_kmod_dso(struct dso *dso)
860{
861 return dso->symtab_type == DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE ||
862 dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE;
863}
864
865static int map_groups__set_module_path(struct map_groups *mg, const char *path,
866 struct kmod_path *m)
867{
868 struct map *map;
869 char *long_name;
870
871 map = map_groups__find_by_name(mg, MAP__FUNCTION, m->name);
872 if (map == NULL)
873 return 0;
874
875 long_name = strdup(path);
876 if (long_name == NULL)
877 return -ENOMEM;
878
879 dso__set_long_name(map->dso, long_name, true);
880 dso__kernel_module_get_build_id(map->dso, "");
881
882 /*
883 * Full name could reveal us kmod compression, so
884 * we need to update the symtab_type if needed.
885 */
886 if (m->comp && is_kmod_dso(map->dso))
887 map->dso->symtab_type++;
888
889 return 0;
890}
891
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300892static int map_groups__set_modules_path_dir(struct map_groups *mg,
Richard Yao61d42902014-04-26 13:17:55 -0400893 const char *dir_name, int depth)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300894{
895 struct dirent *dent;
896 DIR *dir = opendir(dir_name);
897 int ret = 0;
898
899 if (!dir) {
900 pr_debug("%s: cannot open %s dir\n", __func__, dir_name);
901 return -1;
902 }
903
904 while ((dent = readdir(dir)) != NULL) {
905 char path[PATH_MAX];
906 struct stat st;
907
908 /*sshfs might return bad dent->d_type, so we have to stat*/
909 snprintf(path, sizeof(path), "%s/%s", dir_name, dent->d_name);
910 if (stat(path, &st))
911 continue;
912
913 if (S_ISDIR(st.st_mode)) {
914 if (!strcmp(dent->d_name, ".") ||
915 !strcmp(dent->d_name, ".."))
916 continue;
917
Richard Yao61d42902014-04-26 13:17:55 -0400918 /* Do not follow top-level source and build symlinks */
919 if (depth == 0) {
920 if (!strcmp(dent->d_name, "source") ||
921 !strcmp(dent->d_name, "build"))
922 continue;
923 }
924
925 ret = map_groups__set_modules_path_dir(mg, path,
926 depth + 1);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300927 if (ret < 0)
928 goto out;
929 } else {
Jiri Olsabb58a8a2015-02-12 22:20:01 +0100930 struct kmod_path m;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300931
Jiri Olsabb58a8a2015-02-12 22:20:01 +0100932 ret = kmod_path__parse_name(&m, dent->d_name);
933 if (ret)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300934 goto out;
Jiri Olsabb58a8a2015-02-12 22:20:01 +0100935
936 if (m.kmod)
937 ret = map_groups__set_module_path(mg, path, &m);
938
939 free(m.name);
940
941 if (ret)
942 goto out;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300943 }
944 }
945
946out:
947 closedir(dir);
948 return ret;
949}
950
951static int machine__set_modules_path(struct machine *machine)
952{
953 char *version;
954 char modules_path[PATH_MAX];
955
956 version = get_kernel_version(machine->root_dir);
957 if (!version)
958 return -1;
959
Richard Yao61d42902014-04-26 13:17:55 -0400960 snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s",
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300961 machine->root_dir, version);
962 free(version);
963
Richard Yao61d42902014-04-26 13:17:55 -0400964 return map_groups__set_modules_path_dir(&machine->kmaps, modules_path, 0);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300965}
966
Adrian Hunter316d70d2013-10-08 11:45:48 +0300967static int machine__create_module(void *arg, const char *name, u64 start)
968{
969 struct machine *machine = arg;
970 struct map *map;
971
972 map = machine__new_module(machine, start, name);
973 if (map == NULL)
974 return -1;
975
976 dso__kernel_module_get_build_id(map->dso, machine->root_dir);
977
978 return 0;
979}
980
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300981static int machine__create_modules(struct machine *machine)
982{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300983 const char *modules;
984 char path[PATH_MAX];
985
Adrian Hunterf4be9042013-09-22 13:22:09 +0300986 if (machine__is_default_guest(machine)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300987 modules = symbol_conf.default_guest_modules;
Adrian Hunterf4be9042013-09-22 13:22:09 +0300988 } else {
989 snprintf(path, PATH_MAX, "%s/proc/modules", machine->root_dir);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300990 modules = path;
991 }
992
Adrian Hunteraa7fe3b2013-09-22 13:22:09 +0300993 if (symbol__restricted_filename(modules, "/proc/modules"))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300994 return -1;
995
Adrian Hunter316d70d2013-10-08 11:45:48 +0300996 if (modules__parse(modules, machine, machine__create_module))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300997 return -1;
998
Adrian Hunter316d70d2013-10-08 11:45:48 +0300999 if (!machine__set_modules_path(machine))
1000 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001001
Adrian Hunter316d70d2013-10-08 11:45:48 +03001002 pr_debug("Problems setting modules path maps, continuing anyway...\n");
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001003
Jason Wessel8f76fcd2013-07-15 15:27:53 -05001004 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001005}
1006
1007int machine__create_kernel_maps(struct machine *machine)
1008{
1009 struct dso *kernel = machine__get_kernel(machine);
Adrian Hunter5512cf22014-01-29 16:14:39 +02001010 const char *name;
Adrian Hunter4b993752014-08-15 22:08:38 +03001011 u64 addr = machine__get_running_kernel_start(machine, &name);
Adrian Hunter5512cf22014-01-29 16:14:39 +02001012 if (!addr)
1013 return -1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001014
1015 if (kernel == NULL ||
1016 __machine__create_kernel_maps(machine, kernel) < 0)
1017 return -1;
1018
1019 if (symbol_conf.use_modules && machine__create_modules(machine) < 0) {
1020 if (machine__is_host(machine))
1021 pr_debug("Problems creating module maps, "
1022 "continuing anyway...\n");
1023 else
1024 pr_debug("Problems creating module maps for guest %d, "
1025 "continuing anyway...\n", machine->pid);
1026 }
1027
1028 /*
1029 * Now that we have all the maps created, just set the ->end of them:
1030 */
1031 map_groups__fixup_end(&machine->kmaps);
Adrian Hunter5512cf22014-01-29 16:14:39 +02001032
1033 if (maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps, name,
1034 addr)) {
1035 machine__destroy_kernel_maps(machine);
1036 return -1;
1037 }
1038
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001039 return 0;
1040}
1041
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001042static void machine__set_kernel_mmap_len(struct machine *machine,
1043 union perf_event *event)
1044{
Namhyung Kim4552cf0f2012-11-07 16:27:10 +09001045 int i;
1046
1047 for (i = 0; i < MAP__NR_TYPES; i++) {
1048 machine->vmlinux_maps[i]->start = event->mmap.start;
1049 machine->vmlinux_maps[i]->end = (event->mmap.start +
1050 event->mmap.len);
1051 /*
1052 * Be a bit paranoid here, some perf.data file came with
1053 * a zero sized synthesized MMAP event for the kernel.
1054 */
1055 if (machine->vmlinux_maps[i]->end == 0)
1056 machine->vmlinux_maps[i]->end = ~0ULL;
1057 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001058}
1059
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001060static bool machine__uses_kcore(struct machine *machine)
1061{
1062 struct dso *dso;
1063
Waiman Long8fa7d872014-09-29 16:07:28 -04001064 list_for_each_entry(dso, &machine->kernel_dsos.head, node) {
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001065 if (dso__is_kcore(dso))
1066 return true;
1067 }
1068
1069 return false;
1070}
1071
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001072static int machine__process_kernel_mmap_event(struct machine *machine,
1073 union perf_event *event)
1074{
1075 struct map *map;
1076 char kmmap_prefix[PATH_MAX];
1077 enum dso_kernel_type kernel_type;
1078 bool is_kernel_mmap;
1079
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001080 /* If we have maps from kcore then we do not need or want any others */
1081 if (machine__uses_kcore(machine))
1082 return 0;
1083
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001084 machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
1085 if (machine__is_host(machine))
1086 kernel_type = DSO_TYPE_KERNEL;
1087 else
1088 kernel_type = DSO_TYPE_GUEST_KERNEL;
1089
1090 is_kernel_mmap = memcmp(event->mmap.filename,
1091 kmmap_prefix,
1092 strlen(kmmap_prefix) - 1) == 0;
1093 if (event->mmap.filename[0] == '/' ||
1094 (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001095 map = machine__new_module(machine, event->mmap.start,
1096 event->mmap.filename);
1097 if (map == NULL)
1098 goto out_problem;
1099
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001100 map->end = map->start + event->mmap.len;
1101 } else if (is_kernel_mmap) {
1102 const char *symbol_name = (event->mmap.filename +
1103 strlen(kmmap_prefix));
1104 /*
1105 * Should be there already, from the build-id table in
1106 * the header.
1107 */
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001108 struct dso *kernel = NULL;
1109 struct dso *dso;
1110
1111 list_for_each_entry(dso, &machine->kernel_dsos.head, node) {
Jiri Olsae746b3e2015-02-12 22:16:34 +01001112 if (is_kernel_module(dso->long_name))
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001113 continue;
1114
1115 kernel = dso;
1116 break;
1117 }
1118
1119 if (kernel == NULL)
1120 kernel = __dsos__findnew(&machine->kernel_dsos,
1121 kmmap_prefix);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001122 if (kernel == NULL)
1123 goto out_problem;
1124
1125 kernel->kernel = kernel_type;
1126 if (__machine__create_kernel_maps(machine, kernel) < 0)
1127 goto out_problem;
1128
Namhyung Kim330dfa22014-11-18 13:30:28 +09001129 if (strstr(kernel->long_name, "vmlinux"))
1130 dso__set_short_name(kernel, "[kernel.vmlinux]", false);
Namhyung Kim96d78052014-11-04 10:14:34 +09001131
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001132 machine__set_kernel_mmap_len(machine, event);
1133
1134 /*
1135 * Avoid using a zero address (kptr_restrict) for the ref reloc
1136 * symbol. Effectively having zero here means that at record
1137 * time /proc/sys/kernel/kptr_restrict was non zero.
1138 */
1139 if (event->mmap.pgoff != 0) {
1140 maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps,
1141 symbol_name,
1142 event->mmap.pgoff);
1143 }
1144
1145 if (machine__is_default_guest(machine)) {
1146 /*
1147 * preload dso of guest kernel and modules
1148 */
1149 dso__load(kernel, machine->vmlinux_maps[MAP__FUNCTION],
1150 NULL);
1151 }
1152 }
1153 return 0;
1154out_problem:
1155 return -1;
1156}
1157
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001158int machine__process_mmap2_event(struct machine *machine,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001159 union perf_event *event,
1160 struct perf_sample *sample __maybe_unused)
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001161{
1162 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1163 struct thread *thread;
1164 struct map *map;
1165 enum map_type type;
1166 int ret = 0;
1167
1168 if (dump_trace)
1169 perf_event__fprintf_mmap2(event, stdout);
1170
1171 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1172 cpumode == PERF_RECORD_MISC_KERNEL) {
1173 ret = machine__process_kernel_mmap_event(machine, event);
1174 if (ret < 0)
1175 goto out_problem;
1176 return 0;
1177 }
1178
1179 thread = machine__findnew_thread(machine, event->mmap2.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001180 event->mmap2.tid);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001181 if (thread == NULL)
1182 goto out_problem;
1183
1184 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1185 type = MAP__VARIABLE;
1186 else
1187 type = MAP__FUNCTION;
1188
Adrian Hunter2a030682014-07-22 16:17:53 +03001189 map = map__new(machine, event->mmap2.start,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001190 event->mmap2.len, event->mmap2.pgoff,
1191 event->mmap2.pid, event->mmap2.maj,
1192 event->mmap2.min, event->mmap2.ino,
1193 event->mmap2.ino_generation,
Don Zickus7ef80702014-05-19 15:13:49 -04001194 event->mmap2.prot,
1195 event->mmap2.flags,
Adrian Hunter5835edd2014-07-22 16:18:00 +03001196 event->mmap2.filename, type, thread);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001197
1198 if (map == NULL)
1199 goto out_problem;
1200
1201 thread__insert_map(thread, map);
1202 return 0;
1203
1204out_problem:
1205 dump_printf("problem processing PERF_RECORD_MMAP2, skipping event.\n");
1206 return 0;
1207}
1208
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001209int machine__process_mmap_event(struct machine *machine, union perf_event *event,
1210 struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001211{
1212 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1213 struct thread *thread;
1214 struct map *map;
Stephane Eranianbad40912013-01-24 16:10:40 +01001215 enum map_type type;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001216 int ret = 0;
1217
1218 if (dump_trace)
1219 perf_event__fprintf_mmap(event, stdout);
1220
1221 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1222 cpumode == PERF_RECORD_MISC_KERNEL) {
1223 ret = machine__process_kernel_mmap_event(machine, event);
1224 if (ret < 0)
1225 goto out_problem;
1226 return 0;
1227 }
1228
Adrian Hunter314add62013-08-27 11:23:03 +03001229 thread = machine__findnew_thread(machine, event->mmap.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001230 event->mmap.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001231 if (thread == NULL)
1232 goto out_problem;
Stephane Eranianbad40912013-01-24 16:10:40 +01001233
1234 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1235 type = MAP__VARIABLE;
1236 else
1237 type = MAP__FUNCTION;
1238
Adrian Hunter2a030682014-07-22 16:17:53 +03001239 map = map__new(machine, event->mmap.start,
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001240 event->mmap.len, event->mmap.pgoff,
Don Zickus7ef80702014-05-19 15:13:49 -04001241 event->mmap.pid, 0, 0, 0, 0, 0, 0,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001242 event->mmap.filename,
Adrian Hunter5835edd2014-07-22 16:18:00 +03001243 type, thread);
Stephane Eranianbad40912013-01-24 16:10:40 +01001244
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001245 if (map == NULL)
1246 goto out_problem;
1247
1248 thread__insert_map(thread, map);
1249 return 0;
1250
1251out_problem:
1252 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
1253 return 0;
1254}
1255
David Ahern236a3bb2013-08-14 08:49:27 -06001256static void machine__remove_thread(struct machine *machine, struct thread *th)
1257{
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001258 if (machine->last_match == th)
1259 thread__zput(machine->last_match);
1260
David Ahern236a3bb2013-08-14 08:49:27 -06001261 rb_erase(&th->rb_node, &machine->threads);
1262 /*
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001263 * Move it first to the dead_threads list, then drop the reference,
1264 * if this is the last reference, then the thread__delete destructor
1265 * will be called and we will remove it from the dead_threads list.
David Ahern236a3bb2013-08-14 08:49:27 -06001266 */
1267 list_add_tail(&th->node, &machine->dead_threads);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001268 thread__put(th);
David Ahern236a3bb2013-08-14 08:49:27 -06001269}
1270
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001271int machine__process_fork_event(struct machine *machine, union perf_event *event,
1272 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001273{
Jiri Olsad75e6092014-03-14 15:00:03 +01001274 struct thread *thread = machine__find_thread(machine,
1275 event->fork.pid,
1276 event->fork.tid);
Adrian Hunter314add62013-08-27 11:23:03 +03001277 struct thread *parent = machine__findnew_thread(machine,
1278 event->fork.ppid,
1279 event->fork.ptid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001280
David Ahern236a3bb2013-08-14 08:49:27 -06001281 /* if a thread currently exists for the thread id remove it */
1282 if (thread != NULL)
1283 machine__remove_thread(machine, thread);
1284
Adrian Hunter314add62013-08-27 11:23:03 +03001285 thread = machine__findnew_thread(machine, event->fork.pid,
1286 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001287 if (dump_trace)
1288 perf_event__fprintf_task(event, stdout);
1289
1290 if (thread == NULL || parent == NULL ||
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001291 thread__fork(thread, parent, sample->time) < 0) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001292 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
1293 return -1;
1294 }
1295
1296 return 0;
1297}
1298
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001299int machine__process_exit_event(struct machine *machine, union perf_event *event,
1300 struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001301{
Jiri Olsad75e6092014-03-14 15:00:03 +01001302 struct thread *thread = machine__find_thread(machine,
1303 event->fork.pid,
1304 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001305
1306 if (dump_trace)
1307 perf_event__fprintf_task(event, stdout);
1308
1309 if (thread != NULL)
David Ahern236a3bb2013-08-14 08:49:27 -06001310 thread__exited(thread);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001311
1312 return 0;
1313}
1314
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001315int machine__process_event(struct machine *machine, union perf_event *event,
1316 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001317{
1318 int ret;
1319
1320 switch (event->header.type) {
1321 case PERF_RECORD_COMM:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001322 ret = machine__process_comm_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001323 case PERF_RECORD_MMAP:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001324 ret = machine__process_mmap_event(machine, event, sample); break;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001325 case PERF_RECORD_MMAP2:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001326 ret = machine__process_mmap2_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001327 case PERF_RECORD_FORK:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001328 ret = machine__process_fork_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001329 case PERF_RECORD_EXIT:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001330 ret = machine__process_exit_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001331 case PERF_RECORD_LOST:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001332 ret = machine__process_lost_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001333 default:
1334 ret = -1;
1335 break;
1336 }
1337
1338 return ret;
1339}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001340
Greg Priceb21484f2012-12-06 21:48:05 -08001341static bool symbol__match_regex(struct symbol *sym, regex_t *regex)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001342{
Greg Priceb21484f2012-12-06 21:48:05 -08001343 if (sym->name && !regexec(regex, sym->name, 0, NULL, 0))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001344 return 1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001345 return 0;
1346}
1347
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001348static void ip__resolve_ams(struct thread *thread,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001349 struct addr_map_symbol *ams,
1350 u64 ip)
1351{
1352 struct addr_location al;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001353
1354 memset(&al, 0, sizeof(al));
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -03001355 /*
1356 * We cannot use the header.misc hint to determine whether a
1357 * branch stack address is user, kernel, guest, hypervisor.
1358 * Branches may straddle the kernel/user/hypervisor boundaries.
1359 * Thus, we have to try consecutively until we find a match
1360 * or else, the symbol is unknown
1361 */
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001362 thread__find_cpumode_addr_location(thread, MAP__FUNCTION, ip, &al);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001363
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001364 ams->addr = ip;
1365 ams->al_addr = al.addr;
1366 ams->sym = al.sym;
1367 ams->map = al.map;
1368}
1369
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001370static void ip__resolve_data(struct thread *thread,
Stephane Eranian98a3b322013-01-24 16:10:35 +01001371 u8 m, struct addr_map_symbol *ams, u64 addr)
1372{
1373 struct addr_location al;
1374
1375 memset(&al, 0, sizeof(al));
1376
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001377 thread__find_addr_location(thread, m, MAP__VARIABLE, addr, &al);
Don Zickus06b2afc2014-08-20 23:25:11 -04001378 if (al.map == NULL) {
1379 /*
1380 * some shared data regions have execute bit set which puts
1381 * their mapping in the MAP__FUNCTION type array.
1382 * Check there as a fallback option before dropping the sample.
1383 */
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001384 thread__find_addr_location(thread, m, MAP__FUNCTION, addr, &al);
Don Zickus06b2afc2014-08-20 23:25:11 -04001385 }
1386
Stephane Eranian98a3b322013-01-24 16:10:35 +01001387 ams->addr = addr;
1388 ams->al_addr = al.addr;
1389 ams->sym = al.sym;
1390 ams->map = al.map;
1391}
1392
Arnaldo Carvalho de Meloe80faac2014-01-22 13:05:06 -03001393struct mem_info *sample__resolve_mem(struct perf_sample *sample,
1394 struct addr_location *al)
Stephane Eranian98a3b322013-01-24 16:10:35 +01001395{
1396 struct mem_info *mi = zalloc(sizeof(*mi));
1397
1398 if (!mi)
1399 return NULL;
1400
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001401 ip__resolve_ams(al->thread, &mi->iaddr, sample->ip);
1402 ip__resolve_data(al->thread, al->cpumode, &mi->daddr, sample->addr);
Stephane Eranian98a3b322013-01-24 16:10:35 +01001403 mi->data_src.val = sample->data_src;
1404
1405 return mi;
1406}
1407
Andi Kleen37592b82014-11-12 18:05:19 -08001408static int add_callchain_ip(struct thread *thread,
1409 struct symbol **parent,
1410 struct addr_location *root_al,
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001411 u8 *cpumode,
Andi Kleen37592b82014-11-12 18:05:19 -08001412 u64 ip)
1413{
1414 struct addr_location al;
1415
1416 al.filtered = 0;
1417 al.sym = NULL;
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001418 if (!cpumode) {
Andi Kleen8b7bad52014-11-12 18:05:20 -08001419 thread__find_cpumode_addr_location(thread, MAP__FUNCTION,
1420 ip, &al);
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001421 } else {
Kan Liang2e777842014-12-02 10:06:53 -05001422 if (ip >= PERF_CONTEXT_MAX) {
1423 switch (ip) {
1424 case PERF_CONTEXT_HV:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001425 *cpumode = PERF_RECORD_MISC_HYPERVISOR;
Kan Liang2e777842014-12-02 10:06:53 -05001426 break;
1427 case PERF_CONTEXT_KERNEL:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001428 *cpumode = PERF_RECORD_MISC_KERNEL;
Kan Liang2e777842014-12-02 10:06:53 -05001429 break;
1430 case PERF_CONTEXT_USER:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001431 *cpumode = PERF_RECORD_MISC_USER;
Kan Liang2e777842014-12-02 10:06:53 -05001432 break;
1433 default:
1434 pr_debug("invalid callchain context: "
1435 "%"PRId64"\n", (s64) ip);
1436 /*
1437 * It seems the callchain is corrupted.
1438 * Discard all.
1439 */
1440 callchain_cursor_reset(&callchain_cursor);
1441 return 1;
1442 }
1443 return 0;
1444 }
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001445 thread__find_addr_location(thread, *cpumode, MAP__FUNCTION,
1446 ip, &al);
Kan Liang2e777842014-12-02 10:06:53 -05001447 }
1448
Andi Kleen37592b82014-11-12 18:05:19 -08001449 if (al.sym != NULL) {
1450 if (sort__has_parent && !*parent &&
1451 symbol__match_regex(al.sym, &parent_regex))
1452 *parent = al.sym;
1453 else if (have_ignore_callees && root_al &&
1454 symbol__match_regex(al.sym, &ignore_callees_regex)) {
1455 /* Treat this symbol as the root,
1456 forgetting its callees. */
1457 *root_al = al;
1458 callchain_cursor_reset(&callchain_cursor);
1459 }
1460 }
1461
Andi Kleen55501712014-11-12 18:05:21 -08001462 return callchain_cursor_append(&callchain_cursor, al.addr, al.map, al.sym);
Andi Kleen37592b82014-11-12 18:05:19 -08001463}
1464
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03001465struct branch_info *sample__resolve_bstack(struct perf_sample *sample,
1466 struct addr_location *al)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001467{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001468 unsigned int i;
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03001469 const struct branch_stack *bs = sample->branch_stack;
1470 struct branch_info *bi = calloc(bs->nr, sizeof(struct branch_info));
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001471
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001472 if (!bi)
1473 return NULL;
1474
1475 for (i = 0; i < bs->nr; i++) {
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001476 ip__resolve_ams(al->thread, &bi[i].to, bs->entries[i].to);
1477 ip__resolve_ams(al->thread, &bi[i].from, bs->entries[i].from);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001478 bi[i].flags = bs->entries[i].flags;
1479 }
1480 return bi;
1481}
1482
Andi Kleen8b7bad52014-11-12 18:05:20 -08001483#define CHASHSZ 127
1484#define CHASHBITS 7
1485#define NO_ENTRY 0xff
1486
1487#define PERF_MAX_BRANCH_DEPTH 127
1488
1489/* Remove loops. */
1490static int remove_loops(struct branch_entry *l, int nr)
1491{
1492 int i, j, off;
1493 unsigned char chash[CHASHSZ];
1494
1495 memset(chash, NO_ENTRY, sizeof(chash));
1496
1497 BUG_ON(PERF_MAX_BRANCH_DEPTH > 255);
1498
1499 for (i = 0; i < nr; i++) {
1500 int h = hash_64(l[i].from, CHASHBITS) % CHASHSZ;
1501
1502 /* no collision handling for now */
1503 if (chash[h] == NO_ENTRY) {
1504 chash[h] = i;
1505 } else if (l[chash[h]].from == l[i].from) {
1506 bool is_loop = true;
1507 /* check if it is a real loop */
1508 off = 0;
1509 for (j = chash[h]; j < i && i + off < nr; j++, off++)
1510 if (l[j].from != l[i + off].from) {
1511 is_loop = false;
1512 break;
1513 }
1514 if (is_loop) {
1515 memmove(l + i, l + i + off,
1516 (nr - (i + off)) * sizeof(*l));
1517 nr -= off;
1518 }
1519 }
1520 }
1521 return nr;
1522}
1523
Kan Liang384b6052015-01-05 13:23:05 -05001524/*
1525 * Recolve LBR callstack chain sample
1526 * Return:
1527 * 1 on success get LBR callchain information
1528 * 0 no available LBR callchain information, should try fp
1529 * negative error code on other errors.
1530 */
1531static int resolve_lbr_callchain_sample(struct thread *thread,
1532 struct perf_sample *sample,
1533 struct symbol **parent,
1534 struct addr_location *root_al,
1535 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001536{
Kan Liang384b6052015-01-05 13:23:05 -05001537 struct ip_callchain *chain = sample->callchain;
1538 int chain_nr = min(max_stack, (int)chain->nr);
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001539 u8 cpumode = PERF_RECORD_MISC_USER;
Kan Liang384b6052015-01-05 13:23:05 -05001540 int i, j, err;
1541 u64 ip;
1542
1543 for (i = 0; i < chain_nr; i++) {
1544 if (chain->ips[i] == PERF_CONTEXT_USER)
1545 break;
1546 }
1547
1548 /* LBR only affects the user callchain */
1549 if (i != chain_nr) {
1550 struct branch_stack *lbr_stack = sample->branch_stack;
1551 int lbr_nr = lbr_stack->nr;
1552 /*
1553 * LBR callstack can only get user call chain.
1554 * The mix_chain_nr is kernel call chain
1555 * number plus LBR user call chain number.
1556 * i is kernel call chain number,
1557 * 1 is PERF_CONTEXT_USER,
1558 * lbr_nr + 1 is the user call chain number.
1559 * For details, please refer to the comments
1560 * in callchain__printf
1561 */
1562 int mix_chain_nr = i + 1 + lbr_nr + 1;
1563
1564 if (mix_chain_nr > PERF_MAX_STACK_DEPTH + PERF_MAX_BRANCH_DEPTH) {
1565 pr_warning("corrupted callchain. skipping...\n");
1566 return 0;
1567 }
1568
1569 for (j = 0; j < mix_chain_nr; j++) {
1570 if (callchain_param.order == ORDER_CALLEE) {
1571 if (j < i + 1)
1572 ip = chain->ips[j];
1573 else if (j > i + 1)
1574 ip = lbr_stack->entries[j - i - 2].from;
1575 else
1576 ip = lbr_stack->entries[0].to;
1577 } else {
1578 if (j < lbr_nr)
1579 ip = lbr_stack->entries[lbr_nr - j - 1].from;
1580 else if (j > lbr_nr)
1581 ip = chain->ips[i + 1 - (j - lbr_nr)];
1582 else
1583 ip = lbr_stack->entries[0].to;
1584 }
1585
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001586 err = add_callchain_ip(thread, parent, root_al, &cpumode, ip);
Kan Liang384b6052015-01-05 13:23:05 -05001587 if (err)
1588 return (err < 0) ? err : 0;
1589 }
1590 return 1;
1591 }
1592
1593 return 0;
1594}
1595
1596static int thread__resolve_callchain_sample(struct thread *thread,
1597 struct perf_evsel *evsel,
1598 struct perf_sample *sample,
1599 struct symbol **parent,
1600 struct addr_location *root_al,
1601 int max_stack)
1602{
1603 struct branch_stack *branch = sample->branch_stack;
1604 struct ip_callchain *chain = sample->callchain;
Waiman Long91e95612013-10-18 10:38:48 -04001605 int chain_nr = min(max_stack, (int)chain->nr);
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001606 u8 cpumode = PERF_RECORD_MISC_USER;
Kan Liang2e777842014-12-02 10:06:53 -05001607 int i, j, err;
Andi Kleen8b7bad52014-11-12 18:05:20 -08001608 int skip_idx = -1;
1609 int first_call = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001610
Kan Liang384b6052015-01-05 13:23:05 -05001611 callchain_cursor_reset(&callchain_cursor);
1612
1613 if (has_branch_callstack(evsel)) {
1614 err = resolve_lbr_callchain_sample(thread, sample, parent,
1615 root_al, max_stack);
1616 if (err)
1617 return (err < 0) ? err : 0;
1618 }
1619
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001620 /*
1621 * Based on DWARF debug information, some architectures skip
1622 * a callchain entry saved by the kernel.
1623 */
Andi Kleen8b7bad52014-11-12 18:05:20 -08001624 if (chain->nr < PERF_MAX_STACK_DEPTH)
1625 skip_idx = arch_skip_callchain_idx(thread, chain);
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001626
Andi Kleen8b7bad52014-11-12 18:05:20 -08001627 /*
1628 * Add branches to call stack for easier browsing. This gives
1629 * more context for a sample than just the callers.
1630 *
1631 * This uses individual histograms of paths compared to the
1632 * aggregated histograms the normal LBR mode uses.
1633 *
1634 * Limitations for now:
1635 * - No extra filters
1636 * - No annotations (should annotate somehow)
1637 */
1638
1639 if (branch && callchain_param.branch_callstack) {
1640 int nr = min(max_stack, (int)branch->nr);
1641 struct branch_entry be[nr];
1642
1643 if (branch->nr > PERF_MAX_BRANCH_DEPTH) {
1644 pr_warning("corrupted branch chain. skipping...\n");
1645 goto check_calls;
1646 }
1647
1648 for (i = 0; i < nr; i++) {
1649 if (callchain_param.order == ORDER_CALLEE) {
1650 be[i] = branch->entries[i];
1651 /*
1652 * Check for overlap into the callchain.
1653 * The return address is one off compared to
1654 * the branch entry. To adjust for this
1655 * assume the calling instruction is not longer
1656 * than 8 bytes.
1657 */
1658 if (i == skip_idx ||
1659 chain->ips[first_call] >= PERF_CONTEXT_MAX)
1660 first_call++;
1661 else if (be[i].from < chain->ips[first_call] &&
1662 be[i].from >= chain->ips[first_call] - 8)
1663 first_call++;
1664 } else
1665 be[i] = branch->entries[branch->nr - i - 1];
1666 }
1667
1668 nr = remove_loops(be, nr);
1669
1670 for (i = 0; i < nr; i++) {
1671 err = add_callchain_ip(thread, parent, root_al,
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001672 NULL, be[i].to);
Andi Kleen8b7bad52014-11-12 18:05:20 -08001673 if (!err)
1674 err = add_callchain_ip(thread, parent, root_al,
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001675 NULL, be[i].from);
Andi Kleen8b7bad52014-11-12 18:05:20 -08001676 if (err == -EINVAL)
1677 break;
1678 if (err)
1679 return err;
1680 }
1681 chain_nr -= nr;
1682 }
1683
1684check_calls:
1685 if (chain->nr > PERF_MAX_STACK_DEPTH) {
1686 pr_warning("corrupted callchain. skipping...\n");
1687 return 0;
1688 }
1689
1690 for (i = first_call; i < chain_nr; i++) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001691 u64 ip;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001692
1693 if (callchain_param.order == ORDER_CALLEE)
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001694 j = i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001695 else
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001696 j = chain->nr - i - 1;
1697
1698#ifdef HAVE_SKIP_CALLCHAIN_IDX
1699 if (j == skip_idx)
1700 continue;
1701#endif
1702 ip = chain->ips[j];
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001703
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001704 err = add_callchain_ip(thread, parent, root_al, &cpumode, ip);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001705
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001706 if (err)
Kan Liang2e777842014-12-02 10:06:53 -05001707 return (err < 0) ? err : 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001708 }
1709
1710 return 0;
1711}
1712
1713static int unwind_entry(struct unwind_entry *entry, void *arg)
1714{
1715 struct callchain_cursor *cursor = arg;
1716 return callchain_cursor_append(cursor, entry->ip,
1717 entry->map, entry->sym);
1718}
1719
Arnaldo Carvalho de Melocc8b7c22014-10-23 15:26:17 -03001720int thread__resolve_callchain(struct thread *thread,
1721 struct perf_evsel *evsel,
1722 struct perf_sample *sample,
1723 struct symbol **parent,
1724 struct addr_location *root_al,
1725 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001726{
Kan Liang384b6052015-01-05 13:23:05 -05001727 int ret = thread__resolve_callchain_sample(thread, evsel,
1728 sample, parent,
1729 root_al, max_stack);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001730 if (ret)
1731 return ret;
1732
1733 /* Can we do dwarf post unwind? */
1734 if (!((evsel->attr.sample_type & PERF_SAMPLE_REGS_USER) &&
1735 (evsel->attr.sample_type & PERF_SAMPLE_STACK_USER)))
1736 return 0;
1737
1738 /* Bail out if nothing was captured. */
1739 if ((!sample->user_regs.regs) ||
1740 (!sample->user_stack.size))
1741 return 0;
1742
Arnaldo Carvalho de Melodd8c17a2014-10-23 16:42:19 -03001743 return unwind__get_entries(unwind_entry, &callchain_cursor,
Jiri Olsa352ea452014-01-07 13:47:25 +01001744 thread, sample, max_stack);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001745
1746}
David Ahern35feee12013-09-28 13:12:58 -06001747
1748int machine__for_each_thread(struct machine *machine,
1749 int (*fn)(struct thread *thread, void *p),
1750 void *priv)
1751{
1752 struct rb_node *nd;
1753 struct thread *thread;
1754 int rc = 0;
1755
1756 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
1757 thread = rb_entry(nd, struct thread, rb_node);
1758 rc = fn(thread, priv);
1759 if (rc != 0)
1760 return rc;
1761 }
1762
1763 list_for_each_entry(thread, &machine->dead_threads, node) {
1764 rc = fn(thread, priv);
1765 if (rc != 0)
1766 return rc;
1767 }
1768 return rc;
1769}
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001770
Arnaldo Carvalho de Meloa33fbd52013-11-11 11:36:12 -03001771int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool,
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001772 struct target *target, struct thread_map *threads,
Arnaldo Carvalho de Meloa33fbd52013-11-11 11:36:12 -03001773 perf_event__handler_t process, bool data_mmap)
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001774{
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001775 if (target__has_task(target))
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001776 return perf_event__synthesize_thread_map(tool, threads, process, machine, data_mmap);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001777 else if (target__has_cpu(target))
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001778 return perf_event__synthesize_threads(tool, process, machine, data_mmap);
1779 /* command specified */
1780 return 0;
1781}
Adrian Hunterb9d266b2014-07-22 16:17:25 +03001782
1783pid_t machine__get_current_tid(struct machine *machine, int cpu)
1784{
1785 if (cpu < 0 || cpu >= MAX_NR_CPUS || !machine->current_tid)
1786 return -1;
1787
1788 return machine->current_tid[cpu];
1789}
1790
1791int machine__set_current_tid(struct machine *machine, int cpu, pid_t pid,
1792 pid_t tid)
1793{
1794 struct thread *thread;
1795
1796 if (cpu < 0)
1797 return -EINVAL;
1798
1799 if (!machine->current_tid) {
1800 int i;
1801
1802 machine->current_tid = calloc(MAX_NR_CPUS, sizeof(pid_t));
1803 if (!machine->current_tid)
1804 return -ENOMEM;
1805 for (i = 0; i < MAX_NR_CPUS; i++)
1806 machine->current_tid[i] = -1;
1807 }
1808
1809 if (cpu >= MAX_NR_CPUS) {
1810 pr_err("Requested CPU %d too large. ", cpu);
1811 pr_err("Consider raising MAX_NR_CPUS\n");
1812 return -EINVAL;
1813 }
1814
1815 machine->current_tid[cpu] = tid;
1816
1817 thread = machine__findnew_thread(machine, pid, tid);
1818 if (!thread)
1819 return -ENOMEM;
1820
1821 thread->cpu = cpu;
1822
1823 return 0;
1824}
Adrian Hunterfbe2af42014-08-15 22:08:39 +03001825
1826int machine__get_kernel_start(struct machine *machine)
1827{
1828 struct map *map = machine__kernel_map(machine, MAP__FUNCTION);
1829 int err = 0;
1830
1831 /*
1832 * The only addresses above 2^63 are kernel addresses of a 64-bit
1833 * kernel. Note that addresses are unsigned so that on a 32-bit system
1834 * all addresses including kernel addresses are less than 2^32. In
1835 * that case (32-bit system), if the kernel mapping is unknown, all
1836 * addresses will be assumed to be in user space - see
1837 * machine__kernel_ip().
1838 */
1839 machine->kernel_start = 1ULL << 63;
1840 if (map) {
1841 err = map__load(map, machine->symbol_filter);
1842 if (map->start)
1843 machine->kernel_start = map->start;
1844 }
1845 return err;
1846}