]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - tools/perf/util/machine.c
perf script python: Fix export-to-sqlite.py sample columns
[mirror_ubuntu-jammy-kernel.git] / tools / perf / util / machine.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
76b31a29 2#include <dirent.h>
a43783ae 3#include <errno.h>
fd20e811 4#include <inttypes.h>
1eae20c1 5#include <regex.h>
3f067dca 6#include "callchain.h"
b0a7d1a0
ACM
7#include "debug.h"
8#include "event.h"
3f067dca
ACM
9#include "evsel.h"
10#include "hist.h"
9d2f8e22
ACM
11#include "machine.h"
12#include "map.h"
3f067dca 13#include "sort.h"
69d2591a 14#include "strlist.h"
9d2f8e22 15#include "thread.h"
d027b640 16#include "vdso.h"
9d2f8e22 17#include <stdbool.h>
7a8ef4c4
ACM
18#include <sys/types.h>
19#include <sys/stat.h>
20#include <unistd.h>
3f067dca 21#include "unwind.h"
8b7bad58 22#include "linux/hash.h"
f3b3614a 23#include "asm/bug.h"
9d2f8e22 24
3d689ed6
ACM
25#include "sane_ctype.h"
26#include <symbol/kallsyms.h>
0f476f2b 27#include <linux/mman.h>
3d689ed6 28
b91fc39f
ACM
29static void __machine__remove_thread(struct machine *machine, struct thread *th, bool lock);
30
e167f995
ACM
31static void dsos__init(struct dsos *dsos)
32{
33 INIT_LIST_HEAD(&dsos->head);
34 dsos->root = RB_ROOT;
0a7c74ea 35 init_rwsem(&dsos->lock);
e167f995
ACM
36}
37
91e467bc
KL
38static void machine__threads_init(struct machine *machine)
39{
40 int i;
41
42 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
43 struct threads *threads = &machine->threads[i];
44 threads->entries = RB_ROOT;
0a7c74ea 45 init_rwsem(&threads->lock);
91e467bc
KL
46 threads->nr = 0;
47 INIT_LIST_HEAD(&threads->dead);
48 threads->last_match = NULL;
49 }
50}
51
8c7f1bb3
JO
52static int machine__set_mmap_name(struct machine *machine)
53{
c192524e
JO
54 if (machine__is_host(machine))
55 machine->mmap_name = strdup("[kernel.kallsyms]");
56 else if (machine__is_default_guest(machine))
57 machine->mmap_name = strdup("[guest.kernel.kallsyms]");
58 else if (asprintf(&machine->mmap_name, "[guest.kernel.kallsyms.%d]",
59 machine->pid) < 0)
60 machine->mmap_name = NULL;
8c7f1bb3
JO
61
62 return machine->mmap_name ? 0 : -ENOMEM;
63}
64
69d2591a
ACM
65int machine__init(struct machine *machine, const char *root_dir, pid_t pid)
66{
81f981d7
JO
67 int err = -ENOMEM;
68
93b0ba3c 69 memset(machine, 0, sizeof(*machine));
11246c70 70 map_groups__init(&machine->kmaps, machine);
69d2591a 71 RB_CLEAR_NODE(&machine->rb_node);
3d39ac53 72 dsos__init(&machine->dsos);
69d2591a 73
91e467bc 74 machine__threads_init(machine);
69d2591a 75
d027b640 76 machine->vdso_info = NULL;
4cde998d 77 machine->env = NULL;
d027b640 78
69d2591a
ACM
79 machine->pid = pid;
80
14bd6d20 81 machine->id_hdr_size = 0;
caf8a0d0 82 machine->kptr_restrict_warned = false;
cfe1c414 83 machine->comm_exec = false;
fbe2af45 84 machine->kernel_start = 0;
3183f8ca 85 machine->vmlinux_map = NULL;
cc1121ab 86
69d2591a
ACM
87 machine->root_dir = strdup(root_dir);
88 if (machine->root_dir == NULL)
89 return -ENOMEM;
90
8c7f1bb3
JO
91 if (machine__set_mmap_name(machine))
92 goto out;
93
69d2591a 94 if (pid != HOST_KERNEL_ID) {
1fcb8768 95 struct thread *thread = machine__findnew_thread(machine, -1,
314add6b 96 pid);
69d2591a
ACM
97 char comm[64];
98
99 if (thread == NULL)
81f981d7 100 goto out;
69d2591a
ACM
101
102 snprintf(comm, sizeof(comm), "[guest/%d]", pid);
162f0bef 103 thread__set_comm(thread, comm, 0);
b91fc39f 104 thread__put(thread);
69d2591a
ACM
105 }
106
b9d266ba 107 machine->current_tid = NULL;
81f981d7 108 err = 0;
b9d266ba 109
81f981d7 110out:
8c7f1bb3 111 if (err) {
81f981d7 112 zfree(&machine->root_dir);
8c7f1bb3
JO
113 zfree(&machine->mmap_name);
114 }
69d2591a
ACM
115 return 0;
116}
117
8fb598e5
DA
118struct machine *machine__new_host(void)
119{
120 struct machine *machine = malloc(sizeof(*machine));
121
122 if (machine != NULL) {
123 machine__init(machine, "", HOST_KERNEL_ID);
124
125 if (machine__create_kernel_maps(machine) < 0)
126 goto out_delete;
127 }
128
129 return machine;
130out_delete:
131 free(machine);
132 return NULL;
133}
134
7d132caa
ACM
135struct machine *machine__new_kallsyms(void)
136{
137 struct machine *machine = machine__new_host();
138 /*
139 * FIXME:
329f0ade 140 * 1) We should switch to machine__load_kallsyms(), i.e. not explicitely
7d132caa
ACM
141 * ask for not using the kcore parsing code, once this one is fixed
142 * to create a map per module.
143 */
329f0ade 144 if (machine && machine__load_kallsyms(machine, "/proc/kallsyms") <= 0) {
7d132caa
ACM
145 machine__delete(machine);
146 machine = NULL;
147 }
148
149 return machine;
150}
151
d3a7c489 152static void dsos__purge(struct dsos *dsos)
69d2591a
ACM
153{
154 struct dso *pos, *n;
155
0a7c74ea 156 down_write(&dsos->lock);
e8807844 157
8fa7d87f 158 list_for_each_entry_safe(pos, n, &dsos->head, node) {
4598a0a6 159 RB_CLEAR_NODE(&pos->rb_node);
e266a753 160 pos->root = NULL;
d3a7c489
ACM
161 list_del_init(&pos->node);
162 dso__put(pos);
69d2591a 163 }
e8807844 164
0a7c74ea 165 up_write(&dsos->lock);
d3a7c489 166}
e8807844 167
d3a7c489
ACM
168static void dsos__exit(struct dsos *dsos)
169{
170 dsos__purge(dsos);
0a7c74ea 171 exit_rwsem(&dsos->lock);
69d2591a
ACM
172}
173
3f067dca
ACM
174void machine__delete_threads(struct machine *machine)
175{
b91fc39f 176 struct rb_node *nd;
91e467bc 177 int i;
3f067dca 178
91e467bc
KL
179 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
180 struct threads *threads = &machine->threads[i];
0a7c74ea 181 down_write(&threads->lock);
91e467bc
KL
182 nd = rb_first(&threads->entries);
183 while (nd) {
184 struct thread *t = rb_entry(nd, struct thread, rb_node);
3f067dca 185
91e467bc
KL
186 nd = rb_next(nd);
187 __machine__remove_thread(machine, t, false);
188 }
0a7c74ea 189 up_write(&threads->lock);
3f067dca
ACM
190 }
191}
192
69d2591a
ACM
193void machine__exit(struct machine *machine)
194{
91e467bc
KL
195 int i;
196
19993b82
ACM
197 if (machine == NULL)
198 return;
199
ebe9729c 200 machine__destroy_kernel_maps(machine);
69d2591a 201 map_groups__exit(&machine->kmaps);
e8807844 202 dsos__exit(&machine->dsos);
9a4388c7 203 machine__exit_vdso(machine);
04662523 204 zfree(&machine->root_dir);
8c7f1bb3 205 zfree(&machine->mmap_name);
b9d266ba 206 zfree(&machine->current_tid);
91e467bc
KL
207
208 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
209 struct threads *threads = &machine->threads[i];
0a7c74ea 210 exit_rwsem(&threads->lock);
91e467bc 211 }
69d2591a
ACM
212}
213
214void machine__delete(struct machine *machine)
215{
32ca678d
ACM
216 if (machine) {
217 machine__exit(machine);
218 free(machine);
219 }
69d2591a
ACM
220}
221
876650e6
ACM
222void machines__init(struct machines *machines)
223{
224 machine__init(&machines->host, "", HOST_KERNEL_ID);
225 machines->guests = RB_ROOT;
226}
227
228void machines__exit(struct machines *machines)
229{
230 machine__exit(&machines->host);
231 /* XXX exit guest */
232}
233
234struct machine *machines__add(struct machines *machines, pid_t pid,
69d2591a
ACM
235 const char *root_dir)
236{
876650e6 237 struct rb_node **p = &machines->guests.rb_node;
69d2591a
ACM
238 struct rb_node *parent = NULL;
239 struct machine *pos, *machine = malloc(sizeof(*machine));
240
241 if (machine == NULL)
242 return NULL;
243
244 if (machine__init(machine, root_dir, pid) != 0) {
245 free(machine);
246 return NULL;
247 }
248
249 while (*p != NULL) {
250 parent = *p;
251 pos = rb_entry(parent, struct machine, rb_node);
252 if (pid < pos->pid)
253 p = &(*p)->rb_left;
254 else
255 p = &(*p)->rb_right;
256 }
257
258 rb_link_node(&machine->rb_node, parent, p);
876650e6 259 rb_insert_color(&machine->rb_node, &machines->guests);
69d2591a
ACM
260
261 return machine;
262}
263
cfe1c414
AH
264void machines__set_comm_exec(struct machines *machines, bool comm_exec)
265{
266 struct rb_node *nd;
267
268 machines->host.comm_exec = comm_exec;
269
270 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
271 struct machine *machine = rb_entry(nd, struct machine, rb_node);
272
273 machine->comm_exec = comm_exec;
274 }
275}
276
876650e6 277struct machine *machines__find(struct machines *machines, pid_t pid)
69d2591a 278{
876650e6 279 struct rb_node **p = &machines->guests.rb_node;
69d2591a
ACM
280 struct rb_node *parent = NULL;
281 struct machine *machine;
282 struct machine *default_machine = NULL;
283
876650e6
ACM
284 if (pid == HOST_KERNEL_ID)
285 return &machines->host;
286
69d2591a
ACM
287 while (*p != NULL) {
288 parent = *p;
289 machine = rb_entry(parent, struct machine, rb_node);
290 if (pid < machine->pid)
291 p = &(*p)->rb_left;
292 else if (pid > machine->pid)
293 p = &(*p)->rb_right;
294 else
295 return machine;
296 if (!machine->pid)
297 default_machine = machine;
298 }
299
300 return default_machine;
301}
302
876650e6 303struct machine *machines__findnew(struct machines *machines, pid_t pid)
69d2591a
ACM
304{
305 char path[PATH_MAX];
306 const char *root_dir = "";
307 struct machine *machine = machines__find(machines, pid);
308
309 if (machine && (machine->pid == pid))
310 goto out;
311
312 if ((pid != HOST_KERNEL_ID) &&
313 (pid != DEFAULT_GUEST_KERNEL_ID) &&
314 (symbol_conf.guestmount)) {
315 sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
316 if (access(path, R_OK)) {
317 static struct strlist *seen;
318
319 if (!seen)
4a77e218 320 seen = strlist__new(NULL, NULL);
69d2591a
ACM
321
322 if (!strlist__has_entry(seen, path)) {
323 pr_err("Can't access file %s\n", path);
324 strlist__add(seen, path);
325 }
326 machine = NULL;
327 goto out;
328 }
329 root_dir = path;
330 }
331
332 machine = machines__add(machines, pid, root_dir);
333out:
334 return machine;
335}
336
876650e6
ACM
337void machines__process_guests(struct machines *machines,
338 machine__process_t process, void *data)
69d2591a
ACM
339{
340 struct rb_node *nd;
341
876650e6 342 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
69d2591a
ACM
343 struct machine *pos = rb_entry(nd, struct machine, rb_node);
344 process(pos, data);
345 }
346}
347
876650e6 348void machines__set_id_hdr_size(struct machines *machines, u16 id_hdr_size)
69d2591a
ACM
349{
350 struct rb_node *node;
351 struct machine *machine;
352
876650e6
ACM
353 machines->host.id_hdr_size = id_hdr_size;
354
355 for (node = rb_first(&machines->guests); node; node = rb_next(node)) {
69d2591a
ACM
356 machine = rb_entry(node, struct machine, rb_node);
357 machine->id_hdr_size = id_hdr_size;
358 }
359
360 return;
361}
362
29ce3612
AH
363static void machine__update_thread_pid(struct machine *machine,
364 struct thread *th, pid_t pid)
365{
366 struct thread *leader;
367
368 if (pid == th->pid_ || pid == -1 || th->pid_ != -1)
369 return;
370
371 th->pid_ = pid;
372
373 if (th->pid_ == th->tid)
374 return;
375
b91fc39f 376 leader = __machine__findnew_thread(machine, th->pid_, th->pid_);
29ce3612
AH
377 if (!leader)
378 goto out_err;
379
380 if (!leader->mg)
11246c70 381 leader->mg = map_groups__new(machine);
29ce3612
AH
382
383 if (!leader->mg)
384 goto out_err;
385
386 if (th->mg == leader->mg)
387 return;
388
389 if (th->mg) {
390 /*
391 * Maps are created from MMAP events which provide the pid and
392 * tid. Consequently there never should be any maps on a thread
393 * with an unknown pid. Just print an error if there are.
394 */
395 if (!map_groups__empty(th->mg))
396 pr_err("Discarding thread maps for %d:%d\n",
397 th->pid_, th->tid);
8e160b2e 398 map_groups__put(th->mg);
29ce3612
AH
399 }
400
401 th->mg = map_groups__get(leader->mg);
abd82868
ACM
402out_put:
403 thread__put(leader);
29ce3612 404 return;
29ce3612
AH
405out_err:
406 pr_err("Failed to join map groups for %d:%d\n", th->pid_, th->tid);
abd82868 407 goto out_put;
29ce3612
AH
408}
409
abd82868 410/*
f8b2ebb5
JO
411 * Front-end cache - TID lookups come in blocks,
412 * so most of the time we dont have to look up
413 * the full rbtree:
abd82868 414 */
f8b2ebb5 415static struct thread*
b57334b9
JO
416__threads__get_last_match(struct threads *threads, struct machine *machine,
417 int pid, int tid)
9d2f8e22 418{
9d2f8e22
ACM
419 struct thread *th;
420
91e467bc 421 th = threads->last_match;
f3b623b8
ACM
422 if (th != NULL) {
423 if (th->tid == tid) {
424 machine__update_thread_pid(machine, th, pid);
abd82868 425 return thread__get(th);
f3b623b8
ACM
426 }
427
91e467bc 428 threads->last_match = NULL;
99d725fc 429 }
9d2f8e22 430
f8b2ebb5
JO
431 return NULL;
432}
433
b57334b9
JO
434static struct thread*
435threads__get_last_match(struct threads *threads, struct machine *machine,
436 int pid, int tid)
437{
438 struct thread *th = NULL;
439
440 if (perf_singlethreaded)
441 th = __threads__get_last_match(threads, machine, pid, tid);
442
443 return th;
444}
445
67fda0f3 446static void
b57334b9 447__threads__set_last_match(struct threads *threads, struct thread *th)
67fda0f3
JO
448{
449 threads->last_match = th;
450}
451
b57334b9
JO
452static void
453threads__set_last_match(struct threads *threads, struct thread *th)
454{
455 if (perf_singlethreaded)
456 __threads__set_last_match(threads, th);
457}
458
f8b2ebb5
JO
459/*
460 * Caller must eventually drop thread->refcnt returned with a successful
461 * lookup/new thread inserted.
462 */
463static struct thread *____machine__findnew_thread(struct machine *machine,
464 struct threads *threads,
465 pid_t pid, pid_t tid,
466 bool create)
467{
468 struct rb_node **p = &threads->entries.rb_node;
469 struct rb_node *parent = NULL;
470 struct thread *th;
471
472 th = threads__get_last_match(threads, machine, pid, tid);
473 if (th)
474 return th;
475
9d2f8e22
ACM
476 while (*p != NULL) {
477 parent = *p;
478 th = rb_entry(parent, struct thread, rb_node);
479
38051234 480 if (th->tid == tid) {
67fda0f3 481 threads__set_last_match(threads, th);
29ce3612 482 machine__update_thread_pid(machine, th, pid);
abd82868 483 return thread__get(th);
9d2f8e22
ACM
484 }
485
38051234 486 if (tid < th->tid)
9d2f8e22
ACM
487 p = &(*p)->rb_left;
488 else
489 p = &(*p)->rb_right;
490 }
491
492 if (!create)
493 return NULL;
494
99d725fc 495 th = thread__new(pid, tid);
9d2f8e22
ACM
496 if (th != NULL) {
497 rb_link_node(&th->rb_node, parent, p);
91e467bc 498 rb_insert_color(&th->rb_node, &threads->entries);
cddcef60
JO
499
500 /*
501 * We have to initialize map_groups separately
502 * after rb tree is updated.
503 *
504 * The reason is that we call machine__findnew_thread
505 * within thread__init_map_groups to find the thread
506 * leader and that would screwed the rb tree.
507 */
418029b7 508 if (thread__init_map_groups(th, machine)) {
91e467bc 509 rb_erase_init(&th->rb_node, &threads->entries);
b91fc39f 510 RB_CLEAR_NODE(&th->rb_node);
abd82868 511 thread__put(th);
cddcef60 512 return NULL;
418029b7 513 }
f3b623b8
ACM
514 /*
515 * It is now in the rbtree, get a ref
516 */
517 thread__get(th);
67fda0f3 518 threads__set_last_match(threads, th);
91e467bc 519 ++threads->nr;
9d2f8e22
ACM
520 }
521
522 return th;
523}
524
b91fc39f
ACM
525struct thread *__machine__findnew_thread(struct machine *machine, pid_t pid, pid_t tid)
526{
75e45e43 527 return ____machine__findnew_thread(machine, machine__threads(machine, tid), pid, tid, true);
b91fc39f
ACM
528}
529
314add6b
AH
530struct thread *machine__findnew_thread(struct machine *machine, pid_t pid,
531 pid_t tid)
9d2f8e22 532{
91e467bc 533 struct threads *threads = machine__threads(machine, tid);
b91fc39f
ACM
534 struct thread *th;
535
0a7c74ea 536 down_write(&threads->lock);
abd82868 537 th = __machine__findnew_thread(machine, pid, tid);
0a7c74ea 538 up_write(&threads->lock);
b91fc39f 539 return th;
9d2f8e22
ACM
540}
541
d75e6097
JO
542struct thread *machine__find_thread(struct machine *machine, pid_t pid,
543 pid_t tid)
9d2f8e22 544{
91e467bc 545 struct threads *threads = machine__threads(machine, tid);
b91fc39f 546 struct thread *th;
91e467bc 547
0a7c74ea 548 down_read(&threads->lock);
75e45e43 549 th = ____machine__findnew_thread(machine, threads, pid, tid, false);
0a7c74ea 550 up_read(&threads->lock);
b91fc39f 551 return th;
9d2f8e22 552}
b0a7d1a0 553
cfe1c414
AH
554struct comm *machine__thread_exec_comm(struct machine *machine,
555 struct thread *thread)
556{
557 if (machine->comm_exec)
558 return thread__exec_comm(thread);
559 else
560 return thread__comm(thread);
561}
562
162f0bef
FW
563int machine__process_comm_event(struct machine *machine, union perf_event *event,
564 struct perf_sample *sample)
b0a7d1a0 565{
314add6b
AH
566 struct thread *thread = machine__findnew_thread(machine,
567 event->comm.pid,
568 event->comm.tid);
65de51f9 569 bool exec = event->header.misc & PERF_RECORD_MISC_COMM_EXEC;
b91fc39f 570 int err = 0;
b0a7d1a0 571
cfe1c414
AH
572 if (exec)
573 machine->comm_exec = true;
574
b0a7d1a0
ACM
575 if (dump_trace)
576 perf_event__fprintf_comm(event, stdout);
577
65de51f9
AH
578 if (thread == NULL ||
579 __thread__set_comm(thread, event->comm.comm, sample->time, exec)) {
b0a7d1a0 580 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
b91fc39f 581 err = -1;
b0a7d1a0
ACM
582 }
583
b91fc39f
ACM
584 thread__put(thread);
585
586 return err;
b0a7d1a0
ACM
587}
588
f3b3614a
HB
589int machine__process_namespaces_event(struct machine *machine __maybe_unused,
590 union perf_event *event,
591 struct perf_sample *sample __maybe_unused)
592{
593 struct thread *thread = machine__findnew_thread(machine,
594 event->namespaces.pid,
595 event->namespaces.tid);
596 int err = 0;
597
598 WARN_ONCE(event->namespaces.nr_namespaces > NR_NAMESPACES,
599 "\nWARNING: kernel seems to support more namespaces than perf"
600 " tool.\nTry updating the perf tool..\n\n");
601
602 WARN_ONCE(event->namespaces.nr_namespaces < NR_NAMESPACES,
603 "\nWARNING: perf tool seems to support more namespaces than"
604 " the kernel.\nTry updating the kernel..\n\n");
605
606 if (dump_trace)
607 perf_event__fprintf_namespaces(event, stdout);
608
609 if (thread == NULL ||
610 thread__set_namespaces(thread, sample->time, &event->namespaces)) {
611 dump_printf("problem processing PERF_RECORD_NAMESPACES, skipping event.\n");
612 err = -1;
613 }
614
615 thread__put(thread);
616
617 return err;
618}
619
b0a7d1a0 620int machine__process_lost_event(struct machine *machine __maybe_unused,
162f0bef 621 union perf_event *event, struct perf_sample *sample __maybe_unused)
b0a7d1a0
ACM
622{
623 dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
624 event->lost.id, event->lost.lost);
625 return 0;
626}
627
c4937a91
KL
628int machine__process_lost_samples_event(struct machine *machine __maybe_unused,
629 union perf_event *event, struct perf_sample *sample)
630{
631 dump_printf(": id:%" PRIu64 ": lost samples :%" PRIu64 "\n",
632 sample->id, event->lost_samples.lost);
633 return 0;
634}
635
9f2de315
ACM
636static struct dso *machine__findnew_module_dso(struct machine *machine,
637 struct kmod_path *m,
638 const char *filename)
da17ea33
JO
639{
640 struct dso *dso;
da17ea33 641
0a7c74ea 642 down_write(&machine->dsos.lock);
e8807844
ACM
643
644 dso = __dsos__find(&machine->dsos, m->name, true);
da17ea33 645 if (!dso) {
e8807844 646 dso = __dsos__addnew(&machine->dsos, m->name);
da17ea33 647 if (dso == NULL)
e8807844 648 goto out_unlock;
da17ea33 649
6b335e8f 650 dso__set_module_info(dso, m, machine);
ca33380a 651 dso__set_long_name(dso, strdup(filename), true);
da17ea33
JO
652 }
653
d3a7c489 654 dso__get(dso);
e8807844 655out_unlock:
0a7c74ea 656 up_write(&machine->dsos.lock);
da17ea33
JO
657 return dso;
658}
659
4a96f7a0
AH
660int machine__process_aux_event(struct machine *machine __maybe_unused,
661 union perf_event *event)
662{
663 if (dump_trace)
664 perf_event__fprintf_aux(event, stdout);
665 return 0;
666}
667
0ad21f68
AH
668int machine__process_itrace_start_event(struct machine *machine __maybe_unused,
669 union perf_event *event)
670{
671 if (dump_trace)
672 perf_event__fprintf_itrace_start(event, stdout);
673 return 0;
674}
675
0286039f
AH
676int machine__process_switch_event(struct machine *machine __maybe_unused,
677 union perf_event *event)
678{
679 if (dump_trace)
680 perf_event__fprintf_switch(event, stdout);
681 return 0;
682}
683
c03d5184
WN
684static void dso__adjust_kmod_long_name(struct dso *dso, const char *filename)
685{
686 const char *dup_filename;
687
688 if (!filename || !dso || !dso->long_name)
689 return;
690 if (dso->long_name[0] != '[')
691 return;
692 if (!strchr(filename, '/'))
693 return;
694
695 dup_filename = strdup(filename);
696 if (!dup_filename)
697 return;
698
5dcf16df 699 dso__set_long_name(dso, dup_filename, true);
c03d5184
WN
700}
701
9f2de315
ACM
702struct map *machine__findnew_module_map(struct machine *machine, u64 start,
703 const char *filename)
3f067dca 704{
ca33380a 705 struct map *map = NULL;
566c69c3 706 struct dso *dso = NULL;
ca33380a 707 struct kmod_path m;
3f067dca 708
ca33380a 709 if (kmod_path__parse_name(&m, filename))
3f067dca
ACM
710 return NULL;
711
83cf774b 712 map = map_groups__find_by_name(&machine->kmaps, m.name);
c03d5184
WN
713 if (map) {
714 /*
715 * If the map's dso is an offline module, give dso__load()
716 * a chance to find the file path of that module by fixing
717 * long_name.
718 */
719 dso__adjust_kmod_long_name(map->dso, filename);
bc84f464 720 goto out;
c03d5184 721 }
bc84f464 722
9f2de315 723 dso = machine__findnew_module_dso(machine, &m, filename);
ca33380a
JO
724 if (dso == NULL)
725 goto out;
726
3183f8ca 727 map = map__new2(start, dso);
3f067dca 728 if (map == NULL)
ca33380a 729 goto out;
3f067dca 730
3f067dca 731 map_groups__insert(&machine->kmaps, map);
ca33380a 732
9afcb420
MH
733 /* Put the map here because map_groups__insert alread got it */
734 map__put(map);
ca33380a 735out:
566c69c3
MH
736 /* put the dso here, corresponding to machine__findnew_module_dso */
737 dso__put(dso);
ca33380a 738 free(m.name);
3f067dca
ACM
739 return map;
740}
741
876650e6 742size_t machines__fprintf_dsos(struct machines *machines, FILE *fp)
3f067dca
ACM
743{
744 struct rb_node *nd;
3d39ac53 745 size_t ret = __dsos__fprintf(&machines->host.dsos.head, fp);
3f067dca 746
876650e6 747 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
3f067dca 748 struct machine *pos = rb_entry(nd, struct machine, rb_node);
3d39ac53 749 ret += __dsos__fprintf(&pos->dsos.head, fp);
3f067dca
ACM
750 }
751
752 return ret;
753}
754
8fa7d87f 755size_t machine__fprintf_dsos_buildid(struct machine *m, FILE *fp,
3f067dca
ACM
756 bool (skip)(struct dso *dso, int parm), int parm)
757{
3d39ac53 758 return __dsos__fprintf_buildid(&m->dsos.head, fp, skip, parm);
3f067dca
ACM
759}
760
876650e6 761size_t machines__fprintf_dsos_buildid(struct machines *machines, FILE *fp,
3f067dca
ACM
762 bool (skip)(struct dso *dso, int parm), int parm)
763{
764 struct rb_node *nd;
876650e6 765 size_t ret = machine__fprintf_dsos_buildid(&machines->host, fp, skip, parm);
3f067dca 766
876650e6 767 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
3f067dca
ACM
768 struct machine *pos = rb_entry(nd, struct machine, rb_node);
769 ret += machine__fprintf_dsos_buildid(pos, fp, skip, parm);
770 }
771 return ret;
772}
773
774size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp)
775{
776 int i;
777 size_t printed = 0;
a5e813c6 778 struct dso *kdso = machine__kernel_map(machine)->dso;
3f067dca
ACM
779
780 if (kdso->has_build_id) {
781 char filename[PATH_MAX];
d2396999
KJ
782 if (dso__build_id_filename(kdso, filename, sizeof(filename),
783 false))
3f067dca
ACM
784 printed += fprintf(fp, "[0] %s\n", filename);
785 }
786
787 for (i = 0; i < vmlinux_path__nr_entries; ++i)
788 printed += fprintf(fp, "[%d] %s\n",
789 i + kdso->has_build_id, vmlinux_path[i]);
790
791 return printed;
792}
793
794size_t machine__fprintf(struct machine *machine, FILE *fp)
795{
3f067dca 796 struct rb_node *nd;
91e467bc
KL
797 size_t ret;
798 int i;
3f067dca 799
91e467bc
KL
800 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
801 struct threads *threads = &machine->threads[i];
0a7c74ea
ACM
802
803 down_read(&threads->lock);
d2c11034 804
91e467bc 805 ret = fprintf(fp, "Threads: %u\n", threads->nr);
3f067dca 806
91e467bc
KL
807 for (nd = rb_first(&threads->entries); nd; nd = rb_next(nd)) {
808 struct thread *pos = rb_entry(nd, struct thread, rb_node);
3f067dca 809
91e467bc
KL
810 ret += thread__fprintf(pos, fp);
811 }
b91fc39f 812
0a7c74ea 813 up_read(&threads->lock);
91e467bc 814 }
3f067dca
ACM
815 return ret;
816}
817
818static struct dso *machine__get_kernel(struct machine *machine)
819{
8c7f1bb3 820 const char *vmlinux_name = machine->mmap_name;
3f067dca
ACM
821 struct dso *kernel;
822
823 if (machine__is_host(machine)) {
c192524e
JO
824 if (symbol_conf.vmlinux_name)
825 vmlinux_name = symbol_conf.vmlinux_name;
826
459ce518
ACM
827 kernel = machine__findnew_kernel(machine, vmlinux_name,
828 "[kernel]", DSO_TYPE_KERNEL);
3f067dca 829 } else {
c192524e
JO
830 if (symbol_conf.default_guest_vmlinux_name)
831 vmlinux_name = symbol_conf.default_guest_vmlinux_name;
832
459ce518
ACM
833 kernel = machine__findnew_kernel(machine, vmlinux_name,
834 "[guest.kernel]",
835 DSO_TYPE_GUEST_KERNEL);
3f067dca
ACM
836 }
837
838 if (kernel != NULL && (!kernel->has_build_id))
839 dso__read_running_kernel_build_id(kernel, machine);
840
841 return kernel;
842}
843
844struct process_args {
845 u64 start;
846};
847
1c5aae77
AH
848void machine__get_kallsyms_filename(struct machine *machine, char *buf,
849 size_t bufsz)
15a0a870
AH
850{
851 if (machine__is_default_guest(machine))
852 scnprintf(buf, bufsz, "%s", symbol_conf.default_guest_kallsyms);
853 else
854 scnprintf(buf, bufsz, "%s/proc/kallsyms", machine->root_dir);
855}
856
a93f0e55
SQ
857const char *ref_reloc_sym_names[] = {"_text", "_stext", NULL};
858
859/* Figure out the start address of kernel map from /proc/kallsyms.
860 * Returns the name of the start symbol in *symbol_name. Pass in NULL as
861 * symbol_name if it's not that important.
862 */
b843f62a
ACM
863static int machine__get_running_kernel_start(struct machine *machine,
864 const char **symbol_name, u64 *start)
3f067dca 865{
15a0a870 866 char filename[PATH_MAX];
b843f62a 867 int i, err = -1;
a93f0e55
SQ
868 const char *name;
869 u64 addr = 0;
3f067dca 870
15a0a870 871 machine__get_kallsyms_filename(machine, filename, PATH_MAX);
3f067dca
ACM
872
873 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
874 return 0;
875
a93f0e55 876 for (i = 0; (name = ref_reloc_sym_names[i]) != NULL; i++) {
b843f62a
ACM
877 err = kallsyms__get_function_start(filename, name, &addr);
878 if (!err)
a93f0e55
SQ
879 break;
880 }
881
b843f62a
ACM
882 if (err)
883 return -1;
884
a93f0e55
SQ
885 if (symbol_name)
886 *symbol_name = name;
3f067dca 887
b843f62a
ACM
888 *start = addr;
889 return 0;
3f067dca
ACM
890}
891
1c5aae77
AH
892int machine__create_extra_kernel_map(struct machine *machine,
893 struct dso *kernel,
894 struct extra_kernel_map *xm)
4d99e413
AH
895{
896 struct kmap *kmap;
897 struct map *map;
898
899 map = map__new2(xm->start, kernel);
900 if (!map)
901 return -1;
902
903 map->end = xm->end;
904 map->pgoff = xm->pgoff;
905
906 kmap = map__kmap(map);
907
908 kmap->kmaps = &machine->kmaps;
5759a682 909 strlcpy(kmap->name, xm->name, KMAP_NAME_LEN);
4d99e413
AH
910
911 map_groups__insert(&machine->kmaps, map);
912
5759a682
AH
913 pr_debug2("Added extra kernel map %s %" PRIx64 "-%" PRIx64 "\n",
914 kmap->name, map->start, map->end);
4d99e413
AH
915
916 map__put(map);
917
918 return 0;
919}
920
921static u64 find_entry_trampoline(struct dso *dso)
922{
923 /* Duplicates are removed so lookup all aliases */
924 const char *syms[] = {
925 "_entry_trampoline",
926 "__entry_trampoline_start",
927 "entry_SYSCALL_64_trampoline",
928 };
929 struct symbol *sym = dso__first_symbol(dso);
930 unsigned int i;
931
932 for (; sym; sym = dso__next_symbol(sym)) {
933 if (sym->binding != STB_GLOBAL)
934 continue;
935 for (i = 0; i < ARRAY_SIZE(syms); i++) {
936 if (!strcmp(sym->name, syms[i]))
937 return sym->start;
938 }
939 }
940
941 return 0;
942}
943
944/*
945 * These values can be used for kernels that do not have symbols for the entry
946 * trampolines in kallsyms.
947 */
948#define X86_64_CPU_ENTRY_AREA_PER_CPU 0xfffffe0000000000ULL
949#define X86_64_CPU_ENTRY_AREA_SIZE 0x2c000
950#define X86_64_ENTRY_TRAMPOLINE 0x6000
951
952/* Map x86_64 PTI entry trampolines */
953int machine__map_x86_64_entry_trampolines(struct machine *machine,
954 struct dso *kernel)
955{
1c5aae77
AH
956 struct map_groups *kmaps = &machine->kmaps;
957 struct maps *maps = &kmaps->maps;
4d99e413 958 int nr_cpus_avail, cpu;
1c5aae77
AH
959 bool found = false;
960 struct map *map;
961 u64 pgoff;
962
963 /*
964 * In the vmlinux case, pgoff is a virtual address which must now be
965 * mapped to a vmlinux offset.
966 */
967 for (map = maps__first(maps); map; map = map__next(map)) {
968 struct kmap *kmap = __map__kmap(map);
969 struct map *dest_map;
970
971 if (!kmap || !is_entry_trampoline(kmap->name))
972 continue;
973
974 dest_map = map_groups__find(kmaps, map->pgoff);
975 if (dest_map != map)
976 map->pgoff = dest_map->map_ip(dest_map, map->pgoff);
977 found = true;
978 }
979 if (found || machine->trampolines_mapped)
980 return 0;
4d99e413 981
1c5aae77 982 pgoff = find_entry_trampoline(kernel);
4d99e413
AH
983 if (!pgoff)
984 return 0;
985
986 nr_cpus_avail = machine__nr_cpus_avail(machine);
987
988 /* Add a 1 page map for each CPU's entry trampoline */
989 for (cpu = 0; cpu < nr_cpus_avail; cpu++) {
990 u64 va = X86_64_CPU_ENTRY_AREA_PER_CPU +
991 cpu * X86_64_CPU_ENTRY_AREA_SIZE +
992 X86_64_ENTRY_TRAMPOLINE;
993 struct extra_kernel_map xm = {
994 .start = va,
995 .end = va + page_size,
996 .pgoff = pgoff,
997 };
998
5759a682
AH
999 strlcpy(xm.name, ENTRY_TRAMPOLINE_NAME, KMAP_NAME_LEN);
1000
4d99e413
AH
1001 if (machine__create_extra_kernel_map(machine, kernel, &xm) < 0)
1002 return -1;
1003 }
1004
1c5aae77
AH
1005 machine->trampolines_mapped = nr_cpus_avail;
1006
1007 return 0;
1008}
1009
1010int __weak machine__create_extra_kernel_maps(struct machine *machine __maybe_unused,
1011 struct dso *kernel __maybe_unused)
1012{
4d99e413
AH
1013 return 0;
1014}
1015
1fb87b8e
JO
1016static int
1017__machine__create_kernel_maps(struct machine *machine, struct dso *kernel)
3f067dca 1018{
3183f8ca
ACM
1019 struct kmap *kmap;
1020 struct map *map;
3f067dca 1021
cc1121ab
MH
1022 /* In case of renewal the kernel map, destroy previous one */
1023 machine__destroy_kernel_maps(machine);
1024
3183f8ca
ACM
1025 machine->vmlinux_map = map__new2(0, kernel);
1026 if (machine->vmlinux_map == NULL)
1027 return -1;
3f067dca 1028
3183f8ca
ACM
1029 machine->vmlinux_map->map_ip = machine->vmlinux_map->unmap_ip = identity__map_ip;
1030 map = machine__kernel_map(machine);
1031 kmap = map__kmap(map);
1032 if (!kmap)
1033 return -1;
ba92732e 1034
3183f8ca
ACM
1035 kmap->kmaps = &machine->kmaps;
1036 map_groups__insert(&machine->kmaps, map);
3f067dca
ACM
1037
1038 return 0;
1039}
1040
1041void machine__destroy_kernel_maps(struct machine *machine)
1042{
3183f8ca
ACM
1043 struct kmap *kmap;
1044 struct map *map = machine__kernel_map(machine);
3f067dca 1045
3183f8ca
ACM
1046 if (map == NULL)
1047 return;
3f067dca 1048
3183f8ca
ACM
1049 kmap = map__kmap(map);
1050 map_groups__remove(&machine->kmaps, map);
1051 if (kmap && kmap->ref_reloc_sym) {
1052 zfree((char **)&kmap->ref_reloc_sym->name);
1053 zfree(&kmap->ref_reloc_sym);
3f067dca 1054 }
3183f8ca
ACM
1055
1056 map__zput(machine->vmlinux_map);
3f067dca
ACM
1057}
1058
876650e6 1059int machines__create_guest_kernel_maps(struct machines *machines)
3f067dca
ACM
1060{
1061 int ret = 0;
1062 struct dirent **namelist = NULL;
1063 int i, items = 0;
1064 char path[PATH_MAX];
1065 pid_t pid;
1066 char *endp;
1067
1068 if (symbol_conf.default_guest_vmlinux_name ||
1069 symbol_conf.default_guest_modules ||
1070 symbol_conf.default_guest_kallsyms) {
1071 machines__create_kernel_maps(machines, DEFAULT_GUEST_KERNEL_ID);
1072 }
1073
1074 if (symbol_conf.guestmount) {
1075 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
1076 if (items <= 0)
1077 return -ENOENT;
1078 for (i = 0; i < items; i++) {
1079 if (!isdigit(namelist[i]->d_name[0])) {
1080 /* Filter out . and .. */
1081 continue;
1082 }
1083 pid = (pid_t)strtol(namelist[i]->d_name, &endp, 10);
1084 if ((*endp != '\0') ||
1085 (endp == namelist[i]->d_name) ||
1086 (errno == ERANGE)) {
1087 pr_debug("invalid directory (%s). Skipping.\n",
1088 namelist[i]->d_name);
1089 continue;
1090 }
1091 sprintf(path, "%s/%s/proc/kallsyms",
1092 symbol_conf.guestmount,
1093 namelist[i]->d_name);
1094 ret = access(path, R_OK);
1095 if (ret) {
1096 pr_debug("Can't access file %s\n", path);
1097 goto failure;
1098 }
1099 machines__create_kernel_maps(machines, pid);
1100 }
1101failure:
1102 free(namelist);
1103 }
1104
1105 return ret;
1106}
1107
876650e6 1108void machines__destroy_kernel_maps(struct machines *machines)
3f067dca 1109{
876650e6
ACM
1110 struct rb_node *next = rb_first(&machines->guests);
1111
1112 machine__destroy_kernel_maps(&machines->host);
3f067dca
ACM
1113
1114 while (next) {
1115 struct machine *pos = rb_entry(next, struct machine, rb_node);
1116
1117 next = rb_next(&pos->rb_node);
876650e6 1118 rb_erase(&pos->rb_node, &machines->guests);
3f067dca
ACM
1119 machine__delete(pos);
1120 }
1121}
1122
876650e6 1123int machines__create_kernel_maps(struct machines *machines, pid_t pid)
3f067dca
ACM
1124{
1125 struct machine *machine = machines__findnew(machines, pid);
1126
1127 if (machine == NULL)
1128 return -1;
1129
1130 return machine__create_kernel_maps(machine);
1131}
1132
3183f8ca 1133int machine__load_kallsyms(struct machine *machine, const char *filename)
3f067dca 1134{
a5e813c6 1135 struct map *map = machine__kernel_map(machine);
e8f3879f 1136 int ret = __dso__load_kallsyms(map->dso, filename, map, true);
3f067dca
ACM
1137
1138 if (ret > 0) {
3183f8ca 1139 dso__set_loaded(map->dso);
3f067dca
ACM
1140 /*
1141 * Since /proc/kallsyms will have multiple sessions for the
1142 * kernel, with modules between them, fixup the end of all
1143 * sections.
1144 */
3183f8ca 1145 map_groups__fixup_end(&machine->kmaps);
3f067dca
ACM
1146 }
1147
1148 return ret;
1149}
1150
1d1a2654 1151int machine__load_vmlinux_path(struct machine *machine)
3f067dca 1152{
a5e813c6 1153 struct map *map = machine__kernel_map(machine);
be39db9f 1154 int ret = dso__load_vmlinux_path(map->dso, map);
3f067dca 1155
39b12f78 1156 if (ret > 0)
3183f8ca 1157 dso__set_loaded(map->dso);
3f067dca
ACM
1158
1159 return ret;
1160}
1161
3f067dca
ACM
1162static char *get_kernel_version(const char *root_dir)
1163{
1164 char version[PATH_MAX];
1165 FILE *file;
1166 char *name, *tmp;
1167 const char *prefix = "Linux version ";
1168
1169 sprintf(version, "%s/proc/version", root_dir);
1170 file = fopen(version, "r");
1171 if (!file)
1172 return NULL;
1173
1174 version[0] = '\0';
1175 tmp = fgets(version, sizeof(version), file);
1176 fclose(file);
1177
1178 name = strstr(version, prefix);
1179 if (!name)
1180 return NULL;
1181 name += strlen(prefix);
1182 tmp = strchr(name, ' ');
1183 if (tmp)
1184 *tmp = '\0';
1185
1186 return strdup(name);
1187}
1188
bb58a8a4
JO
1189static bool is_kmod_dso(struct dso *dso)
1190{
1191 return dso->symtab_type == DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE ||
1192 dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE;
1193}
1194
1195static int map_groups__set_module_path(struct map_groups *mg, const char *path,
1196 struct kmod_path *m)
1197{
bb58a8a4 1198 char *long_name;
83cf774b 1199 struct map *map = map_groups__find_by_name(mg, m->name);
bb58a8a4 1200
bb58a8a4
JO
1201 if (map == NULL)
1202 return 0;
1203
1204 long_name = strdup(path);
1205 if (long_name == NULL)
1206 return -ENOMEM;
1207
1208 dso__set_long_name(map->dso, long_name, true);
1209 dso__kernel_module_get_build_id(map->dso, "");
1210
1211 /*
1212 * Full name could reveal us kmod compression, so
1213 * we need to update the symtab_type if needed.
1214 */
2af52475 1215 if (m->comp && is_kmod_dso(map->dso)) {
bb58a8a4 1216 map->dso->symtab_type++;
2af52475
JO
1217 map->dso->comp = m->comp;
1218 }
bb58a8a4
JO
1219
1220 return 0;
1221}
1222
3f067dca 1223static int map_groups__set_modules_path_dir(struct map_groups *mg,
61d4290c 1224 const char *dir_name, int depth)
3f067dca
ACM
1225{
1226 struct dirent *dent;
1227 DIR *dir = opendir(dir_name);
1228 int ret = 0;
1229
1230 if (!dir) {
1231 pr_debug("%s: cannot open %s dir\n", __func__, dir_name);
1232 return -1;
1233 }
1234
1235 while ((dent = readdir(dir)) != NULL) {
1236 char path[PATH_MAX];
1237 struct stat st;
1238
1239 /*sshfs might return bad dent->d_type, so we have to stat*/
1240 snprintf(path, sizeof(path), "%s/%s", dir_name, dent->d_name);
1241 if (stat(path, &st))
1242 continue;
1243
1244 if (S_ISDIR(st.st_mode)) {
1245 if (!strcmp(dent->d_name, ".") ||
1246 !strcmp(dent->d_name, ".."))
1247 continue;
1248
61d4290c
RY
1249 /* Do not follow top-level source and build symlinks */
1250 if (depth == 0) {
1251 if (!strcmp(dent->d_name, "source") ||
1252 !strcmp(dent->d_name, "build"))
1253 continue;
1254 }
1255
1256 ret = map_groups__set_modules_path_dir(mg, path,
1257 depth + 1);
3f067dca
ACM
1258 if (ret < 0)
1259 goto out;
1260 } else {
bb58a8a4 1261 struct kmod_path m;
3f067dca 1262
bb58a8a4
JO
1263 ret = kmod_path__parse_name(&m, dent->d_name);
1264 if (ret)
1265 goto out;
c00c48fc 1266
bb58a8a4
JO
1267 if (m.kmod)
1268 ret = map_groups__set_module_path(mg, path, &m);
c00c48fc 1269
bb58a8a4 1270 free(m.name);
3f067dca 1271
bb58a8a4 1272 if (ret)
3f067dca 1273 goto out;
3f067dca
ACM
1274 }
1275 }
1276
1277out:
1278 closedir(dir);
1279 return ret;
1280}
1281
1282static int machine__set_modules_path(struct machine *machine)
1283{
1284 char *version;
1285 char modules_path[PATH_MAX];
1286
1287 version = get_kernel_version(machine->root_dir);
1288 if (!version)
1289 return -1;
1290
61d4290c 1291 snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s",
3f067dca
ACM
1292 machine->root_dir, version);
1293 free(version);
1294
61d4290c 1295 return map_groups__set_modules_path_dir(&machine->kmaps, modules_path, 0);
3f067dca 1296}
203d8a4a
SSG
1297int __weak arch__fix_module_text_start(u64 *start __maybe_unused,
1298 const char *name __maybe_unused)
1299{
1300 return 0;
1301}
3f067dca 1302
9ad4652b
TR
1303static int machine__create_module(void *arg, const char *name, u64 start,
1304 u64 size)
3f067dca 1305{
316d70d6 1306 struct machine *machine = arg;
3f067dca 1307 struct map *map;
316d70d6 1308
203d8a4a
SSG
1309 if (arch__fix_module_text_start(&start, name) < 0)
1310 return -1;
1311
9f2de315 1312 map = machine__findnew_module_map(machine, start, name);
316d70d6
AH
1313 if (map == NULL)
1314 return -1;
9ad4652b 1315 map->end = start + size;
316d70d6
AH
1316
1317 dso__kernel_module_get_build_id(map->dso, machine->root_dir);
1318
1319 return 0;
1320}
1321
1322static int machine__create_modules(struct machine *machine)
1323{
3f067dca
ACM
1324 const char *modules;
1325 char path[PATH_MAX];
1326
f4be904d 1327 if (machine__is_default_guest(machine)) {
3f067dca 1328 modules = symbol_conf.default_guest_modules;
f4be904d
AH
1329 } else {
1330 snprintf(path, PATH_MAX, "%s/proc/modules", machine->root_dir);
3f067dca
ACM
1331 modules = path;
1332 }
1333
aa7fe3b0 1334 if (symbol__restricted_filename(modules, "/proc/modules"))
3f067dca
ACM
1335 return -1;
1336
316d70d6 1337 if (modules__parse(modules, machine, machine__create_module))
3f067dca
ACM
1338 return -1;
1339
316d70d6
AH
1340 if (!machine__set_modules_path(machine))
1341 return 0;
3f067dca 1342
316d70d6 1343 pr_debug("Problems setting modules path maps, continuing anyway...\n");
3f067dca 1344
8f76fcd9 1345 return 0;
3f067dca
ACM
1346}
1347
1fb87b8e
JO
1348static void machine__set_kernel_mmap(struct machine *machine,
1349 u64 start, u64 end)
1350{
3183f8ca
ACM
1351 machine->vmlinux_map->start = start;
1352 machine->vmlinux_map->end = end;
1353 /*
1354 * Be a bit paranoid here, some perf.data file came with
1355 * a zero sized synthesized MMAP event for the kernel.
1356 */
1357 if (start == 0 && end == 0)
1358 machine->vmlinux_map->end = ~0ULL;
1fb87b8e
JO
1359}
1360
3f067dca
ACM
1361int machine__create_kernel_maps(struct machine *machine)
1362{
1363 struct dso *kernel = machine__get_kernel(machine);
b843f62a 1364 const char *name = NULL;
ee05d217 1365 struct map *map;
b843f62a 1366 u64 addr = 0;
1154c957
MH
1367 int ret;
1368
45e90056 1369 if (kernel == NULL)
5512cf24 1370 return -1;
3f067dca 1371
1154c957 1372 ret = __machine__create_kernel_maps(machine, kernel);
1154c957 1373 if (ret < 0)
1c5aae77 1374 goto out_put;
3f067dca
ACM
1375
1376 if (symbol_conf.use_modules && machine__create_modules(machine) < 0) {
1377 if (machine__is_host(machine))
1378 pr_debug("Problems creating module maps, "
1379 "continuing anyway...\n");
1380 else
1381 pr_debug("Problems creating module maps for guest %d, "
1382 "continuing anyway...\n", machine->pid);
1383 }
1384
3f938ee2
JO
1385 if (!machine__get_running_kernel_start(machine, &name, &addr)) {
1386 if (name &&
3183f8ca 1387 map__set_kallsyms_ref_reloc_sym(machine->vmlinux_map, name, addr)) {
3f938ee2 1388 machine__destroy_kernel_maps(machine);
1c5aae77
AH
1389 ret = -1;
1390 goto out_put;
3f938ee2 1391 }
ee05d217
NK
1392
1393 /* we have a real start address now, so re-order the kmaps */
1394 map = machine__kernel_map(machine);
1395
1396 map__get(map);
1397 map_groups__remove(&machine->kmaps, map);
1398
1399 /* assume it's the last in the kmaps */
1400 machine__set_kernel_mmap(machine, addr, ~0ULL);
1401
1402 map_groups__insert(&machine->kmaps, map);
1403 map__put(map);
5512cf24
AH
1404 }
1405
1c5aae77
AH
1406 if (machine__create_extra_kernel_maps(machine, kernel))
1407 pr_debug("Problems creating extra kernel maps, continuing anyway...\n");
1408
ee05d217
NK
1409 /* update end address of the kernel map using adjacent module address */
1410 map = map__next(machine__kernel_map(machine));
1411 if (map)
1412 machine__set_kernel_mmap(machine, addr, map->start);
1c5aae77
AH
1413out_put:
1414 dso__put(kernel);
1415 return ret;
3f067dca
ACM
1416}
1417
8e0cf965
AH
1418static bool machine__uses_kcore(struct machine *machine)
1419{
1420 struct dso *dso;
1421
3d39ac53 1422 list_for_each_entry(dso, &machine->dsos.head, node) {
8e0cf965
AH
1423 if (dso__is_kcore(dso))
1424 return true;
1425 }
1426
1427 return false;
1428}
1429
a8ce99b0
AH
1430static bool perf_event__is_extra_kernel_mmap(struct machine *machine,
1431 union perf_event *event)
1432{
1433 return machine__is(machine, "x86_64") &&
1434 is_entry_trampoline(event->mmap.filename);
1435}
1436
1437static int machine__process_extra_kernel_map(struct machine *machine,
1438 union perf_event *event)
1439{
1440 struct map *kernel_map = machine__kernel_map(machine);
1441 struct dso *kernel = kernel_map ? kernel_map->dso : NULL;
1442 struct extra_kernel_map xm = {
1443 .start = event->mmap.start,
1444 .end = event->mmap.start + event->mmap.len,
1445 .pgoff = event->mmap.pgoff,
1446 };
1447
1448 if (kernel == NULL)
1449 return -1;
1450
1451 strlcpy(xm.name, event->mmap.filename, KMAP_NAME_LEN);
1452
1453 return machine__create_extra_kernel_map(machine, kernel, &xm);
1454}
1455
b0a7d1a0
ACM
1456static int machine__process_kernel_mmap_event(struct machine *machine,
1457 union perf_event *event)
1458{
1459 struct map *map;
b0a7d1a0
ACM
1460 enum dso_kernel_type kernel_type;
1461 bool is_kernel_mmap;
1462
8e0cf965
AH
1463 /* If we have maps from kcore then we do not need or want any others */
1464 if (machine__uses_kcore(machine))
1465 return 0;
1466
b0a7d1a0
ACM
1467 if (machine__is_host(machine))
1468 kernel_type = DSO_TYPE_KERNEL;
1469 else
1470 kernel_type = DSO_TYPE_GUEST_KERNEL;
1471
1472 is_kernel_mmap = memcmp(event->mmap.filename,
8c7f1bb3
JO
1473 machine->mmap_name,
1474 strlen(machine->mmap_name) - 1) == 0;
b0a7d1a0
ACM
1475 if (event->mmap.filename[0] == '/' ||
1476 (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
9f2de315
ACM
1477 map = machine__findnew_module_map(machine, event->mmap.start,
1478 event->mmap.filename);
b0a7d1a0
ACM
1479 if (map == NULL)
1480 goto out_problem;
1481
b0a7d1a0
ACM
1482 map->end = map->start + event->mmap.len;
1483 } else if (is_kernel_mmap) {
1484 const char *symbol_name = (event->mmap.filename +
8c7f1bb3 1485 strlen(machine->mmap_name));
b0a7d1a0
ACM
1486 /*
1487 * Should be there already, from the build-id table in
1488 * the header.
1489 */
b837a8bd
NK
1490 struct dso *kernel = NULL;
1491 struct dso *dso;
1492
0a7c74ea 1493 down_read(&machine->dsos.lock);
e8807844 1494
3d39ac53 1495 list_for_each_entry(dso, &machine->dsos.head, node) {
1f121b03
WN
1496
1497 /*
1498 * The cpumode passed to is_kernel_module is not the
1499 * cpumode of *this* event. If we insist on passing
1500 * correct cpumode to is_kernel_module, we should
1501 * record the cpumode when we adding this dso to the
1502 * linked list.
1503 *
1504 * However we don't really need passing correct
1505 * cpumode. We know the correct cpumode must be kernel
1506 * mode (if not, we should not link it onto kernel_dsos
1507 * list).
1508 *
1509 * Therefore, we pass PERF_RECORD_MISC_CPUMODE_UNKNOWN.
1510 * is_kernel_module() treats it as a kernel cpumode.
1511 */
1512
1513 if (!dso->kernel ||
1514 is_kernel_module(dso->long_name,
1515 PERF_RECORD_MISC_CPUMODE_UNKNOWN))
b837a8bd
NK
1516 continue;
1517
1f121b03 1518
b837a8bd
NK
1519 kernel = dso;
1520 break;
1521 }
1522
0a7c74ea 1523 up_read(&machine->dsos.lock);
e8807844 1524
b837a8bd 1525 if (kernel == NULL)
8c7f1bb3 1526 kernel = machine__findnew_dso(machine, machine->mmap_name);
b0a7d1a0
ACM
1527 if (kernel == NULL)
1528 goto out_problem;
1529
1530 kernel->kernel = kernel_type;
d3a7c489
ACM
1531 if (__machine__create_kernel_maps(machine, kernel) < 0) {
1532 dso__put(kernel);
b0a7d1a0 1533 goto out_problem;
d3a7c489 1534 }
b0a7d1a0 1535
330dfa22
NK
1536 if (strstr(kernel->long_name, "vmlinux"))
1537 dso__set_short_name(kernel, "[kernel.vmlinux]", false);
96d78059 1538
05db6ff7
JO
1539 machine__set_kernel_mmap(machine, event->mmap.start,
1540 event->mmap.start + event->mmap.len);
b0a7d1a0
ACM
1541
1542 /*
1543 * Avoid using a zero address (kptr_restrict) for the ref reloc
1544 * symbol. Effectively having zero here means that at record
1545 * time /proc/sys/kernel/kptr_restrict was non zero.
1546 */
1547 if (event->mmap.pgoff != 0) {
3183f8ca
ACM
1548 map__set_kallsyms_ref_reloc_sym(machine->vmlinux_map,
1549 symbol_name,
1550 event->mmap.pgoff);
b0a7d1a0
ACM
1551 }
1552
1553 if (machine__is_default_guest(machine)) {
1554 /*
1555 * preload dso of guest kernel and modules
1556 */
be39db9f 1557 dso__load(kernel, machine__kernel_map(machine));
b0a7d1a0 1558 }
a8ce99b0
AH
1559 } else if (perf_event__is_extra_kernel_mmap(machine, event)) {
1560 return machine__process_extra_kernel_map(machine, event);
b0a7d1a0
ACM
1561 }
1562 return 0;
1563out_problem:
1564 return -1;
1565}
1566
5c5e854b 1567int machine__process_mmap2_event(struct machine *machine,
162f0bef 1568 union perf_event *event,
473398a2 1569 struct perf_sample *sample)
5c5e854b 1570{
5c5e854b
SE
1571 struct thread *thread;
1572 struct map *map;
5c5e854b
SE
1573 int ret = 0;
1574
1575 if (dump_trace)
1576 perf_event__fprintf_mmap2(event, stdout);
1577
473398a2
ACM
1578 if (sample->cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1579 sample->cpumode == PERF_RECORD_MISC_KERNEL) {
5c5e854b
SE
1580 ret = machine__process_kernel_mmap_event(machine, event);
1581 if (ret < 0)
1582 goto out_problem;
1583 return 0;
1584 }
1585
1586 thread = machine__findnew_thread(machine, event->mmap2.pid,
11c9abf2 1587 event->mmap2.tid);
5c5e854b
SE
1588 if (thread == NULL)
1589 goto out_problem;
1590
2a03068c 1591 map = map__new(machine, event->mmap2.start,
5c5e854b 1592 event->mmap2.len, event->mmap2.pgoff,
bf2e710b 1593 event->mmap2.maj,
5c5e854b
SE
1594 event->mmap2.min, event->mmap2.ino,
1595 event->mmap2.ino_generation,
7ef80703
DZ
1596 event->mmap2.prot,
1597 event->mmap2.flags,
3183f8ca 1598 event->mmap2.filename, thread);
5c5e854b
SE
1599
1600 if (map == NULL)
b91fc39f 1601 goto out_problem_map;
5c5e854b 1602
8132a2a8
HK
1603 ret = thread__insert_map(thread, map);
1604 if (ret)
1605 goto out_problem_insert;
1606
b91fc39f 1607 thread__put(thread);
84c2cafa 1608 map__put(map);
5c5e854b
SE
1609 return 0;
1610
8132a2a8
HK
1611out_problem_insert:
1612 map__put(map);
b91fc39f
ACM
1613out_problem_map:
1614 thread__put(thread);
5c5e854b
SE
1615out_problem:
1616 dump_printf("problem processing PERF_RECORD_MMAP2, skipping event.\n");
1617 return 0;
1618}
1619
162f0bef 1620int machine__process_mmap_event(struct machine *machine, union perf_event *event,
473398a2 1621 struct perf_sample *sample)
b0a7d1a0 1622{
b0a7d1a0
ACM
1623 struct thread *thread;
1624 struct map *map;
0f476f2b 1625 u32 prot = 0;
b0a7d1a0
ACM
1626 int ret = 0;
1627
1628 if (dump_trace)
1629 perf_event__fprintf_mmap(event, stdout);
1630
473398a2
ACM
1631 if (sample->cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1632 sample->cpumode == PERF_RECORD_MISC_KERNEL) {
b0a7d1a0
ACM
1633 ret = machine__process_kernel_mmap_event(machine, event);
1634 if (ret < 0)
1635 goto out_problem;
1636 return 0;
1637 }
1638
314add6b 1639 thread = machine__findnew_thread(machine, event->mmap.pid,
11c9abf2 1640 event->mmap.tid);
b0a7d1a0
ACM
1641 if (thread == NULL)
1642 goto out_problem;
bad40917 1643
3183f8ca 1644 if (!(event->header.misc & PERF_RECORD_MISC_MMAP_DATA))
0f476f2b 1645 prot = PROT_EXEC;
bad40917 1646
2a03068c 1647 map = map__new(machine, event->mmap.start,
b0a7d1a0 1648 event->mmap.len, event->mmap.pgoff,
0f476f2b 1649 0, 0, 0, 0, prot, 0,
5c5e854b 1650 event->mmap.filename,
3183f8ca 1651 thread);
bad40917 1652
b0a7d1a0 1653 if (map == NULL)
b91fc39f 1654 goto out_problem_map;
b0a7d1a0 1655
8132a2a8
HK
1656 ret = thread__insert_map(thread, map);
1657 if (ret)
1658 goto out_problem_insert;
1659
b91fc39f 1660 thread__put(thread);
84c2cafa 1661 map__put(map);
b0a7d1a0
ACM
1662 return 0;
1663
8132a2a8
HK
1664out_problem_insert:
1665 map__put(map);
b91fc39f
ACM
1666out_problem_map:
1667 thread__put(thread);
b0a7d1a0
ACM
1668out_problem:
1669 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
1670 return 0;
1671}
1672
b91fc39f 1673static void __machine__remove_thread(struct machine *machine, struct thread *th, bool lock)
236a3bbd 1674{
91e467bc
KL
1675 struct threads *threads = machine__threads(machine, th->tid);
1676
1677 if (threads->last_match == th)
67fda0f3 1678 threads__set_last_match(threads, NULL);
f3b623b8 1679
e34f5b11 1680 BUG_ON(refcount_read(&th->refcnt) == 0);
b91fc39f 1681 if (lock)
0a7c74ea 1682 down_write(&threads->lock);
91e467bc 1683 rb_erase_init(&th->rb_node, &threads->entries);
b91fc39f 1684 RB_CLEAR_NODE(&th->rb_node);
91e467bc 1685 --threads->nr;
236a3bbd 1686 /*
f3b623b8
ACM
1687 * Move it first to the dead_threads list, then drop the reference,
1688 * if this is the last reference, then the thread__delete destructor
1689 * will be called and we will remove it from the dead_threads list.
236a3bbd 1690 */
91e467bc 1691 list_add_tail(&th->node, &threads->dead);
b91fc39f 1692 if (lock)
0a7c74ea 1693 up_write(&threads->lock);
f3b623b8 1694 thread__put(th);
236a3bbd
DA
1695}
1696
b91fc39f
ACM
1697void machine__remove_thread(struct machine *machine, struct thread *th)
1698{
1699 return __machine__remove_thread(machine, th, true);
1700}
1701
162f0bef
FW
1702int machine__process_fork_event(struct machine *machine, union perf_event *event,
1703 struct perf_sample *sample)
b0a7d1a0 1704{
d75e6097
JO
1705 struct thread *thread = machine__find_thread(machine,
1706 event->fork.pid,
1707 event->fork.tid);
314add6b
AH
1708 struct thread *parent = machine__findnew_thread(machine,
1709 event->fork.ppid,
1710 event->fork.ptid);
b91fc39f 1711 int err = 0;
b0a7d1a0 1712
5cb73340
AH
1713 if (dump_trace)
1714 perf_event__fprintf_task(event, stdout);
1715
1716 /*
1717 * There may be an existing thread that is not actually the parent,
1718 * either because we are processing events out of order, or because the
1719 * (fork) event that would have removed the thread was lost. Assume the
1720 * latter case and continue on as best we can.
1721 */
1722 if (parent->pid_ != (pid_t)event->fork.ppid) {
1723 dump_printf("removing erroneous parent thread %d/%d\n",
1724 parent->pid_, parent->tid);
1725 machine__remove_thread(machine, parent);
1726 thread__put(parent);
1727 parent = machine__findnew_thread(machine, event->fork.ppid,
1728 event->fork.ptid);
1729 }
1730
236a3bbd 1731 /* if a thread currently exists for the thread id remove it */
b91fc39f 1732 if (thread != NULL) {
236a3bbd 1733 machine__remove_thread(machine, thread);
b91fc39f
ACM
1734 thread__put(thread);
1735 }
236a3bbd 1736
314add6b
AH
1737 thread = machine__findnew_thread(machine, event->fork.pid,
1738 event->fork.tid);
b0a7d1a0
ACM
1739
1740 if (thread == NULL || parent == NULL ||
162f0bef 1741 thread__fork(thread, parent, sample->time) < 0) {
b0a7d1a0 1742 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
b91fc39f 1743 err = -1;
b0a7d1a0 1744 }
b91fc39f
ACM
1745 thread__put(thread);
1746 thread__put(parent);
b0a7d1a0 1747
b91fc39f 1748 return err;
b0a7d1a0
ACM
1749}
1750
162f0bef
FW
1751int machine__process_exit_event(struct machine *machine, union perf_event *event,
1752 struct perf_sample *sample __maybe_unused)
b0a7d1a0 1753{
d75e6097
JO
1754 struct thread *thread = machine__find_thread(machine,
1755 event->fork.pid,
1756 event->fork.tid);
b0a7d1a0
ACM
1757
1758 if (dump_trace)
1759 perf_event__fprintf_task(event, stdout);
1760
b91fc39f 1761 if (thread != NULL) {
236a3bbd 1762 thread__exited(thread);
b91fc39f
ACM
1763 thread__put(thread);
1764 }
b0a7d1a0
ACM
1765
1766 return 0;
1767}
1768
162f0bef
FW
1769int machine__process_event(struct machine *machine, union perf_event *event,
1770 struct perf_sample *sample)
b0a7d1a0
ACM
1771{
1772 int ret;
1773
1774 switch (event->header.type) {
1775 case PERF_RECORD_COMM:
162f0bef 1776 ret = machine__process_comm_event(machine, event, sample); break;
b0a7d1a0 1777 case PERF_RECORD_MMAP:
162f0bef 1778 ret = machine__process_mmap_event(machine, event, sample); break;
f3b3614a
HB
1779 case PERF_RECORD_NAMESPACES:
1780 ret = machine__process_namespaces_event(machine, event, sample); break;
5c5e854b 1781 case PERF_RECORD_MMAP2:
162f0bef 1782 ret = machine__process_mmap2_event(machine, event, sample); break;
b0a7d1a0 1783 case PERF_RECORD_FORK:
162f0bef 1784 ret = machine__process_fork_event(machine, event, sample); break;
b0a7d1a0 1785 case PERF_RECORD_EXIT:
162f0bef 1786 ret = machine__process_exit_event(machine, event, sample); break;
b0a7d1a0 1787 case PERF_RECORD_LOST:
162f0bef 1788 ret = machine__process_lost_event(machine, event, sample); break;
4a96f7a0
AH
1789 case PERF_RECORD_AUX:
1790 ret = machine__process_aux_event(machine, event); break;
0ad21f68 1791 case PERF_RECORD_ITRACE_START:
ceb92913 1792 ret = machine__process_itrace_start_event(machine, event); break;
c4937a91
KL
1793 case PERF_RECORD_LOST_SAMPLES:
1794 ret = machine__process_lost_samples_event(machine, event, sample); break;
0286039f
AH
1795 case PERF_RECORD_SWITCH:
1796 case PERF_RECORD_SWITCH_CPU_WIDE:
1797 ret = machine__process_switch_event(machine, event); break;
b0a7d1a0
ACM
1798 default:
1799 ret = -1;
1800 break;
1801 }
1802
1803 return ret;
1804}
3f067dca 1805
b21484f1 1806static bool symbol__match_regex(struct symbol *sym, regex_t *regex)
3f067dca 1807{
a7c3899c 1808 if (!regexec(regex, sym->name, 0, NULL, 0))
3f067dca 1809 return 1;
3f067dca
ACM
1810 return 0;
1811}
1812
bb871a9c 1813static void ip__resolve_ams(struct thread *thread,
3f067dca
ACM
1814 struct addr_map_symbol *ams,
1815 u64 ip)
1816{
1817 struct addr_location al;
3f067dca
ACM
1818
1819 memset(&al, 0, sizeof(al));
52a3cb8c
ACM
1820 /*
1821 * We cannot use the header.misc hint to determine whether a
1822 * branch stack address is user, kernel, guest, hypervisor.
1823 * Branches may straddle the kernel/user/hypervisor boundaries.
1824 * Thus, we have to try consecutively until we find a match
1825 * or else, the symbol is unknown
1826 */
26bd9331 1827 thread__find_cpumode_addr_location(thread, ip, &al);
3f067dca 1828
3f067dca
ACM
1829 ams->addr = ip;
1830 ams->al_addr = al.addr;
1831 ams->sym = al.sym;
1832 ams->map = al.map;
8780fb25 1833 ams->phys_addr = 0;
3f067dca
ACM
1834}
1835
bb871a9c 1836static void ip__resolve_data(struct thread *thread,
8780fb25
KL
1837 u8 m, struct addr_map_symbol *ams,
1838 u64 addr, u64 phys_addr)
98a3b32c
SE
1839{
1840 struct addr_location al;
1841
1842 memset(&al, 0, sizeof(al));
1843
117d3c24 1844 thread__find_symbol(thread, m, addr, &al);
06b2afc0 1845
98a3b32c
SE
1846 ams->addr = addr;
1847 ams->al_addr = al.addr;
1848 ams->sym = al.sym;
1849 ams->map = al.map;
8780fb25 1850 ams->phys_addr = phys_addr;
98a3b32c
SE
1851}
1852
e80faac0
ACM
1853struct mem_info *sample__resolve_mem(struct perf_sample *sample,
1854 struct addr_location *al)
98a3b32c 1855{
9f87498f 1856 struct mem_info *mi = mem_info__new();
98a3b32c
SE
1857
1858 if (!mi)
1859 return NULL;
1860
bb871a9c 1861 ip__resolve_ams(al->thread, &mi->iaddr, sample->ip);
8780fb25
KL
1862 ip__resolve_data(al->thread, al->cpumode, &mi->daddr,
1863 sample->addr, sample->phys_addr);
98a3b32c
SE
1864 mi->data_src.val = sample->data_src;
1865
1866 return mi;
1867}
1868
40a342cd
MW
1869static char *callchain_srcline(struct map *map, struct symbol *sym, u64 ip)
1870{
21ac9d54
MW
1871 char *srcline = NULL;
1872
40a342cd 1873 if (!map || callchain_param.key == CCKEY_FUNCTION)
21ac9d54
MW
1874 return srcline;
1875
1876 srcline = srcline__tree_find(&map->dso->srclines, ip);
1877 if (!srcline) {
1878 bool show_sym = false;
1879 bool show_addr = callchain_param.key == CCKEY_ADDRESS;
1880
1881 srcline = get_srcline(map->dso, map__rip_2objdump(map, ip),
935f5a9d 1882 sym, show_sym, show_addr, ip);
21ac9d54
MW
1883 srcline__tree_insert(&map->dso->srclines, ip, srcline);
1884 }
40a342cd 1885
21ac9d54 1886 return srcline;
40a342cd
MW
1887}
1888
c4ee0625
JY
1889struct iterations {
1890 int nr_loop_iter;
1891 u64 cycles;
1892};
1893
37592b8a 1894static int add_callchain_ip(struct thread *thread,
91d7b2de 1895 struct callchain_cursor *cursor,
37592b8a
AK
1896 struct symbol **parent,
1897 struct addr_location *root_al,
73dbcd65 1898 u8 *cpumode,
410024db
JY
1899 u64 ip,
1900 bool branch,
1901 struct branch_flags *flags,
c4ee0625 1902 struct iterations *iter,
b851dd49 1903 u64 branch_from)
37592b8a
AK
1904{
1905 struct addr_location al;
c4ee0625
JY
1906 int nr_loop_iter = 0;
1907 u64 iter_cycles = 0;
40a342cd 1908 const char *srcline = NULL;
37592b8a
AK
1909
1910 al.filtered = 0;
1911 al.sym = NULL;
73dbcd65 1912 if (!cpumode) {
26bd9331 1913 thread__find_cpumode_addr_location(thread, ip, &al);
73dbcd65 1914 } else {
2e77784b
KL
1915 if (ip >= PERF_CONTEXT_MAX) {
1916 switch (ip) {
1917 case PERF_CONTEXT_HV:
73dbcd65 1918 *cpumode = PERF_RECORD_MISC_HYPERVISOR;
2e77784b
KL
1919 break;
1920 case PERF_CONTEXT_KERNEL:
73dbcd65 1921 *cpumode = PERF_RECORD_MISC_KERNEL;
2e77784b
KL
1922 break;
1923 case PERF_CONTEXT_USER:
73dbcd65 1924 *cpumode = PERF_RECORD_MISC_USER;
2e77784b
KL
1925 break;
1926 default:
1927 pr_debug("invalid callchain context: "
1928 "%"PRId64"\n", (s64) ip);
1929 /*
1930 * It seems the callchain is corrupted.
1931 * Discard all.
1932 */
91d7b2de 1933 callchain_cursor_reset(cursor);
2e77784b
KL
1934 return 1;
1935 }
1936 return 0;
1937 }
4546263d 1938 thread__find_symbol(thread, *cpumode, ip, &al);
2e77784b
KL
1939 }
1940
37592b8a 1941 if (al.sym != NULL) {
de7e6a7c 1942 if (perf_hpp_list.parent && !*parent &&
37592b8a
AK
1943 symbol__match_regex(al.sym, &parent_regex))
1944 *parent = al.sym;
1945 else if (have_ignore_callees && root_al &&
1946 symbol__match_regex(al.sym, &ignore_callees_regex)) {
1947 /* Treat this symbol as the root,
1948 forgetting its callees. */
1949 *root_al = al;
91d7b2de 1950 callchain_cursor_reset(cursor);
37592b8a
AK
1951 }
1952 }
1953
b49a8fe5
NK
1954 if (symbol_conf.hide_unresolved && al.sym == NULL)
1955 return 0;
c4ee0625
JY
1956
1957 if (iter) {
1958 nr_loop_iter = iter->nr_loop_iter;
1959 iter_cycles = iter->cycles;
1960 }
1961
40a342cd 1962 srcline = callchain_srcline(al.map, al.sym, al.addr);
19610184 1963 return callchain_cursor_append(cursor, ip, al.map, al.sym,
c4ee0625 1964 branch, flags, nr_loop_iter,
40a342cd 1965 iter_cycles, branch_from, srcline);
37592b8a
AK
1966}
1967
644f2df2
ACM
1968struct branch_info *sample__resolve_bstack(struct perf_sample *sample,
1969 struct addr_location *al)
3f067dca 1970{
3f067dca 1971 unsigned int i;
644f2df2
ACM
1972 const struct branch_stack *bs = sample->branch_stack;
1973 struct branch_info *bi = calloc(bs->nr, sizeof(struct branch_info));
3f067dca 1974
3f067dca
ACM
1975 if (!bi)
1976 return NULL;
1977
1978 for (i = 0; i < bs->nr; i++) {
bb871a9c
ACM
1979 ip__resolve_ams(al->thread, &bi[i].to, bs->entries[i].to);
1980 ip__resolve_ams(al->thread, &bi[i].from, bs->entries[i].from);
3f067dca
ACM
1981 bi[i].flags = bs->entries[i].flags;
1982 }
1983 return bi;
1984}
1985
c4ee0625
JY
1986static void save_iterations(struct iterations *iter,
1987 struct branch_entry *be, int nr)
1988{
1989 int i;
1990
1991 iter->nr_loop_iter = nr;
1992 iter->cycles = 0;
1993
1994 for (i = 0; i < nr; i++)
1995 iter->cycles += be[i].flags.cycles;
1996}
1997
8b7bad58
AK
1998#define CHASHSZ 127
1999#define CHASHBITS 7
2000#define NO_ENTRY 0xff
2001
2002#define PERF_MAX_BRANCH_DEPTH 127
2003
2004/* Remove loops. */
c4ee0625
JY
2005static int remove_loops(struct branch_entry *l, int nr,
2006 struct iterations *iter)
8b7bad58
AK
2007{
2008 int i, j, off;
2009 unsigned char chash[CHASHSZ];
2010
2011 memset(chash, NO_ENTRY, sizeof(chash));
2012
2013 BUG_ON(PERF_MAX_BRANCH_DEPTH > 255);
2014
2015 for (i = 0; i < nr; i++) {
2016 int h = hash_64(l[i].from, CHASHBITS) % CHASHSZ;
2017
2018 /* no collision handling for now */
2019 if (chash[h] == NO_ENTRY) {
2020 chash[h] = i;
2021 } else if (l[chash[h]].from == l[i].from) {
2022 bool is_loop = true;
2023 /* check if it is a real loop */
2024 off = 0;
2025 for (j = chash[h]; j < i && i + off < nr; j++, off++)
2026 if (l[j].from != l[i + off].from) {
2027 is_loop = false;
2028 break;
2029 }
2030 if (is_loop) {
c4ee0625
JY
2031 j = nr - (i + off);
2032 if (j > 0) {
2033 save_iterations(iter + i + off,
2034 l + i, off);
2035
2036 memmove(iter + i, iter + i + off,
2037 j * sizeof(*iter));
2038
2039 memmove(l + i, l + i + off,
2040 j * sizeof(*l));
2041 }
2042
8b7bad58
AK
2043 nr -= off;
2044 }
2045 }
2046 }
2047 return nr;
2048}
2049
384b6055
KL
2050/*
2051 * Recolve LBR callstack chain sample
2052 * Return:
2053 * 1 on success get LBR callchain information
2054 * 0 no available LBR callchain information, should try fp
2055 * negative error code on other errors.
2056 */
2057static int resolve_lbr_callchain_sample(struct thread *thread,
91d7b2de 2058 struct callchain_cursor *cursor,
384b6055
KL
2059 struct perf_sample *sample,
2060 struct symbol **parent,
2061 struct addr_location *root_al,
2062 int max_stack)
3f067dca 2063{
384b6055 2064 struct ip_callchain *chain = sample->callchain;
18ef15c6 2065 int chain_nr = min(max_stack, (int)chain->nr), i;
73dbcd65 2066 u8 cpumode = PERF_RECORD_MISC_USER;
b851dd49 2067 u64 ip, branch_from = 0;
384b6055
KL
2068
2069 for (i = 0; i < chain_nr; i++) {
2070 if (chain->ips[i] == PERF_CONTEXT_USER)
2071 break;
2072 }
2073
2074 /* LBR only affects the user callchain */
2075 if (i != chain_nr) {
2076 struct branch_stack *lbr_stack = sample->branch_stack;
410024db
JY
2077 int lbr_nr = lbr_stack->nr, j, k;
2078 bool branch;
2079 struct branch_flags *flags;
384b6055
KL
2080 /*
2081 * LBR callstack can only get user call chain.
2082 * The mix_chain_nr is kernel call chain
2083 * number plus LBR user call chain number.
2084 * i is kernel call chain number,
2085 * 1 is PERF_CONTEXT_USER,
2086 * lbr_nr + 1 is the user call chain number.
2087 * For details, please refer to the comments
2088 * in callchain__printf
2089 */
2090 int mix_chain_nr = i + 1 + lbr_nr + 1;
2091
384b6055 2092 for (j = 0; j < mix_chain_nr; j++) {
18ef15c6 2093 int err;
410024db
JY
2094 branch = false;
2095 flags = NULL;
2096
384b6055
KL
2097 if (callchain_param.order == ORDER_CALLEE) {
2098 if (j < i + 1)
2099 ip = chain->ips[j];
410024db
JY
2100 else if (j > i + 1) {
2101 k = j - i - 2;
2102 ip = lbr_stack->entries[k].from;
2103 branch = true;
2104 flags = &lbr_stack->entries[k].flags;
2105 } else {
384b6055 2106 ip = lbr_stack->entries[0].to;
410024db
JY
2107 branch = true;
2108 flags = &lbr_stack->entries[0].flags;
b851dd49
JY
2109 branch_from =
2110 lbr_stack->entries[0].from;
410024db 2111 }
384b6055 2112 } else {
410024db
JY
2113 if (j < lbr_nr) {
2114 k = lbr_nr - j - 1;
2115 ip = lbr_stack->entries[k].from;
2116 branch = true;
2117 flags = &lbr_stack->entries[k].flags;
2118 }
384b6055
KL
2119 else if (j > lbr_nr)
2120 ip = chain->ips[i + 1 - (j - lbr_nr)];
410024db 2121 else {
384b6055 2122 ip = lbr_stack->entries[0].to;
410024db
JY
2123 branch = true;
2124 flags = &lbr_stack->entries[0].flags;
b851dd49
JY
2125 branch_from =
2126 lbr_stack->entries[0].from;
410024db 2127 }
384b6055
KL
2128 }
2129
410024db
JY
2130 err = add_callchain_ip(thread, cursor, parent,
2131 root_al, &cpumode, ip,
c4ee0625 2132 branch, flags, NULL,
b851dd49 2133 branch_from);
384b6055
KL
2134 if (err)
2135 return (err < 0) ? err : 0;
2136 }
2137 return 1;
2138 }
2139
2140 return 0;
2141}
2142
2143static int thread__resolve_callchain_sample(struct thread *thread,
91d7b2de 2144 struct callchain_cursor *cursor,
384b6055
KL
2145 struct perf_evsel *evsel,
2146 struct perf_sample *sample,
2147 struct symbol **parent,
2148 struct addr_location *root_al,
2149 int max_stack)
2150{
2151 struct branch_stack *branch = sample->branch_stack;
2152 struct ip_callchain *chain = sample->callchain;
b49a821e 2153 int chain_nr = 0;
73dbcd65 2154 u8 cpumode = PERF_RECORD_MISC_USER;
bf8bddbf 2155 int i, j, err, nr_entries;
8b7bad58
AK
2156 int skip_idx = -1;
2157 int first_call = 0;
2158
b49a821e
JY
2159 if (chain)
2160 chain_nr = chain->nr;
2161
acf2abbd 2162 if (perf_evsel__has_branch_callstack(evsel)) {
91d7b2de 2163 err = resolve_lbr_callchain_sample(thread, cursor, sample, parent,
384b6055
KL
2164 root_al, max_stack);
2165 if (err)
2166 return (err < 0) ? err : 0;
2167 }
2168
8b7bad58
AK
2169 /*
2170 * Based on DWARF debug information, some architectures skip
2171 * a callchain entry saved by the kernel.
2172 */
bf8bddbf 2173 skip_idx = arch_skip_callchain_idx(thread, chain);
3f067dca 2174
8b7bad58
AK
2175 /*
2176 * Add branches to call stack for easier browsing. This gives
2177 * more context for a sample than just the callers.
2178 *
2179 * This uses individual histograms of paths compared to the
2180 * aggregated histograms the normal LBR mode uses.
2181 *
2182 * Limitations for now:
2183 * - No extra filters
2184 * - No annotations (should annotate somehow)
2185 */
2186
2187 if (branch && callchain_param.branch_callstack) {
2188 int nr = min(max_stack, (int)branch->nr);
2189 struct branch_entry be[nr];
c4ee0625 2190 struct iterations iter[nr];
8b7bad58
AK
2191
2192 if (branch->nr > PERF_MAX_BRANCH_DEPTH) {
2193 pr_warning("corrupted branch chain. skipping...\n");
2194 goto check_calls;
2195 }
2196
2197 for (i = 0; i < nr; i++) {
2198 if (callchain_param.order == ORDER_CALLEE) {
2199 be[i] = branch->entries[i];
b49a821e
JY
2200
2201 if (chain == NULL)
2202 continue;
2203
8b7bad58
AK
2204 /*
2205 * Check for overlap into the callchain.
2206 * The return address is one off compared to
2207 * the branch entry. To adjust for this
2208 * assume the calling instruction is not longer
2209 * than 8 bytes.
2210 */
2211 if (i == skip_idx ||
2212 chain->ips[first_call] >= PERF_CONTEXT_MAX)
2213 first_call++;
2214 else if (be[i].from < chain->ips[first_call] &&
2215 be[i].from >= chain->ips[first_call] - 8)
2216 first_call++;
2217 } else
2218 be[i] = branch->entries[branch->nr - i - 1];
2219 }
2220
c4ee0625
JY
2221 memset(iter, 0, sizeof(struct iterations) * nr);
2222 nr = remove_loops(be, nr, iter);
410024db 2223
8b7bad58 2224 for (i = 0; i < nr; i++) {
c4ee0625
JY
2225 err = add_callchain_ip(thread, cursor, parent,
2226 root_al,
2227 NULL, be[i].to,
2228 true, &be[i].flags,
2229 NULL, be[i].from);
410024db 2230
8b7bad58 2231 if (!err)
91d7b2de 2232 err = add_callchain_ip(thread, cursor, parent, root_al,
410024db
JY
2233 NULL, be[i].from,
2234 true, &be[i].flags,
c4ee0625 2235 &iter[i], 0);
8b7bad58
AK
2236 if (err == -EINVAL)
2237 break;
2238 if (err)
2239 return err;
2240 }
b49a821e
JY
2241
2242 if (chain_nr == 0)
2243 return 0;
2244
8b7bad58
AK
2245 chain_nr -= nr;
2246 }
2247
2248check_calls:
bf8bddbf 2249 for (i = first_call, nr_entries = 0;
a29d5c9b 2250 i < chain_nr && nr_entries < max_stack; i++) {
3f067dca 2251 u64 ip;
3f067dca
ACM
2252
2253 if (callchain_param.order == ORDER_CALLEE)
a60335ba 2254 j = i;
3f067dca 2255 else
a60335ba
SB
2256 j = chain->nr - i - 1;
2257
2258#ifdef HAVE_SKIP_CALLCHAIN_IDX
2259 if (j == skip_idx)
2260 continue;
2261#endif
2262 ip = chain->ips[j];
3f067dca 2263
bf8bddbf
ACM
2264 if (ip < PERF_CONTEXT_MAX)
2265 ++nr_entries;
a29d5c9b 2266
410024db
JY
2267 err = add_callchain_ip(thread, cursor, parent,
2268 root_al, &cpumode, ip,
c4ee0625 2269 false, NULL, NULL, 0);
3f067dca 2270
3f067dca 2271 if (err)
2e77784b 2272 return (err < 0) ? err : 0;
3f067dca
ACM
2273 }
2274
2275 return 0;
2276}
2277
11ea2515
MW
2278static int append_inlines(struct callchain_cursor *cursor,
2279 struct map *map, struct symbol *sym, u64 ip)
2280{
2281 struct inline_node *inline_node;
2282 struct inline_list *ilist;
2283 u64 addr;
b38775cf 2284 int ret = 1;
11ea2515
MW
2285
2286 if (!symbol_conf.inline_name || !map || !sym)
b38775cf 2287 return ret;
11ea2515
MW
2288
2289 addr = map__rip_2objdump(map, ip);
2290
2291 inline_node = inlines__tree_find(&map->dso->inlined_nodes, addr);
2292 if (!inline_node) {
2293 inline_node = dso__parse_addr_inlines(map->dso, addr, sym);
2294 if (!inline_node)
b38775cf 2295 return ret;
11ea2515
MW
2296 inlines__tree_insert(&map->dso->inlined_nodes, inline_node);
2297 }
2298
2299 list_for_each_entry(ilist, &inline_node->val, list) {
b38775cf
MW
2300 ret = callchain_cursor_append(cursor, ip, map,
2301 ilist->symbol, false,
2302 NULL, 0, 0, 0, ilist->srcline);
11ea2515
MW
2303
2304 if (ret != 0)
2305 return ret;
2306 }
2307
b38775cf 2308 return ret;
11ea2515
MW
2309}
2310
3f067dca
ACM
2311static int unwind_entry(struct unwind_entry *entry, void *arg)
2312{
2313 struct callchain_cursor *cursor = arg;
40a342cd 2314 const char *srcline = NULL;
2a9d5050 2315 u64 addr;
b49a8fe5
NK
2316
2317 if (symbol_conf.hide_unresolved && entry->sym == NULL)
2318 return 0;
40a342cd 2319
11ea2515
MW
2320 if (append_inlines(cursor, entry->map, entry->sym, entry->ip) == 0)
2321 return 0;
2322
2a9d5050
SD
2323 /*
2324 * Convert entry->ip from a virtual address to an offset in
2325 * its corresponding binary.
2326 */
2327 addr = map__map_ip(entry->map, entry->ip);
2328
2329 srcline = callchain_srcline(entry->map, entry->sym, addr);
3f067dca 2330 return callchain_cursor_append(cursor, entry->ip,
410024db 2331 entry->map, entry->sym,
40a342cd 2332 false, NULL, 0, 0, 0, srcline);
3f067dca
ACM
2333}
2334
9919a65e
CP
2335static int thread__resolve_callchain_unwind(struct thread *thread,
2336 struct callchain_cursor *cursor,
2337 struct perf_evsel *evsel,
2338 struct perf_sample *sample,
2339 int max_stack)
3f067dca 2340{
3f067dca
ACM
2341 /* Can we do dwarf post unwind? */
2342 if (!((evsel->attr.sample_type & PERF_SAMPLE_REGS_USER) &&
2343 (evsel->attr.sample_type & PERF_SAMPLE_STACK_USER)))
2344 return 0;
2345
2346 /* Bail out if nothing was captured. */
2347 if ((!sample->user_regs.regs) ||
2348 (!sample->user_stack.size))
2349 return 0;
2350
91d7b2de 2351 return unwind__get_entries(unwind_entry, cursor,
352ea45a 2352 thread, sample, max_stack);
9919a65e 2353}
3f067dca 2354
9919a65e
CP
2355int thread__resolve_callchain(struct thread *thread,
2356 struct callchain_cursor *cursor,
2357 struct perf_evsel *evsel,
2358 struct perf_sample *sample,
2359 struct symbol **parent,
2360 struct addr_location *root_al,
2361 int max_stack)
2362{
2363 int ret = 0;
2364
914eb9ca 2365 callchain_cursor_reset(cursor);
9919a65e
CP
2366
2367 if (callchain_param.order == ORDER_CALLEE) {
2368 ret = thread__resolve_callchain_sample(thread, cursor,
2369 evsel, sample,
2370 parent, root_al,
2371 max_stack);
2372 if (ret)
2373 return ret;
2374 ret = thread__resolve_callchain_unwind(thread, cursor,
2375 evsel, sample,
2376 max_stack);
2377 } else {
2378 ret = thread__resolve_callchain_unwind(thread, cursor,
2379 evsel, sample,
2380 max_stack);
2381 if (ret)
2382 return ret;
2383 ret = thread__resolve_callchain_sample(thread, cursor,
2384 evsel, sample,
2385 parent, root_al,
2386 max_stack);
2387 }
2388
2389 return ret;
3f067dca 2390}
35feee19
DA
2391
2392int machine__for_each_thread(struct machine *machine,
2393 int (*fn)(struct thread *thread, void *p),
2394 void *priv)
2395{
91e467bc 2396 struct threads *threads;
35feee19
DA
2397 struct rb_node *nd;
2398 struct thread *thread;
2399 int rc = 0;
91e467bc 2400 int i;
35feee19 2401
91e467bc
KL
2402 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
2403 threads = &machine->threads[i];
2404 for (nd = rb_first(&threads->entries); nd; nd = rb_next(nd)) {
2405 thread = rb_entry(nd, struct thread, rb_node);
2406 rc = fn(thread, priv);
2407 if (rc != 0)
2408 return rc;
2409 }
35feee19 2410
91e467bc
KL
2411 list_for_each_entry(thread, &threads->dead, node) {
2412 rc = fn(thread, priv);
2413 if (rc != 0)
2414 return rc;
2415 }
35feee19
DA
2416 }
2417 return rc;
2418}
58d925dc 2419
a5499b37
AH
2420int machines__for_each_thread(struct machines *machines,
2421 int (*fn)(struct thread *thread, void *p),
2422 void *priv)
2423{
2424 struct rb_node *nd;
2425 int rc = 0;
2426
2427 rc = machine__for_each_thread(&machines->host, fn, priv);
2428 if (rc != 0)
2429 return rc;
2430
2431 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
2432 struct machine *machine = rb_entry(nd, struct machine, rb_node);
2433
2434 rc = machine__for_each_thread(machine, fn, priv);
2435 if (rc != 0)
2436 return rc;
2437 }
2438 return rc;
2439}
2440
a33fbd56 2441int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool,
602ad878 2442 struct target *target, struct thread_map *threads,
9d9cad76 2443 perf_event__handler_t process, bool data_mmap,
340b47f5
KL
2444 unsigned int proc_map_timeout,
2445 unsigned int nr_threads_synthesize)
58d925dc 2446{
602ad878 2447 if (target__has_task(target))
9d9cad76 2448 return perf_event__synthesize_thread_map(tool, threads, process, machine, data_mmap, proc_map_timeout);
602ad878 2449 else if (target__has_cpu(target))
340b47f5
KL
2450 return perf_event__synthesize_threads(tool, process,
2451 machine, data_mmap,
2452 proc_map_timeout,
2453 nr_threads_synthesize);
58d925dc
ACM
2454 /* command specified */
2455 return 0;
2456}
b9d266ba
AH
2457
2458pid_t machine__get_current_tid(struct machine *machine, int cpu)
2459{
2460 if (cpu < 0 || cpu >= MAX_NR_CPUS || !machine->current_tid)
2461 return -1;
2462
2463 return machine->current_tid[cpu];
2464}
2465
2466int machine__set_current_tid(struct machine *machine, int cpu, pid_t pid,
2467 pid_t tid)
2468{
2469 struct thread *thread;
2470
2471 if (cpu < 0)
2472 return -EINVAL;
2473
2474 if (!machine->current_tid) {
2475 int i;
2476
2477 machine->current_tid = calloc(MAX_NR_CPUS, sizeof(pid_t));
2478 if (!machine->current_tid)
2479 return -ENOMEM;
2480 for (i = 0; i < MAX_NR_CPUS; i++)
2481 machine->current_tid[i] = -1;
2482 }
2483
2484 if (cpu >= MAX_NR_CPUS) {
2485 pr_err("Requested CPU %d too large. ", cpu);
2486 pr_err("Consider raising MAX_NR_CPUS\n");
2487 return -EINVAL;
2488 }
2489
2490 machine->current_tid[cpu] = tid;
2491
2492 thread = machine__findnew_thread(machine, pid, tid);
2493 if (!thread)
2494 return -ENOMEM;
2495
2496 thread->cpu = cpu;
b91fc39f 2497 thread__put(thread);
b9d266ba
AH
2498
2499 return 0;
2500}
fbe2af45 2501
dbbd34a6
AH
2502/*
2503 * Compares the raw arch string. N.B. see instead perf_env__arch() if a
2504 * normalized arch is needed.
2505 */
2506bool machine__is(struct machine *machine, const char *arch)
2507{
2508 return machine && !strcmp(perf_env__raw_arch(machine->env), arch);
2509}
2510
9cecca32
AH
2511int machine__nr_cpus_avail(struct machine *machine)
2512{
2513 return machine ? perf_env__nr_cpus_avail(machine->env) : 0;
2514}
2515
fbe2af45
AH
2516int machine__get_kernel_start(struct machine *machine)
2517{
a5e813c6 2518 struct map *map = machine__kernel_map(machine);
fbe2af45
AH
2519 int err = 0;
2520
2521 /*
2522 * The only addresses above 2^63 are kernel addresses of a 64-bit
2523 * kernel. Note that addresses are unsigned so that on a 32-bit system
2524 * all addresses including kernel addresses are less than 2^32. In
2525 * that case (32-bit system), if the kernel mapping is unknown, all
2526 * addresses will be assumed to be in user space - see
2527 * machine__kernel_ip().
2528 */
2529 machine->kernel_start = 1ULL << 63;
2530 if (map) {
be39db9f 2531 err = map__load(map);
19422a9f
AH
2532 /*
2533 * On x86_64, PTI entry trampolines are less than the
2534 * start of kernel text, but still above 2^63. So leave
2535 * kernel_start = 1ULL << 63 for x86_64.
2536 */
2537 if (!err && !machine__is(machine, "x86_64"))
fbe2af45
AH
2538 machine->kernel_start = map->start;
2539 }
2540 return err;
2541}
aa7cc2ae
ACM
2542
2543struct dso *machine__findnew_dso(struct machine *machine, const char *filename)
2544{
e8807844 2545 return dsos__findnew(&machine->dsos, filename);
aa7cc2ae 2546}
c3168b0d
ACM
2547
2548char *machine__resolve_kernel_addr(void *vmachine, unsigned long long *addrp, char **modp)
2549{
2550 struct machine *machine = vmachine;
2551 struct map *map;
107cad95 2552 struct symbol *sym = machine__find_kernel_symbol(machine, *addrp, &map);
c3168b0d
ACM
2553
2554 if (sym == NULL)
2555 return NULL;
2556
2557 *modp = __map__is_kmodule(map) ? (char *)map->dso->short_name : NULL;
2558 *addrp = map->unmap_ip(map, sym->start);
2559 return sym->name;
2560}