1 // SPDX-License-Identifier: GPL-2.0
6 #include <linux/kernel.h>
7 #include <linux/types.h>
11 #include <uapi/linux/mman.h> /* To get things like MAP_HUGETLB even on older libc headers */
12 #include <api/fs/fs.h>
13 #include <linux/perf_event.h>
22 #include "thread_map.h"
23 #include "sane_ctype.h"
24 #include "symbol/kallsyms.h"
28 static const char *perf_event__names
[] = {
30 [PERF_RECORD_MMAP
] = "MMAP",
31 [PERF_RECORD_MMAP2
] = "MMAP2",
32 [PERF_RECORD_LOST
] = "LOST",
33 [PERF_RECORD_COMM
] = "COMM",
34 [PERF_RECORD_EXIT
] = "EXIT",
35 [PERF_RECORD_THROTTLE
] = "THROTTLE",
36 [PERF_RECORD_UNTHROTTLE
] = "UNTHROTTLE",
37 [PERF_RECORD_FORK
] = "FORK",
38 [PERF_RECORD_READ
] = "READ",
39 [PERF_RECORD_SAMPLE
] = "SAMPLE",
40 [PERF_RECORD_AUX
] = "AUX",
41 [PERF_RECORD_ITRACE_START
] = "ITRACE_START",
42 [PERF_RECORD_LOST_SAMPLES
] = "LOST_SAMPLES",
43 [PERF_RECORD_SWITCH
] = "SWITCH",
44 [PERF_RECORD_SWITCH_CPU_WIDE
] = "SWITCH_CPU_WIDE",
45 [PERF_RECORD_NAMESPACES
] = "NAMESPACES",
46 [PERF_RECORD_HEADER_ATTR
] = "ATTR",
47 [PERF_RECORD_HEADER_EVENT_TYPE
] = "EVENT_TYPE",
48 [PERF_RECORD_HEADER_TRACING_DATA
] = "TRACING_DATA",
49 [PERF_RECORD_HEADER_BUILD_ID
] = "BUILD_ID",
50 [PERF_RECORD_FINISHED_ROUND
] = "FINISHED_ROUND",
51 [PERF_RECORD_ID_INDEX
] = "ID_INDEX",
52 [PERF_RECORD_AUXTRACE_INFO
] = "AUXTRACE_INFO",
53 [PERF_RECORD_AUXTRACE
] = "AUXTRACE",
54 [PERF_RECORD_AUXTRACE_ERROR
] = "AUXTRACE_ERROR",
55 [PERF_RECORD_THREAD_MAP
] = "THREAD_MAP",
56 [PERF_RECORD_CPU_MAP
] = "CPU_MAP",
57 [PERF_RECORD_STAT_CONFIG
] = "STAT_CONFIG",
58 [PERF_RECORD_STAT
] = "STAT",
59 [PERF_RECORD_STAT_ROUND
] = "STAT_ROUND",
60 [PERF_RECORD_EVENT_UPDATE
] = "EVENT_UPDATE",
61 [PERF_RECORD_TIME_CONV
] = "TIME_CONV",
62 [PERF_RECORD_HEADER_FEATURE
] = "FEATURE",
65 static const char *perf_ns__names
[] = {
66 [NET_NS_INDEX
] = "net",
67 [UTS_NS_INDEX
] = "uts",
68 [IPC_NS_INDEX
] = "ipc",
69 [PID_NS_INDEX
] = "pid",
70 [USER_NS_INDEX
] = "user",
71 [MNT_NS_INDEX
] = "mnt",
72 [CGROUP_NS_INDEX
] = "cgroup",
75 const char *perf_event__name(unsigned int id
)
77 if (id
>= ARRAY_SIZE(perf_event__names
))
79 if (!perf_event__names
[id
])
81 return perf_event__names
[id
];
84 static const char *perf_ns__name(unsigned int id
)
86 if (id
>= ARRAY_SIZE(perf_ns__names
))
88 return perf_ns__names
[id
];
91 static int perf_tool__process_synth_event(struct perf_tool
*tool
,
92 union perf_event
*event
,
93 struct machine
*machine
,
94 perf_event__handler_t process
)
96 struct perf_sample synth_sample
= {
103 .cpumode
= event
->header
.misc
& PERF_RECORD_MISC_CPUMODE_MASK
,
106 return process(tool
, event
, &synth_sample
, machine
);
110 * Assumes that the first 4095 bytes of /proc/pid/stat contains
111 * the comm, tgid and ppid.
113 static int perf_event__get_comm_ids(pid_t pid
, char *comm
, size_t len
,
114 pid_t
*tgid
, pid_t
*ppid
)
116 char filename
[PATH_MAX
];
121 char *name
, *tgids
, *ppids
;
126 snprintf(filename
, sizeof(filename
), "/proc/%d/status", pid
);
128 fd
= open(filename
, O_RDONLY
);
130 pr_debug("couldn't open %s\n", filename
);
134 n
= read(fd
, bf
, sizeof(bf
) - 1);
137 pr_warning("Couldn't get COMM, tigd and ppid for pid %d\n",
143 name
= strstr(bf
, "Name:");
144 tgids
= strstr(bf
, "Tgid:");
145 ppids
= strstr(bf
, "PPid:");
150 name
+= 5; /* strlen("Name:") */
153 nl
= strchr(name
, '\n');
160 memcpy(comm
, name
, size
);
163 pr_debug("Name: string not found for pid %d\n", pid
);
167 tgids
+= 5; /* strlen("Tgid:") */
170 pr_debug("Tgid: string not found for pid %d\n", pid
);
174 ppids
+= 5; /* strlen("PPid:") */
177 pr_debug("PPid: string not found for pid %d\n", pid
);
183 static int perf_event__prepare_comm(union perf_event
*event
, pid_t pid
,
184 struct machine
*machine
,
185 pid_t
*tgid
, pid_t
*ppid
)
191 memset(&event
->comm
, 0, sizeof(event
->comm
));
193 if (machine__is_host(machine
)) {
194 if (perf_event__get_comm_ids(pid
, event
->comm
.comm
,
195 sizeof(event
->comm
.comm
),
200 *tgid
= machine
->pid
;
206 event
->comm
.pid
= *tgid
;
207 event
->comm
.header
.type
= PERF_RECORD_COMM
;
209 size
= strlen(event
->comm
.comm
) + 1;
210 size
= PERF_ALIGN(size
, sizeof(u64
));
211 memset(event
->comm
.comm
+ size
, 0, machine
->id_hdr_size
);
212 event
->comm
.header
.size
= (sizeof(event
->comm
) -
213 (sizeof(event
->comm
.comm
) - size
) +
214 machine
->id_hdr_size
);
215 event
->comm
.tid
= pid
;
220 pid_t
perf_event__synthesize_comm(struct perf_tool
*tool
,
221 union perf_event
*event
, pid_t pid
,
222 perf_event__handler_t process
,
223 struct machine
*machine
)
227 if (perf_event__prepare_comm(event
, pid
, machine
, &tgid
, &ppid
) != 0)
230 if (perf_tool__process_synth_event(tool
, event
, machine
, process
) != 0)
236 static void perf_event__get_ns_link_info(pid_t pid
, const char *ns
,
237 struct perf_ns_link_info
*ns_link_info
)
242 sprintf(proc_ns
, "/proc/%u/ns/%s", pid
, ns
);
243 if (stat64(proc_ns
, &st
) == 0) {
244 ns_link_info
->dev
= st
.st_dev
;
245 ns_link_info
->ino
= st
.st_ino
;
249 int perf_event__synthesize_namespaces(struct perf_tool
*tool
,
250 union perf_event
*event
,
251 pid_t pid
, pid_t tgid
,
252 perf_event__handler_t process
,
253 struct machine
*machine
)
256 struct perf_ns_link_info
*ns_link_info
;
258 if (!tool
|| !tool
->namespace_events
)
261 memset(&event
->namespaces
, 0, (sizeof(event
->namespaces
) +
262 (NR_NAMESPACES
* sizeof(struct perf_ns_link_info
)) +
263 machine
->id_hdr_size
));
265 event
->namespaces
.pid
= tgid
;
266 event
->namespaces
.tid
= pid
;
268 event
->namespaces
.nr_namespaces
= NR_NAMESPACES
;
270 ns_link_info
= event
->namespaces
.link_info
;
272 for (idx
= 0; idx
< event
->namespaces
.nr_namespaces
; idx
++)
273 perf_event__get_ns_link_info(pid
, perf_ns__name(idx
),
276 event
->namespaces
.header
.type
= PERF_RECORD_NAMESPACES
;
278 event
->namespaces
.header
.size
= (sizeof(event
->namespaces
) +
279 (NR_NAMESPACES
* sizeof(struct perf_ns_link_info
)) +
280 machine
->id_hdr_size
);
282 if (perf_tool__process_synth_event(tool
, event
, machine
, process
) != 0)
288 static int perf_event__synthesize_fork(struct perf_tool
*tool
,
289 union perf_event
*event
,
290 pid_t pid
, pid_t tgid
, pid_t ppid
,
291 perf_event__handler_t process
,
292 struct machine
*machine
)
294 memset(&event
->fork
, 0, sizeof(event
->fork
) + machine
->id_hdr_size
);
297 * for main thread set parent to ppid from status file. For other
298 * threads set parent pid to main thread. ie., assume main thread
299 * spawns all threads in a process
302 event
->fork
.ppid
= ppid
;
303 event
->fork
.ptid
= ppid
;
305 event
->fork
.ppid
= tgid
;
306 event
->fork
.ptid
= tgid
;
308 event
->fork
.pid
= tgid
;
309 event
->fork
.tid
= pid
;
310 event
->fork
.header
.type
= PERF_RECORD_FORK
;
312 event
->fork
.header
.size
= (sizeof(event
->fork
) + machine
->id_hdr_size
);
314 if (perf_tool__process_synth_event(tool
, event
, machine
, process
) != 0)
320 int perf_event__synthesize_mmap_events(struct perf_tool
*tool
,
321 union perf_event
*event
,
322 pid_t pid
, pid_t tgid
,
323 perf_event__handler_t process
,
324 struct machine
*machine
,
326 unsigned int proc_map_timeout
)
328 char filename
[PATH_MAX
];
330 unsigned long long t
;
331 bool truncation
= false;
332 unsigned long long timeout
= proc_map_timeout
* 1000000ULL;
334 const char *hugetlbfs_mnt
= hugetlbfs__mountpoint();
335 int hugetlbfs_mnt_len
= hugetlbfs_mnt
? strlen(hugetlbfs_mnt
) : 0;
337 if (machine__is_default_guest(machine
))
340 snprintf(filename
, sizeof(filename
), "%s/proc/%d/task/%d/maps",
341 machine
->root_dir
, pid
, pid
);
343 fp
= fopen(filename
, "r");
346 * We raced with a task exiting - just return:
348 pr_debug("couldn't open %s\n", filename
);
352 event
->header
.type
= PERF_RECORD_MMAP2
;
358 char execname
[PATH_MAX
];
359 char anonstr
[] = "//anon";
364 if (fgets(bf
, sizeof(bf
), fp
) == NULL
)
367 if ((rdclock() - t
) > timeout
) {
368 pr_warning("Reading %s time out. "
369 "You may want to increase "
370 "the time limit by --proc-map-timeout\n",
376 /* ensure null termination since stack will be reused. */
377 strcpy(execname
, "");
379 /* 00400000-0040c000 r-xp 00000000 fd:01 41038 /bin/cat */
380 n
= sscanf(bf
, "%"PRIx64
"-%"PRIx64
" %s %"PRIx64
" %x:%x %u %[^\n]\n",
381 &event
->mmap2
.start
, &event
->mmap2
.len
, prot
,
382 &event
->mmap2
.pgoff
, &event
->mmap2
.maj
,
387 * Anon maps don't have the execname.
392 event
->mmap2
.ino
= (u64
)ino
;
395 * Just like the kernel, see __perf_event_mmap in kernel/perf_event.c
397 if (machine__is_host(machine
))
398 event
->header
.misc
= PERF_RECORD_MISC_USER
;
400 event
->header
.misc
= PERF_RECORD_MISC_GUEST_USER
;
402 /* map protection and flags bits */
403 event
->mmap2
.prot
= 0;
404 event
->mmap2
.flags
= 0;
406 event
->mmap2
.prot
|= PROT_READ
;
408 event
->mmap2
.prot
|= PROT_WRITE
;
410 event
->mmap2
.prot
|= PROT_EXEC
;
413 event
->mmap2
.flags
|= MAP_SHARED
;
415 event
->mmap2
.flags
|= MAP_PRIVATE
;
417 if (prot
[2] != 'x') {
418 if (!mmap_data
|| prot
[0] != 'r')
421 event
->header
.misc
|= PERF_RECORD_MISC_MMAP_DATA
;
426 event
->header
.misc
|= PERF_RECORD_MISC_PROC_MAP_PARSE_TIMEOUT
;
428 if (!strcmp(execname
, ""))
429 strcpy(execname
, anonstr
);
431 if (hugetlbfs_mnt_len
&&
432 !strncmp(execname
, hugetlbfs_mnt
, hugetlbfs_mnt_len
)) {
433 strcpy(execname
, anonstr
);
434 event
->mmap2
.flags
|= MAP_HUGETLB
;
437 size
= strlen(execname
) + 1;
438 memcpy(event
->mmap2
.filename
, execname
, size
);
439 size
= PERF_ALIGN(size
, sizeof(u64
));
440 event
->mmap2
.len
-= event
->mmap
.start
;
441 event
->mmap2
.header
.size
= (sizeof(event
->mmap2
) -
442 (sizeof(event
->mmap2
.filename
) - size
));
443 memset(event
->mmap2
.filename
+ size
, 0, machine
->id_hdr_size
);
444 event
->mmap2
.header
.size
+= machine
->id_hdr_size
;
445 event
->mmap2
.pid
= tgid
;
446 event
->mmap2
.tid
= pid
;
448 if (perf_tool__process_synth_event(tool
, event
, machine
, process
) != 0) {
461 int perf_event__synthesize_modules(struct perf_tool
*tool
,
462 perf_event__handler_t process
,
463 struct machine
*machine
)
467 struct map_groups
*kmaps
= &machine
->kmaps
;
468 struct maps
*maps
= &kmaps
->maps
[MAP__FUNCTION
];
469 union perf_event
*event
= zalloc((sizeof(event
->mmap
) +
470 machine
->id_hdr_size
));
472 pr_debug("Not enough memory synthesizing mmap event "
473 "for kernel modules\n");
477 event
->header
.type
= PERF_RECORD_MMAP
;
480 * kernel uses 0 for user space maps, see kernel/perf_event.c
483 if (machine__is_host(machine
))
484 event
->header
.misc
= PERF_RECORD_MISC_KERNEL
;
486 event
->header
.misc
= PERF_RECORD_MISC_GUEST_KERNEL
;
488 for (pos
= maps__first(maps
); pos
; pos
= map__next(pos
)) {
491 if (__map__is_kernel(pos
))
494 size
= PERF_ALIGN(pos
->dso
->long_name_len
+ 1, sizeof(u64
));
495 event
->mmap
.header
.type
= PERF_RECORD_MMAP
;
496 event
->mmap
.header
.size
= (sizeof(event
->mmap
) -
497 (sizeof(event
->mmap
.filename
) - size
));
498 memset(event
->mmap
.filename
+ size
, 0, machine
->id_hdr_size
);
499 event
->mmap
.header
.size
+= machine
->id_hdr_size
;
500 event
->mmap
.start
= pos
->start
;
501 event
->mmap
.len
= pos
->end
- pos
->start
;
502 event
->mmap
.pid
= machine
->pid
;
504 memcpy(event
->mmap
.filename
, pos
->dso
->long_name
,
505 pos
->dso
->long_name_len
+ 1);
506 if (perf_tool__process_synth_event(tool
, event
, machine
, process
) != 0) {
516 static int __event__synthesize_thread(union perf_event
*comm_event
,
517 union perf_event
*mmap_event
,
518 union perf_event
*fork_event
,
519 union perf_event
*namespaces_event
,
521 perf_event__handler_t process
,
522 struct perf_tool
*tool
,
523 struct machine
*machine
,
525 unsigned int proc_map_timeout
)
527 char filename
[PATH_MAX
];
529 struct dirent
*dirent
;
533 /* special case: only send one comm event using passed in pid */
535 tgid
= perf_event__synthesize_comm(tool
, comm_event
, pid
,
541 if (perf_event__synthesize_namespaces(tool
, namespaces_event
, pid
,
542 tgid
, process
, machine
) < 0)
546 return perf_event__synthesize_mmap_events(tool
, mmap_event
, pid
, tgid
,
547 process
, machine
, mmap_data
,
551 if (machine__is_default_guest(machine
))
554 snprintf(filename
, sizeof(filename
), "%s/proc/%d/task",
555 machine
->root_dir
, pid
);
557 tasks
= opendir(filename
);
559 pr_debug("couldn't open %s\n", filename
);
563 while ((dirent
= readdir(tasks
)) != NULL
) {
567 _pid
= strtol(dirent
->d_name
, &end
, 10);
572 if (perf_event__prepare_comm(comm_event
, _pid
, machine
,
576 if (perf_event__synthesize_fork(tool
, fork_event
, _pid
, tgid
,
577 ppid
, process
, machine
) < 0)
580 if (perf_event__synthesize_namespaces(tool
, namespaces_event
, _pid
,
581 tgid
, process
, machine
) < 0)
585 * Send the prepared comm event
587 if (perf_tool__process_synth_event(tool
, comm_event
, machine
, process
) != 0)
592 /* process the parent's maps too */
593 rc
= perf_event__synthesize_mmap_events(tool
, mmap_event
, pid
, tgid
,
594 process
, machine
, mmap_data
, proc_map_timeout
);
604 int perf_event__synthesize_thread_map(struct perf_tool
*tool
,
605 struct thread_map
*threads
,
606 perf_event__handler_t process
,
607 struct machine
*machine
,
609 unsigned int proc_map_timeout
)
611 union perf_event
*comm_event
, *mmap_event
, *fork_event
;
612 union perf_event
*namespaces_event
;
613 int err
= -1, thread
, j
;
615 comm_event
= malloc(sizeof(comm_event
->comm
) + machine
->id_hdr_size
);
616 if (comm_event
== NULL
)
619 mmap_event
= malloc(sizeof(mmap_event
->mmap2
) + machine
->id_hdr_size
);
620 if (mmap_event
== NULL
)
623 fork_event
= malloc(sizeof(fork_event
->fork
) + machine
->id_hdr_size
);
624 if (fork_event
== NULL
)
627 namespaces_event
= malloc(sizeof(namespaces_event
->namespaces
) +
628 (NR_NAMESPACES
* sizeof(struct perf_ns_link_info
)) +
629 machine
->id_hdr_size
);
630 if (namespaces_event
== NULL
)
634 for (thread
= 0; thread
< threads
->nr
; ++thread
) {
635 if (__event__synthesize_thread(comm_event
, mmap_event
,
636 fork_event
, namespaces_event
,
637 thread_map__pid(threads
, thread
), 0,
638 process
, tool
, machine
,
639 mmap_data
, proc_map_timeout
)) {
645 * comm.pid is set to thread group id by
646 * perf_event__synthesize_comm
648 if ((int) comm_event
->comm
.pid
!= thread_map__pid(threads
, thread
)) {
649 bool need_leader
= true;
651 /* is thread group leader in thread_map? */
652 for (j
= 0; j
< threads
->nr
; ++j
) {
653 if ((int) comm_event
->comm
.pid
== thread_map__pid(threads
, j
)) {
659 /* if not, generate events for it */
661 __event__synthesize_thread(comm_event
, mmap_event
,
662 fork_event
, namespaces_event
,
663 comm_event
->comm
.pid
, 0,
664 process
, tool
, machine
,
665 mmap_data
, proc_map_timeout
)) {
671 free(namespaces_event
);
682 static int __perf_event__synthesize_threads(struct perf_tool
*tool
,
683 perf_event__handler_t process
,
684 struct machine
*machine
,
686 unsigned int proc_map_timeout
,
687 struct dirent
**dirent
,
691 union perf_event
*comm_event
, *mmap_event
, *fork_event
;
692 union perf_event
*namespaces_event
;
698 comm_event
= malloc(sizeof(comm_event
->comm
) + machine
->id_hdr_size
);
699 if (comm_event
== NULL
)
702 mmap_event
= malloc(sizeof(mmap_event
->mmap2
) + machine
->id_hdr_size
);
703 if (mmap_event
== NULL
)
706 fork_event
= malloc(sizeof(fork_event
->fork
) + machine
->id_hdr_size
);
707 if (fork_event
== NULL
)
710 namespaces_event
= malloc(sizeof(namespaces_event
->namespaces
) +
711 (NR_NAMESPACES
* sizeof(struct perf_ns_link_info
)) +
712 machine
->id_hdr_size
);
713 if (namespaces_event
== NULL
)
716 for (i
= start
; i
< start
+ num
; i
++) {
717 if (!isdigit(dirent
[i
]->d_name
[0]))
720 pid
= (pid_t
)strtol(dirent
[i
]->d_name
, &end
, 10);
721 /* only interested in proper numerical dirents */
725 * We may race with exiting thread, so don't stop just because
726 * one thread couldn't be synthesized.
728 __event__synthesize_thread(comm_event
, mmap_event
, fork_event
,
729 namespaces_event
, pid
, 1, process
,
730 tool
, machine
, mmap_data
,
735 free(namespaces_event
);
746 struct synthesize_threads_arg
{
747 struct perf_tool
*tool
;
748 perf_event__handler_t process
;
749 struct machine
*machine
;
751 unsigned int proc_map_timeout
;
752 struct dirent
**dirent
;
757 static void *synthesize_threads_worker(void *arg
)
759 struct synthesize_threads_arg
*args
= arg
;
761 __perf_event__synthesize_threads(args
->tool
, args
->process
,
762 args
->machine
, args
->mmap_data
,
763 args
->proc_map_timeout
, args
->dirent
,
764 args
->start
, args
->num
);
768 int perf_event__synthesize_threads(struct perf_tool
*tool
,
769 perf_event__handler_t process
,
770 struct machine
*machine
,
772 unsigned int proc_map_timeout
,
773 unsigned int nr_threads_synthesize
)
775 struct synthesize_threads_arg
*args
= NULL
;
776 pthread_t
*synthesize_threads
= NULL
;
777 char proc_path
[PATH_MAX
];
778 struct dirent
**dirent
;
786 if (machine__is_default_guest(machine
))
789 snprintf(proc_path
, sizeof(proc_path
), "%s/proc", machine
->root_dir
);
790 n
= scandir(proc_path
, &dirent
, 0, alphasort
);
794 if (nr_threads_synthesize
== UINT_MAX
)
795 thread_nr
= sysconf(_SC_NPROCESSORS_ONLN
);
797 thread_nr
= nr_threads_synthesize
;
799 if (thread_nr
<= 1) {
800 err
= __perf_event__synthesize_threads(tool
, process
,
809 synthesize_threads
= calloc(sizeof(pthread_t
), thread_nr
);
810 if (synthesize_threads
== NULL
)
813 args
= calloc(sizeof(*args
), thread_nr
);
817 num_per_thread
= n
/ thread_nr
;
819 for (i
= 0; i
< thread_nr
; i
++) {
821 args
[i
].process
= process
;
822 args
[i
].machine
= machine
;
823 args
[i
].mmap_data
= mmap_data
;
824 args
[i
].proc_map_timeout
= proc_map_timeout
;
825 args
[i
].dirent
= dirent
;
827 for (i
= 0; i
< m
; i
++) {
828 args
[i
].num
= num_per_thread
+ 1;
829 args
[i
].start
= i
* args
[i
].num
;
832 base
= args
[i
-1].start
+ args
[i
-1].num
;
833 for (j
= i
; j
< thread_nr
; j
++) {
834 args
[j
].num
= num_per_thread
;
835 args
[j
].start
= base
+ (j
- i
) * args
[i
].num
;
838 for (i
= 0; i
< thread_nr
; i
++) {
839 if (pthread_create(&synthesize_threads
[i
], NULL
,
840 synthesize_threads_worker
, &args
[i
]))
845 for (i
= 0; i
< thread_nr
; i
++)
846 pthread_join(synthesize_threads
[i
], NULL
);
849 free(synthesize_threads
);
851 for (i
= 0; i
< n
; i
++)
858 struct process_symbol_args
{
863 static int find_symbol_cb(void *arg
, const char *name
, char type
,
866 struct process_symbol_args
*args
= arg
;
869 * Must be a function or at least an alias, as in PARISC64, where "_text" is
870 * an 'A' to the same address as "_stext".
872 if (!(symbol_type__is_a(type
, MAP__FUNCTION
) ||
873 type
== 'A') || strcmp(name
, args
->name
))
880 int kallsyms__get_function_start(const char *kallsyms_filename
,
881 const char *symbol_name
, u64
*addr
)
883 struct process_symbol_args args
= { .name
= symbol_name
, };
885 if (kallsyms__parse(kallsyms_filename
, &args
, find_symbol_cb
) <= 0)
892 int perf_event__synthesize_kernel_mmap(struct perf_tool
*tool
,
893 perf_event__handler_t process
,
894 struct machine
*machine
)
897 const char *mmap_name
;
898 char name_buff
[PATH_MAX
];
899 struct map
*map
= machine__kernel_map(machine
);
902 union perf_event
*event
;
904 if (symbol_conf
.kptr_restrict
)
910 * We should get this from /sys/kernel/sections/.text, but till that is
911 * available use this, and after it is use this as a fallback for older
914 event
= zalloc((sizeof(event
->mmap
) + machine
->id_hdr_size
));
916 pr_debug("Not enough memory synthesizing mmap event "
917 "for kernel modules\n");
921 mmap_name
= machine__mmap_name(machine
, name_buff
, sizeof(name_buff
));
922 if (machine__is_host(machine
)) {
924 * kernel uses PERF_RECORD_MISC_USER for user space maps,
925 * see kernel/perf_event.c __perf_event_mmap
927 event
->header
.misc
= PERF_RECORD_MISC_KERNEL
;
929 event
->header
.misc
= PERF_RECORD_MISC_GUEST_KERNEL
;
932 kmap
= map__kmap(map
);
933 size
= snprintf(event
->mmap
.filename
, sizeof(event
->mmap
.filename
),
934 "%s%s", mmap_name
, kmap
->ref_reloc_sym
->name
) + 1;
935 size
= PERF_ALIGN(size
, sizeof(u64
));
936 event
->mmap
.header
.type
= PERF_RECORD_MMAP
;
937 event
->mmap
.header
.size
= (sizeof(event
->mmap
) -
938 (sizeof(event
->mmap
.filename
) - size
) + machine
->id_hdr_size
);
939 event
->mmap
.pgoff
= kmap
->ref_reloc_sym
->addr
;
940 event
->mmap
.start
= map
->start
;
941 event
->mmap
.len
= map
->end
- event
->mmap
.start
;
942 event
->mmap
.pid
= machine
->pid
;
944 err
= perf_tool__process_synth_event(tool
, event
, machine
, process
);
950 int perf_event__synthesize_thread_map2(struct perf_tool
*tool
,
951 struct thread_map
*threads
,
952 perf_event__handler_t process
,
953 struct machine
*machine
)
955 union perf_event
*event
;
958 size
= sizeof(event
->thread_map
);
959 size
+= threads
->nr
* sizeof(event
->thread_map
.entries
[0]);
961 event
= zalloc(size
);
965 event
->header
.type
= PERF_RECORD_THREAD_MAP
;
966 event
->header
.size
= size
;
967 event
->thread_map
.nr
= threads
->nr
;
969 for (i
= 0; i
< threads
->nr
; i
++) {
970 struct thread_map_event_entry
*entry
= &event
->thread_map
.entries
[i
];
971 char *comm
= thread_map__comm(threads
, i
);
976 entry
->pid
= thread_map__pid(threads
, i
);
977 strncpy((char *) &entry
->comm
, comm
, sizeof(entry
->comm
));
980 err
= process(tool
, event
, NULL
, machine
);
986 static void synthesize_cpus(struct cpu_map_entries
*cpus
,
993 for (i
= 0; i
< map
->nr
; i
++)
994 cpus
->cpu
[i
] = map
->map
[i
];
997 static void synthesize_mask(struct cpu_map_mask
*mask
,
998 struct cpu_map
*map
, int max
)
1002 mask
->nr
= BITS_TO_LONGS(max
);
1003 mask
->long_size
= sizeof(long);
1005 for (i
= 0; i
< map
->nr
; i
++)
1006 set_bit(map
->map
[i
], mask
->mask
);
1009 static size_t cpus_size(struct cpu_map
*map
)
1011 return sizeof(struct cpu_map_entries
) + map
->nr
* sizeof(u16
);
1014 static size_t mask_size(struct cpu_map
*map
, int *max
)
1020 for (i
= 0; i
< map
->nr
; i
++) {
1021 /* bit possition of the cpu is + 1 */
1022 int bit
= map
->map
[i
] + 1;
1028 return sizeof(struct cpu_map_mask
) + BITS_TO_LONGS(*max
) * sizeof(long);
1031 void *cpu_map_data__alloc(struct cpu_map
*map
, size_t *size
, u16
*type
, int *max
)
1033 size_t size_cpus
, size_mask
;
1034 bool is_dummy
= cpu_map__empty(map
);
1037 * Both array and mask data have variable size based
1038 * on the number of cpus and their actual values.
1039 * The size of the 'struct cpu_map_data' is:
1041 * array = size of 'struct cpu_map_entries' +
1042 * number of cpus * sizeof(u64)
1044 * mask = size of 'struct cpu_map_mask' +
1045 * maximum cpu bit converted to size of longs
1047 * and finaly + the size of 'struct cpu_map_data'.
1049 size_cpus
= cpus_size(map
);
1050 size_mask
= mask_size(map
, max
);
1052 if (is_dummy
|| (size_cpus
< size_mask
)) {
1054 *type
= PERF_CPU_MAP__CPUS
;
1057 *type
= PERF_CPU_MAP__MASK
;
1060 *size
+= sizeof(struct cpu_map_data
);
1061 return zalloc(*size
);
1064 void cpu_map_data__synthesize(struct cpu_map_data
*data
, struct cpu_map
*map
,
1070 case PERF_CPU_MAP__CPUS
:
1071 synthesize_cpus((struct cpu_map_entries
*) data
->data
, map
);
1073 case PERF_CPU_MAP__MASK
:
1074 synthesize_mask((struct cpu_map_mask
*) data
->data
, map
, max
);
1080 static struct cpu_map_event
* cpu_map_event__new(struct cpu_map
*map
)
1082 size_t size
= sizeof(struct cpu_map_event
);
1083 struct cpu_map_event
*event
;
1087 event
= cpu_map_data__alloc(map
, &size
, &type
, &max
);
1091 event
->header
.type
= PERF_RECORD_CPU_MAP
;
1092 event
->header
.size
= size
;
1093 event
->data
.type
= type
;
1095 cpu_map_data__synthesize(&event
->data
, map
, type
, max
);
1099 int perf_event__synthesize_cpu_map(struct perf_tool
*tool
,
1100 struct cpu_map
*map
,
1101 perf_event__handler_t process
,
1102 struct machine
*machine
)
1104 struct cpu_map_event
*event
;
1107 event
= cpu_map_event__new(map
);
1111 err
= process(tool
, (union perf_event
*) event
, NULL
, machine
);
1117 int perf_event__synthesize_stat_config(struct perf_tool
*tool
,
1118 struct perf_stat_config
*config
,
1119 perf_event__handler_t process
,
1120 struct machine
*machine
)
1122 struct stat_config_event
*event
;
1123 int size
, i
= 0, err
;
1125 size
= sizeof(*event
);
1126 size
+= (PERF_STAT_CONFIG_TERM__MAX
* sizeof(event
->data
[0]));
1128 event
= zalloc(size
);
1132 event
->header
.type
= PERF_RECORD_STAT_CONFIG
;
1133 event
->header
.size
= size
;
1134 event
->nr
= PERF_STAT_CONFIG_TERM__MAX
;
1136 #define ADD(__term, __val) \
1137 event->data[i].tag = PERF_STAT_CONFIG_TERM__##__term; \
1138 event->data[i].val = __val; \
1141 ADD(AGGR_MODE
, config
->aggr_mode
)
1142 ADD(INTERVAL
, config
->interval
)
1143 ADD(SCALE
, config
->scale
)
1145 WARN_ONCE(i
!= PERF_STAT_CONFIG_TERM__MAX
,
1146 "stat config terms unbalanced\n");
1149 err
= process(tool
, (union perf_event
*) event
, NULL
, machine
);
1155 int perf_event__synthesize_stat(struct perf_tool
*tool
,
1156 u32 cpu
, u32 thread
, u64 id
,
1157 struct perf_counts_values
*count
,
1158 perf_event__handler_t process
,
1159 struct machine
*machine
)
1161 struct stat_event event
;
1163 event
.header
.type
= PERF_RECORD_STAT
;
1164 event
.header
.size
= sizeof(event
);
1165 event
.header
.misc
= 0;
1169 event
.thread
= thread
;
1170 event
.val
= count
->val
;
1171 event
.ena
= count
->ena
;
1172 event
.run
= count
->run
;
1174 return process(tool
, (union perf_event
*) &event
, NULL
, machine
);
1177 int perf_event__synthesize_stat_round(struct perf_tool
*tool
,
1178 u64 evtime
, u64 type
,
1179 perf_event__handler_t process
,
1180 struct machine
*machine
)
1182 struct stat_round_event event
;
1184 event
.header
.type
= PERF_RECORD_STAT_ROUND
;
1185 event
.header
.size
= sizeof(event
);
1186 event
.header
.misc
= 0;
1188 event
.time
= evtime
;
1191 return process(tool
, (union perf_event
*) &event
, NULL
, machine
);
1194 void perf_event__read_stat_config(struct perf_stat_config
*config
,
1195 struct stat_config_event
*event
)
1199 for (i
= 0; i
< event
->nr
; i
++) {
1201 switch (event
->data
[i
].tag
) {
1202 #define CASE(__term, __val) \
1203 case PERF_STAT_CONFIG_TERM__##__term: \
1204 config->__val = event->data[i].val; \
1207 CASE(AGGR_MODE
, aggr_mode
)
1209 CASE(INTERVAL
, interval
)
1212 pr_warning("unknown stat config term %" PRIu64
"\n",
1213 event
->data
[i
].tag
);
1218 size_t perf_event__fprintf_comm(union perf_event
*event
, FILE *fp
)
1222 if (event
->header
.misc
& PERF_RECORD_MISC_COMM_EXEC
)
1227 return fprintf(fp
, "%s: %s:%d/%d\n", s
, event
->comm
.comm
, event
->comm
.pid
, event
->comm
.tid
);
1230 size_t perf_event__fprintf_namespaces(union perf_event
*event
, FILE *fp
)
1233 struct perf_ns_link_info
*ns_link_info
;
1234 u32 nr_namespaces
, idx
;
1236 ns_link_info
= event
->namespaces
.link_info
;
1237 nr_namespaces
= event
->namespaces
.nr_namespaces
;
1239 ret
+= fprintf(fp
, " %d/%d - nr_namespaces: %u\n\t\t[",
1240 event
->namespaces
.pid
,
1241 event
->namespaces
.tid
,
1244 for (idx
= 0; idx
< nr_namespaces
; idx
++) {
1245 if (idx
&& (idx
% 4 == 0))
1246 ret
+= fprintf(fp
, "\n\t\t ");
1248 ret
+= fprintf(fp
, "%u/%s: %" PRIu64
"/%#" PRIx64
"%s", idx
,
1249 perf_ns__name(idx
), (u64
)ns_link_info
[idx
].dev
,
1250 (u64
)ns_link_info
[idx
].ino
,
1251 ((idx
+ 1) != nr_namespaces
) ? ", " : "]\n");
1257 int perf_event__process_comm(struct perf_tool
*tool __maybe_unused
,
1258 union perf_event
*event
,
1259 struct perf_sample
*sample
,
1260 struct machine
*machine
)
1262 return machine__process_comm_event(machine
, event
, sample
);
1265 int perf_event__process_namespaces(struct perf_tool
*tool __maybe_unused
,
1266 union perf_event
*event
,
1267 struct perf_sample
*sample
,
1268 struct machine
*machine
)
1270 return machine__process_namespaces_event(machine
, event
, sample
);
1273 int perf_event__process_lost(struct perf_tool
*tool __maybe_unused
,
1274 union perf_event
*event
,
1275 struct perf_sample
*sample
,
1276 struct machine
*machine
)
1278 return machine__process_lost_event(machine
, event
, sample
);
1281 int perf_event__process_aux(struct perf_tool
*tool __maybe_unused
,
1282 union perf_event
*event
,
1283 struct perf_sample
*sample __maybe_unused
,
1284 struct machine
*machine
)
1286 return machine__process_aux_event(machine
, event
);
1289 int perf_event__process_itrace_start(struct perf_tool
*tool __maybe_unused
,
1290 union perf_event
*event
,
1291 struct perf_sample
*sample __maybe_unused
,
1292 struct machine
*machine
)
1294 return machine__process_itrace_start_event(machine
, event
);
1297 int perf_event__process_lost_samples(struct perf_tool
*tool __maybe_unused
,
1298 union perf_event
*event
,
1299 struct perf_sample
*sample
,
1300 struct machine
*machine
)
1302 return machine__process_lost_samples_event(machine
, event
, sample
);
1305 int perf_event__process_switch(struct perf_tool
*tool __maybe_unused
,
1306 union perf_event
*event
,
1307 struct perf_sample
*sample __maybe_unused
,
1308 struct machine
*machine
)
1310 return machine__process_switch_event(machine
, event
);
1313 size_t perf_event__fprintf_mmap(union perf_event
*event
, FILE *fp
)
1315 return fprintf(fp
, " %d/%d: [%#" PRIx64
"(%#" PRIx64
") @ %#" PRIx64
"]: %c %s\n",
1316 event
->mmap
.pid
, event
->mmap
.tid
, event
->mmap
.start
,
1317 event
->mmap
.len
, event
->mmap
.pgoff
,
1318 (event
->header
.misc
& PERF_RECORD_MISC_MMAP_DATA
) ? 'r' : 'x',
1319 event
->mmap
.filename
);
1322 size_t perf_event__fprintf_mmap2(union perf_event
*event
, FILE *fp
)
1324 return fprintf(fp
, " %d/%d: [%#" PRIx64
"(%#" PRIx64
") @ %#" PRIx64
1325 " %02x:%02x %"PRIu64
" %"PRIu64
"]: %c%c%c%c %s\n",
1326 event
->mmap2
.pid
, event
->mmap2
.tid
, event
->mmap2
.start
,
1327 event
->mmap2
.len
, event
->mmap2
.pgoff
, event
->mmap2
.maj
,
1328 event
->mmap2
.min
, event
->mmap2
.ino
,
1329 event
->mmap2
.ino_generation
,
1330 (event
->mmap2
.prot
& PROT_READ
) ? 'r' : '-',
1331 (event
->mmap2
.prot
& PROT_WRITE
) ? 'w' : '-',
1332 (event
->mmap2
.prot
& PROT_EXEC
) ? 'x' : '-',
1333 (event
->mmap2
.flags
& MAP_SHARED
) ? 's' : 'p',
1334 event
->mmap2
.filename
);
1337 size_t perf_event__fprintf_thread_map(union perf_event
*event
, FILE *fp
)
1339 struct thread_map
*threads
= thread_map__new_event(&event
->thread_map
);
1342 ret
= fprintf(fp
, " nr: ");
1345 ret
+= thread_map__fprintf(threads
, fp
);
1347 ret
+= fprintf(fp
, "failed to get threads from event\n");
1349 thread_map__put(threads
);
1353 size_t perf_event__fprintf_cpu_map(union perf_event
*event
, FILE *fp
)
1355 struct cpu_map
*cpus
= cpu_map__new_data(&event
->cpu_map
.data
);
1358 ret
= fprintf(fp
, ": ");
1361 ret
+= cpu_map__fprintf(cpus
, fp
);
1363 ret
+= fprintf(fp
, "failed to get cpumap from event\n");
1369 int perf_event__process_mmap(struct perf_tool
*tool __maybe_unused
,
1370 union perf_event
*event
,
1371 struct perf_sample
*sample
,
1372 struct machine
*machine
)
1374 return machine__process_mmap_event(machine
, event
, sample
);
1377 int perf_event__process_mmap2(struct perf_tool
*tool __maybe_unused
,
1378 union perf_event
*event
,
1379 struct perf_sample
*sample
,
1380 struct machine
*machine
)
1382 return machine__process_mmap2_event(machine
, event
, sample
);
1385 size_t perf_event__fprintf_task(union perf_event
*event
, FILE *fp
)
1387 return fprintf(fp
, "(%d:%d):(%d:%d)\n",
1388 event
->fork
.pid
, event
->fork
.tid
,
1389 event
->fork
.ppid
, event
->fork
.ptid
);
1392 int perf_event__process_fork(struct perf_tool
*tool __maybe_unused
,
1393 union perf_event
*event
,
1394 struct perf_sample
*sample
,
1395 struct machine
*machine
)
1397 return machine__process_fork_event(machine
, event
, sample
);
1400 int perf_event__process_exit(struct perf_tool
*tool __maybe_unused
,
1401 union perf_event
*event
,
1402 struct perf_sample
*sample
,
1403 struct machine
*machine
)
1405 return machine__process_exit_event(machine
, event
, sample
);
1408 size_t perf_event__fprintf_aux(union perf_event
*event
, FILE *fp
)
1410 return fprintf(fp
, " offset: %#"PRIx64
" size: %#"PRIx64
" flags: %#"PRIx64
" [%s%s%s]\n",
1411 event
->aux
.aux_offset
, event
->aux
.aux_size
,
1413 event
->aux
.flags
& PERF_AUX_FLAG_TRUNCATED
? "T" : "",
1414 event
->aux
.flags
& PERF_AUX_FLAG_OVERWRITE
? "O" : "",
1415 event
->aux
.flags
& PERF_AUX_FLAG_PARTIAL
? "P" : "");
1418 size_t perf_event__fprintf_itrace_start(union perf_event
*event
, FILE *fp
)
1420 return fprintf(fp
, " pid: %u tid: %u\n",
1421 event
->itrace_start
.pid
, event
->itrace_start
.tid
);
1424 size_t perf_event__fprintf_switch(union perf_event
*event
, FILE *fp
)
1426 bool out
= event
->header
.misc
& PERF_RECORD_MISC_SWITCH_OUT
;
1427 const char *in_out
= out
? "OUT" : "IN ";
1429 if (event
->header
.type
== PERF_RECORD_SWITCH
)
1430 return fprintf(fp
, " %s\n", in_out
);
1432 return fprintf(fp
, " %s %s pid/tid: %5u/%-5u\n",
1433 in_out
, out
? "next" : "prev",
1434 event
->context_switch
.next_prev_pid
,
1435 event
->context_switch
.next_prev_tid
);
1438 static size_t perf_event__fprintf_lost(union perf_event
*event
, FILE *fp
)
1440 return fprintf(fp
, " lost %" PRIu64
"\n", event
->lost
.lost
);
1443 size_t perf_event__fprintf(union perf_event
*event
, FILE *fp
)
1445 size_t ret
= fprintf(fp
, "PERF_RECORD_%s",
1446 perf_event__name(event
->header
.type
));
1448 switch (event
->header
.type
) {
1449 case PERF_RECORD_COMM
:
1450 ret
+= perf_event__fprintf_comm(event
, fp
);
1452 case PERF_RECORD_FORK
:
1453 case PERF_RECORD_EXIT
:
1454 ret
+= perf_event__fprintf_task(event
, fp
);
1456 case PERF_RECORD_MMAP
:
1457 ret
+= perf_event__fprintf_mmap(event
, fp
);
1459 case PERF_RECORD_NAMESPACES
:
1460 ret
+= perf_event__fprintf_namespaces(event
, fp
);
1462 case PERF_RECORD_MMAP2
:
1463 ret
+= perf_event__fprintf_mmap2(event
, fp
);
1465 case PERF_RECORD_AUX
:
1466 ret
+= perf_event__fprintf_aux(event
, fp
);
1468 case PERF_RECORD_ITRACE_START
:
1469 ret
+= perf_event__fprintf_itrace_start(event
, fp
);
1471 case PERF_RECORD_SWITCH
:
1472 case PERF_RECORD_SWITCH_CPU_WIDE
:
1473 ret
+= perf_event__fprintf_switch(event
, fp
);
1475 case PERF_RECORD_LOST
:
1476 ret
+= perf_event__fprintf_lost(event
, fp
);
1479 ret
+= fprintf(fp
, "\n");
1485 int perf_event__process(struct perf_tool
*tool __maybe_unused
,
1486 union perf_event
*event
,
1487 struct perf_sample
*sample
,
1488 struct machine
*machine
)
1490 return machine__process_event(machine
, event
, sample
);
1493 void thread__find_addr_map(struct thread
*thread
, u8 cpumode
,
1494 enum map_type type
, u64 addr
,
1495 struct addr_location
*al
)
1497 struct map_groups
*mg
= thread
->mg
;
1498 struct machine
*machine
= mg
->machine
;
1499 bool load_map
= false;
1501 al
->machine
= machine
;
1502 al
->thread
= thread
;
1504 al
->cpumode
= cpumode
;
1507 if (machine
== NULL
) {
1512 if (cpumode
== PERF_RECORD_MISC_KERNEL
&& perf_host
) {
1514 mg
= &machine
->kmaps
;
1516 } else if (cpumode
== PERF_RECORD_MISC_USER
&& perf_host
) {
1518 } else if (cpumode
== PERF_RECORD_MISC_GUEST_KERNEL
&& perf_guest
) {
1520 mg
= &machine
->kmaps
;
1522 } else if (cpumode
== PERF_RECORD_MISC_GUEST_USER
&& perf_guest
) {
1528 if ((cpumode
== PERF_RECORD_MISC_GUEST_USER
||
1529 cpumode
== PERF_RECORD_MISC_GUEST_KERNEL
) &&
1531 al
->filtered
|= (1 << HIST_FILTER__GUEST
);
1532 if ((cpumode
== PERF_RECORD_MISC_USER
||
1533 cpumode
== PERF_RECORD_MISC_KERNEL
) &&
1535 al
->filtered
|= (1 << HIST_FILTER__HOST
);
1540 al
->map
= map_groups__find(mg
, type
, al
->addr
);
1541 if (al
->map
== NULL
) {
1543 * If this is outside of all known maps, and is a negative
1544 * address, try to look it up in the kernel dso, as it might be
1545 * a vsyscall or vdso (which executes in user-mode).
1547 * XXX This is nasty, we should have a symbol list in the
1548 * "[vdso]" dso, but for now lets use the old trick of looking
1549 * in the whole kernel symbol list.
1551 if (cpumode
== PERF_RECORD_MISC_USER
&& machine
&&
1552 mg
!= &machine
->kmaps
&&
1553 machine__kernel_ip(machine
, al
->addr
)) {
1554 mg
= &machine
->kmaps
;
1560 * Kernel maps might be changed when loading symbols so loading
1561 * must be done prior to using kernel maps.
1565 al
->addr
= al
->map
->map_ip(al
->map
, al
->addr
);
1569 void thread__find_addr_location(struct thread
*thread
,
1570 u8 cpumode
, enum map_type type
, u64 addr
,
1571 struct addr_location
*al
)
1573 thread__find_addr_map(thread
, cpumode
, type
, addr
, al
);
1574 if (al
->map
!= NULL
)
1575 al
->sym
= map__find_symbol(al
->map
, al
->addr
);
1581 * Callers need to drop the reference to al->thread, obtained in
1582 * machine__findnew_thread()
1584 int machine__resolve(struct machine
*machine
, struct addr_location
*al
,
1585 struct perf_sample
*sample
)
1587 struct thread
*thread
= machine__findnew_thread(machine
, sample
->pid
,
1593 dump_printf(" ... thread: %s:%d\n", thread__comm_str(thread
), thread
->tid
);
1595 * Have we already created the kernel maps for this machine?
1597 * This should have happened earlier, when we processed the kernel MMAP
1598 * events, but for older perf.data files there was no such thing, so do
1601 if (sample
->cpumode
== PERF_RECORD_MISC_KERNEL
&&
1602 machine__kernel_map(machine
) == NULL
)
1603 machine__create_kernel_maps(machine
);
1605 thread__find_addr_map(thread
, sample
->cpumode
, MAP__FUNCTION
, sample
->ip
, al
);
1606 dump_printf(" ...... dso: %s\n",
1607 al
->map
? al
->map
->dso
->long_name
:
1608 al
->level
== 'H' ? "[hypervisor]" : "<not found>");
1610 if (thread__is_filtered(thread
))
1611 al
->filtered
|= (1 << HIST_FILTER__THREAD
);
1614 al
->cpu
= sample
->cpu
;
1619 struct perf_env
*env
= machine
->env
;
1621 if (env
&& env
->cpu
)
1622 al
->socket
= env
->cpu
[al
->cpu
].socket_id
;
1626 struct dso
*dso
= al
->map
->dso
;
1628 if (symbol_conf
.dso_list
&&
1629 (!dso
|| !(strlist__has_entry(symbol_conf
.dso_list
,
1631 (dso
->short_name
!= dso
->long_name
&&
1632 strlist__has_entry(symbol_conf
.dso_list
,
1633 dso
->long_name
))))) {
1634 al
->filtered
|= (1 << HIST_FILTER__DSO
);
1637 al
->sym
= map__find_symbol(al
->map
, al
->addr
);
1640 if (symbol_conf
.sym_list
&&
1641 (!al
->sym
|| !strlist__has_entry(symbol_conf
.sym_list
,
1643 al
->filtered
|= (1 << HIST_FILTER__SYMBOL
);
1650 * The preprocess_sample method will return with reference counts for the
1651 * in it, when done using (and perhaps getting ref counts if needing to
1652 * keep a pointer to one of those entries) it must be paired with
1653 * addr_location__put(), so that the refcounts can be decremented.
1655 void addr_location__put(struct addr_location
*al
)
1657 thread__zput(al
->thread
);
1660 bool is_bts_event(struct perf_event_attr
*attr
)
1662 return attr
->type
== PERF_TYPE_HARDWARE
&&
1663 (attr
->config
& PERF_COUNT_HW_BRANCH_INSTRUCTIONS
) &&
1664 attr
->sample_period
== 1;
1667 bool sample_addr_correlates_sym(struct perf_event_attr
*attr
)
1669 if (attr
->type
== PERF_TYPE_SOFTWARE
&&
1670 (attr
->config
== PERF_COUNT_SW_PAGE_FAULTS
||
1671 attr
->config
== PERF_COUNT_SW_PAGE_FAULTS_MIN
||
1672 attr
->config
== PERF_COUNT_SW_PAGE_FAULTS_MAJ
))
1675 if (is_bts_event(attr
))
1681 void thread__resolve(struct thread
*thread
, struct addr_location
*al
,
1682 struct perf_sample
*sample
)
1684 thread__find_addr_map(thread
, sample
->cpumode
, MAP__FUNCTION
, sample
->addr
, al
);
1686 thread__find_addr_map(thread
, sample
->cpumode
, MAP__VARIABLE
,
1689 al
->cpu
= sample
->cpu
;
1693 al
->sym
= map__find_symbol(al
->map
, al
->addr
);