1 // SPDX-License-Identifier: GPL-2.0
18 #include <sys/types.h>
22 #include "linux/hash.h"
25 #include "sane_ctype.h"
26 #include <symbol/kallsyms.h>
28 static void __machine__remove_thread(struct machine
*machine
, struct thread
*th
, bool lock
);
30 static void dsos__init(struct dsos
*dsos
)
32 INIT_LIST_HEAD(&dsos
->head
);
34 init_rwsem(&dsos
->lock
);
37 static void machine__threads_init(struct machine
*machine
)
41 for (i
= 0; i
< THREADS__TABLE_SIZE
; i
++) {
42 struct threads
*threads
= &machine
->threads
[i
];
43 threads
->entries
= RB_ROOT
;
44 init_rwsem(&threads
->lock
);
46 INIT_LIST_HEAD(&threads
->dead
);
47 threads
->last_match
= NULL
;
51 int machine__init(struct machine
*machine
, const char *root_dir
, pid_t pid
)
53 memset(machine
, 0, sizeof(*machine
));
54 map_groups__init(&machine
->kmaps
, machine
);
55 RB_CLEAR_NODE(&machine
->rb_node
);
56 dsos__init(&machine
->dsos
);
58 machine__threads_init(machine
);
60 machine
->vdso_info
= NULL
;
65 machine
->id_hdr_size
= 0;
66 machine
->kptr_restrict_warned
= false;
67 machine
->comm_exec
= false;
68 machine
->kernel_start
= 0;
70 memset(machine
->vmlinux_maps
, 0, sizeof(machine
->vmlinux_maps
));
72 machine
->root_dir
= strdup(root_dir
);
73 if (machine
->root_dir
== NULL
)
76 if (pid
!= HOST_KERNEL_ID
) {
77 struct thread
*thread
= machine__findnew_thread(machine
, -1,
84 snprintf(comm
, sizeof(comm
), "[guest/%d]", pid
);
85 thread__set_comm(thread
, comm
, 0);
89 machine
->current_tid
= NULL
;
94 struct machine
*machine__new_host(void)
96 struct machine
*machine
= malloc(sizeof(*machine
));
98 if (machine
!= NULL
) {
99 machine__init(machine
, "", HOST_KERNEL_ID
);
101 if (machine__create_kernel_maps(machine
) < 0)
111 struct machine
*machine__new_kallsyms(void)
113 struct machine
*machine
= machine__new_host();
116 * 1) MAP__FUNCTION will go away when we stop loading separate maps for
117 * functions and data objects.
118 * 2) We should switch to machine__load_kallsyms(), i.e. not explicitely
119 * ask for not using the kcore parsing code, once this one is fixed
120 * to create a map per module.
122 if (machine
&& __machine__load_kallsyms(machine
, "/proc/kallsyms", MAP__FUNCTION
, true) <= 0) {
123 machine__delete(machine
);
130 static void dsos__purge(struct dsos
*dsos
)
134 down_write(&dsos
->lock
);
136 list_for_each_entry_safe(pos
, n
, &dsos
->head
, node
) {
137 RB_CLEAR_NODE(&pos
->rb_node
);
139 list_del_init(&pos
->node
);
143 up_write(&dsos
->lock
);
146 static void dsos__exit(struct dsos
*dsos
)
149 exit_rwsem(&dsos
->lock
);
152 void machine__delete_threads(struct machine
*machine
)
157 for (i
= 0; i
< THREADS__TABLE_SIZE
; i
++) {
158 struct threads
*threads
= &machine
->threads
[i
];
159 down_write(&threads
->lock
);
160 nd
= rb_first(&threads
->entries
);
162 struct thread
*t
= rb_entry(nd
, struct thread
, rb_node
);
165 __machine__remove_thread(machine
, t
, false);
167 up_write(&threads
->lock
);
171 void machine__exit(struct machine
*machine
)
178 machine__destroy_kernel_maps(machine
);
179 map_groups__exit(&machine
->kmaps
);
180 dsos__exit(&machine
->dsos
);
181 machine__exit_vdso(machine
);
182 zfree(&machine
->root_dir
);
183 zfree(&machine
->current_tid
);
185 for (i
= 0; i
< THREADS__TABLE_SIZE
; i
++) {
186 struct threads
*threads
= &machine
->threads
[i
];
187 exit_rwsem(&threads
->lock
);
191 void machine__delete(struct machine
*machine
)
194 machine__exit(machine
);
199 void machines__init(struct machines
*machines
)
201 machine__init(&machines
->host
, "", HOST_KERNEL_ID
);
202 machines
->guests
= RB_ROOT
;
205 void machines__exit(struct machines
*machines
)
207 machine__exit(&machines
->host
);
211 struct machine
*machines__add(struct machines
*machines
, pid_t pid
,
212 const char *root_dir
)
214 struct rb_node
**p
= &machines
->guests
.rb_node
;
215 struct rb_node
*parent
= NULL
;
216 struct machine
*pos
, *machine
= malloc(sizeof(*machine
));
221 if (machine__init(machine
, root_dir
, pid
) != 0) {
228 pos
= rb_entry(parent
, struct machine
, rb_node
);
235 rb_link_node(&machine
->rb_node
, parent
, p
);
236 rb_insert_color(&machine
->rb_node
, &machines
->guests
);
241 void machines__set_comm_exec(struct machines
*machines
, bool comm_exec
)
245 machines
->host
.comm_exec
= comm_exec
;
247 for (nd
= rb_first(&machines
->guests
); nd
; nd
= rb_next(nd
)) {
248 struct machine
*machine
= rb_entry(nd
, struct machine
, rb_node
);
250 machine
->comm_exec
= comm_exec
;
254 struct machine
*machines__find(struct machines
*machines
, pid_t pid
)
256 struct rb_node
**p
= &machines
->guests
.rb_node
;
257 struct rb_node
*parent
= NULL
;
258 struct machine
*machine
;
259 struct machine
*default_machine
= NULL
;
261 if (pid
== HOST_KERNEL_ID
)
262 return &machines
->host
;
266 machine
= rb_entry(parent
, struct machine
, rb_node
);
267 if (pid
< machine
->pid
)
269 else if (pid
> machine
->pid
)
274 default_machine
= machine
;
277 return default_machine
;
280 struct machine
*machines__findnew(struct machines
*machines
, pid_t pid
)
283 const char *root_dir
= "";
284 struct machine
*machine
= machines__find(machines
, pid
);
286 if (machine
&& (machine
->pid
== pid
))
289 if ((pid
!= HOST_KERNEL_ID
) &&
290 (pid
!= DEFAULT_GUEST_KERNEL_ID
) &&
291 (symbol_conf
.guestmount
)) {
292 sprintf(path
, "%s/%d", symbol_conf
.guestmount
, pid
);
293 if (access(path
, R_OK
)) {
294 static struct strlist
*seen
;
297 seen
= strlist__new(NULL
, NULL
);
299 if (!strlist__has_entry(seen
, path
)) {
300 pr_err("Can't access file %s\n", path
);
301 strlist__add(seen
, path
);
309 machine
= machines__add(machines
, pid
, root_dir
);
314 void machines__process_guests(struct machines
*machines
,
315 machine__process_t process
, void *data
)
319 for (nd
= rb_first(&machines
->guests
); nd
; nd
= rb_next(nd
)) {
320 struct machine
*pos
= rb_entry(nd
, struct machine
, rb_node
);
325 char *machine__mmap_name(struct machine
*machine
, char *bf
, size_t size
)
327 if (machine__is_host(machine
))
328 snprintf(bf
, size
, "[%s]", "kernel.kallsyms");
329 else if (machine__is_default_guest(machine
))
330 snprintf(bf
, size
, "[%s]", "guest.kernel.kallsyms");
332 snprintf(bf
, size
, "[%s.%d]", "guest.kernel.kallsyms",
339 void machines__set_id_hdr_size(struct machines
*machines
, u16 id_hdr_size
)
341 struct rb_node
*node
;
342 struct machine
*machine
;
344 machines
->host
.id_hdr_size
= id_hdr_size
;
346 for (node
= rb_first(&machines
->guests
); node
; node
= rb_next(node
)) {
347 machine
= rb_entry(node
, struct machine
, rb_node
);
348 machine
->id_hdr_size
= id_hdr_size
;
354 static void machine__update_thread_pid(struct machine
*machine
,
355 struct thread
*th
, pid_t pid
)
357 struct thread
*leader
;
359 if (pid
== th
->pid_
|| pid
== -1 || th
->pid_
!= -1)
364 if (th
->pid_
== th
->tid
)
367 leader
= __machine__findnew_thread(machine
, th
->pid_
, th
->pid_
);
372 leader
->mg
= map_groups__new(machine
);
377 if (th
->mg
== leader
->mg
)
382 * Maps are created from MMAP events which provide the pid and
383 * tid. Consequently there never should be any maps on a thread
384 * with an unknown pid. Just print an error if there are.
386 if (!map_groups__empty(th
->mg
))
387 pr_err("Discarding thread maps for %d:%d\n",
389 map_groups__put(th
->mg
);
392 th
->mg
= map_groups__get(leader
->mg
);
397 pr_err("Failed to join map groups for %d:%d\n", th
->pid_
, th
->tid
);
402 * Caller must eventually drop thread->refcnt returned with a successful
403 * lookup/new thread inserted.
405 static struct thread
*____machine__findnew_thread(struct machine
*machine
,
406 struct threads
*threads
,
407 pid_t pid
, pid_t tid
,
410 struct rb_node
**p
= &threads
->entries
.rb_node
;
411 struct rb_node
*parent
= NULL
;
415 * Front-end cache - TID lookups come in blocks,
416 * so most of the time we dont have to look up
419 th
= threads
->last_match
;
421 if (th
->tid
== tid
) {
422 machine__update_thread_pid(machine
, th
, pid
);
423 return thread__get(th
);
426 threads
->last_match
= NULL
;
431 th
= rb_entry(parent
, struct thread
, rb_node
);
433 if (th
->tid
== tid
) {
434 threads
->last_match
= th
;
435 machine__update_thread_pid(machine
, th
, pid
);
436 return thread__get(th
);
448 th
= thread__new(pid
, tid
);
450 rb_link_node(&th
->rb_node
, parent
, p
);
451 rb_insert_color(&th
->rb_node
, &threads
->entries
);
454 * We have to initialize map_groups separately
455 * after rb tree is updated.
457 * The reason is that we call machine__findnew_thread
458 * within thread__init_map_groups to find the thread
459 * leader and that would screwed the rb tree.
461 if (thread__init_map_groups(th
, machine
)) {
462 rb_erase_init(&th
->rb_node
, &threads
->entries
);
463 RB_CLEAR_NODE(&th
->rb_node
);
468 * It is now in the rbtree, get a ref
471 threads
->last_match
= th
;
478 struct thread
*__machine__findnew_thread(struct machine
*machine
, pid_t pid
, pid_t tid
)
480 return ____machine__findnew_thread(machine
, machine__threads(machine
, tid
), pid
, tid
, true);
483 struct thread
*machine__findnew_thread(struct machine
*machine
, pid_t pid
,
486 struct threads
*threads
= machine__threads(machine
, tid
);
489 down_write(&threads
->lock
);
490 th
= __machine__findnew_thread(machine
, pid
, tid
);
491 up_write(&threads
->lock
);
495 struct thread
*machine__find_thread(struct machine
*machine
, pid_t pid
,
498 struct threads
*threads
= machine__threads(machine
, tid
);
501 down_read(&threads
->lock
);
502 th
= ____machine__findnew_thread(machine
, threads
, pid
, tid
, false);
503 up_read(&threads
->lock
);
507 struct comm
*machine__thread_exec_comm(struct machine
*machine
,
508 struct thread
*thread
)
510 if (machine
->comm_exec
)
511 return thread__exec_comm(thread
);
513 return thread__comm(thread
);
516 int machine__process_comm_event(struct machine
*machine
, union perf_event
*event
,
517 struct perf_sample
*sample
)
519 struct thread
*thread
= machine__findnew_thread(machine
,
522 bool exec
= event
->header
.misc
& PERF_RECORD_MISC_COMM_EXEC
;
526 machine
->comm_exec
= true;
529 perf_event__fprintf_comm(event
, stdout
);
531 if (thread
== NULL
||
532 __thread__set_comm(thread
, event
->comm
.comm
, sample
->time
, exec
)) {
533 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
542 int machine__process_namespaces_event(struct machine
*machine __maybe_unused
,
543 union perf_event
*event
,
544 struct perf_sample
*sample __maybe_unused
)
546 struct thread
*thread
= machine__findnew_thread(machine
,
547 event
->namespaces
.pid
,
548 event
->namespaces
.tid
);
551 WARN_ONCE(event
->namespaces
.nr_namespaces
> NR_NAMESPACES
,
552 "\nWARNING: kernel seems to support more namespaces than perf"
553 " tool.\nTry updating the perf tool..\n\n");
555 WARN_ONCE(event
->namespaces
.nr_namespaces
< NR_NAMESPACES
,
556 "\nWARNING: perf tool seems to support more namespaces than"
557 " the kernel.\nTry updating the kernel..\n\n");
560 perf_event__fprintf_namespaces(event
, stdout
);
562 if (thread
== NULL
||
563 thread__set_namespaces(thread
, sample
->time
, &event
->namespaces
)) {
564 dump_printf("problem processing PERF_RECORD_NAMESPACES, skipping event.\n");
573 int machine__process_lost_event(struct machine
*machine __maybe_unused
,
574 union perf_event
*event
, struct perf_sample
*sample __maybe_unused
)
576 dump_printf(": id:%" PRIu64
": lost:%" PRIu64
"\n",
577 event
->lost
.id
, event
->lost
.lost
);
581 int machine__process_lost_samples_event(struct machine
*machine __maybe_unused
,
582 union perf_event
*event
, struct perf_sample
*sample
)
584 dump_printf(": id:%" PRIu64
": lost samples :%" PRIu64
"\n",
585 sample
->id
, event
->lost_samples
.lost
);
589 static struct dso
*machine__findnew_module_dso(struct machine
*machine
,
591 const char *filename
)
595 down_write(&machine
->dsos
.lock
);
597 dso
= __dsos__find(&machine
->dsos
, m
->name
, true);
599 dso
= __dsos__addnew(&machine
->dsos
, m
->name
);
603 dso__set_module_info(dso
, m
, machine
);
604 dso__set_long_name(dso
, strdup(filename
), true);
609 up_write(&machine
->dsos
.lock
);
613 int machine__process_aux_event(struct machine
*machine __maybe_unused
,
614 union perf_event
*event
)
617 perf_event__fprintf_aux(event
, stdout
);
621 int machine__process_itrace_start_event(struct machine
*machine __maybe_unused
,
622 union perf_event
*event
)
625 perf_event__fprintf_itrace_start(event
, stdout
);
629 int machine__process_switch_event(struct machine
*machine __maybe_unused
,
630 union perf_event
*event
)
633 perf_event__fprintf_switch(event
, stdout
);
637 static void dso__adjust_kmod_long_name(struct dso
*dso
, const char *filename
)
639 const char *dup_filename
;
641 if (!filename
|| !dso
|| !dso
->long_name
)
643 if (dso
->long_name
[0] != '[')
645 if (!strchr(filename
, '/'))
648 dup_filename
= strdup(filename
);
652 dso__set_long_name(dso
, dup_filename
, true);
655 struct map
*machine__findnew_module_map(struct machine
*machine
, u64 start
,
656 const char *filename
)
658 struct map
*map
= NULL
;
659 struct dso
*dso
= NULL
;
662 if (kmod_path__parse_name(&m
, filename
))
665 map
= map_groups__find_by_name(&machine
->kmaps
, MAP__FUNCTION
,
669 * If the map's dso is an offline module, give dso__load()
670 * a chance to find the file path of that module by fixing
673 dso__adjust_kmod_long_name(map
->dso
, filename
);
677 dso
= machine__findnew_module_dso(machine
, &m
, filename
);
681 map
= map__new2(start
, dso
, MAP__FUNCTION
);
685 map_groups__insert(&machine
->kmaps
, map
);
687 /* Put the map here because map_groups__insert alread got it */
690 /* put the dso here, corresponding to machine__findnew_module_dso */
696 size_t machines__fprintf_dsos(struct machines
*machines
, FILE *fp
)
699 size_t ret
= __dsos__fprintf(&machines
->host
.dsos
.head
, fp
);
701 for (nd
= rb_first(&machines
->guests
); nd
; nd
= rb_next(nd
)) {
702 struct machine
*pos
= rb_entry(nd
, struct machine
, rb_node
);
703 ret
+= __dsos__fprintf(&pos
->dsos
.head
, fp
);
709 size_t machine__fprintf_dsos_buildid(struct machine
*m
, FILE *fp
,
710 bool (skip
)(struct dso
*dso
, int parm
), int parm
)
712 return __dsos__fprintf_buildid(&m
->dsos
.head
, fp
, skip
, parm
);
715 size_t machines__fprintf_dsos_buildid(struct machines
*machines
, FILE *fp
,
716 bool (skip
)(struct dso
*dso
, int parm
), int parm
)
719 size_t ret
= machine__fprintf_dsos_buildid(&machines
->host
, fp
, skip
, parm
);
721 for (nd
= rb_first(&machines
->guests
); nd
; nd
= rb_next(nd
)) {
722 struct machine
*pos
= rb_entry(nd
, struct machine
, rb_node
);
723 ret
+= machine__fprintf_dsos_buildid(pos
, fp
, skip
, parm
);
728 size_t machine__fprintf_vmlinux_path(struct machine
*machine
, FILE *fp
)
732 struct dso
*kdso
= machine__kernel_map(machine
)->dso
;
734 if (kdso
->has_build_id
) {
735 char filename
[PATH_MAX
];
736 if (dso__build_id_filename(kdso
, filename
, sizeof(filename
),
738 printed
+= fprintf(fp
, "[0] %s\n", filename
);
741 for (i
= 0; i
< vmlinux_path__nr_entries
; ++i
)
742 printed
+= fprintf(fp
, "[%d] %s\n",
743 i
+ kdso
->has_build_id
, vmlinux_path
[i
]);
748 size_t machine__fprintf(struct machine
*machine
, FILE *fp
)
754 for (i
= 0; i
< THREADS__TABLE_SIZE
; i
++) {
755 struct threads
*threads
= &machine
->threads
[i
];
757 down_read(&threads
->lock
);
759 ret
= fprintf(fp
, "Threads: %u\n", threads
->nr
);
761 for (nd
= rb_first(&threads
->entries
); nd
; nd
= rb_next(nd
)) {
762 struct thread
*pos
= rb_entry(nd
, struct thread
, rb_node
);
764 ret
+= thread__fprintf(pos
, fp
);
767 up_read(&threads
->lock
);
772 static struct dso
*machine__get_kernel(struct machine
*machine
)
774 const char *vmlinux_name
= NULL
;
777 if (machine__is_host(machine
)) {
778 vmlinux_name
= symbol_conf
.vmlinux_name
;
780 vmlinux_name
= DSO__NAME_KALLSYMS
;
782 kernel
= machine__findnew_kernel(machine
, vmlinux_name
,
783 "[kernel]", DSO_TYPE_KERNEL
);
787 if (machine__is_default_guest(machine
))
788 vmlinux_name
= symbol_conf
.default_guest_vmlinux_name
;
790 vmlinux_name
= machine__mmap_name(machine
, bf
,
793 kernel
= machine__findnew_kernel(machine
, vmlinux_name
,
795 DSO_TYPE_GUEST_KERNEL
);
798 if (kernel
!= NULL
&& (!kernel
->has_build_id
))
799 dso__read_running_kernel_build_id(kernel
, machine
);
804 struct process_args
{
808 static void machine__get_kallsyms_filename(struct machine
*machine
, char *buf
,
811 if (machine__is_default_guest(machine
))
812 scnprintf(buf
, bufsz
, "%s", symbol_conf
.default_guest_kallsyms
);
814 scnprintf(buf
, bufsz
, "%s/proc/kallsyms", machine
->root_dir
);
817 const char *ref_reloc_sym_names
[] = {"_text", "_stext", NULL
};
819 /* Figure out the start address of kernel map from /proc/kallsyms.
820 * Returns the name of the start symbol in *symbol_name. Pass in NULL as
821 * symbol_name if it's not that important.
823 static int machine__get_running_kernel_start(struct machine
*machine
,
824 const char **symbol_name
, u64
*start
)
826 char filename
[PATH_MAX
];
831 machine__get_kallsyms_filename(machine
, filename
, PATH_MAX
);
833 if (symbol__restricted_filename(filename
, "/proc/kallsyms"))
836 for (i
= 0; (name
= ref_reloc_sym_names
[i
]) != NULL
; i
++) {
837 err
= kallsyms__get_function_start(filename
, name
, &addr
);
852 int __machine__create_kernel_maps(struct machine
*machine
, struct dso
*kernel
)
857 if (machine__get_running_kernel_start(machine
, NULL
, &start
))
860 /* In case of renewal the kernel map, destroy previous one */
861 machine__destroy_kernel_maps(machine
);
863 for (type
= 0; type
< MAP__NR_TYPES
; ++type
) {
867 machine
->vmlinux_maps
[type
] = map__new2(start
, kernel
, type
);
868 if (machine
->vmlinux_maps
[type
] == NULL
)
871 machine
->vmlinux_maps
[type
]->map_ip
=
872 machine
->vmlinux_maps
[type
]->unmap_ip
=
874 map
= __machine__kernel_map(machine
, type
);
875 kmap
= map__kmap(map
);
879 kmap
->kmaps
= &machine
->kmaps
;
880 map_groups__insert(&machine
->kmaps
, map
);
886 void machine__destroy_kernel_maps(struct machine
*machine
)
890 for (type
= 0; type
< MAP__NR_TYPES
; ++type
) {
892 struct map
*map
= __machine__kernel_map(machine
, type
);
897 kmap
= map__kmap(map
);
898 map_groups__remove(&machine
->kmaps
, map
);
899 if (kmap
&& kmap
->ref_reloc_sym
) {
901 * ref_reloc_sym is shared among all maps, so free just
904 if (type
== MAP__FUNCTION
) {
905 zfree((char **)&kmap
->ref_reloc_sym
->name
);
906 zfree(&kmap
->ref_reloc_sym
);
908 kmap
->ref_reloc_sym
= NULL
;
911 map__put(machine
->vmlinux_maps
[type
]);
912 machine
->vmlinux_maps
[type
] = NULL
;
916 int machines__create_guest_kernel_maps(struct machines
*machines
)
919 struct dirent
**namelist
= NULL
;
925 if (symbol_conf
.default_guest_vmlinux_name
||
926 symbol_conf
.default_guest_modules
||
927 symbol_conf
.default_guest_kallsyms
) {
928 machines__create_kernel_maps(machines
, DEFAULT_GUEST_KERNEL_ID
);
931 if (symbol_conf
.guestmount
) {
932 items
= scandir(symbol_conf
.guestmount
, &namelist
, NULL
, NULL
);
935 for (i
= 0; i
< items
; i
++) {
936 if (!isdigit(namelist
[i
]->d_name
[0])) {
937 /* Filter out . and .. */
940 pid
= (pid_t
)strtol(namelist
[i
]->d_name
, &endp
, 10);
941 if ((*endp
!= '\0') ||
942 (endp
== namelist
[i
]->d_name
) ||
944 pr_debug("invalid directory (%s). Skipping.\n",
945 namelist
[i
]->d_name
);
948 sprintf(path
, "%s/%s/proc/kallsyms",
949 symbol_conf
.guestmount
,
950 namelist
[i
]->d_name
);
951 ret
= access(path
, R_OK
);
953 pr_debug("Can't access file %s\n", path
);
956 machines__create_kernel_maps(machines
, pid
);
965 void machines__destroy_kernel_maps(struct machines
*machines
)
967 struct rb_node
*next
= rb_first(&machines
->guests
);
969 machine__destroy_kernel_maps(&machines
->host
);
972 struct machine
*pos
= rb_entry(next
, struct machine
, rb_node
);
974 next
= rb_next(&pos
->rb_node
);
975 rb_erase(&pos
->rb_node
, &machines
->guests
);
976 machine__delete(pos
);
980 int machines__create_kernel_maps(struct machines
*machines
, pid_t pid
)
982 struct machine
*machine
= machines__findnew(machines
, pid
);
987 return machine__create_kernel_maps(machine
);
990 int __machine__load_kallsyms(struct machine
*machine
, const char *filename
,
991 enum map_type type
, bool no_kcore
)
993 struct map
*map
= machine__kernel_map(machine
);
994 int ret
= __dso__load_kallsyms(map
->dso
, filename
, map
, no_kcore
);
997 dso__set_loaded(map
->dso
, type
);
999 * Since /proc/kallsyms will have multiple sessions for the
1000 * kernel, with modules between them, fixup the end of all
1003 __map_groups__fixup_end(&machine
->kmaps
, type
);
1009 int machine__load_kallsyms(struct machine
*machine
, const char *filename
,
1012 return __machine__load_kallsyms(machine
, filename
, type
, false);
1015 int machine__load_vmlinux_path(struct machine
*machine
, enum map_type type
)
1017 struct map
*map
= machine__kernel_map(machine
);
1018 int ret
= dso__load_vmlinux_path(map
->dso
, map
);
1021 dso__set_loaded(map
->dso
, type
);
1026 static void map_groups__fixup_end(struct map_groups
*mg
)
1029 for (i
= 0; i
< MAP__NR_TYPES
; ++i
)
1030 __map_groups__fixup_end(mg
, i
);
1033 static char *get_kernel_version(const char *root_dir
)
1035 char version
[PATH_MAX
];
1038 const char *prefix
= "Linux version ";
1040 sprintf(version
, "%s/proc/version", root_dir
);
1041 file
= fopen(version
, "r");
1046 tmp
= fgets(version
, sizeof(version
), file
);
1049 name
= strstr(version
, prefix
);
1052 name
+= strlen(prefix
);
1053 tmp
= strchr(name
, ' ');
1057 return strdup(name
);
1060 static bool is_kmod_dso(struct dso
*dso
)
1062 return dso
->symtab_type
== DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE
||
1063 dso
->symtab_type
== DSO_BINARY_TYPE__GUEST_KMODULE
;
1066 static int map_groups__set_module_path(struct map_groups
*mg
, const char *path
,
1067 struct kmod_path
*m
)
1072 map
= map_groups__find_by_name(mg
, MAP__FUNCTION
, m
->name
);
1076 long_name
= strdup(path
);
1077 if (long_name
== NULL
)
1080 dso__set_long_name(map
->dso
, long_name
, true);
1081 dso__kernel_module_get_build_id(map
->dso
, "");
1084 * Full name could reveal us kmod compression, so
1085 * we need to update the symtab_type if needed.
1087 if (m
->comp
&& is_kmod_dso(map
->dso
))
1088 map
->dso
->symtab_type
++;
1093 static int map_groups__set_modules_path_dir(struct map_groups
*mg
,
1094 const char *dir_name
, int depth
)
1096 struct dirent
*dent
;
1097 DIR *dir
= opendir(dir_name
);
1101 pr_debug("%s: cannot open %s dir\n", __func__
, dir_name
);
1105 while ((dent
= readdir(dir
)) != NULL
) {
1106 char path
[PATH_MAX
];
1109 /*sshfs might return bad dent->d_type, so we have to stat*/
1110 snprintf(path
, sizeof(path
), "%s/%s", dir_name
, dent
->d_name
);
1111 if (stat(path
, &st
))
1114 if (S_ISDIR(st
.st_mode
)) {
1115 if (!strcmp(dent
->d_name
, ".") ||
1116 !strcmp(dent
->d_name
, ".."))
1119 /* Do not follow top-level source and build symlinks */
1121 if (!strcmp(dent
->d_name
, "source") ||
1122 !strcmp(dent
->d_name
, "build"))
1126 ret
= map_groups__set_modules_path_dir(mg
, path
,
1133 ret
= kmod_path__parse_name(&m
, dent
->d_name
);
1138 ret
= map_groups__set_module_path(mg
, path
, &m
);
1152 static int machine__set_modules_path(struct machine
*machine
)
1155 char modules_path
[PATH_MAX
];
1157 version
= get_kernel_version(machine
->root_dir
);
1161 snprintf(modules_path
, sizeof(modules_path
), "%s/lib/modules/%s",
1162 machine
->root_dir
, version
);
1165 return map_groups__set_modules_path_dir(&machine
->kmaps
, modules_path
, 0);
1167 int __weak
arch__fix_module_text_start(u64
*start __maybe_unused
,
1168 const char *name __maybe_unused
)
1173 static int machine__create_module(void *arg
, const char *name
, u64 start
,
1176 struct machine
*machine
= arg
;
1179 if (arch__fix_module_text_start(&start
, name
) < 0)
1182 map
= machine__findnew_module_map(machine
, start
, name
);
1185 map
->end
= start
+ size
;
1187 dso__kernel_module_get_build_id(map
->dso
, machine
->root_dir
);
1192 static int machine__create_modules(struct machine
*machine
)
1194 const char *modules
;
1195 char path
[PATH_MAX
];
1197 if (machine__is_default_guest(machine
)) {
1198 modules
= symbol_conf
.default_guest_modules
;
1200 snprintf(path
, PATH_MAX
, "%s/proc/modules", machine
->root_dir
);
1204 if (symbol__restricted_filename(modules
, "/proc/modules"))
1207 if (modules__parse(modules
, machine
, machine__create_module
))
1210 if (!machine__set_modules_path(machine
))
1213 pr_debug("Problems setting modules path maps, continuing anyway...\n");
1218 int machine__create_kernel_maps(struct machine
*machine
)
1220 struct dso
*kernel
= machine__get_kernel(machine
);
1221 const char *name
= NULL
;
1228 ret
= __machine__create_kernel_maps(machine
, kernel
);
1233 if (symbol_conf
.use_modules
&& machine__create_modules(machine
) < 0) {
1234 if (machine__is_host(machine
))
1235 pr_debug("Problems creating module maps, "
1236 "continuing anyway...\n");
1238 pr_debug("Problems creating module maps for guest %d, "
1239 "continuing anyway...\n", machine
->pid
);
1243 * Now that we have all the maps created, just set the ->end of them:
1245 map_groups__fixup_end(&machine
->kmaps
);
1247 if (!machine__get_running_kernel_start(machine
, &name
, &addr
)) {
1249 maps__set_kallsyms_ref_reloc_sym(machine
->vmlinux_maps
, name
, addr
)) {
1250 machine__destroy_kernel_maps(machine
);
1258 static void machine__set_kernel_mmap_len(struct machine
*machine
,
1259 union perf_event
*event
)
1263 for (i
= 0; i
< MAP__NR_TYPES
; i
++) {
1264 machine
->vmlinux_maps
[i
]->start
= event
->mmap
.start
;
1265 machine
->vmlinux_maps
[i
]->end
= (event
->mmap
.start
+
1268 * Be a bit paranoid here, some perf.data file came with
1269 * a zero sized synthesized MMAP event for the kernel.
1271 if (machine
->vmlinux_maps
[i
]->end
== 0)
1272 machine
->vmlinux_maps
[i
]->end
= ~0ULL;
1276 static bool machine__uses_kcore(struct machine
*machine
)
1280 list_for_each_entry(dso
, &machine
->dsos
.head
, node
) {
1281 if (dso__is_kcore(dso
))
1288 static int machine__process_kernel_mmap_event(struct machine
*machine
,
1289 union perf_event
*event
)
1292 char kmmap_prefix
[PATH_MAX
];
1293 enum dso_kernel_type kernel_type
;
1294 bool is_kernel_mmap
;
1296 /* If we have maps from kcore then we do not need or want any others */
1297 if (machine__uses_kcore(machine
))
1300 machine__mmap_name(machine
, kmmap_prefix
, sizeof(kmmap_prefix
));
1301 if (machine__is_host(machine
))
1302 kernel_type
= DSO_TYPE_KERNEL
;
1304 kernel_type
= DSO_TYPE_GUEST_KERNEL
;
1306 is_kernel_mmap
= memcmp(event
->mmap
.filename
,
1308 strlen(kmmap_prefix
) - 1) == 0;
1309 if (event
->mmap
.filename
[0] == '/' ||
1310 (!is_kernel_mmap
&& event
->mmap
.filename
[0] == '[')) {
1311 map
= machine__findnew_module_map(machine
, event
->mmap
.start
,
1312 event
->mmap
.filename
);
1316 map
->end
= map
->start
+ event
->mmap
.len
;
1317 } else if (is_kernel_mmap
) {
1318 const char *symbol_name
= (event
->mmap
.filename
+
1319 strlen(kmmap_prefix
));
1321 * Should be there already, from the build-id table in
1324 struct dso
*kernel
= NULL
;
1327 down_read(&machine
->dsos
.lock
);
1329 list_for_each_entry(dso
, &machine
->dsos
.head
, node
) {
1332 * The cpumode passed to is_kernel_module is not the
1333 * cpumode of *this* event. If we insist on passing
1334 * correct cpumode to is_kernel_module, we should
1335 * record the cpumode when we adding this dso to the
1338 * However we don't really need passing correct
1339 * cpumode. We know the correct cpumode must be kernel
1340 * mode (if not, we should not link it onto kernel_dsos
1343 * Therefore, we pass PERF_RECORD_MISC_CPUMODE_UNKNOWN.
1344 * is_kernel_module() treats it as a kernel cpumode.
1348 is_kernel_module(dso
->long_name
,
1349 PERF_RECORD_MISC_CPUMODE_UNKNOWN
))
1357 up_read(&machine
->dsos
.lock
);
1360 kernel
= machine__findnew_dso(machine
, kmmap_prefix
);
1364 kernel
->kernel
= kernel_type
;
1365 if (__machine__create_kernel_maps(machine
, kernel
) < 0) {
1370 if (strstr(kernel
->long_name
, "vmlinux"))
1371 dso__set_short_name(kernel
, "[kernel.vmlinux]", false);
1373 machine__set_kernel_mmap_len(machine
, event
);
1376 * Avoid using a zero address (kptr_restrict) for the ref reloc
1377 * symbol. Effectively having zero here means that at record
1378 * time /proc/sys/kernel/kptr_restrict was non zero.
1380 if (event
->mmap
.pgoff
!= 0) {
1381 maps__set_kallsyms_ref_reloc_sym(machine
->vmlinux_maps
,
1386 if (machine__is_default_guest(machine
)) {
1388 * preload dso of guest kernel and modules
1390 dso__load(kernel
, machine__kernel_map(machine
));
1398 int machine__process_mmap2_event(struct machine
*machine
,
1399 union perf_event
*event
,
1400 struct perf_sample
*sample
)
1402 struct thread
*thread
;
1408 perf_event__fprintf_mmap2(event
, stdout
);
1410 if (sample
->cpumode
== PERF_RECORD_MISC_GUEST_KERNEL
||
1411 sample
->cpumode
== PERF_RECORD_MISC_KERNEL
) {
1412 ret
= machine__process_kernel_mmap_event(machine
, event
);
1418 thread
= machine__findnew_thread(machine
, event
->mmap2
.pid
,
1423 if (event
->header
.misc
& PERF_RECORD_MISC_MMAP_DATA
)
1424 type
= MAP__VARIABLE
;
1426 type
= MAP__FUNCTION
;
1428 map
= map__new(machine
, event
->mmap2
.start
,
1429 event
->mmap2
.len
, event
->mmap2
.pgoff
,
1431 event
->mmap2
.min
, event
->mmap2
.ino
,
1432 event
->mmap2
.ino_generation
,
1435 event
->mmap2
.filename
, type
, thread
);
1438 goto out_problem_map
;
1440 ret
= thread__insert_map(thread
, map
);
1442 goto out_problem_insert
;
1444 thread__put(thread
);
1451 thread__put(thread
);
1453 dump_printf("problem processing PERF_RECORD_MMAP2, skipping event.\n");
1457 int machine__process_mmap_event(struct machine
*machine
, union perf_event
*event
,
1458 struct perf_sample
*sample
)
1460 struct thread
*thread
;
1466 perf_event__fprintf_mmap(event
, stdout
);
1468 if (sample
->cpumode
== PERF_RECORD_MISC_GUEST_KERNEL
||
1469 sample
->cpumode
== PERF_RECORD_MISC_KERNEL
) {
1470 ret
= machine__process_kernel_mmap_event(machine
, event
);
1476 thread
= machine__findnew_thread(machine
, event
->mmap
.pid
,
1481 if (event
->header
.misc
& PERF_RECORD_MISC_MMAP_DATA
)
1482 type
= MAP__VARIABLE
;
1484 type
= MAP__FUNCTION
;
1486 map
= map__new(machine
, event
->mmap
.start
,
1487 event
->mmap
.len
, event
->mmap
.pgoff
,
1489 event
->mmap
.filename
,
1493 goto out_problem_map
;
1495 ret
= thread__insert_map(thread
, map
);
1497 goto out_problem_insert
;
1499 thread__put(thread
);
1506 thread__put(thread
);
1508 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
1512 static void __machine__remove_thread(struct machine
*machine
, struct thread
*th
, bool lock
)
1514 struct threads
*threads
= machine__threads(machine
, th
->tid
);
1516 if (threads
->last_match
== th
)
1517 threads
->last_match
= NULL
;
1519 BUG_ON(refcount_read(&th
->refcnt
) == 0);
1521 down_write(&threads
->lock
);
1522 rb_erase_init(&th
->rb_node
, &threads
->entries
);
1523 RB_CLEAR_NODE(&th
->rb_node
);
1526 * Move it first to the dead_threads list, then drop the reference,
1527 * if this is the last reference, then the thread__delete destructor
1528 * will be called and we will remove it from the dead_threads list.
1530 list_add_tail(&th
->node
, &threads
->dead
);
1532 up_write(&threads
->lock
);
1536 void machine__remove_thread(struct machine
*machine
, struct thread
*th
)
1538 return __machine__remove_thread(machine
, th
, true);
1541 int machine__process_fork_event(struct machine
*machine
, union perf_event
*event
,
1542 struct perf_sample
*sample
)
1544 struct thread
*thread
= machine__find_thread(machine
,
1547 struct thread
*parent
= machine__findnew_thread(machine
,
1553 perf_event__fprintf_task(event
, stdout
);
1556 * There may be an existing thread that is not actually the parent,
1557 * either because we are processing events out of order, or because the
1558 * (fork) event that would have removed the thread was lost. Assume the
1559 * latter case and continue on as best we can.
1561 if (parent
->pid_
!= (pid_t
)event
->fork
.ppid
) {
1562 dump_printf("removing erroneous parent thread %d/%d\n",
1563 parent
->pid_
, parent
->tid
);
1564 machine__remove_thread(machine
, parent
);
1565 thread__put(parent
);
1566 parent
= machine__findnew_thread(machine
, event
->fork
.ppid
,
1570 /* if a thread currently exists for the thread id remove it */
1571 if (thread
!= NULL
) {
1572 machine__remove_thread(machine
, thread
);
1573 thread__put(thread
);
1576 thread
= machine__findnew_thread(machine
, event
->fork
.pid
,
1579 if (thread
== NULL
|| parent
== NULL
||
1580 thread__fork(thread
, parent
, sample
->time
) < 0) {
1581 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
1584 thread__put(thread
);
1585 thread__put(parent
);
1590 int machine__process_exit_event(struct machine
*machine
, union perf_event
*event
,
1591 struct perf_sample
*sample __maybe_unused
)
1593 struct thread
*thread
= machine__find_thread(machine
,
1598 perf_event__fprintf_task(event
, stdout
);
1600 if (thread
!= NULL
) {
1601 thread__exited(thread
);
1602 thread__put(thread
);
1608 int machine__process_event(struct machine
*machine
, union perf_event
*event
,
1609 struct perf_sample
*sample
)
1613 switch (event
->header
.type
) {
1614 case PERF_RECORD_COMM
:
1615 ret
= machine__process_comm_event(machine
, event
, sample
); break;
1616 case PERF_RECORD_MMAP
:
1617 ret
= machine__process_mmap_event(machine
, event
, sample
); break;
1618 case PERF_RECORD_NAMESPACES
:
1619 ret
= machine__process_namespaces_event(machine
, event
, sample
); break;
1620 case PERF_RECORD_MMAP2
:
1621 ret
= machine__process_mmap2_event(machine
, event
, sample
); break;
1622 case PERF_RECORD_FORK
:
1623 ret
= machine__process_fork_event(machine
, event
, sample
); break;
1624 case PERF_RECORD_EXIT
:
1625 ret
= machine__process_exit_event(machine
, event
, sample
); break;
1626 case PERF_RECORD_LOST
:
1627 ret
= machine__process_lost_event(machine
, event
, sample
); break;
1628 case PERF_RECORD_AUX
:
1629 ret
= machine__process_aux_event(machine
, event
); break;
1630 case PERF_RECORD_ITRACE_START
:
1631 ret
= machine__process_itrace_start_event(machine
, event
); break;
1632 case PERF_RECORD_LOST_SAMPLES
:
1633 ret
= machine__process_lost_samples_event(machine
, event
, sample
); break;
1634 case PERF_RECORD_SWITCH
:
1635 case PERF_RECORD_SWITCH_CPU_WIDE
:
1636 ret
= machine__process_switch_event(machine
, event
); break;
1645 static bool symbol__match_regex(struct symbol
*sym
, regex_t
*regex
)
1647 if (!regexec(regex
, sym
->name
, 0, NULL
, 0))
1652 static void ip__resolve_ams(struct thread
*thread
,
1653 struct addr_map_symbol
*ams
,
1656 struct addr_location al
;
1658 memset(&al
, 0, sizeof(al
));
1660 * We cannot use the header.misc hint to determine whether a
1661 * branch stack address is user, kernel, guest, hypervisor.
1662 * Branches may straddle the kernel/user/hypervisor boundaries.
1663 * Thus, we have to try consecutively until we find a match
1664 * or else, the symbol is unknown
1666 thread__find_cpumode_addr_location(thread
, MAP__FUNCTION
, ip
, &al
);
1669 ams
->al_addr
= al
.addr
;
1675 static void ip__resolve_data(struct thread
*thread
,
1676 u8 m
, struct addr_map_symbol
*ams
,
1677 u64 addr
, u64 phys_addr
)
1679 struct addr_location al
;
1681 memset(&al
, 0, sizeof(al
));
1683 thread__find_addr_location(thread
, m
, MAP__VARIABLE
, addr
, &al
);
1684 if (al
.map
== NULL
) {
1686 * some shared data regions have execute bit set which puts
1687 * their mapping in the MAP__FUNCTION type array.
1688 * Check there as a fallback option before dropping the sample.
1690 thread__find_addr_location(thread
, m
, MAP__FUNCTION
, addr
, &al
);
1694 ams
->al_addr
= al
.addr
;
1697 ams
->phys_addr
= phys_addr
;
1700 struct mem_info
*sample__resolve_mem(struct perf_sample
*sample
,
1701 struct addr_location
*al
)
1703 struct mem_info
*mi
= zalloc(sizeof(*mi
));
1708 ip__resolve_ams(al
->thread
, &mi
->iaddr
, sample
->ip
);
1709 ip__resolve_data(al
->thread
, al
->cpumode
, &mi
->daddr
,
1710 sample
->addr
, sample
->phys_addr
);
1711 mi
->data_src
.val
= sample
->data_src
;
1716 static char *callchain_srcline(struct map
*map
, struct symbol
*sym
, u64 ip
)
1718 char *srcline
= NULL
;
1720 if (!map
|| callchain_param
.key
== CCKEY_FUNCTION
)
1723 srcline
= srcline__tree_find(&map
->dso
->srclines
, ip
);
1725 bool show_sym
= false;
1726 bool show_addr
= callchain_param
.key
== CCKEY_ADDRESS
;
1728 srcline
= get_srcline(map
->dso
, map__rip_2objdump(map
, ip
),
1729 sym
, show_sym
, show_addr
, ip
);
1730 srcline__tree_insert(&map
->dso
->srclines
, ip
, srcline
);
1741 static int add_callchain_ip(struct thread
*thread
,
1742 struct callchain_cursor
*cursor
,
1743 struct symbol
**parent
,
1744 struct addr_location
*root_al
,
1748 struct branch_flags
*flags
,
1749 struct iterations
*iter
,
1752 struct addr_location al
;
1753 int nr_loop_iter
= 0;
1754 u64 iter_cycles
= 0;
1755 const char *srcline
= NULL
;
1760 thread__find_cpumode_addr_location(thread
, MAP__FUNCTION
,
1763 if (ip
>= PERF_CONTEXT_MAX
) {
1765 case PERF_CONTEXT_HV
:
1766 *cpumode
= PERF_RECORD_MISC_HYPERVISOR
;
1768 case PERF_CONTEXT_KERNEL
:
1769 *cpumode
= PERF_RECORD_MISC_KERNEL
;
1771 case PERF_CONTEXT_USER
:
1772 *cpumode
= PERF_RECORD_MISC_USER
;
1775 pr_debug("invalid callchain context: "
1776 "%"PRId64
"\n", (s64
) ip
);
1778 * It seems the callchain is corrupted.
1781 callchain_cursor_reset(cursor
);
1786 thread__find_addr_location(thread
, *cpumode
, MAP__FUNCTION
,
1790 if (al
.sym
!= NULL
) {
1791 if (perf_hpp_list
.parent
&& !*parent
&&
1792 symbol__match_regex(al
.sym
, &parent_regex
))
1794 else if (have_ignore_callees
&& root_al
&&
1795 symbol__match_regex(al
.sym
, &ignore_callees_regex
)) {
1796 /* Treat this symbol as the root,
1797 forgetting its callees. */
1799 callchain_cursor_reset(cursor
);
1803 if (symbol_conf
.hide_unresolved
&& al
.sym
== NULL
)
1807 nr_loop_iter
= iter
->nr_loop_iter
;
1808 iter_cycles
= iter
->cycles
;
1811 srcline
= callchain_srcline(al
.map
, al
.sym
, al
.addr
);
1812 return callchain_cursor_append(cursor
, al
.addr
, al
.map
, al
.sym
,
1813 branch
, flags
, nr_loop_iter
,
1814 iter_cycles
, branch_from
, srcline
);
1817 struct branch_info
*sample__resolve_bstack(struct perf_sample
*sample
,
1818 struct addr_location
*al
)
1821 const struct branch_stack
*bs
= sample
->branch_stack
;
1822 struct branch_info
*bi
= calloc(bs
->nr
, sizeof(struct branch_info
));
1827 for (i
= 0; i
< bs
->nr
; i
++) {
1828 ip__resolve_ams(al
->thread
, &bi
[i
].to
, bs
->entries
[i
].to
);
1829 ip__resolve_ams(al
->thread
, &bi
[i
].from
, bs
->entries
[i
].from
);
1830 bi
[i
].flags
= bs
->entries
[i
].flags
;
1835 static void save_iterations(struct iterations
*iter
,
1836 struct branch_entry
*be
, int nr
)
1840 iter
->nr_loop_iter
= nr
;
1843 for (i
= 0; i
< nr
; i
++)
1844 iter
->cycles
+= be
[i
].flags
.cycles
;
1849 #define NO_ENTRY 0xff
1851 #define PERF_MAX_BRANCH_DEPTH 127
1854 static int remove_loops(struct branch_entry
*l
, int nr
,
1855 struct iterations
*iter
)
1858 unsigned char chash
[CHASHSZ
];
1860 memset(chash
, NO_ENTRY
, sizeof(chash
));
1862 BUG_ON(PERF_MAX_BRANCH_DEPTH
> 255);
1864 for (i
= 0; i
< nr
; i
++) {
1865 int h
= hash_64(l
[i
].from
, CHASHBITS
) % CHASHSZ
;
1867 /* no collision handling for now */
1868 if (chash
[h
] == NO_ENTRY
) {
1870 } else if (l
[chash
[h
]].from
== l
[i
].from
) {
1871 bool is_loop
= true;
1872 /* check if it is a real loop */
1874 for (j
= chash
[h
]; j
< i
&& i
+ off
< nr
; j
++, off
++)
1875 if (l
[j
].from
!= l
[i
+ off
].from
) {
1882 save_iterations(iter
+ i
+ off
,
1885 memmove(iter
+ i
, iter
+ i
+ off
,
1888 memmove(l
+ i
, l
+ i
+ off
,
1900 * Recolve LBR callstack chain sample
1902 * 1 on success get LBR callchain information
1903 * 0 no available LBR callchain information, should try fp
1904 * negative error code on other errors.
1906 static int resolve_lbr_callchain_sample(struct thread
*thread
,
1907 struct callchain_cursor
*cursor
,
1908 struct perf_sample
*sample
,
1909 struct symbol
**parent
,
1910 struct addr_location
*root_al
,
1913 struct ip_callchain
*chain
= sample
->callchain
;
1914 int chain_nr
= min(max_stack
, (int)chain
->nr
), i
;
1915 u8 cpumode
= PERF_RECORD_MISC_USER
;
1916 u64 ip
, branch_from
= 0;
1918 for (i
= 0; i
< chain_nr
; i
++) {
1919 if (chain
->ips
[i
] == PERF_CONTEXT_USER
)
1923 /* LBR only affects the user callchain */
1924 if (i
!= chain_nr
) {
1925 struct branch_stack
*lbr_stack
= sample
->branch_stack
;
1926 int lbr_nr
= lbr_stack
->nr
, j
, k
;
1928 struct branch_flags
*flags
;
1930 * LBR callstack can only get user call chain.
1931 * The mix_chain_nr is kernel call chain
1932 * number plus LBR user call chain number.
1933 * i is kernel call chain number,
1934 * 1 is PERF_CONTEXT_USER,
1935 * lbr_nr + 1 is the user call chain number.
1936 * For details, please refer to the comments
1937 * in callchain__printf
1939 int mix_chain_nr
= i
+ 1 + lbr_nr
+ 1;
1941 for (j
= 0; j
< mix_chain_nr
; j
++) {
1946 if (callchain_param
.order
== ORDER_CALLEE
) {
1949 else if (j
> i
+ 1) {
1951 ip
= lbr_stack
->entries
[k
].from
;
1953 flags
= &lbr_stack
->entries
[k
].flags
;
1955 ip
= lbr_stack
->entries
[0].to
;
1957 flags
= &lbr_stack
->entries
[0].flags
;
1959 lbr_stack
->entries
[0].from
;
1964 ip
= lbr_stack
->entries
[k
].from
;
1966 flags
= &lbr_stack
->entries
[k
].flags
;
1968 else if (j
> lbr_nr
)
1969 ip
= chain
->ips
[i
+ 1 - (j
- lbr_nr
)];
1971 ip
= lbr_stack
->entries
[0].to
;
1973 flags
= &lbr_stack
->entries
[0].flags
;
1975 lbr_stack
->entries
[0].from
;
1979 err
= add_callchain_ip(thread
, cursor
, parent
,
1980 root_al
, &cpumode
, ip
,
1981 branch
, flags
, NULL
,
1984 return (err
< 0) ? err
: 0;
1992 static int thread__resolve_callchain_sample(struct thread
*thread
,
1993 struct callchain_cursor
*cursor
,
1994 struct perf_evsel
*evsel
,
1995 struct perf_sample
*sample
,
1996 struct symbol
**parent
,
1997 struct addr_location
*root_al
,
2000 struct branch_stack
*branch
= sample
->branch_stack
;
2001 struct ip_callchain
*chain
= sample
->callchain
;
2003 u8 cpumode
= PERF_RECORD_MISC_USER
;
2004 int i
, j
, err
, nr_entries
;
2009 chain_nr
= chain
->nr
;
2011 if (perf_evsel__has_branch_callstack(evsel
)) {
2012 err
= resolve_lbr_callchain_sample(thread
, cursor
, sample
, parent
,
2013 root_al
, max_stack
);
2015 return (err
< 0) ? err
: 0;
2019 * Based on DWARF debug information, some architectures skip
2020 * a callchain entry saved by the kernel.
2022 skip_idx
= arch_skip_callchain_idx(thread
, chain
);
2025 * Add branches to call stack for easier browsing. This gives
2026 * more context for a sample than just the callers.
2028 * This uses individual histograms of paths compared to the
2029 * aggregated histograms the normal LBR mode uses.
2031 * Limitations for now:
2032 * - No extra filters
2033 * - No annotations (should annotate somehow)
2036 if (branch
&& callchain_param
.branch_callstack
) {
2037 int nr
= min(max_stack
, (int)branch
->nr
);
2038 struct branch_entry be
[nr
];
2039 struct iterations iter
[nr
];
2041 if (branch
->nr
> PERF_MAX_BRANCH_DEPTH
) {
2042 pr_warning("corrupted branch chain. skipping...\n");
2046 for (i
= 0; i
< nr
; i
++) {
2047 if (callchain_param
.order
== ORDER_CALLEE
) {
2048 be
[i
] = branch
->entries
[i
];
2054 * Check for overlap into the callchain.
2055 * The return address is one off compared to
2056 * the branch entry. To adjust for this
2057 * assume the calling instruction is not longer
2060 if (i
== skip_idx
||
2061 chain
->ips
[first_call
] >= PERF_CONTEXT_MAX
)
2063 else if (be
[i
].from
< chain
->ips
[first_call
] &&
2064 be
[i
].from
>= chain
->ips
[first_call
] - 8)
2067 be
[i
] = branch
->entries
[branch
->nr
- i
- 1];
2070 memset(iter
, 0, sizeof(struct iterations
) * nr
);
2071 nr
= remove_loops(be
, nr
, iter
);
2073 for (i
= 0; i
< nr
; i
++) {
2074 err
= add_callchain_ip(thread
, cursor
, parent
,
2081 err
= add_callchain_ip(thread
, cursor
, parent
, root_al
,
2098 for (i
= first_call
, nr_entries
= 0;
2099 i
< chain_nr
&& nr_entries
< max_stack
; i
++) {
2102 if (callchain_param
.order
== ORDER_CALLEE
)
2105 j
= chain
->nr
- i
- 1;
2107 #ifdef HAVE_SKIP_CALLCHAIN_IDX
2113 if (ip
< PERF_CONTEXT_MAX
)
2116 err
= add_callchain_ip(thread
, cursor
, parent
,
2117 root_al
, &cpumode
, ip
,
2118 false, NULL
, NULL
, 0);
2121 return (err
< 0) ? err
: 0;
2127 static int append_inlines(struct callchain_cursor
*cursor
,
2128 struct map
*map
, struct symbol
*sym
, u64 ip
)
2130 struct inline_node
*inline_node
;
2131 struct inline_list
*ilist
;
2135 if (!symbol_conf
.inline_name
|| !map
|| !sym
)
2138 addr
= map__rip_2objdump(map
, ip
);
2140 inline_node
= inlines__tree_find(&map
->dso
->inlined_nodes
, addr
);
2142 inline_node
= dso__parse_addr_inlines(map
->dso
, addr
, sym
);
2145 inlines__tree_insert(&map
->dso
->inlined_nodes
, inline_node
);
2148 list_for_each_entry(ilist
, &inline_node
->val
, list
) {
2149 ret
= callchain_cursor_append(cursor
, ip
, map
,
2150 ilist
->symbol
, false,
2151 NULL
, 0, 0, 0, ilist
->srcline
);
2160 static int unwind_entry(struct unwind_entry
*entry
, void *arg
)
2162 struct callchain_cursor
*cursor
= arg
;
2163 const char *srcline
= NULL
;
2165 if (symbol_conf
.hide_unresolved
&& entry
->sym
== NULL
)
2168 if (append_inlines(cursor
, entry
->map
, entry
->sym
, entry
->ip
) == 0)
2171 srcline
= callchain_srcline(entry
->map
, entry
->sym
, entry
->ip
);
2172 return callchain_cursor_append(cursor
, entry
->ip
,
2173 entry
->map
, entry
->sym
,
2174 false, NULL
, 0, 0, 0, srcline
);
2177 static int thread__resolve_callchain_unwind(struct thread
*thread
,
2178 struct callchain_cursor
*cursor
,
2179 struct perf_evsel
*evsel
,
2180 struct perf_sample
*sample
,
2183 /* Can we do dwarf post unwind? */
2184 if (!((evsel
->attr
.sample_type
& PERF_SAMPLE_REGS_USER
) &&
2185 (evsel
->attr
.sample_type
& PERF_SAMPLE_STACK_USER
)))
2188 /* Bail out if nothing was captured. */
2189 if ((!sample
->user_regs
.regs
) ||
2190 (!sample
->user_stack
.size
))
2193 return unwind__get_entries(unwind_entry
, cursor
,
2194 thread
, sample
, max_stack
);
2197 int thread__resolve_callchain(struct thread
*thread
,
2198 struct callchain_cursor
*cursor
,
2199 struct perf_evsel
*evsel
,
2200 struct perf_sample
*sample
,
2201 struct symbol
**parent
,
2202 struct addr_location
*root_al
,
2207 callchain_cursor_reset(cursor
);
2209 if (callchain_param
.order
== ORDER_CALLEE
) {
2210 ret
= thread__resolve_callchain_sample(thread
, cursor
,
2216 ret
= thread__resolve_callchain_unwind(thread
, cursor
,
2220 ret
= thread__resolve_callchain_unwind(thread
, cursor
,
2225 ret
= thread__resolve_callchain_sample(thread
, cursor
,
2234 int machine__for_each_thread(struct machine
*machine
,
2235 int (*fn
)(struct thread
*thread
, void *p
),
2238 struct threads
*threads
;
2240 struct thread
*thread
;
2244 for (i
= 0; i
< THREADS__TABLE_SIZE
; i
++) {
2245 threads
= &machine
->threads
[i
];
2246 for (nd
= rb_first(&threads
->entries
); nd
; nd
= rb_next(nd
)) {
2247 thread
= rb_entry(nd
, struct thread
, rb_node
);
2248 rc
= fn(thread
, priv
);
2253 list_for_each_entry(thread
, &threads
->dead
, node
) {
2254 rc
= fn(thread
, priv
);
2262 int machines__for_each_thread(struct machines
*machines
,
2263 int (*fn
)(struct thread
*thread
, void *p
),
2269 rc
= machine__for_each_thread(&machines
->host
, fn
, priv
);
2273 for (nd
= rb_first(&machines
->guests
); nd
; nd
= rb_next(nd
)) {
2274 struct machine
*machine
= rb_entry(nd
, struct machine
, rb_node
);
2276 rc
= machine__for_each_thread(machine
, fn
, priv
);
2283 int __machine__synthesize_threads(struct machine
*machine
, struct perf_tool
*tool
,
2284 struct target
*target
, struct thread_map
*threads
,
2285 perf_event__handler_t process
, bool data_mmap
,
2286 unsigned int proc_map_timeout
,
2287 unsigned int nr_threads_synthesize
)
2289 if (target__has_task(target
))
2290 return perf_event__synthesize_thread_map(tool
, threads
, process
, machine
, data_mmap
, proc_map_timeout
);
2291 else if (target__has_cpu(target
))
2292 return perf_event__synthesize_threads(tool
, process
,
2295 nr_threads_synthesize
);
2296 /* command specified */
2300 pid_t
machine__get_current_tid(struct machine
*machine
, int cpu
)
2302 if (cpu
< 0 || cpu
>= MAX_NR_CPUS
|| !machine
->current_tid
)
2305 return machine
->current_tid
[cpu
];
2308 int machine__set_current_tid(struct machine
*machine
, int cpu
, pid_t pid
,
2311 struct thread
*thread
;
2316 if (!machine
->current_tid
) {
2319 machine
->current_tid
= calloc(MAX_NR_CPUS
, sizeof(pid_t
));
2320 if (!machine
->current_tid
)
2322 for (i
= 0; i
< MAX_NR_CPUS
; i
++)
2323 machine
->current_tid
[i
] = -1;
2326 if (cpu
>= MAX_NR_CPUS
) {
2327 pr_err("Requested CPU %d too large. ", cpu
);
2328 pr_err("Consider raising MAX_NR_CPUS\n");
2332 machine
->current_tid
[cpu
] = tid
;
2334 thread
= machine__findnew_thread(machine
, pid
, tid
);
2339 thread__put(thread
);
2344 int machine__get_kernel_start(struct machine
*machine
)
2346 struct map
*map
= machine__kernel_map(machine
);
2350 * The only addresses above 2^63 are kernel addresses of a 64-bit
2351 * kernel. Note that addresses are unsigned so that on a 32-bit system
2352 * all addresses including kernel addresses are less than 2^32. In
2353 * that case (32-bit system), if the kernel mapping is unknown, all
2354 * addresses will be assumed to be in user space - see
2355 * machine__kernel_ip().
2357 machine
->kernel_start
= 1ULL << 63;
2359 err
= map__load(map
);
2361 machine
->kernel_start
= map
->start
;
2366 struct dso
*machine__findnew_dso(struct machine
*machine
, const char *filename
)
2368 return dsos__findnew(&machine
->dsos
, filename
);
2371 char *machine__resolve_kernel_addr(void *vmachine
, unsigned long long *addrp
, char **modp
)
2373 struct machine
*machine
= vmachine
;
2375 struct symbol
*sym
= map_groups__find_symbol(&machine
->kmaps
, MAP__FUNCTION
, *addrp
, &map
);
2380 *modp
= __map__is_kmodule(map
) ? (char *)map
->dso
->short_name
: NULL
;
2381 *addrp
= map
->unmap_ip(map
, sym
->start
);