blob: 2fdbccf10770b2e75819341b841884a485e53ea4 [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
Arnaldo Carvalho de Melo076c6e452010-08-02 18:18:28 -030082static void perf_session__destroy_kernel_maps(struct perf_session *self)
83{
84 machine__destroy_kernel_maps(&self->host_machine);
85 machines__destroy_guest_kernel_maps(&self->machines);
86}
87
Tom Zanussi454c4072010-05-01 01:41:20 -050088struct perf_session *perf_session__new(const char *filename, int mode, bool force, bool repipe)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020089{
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -020090 size_t len = filename ? strlen(filename) + 1 : 0;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020091 struct perf_session *self = zalloc(sizeof(*self) + len);
92
93 if (self == NULL)
94 goto out;
95
96 if (perf_header__init(&self->header) < 0)
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -020097 goto out_free;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020098
99 memcpy(self->filename, filename, len);
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200100 self->threads = RB_ROOT;
Arnaldo Carvalho de Melo720a3ae2010-06-17 08:37:44 -0300101 INIT_LIST_HEAD(&self->dead_threads);
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300102 self->hists_tree = RB_ROOT;
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200103 self->last_match = NULL;
Arnaldo Carvalho de Meloec913362009-12-13 19:50:27 -0200104 self->mmap_window = 32;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300105 self->machines = RB_ROOT;
Tom Zanussi454c4072010-05-01 01:41:20 -0500106 self->repipe = repipe;
Thomas Gleixnera1225de2010-11-30 17:49:33 +0000107 INIT_LIST_HEAD(&self->ordered_samples.samples);
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -0300108 machine__init(&self->host_machine, "", HOST_KERNEL_ID);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200109
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -0200110 if (mode == O_RDONLY) {
111 if (perf_session__open(self, force) < 0)
112 goto out_delete;
113 } else if (mode == O_WRONLY) {
114 /*
115 * In O_RDONLY mode this will be performed when reading the
116 * kernel MMAP event, in event__process_mmap().
117 */
118 if (perf_session__create_kernel_maps(self) < 0)
119 goto out_delete;
120 }
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200121
Tom Zanussi8dc58102010-04-01 23:59:15 -0500122 perf_session__update_sample_type(self);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200123out:
124 return self;
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200125out_free:
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200126 free(self);
127 return NULL;
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200128out_delete:
129 perf_session__delete(self);
130 return NULL;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200131}
132
Arnaldo Carvalho de Melod65a4582010-07-30 18:31:28 -0300133static void perf_session__delete_dead_threads(struct perf_session *self)
134{
135 struct thread *n, *t;
136
137 list_for_each_entry_safe(t, n, &self->dead_threads, node) {
138 list_del(&t->node);
139 thread__delete(t);
140 }
141}
142
143static void perf_session__delete_threads(struct perf_session *self)
144{
145 struct rb_node *nd = rb_first(&self->threads);
146
147 while (nd) {
148 struct thread *t = rb_entry(nd, struct thread, rb_node);
149
150 rb_erase(&t->rb_node, &self->threads);
151 nd = rb_next(nd);
152 thread__delete(t);
153 }
154}
155
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200156void perf_session__delete(struct perf_session *self)
157{
158 perf_header__exit(&self->header);
Arnaldo Carvalho de Melo076c6e452010-08-02 18:18:28 -0300159 perf_session__destroy_kernel_maps(self);
Arnaldo Carvalho de Melod65a4582010-07-30 18:31:28 -0300160 perf_session__delete_dead_threads(self);
161 perf_session__delete_threads(self);
162 machine__exit(&self->host_machine);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200163 close(self->fd);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200164 free(self);
165}
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200166
Arnaldo Carvalho de Melo720a3ae2010-06-17 08:37:44 -0300167void perf_session__remove_thread(struct perf_session *self, struct thread *th)
168{
Arnaldo Carvalho de Melo70597f22010-08-02 18:59:28 -0300169 self->last_match = NULL;
Arnaldo Carvalho de Melo720a3ae2010-06-17 08:37:44 -0300170 rb_erase(&th->rb_node, &self->threads);
171 /*
172 * We may have references to this thread, for instance in some hist_entry
173 * instances, so just move them to a separate list.
174 */
175 list_add_tail(&th->node, &self->dead_threads);
176}
177
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200178static bool symbol__match_parent_regex(struct symbol *sym)
179{
180 if (sym->name && !regexec(&parent_regex, sym->name, 0, NULL, 0))
181 return 1;
182
183 return 0;
184}
185
Arnaldo Carvalho de Melob3c9ac02010-03-24 16:40:18 -0300186struct map_symbol *perf_session__resolve_callchain(struct perf_session *self,
187 struct thread *thread,
188 struct ip_callchain *chain,
189 struct symbol **parent)
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200190{
191 u8 cpumode = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200192 unsigned int i;
Arnaldo Carvalho de Meload5b2172010-04-02 10:04:18 -0300193 struct map_symbol *syms = calloc(chain->nr, sizeof(*syms));
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200194
Arnaldo Carvalho de Meload5b2172010-04-02 10:04:18 -0300195 if (!syms)
196 return NULL;
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200197
198 for (i = 0; i < chain->nr; i++) {
199 u64 ip = chain->ips[i];
200 struct addr_location al;
201
202 if (ip >= PERF_CONTEXT_MAX) {
203 switch (ip) {
204 case PERF_CONTEXT_HV:
205 cpumode = PERF_RECORD_MISC_HYPERVISOR; break;
206 case PERF_CONTEXT_KERNEL:
207 cpumode = PERF_RECORD_MISC_KERNEL; break;
208 case PERF_CONTEXT_USER:
209 cpumode = PERF_RECORD_MISC_USER; break;
210 default:
211 break;
212 }
213 continue;
214 }
215
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800216 al.filtered = false;
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200217 thread__find_addr_location(thread, self, cpumode,
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800218 MAP__FUNCTION, thread->pid, ip, &al, NULL);
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200219 if (al.sym != NULL) {
220 if (sort__has_parent && !*parent &&
221 symbol__match_parent_regex(al.sym))
222 *parent = al.sym;
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200223 if (!symbol_conf.use_callchain)
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200224 break;
Arnaldo Carvalho de Melob3c9ac02010-03-24 16:40:18 -0300225 syms[i].map = al.map;
226 syms[i].sym = al.sym;
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200227 }
228 }
229
230 return syms;
231}
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200232
233static int process_event_stub(event_t *event __used,
234 struct perf_session *session __used)
235{
236 dump_printf(": unhandled!\n");
237 return 0;
238}
239
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200240static int process_finished_round_stub(event_t *event __used,
241 struct perf_session *session __used,
242 struct perf_event_ops *ops __used)
243{
244 dump_printf(": unhandled!\n");
245 return 0;
246}
247
248static int process_finished_round(event_t *event,
249 struct perf_session *session,
250 struct perf_event_ops *ops);
251
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200252static void perf_event_ops__fill_defaults(struct perf_event_ops *handler)
253{
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200254 if (handler->sample == NULL)
255 handler->sample = process_event_stub;
256 if (handler->mmap == NULL)
257 handler->mmap = process_event_stub;
258 if (handler->comm == NULL)
259 handler->comm = process_event_stub;
260 if (handler->fork == NULL)
261 handler->fork = process_event_stub;
262 if (handler->exit == NULL)
263 handler->exit = process_event_stub;
264 if (handler->lost == NULL)
Arnaldo Carvalho de Melo37982ba2010-11-26 18:31:54 -0200265 handler->lost = event__process_lost;
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200266 if (handler->read == NULL)
267 handler->read = process_event_stub;
268 if (handler->throttle == NULL)
269 handler->throttle = process_event_stub;
270 if (handler->unthrottle == NULL)
271 handler->unthrottle = process_event_stub;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500272 if (handler->attr == NULL)
273 handler->attr = process_event_stub;
Tom Zanussicd19a032010-04-01 23:59:20 -0500274 if (handler->event_type == NULL)
275 handler->event_type = process_event_stub;
Tom Zanussi92155452010-04-01 23:59:21 -0500276 if (handler->tracing_data == NULL)
277 handler->tracing_data = process_event_stub;
Tom Zanussic7929e42010-04-01 23:59:22 -0500278 if (handler->build_id == NULL)
279 handler->build_id = process_event_stub;
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200280 if (handler->finished_round == NULL) {
281 if (handler->ordered_samples)
282 handler->finished_round = process_finished_round;
283 else
284 handler->finished_round = process_finished_round_stub;
285 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200286}
287
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200288void mem_bswap_64(void *src, int byte_size)
289{
290 u64 *m = src;
291
292 while (byte_size > 0) {
293 *m = bswap_64(*m);
294 byte_size -= sizeof(u64);
295 ++m;
296 }
297}
298
299static void event__all64_swap(event_t *self)
300{
301 struct perf_event_header *hdr = &self->header;
302 mem_bswap_64(hdr + 1, self->header.size - sizeof(*hdr));
303}
304
305static void event__comm_swap(event_t *self)
306{
307 self->comm.pid = bswap_32(self->comm.pid);
308 self->comm.tid = bswap_32(self->comm.tid);
309}
310
311static void event__mmap_swap(event_t *self)
312{
313 self->mmap.pid = bswap_32(self->mmap.pid);
314 self->mmap.tid = bswap_32(self->mmap.tid);
315 self->mmap.start = bswap_64(self->mmap.start);
316 self->mmap.len = bswap_64(self->mmap.len);
317 self->mmap.pgoff = bswap_64(self->mmap.pgoff);
318}
319
320static void event__task_swap(event_t *self)
321{
322 self->fork.pid = bswap_32(self->fork.pid);
323 self->fork.tid = bswap_32(self->fork.tid);
324 self->fork.ppid = bswap_32(self->fork.ppid);
325 self->fork.ptid = bswap_32(self->fork.ptid);
326 self->fork.time = bswap_64(self->fork.time);
327}
328
329static void event__read_swap(event_t *self)
330{
331 self->read.pid = bswap_32(self->read.pid);
332 self->read.tid = bswap_32(self->read.tid);
333 self->read.value = bswap_64(self->read.value);
334 self->read.time_enabled = bswap_64(self->read.time_enabled);
335 self->read.time_running = bswap_64(self->read.time_running);
336 self->read.id = bswap_64(self->read.id);
337}
338
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500339static void event__attr_swap(event_t *self)
340{
341 size_t size;
342
343 self->attr.attr.type = bswap_32(self->attr.attr.type);
344 self->attr.attr.size = bswap_32(self->attr.attr.size);
345 self->attr.attr.config = bswap_64(self->attr.attr.config);
346 self->attr.attr.sample_period = bswap_64(self->attr.attr.sample_period);
347 self->attr.attr.sample_type = bswap_64(self->attr.attr.sample_type);
348 self->attr.attr.read_format = bswap_64(self->attr.attr.read_format);
349 self->attr.attr.wakeup_events = bswap_32(self->attr.attr.wakeup_events);
350 self->attr.attr.bp_type = bswap_32(self->attr.attr.bp_type);
351 self->attr.attr.bp_addr = bswap_64(self->attr.attr.bp_addr);
352 self->attr.attr.bp_len = bswap_64(self->attr.attr.bp_len);
353
354 size = self->header.size;
355 size -= (void *)&self->attr.id - (void *)self;
356 mem_bswap_64(self->attr.id, size);
357}
358
Tom Zanussicd19a032010-04-01 23:59:20 -0500359static void event__event_type_swap(event_t *self)
360{
361 self->event_type.event_type.event_id =
362 bswap_64(self->event_type.event_type.event_id);
363}
364
Tom Zanussi92155452010-04-01 23:59:21 -0500365static void event__tracing_data_swap(event_t *self)
366{
367 self->tracing_data.size = bswap_32(self->tracing_data.size);
368}
369
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200370typedef void (*event__swap_op)(event_t *self);
371
372static event__swap_op event__swap_ops[] = {
373 [PERF_RECORD_MMAP] = event__mmap_swap,
374 [PERF_RECORD_COMM] = event__comm_swap,
375 [PERF_RECORD_FORK] = event__task_swap,
376 [PERF_RECORD_EXIT] = event__task_swap,
377 [PERF_RECORD_LOST] = event__all64_swap,
378 [PERF_RECORD_READ] = event__read_swap,
379 [PERF_RECORD_SAMPLE] = event__all64_swap,
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500380 [PERF_RECORD_HEADER_ATTR] = event__attr_swap,
Tom Zanussicd19a032010-04-01 23:59:20 -0500381 [PERF_RECORD_HEADER_EVENT_TYPE] = event__event_type_swap,
Tom Zanussi92155452010-04-01 23:59:21 -0500382 [PERF_RECORD_HEADER_TRACING_DATA] = event__tracing_data_swap,
Tom Zanussic7929e42010-04-01 23:59:22 -0500383 [PERF_RECORD_HEADER_BUILD_ID] = NULL,
Tom Zanussi8dc58102010-04-01 23:59:15 -0500384 [PERF_RECORD_HEADER_MAX] = NULL,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200385};
386
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200387struct sample_queue {
388 u64 timestamp;
Thomas Gleixner28990f72010-11-30 17:49:35 +0000389 event_t *event;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200390 struct list_head list;
391};
392
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200393static void flush_sample_queue(struct perf_session *s,
394 struct perf_event_ops *ops)
395{
Thomas Gleixnera1225de2010-11-30 17:49:33 +0000396 struct ordered_samples *os = &s->ordered_samples;
397 struct list_head *head = &os->samples;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200398 struct sample_queue *tmp, *iter;
Thomas Gleixnera1225de2010-11-30 17:49:33 +0000399 u64 limit = os->next_flush;
400 u64 last_ts = os->last_sample ? os->last_sample->timestamp : 0ULL;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200401
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200402 if (!ops->ordered_samples || !limit)
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200403 return;
404
405 list_for_each_entry_safe(iter, tmp, head, list) {
406 if (iter->timestamp > limit)
Thomas Gleixnera1225de2010-11-30 17:49:33 +0000407 break;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200408
Thomas Gleixner28990f72010-11-30 17:49:35 +0000409 ops->sample(iter->event, s);
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200410
Thomas Gleixnera1225de2010-11-30 17:49:33 +0000411 os->last_flush = iter->timestamp;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200412 list_del(&iter->list);
413 free(iter->event);
414 free(iter);
415 }
Thomas Gleixnera1225de2010-11-30 17:49:33 +0000416
417 if (list_empty(head)) {
418 os->last_sample = NULL;
419 } else if (last_ts <= limit) {
420 os->last_sample =
421 list_entry(head->prev, struct sample_queue, list);
422 }
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200423}
424
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200425/*
426 * When perf record finishes a pass on every buffers, it records this pseudo
427 * event.
428 * We record the max timestamp t found in the pass n.
429 * Assuming these timestamps are monotonic across cpus, we know that if
430 * a buffer still has events with timestamps below t, they will be all
431 * available and then read in the pass n + 1.
432 * Hence when we start to read the pass n + 2, we can safely flush every
433 * events with timestamps below t.
434 *
435 * ============ PASS n =================
436 * CPU 0 | CPU 1
437 * |
438 * cnt1 timestamps | cnt2 timestamps
439 * 1 | 2
440 * 2 | 3
441 * - | 4 <--- max recorded
442 *
443 * ============ PASS n + 1 ==============
444 * CPU 0 | CPU 1
445 * |
446 * cnt1 timestamps | cnt2 timestamps
447 * 3 | 5
448 * 4 | 6
449 * 5 | 7 <---- max recorded
450 *
451 * Flush every events below timestamp 4
452 *
453 * ============ PASS n + 2 ==============
454 * CPU 0 | CPU 1
455 * |
456 * cnt1 timestamps | cnt2 timestamps
457 * 6 | 8
458 * 7 | 9
459 * - | 10
460 *
461 * Flush every events below timestamp 7
462 * etc...
463 */
464static int process_finished_round(event_t *event __used,
465 struct perf_session *session,
466 struct perf_event_ops *ops)
467{
468 flush_sample_queue(session, ops);
469 session->ordered_samples.next_flush = session->ordered_samples.max_timestamp;
470
471 return 0;
472}
473
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200474/* The queue is ordered by time */
475static void __queue_sample_event(struct sample_queue *new,
476 struct perf_session *s)
477{
Thomas Gleixnera1225de2010-11-30 17:49:33 +0000478 struct ordered_samples *os = &s->ordered_samples;
479 struct sample_queue *sample = os->last_sample;
480 u64 timestamp = new->timestamp;
481 struct list_head *p;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200482
Thomas Gleixnera1225de2010-11-30 17:49:33 +0000483 os->last_sample = new;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200484
Thomas Gleixnera1225de2010-11-30 17:49:33 +0000485 if (!sample) {
486 list_add(&new->list, &os->samples);
487 os->max_timestamp = timestamp;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200488 return;
489 }
490
491 /*
Thomas Gleixnera1225de2010-11-30 17:49:33 +0000492 * last_sample might point to some random place in the list as it's
493 * the last queued event. We expect that the new event is close to
494 * this.
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200495 */
Thomas Gleixnera1225de2010-11-30 17:49:33 +0000496 if (sample->timestamp <= timestamp) {
497 while (sample->timestamp <= timestamp) {
498 p = sample->list.next;
499 if (p == &os->samples) {
500 list_add_tail(&new->list, &os->samples);
501 os->max_timestamp = timestamp;
502 return;
503 }
504 sample = list_entry(p, struct sample_queue, list);
505 }
506 list_add_tail(&new->list, &sample->list);
507 } else {
508 while (sample->timestamp > timestamp) {
509 p = sample->list.prev;
510 if (p == &os->samples) {
511 list_add(&new->list, &os->samples);
512 return;
513 }
514 sample = list_entry(p, struct sample_queue, list);
515 }
516 list_add(&new->list, &sample->list);
517 }
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200518}
519
520static int queue_sample_event(event_t *event, struct sample_data *data,
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200521 struct perf_session *s)
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200522{
523 u64 timestamp = data->time;
524 struct sample_queue *new;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200525
526
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200527 if (timestamp < s->ordered_samples.last_flush) {
528 printf("Warning: Timestamp below last timeslice flush\n");
529 return -EINVAL;
530 }
531
532 new = malloc(sizeof(*new));
533 if (!new)
534 return -ENOMEM;
535
536 new->timestamp = timestamp;
537
538 new->event = malloc(event->header.size);
539 if (!new->event) {
540 free(new);
541 return -ENOMEM;
542 }
543
544 memcpy(new->event, event, event->header.size);
545
546 __queue_sample_event(new, s);
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200547
548 return 0;
549}
550
551static int perf_session__process_sample(event_t *event, struct perf_session *s,
552 struct perf_event_ops *ops)
553{
554 struct sample_data data;
555
556 if (!ops->ordered_samples)
557 return ops->sample(event, s);
558
559 bzero(&data, sizeof(struct sample_data));
560 event__parse_sample(event, s->sample_type, &data);
561
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200562 queue_sample_event(event, &data, s);
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200563
564 return 0;
565}
566
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200567static int perf_session__process_event(struct perf_session *self,
568 event_t *event,
569 struct perf_event_ops *ops,
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000570 u64 file_offset)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200571{
572 trace_event(event);
573
Tom Zanussi8dc58102010-04-01 23:59:15 -0500574 if (event->header.type < PERF_RECORD_HEADER_MAX) {
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200575 dump_printf("%#Lx [%#x]: PERF_RECORD_%s",
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000576 file_offset, event->header.size,
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200577 event__name[event->header.type]);
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -0300578 hists__inc_nr_events(&self->hists, event->header.type);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200579 }
580
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200581 if (self->header.needs_swap && event__swap_ops[event->header.type])
582 event__swap_ops[event->header.type](event);
583
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200584 switch (event->header.type) {
585 case PERF_RECORD_SAMPLE:
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200586 return perf_session__process_sample(event, self, ops);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200587 case PERF_RECORD_MMAP:
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200588 return ops->mmap(event, self);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200589 case PERF_RECORD_COMM:
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200590 return ops->comm(event, self);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200591 case PERF_RECORD_FORK:
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200592 return ops->fork(event, self);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200593 case PERF_RECORD_EXIT:
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200594 return ops->exit(event, self);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200595 case PERF_RECORD_LOST:
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200596 return ops->lost(event, self);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200597 case PERF_RECORD_READ:
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200598 return ops->read(event, self);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200599 case PERF_RECORD_THROTTLE:
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200600 return ops->throttle(event, self);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200601 case PERF_RECORD_UNTHROTTLE:
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200602 return ops->unthrottle(event, self);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500603 case PERF_RECORD_HEADER_ATTR:
604 return ops->attr(event, self);
Tom Zanussicd19a032010-04-01 23:59:20 -0500605 case PERF_RECORD_HEADER_EVENT_TYPE:
606 return ops->event_type(event, self);
Tom Zanussi92155452010-04-01 23:59:21 -0500607 case PERF_RECORD_HEADER_TRACING_DATA:
608 /* setup for reading amidst mmap */
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000609 lseek(self->fd, file_offset, SEEK_SET);
Tom Zanussi92155452010-04-01 23:59:21 -0500610 return ops->tracing_data(event, self);
Tom Zanussic7929e42010-04-01 23:59:22 -0500611 case PERF_RECORD_HEADER_BUILD_ID:
612 return ops->build_id(event, self);
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200613 case PERF_RECORD_FINISHED_ROUND:
614 return ops->finished_round(event, self, ops);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200615 default:
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300616 ++self->hists.stats.nr_unknown_events;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200617 return -1;
618 }
619}
620
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200621void perf_event_header__bswap(struct perf_event_header *self)
622{
623 self->type = bswap_32(self->type);
624 self->misc = bswap_16(self->misc);
625 self->size = bswap_16(self->size);
626}
627
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200628static struct thread *perf_session__register_idle_thread(struct perf_session *self)
629{
630 struct thread *thread = perf_session__findnew(self, 0);
631
632 if (thread == NULL || thread__set_comm(thread, "swapper")) {
633 pr_err("problem inserting idle task.\n");
634 thread = NULL;
635 }
636
637 return thread;
638}
639
Tom Zanussi8dc58102010-04-01 23:59:15 -0500640int do_read(int fd, void *buf, size_t size)
641{
642 void *buf_start = buf;
643
644 while (size) {
645 int ret = read(fd, buf, size);
646
647 if (ret <= 0)
648 return ret;
649
650 size -= ret;
651 buf += ret;
652 }
653
654 return buf - buf_start;
655}
656
657#define session_done() (*(volatile int *)(&session_done))
658volatile int session_done;
659
660static int __perf_session__process_pipe_events(struct perf_session *self,
661 struct perf_event_ops *ops)
662{
663 event_t event;
664 uint32_t size;
665 int skip = 0;
666 u64 head;
667 int err;
668 void *p;
669
670 perf_event_ops__fill_defaults(ops);
671
672 head = 0;
673more:
674 err = do_read(self->fd, &event, sizeof(struct perf_event_header));
675 if (err <= 0) {
676 if (err == 0)
677 goto done;
678
679 pr_err("failed to read event header\n");
680 goto out_err;
681 }
682
683 if (self->header.needs_swap)
684 perf_event_header__bswap(&event.header);
685
686 size = event.header.size;
687 if (size == 0)
688 size = 8;
689
690 p = &event;
691 p += sizeof(struct perf_event_header);
692
Tom Zanussi794e43b2010-05-05 00:27:40 -0500693 if (size - sizeof(struct perf_event_header)) {
694 err = do_read(self->fd, p,
695 size - sizeof(struct perf_event_header));
696 if (err <= 0) {
697 if (err == 0) {
698 pr_err("unexpected end of event stream\n");
699 goto done;
700 }
Tom Zanussi8dc58102010-04-01 23:59:15 -0500701
Tom Zanussi794e43b2010-05-05 00:27:40 -0500702 pr_err("failed to read event data\n");
703 goto out_err;
704 }
Tom Zanussi8dc58102010-04-01 23:59:15 -0500705 }
706
707 if (size == 0 ||
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000708 (skip = perf_session__process_event(self, &event, ops, head)) < 0) {
Tom Zanussi8dc58102010-04-01 23:59:15 -0500709 dump_printf("%#Lx [%#x]: skipping unknown header type: %d\n",
710 head, event.header.size, event.header.type);
711 /*
712 * assume we lost track of the stream, check alignment, and
713 * increment a single u64 in the hope to catch on again 'soon'.
714 */
715 if (unlikely(head & 7))
716 head &= ~7ULL;
717
718 size = 8;
719 }
720
721 head += size;
722
723 dump_printf("\n%#Lx [%#x]: event: %d\n",
724 head, event.header.size, event.header.type);
725
726 if (skip > 0)
727 head += skip;
728
729 if (!session_done())
730 goto more;
731done:
732 err = 0;
733out_err:
734 return err;
735}
736
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000737int __perf_session__process_events(struct perf_session *session,
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200738 u64 data_offset, u64 data_size,
739 u64 file_size, struct perf_event_ops *ops)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200740{
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000741 u64 head, page_offset, file_offset;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200742 int err, mmap_prot, mmap_flags;
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000743 struct ui_progress *progress;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200744 size_t page_size;
745 event_t *event;
746 uint32_t size;
747 char *buf;
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000748
749 progress = ui_progress__new("Processing events...", session->size);
Arnaldo Carvalho de Melo5f4d3f82010-03-26 21:16:22 -0300750 if (progress == NULL)
751 return -1;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200752
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200753 perf_event_ops__fill_defaults(ops);
754
Arnaldo Carvalho de Melo1b759622010-01-14 18:30:04 -0200755 page_size = sysconf(_SC_PAGESIZE);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200756
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000757 page_offset = page_size * (data_offset / page_size);
758 file_offset = page_offset;
759 head = data_offset - page_offset;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200760
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200761 mmap_prot = PROT_READ;
762 mmap_flags = MAP_SHARED;
763
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000764 if (session->header.needs_swap) {
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200765 mmap_prot |= PROT_WRITE;
766 mmap_flags = MAP_PRIVATE;
767 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200768remap:
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000769 buf = mmap(NULL, page_size * session->mmap_window, mmap_prot,
770 mmap_flags, session->fd, file_offset);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200771 if (buf == MAP_FAILED) {
772 pr_err("failed to mmap file\n");
773 err = -errno;
774 goto out_err;
775 }
776
777more:
778 event = (event_t *)(buf + head);
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000779 ui_progress__update(progress, file_offset);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200780
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000781 if (session->header.needs_swap)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200782 perf_event_header__bswap(&event->header);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200783 size = event->header.size;
784 if (size == 0)
785 size = 8;
786
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000787 if (head + event->header.size >= page_size * session->mmap_window) {
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200788 int munmap_ret;
789
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000790 munmap_ret = munmap(buf, page_size * session->mmap_window);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200791 assert(munmap_ret == 0);
792
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000793 page_offset = page_size * (head / page_size);
794 file_offset += page_offset;
795 head -= page_offset;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200796 goto remap;
797 }
798
799 size = event->header.size;
800
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200801 dump_printf("\n%#Lx [%#x]: event: %d\n",
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000802 file_offset + head, event->header.size, event->header.type);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200803
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000804 if (size == 0 || perf_session__process_event(session, event, ops,
805 file_offset + head) < 0) {
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200806 dump_printf("%#Lx [%#x]: skipping unknown header type: %d\n",
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000807 file_offset + head, event->header.size,
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200808 event->header.type);
809 /*
810 * assume we lost track of the stream, check alignment, and
811 * increment a single u64 in the hope to catch on again 'soon'.
812 */
813 if (unlikely(head & 7))
814 head &= ~7ULL;
815
816 size = 8;
817 }
818
819 head += size;
820
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000821 if (file_offset + head >= data_offset + data_size)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200822 goto done;
823
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000824 if (file_offset + head < file_size)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200825 goto more;
826done:
827 err = 0;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200828 /* do the final flush for ordered samples */
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000829 session->ordered_samples.next_flush = ULLONG_MAX;
830 flush_sample_queue(session, ops);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200831out_err:
Arnaldo Carvalho de Melo5f4d3f82010-03-26 21:16:22 -0300832 ui_progress__delete(progress);
Arnaldo Carvalho de Melo068ffaa2010-11-27 02:41:01 -0200833
834 if (ops->lost == event__process_lost &&
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000835 session->hists.stats.total_lost != 0) {
Arnaldo Carvalho de Melo068ffaa2010-11-27 02:41:01 -0200836 ui__warning("Processed %Lu events and LOST %Lu!\n\n"
837 "Check IO/CPU overload!\n\n",
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000838 session->hists.stats.total_period,
839 session->hists.stats.total_lost);
Arnaldo Carvalho de Melo068ffaa2010-11-27 02:41:01 -0200840 }
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000841
842 if (session->hists.stats.nr_unknown_events != 0) {
Arnaldo Carvalho de Melo068ffaa2010-11-27 02:41:01 -0200843 ui__warning("Found %u unknown events!\n\n"
844 "Is this an older tool processing a perf.data "
845 "file generated by a more recent tool?\n\n"
846 "If that is not the case, consider "
847 "reporting to linux-kernel@vger.kernel.org.\n\n",
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000848 session->hists.stats.nr_unknown_events);
Arnaldo Carvalho de Melo068ffaa2010-11-27 02:41:01 -0200849 }
Thomas Gleixner0331ee02010-11-30 17:49:38 +0000850
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200851 return err;
852}
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -0200853
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200854int perf_session__process_events(struct perf_session *self,
855 struct perf_event_ops *ops)
856{
857 int err;
858
859 if (perf_session__register_idle_thread(self) == NULL)
860 return -ENOMEM;
861
Tom Zanussi8dc58102010-04-01 23:59:15 -0500862 if (!self->fd_pipe)
863 err = __perf_session__process_events(self,
864 self->header.data_offset,
865 self->header.data_size,
866 self->size, ops);
867 else
868 err = __perf_session__process_pipe_events(self, ops);
Dave Martin88ca8952010-07-27 11:46:12 -0300869
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200870 return err;
871}
872
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200873bool perf_session__has_traces(struct perf_session *self, const char *msg)
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -0200874{
875 if (!(self->sample_type & PERF_SAMPLE_RAW)) {
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200876 pr_err("No trace sample to read. Did you call 'perf %s'?\n", msg);
877 return false;
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -0200878 }
879
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200880 return true;
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -0200881}
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200882
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800883int perf_session__set_kallsyms_ref_reloc_sym(struct map **maps,
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200884 const char *symbol_name,
885 u64 addr)
886{
887 char *bracket;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200888 enum map_type i;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800889 struct ref_reloc_sym *ref;
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200890
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800891 ref = zalloc(sizeof(struct ref_reloc_sym));
892 if (ref == NULL)
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200893 return -ENOMEM;
894
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800895 ref->name = strdup(symbol_name);
896 if (ref->name == NULL) {
897 free(ref);
898 return -ENOMEM;
899 }
900
901 bracket = strchr(ref->name, ']');
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200902 if (bracket)
903 *bracket = '\0';
904
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800905 ref->addr = addr;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200906
907 for (i = 0; i < MAP__NR_TYPES; ++i) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800908 struct kmap *kmap = map__kmap(maps[i]);
909 kmap->ref_reloc_sym = ref;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200910 }
911
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200912 return 0;
913}
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -0300914
915size_t perf_session__fprintf_dsos(struct perf_session *self, FILE *fp)
916{
917 return __dsos__fprintf(&self->host_machine.kernel_dsos, fp) +
918 __dsos__fprintf(&self->host_machine.user_dsos, fp) +
919 machines__fprintf_dsos(&self->machines, fp);
920}
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -0300921
922size_t perf_session__fprintf_dsos_buildid(struct perf_session *self, FILE *fp,
923 bool with_hits)
924{
925 size_t ret = machine__fprintf_dsos_buildid(&self->host_machine, fp, with_hits);
926 return ret + machines__fprintf_dsos_buildid(&self->machines, fp, with_hits);
927}