blob: cf826eca3aafd7e65379c8caa001bf43e685881b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Arnaldo Carvalho de Melo76b31a22017-04-18 12:26:44 -03002#include <dirent.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -03003#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -03004#include <inttypes.h>
Arnaldo Carvalho de Melo1eae20c2017-04-18 12:33:30 -03005#include <regex.h>
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03006#include "callchain.h"
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03007#include "debug.h"
8#include "event.h"
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03009#include "evsel.h"
10#include "hist.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030011#include "machine.h"
12#include "map.h"
Arnaldo Carvalho de Melodaecf9e2019-01-28 00:03:34 +010013#include "symbol.h"
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030014#include "sort.h"
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030015#include "strlist.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030016#include "thread.h"
Adrian Hunterd027b642014-07-23 14:23:00 +030017#include "vdso.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030018#include <stdbool.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030019#include <sys/types.h>
20#include <sys/stat.h>
21#include <unistd.h>
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030022#include "unwind.h"
Andi Kleen8b7bad52014-11-12 18:05:20 -080023#include "linux/hash.h"
Hari Bathinif3b36142017-03-08 02:11:43 +053024#include "asm/bug.h"
Song Liu45178a92019-01-17 08:15:18 -080025#include "bpf-event.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030026
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030027#include <linux/ctype.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030028#include <symbol/kallsyms.h>
Arnaldo Carvalho de Melo0f476f22018-04-26 11:30:50 -030029#include <linux/mman.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -030030#include <linux/zalloc.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030031
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030032static void __machine__remove_thread(struct machine *machine, struct thread *th, bool lock);
33
Arnaldo Carvalho de Meloe167f992014-10-14 15:07:48 -030034static void dsos__init(struct dsos *dsos)
35{
36 INIT_LIST_HEAD(&dsos->head);
37 dsos->root = RB_ROOT;
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -030038 init_rwsem(&dsos->lock);
Arnaldo Carvalho de Meloe167f992014-10-14 15:07:48 -030039}
40
Kan Liang91e467b2017-09-10 19:23:14 -070041static void machine__threads_init(struct machine *machine)
42{
43 int i;
44
45 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
46 struct threads *threads = &machine->threads[i];
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -080047 threads->entries = RB_ROOT_CACHED;
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -030048 init_rwsem(&threads->lock);
Kan Liang91e467b2017-09-10 19:23:14 -070049 threads->nr = 0;
50 INIT_LIST_HEAD(&threads->dead);
51 threads->last_match = NULL;
52 }
53}
54
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +010055static int machine__set_mmap_name(struct machine *machine)
56{
Jiri Olsac1925242018-03-12 16:24:06 +010057 if (machine__is_host(machine))
58 machine->mmap_name = strdup("[kernel.kallsyms]");
59 else if (machine__is_default_guest(machine))
60 machine->mmap_name = strdup("[guest.kernel.kallsyms]");
61 else if (asprintf(&machine->mmap_name, "[guest.kernel.kallsyms.%d]",
62 machine->pid) < 0)
63 machine->mmap_name = NULL;
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +010064
65 return machine->mmap_name ? 0 : -ENOMEM;
66}
67
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030068int machine__init(struct machine *machine, const char *root_dir, pid_t pid)
69{
Jiri Olsa81f981d2018-02-15 13:26:29 +010070 int err = -ENOMEM;
71
Wang Nan93b0ba32015-12-08 02:25:44 +000072 memset(machine, 0, sizeof(*machine));
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -030073 map_groups__init(&machine->kmaps, machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030074 RB_CLEAR_NODE(&machine->rb_node);
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -030075 dsos__init(&machine->dsos);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030076
Kan Liang91e467b2017-09-10 19:23:14 -070077 machine__threads_init(machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030078
Adrian Hunterd027b642014-07-23 14:23:00 +030079 machine->vdso_info = NULL;
Arnaldo Carvalho de Melo4cde9982015-09-09 12:25:00 -030080 machine->env = NULL;
Adrian Hunterd027b642014-07-23 14:23:00 +030081
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030082 machine->pid = pid;
83
Jiri Olsa14bd6d22014-01-07 13:47:19 +010084 machine->id_hdr_size = 0;
Arnaldo Carvalho de Melocaf8a0d2016-05-17 11:56:24 -030085 machine->kptr_restrict_warned = false;
Adrian Huntercfe1c412014-07-31 09:00:45 +030086 machine->comm_exec = false;
Adrian Hunterfbe2af42014-08-15 22:08:39 +030087 machine->kernel_start = 0;
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -030088 machine->vmlinux_map = NULL;
Masami Hiramatsucc1121a2015-12-09 11:11:33 +090089
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030090 machine->root_dir = strdup(root_dir);
91 if (machine->root_dir == NULL)
92 return -ENOMEM;
93
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +010094 if (machine__set_mmap_name(machine))
95 goto out;
96
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030097 if (pid != HOST_KERNEL_ID) {
Adrian Hunter1fcb8762014-07-14 13:02:25 +030098 struct thread *thread = machine__findnew_thread(machine, -1,
Adrian Hunter314add62013-08-27 11:23:03 +030099 pid);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300100 char comm[64];
101
102 if (thread == NULL)
Jiri Olsa81f981d2018-02-15 13:26:29 +0100103 goto out;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300104
105 snprintf(comm, sizeof(comm), "[guest/%d]", pid);
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200106 thread__set_comm(thread, comm, 0);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300107 thread__put(thread);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300108 }
109
Adrian Hunterb9d266b2014-07-22 16:17:25 +0300110 machine->current_tid = NULL;
Jiri Olsa81f981d2018-02-15 13:26:29 +0100111 err = 0;
Adrian Hunterb9d266b2014-07-22 16:17:25 +0300112
Jiri Olsa81f981d2018-02-15 13:26:29 +0100113out:
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +0100114 if (err) {
Jiri Olsa81f981d2018-02-15 13:26:29 +0100115 zfree(&machine->root_dir);
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +0100116 zfree(&machine->mmap_name);
117 }
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300118 return 0;
119}
120
David Ahern8fb598e2013-09-28 13:13:00 -0600121struct machine *machine__new_host(void)
122{
123 struct machine *machine = malloc(sizeof(*machine));
124
125 if (machine != NULL) {
126 machine__init(machine, "", HOST_KERNEL_ID);
127
128 if (machine__create_kernel_maps(machine) < 0)
129 goto out_delete;
130 }
131
132 return machine;
133out_delete:
134 free(machine);
135 return NULL;
136}
137
Arnaldo Carvalho de Melo7d132ca2017-01-05 15:31:48 -0300138struct machine *machine__new_kallsyms(void)
139{
140 struct machine *machine = machine__new_host();
141 /*
142 * FIXME:
Ingo Molnaradba1632018-12-03 11:22:00 +0100143 * 1) We should switch to machine__load_kallsyms(), i.e. not explicitly
Arnaldo Carvalho de Melo7d132ca2017-01-05 15:31:48 -0300144 * ask for not using the kcore parsing code, once this one is fixed
145 * to create a map per module.
146 */
Arnaldo Carvalho de Melo329f0ad2018-04-25 11:40:32 -0300147 if (machine && machine__load_kallsyms(machine, "/proc/kallsyms") <= 0) {
Arnaldo Carvalho de Melo7d132ca2017-01-05 15:31:48 -0300148 machine__delete(machine);
149 machine = NULL;
150 }
151
152 return machine;
153}
154
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300155static void dsos__purge(struct dsos *dsos)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300156{
157 struct dso *pos, *n;
158
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300159 down_write(&dsos->lock);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300160
Waiman Long8fa7d872014-09-29 16:07:28 -0400161 list_for_each_entry_safe(pos, n, &dsos->head, node) {
Waiman Long4598a0a2014-09-30 13:36:15 -0400162 RB_CLEAR_NODE(&pos->rb_node);
Adrian Huntere266a752015-11-13 11:48:30 +0200163 pos->root = NULL;
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300164 list_del_init(&pos->node);
165 dso__put(pos);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300166 }
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300167
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300168 up_write(&dsos->lock);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300169}
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300170
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300171static void dsos__exit(struct dsos *dsos)
172{
173 dsos__purge(dsos);
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300174 exit_rwsem(&dsos->lock);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300175}
176
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300177void machine__delete_threads(struct machine *machine)
178{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300179 struct rb_node *nd;
Kan Liang91e467b2017-09-10 19:23:14 -0700180 int i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300181
Kan Liang91e467b2017-09-10 19:23:14 -0700182 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
183 struct threads *threads = &machine->threads[i];
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300184 down_write(&threads->lock);
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800185 nd = rb_first_cached(&threads->entries);
Kan Liang91e467b2017-09-10 19:23:14 -0700186 while (nd) {
187 struct thread *t = rb_entry(nd, struct thread, rb_node);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300188
Kan Liang91e467b2017-09-10 19:23:14 -0700189 nd = rb_next(nd);
190 __machine__remove_thread(machine, t, false);
191 }
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300192 up_write(&threads->lock);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300193 }
194}
195
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300196void machine__exit(struct machine *machine)
197{
Kan Liang91e467b2017-09-10 19:23:14 -0700198 int i;
199
Arnaldo Carvalho de Melo19993b82017-11-13 16:06:29 -0300200 if (machine == NULL)
201 return;
202
Masami Hiramatsuebe97292015-11-18 15:40:24 +0900203 machine__destroy_kernel_maps(machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300204 map_groups__exit(&machine->kmaps);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300205 dsos__exit(&machine->dsos);
Arnaldo Carvalho de Melo9a4388c2015-05-29 11:54:08 -0300206 machine__exit_vdso(machine);
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300207 zfree(&machine->root_dir);
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +0100208 zfree(&machine->mmap_name);
Adrian Hunterb9d266b2014-07-22 16:17:25 +0300209 zfree(&machine->current_tid);
Kan Liang91e467b2017-09-10 19:23:14 -0700210
211 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
212 struct threads *threads = &machine->threads[i];
Arnaldo Carvalho de Melo4c00af02019-07-05 12:11:35 -0300213 struct thread *thread, *n;
214 /*
215 * Forget about the dead, at this point whatever threads were
216 * left in the dead lists better have a reference count taken
217 * by who is using them, and then, when they drop those references
218 * and it finally hits zero, thread__put() will check and see that
219 * its not in the dead threads list and will not try to remove it
220 * from there, just calling thread__delete() straight away.
221 */
222 list_for_each_entry_safe(thread, n, &threads->dead, node)
223 list_del_init(&thread->node);
224
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300225 exit_rwsem(&threads->lock);
Kan Liang91e467b2017-09-10 19:23:14 -0700226 }
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300227}
228
229void machine__delete(struct machine *machine)
230{
Arnaldo Carvalho de Melo32ca6782016-06-22 10:19:11 -0300231 if (machine) {
232 machine__exit(machine);
233 free(machine);
234 }
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300235}
236
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300237void machines__init(struct machines *machines)
238{
239 machine__init(&machines->host, "", HOST_KERNEL_ID);
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800240 machines->guests = RB_ROOT_CACHED;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300241}
242
243void machines__exit(struct machines *machines)
244{
245 machine__exit(&machines->host);
246 /* XXX exit guest */
247}
248
249struct machine *machines__add(struct machines *machines, pid_t pid,
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300250 const char *root_dir)
251{
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800252 struct rb_node **p = &machines->guests.rb_root.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300253 struct rb_node *parent = NULL;
254 struct machine *pos, *machine = malloc(sizeof(*machine));
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800255 bool leftmost = true;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300256
257 if (machine == NULL)
258 return NULL;
259
260 if (machine__init(machine, root_dir, pid) != 0) {
261 free(machine);
262 return NULL;
263 }
264
265 while (*p != NULL) {
266 parent = *p;
267 pos = rb_entry(parent, struct machine, rb_node);
268 if (pid < pos->pid)
269 p = &(*p)->rb_left;
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800270 else {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300271 p = &(*p)->rb_right;
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800272 leftmost = false;
273 }
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300274 }
275
276 rb_link_node(&machine->rb_node, parent, p);
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800277 rb_insert_color_cached(&machine->rb_node, &machines->guests, leftmost);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300278
279 return machine;
280}
281
Adrian Huntercfe1c412014-07-31 09:00:45 +0300282void machines__set_comm_exec(struct machines *machines, bool comm_exec)
283{
284 struct rb_node *nd;
285
286 machines->host.comm_exec = comm_exec;
287
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800288 for (nd = rb_first_cached(&machines->guests); nd; nd = rb_next(nd)) {
Adrian Huntercfe1c412014-07-31 09:00:45 +0300289 struct machine *machine = rb_entry(nd, struct machine, rb_node);
290
291 machine->comm_exec = comm_exec;
292 }
293}
294
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300295struct machine *machines__find(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300296{
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800297 struct rb_node **p = &machines->guests.rb_root.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300298 struct rb_node *parent = NULL;
299 struct machine *machine;
300 struct machine *default_machine = NULL;
301
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300302 if (pid == HOST_KERNEL_ID)
303 return &machines->host;
304
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300305 while (*p != NULL) {
306 parent = *p;
307 machine = rb_entry(parent, struct machine, rb_node);
308 if (pid < machine->pid)
309 p = &(*p)->rb_left;
310 else if (pid > machine->pid)
311 p = &(*p)->rb_right;
312 else
313 return machine;
314 if (!machine->pid)
315 default_machine = machine;
316 }
317
318 return default_machine;
319}
320
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300321struct machine *machines__findnew(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300322{
323 char path[PATH_MAX];
324 const char *root_dir = "";
325 struct machine *machine = machines__find(machines, pid);
326
327 if (machine && (machine->pid == pid))
328 goto out;
329
330 if ((pid != HOST_KERNEL_ID) &&
331 (pid != DEFAULT_GUEST_KERNEL_ID) &&
332 (symbol_conf.guestmount)) {
333 sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
334 if (access(path, R_OK)) {
335 static struct strlist *seen;
336
337 if (!seen)
Arnaldo Carvalho de Melo4a77e212015-07-20 12:13:34 -0300338 seen = strlist__new(NULL, NULL);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300339
340 if (!strlist__has_entry(seen, path)) {
341 pr_err("Can't access file %s\n", path);
342 strlist__add(seen, path);
343 }
344 machine = NULL;
345 goto out;
346 }
347 root_dir = path;
348 }
349
350 machine = machines__add(machines, pid, root_dir);
351out:
352 return machine;
353}
354
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300355void machines__process_guests(struct machines *machines,
356 machine__process_t process, void *data)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300357{
358 struct rb_node *nd;
359
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800360 for (nd = rb_first_cached(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300361 struct machine *pos = rb_entry(nd, struct machine, rb_node);
362 process(pos, data);
363 }
364}
365
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300366void machines__set_id_hdr_size(struct machines *machines, u16 id_hdr_size)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300367{
368 struct rb_node *node;
369 struct machine *machine;
370
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300371 machines->host.id_hdr_size = id_hdr_size;
372
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800373 for (node = rb_first_cached(&machines->guests); node;
374 node = rb_next(node)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300375 machine = rb_entry(node, struct machine, rb_node);
376 machine->id_hdr_size = id_hdr_size;
377 }
378
379 return;
380}
381
Adrian Hunter29ce3612014-07-16 11:07:13 +0300382static void machine__update_thread_pid(struct machine *machine,
383 struct thread *th, pid_t pid)
384{
385 struct thread *leader;
386
387 if (pid == th->pid_ || pid == -1 || th->pid_ != -1)
388 return;
389
390 th->pid_ = pid;
391
392 if (th->pid_ == th->tid)
393 return;
394
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300395 leader = __machine__findnew_thread(machine, th->pid_, th->pid_);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300396 if (!leader)
397 goto out_err;
398
399 if (!leader->mg)
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -0300400 leader->mg = map_groups__new(machine);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300401
402 if (!leader->mg)
403 goto out_err;
404
405 if (th->mg == leader->mg)
406 return;
407
408 if (th->mg) {
409 /*
410 * Maps are created from MMAP events which provide the pid and
411 * tid. Consequently there never should be any maps on a thread
412 * with an unknown pid. Just print an error if there are.
413 */
414 if (!map_groups__empty(th->mg))
415 pr_err("Discarding thread maps for %d:%d\n",
416 th->pid_, th->tid);
Arnaldo Carvalho de Melo8e160b22015-05-19 20:07:14 -0300417 map_groups__put(th->mg);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300418 }
419
420 th->mg = map_groups__get(leader->mg);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300421out_put:
422 thread__put(leader);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300423 return;
Adrian Hunter29ce3612014-07-16 11:07:13 +0300424out_err:
425 pr_err("Failed to join map groups for %d:%d\n", th->pid_, th->tid);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300426 goto out_put;
Adrian Hunter29ce3612014-07-16 11:07:13 +0300427}
428
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300429/*
Jiri Olsaf8b2ebb2018-07-19 16:33:42 +0200430 * Front-end cache - TID lookups come in blocks,
431 * so most of the time we dont have to look up
432 * the full rbtree:
433 */
434static struct thread*
Jiri Olsab57334b2018-07-19 16:33:44 +0200435__threads__get_last_match(struct threads *threads, struct machine *machine,
436 int pid, int tid)
Jiri Olsaf8b2ebb2018-07-19 16:33:42 +0200437{
438 struct thread *th;
439
440 th = threads->last_match;
441 if (th != NULL) {
442 if (th->tid == tid) {
443 machine__update_thread_pid(machine, th, pid);
444 return thread__get(th);
445 }
446
447 threads->last_match = NULL;
448 }
449
450 return NULL;
451}
452
Jiri Olsab57334b2018-07-19 16:33:44 +0200453static struct thread*
454threads__get_last_match(struct threads *threads, struct machine *machine,
455 int pid, int tid)
456{
457 struct thread *th = NULL;
458
459 if (perf_singlethreaded)
460 th = __threads__get_last_match(threads, machine, pid, tid);
461
462 return th;
463}
464
465static void
466__threads__set_last_match(struct threads *threads, struct thread *th)
467{
468 threads->last_match = th;
469}
470
Jiri Olsa67fda0f2018-07-19 16:33:43 +0200471static void
472threads__set_last_match(struct threads *threads, struct thread *th)
473{
Jiri Olsab57334b2018-07-19 16:33:44 +0200474 if (perf_singlethreaded)
475 __threads__set_last_match(threads, th);
Jiri Olsa67fda0f2018-07-19 16:33:43 +0200476}
477
Jiri Olsaf8b2ebb2018-07-19 16:33:42 +0200478/*
Adam Buchbinderbd1a0be52016-02-24 10:02:25 -0800479 * Caller must eventually drop thread->refcnt returned with a successful
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300480 * lookup/new thread inserted.
481 */
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300482static struct thread *____machine__findnew_thread(struct machine *machine,
Arnaldo Carvalho de Melo75e45e42017-09-14 16:16:34 -0300483 struct threads *threads,
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300484 pid_t pid, pid_t tid,
485 bool create)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300486{
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800487 struct rb_node **p = &threads->entries.rb_root.rb_node;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300488 struct rb_node *parent = NULL;
489 struct thread *th;
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800490 bool leftmost = true;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300491
Jiri Olsaf8b2ebb2018-07-19 16:33:42 +0200492 th = threads__get_last_match(threads, machine, pid, tid);
493 if (th)
494 return th;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300495
496 while (*p != NULL) {
497 parent = *p;
498 th = rb_entry(parent, struct thread, rb_node);
499
Adrian Hunter38051232013-07-04 16:20:31 +0300500 if (th->tid == tid) {
Jiri Olsa67fda0f2018-07-19 16:33:43 +0200501 threads__set_last_match(threads, th);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300502 machine__update_thread_pid(machine, th, pid);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300503 return thread__get(th);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300504 }
505
Adrian Hunter38051232013-07-04 16:20:31 +0300506 if (tid < th->tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300507 p = &(*p)->rb_left;
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800508 else {
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300509 p = &(*p)->rb_right;
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800510 leftmost = false;
511 }
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300512 }
513
514 if (!create)
515 return NULL;
516
Adrian Hunter99d725f2013-08-26 16:00:19 +0300517 th = thread__new(pid, tid);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300518 if (th != NULL) {
519 rb_link_node(&th->rb_node, parent, p);
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800520 rb_insert_color_cached(&th->rb_node, &threads->entries, leftmost);
Jiri Olsacddcef62014-04-09 20:54:29 +0200521
522 /*
523 * We have to initialize map_groups separately
524 * after rb tree is updated.
525 *
526 * The reason is that we call machine__findnew_thread
527 * within thread__init_map_groups to find the thread
528 * leader and that would screwed the rb tree.
529 */
Adrian Hunter418029b2014-07-16 10:19:44 +0300530 if (thread__init_map_groups(th, machine)) {
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800531 rb_erase_cached(&th->rb_node, &threads->entries);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300532 RB_CLEAR_NODE(&th->rb_node);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300533 thread__put(th);
Jiri Olsacddcef62014-04-09 20:54:29 +0200534 return NULL;
Adrian Hunter418029b2014-07-16 10:19:44 +0300535 }
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300536 /*
537 * It is now in the rbtree, get a ref
538 */
539 thread__get(th);
Jiri Olsa67fda0f2018-07-19 16:33:43 +0200540 threads__set_last_match(threads, th);
Kan Liang91e467b2017-09-10 19:23:14 -0700541 ++threads->nr;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300542 }
543
544 return th;
545}
546
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300547struct thread *__machine__findnew_thread(struct machine *machine, pid_t pid, pid_t tid)
548{
Arnaldo Carvalho de Melo75e45e42017-09-14 16:16:34 -0300549 return ____machine__findnew_thread(machine, machine__threads(machine, tid), pid, tid, true);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300550}
551
Adrian Hunter314add62013-08-27 11:23:03 +0300552struct thread *machine__findnew_thread(struct machine *machine, pid_t pid,
553 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300554{
Kan Liang91e467b2017-09-10 19:23:14 -0700555 struct threads *threads = machine__threads(machine, tid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300556 struct thread *th;
557
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300558 down_write(&threads->lock);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300559 th = __machine__findnew_thread(machine, pid, tid);
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300560 up_write(&threads->lock);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300561 return th;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300562}
563
Jiri Olsad75e6092014-03-14 15:00:03 +0100564struct thread *machine__find_thread(struct machine *machine, pid_t pid,
565 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300566{
Kan Liang91e467b2017-09-10 19:23:14 -0700567 struct threads *threads = machine__threads(machine, tid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300568 struct thread *th;
Kan Liang91e467b2017-09-10 19:23:14 -0700569
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300570 down_read(&threads->lock);
Arnaldo Carvalho de Melo75e45e42017-09-14 16:16:34 -0300571 th = ____machine__findnew_thread(machine, threads, pid, tid, false);
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300572 up_read(&threads->lock);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300573 return th;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300574}
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300575
Adrian Huntercfe1c412014-07-31 09:00:45 +0300576struct comm *machine__thread_exec_comm(struct machine *machine,
577 struct thread *thread)
578{
579 if (machine->comm_exec)
580 return thread__exec_comm(thread);
581 else
582 return thread__comm(thread);
583}
584
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200585int machine__process_comm_event(struct machine *machine, union perf_event *event,
586 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300587{
Adrian Hunter314add62013-08-27 11:23:03 +0300588 struct thread *thread = machine__findnew_thread(machine,
589 event->comm.pid,
590 event->comm.tid);
Adrian Hunter65de51f2014-07-31 09:00:44 +0300591 bool exec = event->header.misc & PERF_RECORD_MISC_COMM_EXEC;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300592 int err = 0;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300593
Adrian Huntercfe1c412014-07-31 09:00:45 +0300594 if (exec)
595 machine->comm_exec = true;
596
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300597 if (dump_trace)
598 perf_event__fprintf_comm(event, stdout);
599
Adrian Hunter65de51f2014-07-31 09:00:44 +0300600 if (thread == NULL ||
601 __thread__set_comm(thread, event->comm.comm, sample->time, exec)) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300602 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300603 err = -1;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300604 }
605
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300606 thread__put(thread);
607
608 return err;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300609}
610
Hari Bathinif3b36142017-03-08 02:11:43 +0530611int machine__process_namespaces_event(struct machine *machine __maybe_unused,
612 union perf_event *event,
613 struct perf_sample *sample __maybe_unused)
614{
615 struct thread *thread = machine__findnew_thread(machine,
616 event->namespaces.pid,
617 event->namespaces.tid);
618 int err = 0;
619
620 WARN_ONCE(event->namespaces.nr_namespaces > NR_NAMESPACES,
621 "\nWARNING: kernel seems to support more namespaces than perf"
622 " tool.\nTry updating the perf tool..\n\n");
623
624 WARN_ONCE(event->namespaces.nr_namespaces < NR_NAMESPACES,
625 "\nWARNING: perf tool seems to support more namespaces than"
626 " the kernel.\nTry updating the kernel..\n\n");
627
628 if (dump_trace)
629 perf_event__fprintf_namespaces(event, stdout);
630
631 if (thread == NULL ||
632 thread__set_namespaces(thread, sample->time, &event->namespaces)) {
633 dump_printf("problem processing PERF_RECORD_NAMESPACES, skipping event.\n");
634 err = -1;
635 }
636
637 thread__put(thread);
638
639 return err;
640}
641
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300642int machine__process_lost_event(struct machine *machine __maybe_unused,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200643 union perf_event *event, struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300644{
645 dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
646 event->lost.id, event->lost.lost);
647 return 0;
648}
649
Kan Liangc4937a92015-05-10 15:13:15 -0400650int machine__process_lost_samples_event(struct machine *machine __maybe_unused,
651 union perf_event *event, struct perf_sample *sample)
652{
653 dump_printf(": id:%" PRIu64 ": lost samples :%" PRIu64 "\n",
654 sample->id, event->lost_samples.lost);
655 return 0;
656}
657
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300658static struct dso *machine__findnew_module_dso(struct machine *machine,
659 struct kmod_path *m,
660 const char *filename)
Jiri Olsada17ea32015-02-12 22:10:52 +0100661{
662 struct dso *dso;
Jiri Olsada17ea32015-02-12 22:10:52 +0100663
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300664 down_write(&machine->dsos.lock);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300665
666 dso = __dsos__find(&machine->dsos, m->name, true);
Jiri Olsada17ea32015-02-12 22:10:52 +0100667 if (!dso) {
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300668 dso = __dsos__addnew(&machine->dsos, m->name);
Jiri Olsada17ea32015-02-12 22:10:52 +0100669 if (dso == NULL)
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300670 goto out_unlock;
Jiri Olsada17ea32015-02-12 22:10:52 +0100671
Namhyung Kim6b335e82017-05-31 21:01:04 +0900672 dso__set_module_info(dso, m, machine);
Jiri Olsaca333802015-02-17 17:29:57 +0100673 dso__set_long_name(dso, strdup(filename), true);
Jiri Olsada17ea32015-02-12 22:10:52 +0100674 }
675
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300676 dso__get(dso);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300677out_unlock:
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300678 up_write(&machine->dsos.lock);
Jiri Olsada17ea32015-02-12 22:10:52 +0100679 return dso;
680}
681
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300682int machine__process_aux_event(struct machine *machine __maybe_unused,
683 union perf_event *event)
684{
685 if (dump_trace)
686 perf_event__fprintf_aux(event, stdout);
687 return 0;
688}
689
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300690int machine__process_itrace_start_event(struct machine *machine __maybe_unused,
691 union perf_event *event)
692{
693 if (dump_trace)
694 perf_event__fprintf_itrace_start(event, stdout);
695 return 0;
696}
697
Adrian Hunter02860392015-07-21 12:44:03 +0300698int machine__process_switch_event(struct machine *machine __maybe_unused,
699 union perf_event *event)
700{
701 if (dump_trace)
702 perf_event__fprintf_switch(event, stdout);
703 return 0;
704}
705
Song Liu9aa0bfa2019-01-17 08:15:17 -0800706static int machine__process_ksymbol_register(struct machine *machine,
707 union perf_event *event,
708 struct perf_sample *sample __maybe_unused)
709{
710 struct symbol *sym;
711 struct map *map;
712
713 map = map_groups__find(&machine->kmaps, event->ksymbol_event.addr);
714 if (!map) {
715 map = dso__new_map(event->ksymbol_event.name);
716 if (!map)
717 return -ENOMEM;
718
719 map->start = event->ksymbol_event.addr;
Song Liu9aa0bfa2019-01-17 08:15:17 -0800720 map->end = map->start + event->ksymbol_event.len;
721 map_groups__insert(&machine->kmaps, map);
722 }
723
Jiri Olsa8529f2e2019-05-08 15:20:04 +0200724 sym = symbol__new(map->map_ip(map, map->start),
725 event->ksymbol_event.len,
Song Liu9aa0bfa2019-01-17 08:15:17 -0800726 0, 0, event->ksymbol_event.name);
727 if (!sym)
728 return -ENOMEM;
729 dso__insert_symbol(map->dso, sym);
730 return 0;
731}
732
733static int machine__process_ksymbol_unregister(struct machine *machine,
734 union perf_event *event,
735 struct perf_sample *sample __maybe_unused)
736{
737 struct map *map;
738
739 map = map_groups__find(&machine->kmaps, event->ksymbol_event.addr);
740 if (map)
741 map_groups__remove(&machine->kmaps, map);
742
743 return 0;
744}
745
746int machine__process_ksymbol(struct machine *machine __maybe_unused,
747 union perf_event *event,
748 struct perf_sample *sample)
749{
750 if (dump_trace)
751 perf_event__fprintf_ksymbol(event, stdout);
752
753 if (event->ksymbol_event.flags & PERF_RECORD_KSYMBOL_FLAGS_UNREGISTER)
754 return machine__process_ksymbol_unregister(machine, event,
755 sample);
756 return machine__process_ksymbol_register(machine, event, sample);
757}
758
Wang Nanc03d5182015-11-26 03:59:57 +0000759static void dso__adjust_kmod_long_name(struct dso *dso, const char *filename)
760{
761 const char *dup_filename;
762
763 if (!filename || !dso || !dso->long_name)
764 return;
765 if (dso->long_name[0] != '[')
766 return;
767 if (!strchr(filename, '/'))
768 return;
769
770 dup_filename = strdup(filename);
771 if (!dup_filename)
772 return;
773
Wang Nan5dcf16d2015-12-07 02:36:25 +0000774 dso__set_long_name(dso, dup_filename, true);
Wang Nanc03d5182015-11-26 03:59:57 +0000775}
776
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300777struct map *machine__findnew_module_map(struct machine *machine, u64 start,
778 const char *filename)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300779{
Jiri Olsaca333802015-02-17 17:29:57 +0100780 struct map *map = NULL;
Masami Hiramatsu566c69c2015-11-18 15:40:35 +0900781 struct dso *dso = NULL;
Jiri Olsaca333802015-02-17 17:29:57 +0100782 struct kmod_path m;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300783
Jiri Olsaca333802015-02-17 17:29:57 +0100784 if (kmod_path__parse_name(&m, filename))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300785 return NULL;
786
Arnaldo Carvalho de Melo83cf7742018-04-24 12:16:09 -0300787 map = map_groups__find_by_name(&machine->kmaps, m.name);
Wang Nanc03d5182015-11-26 03:59:57 +0000788 if (map) {
789 /*
790 * If the map's dso is an offline module, give dso__load()
791 * a chance to find the file path of that module by fixing
792 * long_name.
793 */
794 dso__adjust_kmod_long_name(map->dso, filename);
Jiri Olsabc84f462015-02-17 17:31:18 +0100795 goto out;
Wang Nanc03d5182015-11-26 03:59:57 +0000796 }
Jiri Olsabc84f462015-02-17 17:31:18 +0100797
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300798 dso = machine__findnew_module_dso(machine, &m, filename);
Jiri Olsaca333802015-02-17 17:29:57 +0100799 if (dso == NULL)
800 goto out;
801
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300802 map = map__new2(start, dso);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300803 if (map == NULL)
Jiri Olsaca333802015-02-17 17:29:57 +0100804 goto out;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300805
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300806 map_groups__insert(&machine->kmaps, map);
Jiri Olsaca333802015-02-17 17:29:57 +0100807
Masami Hiramatsu9afcb4202015-11-18 15:40:20 +0900808 /* Put the map here because map_groups__insert alread got it */
809 map__put(map);
Jiri Olsaca333802015-02-17 17:29:57 +0100810out:
Masami Hiramatsu566c69c2015-11-18 15:40:35 +0900811 /* put the dso here, corresponding to machine__findnew_module_dso */
812 dso__put(dso);
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -0300813 zfree(&m.name);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300814 return map;
815}
816
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300817size_t machines__fprintf_dsos(struct machines *machines, FILE *fp)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300818{
819 struct rb_node *nd;
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300820 size_t ret = __dsos__fprintf(&machines->host.dsos.head, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300821
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800822 for (nd = rb_first_cached(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300823 struct machine *pos = rb_entry(nd, struct machine, rb_node);
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300824 ret += __dsos__fprintf(&pos->dsos.head, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300825 }
826
827 return ret;
828}
829
Waiman Long8fa7d872014-09-29 16:07:28 -0400830size_t machine__fprintf_dsos_buildid(struct machine *m, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300831 bool (skip)(struct dso *dso, int parm), int parm)
832{
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300833 return __dsos__fprintf_buildid(&m->dsos.head, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300834}
835
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300836size_t machines__fprintf_dsos_buildid(struct machines *machines, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300837 bool (skip)(struct dso *dso, int parm), int parm)
838{
839 struct rb_node *nd;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300840 size_t ret = machine__fprintf_dsos_buildid(&machines->host, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300841
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800842 for (nd = rb_first_cached(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300843 struct machine *pos = rb_entry(nd, struct machine, rb_node);
844 ret += machine__fprintf_dsos_buildid(pos, fp, skip, parm);
845 }
846 return ret;
847}
848
849size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp)
850{
851 int i;
852 size_t printed = 0;
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300853 struct dso *kdso = machine__kernel_map(machine)->dso;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300854
855 if (kdso->has_build_id) {
856 char filename[PATH_MAX];
Krister Johansend2396992017-07-05 18:48:13 -0700857 if (dso__build_id_filename(kdso, filename, sizeof(filename),
858 false))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300859 printed += fprintf(fp, "[0] %s\n", filename);
860 }
861
862 for (i = 0; i < vmlinux_path__nr_entries; ++i)
863 printed += fprintf(fp, "[%d] %s\n",
864 i + kdso->has_build_id, vmlinux_path[i]);
865
866 return printed;
867}
868
869size_t machine__fprintf(struct machine *machine, FILE *fp)
870{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300871 struct rb_node *nd;
Kan Liang91e467b2017-09-10 19:23:14 -0700872 size_t ret;
873 int i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300874
Kan Liang91e467b2017-09-10 19:23:14 -0700875 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
876 struct threads *threads = &machine->threads[i];
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300877
878 down_read(&threads->lock);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300879
Kan Liang91e467b2017-09-10 19:23:14 -0700880 ret = fprintf(fp, "Threads: %u\n", threads->nr);
Arnaldo Carvalho de Melod2c11032016-05-04 10:09:33 -0300881
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800882 for (nd = rb_first_cached(&threads->entries); nd;
883 nd = rb_next(nd)) {
Kan Liang91e467b2017-09-10 19:23:14 -0700884 struct thread *pos = rb_entry(nd, struct thread, rb_node);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300885
Kan Liang91e467b2017-09-10 19:23:14 -0700886 ret += thread__fprintf(pos, fp);
887 }
888
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300889 up_read(&threads->lock);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300890 }
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300891 return ret;
892}
893
894static struct dso *machine__get_kernel(struct machine *machine)
895{
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +0100896 const char *vmlinux_name = machine->mmap_name;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300897 struct dso *kernel;
898
899 if (machine__is_host(machine)) {
Jiri Olsac1925242018-03-12 16:24:06 +0100900 if (symbol_conf.vmlinux_name)
901 vmlinux_name = symbol_conf.vmlinux_name;
902
Arnaldo Carvalho de Melo459ce512015-05-28 12:40:55 -0300903 kernel = machine__findnew_kernel(machine, vmlinux_name,
904 "[kernel]", DSO_TYPE_KERNEL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300905 } else {
Jiri Olsac1925242018-03-12 16:24:06 +0100906 if (symbol_conf.default_guest_vmlinux_name)
907 vmlinux_name = symbol_conf.default_guest_vmlinux_name;
908
Arnaldo Carvalho de Melo459ce512015-05-28 12:40:55 -0300909 kernel = machine__findnew_kernel(machine, vmlinux_name,
910 "[guest.kernel]",
911 DSO_TYPE_GUEST_KERNEL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300912 }
913
914 if (kernel != NULL && (!kernel->has_build_id))
915 dso__read_running_kernel_build_id(kernel, machine);
916
917 return kernel;
918}
919
920struct process_args {
921 u64 start;
922};
923
Adrian Hunter1c5aae72018-05-22 13:54:36 +0300924void machine__get_kallsyms_filename(struct machine *machine, char *buf,
925 size_t bufsz)
Adrian Hunter15a0a872014-01-29 16:14:38 +0200926{
927 if (machine__is_default_guest(machine))
928 scnprintf(buf, bufsz, "%s", symbol_conf.default_guest_kallsyms);
929 else
930 scnprintf(buf, bufsz, "%s/proc/kallsyms", machine->root_dir);
931}
932
Simon Quea93f0e52014-06-16 11:32:09 -0700933const char *ref_reloc_sym_names[] = {"_text", "_stext", NULL};
934
935/* Figure out the start address of kernel map from /proc/kallsyms.
936 * Returns the name of the start symbol in *symbol_name. Pass in NULL as
937 * symbol_name if it's not that important.
938 */
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300939static int machine__get_running_kernel_start(struct machine *machine,
Jiri Olsaed9adb22019-05-08 15:20:03 +0200940 const char **symbol_name,
941 u64 *start, u64 *end)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300942{
Adrian Hunter15a0a872014-01-29 16:14:38 +0200943 char filename[PATH_MAX];
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300944 int i, err = -1;
Simon Quea93f0e52014-06-16 11:32:09 -0700945 const char *name;
946 u64 addr = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300947
Adrian Hunter15a0a872014-01-29 16:14:38 +0200948 machine__get_kallsyms_filename(machine, filename, PATH_MAX);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300949
950 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
951 return 0;
952
Simon Quea93f0e52014-06-16 11:32:09 -0700953 for (i = 0; (name = ref_reloc_sym_names[i]) != NULL; i++) {
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300954 err = kallsyms__get_function_start(filename, name, &addr);
955 if (!err)
Simon Quea93f0e52014-06-16 11:32:09 -0700956 break;
957 }
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300958
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300959 if (err)
960 return -1;
961
Simon Quea93f0e52014-06-16 11:32:09 -0700962 if (symbol_name)
963 *symbol_name = name;
964
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300965 *start = addr;
Jiri Olsaed9adb22019-05-08 15:20:03 +0200966
967 err = kallsyms__get_function_start(filename, "_etext", &addr);
968 if (!err)
969 *end = addr;
970
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300971 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300972}
973
Adrian Hunter1c5aae72018-05-22 13:54:36 +0300974int machine__create_extra_kernel_map(struct machine *machine,
975 struct dso *kernel,
976 struct extra_kernel_map *xm)
Adrian Hunter4d99e412018-05-22 13:54:33 +0300977{
978 struct kmap *kmap;
979 struct map *map;
980
981 map = map__new2(xm->start, kernel);
982 if (!map)
983 return -1;
984
985 map->end = xm->end;
986 map->pgoff = xm->pgoff;
987
988 kmap = map__kmap(map);
989
990 kmap->kmaps = &machine->kmaps;
Adrian Hunter5759a682018-05-22 13:54:35 +0300991 strlcpy(kmap->name, xm->name, KMAP_NAME_LEN);
Adrian Hunter4d99e412018-05-22 13:54:33 +0300992
993 map_groups__insert(&machine->kmaps, map);
994
Adrian Hunter5759a682018-05-22 13:54:35 +0300995 pr_debug2("Added extra kernel map %s %" PRIx64 "-%" PRIx64 "\n",
996 kmap->name, map->start, map->end);
Adrian Hunter4d99e412018-05-22 13:54:33 +0300997
998 map__put(map);
999
1000 return 0;
1001}
1002
1003static u64 find_entry_trampoline(struct dso *dso)
1004{
1005 /* Duplicates are removed so lookup all aliases */
1006 const char *syms[] = {
1007 "_entry_trampoline",
1008 "__entry_trampoline_start",
1009 "entry_SYSCALL_64_trampoline",
1010 };
1011 struct symbol *sym = dso__first_symbol(dso);
1012 unsigned int i;
1013
1014 for (; sym; sym = dso__next_symbol(sym)) {
1015 if (sym->binding != STB_GLOBAL)
1016 continue;
1017 for (i = 0; i < ARRAY_SIZE(syms); i++) {
1018 if (!strcmp(sym->name, syms[i]))
1019 return sym->start;
1020 }
1021 }
1022
1023 return 0;
1024}
1025
1026/*
1027 * These values can be used for kernels that do not have symbols for the entry
1028 * trampolines in kallsyms.
1029 */
1030#define X86_64_CPU_ENTRY_AREA_PER_CPU 0xfffffe0000000000ULL
1031#define X86_64_CPU_ENTRY_AREA_SIZE 0x2c000
1032#define X86_64_ENTRY_TRAMPOLINE 0x6000
1033
1034/* Map x86_64 PTI entry trampolines */
1035int machine__map_x86_64_entry_trampolines(struct machine *machine,
1036 struct dso *kernel)
1037{
Adrian Hunter1c5aae72018-05-22 13:54:36 +03001038 struct map_groups *kmaps = &machine->kmaps;
1039 struct maps *maps = &kmaps->maps;
Adrian Hunter4d99e412018-05-22 13:54:33 +03001040 int nr_cpus_avail, cpu;
Adrian Hunter1c5aae72018-05-22 13:54:36 +03001041 bool found = false;
1042 struct map *map;
1043 u64 pgoff;
Adrian Hunter4d99e412018-05-22 13:54:33 +03001044
Adrian Hunter1c5aae72018-05-22 13:54:36 +03001045 /*
1046 * In the vmlinux case, pgoff is a virtual address which must now be
1047 * mapped to a vmlinux offset.
1048 */
1049 for (map = maps__first(maps); map; map = map__next(map)) {
1050 struct kmap *kmap = __map__kmap(map);
1051 struct map *dest_map;
1052
1053 if (!kmap || !is_entry_trampoline(kmap->name))
1054 continue;
1055
1056 dest_map = map_groups__find(kmaps, map->pgoff);
1057 if (dest_map != map)
1058 map->pgoff = dest_map->map_ip(dest_map, map->pgoff);
1059 found = true;
1060 }
1061 if (found || machine->trampolines_mapped)
1062 return 0;
1063
1064 pgoff = find_entry_trampoline(kernel);
Adrian Hunter4d99e412018-05-22 13:54:33 +03001065 if (!pgoff)
1066 return 0;
1067
1068 nr_cpus_avail = machine__nr_cpus_avail(machine);
1069
1070 /* Add a 1 page map for each CPU's entry trampoline */
1071 for (cpu = 0; cpu < nr_cpus_avail; cpu++) {
1072 u64 va = X86_64_CPU_ENTRY_AREA_PER_CPU +
1073 cpu * X86_64_CPU_ENTRY_AREA_SIZE +
1074 X86_64_ENTRY_TRAMPOLINE;
1075 struct extra_kernel_map xm = {
1076 .start = va,
1077 .end = va + page_size,
1078 .pgoff = pgoff,
1079 };
1080
Adrian Hunter5759a682018-05-22 13:54:35 +03001081 strlcpy(xm.name, ENTRY_TRAMPOLINE_NAME, KMAP_NAME_LEN);
1082
Adrian Hunter4d99e412018-05-22 13:54:33 +03001083 if (machine__create_extra_kernel_map(machine, kernel, &xm) < 0)
1084 return -1;
1085 }
1086
Adrian Hunter1c5aae72018-05-22 13:54:36 +03001087 machine->trampolines_mapped = nr_cpus_avail;
1088
1089 return 0;
1090}
1091
1092int __weak machine__create_extra_kernel_maps(struct machine *machine __maybe_unused,
1093 struct dso *kernel __maybe_unused)
1094{
Adrian Hunter4d99e412018-05-22 13:54:33 +03001095 return 0;
1096}
1097
Jiri Olsa1fb87b82018-02-15 13:26:32 +01001098static int
1099__machine__create_kernel_maps(struct machine *machine, struct dso *kernel)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001100{
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001101 struct kmap *kmap;
1102 struct map *map;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001103
Masami Hiramatsucc1121a2015-12-09 11:11:33 +09001104 /* In case of renewal the kernel map, destroy previous one */
1105 machine__destroy_kernel_maps(machine);
1106
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001107 machine->vmlinux_map = map__new2(0, kernel);
1108 if (machine->vmlinux_map == NULL)
1109 return -1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001110
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001111 machine->vmlinux_map->map_ip = machine->vmlinux_map->unmap_ip = identity__map_ip;
1112 map = machine__kernel_map(machine);
1113 kmap = map__kmap(map);
1114 if (!kmap)
1115 return -1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001116
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001117 kmap->kmaps = &machine->kmaps;
1118 map_groups__insert(&machine->kmaps, map);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001119
1120 return 0;
1121}
1122
1123void machine__destroy_kernel_maps(struct machine *machine)
1124{
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001125 struct kmap *kmap;
1126 struct map *map = machine__kernel_map(machine);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001127
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001128 if (map == NULL)
1129 return;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001130
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001131 kmap = map__kmap(map);
1132 map_groups__remove(&machine->kmaps, map);
1133 if (kmap && kmap->ref_reloc_sym) {
1134 zfree((char **)&kmap->ref_reloc_sym->name);
1135 zfree(&kmap->ref_reloc_sym);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001136 }
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001137
1138 map__zput(machine->vmlinux_map);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001139}
1140
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -03001141int machines__create_guest_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001142{
1143 int ret = 0;
1144 struct dirent **namelist = NULL;
1145 int i, items = 0;
1146 char path[PATH_MAX];
1147 pid_t pid;
1148 char *endp;
1149
1150 if (symbol_conf.default_guest_vmlinux_name ||
1151 symbol_conf.default_guest_modules ||
1152 symbol_conf.default_guest_kallsyms) {
1153 machines__create_kernel_maps(machines, DEFAULT_GUEST_KERNEL_ID);
1154 }
1155
1156 if (symbol_conf.guestmount) {
1157 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
1158 if (items <= 0)
1159 return -ENOENT;
1160 for (i = 0; i < items; i++) {
1161 if (!isdigit(namelist[i]->d_name[0])) {
1162 /* Filter out . and .. */
1163 continue;
1164 }
1165 pid = (pid_t)strtol(namelist[i]->d_name, &endp, 10);
1166 if ((*endp != '\0') ||
1167 (endp == namelist[i]->d_name) ||
1168 (errno == ERANGE)) {
1169 pr_debug("invalid directory (%s). Skipping.\n",
1170 namelist[i]->d_name);
1171 continue;
1172 }
1173 sprintf(path, "%s/%s/proc/kallsyms",
1174 symbol_conf.guestmount,
1175 namelist[i]->d_name);
1176 ret = access(path, R_OK);
1177 if (ret) {
1178 pr_debug("Can't access file %s\n", path);
1179 goto failure;
1180 }
1181 machines__create_kernel_maps(machines, pid);
1182 }
1183failure:
1184 free(namelist);
1185 }
1186
1187 return ret;
1188}
1189
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -03001190void machines__destroy_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001191{
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -08001192 struct rb_node *next = rb_first_cached(&machines->guests);
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -03001193
1194 machine__destroy_kernel_maps(&machines->host);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001195
1196 while (next) {
1197 struct machine *pos = rb_entry(next, struct machine, rb_node);
1198
1199 next = rb_next(&pos->rb_node);
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -08001200 rb_erase_cached(&pos->rb_node, &machines->guests);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001201 machine__delete(pos);
1202 }
1203}
1204
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -03001205int machines__create_kernel_maps(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001206{
1207 struct machine *machine = machines__findnew(machines, pid);
1208
1209 if (machine == NULL)
1210 return -1;
1211
1212 return machine__create_kernel_maps(machine);
1213}
1214
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001215int machine__load_kallsyms(struct machine *machine, const char *filename)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001216{
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -03001217 struct map *map = machine__kernel_map(machine);
Jiri Olsae8f38792018-02-15 13:26:33 +01001218 int ret = __dso__load_kallsyms(map->dso, filename, map, true);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001219
1220 if (ret > 0) {
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001221 dso__set_loaded(map->dso);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001222 /*
1223 * Since /proc/kallsyms will have multiple sessions for the
1224 * kernel, with modules between them, fixup the end of all
1225 * sections.
1226 */
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001227 map_groups__fixup_end(&machine->kmaps);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001228 }
1229
1230 return ret;
1231}
1232
Arnaldo Carvalho de Melo1d1a2652018-04-25 12:18:11 -03001233int machine__load_vmlinux_path(struct machine *machine)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001234{
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -03001235 struct map *map = machine__kernel_map(machine);
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03001236 int ret = dso__load_vmlinux_path(map->dso, map);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001237
Adrian Hunter39b12f782013-08-07 14:38:47 +03001238 if (ret > 0)
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001239 dso__set_loaded(map->dso);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001240
1241 return ret;
1242}
1243
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001244static char *get_kernel_version(const char *root_dir)
1245{
1246 char version[PATH_MAX];
1247 FILE *file;
1248 char *name, *tmp;
1249 const char *prefix = "Linux version ";
1250
1251 sprintf(version, "%s/proc/version", root_dir);
1252 file = fopen(version, "r");
1253 if (!file)
1254 return NULL;
1255
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001256 tmp = fgets(version, sizeof(version), file);
1257 fclose(file);
Donald Yandt34b65af2019-05-28 09:41:28 -04001258 if (!tmp)
1259 return NULL;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001260
1261 name = strstr(version, prefix);
1262 if (!name)
1263 return NULL;
1264 name += strlen(prefix);
1265 tmp = strchr(name, ' ');
1266 if (tmp)
1267 *tmp = '\0';
1268
1269 return strdup(name);
1270}
1271
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001272static bool is_kmod_dso(struct dso *dso)
1273{
1274 return dso->symtab_type == DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE ||
1275 dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE;
1276}
1277
1278static int map_groups__set_module_path(struct map_groups *mg, const char *path,
1279 struct kmod_path *m)
1280{
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001281 char *long_name;
Arnaldo Carvalho de Melo83cf7742018-04-24 12:16:09 -03001282 struct map *map = map_groups__find_by_name(mg, m->name);
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001283
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001284 if (map == NULL)
1285 return 0;
1286
1287 long_name = strdup(path);
1288 if (long_name == NULL)
1289 return -ENOMEM;
1290
1291 dso__set_long_name(map->dso, long_name, true);
1292 dso__kernel_module_get_build_id(map->dso, "");
1293
1294 /*
1295 * Full name could reveal us kmod compression, so
1296 * we need to update the symtab_type if needed.
1297 */
Jiri Olsa2af52472018-08-17 11:48:07 +02001298 if (m->comp && is_kmod_dso(map->dso)) {
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001299 map->dso->symtab_type++;
Jiri Olsa2af52472018-08-17 11:48:07 +02001300 map->dso->comp = m->comp;
1301 }
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001302
1303 return 0;
1304}
1305
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001306static int map_groups__set_modules_path_dir(struct map_groups *mg,
Richard Yao61d42902014-04-26 13:17:55 -04001307 const char *dir_name, int depth)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001308{
1309 struct dirent *dent;
1310 DIR *dir = opendir(dir_name);
1311 int ret = 0;
1312
1313 if (!dir) {
1314 pr_debug("%s: cannot open %s dir\n", __func__, dir_name);
1315 return -1;
1316 }
1317
1318 while ((dent = readdir(dir)) != NULL) {
1319 char path[PATH_MAX];
1320 struct stat st;
1321
1322 /*sshfs might return bad dent->d_type, so we have to stat*/
1323 snprintf(path, sizeof(path), "%s/%s", dir_name, dent->d_name);
1324 if (stat(path, &st))
1325 continue;
1326
1327 if (S_ISDIR(st.st_mode)) {
1328 if (!strcmp(dent->d_name, ".") ||
1329 !strcmp(dent->d_name, ".."))
1330 continue;
1331
Richard Yao61d42902014-04-26 13:17:55 -04001332 /* Do not follow top-level source and build symlinks */
1333 if (depth == 0) {
1334 if (!strcmp(dent->d_name, "source") ||
1335 !strcmp(dent->d_name, "build"))
1336 continue;
1337 }
1338
1339 ret = map_groups__set_modules_path_dir(mg, path,
1340 depth + 1);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001341 if (ret < 0)
1342 goto out;
1343 } else {
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001344 struct kmod_path m;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001345
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001346 ret = kmod_path__parse_name(&m, dent->d_name);
1347 if (ret)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001348 goto out;
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001349
1350 if (m.kmod)
1351 ret = map_groups__set_module_path(mg, path, &m);
1352
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03001353 zfree(&m.name);
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001354
1355 if (ret)
1356 goto out;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001357 }
1358 }
1359
1360out:
1361 closedir(dir);
1362 return ret;
1363}
1364
1365static int machine__set_modules_path(struct machine *machine)
1366{
1367 char *version;
1368 char modules_path[PATH_MAX];
1369
1370 version = get_kernel_version(machine->root_dir);
1371 if (!version)
1372 return -1;
1373
Richard Yao61d42902014-04-26 13:17:55 -04001374 snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s",
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001375 machine->root_dir, version);
1376 free(version);
1377
Richard Yao61d42902014-04-26 13:17:55 -04001378 return map_groups__set_modules_path_dir(&machine->kmaps, modules_path, 0);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001379}
Song Shan Gong203d8a42016-07-21 11:10:51 +08001380int __weak arch__fix_module_text_start(u64 *start __maybe_unused,
1381 const char *name __maybe_unused)
1382{
1383 return 0;
1384}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001385
Thomas Richter9ad46522017-08-03 15:49:02 +02001386static int machine__create_module(void *arg, const char *name, u64 start,
1387 u64 size)
Adrian Hunter316d70d2013-10-08 11:45:48 +03001388{
1389 struct machine *machine = arg;
1390 struct map *map;
1391
Song Shan Gong203d8a42016-07-21 11:10:51 +08001392 if (arch__fix_module_text_start(&start, name) < 0)
1393 return -1;
1394
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -03001395 map = machine__findnew_module_map(machine, start, name);
Adrian Hunter316d70d2013-10-08 11:45:48 +03001396 if (map == NULL)
1397 return -1;
Thomas Richter9ad46522017-08-03 15:49:02 +02001398 map->end = start + size;
Adrian Hunter316d70d2013-10-08 11:45:48 +03001399
1400 dso__kernel_module_get_build_id(map->dso, machine->root_dir);
1401
1402 return 0;
1403}
1404
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001405static int machine__create_modules(struct machine *machine)
1406{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001407 const char *modules;
1408 char path[PATH_MAX];
1409
Adrian Hunterf4be9042013-09-22 13:22:09 +03001410 if (machine__is_default_guest(machine)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001411 modules = symbol_conf.default_guest_modules;
Adrian Hunterf4be9042013-09-22 13:22:09 +03001412 } else {
1413 snprintf(path, PATH_MAX, "%s/proc/modules", machine->root_dir);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001414 modules = path;
1415 }
1416
Adrian Hunteraa7fe3b2013-09-22 13:22:09 +03001417 if (symbol__restricted_filename(modules, "/proc/modules"))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001418 return -1;
1419
Adrian Hunter316d70d2013-10-08 11:45:48 +03001420 if (modules__parse(modules, machine, machine__create_module))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001421 return -1;
1422
Adrian Hunter316d70d2013-10-08 11:45:48 +03001423 if (!machine__set_modules_path(machine))
1424 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001425
Adrian Hunter316d70d2013-10-08 11:45:48 +03001426 pr_debug("Problems setting modules path maps, continuing anyway...\n");
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001427
Jason Wessel8f76fcd2013-07-15 15:27:53 -05001428 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001429}
1430
Jiri Olsa1fb87b82018-02-15 13:26:32 +01001431static void machine__set_kernel_mmap(struct machine *machine,
1432 u64 start, u64 end)
1433{
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001434 machine->vmlinux_map->start = start;
1435 machine->vmlinux_map->end = end;
1436 /*
1437 * Be a bit paranoid here, some perf.data file came with
1438 * a zero sized synthesized MMAP event for the kernel.
1439 */
1440 if (start == 0 && end == 0)
1441 machine->vmlinux_map->end = ~0ULL;
Jiri Olsa1fb87b82018-02-15 13:26:32 +01001442}
1443
Wei Li977c7a62019-02-28 17:20:03 +08001444static void machine__update_kernel_mmap(struct machine *machine,
1445 u64 start, u64 end)
1446{
1447 struct map *map = machine__kernel_map(machine);
1448
1449 map__get(map);
1450 map_groups__remove(&machine->kmaps, map);
1451
1452 machine__set_kernel_mmap(machine, start, end);
1453
1454 map_groups__insert(&machine->kmaps, map);
1455 map__put(map);
1456}
1457
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001458int machine__create_kernel_maps(struct machine *machine)
1459{
1460 struct dso *kernel = machine__get_kernel(machine);
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -03001461 const char *name = NULL;
Namhyung Kimee05d21792018-02-19 19:05:45 +09001462 struct map *map;
Jiri Olsaed9adb22019-05-08 15:20:03 +02001463 u64 start = 0, end = ~0ULL;
Masami Hiramatsu1154c952015-11-18 15:40:33 +09001464 int ret;
1465
Arnaldo Carvalho de Melo45e90052016-05-17 11:52:26 -03001466 if (kernel == NULL)
Adrian Hunter5512cf22014-01-29 16:14:39 +02001467 return -1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001468
Masami Hiramatsu1154c952015-11-18 15:40:33 +09001469 ret = __machine__create_kernel_maps(machine, kernel);
Masami Hiramatsu1154c952015-11-18 15:40:33 +09001470 if (ret < 0)
Adrian Hunter1c5aae72018-05-22 13:54:36 +03001471 goto out_put;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001472
1473 if (symbol_conf.use_modules && machine__create_modules(machine) < 0) {
1474 if (machine__is_host(machine))
1475 pr_debug("Problems creating module maps, "
1476 "continuing anyway...\n");
1477 else
1478 pr_debug("Problems creating module maps for guest %d, "
1479 "continuing anyway...\n", machine->pid);
1480 }
1481
Jiri Olsaed9adb22019-05-08 15:20:03 +02001482 if (!machine__get_running_kernel_start(machine, &name, &start, &end)) {
Jiri Olsa3f938ee2017-06-26 11:51:53 +02001483 if (name &&
Jiri Olsaed9adb22019-05-08 15:20:03 +02001484 map__set_kallsyms_ref_reloc_sym(machine->vmlinux_map, name, start)) {
Jiri Olsa3f938ee2017-06-26 11:51:53 +02001485 machine__destroy_kernel_maps(machine);
Adrian Hunter1c5aae72018-05-22 13:54:36 +03001486 ret = -1;
1487 goto out_put;
Jiri Olsa3f938ee2017-06-26 11:51:53 +02001488 }
Namhyung Kimee05d21792018-02-19 19:05:45 +09001489
Wei Li977c7a62019-02-28 17:20:03 +08001490 /*
1491 * we have a real start address now, so re-order the kmaps
1492 * assume it's the last in the kmaps
1493 */
Jiri Olsaed9adb22019-05-08 15:20:03 +02001494 machine__update_kernel_mmap(machine, start, end);
Adrian Hunter5512cf22014-01-29 16:14:39 +02001495 }
1496
Adrian Hunter1c5aae72018-05-22 13:54:36 +03001497 if (machine__create_extra_kernel_maps(machine, kernel))
1498 pr_debug("Problems creating extra kernel maps, continuing anyway...\n");
1499
Jiri Olsaed9adb22019-05-08 15:20:03 +02001500 if (end == ~0ULL) {
1501 /* update end address of the kernel map using adjacent module address */
1502 map = map__next(machine__kernel_map(machine));
1503 if (map)
1504 machine__set_kernel_mmap(machine, start, map->start);
1505 }
1506
Adrian Hunter1c5aae72018-05-22 13:54:36 +03001507out_put:
1508 dso__put(kernel);
1509 return ret;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001510}
1511
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001512static bool machine__uses_kcore(struct machine *machine)
1513{
1514 struct dso *dso;
1515
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -03001516 list_for_each_entry(dso, &machine->dsos.head, node) {
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001517 if (dso__is_kcore(dso))
1518 return true;
1519 }
1520
1521 return false;
1522}
1523
Adrian Huntera8ce99b2018-05-22 13:54:37 +03001524static bool perf_event__is_extra_kernel_mmap(struct machine *machine,
1525 union perf_event *event)
1526{
1527 return machine__is(machine, "x86_64") &&
1528 is_entry_trampoline(event->mmap.filename);
1529}
1530
1531static int machine__process_extra_kernel_map(struct machine *machine,
1532 union perf_event *event)
1533{
1534 struct map *kernel_map = machine__kernel_map(machine);
1535 struct dso *kernel = kernel_map ? kernel_map->dso : NULL;
1536 struct extra_kernel_map xm = {
1537 .start = event->mmap.start,
1538 .end = event->mmap.start + event->mmap.len,
1539 .pgoff = event->mmap.pgoff,
1540 };
1541
1542 if (kernel == NULL)
1543 return -1;
1544
1545 strlcpy(xm.name, event->mmap.filename, KMAP_NAME_LEN);
1546
1547 return machine__create_extra_kernel_map(machine, kernel, &xm);
1548}
1549
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001550static int machine__process_kernel_mmap_event(struct machine *machine,
1551 union perf_event *event)
1552{
1553 struct map *map;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001554 enum dso_kernel_type kernel_type;
1555 bool is_kernel_mmap;
1556
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001557 /* If we have maps from kcore then we do not need or want any others */
1558 if (machine__uses_kcore(machine))
1559 return 0;
1560
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001561 if (machine__is_host(machine))
1562 kernel_type = DSO_TYPE_KERNEL;
1563 else
1564 kernel_type = DSO_TYPE_GUEST_KERNEL;
1565
1566 is_kernel_mmap = memcmp(event->mmap.filename,
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +01001567 machine->mmap_name,
1568 strlen(machine->mmap_name) - 1) == 0;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001569 if (event->mmap.filename[0] == '/' ||
1570 (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -03001571 map = machine__findnew_module_map(machine, event->mmap.start,
1572 event->mmap.filename);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001573 if (map == NULL)
1574 goto out_problem;
1575
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001576 map->end = map->start + event->mmap.len;
1577 } else if (is_kernel_mmap) {
1578 const char *symbol_name = (event->mmap.filename +
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +01001579 strlen(machine->mmap_name));
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001580 /*
1581 * Should be there already, from the build-id table in
1582 * the header.
1583 */
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001584 struct dso *kernel = NULL;
1585 struct dso *dso;
1586
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03001587 down_read(&machine->dsos.lock);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001588
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -03001589 list_for_each_entry(dso, &machine->dsos.head, node) {
Wang Nan1f121b02015-06-03 08:52:21 +00001590
1591 /*
1592 * The cpumode passed to is_kernel_module is not the
1593 * cpumode of *this* event. If we insist on passing
1594 * correct cpumode to is_kernel_module, we should
1595 * record the cpumode when we adding this dso to the
1596 * linked list.
1597 *
1598 * However we don't really need passing correct
1599 * cpumode. We know the correct cpumode must be kernel
1600 * mode (if not, we should not link it onto kernel_dsos
1601 * list).
1602 *
1603 * Therefore, we pass PERF_RECORD_MISC_CPUMODE_UNKNOWN.
1604 * is_kernel_module() treats it as a kernel cpumode.
1605 */
1606
1607 if (!dso->kernel ||
1608 is_kernel_module(dso->long_name,
1609 PERF_RECORD_MISC_CPUMODE_UNKNOWN))
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001610 continue;
1611
Wang Nan1f121b02015-06-03 08:52:21 +00001612
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001613 kernel = dso;
1614 break;
1615 }
1616
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03001617 up_read(&machine->dsos.lock);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001618
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001619 if (kernel == NULL)
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +01001620 kernel = machine__findnew_dso(machine, machine->mmap_name);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001621 if (kernel == NULL)
1622 goto out_problem;
1623
1624 kernel->kernel = kernel_type;
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001625 if (__machine__create_kernel_maps(machine, kernel) < 0) {
1626 dso__put(kernel);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001627 goto out_problem;
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001628 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001629
Namhyung Kim330dfa22014-11-18 13:30:28 +09001630 if (strstr(kernel->long_name, "vmlinux"))
1631 dso__set_short_name(kernel, "[kernel.vmlinux]", false);
Namhyung Kim96d78052014-11-04 10:14:34 +09001632
Wei Li977c7a62019-02-28 17:20:03 +08001633 machine__update_kernel_mmap(machine, event->mmap.start,
Jiri Olsa05db6ff2018-02-15 13:26:31 +01001634 event->mmap.start + event->mmap.len);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001635
1636 /*
1637 * Avoid using a zero address (kptr_restrict) for the ref reloc
1638 * symbol. Effectively having zero here means that at record
1639 * time /proc/sys/kernel/kptr_restrict was non zero.
1640 */
1641 if (event->mmap.pgoff != 0) {
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001642 map__set_kallsyms_ref_reloc_sym(machine->vmlinux_map,
1643 symbol_name,
1644 event->mmap.pgoff);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001645 }
1646
1647 if (machine__is_default_guest(machine)) {
1648 /*
1649 * preload dso of guest kernel and modules
1650 */
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03001651 dso__load(kernel, machine__kernel_map(machine));
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001652 }
Adrian Huntera8ce99b2018-05-22 13:54:37 +03001653 } else if (perf_event__is_extra_kernel_mmap(machine, event)) {
1654 return machine__process_extra_kernel_map(machine, event);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001655 }
1656 return 0;
1657out_problem:
1658 return -1;
1659}
1660
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001661int machine__process_mmap2_event(struct machine *machine,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001662 union perf_event *event,
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001663 struct perf_sample *sample)
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001664{
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001665 struct thread *thread;
1666 struct map *map;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001667 int ret = 0;
1668
1669 if (dump_trace)
1670 perf_event__fprintf_mmap2(event, stdout);
1671
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001672 if (sample->cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1673 sample->cpumode == PERF_RECORD_MISC_KERNEL) {
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001674 ret = machine__process_kernel_mmap_event(machine, event);
1675 if (ret < 0)
1676 goto out_problem;
1677 return 0;
1678 }
1679
1680 thread = machine__findnew_thread(machine, event->mmap2.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001681 event->mmap2.tid);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001682 if (thread == NULL)
1683 goto out_problem;
1684
Adrian Hunter2a030682014-07-22 16:17:53 +03001685 map = map__new(machine, event->mmap2.start,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001686 event->mmap2.len, event->mmap2.pgoff,
Krister Johansenbf2e7102017-07-05 18:48:09 -07001687 event->mmap2.maj,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001688 event->mmap2.min, event->mmap2.ino,
1689 event->mmap2.ino_generation,
Don Zickus7ef80702014-05-19 15:13:49 -04001690 event->mmap2.prot,
1691 event->mmap2.flags,
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001692 event->mmap2.filename, thread);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001693
1694 if (map == NULL)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001695 goto out_problem_map;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001696
He Kuang8132a2a2016-06-03 03:33:13 +00001697 ret = thread__insert_map(thread, map);
1698 if (ret)
1699 goto out_problem_insert;
1700
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001701 thread__put(thread);
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001702 map__put(map);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001703 return 0;
1704
He Kuang8132a2a2016-06-03 03:33:13 +00001705out_problem_insert:
1706 map__put(map);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001707out_problem_map:
1708 thread__put(thread);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001709out_problem:
1710 dump_printf("problem processing PERF_RECORD_MMAP2, skipping event.\n");
1711 return 0;
1712}
1713
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001714int machine__process_mmap_event(struct machine *machine, union perf_event *event,
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001715 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001716{
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001717 struct thread *thread;
1718 struct map *map;
Arnaldo Carvalho de Melo0f476f22018-04-26 11:30:50 -03001719 u32 prot = 0;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001720 int ret = 0;
1721
1722 if (dump_trace)
1723 perf_event__fprintf_mmap(event, stdout);
1724
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001725 if (sample->cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1726 sample->cpumode == PERF_RECORD_MISC_KERNEL) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001727 ret = machine__process_kernel_mmap_event(machine, event);
1728 if (ret < 0)
1729 goto out_problem;
1730 return 0;
1731 }
1732
Adrian Hunter314add62013-08-27 11:23:03 +03001733 thread = machine__findnew_thread(machine, event->mmap.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001734 event->mmap.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001735 if (thread == NULL)
1736 goto out_problem;
Stephane Eranianbad40912013-01-24 16:10:40 +01001737
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001738 if (!(event->header.misc & PERF_RECORD_MISC_MMAP_DATA))
Arnaldo Carvalho de Melo0f476f22018-04-26 11:30:50 -03001739 prot = PROT_EXEC;
Stephane Eranianbad40912013-01-24 16:10:40 +01001740
Adrian Hunter2a030682014-07-22 16:17:53 +03001741 map = map__new(machine, event->mmap.start,
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001742 event->mmap.len, event->mmap.pgoff,
Arnaldo Carvalho de Melo0f476f22018-04-26 11:30:50 -03001743 0, 0, 0, 0, prot, 0,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001744 event->mmap.filename,
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001745 thread);
Stephane Eranianbad40912013-01-24 16:10:40 +01001746
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001747 if (map == NULL)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001748 goto out_problem_map;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001749
He Kuang8132a2a2016-06-03 03:33:13 +00001750 ret = thread__insert_map(thread, map);
1751 if (ret)
1752 goto out_problem_insert;
1753
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001754 thread__put(thread);
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001755 map__put(map);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001756 return 0;
1757
He Kuang8132a2a2016-06-03 03:33:13 +00001758out_problem_insert:
1759 map__put(map);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001760out_problem_map:
1761 thread__put(thread);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001762out_problem:
1763 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
1764 return 0;
1765}
1766
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001767static void __machine__remove_thread(struct machine *machine, struct thread *th, bool lock)
David Ahern236a3bb2013-08-14 08:49:27 -06001768{
Kan Liang91e467b2017-09-10 19:23:14 -07001769 struct threads *threads = machine__threads(machine, th->tid);
1770
1771 if (threads->last_match == th)
Jiri Olsa67fda0f2018-07-19 16:33:43 +02001772 threads__set_last_match(threads, NULL);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001773
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001774 if (lock)
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03001775 down_write(&threads->lock);
Arnaldo Carvalho de Melo4c00af02019-07-05 12:11:35 -03001776
1777 BUG_ON(refcount_read(&th->refcnt) == 0);
1778
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -08001779 rb_erase_cached(&th->rb_node, &threads->entries);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001780 RB_CLEAR_NODE(&th->rb_node);
Kan Liang91e467b2017-09-10 19:23:14 -07001781 --threads->nr;
David Ahern236a3bb2013-08-14 08:49:27 -06001782 /*
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001783 * Move it first to the dead_threads list, then drop the reference,
1784 * if this is the last reference, then the thread__delete destructor
1785 * will be called and we will remove it from the dead_threads list.
David Ahern236a3bb2013-08-14 08:49:27 -06001786 */
Kan Liang91e467b2017-09-10 19:23:14 -07001787 list_add_tail(&th->node, &threads->dead);
Arnaldo Carvalho de Melo4c00af02019-07-05 12:11:35 -03001788
1789 /*
1790 * We need to do the put here because if this is the last refcount,
1791 * then we will be touching the threads->dead head when removing the
1792 * thread.
1793 */
1794 thread__put(th);
1795
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001796 if (lock)
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03001797 up_write(&threads->lock);
David Ahern236a3bb2013-08-14 08:49:27 -06001798}
1799
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001800void machine__remove_thread(struct machine *machine, struct thread *th)
1801{
1802 return __machine__remove_thread(machine, th, true);
1803}
1804
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001805int machine__process_fork_event(struct machine *machine, union perf_event *event,
1806 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001807{
Jiri Olsad75e6092014-03-14 15:00:03 +01001808 struct thread *thread = machine__find_thread(machine,
1809 event->fork.pid,
1810 event->fork.tid);
Adrian Hunter314add62013-08-27 11:23:03 +03001811 struct thread *parent = machine__findnew_thread(machine,
1812 event->fork.ppid,
1813 event->fork.ptid);
David Miller4f8f3822018-10-30 22:24:04 -07001814 bool do_maps_clone = true;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001815 int err = 0;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001816
Adrian Hunter5cb73342015-08-19 17:29:20 +03001817 if (dump_trace)
1818 perf_event__fprintf_task(event, stdout);
1819
1820 /*
1821 * There may be an existing thread that is not actually the parent,
1822 * either because we are processing events out of order, or because the
1823 * (fork) event that would have removed the thread was lost. Assume the
1824 * latter case and continue on as best we can.
1825 */
1826 if (parent->pid_ != (pid_t)event->fork.ppid) {
1827 dump_printf("removing erroneous parent thread %d/%d\n",
1828 parent->pid_, parent->tid);
1829 machine__remove_thread(machine, parent);
1830 thread__put(parent);
1831 parent = machine__findnew_thread(machine, event->fork.ppid,
1832 event->fork.ptid);
1833 }
1834
David Ahern236a3bb2013-08-14 08:49:27 -06001835 /* if a thread currently exists for the thread id remove it */
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001836 if (thread != NULL) {
David Ahern236a3bb2013-08-14 08:49:27 -06001837 machine__remove_thread(machine, thread);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001838 thread__put(thread);
1839 }
David Ahern236a3bb2013-08-14 08:49:27 -06001840
Adrian Hunter314add62013-08-27 11:23:03 +03001841 thread = machine__findnew_thread(machine, event->fork.pid,
1842 event->fork.tid);
David Miller4f8f3822018-10-30 22:24:04 -07001843 /*
1844 * When synthesizing FORK events, we are trying to create thread
1845 * objects for the already running tasks on the machine.
1846 *
1847 * Normally, for a kernel FORK event, we want to clone the parent's
1848 * maps because that is what the kernel just did.
1849 *
1850 * But when synthesizing, this should not be done. If we do, we end up
1851 * with overlapping maps as we process the sythesized MMAP2 events that
1852 * get delivered shortly thereafter.
1853 *
1854 * Use the FORK event misc flags in an internal way to signal this
1855 * situation, so we can elide the map clone when appropriate.
1856 */
1857 if (event->fork.header.misc & PERF_RECORD_MISC_FORK_EXEC)
1858 do_maps_clone = false;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001859
1860 if (thread == NULL || parent == NULL ||
David Miller4f8f3822018-10-30 22:24:04 -07001861 thread__fork(thread, parent, sample->time, do_maps_clone) < 0) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001862 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001863 err = -1;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001864 }
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001865 thread__put(thread);
1866 thread__put(parent);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001867
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001868 return err;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001869}
1870
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001871int machine__process_exit_event(struct machine *machine, union perf_event *event,
1872 struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001873{
Jiri Olsad75e6092014-03-14 15:00:03 +01001874 struct thread *thread = machine__find_thread(machine,
1875 event->fork.pid,
1876 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001877
1878 if (dump_trace)
1879 perf_event__fprintf_task(event, stdout);
1880
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001881 if (thread != NULL) {
David Ahern236a3bb2013-08-14 08:49:27 -06001882 thread__exited(thread);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001883 thread__put(thread);
1884 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001885
1886 return 0;
1887}
1888
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001889int machine__process_event(struct machine *machine, union perf_event *event,
1890 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001891{
1892 int ret;
1893
1894 switch (event->header.type) {
1895 case PERF_RECORD_COMM:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001896 ret = machine__process_comm_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001897 case PERF_RECORD_MMAP:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001898 ret = machine__process_mmap_event(machine, event, sample); break;
Hari Bathinif3b36142017-03-08 02:11:43 +05301899 case PERF_RECORD_NAMESPACES:
1900 ret = machine__process_namespaces_event(machine, event, sample); break;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001901 case PERF_RECORD_MMAP2:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001902 ret = machine__process_mmap2_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001903 case PERF_RECORD_FORK:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001904 ret = machine__process_fork_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001905 case PERF_RECORD_EXIT:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001906 ret = machine__process_exit_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001907 case PERF_RECORD_LOST:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001908 ret = machine__process_lost_event(machine, event, sample); break;
Adrian Hunter4a96f7a2015-04-30 17:37:29 +03001909 case PERF_RECORD_AUX:
1910 ret = machine__process_aux_event(machine, event); break;
Adrian Hunter0ad21f62015-04-30 17:37:30 +03001911 case PERF_RECORD_ITRACE_START:
Jiri Olsaceb92912015-06-29 13:27:45 +02001912 ret = machine__process_itrace_start_event(machine, event); break;
Kan Liangc4937a92015-05-10 15:13:15 -04001913 case PERF_RECORD_LOST_SAMPLES:
1914 ret = machine__process_lost_samples_event(machine, event, sample); break;
Adrian Hunter02860392015-07-21 12:44:03 +03001915 case PERF_RECORD_SWITCH:
1916 case PERF_RECORD_SWITCH_CPU_WIDE:
1917 ret = machine__process_switch_event(machine, event); break;
Song Liu9aa0bfa2019-01-17 08:15:17 -08001918 case PERF_RECORD_KSYMBOL:
1919 ret = machine__process_ksymbol(machine, event, sample); break;
Song Liu45178a92019-01-17 08:15:18 -08001920 case PERF_RECORD_BPF_EVENT:
1921 ret = machine__process_bpf_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001922 default:
1923 ret = -1;
1924 break;
1925 }
1926
1927 return ret;
1928}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001929
Greg Priceb21484f2012-12-06 21:48:05 -08001930static bool symbol__match_regex(struct symbol *sym, regex_t *regex)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001931{
Arnaldo Carvalho de Meloa7c38992017-02-13 16:52:15 -03001932 if (!regexec(regex, sym->name, 0, NULL, 0))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001933 return 1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001934 return 0;
1935}
1936
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001937static void ip__resolve_ams(struct thread *thread,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001938 struct addr_map_symbol *ams,
1939 u64 ip)
1940{
1941 struct addr_location al;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001942
1943 memset(&al, 0, sizeof(al));
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -03001944 /*
1945 * We cannot use the header.misc hint to determine whether a
1946 * branch stack address is user, kernel, guest, hypervisor.
1947 * Branches may straddle the kernel/user/hypervisor boundaries.
1948 * Thus, we have to try consecutively until we find a match
1949 * or else, the symbol is unknown
1950 */
Arnaldo Carvalho de Melo26bd9332018-04-25 17:58:03 -03001951 thread__find_cpumode_addr_location(thread, ip, &al);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001952
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001953 ams->addr = ip;
1954 ams->al_addr = al.addr;
1955 ams->sym = al.sym;
1956 ams->map = al.map;
Kan Liang8780fb22017-08-29 13:11:09 -04001957 ams->phys_addr = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001958}
1959
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001960static void ip__resolve_data(struct thread *thread,
Kan Liang8780fb22017-08-29 13:11:09 -04001961 u8 m, struct addr_map_symbol *ams,
1962 u64 addr, u64 phys_addr)
Stephane Eranian98a3b322013-01-24 16:10:35 +01001963{
1964 struct addr_location al;
1965
1966 memset(&al, 0, sizeof(al));
1967
Arnaldo Carvalho de Melo117d3c22018-04-25 18:16:53 -03001968 thread__find_symbol(thread, m, addr, &al);
Don Zickus06b2afc2014-08-20 23:25:11 -04001969
Stephane Eranian98a3b322013-01-24 16:10:35 +01001970 ams->addr = addr;
1971 ams->al_addr = al.addr;
1972 ams->sym = al.sym;
1973 ams->map = al.map;
Kan Liang8780fb22017-08-29 13:11:09 -04001974 ams->phys_addr = phys_addr;
Stephane Eranian98a3b322013-01-24 16:10:35 +01001975}
1976
Arnaldo Carvalho de Meloe80faac2014-01-22 13:05:06 -03001977struct mem_info *sample__resolve_mem(struct perf_sample *sample,
1978 struct addr_location *al)
Stephane Eranian98a3b322013-01-24 16:10:35 +01001979{
Jiri Olsa9f874982018-03-07 16:50:06 +01001980 struct mem_info *mi = mem_info__new();
Stephane Eranian98a3b322013-01-24 16:10:35 +01001981
1982 if (!mi)
1983 return NULL;
1984
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001985 ip__resolve_ams(al->thread, &mi->iaddr, sample->ip);
Kan Liang8780fb22017-08-29 13:11:09 -04001986 ip__resolve_data(al->thread, al->cpumode, &mi->daddr,
1987 sample->addr, sample->phys_addr);
Stephane Eranian98a3b322013-01-24 16:10:35 +01001988 mi->data_src.val = sample->data_src;
1989
1990 return mi;
1991}
1992
Milian Wolff40a342c2017-10-09 22:32:56 +02001993static char *callchain_srcline(struct map *map, struct symbol *sym, u64 ip)
1994{
Milian Wolff21ac9d52017-10-19 13:38:34 +02001995 char *srcline = NULL;
Milian Wolff40a342c2017-10-09 22:32:56 +02001996
Milian Wolff21ac9d52017-10-19 13:38:34 +02001997 if (!map || callchain_param.key == CCKEY_FUNCTION)
1998 return srcline;
1999
2000 srcline = srcline__tree_find(&map->dso->srclines, ip);
2001 if (!srcline) {
2002 bool show_sym = false;
2003 bool show_addr = callchain_param.key == CCKEY_ADDRESS;
2004
2005 srcline = get_srcline(map->dso, map__rip_2objdump(map, ip),
Jin Yao935f5a92017-12-30 00:26:52 +08002006 sym, show_sym, show_addr, ip);
Milian Wolff21ac9d52017-10-19 13:38:34 +02002007 srcline__tree_insert(&map->dso->srclines, ip, srcline);
2008 }
2009
2010 return srcline;
Milian Wolff40a342c2017-10-09 22:32:56 +02002011}
2012
Jin Yaoc4ee0622017-08-07 21:05:15 +08002013struct iterations {
2014 int nr_loop_iter;
2015 u64 cycles;
2016};
2017
Andi Kleen37592b82014-11-12 18:05:19 -08002018static int add_callchain_ip(struct thread *thread,
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002019 struct callchain_cursor *cursor,
Andi Kleen37592b82014-11-12 18:05:19 -08002020 struct symbol **parent,
2021 struct addr_location *root_al,
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002022 u8 *cpumode,
Jin Yao410024d2016-10-31 09:19:49 +08002023 u64 ip,
2024 bool branch,
2025 struct branch_flags *flags,
Jin Yaoc4ee0622017-08-07 21:05:15 +08002026 struct iterations *iter,
Jin Yaob851dd42017-07-18 20:13:15 +08002027 u64 branch_from)
Andi Kleen37592b82014-11-12 18:05:19 -08002028{
2029 struct addr_location al;
Jin Yaoc4ee0622017-08-07 21:05:15 +08002030 int nr_loop_iter = 0;
2031 u64 iter_cycles = 0;
Milian Wolff40a342c2017-10-09 22:32:56 +02002032 const char *srcline = NULL;
Andi Kleen37592b82014-11-12 18:05:19 -08002033
2034 al.filtered = 0;
2035 al.sym = NULL;
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002036 if (!cpumode) {
Arnaldo Carvalho de Melo26bd9332018-04-25 17:58:03 -03002037 thread__find_cpumode_addr_location(thread, ip, &al);
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002038 } else {
Kan Liang2e777842014-12-02 10:06:53 -05002039 if (ip >= PERF_CONTEXT_MAX) {
2040 switch (ip) {
2041 case PERF_CONTEXT_HV:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002042 *cpumode = PERF_RECORD_MISC_HYPERVISOR;
Kan Liang2e777842014-12-02 10:06:53 -05002043 break;
2044 case PERF_CONTEXT_KERNEL:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002045 *cpumode = PERF_RECORD_MISC_KERNEL;
Kan Liang2e777842014-12-02 10:06:53 -05002046 break;
2047 case PERF_CONTEXT_USER:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002048 *cpumode = PERF_RECORD_MISC_USER;
Kan Liang2e777842014-12-02 10:06:53 -05002049 break;
2050 default:
2051 pr_debug("invalid callchain context: "
2052 "%"PRId64"\n", (s64) ip);
2053 /*
2054 * It seems the callchain is corrupted.
2055 * Discard all.
2056 */
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002057 callchain_cursor_reset(cursor);
Kan Liang2e777842014-12-02 10:06:53 -05002058 return 1;
2059 }
2060 return 0;
2061 }
Arnaldo Carvalho de Melo45462632018-04-24 11:24:49 -03002062 thread__find_symbol(thread, *cpumode, ip, &al);
Kan Liang2e777842014-12-02 10:06:53 -05002063 }
2064
Andi Kleen37592b82014-11-12 18:05:19 -08002065 if (al.sym != NULL) {
Jiri Olsade7e6a72016-05-03 13:54:43 +02002066 if (perf_hpp_list.parent && !*parent &&
Andi Kleen37592b82014-11-12 18:05:19 -08002067 symbol__match_regex(al.sym, &parent_regex))
2068 *parent = al.sym;
2069 else if (have_ignore_callees && root_al &&
2070 symbol__match_regex(al.sym, &ignore_callees_regex)) {
2071 /* Treat this symbol as the root,
2072 forgetting its callees. */
2073 *root_al = al;
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002074 callchain_cursor_reset(cursor);
Andi Kleen37592b82014-11-12 18:05:19 -08002075 }
2076 }
2077
Namhyung Kimb49a8fe2015-11-26 16:08:20 +09002078 if (symbol_conf.hide_unresolved && al.sym == NULL)
2079 return 0;
Jin Yaoc4ee0622017-08-07 21:05:15 +08002080
2081 if (iter) {
2082 nr_loop_iter = iter->nr_loop_iter;
2083 iter_cycles = iter->cycles;
2084 }
2085
Milian Wolff40a342c2017-10-09 22:32:56 +02002086 srcline = callchain_srcline(al.map, al.sym, al.addr);
Sandipan Das19610182018-05-17 12:03:25 +05302087 return callchain_cursor_append(cursor, ip, al.map, al.sym,
Jin Yaoc4ee0622017-08-07 21:05:15 +08002088 branch, flags, nr_loop_iter,
Milian Wolff40a342c2017-10-09 22:32:56 +02002089 iter_cycles, branch_from, srcline);
Andi Kleen37592b82014-11-12 18:05:19 -08002090}
2091
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03002092struct branch_info *sample__resolve_bstack(struct perf_sample *sample,
2093 struct addr_location *al)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002094{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002095 unsigned int i;
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03002096 const struct branch_stack *bs = sample->branch_stack;
2097 struct branch_info *bi = calloc(bs->nr, sizeof(struct branch_info));
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002098
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002099 if (!bi)
2100 return NULL;
2101
2102 for (i = 0; i < bs->nr; i++) {
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03002103 ip__resolve_ams(al->thread, &bi[i].to, bs->entries[i].to);
2104 ip__resolve_ams(al->thread, &bi[i].from, bs->entries[i].from);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002105 bi[i].flags = bs->entries[i].flags;
2106 }
2107 return bi;
2108}
2109
Jin Yaoc4ee0622017-08-07 21:05:15 +08002110static void save_iterations(struct iterations *iter,
2111 struct branch_entry *be, int nr)
2112{
2113 int i;
2114
Jin Yaoa3366db02019-01-04 14:10:30 +08002115 iter->nr_loop_iter++;
Jin Yaoc4ee0622017-08-07 21:05:15 +08002116 iter->cycles = 0;
2117
2118 for (i = 0; i < nr; i++)
2119 iter->cycles += be[i].flags.cycles;
2120}
2121
Andi Kleen8b7bad52014-11-12 18:05:20 -08002122#define CHASHSZ 127
2123#define CHASHBITS 7
2124#define NO_ENTRY 0xff
2125
2126#define PERF_MAX_BRANCH_DEPTH 127
2127
2128/* Remove loops. */
Jin Yaoc4ee0622017-08-07 21:05:15 +08002129static int remove_loops(struct branch_entry *l, int nr,
2130 struct iterations *iter)
Andi Kleen8b7bad52014-11-12 18:05:20 -08002131{
2132 int i, j, off;
2133 unsigned char chash[CHASHSZ];
2134
2135 memset(chash, NO_ENTRY, sizeof(chash));
2136
2137 BUG_ON(PERF_MAX_BRANCH_DEPTH > 255);
2138
2139 for (i = 0; i < nr; i++) {
2140 int h = hash_64(l[i].from, CHASHBITS) % CHASHSZ;
2141
2142 /* no collision handling for now */
2143 if (chash[h] == NO_ENTRY) {
2144 chash[h] = i;
2145 } else if (l[chash[h]].from == l[i].from) {
2146 bool is_loop = true;
2147 /* check if it is a real loop */
2148 off = 0;
2149 for (j = chash[h]; j < i && i + off < nr; j++, off++)
2150 if (l[j].from != l[i + off].from) {
2151 is_loop = false;
2152 break;
2153 }
2154 if (is_loop) {
Jin Yaoc4ee0622017-08-07 21:05:15 +08002155 j = nr - (i + off);
2156 if (j > 0) {
2157 save_iterations(iter + i + off,
2158 l + i, off);
2159
2160 memmove(iter + i, iter + i + off,
2161 j * sizeof(*iter));
2162
2163 memmove(l + i, l + i + off,
2164 j * sizeof(*l));
2165 }
2166
Andi Kleen8b7bad52014-11-12 18:05:20 -08002167 nr -= off;
2168 }
2169 }
2170 }
2171 return nr;
2172}
2173
Kan Liang384b6052015-01-05 13:23:05 -05002174/*
2175 * Recolve LBR callstack chain sample
2176 * Return:
2177 * 1 on success get LBR callchain information
2178 * 0 no available LBR callchain information, should try fp
2179 * negative error code on other errors.
2180 */
2181static int resolve_lbr_callchain_sample(struct thread *thread,
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002182 struct callchain_cursor *cursor,
Kan Liang384b6052015-01-05 13:23:05 -05002183 struct perf_sample *sample,
2184 struct symbol **parent,
2185 struct addr_location *root_al,
2186 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002187{
Kan Liang384b6052015-01-05 13:23:05 -05002188 struct ip_callchain *chain = sample->callchain;
Arnaldo Carvalho de Melo18ef15c2016-10-03 11:07:24 -03002189 int chain_nr = min(max_stack, (int)chain->nr), i;
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002190 u8 cpumode = PERF_RECORD_MISC_USER;
Jin Yaob851dd42017-07-18 20:13:15 +08002191 u64 ip, branch_from = 0;
Kan Liang384b6052015-01-05 13:23:05 -05002192
2193 for (i = 0; i < chain_nr; i++) {
2194 if (chain->ips[i] == PERF_CONTEXT_USER)
2195 break;
2196 }
2197
2198 /* LBR only affects the user callchain */
2199 if (i != chain_nr) {
2200 struct branch_stack *lbr_stack = sample->branch_stack;
Jin Yao410024d2016-10-31 09:19:49 +08002201 int lbr_nr = lbr_stack->nr, j, k;
2202 bool branch;
2203 struct branch_flags *flags;
Kan Liang384b6052015-01-05 13:23:05 -05002204 /*
2205 * LBR callstack can only get user call chain.
2206 * The mix_chain_nr is kernel call chain
2207 * number plus LBR user call chain number.
2208 * i is kernel call chain number,
2209 * 1 is PERF_CONTEXT_USER,
2210 * lbr_nr + 1 is the user call chain number.
2211 * For details, please refer to the comments
2212 * in callchain__printf
2213 */
2214 int mix_chain_nr = i + 1 + lbr_nr + 1;
2215
Kan Liang384b6052015-01-05 13:23:05 -05002216 for (j = 0; j < mix_chain_nr; j++) {
Arnaldo Carvalho de Melo18ef15c2016-10-03 11:07:24 -03002217 int err;
Jin Yao410024d2016-10-31 09:19:49 +08002218 branch = false;
2219 flags = NULL;
2220
Kan Liang384b6052015-01-05 13:23:05 -05002221 if (callchain_param.order == ORDER_CALLEE) {
2222 if (j < i + 1)
2223 ip = chain->ips[j];
Jin Yao410024d2016-10-31 09:19:49 +08002224 else if (j > i + 1) {
2225 k = j - i - 2;
2226 ip = lbr_stack->entries[k].from;
2227 branch = true;
2228 flags = &lbr_stack->entries[k].flags;
2229 } else {
Kan Liang384b6052015-01-05 13:23:05 -05002230 ip = lbr_stack->entries[0].to;
Jin Yao410024d2016-10-31 09:19:49 +08002231 branch = true;
2232 flags = &lbr_stack->entries[0].flags;
Jin Yaob851dd42017-07-18 20:13:15 +08002233 branch_from =
2234 lbr_stack->entries[0].from;
Jin Yao410024d2016-10-31 09:19:49 +08002235 }
Kan Liang384b6052015-01-05 13:23:05 -05002236 } else {
Jin Yao410024d2016-10-31 09:19:49 +08002237 if (j < lbr_nr) {
2238 k = lbr_nr - j - 1;
2239 ip = lbr_stack->entries[k].from;
2240 branch = true;
2241 flags = &lbr_stack->entries[k].flags;
2242 }
Kan Liang384b6052015-01-05 13:23:05 -05002243 else if (j > lbr_nr)
2244 ip = chain->ips[i + 1 - (j - lbr_nr)];
Jin Yao410024d2016-10-31 09:19:49 +08002245 else {
Kan Liang384b6052015-01-05 13:23:05 -05002246 ip = lbr_stack->entries[0].to;
Jin Yao410024d2016-10-31 09:19:49 +08002247 branch = true;
2248 flags = &lbr_stack->entries[0].flags;
Jin Yaob851dd42017-07-18 20:13:15 +08002249 branch_from =
2250 lbr_stack->entries[0].from;
Jin Yao410024d2016-10-31 09:19:49 +08002251 }
Kan Liang384b6052015-01-05 13:23:05 -05002252 }
2253
Jin Yao410024d2016-10-31 09:19:49 +08002254 err = add_callchain_ip(thread, cursor, parent,
2255 root_al, &cpumode, ip,
Jin Yaoc4ee0622017-08-07 21:05:15 +08002256 branch, flags, NULL,
Jin Yaob851dd42017-07-18 20:13:15 +08002257 branch_from);
Kan Liang384b6052015-01-05 13:23:05 -05002258 if (err)
2259 return (err < 0) ? err : 0;
2260 }
2261 return 1;
2262 }
2263
2264 return 0;
2265}
2266
David S. Millere9024d52018-10-30 12:12:26 -03002267static int find_prev_cpumode(struct ip_callchain *chain, struct thread *thread,
2268 struct callchain_cursor *cursor,
2269 struct symbol **parent,
2270 struct addr_location *root_al,
2271 u8 *cpumode, int ent)
2272{
2273 int err = 0;
2274
2275 while (--ent >= 0) {
2276 u64 ip = chain->ips[ent];
2277
2278 if (ip >= PERF_CONTEXT_MAX) {
2279 err = add_callchain_ip(thread, cursor, parent,
2280 root_al, cpumode, ip,
2281 false, NULL, NULL, 0);
2282 break;
2283 }
2284 }
2285 return err;
2286}
2287
Kan Liang384b6052015-01-05 13:23:05 -05002288static int thread__resolve_callchain_sample(struct thread *thread,
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002289 struct callchain_cursor *cursor,
Kan Liang384b6052015-01-05 13:23:05 -05002290 struct perf_evsel *evsel,
2291 struct perf_sample *sample,
2292 struct symbol **parent,
2293 struct addr_location *root_al,
2294 int max_stack)
2295{
2296 struct branch_stack *branch = sample->branch_stack;
2297 struct ip_callchain *chain = sample->callchain;
Jin Yaob49a8212017-05-08 18:43:02 +08002298 int chain_nr = 0;
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002299 u8 cpumode = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melobf8bddb2016-05-19 11:14:15 -03002300 int i, j, err, nr_entries;
Andi Kleen8b7bad52014-11-12 18:05:20 -08002301 int skip_idx = -1;
2302 int first_call = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002303
Jin Yaob49a8212017-05-08 18:43:02 +08002304 if (chain)
2305 chain_nr = chain->nr;
2306
Arnaldo Carvalho de Meloacf2abb2016-04-18 10:35:03 -03002307 if (perf_evsel__has_branch_callstack(evsel)) {
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002308 err = resolve_lbr_callchain_sample(thread, cursor, sample, parent,
Kan Liang384b6052015-01-05 13:23:05 -05002309 root_al, max_stack);
2310 if (err)
2311 return (err < 0) ? err : 0;
2312 }
2313
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07002314 /*
2315 * Based on DWARF debug information, some architectures skip
2316 * a callchain entry saved by the kernel.
2317 */
Arnaldo Carvalho de Melobf8bddb2016-05-19 11:14:15 -03002318 skip_idx = arch_skip_callchain_idx(thread, chain);
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07002319
Andi Kleen8b7bad52014-11-12 18:05:20 -08002320 /*
2321 * Add branches to call stack for easier browsing. This gives
2322 * more context for a sample than just the callers.
2323 *
2324 * This uses individual histograms of paths compared to the
2325 * aggregated histograms the normal LBR mode uses.
2326 *
2327 * Limitations for now:
2328 * - No extra filters
2329 * - No annotations (should annotate somehow)
2330 */
2331
2332 if (branch && callchain_param.branch_callstack) {
2333 int nr = min(max_stack, (int)branch->nr);
2334 struct branch_entry be[nr];
Jin Yaoc4ee0622017-08-07 21:05:15 +08002335 struct iterations iter[nr];
Andi Kleen8b7bad52014-11-12 18:05:20 -08002336
2337 if (branch->nr > PERF_MAX_BRANCH_DEPTH) {
2338 pr_warning("corrupted branch chain. skipping...\n");
2339 goto check_calls;
2340 }
2341
2342 for (i = 0; i < nr; i++) {
2343 if (callchain_param.order == ORDER_CALLEE) {
2344 be[i] = branch->entries[i];
Jin Yaob49a8212017-05-08 18:43:02 +08002345
2346 if (chain == NULL)
2347 continue;
2348
Andi Kleen8b7bad52014-11-12 18:05:20 -08002349 /*
2350 * Check for overlap into the callchain.
2351 * The return address is one off compared to
2352 * the branch entry. To adjust for this
2353 * assume the calling instruction is not longer
2354 * than 8 bytes.
2355 */
2356 if (i == skip_idx ||
2357 chain->ips[first_call] >= PERF_CONTEXT_MAX)
2358 first_call++;
2359 else if (be[i].from < chain->ips[first_call] &&
2360 be[i].from >= chain->ips[first_call] - 8)
2361 first_call++;
2362 } else
2363 be[i] = branch->entries[branch->nr - i - 1];
2364 }
2365
Jin Yaoc4ee0622017-08-07 21:05:15 +08002366 memset(iter, 0, sizeof(struct iterations) * nr);
2367 nr = remove_loops(be, nr, iter);
Jin Yao410024d2016-10-31 09:19:49 +08002368
Andi Kleen8b7bad52014-11-12 18:05:20 -08002369 for (i = 0; i < nr; i++) {
Jin Yaoc4ee0622017-08-07 21:05:15 +08002370 err = add_callchain_ip(thread, cursor, parent,
2371 root_al,
2372 NULL, be[i].to,
2373 true, &be[i].flags,
2374 NULL, be[i].from);
Jin Yao410024d2016-10-31 09:19:49 +08002375
Andi Kleen8b7bad52014-11-12 18:05:20 -08002376 if (!err)
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002377 err = add_callchain_ip(thread, cursor, parent, root_al,
Jin Yao410024d2016-10-31 09:19:49 +08002378 NULL, be[i].from,
2379 true, &be[i].flags,
Jin Yaoc4ee0622017-08-07 21:05:15 +08002380 &iter[i], 0);
Andi Kleen8b7bad52014-11-12 18:05:20 -08002381 if (err == -EINVAL)
2382 break;
2383 if (err)
2384 return err;
2385 }
Jin Yaob49a8212017-05-08 18:43:02 +08002386
2387 if (chain_nr == 0)
2388 return 0;
2389
Andi Kleen8b7bad52014-11-12 18:05:20 -08002390 chain_nr -= nr;
2391 }
2392
2393check_calls:
David S. Millere9024d52018-10-30 12:12:26 -03002394 if (callchain_param.order != ORDER_CALLEE) {
2395 err = find_prev_cpumode(chain, thread, cursor, parent, root_al,
2396 &cpumode, chain->nr - first_call);
2397 if (err)
2398 return (err < 0) ? err : 0;
2399 }
Arnaldo Carvalho de Melobf8bddb2016-05-19 11:14:15 -03002400 for (i = first_call, nr_entries = 0;
Arnaldo Carvalho de Meloa29d5c92016-05-16 21:16:54 -03002401 i < chain_nr && nr_entries < max_stack; i++) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002402 u64 ip;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002403
2404 if (callchain_param.order == ORDER_CALLEE)
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07002405 j = i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002406 else
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07002407 j = chain->nr - i - 1;
2408
2409#ifdef HAVE_SKIP_CALLCHAIN_IDX
2410 if (j == skip_idx)
2411 continue;
2412#endif
2413 ip = chain->ips[j];
Arnaldo Carvalho de Melobf8bddb2016-05-19 11:14:15 -03002414 if (ip < PERF_CONTEXT_MAX)
2415 ++nr_entries;
David S. Millere9024d52018-10-30 12:12:26 -03002416 else if (callchain_param.order != ORDER_CALLEE) {
2417 err = find_prev_cpumode(chain, thread, cursor, parent,
2418 root_al, &cpumode, j);
2419 if (err)
2420 return (err < 0) ? err : 0;
2421 continue;
2422 }
Arnaldo Carvalho de Meloa29d5c92016-05-16 21:16:54 -03002423
Jin Yao410024d2016-10-31 09:19:49 +08002424 err = add_callchain_ip(thread, cursor, parent,
2425 root_al, &cpumode, ip,
Jin Yaoc4ee0622017-08-07 21:05:15 +08002426 false, NULL, NULL, 0);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002427
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002428 if (err)
Kan Liang2e777842014-12-02 10:06:53 -05002429 return (err < 0) ? err : 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002430 }
2431
2432 return 0;
2433}
2434
Milian Wolff11ea2512017-10-09 22:32:59 +02002435static int append_inlines(struct callchain_cursor *cursor,
2436 struct map *map, struct symbol *sym, u64 ip)
2437{
2438 struct inline_node *inline_node;
2439 struct inline_list *ilist;
2440 u64 addr;
Milian Wolffb38775c2017-10-19 13:38:33 +02002441 int ret = 1;
Milian Wolff11ea2512017-10-09 22:32:59 +02002442
2443 if (!symbol_conf.inline_name || !map || !sym)
Milian Wolffb38775c2017-10-19 13:38:33 +02002444 return ret;
Milian Wolff11ea2512017-10-09 22:32:59 +02002445
Milian Wolff7a8a8fc2018-09-26 15:52:06 +02002446 addr = map__map_ip(map, ip);
2447 addr = map__rip_2objdump(map, addr);
Milian Wolff11ea2512017-10-09 22:32:59 +02002448
2449 inline_node = inlines__tree_find(&map->dso->inlined_nodes, addr);
2450 if (!inline_node) {
2451 inline_node = dso__parse_addr_inlines(map->dso, addr, sym);
2452 if (!inline_node)
Milian Wolffb38775c2017-10-19 13:38:33 +02002453 return ret;
Milian Wolff11ea2512017-10-09 22:32:59 +02002454 inlines__tree_insert(&map->dso->inlined_nodes, inline_node);
2455 }
2456
2457 list_for_each_entry(ilist, &inline_node->val, list) {
Milian Wolffb38775c2017-10-19 13:38:33 +02002458 ret = callchain_cursor_append(cursor, ip, map,
2459 ilist->symbol, false,
2460 NULL, 0, 0, 0, ilist->srcline);
Milian Wolff11ea2512017-10-09 22:32:59 +02002461
2462 if (ret != 0)
2463 return ret;
2464 }
2465
Milian Wolffb38775c2017-10-19 13:38:33 +02002466 return ret;
Milian Wolff11ea2512017-10-09 22:32:59 +02002467}
2468
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002469static int unwind_entry(struct unwind_entry *entry, void *arg)
2470{
2471 struct callchain_cursor *cursor = arg;
Milian Wolff40a342c2017-10-09 22:32:56 +02002472 const char *srcline = NULL;
Milian Wolffff4ce282018-09-26 15:52:05 +02002473 u64 addr = entry->ip;
Namhyung Kimb49a8fe2015-11-26 16:08:20 +09002474
2475 if (symbol_conf.hide_unresolved && entry->sym == NULL)
2476 return 0;
Milian Wolff40a342c2017-10-09 22:32:56 +02002477
Milian Wolff11ea2512017-10-09 22:32:59 +02002478 if (append_inlines(cursor, entry->map, entry->sym, entry->ip) == 0)
2479 return 0;
2480
Sandipan Das2a9d5052018-07-03 17:35:55 +05302481 /*
2482 * Convert entry->ip from a virtual address to an offset in
2483 * its corresponding binary.
2484 */
Milian Wolffff4ce282018-09-26 15:52:05 +02002485 if (entry->map)
2486 addr = map__map_ip(entry->map, entry->ip);
Sandipan Das2a9d5052018-07-03 17:35:55 +05302487
2488 srcline = callchain_srcline(entry->map, entry->sym, addr);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002489 return callchain_cursor_append(cursor, entry->ip,
Jin Yao410024d2016-10-31 09:19:49 +08002490 entry->map, entry->sym,
Milian Wolff40a342c2017-10-09 22:32:56 +02002491 false, NULL, 0, 0, 0, srcline);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002492}
2493
Chris Phlipot9919a652016-04-28 01:19:06 -07002494static int thread__resolve_callchain_unwind(struct thread *thread,
2495 struct callchain_cursor *cursor,
2496 struct perf_evsel *evsel,
2497 struct perf_sample *sample,
2498 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002499{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002500 /* Can we do dwarf post unwind? */
2501 if (!((evsel->attr.sample_type & PERF_SAMPLE_REGS_USER) &&
2502 (evsel->attr.sample_type & PERF_SAMPLE_STACK_USER)))
2503 return 0;
2504
2505 /* Bail out if nothing was captured. */
2506 if ((!sample->user_regs.regs) ||
2507 (!sample->user_stack.size))
2508 return 0;
2509
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002510 return unwind__get_entries(unwind_entry, cursor,
Jiri Olsa352ea452014-01-07 13:47:25 +01002511 thread, sample, max_stack);
Chris Phlipot9919a652016-04-28 01:19:06 -07002512}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002513
Chris Phlipot9919a652016-04-28 01:19:06 -07002514int thread__resolve_callchain(struct thread *thread,
2515 struct callchain_cursor *cursor,
2516 struct perf_evsel *evsel,
2517 struct perf_sample *sample,
2518 struct symbol **parent,
2519 struct addr_location *root_al,
2520 int max_stack)
2521{
2522 int ret = 0;
2523
Jiri Olsa914eb9c2017-08-06 16:39:39 +02002524 callchain_cursor_reset(cursor);
Chris Phlipot9919a652016-04-28 01:19:06 -07002525
2526 if (callchain_param.order == ORDER_CALLEE) {
2527 ret = thread__resolve_callchain_sample(thread, cursor,
2528 evsel, sample,
2529 parent, root_al,
2530 max_stack);
2531 if (ret)
2532 return ret;
2533 ret = thread__resolve_callchain_unwind(thread, cursor,
2534 evsel, sample,
2535 max_stack);
2536 } else {
2537 ret = thread__resolve_callchain_unwind(thread, cursor,
2538 evsel, sample,
2539 max_stack);
2540 if (ret)
2541 return ret;
2542 ret = thread__resolve_callchain_sample(thread, cursor,
2543 evsel, sample,
2544 parent, root_al,
2545 max_stack);
2546 }
2547
2548 return ret;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002549}
David Ahern35feee12013-09-28 13:12:58 -06002550
2551int machine__for_each_thread(struct machine *machine,
2552 int (*fn)(struct thread *thread, void *p),
2553 void *priv)
2554{
Kan Liang91e467b2017-09-10 19:23:14 -07002555 struct threads *threads;
David Ahern35feee12013-09-28 13:12:58 -06002556 struct rb_node *nd;
2557 struct thread *thread;
2558 int rc = 0;
Kan Liang91e467b2017-09-10 19:23:14 -07002559 int i;
David Ahern35feee12013-09-28 13:12:58 -06002560
Kan Liang91e467b2017-09-10 19:23:14 -07002561 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
2562 threads = &machine->threads[i];
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -08002563 for (nd = rb_first_cached(&threads->entries); nd;
2564 nd = rb_next(nd)) {
Kan Liang91e467b2017-09-10 19:23:14 -07002565 thread = rb_entry(nd, struct thread, rb_node);
2566 rc = fn(thread, priv);
2567 if (rc != 0)
2568 return rc;
2569 }
David Ahern35feee12013-09-28 13:12:58 -06002570
Kan Liang91e467b2017-09-10 19:23:14 -07002571 list_for_each_entry(thread, &threads->dead, node) {
2572 rc = fn(thread, priv);
2573 if (rc != 0)
2574 return rc;
2575 }
David Ahern35feee12013-09-28 13:12:58 -06002576 }
2577 return rc;
2578}
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03002579
Adrian Huntera5499b32015-05-29 16:33:30 +03002580int machines__for_each_thread(struct machines *machines,
2581 int (*fn)(struct thread *thread, void *p),
2582 void *priv)
2583{
2584 struct rb_node *nd;
2585 int rc = 0;
2586
2587 rc = machine__for_each_thread(&machines->host, fn, priv);
2588 if (rc != 0)
2589 return rc;
2590
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -08002591 for (nd = rb_first_cached(&machines->guests); nd; nd = rb_next(nd)) {
Adrian Huntera5499b32015-05-29 16:33:30 +03002592 struct machine *machine = rb_entry(nd, struct machine, rb_node);
2593
2594 rc = machine__for_each_thread(machine, fn, priv);
2595 if (rc != 0)
2596 return rc;
2597 }
2598 return rc;
2599}
2600
Arnaldo Carvalho de Meloa33fbd52013-11-11 11:36:12 -03002601int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool,
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002602 struct target *target, struct thread_map *threads,
Kan Liang9d9cad72015-06-17 09:51:11 -04002603 perf_event__handler_t process, bool data_mmap,
Kan Liang340b47f2017-09-29 07:47:54 -07002604 unsigned int nr_threads_synthesize)
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03002605{
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002606 if (target__has_task(target))
Mark Drayton3fcb10e2018-12-04 12:34:20 -08002607 return perf_event__synthesize_thread_map(tool, threads, process, machine, data_mmap);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002608 else if (target__has_cpu(target))
Kan Liang340b47f2017-09-29 07:47:54 -07002609 return perf_event__synthesize_threads(tool, process,
2610 machine, data_mmap,
Kan Liang340b47f2017-09-29 07:47:54 -07002611 nr_threads_synthesize);
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03002612 /* command specified */
2613 return 0;
2614}
Adrian Hunterb9d266b2014-07-22 16:17:25 +03002615
2616pid_t machine__get_current_tid(struct machine *machine, int cpu)
2617{
2618 if (cpu < 0 || cpu >= MAX_NR_CPUS || !machine->current_tid)
2619 return -1;
2620
2621 return machine->current_tid[cpu];
2622}
2623
2624int machine__set_current_tid(struct machine *machine, int cpu, pid_t pid,
2625 pid_t tid)
2626{
2627 struct thread *thread;
2628
2629 if (cpu < 0)
2630 return -EINVAL;
2631
2632 if (!machine->current_tid) {
2633 int i;
2634
2635 machine->current_tid = calloc(MAX_NR_CPUS, sizeof(pid_t));
2636 if (!machine->current_tid)
2637 return -ENOMEM;
2638 for (i = 0; i < MAX_NR_CPUS; i++)
2639 machine->current_tid[i] = -1;
2640 }
2641
2642 if (cpu >= MAX_NR_CPUS) {
2643 pr_err("Requested CPU %d too large. ", cpu);
2644 pr_err("Consider raising MAX_NR_CPUS\n");
2645 return -EINVAL;
2646 }
2647
2648 machine->current_tid[cpu] = tid;
2649
2650 thread = machine__findnew_thread(machine, pid, tid);
2651 if (!thread)
2652 return -ENOMEM;
2653
2654 thread->cpu = cpu;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002655 thread__put(thread);
Adrian Hunterb9d266b2014-07-22 16:17:25 +03002656
2657 return 0;
2658}
Adrian Hunterfbe2af42014-08-15 22:08:39 +03002659
Adrian Hunterdbbd34a2018-05-17 12:21:53 +03002660/*
2661 * Compares the raw arch string. N.B. see instead perf_env__arch() if a
2662 * normalized arch is needed.
2663 */
2664bool machine__is(struct machine *machine, const char *arch)
2665{
2666 return machine && !strcmp(perf_env__raw_arch(machine->env), arch);
2667}
2668
Adrian Hunter9cecca32018-05-22 13:54:32 +03002669int machine__nr_cpus_avail(struct machine *machine)
2670{
2671 return machine ? perf_env__nr_cpus_avail(machine->env) : 0;
2672}
2673
Adrian Hunterfbe2af42014-08-15 22:08:39 +03002674int machine__get_kernel_start(struct machine *machine)
2675{
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -03002676 struct map *map = machine__kernel_map(machine);
Adrian Hunterfbe2af42014-08-15 22:08:39 +03002677 int err = 0;
2678
2679 /*
2680 * The only addresses above 2^63 are kernel addresses of a 64-bit
2681 * kernel. Note that addresses are unsigned so that on a 32-bit system
2682 * all addresses including kernel addresses are less than 2^32. In
2683 * that case (32-bit system), if the kernel mapping is unknown, all
2684 * addresses will be assumed to be in user space - see
2685 * machine__kernel_ip().
2686 */
2687 machine->kernel_start = 1ULL << 63;
2688 if (map) {
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03002689 err = map__load(map);
Adrian Hunter19422a92018-05-17 12:21:54 +03002690 /*
2691 * On x86_64, PTI entry trampolines are less than the
2692 * start of kernel text, but still above 2^63. So leave
2693 * kernel_start = 1ULL << 63 for x86_64.
2694 */
2695 if (!err && !machine__is(machine, "x86_64"))
Adrian Hunterfbe2af42014-08-15 22:08:39 +03002696 machine->kernel_start = map->start;
2697 }
2698 return err;
2699}
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03002700
Adrian Hunter8e80ad92018-11-06 23:07:10 +02002701u8 machine__addr_cpumode(struct machine *machine, u8 cpumode, u64 addr)
2702{
2703 u8 addr_cpumode = cpumode;
2704 bool kernel_ip;
2705
2706 if (!machine->single_address_space)
2707 goto out;
2708
2709 kernel_ip = machine__kernel_ip(machine, addr);
2710 switch (cpumode) {
2711 case PERF_RECORD_MISC_KERNEL:
2712 case PERF_RECORD_MISC_USER:
2713 addr_cpumode = kernel_ip ? PERF_RECORD_MISC_KERNEL :
2714 PERF_RECORD_MISC_USER;
2715 break;
2716 case PERF_RECORD_MISC_GUEST_KERNEL:
2717 case PERF_RECORD_MISC_GUEST_USER:
2718 addr_cpumode = kernel_ip ? PERF_RECORD_MISC_GUEST_KERNEL :
2719 PERF_RECORD_MISC_GUEST_USER;
2720 break;
2721 default:
2722 break;
2723 }
2724out:
2725 return addr_cpumode;
2726}
2727
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03002728struct dso *machine__findnew_dso(struct machine *machine, const char *filename)
2729{
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03002730 return dsos__findnew(&machine->dsos, filename);
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03002731}
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -03002732
2733char *machine__resolve_kernel_addr(void *vmachine, unsigned long long *addrp, char **modp)
2734{
2735 struct machine *machine = vmachine;
2736 struct map *map;
Arnaldo Carvalho de Melo107cad92018-04-30 12:20:54 -03002737 struct symbol *sym = machine__find_kernel_symbol(machine, *addrp, &map);
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -03002738
2739 if (sym == NULL)
2740 return NULL;
2741
2742 *modp = __map__is_kmodule(map) ? (char *)map->dso->short_name : NULL;
2743 *addrp = map->unmap_ip(map, sym->start);
2744 return sym->name;
2745}