blob: ddeea05eae86ba11857f6d1151d5feb1fe325a97 [file] [log] [blame]
Arnaldo Carvalho de Melo76b31a22017-04-18 12:26:44 -03001#include <dirent.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -03002#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -03003#include <inttypes.h>
Arnaldo Carvalho de Melo1eae20c2017-04-18 12:33:30 -03004#include <regex.h>
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03005#include "callchain.h"
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03006#include "debug.h"
7#include "event.h"
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03008#include "evsel.h"
9#include "hist.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030010#include "machine.h"
11#include "map.h"
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030012#include "sort.h"
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030013#include "strlist.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030014#include "thread.h"
Adrian Hunterd027b6402014-07-23 14:23:00 +030015#include "vdso.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030016#include <stdbool.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030017#include <sys/types.h>
18#include <sys/stat.h>
19#include <unistd.h>
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030020#include "unwind.h"
Andi Kleen8b7bad52014-11-12 18:05:20 -080021#include "linux/hash.h"
Hari Bathinif3b36142017-03-08 02:11:43 +053022#include "asm/bug.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030023
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030024#include "sane_ctype.h"
25#include <symbol/kallsyms.h>
26
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030027static void __machine__remove_thread(struct machine *machine, struct thread *th, bool lock);
28
Arnaldo Carvalho de Meloe167f992014-10-14 15:07:48 -030029static void dsos__init(struct dsos *dsos)
30{
31 INIT_LIST_HEAD(&dsos->head);
32 dsos->root = RB_ROOT;
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -030033 pthread_rwlock_init(&dsos->lock, NULL);
Arnaldo Carvalho de Meloe167f992014-10-14 15:07:48 -030034}
35
Kan Liang91e467b2017-09-10 19:23:14 -070036static void machine__threads_init(struct machine *machine)
37{
38 int i;
39
40 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
41 struct threads *threads = &machine->threads[i];
42 threads->entries = RB_ROOT;
43 pthread_rwlock_init(&threads->lock, NULL);
44 threads->nr = 0;
45 INIT_LIST_HEAD(&threads->dead);
46 threads->last_match = NULL;
47 }
48}
49
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030050int machine__init(struct machine *machine, const char *root_dir, pid_t pid)
51{
Wang Nan93b0ba32015-12-08 02:25:44 +000052 memset(machine, 0, sizeof(*machine));
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -030053 map_groups__init(&machine->kmaps, machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030054 RB_CLEAR_NODE(&machine->rb_node);
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -030055 dsos__init(&machine->dsos);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030056
Kan Liang91e467b2017-09-10 19:23:14 -070057 machine__threads_init(machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030058
Adrian Hunterd027b6402014-07-23 14:23:00 +030059 machine->vdso_info = NULL;
Arnaldo Carvalho de Melo4cde9982015-09-09 12:25:00 -030060 machine->env = NULL;
Adrian Hunterd027b6402014-07-23 14:23:00 +030061
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030062 machine->pid = pid;
63
Jiri Olsa14bd6d22014-01-07 13:47:19 +010064 machine->id_hdr_size = 0;
Arnaldo Carvalho de Melocaf8a0d2016-05-17 11:56:24 -030065 machine->kptr_restrict_warned = false;
Adrian Huntercfe1c412014-07-31 09:00:45 +030066 machine->comm_exec = false;
Adrian Hunterfbe2af42014-08-15 22:08:39 +030067 machine->kernel_start = 0;
Adrian Hunter611a5ce2013-08-08 14:32:20 +030068
Masami Hiramatsucc1121a2015-12-09 11:11:33 +090069 memset(machine->vmlinux_maps, 0, sizeof(machine->vmlinux_maps));
70
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030071 machine->root_dir = strdup(root_dir);
72 if (machine->root_dir == NULL)
73 return -ENOMEM;
74
75 if (pid != HOST_KERNEL_ID) {
Adrian Hunter1fcb8762014-07-14 13:02:25 +030076 struct thread *thread = machine__findnew_thread(machine, -1,
Adrian Hunter314add62013-08-27 11:23:03 +030077 pid);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030078 char comm[64];
79
80 if (thread == NULL)
81 return -ENOMEM;
82
83 snprintf(comm, sizeof(comm), "[guest/%d]", pid);
Frederic Weisbecker162f0be2013-09-11 16:18:24 +020084 thread__set_comm(thread, comm, 0);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030085 thread__put(thread);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030086 }
87
Adrian Hunterb9d266b2014-07-22 16:17:25 +030088 machine->current_tid = NULL;
89
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030090 return 0;
91}
92
David Ahern8fb598e2013-09-28 13:13:00 -060093struct machine *machine__new_host(void)
94{
95 struct machine *machine = malloc(sizeof(*machine));
96
97 if (machine != NULL) {
98 machine__init(machine, "", HOST_KERNEL_ID);
99
100 if (machine__create_kernel_maps(machine) < 0)
101 goto out_delete;
102 }
103
104 return machine;
105out_delete:
106 free(machine);
107 return NULL;
108}
109
Arnaldo Carvalho de Melo7d132ca2017-01-05 15:31:48 -0300110struct machine *machine__new_kallsyms(void)
111{
112 struct machine *machine = machine__new_host();
113 /*
114 * FIXME:
115 * 1) MAP__FUNCTION will go away when we stop loading separate maps for
116 * functions and data objects.
117 * 2) We should switch to machine__load_kallsyms(), i.e. not explicitely
118 * ask for not using the kcore parsing code, once this one is fixed
119 * to create a map per module.
120 */
121 if (machine && __machine__load_kallsyms(machine, "/proc/kallsyms", MAP__FUNCTION, true) <= 0) {
122 machine__delete(machine);
123 machine = NULL;
124 }
125
126 return machine;
127}
128
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300129static void dsos__purge(struct dsos *dsos)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300130{
131 struct dso *pos, *n;
132
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300133 pthread_rwlock_wrlock(&dsos->lock);
134
Waiman Long8fa7d872014-09-29 16:07:28 -0400135 list_for_each_entry_safe(pos, n, &dsos->head, node) {
Waiman Long4598a0a2014-09-30 13:36:15 -0400136 RB_CLEAR_NODE(&pos->rb_node);
Adrian Huntere266a752015-11-13 11:48:30 +0200137 pos->root = NULL;
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300138 list_del_init(&pos->node);
139 dso__put(pos);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300140 }
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300141
142 pthread_rwlock_unlock(&dsos->lock);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300143}
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300144
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300145static void dsos__exit(struct dsos *dsos)
146{
147 dsos__purge(dsos);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300148 pthread_rwlock_destroy(&dsos->lock);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300149}
150
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300151void machine__delete_threads(struct machine *machine)
152{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300153 struct rb_node *nd;
Kan Liang91e467b2017-09-10 19:23:14 -0700154 int i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300155
Kan Liang91e467b2017-09-10 19:23:14 -0700156 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
157 struct threads *threads = &machine->threads[i];
158 pthread_rwlock_wrlock(&threads->lock);
159 nd = rb_first(&threads->entries);
160 while (nd) {
161 struct thread *t = rb_entry(nd, struct thread, rb_node);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300162
Kan Liang91e467b2017-09-10 19:23:14 -0700163 nd = rb_next(nd);
164 __machine__remove_thread(machine, t, false);
165 }
166 pthread_rwlock_unlock(&threads->lock);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300167 }
168}
169
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300170void machine__exit(struct machine *machine)
171{
Kan Liang91e467b2017-09-10 19:23:14 -0700172 int i;
173
Masami Hiramatsuebe97292015-11-18 15:40:24 +0900174 machine__destroy_kernel_maps(machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300175 map_groups__exit(&machine->kmaps);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300176 dsos__exit(&machine->dsos);
Arnaldo Carvalho de Melo9a4388c2015-05-29 11:54:08 -0300177 machine__exit_vdso(machine);
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300178 zfree(&machine->root_dir);
Adrian Hunterb9d266b2014-07-22 16:17:25 +0300179 zfree(&machine->current_tid);
Kan Liang91e467b2017-09-10 19:23:14 -0700180
181 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
182 struct threads *threads = &machine->threads[i];
183 pthread_rwlock_destroy(&threads->lock);
184 }
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300185}
186
187void machine__delete(struct machine *machine)
188{
Arnaldo Carvalho de Melo32ca6782016-06-22 10:19:11 -0300189 if (machine) {
190 machine__exit(machine);
191 free(machine);
192 }
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300193}
194
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300195void machines__init(struct machines *machines)
196{
197 machine__init(&machines->host, "", HOST_KERNEL_ID);
198 machines->guests = RB_ROOT;
199}
200
201void machines__exit(struct machines *machines)
202{
203 machine__exit(&machines->host);
204 /* XXX exit guest */
205}
206
207struct machine *machines__add(struct machines *machines, pid_t pid,
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300208 const char *root_dir)
209{
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300210 struct rb_node **p = &machines->guests.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300211 struct rb_node *parent = NULL;
212 struct machine *pos, *machine = malloc(sizeof(*machine));
213
214 if (machine == NULL)
215 return NULL;
216
217 if (machine__init(machine, root_dir, pid) != 0) {
218 free(machine);
219 return NULL;
220 }
221
222 while (*p != NULL) {
223 parent = *p;
224 pos = rb_entry(parent, struct machine, rb_node);
225 if (pid < pos->pid)
226 p = &(*p)->rb_left;
227 else
228 p = &(*p)->rb_right;
229 }
230
231 rb_link_node(&machine->rb_node, parent, p);
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300232 rb_insert_color(&machine->rb_node, &machines->guests);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300233
234 return machine;
235}
236
Adrian Huntercfe1c412014-07-31 09:00:45 +0300237void machines__set_comm_exec(struct machines *machines, bool comm_exec)
238{
239 struct rb_node *nd;
240
241 machines->host.comm_exec = comm_exec;
242
243 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
244 struct machine *machine = rb_entry(nd, struct machine, rb_node);
245
246 machine->comm_exec = comm_exec;
247 }
248}
249
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300250struct machine *machines__find(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300251{
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300252 struct rb_node **p = &machines->guests.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300253 struct rb_node *parent = NULL;
254 struct machine *machine;
255 struct machine *default_machine = NULL;
256
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300257 if (pid == HOST_KERNEL_ID)
258 return &machines->host;
259
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300260 while (*p != NULL) {
261 parent = *p;
262 machine = rb_entry(parent, struct machine, rb_node);
263 if (pid < machine->pid)
264 p = &(*p)->rb_left;
265 else if (pid > machine->pid)
266 p = &(*p)->rb_right;
267 else
268 return machine;
269 if (!machine->pid)
270 default_machine = machine;
271 }
272
273 return default_machine;
274}
275
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300276struct machine *machines__findnew(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300277{
278 char path[PATH_MAX];
279 const char *root_dir = "";
280 struct machine *machine = machines__find(machines, pid);
281
282 if (machine && (machine->pid == pid))
283 goto out;
284
285 if ((pid != HOST_KERNEL_ID) &&
286 (pid != DEFAULT_GUEST_KERNEL_ID) &&
287 (symbol_conf.guestmount)) {
288 sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
289 if (access(path, R_OK)) {
290 static struct strlist *seen;
291
292 if (!seen)
Arnaldo Carvalho de Melo4a77e212015-07-20 12:13:34 -0300293 seen = strlist__new(NULL, NULL);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300294
295 if (!strlist__has_entry(seen, path)) {
296 pr_err("Can't access file %s\n", path);
297 strlist__add(seen, path);
298 }
299 machine = NULL;
300 goto out;
301 }
302 root_dir = path;
303 }
304
305 machine = machines__add(machines, pid, root_dir);
306out:
307 return machine;
308}
309
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300310void machines__process_guests(struct machines *machines,
311 machine__process_t process, void *data)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300312{
313 struct rb_node *nd;
314
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300315 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300316 struct machine *pos = rb_entry(nd, struct machine, rb_node);
317 process(pos, data);
318 }
319}
320
321char *machine__mmap_name(struct machine *machine, char *bf, size_t size)
322{
323 if (machine__is_host(machine))
324 snprintf(bf, size, "[%s]", "kernel.kallsyms");
325 else if (machine__is_default_guest(machine))
326 snprintf(bf, size, "[%s]", "guest.kernel.kallsyms");
327 else {
328 snprintf(bf, size, "[%s.%d]", "guest.kernel.kallsyms",
329 machine->pid);
330 }
331
332 return bf;
333}
334
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300335void machines__set_id_hdr_size(struct machines *machines, u16 id_hdr_size)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300336{
337 struct rb_node *node;
338 struct machine *machine;
339
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300340 machines->host.id_hdr_size = id_hdr_size;
341
342 for (node = rb_first(&machines->guests); node; node = rb_next(node)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300343 machine = rb_entry(node, struct machine, rb_node);
344 machine->id_hdr_size = id_hdr_size;
345 }
346
347 return;
348}
349
Adrian Hunter29ce3612014-07-16 11:07:13 +0300350static void machine__update_thread_pid(struct machine *machine,
351 struct thread *th, pid_t pid)
352{
353 struct thread *leader;
354
355 if (pid == th->pid_ || pid == -1 || th->pid_ != -1)
356 return;
357
358 th->pid_ = pid;
359
360 if (th->pid_ == th->tid)
361 return;
362
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300363 leader = __machine__findnew_thread(machine, th->pid_, th->pid_);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300364 if (!leader)
365 goto out_err;
366
367 if (!leader->mg)
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -0300368 leader->mg = map_groups__new(machine);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300369
370 if (!leader->mg)
371 goto out_err;
372
373 if (th->mg == leader->mg)
374 return;
375
376 if (th->mg) {
377 /*
378 * Maps are created from MMAP events which provide the pid and
379 * tid. Consequently there never should be any maps on a thread
380 * with an unknown pid. Just print an error if there are.
381 */
382 if (!map_groups__empty(th->mg))
383 pr_err("Discarding thread maps for %d:%d\n",
384 th->pid_, th->tid);
Arnaldo Carvalho de Melo8e160b22015-05-19 20:07:14 -0300385 map_groups__put(th->mg);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300386 }
387
388 th->mg = map_groups__get(leader->mg);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300389out_put:
390 thread__put(leader);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300391 return;
Adrian Hunter29ce3612014-07-16 11:07:13 +0300392out_err:
393 pr_err("Failed to join map groups for %d:%d\n", th->pid_, th->tid);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300394 goto out_put;
Adrian Hunter29ce3612014-07-16 11:07:13 +0300395}
396
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300397/*
Adam Buchbinderbd1a0be52016-02-24 10:02:25 -0800398 * Caller must eventually drop thread->refcnt returned with a successful
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300399 * lookup/new thread inserted.
400 */
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300401static struct thread *____machine__findnew_thread(struct machine *machine,
Arnaldo Carvalho de Melo75e45e42017-09-14 16:16:34 -0300402 struct threads *threads,
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300403 pid_t pid, pid_t tid,
404 bool create)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300405{
Kan Liang91e467b2017-09-10 19:23:14 -0700406 struct rb_node **p = &threads->entries.rb_node;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300407 struct rb_node *parent = NULL;
408 struct thread *th;
409
410 /*
Adrian Hunter38051232013-07-04 16:20:31 +0300411 * Front-end cache - TID lookups come in blocks,
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300412 * so most of the time we dont have to look up
413 * the full rbtree:
414 */
Kan Liang91e467b2017-09-10 19:23:14 -0700415 th = threads->last_match;
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300416 if (th != NULL) {
417 if (th->tid == tid) {
418 machine__update_thread_pid(machine, th, pid);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300419 return thread__get(th);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300420 }
421
Kan Liang91e467b2017-09-10 19:23:14 -0700422 threads->last_match = NULL;
Adrian Hunter99d725f2013-08-26 16:00:19 +0300423 }
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300424
425 while (*p != NULL) {
426 parent = *p;
427 th = rb_entry(parent, struct thread, rb_node);
428
Adrian Hunter38051232013-07-04 16:20:31 +0300429 if (th->tid == tid) {
Kan Liang91e467b2017-09-10 19:23:14 -0700430 threads->last_match = th;
Adrian Hunter29ce3612014-07-16 11:07:13 +0300431 machine__update_thread_pid(machine, th, pid);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300432 return thread__get(th);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300433 }
434
Adrian Hunter38051232013-07-04 16:20:31 +0300435 if (tid < th->tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300436 p = &(*p)->rb_left;
437 else
438 p = &(*p)->rb_right;
439 }
440
441 if (!create)
442 return NULL;
443
Adrian Hunter99d725f2013-08-26 16:00:19 +0300444 th = thread__new(pid, tid);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300445 if (th != NULL) {
446 rb_link_node(&th->rb_node, parent, p);
Kan Liang91e467b2017-09-10 19:23:14 -0700447 rb_insert_color(&th->rb_node, &threads->entries);
Jiri Olsacddcef62014-04-09 20:54:29 +0200448
449 /*
450 * We have to initialize map_groups separately
451 * after rb tree is updated.
452 *
453 * The reason is that we call machine__findnew_thread
454 * within thread__init_map_groups to find the thread
455 * leader and that would screwed the rb tree.
456 */
Adrian Hunter418029b2014-07-16 10:19:44 +0300457 if (thread__init_map_groups(th, machine)) {
Kan Liang91e467b2017-09-10 19:23:14 -0700458 rb_erase_init(&th->rb_node, &threads->entries);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300459 RB_CLEAR_NODE(&th->rb_node);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300460 thread__put(th);
Jiri Olsacddcef62014-04-09 20:54:29 +0200461 return NULL;
Adrian Hunter418029b2014-07-16 10:19:44 +0300462 }
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300463 /*
464 * It is now in the rbtree, get a ref
465 */
466 thread__get(th);
Kan Liang91e467b2017-09-10 19:23:14 -0700467 threads->last_match = th;
468 ++threads->nr;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300469 }
470
471 return th;
472}
473
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300474struct thread *__machine__findnew_thread(struct machine *machine, pid_t pid, pid_t tid)
475{
Arnaldo Carvalho de Melo75e45e42017-09-14 16:16:34 -0300476 return ____machine__findnew_thread(machine, machine__threads(machine, tid), pid, tid, true);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300477}
478
Adrian Hunter314add62013-08-27 11:23:03 +0300479struct thread *machine__findnew_thread(struct machine *machine, pid_t pid,
480 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300481{
Kan Liang91e467b2017-09-10 19:23:14 -0700482 struct threads *threads = machine__threads(machine, tid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300483 struct thread *th;
484
Kan Liang91e467b2017-09-10 19:23:14 -0700485 pthread_rwlock_wrlock(&threads->lock);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300486 th = __machine__findnew_thread(machine, pid, tid);
Kan Liang91e467b2017-09-10 19:23:14 -0700487 pthread_rwlock_unlock(&threads->lock);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300488 return th;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300489}
490
Jiri Olsad75e6092014-03-14 15:00:03 +0100491struct thread *machine__find_thread(struct machine *machine, pid_t pid,
492 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300493{
Kan Liang91e467b2017-09-10 19:23:14 -0700494 struct threads *threads = machine__threads(machine, tid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300495 struct thread *th;
Kan Liang91e467b2017-09-10 19:23:14 -0700496
497 pthread_rwlock_rdlock(&threads->lock);
Arnaldo Carvalho de Melo75e45e42017-09-14 16:16:34 -0300498 th = ____machine__findnew_thread(machine, threads, pid, tid, false);
Kan Liang91e467b2017-09-10 19:23:14 -0700499 pthread_rwlock_unlock(&threads->lock);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300500 return th;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300501}
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300502
Adrian Huntercfe1c412014-07-31 09:00:45 +0300503struct comm *machine__thread_exec_comm(struct machine *machine,
504 struct thread *thread)
505{
506 if (machine->comm_exec)
507 return thread__exec_comm(thread);
508 else
509 return thread__comm(thread);
510}
511
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200512int machine__process_comm_event(struct machine *machine, union perf_event *event,
513 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300514{
Adrian Hunter314add62013-08-27 11:23:03 +0300515 struct thread *thread = machine__findnew_thread(machine,
516 event->comm.pid,
517 event->comm.tid);
Adrian Hunter65de51f2014-07-31 09:00:44 +0300518 bool exec = event->header.misc & PERF_RECORD_MISC_COMM_EXEC;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300519 int err = 0;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300520
Adrian Huntercfe1c412014-07-31 09:00:45 +0300521 if (exec)
522 machine->comm_exec = true;
523
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300524 if (dump_trace)
525 perf_event__fprintf_comm(event, stdout);
526
Adrian Hunter65de51f2014-07-31 09:00:44 +0300527 if (thread == NULL ||
528 __thread__set_comm(thread, event->comm.comm, sample->time, exec)) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300529 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300530 err = -1;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300531 }
532
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300533 thread__put(thread);
534
535 return err;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300536}
537
Hari Bathinif3b36142017-03-08 02:11:43 +0530538int machine__process_namespaces_event(struct machine *machine __maybe_unused,
539 union perf_event *event,
540 struct perf_sample *sample __maybe_unused)
541{
542 struct thread *thread = machine__findnew_thread(machine,
543 event->namespaces.pid,
544 event->namespaces.tid);
545 int err = 0;
546
547 WARN_ONCE(event->namespaces.nr_namespaces > NR_NAMESPACES,
548 "\nWARNING: kernel seems to support more namespaces than perf"
549 " tool.\nTry updating the perf tool..\n\n");
550
551 WARN_ONCE(event->namespaces.nr_namespaces < NR_NAMESPACES,
552 "\nWARNING: perf tool seems to support more namespaces than"
553 " the kernel.\nTry updating the kernel..\n\n");
554
555 if (dump_trace)
556 perf_event__fprintf_namespaces(event, stdout);
557
558 if (thread == NULL ||
559 thread__set_namespaces(thread, sample->time, &event->namespaces)) {
560 dump_printf("problem processing PERF_RECORD_NAMESPACES, skipping event.\n");
561 err = -1;
562 }
563
564 thread__put(thread);
565
566 return err;
567}
568
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300569int machine__process_lost_event(struct machine *machine __maybe_unused,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200570 union perf_event *event, struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300571{
572 dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
573 event->lost.id, event->lost.lost);
574 return 0;
575}
576
Kan Liangc4937a92015-05-10 15:13:15 -0400577int machine__process_lost_samples_event(struct machine *machine __maybe_unused,
578 union perf_event *event, struct perf_sample *sample)
579{
580 dump_printf(": id:%" PRIu64 ": lost samples :%" PRIu64 "\n",
581 sample->id, event->lost_samples.lost);
582 return 0;
583}
584
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300585static struct dso *machine__findnew_module_dso(struct machine *machine,
586 struct kmod_path *m,
587 const char *filename)
Jiri Olsada17ea32015-02-12 22:10:52 +0100588{
589 struct dso *dso;
Jiri Olsada17ea32015-02-12 22:10:52 +0100590
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300591 pthread_rwlock_wrlock(&machine->dsos.lock);
592
593 dso = __dsos__find(&machine->dsos, m->name, true);
Jiri Olsada17ea32015-02-12 22:10:52 +0100594 if (!dso) {
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300595 dso = __dsos__addnew(&machine->dsos, m->name);
Jiri Olsada17ea32015-02-12 22:10:52 +0100596 if (dso == NULL)
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300597 goto out_unlock;
Jiri Olsada17ea32015-02-12 22:10:52 +0100598
Namhyung Kim6b335e82017-05-31 21:01:04 +0900599 dso__set_module_info(dso, m, machine);
Jiri Olsaca333802015-02-17 17:29:57 +0100600 dso__set_long_name(dso, strdup(filename), true);
Jiri Olsada17ea32015-02-12 22:10:52 +0100601 }
602
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300603 dso__get(dso);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300604out_unlock:
605 pthread_rwlock_unlock(&machine->dsos.lock);
Jiri Olsada17ea32015-02-12 22:10:52 +0100606 return dso;
607}
608
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300609int machine__process_aux_event(struct machine *machine __maybe_unused,
610 union perf_event *event)
611{
612 if (dump_trace)
613 perf_event__fprintf_aux(event, stdout);
614 return 0;
615}
616
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300617int machine__process_itrace_start_event(struct machine *machine __maybe_unused,
618 union perf_event *event)
619{
620 if (dump_trace)
621 perf_event__fprintf_itrace_start(event, stdout);
622 return 0;
623}
624
Adrian Hunter02860392015-07-21 12:44:03 +0300625int machine__process_switch_event(struct machine *machine __maybe_unused,
626 union perf_event *event)
627{
628 if (dump_trace)
629 perf_event__fprintf_switch(event, stdout);
630 return 0;
631}
632
Wang Nanc03d5182015-11-26 03:59:57 +0000633static void dso__adjust_kmod_long_name(struct dso *dso, const char *filename)
634{
635 const char *dup_filename;
636
637 if (!filename || !dso || !dso->long_name)
638 return;
639 if (dso->long_name[0] != '[')
640 return;
641 if (!strchr(filename, '/'))
642 return;
643
644 dup_filename = strdup(filename);
645 if (!dup_filename)
646 return;
647
Wang Nan5dcf16d2015-12-07 02:36:25 +0000648 dso__set_long_name(dso, dup_filename, true);
Wang Nanc03d5182015-11-26 03:59:57 +0000649}
650
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300651struct map *machine__findnew_module_map(struct machine *machine, u64 start,
652 const char *filename)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300653{
Jiri Olsaca333802015-02-17 17:29:57 +0100654 struct map *map = NULL;
Masami Hiramatsu566c69c2015-11-18 15:40:35 +0900655 struct dso *dso = NULL;
Jiri Olsaca333802015-02-17 17:29:57 +0100656 struct kmod_path m;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300657
Jiri Olsaca333802015-02-17 17:29:57 +0100658 if (kmod_path__parse_name(&m, filename))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300659 return NULL;
660
Jiri Olsabc84f462015-02-17 17:31:18 +0100661 map = map_groups__find_by_name(&machine->kmaps, MAP__FUNCTION,
662 m.name);
Wang Nanc03d5182015-11-26 03:59:57 +0000663 if (map) {
664 /*
665 * If the map's dso is an offline module, give dso__load()
666 * a chance to find the file path of that module by fixing
667 * long_name.
668 */
669 dso__adjust_kmod_long_name(map->dso, filename);
Jiri Olsabc84f462015-02-17 17:31:18 +0100670 goto out;
Wang Nanc03d5182015-11-26 03:59:57 +0000671 }
Jiri Olsabc84f462015-02-17 17:31:18 +0100672
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300673 dso = machine__findnew_module_dso(machine, &m, filename);
Jiri Olsaca333802015-02-17 17:29:57 +0100674 if (dso == NULL)
675 goto out;
676
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300677 map = map__new2(start, dso, MAP__FUNCTION);
678 if (map == NULL)
Jiri Olsaca333802015-02-17 17:29:57 +0100679 goto out;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300680
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300681 map_groups__insert(&machine->kmaps, map);
Jiri Olsaca333802015-02-17 17:29:57 +0100682
Masami Hiramatsu9afcb4202015-11-18 15:40:20 +0900683 /* Put the map here because map_groups__insert alread got it */
684 map__put(map);
Jiri Olsaca333802015-02-17 17:29:57 +0100685out:
Masami Hiramatsu566c69c2015-11-18 15:40:35 +0900686 /* put the dso here, corresponding to machine__findnew_module_dso */
687 dso__put(dso);
Jiri Olsaca333802015-02-17 17:29:57 +0100688 free(m.name);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300689 return map;
690}
691
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300692size_t machines__fprintf_dsos(struct machines *machines, FILE *fp)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300693{
694 struct rb_node *nd;
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300695 size_t ret = __dsos__fprintf(&machines->host.dsos.head, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300696
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300697 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300698 struct machine *pos = rb_entry(nd, struct machine, rb_node);
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300699 ret += __dsos__fprintf(&pos->dsos.head, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300700 }
701
702 return ret;
703}
704
Waiman Long8fa7d872014-09-29 16:07:28 -0400705size_t machine__fprintf_dsos_buildid(struct machine *m, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300706 bool (skip)(struct dso *dso, int parm), int parm)
707{
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300708 return __dsos__fprintf_buildid(&m->dsos.head, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300709}
710
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300711size_t machines__fprintf_dsos_buildid(struct machines *machines, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300712 bool (skip)(struct dso *dso, int parm), int parm)
713{
714 struct rb_node *nd;
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300715 size_t ret = machine__fprintf_dsos_buildid(&machines->host, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300716
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300717 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300718 struct machine *pos = rb_entry(nd, struct machine, rb_node);
719 ret += machine__fprintf_dsos_buildid(pos, fp, skip, parm);
720 }
721 return ret;
722}
723
724size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp)
725{
726 int i;
727 size_t printed = 0;
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300728 struct dso *kdso = machine__kernel_map(machine)->dso;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300729
730 if (kdso->has_build_id) {
731 char filename[PATH_MAX];
Krister Johansend2396992017-07-05 18:48:13 -0700732 if (dso__build_id_filename(kdso, filename, sizeof(filename),
733 false))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300734 printed += fprintf(fp, "[0] %s\n", filename);
735 }
736
737 for (i = 0; i < vmlinux_path__nr_entries; ++i)
738 printed += fprintf(fp, "[%d] %s\n",
739 i + kdso->has_build_id, vmlinux_path[i]);
740
741 return printed;
742}
743
744size_t machine__fprintf(struct machine *machine, FILE *fp)
745{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300746 struct rb_node *nd;
Kan Liang91e467b2017-09-10 19:23:14 -0700747 size_t ret;
748 int i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300749
Kan Liang91e467b2017-09-10 19:23:14 -0700750 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
751 struct threads *threads = &machine->threads[i];
752 pthread_rwlock_rdlock(&threads->lock);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300753
Kan Liang91e467b2017-09-10 19:23:14 -0700754 ret = fprintf(fp, "Threads: %u\n", threads->nr);
Arnaldo Carvalho de Melod2c11032016-05-04 10:09:33 -0300755
Kan Liang91e467b2017-09-10 19:23:14 -0700756 for (nd = rb_first(&threads->entries); nd; nd = rb_next(nd)) {
757 struct thread *pos = rb_entry(nd, struct thread, rb_node);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300758
Kan Liang91e467b2017-09-10 19:23:14 -0700759 ret += thread__fprintf(pos, fp);
760 }
761
762 pthread_rwlock_unlock(&threads->lock);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300763 }
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300764 return ret;
765}
766
767static struct dso *machine__get_kernel(struct machine *machine)
768{
769 const char *vmlinux_name = NULL;
770 struct dso *kernel;
771
772 if (machine__is_host(machine)) {
773 vmlinux_name = symbol_conf.vmlinux_name;
774 if (!vmlinux_name)
Masami Hiramatsu0a775822016-05-15 12:19:40 +0900775 vmlinux_name = DSO__NAME_KALLSYMS;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300776
Arnaldo Carvalho de Melo459ce512015-05-28 12:40:55 -0300777 kernel = machine__findnew_kernel(machine, vmlinux_name,
778 "[kernel]", DSO_TYPE_KERNEL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300779 } else {
780 char bf[PATH_MAX];
781
782 if (machine__is_default_guest(machine))
783 vmlinux_name = symbol_conf.default_guest_vmlinux_name;
784 if (!vmlinux_name)
785 vmlinux_name = machine__mmap_name(machine, bf,
786 sizeof(bf));
787
Arnaldo Carvalho de Melo459ce512015-05-28 12:40:55 -0300788 kernel = machine__findnew_kernel(machine, vmlinux_name,
789 "[guest.kernel]",
790 DSO_TYPE_GUEST_KERNEL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300791 }
792
793 if (kernel != NULL && (!kernel->has_build_id))
794 dso__read_running_kernel_build_id(kernel, machine);
795
796 return kernel;
797}
798
799struct process_args {
800 u64 start;
801};
802
Adrian Hunter15a0a872014-01-29 16:14:38 +0200803static void machine__get_kallsyms_filename(struct machine *machine, char *buf,
804 size_t bufsz)
805{
806 if (machine__is_default_guest(machine))
807 scnprintf(buf, bufsz, "%s", symbol_conf.default_guest_kallsyms);
808 else
809 scnprintf(buf, bufsz, "%s/proc/kallsyms", machine->root_dir);
810}
811
Simon Quea93f0e52014-06-16 11:32:09 -0700812const char *ref_reloc_sym_names[] = {"_text", "_stext", NULL};
813
814/* Figure out the start address of kernel map from /proc/kallsyms.
815 * Returns the name of the start symbol in *symbol_name. Pass in NULL as
816 * symbol_name if it's not that important.
817 */
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300818static int machine__get_running_kernel_start(struct machine *machine,
819 const char **symbol_name, u64 *start)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300820{
Adrian Hunter15a0a872014-01-29 16:14:38 +0200821 char filename[PATH_MAX];
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300822 int i, err = -1;
Simon Quea93f0e52014-06-16 11:32:09 -0700823 const char *name;
824 u64 addr = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300825
Adrian Hunter15a0a872014-01-29 16:14:38 +0200826 machine__get_kallsyms_filename(machine, filename, PATH_MAX);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300827
828 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
829 return 0;
830
Simon Quea93f0e52014-06-16 11:32:09 -0700831 for (i = 0; (name = ref_reloc_sym_names[i]) != NULL; i++) {
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300832 err = kallsyms__get_function_start(filename, name, &addr);
833 if (!err)
Simon Quea93f0e52014-06-16 11:32:09 -0700834 break;
835 }
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300836
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300837 if (err)
838 return -1;
839
Simon Quea93f0e52014-06-16 11:32:09 -0700840 if (symbol_name)
841 *symbol_name = name;
842
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300843 *start = addr;
844 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300845}
846
847int __machine__create_kernel_maps(struct machine *machine, struct dso *kernel)
848{
Arnaldo Carvalho de Meloa0b2f5a2017-02-14 16:19:56 -0300849 int type;
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300850 u64 start = 0;
851
852 if (machine__get_running_kernel_start(machine, NULL, &start))
853 return -1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300854
Masami Hiramatsucc1121a2015-12-09 11:11:33 +0900855 /* In case of renewal the kernel map, destroy previous one */
856 machine__destroy_kernel_maps(machine);
857
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300858 for (type = 0; type < MAP__NR_TYPES; ++type) {
859 struct kmap *kmap;
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300860 struct map *map;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300861
862 machine->vmlinux_maps[type] = map__new2(start, kernel, type);
863 if (machine->vmlinux_maps[type] == NULL)
864 return -1;
865
866 machine->vmlinux_maps[type]->map_ip =
867 machine->vmlinux_maps[type]->unmap_ip =
868 identity__map_ip;
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300869 map = __machine__kernel_map(machine, type);
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300870 kmap = map__kmap(map);
Wang Nanba927322015-04-07 08:22:45 +0000871 if (!kmap)
872 return -1;
873
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300874 kmap->kmaps = &machine->kmaps;
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300875 map_groups__insert(&machine->kmaps, map);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300876 }
877
878 return 0;
879}
880
881void machine__destroy_kernel_maps(struct machine *machine)
882{
Arnaldo Carvalho de Meloa0b2f5a2017-02-14 16:19:56 -0300883 int type;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300884
885 for (type = 0; type < MAP__NR_TYPES; ++type) {
886 struct kmap *kmap;
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300887 struct map *map = __machine__kernel_map(machine, type);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300888
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300889 if (map == NULL)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300890 continue;
891
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300892 kmap = map__kmap(map);
893 map_groups__remove(&machine->kmaps, map);
Wang Nanba927322015-04-07 08:22:45 +0000894 if (kmap && kmap->ref_reloc_sym) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300895 /*
896 * ref_reloc_sym is shared among all maps, so free just
897 * on one of them.
898 */
899 if (type == MAP__FUNCTION) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300900 zfree((char **)&kmap->ref_reloc_sym->name);
901 zfree(&kmap->ref_reloc_sym);
902 } else
903 kmap->ref_reloc_sym = NULL;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300904 }
905
Masami Hiramatsue96e4072015-11-18 15:40:22 +0900906 map__put(machine->vmlinux_maps[type]);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300907 machine->vmlinux_maps[type] = NULL;
908 }
909}
910
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300911int machines__create_guest_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300912{
913 int ret = 0;
914 struct dirent **namelist = NULL;
915 int i, items = 0;
916 char path[PATH_MAX];
917 pid_t pid;
918 char *endp;
919
920 if (symbol_conf.default_guest_vmlinux_name ||
921 symbol_conf.default_guest_modules ||
922 symbol_conf.default_guest_kallsyms) {
923 machines__create_kernel_maps(machines, DEFAULT_GUEST_KERNEL_ID);
924 }
925
926 if (symbol_conf.guestmount) {
927 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
928 if (items <= 0)
929 return -ENOENT;
930 for (i = 0; i < items; i++) {
931 if (!isdigit(namelist[i]->d_name[0])) {
932 /* Filter out . and .. */
933 continue;
934 }
935 pid = (pid_t)strtol(namelist[i]->d_name, &endp, 10);
936 if ((*endp != '\0') ||
937 (endp == namelist[i]->d_name) ||
938 (errno == ERANGE)) {
939 pr_debug("invalid directory (%s). Skipping.\n",
940 namelist[i]->d_name);
941 continue;
942 }
943 sprintf(path, "%s/%s/proc/kallsyms",
944 symbol_conf.guestmount,
945 namelist[i]->d_name);
946 ret = access(path, R_OK);
947 if (ret) {
948 pr_debug("Can't access file %s\n", path);
949 goto failure;
950 }
951 machines__create_kernel_maps(machines, pid);
952 }
953failure:
954 free(namelist);
955 }
956
957 return ret;
958}
959
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300960void machines__destroy_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300961{
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300962 struct rb_node *next = rb_first(&machines->guests);
963
964 machine__destroy_kernel_maps(&machines->host);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300965
966 while (next) {
967 struct machine *pos = rb_entry(next, struct machine, rb_node);
968
969 next = rb_next(&pos->rb_node);
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300970 rb_erase(&pos->rb_node, &machines->guests);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300971 machine__delete(pos);
972 }
973}
974
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300975int machines__create_kernel_maps(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300976{
977 struct machine *machine = machines__findnew(machines, pid);
978
979 if (machine == NULL)
980 return -1;
981
982 return machine__create_kernel_maps(machine);
983}
984
Arnaldo Carvalho de Meloe02092b2016-04-19 12:12:49 -0300985int __machine__load_kallsyms(struct machine *machine, const char *filename,
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300986 enum map_type type, bool no_kcore)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300987{
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300988 struct map *map = machine__kernel_map(machine);
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300989 int ret = __dso__load_kallsyms(map->dso, filename, map, no_kcore);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300990
991 if (ret > 0) {
992 dso__set_loaded(map->dso, type);
993 /*
994 * Since /proc/kallsyms will have multiple sessions for the
995 * kernel, with modules between them, fixup the end of all
996 * sections.
997 */
998 __map_groups__fixup_end(&machine->kmaps, type);
999 }
1000
1001 return ret;
1002}
1003
Arnaldo Carvalho de Meloe02092b2016-04-19 12:12:49 -03001004int machine__load_kallsyms(struct machine *machine, const char *filename,
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03001005 enum map_type type)
Arnaldo Carvalho de Meloe02092b2016-04-19 12:12:49 -03001006{
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03001007 return __machine__load_kallsyms(machine, filename, type, false);
Arnaldo Carvalho de Meloe02092b2016-04-19 12:12:49 -03001008}
1009
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03001010int machine__load_vmlinux_path(struct machine *machine, enum map_type type)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001011{
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -03001012 struct map *map = machine__kernel_map(machine);
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03001013 int ret = dso__load_vmlinux_path(map->dso, map);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001014
Adrian Hunter39b12f782013-08-07 14:38:47 +03001015 if (ret > 0)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001016 dso__set_loaded(map->dso, type);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001017
1018 return ret;
1019}
1020
1021static void map_groups__fixup_end(struct map_groups *mg)
1022{
1023 int i;
1024 for (i = 0; i < MAP__NR_TYPES; ++i)
1025 __map_groups__fixup_end(mg, i);
1026}
1027
1028static char *get_kernel_version(const char *root_dir)
1029{
1030 char version[PATH_MAX];
1031 FILE *file;
1032 char *name, *tmp;
1033 const char *prefix = "Linux version ";
1034
1035 sprintf(version, "%s/proc/version", root_dir);
1036 file = fopen(version, "r");
1037 if (!file)
1038 return NULL;
1039
1040 version[0] = '\0';
1041 tmp = fgets(version, sizeof(version), file);
1042 fclose(file);
1043
1044 name = strstr(version, prefix);
1045 if (!name)
1046 return NULL;
1047 name += strlen(prefix);
1048 tmp = strchr(name, ' ');
1049 if (tmp)
1050 *tmp = '\0';
1051
1052 return strdup(name);
1053}
1054
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001055static bool is_kmod_dso(struct dso *dso)
1056{
1057 return dso->symtab_type == DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE ||
1058 dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE;
1059}
1060
1061static int map_groups__set_module_path(struct map_groups *mg, const char *path,
1062 struct kmod_path *m)
1063{
1064 struct map *map;
1065 char *long_name;
1066
1067 map = map_groups__find_by_name(mg, MAP__FUNCTION, m->name);
1068 if (map == NULL)
1069 return 0;
1070
1071 long_name = strdup(path);
1072 if (long_name == NULL)
1073 return -ENOMEM;
1074
1075 dso__set_long_name(map->dso, long_name, true);
1076 dso__kernel_module_get_build_id(map->dso, "");
1077
1078 /*
1079 * Full name could reveal us kmod compression, so
1080 * we need to update the symtab_type if needed.
1081 */
1082 if (m->comp && is_kmod_dso(map->dso))
1083 map->dso->symtab_type++;
1084
1085 return 0;
1086}
1087
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001088static int map_groups__set_modules_path_dir(struct map_groups *mg,
Richard Yao61d42902014-04-26 13:17:55 -04001089 const char *dir_name, int depth)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001090{
1091 struct dirent *dent;
1092 DIR *dir = opendir(dir_name);
1093 int ret = 0;
1094
1095 if (!dir) {
1096 pr_debug("%s: cannot open %s dir\n", __func__, dir_name);
1097 return -1;
1098 }
1099
1100 while ((dent = readdir(dir)) != NULL) {
1101 char path[PATH_MAX];
1102 struct stat st;
1103
1104 /*sshfs might return bad dent->d_type, so we have to stat*/
1105 snprintf(path, sizeof(path), "%s/%s", dir_name, dent->d_name);
1106 if (stat(path, &st))
1107 continue;
1108
1109 if (S_ISDIR(st.st_mode)) {
1110 if (!strcmp(dent->d_name, ".") ||
1111 !strcmp(dent->d_name, ".."))
1112 continue;
1113
Richard Yao61d42902014-04-26 13:17:55 -04001114 /* Do not follow top-level source and build symlinks */
1115 if (depth == 0) {
1116 if (!strcmp(dent->d_name, "source") ||
1117 !strcmp(dent->d_name, "build"))
1118 continue;
1119 }
1120
1121 ret = map_groups__set_modules_path_dir(mg, path,
1122 depth + 1);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001123 if (ret < 0)
1124 goto out;
1125 } else {
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001126 struct kmod_path m;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001127
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001128 ret = kmod_path__parse_name(&m, dent->d_name);
1129 if (ret)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001130 goto out;
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001131
1132 if (m.kmod)
1133 ret = map_groups__set_module_path(mg, path, &m);
1134
1135 free(m.name);
1136
1137 if (ret)
1138 goto out;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001139 }
1140 }
1141
1142out:
1143 closedir(dir);
1144 return ret;
1145}
1146
1147static int machine__set_modules_path(struct machine *machine)
1148{
1149 char *version;
1150 char modules_path[PATH_MAX];
1151
1152 version = get_kernel_version(machine->root_dir);
1153 if (!version)
1154 return -1;
1155
Richard Yao61d42902014-04-26 13:17:55 -04001156 snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s",
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001157 machine->root_dir, version);
1158 free(version);
1159
Richard Yao61d42902014-04-26 13:17:55 -04001160 return map_groups__set_modules_path_dir(&machine->kmaps, modules_path, 0);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001161}
Song Shan Gong203d8a42016-07-21 11:10:51 +08001162int __weak arch__fix_module_text_start(u64 *start __maybe_unused,
1163 const char *name __maybe_unused)
1164{
1165 return 0;
1166}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001167
Thomas Richter9ad46522017-08-03 15:49:02 +02001168static int machine__create_module(void *arg, const char *name, u64 start,
1169 u64 size)
Adrian Hunter316d70d2013-10-08 11:45:48 +03001170{
1171 struct machine *machine = arg;
1172 struct map *map;
1173
Song Shan Gong203d8a42016-07-21 11:10:51 +08001174 if (arch__fix_module_text_start(&start, name) < 0)
1175 return -1;
1176
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -03001177 map = machine__findnew_module_map(machine, start, name);
Adrian Hunter316d70d2013-10-08 11:45:48 +03001178 if (map == NULL)
1179 return -1;
Thomas Richter9ad46522017-08-03 15:49:02 +02001180 map->end = start + size;
Adrian Hunter316d70d2013-10-08 11:45:48 +03001181
1182 dso__kernel_module_get_build_id(map->dso, machine->root_dir);
1183
1184 return 0;
1185}
1186
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001187static int machine__create_modules(struct machine *machine)
1188{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001189 const char *modules;
1190 char path[PATH_MAX];
1191
Adrian Hunterf4be9042013-09-22 13:22:09 +03001192 if (machine__is_default_guest(machine)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001193 modules = symbol_conf.default_guest_modules;
Adrian Hunterf4be9042013-09-22 13:22:09 +03001194 } else {
1195 snprintf(path, PATH_MAX, "%s/proc/modules", machine->root_dir);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001196 modules = path;
1197 }
1198
Adrian Hunteraa7fe3b2013-09-22 13:22:09 +03001199 if (symbol__restricted_filename(modules, "/proc/modules"))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001200 return -1;
1201
Adrian Hunter316d70d2013-10-08 11:45:48 +03001202 if (modules__parse(modules, machine, machine__create_module))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001203 return -1;
1204
Adrian Hunter316d70d2013-10-08 11:45:48 +03001205 if (!machine__set_modules_path(machine))
1206 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001207
Adrian Hunter316d70d2013-10-08 11:45:48 +03001208 pr_debug("Problems setting modules path maps, continuing anyway...\n");
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001209
Jason Wessel8f76fcd2013-07-15 15:27:53 -05001210 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001211}
1212
1213int machine__create_kernel_maps(struct machine *machine)
1214{
1215 struct dso *kernel = machine__get_kernel(machine);
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -03001216 const char *name = NULL;
1217 u64 addr = 0;
Masami Hiramatsu1154c952015-11-18 15:40:33 +09001218 int ret;
1219
Arnaldo Carvalho de Melo45e90052016-05-17 11:52:26 -03001220 if (kernel == NULL)
Adrian Hunter5512cf22014-01-29 16:14:39 +02001221 return -1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001222
Masami Hiramatsu1154c952015-11-18 15:40:33 +09001223 ret = __machine__create_kernel_maps(machine, kernel);
1224 dso__put(kernel);
1225 if (ret < 0)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001226 return -1;
1227
1228 if (symbol_conf.use_modules && machine__create_modules(machine) < 0) {
1229 if (machine__is_host(machine))
1230 pr_debug("Problems creating module maps, "
1231 "continuing anyway...\n");
1232 else
1233 pr_debug("Problems creating module maps for guest %d, "
1234 "continuing anyway...\n", machine->pid);
1235 }
1236
1237 /*
1238 * Now that we have all the maps created, just set the ->end of them:
1239 */
1240 map_groups__fixup_end(&machine->kmaps);
Adrian Hunter5512cf22014-01-29 16:14:39 +02001241
Jiri Olsa3f938ee2017-06-26 11:51:53 +02001242 if (!machine__get_running_kernel_start(machine, &name, &addr)) {
1243 if (name &&
1244 maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps, name, addr)) {
1245 machine__destroy_kernel_maps(machine);
1246 return -1;
1247 }
Adrian Hunter5512cf22014-01-29 16:14:39 +02001248 }
1249
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001250 return 0;
1251}
1252
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001253static void machine__set_kernel_mmap_len(struct machine *machine,
1254 union perf_event *event)
1255{
Namhyung Kim4552cf02012-11-07 16:27:10 +09001256 int i;
1257
1258 for (i = 0; i < MAP__NR_TYPES; i++) {
1259 machine->vmlinux_maps[i]->start = event->mmap.start;
1260 machine->vmlinux_maps[i]->end = (event->mmap.start +
1261 event->mmap.len);
1262 /*
1263 * Be a bit paranoid here, some perf.data file came with
1264 * a zero sized synthesized MMAP event for the kernel.
1265 */
1266 if (machine->vmlinux_maps[i]->end == 0)
1267 machine->vmlinux_maps[i]->end = ~0ULL;
1268 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001269}
1270
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001271static bool machine__uses_kcore(struct machine *machine)
1272{
1273 struct dso *dso;
1274
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -03001275 list_for_each_entry(dso, &machine->dsos.head, node) {
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001276 if (dso__is_kcore(dso))
1277 return true;
1278 }
1279
1280 return false;
1281}
1282
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001283static int machine__process_kernel_mmap_event(struct machine *machine,
1284 union perf_event *event)
1285{
1286 struct map *map;
1287 char kmmap_prefix[PATH_MAX];
1288 enum dso_kernel_type kernel_type;
1289 bool is_kernel_mmap;
1290
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001291 /* If we have maps from kcore then we do not need or want any others */
1292 if (machine__uses_kcore(machine))
1293 return 0;
1294
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001295 machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
1296 if (machine__is_host(machine))
1297 kernel_type = DSO_TYPE_KERNEL;
1298 else
1299 kernel_type = DSO_TYPE_GUEST_KERNEL;
1300
1301 is_kernel_mmap = memcmp(event->mmap.filename,
1302 kmmap_prefix,
1303 strlen(kmmap_prefix) - 1) == 0;
1304 if (event->mmap.filename[0] == '/' ||
1305 (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -03001306 map = machine__findnew_module_map(machine, event->mmap.start,
1307 event->mmap.filename);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001308 if (map == NULL)
1309 goto out_problem;
1310
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001311 map->end = map->start + event->mmap.len;
1312 } else if (is_kernel_mmap) {
1313 const char *symbol_name = (event->mmap.filename +
1314 strlen(kmmap_prefix));
1315 /*
1316 * Should be there already, from the build-id table in
1317 * the header.
1318 */
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001319 struct dso *kernel = NULL;
1320 struct dso *dso;
1321
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001322 pthread_rwlock_rdlock(&machine->dsos.lock);
1323
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -03001324 list_for_each_entry(dso, &machine->dsos.head, node) {
Wang Nan1f121b02015-06-03 08:52:21 +00001325
1326 /*
1327 * The cpumode passed to is_kernel_module is not the
1328 * cpumode of *this* event. If we insist on passing
1329 * correct cpumode to is_kernel_module, we should
1330 * record the cpumode when we adding this dso to the
1331 * linked list.
1332 *
1333 * However we don't really need passing correct
1334 * cpumode. We know the correct cpumode must be kernel
1335 * mode (if not, we should not link it onto kernel_dsos
1336 * list).
1337 *
1338 * Therefore, we pass PERF_RECORD_MISC_CPUMODE_UNKNOWN.
1339 * is_kernel_module() treats it as a kernel cpumode.
1340 */
1341
1342 if (!dso->kernel ||
1343 is_kernel_module(dso->long_name,
1344 PERF_RECORD_MISC_CPUMODE_UNKNOWN))
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001345 continue;
1346
Wang Nan1f121b02015-06-03 08:52:21 +00001347
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001348 kernel = dso;
1349 break;
1350 }
1351
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001352 pthread_rwlock_unlock(&machine->dsos.lock);
1353
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001354 if (kernel == NULL)
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03001355 kernel = machine__findnew_dso(machine, kmmap_prefix);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001356 if (kernel == NULL)
1357 goto out_problem;
1358
1359 kernel->kernel = kernel_type;
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001360 if (__machine__create_kernel_maps(machine, kernel) < 0) {
1361 dso__put(kernel);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001362 goto out_problem;
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001363 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001364
Namhyung Kim330dfa22014-11-18 13:30:28 +09001365 if (strstr(kernel->long_name, "vmlinux"))
1366 dso__set_short_name(kernel, "[kernel.vmlinux]", false);
Namhyung Kim96d78052014-11-04 10:14:34 +09001367
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001368 machine__set_kernel_mmap_len(machine, event);
1369
1370 /*
1371 * Avoid using a zero address (kptr_restrict) for the ref reloc
1372 * symbol. Effectively having zero here means that at record
1373 * time /proc/sys/kernel/kptr_restrict was non zero.
1374 */
1375 if (event->mmap.pgoff != 0) {
1376 maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps,
1377 symbol_name,
1378 event->mmap.pgoff);
1379 }
1380
1381 if (machine__is_default_guest(machine)) {
1382 /*
1383 * preload dso of guest kernel and modules
1384 */
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03001385 dso__load(kernel, machine__kernel_map(machine));
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001386 }
1387 }
1388 return 0;
1389out_problem:
1390 return -1;
1391}
1392
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001393int machine__process_mmap2_event(struct machine *machine,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001394 union perf_event *event,
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001395 struct perf_sample *sample)
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001396{
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001397 struct thread *thread;
1398 struct map *map;
1399 enum map_type type;
1400 int ret = 0;
1401
1402 if (dump_trace)
1403 perf_event__fprintf_mmap2(event, stdout);
1404
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001405 if (sample->cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1406 sample->cpumode == PERF_RECORD_MISC_KERNEL) {
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001407 ret = machine__process_kernel_mmap_event(machine, event);
1408 if (ret < 0)
1409 goto out_problem;
1410 return 0;
1411 }
1412
1413 thread = machine__findnew_thread(machine, event->mmap2.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001414 event->mmap2.tid);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001415 if (thread == NULL)
1416 goto out_problem;
1417
1418 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1419 type = MAP__VARIABLE;
1420 else
1421 type = MAP__FUNCTION;
1422
Adrian Hunter2a030682014-07-22 16:17:53 +03001423 map = map__new(machine, event->mmap2.start,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001424 event->mmap2.len, event->mmap2.pgoff,
Krister Johansenbf2e7102017-07-05 18:48:09 -07001425 event->mmap2.maj,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001426 event->mmap2.min, event->mmap2.ino,
1427 event->mmap2.ino_generation,
Don Zickus7ef80702014-05-19 15:13:49 -04001428 event->mmap2.prot,
1429 event->mmap2.flags,
Adrian Hunter5835edd2014-07-22 16:18:00 +03001430 event->mmap2.filename, type, thread);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001431
1432 if (map == NULL)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001433 goto out_problem_map;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001434
He Kuang8132a2a2016-06-03 03:33:13 +00001435 ret = thread__insert_map(thread, map);
1436 if (ret)
1437 goto out_problem_insert;
1438
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001439 thread__put(thread);
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001440 map__put(map);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001441 return 0;
1442
He Kuang8132a2a2016-06-03 03:33:13 +00001443out_problem_insert:
1444 map__put(map);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001445out_problem_map:
1446 thread__put(thread);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001447out_problem:
1448 dump_printf("problem processing PERF_RECORD_MMAP2, skipping event.\n");
1449 return 0;
1450}
1451
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001452int machine__process_mmap_event(struct machine *machine, union perf_event *event,
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001453 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001454{
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001455 struct thread *thread;
1456 struct map *map;
Stephane Eranianbad40912013-01-24 16:10:40 +01001457 enum map_type type;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001458 int ret = 0;
1459
1460 if (dump_trace)
1461 perf_event__fprintf_mmap(event, stdout);
1462
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001463 if (sample->cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1464 sample->cpumode == PERF_RECORD_MISC_KERNEL) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001465 ret = machine__process_kernel_mmap_event(machine, event);
1466 if (ret < 0)
1467 goto out_problem;
1468 return 0;
1469 }
1470
Adrian Hunter314add62013-08-27 11:23:03 +03001471 thread = machine__findnew_thread(machine, event->mmap.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001472 event->mmap.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001473 if (thread == NULL)
1474 goto out_problem;
Stephane Eranianbad40912013-01-24 16:10:40 +01001475
1476 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1477 type = MAP__VARIABLE;
1478 else
1479 type = MAP__FUNCTION;
1480
Adrian Hunter2a030682014-07-22 16:17:53 +03001481 map = map__new(machine, event->mmap.start,
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001482 event->mmap.len, event->mmap.pgoff,
Krister Johansenbf2e7102017-07-05 18:48:09 -07001483 0, 0, 0, 0, 0, 0,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001484 event->mmap.filename,
Adrian Hunter5835edd2014-07-22 16:18:00 +03001485 type, thread);
Stephane Eranianbad40912013-01-24 16:10:40 +01001486
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001487 if (map == NULL)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001488 goto out_problem_map;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001489
He Kuang8132a2a2016-06-03 03:33:13 +00001490 ret = thread__insert_map(thread, map);
1491 if (ret)
1492 goto out_problem_insert;
1493
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001494 thread__put(thread);
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001495 map__put(map);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001496 return 0;
1497
He Kuang8132a2a2016-06-03 03:33:13 +00001498out_problem_insert:
1499 map__put(map);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001500out_problem_map:
1501 thread__put(thread);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001502out_problem:
1503 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
1504 return 0;
1505}
1506
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001507static void __machine__remove_thread(struct machine *machine, struct thread *th, bool lock)
David Ahern236a3bb2013-08-14 08:49:27 -06001508{
Kan Liang91e467b2017-09-10 19:23:14 -07001509 struct threads *threads = machine__threads(machine, th->tid);
1510
1511 if (threads->last_match == th)
1512 threads->last_match = NULL;
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001513
Elena Reshetovae34f5b12017-02-21 17:35:02 +02001514 BUG_ON(refcount_read(&th->refcnt) == 0);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001515 if (lock)
Kan Liang91e467b2017-09-10 19:23:14 -07001516 pthread_rwlock_wrlock(&threads->lock);
1517 rb_erase_init(&th->rb_node, &threads->entries);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001518 RB_CLEAR_NODE(&th->rb_node);
Kan Liang91e467b2017-09-10 19:23:14 -07001519 --threads->nr;
David Ahern236a3bb2013-08-14 08:49:27 -06001520 /*
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001521 * Move it first to the dead_threads list, then drop the reference,
1522 * if this is the last reference, then the thread__delete destructor
1523 * will be called and we will remove it from the dead_threads list.
David Ahern236a3bb2013-08-14 08:49:27 -06001524 */
Kan Liang91e467b2017-09-10 19:23:14 -07001525 list_add_tail(&th->node, &threads->dead);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001526 if (lock)
Kan Liang91e467b2017-09-10 19:23:14 -07001527 pthread_rwlock_unlock(&threads->lock);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001528 thread__put(th);
David Ahern236a3bb2013-08-14 08:49:27 -06001529}
1530
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001531void machine__remove_thread(struct machine *machine, struct thread *th)
1532{
1533 return __machine__remove_thread(machine, th, true);
1534}
1535
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001536int machine__process_fork_event(struct machine *machine, union perf_event *event,
1537 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001538{
Jiri Olsad75e6092014-03-14 15:00:03 +01001539 struct thread *thread = machine__find_thread(machine,
1540 event->fork.pid,
1541 event->fork.tid);
Adrian Hunter314add62013-08-27 11:23:03 +03001542 struct thread *parent = machine__findnew_thread(machine,
1543 event->fork.ppid,
1544 event->fork.ptid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001545 int err = 0;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001546
Adrian Hunter5cb73342015-08-19 17:29:20 +03001547 if (dump_trace)
1548 perf_event__fprintf_task(event, stdout);
1549
1550 /*
1551 * There may be an existing thread that is not actually the parent,
1552 * either because we are processing events out of order, or because the
1553 * (fork) event that would have removed the thread was lost. Assume the
1554 * latter case and continue on as best we can.
1555 */
1556 if (parent->pid_ != (pid_t)event->fork.ppid) {
1557 dump_printf("removing erroneous parent thread %d/%d\n",
1558 parent->pid_, parent->tid);
1559 machine__remove_thread(machine, parent);
1560 thread__put(parent);
1561 parent = machine__findnew_thread(machine, event->fork.ppid,
1562 event->fork.ptid);
1563 }
1564
David Ahern236a3bb2013-08-14 08:49:27 -06001565 /* if a thread currently exists for the thread id remove it */
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001566 if (thread != NULL) {
David Ahern236a3bb2013-08-14 08:49:27 -06001567 machine__remove_thread(machine, thread);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001568 thread__put(thread);
1569 }
David Ahern236a3bb2013-08-14 08:49:27 -06001570
Adrian Hunter314add62013-08-27 11:23:03 +03001571 thread = machine__findnew_thread(machine, event->fork.pid,
1572 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001573
1574 if (thread == NULL || parent == NULL ||
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001575 thread__fork(thread, parent, sample->time) < 0) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001576 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001577 err = -1;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001578 }
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001579 thread__put(thread);
1580 thread__put(parent);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001581
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001582 return err;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001583}
1584
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001585int machine__process_exit_event(struct machine *machine, union perf_event *event,
1586 struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001587{
Jiri Olsad75e6092014-03-14 15:00:03 +01001588 struct thread *thread = machine__find_thread(machine,
1589 event->fork.pid,
1590 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001591
1592 if (dump_trace)
1593 perf_event__fprintf_task(event, stdout);
1594
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001595 if (thread != NULL) {
David Ahern236a3bb2013-08-14 08:49:27 -06001596 thread__exited(thread);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001597 thread__put(thread);
1598 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001599
1600 return 0;
1601}
1602
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001603int machine__process_event(struct machine *machine, union perf_event *event,
1604 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001605{
1606 int ret;
1607
1608 switch (event->header.type) {
1609 case PERF_RECORD_COMM:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001610 ret = machine__process_comm_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001611 case PERF_RECORD_MMAP:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001612 ret = machine__process_mmap_event(machine, event, sample); break;
Hari Bathinif3b36142017-03-08 02:11:43 +05301613 case PERF_RECORD_NAMESPACES:
1614 ret = machine__process_namespaces_event(machine, event, sample); break;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001615 case PERF_RECORD_MMAP2:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001616 ret = machine__process_mmap2_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001617 case PERF_RECORD_FORK:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001618 ret = machine__process_fork_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001619 case PERF_RECORD_EXIT:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001620 ret = machine__process_exit_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001621 case PERF_RECORD_LOST:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001622 ret = machine__process_lost_event(machine, event, sample); break;
Adrian Hunter4a96f7a2015-04-30 17:37:29 +03001623 case PERF_RECORD_AUX:
1624 ret = machine__process_aux_event(machine, event); break;
Adrian Hunter0ad21f62015-04-30 17:37:30 +03001625 case PERF_RECORD_ITRACE_START:
Jiri Olsaceb92912015-06-29 13:27:45 +02001626 ret = machine__process_itrace_start_event(machine, event); break;
Kan Liangc4937a92015-05-10 15:13:15 -04001627 case PERF_RECORD_LOST_SAMPLES:
1628 ret = machine__process_lost_samples_event(machine, event, sample); break;
Adrian Hunter02860392015-07-21 12:44:03 +03001629 case PERF_RECORD_SWITCH:
1630 case PERF_RECORD_SWITCH_CPU_WIDE:
1631 ret = machine__process_switch_event(machine, event); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001632 default:
1633 ret = -1;
1634 break;
1635 }
1636
1637 return ret;
1638}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001639
Greg Priceb21484f2012-12-06 21:48:05 -08001640static bool symbol__match_regex(struct symbol *sym, regex_t *regex)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001641{
Arnaldo Carvalho de Meloa7c38992017-02-13 16:52:15 -03001642 if (!regexec(regex, sym->name, 0, NULL, 0))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001643 return 1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001644 return 0;
1645}
1646
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001647static void ip__resolve_ams(struct thread *thread,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001648 struct addr_map_symbol *ams,
1649 u64 ip)
1650{
1651 struct addr_location al;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001652
1653 memset(&al, 0, sizeof(al));
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -03001654 /*
1655 * We cannot use the header.misc hint to determine whether a
1656 * branch stack address is user, kernel, guest, hypervisor.
1657 * Branches may straddle the kernel/user/hypervisor boundaries.
1658 * Thus, we have to try consecutively until we find a match
1659 * or else, the symbol is unknown
1660 */
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001661 thread__find_cpumode_addr_location(thread, MAP__FUNCTION, ip, &al);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001662
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001663 ams->addr = ip;
1664 ams->al_addr = al.addr;
1665 ams->sym = al.sym;
1666 ams->map = al.map;
Kan Liang8780fb22017-08-29 13:11:09 -04001667 ams->phys_addr = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001668}
1669
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001670static void ip__resolve_data(struct thread *thread,
Kan Liang8780fb22017-08-29 13:11:09 -04001671 u8 m, struct addr_map_symbol *ams,
1672 u64 addr, u64 phys_addr)
Stephane Eranian98a3b322013-01-24 16:10:35 +01001673{
1674 struct addr_location al;
1675
1676 memset(&al, 0, sizeof(al));
1677
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001678 thread__find_addr_location(thread, m, MAP__VARIABLE, addr, &al);
Don Zickus06b2afc2014-08-20 23:25:11 -04001679 if (al.map == NULL) {
1680 /*
1681 * some shared data regions have execute bit set which puts
1682 * their mapping in the MAP__FUNCTION type array.
1683 * Check there as a fallback option before dropping the sample.
1684 */
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001685 thread__find_addr_location(thread, m, MAP__FUNCTION, addr, &al);
Don Zickus06b2afc2014-08-20 23:25:11 -04001686 }
1687
Stephane Eranian98a3b322013-01-24 16:10:35 +01001688 ams->addr = addr;
1689 ams->al_addr = al.addr;
1690 ams->sym = al.sym;
1691 ams->map = al.map;
Kan Liang8780fb22017-08-29 13:11:09 -04001692 ams->phys_addr = phys_addr;
Stephane Eranian98a3b322013-01-24 16:10:35 +01001693}
1694
Arnaldo Carvalho de Meloe80faac2014-01-22 13:05:06 -03001695struct mem_info *sample__resolve_mem(struct perf_sample *sample,
1696 struct addr_location *al)
Stephane Eranian98a3b322013-01-24 16:10:35 +01001697{
1698 struct mem_info *mi = zalloc(sizeof(*mi));
1699
1700 if (!mi)
1701 return NULL;
1702
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001703 ip__resolve_ams(al->thread, &mi->iaddr, sample->ip);
Kan Liang8780fb22017-08-29 13:11:09 -04001704 ip__resolve_data(al->thread, al->cpumode, &mi->daddr,
1705 sample->addr, sample->phys_addr);
Stephane Eranian98a3b322013-01-24 16:10:35 +01001706 mi->data_src.val = sample->data_src;
1707
1708 return mi;
1709}
1710
Jin Yaoc4ee0622017-08-07 21:05:15 +08001711struct iterations {
1712 int nr_loop_iter;
1713 u64 cycles;
1714};
1715
Andi Kleen37592b82014-11-12 18:05:19 -08001716static int add_callchain_ip(struct thread *thread,
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03001717 struct callchain_cursor *cursor,
Andi Kleen37592b82014-11-12 18:05:19 -08001718 struct symbol **parent,
1719 struct addr_location *root_al,
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001720 u8 *cpumode,
Jin Yao410024d2016-10-31 09:19:49 +08001721 u64 ip,
1722 bool branch,
1723 struct branch_flags *flags,
Jin Yaoc4ee0622017-08-07 21:05:15 +08001724 struct iterations *iter,
Jin Yaob851dd42017-07-18 20:13:15 +08001725 u64 branch_from)
Andi Kleen37592b82014-11-12 18:05:19 -08001726{
1727 struct addr_location al;
Jin Yaoc4ee0622017-08-07 21:05:15 +08001728 int nr_loop_iter = 0;
1729 u64 iter_cycles = 0;
Andi Kleen37592b82014-11-12 18:05:19 -08001730
1731 al.filtered = 0;
1732 al.sym = NULL;
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001733 if (!cpumode) {
Andi Kleen8b7bad52014-11-12 18:05:20 -08001734 thread__find_cpumode_addr_location(thread, MAP__FUNCTION,
1735 ip, &al);
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001736 } else {
Kan Liang2e777842014-12-02 10:06:53 -05001737 if (ip >= PERF_CONTEXT_MAX) {
1738 switch (ip) {
1739 case PERF_CONTEXT_HV:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001740 *cpumode = PERF_RECORD_MISC_HYPERVISOR;
Kan Liang2e777842014-12-02 10:06:53 -05001741 break;
1742 case PERF_CONTEXT_KERNEL:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001743 *cpumode = PERF_RECORD_MISC_KERNEL;
Kan Liang2e777842014-12-02 10:06:53 -05001744 break;
1745 case PERF_CONTEXT_USER:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001746 *cpumode = PERF_RECORD_MISC_USER;
Kan Liang2e777842014-12-02 10:06:53 -05001747 break;
1748 default:
1749 pr_debug("invalid callchain context: "
1750 "%"PRId64"\n", (s64) ip);
1751 /*
1752 * It seems the callchain is corrupted.
1753 * Discard all.
1754 */
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03001755 callchain_cursor_reset(cursor);
Kan Liang2e777842014-12-02 10:06:53 -05001756 return 1;
1757 }
1758 return 0;
1759 }
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001760 thread__find_addr_location(thread, *cpumode, MAP__FUNCTION,
1761 ip, &al);
Kan Liang2e777842014-12-02 10:06:53 -05001762 }
1763
Andi Kleen37592b82014-11-12 18:05:19 -08001764 if (al.sym != NULL) {
Jiri Olsade7e6a72016-05-03 13:54:43 +02001765 if (perf_hpp_list.parent && !*parent &&
Andi Kleen37592b82014-11-12 18:05:19 -08001766 symbol__match_regex(al.sym, &parent_regex))
1767 *parent = al.sym;
1768 else if (have_ignore_callees && root_al &&
1769 symbol__match_regex(al.sym, &ignore_callees_regex)) {
1770 /* Treat this symbol as the root,
1771 forgetting its callees. */
1772 *root_al = al;
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03001773 callchain_cursor_reset(cursor);
Andi Kleen37592b82014-11-12 18:05:19 -08001774 }
1775 }
1776
Namhyung Kimb49a8fe2015-11-26 16:08:20 +09001777 if (symbol_conf.hide_unresolved && al.sym == NULL)
1778 return 0;
Jin Yaoc4ee0622017-08-07 21:05:15 +08001779
1780 if (iter) {
1781 nr_loop_iter = iter->nr_loop_iter;
1782 iter_cycles = iter->cycles;
1783 }
1784
Jin Yao410024d2016-10-31 09:19:49 +08001785 return callchain_cursor_append(cursor, al.addr, al.map, al.sym,
Jin Yaoc4ee0622017-08-07 21:05:15 +08001786 branch, flags, nr_loop_iter,
1787 iter_cycles, branch_from);
Andi Kleen37592b82014-11-12 18:05:19 -08001788}
1789
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03001790struct branch_info *sample__resolve_bstack(struct perf_sample *sample,
1791 struct addr_location *al)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001792{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001793 unsigned int i;
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03001794 const struct branch_stack *bs = sample->branch_stack;
1795 struct branch_info *bi = calloc(bs->nr, sizeof(struct branch_info));
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001796
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001797 if (!bi)
1798 return NULL;
1799
1800 for (i = 0; i < bs->nr; i++) {
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001801 ip__resolve_ams(al->thread, &bi[i].to, bs->entries[i].to);
1802 ip__resolve_ams(al->thread, &bi[i].from, bs->entries[i].from);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001803 bi[i].flags = bs->entries[i].flags;
1804 }
1805 return bi;
1806}
1807
Jin Yaoc4ee0622017-08-07 21:05:15 +08001808static void save_iterations(struct iterations *iter,
1809 struct branch_entry *be, int nr)
1810{
1811 int i;
1812
1813 iter->nr_loop_iter = nr;
1814 iter->cycles = 0;
1815
1816 for (i = 0; i < nr; i++)
1817 iter->cycles += be[i].flags.cycles;
1818}
1819
Andi Kleen8b7bad52014-11-12 18:05:20 -08001820#define CHASHSZ 127
1821#define CHASHBITS 7
1822#define NO_ENTRY 0xff
1823
1824#define PERF_MAX_BRANCH_DEPTH 127
1825
1826/* Remove loops. */
Jin Yaoc4ee0622017-08-07 21:05:15 +08001827static int remove_loops(struct branch_entry *l, int nr,
1828 struct iterations *iter)
Andi Kleen8b7bad52014-11-12 18:05:20 -08001829{
1830 int i, j, off;
1831 unsigned char chash[CHASHSZ];
1832
1833 memset(chash, NO_ENTRY, sizeof(chash));
1834
1835 BUG_ON(PERF_MAX_BRANCH_DEPTH > 255);
1836
1837 for (i = 0; i < nr; i++) {
1838 int h = hash_64(l[i].from, CHASHBITS) % CHASHSZ;
1839
1840 /* no collision handling for now */
1841 if (chash[h] == NO_ENTRY) {
1842 chash[h] = i;
1843 } else if (l[chash[h]].from == l[i].from) {
1844 bool is_loop = true;
1845 /* check if it is a real loop */
1846 off = 0;
1847 for (j = chash[h]; j < i && i + off < nr; j++, off++)
1848 if (l[j].from != l[i + off].from) {
1849 is_loop = false;
1850 break;
1851 }
1852 if (is_loop) {
Jin Yaoc4ee0622017-08-07 21:05:15 +08001853 j = nr - (i + off);
1854 if (j > 0) {
1855 save_iterations(iter + i + off,
1856 l + i, off);
1857
1858 memmove(iter + i, iter + i + off,
1859 j * sizeof(*iter));
1860
1861 memmove(l + i, l + i + off,
1862 j * sizeof(*l));
1863 }
1864
Andi Kleen8b7bad52014-11-12 18:05:20 -08001865 nr -= off;
1866 }
1867 }
1868 }
1869 return nr;
1870}
1871
Kan Liang384b6052015-01-05 13:23:05 -05001872/*
1873 * Recolve LBR callstack chain sample
1874 * Return:
1875 * 1 on success get LBR callchain information
1876 * 0 no available LBR callchain information, should try fp
1877 * negative error code on other errors.
1878 */
1879static int resolve_lbr_callchain_sample(struct thread *thread,
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03001880 struct callchain_cursor *cursor,
Kan Liang384b6052015-01-05 13:23:05 -05001881 struct perf_sample *sample,
1882 struct symbol **parent,
1883 struct addr_location *root_al,
1884 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001885{
Kan Liang384b6052015-01-05 13:23:05 -05001886 struct ip_callchain *chain = sample->callchain;
Arnaldo Carvalho de Melo18ef15c2016-10-03 11:07:24 -03001887 int chain_nr = min(max_stack, (int)chain->nr), i;
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001888 u8 cpumode = PERF_RECORD_MISC_USER;
Jin Yaob851dd42017-07-18 20:13:15 +08001889 u64 ip, branch_from = 0;
Kan Liang384b6052015-01-05 13:23:05 -05001890
1891 for (i = 0; i < chain_nr; i++) {
1892 if (chain->ips[i] == PERF_CONTEXT_USER)
1893 break;
1894 }
1895
1896 /* LBR only affects the user callchain */
1897 if (i != chain_nr) {
1898 struct branch_stack *lbr_stack = sample->branch_stack;
Jin Yao410024d2016-10-31 09:19:49 +08001899 int lbr_nr = lbr_stack->nr, j, k;
1900 bool branch;
1901 struct branch_flags *flags;
Kan Liang384b6052015-01-05 13:23:05 -05001902 /*
1903 * LBR callstack can only get user call chain.
1904 * The mix_chain_nr is kernel call chain
1905 * number plus LBR user call chain number.
1906 * i is kernel call chain number,
1907 * 1 is PERF_CONTEXT_USER,
1908 * lbr_nr + 1 is the user call chain number.
1909 * For details, please refer to the comments
1910 * in callchain__printf
1911 */
1912 int mix_chain_nr = i + 1 + lbr_nr + 1;
1913
Kan Liang384b6052015-01-05 13:23:05 -05001914 for (j = 0; j < mix_chain_nr; j++) {
Arnaldo Carvalho de Melo18ef15c2016-10-03 11:07:24 -03001915 int err;
Jin Yao410024d2016-10-31 09:19:49 +08001916 branch = false;
1917 flags = NULL;
1918
Kan Liang384b6052015-01-05 13:23:05 -05001919 if (callchain_param.order == ORDER_CALLEE) {
1920 if (j < i + 1)
1921 ip = chain->ips[j];
Jin Yao410024d2016-10-31 09:19:49 +08001922 else if (j > i + 1) {
1923 k = j - i - 2;
1924 ip = lbr_stack->entries[k].from;
1925 branch = true;
1926 flags = &lbr_stack->entries[k].flags;
1927 } else {
Kan Liang384b6052015-01-05 13:23:05 -05001928 ip = lbr_stack->entries[0].to;
Jin Yao410024d2016-10-31 09:19:49 +08001929 branch = true;
1930 flags = &lbr_stack->entries[0].flags;
Jin Yaob851dd42017-07-18 20:13:15 +08001931 branch_from =
1932 lbr_stack->entries[0].from;
Jin Yao410024d2016-10-31 09:19:49 +08001933 }
Kan Liang384b6052015-01-05 13:23:05 -05001934 } else {
Jin Yao410024d2016-10-31 09:19:49 +08001935 if (j < lbr_nr) {
1936 k = lbr_nr - j - 1;
1937 ip = lbr_stack->entries[k].from;
1938 branch = true;
1939 flags = &lbr_stack->entries[k].flags;
1940 }
Kan Liang384b6052015-01-05 13:23:05 -05001941 else if (j > lbr_nr)
1942 ip = chain->ips[i + 1 - (j - lbr_nr)];
Jin Yao410024d2016-10-31 09:19:49 +08001943 else {
Kan Liang384b6052015-01-05 13:23:05 -05001944 ip = lbr_stack->entries[0].to;
Jin Yao410024d2016-10-31 09:19:49 +08001945 branch = true;
1946 flags = &lbr_stack->entries[0].flags;
Jin Yaob851dd42017-07-18 20:13:15 +08001947 branch_from =
1948 lbr_stack->entries[0].from;
Jin Yao410024d2016-10-31 09:19:49 +08001949 }
Kan Liang384b6052015-01-05 13:23:05 -05001950 }
1951
Jin Yao410024d2016-10-31 09:19:49 +08001952 err = add_callchain_ip(thread, cursor, parent,
1953 root_al, &cpumode, ip,
Jin Yaoc4ee0622017-08-07 21:05:15 +08001954 branch, flags, NULL,
Jin Yaob851dd42017-07-18 20:13:15 +08001955 branch_from);
Kan Liang384b6052015-01-05 13:23:05 -05001956 if (err)
1957 return (err < 0) ? err : 0;
1958 }
1959 return 1;
1960 }
1961
1962 return 0;
1963}
1964
1965static int thread__resolve_callchain_sample(struct thread *thread,
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03001966 struct callchain_cursor *cursor,
Kan Liang384b6052015-01-05 13:23:05 -05001967 struct perf_evsel *evsel,
1968 struct perf_sample *sample,
1969 struct symbol **parent,
1970 struct addr_location *root_al,
1971 int max_stack)
1972{
1973 struct branch_stack *branch = sample->branch_stack;
1974 struct ip_callchain *chain = sample->callchain;
Jin Yaob49a8212017-05-08 18:43:02 +08001975 int chain_nr = 0;
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001976 u8 cpumode = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melobf8bddb2016-05-19 11:14:15 -03001977 int i, j, err, nr_entries;
Andi Kleen8b7bad52014-11-12 18:05:20 -08001978 int skip_idx = -1;
1979 int first_call = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001980
Jin Yaob49a8212017-05-08 18:43:02 +08001981 if (chain)
1982 chain_nr = chain->nr;
1983
Arnaldo Carvalho de Meloacf2abb2016-04-18 10:35:03 -03001984 if (perf_evsel__has_branch_callstack(evsel)) {
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03001985 err = resolve_lbr_callchain_sample(thread, cursor, sample, parent,
Kan Liang384b6052015-01-05 13:23:05 -05001986 root_al, max_stack);
1987 if (err)
1988 return (err < 0) ? err : 0;
1989 }
1990
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001991 /*
1992 * Based on DWARF debug information, some architectures skip
1993 * a callchain entry saved by the kernel.
1994 */
Arnaldo Carvalho de Melobf8bddb2016-05-19 11:14:15 -03001995 skip_idx = arch_skip_callchain_idx(thread, chain);
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001996
Andi Kleen8b7bad52014-11-12 18:05:20 -08001997 /*
1998 * Add branches to call stack for easier browsing. This gives
1999 * more context for a sample than just the callers.
2000 *
2001 * This uses individual histograms of paths compared to the
2002 * aggregated histograms the normal LBR mode uses.
2003 *
2004 * Limitations for now:
2005 * - No extra filters
2006 * - No annotations (should annotate somehow)
2007 */
2008
2009 if (branch && callchain_param.branch_callstack) {
2010 int nr = min(max_stack, (int)branch->nr);
2011 struct branch_entry be[nr];
Jin Yaoc4ee0622017-08-07 21:05:15 +08002012 struct iterations iter[nr];
Andi Kleen8b7bad52014-11-12 18:05:20 -08002013
2014 if (branch->nr > PERF_MAX_BRANCH_DEPTH) {
2015 pr_warning("corrupted branch chain. skipping...\n");
2016 goto check_calls;
2017 }
2018
2019 for (i = 0; i < nr; i++) {
2020 if (callchain_param.order == ORDER_CALLEE) {
2021 be[i] = branch->entries[i];
Jin Yaob49a8212017-05-08 18:43:02 +08002022
2023 if (chain == NULL)
2024 continue;
2025
Andi Kleen8b7bad52014-11-12 18:05:20 -08002026 /*
2027 * Check for overlap into the callchain.
2028 * The return address is one off compared to
2029 * the branch entry. To adjust for this
2030 * assume the calling instruction is not longer
2031 * than 8 bytes.
2032 */
2033 if (i == skip_idx ||
2034 chain->ips[first_call] >= PERF_CONTEXT_MAX)
2035 first_call++;
2036 else if (be[i].from < chain->ips[first_call] &&
2037 be[i].from >= chain->ips[first_call] - 8)
2038 first_call++;
2039 } else
2040 be[i] = branch->entries[branch->nr - i - 1];
2041 }
2042
Jin Yaoc4ee0622017-08-07 21:05:15 +08002043 memset(iter, 0, sizeof(struct iterations) * nr);
2044 nr = remove_loops(be, nr, iter);
Jin Yao410024d2016-10-31 09:19:49 +08002045
Andi Kleen8b7bad52014-11-12 18:05:20 -08002046 for (i = 0; i < nr; i++) {
Jin Yaoc4ee0622017-08-07 21:05:15 +08002047 err = add_callchain_ip(thread, cursor, parent,
2048 root_al,
2049 NULL, be[i].to,
2050 true, &be[i].flags,
2051 NULL, be[i].from);
Jin Yao410024d2016-10-31 09:19:49 +08002052
Andi Kleen8b7bad52014-11-12 18:05:20 -08002053 if (!err)
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002054 err = add_callchain_ip(thread, cursor, parent, root_al,
Jin Yao410024d2016-10-31 09:19:49 +08002055 NULL, be[i].from,
2056 true, &be[i].flags,
Jin Yaoc4ee0622017-08-07 21:05:15 +08002057 &iter[i], 0);
Andi Kleen8b7bad52014-11-12 18:05:20 -08002058 if (err == -EINVAL)
2059 break;
2060 if (err)
2061 return err;
2062 }
Jin Yaob49a8212017-05-08 18:43:02 +08002063
2064 if (chain_nr == 0)
2065 return 0;
2066
Andi Kleen8b7bad52014-11-12 18:05:20 -08002067 chain_nr -= nr;
2068 }
2069
2070check_calls:
Arnaldo Carvalho de Melobf8bddb2016-05-19 11:14:15 -03002071 for (i = first_call, nr_entries = 0;
Arnaldo Carvalho de Meloa29d5c92016-05-16 21:16:54 -03002072 i < chain_nr && nr_entries < max_stack; i++) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002073 u64 ip;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002074
2075 if (callchain_param.order == ORDER_CALLEE)
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07002076 j = i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002077 else
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07002078 j = chain->nr - i - 1;
2079
2080#ifdef HAVE_SKIP_CALLCHAIN_IDX
2081 if (j == skip_idx)
2082 continue;
2083#endif
2084 ip = chain->ips[j];
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002085
Arnaldo Carvalho de Melobf8bddb2016-05-19 11:14:15 -03002086 if (ip < PERF_CONTEXT_MAX)
2087 ++nr_entries;
Arnaldo Carvalho de Meloa29d5c92016-05-16 21:16:54 -03002088
Jin Yao410024d2016-10-31 09:19:49 +08002089 err = add_callchain_ip(thread, cursor, parent,
2090 root_al, &cpumode, ip,
Jin Yaoc4ee0622017-08-07 21:05:15 +08002091 false, NULL, NULL, 0);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002092
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002093 if (err)
Kan Liang2e777842014-12-02 10:06:53 -05002094 return (err < 0) ? err : 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002095 }
2096
2097 return 0;
2098}
2099
2100static int unwind_entry(struct unwind_entry *entry, void *arg)
2101{
2102 struct callchain_cursor *cursor = arg;
Namhyung Kimb49a8fe2015-11-26 16:08:20 +09002103
2104 if (symbol_conf.hide_unresolved && entry->sym == NULL)
2105 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002106 return callchain_cursor_append(cursor, entry->ip,
Jin Yao410024d2016-10-31 09:19:49 +08002107 entry->map, entry->sym,
Jin Yaob851dd42017-07-18 20:13:15 +08002108 false, NULL, 0, 0, 0);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002109}
2110
Chris Phlipot9919a652016-04-28 01:19:06 -07002111static int thread__resolve_callchain_unwind(struct thread *thread,
2112 struct callchain_cursor *cursor,
2113 struct perf_evsel *evsel,
2114 struct perf_sample *sample,
2115 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002116{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002117 /* Can we do dwarf post unwind? */
2118 if (!((evsel->attr.sample_type & PERF_SAMPLE_REGS_USER) &&
2119 (evsel->attr.sample_type & PERF_SAMPLE_STACK_USER)))
2120 return 0;
2121
2122 /* Bail out if nothing was captured. */
2123 if ((!sample->user_regs.regs) ||
2124 (!sample->user_stack.size))
2125 return 0;
2126
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002127 return unwind__get_entries(unwind_entry, cursor,
Jiri Olsa352ea452014-01-07 13:47:25 +01002128 thread, sample, max_stack);
Chris Phlipot9919a652016-04-28 01:19:06 -07002129}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002130
Chris Phlipot9919a652016-04-28 01:19:06 -07002131int thread__resolve_callchain(struct thread *thread,
2132 struct callchain_cursor *cursor,
2133 struct perf_evsel *evsel,
2134 struct perf_sample *sample,
2135 struct symbol **parent,
2136 struct addr_location *root_al,
2137 int max_stack)
2138{
2139 int ret = 0;
2140
2141 callchain_cursor_reset(&callchain_cursor);
2142
2143 if (callchain_param.order == ORDER_CALLEE) {
2144 ret = thread__resolve_callchain_sample(thread, cursor,
2145 evsel, sample,
2146 parent, root_al,
2147 max_stack);
2148 if (ret)
2149 return ret;
2150 ret = thread__resolve_callchain_unwind(thread, cursor,
2151 evsel, sample,
2152 max_stack);
2153 } else {
2154 ret = thread__resolve_callchain_unwind(thread, cursor,
2155 evsel, sample,
2156 max_stack);
2157 if (ret)
2158 return ret;
2159 ret = thread__resolve_callchain_sample(thread, cursor,
2160 evsel, sample,
2161 parent, root_al,
2162 max_stack);
2163 }
2164
2165 return ret;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002166}
David Ahern35feee12013-09-28 13:12:58 -06002167
2168int machine__for_each_thread(struct machine *machine,
2169 int (*fn)(struct thread *thread, void *p),
2170 void *priv)
2171{
Kan Liang91e467b2017-09-10 19:23:14 -07002172 struct threads *threads;
David Ahern35feee12013-09-28 13:12:58 -06002173 struct rb_node *nd;
2174 struct thread *thread;
2175 int rc = 0;
Kan Liang91e467b2017-09-10 19:23:14 -07002176 int i;
David Ahern35feee12013-09-28 13:12:58 -06002177
Kan Liang91e467b2017-09-10 19:23:14 -07002178 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
2179 threads = &machine->threads[i];
2180 for (nd = rb_first(&threads->entries); nd; nd = rb_next(nd)) {
2181 thread = rb_entry(nd, struct thread, rb_node);
2182 rc = fn(thread, priv);
2183 if (rc != 0)
2184 return rc;
2185 }
David Ahern35feee12013-09-28 13:12:58 -06002186
Kan Liang91e467b2017-09-10 19:23:14 -07002187 list_for_each_entry(thread, &threads->dead, node) {
2188 rc = fn(thread, priv);
2189 if (rc != 0)
2190 return rc;
2191 }
David Ahern35feee12013-09-28 13:12:58 -06002192 }
2193 return rc;
2194}
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03002195
Adrian Huntera5499b32015-05-29 16:33:30 +03002196int machines__for_each_thread(struct machines *machines,
2197 int (*fn)(struct thread *thread, void *p),
2198 void *priv)
2199{
2200 struct rb_node *nd;
2201 int rc = 0;
2202
2203 rc = machine__for_each_thread(&machines->host, fn, priv);
2204 if (rc != 0)
2205 return rc;
2206
2207 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
2208 struct machine *machine = rb_entry(nd, struct machine, rb_node);
2209
2210 rc = machine__for_each_thread(machine, fn, priv);
2211 if (rc != 0)
2212 return rc;
2213 }
2214 return rc;
2215}
2216
Arnaldo Carvalho de Meloa33fbd52013-11-11 11:36:12 -03002217int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool,
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002218 struct target *target, struct thread_map *threads,
Kan Liang9d9cad72015-06-17 09:51:11 -04002219 perf_event__handler_t process, bool data_mmap,
2220 unsigned int proc_map_timeout)
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03002221{
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002222 if (target__has_task(target))
Kan Liang9d9cad72015-06-17 09:51:11 -04002223 return perf_event__synthesize_thread_map(tool, threads, process, machine, data_mmap, proc_map_timeout);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002224 else if (target__has_cpu(target))
Kan Liang9d9cad72015-06-17 09:51:11 -04002225 return perf_event__synthesize_threads(tool, process, machine, data_mmap, proc_map_timeout);
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03002226 /* command specified */
2227 return 0;
2228}
Adrian Hunterb9d266b2014-07-22 16:17:25 +03002229
2230pid_t machine__get_current_tid(struct machine *machine, int cpu)
2231{
2232 if (cpu < 0 || cpu >= MAX_NR_CPUS || !machine->current_tid)
2233 return -1;
2234
2235 return machine->current_tid[cpu];
2236}
2237
2238int machine__set_current_tid(struct machine *machine, int cpu, pid_t pid,
2239 pid_t tid)
2240{
2241 struct thread *thread;
2242
2243 if (cpu < 0)
2244 return -EINVAL;
2245
2246 if (!machine->current_tid) {
2247 int i;
2248
2249 machine->current_tid = calloc(MAX_NR_CPUS, sizeof(pid_t));
2250 if (!machine->current_tid)
2251 return -ENOMEM;
2252 for (i = 0; i < MAX_NR_CPUS; i++)
2253 machine->current_tid[i] = -1;
2254 }
2255
2256 if (cpu >= MAX_NR_CPUS) {
2257 pr_err("Requested CPU %d too large. ", cpu);
2258 pr_err("Consider raising MAX_NR_CPUS\n");
2259 return -EINVAL;
2260 }
2261
2262 machine->current_tid[cpu] = tid;
2263
2264 thread = machine__findnew_thread(machine, pid, tid);
2265 if (!thread)
2266 return -ENOMEM;
2267
2268 thread->cpu = cpu;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002269 thread__put(thread);
Adrian Hunterb9d266b2014-07-22 16:17:25 +03002270
2271 return 0;
2272}
Adrian Hunterfbe2af42014-08-15 22:08:39 +03002273
2274int machine__get_kernel_start(struct machine *machine)
2275{
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -03002276 struct map *map = machine__kernel_map(machine);
Adrian Hunterfbe2af42014-08-15 22:08:39 +03002277 int err = 0;
2278
2279 /*
2280 * The only addresses above 2^63 are kernel addresses of a 64-bit
2281 * kernel. Note that addresses are unsigned so that on a 32-bit system
2282 * all addresses including kernel addresses are less than 2^32. In
2283 * that case (32-bit system), if the kernel mapping is unknown, all
2284 * addresses will be assumed to be in user space - see
2285 * machine__kernel_ip().
2286 */
2287 machine->kernel_start = 1ULL << 63;
2288 if (map) {
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03002289 err = map__load(map);
Arnaldo Carvalho de Melo4b1303d2017-07-11 16:21:40 -03002290 if (!err)
Adrian Hunterfbe2af42014-08-15 22:08:39 +03002291 machine->kernel_start = map->start;
2292 }
2293 return err;
2294}
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03002295
2296struct dso *machine__findnew_dso(struct machine *machine, const char *filename)
2297{
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03002298 return dsos__findnew(&machine->dsos, filename);
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03002299}
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -03002300
2301char *machine__resolve_kernel_addr(void *vmachine, unsigned long long *addrp, char **modp)
2302{
2303 struct machine *machine = vmachine;
2304 struct map *map;
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03002305 struct symbol *sym = map_groups__find_symbol(&machine->kmaps, MAP__FUNCTION, *addrp, &map);
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -03002306
2307 if (sym == NULL)
2308 return NULL;
2309
2310 *modp = __map__is_kmodule(map) ? (char *)map->dso->short_name : NULL;
2311 *addrp = map->unmap_ip(map, sym->start);
2312 return sym->name;
2313}