blob: 8cbea122e34937fff73110f345aa63c660ed6187 [file] [log] [blame]
Xiao Guangrongb8f46c52010-02-03 11:53:14 +08001#define _FILE_OFFSET_BITS 64
2
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02003#include <linux/kernel.h>
4
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02005#include <byteswap.h>
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02006#include <unistd.h>
7#include <sys/types.h>
Arnaldo Carvalho de Meloa41794c2010-05-18 18:29:23 -03008#include <sys/mman.h>
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02009
10#include "session.h"
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -020011#include "sort.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020012#include "util.h"
13
14static int perf_session__open(struct perf_session *self, bool force)
15{
16 struct stat input_stat;
17
Tom Zanussi8dc58102010-04-01 23:59:15 -050018 if (!strcmp(self->filename, "-")) {
19 self->fd_pipe = true;
20 self->fd = STDIN_FILENO;
21
22 if (perf_header__read(self, self->fd) < 0)
23 pr_err("incompatible file format");
24
25 return 0;
26 }
27
Xiao Guangrongf887f302010-02-04 16:46:42 +080028 self->fd = open(self->filename, O_RDONLY);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020029 if (self->fd < 0) {
Andy Isaacson0f2c3de2010-06-11 20:36:15 -070030 int err = errno;
31
32 pr_err("failed to open %s: %s", self->filename, strerror(err));
33 if (err == ENOENT && !strcmp(self->filename, "perf.data"))
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020034 pr_err(" (try 'perf record' first)");
35 pr_err("\n");
36 return -errno;
37 }
38
39 if (fstat(self->fd, &input_stat) < 0)
40 goto out_close;
41
42 if (!force && input_stat.st_uid && (input_stat.st_uid != geteuid())) {
43 pr_err("file %s not owned by current user or root\n",
44 self->filename);
45 goto out_close;
46 }
47
48 if (!input_stat.st_size) {
49 pr_info("zero-sized file (%s), nothing to do!\n",
50 self->filename);
51 goto out_close;
52 }
53
Tom Zanussi8dc58102010-04-01 23:59:15 -050054 if (perf_header__read(self, self->fd) < 0) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020055 pr_err("incompatible file format");
56 goto out_close;
57 }
58
59 self->size = input_stat.st_size;
60 return 0;
61
62out_close:
63 close(self->fd);
64 self->fd = -1;
65 return -1;
66}
67
Tom Zanussi8dc58102010-04-01 23:59:15 -050068void perf_session__update_sample_type(struct perf_session *self)
69{
70 self->sample_type = perf_header__sample_type(&self->header);
71}
72
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080073int perf_session__create_kernel_maps(struct perf_session *self)
74{
Arnaldo Carvalho de Melod118f8b2010-05-10 12:51:05 -030075 int ret = machine__create_kernel_maps(&self->host_machine);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080076
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080077 if (ret >= 0)
Arnaldo Carvalho de Melod118f8b2010-05-10 12:51:05 -030078 ret = machines__create_guest_kernel_maps(&self->machines);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080079 return ret;
80}
81
Tom Zanussi454c4072010-05-01 01:41:20 -050082struct perf_session *perf_session__new(const char *filename, int mode, bool force, bool repipe)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020083{
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -020084 size_t len = filename ? strlen(filename) + 1 : 0;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020085 struct perf_session *self = zalloc(sizeof(*self) + len);
86
87 if (self == NULL)
88 goto out;
89
90 if (perf_header__init(&self->header) < 0)
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -020091 goto out_free;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020092
93 memcpy(self->filename, filename, len);
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -020094 self->threads = RB_ROOT;
Arnaldo Carvalho de Melo720a3ae2010-06-17 08:37:44 -030095 INIT_LIST_HEAD(&self->dead_threads);
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030096 self->hists_tree = RB_ROOT;
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -020097 self->last_match = NULL;
Arnaldo Carvalho de Meloec913362009-12-13 19:50:27 -020098 self->mmap_window = 32;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -030099 self->machines = RB_ROOT;
Tom Zanussi454c4072010-05-01 01:41:20 -0500100 self->repipe = repipe;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200101 INIT_LIST_HEAD(&self->ordered_samples.samples_head);
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -0300102 machine__init(&self->host_machine, "", HOST_KERNEL_ID);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200103
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -0200104 if (mode == O_RDONLY) {
105 if (perf_session__open(self, force) < 0)
106 goto out_delete;
107 } else if (mode == O_WRONLY) {
108 /*
109 * In O_RDONLY mode this will be performed when reading the
110 * kernel MMAP event, in event__process_mmap().
111 */
112 if (perf_session__create_kernel_maps(self) < 0)
113 goto out_delete;
114 }
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200115
Tom Zanussi8dc58102010-04-01 23:59:15 -0500116 perf_session__update_sample_type(self);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200117out:
118 return self;
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200119out_free:
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200120 free(self);
121 return NULL;
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200122out_delete:
123 perf_session__delete(self);
124 return NULL;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200125}
126
127void perf_session__delete(struct perf_session *self)
128{
129 perf_header__exit(&self->header);
130 close(self->fd);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200131 free(self);
132}
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200133
Arnaldo Carvalho de Melo720a3ae2010-06-17 08:37:44 -0300134void perf_session__remove_thread(struct perf_session *self, struct thread *th)
135{
136 rb_erase(&th->rb_node, &self->threads);
137 /*
138 * We may have references to this thread, for instance in some hist_entry
139 * instances, so just move them to a separate list.
140 */
141 list_add_tail(&th->node, &self->dead_threads);
142}
143
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200144static bool symbol__match_parent_regex(struct symbol *sym)
145{
146 if (sym->name && !regexec(&parent_regex, sym->name, 0, NULL, 0))
147 return 1;
148
149 return 0;
150}
151
Arnaldo Carvalho de Melob3c9ac02010-03-24 16:40:18 -0300152struct map_symbol *perf_session__resolve_callchain(struct perf_session *self,
153 struct thread *thread,
154 struct ip_callchain *chain,
155 struct symbol **parent)
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200156{
157 u8 cpumode = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200158 unsigned int i;
Arnaldo Carvalho de Meload5b2172010-04-02 10:04:18 -0300159 struct map_symbol *syms = calloc(chain->nr, sizeof(*syms));
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200160
Arnaldo Carvalho de Meload5b2172010-04-02 10:04:18 -0300161 if (!syms)
162 return NULL;
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200163
164 for (i = 0; i < chain->nr; i++) {
165 u64 ip = chain->ips[i];
166 struct addr_location al;
167
168 if (ip >= PERF_CONTEXT_MAX) {
169 switch (ip) {
170 case PERF_CONTEXT_HV:
171 cpumode = PERF_RECORD_MISC_HYPERVISOR; break;
172 case PERF_CONTEXT_KERNEL:
173 cpumode = PERF_RECORD_MISC_KERNEL; break;
174 case PERF_CONTEXT_USER:
175 cpumode = PERF_RECORD_MISC_USER; break;
176 default:
177 break;
178 }
179 continue;
180 }
181
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800182 al.filtered = false;
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200183 thread__find_addr_location(thread, self, cpumode,
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800184 MAP__FUNCTION, thread->pid, ip, &al, NULL);
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200185 if (al.sym != NULL) {
186 if (sort__has_parent && !*parent &&
187 symbol__match_parent_regex(al.sym))
188 *parent = al.sym;
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200189 if (!symbol_conf.use_callchain)
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200190 break;
Arnaldo Carvalho de Melob3c9ac02010-03-24 16:40:18 -0300191 syms[i].map = al.map;
192 syms[i].sym = al.sym;
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200193 }
194 }
195
196 return syms;
197}
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200198
199static int process_event_stub(event_t *event __used,
200 struct perf_session *session __used)
201{
202 dump_printf(": unhandled!\n");
203 return 0;
204}
205
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200206static int process_finished_round_stub(event_t *event __used,
207 struct perf_session *session __used,
208 struct perf_event_ops *ops __used)
209{
210 dump_printf(": unhandled!\n");
211 return 0;
212}
213
214static int process_finished_round(event_t *event,
215 struct perf_session *session,
216 struct perf_event_ops *ops);
217
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200218static void perf_event_ops__fill_defaults(struct perf_event_ops *handler)
219{
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200220 if (handler->sample == NULL)
221 handler->sample = process_event_stub;
222 if (handler->mmap == NULL)
223 handler->mmap = process_event_stub;
224 if (handler->comm == NULL)
225 handler->comm = process_event_stub;
226 if (handler->fork == NULL)
227 handler->fork = process_event_stub;
228 if (handler->exit == NULL)
229 handler->exit = process_event_stub;
230 if (handler->lost == NULL)
231 handler->lost = process_event_stub;
232 if (handler->read == NULL)
233 handler->read = process_event_stub;
234 if (handler->throttle == NULL)
235 handler->throttle = process_event_stub;
236 if (handler->unthrottle == NULL)
237 handler->unthrottle = process_event_stub;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500238 if (handler->attr == NULL)
239 handler->attr = process_event_stub;
Tom Zanussicd19a032010-04-01 23:59:20 -0500240 if (handler->event_type == NULL)
241 handler->event_type = process_event_stub;
Tom Zanussi92155452010-04-01 23:59:21 -0500242 if (handler->tracing_data == NULL)
243 handler->tracing_data = process_event_stub;
Tom Zanussic7929e42010-04-01 23:59:22 -0500244 if (handler->build_id == NULL)
245 handler->build_id = process_event_stub;
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200246 if (handler->finished_round == NULL) {
247 if (handler->ordered_samples)
248 handler->finished_round = process_finished_round;
249 else
250 handler->finished_round = process_finished_round_stub;
251 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200252}
253
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200254void mem_bswap_64(void *src, int byte_size)
255{
256 u64 *m = src;
257
258 while (byte_size > 0) {
259 *m = bswap_64(*m);
260 byte_size -= sizeof(u64);
261 ++m;
262 }
263}
264
265static void event__all64_swap(event_t *self)
266{
267 struct perf_event_header *hdr = &self->header;
268 mem_bswap_64(hdr + 1, self->header.size - sizeof(*hdr));
269}
270
271static void event__comm_swap(event_t *self)
272{
273 self->comm.pid = bswap_32(self->comm.pid);
274 self->comm.tid = bswap_32(self->comm.tid);
275}
276
277static void event__mmap_swap(event_t *self)
278{
279 self->mmap.pid = bswap_32(self->mmap.pid);
280 self->mmap.tid = bswap_32(self->mmap.tid);
281 self->mmap.start = bswap_64(self->mmap.start);
282 self->mmap.len = bswap_64(self->mmap.len);
283 self->mmap.pgoff = bswap_64(self->mmap.pgoff);
284}
285
286static void event__task_swap(event_t *self)
287{
288 self->fork.pid = bswap_32(self->fork.pid);
289 self->fork.tid = bswap_32(self->fork.tid);
290 self->fork.ppid = bswap_32(self->fork.ppid);
291 self->fork.ptid = bswap_32(self->fork.ptid);
292 self->fork.time = bswap_64(self->fork.time);
293}
294
295static void event__read_swap(event_t *self)
296{
297 self->read.pid = bswap_32(self->read.pid);
298 self->read.tid = bswap_32(self->read.tid);
299 self->read.value = bswap_64(self->read.value);
300 self->read.time_enabled = bswap_64(self->read.time_enabled);
301 self->read.time_running = bswap_64(self->read.time_running);
302 self->read.id = bswap_64(self->read.id);
303}
304
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500305static void event__attr_swap(event_t *self)
306{
307 size_t size;
308
309 self->attr.attr.type = bswap_32(self->attr.attr.type);
310 self->attr.attr.size = bswap_32(self->attr.attr.size);
311 self->attr.attr.config = bswap_64(self->attr.attr.config);
312 self->attr.attr.sample_period = bswap_64(self->attr.attr.sample_period);
313 self->attr.attr.sample_type = bswap_64(self->attr.attr.sample_type);
314 self->attr.attr.read_format = bswap_64(self->attr.attr.read_format);
315 self->attr.attr.wakeup_events = bswap_32(self->attr.attr.wakeup_events);
316 self->attr.attr.bp_type = bswap_32(self->attr.attr.bp_type);
317 self->attr.attr.bp_addr = bswap_64(self->attr.attr.bp_addr);
318 self->attr.attr.bp_len = bswap_64(self->attr.attr.bp_len);
319
320 size = self->header.size;
321 size -= (void *)&self->attr.id - (void *)self;
322 mem_bswap_64(self->attr.id, size);
323}
324
Tom Zanussicd19a032010-04-01 23:59:20 -0500325static void event__event_type_swap(event_t *self)
326{
327 self->event_type.event_type.event_id =
328 bswap_64(self->event_type.event_type.event_id);
329}
330
Tom Zanussi92155452010-04-01 23:59:21 -0500331static void event__tracing_data_swap(event_t *self)
332{
333 self->tracing_data.size = bswap_32(self->tracing_data.size);
334}
335
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200336typedef void (*event__swap_op)(event_t *self);
337
338static event__swap_op event__swap_ops[] = {
339 [PERF_RECORD_MMAP] = event__mmap_swap,
340 [PERF_RECORD_COMM] = event__comm_swap,
341 [PERF_RECORD_FORK] = event__task_swap,
342 [PERF_RECORD_EXIT] = event__task_swap,
343 [PERF_RECORD_LOST] = event__all64_swap,
344 [PERF_RECORD_READ] = event__read_swap,
345 [PERF_RECORD_SAMPLE] = event__all64_swap,
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500346 [PERF_RECORD_HEADER_ATTR] = event__attr_swap,
Tom Zanussicd19a032010-04-01 23:59:20 -0500347 [PERF_RECORD_HEADER_EVENT_TYPE] = event__event_type_swap,
Tom Zanussi92155452010-04-01 23:59:21 -0500348 [PERF_RECORD_HEADER_TRACING_DATA] = event__tracing_data_swap,
Tom Zanussic7929e42010-04-01 23:59:22 -0500349 [PERF_RECORD_HEADER_BUILD_ID] = NULL,
Tom Zanussi8dc58102010-04-01 23:59:15 -0500350 [PERF_RECORD_HEADER_MAX] = NULL,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200351};
352
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200353struct sample_queue {
354 u64 timestamp;
355 struct sample_event *event;
356 struct list_head list;
357};
358
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200359static void flush_sample_queue(struct perf_session *s,
360 struct perf_event_ops *ops)
361{
362 struct list_head *head = &s->ordered_samples.samples_head;
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200363 u64 limit = s->ordered_samples.next_flush;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200364 struct sample_queue *tmp, *iter;
365
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200366 if (!ops->ordered_samples || !limit)
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200367 return;
368
369 list_for_each_entry_safe(iter, tmp, head, list) {
370 if (iter->timestamp > limit)
371 return;
372
373 if (iter == s->ordered_samples.last_inserted)
374 s->ordered_samples.last_inserted = NULL;
375
376 ops->sample((event_t *)iter->event, s);
377
378 s->ordered_samples.last_flush = iter->timestamp;
379 list_del(&iter->list);
380 free(iter->event);
381 free(iter);
382 }
383}
384
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200385/*
386 * When perf record finishes a pass on every buffers, it records this pseudo
387 * event.
388 * We record the max timestamp t found in the pass n.
389 * Assuming these timestamps are monotonic across cpus, we know that if
390 * a buffer still has events with timestamps below t, they will be all
391 * available and then read in the pass n + 1.
392 * Hence when we start to read the pass n + 2, we can safely flush every
393 * events with timestamps below t.
394 *
395 * ============ PASS n =================
396 * CPU 0 | CPU 1
397 * |
398 * cnt1 timestamps | cnt2 timestamps
399 * 1 | 2
400 * 2 | 3
401 * - | 4 <--- max recorded
402 *
403 * ============ PASS n + 1 ==============
404 * CPU 0 | CPU 1
405 * |
406 * cnt1 timestamps | cnt2 timestamps
407 * 3 | 5
408 * 4 | 6
409 * 5 | 7 <---- max recorded
410 *
411 * Flush every events below timestamp 4
412 *
413 * ============ PASS n + 2 ==============
414 * CPU 0 | CPU 1
415 * |
416 * cnt1 timestamps | cnt2 timestamps
417 * 6 | 8
418 * 7 | 9
419 * - | 10
420 *
421 * Flush every events below timestamp 7
422 * etc...
423 */
424static int process_finished_round(event_t *event __used,
425 struct perf_session *session,
426 struct perf_event_ops *ops)
427{
428 flush_sample_queue(session, ops);
429 session->ordered_samples.next_flush = session->ordered_samples.max_timestamp;
430
431 return 0;
432}
433
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200434static void __queue_sample_end(struct sample_queue *new, struct list_head *head)
435{
436 struct sample_queue *iter;
437
438 list_for_each_entry_reverse(iter, head, list) {
439 if (iter->timestamp < new->timestamp) {
440 list_add(&new->list, &iter->list);
441 return;
442 }
443 }
444
445 list_add(&new->list, head);
446}
447
448static void __queue_sample_before(struct sample_queue *new,
449 struct sample_queue *iter,
450 struct list_head *head)
451{
452 list_for_each_entry_continue_reverse(iter, head, list) {
453 if (iter->timestamp < new->timestamp) {
454 list_add(&new->list, &iter->list);
455 return;
456 }
457 }
458
459 list_add(&new->list, head);
460}
461
462static void __queue_sample_after(struct sample_queue *new,
463 struct sample_queue *iter,
464 struct list_head *head)
465{
466 list_for_each_entry_continue(iter, head, list) {
467 if (iter->timestamp > new->timestamp) {
468 list_add_tail(&new->list, &iter->list);
469 return;
470 }
471 }
472 list_add_tail(&new->list, head);
473}
474
475/* The queue is ordered by time */
476static void __queue_sample_event(struct sample_queue *new,
477 struct perf_session *s)
478{
479 struct sample_queue *last_inserted = s->ordered_samples.last_inserted;
480 struct list_head *head = &s->ordered_samples.samples_head;
481
482
483 if (!last_inserted) {
484 __queue_sample_end(new, head);
485 return;
486 }
487
488 /*
489 * Most of the time the current event has a timestamp
490 * very close to the last event inserted, unless we just switched
491 * to another event buffer. Having a sorting based on a list and
492 * on the last inserted event that is close to the current one is
493 * probably more efficient than an rbtree based sorting.
494 */
495 if (last_inserted->timestamp >= new->timestamp)
496 __queue_sample_before(new, last_inserted, head);
497 else
498 __queue_sample_after(new, last_inserted, head);
499}
500
501static int queue_sample_event(event_t *event, struct sample_data *data,
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200502 struct perf_session *s)
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200503{
504 u64 timestamp = data->time;
505 struct sample_queue *new;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200506
507
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200508 if (timestamp < s->ordered_samples.last_flush) {
509 printf("Warning: Timestamp below last timeslice flush\n");
510 return -EINVAL;
511 }
512
513 new = malloc(sizeof(*new));
514 if (!new)
515 return -ENOMEM;
516
517 new->timestamp = timestamp;
518
519 new->event = malloc(event->header.size);
520 if (!new->event) {
521 free(new);
522 return -ENOMEM;
523 }
524
525 memcpy(new->event, event, event->header.size);
526
527 __queue_sample_event(new, s);
528 s->ordered_samples.last_inserted = new;
529
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200530 if (new->timestamp > s->ordered_samples.max_timestamp)
531 s->ordered_samples.max_timestamp = new->timestamp;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200532
533 return 0;
534}
535
536static int perf_session__process_sample(event_t *event, struct perf_session *s,
537 struct perf_event_ops *ops)
538{
539 struct sample_data data;
540
541 if (!ops->ordered_samples)
542 return ops->sample(event, s);
543
544 bzero(&data, sizeof(struct sample_data));
545 event__parse_sample(event, s->sample_type, &data);
546
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200547 queue_sample_event(event, &data, s);
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200548
549 return 0;
550}
551
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200552static int perf_session__process_event(struct perf_session *self,
553 event_t *event,
554 struct perf_event_ops *ops,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200555 u64 offset, u64 head)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200556{
557 trace_event(event);
558
Tom Zanussi8dc58102010-04-01 23:59:15 -0500559 if (event->header.type < PERF_RECORD_HEADER_MAX) {
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200560 dump_printf("%#Lx [%#x]: PERF_RECORD_%s",
Arnaldo Carvalho de Melo0d755032010-01-14 12:23:09 -0200561 offset + head, event->header.size,
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200562 event__name[event->header.type]);
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -0300563 hists__inc_nr_events(&self->hists, event->header.type);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200564 }
565
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200566 if (self->header.needs_swap && event__swap_ops[event->header.type])
567 event__swap_ops[event->header.type](event);
568
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200569 switch (event->header.type) {
570 case PERF_RECORD_SAMPLE:
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200571 return perf_session__process_sample(event, self, ops);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200572 case PERF_RECORD_MMAP:
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200573 return ops->mmap(event, self);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200574 case PERF_RECORD_COMM:
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200575 return ops->comm(event, self);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200576 case PERF_RECORD_FORK:
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200577 return ops->fork(event, self);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200578 case PERF_RECORD_EXIT:
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200579 return ops->exit(event, self);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200580 case PERF_RECORD_LOST:
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200581 return ops->lost(event, self);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200582 case PERF_RECORD_READ:
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200583 return ops->read(event, self);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200584 case PERF_RECORD_THROTTLE:
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200585 return ops->throttle(event, self);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200586 case PERF_RECORD_UNTHROTTLE:
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200587 return ops->unthrottle(event, self);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500588 case PERF_RECORD_HEADER_ATTR:
589 return ops->attr(event, self);
Tom Zanussicd19a032010-04-01 23:59:20 -0500590 case PERF_RECORD_HEADER_EVENT_TYPE:
591 return ops->event_type(event, self);
Tom Zanussi92155452010-04-01 23:59:21 -0500592 case PERF_RECORD_HEADER_TRACING_DATA:
593 /* setup for reading amidst mmap */
594 lseek(self->fd, offset + head, SEEK_SET);
595 return ops->tracing_data(event, self);
Tom Zanussic7929e42010-04-01 23:59:22 -0500596 case PERF_RECORD_HEADER_BUILD_ID:
597 return ops->build_id(event, self);
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200598 case PERF_RECORD_FINISHED_ROUND:
599 return ops->finished_round(event, self, ops);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200600 default:
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300601 ++self->hists.stats.nr_unknown_events;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200602 return -1;
603 }
604}
605
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200606void perf_event_header__bswap(struct perf_event_header *self)
607{
608 self->type = bswap_32(self->type);
609 self->misc = bswap_16(self->misc);
610 self->size = bswap_16(self->size);
611}
612
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200613static struct thread *perf_session__register_idle_thread(struct perf_session *self)
614{
615 struct thread *thread = perf_session__findnew(self, 0);
616
617 if (thread == NULL || thread__set_comm(thread, "swapper")) {
618 pr_err("problem inserting idle task.\n");
619 thread = NULL;
620 }
621
622 return thread;
623}
624
Tom Zanussi8dc58102010-04-01 23:59:15 -0500625int do_read(int fd, void *buf, size_t size)
626{
627 void *buf_start = buf;
628
629 while (size) {
630 int ret = read(fd, buf, size);
631
632 if (ret <= 0)
633 return ret;
634
635 size -= ret;
636 buf += ret;
637 }
638
639 return buf - buf_start;
640}
641
642#define session_done() (*(volatile int *)(&session_done))
643volatile int session_done;
644
645static int __perf_session__process_pipe_events(struct perf_session *self,
646 struct perf_event_ops *ops)
647{
648 event_t event;
649 uint32_t size;
650 int skip = 0;
651 u64 head;
652 int err;
653 void *p;
654
655 perf_event_ops__fill_defaults(ops);
656
657 head = 0;
658more:
659 err = do_read(self->fd, &event, sizeof(struct perf_event_header));
660 if (err <= 0) {
661 if (err == 0)
662 goto done;
663
664 pr_err("failed to read event header\n");
665 goto out_err;
666 }
667
668 if (self->header.needs_swap)
669 perf_event_header__bswap(&event.header);
670
671 size = event.header.size;
672 if (size == 0)
673 size = 8;
674
675 p = &event;
676 p += sizeof(struct perf_event_header);
677
Tom Zanussi794e43b2010-05-05 00:27:40 -0500678 if (size - sizeof(struct perf_event_header)) {
679 err = do_read(self->fd, p,
680 size - sizeof(struct perf_event_header));
681 if (err <= 0) {
682 if (err == 0) {
683 pr_err("unexpected end of event stream\n");
684 goto done;
685 }
Tom Zanussi8dc58102010-04-01 23:59:15 -0500686
Tom Zanussi794e43b2010-05-05 00:27:40 -0500687 pr_err("failed to read event data\n");
688 goto out_err;
689 }
Tom Zanussi8dc58102010-04-01 23:59:15 -0500690 }
691
692 if (size == 0 ||
693 (skip = perf_session__process_event(self, &event, ops,
694 0, head)) < 0) {
695 dump_printf("%#Lx [%#x]: skipping unknown header type: %d\n",
696 head, event.header.size, event.header.type);
697 /*
698 * assume we lost track of the stream, check alignment, and
699 * increment a single u64 in the hope to catch on again 'soon'.
700 */
701 if (unlikely(head & 7))
702 head &= ~7ULL;
703
704 size = 8;
705 }
706
707 head += size;
708
709 dump_printf("\n%#Lx [%#x]: event: %d\n",
710 head, event.header.size, event.header.type);
711
712 if (skip > 0)
713 head += skip;
714
715 if (!session_done())
716 goto more;
717done:
718 err = 0;
719out_err:
720 return err;
721}
722
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200723int __perf_session__process_events(struct perf_session *self,
724 u64 data_offset, u64 data_size,
725 u64 file_size, struct perf_event_ops *ops)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200726{
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200727 int err, mmap_prot, mmap_flags;
728 u64 head, shift;
729 u64 offset = 0;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200730 size_t page_size;
731 event_t *event;
732 uint32_t size;
733 char *buf;
Arnaldo Carvalho de Melo5f4d3f82010-03-26 21:16:22 -0300734 struct ui_progress *progress = ui_progress__new("Processing events...",
735 self->size);
736 if (progress == NULL)
737 return -1;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200738
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200739 perf_event_ops__fill_defaults(ops);
740
Arnaldo Carvalho de Melo1b759622010-01-14 18:30:04 -0200741 page_size = sysconf(_SC_PAGESIZE);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200742
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200743 head = data_offset;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200744 shift = page_size * (head / page_size);
745 offset += shift;
746 head -= shift;
747
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200748 mmap_prot = PROT_READ;
749 mmap_flags = MAP_SHARED;
750
751 if (self->header.needs_swap) {
752 mmap_prot |= PROT_WRITE;
753 mmap_flags = MAP_PRIVATE;
754 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200755remap:
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200756 buf = mmap(NULL, page_size * self->mmap_window, mmap_prot,
757 mmap_flags, self->fd, offset);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200758 if (buf == MAP_FAILED) {
759 pr_err("failed to mmap file\n");
760 err = -errno;
761 goto out_err;
762 }
763
764more:
765 event = (event_t *)(buf + head);
Arnaldo Carvalho de Melo5f4d3f82010-03-26 21:16:22 -0300766 ui_progress__update(progress, offset);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200767
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200768 if (self->header.needs_swap)
769 perf_event_header__bswap(&event->header);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200770 size = event->header.size;
771 if (size == 0)
772 size = 8;
773
774 if (head + event->header.size >= page_size * self->mmap_window) {
775 int munmap_ret;
776
777 shift = page_size * (head / page_size);
778
779 munmap_ret = munmap(buf, page_size * self->mmap_window);
780 assert(munmap_ret == 0);
781
782 offset += shift;
783 head -= shift;
784 goto remap;
785 }
786
787 size = event->header.size;
788
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200789 dump_printf("\n%#Lx [%#x]: event: %d\n",
Arnaldo Carvalho de Melo0d755032010-01-14 12:23:09 -0200790 offset + head, event->header.size, event->header.type);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200791
792 if (size == 0 ||
793 perf_session__process_event(self, event, ops, offset, head) < 0) {
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200794 dump_printf("%#Lx [%#x]: skipping unknown header type: %d\n",
Arnaldo Carvalho de Melo0d755032010-01-14 12:23:09 -0200795 offset + head, event->header.size,
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200796 event->header.type);
797 /*
798 * assume we lost track of the stream, check alignment, and
799 * increment a single u64 in the hope to catch on again 'soon'.
800 */
801 if (unlikely(head & 7))
802 head &= ~7ULL;
803
804 size = 8;
805 }
806
807 head += size;
808
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200809 if (offset + head >= data_offset + data_size)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200810 goto done;
811
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200812 if (offset + head < file_size)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200813 goto more;
814done:
815 err = 0;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200816 /* do the final flush for ordered samples */
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200817 self->ordered_samples.next_flush = ULLONG_MAX;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200818 flush_sample_queue(self, ops);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200819out_err:
Arnaldo Carvalho de Melo5f4d3f82010-03-26 21:16:22 -0300820 ui_progress__delete(progress);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200821 return err;
822}
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -0200823
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200824int perf_session__process_events(struct perf_session *self,
825 struct perf_event_ops *ops)
826{
827 int err;
828
829 if (perf_session__register_idle_thread(self) == NULL)
830 return -ENOMEM;
831
Tom Zanussi8dc58102010-04-01 23:59:15 -0500832 if (!self->fd_pipe)
833 err = __perf_session__process_events(self,
834 self->header.data_offset,
835 self->header.data_size,
836 self->size, ops);
837 else
838 err = __perf_session__process_pipe_events(self, ops);
Dave Martin88ca8952010-07-27 11:46:12 -0300839
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200840 return err;
841}
842
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200843bool perf_session__has_traces(struct perf_session *self, const char *msg)
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -0200844{
845 if (!(self->sample_type & PERF_SAMPLE_RAW)) {
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200846 pr_err("No trace sample to read. Did you call 'perf %s'?\n", msg);
847 return false;
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -0200848 }
849
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200850 return true;
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -0200851}
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200852
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800853int perf_session__set_kallsyms_ref_reloc_sym(struct map **maps,
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200854 const char *symbol_name,
855 u64 addr)
856{
857 char *bracket;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200858 enum map_type i;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800859 struct ref_reloc_sym *ref;
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200860
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800861 ref = zalloc(sizeof(struct ref_reloc_sym));
862 if (ref == NULL)
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200863 return -ENOMEM;
864
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800865 ref->name = strdup(symbol_name);
866 if (ref->name == NULL) {
867 free(ref);
868 return -ENOMEM;
869 }
870
871 bracket = strchr(ref->name, ']');
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200872 if (bracket)
873 *bracket = '\0';
874
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800875 ref->addr = addr;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200876
877 for (i = 0; i < MAP__NR_TYPES; ++i) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800878 struct kmap *kmap = map__kmap(maps[i]);
879 kmap->ref_reloc_sym = ref;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200880 }
881
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200882 return 0;
883}
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -0300884
885size_t perf_session__fprintf_dsos(struct perf_session *self, FILE *fp)
886{
887 return __dsos__fprintf(&self->host_machine.kernel_dsos, fp) +
888 __dsos__fprintf(&self->host_machine.user_dsos, fp) +
889 machines__fprintf_dsos(&self->machines, fp);
890}
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -0300891
892size_t perf_session__fprintf_dsos_buildid(struct perf_session *self, FILE *fp,
893 bool with_hits)
894{
895 size_t ret = machine__fprintf_dsos_buildid(&self->host_machine, fp, with_hits);
896 return ret + machines__fprintf_dsos_buildid(&self->machines, fp, with_hits);
897}