blob: 17eec39e775e1f49261bc61dec9a2cb81972ff28 [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 Hunterd027b6402014-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 Melo3d689ed2017-04-17 16:10:49 -030027#include "sane_ctype.h"
28#include <symbol/kallsyms.h>
Arnaldo Carvalho de Melo0f476f22018-04-26 11:30:50 -030029#include <linux/mman.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030030
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030031static void __machine__remove_thread(struct machine *machine, struct thread *th, bool lock);
32
Arnaldo Carvalho de Meloe167f992014-10-14 15:07:48 -030033static void dsos__init(struct dsos *dsos)
34{
35 INIT_LIST_HEAD(&dsos->head);
36 dsos->root = RB_ROOT;
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -030037 init_rwsem(&dsos->lock);
Arnaldo Carvalho de Meloe167f992014-10-14 15:07:48 -030038}
39
Kan Liang91e467b2017-09-10 19:23:14 -070040static void machine__threads_init(struct machine *machine)
41{
42 int i;
43
44 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
45 struct threads *threads = &machine->threads[i];
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -080046 threads->entries = RB_ROOT_CACHED;
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -030047 init_rwsem(&threads->lock);
Kan Liang91e467b2017-09-10 19:23:14 -070048 threads->nr = 0;
49 INIT_LIST_HEAD(&threads->dead);
50 threads->last_match = NULL;
51 }
52}
53
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +010054static int machine__set_mmap_name(struct machine *machine)
55{
Jiri Olsac1925242018-03-12 16:24:06 +010056 if (machine__is_host(machine))
57 machine->mmap_name = strdup("[kernel.kallsyms]");
58 else if (machine__is_default_guest(machine))
59 machine->mmap_name = strdup("[guest.kernel.kallsyms]");
60 else if (asprintf(&machine->mmap_name, "[guest.kernel.kallsyms.%d]",
61 machine->pid) < 0)
62 machine->mmap_name = NULL;
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +010063
64 return machine->mmap_name ? 0 : -ENOMEM;
65}
66
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030067int machine__init(struct machine *machine, const char *root_dir, pid_t pid)
68{
Jiri Olsa81f981d2018-02-15 13:26:29 +010069 int err = -ENOMEM;
70
Wang Nan93b0ba32015-12-08 02:25:44 +000071 memset(machine, 0, sizeof(*machine));
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -030072 map_groups__init(&machine->kmaps, machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030073 RB_CLEAR_NODE(&machine->rb_node);
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -030074 dsos__init(&machine->dsos);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030075
Kan Liang91e467b2017-09-10 19:23:14 -070076 machine__threads_init(machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030077
Adrian Hunterd027b6402014-07-23 14:23:00 +030078 machine->vdso_info = NULL;
Arnaldo Carvalho de Melo4cde9982015-09-09 12:25:00 -030079 machine->env = NULL;
Adrian Hunterd027b6402014-07-23 14:23:00 +030080
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030081 machine->pid = pid;
82
Jiri Olsa14bd6d22014-01-07 13:47:19 +010083 machine->id_hdr_size = 0;
Arnaldo Carvalho de Melocaf8a0d2016-05-17 11:56:24 -030084 machine->kptr_restrict_warned = false;
Adrian Huntercfe1c412014-07-31 09:00:45 +030085 machine->comm_exec = false;
Adrian Hunterfbe2af42014-08-15 22:08:39 +030086 machine->kernel_start = 0;
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -030087 machine->vmlinux_map = NULL;
Masami Hiramatsucc1121a2015-12-09 11:11:33 +090088
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030089 machine->root_dir = strdup(root_dir);
90 if (machine->root_dir == NULL)
91 return -ENOMEM;
92
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +010093 if (machine__set_mmap_name(machine))
94 goto out;
95
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030096 if (pid != HOST_KERNEL_ID) {
Adrian Hunter1fcb8762014-07-14 13:02:25 +030097 struct thread *thread = machine__findnew_thread(machine, -1,
Adrian Hunter314add62013-08-27 11:23:03 +030098 pid);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030099 char comm[64];
100
101 if (thread == NULL)
Jiri Olsa81f981d2018-02-15 13:26:29 +0100102 goto out;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300103
104 snprintf(comm, sizeof(comm), "[guest/%d]", pid);
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200105 thread__set_comm(thread, comm, 0);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300106 thread__put(thread);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300107 }
108
Adrian Hunterb9d266b2014-07-22 16:17:25 +0300109 machine->current_tid = NULL;
Jiri Olsa81f981d2018-02-15 13:26:29 +0100110 err = 0;
Adrian Hunterb9d266b2014-07-22 16:17:25 +0300111
Jiri Olsa81f981d2018-02-15 13:26:29 +0100112out:
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +0100113 if (err) {
Jiri Olsa81f981d2018-02-15 13:26:29 +0100114 zfree(&machine->root_dir);
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +0100115 zfree(&machine->mmap_name);
116 }
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300117 return 0;
118}
119
David Ahern8fb598e2013-09-28 13:13:00 -0600120struct machine *machine__new_host(void)
121{
122 struct machine *machine = malloc(sizeof(*machine));
123
124 if (machine != NULL) {
125 machine__init(machine, "", HOST_KERNEL_ID);
126
127 if (machine__create_kernel_maps(machine) < 0)
128 goto out_delete;
129 }
130
131 return machine;
132out_delete:
133 free(machine);
134 return NULL;
135}
136
Arnaldo Carvalho de Melo7d132ca2017-01-05 15:31:48 -0300137struct machine *machine__new_kallsyms(void)
138{
139 struct machine *machine = machine__new_host();
140 /*
141 * FIXME:
Ingo Molnaradba1632018-12-03 11:22:00 +0100142 * 1) We should switch to machine__load_kallsyms(), i.e. not explicitly
Arnaldo Carvalho de Melo7d132ca2017-01-05 15:31:48 -0300143 * ask for not using the kcore parsing code, once this one is fixed
144 * to create a map per module.
145 */
Arnaldo Carvalho de Melo329f0ad2018-04-25 11:40:32 -0300146 if (machine && machine__load_kallsyms(machine, "/proc/kallsyms") <= 0) {
Arnaldo Carvalho de Melo7d132ca2017-01-05 15:31:48 -0300147 machine__delete(machine);
148 machine = NULL;
149 }
150
151 return machine;
152}
153
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300154static void dsos__purge(struct dsos *dsos)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300155{
156 struct dso *pos, *n;
157
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300158 down_write(&dsos->lock);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300159
Waiman Long8fa7d872014-09-29 16:07:28 -0400160 list_for_each_entry_safe(pos, n, &dsos->head, node) {
Waiman Long4598a0a2014-09-30 13:36:15 -0400161 RB_CLEAR_NODE(&pos->rb_node);
Adrian Huntere266a752015-11-13 11:48:30 +0200162 pos->root = NULL;
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300163 list_del_init(&pos->node);
164 dso__put(pos);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300165 }
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300166
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300167 up_write(&dsos->lock);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300168}
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300169
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300170static void dsos__exit(struct dsos *dsos)
171{
172 dsos__purge(dsos);
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300173 exit_rwsem(&dsos->lock);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300174}
175
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300176void machine__delete_threads(struct machine *machine)
177{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300178 struct rb_node *nd;
Kan Liang91e467b2017-09-10 19:23:14 -0700179 int i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300180
Kan Liang91e467b2017-09-10 19:23:14 -0700181 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
182 struct threads *threads = &machine->threads[i];
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300183 down_write(&threads->lock);
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800184 nd = rb_first_cached(&threads->entries);
Kan Liang91e467b2017-09-10 19:23:14 -0700185 while (nd) {
186 struct thread *t = rb_entry(nd, struct thread, rb_node);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300187
Kan Liang91e467b2017-09-10 19:23:14 -0700188 nd = rb_next(nd);
189 __machine__remove_thread(machine, t, false);
190 }
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300191 up_write(&threads->lock);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300192 }
193}
194
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300195void machine__exit(struct machine *machine)
196{
Kan Liang91e467b2017-09-10 19:23:14 -0700197 int i;
198
Arnaldo Carvalho de Melo19993b82017-11-13 16:06:29 -0300199 if (machine == NULL)
200 return;
201
Masami Hiramatsuebe97292015-11-18 15:40:24 +0900202 machine__destroy_kernel_maps(machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300203 map_groups__exit(&machine->kmaps);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300204 dsos__exit(&machine->dsos);
Arnaldo Carvalho de Melo9a4388c2015-05-29 11:54:08 -0300205 machine__exit_vdso(machine);
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300206 zfree(&machine->root_dir);
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +0100207 zfree(&machine->mmap_name);
Adrian Hunterb9d266b2014-07-22 16:17:25 +0300208 zfree(&machine->current_tid);
Kan Liang91e467b2017-09-10 19:23:14 -0700209
210 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
211 struct threads *threads = &machine->threads[i];
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300212 exit_rwsem(&threads->lock);
Kan Liang91e467b2017-09-10 19:23:14 -0700213 }
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300214}
215
216void machine__delete(struct machine *machine)
217{
Arnaldo Carvalho de Melo32ca6782016-06-22 10:19:11 -0300218 if (machine) {
219 machine__exit(machine);
220 free(machine);
221 }
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300222}
223
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300224void machines__init(struct machines *machines)
225{
226 machine__init(&machines->host, "", HOST_KERNEL_ID);
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800227 machines->guests = RB_ROOT_CACHED;
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300228}
229
230void machines__exit(struct machines *machines)
231{
232 machine__exit(&machines->host);
233 /* XXX exit guest */
234}
235
236struct machine *machines__add(struct machines *machines, pid_t pid,
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300237 const char *root_dir)
238{
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800239 struct rb_node **p = &machines->guests.rb_root.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300240 struct rb_node *parent = NULL;
241 struct machine *pos, *machine = malloc(sizeof(*machine));
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800242 bool leftmost = true;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300243
244 if (machine == NULL)
245 return NULL;
246
247 if (machine__init(machine, root_dir, pid) != 0) {
248 free(machine);
249 return NULL;
250 }
251
252 while (*p != NULL) {
253 parent = *p;
254 pos = rb_entry(parent, struct machine, rb_node);
255 if (pid < pos->pid)
256 p = &(*p)->rb_left;
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800257 else {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300258 p = &(*p)->rb_right;
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800259 leftmost = false;
260 }
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300261 }
262
263 rb_link_node(&machine->rb_node, parent, p);
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800264 rb_insert_color_cached(&machine->rb_node, &machines->guests, leftmost);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300265
266 return machine;
267}
268
Adrian Huntercfe1c412014-07-31 09:00:45 +0300269void machines__set_comm_exec(struct machines *machines, bool comm_exec)
270{
271 struct rb_node *nd;
272
273 machines->host.comm_exec = comm_exec;
274
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800275 for (nd = rb_first_cached(&machines->guests); nd; nd = rb_next(nd)) {
Adrian Huntercfe1c412014-07-31 09:00:45 +0300276 struct machine *machine = rb_entry(nd, struct machine, rb_node);
277
278 machine->comm_exec = comm_exec;
279 }
280}
281
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300282struct machine *machines__find(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300283{
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800284 struct rb_node **p = &machines->guests.rb_root.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300285 struct rb_node *parent = NULL;
286 struct machine *machine;
287 struct machine *default_machine = NULL;
288
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300289 if (pid == HOST_KERNEL_ID)
290 return &machines->host;
291
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300292 while (*p != NULL) {
293 parent = *p;
294 machine = rb_entry(parent, struct machine, rb_node);
295 if (pid < machine->pid)
296 p = &(*p)->rb_left;
297 else if (pid > machine->pid)
298 p = &(*p)->rb_right;
299 else
300 return machine;
301 if (!machine->pid)
302 default_machine = machine;
303 }
304
305 return default_machine;
306}
307
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300308struct machine *machines__findnew(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300309{
310 char path[PATH_MAX];
311 const char *root_dir = "";
312 struct machine *machine = machines__find(machines, pid);
313
314 if (machine && (machine->pid == pid))
315 goto out;
316
317 if ((pid != HOST_KERNEL_ID) &&
318 (pid != DEFAULT_GUEST_KERNEL_ID) &&
319 (symbol_conf.guestmount)) {
320 sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
321 if (access(path, R_OK)) {
322 static struct strlist *seen;
323
324 if (!seen)
Arnaldo Carvalho de Melo4a77e212015-07-20 12:13:34 -0300325 seen = strlist__new(NULL, NULL);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300326
327 if (!strlist__has_entry(seen, path)) {
328 pr_err("Can't access file %s\n", path);
329 strlist__add(seen, path);
330 }
331 machine = NULL;
332 goto out;
333 }
334 root_dir = path;
335 }
336
337 machine = machines__add(machines, pid, root_dir);
338out:
339 return machine;
340}
341
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300342void machines__process_guests(struct machines *machines,
343 machine__process_t process, void *data)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300344{
345 struct rb_node *nd;
346
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800347 for (nd = rb_first_cached(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300348 struct machine *pos = rb_entry(nd, struct machine, rb_node);
349 process(pos, data);
350 }
351}
352
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300353void machines__set_id_hdr_size(struct machines *machines, u16 id_hdr_size)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300354{
355 struct rb_node *node;
356 struct machine *machine;
357
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300358 machines->host.id_hdr_size = id_hdr_size;
359
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800360 for (node = rb_first_cached(&machines->guests); node;
361 node = rb_next(node)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300362 machine = rb_entry(node, struct machine, rb_node);
363 machine->id_hdr_size = id_hdr_size;
364 }
365
366 return;
367}
368
Adrian Hunter29ce3612014-07-16 11:07:13 +0300369static void machine__update_thread_pid(struct machine *machine,
370 struct thread *th, pid_t pid)
371{
372 struct thread *leader;
373
374 if (pid == th->pid_ || pid == -1 || th->pid_ != -1)
375 return;
376
377 th->pid_ = pid;
378
379 if (th->pid_ == th->tid)
380 return;
381
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300382 leader = __machine__findnew_thread(machine, th->pid_, th->pid_);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300383 if (!leader)
384 goto out_err;
385
386 if (!leader->mg)
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -0300387 leader->mg = map_groups__new(machine);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300388
389 if (!leader->mg)
390 goto out_err;
391
392 if (th->mg == leader->mg)
393 return;
394
395 if (th->mg) {
396 /*
397 * Maps are created from MMAP events which provide the pid and
398 * tid. Consequently there never should be any maps on a thread
399 * with an unknown pid. Just print an error if there are.
400 */
401 if (!map_groups__empty(th->mg))
402 pr_err("Discarding thread maps for %d:%d\n",
403 th->pid_, th->tid);
Arnaldo Carvalho de Melo8e160b22015-05-19 20:07:14 -0300404 map_groups__put(th->mg);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300405 }
406
407 th->mg = map_groups__get(leader->mg);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300408out_put:
409 thread__put(leader);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300410 return;
Adrian Hunter29ce3612014-07-16 11:07:13 +0300411out_err:
412 pr_err("Failed to join map groups for %d:%d\n", th->pid_, th->tid);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300413 goto out_put;
Adrian Hunter29ce3612014-07-16 11:07:13 +0300414}
415
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300416/*
Jiri Olsaf8b2ebb2018-07-19 16:33:42 +0200417 * Front-end cache - TID lookups come in blocks,
418 * so most of the time we dont have to look up
419 * the full rbtree:
420 */
421static struct thread*
Jiri Olsab57334b2018-07-19 16:33:44 +0200422__threads__get_last_match(struct threads *threads, struct machine *machine,
423 int pid, int tid)
Jiri Olsaf8b2ebb2018-07-19 16:33:42 +0200424{
425 struct thread *th;
426
427 th = threads->last_match;
428 if (th != NULL) {
429 if (th->tid == tid) {
430 machine__update_thread_pid(machine, th, pid);
431 return thread__get(th);
432 }
433
434 threads->last_match = NULL;
435 }
436
437 return NULL;
438}
439
Jiri Olsab57334b2018-07-19 16:33:44 +0200440static struct thread*
441threads__get_last_match(struct threads *threads, struct machine *machine,
442 int pid, int tid)
443{
444 struct thread *th = NULL;
445
446 if (perf_singlethreaded)
447 th = __threads__get_last_match(threads, machine, pid, tid);
448
449 return th;
450}
451
452static void
453__threads__set_last_match(struct threads *threads, struct thread *th)
454{
455 threads->last_match = th;
456}
457
Jiri Olsa67fda0f2018-07-19 16:33:43 +0200458static void
459threads__set_last_match(struct threads *threads, struct thread *th)
460{
Jiri Olsab57334b2018-07-19 16:33:44 +0200461 if (perf_singlethreaded)
462 __threads__set_last_match(threads, th);
Jiri Olsa67fda0f2018-07-19 16:33:43 +0200463}
464
Jiri Olsaf8b2ebb2018-07-19 16:33:42 +0200465/*
Adam Buchbinderbd1a0be52016-02-24 10:02:25 -0800466 * Caller must eventually drop thread->refcnt returned with a successful
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300467 * lookup/new thread inserted.
468 */
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300469static struct thread *____machine__findnew_thread(struct machine *machine,
Arnaldo Carvalho de Melo75e45e42017-09-14 16:16:34 -0300470 struct threads *threads,
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300471 pid_t pid, pid_t tid,
472 bool create)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300473{
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800474 struct rb_node **p = &threads->entries.rb_root.rb_node;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300475 struct rb_node *parent = NULL;
476 struct thread *th;
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800477 bool leftmost = true;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300478
Jiri Olsaf8b2ebb2018-07-19 16:33:42 +0200479 th = threads__get_last_match(threads, machine, pid, tid);
480 if (th)
481 return th;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300482
483 while (*p != NULL) {
484 parent = *p;
485 th = rb_entry(parent, struct thread, rb_node);
486
Adrian Hunter38051232013-07-04 16:20:31 +0300487 if (th->tid == tid) {
Jiri Olsa67fda0f2018-07-19 16:33:43 +0200488 threads__set_last_match(threads, th);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300489 machine__update_thread_pid(machine, th, pid);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300490 return thread__get(th);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300491 }
492
Adrian Hunter38051232013-07-04 16:20:31 +0300493 if (tid < th->tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300494 p = &(*p)->rb_left;
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800495 else {
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300496 p = &(*p)->rb_right;
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800497 leftmost = false;
498 }
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300499 }
500
501 if (!create)
502 return NULL;
503
Adrian Hunter99d725f2013-08-26 16:00:19 +0300504 th = thread__new(pid, tid);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300505 if (th != NULL) {
506 rb_link_node(&th->rb_node, parent, p);
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800507 rb_insert_color_cached(&th->rb_node, &threads->entries, leftmost);
Jiri Olsacddcef62014-04-09 20:54:29 +0200508
509 /*
510 * We have to initialize map_groups separately
511 * after rb tree is updated.
512 *
513 * The reason is that we call machine__findnew_thread
514 * within thread__init_map_groups to find the thread
515 * leader and that would screwed the rb tree.
516 */
Adrian Hunter418029b2014-07-16 10:19:44 +0300517 if (thread__init_map_groups(th, machine)) {
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800518 rb_erase_cached(&th->rb_node, &threads->entries);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300519 RB_CLEAR_NODE(&th->rb_node);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300520 thread__put(th);
Jiri Olsacddcef62014-04-09 20:54:29 +0200521 return NULL;
Adrian Hunter418029b2014-07-16 10:19:44 +0300522 }
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300523 /*
524 * It is now in the rbtree, get a ref
525 */
526 thread__get(th);
Jiri Olsa67fda0f2018-07-19 16:33:43 +0200527 threads__set_last_match(threads, th);
Kan Liang91e467b2017-09-10 19:23:14 -0700528 ++threads->nr;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300529 }
530
531 return th;
532}
533
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300534struct thread *__machine__findnew_thread(struct machine *machine, pid_t pid, pid_t tid)
535{
Arnaldo Carvalho de Melo75e45e42017-09-14 16:16:34 -0300536 return ____machine__findnew_thread(machine, machine__threads(machine, tid), pid, tid, true);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300537}
538
Adrian Hunter314add62013-08-27 11:23:03 +0300539struct thread *machine__findnew_thread(struct machine *machine, pid_t pid,
540 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300541{
Kan Liang91e467b2017-09-10 19:23:14 -0700542 struct threads *threads = machine__threads(machine, tid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300543 struct thread *th;
544
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300545 down_write(&threads->lock);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300546 th = __machine__findnew_thread(machine, pid, tid);
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300547 up_write(&threads->lock);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300548 return th;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300549}
550
Jiri Olsad75e6092014-03-14 15:00:03 +0100551struct thread *machine__find_thread(struct machine *machine, pid_t pid,
552 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300553{
Kan Liang91e467b2017-09-10 19:23:14 -0700554 struct threads *threads = machine__threads(machine, tid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300555 struct thread *th;
Kan Liang91e467b2017-09-10 19:23:14 -0700556
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300557 down_read(&threads->lock);
Arnaldo Carvalho de Melo75e45e42017-09-14 16:16:34 -0300558 th = ____machine__findnew_thread(machine, threads, pid, tid, false);
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300559 up_read(&threads->lock);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300560 return th;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300561}
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300562
Adrian Huntercfe1c412014-07-31 09:00:45 +0300563struct comm *machine__thread_exec_comm(struct machine *machine,
564 struct thread *thread)
565{
566 if (machine->comm_exec)
567 return thread__exec_comm(thread);
568 else
569 return thread__comm(thread);
570}
571
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200572int machine__process_comm_event(struct machine *machine, union perf_event *event,
573 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300574{
Adrian Hunter314add62013-08-27 11:23:03 +0300575 struct thread *thread = machine__findnew_thread(machine,
576 event->comm.pid,
577 event->comm.tid);
Adrian Hunter65de51f2014-07-31 09:00:44 +0300578 bool exec = event->header.misc & PERF_RECORD_MISC_COMM_EXEC;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300579 int err = 0;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300580
Adrian Huntercfe1c412014-07-31 09:00:45 +0300581 if (exec)
582 machine->comm_exec = true;
583
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300584 if (dump_trace)
585 perf_event__fprintf_comm(event, stdout);
586
Adrian Hunter65de51f2014-07-31 09:00:44 +0300587 if (thread == NULL ||
588 __thread__set_comm(thread, event->comm.comm, sample->time, exec)) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300589 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300590 err = -1;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300591 }
592
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300593 thread__put(thread);
594
595 return err;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300596}
597
Hari Bathinif3b36142017-03-08 02:11:43 +0530598int machine__process_namespaces_event(struct machine *machine __maybe_unused,
599 union perf_event *event,
600 struct perf_sample *sample __maybe_unused)
601{
602 struct thread *thread = machine__findnew_thread(machine,
603 event->namespaces.pid,
604 event->namespaces.tid);
605 int err = 0;
606
607 WARN_ONCE(event->namespaces.nr_namespaces > NR_NAMESPACES,
608 "\nWARNING: kernel seems to support more namespaces than perf"
609 " tool.\nTry updating the perf tool..\n\n");
610
611 WARN_ONCE(event->namespaces.nr_namespaces < NR_NAMESPACES,
612 "\nWARNING: perf tool seems to support more namespaces than"
613 " the kernel.\nTry updating the kernel..\n\n");
614
615 if (dump_trace)
616 perf_event__fprintf_namespaces(event, stdout);
617
618 if (thread == NULL ||
619 thread__set_namespaces(thread, sample->time, &event->namespaces)) {
620 dump_printf("problem processing PERF_RECORD_NAMESPACES, skipping event.\n");
621 err = -1;
622 }
623
624 thread__put(thread);
625
626 return err;
627}
628
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300629int machine__process_lost_event(struct machine *machine __maybe_unused,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200630 union perf_event *event, struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300631{
632 dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
633 event->lost.id, event->lost.lost);
634 return 0;
635}
636
Kan Liangc4937a92015-05-10 15:13:15 -0400637int machine__process_lost_samples_event(struct machine *machine __maybe_unused,
638 union perf_event *event, struct perf_sample *sample)
639{
640 dump_printf(": id:%" PRIu64 ": lost samples :%" PRIu64 "\n",
641 sample->id, event->lost_samples.lost);
642 return 0;
643}
644
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300645static struct dso *machine__findnew_module_dso(struct machine *machine,
646 struct kmod_path *m,
647 const char *filename)
Jiri Olsada17ea32015-02-12 22:10:52 +0100648{
649 struct dso *dso;
Jiri Olsada17ea32015-02-12 22:10:52 +0100650
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300651 down_write(&machine->dsos.lock);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300652
653 dso = __dsos__find(&machine->dsos, m->name, true);
Jiri Olsada17ea32015-02-12 22:10:52 +0100654 if (!dso) {
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300655 dso = __dsos__addnew(&machine->dsos, m->name);
Jiri Olsada17ea32015-02-12 22:10:52 +0100656 if (dso == NULL)
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300657 goto out_unlock;
Jiri Olsada17ea32015-02-12 22:10:52 +0100658
Namhyung Kim6b335e82017-05-31 21:01:04 +0900659 dso__set_module_info(dso, m, machine);
Jiri Olsaca333802015-02-17 17:29:57 +0100660 dso__set_long_name(dso, strdup(filename), true);
Jiri Olsada17ea32015-02-12 22:10:52 +0100661 }
662
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300663 dso__get(dso);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300664out_unlock:
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300665 up_write(&machine->dsos.lock);
Jiri Olsada17ea32015-02-12 22:10:52 +0100666 return dso;
667}
668
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300669int machine__process_aux_event(struct machine *machine __maybe_unused,
670 union perf_event *event)
671{
672 if (dump_trace)
673 perf_event__fprintf_aux(event, stdout);
674 return 0;
675}
676
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300677int machine__process_itrace_start_event(struct machine *machine __maybe_unused,
678 union perf_event *event)
679{
680 if (dump_trace)
681 perf_event__fprintf_itrace_start(event, stdout);
682 return 0;
683}
684
Adrian Hunter02860392015-07-21 12:44:03 +0300685int machine__process_switch_event(struct machine *machine __maybe_unused,
686 union perf_event *event)
687{
688 if (dump_trace)
689 perf_event__fprintf_switch(event, stdout);
690 return 0;
691}
692
Song Liu9aa0bfa2019-01-17 08:15:17 -0800693static int machine__process_ksymbol_register(struct machine *machine,
694 union perf_event *event,
695 struct perf_sample *sample __maybe_unused)
696{
697 struct symbol *sym;
698 struct map *map;
699
700 map = map_groups__find(&machine->kmaps, event->ksymbol_event.addr);
701 if (!map) {
702 map = dso__new_map(event->ksymbol_event.name);
703 if (!map)
704 return -ENOMEM;
705
706 map->start = event->ksymbol_event.addr;
Song Liu9aa0bfa2019-01-17 08:15:17 -0800707 map->end = map->start + event->ksymbol_event.len;
708 map_groups__insert(&machine->kmaps, map);
709 }
710
Jiri Olsa8529f2e2019-05-08 15:20:04 +0200711 sym = symbol__new(map->map_ip(map, map->start),
712 event->ksymbol_event.len,
Song Liu9aa0bfa2019-01-17 08:15:17 -0800713 0, 0, event->ksymbol_event.name);
714 if (!sym)
715 return -ENOMEM;
716 dso__insert_symbol(map->dso, sym);
717 return 0;
718}
719
720static int machine__process_ksymbol_unregister(struct machine *machine,
721 union perf_event *event,
722 struct perf_sample *sample __maybe_unused)
723{
724 struct map *map;
725
726 map = map_groups__find(&machine->kmaps, event->ksymbol_event.addr);
727 if (map)
728 map_groups__remove(&machine->kmaps, map);
729
730 return 0;
731}
732
733int machine__process_ksymbol(struct machine *machine __maybe_unused,
734 union perf_event *event,
735 struct perf_sample *sample)
736{
737 if (dump_trace)
738 perf_event__fprintf_ksymbol(event, stdout);
739
740 if (event->ksymbol_event.flags & PERF_RECORD_KSYMBOL_FLAGS_UNREGISTER)
741 return machine__process_ksymbol_unregister(machine, event,
742 sample);
743 return machine__process_ksymbol_register(machine, event, sample);
744}
745
Wang Nanc03d5182015-11-26 03:59:57 +0000746static void dso__adjust_kmod_long_name(struct dso *dso, const char *filename)
747{
748 const char *dup_filename;
749
750 if (!filename || !dso || !dso->long_name)
751 return;
752 if (dso->long_name[0] != '[')
753 return;
754 if (!strchr(filename, '/'))
755 return;
756
757 dup_filename = strdup(filename);
758 if (!dup_filename)
759 return;
760
Wang Nan5dcf16d2015-12-07 02:36:25 +0000761 dso__set_long_name(dso, dup_filename, true);
Wang Nanc03d5182015-11-26 03:59:57 +0000762}
763
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300764struct map *machine__findnew_module_map(struct machine *machine, u64 start,
765 const char *filename)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300766{
Jiri Olsaca333802015-02-17 17:29:57 +0100767 struct map *map = NULL;
Masami Hiramatsu566c69c2015-11-18 15:40:35 +0900768 struct dso *dso = NULL;
Jiri Olsaca333802015-02-17 17:29:57 +0100769 struct kmod_path m;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300770
Jiri Olsaca333802015-02-17 17:29:57 +0100771 if (kmod_path__parse_name(&m, filename))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300772 return NULL;
773
Arnaldo Carvalho de Melo83cf7742018-04-24 12:16:09 -0300774 map = map_groups__find_by_name(&machine->kmaps, m.name);
Wang Nanc03d5182015-11-26 03:59:57 +0000775 if (map) {
776 /*
777 * If the map's dso is an offline module, give dso__load()
778 * a chance to find the file path of that module by fixing
779 * long_name.
780 */
781 dso__adjust_kmod_long_name(map->dso, filename);
Jiri Olsabc84f462015-02-17 17:31:18 +0100782 goto out;
Wang Nanc03d5182015-11-26 03:59:57 +0000783 }
Jiri Olsabc84f462015-02-17 17:31:18 +0100784
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300785 dso = machine__findnew_module_dso(machine, &m, filename);
Jiri Olsaca333802015-02-17 17:29:57 +0100786 if (dso == NULL)
787 goto out;
788
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300789 map = map__new2(start, dso);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300790 if (map == NULL)
Jiri Olsaca333802015-02-17 17:29:57 +0100791 goto out;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300792
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300793 map_groups__insert(&machine->kmaps, map);
Jiri Olsaca333802015-02-17 17:29:57 +0100794
Masami Hiramatsu9afcb4202015-11-18 15:40:20 +0900795 /* Put the map here because map_groups__insert alread got it */
796 map__put(map);
Jiri Olsaca333802015-02-17 17:29:57 +0100797out:
Masami Hiramatsu566c69c2015-11-18 15:40:35 +0900798 /* put the dso here, corresponding to machine__findnew_module_dso */
799 dso__put(dso);
Jiri Olsaca333802015-02-17 17:29:57 +0100800 free(m.name);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300801 return map;
802}
803
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300804size_t machines__fprintf_dsos(struct machines *machines, FILE *fp)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300805{
806 struct rb_node *nd;
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300807 size_t ret = __dsos__fprintf(&machines->host.dsos.head, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300808
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800809 for (nd = rb_first_cached(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300810 struct machine *pos = rb_entry(nd, struct machine, rb_node);
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300811 ret += __dsos__fprintf(&pos->dsos.head, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300812 }
813
814 return ret;
815}
816
Waiman Long8fa7d872014-09-29 16:07:28 -0400817size_t machine__fprintf_dsos_buildid(struct machine *m, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300818 bool (skip)(struct dso *dso, int parm), int parm)
819{
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300820 return __dsos__fprintf_buildid(&m->dsos.head, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300821}
822
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300823size_t machines__fprintf_dsos_buildid(struct machines *machines, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300824 bool (skip)(struct dso *dso, int parm), int parm)
825{
826 struct rb_node *nd;
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300827 size_t ret = machine__fprintf_dsos_buildid(&machines->host, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300828
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800829 for (nd = rb_first_cached(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300830 struct machine *pos = rb_entry(nd, struct machine, rb_node);
831 ret += machine__fprintf_dsos_buildid(pos, fp, skip, parm);
832 }
833 return ret;
834}
835
836size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp)
837{
838 int i;
839 size_t printed = 0;
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300840 struct dso *kdso = machine__kernel_map(machine)->dso;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300841
842 if (kdso->has_build_id) {
843 char filename[PATH_MAX];
Krister Johansend2396992017-07-05 18:48:13 -0700844 if (dso__build_id_filename(kdso, filename, sizeof(filename),
845 false))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300846 printed += fprintf(fp, "[0] %s\n", filename);
847 }
848
849 for (i = 0; i < vmlinux_path__nr_entries; ++i)
850 printed += fprintf(fp, "[%d] %s\n",
851 i + kdso->has_build_id, vmlinux_path[i]);
852
853 return printed;
854}
855
856size_t machine__fprintf(struct machine *machine, FILE *fp)
857{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300858 struct rb_node *nd;
Kan Liang91e467b2017-09-10 19:23:14 -0700859 size_t ret;
860 int i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300861
Kan Liang91e467b2017-09-10 19:23:14 -0700862 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
863 struct threads *threads = &machine->threads[i];
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300864
865 down_read(&threads->lock);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300866
Kan Liang91e467b2017-09-10 19:23:14 -0700867 ret = fprintf(fp, "Threads: %u\n", threads->nr);
Arnaldo Carvalho de Melod2c11032016-05-04 10:09:33 -0300868
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -0800869 for (nd = rb_first_cached(&threads->entries); nd;
870 nd = rb_next(nd)) {
Kan Liang91e467b2017-09-10 19:23:14 -0700871 struct thread *pos = rb_entry(nd, struct thread, rb_node);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300872
Kan Liang91e467b2017-09-10 19:23:14 -0700873 ret += thread__fprintf(pos, fp);
874 }
875
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300876 up_read(&threads->lock);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300877 }
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300878 return ret;
879}
880
881static struct dso *machine__get_kernel(struct machine *machine)
882{
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +0100883 const char *vmlinux_name = machine->mmap_name;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300884 struct dso *kernel;
885
886 if (machine__is_host(machine)) {
Jiri Olsac1925242018-03-12 16:24:06 +0100887 if (symbol_conf.vmlinux_name)
888 vmlinux_name = symbol_conf.vmlinux_name;
889
Arnaldo Carvalho de Melo459ce512015-05-28 12:40:55 -0300890 kernel = machine__findnew_kernel(machine, vmlinux_name,
891 "[kernel]", DSO_TYPE_KERNEL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300892 } else {
Jiri Olsac1925242018-03-12 16:24:06 +0100893 if (symbol_conf.default_guest_vmlinux_name)
894 vmlinux_name = symbol_conf.default_guest_vmlinux_name;
895
Arnaldo Carvalho de Melo459ce512015-05-28 12:40:55 -0300896 kernel = machine__findnew_kernel(machine, vmlinux_name,
897 "[guest.kernel]",
898 DSO_TYPE_GUEST_KERNEL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300899 }
900
901 if (kernel != NULL && (!kernel->has_build_id))
902 dso__read_running_kernel_build_id(kernel, machine);
903
904 return kernel;
905}
906
907struct process_args {
908 u64 start;
909};
910
Adrian Hunter1c5aae72018-05-22 13:54:36 +0300911void machine__get_kallsyms_filename(struct machine *machine, char *buf,
912 size_t bufsz)
Adrian Hunter15a0a872014-01-29 16:14:38 +0200913{
914 if (machine__is_default_guest(machine))
915 scnprintf(buf, bufsz, "%s", symbol_conf.default_guest_kallsyms);
916 else
917 scnprintf(buf, bufsz, "%s/proc/kallsyms", machine->root_dir);
918}
919
Simon Quea93f0e52014-06-16 11:32:09 -0700920const char *ref_reloc_sym_names[] = {"_text", "_stext", NULL};
921
922/* Figure out the start address of kernel map from /proc/kallsyms.
923 * Returns the name of the start symbol in *symbol_name. Pass in NULL as
924 * symbol_name if it's not that important.
925 */
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300926static int machine__get_running_kernel_start(struct machine *machine,
Jiri Olsaed9adb22019-05-08 15:20:03 +0200927 const char **symbol_name,
928 u64 *start, u64 *end)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300929{
Adrian Hunter15a0a872014-01-29 16:14:38 +0200930 char filename[PATH_MAX];
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300931 int i, err = -1;
Simon Quea93f0e52014-06-16 11:32:09 -0700932 const char *name;
933 u64 addr = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300934
Adrian Hunter15a0a872014-01-29 16:14:38 +0200935 machine__get_kallsyms_filename(machine, filename, PATH_MAX);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300936
937 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
938 return 0;
939
Simon Quea93f0e52014-06-16 11:32:09 -0700940 for (i = 0; (name = ref_reloc_sym_names[i]) != NULL; i++) {
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300941 err = kallsyms__get_function_start(filename, name, &addr);
942 if (!err)
Simon Quea93f0e52014-06-16 11:32:09 -0700943 break;
944 }
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300945
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300946 if (err)
947 return -1;
948
Simon Quea93f0e52014-06-16 11:32:09 -0700949 if (symbol_name)
950 *symbol_name = name;
951
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300952 *start = addr;
Jiri Olsaed9adb22019-05-08 15:20:03 +0200953
954 err = kallsyms__get_function_start(filename, "_etext", &addr);
955 if (!err)
956 *end = addr;
957
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300958 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300959}
960
Adrian Hunter1c5aae72018-05-22 13:54:36 +0300961int machine__create_extra_kernel_map(struct machine *machine,
962 struct dso *kernel,
963 struct extra_kernel_map *xm)
Adrian Hunter4d99e412018-05-22 13:54:33 +0300964{
965 struct kmap *kmap;
966 struct map *map;
967
968 map = map__new2(xm->start, kernel);
969 if (!map)
970 return -1;
971
972 map->end = xm->end;
973 map->pgoff = xm->pgoff;
974
975 kmap = map__kmap(map);
976
977 kmap->kmaps = &machine->kmaps;
Adrian Hunter5759a682018-05-22 13:54:35 +0300978 strlcpy(kmap->name, xm->name, KMAP_NAME_LEN);
Adrian Hunter4d99e412018-05-22 13:54:33 +0300979
980 map_groups__insert(&machine->kmaps, map);
981
Adrian Hunter5759a682018-05-22 13:54:35 +0300982 pr_debug2("Added extra kernel map %s %" PRIx64 "-%" PRIx64 "\n",
983 kmap->name, map->start, map->end);
Adrian Hunter4d99e412018-05-22 13:54:33 +0300984
985 map__put(map);
986
987 return 0;
988}
989
990static u64 find_entry_trampoline(struct dso *dso)
991{
992 /* Duplicates are removed so lookup all aliases */
993 const char *syms[] = {
994 "_entry_trampoline",
995 "__entry_trampoline_start",
996 "entry_SYSCALL_64_trampoline",
997 };
998 struct symbol *sym = dso__first_symbol(dso);
999 unsigned int i;
1000
1001 for (; sym; sym = dso__next_symbol(sym)) {
1002 if (sym->binding != STB_GLOBAL)
1003 continue;
1004 for (i = 0; i < ARRAY_SIZE(syms); i++) {
1005 if (!strcmp(sym->name, syms[i]))
1006 return sym->start;
1007 }
1008 }
1009
1010 return 0;
1011}
1012
1013/*
1014 * These values can be used for kernels that do not have symbols for the entry
1015 * trampolines in kallsyms.
1016 */
1017#define X86_64_CPU_ENTRY_AREA_PER_CPU 0xfffffe0000000000ULL
1018#define X86_64_CPU_ENTRY_AREA_SIZE 0x2c000
1019#define X86_64_ENTRY_TRAMPOLINE 0x6000
1020
1021/* Map x86_64 PTI entry trampolines */
1022int machine__map_x86_64_entry_trampolines(struct machine *machine,
1023 struct dso *kernel)
1024{
Adrian Hunter1c5aae72018-05-22 13:54:36 +03001025 struct map_groups *kmaps = &machine->kmaps;
1026 struct maps *maps = &kmaps->maps;
Adrian Hunter4d99e412018-05-22 13:54:33 +03001027 int nr_cpus_avail, cpu;
Adrian Hunter1c5aae72018-05-22 13:54:36 +03001028 bool found = false;
1029 struct map *map;
1030 u64 pgoff;
Adrian Hunter4d99e412018-05-22 13:54:33 +03001031
Adrian Hunter1c5aae72018-05-22 13:54:36 +03001032 /*
1033 * In the vmlinux case, pgoff is a virtual address which must now be
1034 * mapped to a vmlinux offset.
1035 */
1036 for (map = maps__first(maps); map; map = map__next(map)) {
1037 struct kmap *kmap = __map__kmap(map);
1038 struct map *dest_map;
1039
1040 if (!kmap || !is_entry_trampoline(kmap->name))
1041 continue;
1042
1043 dest_map = map_groups__find(kmaps, map->pgoff);
1044 if (dest_map != map)
1045 map->pgoff = dest_map->map_ip(dest_map, map->pgoff);
1046 found = true;
1047 }
1048 if (found || machine->trampolines_mapped)
1049 return 0;
1050
1051 pgoff = find_entry_trampoline(kernel);
Adrian Hunter4d99e412018-05-22 13:54:33 +03001052 if (!pgoff)
1053 return 0;
1054
1055 nr_cpus_avail = machine__nr_cpus_avail(machine);
1056
1057 /* Add a 1 page map for each CPU's entry trampoline */
1058 for (cpu = 0; cpu < nr_cpus_avail; cpu++) {
1059 u64 va = X86_64_CPU_ENTRY_AREA_PER_CPU +
1060 cpu * X86_64_CPU_ENTRY_AREA_SIZE +
1061 X86_64_ENTRY_TRAMPOLINE;
1062 struct extra_kernel_map xm = {
1063 .start = va,
1064 .end = va + page_size,
1065 .pgoff = pgoff,
1066 };
1067
Adrian Hunter5759a682018-05-22 13:54:35 +03001068 strlcpy(xm.name, ENTRY_TRAMPOLINE_NAME, KMAP_NAME_LEN);
1069
Adrian Hunter4d99e412018-05-22 13:54:33 +03001070 if (machine__create_extra_kernel_map(machine, kernel, &xm) < 0)
1071 return -1;
1072 }
1073
Adrian Hunter1c5aae72018-05-22 13:54:36 +03001074 machine->trampolines_mapped = nr_cpus_avail;
1075
1076 return 0;
1077}
1078
1079int __weak machine__create_extra_kernel_maps(struct machine *machine __maybe_unused,
1080 struct dso *kernel __maybe_unused)
1081{
Adrian Hunter4d99e412018-05-22 13:54:33 +03001082 return 0;
1083}
1084
Jiri Olsa1fb87b82018-02-15 13:26:32 +01001085static int
1086__machine__create_kernel_maps(struct machine *machine, struct dso *kernel)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001087{
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001088 struct kmap *kmap;
1089 struct map *map;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001090
Masami Hiramatsucc1121a2015-12-09 11:11:33 +09001091 /* In case of renewal the kernel map, destroy previous one */
1092 machine__destroy_kernel_maps(machine);
1093
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001094 machine->vmlinux_map = map__new2(0, kernel);
1095 if (machine->vmlinux_map == NULL)
1096 return -1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001097
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001098 machine->vmlinux_map->map_ip = machine->vmlinux_map->unmap_ip = identity__map_ip;
1099 map = machine__kernel_map(machine);
1100 kmap = map__kmap(map);
1101 if (!kmap)
1102 return -1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001103
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001104 kmap->kmaps = &machine->kmaps;
1105 map_groups__insert(&machine->kmaps, map);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001106
1107 return 0;
1108}
1109
1110void machine__destroy_kernel_maps(struct machine *machine)
1111{
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001112 struct kmap *kmap;
1113 struct map *map = machine__kernel_map(machine);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001114
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001115 if (map == NULL)
1116 return;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001117
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001118 kmap = map__kmap(map);
1119 map_groups__remove(&machine->kmaps, map);
1120 if (kmap && kmap->ref_reloc_sym) {
1121 zfree((char **)&kmap->ref_reloc_sym->name);
1122 zfree(&kmap->ref_reloc_sym);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001123 }
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001124
1125 map__zput(machine->vmlinux_map);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001126}
1127
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -03001128int machines__create_guest_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001129{
1130 int ret = 0;
1131 struct dirent **namelist = NULL;
1132 int i, items = 0;
1133 char path[PATH_MAX];
1134 pid_t pid;
1135 char *endp;
1136
1137 if (symbol_conf.default_guest_vmlinux_name ||
1138 symbol_conf.default_guest_modules ||
1139 symbol_conf.default_guest_kallsyms) {
1140 machines__create_kernel_maps(machines, DEFAULT_GUEST_KERNEL_ID);
1141 }
1142
1143 if (symbol_conf.guestmount) {
1144 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
1145 if (items <= 0)
1146 return -ENOENT;
1147 for (i = 0; i < items; i++) {
1148 if (!isdigit(namelist[i]->d_name[0])) {
1149 /* Filter out . and .. */
1150 continue;
1151 }
1152 pid = (pid_t)strtol(namelist[i]->d_name, &endp, 10);
1153 if ((*endp != '\0') ||
1154 (endp == namelist[i]->d_name) ||
1155 (errno == ERANGE)) {
1156 pr_debug("invalid directory (%s). Skipping.\n",
1157 namelist[i]->d_name);
1158 continue;
1159 }
1160 sprintf(path, "%s/%s/proc/kallsyms",
1161 symbol_conf.guestmount,
1162 namelist[i]->d_name);
1163 ret = access(path, R_OK);
1164 if (ret) {
1165 pr_debug("Can't access file %s\n", path);
1166 goto failure;
1167 }
1168 machines__create_kernel_maps(machines, pid);
1169 }
1170failure:
1171 free(namelist);
1172 }
1173
1174 return ret;
1175}
1176
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -03001177void machines__destroy_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001178{
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -08001179 struct rb_node *next = rb_first_cached(&machines->guests);
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -03001180
1181 machine__destroy_kernel_maps(&machines->host);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001182
1183 while (next) {
1184 struct machine *pos = rb_entry(next, struct machine, rb_node);
1185
1186 next = rb_next(&pos->rb_node);
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -08001187 rb_erase_cached(&pos->rb_node, &machines->guests);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001188 machine__delete(pos);
1189 }
1190}
1191
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -03001192int machines__create_kernel_maps(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001193{
1194 struct machine *machine = machines__findnew(machines, pid);
1195
1196 if (machine == NULL)
1197 return -1;
1198
1199 return machine__create_kernel_maps(machine);
1200}
1201
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001202int machine__load_kallsyms(struct machine *machine, const char *filename)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001203{
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -03001204 struct map *map = machine__kernel_map(machine);
Jiri Olsae8f38792018-02-15 13:26:33 +01001205 int ret = __dso__load_kallsyms(map->dso, filename, map, true);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001206
1207 if (ret > 0) {
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001208 dso__set_loaded(map->dso);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001209 /*
1210 * Since /proc/kallsyms will have multiple sessions for the
1211 * kernel, with modules between them, fixup the end of all
1212 * sections.
1213 */
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001214 map_groups__fixup_end(&machine->kmaps);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001215 }
1216
1217 return ret;
1218}
1219
Arnaldo Carvalho de Melo1d1a2652018-04-25 12:18:11 -03001220int machine__load_vmlinux_path(struct machine *machine)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001221{
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -03001222 struct map *map = machine__kernel_map(machine);
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03001223 int ret = dso__load_vmlinux_path(map->dso, map);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001224
Adrian Hunter39b12f782013-08-07 14:38:47 +03001225 if (ret > 0)
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001226 dso__set_loaded(map->dso);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001227
1228 return ret;
1229}
1230
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001231static char *get_kernel_version(const char *root_dir)
1232{
1233 char version[PATH_MAX];
1234 FILE *file;
1235 char *name, *tmp;
1236 const char *prefix = "Linux version ";
1237
1238 sprintf(version, "%s/proc/version", root_dir);
1239 file = fopen(version, "r");
1240 if (!file)
1241 return NULL;
1242
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001243 tmp = fgets(version, sizeof(version), file);
1244 fclose(file);
Donald Yandt34b65af2019-05-28 09:41:28 -04001245 if (!tmp)
1246 return NULL;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001247
1248 name = strstr(version, prefix);
1249 if (!name)
1250 return NULL;
1251 name += strlen(prefix);
1252 tmp = strchr(name, ' ');
1253 if (tmp)
1254 *tmp = '\0';
1255
1256 return strdup(name);
1257}
1258
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001259static bool is_kmod_dso(struct dso *dso)
1260{
1261 return dso->symtab_type == DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE ||
1262 dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE;
1263}
1264
1265static int map_groups__set_module_path(struct map_groups *mg, const char *path,
1266 struct kmod_path *m)
1267{
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001268 char *long_name;
Arnaldo Carvalho de Melo83cf7742018-04-24 12:16:09 -03001269 struct map *map = map_groups__find_by_name(mg, m->name);
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001270
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001271 if (map == NULL)
1272 return 0;
1273
1274 long_name = strdup(path);
1275 if (long_name == NULL)
1276 return -ENOMEM;
1277
1278 dso__set_long_name(map->dso, long_name, true);
1279 dso__kernel_module_get_build_id(map->dso, "");
1280
1281 /*
1282 * Full name could reveal us kmod compression, so
1283 * we need to update the symtab_type if needed.
1284 */
Jiri Olsa2af52472018-08-17 11:48:07 +02001285 if (m->comp && is_kmod_dso(map->dso)) {
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001286 map->dso->symtab_type++;
Jiri Olsa2af52472018-08-17 11:48:07 +02001287 map->dso->comp = m->comp;
1288 }
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001289
1290 return 0;
1291}
1292
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001293static int map_groups__set_modules_path_dir(struct map_groups *mg,
Richard Yao61d42902014-04-26 13:17:55 -04001294 const char *dir_name, int depth)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001295{
1296 struct dirent *dent;
1297 DIR *dir = opendir(dir_name);
1298 int ret = 0;
1299
1300 if (!dir) {
1301 pr_debug("%s: cannot open %s dir\n", __func__, dir_name);
1302 return -1;
1303 }
1304
1305 while ((dent = readdir(dir)) != NULL) {
1306 char path[PATH_MAX];
1307 struct stat st;
1308
1309 /*sshfs might return bad dent->d_type, so we have to stat*/
1310 snprintf(path, sizeof(path), "%s/%s", dir_name, dent->d_name);
1311 if (stat(path, &st))
1312 continue;
1313
1314 if (S_ISDIR(st.st_mode)) {
1315 if (!strcmp(dent->d_name, ".") ||
1316 !strcmp(dent->d_name, ".."))
1317 continue;
1318
Richard Yao61d42902014-04-26 13:17:55 -04001319 /* Do not follow top-level source and build symlinks */
1320 if (depth == 0) {
1321 if (!strcmp(dent->d_name, "source") ||
1322 !strcmp(dent->d_name, "build"))
1323 continue;
1324 }
1325
1326 ret = map_groups__set_modules_path_dir(mg, path,
1327 depth + 1);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001328 if (ret < 0)
1329 goto out;
1330 } else {
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001331 struct kmod_path m;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001332
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001333 ret = kmod_path__parse_name(&m, dent->d_name);
1334 if (ret)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001335 goto out;
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001336
1337 if (m.kmod)
1338 ret = map_groups__set_module_path(mg, path, &m);
1339
1340 free(m.name);
1341
1342 if (ret)
1343 goto out;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001344 }
1345 }
1346
1347out:
1348 closedir(dir);
1349 return ret;
1350}
1351
1352static int machine__set_modules_path(struct machine *machine)
1353{
1354 char *version;
1355 char modules_path[PATH_MAX];
1356
1357 version = get_kernel_version(machine->root_dir);
1358 if (!version)
1359 return -1;
1360
Richard Yao61d42902014-04-26 13:17:55 -04001361 snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s",
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001362 machine->root_dir, version);
1363 free(version);
1364
Richard Yao61d42902014-04-26 13:17:55 -04001365 return map_groups__set_modules_path_dir(&machine->kmaps, modules_path, 0);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001366}
Song Shan Gong203d8a42016-07-21 11:10:51 +08001367int __weak arch__fix_module_text_start(u64 *start __maybe_unused,
1368 const char *name __maybe_unused)
1369{
1370 return 0;
1371}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001372
Thomas Richter9ad46522017-08-03 15:49:02 +02001373static int machine__create_module(void *arg, const char *name, u64 start,
1374 u64 size)
Adrian Hunter316d70d2013-10-08 11:45:48 +03001375{
1376 struct machine *machine = arg;
1377 struct map *map;
1378
Song Shan Gong203d8a42016-07-21 11:10:51 +08001379 if (arch__fix_module_text_start(&start, name) < 0)
1380 return -1;
1381
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -03001382 map = machine__findnew_module_map(machine, start, name);
Adrian Hunter316d70d2013-10-08 11:45:48 +03001383 if (map == NULL)
1384 return -1;
Thomas Richter9ad46522017-08-03 15:49:02 +02001385 map->end = start + size;
Adrian Hunter316d70d2013-10-08 11:45:48 +03001386
1387 dso__kernel_module_get_build_id(map->dso, machine->root_dir);
1388
1389 return 0;
1390}
1391
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001392static int machine__create_modules(struct machine *machine)
1393{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001394 const char *modules;
1395 char path[PATH_MAX];
1396
Adrian Hunterf4be9042013-09-22 13:22:09 +03001397 if (machine__is_default_guest(machine)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001398 modules = symbol_conf.default_guest_modules;
Adrian Hunterf4be9042013-09-22 13:22:09 +03001399 } else {
1400 snprintf(path, PATH_MAX, "%s/proc/modules", machine->root_dir);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001401 modules = path;
1402 }
1403
Adrian Hunteraa7fe3b2013-09-22 13:22:09 +03001404 if (symbol__restricted_filename(modules, "/proc/modules"))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001405 return -1;
1406
Adrian Hunter316d70d2013-10-08 11:45:48 +03001407 if (modules__parse(modules, machine, machine__create_module))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001408 return -1;
1409
Adrian Hunter316d70d2013-10-08 11:45:48 +03001410 if (!machine__set_modules_path(machine))
1411 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001412
Adrian Hunter316d70d2013-10-08 11:45:48 +03001413 pr_debug("Problems setting modules path maps, continuing anyway...\n");
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001414
Jason Wessel8f76fcd2013-07-15 15:27:53 -05001415 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001416}
1417
Jiri Olsa1fb87b82018-02-15 13:26:32 +01001418static void machine__set_kernel_mmap(struct machine *machine,
1419 u64 start, u64 end)
1420{
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001421 machine->vmlinux_map->start = start;
1422 machine->vmlinux_map->end = end;
1423 /*
1424 * Be a bit paranoid here, some perf.data file came with
1425 * a zero sized synthesized MMAP event for the kernel.
1426 */
1427 if (start == 0 && end == 0)
1428 machine->vmlinux_map->end = ~0ULL;
Jiri Olsa1fb87b82018-02-15 13:26:32 +01001429}
1430
Wei Li977c7a62019-02-28 17:20:03 +08001431static void machine__update_kernel_mmap(struct machine *machine,
1432 u64 start, u64 end)
1433{
1434 struct map *map = machine__kernel_map(machine);
1435
1436 map__get(map);
1437 map_groups__remove(&machine->kmaps, map);
1438
1439 machine__set_kernel_mmap(machine, start, end);
1440
1441 map_groups__insert(&machine->kmaps, map);
1442 map__put(map);
1443}
1444
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001445int machine__create_kernel_maps(struct machine *machine)
1446{
1447 struct dso *kernel = machine__get_kernel(machine);
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -03001448 const char *name = NULL;
Namhyung Kimee05d21792018-02-19 19:05:45 +09001449 struct map *map;
Jiri Olsaed9adb22019-05-08 15:20:03 +02001450 u64 start = 0, end = ~0ULL;
Masami Hiramatsu1154c952015-11-18 15:40:33 +09001451 int ret;
1452
Arnaldo Carvalho de Melo45e90052016-05-17 11:52:26 -03001453 if (kernel == NULL)
Adrian Hunter5512cf22014-01-29 16:14:39 +02001454 return -1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001455
Masami Hiramatsu1154c952015-11-18 15:40:33 +09001456 ret = __machine__create_kernel_maps(machine, kernel);
Masami Hiramatsu1154c952015-11-18 15:40:33 +09001457 if (ret < 0)
Adrian Hunter1c5aae72018-05-22 13:54:36 +03001458 goto out_put;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001459
1460 if (symbol_conf.use_modules && machine__create_modules(machine) < 0) {
1461 if (machine__is_host(machine))
1462 pr_debug("Problems creating module maps, "
1463 "continuing anyway...\n");
1464 else
1465 pr_debug("Problems creating module maps for guest %d, "
1466 "continuing anyway...\n", machine->pid);
1467 }
1468
Jiri Olsaed9adb22019-05-08 15:20:03 +02001469 if (!machine__get_running_kernel_start(machine, &name, &start, &end)) {
Jiri Olsa3f938ee2017-06-26 11:51:53 +02001470 if (name &&
Jiri Olsaed9adb22019-05-08 15:20:03 +02001471 map__set_kallsyms_ref_reloc_sym(machine->vmlinux_map, name, start)) {
Jiri Olsa3f938ee2017-06-26 11:51:53 +02001472 machine__destroy_kernel_maps(machine);
Adrian Hunter1c5aae72018-05-22 13:54:36 +03001473 ret = -1;
1474 goto out_put;
Jiri Olsa3f938ee2017-06-26 11:51:53 +02001475 }
Namhyung Kimee05d21792018-02-19 19:05:45 +09001476
Wei Li977c7a62019-02-28 17:20:03 +08001477 /*
1478 * we have a real start address now, so re-order the kmaps
1479 * assume it's the last in the kmaps
1480 */
Jiri Olsaed9adb22019-05-08 15:20:03 +02001481 machine__update_kernel_mmap(machine, start, end);
Adrian Hunter5512cf22014-01-29 16:14:39 +02001482 }
1483
Adrian Hunter1c5aae72018-05-22 13:54:36 +03001484 if (machine__create_extra_kernel_maps(machine, kernel))
1485 pr_debug("Problems creating extra kernel maps, continuing anyway...\n");
1486
Jiri Olsaed9adb22019-05-08 15:20:03 +02001487 if (end == ~0ULL) {
1488 /* update end address of the kernel map using adjacent module address */
1489 map = map__next(machine__kernel_map(machine));
1490 if (map)
1491 machine__set_kernel_mmap(machine, start, map->start);
1492 }
1493
Adrian Hunter1c5aae72018-05-22 13:54:36 +03001494out_put:
1495 dso__put(kernel);
1496 return ret;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001497}
1498
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001499static bool machine__uses_kcore(struct machine *machine)
1500{
1501 struct dso *dso;
1502
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -03001503 list_for_each_entry(dso, &machine->dsos.head, node) {
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001504 if (dso__is_kcore(dso))
1505 return true;
1506 }
1507
1508 return false;
1509}
1510
Adrian Huntera8ce99b2018-05-22 13:54:37 +03001511static bool perf_event__is_extra_kernel_mmap(struct machine *machine,
1512 union perf_event *event)
1513{
1514 return machine__is(machine, "x86_64") &&
1515 is_entry_trampoline(event->mmap.filename);
1516}
1517
1518static int machine__process_extra_kernel_map(struct machine *machine,
1519 union perf_event *event)
1520{
1521 struct map *kernel_map = machine__kernel_map(machine);
1522 struct dso *kernel = kernel_map ? kernel_map->dso : NULL;
1523 struct extra_kernel_map xm = {
1524 .start = event->mmap.start,
1525 .end = event->mmap.start + event->mmap.len,
1526 .pgoff = event->mmap.pgoff,
1527 };
1528
1529 if (kernel == NULL)
1530 return -1;
1531
1532 strlcpy(xm.name, event->mmap.filename, KMAP_NAME_LEN);
1533
1534 return machine__create_extra_kernel_map(machine, kernel, &xm);
1535}
1536
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001537static int machine__process_kernel_mmap_event(struct machine *machine,
1538 union perf_event *event)
1539{
1540 struct map *map;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001541 enum dso_kernel_type kernel_type;
1542 bool is_kernel_mmap;
1543
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001544 /* If we have maps from kcore then we do not need or want any others */
1545 if (machine__uses_kcore(machine))
1546 return 0;
1547
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001548 if (machine__is_host(machine))
1549 kernel_type = DSO_TYPE_KERNEL;
1550 else
1551 kernel_type = DSO_TYPE_GUEST_KERNEL;
1552
1553 is_kernel_mmap = memcmp(event->mmap.filename,
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +01001554 machine->mmap_name,
1555 strlen(machine->mmap_name) - 1) == 0;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001556 if (event->mmap.filename[0] == '/' ||
1557 (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -03001558 map = machine__findnew_module_map(machine, event->mmap.start,
1559 event->mmap.filename);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001560 if (map == NULL)
1561 goto out_problem;
1562
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001563 map->end = map->start + event->mmap.len;
1564 } else if (is_kernel_mmap) {
1565 const char *symbol_name = (event->mmap.filename +
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +01001566 strlen(machine->mmap_name));
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001567 /*
1568 * Should be there already, from the build-id table in
1569 * the header.
1570 */
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001571 struct dso *kernel = NULL;
1572 struct dso *dso;
1573
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03001574 down_read(&machine->dsos.lock);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001575
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -03001576 list_for_each_entry(dso, &machine->dsos.head, node) {
Wang Nan1f121b02015-06-03 08:52:21 +00001577
1578 /*
1579 * The cpumode passed to is_kernel_module is not the
1580 * cpumode of *this* event. If we insist on passing
1581 * correct cpumode to is_kernel_module, we should
1582 * record the cpumode when we adding this dso to the
1583 * linked list.
1584 *
1585 * However we don't really need passing correct
1586 * cpumode. We know the correct cpumode must be kernel
1587 * mode (if not, we should not link it onto kernel_dsos
1588 * list).
1589 *
1590 * Therefore, we pass PERF_RECORD_MISC_CPUMODE_UNKNOWN.
1591 * is_kernel_module() treats it as a kernel cpumode.
1592 */
1593
1594 if (!dso->kernel ||
1595 is_kernel_module(dso->long_name,
1596 PERF_RECORD_MISC_CPUMODE_UNKNOWN))
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001597 continue;
1598
Wang Nan1f121b02015-06-03 08:52:21 +00001599
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001600 kernel = dso;
1601 break;
1602 }
1603
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03001604 up_read(&machine->dsos.lock);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001605
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001606 if (kernel == NULL)
Jiri Olsa8c7f1bb2018-02-15 13:26:30 +01001607 kernel = machine__findnew_dso(machine, machine->mmap_name);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001608 if (kernel == NULL)
1609 goto out_problem;
1610
1611 kernel->kernel = kernel_type;
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001612 if (__machine__create_kernel_maps(machine, kernel) < 0) {
1613 dso__put(kernel);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001614 goto out_problem;
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001615 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001616
Namhyung Kim330dfa22014-11-18 13:30:28 +09001617 if (strstr(kernel->long_name, "vmlinux"))
1618 dso__set_short_name(kernel, "[kernel.vmlinux]", false);
Namhyung Kim96d78052014-11-04 10:14:34 +09001619
Wei Li977c7a62019-02-28 17:20:03 +08001620 machine__update_kernel_mmap(machine, event->mmap.start,
Jiri Olsa05db6ff2018-02-15 13:26:31 +01001621 event->mmap.start + event->mmap.len);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001622
1623 /*
1624 * Avoid using a zero address (kptr_restrict) for the ref reloc
1625 * symbol. Effectively having zero here means that at record
1626 * time /proc/sys/kernel/kptr_restrict was non zero.
1627 */
1628 if (event->mmap.pgoff != 0) {
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001629 map__set_kallsyms_ref_reloc_sym(machine->vmlinux_map,
1630 symbol_name,
1631 event->mmap.pgoff);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001632 }
1633
1634 if (machine__is_default_guest(machine)) {
1635 /*
1636 * preload dso of guest kernel and modules
1637 */
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03001638 dso__load(kernel, machine__kernel_map(machine));
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001639 }
Adrian Huntera8ce99b2018-05-22 13:54:37 +03001640 } else if (perf_event__is_extra_kernel_mmap(machine, event)) {
1641 return machine__process_extra_kernel_map(machine, event);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001642 }
1643 return 0;
1644out_problem:
1645 return -1;
1646}
1647
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001648int machine__process_mmap2_event(struct machine *machine,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001649 union perf_event *event,
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001650 struct perf_sample *sample)
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001651{
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001652 struct thread *thread;
1653 struct map *map;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001654 int ret = 0;
1655
1656 if (dump_trace)
1657 perf_event__fprintf_mmap2(event, stdout);
1658
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001659 if (sample->cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1660 sample->cpumode == PERF_RECORD_MISC_KERNEL) {
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001661 ret = machine__process_kernel_mmap_event(machine, event);
1662 if (ret < 0)
1663 goto out_problem;
1664 return 0;
1665 }
1666
1667 thread = machine__findnew_thread(machine, event->mmap2.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001668 event->mmap2.tid);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001669 if (thread == NULL)
1670 goto out_problem;
1671
Adrian Hunter2a030682014-07-22 16:17:53 +03001672 map = map__new(machine, event->mmap2.start,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001673 event->mmap2.len, event->mmap2.pgoff,
Krister Johansenbf2e7102017-07-05 18:48:09 -07001674 event->mmap2.maj,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001675 event->mmap2.min, event->mmap2.ino,
1676 event->mmap2.ino_generation,
Don Zickus7ef80702014-05-19 15:13:49 -04001677 event->mmap2.prot,
1678 event->mmap2.flags,
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001679 event->mmap2.filename, thread);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001680
1681 if (map == NULL)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001682 goto out_problem_map;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001683
He Kuang8132a2a2016-06-03 03:33:13 +00001684 ret = thread__insert_map(thread, map);
1685 if (ret)
1686 goto out_problem_insert;
1687
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001688 thread__put(thread);
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001689 map__put(map);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001690 return 0;
1691
He Kuang8132a2a2016-06-03 03:33:13 +00001692out_problem_insert:
1693 map__put(map);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001694out_problem_map:
1695 thread__put(thread);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001696out_problem:
1697 dump_printf("problem processing PERF_RECORD_MMAP2, skipping event.\n");
1698 return 0;
1699}
1700
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001701int machine__process_mmap_event(struct machine *machine, union perf_event *event,
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001702 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001703{
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001704 struct thread *thread;
1705 struct map *map;
Arnaldo Carvalho de Melo0f476f22018-04-26 11:30:50 -03001706 u32 prot = 0;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001707 int ret = 0;
1708
1709 if (dump_trace)
1710 perf_event__fprintf_mmap(event, stdout);
1711
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001712 if (sample->cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1713 sample->cpumode == PERF_RECORD_MISC_KERNEL) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001714 ret = machine__process_kernel_mmap_event(machine, event);
1715 if (ret < 0)
1716 goto out_problem;
1717 return 0;
1718 }
1719
Adrian Hunter314add62013-08-27 11:23:03 +03001720 thread = machine__findnew_thread(machine, event->mmap.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001721 event->mmap.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001722 if (thread == NULL)
1723 goto out_problem;
Stephane Eranianbad40912013-01-24 16:10:40 +01001724
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001725 if (!(event->header.misc & PERF_RECORD_MISC_MMAP_DATA))
Arnaldo Carvalho de Melo0f476f22018-04-26 11:30:50 -03001726 prot = PROT_EXEC;
Stephane Eranianbad40912013-01-24 16:10:40 +01001727
Adrian Hunter2a030682014-07-22 16:17:53 +03001728 map = map__new(machine, event->mmap.start,
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001729 event->mmap.len, event->mmap.pgoff,
Arnaldo Carvalho de Melo0f476f22018-04-26 11:30:50 -03001730 0, 0, 0, 0, prot, 0,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001731 event->mmap.filename,
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001732 thread);
Stephane Eranianbad40912013-01-24 16:10:40 +01001733
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001734 if (map == NULL)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001735 goto out_problem_map;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001736
He Kuang8132a2a2016-06-03 03:33:13 +00001737 ret = thread__insert_map(thread, map);
1738 if (ret)
1739 goto out_problem_insert;
1740
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001741 thread__put(thread);
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001742 map__put(map);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001743 return 0;
1744
He Kuang8132a2a2016-06-03 03:33:13 +00001745out_problem_insert:
1746 map__put(map);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001747out_problem_map:
1748 thread__put(thread);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001749out_problem:
1750 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
1751 return 0;
1752}
1753
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001754static void __machine__remove_thread(struct machine *machine, struct thread *th, bool lock)
David Ahern236a3bb2013-08-14 08:49:27 -06001755{
Kan Liang91e467b2017-09-10 19:23:14 -07001756 struct threads *threads = machine__threads(machine, th->tid);
1757
1758 if (threads->last_match == th)
Jiri Olsa67fda0f2018-07-19 16:33:43 +02001759 threads__set_last_match(threads, NULL);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001760
Elena Reshetovae34f5b12017-02-21 17:35:02 +02001761 BUG_ON(refcount_read(&th->refcnt) == 0);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001762 if (lock)
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03001763 down_write(&threads->lock);
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -08001764 rb_erase_cached(&th->rb_node, &threads->entries);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001765 RB_CLEAR_NODE(&th->rb_node);
Kan Liang91e467b2017-09-10 19:23:14 -07001766 --threads->nr;
David Ahern236a3bb2013-08-14 08:49:27 -06001767 /*
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001768 * Move it first to the dead_threads list, then drop the reference,
1769 * if this is the last reference, then the thread__delete destructor
1770 * will be called and we will remove it from the dead_threads list.
David Ahern236a3bb2013-08-14 08:49:27 -06001771 */
Kan Liang91e467b2017-09-10 19:23:14 -07001772 list_add_tail(&th->node, &threads->dead);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001773 if (lock)
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03001774 up_write(&threads->lock);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001775 thread__put(th);
David Ahern236a3bb2013-08-14 08:49:27 -06001776}
1777
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001778void machine__remove_thread(struct machine *machine, struct thread *th)
1779{
1780 return __machine__remove_thread(machine, th, true);
1781}
1782
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001783int machine__process_fork_event(struct machine *machine, union perf_event *event,
1784 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001785{
Jiri Olsad75e6092014-03-14 15:00:03 +01001786 struct thread *thread = machine__find_thread(machine,
1787 event->fork.pid,
1788 event->fork.tid);
Adrian Hunter314add62013-08-27 11:23:03 +03001789 struct thread *parent = machine__findnew_thread(machine,
1790 event->fork.ppid,
1791 event->fork.ptid);
David Miller4f8f3822018-10-30 22:24:04 -07001792 bool do_maps_clone = true;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001793 int err = 0;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001794
Adrian Hunter5cb73342015-08-19 17:29:20 +03001795 if (dump_trace)
1796 perf_event__fprintf_task(event, stdout);
1797
1798 /*
1799 * There may be an existing thread that is not actually the parent,
1800 * either because we are processing events out of order, or because the
1801 * (fork) event that would have removed the thread was lost. Assume the
1802 * latter case and continue on as best we can.
1803 */
1804 if (parent->pid_ != (pid_t)event->fork.ppid) {
1805 dump_printf("removing erroneous parent thread %d/%d\n",
1806 parent->pid_, parent->tid);
1807 machine__remove_thread(machine, parent);
1808 thread__put(parent);
1809 parent = machine__findnew_thread(machine, event->fork.ppid,
1810 event->fork.ptid);
1811 }
1812
David Ahern236a3bb2013-08-14 08:49:27 -06001813 /* if a thread currently exists for the thread id remove it */
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001814 if (thread != NULL) {
David Ahern236a3bb2013-08-14 08:49:27 -06001815 machine__remove_thread(machine, thread);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001816 thread__put(thread);
1817 }
David Ahern236a3bb2013-08-14 08:49:27 -06001818
Adrian Hunter314add62013-08-27 11:23:03 +03001819 thread = machine__findnew_thread(machine, event->fork.pid,
1820 event->fork.tid);
David Miller4f8f3822018-10-30 22:24:04 -07001821 /*
1822 * When synthesizing FORK events, we are trying to create thread
1823 * objects for the already running tasks on the machine.
1824 *
1825 * Normally, for a kernel FORK event, we want to clone the parent's
1826 * maps because that is what the kernel just did.
1827 *
1828 * But when synthesizing, this should not be done. If we do, we end up
1829 * with overlapping maps as we process the sythesized MMAP2 events that
1830 * get delivered shortly thereafter.
1831 *
1832 * Use the FORK event misc flags in an internal way to signal this
1833 * situation, so we can elide the map clone when appropriate.
1834 */
1835 if (event->fork.header.misc & PERF_RECORD_MISC_FORK_EXEC)
1836 do_maps_clone = false;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001837
1838 if (thread == NULL || parent == NULL ||
David Miller4f8f3822018-10-30 22:24:04 -07001839 thread__fork(thread, parent, sample->time, do_maps_clone) < 0) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001840 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001841 err = -1;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001842 }
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001843 thread__put(thread);
1844 thread__put(parent);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001845
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001846 return err;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001847}
1848
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001849int machine__process_exit_event(struct machine *machine, union perf_event *event,
1850 struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001851{
Jiri Olsad75e6092014-03-14 15:00:03 +01001852 struct thread *thread = machine__find_thread(machine,
1853 event->fork.pid,
1854 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001855
1856 if (dump_trace)
1857 perf_event__fprintf_task(event, stdout);
1858
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001859 if (thread != NULL) {
David Ahern236a3bb2013-08-14 08:49:27 -06001860 thread__exited(thread);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001861 thread__put(thread);
1862 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001863
1864 return 0;
1865}
1866
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001867int machine__process_event(struct machine *machine, union perf_event *event,
1868 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001869{
1870 int ret;
1871
1872 switch (event->header.type) {
1873 case PERF_RECORD_COMM:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001874 ret = machine__process_comm_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001875 case PERF_RECORD_MMAP:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001876 ret = machine__process_mmap_event(machine, event, sample); break;
Hari Bathinif3b36142017-03-08 02:11:43 +05301877 case PERF_RECORD_NAMESPACES:
1878 ret = machine__process_namespaces_event(machine, event, sample); break;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001879 case PERF_RECORD_MMAP2:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001880 ret = machine__process_mmap2_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001881 case PERF_RECORD_FORK:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001882 ret = machine__process_fork_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001883 case PERF_RECORD_EXIT:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001884 ret = machine__process_exit_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001885 case PERF_RECORD_LOST:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001886 ret = machine__process_lost_event(machine, event, sample); break;
Adrian Hunter4a96f7a2015-04-30 17:37:29 +03001887 case PERF_RECORD_AUX:
1888 ret = machine__process_aux_event(machine, event); break;
Adrian Hunter0ad21f62015-04-30 17:37:30 +03001889 case PERF_RECORD_ITRACE_START:
Jiri Olsaceb92912015-06-29 13:27:45 +02001890 ret = machine__process_itrace_start_event(machine, event); break;
Kan Liangc4937a92015-05-10 15:13:15 -04001891 case PERF_RECORD_LOST_SAMPLES:
1892 ret = machine__process_lost_samples_event(machine, event, sample); break;
Adrian Hunter02860392015-07-21 12:44:03 +03001893 case PERF_RECORD_SWITCH:
1894 case PERF_RECORD_SWITCH_CPU_WIDE:
1895 ret = machine__process_switch_event(machine, event); break;
Song Liu9aa0bfa2019-01-17 08:15:17 -08001896 case PERF_RECORD_KSYMBOL:
1897 ret = machine__process_ksymbol(machine, event, sample); break;
Song Liu45178a92019-01-17 08:15:18 -08001898 case PERF_RECORD_BPF_EVENT:
1899 ret = machine__process_bpf_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001900 default:
1901 ret = -1;
1902 break;
1903 }
1904
1905 return ret;
1906}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001907
Greg Priceb21484f2012-12-06 21:48:05 -08001908static bool symbol__match_regex(struct symbol *sym, regex_t *regex)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001909{
Arnaldo Carvalho de Meloa7c38992017-02-13 16:52:15 -03001910 if (!regexec(regex, sym->name, 0, NULL, 0))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001911 return 1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001912 return 0;
1913}
1914
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001915static void ip__resolve_ams(struct thread *thread,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001916 struct addr_map_symbol *ams,
1917 u64 ip)
1918{
1919 struct addr_location al;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001920
1921 memset(&al, 0, sizeof(al));
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -03001922 /*
1923 * We cannot use the header.misc hint to determine whether a
1924 * branch stack address is user, kernel, guest, hypervisor.
1925 * Branches may straddle the kernel/user/hypervisor boundaries.
1926 * Thus, we have to try consecutively until we find a match
1927 * or else, the symbol is unknown
1928 */
Arnaldo Carvalho de Melo26bd9332018-04-25 17:58:03 -03001929 thread__find_cpumode_addr_location(thread, ip, &al);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001930
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001931 ams->addr = ip;
1932 ams->al_addr = al.addr;
1933 ams->sym = al.sym;
1934 ams->map = al.map;
Kan Liang8780fb22017-08-29 13:11:09 -04001935 ams->phys_addr = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001936}
1937
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001938static void ip__resolve_data(struct thread *thread,
Kan Liang8780fb22017-08-29 13:11:09 -04001939 u8 m, struct addr_map_symbol *ams,
1940 u64 addr, u64 phys_addr)
Stephane Eranian98a3b322013-01-24 16:10:35 +01001941{
1942 struct addr_location al;
1943
1944 memset(&al, 0, sizeof(al));
1945
Arnaldo Carvalho de Melo117d3c22018-04-25 18:16:53 -03001946 thread__find_symbol(thread, m, addr, &al);
Don Zickus06b2afc2014-08-20 23:25:11 -04001947
Stephane Eranian98a3b322013-01-24 16:10:35 +01001948 ams->addr = addr;
1949 ams->al_addr = al.addr;
1950 ams->sym = al.sym;
1951 ams->map = al.map;
Kan Liang8780fb22017-08-29 13:11:09 -04001952 ams->phys_addr = phys_addr;
Stephane Eranian98a3b322013-01-24 16:10:35 +01001953}
1954
Arnaldo Carvalho de Meloe80faac2014-01-22 13:05:06 -03001955struct mem_info *sample__resolve_mem(struct perf_sample *sample,
1956 struct addr_location *al)
Stephane Eranian98a3b322013-01-24 16:10:35 +01001957{
Jiri Olsa9f874982018-03-07 16:50:06 +01001958 struct mem_info *mi = mem_info__new();
Stephane Eranian98a3b322013-01-24 16:10:35 +01001959
1960 if (!mi)
1961 return NULL;
1962
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001963 ip__resolve_ams(al->thread, &mi->iaddr, sample->ip);
Kan Liang8780fb22017-08-29 13:11:09 -04001964 ip__resolve_data(al->thread, al->cpumode, &mi->daddr,
1965 sample->addr, sample->phys_addr);
Stephane Eranian98a3b322013-01-24 16:10:35 +01001966 mi->data_src.val = sample->data_src;
1967
1968 return mi;
1969}
1970
Milian Wolff40a342c2017-10-09 22:32:56 +02001971static char *callchain_srcline(struct map *map, struct symbol *sym, u64 ip)
1972{
Milian Wolff21ac9d52017-10-19 13:38:34 +02001973 char *srcline = NULL;
Milian Wolff40a342c2017-10-09 22:32:56 +02001974
Milian Wolff21ac9d52017-10-19 13:38:34 +02001975 if (!map || callchain_param.key == CCKEY_FUNCTION)
1976 return srcline;
1977
1978 srcline = srcline__tree_find(&map->dso->srclines, ip);
1979 if (!srcline) {
1980 bool show_sym = false;
1981 bool show_addr = callchain_param.key == CCKEY_ADDRESS;
1982
1983 srcline = get_srcline(map->dso, map__rip_2objdump(map, ip),
Jin Yao935f5a92017-12-30 00:26:52 +08001984 sym, show_sym, show_addr, ip);
Milian Wolff21ac9d52017-10-19 13:38:34 +02001985 srcline__tree_insert(&map->dso->srclines, ip, srcline);
1986 }
1987
1988 return srcline;
Milian Wolff40a342c2017-10-09 22:32:56 +02001989}
1990
Jin Yaoc4ee0622017-08-07 21:05:15 +08001991struct iterations {
1992 int nr_loop_iter;
1993 u64 cycles;
1994};
1995
Andi Kleen37592b82014-11-12 18:05:19 -08001996static int add_callchain_ip(struct thread *thread,
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03001997 struct callchain_cursor *cursor,
Andi Kleen37592b82014-11-12 18:05:19 -08001998 struct symbol **parent,
1999 struct addr_location *root_al,
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002000 u8 *cpumode,
Jin Yao410024d2016-10-31 09:19:49 +08002001 u64 ip,
2002 bool branch,
2003 struct branch_flags *flags,
Jin Yaoc4ee0622017-08-07 21:05:15 +08002004 struct iterations *iter,
Jin Yaob851dd42017-07-18 20:13:15 +08002005 u64 branch_from)
Andi Kleen37592b82014-11-12 18:05:19 -08002006{
2007 struct addr_location al;
Jin Yaoc4ee0622017-08-07 21:05:15 +08002008 int nr_loop_iter = 0;
2009 u64 iter_cycles = 0;
Milian Wolff40a342c2017-10-09 22:32:56 +02002010 const char *srcline = NULL;
Andi Kleen37592b82014-11-12 18:05:19 -08002011
2012 al.filtered = 0;
2013 al.sym = NULL;
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002014 if (!cpumode) {
Arnaldo Carvalho de Melo26bd9332018-04-25 17:58:03 -03002015 thread__find_cpumode_addr_location(thread, ip, &al);
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002016 } else {
Kan Liang2e777842014-12-02 10:06:53 -05002017 if (ip >= PERF_CONTEXT_MAX) {
2018 switch (ip) {
2019 case PERF_CONTEXT_HV:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002020 *cpumode = PERF_RECORD_MISC_HYPERVISOR;
Kan Liang2e777842014-12-02 10:06:53 -05002021 break;
2022 case PERF_CONTEXT_KERNEL:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002023 *cpumode = PERF_RECORD_MISC_KERNEL;
Kan Liang2e777842014-12-02 10:06:53 -05002024 break;
2025 case PERF_CONTEXT_USER:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002026 *cpumode = PERF_RECORD_MISC_USER;
Kan Liang2e777842014-12-02 10:06:53 -05002027 break;
2028 default:
2029 pr_debug("invalid callchain context: "
2030 "%"PRId64"\n", (s64) ip);
2031 /*
2032 * It seems the callchain is corrupted.
2033 * Discard all.
2034 */
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002035 callchain_cursor_reset(cursor);
Kan Liang2e777842014-12-02 10:06:53 -05002036 return 1;
2037 }
2038 return 0;
2039 }
Arnaldo Carvalho de Melo45462632018-04-24 11:24:49 -03002040 thread__find_symbol(thread, *cpumode, ip, &al);
Kan Liang2e777842014-12-02 10:06:53 -05002041 }
2042
Andi Kleen37592b82014-11-12 18:05:19 -08002043 if (al.sym != NULL) {
Jiri Olsade7e6a72016-05-03 13:54:43 +02002044 if (perf_hpp_list.parent && !*parent &&
Andi Kleen37592b82014-11-12 18:05:19 -08002045 symbol__match_regex(al.sym, &parent_regex))
2046 *parent = al.sym;
2047 else if (have_ignore_callees && root_al &&
2048 symbol__match_regex(al.sym, &ignore_callees_regex)) {
2049 /* Treat this symbol as the root,
2050 forgetting its callees. */
2051 *root_al = al;
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002052 callchain_cursor_reset(cursor);
Andi Kleen37592b82014-11-12 18:05:19 -08002053 }
2054 }
2055
Namhyung Kimb49a8fe2015-11-26 16:08:20 +09002056 if (symbol_conf.hide_unresolved && al.sym == NULL)
2057 return 0;
Jin Yaoc4ee0622017-08-07 21:05:15 +08002058
2059 if (iter) {
2060 nr_loop_iter = iter->nr_loop_iter;
2061 iter_cycles = iter->cycles;
2062 }
2063
Milian Wolff40a342c2017-10-09 22:32:56 +02002064 srcline = callchain_srcline(al.map, al.sym, al.addr);
Sandipan Das19610182018-05-17 12:03:25 +05302065 return callchain_cursor_append(cursor, ip, al.map, al.sym,
Jin Yaoc4ee0622017-08-07 21:05:15 +08002066 branch, flags, nr_loop_iter,
Milian Wolff40a342c2017-10-09 22:32:56 +02002067 iter_cycles, branch_from, srcline);
Andi Kleen37592b82014-11-12 18:05:19 -08002068}
2069
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03002070struct branch_info *sample__resolve_bstack(struct perf_sample *sample,
2071 struct addr_location *al)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002072{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002073 unsigned int i;
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03002074 const struct branch_stack *bs = sample->branch_stack;
2075 struct branch_info *bi = calloc(bs->nr, sizeof(struct branch_info));
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002076
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002077 if (!bi)
2078 return NULL;
2079
2080 for (i = 0; i < bs->nr; i++) {
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03002081 ip__resolve_ams(al->thread, &bi[i].to, bs->entries[i].to);
2082 ip__resolve_ams(al->thread, &bi[i].from, bs->entries[i].from);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002083 bi[i].flags = bs->entries[i].flags;
2084 }
2085 return bi;
2086}
2087
Jin Yaoc4ee0622017-08-07 21:05:15 +08002088static void save_iterations(struct iterations *iter,
2089 struct branch_entry *be, int nr)
2090{
2091 int i;
2092
Jin Yaoa3366db02019-01-04 14:10:30 +08002093 iter->nr_loop_iter++;
Jin Yaoc4ee0622017-08-07 21:05:15 +08002094 iter->cycles = 0;
2095
2096 for (i = 0; i < nr; i++)
2097 iter->cycles += be[i].flags.cycles;
2098}
2099
Andi Kleen8b7bad52014-11-12 18:05:20 -08002100#define CHASHSZ 127
2101#define CHASHBITS 7
2102#define NO_ENTRY 0xff
2103
2104#define PERF_MAX_BRANCH_DEPTH 127
2105
2106/* Remove loops. */
Jin Yaoc4ee0622017-08-07 21:05:15 +08002107static int remove_loops(struct branch_entry *l, int nr,
2108 struct iterations *iter)
Andi Kleen8b7bad52014-11-12 18:05:20 -08002109{
2110 int i, j, off;
2111 unsigned char chash[CHASHSZ];
2112
2113 memset(chash, NO_ENTRY, sizeof(chash));
2114
2115 BUG_ON(PERF_MAX_BRANCH_DEPTH > 255);
2116
2117 for (i = 0; i < nr; i++) {
2118 int h = hash_64(l[i].from, CHASHBITS) % CHASHSZ;
2119
2120 /* no collision handling for now */
2121 if (chash[h] == NO_ENTRY) {
2122 chash[h] = i;
2123 } else if (l[chash[h]].from == l[i].from) {
2124 bool is_loop = true;
2125 /* check if it is a real loop */
2126 off = 0;
2127 for (j = chash[h]; j < i && i + off < nr; j++, off++)
2128 if (l[j].from != l[i + off].from) {
2129 is_loop = false;
2130 break;
2131 }
2132 if (is_loop) {
Jin Yaoc4ee0622017-08-07 21:05:15 +08002133 j = nr - (i + off);
2134 if (j > 0) {
2135 save_iterations(iter + i + off,
2136 l + i, off);
2137
2138 memmove(iter + i, iter + i + off,
2139 j * sizeof(*iter));
2140
2141 memmove(l + i, l + i + off,
2142 j * sizeof(*l));
2143 }
2144
Andi Kleen8b7bad52014-11-12 18:05:20 -08002145 nr -= off;
2146 }
2147 }
2148 }
2149 return nr;
2150}
2151
Kan Liang384b6052015-01-05 13:23:05 -05002152/*
2153 * Recolve LBR callstack chain sample
2154 * Return:
2155 * 1 on success get LBR callchain information
2156 * 0 no available LBR callchain information, should try fp
2157 * negative error code on other errors.
2158 */
2159static int resolve_lbr_callchain_sample(struct thread *thread,
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002160 struct callchain_cursor *cursor,
Kan Liang384b6052015-01-05 13:23:05 -05002161 struct perf_sample *sample,
2162 struct symbol **parent,
2163 struct addr_location *root_al,
2164 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002165{
Kan Liang384b6052015-01-05 13:23:05 -05002166 struct ip_callchain *chain = sample->callchain;
Arnaldo Carvalho de Melo18ef15c2016-10-03 11:07:24 -03002167 int chain_nr = min(max_stack, (int)chain->nr), i;
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002168 u8 cpumode = PERF_RECORD_MISC_USER;
Jin Yaob851dd42017-07-18 20:13:15 +08002169 u64 ip, branch_from = 0;
Kan Liang384b6052015-01-05 13:23:05 -05002170
2171 for (i = 0; i < chain_nr; i++) {
2172 if (chain->ips[i] == PERF_CONTEXT_USER)
2173 break;
2174 }
2175
2176 /* LBR only affects the user callchain */
2177 if (i != chain_nr) {
2178 struct branch_stack *lbr_stack = sample->branch_stack;
Jin Yao410024d2016-10-31 09:19:49 +08002179 int lbr_nr = lbr_stack->nr, j, k;
2180 bool branch;
2181 struct branch_flags *flags;
Kan Liang384b6052015-01-05 13:23:05 -05002182 /*
2183 * LBR callstack can only get user call chain.
2184 * The mix_chain_nr is kernel call chain
2185 * number plus LBR user call chain number.
2186 * i is kernel call chain number,
2187 * 1 is PERF_CONTEXT_USER,
2188 * lbr_nr + 1 is the user call chain number.
2189 * For details, please refer to the comments
2190 * in callchain__printf
2191 */
2192 int mix_chain_nr = i + 1 + lbr_nr + 1;
2193
Kan Liang384b6052015-01-05 13:23:05 -05002194 for (j = 0; j < mix_chain_nr; j++) {
Arnaldo Carvalho de Melo18ef15c2016-10-03 11:07:24 -03002195 int err;
Jin Yao410024d2016-10-31 09:19:49 +08002196 branch = false;
2197 flags = NULL;
2198
Kan Liang384b6052015-01-05 13:23:05 -05002199 if (callchain_param.order == ORDER_CALLEE) {
2200 if (j < i + 1)
2201 ip = chain->ips[j];
Jin Yao410024d2016-10-31 09:19:49 +08002202 else if (j > i + 1) {
2203 k = j - i - 2;
2204 ip = lbr_stack->entries[k].from;
2205 branch = true;
2206 flags = &lbr_stack->entries[k].flags;
2207 } else {
Kan Liang384b6052015-01-05 13:23:05 -05002208 ip = lbr_stack->entries[0].to;
Jin Yao410024d2016-10-31 09:19:49 +08002209 branch = true;
2210 flags = &lbr_stack->entries[0].flags;
Jin Yaob851dd42017-07-18 20:13:15 +08002211 branch_from =
2212 lbr_stack->entries[0].from;
Jin Yao410024d2016-10-31 09:19:49 +08002213 }
Kan Liang384b6052015-01-05 13:23:05 -05002214 } else {
Jin Yao410024d2016-10-31 09:19:49 +08002215 if (j < lbr_nr) {
2216 k = lbr_nr - j - 1;
2217 ip = lbr_stack->entries[k].from;
2218 branch = true;
2219 flags = &lbr_stack->entries[k].flags;
2220 }
Kan Liang384b6052015-01-05 13:23:05 -05002221 else if (j > lbr_nr)
2222 ip = chain->ips[i + 1 - (j - lbr_nr)];
Jin Yao410024d2016-10-31 09:19:49 +08002223 else {
Kan Liang384b6052015-01-05 13:23:05 -05002224 ip = lbr_stack->entries[0].to;
Jin Yao410024d2016-10-31 09:19:49 +08002225 branch = true;
2226 flags = &lbr_stack->entries[0].flags;
Jin Yaob851dd42017-07-18 20:13:15 +08002227 branch_from =
2228 lbr_stack->entries[0].from;
Jin Yao410024d2016-10-31 09:19:49 +08002229 }
Kan Liang384b6052015-01-05 13:23:05 -05002230 }
2231
Jin Yao410024d2016-10-31 09:19:49 +08002232 err = add_callchain_ip(thread, cursor, parent,
2233 root_al, &cpumode, ip,
Jin Yaoc4ee0622017-08-07 21:05:15 +08002234 branch, flags, NULL,
Jin Yaob851dd42017-07-18 20:13:15 +08002235 branch_from);
Kan Liang384b6052015-01-05 13:23:05 -05002236 if (err)
2237 return (err < 0) ? err : 0;
2238 }
2239 return 1;
2240 }
2241
2242 return 0;
2243}
2244
David S. Millere9024d52018-10-30 12:12:26 -03002245static int find_prev_cpumode(struct ip_callchain *chain, struct thread *thread,
2246 struct callchain_cursor *cursor,
2247 struct symbol **parent,
2248 struct addr_location *root_al,
2249 u8 *cpumode, int ent)
2250{
2251 int err = 0;
2252
2253 while (--ent >= 0) {
2254 u64 ip = chain->ips[ent];
2255
2256 if (ip >= PERF_CONTEXT_MAX) {
2257 err = add_callchain_ip(thread, cursor, parent,
2258 root_al, cpumode, ip,
2259 false, NULL, NULL, 0);
2260 break;
2261 }
2262 }
2263 return err;
2264}
2265
Kan Liang384b6052015-01-05 13:23:05 -05002266static int thread__resolve_callchain_sample(struct thread *thread,
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002267 struct callchain_cursor *cursor,
Kan Liang384b6052015-01-05 13:23:05 -05002268 struct perf_evsel *evsel,
2269 struct perf_sample *sample,
2270 struct symbol **parent,
2271 struct addr_location *root_al,
2272 int max_stack)
2273{
2274 struct branch_stack *branch = sample->branch_stack;
2275 struct ip_callchain *chain = sample->callchain;
Jin Yaob49a8212017-05-08 18:43:02 +08002276 int chain_nr = 0;
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002277 u8 cpumode = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melobf8bddb2016-05-19 11:14:15 -03002278 int i, j, err, nr_entries;
Andi Kleen8b7bad52014-11-12 18:05:20 -08002279 int skip_idx = -1;
2280 int first_call = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002281
Jin Yaob49a8212017-05-08 18:43:02 +08002282 if (chain)
2283 chain_nr = chain->nr;
2284
Arnaldo Carvalho de Meloacf2abb2016-04-18 10:35:03 -03002285 if (perf_evsel__has_branch_callstack(evsel)) {
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002286 err = resolve_lbr_callchain_sample(thread, cursor, sample, parent,
Kan Liang384b6052015-01-05 13:23:05 -05002287 root_al, max_stack);
2288 if (err)
2289 return (err < 0) ? err : 0;
2290 }
2291
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07002292 /*
2293 * Based on DWARF debug information, some architectures skip
2294 * a callchain entry saved by the kernel.
2295 */
Arnaldo Carvalho de Melobf8bddb2016-05-19 11:14:15 -03002296 skip_idx = arch_skip_callchain_idx(thread, chain);
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07002297
Andi Kleen8b7bad52014-11-12 18:05:20 -08002298 /*
2299 * Add branches to call stack for easier browsing. This gives
2300 * more context for a sample than just the callers.
2301 *
2302 * This uses individual histograms of paths compared to the
2303 * aggregated histograms the normal LBR mode uses.
2304 *
2305 * Limitations for now:
2306 * - No extra filters
2307 * - No annotations (should annotate somehow)
2308 */
2309
2310 if (branch && callchain_param.branch_callstack) {
2311 int nr = min(max_stack, (int)branch->nr);
2312 struct branch_entry be[nr];
Jin Yaoc4ee0622017-08-07 21:05:15 +08002313 struct iterations iter[nr];
Andi Kleen8b7bad52014-11-12 18:05:20 -08002314
2315 if (branch->nr > PERF_MAX_BRANCH_DEPTH) {
2316 pr_warning("corrupted branch chain. skipping...\n");
2317 goto check_calls;
2318 }
2319
2320 for (i = 0; i < nr; i++) {
2321 if (callchain_param.order == ORDER_CALLEE) {
2322 be[i] = branch->entries[i];
Jin Yaob49a8212017-05-08 18:43:02 +08002323
2324 if (chain == NULL)
2325 continue;
2326
Andi Kleen8b7bad52014-11-12 18:05:20 -08002327 /*
2328 * Check for overlap into the callchain.
2329 * The return address is one off compared to
2330 * the branch entry. To adjust for this
2331 * assume the calling instruction is not longer
2332 * than 8 bytes.
2333 */
2334 if (i == skip_idx ||
2335 chain->ips[first_call] >= PERF_CONTEXT_MAX)
2336 first_call++;
2337 else if (be[i].from < chain->ips[first_call] &&
2338 be[i].from >= chain->ips[first_call] - 8)
2339 first_call++;
2340 } else
2341 be[i] = branch->entries[branch->nr - i - 1];
2342 }
2343
Jin Yaoc4ee0622017-08-07 21:05:15 +08002344 memset(iter, 0, sizeof(struct iterations) * nr);
2345 nr = remove_loops(be, nr, iter);
Jin Yao410024d2016-10-31 09:19:49 +08002346
Andi Kleen8b7bad52014-11-12 18:05:20 -08002347 for (i = 0; i < nr; i++) {
Jin Yaoc4ee0622017-08-07 21:05:15 +08002348 err = add_callchain_ip(thread, cursor, parent,
2349 root_al,
2350 NULL, be[i].to,
2351 true, &be[i].flags,
2352 NULL, be[i].from);
Jin Yao410024d2016-10-31 09:19:49 +08002353
Andi Kleen8b7bad52014-11-12 18:05:20 -08002354 if (!err)
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002355 err = add_callchain_ip(thread, cursor, parent, root_al,
Jin Yao410024d2016-10-31 09:19:49 +08002356 NULL, be[i].from,
2357 true, &be[i].flags,
Jin Yaoc4ee0622017-08-07 21:05:15 +08002358 &iter[i], 0);
Andi Kleen8b7bad52014-11-12 18:05:20 -08002359 if (err == -EINVAL)
2360 break;
2361 if (err)
2362 return err;
2363 }
Jin Yaob49a8212017-05-08 18:43:02 +08002364
2365 if (chain_nr == 0)
2366 return 0;
2367
Andi Kleen8b7bad52014-11-12 18:05:20 -08002368 chain_nr -= nr;
2369 }
2370
2371check_calls:
David S. Millere9024d52018-10-30 12:12:26 -03002372 if (callchain_param.order != ORDER_CALLEE) {
2373 err = find_prev_cpumode(chain, thread, cursor, parent, root_al,
2374 &cpumode, chain->nr - first_call);
2375 if (err)
2376 return (err < 0) ? err : 0;
2377 }
Arnaldo Carvalho de Melobf8bddb2016-05-19 11:14:15 -03002378 for (i = first_call, nr_entries = 0;
Arnaldo Carvalho de Meloa29d5c92016-05-16 21:16:54 -03002379 i < chain_nr && nr_entries < max_stack; i++) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002380 u64 ip;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002381
2382 if (callchain_param.order == ORDER_CALLEE)
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07002383 j = i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002384 else
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07002385 j = chain->nr - i - 1;
2386
2387#ifdef HAVE_SKIP_CALLCHAIN_IDX
2388 if (j == skip_idx)
2389 continue;
2390#endif
2391 ip = chain->ips[j];
Arnaldo Carvalho de Melobf8bddb2016-05-19 11:14:15 -03002392 if (ip < PERF_CONTEXT_MAX)
2393 ++nr_entries;
David S. Millere9024d52018-10-30 12:12:26 -03002394 else if (callchain_param.order != ORDER_CALLEE) {
2395 err = find_prev_cpumode(chain, thread, cursor, parent,
2396 root_al, &cpumode, j);
2397 if (err)
2398 return (err < 0) ? err : 0;
2399 continue;
2400 }
Arnaldo Carvalho de Meloa29d5c92016-05-16 21:16:54 -03002401
Jin Yao410024d2016-10-31 09:19:49 +08002402 err = add_callchain_ip(thread, cursor, parent,
2403 root_al, &cpumode, ip,
Jin Yaoc4ee0622017-08-07 21:05:15 +08002404 false, NULL, NULL, 0);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002405
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002406 if (err)
Kan Liang2e777842014-12-02 10:06:53 -05002407 return (err < 0) ? err : 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002408 }
2409
2410 return 0;
2411}
2412
Milian Wolff11ea2512017-10-09 22:32:59 +02002413static int append_inlines(struct callchain_cursor *cursor,
2414 struct map *map, struct symbol *sym, u64 ip)
2415{
2416 struct inline_node *inline_node;
2417 struct inline_list *ilist;
2418 u64 addr;
Milian Wolffb38775c2017-10-19 13:38:33 +02002419 int ret = 1;
Milian Wolff11ea2512017-10-09 22:32:59 +02002420
2421 if (!symbol_conf.inline_name || !map || !sym)
Milian Wolffb38775c2017-10-19 13:38:33 +02002422 return ret;
Milian Wolff11ea2512017-10-09 22:32:59 +02002423
Milian Wolff7a8a8fc2018-09-26 15:52:06 +02002424 addr = map__map_ip(map, ip);
2425 addr = map__rip_2objdump(map, addr);
Milian Wolff11ea2512017-10-09 22:32:59 +02002426
2427 inline_node = inlines__tree_find(&map->dso->inlined_nodes, addr);
2428 if (!inline_node) {
2429 inline_node = dso__parse_addr_inlines(map->dso, addr, sym);
2430 if (!inline_node)
Milian Wolffb38775c2017-10-19 13:38:33 +02002431 return ret;
Milian Wolff11ea2512017-10-09 22:32:59 +02002432 inlines__tree_insert(&map->dso->inlined_nodes, inline_node);
2433 }
2434
2435 list_for_each_entry(ilist, &inline_node->val, list) {
Milian Wolffb38775c2017-10-19 13:38:33 +02002436 ret = callchain_cursor_append(cursor, ip, map,
2437 ilist->symbol, false,
2438 NULL, 0, 0, 0, ilist->srcline);
Milian Wolff11ea2512017-10-09 22:32:59 +02002439
2440 if (ret != 0)
2441 return ret;
2442 }
2443
Milian Wolffb38775c2017-10-19 13:38:33 +02002444 return ret;
Milian Wolff11ea2512017-10-09 22:32:59 +02002445}
2446
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002447static int unwind_entry(struct unwind_entry *entry, void *arg)
2448{
2449 struct callchain_cursor *cursor = arg;
Milian Wolff40a342c2017-10-09 22:32:56 +02002450 const char *srcline = NULL;
Milian Wolffff4ce282018-09-26 15:52:05 +02002451 u64 addr = entry->ip;
Namhyung Kimb49a8fe2015-11-26 16:08:20 +09002452
2453 if (symbol_conf.hide_unresolved && entry->sym == NULL)
2454 return 0;
Milian Wolff40a342c2017-10-09 22:32:56 +02002455
Milian Wolff11ea2512017-10-09 22:32:59 +02002456 if (append_inlines(cursor, entry->map, entry->sym, entry->ip) == 0)
2457 return 0;
2458
Sandipan Das2a9d5052018-07-03 17:35:55 +05302459 /*
2460 * Convert entry->ip from a virtual address to an offset in
2461 * its corresponding binary.
2462 */
Milian Wolffff4ce282018-09-26 15:52:05 +02002463 if (entry->map)
2464 addr = map__map_ip(entry->map, entry->ip);
Sandipan Das2a9d5052018-07-03 17:35:55 +05302465
2466 srcline = callchain_srcline(entry->map, entry->sym, addr);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002467 return callchain_cursor_append(cursor, entry->ip,
Jin Yao410024d2016-10-31 09:19:49 +08002468 entry->map, entry->sym,
Milian Wolff40a342c2017-10-09 22:32:56 +02002469 false, NULL, 0, 0, 0, srcline);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002470}
2471
Chris Phlipot9919a652016-04-28 01:19:06 -07002472static int thread__resolve_callchain_unwind(struct thread *thread,
2473 struct callchain_cursor *cursor,
2474 struct perf_evsel *evsel,
2475 struct perf_sample *sample,
2476 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002477{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002478 /* Can we do dwarf post unwind? */
2479 if (!((evsel->attr.sample_type & PERF_SAMPLE_REGS_USER) &&
2480 (evsel->attr.sample_type & PERF_SAMPLE_STACK_USER)))
2481 return 0;
2482
2483 /* Bail out if nothing was captured. */
2484 if ((!sample->user_regs.regs) ||
2485 (!sample->user_stack.size))
2486 return 0;
2487
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002488 return unwind__get_entries(unwind_entry, cursor,
Jiri Olsa352ea452014-01-07 13:47:25 +01002489 thread, sample, max_stack);
Chris Phlipot9919a652016-04-28 01:19:06 -07002490}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002491
Chris Phlipot9919a652016-04-28 01:19:06 -07002492int thread__resolve_callchain(struct thread *thread,
2493 struct callchain_cursor *cursor,
2494 struct perf_evsel *evsel,
2495 struct perf_sample *sample,
2496 struct symbol **parent,
2497 struct addr_location *root_al,
2498 int max_stack)
2499{
2500 int ret = 0;
2501
Jiri Olsa914eb9c2017-08-06 16:39:39 +02002502 callchain_cursor_reset(cursor);
Chris Phlipot9919a652016-04-28 01:19:06 -07002503
2504 if (callchain_param.order == ORDER_CALLEE) {
2505 ret = thread__resolve_callchain_sample(thread, cursor,
2506 evsel, sample,
2507 parent, root_al,
2508 max_stack);
2509 if (ret)
2510 return ret;
2511 ret = thread__resolve_callchain_unwind(thread, cursor,
2512 evsel, sample,
2513 max_stack);
2514 } else {
2515 ret = thread__resolve_callchain_unwind(thread, cursor,
2516 evsel, sample,
2517 max_stack);
2518 if (ret)
2519 return ret;
2520 ret = thread__resolve_callchain_sample(thread, cursor,
2521 evsel, sample,
2522 parent, root_al,
2523 max_stack);
2524 }
2525
2526 return ret;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002527}
David Ahern35feee12013-09-28 13:12:58 -06002528
2529int machine__for_each_thread(struct machine *machine,
2530 int (*fn)(struct thread *thread, void *p),
2531 void *priv)
2532{
Kan Liang91e467b2017-09-10 19:23:14 -07002533 struct threads *threads;
David Ahern35feee12013-09-28 13:12:58 -06002534 struct rb_node *nd;
2535 struct thread *thread;
2536 int rc = 0;
Kan Liang91e467b2017-09-10 19:23:14 -07002537 int i;
David Ahern35feee12013-09-28 13:12:58 -06002538
Kan Liang91e467b2017-09-10 19:23:14 -07002539 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
2540 threads = &machine->threads[i];
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -08002541 for (nd = rb_first_cached(&threads->entries); nd;
2542 nd = rb_next(nd)) {
Kan Liang91e467b2017-09-10 19:23:14 -07002543 thread = rb_entry(nd, struct thread, rb_node);
2544 rc = fn(thread, priv);
2545 if (rc != 0)
2546 return rc;
2547 }
David Ahern35feee12013-09-28 13:12:58 -06002548
Kan Liang91e467b2017-09-10 19:23:14 -07002549 list_for_each_entry(thread, &threads->dead, node) {
2550 rc = fn(thread, priv);
2551 if (rc != 0)
2552 return rc;
2553 }
David Ahern35feee12013-09-28 13:12:58 -06002554 }
2555 return rc;
2556}
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03002557
Adrian Huntera5499b32015-05-29 16:33:30 +03002558int machines__for_each_thread(struct machines *machines,
2559 int (*fn)(struct thread *thread, void *p),
2560 void *priv)
2561{
2562 struct rb_node *nd;
2563 int rc = 0;
2564
2565 rc = machine__for_each_thread(&machines->host, fn, priv);
2566 if (rc != 0)
2567 return rc;
2568
Davidlohr Buesof3acb3a2018-12-06 11:18:14 -08002569 for (nd = rb_first_cached(&machines->guests); nd; nd = rb_next(nd)) {
Adrian Huntera5499b32015-05-29 16:33:30 +03002570 struct machine *machine = rb_entry(nd, struct machine, rb_node);
2571
2572 rc = machine__for_each_thread(machine, fn, priv);
2573 if (rc != 0)
2574 return rc;
2575 }
2576 return rc;
2577}
2578
Arnaldo Carvalho de Meloa33fbd52013-11-11 11:36:12 -03002579int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool,
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002580 struct target *target, struct thread_map *threads,
Kan Liang9d9cad72015-06-17 09:51:11 -04002581 perf_event__handler_t process, bool data_mmap,
Kan Liang340b47f2017-09-29 07:47:54 -07002582 unsigned int nr_threads_synthesize)
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03002583{
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002584 if (target__has_task(target))
Mark Drayton3fcb10e2018-12-04 12:34:20 -08002585 return perf_event__synthesize_thread_map(tool, threads, process, machine, data_mmap);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002586 else if (target__has_cpu(target))
Kan Liang340b47f2017-09-29 07:47:54 -07002587 return perf_event__synthesize_threads(tool, process,
2588 machine, data_mmap,
Kan Liang340b47f2017-09-29 07:47:54 -07002589 nr_threads_synthesize);
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03002590 /* command specified */
2591 return 0;
2592}
Adrian Hunterb9d266b2014-07-22 16:17:25 +03002593
2594pid_t machine__get_current_tid(struct machine *machine, int cpu)
2595{
2596 if (cpu < 0 || cpu >= MAX_NR_CPUS || !machine->current_tid)
2597 return -1;
2598
2599 return machine->current_tid[cpu];
2600}
2601
2602int machine__set_current_tid(struct machine *machine, int cpu, pid_t pid,
2603 pid_t tid)
2604{
2605 struct thread *thread;
2606
2607 if (cpu < 0)
2608 return -EINVAL;
2609
2610 if (!machine->current_tid) {
2611 int i;
2612
2613 machine->current_tid = calloc(MAX_NR_CPUS, sizeof(pid_t));
2614 if (!machine->current_tid)
2615 return -ENOMEM;
2616 for (i = 0; i < MAX_NR_CPUS; i++)
2617 machine->current_tid[i] = -1;
2618 }
2619
2620 if (cpu >= MAX_NR_CPUS) {
2621 pr_err("Requested CPU %d too large. ", cpu);
2622 pr_err("Consider raising MAX_NR_CPUS\n");
2623 return -EINVAL;
2624 }
2625
2626 machine->current_tid[cpu] = tid;
2627
2628 thread = machine__findnew_thread(machine, pid, tid);
2629 if (!thread)
2630 return -ENOMEM;
2631
2632 thread->cpu = cpu;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002633 thread__put(thread);
Adrian Hunterb9d266b2014-07-22 16:17:25 +03002634
2635 return 0;
2636}
Adrian Hunterfbe2af42014-08-15 22:08:39 +03002637
Adrian Hunterdbbd34a2018-05-17 12:21:53 +03002638/*
2639 * Compares the raw arch string. N.B. see instead perf_env__arch() if a
2640 * normalized arch is needed.
2641 */
2642bool machine__is(struct machine *machine, const char *arch)
2643{
2644 return machine && !strcmp(perf_env__raw_arch(machine->env), arch);
2645}
2646
Adrian Hunter9cecca32018-05-22 13:54:32 +03002647int machine__nr_cpus_avail(struct machine *machine)
2648{
2649 return machine ? perf_env__nr_cpus_avail(machine->env) : 0;
2650}
2651
Adrian Hunterfbe2af42014-08-15 22:08:39 +03002652int machine__get_kernel_start(struct machine *machine)
2653{
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -03002654 struct map *map = machine__kernel_map(machine);
Adrian Hunterfbe2af42014-08-15 22:08:39 +03002655 int err = 0;
2656
2657 /*
2658 * The only addresses above 2^63 are kernel addresses of a 64-bit
2659 * kernel. Note that addresses are unsigned so that on a 32-bit system
2660 * all addresses including kernel addresses are less than 2^32. In
2661 * that case (32-bit system), if the kernel mapping is unknown, all
2662 * addresses will be assumed to be in user space - see
2663 * machine__kernel_ip().
2664 */
2665 machine->kernel_start = 1ULL << 63;
2666 if (map) {
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03002667 err = map__load(map);
Adrian Hunter19422a92018-05-17 12:21:54 +03002668 /*
2669 * On x86_64, PTI entry trampolines are less than the
2670 * start of kernel text, but still above 2^63. So leave
2671 * kernel_start = 1ULL << 63 for x86_64.
2672 */
2673 if (!err && !machine__is(machine, "x86_64"))
Adrian Hunterfbe2af42014-08-15 22:08:39 +03002674 machine->kernel_start = map->start;
2675 }
2676 return err;
2677}
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03002678
Adrian Hunter8e80ad92018-11-06 23:07:10 +02002679u8 machine__addr_cpumode(struct machine *machine, u8 cpumode, u64 addr)
2680{
2681 u8 addr_cpumode = cpumode;
2682 bool kernel_ip;
2683
2684 if (!machine->single_address_space)
2685 goto out;
2686
2687 kernel_ip = machine__kernel_ip(machine, addr);
2688 switch (cpumode) {
2689 case PERF_RECORD_MISC_KERNEL:
2690 case PERF_RECORD_MISC_USER:
2691 addr_cpumode = kernel_ip ? PERF_RECORD_MISC_KERNEL :
2692 PERF_RECORD_MISC_USER;
2693 break;
2694 case PERF_RECORD_MISC_GUEST_KERNEL:
2695 case PERF_RECORD_MISC_GUEST_USER:
2696 addr_cpumode = kernel_ip ? PERF_RECORD_MISC_GUEST_KERNEL :
2697 PERF_RECORD_MISC_GUEST_USER;
2698 break;
2699 default:
2700 break;
2701 }
2702out:
2703 return addr_cpumode;
2704}
2705
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03002706struct dso *machine__findnew_dso(struct machine *machine, const char *filename)
2707{
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03002708 return dsos__findnew(&machine->dsos, filename);
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03002709}
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -03002710
2711char *machine__resolve_kernel_addr(void *vmachine, unsigned long long *addrp, char **modp)
2712{
2713 struct machine *machine = vmachine;
2714 struct map *map;
Arnaldo Carvalho de Melo107cad92018-04-30 12:20:54 -03002715 struct symbol *sym = machine__find_kernel_symbol(machine, *addrp, &map);
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -03002716
2717 if (sym == NULL)
2718 return NULL;
2719
2720 *modp = __map__is_kmodule(map) ? (char *)map->dso->short_name : NULL;
2721 *addrp = map->unmap_ip(map, sym->start);
2722 return sym->name;
2723}