blob: 0b4a05c14204f58d88c6e864625ebe9aff8ece27 [file] [log] [blame]
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001#include "callchain.h"
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03002#include "debug.h"
3#include "event.h"
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03004#include "evsel.h"
5#include "hist.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -03006#include "machine.h"
7#include "map.h"
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03008#include "sort.h"
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -03009#include "strlist.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030010#include "thread.h"
Adrian Hunterd027b642014-07-23 14:23:00 +030011#include "vdso.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030012#include <stdbool.h>
Arnaldo Carvalho de Meloc506c962013-12-11 09:15:00 -030013#include <symbol/kallsyms.h>
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030014#include "unwind.h"
Andi Kleen8b7bad52014-11-12 18:05:20 -080015#include "linux/hash.h"
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -030016
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030017static void __machine__remove_thread(struct machine *machine, struct thread *th, bool lock);
18
Arnaldo Carvalho de Meloe167f992014-10-14 15:07:48 -030019static void dsos__init(struct dsos *dsos)
20{
21 INIT_LIST_HEAD(&dsos->head);
22 dsos->root = RB_ROOT;
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -030023 pthread_rwlock_init(&dsos->lock, NULL);
Arnaldo Carvalho de Meloe167f992014-10-14 15:07:48 -030024}
25
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030026int machine__init(struct machine *machine, const char *root_dir, pid_t pid)
27{
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -030028 map_groups__init(&machine->kmaps, machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030029 RB_CLEAR_NODE(&machine->rb_node);
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -030030 dsos__init(&machine->dsos);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030031
32 machine->threads = RB_ROOT;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030033 pthread_rwlock_init(&machine->threads_lock, NULL);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030034 INIT_LIST_HEAD(&machine->dead_threads);
35 machine->last_match = NULL;
36
Adrian Hunterd027b642014-07-23 14:23:00 +030037 machine->vdso_info = NULL;
Arnaldo Carvalho de Melo4cde9982015-09-09 12:25:00 -030038 machine->env = NULL;
Adrian Hunterd027b642014-07-23 14:23:00 +030039
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030040 machine->pid = pid;
41
Adrian Hunter611a5ce2013-08-08 14:32:20 +030042 machine->symbol_filter = NULL;
Jiri Olsa14bd6d22014-01-07 13:47:19 +010043 machine->id_hdr_size = 0;
Adrian Huntercfe1c412014-07-31 09:00:45 +030044 machine->comm_exec = false;
Adrian Hunterfbe2af42014-08-15 22:08:39 +030045 machine->kernel_start = 0;
Adrian Hunter611a5ce2013-08-08 14:32:20 +030046
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030047 machine->root_dir = strdup(root_dir);
48 if (machine->root_dir == NULL)
49 return -ENOMEM;
50
51 if (pid != HOST_KERNEL_ID) {
Adrian Hunter1fcb8762014-07-14 13:02:25 +030052 struct thread *thread = machine__findnew_thread(machine, -1,
Adrian Hunter314add62013-08-27 11:23:03 +030053 pid);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030054 char comm[64];
55
56 if (thread == NULL)
57 return -ENOMEM;
58
59 snprintf(comm, sizeof(comm), "[guest/%d]", pid);
Frederic Weisbecker162f0be2013-09-11 16:18:24 +020060 thread__set_comm(thread, comm, 0);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030061 thread__put(thread);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030062 }
63
Adrian Hunterb9d266b2014-07-22 16:17:25 +030064 machine->current_tid = NULL;
65
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030066 return 0;
67}
68
David Ahern8fb598e2013-09-28 13:13:00 -060069struct machine *machine__new_host(void)
70{
71 struct machine *machine = malloc(sizeof(*machine));
72
73 if (machine != NULL) {
74 machine__init(machine, "", HOST_KERNEL_ID);
75
76 if (machine__create_kernel_maps(machine) < 0)
77 goto out_delete;
78 }
79
80 return machine;
81out_delete:
82 free(machine);
83 return NULL;
84}
85
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -030086static void dsos__purge(struct dsos *dsos)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030087{
88 struct dso *pos, *n;
89
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -030090 pthread_rwlock_wrlock(&dsos->lock);
91
Waiman Long8fa7d872014-09-29 16:07:28 -040092 list_for_each_entry_safe(pos, n, &dsos->head, node) {
Waiman Long4598a0a2014-09-30 13:36:15 -040093 RB_CLEAR_NODE(&pos->rb_node);
Adrian Huntere266a752015-11-13 11:48:30 +020094 pos->root = NULL;
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -030095 list_del_init(&pos->node);
96 dso__put(pos);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030097 }
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -030098
99 pthread_rwlock_unlock(&dsos->lock);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300100}
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300101
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300102static void dsos__exit(struct dsos *dsos)
103{
104 dsos__purge(dsos);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300105 pthread_rwlock_destroy(&dsos->lock);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300106}
107
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300108void machine__delete_threads(struct machine *machine)
109{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300110 struct rb_node *nd;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300111
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300112 pthread_rwlock_wrlock(&machine->threads_lock);
113 nd = rb_first(&machine->threads);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300114 while (nd) {
115 struct thread *t = rb_entry(nd, struct thread, rb_node);
116
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300117 nd = rb_next(nd);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300118 __machine__remove_thread(machine, t, false);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300119 }
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300120 pthread_rwlock_unlock(&machine->threads_lock);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300121}
122
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300123void machine__exit(struct machine *machine)
124{
Masami Hiramatsuebe97292015-11-18 15:40:24 +0900125 machine__destroy_kernel_maps(machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300126 map_groups__exit(&machine->kmaps);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300127 dsos__exit(&machine->dsos);
Arnaldo Carvalho de Melo9a4388c2015-05-29 11:54:08 -0300128 machine__exit_vdso(machine);
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300129 zfree(&machine->root_dir);
Adrian Hunterb9d266b2014-07-22 16:17:25 +0300130 zfree(&machine->current_tid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300131 pthread_rwlock_destroy(&machine->threads_lock);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300132}
133
134void machine__delete(struct machine *machine)
135{
136 machine__exit(machine);
137 free(machine);
138}
139
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300140void machines__init(struct machines *machines)
141{
142 machine__init(&machines->host, "", HOST_KERNEL_ID);
143 machines->guests = RB_ROOT;
Adrian Hunter611a5ce2013-08-08 14:32:20 +0300144 machines->symbol_filter = NULL;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300145}
146
147void machines__exit(struct machines *machines)
148{
149 machine__exit(&machines->host);
150 /* XXX exit guest */
151}
152
153struct machine *machines__add(struct machines *machines, pid_t pid,
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300154 const char *root_dir)
155{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300156 struct rb_node **p = &machines->guests.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300157 struct rb_node *parent = NULL;
158 struct machine *pos, *machine = malloc(sizeof(*machine));
159
160 if (machine == NULL)
161 return NULL;
162
163 if (machine__init(machine, root_dir, pid) != 0) {
164 free(machine);
165 return NULL;
166 }
167
Adrian Hunter611a5ce2013-08-08 14:32:20 +0300168 machine->symbol_filter = machines->symbol_filter;
169
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300170 while (*p != NULL) {
171 parent = *p;
172 pos = rb_entry(parent, struct machine, rb_node);
173 if (pid < pos->pid)
174 p = &(*p)->rb_left;
175 else
176 p = &(*p)->rb_right;
177 }
178
179 rb_link_node(&machine->rb_node, parent, p);
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300180 rb_insert_color(&machine->rb_node, &machines->guests);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300181
182 return machine;
183}
184
Adrian Hunter611a5ce2013-08-08 14:32:20 +0300185void machines__set_symbol_filter(struct machines *machines,
186 symbol_filter_t symbol_filter)
187{
188 struct rb_node *nd;
189
190 machines->symbol_filter = symbol_filter;
191 machines->host.symbol_filter = symbol_filter;
192
193 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
194 struct machine *machine = rb_entry(nd, struct machine, rb_node);
195
196 machine->symbol_filter = symbol_filter;
197 }
198}
199
Adrian Huntercfe1c412014-07-31 09:00:45 +0300200void machines__set_comm_exec(struct machines *machines, bool comm_exec)
201{
202 struct rb_node *nd;
203
204 machines->host.comm_exec = comm_exec;
205
206 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
207 struct machine *machine = rb_entry(nd, struct machine, rb_node);
208
209 machine->comm_exec = comm_exec;
210 }
211}
212
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300213struct machine *machines__find(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300214{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300215 struct rb_node **p = &machines->guests.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300216 struct rb_node *parent = NULL;
217 struct machine *machine;
218 struct machine *default_machine = NULL;
219
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300220 if (pid == HOST_KERNEL_ID)
221 return &machines->host;
222
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300223 while (*p != NULL) {
224 parent = *p;
225 machine = rb_entry(parent, struct machine, rb_node);
226 if (pid < machine->pid)
227 p = &(*p)->rb_left;
228 else if (pid > machine->pid)
229 p = &(*p)->rb_right;
230 else
231 return machine;
232 if (!machine->pid)
233 default_machine = machine;
234 }
235
236 return default_machine;
237}
238
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300239struct machine *machines__findnew(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300240{
241 char path[PATH_MAX];
242 const char *root_dir = "";
243 struct machine *machine = machines__find(machines, pid);
244
245 if (machine && (machine->pid == pid))
246 goto out;
247
248 if ((pid != HOST_KERNEL_ID) &&
249 (pid != DEFAULT_GUEST_KERNEL_ID) &&
250 (symbol_conf.guestmount)) {
251 sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
252 if (access(path, R_OK)) {
253 static struct strlist *seen;
254
255 if (!seen)
Arnaldo Carvalho de Melo4a77e212015-07-20 12:13:34 -0300256 seen = strlist__new(NULL, NULL);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300257
258 if (!strlist__has_entry(seen, path)) {
259 pr_err("Can't access file %s\n", path);
260 strlist__add(seen, path);
261 }
262 machine = NULL;
263 goto out;
264 }
265 root_dir = path;
266 }
267
268 machine = machines__add(machines, pid, root_dir);
269out:
270 return machine;
271}
272
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300273void machines__process_guests(struct machines *machines,
274 machine__process_t process, void *data)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300275{
276 struct rb_node *nd;
277
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300278 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300279 struct machine *pos = rb_entry(nd, struct machine, rb_node);
280 process(pos, data);
281 }
282}
283
284char *machine__mmap_name(struct machine *machine, char *bf, size_t size)
285{
286 if (machine__is_host(machine))
287 snprintf(bf, size, "[%s]", "kernel.kallsyms");
288 else if (machine__is_default_guest(machine))
289 snprintf(bf, size, "[%s]", "guest.kernel.kallsyms");
290 else {
291 snprintf(bf, size, "[%s.%d]", "guest.kernel.kallsyms",
292 machine->pid);
293 }
294
295 return bf;
296}
297
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300298void machines__set_id_hdr_size(struct machines *machines, u16 id_hdr_size)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300299{
300 struct rb_node *node;
301 struct machine *machine;
302
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300303 machines->host.id_hdr_size = id_hdr_size;
304
305 for (node = rb_first(&machines->guests); node; node = rb_next(node)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300306 machine = rb_entry(node, struct machine, rb_node);
307 machine->id_hdr_size = id_hdr_size;
308 }
309
310 return;
311}
312
Adrian Hunter29ce3612014-07-16 11:07:13 +0300313static void machine__update_thread_pid(struct machine *machine,
314 struct thread *th, pid_t pid)
315{
316 struct thread *leader;
317
318 if (pid == th->pid_ || pid == -1 || th->pid_ != -1)
319 return;
320
321 th->pid_ = pid;
322
323 if (th->pid_ == th->tid)
324 return;
325
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300326 leader = __machine__findnew_thread(machine, th->pid_, th->pid_);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300327 if (!leader)
328 goto out_err;
329
330 if (!leader->mg)
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -0300331 leader->mg = map_groups__new(machine);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300332
333 if (!leader->mg)
334 goto out_err;
335
336 if (th->mg == leader->mg)
337 return;
338
339 if (th->mg) {
340 /*
341 * Maps are created from MMAP events which provide the pid and
342 * tid. Consequently there never should be any maps on a thread
343 * with an unknown pid. Just print an error if there are.
344 */
345 if (!map_groups__empty(th->mg))
346 pr_err("Discarding thread maps for %d:%d\n",
347 th->pid_, th->tid);
Arnaldo Carvalho de Melo8e160b22015-05-19 20:07:14 -0300348 map_groups__put(th->mg);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300349 }
350
351 th->mg = map_groups__get(leader->mg);
352
353 return;
354
355out_err:
356 pr_err("Failed to join map groups for %d:%d\n", th->pid_, th->tid);
357}
358
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300359static struct thread *____machine__findnew_thread(struct machine *machine,
360 pid_t pid, pid_t tid,
361 bool create)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300362{
363 struct rb_node **p = &machine->threads.rb_node;
364 struct rb_node *parent = NULL;
365 struct thread *th;
366
367 /*
Adrian Hunter38051232013-07-04 16:20:31 +0300368 * Front-end cache - TID lookups come in blocks,
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300369 * so most of the time we dont have to look up
370 * the full rbtree:
371 */
Adrian Hunter29ce3612014-07-16 11:07:13 +0300372 th = machine->last_match;
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300373 if (th != NULL) {
374 if (th->tid == tid) {
375 machine__update_thread_pid(machine, th, pid);
376 return th;
377 }
378
Arnaldo Carvalho de Melo0ceb8f62015-05-11 18:08:12 -0300379 machine->last_match = NULL;
Adrian Hunter99d725f2013-08-26 16:00:19 +0300380 }
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300381
382 while (*p != NULL) {
383 parent = *p;
384 th = rb_entry(parent, struct thread, rb_node);
385
Adrian Hunter38051232013-07-04 16:20:31 +0300386 if (th->tid == tid) {
Arnaldo Carvalho de Melo0ceb8f62015-05-11 18:08:12 -0300387 machine->last_match = th;
Adrian Hunter29ce3612014-07-16 11:07:13 +0300388 machine__update_thread_pid(machine, th, pid);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300389 return th;
390 }
391
Adrian Hunter38051232013-07-04 16:20:31 +0300392 if (tid < th->tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300393 p = &(*p)->rb_left;
394 else
395 p = &(*p)->rb_right;
396 }
397
398 if (!create)
399 return NULL;
400
Adrian Hunter99d725f2013-08-26 16:00:19 +0300401 th = thread__new(pid, tid);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300402 if (th != NULL) {
403 rb_link_node(&th->rb_node, parent, p);
404 rb_insert_color(&th->rb_node, &machine->threads);
Jiri Olsacddcef62014-04-09 20:54:29 +0200405
406 /*
407 * We have to initialize map_groups separately
408 * after rb tree is updated.
409 *
410 * The reason is that we call machine__findnew_thread
411 * within thread__init_map_groups to find the thread
412 * leader and that would screwed the rb tree.
413 */
Adrian Hunter418029b2014-07-16 10:19:44 +0300414 if (thread__init_map_groups(th, machine)) {
Arnaldo Carvalho de Melo0170b142015-05-25 15:23:05 -0300415 rb_erase_init(&th->rb_node, &machine->threads);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300416 RB_CLEAR_NODE(&th->rb_node);
Adrian Hunter418029b2014-07-16 10:19:44 +0300417 thread__delete(th);
Jiri Olsacddcef62014-04-09 20:54:29 +0200418 return NULL;
Adrian Hunter418029b2014-07-16 10:19:44 +0300419 }
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300420 /*
421 * It is now in the rbtree, get a ref
422 */
423 thread__get(th);
Arnaldo Carvalho de Melo0ceb8f62015-05-11 18:08:12 -0300424 machine->last_match = th;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300425 }
426
427 return th;
428}
429
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300430struct thread *__machine__findnew_thread(struct machine *machine, pid_t pid, pid_t tid)
431{
432 return ____machine__findnew_thread(machine, pid, tid, true);
433}
434
Adrian Hunter314add62013-08-27 11:23:03 +0300435struct thread *machine__findnew_thread(struct machine *machine, pid_t pid,
436 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300437{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300438 struct thread *th;
439
440 pthread_rwlock_wrlock(&machine->threads_lock);
441 th = thread__get(__machine__findnew_thread(machine, pid, tid));
442 pthread_rwlock_unlock(&machine->threads_lock);
443 return th;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300444}
445
Jiri Olsad75e6092014-03-14 15:00:03 +0100446struct thread *machine__find_thread(struct machine *machine, pid_t pid,
447 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300448{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300449 struct thread *th;
450 pthread_rwlock_rdlock(&machine->threads_lock);
451 th = thread__get(____machine__findnew_thread(machine, pid, tid, false));
452 pthread_rwlock_unlock(&machine->threads_lock);
453 return th;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300454}
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300455
Adrian Huntercfe1c412014-07-31 09:00:45 +0300456struct comm *machine__thread_exec_comm(struct machine *machine,
457 struct thread *thread)
458{
459 if (machine->comm_exec)
460 return thread__exec_comm(thread);
461 else
462 return thread__comm(thread);
463}
464
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200465int machine__process_comm_event(struct machine *machine, union perf_event *event,
466 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300467{
Adrian Hunter314add62013-08-27 11:23:03 +0300468 struct thread *thread = machine__findnew_thread(machine,
469 event->comm.pid,
470 event->comm.tid);
Adrian Hunter65de51f2014-07-31 09:00:44 +0300471 bool exec = event->header.misc & PERF_RECORD_MISC_COMM_EXEC;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300472 int err = 0;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300473
Adrian Huntercfe1c412014-07-31 09:00:45 +0300474 if (exec)
475 machine->comm_exec = true;
476
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300477 if (dump_trace)
478 perf_event__fprintf_comm(event, stdout);
479
Adrian Hunter65de51f2014-07-31 09:00:44 +0300480 if (thread == NULL ||
481 __thread__set_comm(thread, event->comm.comm, sample->time, exec)) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300482 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300483 err = -1;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300484 }
485
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300486 thread__put(thread);
487
488 return err;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300489}
490
491int machine__process_lost_event(struct machine *machine __maybe_unused,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200492 union perf_event *event, struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300493{
494 dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
495 event->lost.id, event->lost.lost);
496 return 0;
497}
498
Kan Liangc4937a92015-05-10 15:13:15 -0400499int machine__process_lost_samples_event(struct machine *machine __maybe_unused,
500 union perf_event *event, struct perf_sample *sample)
501{
502 dump_printf(": id:%" PRIu64 ": lost samples :%" PRIu64 "\n",
503 sample->id, event->lost_samples.lost);
504 return 0;
505}
506
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300507static struct dso *machine__findnew_module_dso(struct machine *machine,
508 struct kmod_path *m,
509 const char *filename)
Jiri Olsada17ea32015-02-12 22:10:52 +0100510{
511 struct dso *dso;
Jiri Olsada17ea32015-02-12 22:10:52 +0100512
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300513 pthread_rwlock_wrlock(&machine->dsos.lock);
514
515 dso = __dsos__find(&machine->dsos, m->name, true);
Jiri Olsada17ea32015-02-12 22:10:52 +0100516 if (!dso) {
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300517 dso = __dsos__addnew(&machine->dsos, m->name);
Jiri Olsada17ea32015-02-12 22:10:52 +0100518 if (dso == NULL)
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300519 goto out_unlock;
Jiri Olsada17ea32015-02-12 22:10:52 +0100520
521 if (machine__is_host(machine))
522 dso->symtab_type = DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE;
523 else
524 dso->symtab_type = DSO_BINARY_TYPE__GUEST_KMODULE;
525
526 /* _KMODULE_COMP should be next to _KMODULE */
Jiri Olsaca333802015-02-17 17:29:57 +0100527 if (m->kmod && m->comp)
Jiri Olsada17ea32015-02-12 22:10:52 +0100528 dso->symtab_type++;
Jiri Olsaca333802015-02-17 17:29:57 +0100529
530 dso__set_short_name(dso, strdup(m->name), true);
531 dso__set_long_name(dso, strdup(filename), true);
Jiri Olsada17ea32015-02-12 22:10:52 +0100532 }
533
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300534 dso__get(dso);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300535out_unlock:
536 pthread_rwlock_unlock(&machine->dsos.lock);
Jiri Olsada17ea32015-02-12 22:10:52 +0100537 return dso;
538}
539
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300540int machine__process_aux_event(struct machine *machine __maybe_unused,
541 union perf_event *event)
542{
543 if (dump_trace)
544 perf_event__fprintf_aux(event, stdout);
545 return 0;
546}
547
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300548int machine__process_itrace_start_event(struct machine *machine __maybe_unused,
549 union perf_event *event)
550{
551 if (dump_trace)
552 perf_event__fprintf_itrace_start(event, stdout);
553 return 0;
554}
555
Adrian Hunter02860392015-07-21 12:44:03 +0300556int machine__process_switch_event(struct machine *machine __maybe_unused,
557 union perf_event *event)
558{
559 if (dump_trace)
560 perf_event__fprintf_switch(event, stdout);
561 return 0;
562}
563
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300564struct map *machine__findnew_module_map(struct machine *machine, u64 start,
565 const char *filename)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300566{
Jiri Olsaca333802015-02-17 17:29:57 +0100567 struct map *map = NULL;
568 struct dso *dso;
569 struct kmod_path m;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300570
Jiri Olsaca333802015-02-17 17:29:57 +0100571 if (kmod_path__parse_name(&m, filename))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300572 return NULL;
573
Jiri Olsabc84f462015-02-17 17:31:18 +0100574 map = map_groups__find_by_name(&machine->kmaps, MAP__FUNCTION,
575 m.name);
576 if (map)
577 goto out;
578
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300579 dso = machine__findnew_module_dso(machine, &m, filename);
Jiri Olsaca333802015-02-17 17:29:57 +0100580 if (dso == NULL)
581 goto out;
582
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300583 map = map__new2(start, dso, MAP__FUNCTION);
584 if (map == NULL)
Jiri Olsaca333802015-02-17 17:29:57 +0100585 goto out;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300586
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300587 map_groups__insert(&machine->kmaps, map);
Jiri Olsaca333802015-02-17 17:29:57 +0100588
Masami Hiramatsu9afcb422015-11-18 15:40:20 +0900589 /* Put the map here because map_groups__insert alread got it */
590 map__put(map);
Jiri Olsaca333802015-02-17 17:29:57 +0100591out:
592 free(m.name);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300593 return map;
594}
595
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300596size_t machines__fprintf_dsos(struct machines *machines, FILE *fp)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300597{
598 struct rb_node *nd;
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300599 size_t ret = __dsos__fprintf(&machines->host.dsos.head, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300600
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300601 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300602 struct machine *pos = rb_entry(nd, struct machine, rb_node);
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300603 ret += __dsos__fprintf(&pos->dsos.head, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300604 }
605
606 return ret;
607}
608
Waiman Long8fa7d872014-09-29 16:07:28 -0400609size_t machine__fprintf_dsos_buildid(struct machine *m, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300610 bool (skip)(struct dso *dso, int parm), int parm)
611{
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300612 return __dsos__fprintf_buildid(&m->dsos.head, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300613}
614
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300615size_t machines__fprintf_dsos_buildid(struct machines *machines, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300616 bool (skip)(struct dso *dso, int parm), int parm)
617{
618 struct rb_node *nd;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300619 size_t ret = machine__fprintf_dsos_buildid(&machines->host, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300620
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300621 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300622 struct machine *pos = rb_entry(nd, struct machine, rb_node);
623 ret += machine__fprintf_dsos_buildid(pos, fp, skip, parm);
624 }
625 return ret;
626}
627
628size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp)
629{
630 int i;
631 size_t printed = 0;
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300632 struct dso *kdso = machine__kernel_map(machine)->dso;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300633
634 if (kdso->has_build_id) {
635 char filename[PATH_MAX];
636 if (dso__build_id_filename(kdso, filename, sizeof(filename)))
637 printed += fprintf(fp, "[0] %s\n", filename);
638 }
639
640 for (i = 0; i < vmlinux_path__nr_entries; ++i)
641 printed += fprintf(fp, "[%d] %s\n",
642 i + kdso->has_build_id, vmlinux_path[i]);
643
644 return printed;
645}
646
647size_t machine__fprintf(struct machine *machine, FILE *fp)
648{
649 size_t ret = 0;
650 struct rb_node *nd;
651
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300652 pthread_rwlock_rdlock(&machine->threads_lock);
653
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300654 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
655 struct thread *pos = rb_entry(nd, struct thread, rb_node);
656
657 ret += thread__fprintf(pos, fp);
658 }
659
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300660 pthread_rwlock_unlock(&machine->threads_lock);
661
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300662 return ret;
663}
664
665static struct dso *machine__get_kernel(struct machine *machine)
666{
667 const char *vmlinux_name = NULL;
668 struct dso *kernel;
669
670 if (machine__is_host(machine)) {
671 vmlinux_name = symbol_conf.vmlinux_name;
672 if (!vmlinux_name)
673 vmlinux_name = "[kernel.kallsyms]";
674
Arnaldo Carvalho de Melo459ce512015-05-28 12:40:55 -0300675 kernel = machine__findnew_kernel(machine, vmlinux_name,
676 "[kernel]", DSO_TYPE_KERNEL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300677 } else {
678 char bf[PATH_MAX];
679
680 if (machine__is_default_guest(machine))
681 vmlinux_name = symbol_conf.default_guest_vmlinux_name;
682 if (!vmlinux_name)
683 vmlinux_name = machine__mmap_name(machine, bf,
684 sizeof(bf));
685
Arnaldo Carvalho de Melo459ce512015-05-28 12:40:55 -0300686 kernel = machine__findnew_kernel(machine, vmlinux_name,
687 "[guest.kernel]",
688 DSO_TYPE_GUEST_KERNEL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300689 }
690
691 if (kernel != NULL && (!kernel->has_build_id))
692 dso__read_running_kernel_build_id(kernel, machine);
693
694 return kernel;
695}
696
697struct process_args {
698 u64 start;
699};
700
Adrian Hunter15a0a872014-01-29 16:14:38 +0200701static void machine__get_kallsyms_filename(struct machine *machine, char *buf,
702 size_t bufsz)
703{
704 if (machine__is_default_guest(machine))
705 scnprintf(buf, bufsz, "%s", symbol_conf.default_guest_kallsyms);
706 else
707 scnprintf(buf, bufsz, "%s/proc/kallsyms", machine->root_dir);
708}
709
Simon Quea93f0e52014-06-16 11:32:09 -0700710const char *ref_reloc_sym_names[] = {"_text", "_stext", NULL};
711
712/* Figure out the start address of kernel map from /proc/kallsyms.
713 * Returns the name of the start symbol in *symbol_name. Pass in NULL as
714 * symbol_name if it's not that important.
715 */
Adrian Hunter4b993752014-08-15 22:08:38 +0300716static u64 machine__get_running_kernel_start(struct machine *machine,
717 const char **symbol_name)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300718{
Adrian Hunter15a0a872014-01-29 16:14:38 +0200719 char filename[PATH_MAX];
Simon Quea93f0e52014-06-16 11:32:09 -0700720 int i;
721 const char *name;
722 u64 addr = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300723
Adrian Hunter15a0a872014-01-29 16:14:38 +0200724 machine__get_kallsyms_filename(machine, filename, PATH_MAX);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300725
726 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
727 return 0;
728
Simon Quea93f0e52014-06-16 11:32:09 -0700729 for (i = 0; (name = ref_reloc_sym_names[i]) != NULL; i++) {
730 addr = kallsyms__get_function_start(filename, name);
731 if (addr)
732 break;
733 }
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300734
Simon Quea93f0e52014-06-16 11:32:09 -0700735 if (symbol_name)
736 *symbol_name = name;
737
738 return addr;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300739}
740
741int __machine__create_kernel_maps(struct machine *machine, struct dso *kernel)
742{
743 enum map_type type;
Adrian Hunter4b993752014-08-15 22:08:38 +0300744 u64 start = machine__get_running_kernel_start(machine, NULL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300745
746 for (type = 0; type < MAP__NR_TYPES; ++type) {
747 struct kmap *kmap;
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300748 struct map *map;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300749
750 machine->vmlinux_maps[type] = map__new2(start, kernel, type);
751 if (machine->vmlinux_maps[type] == NULL)
752 return -1;
753
754 machine->vmlinux_maps[type]->map_ip =
755 machine->vmlinux_maps[type]->unmap_ip =
756 identity__map_ip;
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300757 map = __machine__kernel_map(machine, type);
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300758 kmap = map__kmap(map);
Wang Nanba927322015-04-07 08:22:45 +0000759 if (!kmap)
760 return -1;
761
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300762 kmap->kmaps = &machine->kmaps;
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300763 map_groups__insert(&machine->kmaps, map);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300764 }
765
766 return 0;
767}
768
769void machine__destroy_kernel_maps(struct machine *machine)
770{
771 enum map_type type;
772
773 for (type = 0; type < MAP__NR_TYPES; ++type) {
774 struct kmap *kmap;
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300775 struct map *map = __machine__kernel_map(machine, type);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300776
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300777 if (map == NULL)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300778 continue;
779
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300780 kmap = map__kmap(map);
781 map_groups__remove(&machine->kmaps, map);
Wang Nanba927322015-04-07 08:22:45 +0000782 if (kmap && kmap->ref_reloc_sym) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300783 /*
784 * ref_reloc_sym is shared among all maps, so free just
785 * on one of them.
786 */
787 if (type == MAP__FUNCTION) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300788 zfree((char **)&kmap->ref_reloc_sym->name);
789 zfree(&kmap->ref_reloc_sym);
790 } else
791 kmap->ref_reloc_sym = NULL;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300792 }
793
Masami Hiramatsue96e4072015-11-18 15:40:22 +0900794 map__put(machine->vmlinux_maps[type]);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300795 machine->vmlinux_maps[type] = NULL;
796 }
797}
798
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300799int machines__create_guest_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300800{
801 int ret = 0;
802 struct dirent **namelist = NULL;
803 int i, items = 0;
804 char path[PATH_MAX];
805 pid_t pid;
806 char *endp;
807
808 if (symbol_conf.default_guest_vmlinux_name ||
809 symbol_conf.default_guest_modules ||
810 symbol_conf.default_guest_kallsyms) {
811 machines__create_kernel_maps(machines, DEFAULT_GUEST_KERNEL_ID);
812 }
813
814 if (symbol_conf.guestmount) {
815 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
816 if (items <= 0)
817 return -ENOENT;
818 for (i = 0; i < items; i++) {
819 if (!isdigit(namelist[i]->d_name[0])) {
820 /* Filter out . and .. */
821 continue;
822 }
823 pid = (pid_t)strtol(namelist[i]->d_name, &endp, 10);
824 if ((*endp != '\0') ||
825 (endp == namelist[i]->d_name) ||
826 (errno == ERANGE)) {
827 pr_debug("invalid directory (%s). Skipping.\n",
828 namelist[i]->d_name);
829 continue;
830 }
831 sprintf(path, "%s/%s/proc/kallsyms",
832 symbol_conf.guestmount,
833 namelist[i]->d_name);
834 ret = access(path, R_OK);
835 if (ret) {
836 pr_debug("Can't access file %s\n", path);
837 goto failure;
838 }
839 machines__create_kernel_maps(machines, pid);
840 }
841failure:
842 free(namelist);
843 }
844
845 return ret;
846}
847
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300848void machines__destroy_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300849{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300850 struct rb_node *next = rb_first(&machines->guests);
851
852 machine__destroy_kernel_maps(&machines->host);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300853
854 while (next) {
855 struct machine *pos = rb_entry(next, struct machine, rb_node);
856
857 next = rb_next(&pos->rb_node);
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300858 rb_erase(&pos->rb_node, &machines->guests);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300859 machine__delete(pos);
860 }
861}
862
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300863int machines__create_kernel_maps(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300864{
865 struct machine *machine = machines__findnew(machines, pid);
866
867 if (machine == NULL)
868 return -1;
869
870 return machine__create_kernel_maps(machine);
871}
872
873int machine__load_kallsyms(struct machine *machine, const char *filename,
874 enum map_type type, symbol_filter_t filter)
875{
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300876 struct map *map = machine__kernel_map(machine);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300877 int ret = dso__load_kallsyms(map->dso, filename, map, filter);
878
879 if (ret > 0) {
880 dso__set_loaded(map->dso, type);
881 /*
882 * Since /proc/kallsyms will have multiple sessions for the
883 * kernel, with modules between them, fixup the end of all
884 * sections.
885 */
886 __map_groups__fixup_end(&machine->kmaps, type);
887 }
888
889 return ret;
890}
891
892int machine__load_vmlinux_path(struct machine *machine, enum map_type type,
893 symbol_filter_t filter)
894{
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300895 struct map *map = machine__kernel_map(machine);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300896 int ret = dso__load_vmlinux_path(map->dso, map, filter);
897
Adrian Hunter39b12f782013-08-07 14:38:47 +0300898 if (ret > 0)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300899 dso__set_loaded(map->dso, type);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300900
901 return ret;
902}
903
904static void map_groups__fixup_end(struct map_groups *mg)
905{
906 int i;
907 for (i = 0; i < MAP__NR_TYPES; ++i)
908 __map_groups__fixup_end(mg, i);
909}
910
911static char *get_kernel_version(const char *root_dir)
912{
913 char version[PATH_MAX];
914 FILE *file;
915 char *name, *tmp;
916 const char *prefix = "Linux version ";
917
918 sprintf(version, "%s/proc/version", root_dir);
919 file = fopen(version, "r");
920 if (!file)
921 return NULL;
922
923 version[0] = '\0';
924 tmp = fgets(version, sizeof(version), file);
925 fclose(file);
926
927 name = strstr(version, prefix);
928 if (!name)
929 return NULL;
930 name += strlen(prefix);
931 tmp = strchr(name, ' ');
932 if (tmp)
933 *tmp = '\0';
934
935 return strdup(name);
936}
937
Jiri Olsabb58a8a2015-02-12 22:20:01 +0100938static bool is_kmod_dso(struct dso *dso)
939{
940 return dso->symtab_type == DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE ||
941 dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE;
942}
943
944static int map_groups__set_module_path(struct map_groups *mg, const char *path,
945 struct kmod_path *m)
946{
947 struct map *map;
948 char *long_name;
949
950 map = map_groups__find_by_name(mg, MAP__FUNCTION, m->name);
951 if (map == NULL)
952 return 0;
953
954 long_name = strdup(path);
955 if (long_name == NULL)
956 return -ENOMEM;
957
958 dso__set_long_name(map->dso, long_name, true);
959 dso__kernel_module_get_build_id(map->dso, "");
960
961 /*
962 * Full name could reveal us kmod compression, so
963 * we need to update the symtab_type if needed.
964 */
965 if (m->comp && is_kmod_dso(map->dso))
966 map->dso->symtab_type++;
967
968 return 0;
969}
970
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300971static int map_groups__set_modules_path_dir(struct map_groups *mg,
Richard Yao61d42902014-04-26 13:17:55 -0400972 const char *dir_name, int depth)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300973{
974 struct dirent *dent;
975 DIR *dir = opendir(dir_name);
976 int ret = 0;
977
978 if (!dir) {
979 pr_debug("%s: cannot open %s dir\n", __func__, dir_name);
980 return -1;
981 }
982
983 while ((dent = readdir(dir)) != NULL) {
984 char path[PATH_MAX];
985 struct stat st;
986
987 /*sshfs might return bad dent->d_type, so we have to stat*/
988 snprintf(path, sizeof(path), "%s/%s", dir_name, dent->d_name);
989 if (stat(path, &st))
990 continue;
991
992 if (S_ISDIR(st.st_mode)) {
993 if (!strcmp(dent->d_name, ".") ||
994 !strcmp(dent->d_name, ".."))
995 continue;
996
Richard Yao61d42902014-04-26 13:17:55 -0400997 /* Do not follow top-level source and build symlinks */
998 if (depth == 0) {
999 if (!strcmp(dent->d_name, "source") ||
1000 !strcmp(dent->d_name, "build"))
1001 continue;
1002 }
1003
1004 ret = map_groups__set_modules_path_dir(mg, path,
1005 depth + 1);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001006 if (ret < 0)
1007 goto out;
1008 } else {
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001009 struct kmod_path m;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001010
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001011 ret = kmod_path__parse_name(&m, dent->d_name);
1012 if (ret)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001013 goto out;
Jiri Olsabb58a8a2015-02-12 22:20:01 +01001014
1015 if (m.kmod)
1016 ret = map_groups__set_module_path(mg, path, &m);
1017
1018 free(m.name);
1019
1020 if (ret)
1021 goto out;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001022 }
1023 }
1024
1025out:
1026 closedir(dir);
1027 return ret;
1028}
1029
1030static int machine__set_modules_path(struct machine *machine)
1031{
1032 char *version;
1033 char modules_path[PATH_MAX];
1034
1035 version = get_kernel_version(machine->root_dir);
1036 if (!version)
1037 return -1;
1038
Richard Yao61d42902014-04-26 13:17:55 -04001039 snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s",
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001040 machine->root_dir, version);
1041 free(version);
1042
Richard Yao61d42902014-04-26 13:17:55 -04001043 return map_groups__set_modules_path_dir(&machine->kmaps, modules_path, 0);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001044}
1045
Adrian Hunter316d70d2013-10-08 11:45:48 +03001046static int machine__create_module(void *arg, const char *name, u64 start)
1047{
1048 struct machine *machine = arg;
1049 struct map *map;
1050
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -03001051 map = machine__findnew_module_map(machine, start, name);
Adrian Hunter316d70d2013-10-08 11:45:48 +03001052 if (map == NULL)
1053 return -1;
1054
1055 dso__kernel_module_get_build_id(map->dso, machine->root_dir);
1056
1057 return 0;
1058}
1059
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001060static int machine__create_modules(struct machine *machine)
1061{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001062 const char *modules;
1063 char path[PATH_MAX];
1064
Adrian Hunterf4be9042013-09-22 13:22:09 +03001065 if (machine__is_default_guest(machine)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001066 modules = symbol_conf.default_guest_modules;
Adrian Hunterf4be9042013-09-22 13:22:09 +03001067 } else {
1068 snprintf(path, PATH_MAX, "%s/proc/modules", machine->root_dir);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001069 modules = path;
1070 }
1071
Adrian Hunteraa7fe3b2013-09-22 13:22:09 +03001072 if (symbol__restricted_filename(modules, "/proc/modules"))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001073 return -1;
1074
Adrian Hunter316d70d2013-10-08 11:45:48 +03001075 if (modules__parse(modules, machine, machine__create_module))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001076 return -1;
1077
Adrian Hunter316d70d2013-10-08 11:45:48 +03001078 if (!machine__set_modules_path(machine))
1079 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001080
Adrian Hunter316d70d2013-10-08 11:45:48 +03001081 pr_debug("Problems setting modules path maps, continuing anyway...\n");
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001082
Jason Wessel8f76fcd2013-07-15 15:27:53 -05001083 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001084}
1085
1086int machine__create_kernel_maps(struct machine *machine)
1087{
1088 struct dso *kernel = machine__get_kernel(machine);
Adrian Hunter5512cf22014-01-29 16:14:39 +02001089 const char *name;
Adrian Hunter4b993752014-08-15 22:08:38 +03001090 u64 addr = machine__get_running_kernel_start(machine, &name);
Masami Hiramatsu1154c952015-11-18 15:40:33 +09001091 int ret;
1092
1093 if (!addr || kernel == NULL)
Adrian Hunter5512cf22014-01-29 16:14:39 +02001094 return -1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001095
Masami Hiramatsu1154c952015-11-18 15:40:33 +09001096 ret = __machine__create_kernel_maps(machine, kernel);
1097 dso__put(kernel);
1098 if (ret < 0)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001099 return -1;
1100
1101 if (symbol_conf.use_modules && machine__create_modules(machine) < 0) {
1102 if (machine__is_host(machine))
1103 pr_debug("Problems creating module maps, "
1104 "continuing anyway...\n");
1105 else
1106 pr_debug("Problems creating module maps for guest %d, "
1107 "continuing anyway...\n", machine->pid);
1108 }
1109
1110 /*
1111 * Now that we have all the maps created, just set the ->end of them:
1112 */
1113 map_groups__fixup_end(&machine->kmaps);
Adrian Hunter5512cf22014-01-29 16:14:39 +02001114
1115 if (maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps, name,
1116 addr)) {
1117 machine__destroy_kernel_maps(machine);
1118 return -1;
1119 }
1120
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001121 return 0;
1122}
1123
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001124static void machine__set_kernel_mmap_len(struct machine *machine,
1125 union perf_event *event)
1126{
Namhyung Kim4552cf0f2012-11-07 16:27:10 +09001127 int i;
1128
1129 for (i = 0; i < MAP__NR_TYPES; i++) {
1130 machine->vmlinux_maps[i]->start = event->mmap.start;
1131 machine->vmlinux_maps[i]->end = (event->mmap.start +
1132 event->mmap.len);
1133 /*
1134 * Be a bit paranoid here, some perf.data file came with
1135 * a zero sized synthesized MMAP event for the kernel.
1136 */
1137 if (machine->vmlinux_maps[i]->end == 0)
1138 machine->vmlinux_maps[i]->end = ~0ULL;
1139 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001140}
1141
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001142static bool machine__uses_kcore(struct machine *machine)
1143{
1144 struct dso *dso;
1145
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -03001146 list_for_each_entry(dso, &machine->dsos.head, node) {
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001147 if (dso__is_kcore(dso))
1148 return true;
1149 }
1150
1151 return false;
1152}
1153
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001154static int machine__process_kernel_mmap_event(struct machine *machine,
1155 union perf_event *event)
1156{
1157 struct map *map;
1158 char kmmap_prefix[PATH_MAX];
1159 enum dso_kernel_type kernel_type;
1160 bool is_kernel_mmap;
1161
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001162 /* If we have maps from kcore then we do not need or want any others */
1163 if (machine__uses_kcore(machine))
1164 return 0;
1165
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001166 machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
1167 if (machine__is_host(machine))
1168 kernel_type = DSO_TYPE_KERNEL;
1169 else
1170 kernel_type = DSO_TYPE_GUEST_KERNEL;
1171
1172 is_kernel_mmap = memcmp(event->mmap.filename,
1173 kmmap_prefix,
1174 strlen(kmmap_prefix) - 1) == 0;
1175 if (event->mmap.filename[0] == '/' ||
1176 (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -03001177 map = machine__findnew_module_map(machine, event->mmap.start,
1178 event->mmap.filename);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001179 if (map == NULL)
1180 goto out_problem;
1181
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001182 map->end = map->start + event->mmap.len;
1183 } else if (is_kernel_mmap) {
1184 const char *symbol_name = (event->mmap.filename +
1185 strlen(kmmap_prefix));
1186 /*
1187 * Should be there already, from the build-id table in
1188 * the header.
1189 */
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001190 struct dso *kernel = NULL;
1191 struct dso *dso;
1192
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001193 pthread_rwlock_rdlock(&machine->dsos.lock);
1194
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -03001195 list_for_each_entry(dso, &machine->dsos.head, node) {
Wang Nan1f121b02015-06-03 08:52:21 +00001196
1197 /*
1198 * The cpumode passed to is_kernel_module is not the
1199 * cpumode of *this* event. If we insist on passing
1200 * correct cpumode to is_kernel_module, we should
1201 * record the cpumode when we adding this dso to the
1202 * linked list.
1203 *
1204 * However we don't really need passing correct
1205 * cpumode. We know the correct cpumode must be kernel
1206 * mode (if not, we should not link it onto kernel_dsos
1207 * list).
1208 *
1209 * Therefore, we pass PERF_RECORD_MISC_CPUMODE_UNKNOWN.
1210 * is_kernel_module() treats it as a kernel cpumode.
1211 */
1212
1213 if (!dso->kernel ||
1214 is_kernel_module(dso->long_name,
1215 PERF_RECORD_MISC_CPUMODE_UNKNOWN))
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001216 continue;
1217
Wang Nan1f121b02015-06-03 08:52:21 +00001218
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001219 kernel = dso;
1220 break;
1221 }
1222
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001223 pthread_rwlock_unlock(&machine->dsos.lock);
1224
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001225 if (kernel == NULL)
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03001226 kernel = machine__findnew_dso(machine, kmmap_prefix);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001227 if (kernel == NULL)
1228 goto out_problem;
1229
1230 kernel->kernel = kernel_type;
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001231 if (__machine__create_kernel_maps(machine, kernel) < 0) {
1232 dso__put(kernel);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001233 goto out_problem;
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001234 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001235
Namhyung Kim330dfa22014-11-18 13:30:28 +09001236 if (strstr(kernel->long_name, "vmlinux"))
1237 dso__set_short_name(kernel, "[kernel.vmlinux]", false);
Namhyung Kim96d78052014-11-04 10:14:34 +09001238
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001239 machine__set_kernel_mmap_len(machine, event);
1240
1241 /*
1242 * Avoid using a zero address (kptr_restrict) for the ref reloc
1243 * symbol. Effectively having zero here means that at record
1244 * time /proc/sys/kernel/kptr_restrict was non zero.
1245 */
1246 if (event->mmap.pgoff != 0) {
1247 maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps,
1248 symbol_name,
1249 event->mmap.pgoff);
1250 }
1251
1252 if (machine__is_default_guest(machine)) {
1253 /*
1254 * preload dso of guest kernel and modules
1255 */
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -03001256 dso__load(kernel, machine__kernel_map(machine), NULL);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001257 }
1258 }
1259 return 0;
1260out_problem:
1261 return -1;
1262}
1263
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001264int machine__process_mmap2_event(struct machine *machine,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001265 union perf_event *event,
1266 struct perf_sample *sample __maybe_unused)
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001267{
1268 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1269 struct thread *thread;
1270 struct map *map;
1271 enum map_type type;
1272 int ret = 0;
1273
1274 if (dump_trace)
1275 perf_event__fprintf_mmap2(event, stdout);
1276
1277 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1278 cpumode == PERF_RECORD_MISC_KERNEL) {
1279 ret = machine__process_kernel_mmap_event(machine, event);
1280 if (ret < 0)
1281 goto out_problem;
1282 return 0;
1283 }
1284
1285 thread = machine__findnew_thread(machine, event->mmap2.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001286 event->mmap2.tid);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001287 if (thread == NULL)
1288 goto out_problem;
1289
1290 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1291 type = MAP__VARIABLE;
1292 else
1293 type = MAP__FUNCTION;
1294
Adrian Hunter2a030682014-07-22 16:17:53 +03001295 map = map__new(machine, event->mmap2.start,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001296 event->mmap2.len, event->mmap2.pgoff,
1297 event->mmap2.pid, event->mmap2.maj,
1298 event->mmap2.min, event->mmap2.ino,
1299 event->mmap2.ino_generation,
Don Zickus7ef80702014-05-19 15:13:49 -04001300 event->mmap2.prot,
1301 event->mmap2.flags,
Adrian Hunter5835edd2014-07-22 16:18:00 +03001302 event->mmap2.filename, type, thread);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001303
1304 if (map == NULL)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001305 goto out_problem_map;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001306
1307 thread__insert_map(thread, map);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001308 thread__put(thread);
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001309 map__put(map);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001310 return 0;
1311
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001312out_problem_map:
1313 thread__put(thread);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001314out_problem:
1315 dump_printf("problem processing PERF_RECORD_MMAP2, skipping event.\n");
1316 return 0;
1317}
1318
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001319int machine__process_mmap_event(struct machine *machine, union perf_event *event,
1320 struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001321{
1322 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1323 struct thread *thread;
1324 struct map *map;
Stephane Eranianbad40912013-01-24 16:10:40 +01001325 enum map_type type;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001326 int ret = 0;
1327
1328 if (dump_trace)
1329 perf_event__fprintf_mmap(event, stdout);
1330
1331 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1332 cpumode == PERF_RECORD_MISC_KERNEL) {
1333 ret = machine__process_kernel_mmap_event(machine, event);
1334 if (ret < 0)
1335 goto out_problem;
1336 return 0;
1337 }
1338
Adrian Hunter314add62013-08-27 11:23:03 +03001339 thread = machine__findnew_thread(machine, event->mmap.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001340 event->mmap.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001341 if (thread == NULL)
1342 goto out_problem;
Stephane Eranianbad40912013-01-24 16:10:40 +01001343
1344 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1345 type = MAP__VARIABLE;
1346 else
1347 type = MAP__FUNCTION;
1348
Adrian Hunter2a030682014-07-22 16:17:53 +03001349 map = map__new(machine, event->mmap.start,
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001350 event->mmap.len, event->mmap.pgoff,
Don Zickus7ef80702014-05-19 15:13:49 -04001351 event->mmap.pid, 0, 0, 0, 0, 0, 0,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001352 event->mmap.filename,
Adrian Hunter5835edd2014-07-22 16:18:00 +03001353 type, thread);
Stephane Eranianbad40912013-01-24 16:10:40 +01001354
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001355 if (map == NULL)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001356 goto out_problem_map;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001357
1358 thread__insert_map(thread, map);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001359 thread__put(thread);
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001360 map__put(map);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001361 return 0;
1362
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001363out_problem_map:
1364 thread__put(thread);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001365out_problem:
1366 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
1367 return 0;
1368}
1369
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001370static void __machine__remove_thread(struct machine *machine, struct thread *th, bool lock)
David Ahern236a3bb2013-08-14 08:49:27 -06001371{
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001372 if (machine->last_match == th)
Arnaldo Carvalho de Melo0ceb8f62015-05-11 18:08:12 -03001373 machine->last_match = NULL;
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001374
Arnaldo Carvalho de Melo59a51c12015-05-15 15:32:55 -03001375 BUG_ON(atomic_read(&th->refcnt) == 0);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001376 if (lock)
1377 pthread_rwlock_wrlock(&machine->threads_lock);
Arnaldo Carvalho de Melo0170b142015-05-25 15:23:05 -03001378 rb_erase_init(&th->rb_node, &machine->threads);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001379 RB_CLEAR_NODE(&th->rb_node);
David Ahern236a3bb2013-08-14 08:49:27 -06001380 /*
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001381 * Move it first to the dead_threads list, then drop the reference,
1382 * if this is the last reference, then the thread__delete destructor
1383 * will be called and we will remove it from the dead_threads list.
David Ahern236a3bb2013-08-14 08:49:27 -06001384 */
1385 list_add_tail(&th->node, &machine->dead_threads);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001386 if (lock)
1387 pthread_rwlock_unlock(&machine->threads_lock);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001388 thread__put(th);
David Ahern236a3bb2013-08-14 08:49:27 -06001389}
1390
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001391void machine__remove_thread(struct machine *machine, struct thread *th)
1392{
1393 return __machine__remove_thread(machine, th, true);
1394}
1395
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001396int machine__process_fork_event(struct machine *machine, union perf_event *event,
1397 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001398{
Jiri Olsad75e6092014-03-14 15:00:03 +01001399 struct thread *thread = machine__find_thread(machine,
1400 event->fork.pid,
1401 event->fork.tid);
Adrian Hunter314add62013-08-27 11:23:03 +03001402 struct thread *parent = machine__findnew_thread(machine,
1403 event->fork.ppid,
1404 event->fork.ptid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001405 int err = 0;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001406
Adrian Hunter5cb73342015-08-19 17:29:20 +03001407 if (dump_trace)
1408 perf_event__fprintf_task(event, stdout);
1409
1410 /*
1411 * There may be an existing thread that is not actually the parent,
1412 * either because we are processing events out of order, or because the
1413 * (fork) event that would have removed the thread was lost. Assume the
1414 * latter case and continue on as best we can.
1415 */
1416 if (parent->pid_ != (pid_t)event->fork.ppid) {
1417 dump_printf("removing erroneous parent thread %d/%d\n",
1418 parent->pid_, parent->tid);
1419 machine__remove_thread(machine, parent);
1420 thread__put(parent);
1421 parent = machine__findnew_thread(machine, event->fork.ppid,
1422 event->fork.ptid);
1423 }
1424
David Ahern236a3bb2013-08-14 08:49:27 -06001425 /* if a thread currently exists for the thread id remove it */
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001426 if (thread != NULL) {
David Ahern236a3bb2013-08-14 08:49:27 -06001427 machine__remove_thread(machine, thread);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001428 thread__put(thread);
1429 }
David Ahern236a3bb2013-08-14 08:49:27 -06001430
Adrian Hunter314add62013-08-27 11:23:03 +03001431 thread = machine__findnew_thread(machine, event->fork.pid,
1432 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001433
1434 if (thread == NULL || parent == NULL ||
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001435 thread__fork(thread, parent, sample->time) < 0) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001436 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001437 err = -1;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001438 }
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001439 thread__put(thread);
1440 thread__put(parent);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001441
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001442 return err;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001443}
1444
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001445int machine__process_exit_event(struct machine *machine, union perf_event *event,
1446 struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001447{
Jiri Olsad75e6092014-03-14 15:00:03 +01001448 struct thread *thread = machine__find_thread(machine,
1449 event->fork.pid,
1450 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001451
1452 if (dump_trace)
1453 perf_event__fprintf_task(event, stdout);
1454
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001455 if (thread != NULL) {
David Ahern236a3bb2013-08-14 08:49:27 -06001456 thread__exited(thread);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001457 thread__put(thread);
1458 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001459
1460 return 0;
1461}
1462
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001463int machine__process_event(struct machine *machine, union perf_event *event,
1464 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001465{
1466 int ret;
1467
1468 switch (event->header.type) {
1469 case PERF_RECORD_COMM:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001470 ret = machine__process_comm_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001471 case PERF_RECORD_MMAP:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001472 ret = machine__process_mmap_event(machine, event, sample); break;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001473 case PERF_RECORD_MMAP2:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001474 ret = machine__process_mmap2_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001475 case PERF_RECORD_FORK:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001476 ret = machine__process_fork_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001477 case PERF_RECORD_EXIT:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001478 ret = machine__process_exit_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001479 case PERF_RECORD_LOST:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001480 ret = machine__process_lost_event(machine, event, sample); break;
Adrian Hunter4a96f7a2015-04-30 17:37:29 +03001481 case PERF_RECORD_AUX:
1482 ret = machine__process_aux_event(machine, event); break;
Adrian Hunter0ad21f62015-04-30 17:37:30 +03001483 case PERF_RECORD_ITRACE_START:
Jiri Olsaceb92912015-06-29 13:27:45 +02001484 ret = machine__process_itrace_start_event(machine, event); break;
Kan Liangc4937a92015-05-10 15:13:15 -04001485 case PERF_RECORD_LOST_SAMPLES:
1486 ret = machine__process_lost_samples_event(machine, event, sample); break;
Adrian Hunter02860392015-07-21 12:44:03 +03001487 case PERF_RECORD_SWITCH:
1488 case PERF_RECORD_SWITCH_CPU_WIDE:
1489 ret = machine__process_switch_event(machine, event); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001490 default:
1491 ret = -1;
1492 break;
1493 }
1494
1495 return ret;
1496}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001497
Greg Priceb21484f2012-12-06 21:48:05 -08001498static bool symbol__match_regex(struct symbol *sym, regex_t *regex)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001499{
Greg Priceb21484f2012-12-06 21:48:05 -08001500 if (sym->name && !regexec(regex, sym->name, 0, NULL, 0))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001501 return 1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001502 return 0;
1503}
1504
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001505static void ip__resolve_ams(struct thread *thread,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001506 struct addr_map_symbol *ams,
1507 u64 ip)
1508{
1509 struct addr_location al;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001510
1511 memset(&al, 0, sizeof(al));
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -03001512 /*
1513 * We cannot use the header.misc hint to determine whether a
1514 * branch stack address is user, kernel, guest, hypervisor.
1515 * Branches may straddle the kernel/user/hypervisor boundaries.
1516 * Thus, we have to try consecutively until we find a match
1517 * or else, the symbol is unknown
1518 */
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001519 thread__find_cpumode_addr_location(thread, MAP__FUNCTION, ip, &al);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001520
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001521 ams->addr = ip;
1522 ams->al_addr = al.addr;
1523 ams->sym = al.sym;
1524 ams->map = al.map;
1525}
1526
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001527static void ip__resolve_data(struct thread *thread,
Stephane Eranian98a3b322013-01-24 16:10:35 +01001528 u8 m, struct addr_map_symbol *ams, u64 addr)
1529{
1530 struct addr_location al;
1531
1532 memset(&al, 0, sizeof(al));
1533
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001534 thread__find_addr_location(thread, m, MAP__VARIABLE, addr, &al);
Don Zickus06b2afc2014-08-20 23:25:11 -04001535 if (al.map == NULL) {
1536 /*
1537 * some shared data regions have execute bit set which puts
1538 * their mapping in the MAP__FUNCTION type array.
1539 * Check there as a fallback option before dropping the sample.
1540 */
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001541 thread__find_addr_location(thread, m, MAP__FUNCTION, addr, &al);
Don Zickus06b2afc2014-08-20 23:25:11 -04001542 }
1543
Stephane Eranian98a3b322013-01-24 16:10:35 +01001544 ams->addr = addr;
1545 ams->al_addr = al.addr;
1546 ams->sym = al.sym;
1547 ams->map = al.map;
1548}
1549
Arnaldo Carvalho de Meloe80faac2014-01-22 13:05:06 -03001550struct mem_info *sample__resolve_mem(struct perf_sample *sample,
1551 struct addr_location *al)
Stephane Eranian98a3b322013-01-24 16:10:35 +01001552{
1553 struct mem_info *mi = zalloc(sizeof(*mi));
1554
1555 if (!mi)
1556 return NULL;
1557
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001558 ip__resolve_ams(al->thread, &mi->iaddr, sample->ip);
1559 ip__resolve_data(al->thread, al->cpumode, &mi->daddr, sample->addr);
Stephane Eranian98a3b322013-01-24 16:10:35 +01001560 mi->data_src.val = sample->data_src;
1561
1562 return mi;
1563}
1564
Andi Kleen37592b82014-11-12 18:05:19 -08001565static int add_callchain_ip(struct thread *thread,
1566 struct symbol **parent,
1567 struct addr_location *root_al,
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001568 u8 *cpumode,
Andi Kleen37592b82014-11-12 18:05:19 -08001569 u64 ip)
1570{
1571 struct addr_location al;
1572
1573 al.filtered = 0;
1574 al.sym = NULL;
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001575 if (!cpumode) {
Andi Kleen8b7bad52014-11-12 18:05:20 -08001576 thread__find_cpumode_addr_location(thread, MAP__FUNCTION,
1577 ip, &al);
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001578 } else {
Kan Liang2e777842014-12-02 10:06:53 -05001579 if (ip >= PERF_CONTEXT_MAX) {
1580 switch (ip) {
1581 case PERF_CONTEXT_HV:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001582 *cpumode = PERF_RECORD_MISC_HYPERVISOR;
Kan Liang2e777842014-12-02 10:06:53 -05001583 break;
1584 case PERF_CONTEXT_KERNEL:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001585 *cpumode = PERF_RECORD_MISC_KERNEL;
Kan Liang2e777842014-12-02 10:06:53 -05001586 break;
1587 case PERF_CONTEXT_USER:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001588 *cpumode = PERF_RECORD_MISC_USER;
Kan Liang2e777842014-12-02 10:06:53 -05001589 break;
1590 default:
1591 pr_debug("invalid callchain context: "
1592 "%"PRId64"\n", (s64) ip);
1593 /*
1594 * It seems the callchain is corrupted.
1595 * Discard all.
1596 */
1597 callchain_cursor_reset(&callchain_cursor);
1598 return 1;
1599 }
1600 return 0;
1601 }
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001602 thread__find_addr_location(thread, *cpumode, MAP__FUNCTION,
1603 ip, &al);
Kan Liang2e777842014-12-02 10:06:53 -05001604 }
1605
Andi Kleen37592b82014-11-12 18:05:19 -08001606 if (al.sym != NULL) {
1607 if (sort__has_parent && !*parent &&
1608 symbol__match_regex(al.sym, &parent_regex))
1609 *parent = al.sym;
1610 else if (have_ignore_callees && root_al &&
1611 symbol__match_regex(al.sym, &ignore_callees_regex)) {
1612 /* Treat this symbol as the root,
1613 forgetting its callees. */
1614 *root_al = al;
1615 callchain_cursor_reset(&callchain_cursor);
1616 }
1617 }
1618
Andi Kleen55501712014-11-12 18:05:21 -08001619 return callchain_cursor_append(&callchain_cursor, al.addr, al.map, al.sym);
Andi Kleen37592b82014-11-12 18:05:19 -08001620}
1621
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03001622struct branch_info *sample__resolve_bstack(struct perf_sample *sample,
1623 struct addr_location *al)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001624{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001625 unsigned int i;
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03001626 const struct branch_stack *bs = sample->branch_stack;
1627 struct branch_info *bi = calloc(bs->nr, sizeof(struct branch_info));
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001628
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001629 if (!bi)
1630 return NULL;
1631
1632 for (i = 0; i < bs->nr; i++) {
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001633 ip__resolve_ams(al->thread, &bi[i].to, bs->entries[i].to);
1634 ip__resolve_ams(al->thread, &bi[i].from, bs->entries[i].from);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001635 bi[i].flags = bs->entries[i].flags;
1636 }
1637 return bi;
1638}
1639
Andi Kleen8b7bad52014-11-12 18:05:20 -08001640#define CHASHSZ 127
1641#define CHASHBITS 7
1642#define NO_ENTRY 0xff
1643
1644#define PERF_MAX_BRANCH_DEPTH 127
1645
1646/* Remove loops. */
1647static int remove_loops(struct branch_entry *l, int nr)
1648{
1649 int i, j, off;
1650 unsigned char chash[CHASHSZ];
1651
1652 memset(chash, NO_ENTRY, sizeof(chash));
1653
1654 BUG_ON(PERF_MAX_BRANCH_DEPTH > 255);
1655
1656 for (i = 0; i < nr; i++) {
1657 int h = hash_64(l[i].from, CHASHBITS) % CHASHSZ;
1658
1659 /* no collision handling for now */
1660 if (chash[h] == NO_ENTRY) {
1661 chash[h] = i;
1662 } else if (l[chash[h]].from == l[i].from) {
1663 bool is_loop = true;
1664 /* check if it is a real loop */
1665 off = 0;
1666 for (j = chash[h]; j < i && i + off < nr; j++, off++)
1667 if (l[j].from != l[i + off].from) {
1668 is_loop = false;
1669 break;
1670 }
1671 if (is_loop) {
1672 memmove(l + i, l + i + off,
1673 (nr - (i + off)) * sizeof(*l));
1674 nr -= off;
1675 }
1676 }
1677 }
1678 return nr;
1679}
1680
Kan Liang384b6052015-01-05 13:23:05 -05001681/*
1682 * Recolve LBR callstack chain sample
1683 * Return:
1684 * 1 on success get LBR callchain information
1685 * 0 no available LBR callchain information, should try fp
1686 * negative error code on other errors.
1687 */
1688static int resolve_lbr_callchain_sample(struct thread *thread,
1689 struct perf_sample *sample,
1690 struct symbol **parent,
1691 struct addr_location *root_al,
1692 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001693{
Kan Liang384b6052015-01-05 13:23:05 -05001694 struct ip_callchain *chain = sample->callchain;
1695 int chain_nr = min(max_stack, (int)chain->nr);
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001696 u8 cpumode = PERF_RECORD_MISC_USER;
Kan Liang384b6052015-01-05 13:23:05 -05001697 int i, j, err;
1698 u64 ip;
1699
1700 for (i = 0; i < chain_nr; i++) {
1701 if (chain->ips[i] == PERF_CONTEXT_USER)
1702 break;
1703 }
1704
1705 /* LBR only affects the user callchain */
1706 if (i != chain_nr) {
1707 struct branch_stack *lbr_stack = sample->branch_stack;
1708 int lbr_nr = lbr_stack->nr;
1709 /*
1710 * LBR callstack can only get user call chain.
1711 * The mix_chain_nr is kernel call chain
1712 * number plus LBR user call chain number.
1713 * i is kernel call chain number,
1714 * 1 is PERF_CONTEXT_USER,
1715 * lbr_nr + 1 is the user call chain number.
1716 * For details, please refer to the comments
1717 * in callchain__printf
1718 */
1719 int mix_chain_nr = i + 1 + lbr_nr + 1;
1720
1721 if (mix_chain_nr > PERF_MAX_STACK_DEPTH + PERF_MAX_BRANCH_DEPTH) {
1722 pr_warning("corrupted callchain. skipping...\n");
1723 return 0;
1724 }
1725
1726 for (j = 0; j < mix_chain_nr; j++) {
1727 if (callchain_param.order == ORDER_CALLEE) {
1728 if (j < i + 1)
1729 ip = chain->ips[j];
1730 else if (j > i + 1)
1731 ip = lbr_stack->entries[j - i - 2].from;
1732 else
1733 ip = lbr_stack->entries[0].to;
1734 } else {
1735 if (j < lbr_nr)
1736 ip = lbr_stack->entries[lbr_nr - j - 1].from;
1737 else if (j > lbr_nr)
1738 ip = chain->ips[i + 1 - (j - lbr_nr)];
1739 else
1740 ip = lbr_stack->entries[0].to;
1741 }
1742
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001743 err = add_callchain_ip(thread, parent, root_al, &cpumode, ip);
Kan Liang384b6052015-01-05 13:23:05 -05001744 if (err)
1745 return (err < 0) ? err : 0;
1746 }
1747 return 1;
1748 }
1749
1750 return 0;
1751}
1752
1753static int thread__resolve_callchain_sample(struct thread *thread,
1754 struct perf_evsel *evsel,
1755 struct perf_sample *sample,
1756 struct symbol **parent,
1757 struct addr_location *root_al,
1758 int max_stack)
1759{
1760 struct branch_stack *branch = sample->branch_stack;
1761 struct ip_callchain *chain = sample->callchain;
Waiman Long91e95612013-10-18 10:38:48 -04001762 int chain_nr = min(max_stack, (int)chain->nr);
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001763 u8 cpumode = PERF_RECORD_MISC_USER;
Kan Liang2e777842014-12-02 10:06:53 -05001764 int i, j, err;
Andi Kleen8b7bad52014-11-12 18:05:20 -08001765 int skip_idx = -1;
1766 int first_call = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001767
Kan Liang384b6052015-01-05 13:23:05 -05001768 callchain_cursor_reset(&callchain_cursor);
1769
1770 if (has_branch_callstack(evsel)) {
1771 err = resolve_lbr_callchain_sample(thread, sample, parent,
1772 root_al, max_stack);
1773 if (err)
1774 return (err < 0) ? err : 0;
1775 }
1776
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001777 /*
1778 * Based on DWARF debug information, some architectures skip
1779 * a callchain entry saved by the kernel.
1780 */
Andi Kleen8b7bad52014-11-12 18:05:20 -08001781 if (chain->nr < PERF_MAX_STACK_DEPTH)
1782 skip_idx = arch_skip_callchain_idx(thread, chain);
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001783
Andi Kleen8b7bad52014-11-12 18:05:20 -08001784 /*
1785 * Add branches to call stack for easier browsing. This gives
1786 * more context for a sample than just the callers.
1787 *
1788 * This uses individual histograms of paths compared to the
1789 * aggregated histograms the normal LBR mode uses.
1790 *
1791 * Limitations for now:
1792 * - No extra filters
1793 * - No annotations (should annotate somehow)
1794 */
1795
1796 if (branch && callchain_param.branch_callstack) {
1797 int nr = min(max_stack, (int)branch->nr);
1798 struct branch_entry be[nr];
1799
1800 if (branch->nr > PERF_MAX_BRANCH_DEPTH) {
1801 pr_warning("corrupted branch chain. skipping...\n");
1802 goto check_calls;
1803 }
1804
1805 for (i = 0; i < nr; i++) {
1806 if (callchain_param.order == ORDER_CALLEE) {
1807 be[i] = branch->entries[i];
1808 /*
1809 * Check for overlap into the callchain.
1810 * The return address is one off compared to
1811 * the branch entry. To adjust for this
1812 * assume the calling instruction is not longer
1813 * than 8 bytes.
1814 */
1815 if (i == skip_idx ||
1816 chain->ips[first_call] >= PERF_CONTEXT_MAX)
1817 first_call++;
1818 else if (be[i].from < chain->ips[first_call] &&
1819 be[i].from >= chain->ips[first_call] - 8)
1820 first_call++;
1821 } else
1822 be[i] = branch->entries[branch->nr - i - 1];
1823 }
1824
1825 nr = remove_loops(be, nr);
1826
1827 for (i = 0; i < nr; i++) {
1828 err = add_callchain_ip(thread, parent, root_al,
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001829 NULL, be[i].to);
Andi Kleen8b7bad52014-11-12 18:05:20 -08001830 if (!err)
1831 err = add_callchain_ip(thread, parent, root_al,
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001832 NULL, be[i].from);
Andi Kleen8b7bad52014-11-12 18:05:20 -08001833 if (err == -EINVAL)
1834 break;
1835 if (err)
1836 return err;
1837 }
1838 chain_nr -= nr;
1839 }
1840
1841check_calls:
Adrian Hunter0edd4532015-09-25 16:15:48 +03001842 if (chain->nr > PERF_MAX_STACK_DEPTH && (int)chain->nr > max_stack) {
Andi Kleen8b7bad52014-11-12 18:05:20 -08001843 pr_warning("corrupted callchain. skipping...\n");
1844 return 0;
1845 }
1846
1847 for (i = first_call; i < chain_nr; i++) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001848 u64 ip;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001849
1850 if (callchain_param.order == ORDER_CALLEE)
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001851 j = i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001852 else
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001853 j = chain->nr - i - 1;
1854
1855#ifdef HAVE_SKIP_CALLCHAIN_IDX
1856 if (j == skip_idx)
1857 continue;
1858#endif
1859 ip = chain->ips[j];
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001860
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001861 err = add_callchain_ip(thread, parent, root_al, &cpumode, ip);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001862
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001863 if (err)
Kan Liang2e777842014-12-02 10:06:53 -05001864 return (err < 0) ? err : 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001865 }
1866
1867 return 0;
1868}
1869
1870static int unwind_entry(struct unwind_entry *entry, void *arg)
1871{
1872 struct callchain_cursor *cursor = arg;
1873 return callchain_cursor_append(cursor, entry->ip,
1874 entry->map, entry->sym);
1875}
1876
Arnaldo Carvalho de Melocc8b7c22014-10-23 15:26:17 -03001877int thread__resolve_callchain(struct thread *thread,
1878 struct perf_evsel *evsel,
1879 struct perf_sample *sample,
1880 struct symbol **parent,
1881 struct addr_location *root_al,
1882 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001883{
Kan Liang384b6052015-01-05 13:23:05 -05001884 int ret = thread__resolve_callchain_sample(thread, evsel,
1885 sample, parent,
1886 root_al, max_stack);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001887 if (ret)
1888 return ret;
1889
1890 /* Can we do dwarf post unwind? */
1891 if (!((evsel->attr.sample_type & PERF_SAMPLE_REGS_USER) &&
1892 (evsel->attr.sample_type & PERF_SAMPLE_STACK_USER)))
1893 return 0;
1894
1895 /* Bail out if nothing was captured. */
1896 if ((!sample->user_regs.regs) ||
1897 (!sample->user_stack.size))
1898 return 0;
1899
Arnaldo Carvalho de Melodd8c17a2014-10-23 16:42:19 -03001900 return unwind__get_entries(unwind_entry, &callchain_cursor,
Jiri Olsa352ea452014-01-07 13:47:25 +01001901 thread, sample, max_stack);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001902
1903}
David Ahern35feee12013-09-28 13:12:58 -06001904
1905int machine__for_each_thread(struct machine *machine,
1906 int (*fn)(struct thread *thread, void *p),
1907 void *priv)
1908{
1909 struct rb_node *nd;
1910 struct thread *thread;
1911 int rc = 0;
1912
1913 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
1914 thread = rb_entry(nd, struct thread, rb_node);
1915 rc = fn(thread, priv);
1916 if (rc != 0)
1917 return rc;
1918 }
1919
1920 list_for_each_entry(thread, &machine->dead_threads, node) {
1921 rc = fn(thread, priv);
1922 if (rc != 0)
1923 return rc;
1924 }
1925 return rc;
1926}
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001927
Adrian Huntera5499b32015-05-29 16:33:30 +03001928int machines__for_each_thread(struct machines *machines,
1929 int (*fn)(struct thread *thread, void *p),
1930 void *priv)
1931{
1932 struct rb_node *nd;
1933 int rc = 0;
1934
1935 rc = machine__for_each_thread(&machines->host, fn, priv);
1936 if (rc != 0)
1937 return rc;
1938
1939 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
1940 struct machine *machine = rb_entry(nd, struct machine, rb_node);
1941
1942 rc = machine__for_each_thread(machine, fn, priv);
1943 if (rc != 0)
1944 return rc;
1945 }
1946 return rc;
1947}
1948
Arnaldo Carvalho de Meloa33fbd52013-11-11 11:36:12 -03001949int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool,
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001950 struct target *target, struct thread_map *threads,
Kan Liang9d9cad72015-06-17 09:51:11 -04001951 perf_event__handler_t process, bool data_mmap,
1952 unsigned int proc_map_timeout)
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001953{
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001954 if (target__has_task(target))
Kan Liang9d9cad72015-06-17 09:51:11 -04001955 return perf_event__synthesize_thread_map(tool, threads, process, machine, data_mmap, proc_map_timeout);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001956 else if (target__has_cpu(target))
Kan Liang9d9cad72015-06-17 09:51:11 -04001957 return perf_event__synthesize_threads(tool, process, machine, data_mmap, proc_map_timeout);
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001958 /* command specified */
1959 return 0;
1960}
Adrian Hunterb9d266b2014-07-22 16:17:25 +03001961
1962pid_t machine__get_current_tid(struct machine *machine, int cpu)
1963{
1964 if (cpu < 0 || cpu >= MAX_NR_CPUS || !machine->current_tid)
1965 return -1;
1966
1967 return machine->current_tid[cpu];
1968}
1969
1970int machine__set_current_tid(struct machine *machine, int cpu, pid_t pid,
1971 pid_t tid)
1972{
1973 struct thread *thread;
1974
1975 if (cpu < 0)
1976 return -EINVAL;
1977
1978 if (!machine->current_tid) {
1979 int i;
1980
1981 machine->current_tid = calloc(MAX_NR_CPUS, sizeof(pid_t));
1982 if (!machine->current_tid)
1983 return -ENOMEM;
1984 for (i = 0; i < MAX_NR_CPUS; i++)
1985 machine->current_tid[i] = -1;
1986 }
1987
1988 if (cpu >= MAX_NR_CPUS) {
1989 pr_err("Requested CPU %d too large. ", cpu);
1990 pr_err("Consider raising MAX_NR_CPUS\n");
1991 return -EINVAL;
1992 }
1993
1994 machine->current_tid[cpu] = tid;
1995
1996 thread = machine__findnew_thread(machine, pid, tid);
1997 if (!thread)
1998 return -ENOMEM;
1999
2000 thread->cpu = cpu;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002001 thread__put(thread);
Adrian Hunterb9d266b2014-07-22 16:17:25 +03002002
2003 return 0;
2004}
Adrian Hunterfbe2af42014-08-15 22:08:39 +03002005
2006int machine__get_kernel_start(struct machine *machine)
2007{
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -03002008 struct map *map = machine__kernel_map(machine);
Adrian Hunterfbe2af42014-08-15 22:08:39 +03002009 int err = 0;
2010
2011 /*
2012 * The only addresses above 2^63 are kernel addresses of a 64-bit
2013 * kernel. Note that addresses are unsigned so that on a 32-bit system
2014 * all addresses including kernel addresses are less than 2^32. In
2015 * that case (32-bit system), if the kernel mapping is unknown, all
2016 * addresses will be assumed to be in user space - see
2017 * machine__kernel_ip().
2018 */
2019 machine->kernel_start = 1ULL << 63;
2020 if (map) {
2021 err = map__load(map, machine->symbol_filter);
2022 if (map->start)
2023 machine->kernel_start = map->start;
2024 }
2025 return err;
2026}
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03002027
2028struct dso *machine__findnew_dso(struct machine *machine, const char *filename)
2029{
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03002030 return dsos__findnew(&machine->dsos, filename);
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03002031}
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -03002032
2033char *machine__resolve_kernel_addr(void *vmachine, unsigned long long *addrp, char **modp)
2034{
2035 struct machine *machine = vmachine;
2036 struct map *map;
2037 struct symbol *sym = map_groups__find_symbol(&machine->kmaps, MAP__FUNCTION, *addrp, &map, NULL);
2038
2039 if (sym == NULL)
2040 return NULL;
2041
2042 *modp = __map__is_kmodule(map) ? (char *)map->dso->short_name : NULL;
2043 *addrp = map->unmap_ip(map, sym->start);
2044 return sym->name;
2045}