1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_MACHINE_H
3 #define __PERF_MACHINE_H
6 #include <linux/rbtree.h>
20 /* Native host kernel uses -1 as pid index in machine */
21 #define HOST_KERNEL_ID (-1)
22 #define DEFAULT_GUEST_KERNEL_ID (0)
24 extern const char *ref_reloc_sym_names
[];
28 #define THREADS__TABLE_BITS 8
29 #define THREADS__TABLE_SIZE (1 << THREADS__TABLE_BITS)
32 struct rb_root entries
;
33 struct rw_semaphore lock
;
35 struct list_head dead
;
36 struct thread
*last_match
;
40 struct rb_node rb_node
;
44 bool kptr_restrict_warned
;
46 struct threads threads
[THREADS__TABLE_SIZE
];
47 struct vdso_info
*vdso_info
;
50 struct map_groups kmaps
;
51 struct map
*vmlinux_maps
[MAP__NR_TYPES
];
54 union { /* Tool specific area */
60 static inline struct threads
*machine__threads(struct machine
*machine
, pid_t tid
)
62 /* Cast it to handle tid == -1 */
63 return &machine
->threads
[(unsigned int)tid
% THREADS__TABLE_SIZE
];
67 struct map
*__machine__kernel_map(struct machine
*machine
, enum map_type type
)
69 return machine
->vmlinux_maps
[type
];
73 struct map
*machine__kernel_map(struct machine
*machine
)
75 return __machine__kernel_map(machine
, MAP__FUNCTION
);
78 int machine__get_kernel_start(struct machine
*machine
);
80 static inline u64
machine__kernel_start(struct machine
*machine
)
82 if (!machine
->kernel_start
)
83 machine__get_kernel_start(machine
);
84 return machine
->kernel_start
;
87 static inline bool machine__kernel_ip(struct machine
*machine
, u64 ip
)
89 u64 kernel_start
= machine__kernel_start(machine
);
91 return ip
>= kernel_start
;
94 struct thread
*machine__find_thread(struct machine
*machine
, pid_t pid
,
96 struct comm
*machine__thread_exec_comm(struct machine
*machine
,
97 struct thread
*thread
);
99 int machine__process_comm_event(struct machine
*machine
, union perf_event
*event
,
100 struct perf_sample
*sample
);
101 int machine__process_exit_event(struct machine
*machine
, union perf_event
*event
,
102 struct perf_sample
*sample
);
103 int machine__process_fork_event(struct machine
*machine
, union perf_event
*event
,
104 struct perf_sample
*sample
);
105 int machine__process_lost_event(struct machine
*machine
, union perf_event
*event
,
106 struct perf_sample
*sample
);
107 int machine__process_lost_samples_event(struct machine
*machine
, union perf_event
*event
,
108 struct perf_sample
*sample
);
109 int machine__process_aux_event(struct machine
*machine
,
110 union perf_event
*event
);
111 int machine__process_itrace_start_event(struct machine
*machine
,
112 union perf_event
*event
);
113 int machine__process_switch_event(struct machine
*machine
,
114 union perf_event
*event
);
115 int machine__process_namespaces_event(struct machine
*machine
,
116 union perf_event
*event
,
117 struct perf_sample
*sample
);
118 int machine__process_mmap_event(struct machine
*machine
, union perf_event
*event
,
119 struct perf_sample
*sample
);
120 int machine__process_mmap2_event(struct machine
*machine
, union perf_event
*event
,
121 struct perf_sample
*sample
);
122 int machine__process_event(struct machine
*machine
, union perf_event
*event
,
123 struct perf_sample
*sample
);
125 typedef void (*machine__process_t
)(struct machine
*machine
, void *data
);
129 struct rb_root guests
;
132 void machines__init(struct machines
*machines
);
133 void machines__exit(struct machines
*machines
);
135 void machines__process_guests(struct machines
*machines
,
136 machine__process_t process
, void *data
);
138 struct machine
*machines__add(struct machines
*machines
, pid_t pid
,
139 const char *root_dir
);
140 struct machine
*machines__find_host(struct machines
*machines
);
141 struct machine
*machines__find(struct machines
*machines
, pid_t pid
);
142 struct machine
*machines__findnew(struct machines
*machines
, pid_t pid
);
144 void machines__set_id_hdr_size(struct machines
*machines
, u16 id_hdr_size
);
145 char *machine__mmap_name(struct machine
*machine
, char *bf
, size_t size
);
147 void machines__set_comm_exec(struct machines
*machines
, bool comm_exec
);
149 struct machine
*machine__new_host(void);
150 struct machine
*machine__new_kallsyms(void);
151 int machine__init(struct machine
*machine
, const char *root_dir
, pid_t pid
);
152 void machine__exit(struct machine
*machine
);
153 void machine__delete_threads(struct machine
*machine
);
154 void machine__delete(struct machine
*machine
);
155 void machine__remove_thread(struct machine
*machine
, struct thread
*th
);
157 struct branch_info
*sample__resolve_bstack(struct perf_sample
*sample
,
158 struct addr_location
*al
);
159 struct mem_info
*sample__resolve_mem(struct perf_sample
*sample
,
160 struct addr_location
*al
);
162 struct callchain_cursor
;
164 int thread__resolve_callchain(struct thread
*thread
,
165 struct callchain_cursor
*cursor
,
166 struct perf_evsel
*evsel
,
167 struct perf_sample
*sample
,
168 struct symbol
**parent
,
169 struct addr_location
*root_al
,
173 * Default guest kernel is defined by parameter --guestkallsyms
176 static inline bool machine__is_default_guest(struct machine
*machine
)
178 return machine
? machine
->pid
== DEFAULT_GUEST_KERNEL_ID
: false;
181 static inline bool machine__is_host(struct machine
*machine
)
183 return machine
? machine
->pid
== HOST_KERNEL_ID
: false;
186 struct thread
*__machine__findnew_thread(struct machine
*machine
, pid_t pid
, pid_t tid
);
187 struct thread
*machine__findnew_thread(struct machine
*machine
, pid_t pid
, pid_t tid
);
189 struct dso
*machine__findnew_dso(struct machine
*machine
, const char *filename
);
191 size_t machine__fprintf(struct machine
*machine
, FILE *fp
);
194 struct symbol
*machine__find_kernel_symbol(struct machine
*machine
,
195 enum map_type type
, u64 addr
,
198 return map_groups__find_symbol(&machine
->kmaps
, type
, addr
, mapp
);
202 struct symbol
*machine__find_kernel_symbol_by_name(struct machine
*machine
,
203 enum map_type type
, const char *name
,
206 return map_groups__find_symbol_by_name(&machine
->kmaps
, type
, name
, mapp
);
210 struct symbol
*machine__find_kernel_function(struct machine
*machine
, u64 addr
,
213 return machine__find_kernel_symbol(machine
, MAP__FUNCTION
, addr
,
218 struct symbol
*machine__find_kernel_function_by_name(struct machine
*machine
,
222 return map_groups__find_function_by_name(&machine
->kmaps
, name
, mapp
);
225 struct map
*machine__findnew_module_map(struct machine
*machine
, u64 start
,
226 const char *filename
);
227 int arch__fix_module_text_start(u64
*start
, const char *name
);
229 int __machine__load_kallsyms(struct machine
*machine
, const char *filename
,
230 enum map_type type
, bool no_kcore
);
231 int machine__load_kallsyms(struct machine
*machine
, const char *filename
,
233 int machine__load_vmlinux_path(struct machine
*machine
, enum map_type type
);
235 size_t machine__fprintf_dsos_buildid(struct machine
*machine
, FILE *fp
,
236 bool (skip
)(struct dso
*dso
, int parm
), int parm
);
237 size_t machines__fprintf_dsos(struct machines
*machines
, FILE *fp
);
238 size_t machines__fprintf_dsos_buildid(struct machines
*machines
, FILE *fp
,
239 bool (skip
)(struct dso
*dso
, int parm
), int parm
);
241 void machine__destroy_kernel_maps(struct machine
*machine
);
242 int __machine__create_kernel_maps(struct machine
*machine
, struct dso
*kernel
);
243 int machine__create_kernel_maps(struct machine
*machine
);
245 int machines__create_kernel_maps(struct machines
*machines
, pid_t pid
);
246 int machines__create_guest_kernel_maps(struct machines
*machines
);
247 void machines__destroy_kernel_maps(struct machines
*machines
);
249 size_t machine__fprintf_vmlinux_path(struct machine
*machine
, FILE *fp
);
251 int machine__for_each_thread(struct machine
*machine
,
252 int (*fn
)(struct thread
*thread
, void *p
),
254 int machines__for_each_thread(struct machines
*machines
,
255 int (*fn
)(struct thread
*thread
, void *p
),
258 int __machine__synthesize_threads(struct machine
*machine
, struct perf_tool
*tool
,
259 struct target
*target
, struct thread_map
*threads
,
260 perf_event__handler_t process
, bool data_mmap
,
261 unsigned int proc_map_timeout
,
262 unsigned int nr_threads_synthesize
);
264 int machine__synthesize_threads(struct machine
*machine
, struct target
*target
,
265 struct thread_map
*threads
, bool data_mmap
,
266 unsigned int proc_map_timeout
,
267 unsigned int nr_threads_synthesize
)
269 return __machine__synthesize_threads(machine
, NULL
, target
, threads
,
270 perf_event__process
, data_mmap
,
272 nr_threads_synthesize
);
275 pid_t
machine__get_current_tid(struct machine
*machine
, int cpu
);
276 int machine__set_current_tid(struct machine
*machine
, int cpu
, pid_t pid
,
279 * For use with libtraceevent's pevent_set_function_resolver()
281 char *machine__resolve_kernel_addr(void *vmachine
, unsigned long long *addrp
, char **modp
);
283 #endif /* __PERF_MACHINE_H */