blob: 8934dc4345fe1893a6cba06876988c1872ae2518 [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;
23}
24
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030025int machine__init(struct machine *machine, const char *root_dir, pid_t pid)
26{
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -030027 map_groups__init(&machine->kmaps, machine);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030028 RB_CLEAR_NODE(&machine->rb_node);
Arnaldo Carvalho de Meloe167f992014-10-14 15:07:48 -030029 dsos__init(&machine->user_dsos);
30 dsos__init(&machine->kernel_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;
38
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030039 machine->pid = pid;
40
Adrian Hunter611a5ce2013-08-08 14:32:20 +030041 machine->symbol_filter = NULL;
Jiri Olsa14bd6d22014-01-07 13:47:19 +010042 machine->id_hdr_size = 0;
Adrian Huntercfe1c412014-07-31 09:00:45 +030043 machine->comm_exec = false;
Adrian Hunterfbe2af42014-08-15 22:08:39 +030044 machine->kernel_start = 0;
Adrian Hunter611a5ce2013-08-08 14:32:20 +030045
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030046 machine->root_dir = strdup(root_dir);
47 if (machine->root_dir == NULL)
48 return -ENOMEM;
49
50 if (pid != HOST_KERNEL_ID) {
Adrian Hunter1fcb8762014-07-14 13:02:25 +030051 struct thread *thread = machine__findnew_thread(machine, -1,
Adrian Hunter314add62013-08-27 11:23:03 +030052 pid);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030053 char comm[64];
54
55 if (thread == NULL)
56 return -ENOMEM;
57
58 snprintf(comm, sizeof(comm), "[guest/%d]", pid);
Frederic Weisbecker162f0be2013-09-11 16:18:24 +020059 thread__set_comm(thread, comm, 0);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030060 thread__put(thread);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030061 }
62
Adrian Hunterb9d266b2014-07-22 16:17:25 +030063 machine->current_tid = NULL;
64
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030065 return 0;
66}
67
David Ahern8fb598e2013-09-28 13:13:00 -060068struct machine *machine__new_host(void)
69{
70 struct machine *machine = malloc(sizeof(*machine));
71
72 if (machine != NULL) {
73 machine__init(machine, "", HOST_KERNEL_ID);
74
75 if (machine__create_kernel_maps(machine) < 0)
76 goto out_delete;
77 }
78
79 return machine;
80out_delete:
81 free(machine);
82 return NULL;
83}
84
Waiman Long8fa7d872014-09-29 16:07:28 -040085static void dsos__delete(struct dsos *dsos)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030086{
87 struct dso *pos, *n;
88
Waiman Long8fa7d872014-09-29 16:07:28 -040089 list_for_each_entry_safe(pos, n, &dsos->head, node) {
Waiman Long4598a0a2014-09-30 13:36:15 -040090 RB_CLEAR_NODE(&pos->rb_node);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030091 list_del(&pos->node);
92 dso__delete(pos);
93 }
94}
95
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030096void machine__delete_threads(struct machine *machine)
97{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030098 struct rb_node *nd;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030099
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300100 pthread_rwlock_wrlock(&machine->threads_lock);
101 nd = rb_first(&machine->threads);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300102 while (nd) {
103 struct thread *t = rb_entry(nd, struct thread, rb_node);
104
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300105 nd = rb_next(nd);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300106 __machine__remove_thread(machine, t, false);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300107 }
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300108 pthread_rwlock_unlock(&machine->threads_lock);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300109}
110
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300111void machine__exit(struct machine *machine)
112{
113 map_groups__exit(&machine->kmaps);
114 dsos__delete(&machine->user_dsos);
115 dsos__delete(&machine->kernel_dsos);
Adrian Hunterd027b642014-07-23 14:23:00 +0300116 vdso__exit(machine);
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300117 zfree(&machine->root_dir);
Adrian Hunterb9d266b2014-07-22 16:17:25 +0300118 zfree(&machine->current_tid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300119 pthread_rwlock_destroy(&machine->threads_lock);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300120}
121
122void machine__delete(struct machine *machine)
123{
124 machine__exit(machine);
125 free(machine);
126}
127
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300128void machines__init(struct machines *machines)
129{
130 machine__init(&machines->host, "", HOST_KERNEL_ID);
131 machines->guests = RB_ROOT;
Adrian Hunter611a5ce2013-08-08 14:32:20 +0300132 machines->symbol_filter = NULL;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300133}
134
135void machines__exit(struct machines *machines)
136{
137 machine__exit(&machines->host);
138 /* XXX exit guest */
139}
140
141struct machine *machines__add(struct machines *machines, pid_t pid,
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300142 const char *root_dir)
143{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300144 struct rb_node **p = &machines->guests.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300145 struct rb_node *parent = NULL;
146 struct machine *pos, *machine = malloc(sizeof(*machine));
147
148 if (machine == NULL)
149 return NULL;
150
151 if (machine__init(machine, root_dir, pid) != 0) {
152 free(machine);
153 return NULL;
154 }
155
Adrian Hunter611a5ce2013-08-08 14:32:20 +0300156 machine->symbol_filter = machines->symbol_filter;
157
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300158 while (*p != NULL) {
159 parent = *p;
160 pos = rb_entry(parent, struct machine, rb_node);
161 if (pid < pos->pid)
162 p = &(*p)->rb_left;
163 else
164 p = &(*p)->rb_right;
165 }
166
167 rb_link_node(&machine->rb_node, parent, p);
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300168 rb_insert_color(&machine->rb_node, &machines->guests);
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300169
170 return machine;
171}
172
Adrian Hunter611a5ce2013-08-08 14:32:20 +0300173void machines__set_symbol_filter(struct machines *machines,
174 symbol_filter_t symbol_filter)
175{
176 struct rb_node *nd;
177
178 machines->symbol_filter = symbol_filter;
179 machines->host.symbol_filter = symbol_filter;
180
181 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
182 struct machine *machine = rb_entry(nd, struct machine, rb_node);
183
184 machine->symbol_filter = symbol_filter;
185 }
186}
187
Adrian Huntercfe1c412014-07-31 09:00:45 +0300188void machines__set_comm_exec(struct machines *machines, bool comm_exec)
189{
190 struct rb_node *nd;
191
192 machines->host.comm_exec = comm_exec;
193
194 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
195 struct machine *machine = rb_entry(nd, struct machine, rb_node);
196
197 machine->comm_exec = comm_exec;
198 }
199}
200
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300201struct machine *machines__find(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300202{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300203 struct rb_node **p = &machines->guests.rb_node;
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300204 struct rb_node *parent = NULL;
205 struct machine *machine;
206 struct machine *default_machine = NULL;
207
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300208 if (pid == HOST_KERNEL_ID)
209 return &machines->host;
210
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300211 while (*p != NULL) {
212 parent = *p;
213 machine = rb_entry(parent, struct machine, rb_node);
214 if (pid < machine->pid)
215 p = &(*p)->rb_left;
216 else if (pid > machine->pid)
217 p = &(*p)->rb_right;
218 else
219 return machine;
220 if (!machine->pid)
221 default_machine = machine;
222 }
223
224 return default_machine;
225}
226
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300227struct machine *machines__findnew(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300228{
229 char path[PATH_MAX];
230 const char *root_dir = "";
231 struct machine *machine = machines__find(machines, pid);
232
233 if (machine && (machine->pid == pid))
234 goto out;
235
236 if ((pid != HOST_KERNEL_ID) &&
237 (pid != DEFAULT_GUEST_KERNEL_ID) &&
238 (symbol_conf.guestmount)) {
239 sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
240 if (access(path, R_OK)) {
241 static struct strlist *seen;
242
243 if (!seen)
244 seen = strlist__new(true, NULL);
245
246 if (!strlist__has_entry(seen, path)) {
247 pr_err("Can't access file %s\n", path);
248 strlist__add(seen, path);
249 }
250 machine = NULL;
251 goto out;
252 }
253 root_dir = path;
254 }
255
256 machine = machines__add(machines, pid, root_dir);
257out:
258 return machine;
259}
260
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300261void machines__process_guests(struct machines *machines,
262 machine__process_t process, void *data)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300263{
264 struct rb_node *nd;
265
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300266 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300267 struct machine *pos = rb_entry(nd, struct machine, rb_node);
268 process(pos, data);
269 }
270}
271
272char *machine__mmap_name(struct machine *machine, char *bf, size_t size)
273{
274 if (machine__is_host(machine))
275 snprintf(bf, size, "[%s]", "kernel.kallsyms");
276 else if (machine__is_default_guest(machine))
277 snprintf(bf, size, "[%s]", "guest.kernel.kallsyms");
278 else {
279 snprintf(bf, size, "[%s.%d]", "guest.kernel.kallsyms",
280 machine->pid);
281 }
282
283 return bf;
284}
285
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300286void machines__set_id_hdr_size(struct machines *machines, u16 id_hdr_size)
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300287{
288 struct rb_node *node;
289 struct machine *machine;
290
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300291 machines->host.id_hdr_size = id_hdr_size;
292
293 for (node = rb_first(&machines->guests); node; node = rb_next(node)) {
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -0300294 machine = rb_entry(node, struct machine, rb_node);
295 machine->id_hdr_size = id_hdr_size;
296 }
297
298 return;
299}
300
Adrian Hunter29ce3612014-07-16 11:07:13 +0300301static void machine__update_thread_pid(struct machine *machine,
302 struct thread *th, pid_t pid)
303{
304 struct thread *leader;
305
306 if (pid == th->pid_ || pid == -1 || th->pid_ != -1)
307 return;
308
309 th->pid_ = pid;
310
311 if (th->pid_ == th->tid)
312 return;
313
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300314 leader = __machine__findnew_thread(machine, th->pid_, th->pid_);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300315 if (!leader)
316 goto out_err;
317
318 if (!leader->mg)
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -0300319 leader->mg = map_groups__new(machine);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300320
321 if (!leader->mg)
322 goto out_err;
323
324 if (th->mg == leader->mg)
325 return;
326
327 if (th->mg) {
328 /*
329 * Maps are created from MMAP events which provide the pid and
330 * tid. Consequently there never should be any maps on a thread
331 * with an unknown pid. Just print an error if there are.
332 */
333 if (!map_groups__empty(th->mg))
334 pr_err("Discarding thread maps for %d:%d\n",
335 th->pid_, th->tid);
Arnaldo Carvalho de Melo8e160b22015-05-19 20:07:14 -0300336 map_groups__put(th->mg);
Adrian Hunter29ce3612014-07-16 11:07:13 +0300337 }
338
339 th->mg = map_groups__get(leader->mg);
340
341 return;
342
343out_err:
344 pr_err("Failed to join map groups for %d:%d\n", th->pid_, th->tid);
345}
346
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300347static struct thread *____machine__findnew_thread(struct machine *machine,
348 pid_t pid, pid_t tid,
349 bool create)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300350{
351 struct rb_node **p = &machine->threads.rb_node;
352 struct rb_node *parent = NULL;
353 struct thread *th;
354
355 /*
Adrian Hunter38051232013-07-04 16:20:31 +0300356 * Front-end cache - TID lookups come in blocks,
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300357 * so most of the time we dont have to look up
358 * the full rbtree:
359 */
Adrian Hunter29ce3612014-07-16 11:07:13 +0300360 th = machine->last_match;
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300361 if (th != NULL) {
362 if (th->tid == tid) {
363 machine__update_thread_pid(machine, th, pid);
364 return th;
365 }
366
Arnaldo Carvalho de Melo0ceb8f62015-05-11 18:08:12 -0300367 machine->last_match = NULL;
Adrian Hunter99d725f2013-08-26 16:00:19 +0300368 }
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300369
370 while (*p != NULL) {
371 parent = *p;
372 th = rb_entry(parent, struct thread, rb_node);
373
Adrian Hunter38051232013-07-04 16:20:31 +0300374 if (th->tid == tid) {
Arnaldo Carvalho de Melo0ceb8f62015-05-11 18:08:12 -0300375 machine->last_match = th;
Adrian Hunter29ce3612014-07-16 11:07:13 +0300376 machine__update_thread_pid(machine, th, pid);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300377 return th;
378 }
379
Adrian Hunter38051232013-07-04 16:20:31 +0300380 if (tid < th->tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300381 p = &(*p)->rb_left;
382 else
383 p = &(*p)->rb_right;
384 }
385
386 if (!create)
387 return NULL;
388
Adrian Hunter99d725f2013-08-26 16:00:19 +0300389 th = thread__new(pid, tid);
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300390 if (th != NULL) {
391 rb_link_node(&th->rb_node, parent, p);
392 rb_insert_color(&th->rb_node, &machine->threads);
Jiri Olsacddcef62014-04-09 20:54:29 +0200393
394 /*
395 * We have to initialize map_groups separately
396 * after rb tree is updated.
397 *
398 * The reason is that we call machine__findnew_thread
399 * within thread__init_map_groups to find the thread
400 * leader and that would screwed the rb tree.
401 */
Adrian Hunter418029b2014-07-16 10:19:44 +0300402 if (thread__init_map_groups(th, machine)) {
Arnaldo Carvalho de Melo0170b142015-05-25 15:23:05 -0300403 rb_erase_init(&th->rb_node, &machine->threads);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300404 RB_CLEAR_NODE(&th->rb_node);
Adrian Hunter418029b2014-07-16 10:19:44 +0300405 thread__delete(th);
Jiri Olsacddcef62014-04-09 20:54:29 +0200406 return NULL;
Adrian Hunter418029b2014-07-16 10:19:44 +0300407 }
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300408 /*
409 * It is now in the rbtree, get a ref
410 */
411 thread__get(th);
Arnaldo Carvalho de Melo0ceb8f62015-05-11 18:08:12 -0300412 machine->last_match = th;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300413 }
414
415 return th;
416}
417
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300418struct thread *__machine__findnew_thread(struct machine *machine, pid_t pid, pid_t tid)
419{
420 return ____machine__findnew_thread(machine, pid, tid, true);
421}
422
Adrian Hunter314add62013-08-27 11:23:03 +0300423struct thread *machine__findnew_thread(struct machine *machine, pid_t pid,
424 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300425{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300426 struct thread *th;
427
428 pthread_rwlock_wrlock(&machine->threads_lock);
429 th = thread__get(__machine__findnew_thread(machine, pid, tid));
430 pthread_rwlock_unlock(&machine->threads_lock);
431 return th;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300432}
433
Jiri Olsad75e6092014-03-14 15:00:03 +0100434struct thread *machine__find_thread(struct machine *machine, pid_t pid,
435 pid_t tid)
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300436{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300437 struct thread *th;
438 pthread_rwlock_rdlock(&machine->threads_lock);
439 th = thread__get(____machine__findnew_thread(machine, pid, tid, false));
440 pthread_rwlock_unlock(&machine->threads_lock);
441 return th;
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -0300442}
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300443
Adrian Huntercfe1c412014-07-31 09:00:45 +0300444struct comm *machine__thread_exec_comm(struct machine *machine,
445 struct thread *thread)
446{
447 if (machine->comm_exec)
448 return thread__exec_comm(thread);
449 else
450 return thread__comm(thread);
451}
452
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200453int machine__process_comm_event(struct machine *machine, union perf_event *event,
454 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300455{
Adrian Hunter314add62013-08-27 11:23:03 +0300456 struct thread *thread = machine__findnew_thread(machine,
457 event->comm.pid,
458 event->comm.tid);
Adrian Hunter65de51f2014-07-31 09:00:44 +0300459 bool exec = event->header.misc & PERF_RECORD_MISC_COMM_EXEC;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300460 int err = 0;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300461
Adrian Huntercfe1c412014-07-31 09:00:45 +0300462 if (exec)
463 machine->comm_exec = true;
464
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300465 if (dump_trace)
466 perf_event__fprintf_comm(event, stdout);
467
Adrian Hunter65de51f2014-07-31 09:00:44 +0300468 if (thread == NULL ||
469 __thread__set_comm(thread, event->comm.comm, sample->time, exec)) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300470 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300471 err = -1;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300472 }
473
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300474 thread__put(thread);
475
476 return err;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300477}
478
479int machine__process_lost_event(struct machine *machine __maybe_unused,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200480 union perf_event *event, struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -0300481{
482 dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
483 event->lost.id, event->lost.lost);
484 return 0;
485}
486
Jiri Olsaca333802015-02-17 17:29:57 +0100487static struct dso*
488machine__module_dso(struct machine *machine, struct kmod_path *m,
489 const char *filename)
Jiri Olsada17ea32015-02-12 22:10:52 +0100490{
491 struct dso *dso;
Jiri Olsada17ea32015-02-12 22:10:52 +0100492
Jiri Olsaca333802015-02-17 17:29:57 +0100493 dso = dsos__find(&machine->kernel_dsos, m->name, true);
Jiri Olsada17ea32015-02-12 22:10:52 +0100494 if (!dso) {
Jiri Olsaca333802015-02-17 17:29:57 +0100495 dso = dsos__addnew(&machine->kernel_dsos, m->name);
Jiri Olsada17ea32015-02-12 22:10:52 +0100496 if (dso == NULL)
497 return NULL;
498
499 if (machine__is_host(machine))
500 dso->symtab_type = DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE;
501 else
502 dso->symtab_type = DSO_BINARY_TYPE__GUEST_KMODULE;
503
504 /* _KMODULE_COMP should be next to _KMODULE */
Jiri Olsaca333802015-02-17 17:29:57 +0100505 if (m->kmod && m->comp)
Jiri Olsada17ea32015-02-12 22:10:52 +0100506 dso->symtab_type++;
Jiri Olsaca333802015-02-17 17:29:57 +0100507
508 dso__set_short_name(dso, strdup(m->name), true);
509 dso__set_long_name(dso, strdup(filename), true);
Jiri Olsada17ea32015-02-12 22:10:52 +0100510 }
511
512 return dso;
513}
514
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300515int machine__process_aux_event(struct machine *machine __maybe_unused,
516 union perf_event *event)
517{
518 if (dump_trace)
519 perf_event__fprintf_aux(event, stdout);
520 return 0;
521}
522
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300523int machine__process_itrace_start_event(struct machine *machine __maybe_unused,
524 union perf_event *event)
525{
526 if (dump_trace)
527 perf_event__fprintf_itrace_start(event, stdout);
528 return 0;
529}
530
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300531struct map *machine__new_module(struct machine *machine, u64 start,
532 const char *filename)
533{
Jiri Olsaca333802015-02-17 17:29:57 +0100534 struct map *map = NULL;
535 struct dso *dso;
536 struct kmod_path m;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300537
Jiri Olsaca333802015-02-17 17:29:57 +0100538 if (kmod_path__parse_name(&m, filename))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300539 return NULL;
540
Jiri Olsabc84f462015-02-17 17:31:18 +0100541 map = map_groups__find_by_name(&machine->kmaps, MAP__FUNCTION,
542 m.name);
543 if (map)
544 goto out;
545
Jiri Olsaca333802015-02-17 17:29:57 +0100546 dso = machine__module_dso(machine, &m, filename);
547 if (dso == NULL)
548 goto out;
549
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300550 map = map__new2(start, dso, MAP__FUNCTION);
551 if (map == NULL)
Jiri Olsaca333802015-02-17 17:29:57 +0100552 goto out;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300553
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300554 map_groups__insert(&machine->kmaps, map);
Jiri Olsaca333802015-02-17 17:29:57 +0100555
556out:
557 free(m.name);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300558 return map;
559}
560
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300561size_t machines__fprintf_dsos(struct machines *machines, FILE *fp)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300562{
563 struct rb_node *nd;
Waiman Long8fa7d872014-09-29 16:07:28 -0400564 size_t ret = __dsos__fprintf(&machines->host.kernel_dsos.head, fp) +
565 __dsos__fprintf(&machines->host.user_dsos.head, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300566
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300567 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300568 struct machine *pos = rb_entry(nd, struct machine, rb_node);
Waiman Long8fa7d872014-09-29 16:07:28 -0400569 ret += __dsos__fprintf(&pos->kernel_dsos.head, fp);
570 ret += __dsos__fprintf(&pos->user_dsos.head, fp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300571 }
572
573 return ret;
574}
575
Waiman Long8fa7d872014-09-29 16:07:28 -0400576size_t machine__fprintf_dsos_buildid(struct machine *m, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300577 bool (skip)(struct dso *dso, int parm), int parm)
578{
Waiman Long8fa7d872014-09-29 16:07:28 -0400579 return __dsos__fprintf_buildid(&m->kernel_dsos.head, fp, skip, parm) +
580 __dsos__fprintf_buildid(&m->user_dsos.head, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300581}
582
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300583size_t machines__fprintf_dsos_buildid(struct machines *machines, FILE *fp,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300584 bool (skip)(struct dso *dso, int parm), int parm)
585{
586 struct rb_node *nd;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300587 size_t ret = machine__fprintf_dsos_buildid(&machines->host, fp, skip, parm);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300588
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300589 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300590 struct machine *pos = rb_entry(nd, struct machine, rb_node);
591 ret += machine__fprintf_dsos_buildid(pos, fp, skip, parm);
592 }
593 return ret;
594}
595
596size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp)
597{
598 int i;
599 size_t printed = 0;
600 struct dso *kdso = machine->vmlinux_maps[MAP__FUNCTION]->dso;
601
602 if (kdso->has_build_id) {
603 char filename[PATH_MAX];
604 if (dso__build_id_filename(kdso, filename, sizeof(filename)))
605 printed += fprintf(fp, "[0] %s\n", filename);
606 }
607
608 for (i = 0; i < vmlinux_path__nr_entries; ++i)
609 printed += fprintf(fp, "[%d] %s\n",
610 i + kdso->has_build_id, vmlinux_path[i]);
611
612 return printed;
613}
614
615size_t machine__fprintf(struct machine *machine, FILE *fp)
616{
617 size_t ret = 0;
618 struct rb_node *nd;
619
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300620 pthread_rwlock_rdlock(&machine->threads_lock);
621
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300622 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
623 struct thread *pos = rb_entry(nd, struct thread, rb_node);
624
625 ret += thread__fprintf(pos, fp);
626 }
627
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300628 pthread_rwlock_unlock(&machine->threads_lock);
629
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300630 return ret;
631}
632
633static struct dso *machine__get_kernel(struct machine *machine)
634{
635 const char *vmlinux_name = NULL;
636 struct dso *kernel;
637
638 if (machine__is_host(machine)) {
639 vmlinux_name = symbol_conf.vmlinux_name;
640 if (!vmlinux_name)
641 vmlinux_name = "[kernel.kallsyms]";
642
Arnaldo Carvalho de Melo459ce512015-05-28 12:40:55 -0300643 kernel = machine__findnew_kernel(machine, vmlinux_name,
644 "[kernel]", DSO_TYPE_KERNEL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300645 } else {
646 char bf[PATH_MAX];
647
648 if (machine__is_default_guest(machine))
649 vmlinux_name = symbol_conf.default_guest_vmlinux_name;
650 if (!vmlinux_name)
651 vmlinux_name = machine__mmap_name(machine, bf,
652 sizeof(bf));
653
Arnaldo Carvalho de Melo459ce512015-05-28 12:40:55 -0300654 kernel = machine__findnew_kernel(machine, vmlinux_name,
655 "[guest.kernel]",
656 DSO_TYPE_GUEST_KERNEL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300657 }
658
659 if (kernel != NULL && (!kernel->has_build_id))
660 dso__read_running_kernel_build_id(kernel, machine);
661
662 return kernel;
663}
664
665struct process_args {
666 u64 start;
667};
668
Adrian Hunter15a0a872014-01-29 16:14:38 +0200669static void machine__get_kallsyms_filename(struct machine *machine, char *buf,
670 size_t bufsz)
671{
672 if (machine__is_default_guest(machine))
673 scnprintf(buf, bufsz, "%s", symbol_conf.default_guest_kallsyms);
674 else
675 scnprintf(buf, bufsz, "%s/proc/kallsyms", machine->root_dir);
676}
677
Simon Quea93f0e52014-06-16 11:32:09 -0700678const char *ref_reloc_sym_names[] = {"_text", "_stext", NULL};
679
680/* Figure out the start address of kernel map from /proc/kallsyms.
681 * Returns the name of the start symbol in *symbol_name. Pass in NULL as
682 * symbol_name if it's not that important.
683 */
Adrian Hunter4b993752014-08-15 22:08:38 +0300684static u64 machine__get_running_kernel_start(struct machine *machine,
685 const char **symbol_name)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300686{
Adrian Hunter15a0a872014-01-29 16:14:38 +0200687 char filename[PATH_MAX];
Simon Quea93f0e52014-06-16 11:32:09 -0700688 int i;
689 const char *name;
690 u64 addr = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300691
Adrian Hunter15a0a872014-01-29 16:14:38 +0200692 machine__get_kallsyms_filename(machine, filename, PATH_MAX);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300693
694 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
695 return 0;
696
Simon Quea93f0e52014-06-16 11:32:09 -0700697 for (i = 0; (name = ref_reloc_sym_names[i]) != NULL; i++) {
698 addr = kallsyms__get_function_start(filename, name);
699 if (addr)
700 break;
701 }
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300702
Simon Quea93f0e52014-06-16 11:32:09 -0700703 if (symbol_name)
704 *symbol_name = name;
705
706 return addr;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300707}
708
709int __machine__create_kernel_maps(struct machine *machine, struct dso *kernel)
710{
711 enum map_type type;
Adrian Hunter4b993752014-08-15 22:08:38 +0300712 u64 start = machine__get_running_kernel_start(machine, NULL);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300713
714 for (type = 0; type < MAP__NR_TYPES; ++type) {
715 struct kmap *kmap;
716
717 machine->vmlinux_maps[type] = map__new2(start, kernel, type);
718 if (machine->vmlinux_maps[type] == NULL)
719 return -1;
720
721 machine->vmlinux_maps[type]->map_ip =
722 machine->vmlinux_maps[type]->unmap_ip =
723 identity__map_ip;
724 kmap = map__kmap(machine->vmlinux_maps[type]);
Wang Nanba927322015-04-07 08:22:45 +0000725 if (!kmap)
726 return -1;
727
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300728 kmap->kmaps = &machine->kmaps;
729 map_groups__insert(&machine->kmaps,
730 machine->vmlinux_maps[type]);
731 }
732
733 return 0;
734}
735
736void machine__destroy_kernel_maps(struct machine *machine)
737{
738 enum map_type type;
739
740 for (type = 0; type < MAP__NR_TYPES; ++type) {
741 struct kmap *kmap;
742
743 if (machine->vmlinux_maps[type] == NULL)
744 continue;
745
746 kmap = map__kmap(machine->vmlinux_maps[type]);
747 map_groups__remove(&machine->kmaps,
748 machine->vmlinux_maps[type]);
Wang Nanba927322015-04-07 08:22:45 +0000749 if (kmap && kmap->ref_reloc_sym) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300750 /*
751 * ref_reloc_sym is shared among all maps, so free just
752 * on one of them.
753 */
754 if (type == MAP__FUNCTION) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300755 zfree((char **)&kmap->ref_reloc_sym->name);
756 zfree(&kmap->ref_reloc_sym);
757 } else
758 kmap->ref_reloc_sym = NULL;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300759 }
760
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300761 machine->vmlinux_maps[type] = NULL;
762 }
763}
764
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300765int machines__create_guest_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300766{
767 int ret = 0;
768 struct dirent **namelist = NULL;
769 int i, items = 0;
770 char path[PATH_MAX];
771 pid_t pid;
772 char *endp;
773
774 if (symbol_conf.default_guest_vmlinux_name ||
775 symbol_conf.default_guest_modules ||
776 symbol_conf.default_guest_kallsyms) {
777 machines__create_kernel_maps(machines, DEFAULT_GUEST_KERNEL_ID);
778 }
779
780 if (symbol_conf.guestmount) {
781 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
782 if (items <= 0)
783 return -ENOENT;
784 for (i = 0; i < items; i++) {
785 if (!isdigit(namelist[i]->d_name[0])) {
786 /* Filter out . and .. */
787 continue;
788 }
789 pid = (pid_t)strtol(namelist[i]->d_name, &endp, 10);
790 if ((*endp != '\0') ||
791 (endp == namelist[i]->d_name) ||
792 (errno == ERANGE)) {
793 pr_debug("invalid directory (%s). Skipping.\n",
794 namelist[i]->d_name);
795 continue;
796 }
797 sprintf(path, "%s/%s/proc/kallsyms",
798 symbol_conf.guestmount,
799 namelist[i]->d_name);
800 ret = access(path, R_OK);
801 if (ret) {
802 pr_debug("Can't access file %s\n", path);
803 goto failure;
804 }
805 machines__create_kernel_maps(machines, pid);
806 }
807failure:
808 free(namelist);
809 }
810
811 return ret;
812}
813
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300814void machines__destroy_kernel_maps(struct machines *machines)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300815{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300816 struct rb_node *next = rb_first(&machines->guests);
817
818 machine__destroy_kernel_maps(&machines->host);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300819
820 while (next) {
821 struct machine *pos = rb_entry(next, struct machine, rb_node);
822
823 next = rb_next(&pos->rb_node);
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300824 rb_erase(&pos->rb_node, &machines->guests);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300825 machine__delete(pos);
826 }
827}
828
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300829int machines__create_kernel_maps(struct machines *machines, pid_t pid)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300830{
831 struct machine *machine = machines__findnew(machines, pid);
832
833 if (machine == NULL)
834 return -1;
835
836 return machine__create_kernel_maps(machine);
837}
838
839int machine__load_kallsyms(struct machine *machine, const char *filename,
840 enum map_type type, symbol_filter_t filter)
841{
842 struct map *map = machine->vmlinux_maps[type];
843 int ret = dso__load_kallsyms(map->dso, filename, map, filter);
844
845 if (ret > 0) {
846 dso__set_loaded(map->dso, type);
847 /*
848 * Since /proc/kallsyms will have multiple sessions for the
849 * kernel, with modules between them, fixup the end of all
850 * sections.
851 */
852 __map_groups__fixup_end(&machine->kmaps, type);
853 }
854
855 return ret;
856}
857
858int machine__load_vmlinux_path(struct machine *machine, enum map_type type,
859 symbol_filter_t filter)
860{
861 struct map *map = machine->vmlinux_maps[type];
862 int ret = dso__load_vmlinux_path(map->dso, map, filter);
863
Adrian Hunter39b12f782013-08-07 14:38:47 +0300864 if (ret > 0)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300865 dso__set_loaded(map->dso, type);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300866
867 return ret;
868}
869
870static void map_groups__fixup_end(struct map_groups *mg)
871{
872 int i;
873 for (i = 0; i < MAP__NR_TYPES; ++i)
874 __map_groups__fixup_end(mg, i);
875}
876
877static char *get_kernel_version(const char *root_dir)
878{
879 char version[PATH_MAX];
880 FILE *file;
881 char *name, *tmp;
882 const char *prefix = "Linux version ";
883
884 sprintf(version, "%s/proc/version", root_dir);
885 file = fopen(version, "r");
886 if (!file)
887 return NULL;
888
889 version[0] = '\0';
890 tmp = fgets(version, sizeof(version), file);
891 fclose(file);
892
893 name = strstr(version, prefix);
894 if (!name)
895 return NULL;
896 name += strlen(prefix);
897 tmp = strchr(name, ' ');
898 if (tmp)
899 *tmp = '\0';
900
901 return strdup(name);
902}
903
Jiri Olsabb58a8a2015-02-12 22:20:01 +0100904static bool is_kmod_dso(struct dso *dso)
905{
906 return dso->symtab_type == DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE ||
907 dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE;
908}
909
910static int map_groups__set_module_path(struct map_groups *mg, const char *path,
911 struct kmod_path *m)
912{
913 struct map *map;
914 char *long_name;
915
916 map = map_groups__find_by_name(mg, MAP__FUNCTION, m->name);
917 if (map == NULL)
918 return 0;
919
920 long_name = strdup(path);
921 if (long_name == NULL)
922 return -ENOMEM;
923
924 dso__set_long_name(map->dso, long_name, true);
925 dso__kernel_module_get_build_id(map->dso, "");
926
927 /*
928 * Full name could reveal us kmod compression, so
929 * we need to update the symtab_type if needed.
930 */
931 if (m->comp && is_kmod_dso(map->dso))
932 map->dso->symtab_type++;
933
934 return 0;
935}
936
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300937static int map_groups__set_modules_path_dir(struct map_groups *mg,
Richard Yao61d42902014-04-26 13:17:55 -0400938 const char *dir_name, int depth)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300939{
940 struct dirent *dent;
941 DIR *dir = opendir(dir_name);
942 int ret = 0;
943
944 if (!dir) {
945 pr_debug("%s: cannot open %s dir\n", __func__, dir_name);
946 return -1;
947 }
948
949 while ((dent = readdir(dir)) != NULL) {
950 char path[PATH_MAX];
951 struct stat st;
952
953 /*sshfs might return bad dent->d_type, so we have to stat*/
954 snprintf(path, sizeof(path), "%s/%s", dir_name, dent->d_name);
955 if (stat(path, &st))
956 continue;
957
958 if (S_ISDIR(st.st_mode)) {
959 if (!strcmp(dent->d_name, ".") ||
960 !strcmp(dent->d_name, ".."))
961 continue;
962
Richard Yao61d42902014-04-26 13:17:55 -0400963 /* Do not follow top-level source and build symlinks */
964 if (depth == 0) {
965 if (!strcmp(dent->d_name, "source") ||
966 !strcmp(dent->d_name, "build"))
967 continue;
968 }
969
970 ret = map_groups__set_modules_path_dir(mg, path,
971 depth + 1);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300972 if (ret < 0)
973 goto out;
974 } else {
Jiri Olsabb58a8a2015-02-12 22:20:01 +0100975 struct kmod_path m;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300976
Jiri Olsabb58a8a2015-02-12 22:20:01 +0100977 ret = kmod_path__parse_name(&m, dent->d_name);
978 if (ret)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300979 goto out;
Jiri Olsabb58a8a2015-02-12 22:20:01 +0100980
981 if (m.kmod)
982 ret = map_groups__set_module_path(mg, path, &m);
983
984 free(m.name);
985
986 if (ret)
987 goto out;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300988 }
989 }
990
991out:
992 closedir(dir);
993 return ret;
994}
995
996static int machine__set_modules_path(struct machine *machine)
997{
998 char *version;
999 char modules_path[PATH_MAX];
1000
1001 version = get_kernel_version(machine->root_dir);
1002 if (!version)
1003 return -1;
1004
Richard Yao61d42902014-04-26 13:17:55 -04001005 snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s",
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001006 machine->root_dir, version);
1007 free(version);
1008
Richard Yao61d42902014-04-26 13:17:55 -04001009 return map_groups__set_modules_path_dir(&machine->kmaps, modules_path, 0);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001010}
1011
Adrian Hunter316d70d2013-10-08 11:45:48 +03001012static int machine__create_module(void *arg, const char *name, u64 start)
1013{
1014 struct machine *machine = arg;
1015 struct map *map;
1016
1017 map = machine__new_module(machine, start, name);
1018 if (map == NULL)
1019 return -1;
1020
1021 dso__kernel_module_get_build_id(map->dso, machine->root_dir);
1022
1023 return 0;
1024}
1025
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001026static int machine__create_modules(struct machine *machine)
1027{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001028 const char *modules;
1029 char path[PATH_MAX];
1030
Adrian Hunterf4be9042013-09-22 13:22:09 +03001031 if (machine__is_default_guest(machine)) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001032 modules = symbol_conf.default_guest_modules;
Adrian Hunterf4be9042013-09-22 13:22:09 +03001033 } else {
1034 snprintf(path, PATH_MAX, "%s/proc/modules", machine->root_dir);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001035 modules = path;
1036 }
1037
Adrian Hunteraa7fe3b2013-09-22 13:22:09 +03001038 if (symbol__restricted_filename(modules, "/proc/modules"))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001039 return -1;
1040
Adrian Hunter316d70d2013-10-08 11:45:48 +03001041 if (modules__parse(modules, machine, machine__create_module))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001042 return -1;
1043
Adrian Hunter316d70d2013-10-08 11:45:48 +03001044 if (!machine__set_modules_path(machine))
1045 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001046
Adrian Hunter316d70d2013-10-08 11:45:48 +03001047 pr_debug("Problems setting modules path maps, continuing anyway...\n");
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001048
Jason Wessel8f76fcd2013-07-15 15:27:53 -05001049 return 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001050}
1051
1052int machine__create_kernel_maps(struct machine *machine)
1053{
1054 struct dso *kernel = machine__get_kernel(machine);
Adrian Hunter5512cf22014-01-29 16:14:39 +02001055 const char *name;
Adrian Hunter4b993752014-08-15 22:08:38 +03001056 u64 addr = machine__get_running_kernel_start(machine, &name);
Adrian Hunter5512cf22014-01-29 16:14:39 +02001057 if (!addr)
1058 return -1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001059
1060 if (kernel == NULL ||
1061 __machine__create_kernel_maps(machine, kernel) < 0)
1062 return -1;
1063
1064 if (symbol_conf.use_modules && machine__create_modules(machine) < 0) {
1065 if (machine__is_host(machine))
1066 pr_debug("Problems creating module maps, "
1067 "continuing anyway...\n");
1068 else
1069 pr_debug("Problems creating module maps for guest %d, "
1070 "continuing anyway...\n", machine->pid);
1071 }
1072
1073 /*
1074 * Now that we have all the maps created, just set the ->end of them:
1075 */
1076 map_groups__fixup_end(&machine->kmaps);
Adrian Hunter5512cf22014-01-29 16:14:39 +02001077
1078 if (maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps, name,
1079 addr)) {
1080 machine__destroy_kernel_maps(machine);
1081 return -1;
1082 }
1083
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001084 return 0;
1085}
1086
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001087static void machine__set_kernel_mmap_len(struct machine *machine,
1088 union perf_event *event)
1089{
Namhyung Kim4552cf0f2012-11-07 16:27:10 +09001090 int i;
1091
1092 for (i = 0; i < MAP__NR_TYPES; i++) {
1093 machine->vmlinux_maps[i]->start = event->mmap.start;
1094 machine->vmlinux_maps[i]->end = (event->mmap.start +
1095 event->mmap.len);
1096 /*
1097 * Be a bit paranoid here, some perf.data file came with
1098 * a zero sized synthesized MMAP event for the kernel.
1099 */
1100 if (machine->vmlinux_maps[i]->end == 0)
1101 machine->vmlinux_maps[i]->end = ~0ULL;
1102 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001103}
1104
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001105static bool machine__uses_kcore(struct machine *machine)
1106{
1107 struct dso *dso;
1108
Waiman Long8fa7d872014-09-29 16:07:28 -04001109 list_for_each_entry(dso, &machine->kernel_dsos.head, node) {
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001110 if (dso__is_kcore(dso))
1111 return true;
1112 }
1113
1114 return false;
1115}
1116
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001117static int machine__process_kernel_mmap_event(struct machine *machine,
1118 union perf_event *event)
1119{
1120 struct map *map;
1121 char kmmap_prefix[PATH_MAX];
1122 enum dso_kernel_type kernel_type;
1123 bool is_kernel_mmap;
1124
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001125 /* If we have maps from kcore then we do not need or want any others */
1126 if (machine__uses_kcore(machine))
1127 return 0;
1128
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001129 machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
1130 if (machine__is_host(machine))
1131 kernel_type = DSO_TYPE_KERNEL;
1132 else
1133 kernel_type = DSO_TYPE_GUEST_KERNEL;
1134
1135 is_kernel_mmap = memcmp(event->mmap.filename,
1136 kmmap_prefix,
1137 strlen(kmmap_prefix) - 1) == 0;
1138 if (event->mmap.filename[0] == '/' ||
1139 (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001140 map = machine__new_module(machine, event->mmap.start,
1141 event->mmap.filename);
1142 if (map == NULL)
1143 goto out_problem;
1144
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001145 map->end = map->start + event->mmap.len;
1146 } else if (is_kernel_mmap) {
1147 const char *symbol_name = (event->mmap.filename +
1148 strlen(kmmap_prefix));
1149 /*
1150 * Should be there already, from the build-id table in
1151 * the header.
1152 */
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001153 struct dso *kernel = NULL;
1154 struct dso *dso;
1155
1156 list_for_each_entry(dso, &machine->kernel_dsos.head, node) {
Jiri Olsae746b3e2015-02-12 22:16:34 +01001157 if (is_kernel_module(dso->long_name))
Namhyung Kimb837a8b2014-11-04 10:14:33 +09001158 continue;
1159
1160 kernel = dso;
1161 break;
1162 }
1163
1164 if (kernel == NULL)
1165 kernel = __dsos__findnew(&machine->kernel_dsos,
1166 kmmap_prefix);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001167 if (kernel == NULL)
1168 goto out_problem;
1169
1170 kernel->kernel = kernel_type;
1171 if (__machine__create_kernel_maps(machine, kernel) < 0)
1172 goto out_problem;
1173
Namhyung Kim330dfa22014-11-18 13:30:28 +09001174 if (strstr(kernel->long_name, "vmlinux"))
1175 dso__set_short_name(kernel, "[kernel.vmlinux]", false);
Namhyung Kim96d78052014-11-04 10:14:34 +09001176
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001177 machine__set_kernel_mmap_len(machine, event);
1178
1179 /*
1180 * Avoid using a zero address (kptr_restrict) for the ref reloc
1181 * symbol. Effectively having zero here means that at record
1182 * time /proc/sys/kernel/kptr_restrict was non zero.
1183 */
1184 if (event->mmap.pgoff != 0) {
1185 maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps,
1186 symbol_name,
1187 event->mmap.pgoff);
1188 }
1189
1190 if (machine__is_default_guest(machine)) {
1191 /*
1192 * preload dso of guest kernel and modules
1193 */
1194 dso__load(kernel, machine->vmlinux_maps[MAP__FUNCTION],
1195 NULL);
1196 }
1197 }
1198 return 0;
1199out_problem:
1200 return -1;
1201}
1202
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001203int machine__process_mmap2_event(struct machine *machine,
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001204 union perf_event *event,
1205 struct perf_sample *sample __maybe_unused)
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001206{
1207 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1208 struct thread *thread;
1209 struct map *map;
1210 enum map_type type;
1211 int ret = 0;
1212
1213 if (dump_trace)
1214 perf_event__fprintf_mmap2(event, stdout);
1215
1216 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1217 cpumode == PERF_RECORD_MISC_KERNEL) {
1218 ret = machine__process_kernel_mmap_event(machine, event);
1219 if (ret < 0)
1220 goto out_problem;
1221 return 0;
1222 }
1223
1224 thread = machine__findnew_thread(machine, event->mmap2.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001225 event->mmap2.tid);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001226 if (thread == NULL)
1227 goto out_problem;
1228
1229 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1230 type = MAP__VARIABLE;
1231 else
1232 type = MAP__FUNCTION;
1233
Adrian Hunter2a030682014-07-22 16:17:53 +03001234 map = map__new(machine, event->mmap2.start,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001235 event->mmap2.len, event->mmap2.pgoff,
1236 event->mmap2.pid, event->mmap2.maj,
1237 event->mmap2.min, event->mmap2.ino,
1238 event->mmap2.ino_generation,
Don Zickus7ef80702014-05-19 15:13:49 -04001239 event->mmap2.prot,
1240 event->mmap2.flags,
Adrian Hunter5835edd2014-07-22 16:18:00 +03001241 event->mmap2.filename, type, thread);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001242
1243 if (map == NULL)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001244 goto out_problem_map;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001245
1246 thread__insert_map(thread, map);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001247 thread__put(thread);
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001248 map__put(map);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001249 return 0;
1250
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001251out_problem_map:
1252 thread__put(thread);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001253out_problem:
1254 dump_printf("problem processing PERF_RECORD_MMAP2, skipping event.\n");
1255 return 0;
1256}
1257
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001258int machine__process_mmap_event(struct machine *machine, union perf_event *event,
1259 struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001260{
1261 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1262 struct thread *thread;
1263 struct map *map;
Stephane Eranianbad40912013-01-24 16:10:40 +01001264 enum map_type type;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001265 int ret = 0;
1266
1267 if (dump_trace)
1268 perf_event__fprintf_mmap(event, stdout);
1269
1270 if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
1271 cpumode == PERF_RECORD_MISC_KERNEL) {
1272 ret = machine__process_kernel_mmap_event(machine, event);
1273 if (ret < 0)
1274 goto out_problem;
1275 return 0;
1276 }
1277
Adrian Hunter314add62013-08-27 11:23:03 +03001278 thread = machine__findnew_thread(machine, event->mmap.pid,
Don Zickus11c9abf2014-02-26 10:45:27 -05001279 event->mmap.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001280 if (thread == NULL)
1281 goto out_problem;
Stephane Eranianbad40912013-01-24 16:10:40 +01001282
1283 if (event->header.misc & PERF_RECORD_MISC_MMAP_DATA)
1284 type = MAP__VARIABLE;
1285 else
1286 type = MAP__FUNCTION;
1287
Adrian Hunter2a030682014-07-22 16:17:53 +03001288 map = map__new(machine, event->mmap.start,
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001289 event->mmap.len, event->mmap.pgoff,
Don Zickus7ef80702014-05-19 15:13:49 -04001290 event->mmap.pid, 0, 0, 0, 0, 0, 0,
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001291 event->mmap.filename,
Adrian Hunter5835edd2014-07-22 16:18:00 +03001292 type, thread);
Stephane Eranianbad40912013-01-24 16:10:40 +01001293
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001294 if (map == NULL)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001295 goto out_problem_map;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001296
1297 thread__insert_map(thread, map);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001298 thread__put(thread);
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001299 map__put(map);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001300 return 0;
1301
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001302out_problem_map:
1303 thread__put(thread);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001304out_problem:
1305 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
1306 return 0;
1307}
1308
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001309static void __machine__remove_thread(struct machine *machine, struct thread *th, bool lock)
David Ahern236a3bb2013-08-14 08:49:27 -06001310{
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001311 if (machine->last_match == th)
Arnaldo Carvalho de Melo0ceb8f62015-05-11 18:08:12 -03001312 machine->last_match = NULL;
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001313
Arnaldo Carvalho de Melo59a51c12015-05-15 15:32:55 -03001314 BUG_ON(atomic_read(&th->refcnt) == 0);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001315 if (lock)
1316 pthread_rwlock_wrlock(&machine->threads_lock);
Arnaldo Carvalho de Melo0170b142015-05-25 15:23:05 -03001317 rb_erase_init(&th->rb_node, &machine->threads);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001318 RB_CLEAR_NODE(&th->rb_node);
David Ahern236a3bb2013-08-14 08:49:27 -06001319 /*
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001320 * Move it first to the dead_threads list, then drop the reference,
1321 * if this is the last reference, then the thread__delete destructor
1322 * will be called and we will remove it from the dead_threads list.
David Ahern236a3bb2013-08-14 08:49:27 -06001323 */
1324 list_add_tail(&th->node, &machine->dead_threads);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001325 if (lock)
1326 pthread_rwlock_unlock(&machine->threads_lock);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001327 thread__put(th);
David Ahern236a3bb2013-08-14 08:49:27 -06001328}
1329
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001330void machine__remove_thread(struct machine *machine, struct thread *th)
1331{
1332 return __machine__remove_thread(machine, th, true);
1333}
1334
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001335int machine__process_fork_event(struct machine *machine, union perf_event *event,
1336 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001337{
Jiri Olsad75e6092014-03-14 15:00:03 +01001338 struct thread *thread = machine__find_thread(machine,
1339 event->fork.pid,
1340 event->fork.tid);
Adrian Hunter314add62013-08-27 11:23:03 +03001341 struct thread *parent = machine__findnew_thread(machine,
1342 event->fork.ppid,
1343 event->fork.ptid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001344 int err = 0;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001345
David Ahern236a3bb2013-08-14 08:49:27 -06001346 /* if a thread currently exists for the thread id remove it */
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001347 if (thread != NULL) {
David Ahern236a3bb2013-08-14 08:49:27 -06001348 machine__remove_thread(machine, thread);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001349 thread__put(thread);
1350 }
David Ahern236a3bb2013-08-14 08:49:27 -06001351
Adrian Hunter314add62013-08-27 11:23:03 +03001352 thread = machine__findnew_thread(machine, event->fork.pid,
1353 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001354 if (dump_trace)
1355 perf_event__fprintf_task(event, stdout);
1356
1357 if (thread == NULL || parent == NULL ||
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001358 thread__fork(thread, parent, sample->time) < 0) {
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001359 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001360 err = -1;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001361 }
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001362 thread__put(thread);
1363 thread__put(parent);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001364
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001365 return err;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001366}
1367
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001368int machine__process_exit_event(struct machine *machine, union perf_event *event,
1369 struct perf_sample *sample __maybe_unused)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001370{
Jiri Olsad75e6092014-03-14 15:00:03 +01001371 struct thread *thread = machine__find_thread(machine,
1372 event->fork.pid,
1373 event->fork.tid);
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001374
1375 if (dump_trace)
1376 perf_event__fprintf_task(event, stdout);
1377
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001378 if (thread != NULL) {
David Ahern236a3bb2013-08-14 08:49:27 -06001379 thread__exited(thread);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001380 thread__put(thread);
1381 }
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001382
1383 return 0;
1384}
1385
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001386int machine__process_event(struct machine *machine, union perf_event *event,
1387 struct perf_sample *sample)
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001388{
1389 int ret;
1390
1391 switch (event->header.type) {
1392 case PERF_RECORD_COMM:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001393 ret = machine__process_comm_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001394 case PERF_RECORD_MMAP:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001395 ret = machine__process_mmap_event(machine, event, sample); break;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001396 case PERF_RECORD_MMAP2:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001397 ret = machine__process_mmap2_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001398 case PERF_RECORD_FORK:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001399 ret = machine__process_fork_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001400 case PERF_RECORD_EXIT:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001401 ret = machine__process_exit_event(machine, event, sample); break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001402 case PERF_RECORD_LOST:
Frederic Weisbecker162f0be2013-09-11 16:18:24 +02001403 ret = machine__process_lost_event(machine, event, sample); break;
Adrian Hunter4a96f7a2015-04-30 17:37:29 +03001404 case PERF_RECORD_AUX:
1405 ret = machine__process_aux_event(machine, event); break;
Adrian Hunter0ad21f62015-04-30 17:37:30 +03001406 case PERF_RECORD_ITRACE_START:
1407 ret = machine__process_itrace_start_event(machine, event);
1408 break;
Arnaldo Carvalho de Melob0a7d1a2012-10-06 16:26:02 -03001409 default:
1410 ret = -1;
1411 break;
1412 }
1413
1414 return ret;
1415}
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001416
Greg Priceb21484f2012-12-06 21:48:05 -08001417static bool symbol__match_regex(struct symbol *sym, regex_t *regex)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001418{
Greg Priceb21484f2012-12-06 21:48:05 -08001419 if (sym->name && !regexec(regex, sym->name, 0, NULL, 0))
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001420 return 1;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001421 return 0;
1422}
1423
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001424static void ip__resolve_ams(struct thread *thread,
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001425 struct addr_map_symbol *ams,
1426 u64 ip)
1427{
1428 struct addr_location al;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001429
1430 memset(&al, 0, sizeof(al));
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -03001431 /*
1432 * We cannot use the header.misc hint to determine whether a
1433 * branch stack address is user, kernel, guest, hypervisor.
1434 * Branches may straddle the kernel/user/hypervisor boundaries.
1435 * Thus, we have to try consecutively until we find a match
1436 * or else, the symbol is unknown
1437 */
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001438 thread__find_cpumode_addr_location(thread, MAP__FUNCTION, ip, &al);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001439
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001440 ams->addr = ip;
1441 ams->al_addr = al.addr;
1442 ams->sym = al.sym;
1443 ams->map = al.map;
1444}
1445
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001446static void ip__resolve_data(struct thread *thread,
Stephane Eranian98a3b322013-01-24 16:10:35 +01001447 u8 m, struct addr_map_symbol *ams, u64 addr)
1448{
1449 struct addr_location al;
1450
1451 memset(&al, 0, sizeof(al));
1452
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001453 thread__find_addr_location(thread, m, MAP__VARIABLE, addr, &al);
Don Zickus06b2afc2014-08-20 23:25:11 -04001454 if (al.map == NULL) {
1455 /*
1456 * some shared data regions have execute bit set which puts
1457 * their mapping in the MAP__FUNCTION type array.
1458 * Check there as a fallback option before dropping the sample.
1459 */
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001460 thread__find_addr_location(thread, m, MAP__FUNCTION, addr, &al);
Don Zickus06b2afc2014-08-20 23:25:11 -04001461 }
1462
Stephane Eranian98a3b322013-01-24 16:10:35 +01001463 ams->addr = addr;
1464 ams->al_addr = al.addr;
1465 ams->sym = al.sym;
1466 ams->map = al.map;
1467}
1468
Arnaldo Carvalho de Meloe80faac2014-01-22 13:05:06 -03001469struct mem_info *sample__resolve_mem(struct perf_sample *sample,
1470 struct addr_location *al)
Stephane Eranian98a3b322013-01-24 16:10:35 +01001471{
1472 struct mem_info *mi = zalloc(sizeof(*mi));
1473
1474 if (!mi)
1475 return NULL;
1476
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001477 ip__resolve_ams(al->thread, &mi->iaddr, sample->ip);
1478 ip__resolve_data(al->thread, al->cpumode, &mi->daddr, sample->addr);
Stephane Eranian98a3b322013-01-24 16:10:35 +01001479 mi->data_src.val = sample->data_src;
1480
1481 return mi;
1482}
1483
Andi Kleen37592b82014-11-12 18:05:19 -08001484static int add_callchain_ip(struct thread *thread,
1485 struct symbol **parent,
1486 struct addr_location *root_al,
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001487 u8 *cpumode,
Andi Kleen37592b82014-11-12 18:05:19 -08001488 u64 ip)
1489{
1490 struct addr_location al;
1491
1492 al.filtered = 0;
1493 al.sym = NULL;
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001494 if (!cpumode) {
Andi Kleen8b7bad52014-11-12 18:05:20 -08001495 thread__find_cpumode_addr_location(thread, MAP__FUNCTION,
1496 ip, &al);
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001497 } else {
Kan Liang2e777842014-12-02 10:06:53 -05001498 if (ip >= PERF_CONTEXT_MAX) {
1499 switch (ip) {
1500 case PERF_CONTEXT_HV:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001501 *cpumode = PERF_RECORD_MISC_HYPERVISOR;
Kan Liang2e777842014-12-02 10:06:53 -05001502 break;
1503 case PERF_CONTEXT_KERNEL:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001504 *cpumode = PERF_RECORD_MISC_KERNEL;
Kan Liang2e777842014-12-02 10:06:53 -05001505 break;
1506 case PERF_CONTEXT_USER:
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001507 *cpumode = PERF_RECORD_MISC_USER;
Kan Liang2e777842014-12-02 10:06:53 -05001508 break;
1509 default:
1510 pr_debug("invalid callchain context: "
1511 "%"PRId64"\n", (s64) ip);
1512 /*
1513 * It seems the callchain is corrupted.
1514 * Discard all.
1515 */
1516 callchain_cursor_reset(&callchain_cursor);
1517 return 1;
1518 }
1519 return 0;
1520 }
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001521 thread__find_addr_location(thread, *cpumode, MAP__FUNCTION,
1522 ip, &al);
Kan Liang2e777842014-12-02 10:06:53 -05001523 }
1524
Andi Kleen37592b82014-11-12 18:05:19 -08001525 if (al.sym != NULL) {
1526 if (sort__has_parent && !*parent &&
1527 symbol__match_regex(al.sym, &parent_regex))
1528 *parent = al.sym;
1529 else if (have_ignore_callees && root_al &&
1530 symbol__match_regex(al.sym, &ignore_callees_regex)) {
1531 /* Treat this symbol as the root,
1532 forgetting its callees. */
1533 *root_al = al;
1534 callchain_cursor_reset(&callchain_cursor);
1535 }
1536 }
1537
Andi Kleen55501712014-11-12 18:05:21 -08001538 return callchain_cursor_append(&callchain_cursor, al.addr, al.map, al.sym);
Andi Kleen37592b82014-11-12 18:05:19 -08001539}
1540
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03001541struct branch_info *sample__resolve_bstack(struct perf_sample *sample,
1542 struct addr_location *al)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001543{
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001544 unsigned int i;
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -03001545 const struct branch_stack *bs = sample->branch_stack;
1546 struct branch_info *bi = calloc(bs->nr, sizeof(struct branch_info));
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001547
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001548 if (!bi)
1549 return NULL;
1550
1551 for (i = 0; i < bs->nr; i++) {
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -03001552 ip__resolve_ams(al->thread, &bi[i].to, bs->entries[i].to);
1553 ip__resolve_ams(al->thread, &bi[i].from, bs->entries[i].from);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001554 bi[i].flags = bs->entries[i].flags;
1555 }
1556 return bi;
1557}
1558
Andi Kleen8b7bad52014-11-12 18:05:20 -08001559#define CHASHSZ 127
1560#define CHASHBITS 7
1561#define NO_ENTRY 0xff
1562
1563#define PERF_MAX_BRANCH_DEPTH 127
1564
1565/* Remove loops. */
1566static int remove_loops(struct branch_entry *l, int nr)
1567{
1568 int i, j, off;
1569 unsigned char chash[CHASHSZ];
1570
1571 memset(chash, NO_ENTRY, sizeof(chash));
1572
1573 BUG_ON(PERF_MAX_BRANCH_DEPTH > 255);
1574
1575 for (i = 0; i < nr; i++) {
1576 int h = hash_64(l[i].from, CHASHBITS) % CHASHSZ;
1577
1578 /* no collision handling for now */
1579 if (chash[h] == NO_ENTRY) {
1580 chash[h] = i;
1581 } else if (l[chash[h]].from == l[i].from) {
1582 bool is_loop = true;
1583 /* check if it is a real loop */
1584 off = 0;
1585 for (j = chash[h]; j < i && i + off < nr; j++, off++)
1586 if (l[j].from != l[i + off].from) {
1587 is_loop = false;
1588 break;
1589 }
1590 if (is_loop) {
1591 memmove(l + i, l + i + off,
1592 (nr - (i + off)) * sizeof(*l));
1593 nr -= off;
1594 }
1595 }
1596 }
1597 return nr;
1598}
1599
Kan Liang384b6052015-01-05 13:23:05 -05001600/*
1601 * Recolve LBR callstack chain sample
1602 * Return:
1603 * 1 on success get LBR callchain information
1604 * 0 no available LBR callchain information, should try fp
1605 * negative error code on other errors.
1606 */
1607static int resolve_lbr_callchain_sample(struct thread *thread,
1608 struct perf_sample *sample,
1609 struct symbol **parent,
1610 struct addr_location *root_al,
1611 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001612{
Kan Liang384b6052015-01-05 13:23:05 -05001613 struct ip_callchain *chain = sample->callchain;
1614 int chain_nr = min(max_stack, (int)chain->nr);
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001615 u8 cpumode = PERF_RECORD_MISC_USER;
Kan Liang384b6052015-01-05 13:23:05 -05001616 int i, j, err;
1617 u64 ip;
1618
1619 for (i = 0; i < chain_nr; i++) {
1620 if (chain->ips[i] == PERF_CONTEXT_USER)
1621 break;
1622 }
1623
1624 /* LBR only affects the user callchain */
1625 if (i != chain_nr) {
1626 struct branch_stack *lbr_stack = sample->branch_stack;
1627 int lbr_nr = lbr_stack->nr;
1628 /*
1629 * LBR callstack can only get user call chain.
1630 * The mix_chain_nr is kernel call chain
1631 * number plus LBR user call chain number.
1632 * i is kernel call chain number,
1633 * 1 is PERF_CONTEXT_USER,
1634 * lbr_nr + 1 is the user call chain number.
1635 * For details, please refer to the comments
1636 * in callchain__printf
1637 */
1638 int mix_chain_nr = i + 1 + lbr_nr + 1;
1639
1640 if (mix_chain_nr > PERF_MAX_STACK_DEPTH + PERF_MAX_BRANCH_DEPTH) {
1641 pr_warning("corrupted callchain. skipping...\n");
1642 return 0;
1643 }
1644
1645 for (j = 0; j < mix_chain_nr; j++) {
1646 if (callchain_param.order == ORDER_CALLEE) {
1647 if (j < i + 1)
1648 ip = chain->ips[j];
1649 else if (j > i + 1)
1650 ip = lbr_stack->entries[j - i - 2].from;
1651 else
1652 ip = lbr_stack->entries[0].to;
1653 } else {
1654 if (j < lbr_nr)
1655 ip = lbr_stack->entries[lbr_nr - j - 1].from;
1656 else if (j > lbr_nr)
1657 ip = chain->ips[i + 1 - (j - lbr_nr)];
1658 else
1659 ip = lbr_stack->entries[0].to;
1660 }
1661
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001662 err = add_callchain_ip(thread, parent, root_al, &cpumode, ip);
Kan Liang384b6052015-01-05 13:23:05 -05001663 if (err)
1664 return (err < 0) ? err : 0;
1665 }
1666 return 1;
1667 }
1668
1669 return 0;
1670}
1671
1672static int thread__resolve_callchain_sample(struct thread *thread,
1673 struct perf_evsel *evsel,
1674 struct perf_sample *sample,
1675 struct symbol **parent,
1676 struct addr_location *root_al,
1677 int max_stack)
1678{
1679 struct branch_stack *branch = sample->branch_stack;
1680 struct ip_callchain *chain = sample->callchain;
Waiman Long91e95612013-10-18 10:38:48 -04001681 int chain_nr = min(max_stack, (int)chain->nr);
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001682 u8 cpumode = PERF_RECORD_MISC_USER;
Kan Liang2e777842014-12-02 10:06:53 -05001683 int i, j, err;
Andi Kleen8b7bad52014-11-12 18:05:20 -08001684 int skip_idx = -1;
1685 int first_call = 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001686
Kan Liang384b6052015-01-05 13:23:05 -05001687 callchain_cursor_reset(&callchain_cursor);
1688
1689 if (has_branch_callstack(evsel)) {
1690 err = resolve_lbr_callchain_sample(thread, sample, parent,
1691 root_al, max_stack);
1692 if (err)
1693 return (err < 0) ? err : 0;
1694 }
1695
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001696 /*
1697 * Based on DWARF debug information, some architectures skip
1698 * a callchain entry saved by the kernel.
1699 */
Andi Kleen8b7bad52014-11-12 18:05:20 -08001700 if (chain->nr < PERF_MAX_STACK_DEPTH)
1701 skip_idx = arch_skip_callchain_idx(thread, chain);
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001702
Andi Kleen8b7bad52014-11-12 18:05:20 -08001703 /*
1704 * Add branches to call stack for easier browsing. This gives
1705 * more context for a sample than just the callers.
1706 *
1707 * This uses individual histograms of paths compared to the
1708 * aggregated histograms the normal LBR mode uses.
1709 *
1710 * Limitations for now:
1711 * - No extra filters
1712 * - No annotations (should annotate somehow)
1713 */
1714
1715 if (branch && callchain_param.branch_callstack) {
1716 int nr = min(max_stack, (int)branch->nr);
1717 struct branch_entry be[nr];
1718
1719 if (branch->nr > PERF_MAX_BRANCH_DEPTH) {
1720 pr_warning("corrupted branch chain. skipping...\n");
1721 goto check_calls;
1722 }
1723
1724 for (i = 0; i < nr; i++) {
1725 if (callchain_param.order == ORDER_CALLEE) {
1726 be[i] = branch->entries[i];
1727 /*
1728 * Check for overlap into the callchain.
1729 * The return address is one off compared to
1730 * the branch entry. To adjust for this
1731 * assume the calling instruction is not longer
1732 * than 8 bytes.
1733 */
1734 if (i == skip_idx ||
1735 chain->ips[first_call] >= PERF_CONTEXT_MAX)
1736 first_call++;
1737 else if (be[i].from < chain->ips[first_call] &&
1738 be[i].from >= chain->ips[first_call] - 8)
1739 first_call++;
1740 } else
1741 be[i] = branch->entries[branch->nr - i - 1];
1742 }
1743
1744 nr = remove_loops(be, nr);
1745
1746 for (i = 0; i < nr; i++) {
1747 err = add_callchain_ip(thread, parent, root_al,
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001748 NULL, be[i].to);
Andi Kleen8b7bad52014-11-12 18:05:20 -08001749 if (!err)
1750 err = add_callchain_ip(thread, parent, root_al,
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001751 NULL, be[i].from);
Andi Kleen8b7bad52014-11-12 18:05:20 -08001752 if (err == -EINVAL)
1753 break;
1754 if (err)
1755 return err;
1756 }
1757 chain_nr -= nr;
1758 }
1759
1760check_calls:
1761 if (chain->nr > PERF_MAX_STACK_DEPTH) {
1762 pr_warning("corrupted callchain. skipping...\n");
1763 return 0;
1764 }
1765
1766 for (i = first_call; i < chain_nr; i++) {
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001767 u64 ip;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001768
1769 if (callchain_param.order == ORDER_CALLEE)
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001770 j = i;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001771 else
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -07001772 j = chain->nr - i - 1;
1773
1774#ifdef HAVE_SKIP_CALLCHAIN_IDX
1775 if (j == skip_idx)
1776 continue;
1777#endif
1778 ip = chain->ips[j];
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001779
David Hildenbrand73dbcd62015-03-30 10:11:00 +02001780 err = add_callchain_ip(thread, parent, root_al, &cpumode, ip);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001781
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001782 if (err)
Kan Liang2e777842014-12-02 10:06:53 -05001783 return (err < 0) ? err : 0;
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001784 }
1785
1786 return 0;
1787}
1788
1789static int unwind_entry(struct unwind_entry *entry, void *arg)
1790{
1791 struct callchain_cursor *cursor = arg;
1792 return callchain_cursor_append(cursor, entry->ip,
1793 entry->map, entry->sym);
1794}
1795
Arnaldo Carvalho de Melocc8b7c22014-10-23 15:26:17 -03001796int thread__resolve_callchain(struct thread *thread,
1797 struct perf_evsel *evsel,
1798 struct perf_sample *sample,
1799 struct symbol **parent,
1800 struct addr_location *root_al,
1801 int max_stack)
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001802{
Kan Liang384b6052015-01-05 13:23:05 -05001803 int ret = thread__resolve_callchain_sample(thread, evsel,
1804 sample, parent,
1805 root_al, max_stack);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001806 if (ret)
1807 return ret;
1808
1809 /* Can we do dwarf post unwind? */
1810 if (!((evsel->attr.sample_type & PERF_SAMPLE_REGS_USER) &&
1811 (evsel->attr.sample_type & PERF_SAMPLE_STACK_USER)))
1812 return 0;
1813
1814 /* Bail out if nothing was captured. */
1815 if ((!sample->user_regs.regs) ||
1816 (!sample->user_stack.size))
1817 return 0;
1818
Arnaldo Carvalho de Melodd8c17a2014-10-23 16:42:19 -03001819 return unwind__get_entries(unwind_entry, &callchain_cursor,
Jiri Olsa352ea452014-01-07 13:47:25 +01001820 thread, sample, max_stack);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -03001821
1822}
David Ahern35feee12013-09-28 13:12:58 -06001823
1824int machine__for_each_thread(struct machine *machine,
1825 int (*fn)(struct thread *thread, void *p),
1826 void *priv)
1827{
1828 struct rb_node *nd;
1829 struct thread *thread;
1830 int rc = 0;
1831
1832 for (nd = rb_first(&machine->threads); nd; nd = rb_next(nd)) {
1833 thread = rb_entry(nd, struct thread, rb_node);
1834 rc = fn(thread, priv);
1835 if (rc != 0)
1836 return rc;
1837 }
1838
1839 list_for_each_entry(thread, &machine->dead_threads, node) {
1840 rc = fn(thread, priv);
1841 if (rc != 0)
1842 return rc;
1843 }
1844 return rc;
1845}
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001846
Arnaldo Carvalho de Meloa33fbd52013-11-11 11:36:12 -03001847int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool,
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001848 struct target *target, struct thread_map *threads,
Arnaldo Carvalho de Meloa33fbd52013-11-11 11:36:12 -03001849 perf_event__handler_t process, bool data_mmap)
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001850{
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001851 if (target__has_task(target))
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001852 return perf_event__synthesize_thread_map(tool, threads, process, machine, data_mmap);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001853 else if (target__has_cpu(target))
Arnaldo Carvalho de Melo58d925d2013-11-11 11:28:02 -03001854 return perf_event__synthesize_threads(tool, process, machine, data_mmap);
1855 /* command specified */
1856 return 0;
1857}
Adrian Hunterb9d266b2014-07-22 16:17:25 +03001858
1859pid_t machine__get_current_tid(struct machine *machine, int cpu)
1860{
1861 if (cpu < 0 || cpu >= MAX_NR_CPUS || !machine->current_tid)
1862 return -1;
1863
1864 return machine->current_tid[cpu];
1865}
1866
1867int machine__set_current_tid(struct machine *machine, int cpu, pid_t pid,
1868 pid_t tid)
1869{
1870 struct thread *thread;
1871
1872 if (cpu < 0)
1873 return -EINVAL;
1874
1875 if (!machine->current_tid) {
1876 int i;
1877
1878 machine->current_tid = calloc(MAX_NR_CPUS, sizeof(pid_t));
1879 if (!machine->current_tid)
1880 return -ENOMEM;
1881 for (i = 0; i < MAX_NR_CPUS; i++)
1882 machine->current_tid[i] = -1;
1883 }
1884
1885 if (cpu >= MAX_NR_CPUS) {
1886 pr_err("Requested CPU %d too large. ", cpu);
1887 pr_err("Consider raising MAX_NR_CPUS\n");
1888 return -EINVAL;
1889 }
1890
1891 machine->current_tid[cpu] = tid;
1892
1893 thread = machine__findnew_thread(machine, pid, tid);
1894 if (!thread)
1895 return -ENOMEM;
1896
1897 thread->cpu = cpu;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001898 thread__put(thread);
Adrian Hunterb9d266b2014-07-22 16:17:25 +03001899
1900 return 0;
1901}
Adrian Hunterfbe2af42014-08-15 22:08:39 +03001902
1903int machine__get_kernel_start(struct machine *machine)
1904{
1905 struct map *map = machine__kernel_map(machine, MAP__FUNCTION);
1906 int err = 0;
1907
1908 /*
1909 * The only addresses above 2^63 are kernel addresses of a 64-bit
1910 * kernel. Note that addresses are unsigned so that on a 32-bit system
1911 * all addresses including kernel addresses are less than 2^32. In
1912 * that case (32-bit system), if the kernel mapping is unknown, all
1913 * addresses will be assumed to be in user space - see
1914 * machine__kernel_ip().
1915 */
1916 machine->kernel_start = 1ULL << 63;
1917 if (map) {
1918 err = map__load(map, machine->symbol_filter);
1919 if (map->start)
1920 machine->kernel_start = map->start;
1921 }
1922 return err;
1923}