blob: 6a8d03c3d9b7095961b07a4d648eadc6f857e868 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Arnaldo Carvalho de Melo76b31a22017-04-18 12:26:44 -03002#include <dirent.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -03003#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -03004#include <inttypes.h>
Arnaldo Carvalho de Melo1eae20c2017-04-18 12:33:30 -03005#include <regex.h>
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03006#include "callchain.h"
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03007#include "debug.h"
8#include "event.h"
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03009#include "evsel.h"
10#include "hist.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030011#include "machine.h"
12#include "map.h"
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030013#include "sort.h"
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030014#include "strlist.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030015#include "thread.h"
Adrian Hunterd027b642014-07-23 14:23:00 +030016#include "vdso.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030017#include <stdbool.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030018#include <sys/types.h>
19#include <sys/stat.h>
20#include <unistd.h>
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030021#include "unwind.h"
Andi Kleen8b7bad52014-11-12 18:05:20 -080022#include "linux/hash.h"
Hari Bathinif3b36142017-03-08 02:11:43 +053023#include "asm/bug.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030024
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030025#include "sane_ctype.h"
26#include <symbol/kallsyms.h>
27
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030028static void __machine__remove_thread(struct machine *machine, struct thread *th, bool lock);
29
Arnaldo Carvalho de Meloe167f992014-10-14 15:07:48 -030030static void dsos__init(struct dsos *dsos)
31{
32 INIT_LIST_HEAD(&dsos->head);
33 dsos->root = RB_ROOT;
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -030034 init_rwsem(&dsos->lock);
Arnaldo Carvalho de Meloe167f992014-10-14 15:07:48 -030035}
36
Kan Liang91e467b2017-09-10 19:23:14 -070037static void machine__threads_init(struct machine *machine)
38{
39 int i;
40
41 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
42 struct threads *threads = &machine->threads[i];
43 threads->entries = RB_ROOT;
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -030044 init_rwsem(&threads->lock);
Kan Liang91e467b2017-09-10 19:23:14 -070045 threads->nr = 0;
46 INIT_LIST_HEAD(&threads->dead);
47 threads->last_match = NULL;
48 }
49}
50
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030051int machine__init(struct machine *machine, const char *root_dir, pid_t pid)
52{
Wang Nan93b0ba32015-12-08 02:25:44 +000053 memset(machine, 0, sizeof(*machine));
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -030054 map_groups__init(&machine->kmaps, machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030055 RB_CLEAR_NODE(&machine->rb_node);
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -030056 dsos__init(&machine->dsos);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030057
Kan Liang91e467b2017-09-10 19:23:14 -070058 machine__threads_init(machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030059
Adrian Hunterd027b642014-07-23 14:23:00 +030060 machine->vdso_info = NULL;
Arnaldo Carvalho de Melo4cde9982015-09-09 12:25:00 -030061 machine->env = NULL;
Adrian Hunterd027b642014-07-23 14:23:00 +030062
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030063 machine->pid = pid;
64
Jiri Olsa14bd6d22014-01-07 13:47:19 +010065 machine->id_hdr_size = 0;
Arnaldo Carvalho de Melocaf8a0d2016-05-17 11:56:24 -030066 machine->kptr_restrict_warned = false;
Adrian Huntercfe1c412014-07-31 09:00:45 +030067 machine->comm_exec = false;
Adrian Hunterfbe2af42014-08-15 22:08:39 +030068 machine->kernel_start = 0;
Adrian Hunter611a5ce2013-08-08 14:32:20 +030069
Masami Hiramatsucc1121a2015-12-09 11:11:33 +090070 memset(machine->vmlinux_maps, 0, sizeof(machine->vmlinux_maps));
71
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030072 machine->root_dir = strdup(root_dir);
73 if (machine->root_dir == NULL)
74 return -ENOMEM;
75
76 if (pid != HOST_KERNEL_ID) {
Adrian Hunter1fcb8762014-07-14 13:02:25 +030077 struct thread *thread = machine__findnew_thread(machine, -1,
Adrian Hunter314add62013-08-27 11:23:03 +030078 pid);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030079 char comm[64];
80
81 if (thread == NULL)
82 return -ENOMEM;
83
84 snprintf(comm, sizeof(comm), "[guest/%d]", pid);
Frederic Weisbecker162f0be2013-09-11 16:18:24 +020085 thread__set_comm(thread, comm, 0);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030086 thread__put(thread);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030087 }
88
Adrian Hunterb9d266b2014-07-22 16:17:25 +030089 machine->current_tid = NULL;
90
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030091 return 0;
92}
93
David Ahern8fb598e2013-09-28 13:13:00 -060094struct machine *machine__new_host(void)
95{
96 struct machine *machine = malloc(sizeof(*machine));
97
98 if (machine != NULL) {
99 machine__init(machine, "", HOST_KERNEL_ID);
100
101 if (machine__create_kernel_maps(machine) < 0)
102 goto out_delete;
103 }
104
105 return machine;
106out_delete:
107 free(machine);
108 return NULL;
109}
110
Arnaldo Carvalho de Melo7d132ca2017-01-05 15:31:48 -0300111struct machine *machine__new_kallsyms(void)
112{
113 struct machine *machine = machine__new_host();
114 /*
115 * FIXME:
116 * 1) MAP__FUNCTION will go away when we stop loading separate maps for
117 * functions and data objects.
118 * 2) We should switch to machine__load_kallsyms(), i.e. not explicitely
119 * ask for not using the kcore parsing code, once this one is fixed
120 * to create a map per module.
121 */
122 if (machine && __machine__load_kallsyms(machine, "/proc/kallsyms", MAP__FUNCTION, true) <= 0) {
123 machine__delete(machine);
124 machine = NULL;
125 }
126
127 return machine;
128}
129
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300130static void dsos__purge(struct dsos *dsos)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300131{
132 struct dso *pos, *n;
133
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300134 down_write(&dsos->lock);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300135
Waiman Long8fa7d872014-09-29 16:07:28 -0400136 list_for_each_entry_safe(pos, n, &dsos->head, node) {
Waiman Long4598a0a2014-09-30 13:36:15 -0400137 RB_CLEAR_NODE(&pos->rb_node);
Adrian Huntere266a752015-11-13 11:48:30 +0200138 pos->root = NULL;
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300139 list_del_init(&pos->node);
140 dso__put(pos);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300141 }
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300142
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300143 up_write(&dsos->lock);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300144}
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300145
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300146static void dsos__exit(struct dsos *dsos)
147{
148 dsos__purge(dsos);
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300149 exit_rwsem(&dsos->lock);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300150}
151
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300152void machine__delete_threads(struct machine *machine)
153{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300154 struct rb_node *nd;
Kan Liang91e467b2017-09-10 19:23:14 -0700155 int i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300156
Kan Liang91e467b2017-09-10 19:23:14 -0700157 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
158 struct threads *threads = &machine->threads[i];
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300159 down_write(&threads->lock);
Kan Liang91e467b2017-09-10 19:23:14 -0700160 nd = rb_first(&threads->entries);
161 while (nd) {
162 struct thread *t = rb_entry(nd, struct thread, rb_node);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300163
Kan Liang91e467b2017-09-10 19:23:14 -0700164 nd = rb_next(nd);
165 __machine__remove_thread(machine, t, false);
166 }
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300167 up_write(&threads->lock);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300168 }
169}
170
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300171void machine__exit(struct machine *machine)
172{
Kan Liang91e467b2017-09-10 19:23:14 -0700173 int i;
174
Masami Hiramatsuebe97292015-11-18 15:40:24 +0900175 machine__destroy_kernel_maps(machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300176 map_groups__exit(&machine->kmaps);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300177 dsos__exit(&machine->dsos);
Arnaldo Carvalho de Melo9a4388c2015-05-29 11:54:08 -0300178 machine__exit_vdso(machine);
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300179 zfree(&machine->root_dir);
Adrian Hunterb9d266b2014-07-22 16:17:25 +0300180 zfree(&machine->current_tid);
Kan Liang91e467b2017-09-10 19:23:14 -0700181
182 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
183 struct threads *threads = &machine->threads[i];
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300184 exit_rwsem(&threads->lock);
Kan Liang91e467b2017-09-10 19:23:14 -0700185 }
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300186}
187
188void machine__delete(struct machine *machine)
189{
Arnaldo Carvalho de Melo32ca6782016-06-22 10:19:11 -0300190 if (machine) {
191 machine__exit(machine);
192 free(machine);
193 }
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300194}
195
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300196void machines__init(struct machines *machines)
197{
198 machine__init(&machines->host, "", HOST_KERNEL_ID);
199 machines->guests = RB_ROOT;
200}
201
202void machines__exit(struct machines *machines)
203{
204 machine__exit(&machines->host);
205 /* XXX exit guest */
206}
207
208struct machine *machines__add(struct machines *machines, pid_t pid,
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300209 const char *root_dir)
210{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300211 struct rb_node **p = &machines->guests.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300212 struct rb_node *parent = NULL;
213 struct machine *pos, *machine = malloc(sizeof(*machine));
214
215 if (machine == NULL)
216 return NULL;
217
218 if (machine__init(machine, root_dir, pid) != 0) {
219 free(machine);
220 return NULL;
221 }
222
223 while (*p != NULL) {
224 parent = *p;
225 pos = rb_entry(parent, struct machine, rb_node);
226 if (pid < pos->pid)
227 p = &(*p)->rb_left;
228 else
229 p = &(*p)->rb_right;
230 }
231
232 rb_link_node(&machine->rb_node, parent, p);
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300233 rb_insert_color(&machine->rb_node, &machines->guests);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300234
235 return machine;
236}
237
Adrian Huntercfe1c412014-07-31 09:00:45 +0300238void machines__set_comm_exec(struct machines *machines, bool comm_exec)
239{
240 struct rb_node *nd;
241
242 machines->host.comm_exec = comm_exec;
243
244 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
245 struct machine *machine = rb_entry(nd, struct machine, rb_node);
246
247 machine->comm_exec = comm_exec;
248 }
249}
250
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300251struct machine *machines__find(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300252{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300253 struct rb_node **p = &machines->guests.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300254 struct rb_node *parent = NULL;
255 struct machine *machine;
256 struct machine *default_machine = NULL;
257
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300258 if (pid == HOST_KERNEL_ID)
259 return &machines->host;
260
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300261 while (*p != NULL) {
262 parent = *p;
263 machine = rb_entry(parent, struct machine, rb_node);
264 if (pid < machine->pid)
265 p = &(*p)->rb_left;
266 else if (pid > machine->pid)
267 p = &(*p)->rb_right;
268 else
269 return machine;
270 if (!machine->pid)
271 default_machine = machine;
272 }
273
274 return default_machine;
275}
276
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300277struct machine *machines__findnew(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300278{
279 char path[PATH_MAX];
280 const char *root_dir = "";
281 struct machine *machine = machines__find(machines, pid);
282
283 if (machine && (machine->pid == pid))
284 goto out;
285
286 if ((pid != HOST_KERNEL_ID) &&
287 (pid != DEFAULT_GUEST_KERNEL_ID) &&
288 (symbol_conf.guestmount)) {
289 sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
290 if (access(path, R_OK)) {
291 static struct strlist *seen;
292
293 if (!seen)
Arnaldo Carvalho de Melo4a77e212015-07-20 12:13:34 -0300294 seen = strlist__new(NULL, NULL);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300295
296 if (!strlist__has_entry(seen, path)) {
297 pr_err("Can't access file %s\n", path);
298 strlist__add(seen, path);
299 }
300 machine = NULL;
301 goto out;
302 }
303 root_dir = path;
304 }
305
306 machine = machines__add(machines, pid, root_dir);
307out:
308 return machine;
309}
310
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300311void machines__process_guests(struct machines *machines,
312 machine__process_t process, void *data)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300313{
314 struct rb_node *nd;
315
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300316 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300317 struct machine *pos = rb_entry(nd, struct machine, rb_node);
318 process(pos, data);
319 }
320}
321
322char *machine__mmap_name(struct machine *machine, char *bf, size_t size)
323{
324 if (machine__is_host(machine))
325 snprintf(bf, size, "[%s]", "kernel.kallsyms");
326 else if (machine__is_default_guest(machine))
327 snprintf(bf, size, "[%s]", "guest.kernel.kallsyms");
328 else {
329 snprintf(bf, size, "[%s.%d]", "guest.kernel.kallsyms",
330 machine->pid);
331 }
332
333 return bf;
334}
335
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300336void machines__set_id_hdr_size(struct machines *machines, u16 id_hdr_size)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300337{
338 struct rb_node *node;
339 struct machine *machine;
340
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300341 machines->host.id_hdr_size = id_hdr_size;
342
343 for (node = rb_first(&machines->guests); node; node = rb_next(node)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300344 machine = rb_entry(node, struct machine, rb_node);
345 machine->id_hdr_size = id_hdr_size;
346 }
347
348 return;
349}
350
Adrian Hunter29ce3612014-07-16 11:07:13 +0300351static void machine__update_thread_pid(struct machine *machine,
352 struct thread *th, pid_t pid)
353{
354 struct thread *leader;
355
356 if (pid == th->pid_ || pid == -1 || th->pid_ != -1)
357 return;
358
359 th->pid_ = pid;
360
361 if (th->pid_ == th->tid)
362 return;
363
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300364 leader = __machine__findnew_thread(machine, th->pid_, th->pid_);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300365 if (!leader)
366 goto out_err;
367
368 if (!leader->mg)
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -0300369 leader->mg = map_groups__new(machine);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300370
371 if (!leader->mg)
372 goto out_err;
373
374 if (th->mg == leader->mg)
375 return;
376
377 if (th->mg) {
378 /*
379 * Maps are created from MMAP events which provide the pid and
380 * tid. Consequently there never should be any maps on a thread
381 * with an unknown pid. Just print an error if there are.
382 */
383 if (!map_groups__empty(th->mg))
384 pr_err("Discarding thread maps for %d:%d\n",
385 th->pid_, th->tid);
Arnaldo Carvalho de Melo8e160b22015-05-19 20:07:14 -0300386 map_groups__put(th->mg);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300387 }
388
389 th->mg = map_groups__get(leader->mg);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300390out_put:
391 thread__put(leader);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300392 return;
Adrian Hunter29ce3612014-07-16 11:07:13 +0300393out_err:
394 pr_err("Failed to join map groups for %d:%d\n", th->pid_, th->tid);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300395 goto out_put;
Adrian Hunter29ce3612014-07-16 11:07:13 +0300396}
397
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300398/*
Adam Buchbinderbd1a0be52016-02-24 10:02:25 -0800399 * Caller must eventually drop thread->refcnt returned with a successful
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300400 * lookup/new thread inserted.
401 */
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300402static struct thread *____machine__findnew_thread(struct machine *machine,
Arnaldo Carvalho de Melo75e45e42017-09-14 16:16:34 -0300403 struct threads *threads,
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300404 pid_t pid, pid_t tid,
405 bool create)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300406{
Kan Liang91e467b2017-09-10 19:23:14 -0700407 struct rb_node **p = &threads->entries.rb_node;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300408 struct rb_node *parent = NULL;
409 struct thread *th;
410
411 /*
Adrian Hunter38051232013-07-04 16:20:31 +0300412 * Front-end cache - TID lookups come in blocks,
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300413 * so most of the time we dont have to look up
414 * the full rbtree:
415 */
Kan Liang91e467b2017-09-10 19:23:14 -0700416 th = threads->last_match;
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300417 if (th != NULL) {
418 if (th->tid == tid) {
419 machine__update_thread_pid(machine, th, pid);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300420 return thread__get(th);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300421 }
422
Kan Liang91e467b2017-09-10 19:23:14 -0700423 threads->last_match = NULL;
Adrian Hunter99d725f2013-08-26 16:00:19 +0300424 }
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300425
426 while (*p != NULL) {
427 parent = *p;
428 th = rb_entry(parent, struct thread, rb_node);
429
Adrian Hunter38051232013-07-04 16:20:31 +0300430 if (th->tid == tid) {
Kan Liang91e467b2017-09-10 19:23:14 -0700431 threads->last_match = th;
Adrian Hunter29ce3612014-07-16 11:07:13 +0300432 machine__update_thread_pid(machine, th, pid);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300433 return thread__get(th);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300434 }
435
Adrian Hunter38051232013-07-04 16:20:31 +0300436 if (tid < th->tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300437 p = &(*p)->rb_left;
438 else
439 p = &(*p)->rb_right;
440 }
441
442 if (!create)
443 return NULL;
444
Adrian Hunter99d725f2013-08-26 16:00:19 +0300445 th = thread__new(pid, tid);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300446 if (th != NULL) {
447 rb_link_node(&th->rb_node, parent, p);
Kan Liang91e467b2017-09-10 19:23:14 -0700448 rb_insert_color(&th->rb_node, &threads->entries);
Jiri Olsacddcef62014-04-09 20:54:29 +0200449
450 /*
451 * We have to initialize map_groups separately
452 * after rb tree is updated.
453 *
454 * The reason is that we call machine__findnew_thread
455 * within thread__init_map_groups to find the thread
456 * leader and that would screwed the rb tree.
457 */
Adrian Hunter418029b2014-07-16 10:19:44 +0300458 if (thread__init_map_groups(th, machine)) {
Kan Liang91e467b2017-09-10 19:23:14 -0700459 rb_erase_init(&th->rb_node, &threads->entries);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300460 RB_CLEAR_NODE(&th->rb_node);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300461 thread__put(th);
Jiri Olsacddcef62014-04-09 20:54:29 +0200462 return NULL;
Adrian Hunter418029b2014-07-16 10:19:44 +0300463 }
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300464 /*
465 * It is now in the rbtree, get a ref
466 */
467 thread__get(th);
Kan Liang91e467b2017-09-10 19:23:14 -0700468 threads->last_match = th;
469 ++threads->nr;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300470 }
471
472 return th;
473}
474
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300475struct thread *__machine__findnew_thread(struct machine *machine, pid_t pid, pid_t tid)
476{
Arnaldo Carvalho de Melo75e45e42017-09-14 16:16:34 -0300477 return ____machine__findnew_thread(machine, machine__threads(machine, tid), pid, tid, true);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300478}
479
Adrian Hunter314add62013-08-27 11:23:03 +0300480struct thread *machine__findnew_thread(struct machine *machine, pid_t pid,
481 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300482{
Kan Liang91e467b2017-09-10 19:23:14 -0700483 struct threads *threads = machine__threads(machine, tid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300484 struct thread *th;
485
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300486 down_write(&threads->lock);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300487 th = __machine__findnew_thread(machine, pid, tid);
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300488 up_write(&threads->lock);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300489 return th;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300490}
491
Jiri Olsad75e6092014-03-14 15:00:03 +0100492struct thread *machine__find_thread(struct machine *machine, pid_t pid,
493 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300494{
Kan Liang91e467b2017-09-10 19:23:14 -0700495 struct threads *threads = machine__threads(machine, tid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300496 struct thread *th;
Kan Liang91e467b2017-09-10 19:23:14 -0700497
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300498 down_read(&threads->lock);
Arnaldo Carvalho de Melo75e45e42017-09-14 16:16:34 -0300499 th = ____machine__findnew_thread(machine, threads, pid, tid, false);
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300500 up_read(&threads->lock);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300501 return th;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300502}
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300503
Adrian Huntercfe1c412014-07-31 09:00:45 +0300504struct comm *machine__thread_exec_comm(struct machine *machine,
505 struct thread *thread)
506{
507 if (machine->comm_exec)
508 return thread__exec_comm(thread);
509 else
510 return thread__comm(thread);
511}
512
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200513int machine__process_comm_event(struct machine *machine, union perf_event *event,
514 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300515{
Adrian Hunter314add62013-08-27 11:23:03 +0300516 struct thread *thread = machine__findnew_thread(machine,
517 event->comm.pid,
518 event->comm.tid);
Adrian Hunter65de51f2014-07-31 09:00:44 +0300519 bool exec = event->header.misc & PERF_RECORD_MISC_COMM_EXEC;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300520 int err = 0;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300521
Adrian Huntercfe1c412014-07-31 09:00:45 +0300522 if (exec)
523 machine->comm_exec = true;
524
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300525 if (dump_trace)
526 perf_event__fprintf_comm(event, stdout);
527
Adrian Hunter65de51f2014-07-31 09:00:44 +0300528 if (thread == NULL ||
529 __thread__set_comm(thread, event->comm.comm, sample->time, exec)) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300530 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300531 err = -1;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300532 }
533
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300534 thread__put(thread);
535
536 return err;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300537}
538
Hari Bathinif3b36142017-03-08 02:11:43 +0530539int machine__process_namespaces_event(struct machine *machine __maybe_unused,
540 union perf_event *event,
541 struct perf_sample *sample __maybe_unused)
542{
543 struct thread *thread = machine__findnew_thread(machine,
544 event->namespaces.pid,
545 event->namespaces.tid);
546 int err = 0;
547
548 WARN_ONCE(event->namespaces.nr_namespaces > NR_NAMESPACES,
549 "\nWARNING: kernel seems to support more namespaces than perf"
550 " tool.\nTry updating the perf tool..\n\n");
551
552 WARN_ONCE(event->namespaces.nr_namespaces < NR_NAMESPACES,
553 "\nWARNING: perf tool seems to support more namespaces than"
554 " the kernel.\nTry updating the kernel..\n\n");
555
556 if (dump_trace)
557 perf_event__fprintf_namespaces(event, stdout);
558
559 if (thread == NULL ||
560 thread__set_namespaces(thread, sample->time, &event->namespaces)) {
561 dump_printf("problem processing PERF_RECORD_NAMESPACES, skipping event.\n");
562 err = -1;
563 }
564
565 thread__put(thread);
566
567 return err;
568}
569
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300570int machine__process_lost_event(struct machine *machine __maybe_unused,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200571 union perf_event *event, struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300572{
573 dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
574 event->lost.id, event->lost.lost);
575 return 0;
576}
577
Kan Liangc4937a92015-05-10 15:13:15 -0400578int machine__process_lost_samples_event(struct machine *machine __maybe_unused,
579 union perf_event *event, struct perf_sample *sample)
580{
581 dump_printf(": id:%" PRIu64 ": lost samples :%" PRIu64 "\n",
582 sample->id, event->lost_samples.lost);
583 return 0;
584}
585
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300586static struct dso *machine__findnew_module_dso(struct machine *machine,
587 struct kmod_path *m,
588 const char *filename)
Jiri Olsada17ea32015-02-12 22:10:52 +0100589{
590 struct dso *dso;
Jiri Olsada17ea32015-02-12 22:10:52 +0100591
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300592 down_write(&machine->dsos.lock);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300593
594 dso = __dsos__find(&machine->dsos, m->name, true);
Jiri Olsada17ea32015-02-12 22:10:52 +0100595 if (!dso) {
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300596 dso = __dsos__addnew(&machine->dsos, m->name);
Jiri Olsada17ea32015-02-12 22:10:52 +0100597 if (dso == NULL)
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300598 goto out_unlock;
Jiri Olsada17ea32015-02-12 22:10:52 +0100599
Namhyung Kim6b335e82017-05-31 21:01:04 +0900600 dso__set_module_info(dso, m, machine);
Jiri Olsaca333802015-02-17 17:29:57 +0100601 dso__set_long_name(dso, strdup(filename), true);
Jiri Olsada17ea32015-02-12 22:10:52 +0100602 }
603
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300604 dso__get(dso);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300605out_unlock:
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300606 up_write(&machine->dsos.lock);
Jiri Olsada17ea32015-02-12 22:10:52 +0100607 return dso;
608}
609
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300610int machine__process_aux_event(struct machine *machine __maybe_unused,
611 union perf_event *event)
612{
613 if (dump_trace)
614 perf_event__fprintf_aux(event, stdout);
615 return 0;
616}
617
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300618int machine__process_itrace_start_event(struct machine *machine __maybe_unused,
619 union perf_event *event)
620{
621 if (dump_trace)
622 perf_event__fprintf_itrace_start(event, stdout);
623 return 0;
624}
625
Adrian Hunter02860392015-07-21 12:44:03 +0300626int machine__process_switch_event(struct machine *machine __maybe_unused,
627 union perf_event *event)
628{
629 if (dump_trace)
630 perf_event__fprintf_switch(event, stdout);
631 return 0;
632}
633
Wang Nanc03d5182015-11-26 03:59:57 +0000634static void dso__adjust_kmod_long_name(struct dso *dso, const char *filename)
635{
636 const char *dup_filename;
637
638 if (!filename || !dso || !dso->long_name)
639 return;
640 if (dso->long_name[0] != '[')
641 return;
642 if (!strchr(filename, '/'))
643 return;
644
645 dup_filename = strdup(filename);
646 if (!dup_filename)
647 return;
648
Wang Nan5dcf16d2015-12-07 02:36:25 +0000649 dso__set_long_name(dso, dup_filename, true);
Wang Nanc03d5182015-11-26 03:59:57 +0000650}
651
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300652struct map *machine__findnew_module_map(struct machine *machine, u64 start,
653 const char *filename)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300654{
Jiri Olsaca333802015-02-17 17:29:57 +0100655 struct map *map = NULL;
Masami Hiramatsu566c69c2015-11-18 15:40:35 +0900656 struct dso *dso = NULL;
Jiri Olsaca333802015-02-17 17:29:57 +0100657 struct kmod_path m;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300658
Jiri Olsaca333802015-02-17 17:29:57 +0100659 if (kmod_path__parse_name(&m, filename))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300660 return NULL;
661
Jiri Olsabc84f462015-02-17 17:31:18 +0100662 map = map_groups__find_by_name(&machine->kmaps, MAP__FUNCTION,
663 m.name);
Wang Nanc03d5182015-11-26 03:59:57 +0000664 if (map) {
665 /*
666 * If the map's dso is an offline module, give dso__load()
667 * a chance to find the file path of that module by fixing
668 * long_name.
669 */
670 dso__adjust_kmod_long_name(map->dso, filename);
Jiri Olsabc84f462015-02-17 17:31:18 +0100671 goto out;
Wang Nanc03d5182015-11-26 03:59:57 +0000672 }
Jiri Olsabc84f462015-02-17 17:31:18 +0100673
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300674 dso = machine__findnew_module_dso(machine, &m, filename);
Jiri Olsaca333802015-02-17 17:29:57 +0100675 if (dso == NULL)
676 goto out;
677
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300678 map = map__new2(start, dso, MAP__FUNCTION);
679 if (map == NULL)
Jiri Olsaca333802015-02-17 17:29:57 +0100680 goto out;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300681
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300682 map_groups__insert(&machine->kmaps, map);
Jiri Olsaca333802015-02-17 17:29:57 +0100683
Masami Hiramatsu9afcb4202015-11-18 15:40:20 +0900684 /* Put the map here because map_groups__insert alread got it */
685 map__put(map);
Jiri Olsaca333802015-02-17 17:29:57 +0100686out:
Masami Hiramatsu566c69c2015-11-18 15:40:35 +0900687 /* put the dso here, corresponding to machine__findnew_module_dso */
688 dso__put(dso);
Jiri Olsaca333802015-02-17 17:29:57 +0100689 free(m.name);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300690 return map;
691}
692
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300693size_t machines__fprintf_dsos(struct machines *machines, FILE *fp)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300694{
695 struct rb_node *nd;
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300696 size_t ret = __dsos__fprintf(&machines->host.dsos.head, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300697
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300698 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300699 struct machine *pos = rb_entry(nd, struct machine, rb_node);
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300700 ret += __dsos__fprintf(&pos->dsos.head, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300701 }
702
703 return ret;
704}
705
Waiman Long8fa7d872014-09-29 16:07:28 -0400706size_t machine__fprintf_dsos_buildid(struct machine *m, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300707 bool (skip)(struct dso *dso, int parm), int parm)
708{
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300709 return __dsos__fprintf_buildid(&m->dsos.head, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300710}
711
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300712size_t machines__fprintf_dsos_buildid(struct machines *machines, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300713 bool (skip)(struct dso *dso, int parm), int parm)
714{
715 struct rb_node *nd;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300716 size_t ret = machine__fprintf_dsos_buildid(&machines->host, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300717
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300718 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300719 struct machine *pos = rb_entry(nd, struct machine, rb_node);
720 ret += machine__fprintf_dsos_buildid(pos, fp, skip, parm);
721 }
722 return ret;
723}
724
725size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp)
726{
727 int i;
728 size_t printed = 0;
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300729 struct dso *kdso = machine__kernel_map(machine)->dso;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300730
731 if (kdso->has_build_id) {
732 char filename[PATH_MAX];
Krister Johansend2396992017-07-05 18:48:13 -0700733 if (dso__build_id_filename(kdso, filename, sizeof(filename),
734 false))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300735 printed += fprintf(fp, "[0] %s\n", filename);
736 }
737
738 for (i = 0; i < vmlinux_path__nr_entries; ++i)
739 printed += fprintf(fp, "[%d] %s\n",
740 i + kdso->has_build_id, vmlinux_path[i]);
741
742 return printed;
743}
744
745size_t machine__fprintf(struct machine *machine, FILE *fp)
746{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300747 struct rb_node *nd;
Kan Liang91e467b2017-09-10 19:23:14 -0700748 size_t ret;
749 int i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300750
Kan Liang91e467b2017-09-10 19:23:14 -0700751 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
752 struct threads *threads = &machine->threads[i];
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300753
754 down_read(&threads->lock);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300755
Kan Liang91e467b2017-09-10 19:23:14 -0700756 ret = fprintf(fp, "Threads: %u\n", threads->nr);
Arnaldo Carvalho de Melod2c11032016-05-04 10:09:33 -0300757
Kan Liang91e467b2017-09-10 19:23:14 -0700758 for (nd = rb_first(&threads->entries); nd; nd = rb_next(nd)) {
759 struct thread *pos = rb_entry(nd, struct thread, rb_node);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300760
Kan Liang91e467b2017-09-10 19:23:14 -0700761 ret += thread__fprintf(pos, fp);
762 }
763
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -0300764 up_read(&threads->lock);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300765 }
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300766 return ret;
767}
768
769static struct dso *machine__get_kernel(struct machine *machine)
770{
771 const char *vmlinux_name = NULL;
772 struct dso *kernel;
773
774 if (machine__is_host(machine)) {
775 vmlinux_name = symbol_conf.vmlinux_name;
776 if (!vmlinux_name)
Masami Hiramatsu0a775822016-05-15 12:19:40 +0900777 vmlinux_name = DSO__NAME_KALLSYMS;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300778
Arnaldo Carvalho de Melo459ce512015-05-28 12:40:55 -0300779 kernel = machine__findnew_kernel(machine, vmlinux_name,
780 "[kernel]", DSO_TYPE_KERNEL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300781 } else {
782 char bf[PATH_MAX];
783
784 if (machine__is_default_guest(machine))
785 vmlinux_name = symbol_conf.default_guest_vmlinux_name;
786 if (!vmlinux_name)
787 vmlinux_name = machine__mmap_name(machine, bf,
788 sizeof(bf));
789
Arnaldo Carvalho de Melo459ce512015-05-28 12:40:55 -0300790 kernel = machine__findnew_kernel(machine, vmlinux_name,
791 "[guest.kernel]",
792 DSO_TYPE_GUEST_KERNEL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300793 }
794
795 if (kernel != NULL && (!kernel->has_build_id))
796 dso__read_running_kernel_build_id(kernel, machine);
797
798 return kernel;
799}
800
801struct process_args {
802 u64 start;
803};
804
Adrian Hunter15a0a872014-01-29 16:14:38 +0200805static void machine__get_kallsyms_filename(struct machine *machine, char *buf,
806 size_t bufsz)
807{
808 if (machine__is_default_guest(machine))
809 scnprintf(buf, bufsz, "%s", symbol_conf.default_guest_kallsyms);
810 else
811 scnprintf(buf, bufsz, "%s/proc/kallsyms", machine->root_dir);
812}
813
Simon Quea93f0e52014-06-16 11:32:09 -0700814const char *ref_reloc_sym_names[] = {"_text", "_stext", NULL};
815
816/* Figure out the start address of kernel map from /proc/kallsyms.
817 * Returns the name of the start symbol in *symbol_name. Pass in NULL as
818 * symbol_name if it's not that important.
819 */
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300820static int machine__get_running_kernel_start(struct machine *machine,
821 const char **symbol_name, u64 *start)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300822{
Adrian Hunter15a0a872014-01-29 16:14:38 +0200823 char filename[PATH_MAX];
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300824 int i, err = -1;
Simon Quea93f0e52014-06-16 11:32:09 -0700825 const char *name;
826 u64 addr = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300827
Adrian Hunter15a0a872014-01-29 16:14:38 +0200828 machine__get_kallsyms_filename(machine, filename, PATH_MAX);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300829
830 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
831 return 0;
832
Simon Quea93f0e52014-06-16 11:32:09 -0700833 for (i = 0; (name = ref_reloc_sym_names[i]) != NULL; i++) {
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300834 err = kallsyms__get_function_start(filename, name, &addr);
835 if (!err)
Simon Quea93f0e52014-06-16 11:32:09 -0700836 break;
837 }
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300838
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300839 if (err)
840 return -1;
841
Simon Quea93f0e52014-06-16 11:32:09 -0700842 if (symbol_name)
843 *symbol_name = name;
844
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300845 *start = addr;
846 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300847}
848
849int __machine__create_kernel_maps(struct machine *machine, struct dso *kernel)
850{
Arnaldo Carvalho de Meloa0b2f5a2017-02-14 16:19:56 -0300851 int type;
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300852 u64 start = 0;
853
854 if (machine__get_running_kernel_start(machine, NULL, &start))
855 return -1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300856
Masami Hiramatsucc1121a2015-12-09 11:11:33 +0900857 /* In case of renewal the kernel map, destroy previous one */
858 machine__destroy_kernel_maps(machine);
859
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300860 for (type = 0; type < MAP__NR_TYPES; ++type) {
861 struct kmap *kmap;
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300862 struct map *map;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300863
864 machine->vmlinux_maps[type] = map__new2(start, kernel, type);
865 if (machine->vmlinux_maps[type] == NULL)
866 return -1;
867
868 machine->vmlinux_maps[type]->map_ip =
869 machine->vmlinux_maps[type]->unmap_ip =
870 identity__map_ip;
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300871 map = __machine__kernel_map(machine, type);
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300872 kmap = map__kmap(map);
Wang Nanba927322015-04-07 08:22:45 +0000873 if (!kmap)
874 return -1;
875
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300876 kmap->kmaps = &machine->kmaps;
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300877 map_groups__insert(&machine->kmaps, map);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300878 }
879
880 return 0;
881}
882
883void machine__destroy_kernel_maps(struct machine *machine)
884{
Arnaldo Carvalho de Meloa0b2f5a2017-02-14 16:19:56 -0300885 int type;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300886
887 for (type = 0; type < MAP__NR_TYPES; ++type) {
888 struct kmap *kmap;
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300889 struct map *map = __machine__kernel_map(machine, type);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300890
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300891 if (map == NULL)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300892 continue;
893
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300894 kmap = map__kmap(map);
895 map_groups__remove(&machine->kmaps, map);
Wang Nanba927322015-04-07 08:22:45 +0000896 if (kmap && kmap->ref_reloc_sym) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300897 /*
898 * ref_reloc_sym is shared among all maps, so free just
899 * on one of them.
900 */
901 if (type == MAP__FUNCTION) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300902 zfree((char **)&kmap->ref_reloc_sym->name);
903 zfree(&kmap->ref_reloc_sym);
904 } else
905 kmap->ref_reloc_sym = NULL;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300906 }
907
Masami Hiramatsue96e4072015-11-18 15:40:22 +0900908 map__put(machine->vmlinux_maps[type]);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300909 machine->vmlinux_maps[type] = NULL;
910 }
911}
912
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300913int machines__create_guest_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300914{
915 int ret = 0;
916 struct dirent **namelist = NULL;
917 int i, items = 0;
918 char path[PATH_MAX];
919 pid_t pid;
920 char *endp;
921
922 if (symbol_conf.default_guest_vmlinux_name ||
923 symbol_conf.default_guest_modules ||
924 symbol_conf.default_guest_kallsyms) {
925 machines__create_kernel_maps(machines, DEFAULT_GUEST_KERNEL_ID);
926 }
927
928 if (symbol_conf.guestmount) {
929 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
930 if (items <= 0)
931 return -ENOENT;
932 for (i = 0; i < items; i++) {
933 if (!isdigit(namelist[i]->d_name[0])) {
934 /* Filter out . and .. */
935 continue;
936 }
937 pid = (pid_t)strtol(namelist[i]->d_name, &endp, 10);
938 if ((*endp != '\0') ||
939 (endp == namelist[i]->d_name) ||
940 (errno == ERANGE)) {
941 pr_debug("invalid directory (%s). Skipping.\n",
942 namelist[i]->d_name);
943 continue;
944 }
945 sprintf(path, "%s/%s/proc/kallsyms",
946 symbol_conf.guestmount,
947 namelist[i]->d_name);
948 ret = access(path, R_OK);
949 if (ret) {
950 pr_debug("Can't access file %s\n", path);
951 goto failure;
952 }
953 machines__create_kernel_maps(machines, pid);
954 }
955failure:
956 free(namelist);
957 }
958
959 return ret;
960}
961
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300962void machines__destroy_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300963{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300964 struct rb_node *next = rb_first(&machines->guests);
965
966 machine__destroy_kernel_maps(&machines->host);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300967
968 while (next) {
969 struct machine *pos = rb_entry(next, struct machine, rb_node);
970
971 next = rb_next(&pos->rb_node);
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300972 rb_erase(&pos->rb_node, &machines->guests);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300973 machine__delete(pos);
974 }
975}
976
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300977int machines__create_kernel_maps(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300978{
979 struct machine *machine = machines__findnew(machines, pid);
980
981 if (machine == NULL)
982 return -1;
983
984 return machine__create_kernel_maps(machine);
985}
986
Arnaldo Carvalho de Meloe02092b2016-04-19 12:12:49 -0300987int __machine__load_kallsyms(struct machine *machine, const char *filename,
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300988 enum map_type type, bool no_kcore)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300989{
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300990 struct map *map = machine__kernel_map(machine);
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300991 int ret = __dso__load_kallsyms(map->dso, filename, map, no_kcore);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300992
993 if (ret > 0) {
994 dso__set_loaded(map->dso, type);
995 /*
996 * Since /proc/kallsyms will have multiple sessions for the
997 * kernel, with modules between them, fixup the end of all
998 * sections.
999 */
1000 __map_groups__fixup_end(&machine->kmaps, type);
1001 }
1002
1003 return ret;
1004}
1005
Arnaldo Carvalho de Meloe02092b2016-04-19 12:12:49 -03001006int machine__load_kallsyms(struct machine *machine, const char *filename,
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03001007 enum map_type type)
Arnaldo Carvalho de Meloe02092b2016-04-19 12:12:49 -03001008{
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03001009 return __machine__load_kallsyms(machine, filename, type, false);
Arnaldo Carvalho de Meloe02092b2016-04-19 12:12:49 -03001010}
1011
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03001012int machine__load_vmlinux_path(struct machine *machine, enum map_type type)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001013{
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -03001014 struct map *map = machine__kernel_map(machine);
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03001015 int ret = dso__load_vmlinux_path(map->dso, map);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001016
Adrian Hunter39b12f782013-08-07 14:38:47 +03001017 if (ret > 0)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001018 dso__set_loaded(map->dso, type);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001019
1020 return ret;
1021}
1022
1023static void map_groups__fixup_end(struct map_groups *mg)
1024{
1025 int i;
1026 for (i = 0; i < MAP__NR_TYPES; ++i)
1027 __map_groups__fixup_end(mg, i);
1028}
1029
1030static char *get_kernel_version(const char *root_dir)
1031{
1032 char version[PATH_MAX];
1033 FILE *file;
1034 char *name, *tmp;
1035 const char *prefix = "Linux version ";
1036
1037 sprintf(version, "%s/proc/version", root_dir);
1038 file = fopen(version, "r");
1039 if (!file)
1040 return NULL;
1041
1042 version[0] = '\0';
1043 tmp = fgets(version, sizeof(version), file);
1044 fclose(file);
1045
1046 name = strstr(version, prefix);
1047 if (!name)
1048 return NULL;
1049 name += strlen(prefix);
1050 tmp = strchr(name, ' ');
1051 if (tmp)
1052 *tmp = '\0';
1053
1054 return strdup(name);
1055}
1056
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001057static bool is_kmod_dso(struct dso *dso)
1058{
1059 return dso->symtab_type == DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE ||
1060 dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE;
1061}
1062
1063static int map_groups__set_module_path(struct map_groups *mg, const char *path,
1064 struct kmod_path *m)
1065{
1066 struct map *map;
1067 char *long_name;
1068
1069 map = map_groups__find_by_name(mg, MAP__FUNCTION, m->name);
1070 if (map == NULL)
1071 return 0;
1072
1073 long_name = strdup(path);
1074 if (long_name == NULL)
1075 return -ENOMEM;
1076
1077 dso__set_long_name(map->dso, long_name, true);
1078 dso__kernel_module_get_build_id(map->dso, "");
1079
1080 /*
1081 * Full name could reveal us kmod compression, so
1082 * we need to update the symtab_type if needed.
1083 */
1084 if (m->comp && is_kmod_dso(map->dso))
1085 map->dso->symtab_type++;
1086
1087 return 0;
1088}
1089
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001090static int map_groups__set_modules_path_dir(struct map_groups *mg,
Richard Yao61d42902014-04-26 13:17:55 -04001091 const char *dir_name, int depth)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001092{
1093 struct dirent *dent;
1094 DIR *dir = opendir(dir_name);
1095 int ret = 0;
1096
1097 if (!dir) {
1098 pr_debug("%s: cannot open %s dir\n", __func__, dir_name);
1099 return -1;
1100 }
1101
1102 while ((dent = readdir(dir)) != NULL) {
1103 char path[PATH_MAX];
1104 struct stat st;
1105
1106 /*sshfs might return bad dent->d_type, so we have to stat*/
1107 snprintf(path, sizeof(path), "%s/%s", dir_name, dent->d_name);
1108 if (stat(path, &st))
1109 continue;
1110
1111 if (S_ISDIR(st.st_mode)) {
1112 if (!strcmp(dent->d_name, ".") ||
1113 !strcmp(dent->d_name, ".."))
1114 continue;
1115
Richard Yao61d42902014-04-26 13:17:55 -04001116 /* Do not follow top-level source and build symlinks */
1117 if (depth == 0) {
1118 if (!strcmp(dent->d_name, "source") ||
1119 !strcmp(dent->d_name, "build"))
1120 continue;
1121 }
1122
1123 ret = map_groups__set_modules_path_dir(mg, path,
1124 depth + 1);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001125 if (ret < 0)
1126 goto out;
1127 } else {
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001128 struct kmod_path m;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001129
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001130 ret = kmod_path__parse_name(&m, dent->d_name);
1131 if (ret)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001132 goto out;
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001133
1134 if (m.kmod)
1135 ret = map_groups__set_module_path(mg, path, &m);
1136
1137 free(m.name);
1138
1139 if (ret)
1140 goto out;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001141 }
1142 }
1143
1144out:
1145 closedir(dir);
1146 return ret;
1147}
1148
1149static int machine__set_modules_path(struct machine *machine)
1150{
1151 char *version;
1152 char modules_path[PATH_MAX];
1153
1154 version = get_kernel_version(machine->root_dir);
1155 if (!version)
1156 return -1;
1157
Richard Yao61d42902014-04-26 13:17:55 -04001158 snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s",
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001159 machine->root_dir, version);
1160 free(version);
1161
Richard Yao61d42902014-04-26 13:17:55 -04001162 return map_groups__set_modules_path_dir(&machine->kmaps, modules_path, 0);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001163}
Song Shan Gong203d8a42016-07-21 11:10:51 +08001164int __weak arch__fix_module_text_start(u64 *start __maybe_unused,
1165 const char *name __maybe_unused)
1166{
1167 return 0;
1168}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001169
Thomas Richter9ad46522017-08-03 15:49:02 +02001170static int machine__create_module(void *arg, const char *name, u64 start,
1171 u64 size)
Adrian Hunter316d70d2013-10-08 11:45:48 +03001172{
1173 struct machine *machine = arg;
1174 struct map *map;
1175
Song Shan Gong203d8a42016-07-21 11:10:51 +08001176 if (arch__fix_module_text_start(&start, name) < 0)
1177 return -1;
1178
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -03001179 map = machine__findnew_module_map(machine, start, name);
Adrian Hunter316d70d2013-10-08 11:45:48 +03001180 if (map == NULL)
1181 return -1;
Thomas Richter9ad46522017-08-03 15:49:02 +02001182 map->end = start + size;
Adrian Hunter316d70d2013-10-08 11:45:48 +03001183
1184 dso__kernel_module_get_build_id(map->dso, machine->root_dir);
1185
1186 return 0;
1187}
1188
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001189static int machine__create_modules(struct machine *machine)
1190{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001191 const char *modules;
1192 char path[PATH_MAX];
1193
Adrian Hunterf4be9042013-09-22 13:22:09 +03001194 if (machine__is_default_guest(machine)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001195 modules = symbol_conf.default_guest_modules;
Adrian Hunterf4be9042013-09-22 13:22:09 +03001196 } else {
1197 snprintf(path, PATH_MAX, "%s/proc/modules", machine->root_dir);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001198 modules = path;
1199 }
1200
Adrian Hunteraa7fe3b2013-09-22 13:22:09 +03001201 if (symbol__restricted_filename(modules, "/proc/modules"))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001202 return -1;
1203
Adrian Hunter316d70d2013-10-08 11:45:48 +03001204 if (modules__parse(modules, machine, machine__create_module))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001205 return -1;
1206
Adrian Hunter316d70d2013-10-08 11:45:48 +03001207 if (!machine__set_modules_path(machine))
1208 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001209
Adrian Hunter316d70d2013-10-08 11:45:48 +03001210 pr_debug("Problems setting modules path maps, continuing anyway...\n");
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001211
Jason Wessel8f76fcd2013-07-15 15:27:53 -05001212 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001213}
1214
1215int machine__create_kernel_maps(struct machine *machine)
1216{
1217 struct dso *kernel = machine__get_kernel(machine);
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -03001218 const char *name = NULL;
1219 u64 addr = 0;
Masami Hiramatsu1154c952015-11-18 15:40:33 +09001220 int ret;
1221
Arnaldo Carvalho de Melo45e90052016-05-17 11:52:26 -03001222 if (kernel == NULL)
Adrian Hunter5512cf22014-01-29 16:14:39 +02001223 return -1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001224
Masami Hiramatsu1154c952015-11-18 15:40:33 +09001225 ret = __machine__create_kernel_maps(machine, kernel);
1226 dso__put(kernel);
1227 if (ret < 0)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001228 return -1;
1229
1230 if (symbol_conf.use_modules && machine__create_modules(machine) < 0) {
1231 if (machine__is_host(machine))
1232 pr_debug("Problems creating module maps, "
1233 "continuing anyway...\n");
1234 else
1235 pr_debug("Problems creating module maps for guest %d, "
1236 "continuing anyway...\n", machine->pid);
1237 }
1238
1239 /*
1240 * Now that we have all the maps created, just set the ->end of them:
1241 */
1242 map_groups__fixup_end(&machine->kmaps);
Adrian Hunter5512cf22014-01-29 16:14:39 +02001243
Jiri Olsa3f938ee2017-06-26 11:51:53 +02001244 if (!machine__get_running_kernel_start(machine, &name, &addr)) {
1245 if (name &&
1246 maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps, name, addr)) {
1247 machine__destroy_kernel_maps(machine);
1248 return -1;
1249 }
Adrian Hunter5512cf22014-01-29 16:14:39 +02001250 }
1251
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001252 return 0;
1253}
1254
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001255static void machine__set_kernel_mmap_len(struct machine *machine,
1256 union perf_event *event)
1257{
Namhyung Kim4552cf02012-11-07 16:27:10 +09001258 int i;
1259
1260 for (i = 0; i < MAP__NR_TYPES; i++) {
1261 machine->vmlinux_maps[i]->start = event->mmap.start;
1262 machine->vmlinux_maps[i]->end = (event->mmap.start +
1263 event->mmap.len);
1264 /*
1265 * Be a bit paranoid here, some perf.data file came with
1266 * a zero sized synthesized MMAP event for the kernel.
1267 */
1268 if (machine->vmlinux_maps[i]->end == 0)
1269 machine->vmlinux_maps[i]->end = ~0ULL;
1270 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001271}
1272
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001273static bool machine__uses_kcore(struct machine *machine)
1274{
1275 struct dso *dso;
1276
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -03001277 list_for_each_entry(dso, &machine->dsos.head, node) {
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001278 if (dso__is_kcore(dso))
1279 return true;
1280 }
1281
1282 return false;
1283}
1284
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001285static int machine__process_kernel_mmap_event(struct machine *machine,
1286 union perf_event *event)
1287{
1288 struct map *map;
1289 char kmmap_prefix[PATH_MAX];
1290 enum dso_kernel_type kernel_type;
1291 bool is_kernel_mmap;
1292
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001293 /* If we have maps from kcore then we do not need or want any others */
1294 if (machine__uses_kcore(machine))
1295 return 0;
1296
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001297 machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
1298 if (machine__is_host(machine))
1299 kernel_type = DSO_TYPE_KERNEL;
1300 else
1301 kernel_type = DSO_TYPE_GUEST_KERNEL;
1302
1303 is_kernel_mmap = memcmp(event->mmap.filename,
1304 kmmap_prefix,
1305 strlen(kmmap_prefix) - 1) == 0;
1306 if (event->mmap.filename[0] == '/' ||
1307 (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -03001308 map = machine__findnew_module_map(machine, event->mmap.start,
1309 event->mmap.filename);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001310 if (map == NULL)
1311 goto out_problem;
1312
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001313 map->end = map->start + event->mmap.len;
1314 } else if (is_kernel_mmap) {
1315 const char *symbol_name = (event->mmap.filename +
1316 strlen(kmmap_prefix));
1317 /*
1318 * Should be there already, from the build-id table in
1319 * the header.
1320 */
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001321 struct dso *kernel = NULL;
1322 struct dso *dso;
1323
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03001324 down_read(&machine->dsos.lock);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001325
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -03001326 list_for_each_entry(dso, &machine->dsos.head, node) {
Wang Nan1f121b02015-06-03 08:52:21 +00001327
1328 /*
1329 * The cpumode passed to is_kernel_module is not the
1330 * cpumode of *this* event. If we insist on passing
1331 * correct cpumode to is_kernel_module, we should
1332 * record the cpumode when we adding this dso to the
1333 * linked list.
1334 *
1335 * However we don't really need passing correct
1336 * cpumode. We know the correct cpumode must be kernel
1337 * mode (if not, we should not link it onto kernel_dsos
1338 * list).
1339 *
1340 * Therefore, we pass PERF_RECORD_MISC_CPUMODE_UNKNOWN.
1341 * is_kernel_module() treats it as a kernel cpumode.
1342 */
1343
1344 if (!dso->kernel ||
1345 is_kernel_module(dso->long_name,
1346 PERF_RECORD_MISC_CPUMODE_UNKNOWN))
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001347 continue;
1348
Wang Nan1f121b02015-06-03 08:52:21 +00001349
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001350 kernel = dso;
1351 break;
1352 }
1353
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03001354 up_read(&machine->dsos.lock);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001355
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001356 if (kernel == NULL)
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03001357 kernel = machine__findnew_dso(machine, kmmap_prefix);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001358 if (kernel == NULL)
1359 goto out_problem;
1360
1361 kernel->kernel = kernel_type;
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001362 if (__machine__create_kernel_maps(machine, kernel) < 0) {
1363 dso__put(kernel);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001364 goto out_problem;
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001365 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001366
Namhyung Kim330dfa22014-11-18 13:30:28 +09001367 if (strstr(kernel->long_name, "vmlinux"))
1368 dso__set_short_name(kernel, "[kernel.vmlinux]", false);
Namhyung Kim96d78052014-11-04 10:14:34 +09001369
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001370 machine__set_kernel_mmap_len(machine, event);
1371
1372 /*
1373 * Avoid using a zero address (kptr_restrict) for the ref reloc
1374 * symbol. Effectively having zero here means that at record
1375 * time /proc/sys/kernel/kptr_restrict was non zero.
1376 */
1377 if (event->mmap.pgoff != 0) {
1378 maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps,
1379 symbol_name,
1380 event->mmap.pgoff);
1381 }
1382
1383 if (machine__is_default_guest(machine)) {
1384 /*
1385 * preload dso of guest kernel and modules
1386 */
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03001387 dso__load(kernel, machine__kernel_map(machine));
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001388 }
1389 }
1390 return 0;
1391out_problem:
1392 return -1;
1393}
1394
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001395int machine__process_mmap2_event(struct machine *machine,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001396 union perf_event *event,
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001397 struct perf_sample *sample)
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001398{
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001399 struct thread *thread;
1400 struct map *map;
1401 enum map_type type;
1402 int ret = 0;
1403
1404 if (dump_trace)
1405 perf_event__fprintf_mmap2(event, stdout);
1406
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001407 if (sample->cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1408 sample->cpumode == PERF_RECORD_MISC_KERNEL) {
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001409 ret = machine__process_kernel_mmap_event(machine, event);
1410 if (ret < 0)
1411 goto out_problem;
1412 return 0;
1413 }
1414
1415 thread = machine__findnew_thread(machine, event->mmap2.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001416 event->mmap2.tid);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001417 if (thread == NULL)
1418 goto out_problem;
1419
1420 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1421 type = MAP__VARIABLE;
1422 else
1423 type = MAP__FUNCTION;
1424
Adrian Hunter2a030682014-07-22 16:17:53 +03001425 map = map__new(machine, event->mmap2.start,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001426 event->mmap2.len, event->mmap2.pgoff,
Krister Johansenbf2e7102017-07-05 18:48:09 -07001427 event->mmap2.maj,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001428 event->mmap2.min, event->mmap2.ino,
1429 event->mmap2.ino_generation,
Don Zickus7ef80702014-05-19 15:13:49 -04001430 event->mmap2.prot,
1431 event->mmap2.flags,
Adrian Hunter5835edd2014-07-22 16:18:00 +03001432 event->mmap2.filename, type, thread);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001433
1434 if (map == NULL)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001435 goto out_problem_map;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001436
He Kuang8132a2a2016-06-03 03:33:13 +00001437 ret = thread__insert_map(thread, map);
1438 if (ret)
1439 goto out_problem_insert;
1440
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001441 thread__put(thread);
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001442 map__put(map);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001443 return 0;
1444
He Kuang8132a2a2016-06-03 03:33:13 +00001445out_problem_insert:
1446 map__put(map);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001447out_problem_map:
1448 thread__put(thread);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001449out_problem:
1450 dump_printf("problem processing PERF_RECORD_MMAP2, skipping event.\n");
1451 return 0;
1452}
1453
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001454int machine__process_mmap_event(struct machine *machine, union perf_event *event,
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001455 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001456{
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001457 struct thread *thread;
1458 struct map *map;
Stephane Eranianbad40912013-01-24 16:10:40 +01001459 enum map_type type;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001460 int ret = 0;
1461
1462 if (dump_trace)
1463 perf_event__fprintf_mmap(event, stdout);
1464
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001465 if (sample->cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1466 sample->cpumode == PERF_RECORD_MISC_KERNEL) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001467 ret = machine__process_kernel_mmap_event(machine, event);
1468 if (ret < 0)
1469 goto out_problem;
1470 return 0;
1471 }
1472
Adrian Hunter314add62013-08-27 11:23:03 +03001473 thread = machine__findnew_thread(machine, event->mmap.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001474 event->mmap.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001475 if (thread == NULL)
1476 goto out_problem;
Stephane Eranianbad40912013-01-24 16:10:40 +01001477
1478 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1479 type = MAP__VARIABLE;
1480 else
1481 type = MAP__FUNCTION;
1482
Adrian Hunter2a030682014-07-22 16:17:53 +03001483 map = map__new(machine, event->mmap.start,
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001484 event->mmap.len, event->mmap.pgoff,
Krister Johansenbf2e7102017-07-05 18:48:09 -07001485 0, 0, 0, 0, 0, 0,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001486 event->mmap.filename,
Adrian Hunter5835edd2014-07-22 16:18:00 +03001487 type, thread);
Stephane Eranianbad40912013-01-24 16:10:40 +01001488
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001489 if (map == NULL)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001490 goto out_problem_map;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001491
He Kuang8132a2a2016-06-03 03:33:13 +00001492 ret = thread__insert_map(thread, map);
1493 if (ret)
1494 goto out_problem_insert;
1495
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001496 thread__put(thread);
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001497 map__put(map);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001498 return 0;
1499
He Kuang8132a2a2016-06-03 03:33:13 +00001500out_problem_insert:
1501 map__put(map);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001502out_problem_map:
1503 thread__put(thread);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001504out_problem:
1505 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
1506 return 0;
1507}
1508
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001509static void __machine__remove_thread(struct machine *machine, struct thread *th, bool lock)
David Ahern236a3bb2013-08-14 08:49:27 -06001510{
Kan Liang91e467b2017-09-10 19:23:14 -07001511 struct threads *threads = machine__threads(machine, th->tid);
1512
1513 if (threads->last_match == th)
1514 threads->last_match = NULL;
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001515
Elena Reshetovae34f5b12017-02-21 17:35:02 +02001516 BUG_ON(refcount_read(&th->refcnt) == 0);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001517 if (lock)
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03001518 down_write(&threads->lock);
Kan Liang91e467b2017-09-10 19:23:14 -07001519 rb_erase_init(&th->rb_node, &threads->entries);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001520 RB_CLEAR_NODE(&th->rb_node);
Kan Liang91e467b2017-09-10 19:23:14 -07001521 --threads->nr;
David Ahern236a3bb2013-08-14 08:49:27 -06001522 /*
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001523 * Move it first to the dead_threads list, then drop the reference,
1524 * if this is the last reference, then the thread__delete destructor
1525 * will be called and we will remove it from the dead_threads list.
David Ahern236a3bb2013-08-14 08:49:27 -06001526 */
Kan Liang91e467b2017-09-10 19:23:14 -07001527 list_add_tail(&th->node, &threads->dead);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001528 if (lock)
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03001529 up_write(&threads->lock);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001530 thread__put(th);
David Ahern236a3bb2013-08-14 08:49:27 -06001531}
1532
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001533void machine__remove_thread(struct machine *machine, struct thread *th)
1534{
1535 return __machine__remove_thread(machine, th, true);
1536}
1537
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001538int machine__process_fork_event(struct machine *machine, union perf_event *event,
1539 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001540{
Jiri Olsad75e6092014-03-14 15:00:03 +01001541 struct thread *thread = machine__find_thread(machine,
1542 event->fork.pid,
1543 event->fork.tid);
Adrian Hunter314add62013-08-27 11:23:03 +03001544 struct thread *parent = machine__findnew_thread(machine,
1545 event->fork.ppid,
1546 event->fork.ptid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001547 int err = 0;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001548
Adrian Hunter5cb73342015-08-19 17:29:20 +03001549 if (dump_trace)
1550 perf_event__fprintf_task(event, stdout);
1551
1552 /*
1553 * There may be an existing thread that is not actually the parent,
1554 * either because we are processing events out of order, or because the
1555 * (fork) event that would have removed the thread was lost. Assume the
1556 * latter case and continue on as best we can.
1557 */
1558 if (parent->pid_ != (pid_t)event->fork.ppid) {
1559 dump_printf("removing erroneous parent thread %d/%d\n",
1560 parent->pid_, parent->tid);
1561 machine__remove_thread(machine, parent);
1562 thread__put(parent);
1563 parent = machine__findnew_thread(machine, event->fork.ppid,
1564 event->fork.ptid);
1565 }
1566
David Ahern236a3bb2013-08-14 08:49:27 -06001567 /* if a thread currently exists for the thread id remove it */
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001568 if (thread != NULL) {
David Ahern236a3bb2013-08-14 08:49:27 -06001569 machine__remove_thread(machine, thread);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001570 thread__put(thread);
1571 }
David Ahern236a3bb2013-08-14 08:49:27 -06001572
Adrian Hunter314add62013-08-27 11:23:03 +03001573 thread = machine__findnew_thread(machine, event->fork.pid,
1574 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001575
1576 if (thread == NULL || parent == NULL ||
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001577 thread__fork(thread, parent, sample->time) < 0) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001578 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001579 err = -1;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001580 }
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001581 thread__put(thread);
1582 thread__put(parent);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001583
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001584 return err;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001585}
1586
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001587int machine__process_exit_event(struct machine *machine, union perf_event *event,
1588 struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001589{
Jiri Olsad75e6092014-03-14 15:00:03 +01001590 struct thread *thread = machine__find_thread(machine,
1591 event->fork.pid,
1592 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001593
1594 if (dump_trace)
1595 perf_event__fprintf_task(event, stdout);
1596
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001597 if (thread != NULL) {
David Ahern236a3bb2013-08-14 08:49:27 -06001598 thread__exited(thread);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001599 thread__put(thread);
1600 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001601
1602 return 0;
1603}
1604
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001605int machine__process_event(struct machine *machine, union perf_event *event,
1606 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001607{
1608 int ret;
1609
1610 switch (event->header.type) {
1611 case PERF_RECORD_COMM:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001612 ret = machine__process_comm_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001613 case PERF_RECORD_MMAP:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001614 ret = machine__process_mmap_event(machine, event, sample); break;
Hari Bathinif3b36142017-03-08 02:11:43 +05301615 case PERF_RECORD_NAMESPACES:
1616 ret = machine__process_namespaces_event(machine, event, sample); break;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001617 case PERF_RECORD_MMAP2:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001618 ret = machine__process_mmap2_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001619 case PERF_RECORD_FORK:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001620 ret = machine__process_fork_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001621 case PERF_RECORD_EXIT:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001622 ret = machine__process_exit_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001623 case PERF_RECORD_LOST:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001624 ret = machine__process_lost_event(machine, event, sample); break;
Adrian Hunter4a96f7a2015-04-30 17:37:29 +03001625 case PERF_RECORD_AUX:
1626 ret = machine__process_aux_event(machine, event); break;
Adrian Hunter0ad21f62015-04-30 17:37:30 +03001627 case PERF_RECORD_ITRACE_START:
Jiri Olsaceb92912015-06-29 13:27:45 +02001628 ret = machine__process_itrace_start_event(machine, event); break;
Kan Liangc4937a92015-05-10 15:13:15 -04001629 case PERF_RECORD_LOST_SAMPLES:
1630 ret = machine__process_lost_samples_event(machine, event, sample); break;
Adrian Hunter02860392015-07-21 12:44:03 +03001631 case PERF_RECORD_SWITCH:
1632 case PERF_RECORD_SWITCH_CPU_WIDE:
1633 ret = machine__process_switch_event(machine, event); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001634 default:
1635 ret = -1;
1636 break;
1637 }
1638
1639 return ret;
1640}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001641
Greg Priceb21484f2012-12-06 21:48:05 -08001642static bool symbol__match_regex(struct symbol *sym, regex_t *regex)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001643{
Arnaldo Carvalho de Meloa7c38992017-02-13 16:52:15 -03001644 if (!regexec(regex, sym->name, 0, NULL, 0))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001645 return 1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001646 return 0;
1647}
1648
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001649static void ip__resolve_ams(struct thread *thread,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001650 struct addr_map_symbol *ams,
1651 u64 ip)
1652{
1653 struct addr_location al;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001654
1655 memset(&al, 0, sizeof(al));
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -03001656 /*
1657 * We cannot use the header.misc hint to determine whether a
1658 * branch stack address is user, kernel, guest, hypervisor.
1659 * Branches may straddle the kernel/user/hypervisor boundaries.
1660 * Thus, we have to try consecutively until we find a match
1661 * or else, the symbol is unknown
1662 */
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001663 thread__find_cpumode_addr_location(thread, MAP__FUNCTION, ip, &al);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001664
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001665 ams->addr = ip;
1666 ams->al_addr = al.addr;
1667 ams->sym = al.sym;
1668 ams->map = al.map;
Kan Liang8780fb22017-08-29 13:11:09 -04001669 ams->phys_addr = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001670}
1671
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001672static void ip__resolve_data(struct thread *thread,
Kan Liang8780fb22017-08-29 13:11:09 -04001673 u8 m, struct addr_map_symbol *ams,
1674 u64 addr, u64 phys_addr)
Stephane Eranian98a3b322013-01-24 16:10:35 +01001675{
1676 struct addr_location al;
1677
1678 memset(&al, 0, sizeof(al));
1679
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001680 thread__find_addr_location(thread, m, MAP__VARIABLE, addr, &al);
Don Zickus06b2afc2014-08-20 23:25:11 -04001681 if (al.map == NULL) {
1682 /*
1683 * some shared data regions have execute bit set which puts
1684 * their mapping in the MAP__FUNCTION type array.
1685 * Check there as a fallback option before dropping the sample.
1686 */
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001687 thread__find_addr_location(thread, m, MAP__FUNCTION, addr, &al);
Don Zickus06b2afc2014-08-20 23:25:11 -04001688 }
1689
Stephane Eranian98a3b322013-01-24 16:10:35 +01001690 ams->addr = addr;
1691 ams->al_addr = al.addr;
1692 ams->sym = al.sym;
1693 ams->map = al.map;
Kan Liang8780fb22017-08-29 13:11:09 -04001694 ams->phys_addr = phys_addr;
Stephane Eranian98a3b322013-01-24 16:10:35 +01001695}
1696
Arnaldo Carvalho de Meloe80faac2014-01-22 13:05:06 -03001697struct mem_info *sample__resolve_mem(struct perf_sample *sample,
1698 struct addr_location *al)
Stephane Eranian98a3b322013-01-24 16:10:35 +01001699{
1700 struct mem_info *mi = zalloc(sizeof(*mi));
1701
1702 if (!mi)
1703 return NULL;
1704
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001705 ip__resolve_ams(al->thread, &mi->iaddr, sample->ip);
Kan Liang8780fb22017-08-29 13:11:09 -04001706 ip__resolve_data(al->thread, al->cpumode, &mi->daddr,
1707 sample->addr, sample->phys_addr);
Stephane Eranian98a3b322013-01-24 16:10:35 +01001708 mi->data_src.val = sample->data_src;
1709
1710 return mi;
1711}
1712
Milian Wolff40a342c2017-10-09 22:32:56 +02001713static char *callchain_srcline(struct map *map, struct symbol *sym, u64 ip)
1714{
Milian Wolff21ac9d52017-10-19 13:38:34 +02001715 char *srcline = NULL;
Milian Wolff40a342c2017-10-09 22:32:56 +02001716
Milian Wolff21ac9d52017-10-19 13:38:34 +02001717 if (!map || callchain_param.key == CCKEY_FUNCTION)
1718 return srcline;
1719
1720 srcline = srcline__tree_find(&map->dso->srclines, ip);
1721 if (!srcline) {
1722 bool show_sym = false;
1723 bool show_addr = callchain_param.key == CCKEY_ADDRESS;
1724
1725 srcline = get_srcline(map->dso, map__rip_2objdump(map, ip),
1726 sym, show_sym, show_addr);
1727 srcline__tree_insert(&map->dso->srclines, ip, srcline);
1728 }
1729
1730 return srcline;
Milian Wolff40a342c2017-10-09 22:32:56 +02001731}
1732
Jin Yaoc4ee0622017-08-07 21:05:15 +08001733struct iterations {
1734 int nr_loop_iter;
1735 u64 cycles;
1736};
1737
Andi Kleen37592b82014-11-12 18:05:19 -08001738static int add_callchain_ip(struct thread *thread,
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03001739 struct callchain_cursor *cursor,
Andi Kleen37592b82014-11-12 18:05:19 -08001740 struct symbol **parent,
1741 struct addr_location *root_al,
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001742 u8 *cpumode,
Jin Yao410024d2016-10-31 09:19:49 +08001743 u64 ip,
1744 bool branch,
1745 struct branch_flags *flags,
Jin Yaoc4ee0622017-08-07 21:05:15 +08001746 struct iterations *iter,
Jin Yaob851dd42017-07-18 20:13:15 +08001747 u64 branch_from)
Andi Kleen37592b82014-11-12 18:05:19 -08001748{
1749 struct addr_location al;
Jin Yaoc4ee0622017-08-07 21:05:15 +08001750 int nr_loop_iter = 0;
1751 u64 iter_cycles = 0;
Milian Wolff40a342c2017-10-09 22:32:56 +02001752 const char *srcline = NULL;
Andi Kleen37592b82014-11-12 18:05:19 -08001753
1754 al.filtered = 0;
1755 al.sym = NULL;
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001756 if (!cpumode) {
Andi Kleen8b7bad52014-11-12 18:05:20 -08001757 thread__find_cpumode_addr_location(thread, MAP__FUNCTION,
1758 ip, &al);
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001759 } else {
Kan Liang2e777842014-12-02 10:06:53 -05001760 if (ip >= PERF_CONTEXT_MAX) {
1761 switch (ip) {
1762 case PERF_CONTEXT_HV:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001763 *cpumode = PERF_RECORD_MISC_HYPERVISOR;
Kan Liang2e777842014-12-02 10:06:53 -05001764 break;
1765 case PERF_CONTEXT_KERNEL:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001766 *cpumode = PERF_RECORD_MISC_KERNEL;
Kan Liang2e777842014-12-02 10:06:53 -05001767 break;
1768 case PERF_CONTEXT_USER:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001769 *cpumode = PERF_RECORD_MISC_USER;
Kan Liang2e777842014-12-02 10:06:53 -05001770 break;
1771 default:
1772 pr_debug("invalid callchain context: "
1773 "%"PRId64"\n", (s64) ip);
1774 /*
1775 * It seems the callchain is corrupted.
1776 * Discard all.
1777 */
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03001778 callchain_cursor_reset(cursor);
Kan Liang2e777842014-12-02 10:06:53 -05001779 return 1;
1780 }
1781 return 0;
1782 }
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001783 thread__find_addr_location(thread, *cpumode, MAP__FUNCTION,
1784 ip, &al);
Kan Liang2e777842014-12-02 10:06:53 -05001785 }
1786
Andi Kleen37592b82014-11-12 18:05:19 -08001787 if (al.sym != NULL) {
Jiri Olsade7e6a72016-05-03 13:54:43 +02001788 if (perf_hpp_list.parent && !*parent &&
Andi Kleen37592b82014-11-12 18:05:19 -08001789 symbol__match_regex(al.sym, &parent_regex))
1790 *parent = al.sym;
1791 else if (have_ignore_callees && root_al &&
1792 symbol__match_regex(al.sym, &ignore_callees_regex)) {
1793 /* Treat this symbol as the root,
1794 forgetting its callees. */
1795 *root_al = al;
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03001796 callchain_cursor_reset(cursor);
Andi Kleen37592b82014-11-12 18:05:19 -08001797 }
1798 }
1799
Namhyung Kimb49a8fe2015-11-26 16:08:20 +09001800 if (symbol_conf.hide_unresolved && al.sym == NULL)
1801 return 0;
Jin Yaoc4ee0622017-08-07 21:05:15 +08001802
1803 if (iter) {
1804 nr_loop_iter = iter->nr_loop_iter;
1805 iter_cycles = iter->cycles;
1806 }
1807
Milian Wolff40a342c2017-10-09 22:32:56 +02001808 srcline = callchain_srcline(al.map, al.sym, al.addr);
Jin Yao410024d2016-10-31 09:19:49 +08001809 return callchain_cursor_append(cursor, al.addr, al.map, al.sym,
Jin Yaoc4ee0622017-08-07 21:05:15 +08001810 branch, flags, nr_loop_iter,
Milian Wolff40a342c2017-10-09 22:32:56 +02001811 iter_cycles, branch_from, srcline);
Andi Kleen37592b82014-11-12 18:05:19 -08001812}
1813
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03001814struct branch_info *sample__resolve_bstack(struct perf_sample *sample,
1815 struct addr_location *al)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001816{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001817 unsigned int i;
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03001818 const struct branch_stack *bs = sample->branch_stack;
1819 struct branch_info *bi = calloc(bs->nr, sizeof(struct branch_info));
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001820
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001821 if (!bi)
1822 return NULL;
1823
1824 for (i = 0; i < bs->nr; i++) {
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001825 ip__resolve_ams(al->thread, &bi[i].to, bs->entries[i].to);
1826 ip__resolve_ams(al->thread, &bi[i].from, bs->entries[i].from);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001827 bi[i].flags = bs->entries[i].flags;
1828 }
1829 return bi;
1830}
1831
Jin Yaoc4ee0622017-08-07 21:05:15 +08001832static void save_iterations(struct iterations *iter,
1833 struct branch_entry *be, int nr)
1834{
1835 int i;
1836
1837 iter->nr_loop_iter = nr;
1838 iter->cycles = 0;
1839
1840 for (i = 0; i < nr; i++)
1841 iter->cycles += be[i].flags.cycles;
1842}
1843
Andi Kleen8b7bad52014-11-12 18:05:20 -08001844#define CHASHSZ 127
1845#define CHASHBITS 7
1846#define NO_ENTRY 0xff
1847
1848#define PERF_MAX_BRANCH_DEPTH 127
1849
1850/* Remove loops. */
Jin Yaoc4ee0622017-08-07 21:05:15 +08001851static int remove_loops(struct branch_entry *l, int nr,
1852 struct iterations *iter)
Andi Kleen8b7bad52014-11-12 18:05:20 -08001853{
1854 int i, j, off;
1855 unsigned char chash[CHASHSZ];
1856
1857 memset(chash, NO_ENTRY, sizeof(chash));
1858
1859 BUG_ON(PERF_MAX_BRANCH_DEPTH > 255);
1860
1861 for (i = 0; i < nr; i++) {
1862 int h = hash_64(l[i].from, CHASHBITS) % CHASHSZ;
1863
1864 /* no collision handling for now */
1865 if (chash[h] == NO_ENTRY) {
1866 chash[h] = i;
1867 } else if (l[chash[h]].from == l[i].from) {
1868 bool is_loop = true;
1869 /* check if it is a real loop */
1870 off = 0;
1871 for (j = chash[h]; j < i && i + off < nr; j++, off++)
1872 if (l[j].from != l[i + off].from) {
1873 is_loop = false;
1874 break;
1875 }
1876 if (is_loop) {
Jin Yaoc4ee0622017-08-07 21:05:15 +08001877 j = nr - (i + off);
1878 if (j > 0) {
1879 save_iterations(iter + i + off,
1880 l + i, off);
1881
1882 memmove(iter + i, iter + i + off,
1883 j * sizeof(*iter));
1884
1885 memmove(l + i, l + i + off,
1886 j * sizeof(*l));
1887 }
1888
Andi Kleen8b7bad52014-11-12 18:05:20 -08001889 nr -= off;
1890 }
1891 }
1892 }
1893 return nr;
1894}
1895
Kan Liang384b6052015-01-05 13:23:05 -05001896/*
1897 * Recolve LBR callstack chain sample
1898 * Return:
1899 * 1 on success get LBR callchain information
1900 * 0 no available LBR callchain information, should try fp
1901 * negative error code on other errors.
1902 */
1903static int resolve_lbr_callchain_sample(struct thread *thread,
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03001904 struct callchain_cursor *cursor,
Kan Liang384b6052015-01-05 13:23:05 -05001905 struct perf_sample *sample,
1906 struct symbol **parent,
1907 struct addr_location *root_al,
1908 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001909{
Kan Liang384b6052015-01-05 13:23:05 -05001910 struct ip_callchain *chain = sample->callchain;
Arnaldo Carvalho de Melo18ef15c2016-10-03 11:07:24 -03001911 int chain_nr = min(max_stack, (int)chain->nr), i;
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001912 u8 cpumode = PERF_RECORD_MISC_USER;
Jin Yaob851dd42017-07-18 20:13:15 +08001913 u64 ip, branch_from = 0;
Kan Liang384b6052015-01-05 13:23:05 -05001914
1915 for (i = 0; i < chain_nr; i++) {
1916 if (chain->ips[i] == PERF_CONTEXT_USER)
1917 break;
1918 }
1919
1920 /* LBR only affects the user callchain */
1921 if (i != chain_nr) {
1922 struct branch_stack *lbr_stack = sample->branch_stack;
Jin Yao410024d2016-10-31 09:19:49 +08001923 int lbr_nr = lbr_stack->nr, j, k;
1924 bool branch;
1925 struct branch_flags *flags;
Kan Liang384b6052015-01-05 13:23:05 -05001926 /*
1927 * LBR callstack can only get user call chain.
1928 * The mix_chain_nr is kernel call chain
1929 * number plus LBR user call chain number.
1930 * i is kernel call chain number,
1931 * 1 is PERF_CONTEXT_USER,
1932 * lbr_nr + 1 is the user call chain number.
1933 * For details, please refer to the comments
1934 * in callchain__printf
1935 */
1936 int mix_chain_nr = i + 1 + lbr_nr + 1;
1937
Kan Liang384b6052015-01-05 13:23:05 -05001938 for (j = 0; j < mix_chain_nr; j++) {
Arnaldo Carvalho de Melo18ef15c2016-10-03 11:07:24 -03001939 int err;
Jin Yao410024d2016-10-31 09:19:49 +08001940 branch = false;
1941 flags = NULL;
1942
Kan Liang384b6052015-01-05 13:23:05 -05001943 if (callchain_param.order == ORDER_CALLEE) {
1944 if (j < i + 1)
1945 ip = chain->ips[j];
Jin Yao410024d2016-10-31 09:19:49 +08001946 else if (j > i + 1) {
1947 k = j - i - 2;
1948 ip = lbr_stack->entries[k].from;
1949 branch = true;
1950 flags = &lbr_stack->entries[k].flags;
1951 } else {
Kan Liang384b6052015-01-05 13:23:05 -05001952 ip = lbr_stack->entries[0].to;
Jin Yao410024d2016-10-31 09:19:49 +08001953 branch = true;
1954 flags = &lbr_stack->entries[0].flags;
Jin Yaob851dd42017-07-18 20:13:15 +08001955 branch_from =
1956 lbr_stack->entries[0].from;
Jin Yao410024d2016-10-31 09:19:49 +08001957 }
Kan Liang384b6052015-01-05 13:23:05 -05001958 } else {
Jin Yao410024d2016-10-31 09:19:49 +08001959 if (j < lbr_nr) {
1960 k = lbr_nr - j - 1;
1961 ip = lbr_stack->entries[k].from;
1962 branch = true;
1963 flags = &lbr_stack->entries[k].flags;
1964 }
Kan Liang384b6052015-01-05 13:23:05 -05001965 else if (j > lbr_nr)
1966 ip = chain->ips[i + 1 - (j - lbr_nr)];
Jin Yao410024d2016-10-31 09:19:49 +08001967 else {
Kan Liang384b6052015-01-05 13:23:05 -05001968 ip = lbr_stack->entries[0].to;
Jin Yao410024d2016-10-31 09:19:49 +08001969 branch = true;
1970 flags = &lbr_stack->entries[0].flags;
Jin Yaob851dd42017-07-18 20:13:15 +08001971 branch_from =
1972 lbr_stack->entries[0].from;
Jin Yao410024d2016-10-31 09:19:49 +08001973 }
Kan Liang384b6052015-01-05 13:23:05 -05001974 }
1975
Jin Yao410024d2016-10-31 09:19:49 +08001976 err = add_callchain_ip(thread, cursor, parent,
1977 root_al, &cpumode, ip,
Jin Yaoc4ee0622017-08-07 21:05:15 +08001978 branch, flags, NULL,
Jin Yaob851dd42017-07-18 20:13:15 +08001979 branch_from);
Kan Liang384b6052015-01-05 13:23:05 -05001980 if (err)
1981 return (err < 0) ? err : 0;
1982 }
1983 return 1;
1984 }
1985
1986 return 0;
1987}
1988
1989static int thread__resolve_callchain_sample(struct thread *thread,
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03001990 struct callchain_cursor *cursor,
Kan Liang384b6052015-01-05 13:23:05 -05001991 struct perf_evsel *evsel,
1992 struct perf_sample *sample,
1993 struct symbol **parent,
1994 struct addr_location *root_al,
1995 int max_stack)
1996{
1997 struct branch_stack *branch = sample->branch_stack;
1998 struct ip_callchain *chain = sample->callchain;
Jin Yaob49a8212017-05-08 18:43:02 +08001999 int chain_nr = 0;
David Hildenbrand73dbcd62015-03-30 10:11:00 +02002000 u8 cpumode = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melobf8bddb2016-05-19 11:14:15 -03002001 int i, j, err, nr_entries;
Andi Kleen8b7bad52014-11-12 18:05:20 -08002002 int skip_idx = -1;
2003 int first_call = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002004
Jin Yaob49a8212017-05-08 18:43:02 +08002005 if (chain)
2006 chain_nr = chain->nr;
2007
Arnaldo Carvalho de Meloacf2abb2016-04-18 10:35:03 -03002008 if (perf_evsel__has_branch_callstack(evsel)) {
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002009 err = resolve_lbr_callchain_sample(thread, cursor, sample, parent,
Kan Liang384b6052015-01-05 13:23:05 -05002010 root_al, max_stack);
2011 if (err)
2012 return (err < 0) ? err : 0;
2013 }
2014
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07002015 /*
2016 * Based on DWARF debug information, some architectures skip
2017 * a callchain entry saved by the kernel.
2018 */
Arnaldo Carvalho de Melobf8bddb2016-05-19 11:14:15 -03002019 skip_idx = arch_skip_callchain_idx(thread, chain);
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07002020
Andi Kleen8b7bad52014-11-12 18:05:20 -08002021 /*
2022 * Add branches to call stack for easier browsing. This gives
2023 * more context for a sample than just the callers.
2024 *
2025 * This uses individual histograms of paths compared to the
2026 * aggregated histograms the normal LBR mode uses.
2027 *
2028 * Limitations for now:
2029 * - No extra filters
2030 * - No annotations (should annotate somehow)
2031 */
2032
2033 if (branch && callchain_param.branch_callstack) {
2034 int nr = min(max_stack, (int)branch->nr);
2035 struct branch_entry be[nr];
Jin Yaoc4ee0622017-08-07 21:05:15 +08002036 struct iterations iter[nr];
Andi Kleen8b7bad52014-11-12 18:05:20 -08002037
2038 if (branch->nr > PERF_MAX_BRANCH_DEPTH) {
2039 pr_warning("corrupted branch chain. skipping...\n");
2040 goto check_calls;
2041 }
2042
2043 for (i = 0; i < nr; i++) {
2044 if (callchain_param.order == ORDER_CALLEE) {
2045 be[i] = branch->entries[i];
Jin Yaob49a8212017-05-08 18:43:02 +08002046
2047 if (chain == NULL)
2048 continue;
2049
Andi Kleen8b7bad52014-11-12 18:05:20 -08002050 /*
2051 * Check for overlap into the callchain.
2052 * The return address is one off compared to
2053 * the branch entry. To adjust for this
2054 * assume the calling instruction is not longer
2055 * than 8 bytes.
2056 */
2057 if (i == skip_idx ||
2058 chain->ips[first_call] >= PERF_CONTEXT_MAX)
2059 first_call++;
2060 else if (be[i].from < chain->ips[first_call] &&
2061 be[i].from >= chain->ips[first_call] - 8)
2062 first_call++;
2063 } else
2064 be[i] = branch->entries[branch->nr - i - 1];
2065 }
2066
Jin Yaoc4ee0622017-08-07 21:05:15 +08002067 memset(iter, 0, sizeof(struct iterations) * nr);
2068 nr = remove_loops(be, nr, iter);
Jin Yao410024d2016-10-31 09:19:49 +08002069
Andi Kleen8b7bad52014-11-12 18:05:20 -08002070 for (i = 0; i < nr; i++) {
Jin Yaoc4ee0622017-08-07 21:05:15 +08002071 err = add_callchain_ip(thread, cursor, parent,
2072 root_al,
2073 NULL, be[i].to,
2074 true, &be[i].flags,
2075 NULL, be[i].from);
Jin Yao410024d2016-10-31 09:19:49 +08002076
Andi Kleen8b7bad52014-11-12 18:05:20 -08002077 if (!err)
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002078 err = add_callchain_ip(thread, cursor, parent, root_al,
Jin Yao410024d2016-10-31 09:19:49 +08002079 NULL, be[i].from,
2080 true, &be[i].flags,
Jin Yaoc4ee0622017-08-07 21:05:15 +08002081 &iter[i], 0);
Andi Kleen8b7bad52014-11-12 18:05:20 -08002082 if (err == -EINVAL)
2083 break;
2084 if (err)
2085 return err;
2086 }
Jin Yaob49a8212017-05-08 18:43:02 +08002087
2088 if (chain_nr == 0)
2089 return 0;
2090
Andi Kleen8b7bad52014-11-12 18:05:20 -08002091 chain_nr -= nr;
2092 }
2093
2094check_calls:
Arnaldo Carvalho de Melobf8bddb2016-05-19 11:14:15 -03002095 for (i = first_call, nr_entries = 0;
Arnaldo Carvalho de Meloa29d5c92016-05-16 21:16:54 -03002096 i < chain_nr && nr_entries < max_stack; i++) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002097 u64 ip;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002098
2099 if (callchain_param.order == ORDER_CALLEE)
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07002100 j = i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002101 else
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07002102 j = chain->nr - i - 1;
2103
2104#ifdef HAVE_SKIP_CALLCHAIN_IDX
2105 if (j == skip_idx)
2106 continue;
2107#endif
2108 ip = chain->ips[j];
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002109
Arnaldo Carvalho de Melobf8bddb2016-05-19 11:14:15 -03002110 if (ip < PERF_CONTEXT_MAX)
2111 ++nr_entries;
Arnaldo Carvalho de Meloa29d5c92016-05-16 21:16:54 -03002112
Jin Yao410024d2016-10-31 09:19:49 +08002113 err = add_callchain_ip(thread, cursor, parent,
2114 root_al, &cpumode, ip,
Jin Yaoc4ee0622017-08-07 21:05:15 +08002115 false, NULL, NULL, 0);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002116
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002117 if (err)
Kan Liang2e777842014-12-02 10:06:53 -05002118 return (err < 0) ? err : 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002119 }
2120
2121 return 0;
2122}
2123
Milian Wolff11ea2512017-10-09 22:32:59 +02002124static int append_inlines(struct callchain_cursor *cursor,
2125 struct map *map, struct symbol *sym, u64 ip)
2126{
2127 struct inline_node *inline_node;
2128 struct inline_list *ilist;
2129 u64 addr;
Milian Wolffb38775c2017-10-19 13:38:33 +02002130 int ret = 1;
Milian Wolff11ea2512017-10-09 22:32:59 +02002131
2132 if (!symbol_conf.inline_name || !map || !sym)
Milian Wolffb38775c2017-10-19 13:38:33 +02002133 return ret;
Milian Wolff11ea2512017-10-09 22:32:59 +02002134
2135 addr = map__rip_2objdump(map, ip);
2136
2137 inline_node = inlines__tree_find(&map->dso->inlined_nodes, addr);
2138 if (!inline_node) {
2139 inline_node = dso__parse_addr_inlines(map->dso, addr, sym);
2140 if (!inline_node)
Milian Wolffb38775c2017-10-19 13:38:33 +02002141 return ret;
Milian Wolff11ea2512017-10-09 22:32:59 +02002142 inlines__tree_insert(&map->dso->inlined_nodes, inline_node);
2143 }
2144
2145 list_for_each_entry(ilist, &inline_node->val, list) {
Milian Wolffb38775c2017-10-19 13:38:33 +02002146 ret = callchain_cursor_append(cursor, ip, map,
2147 ilist->symbol, false,
2148 NULL, 0, 0, 0, ilist->srcline);
Milian Wolff11ea2512017-10-09 22:32:59 +02002149
2150 if (ret != 0)
2151 return ret;
2152 }
2153
Milian Wolffb38775c2017-10-19 13:38:33 +02002154 return ret;
Milian Wolff11ea2512017-10-09 22:32:59 +02002155}
2156
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002157static int unwind_entry(struct unwind_entry *entry, void *arg)
2158{
2159 struct callchain_cursor *cursor = arg;
Milian Wolff40a342c2017-10-09 22:32:56 +02002160 const char *srcline = NULL;
Namhyung Kimb49a8fe2015-11-26 16:08:20 +09002161
2162 if (symbol_conf.hide_unresolved && entry->sym == NULL)
2163 return 0;
Milian Wolff40a342c2017-10-09 22:32:56 +02002164
Milian Wolff11ea2512017-10-09 22:32:59 +02002165 if (append_inlines(cursor, entry->map, entry->sym, entry->ip) == 0)
2166 return 0;
2167
Milian Wolff40a342c2017-10-09 22:32:56 +02002168 srcline = callchain_srcline(entry->map, entry->sym, entry->ip);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002169 return callchain_cursor_append(cursor, entry->ip,
Jin Yao410024d2016-10-31 09:19:49 +08002170 entry->map, entry->sym,
Milian Wolff40a342c2017-10-09 22:32:56 +02002171 false, NULL, 0, 0, 0, srcline);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002172}
2173
Chris Phlipot9919a652016-04-28 01:19:06 -07002174static int thread__resolve_callchain_unwind(struct thread *thread,
2175 struct callchain_cursor *cursor,
2176 struct perf_evsel *evsel,
2177 struct perf_sample *sample,
2178 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002179{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002180 /* Can we do dwarf post unwind? */
2181 if (!((evsel->attr.sample_type & PERF_SAMPLE_REGS_USER) &&
2182 (evsel->attr.sample_type & PERF_SAMPLE_STACK_USER)))
2183 return 0;
2184
2185 /* Bail out if nothing was captured. */
2186 if ((!sample->user_regs.regs) ||
2187 (!sample->user_stack.size))
2188 return 0;
2189
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03002190 return unwind__get_entries(unwind_entry, cursor,
Jiri Olsa352ea452014-01-07 13:47:25 +01002191 thread, sample, max_stack);
Chris Phlipot9919a652016-04-28 01:19:06 -07002192}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002193
Chris Phlipot9919a652016-04-28 01:19:06 -07002194int thread__resolve_callchain(struct thread *thread,
2195 struct callchain_cursor *cursor,
2196 struct perf_evsel *evsel,
2197 struct perf_sample *sample,
2198 struct symbol **parent,
2199 struct addr_location *root_al,
2200 int max_stack)
2201{
2202 int ret = 0;
2203
2204 callchain_cursor_reset(&callchain_cursor);
2205
2206 if (callchain_param.order == ORDER_CALLEE) {
2207 ret = thread__resolve_callchain_sample(thread, cursor,
2208 evsel, sample,
2209 parent, root_al,
2210 max_stack);
2211 if (ret)
2212 return ret;
2213 ret = thread__resolve_callchain_unwind(thread, cursor,
2214 evsel, sample,
2215 max_stack);
2216 } else {
2217 ret = thread__resolve_callchain_unwind(thread, cursor,
2218 evsel, sample,
2219 max_stack);
2220 if (ret)
2221 return ret;
2222 ret = thread__resolve_callchain_sample(thread, cursor,
2223 evsel, sample,
2224 parent, root_al,
2225 max_stack);
2226 }
2227
2228 return ret;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03002229}
David Ahern35feee12013-09-28 13:12:58 -06002230
2231int machine__for_each_thread(struct machine *machine,
2232 int (*fn)(struct thread *thread, void *p),
2233 void *priv)
2234{
Kan Liang91e467b2017-09-10 19:23:14 -07002235 struct threads *threads;
David Ahern35feee12013-09-28 13:12:58 -06002236 struct rb_node *nd;
2237 struct thread *thread;
2238 int rc = 0;
Kan Liang91e467b2017-09-10 19:23:14 -07002239 int i;
David Ahern35feee12013-09-28 13:12:58 -06002240
Kan Liang91e467b2017-09-10 19:23:14 -07002241 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
2242 threads = &machine->threads[i];
2243 for (nd = rb_first(&threads->entries); nd; nd = rb_next(nd)) {
2244 thread = rb_entry(nd, struct thread, rb_node);
2245 rc = fn(thread, priv);
2246 if (rc != 0)
2247 return rc;
2248 }
David Ahern35feee12013-09-28 13:12:58 -06002249
Kan Liang91e467b2017-09-10 19:23:14 -07002250 list_for_each_entry(thread, &threads->dead, node) {
2251 rc = fn(thread, priv);
2252 if (rc != 0)
2253 return rc;
2254 }
David Ahern35feee12013-09-28 13:12:58 -06002255 }
2256 return rc;
2257}
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03002258
Adrian Huntera5499b32015-05-29 16:33:30 +03002259int machines__for_each_thread(struct machines *machines,
2260 int (*fn)(struct thread *thread, void *p),
2261 void *priv)
2262{
2263 struct rb_node *nd;
2264 int rc = 0;
2265
2266 rc = machine__for_each_thread(&machines->host, fn, priv);
2267 if (rc != 0)
2268 return rc;
2269
2270 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
2271 struct machine *machine = rb_entry(nd, struct machine, rb_node);
2272
2273 rc = machine__for_each_thread(machine, fn, priv);
2274 if (rc != 0)
2275 return rc;
2276 }
2277 return rc;
2278}
2279
Arnaldo Carvalho de Meloa33fbd52013-11-11 11:36:12 -03002280int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool,
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002281 struct target *target, struct thread_map *threads,
Kan Liang9d9cad72015-06-17 09:51:11 -04002282 perf_event__handler_t process, bool data_mmap,
Kan Liang340b47f2017-09-29 07:47:54 -07002283 unsigned int proc_map_timeout,
2284 unsigned int nr_threads_synthesize)
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03002285{
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002286 if (target__has_task(target))
Kan Liang9d9cad72015-06-17 09:51:11 -04002287 return perf_event__synthesize_thread_map(tool, threads, process, machine, data_mmap, proc_map_timeout);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002288 else if (target__has_cpu(target))
Kan Liang340b47f2017-09-29 07:47:54 -07002289 return perf_event__synthesize_threads(tool, process,
2290 machine, data_mmap,
2291 proc_map_timeout,
2292 nr_threads_synthesize);
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03002293 /* command specified */
2294 return 0;
2295}
Adrian Hunterb9d266b2014-07-22 16:17:25 +03002296
2297pid_t machine__get_current_tid(struct machine *machine, int cpu)
2298{
2299 if (cpu < 0 || cpu >= MAX_NR_CPUS || !machine->current_tid)
2300 return -1;
2301
2302 return machine->current_tid[cpu];
2303}
2304
2305int machine__set_current_tid(struct machine *machine, int cpu, pid_t pid,
2306 pid_t tid)
2307{
2308 struct thread *thread;
2309
2310 if (cpu < 0)
2311 return -EINVAL;
2312
2313 if (!machine->current_tid) {
2314 int i;
2315
2316 machine->current_tid = calloc(MAX_NR_CPUS, sizeof(pid_t));
2317 if (!machine->current_tid)
2318 return -ENOMEM;
2319 for (i = 0; i < MAX_NR_CPUS; i++)
2320 machine->current_tid[i] = -1;
2321 }
2322
2323 if (cpu >= MAX_NR_CPUS) {
2324 pr_err("Requested CPU %d too large. ", cpu);
2325 pr_err("Consider raising MAX_NR_CPUS\n");
2326 return -EINVAL;
2327 }
2328
2329 machine->current_tid[cpu] = tid;
2330
2331 thread = machine__findnew_thread(machine, pid, tid);
2332 if (!thread)
2333 return -ENOMEM;
2334
2335 thread->cpu = cpu;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002336 thread__put(thread);
Adrian Hunterb9d266b2014-07-22 16:17:25 +03002337
2338 return 0;
2339}
Adrian Hunterfbe2af42014-08-15 22:08:39 +03002340
2341int machine__get_kernel_start(struct machine *machine)
2342{
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -03002343 struct map *map = machine__kernel_map(machine);
Adrian Hunterfbe2af42014-08-15 22:08:39 +03002344 int err = 0;
2345
2346 /*
2347 * The only addresses above 2^63 are kernel addresses of a 64-bit
2348 * kernel. Note that addresses are unsigned so that on a 32-bit system
2349 * all addresses including kernel addresses are less than 2^32. In
2350 * that case (32-bit system), if the kernel mapping is unknown, all
2351 * addresses will be assumed to be in user space - see
2352 * machine__kernel_ip().
2353 */
2354 machine->kernel_start = 1ULL << 63;
2355 if (map) {
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03002356 err = map__load(map);
Arnaldo Carvalho de Melo4b1303d2017-07-11 16:21:40 -03002357 if (!err)
Adrian Hunterfbe2af42014-08-15 22:08:39 +03002358 machine->kernel_start = map->start;
2359 }
2360 return err;
2361}
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03002362
2363struct dso *machine__findnew_dso(struct machine *machine, const char *filename)
2364{
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03002365 return dsos__findnew(&machine->dsos, filename);
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03002366}
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -03002367
2368char *machine__resolve_kernel_addr(void *vmachine, unsigned long long *addrp, char **modp)
2369{
2370 struct machine *machine = vmachine;
2371 struct map *map;
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03002372 struct symbol *sym = map_groups__find_symbol(&machine->kmaps, MAP__FUNCTION, *addrp, &map);
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -03002373
2374 if (sym == NULL)
2375 return NULL;
2376
2377 *modp = __map__is_kmodule(map) ? (char *)map->dso->short_name : NULL;
2378 *addrp = map->unmap_ip(map, sym->start);
2379 return sym->name;
2380}