blob: 7d8dbf213d64b7a605b00048033d35a9454e1a83 [file] [log] [blame]
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02001#include <linux/kernel.h>
Robert Richter4e319022013-06-11 17:29:18 +02002#include <traceevent/event-parse.h>
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02003
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02004#include <byteswap.h>
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02005#include <unistd.h>
6#include <sys/types.h>
Arnaldo Carvalho de Meloa41794c2010-05-18 18:29:23 -03007#include <sys/mman.h>
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02008
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03009#include "evlist.h"
10#include "evsel.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020011#include "session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020012#include "tool.h"
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -020013#include "sort.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020014#include "util.h"
Anton Blanchard5d67be92011-07-04 21:57:50 +100015#include "cpumap.h"
Jiri Olsa0f6a3012012-08-07 15:20:45 +020016#include "perf_regs.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020017
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030018static int perf_session__open(struct perf_session *session)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020019{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030020 struct perf_data_file *file = session->file;
Tom Zanussi8dc58102010-04-01 23:59:15 -050021
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030022 if (perf_session__read_header(session) < 0) {
Stephane Eranian69996df2012-02-09 23:21:06 +010023 pr_err("incompatible file format (rerun with -v to learn more)");
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020024 return -1;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020025 }
26
Jiri Olsacc9784bd2013-10-15 16:27:34 +020027 if (perf_data_file__is_pipe(file))
28 return 0;
29
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030030 if (!perf_evlist__valid_sample_type(session->evlist)) {
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -030031 pr_err("non matching sample_type");
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020032 return -1;
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -030033 }
34
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030035 if (!perf_evlist__valid_sample_id_all(session->evlist)) {
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -030036 pr_err("non matching sample_id_all");
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020037 return -1;
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -030038 }
39
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030040 if (!perf_evlist__valid_read_format(session->evlist)) {
Jiri Olsa9ede4732012-10-10 17:38:13 +020041 pr_err("non matching read_format");
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020042 return -1;
Jiri Olsa9ede4732012-10-10 17:38:13 +020043 }
44
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020045 return 0;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020046}
47
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -030048void perf_session__set_id_hdr_size(struct perf_session *session)
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -020049{
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -030050 u16 id_hdr_size = perf_evlist__id_hdr_size(session->evlist);
51
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -030052 machines__set_id_hdr_size(&session->machines, id_hdr_size);
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -020053}
54
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030055int perf_session__create_kernel_maps(struct perf_session *session)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080056{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030057 int ret = machine__create_kernel_maps(&session->machines.host);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080058
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080059 if (ret >= 0)
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030060 ret = machines__create_guest_kernel_maps(&session->machines);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080061 return ret;
62}
63
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030064static void perf_session__destroy_kernel_maps(struct perf_session *session)
Arnaldo Carvalho de Melo076c6e452010-08-02 18:18:28 -030065{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030066 machines__destroy_kernel_maps(&session->machines);
Arnaldo Carvalho de Melo076c6e452010-08-02 18:18:28 -030067}
68
Jiri Olsaf5fc1412013-10-15 16:27:32 +020069struct perf_session *perf_session__new(struct perf_data_file *file,
70 bool repipe, struct perf_tool *tool)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020071{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030072 struct perf_session *session = zalloc(sizeof(*session));
Robert Richterefad1412011-12-07 10:02:54 +010073
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030074 if (!session)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020075 goto out;
76
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030077 session->repipe = repipe;
Jiri Olsa36522f52014-06-10 22:47:40 +020078 ordered_events__init(&session->ordered_events);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030079 machines__init(&session->machines);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020080
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020081 if (file) {
82 if (perf_data_file__open(file))
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -020083 goto out_delete;
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020084
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030085 session->file = file;
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020086
87 if (perf_data_file__is_read(file)) {
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030088 if (perf_session__open(session) < 0)
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020089 goto out_close;
90
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030091 perf_session__set_id_hdr_size(session);
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020092 }
93 }
94
95 if (!file || perf_data_file__is_write(file)) {
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -020096 /*
97 * In O_RDONLY mode this will be performed when reading the
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -020098 * kernel MMAP event, in perf_event__process_mmap().
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -020099 */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300100 if (perf_session__create_kernel_maps(session) < 0)
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -0200101 goto out_delete;
102 }
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200103
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200104 if (tool && tool->ordering_requires_timestamps &&
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200105 tool->ordered_events && !perf_evlist__sample_id_all(session->evlist)) {
Ian Munsie21ef97f2010-12-10 14:09:16 +1100106 dump_printf("WARNING: No sample_id_all support, falling back to unordered processing\n");
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200107 tool->ordered_events = false;
Ian Munsie21ef97f2010-12-10 14:09:16 +1100108 }
109
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300110 return session;
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200111
112 out_close:
113 perf_data_file__close(file);
114 out_delete:
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300115 perf_session__delete(session);
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200116 out:
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200117 return NULL;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200118}
119
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200120static void perf_session__delete_dead_threads(struct perf_session *session)
121{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300122 machine__delete_dead_threads(&session->machines.host);
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200123}
124
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200125static void perf_session__delete_threads(struct perf_session *session)
126{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300127 machine__delete_threads(&session->machines.host);
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200128}
129
Namhyung Kim03cd2092012-11-21 13:43:19 +0900130static void perf_session_env__delete(struct perf_session_env *env)
131{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300132 zfree(&env->hostname);
133 zfree(&env->os_release);
134 zfree(&env->version);
135 zfree(&env->arch);
136 zfree(&env->cpu_desc);
137 zfree(&env->cpuid);
Namhyung Kim03cd2092012-11-21 13:43:19 +0900138
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300139 zfree(&env->cmdline);
140 zfree(&env->sibling_cores);
141 zfree(&env->sibling_threads);
142 zfree(&env->numa_nodes);
143 zfree(&env->pmu_mappings);
Namhyung Kim03cd2092012-11-21 13:43:19 +0900144}
145
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300146void perf_session__delete(struct perf_session *session)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200147{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300148 perf_session__destroy_kernel_maps(session);
149 perf_session__delete_dead_threads(session);
150 perf_session__delete_threads(session);
151 perf_session_env__delete(&session->header.env);
152 machines__exit(&session->machines);
153 if (session->file)
154 perf_data_file__close(session->file);
155 free(session);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200156}
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200157
Adrian Hunter47c3d102013-07-04 16:20:21 +0300158static int process_event_synth_tracing_data_stub(struct perf_tool *tool
159 __maybe_unused,
160 union perf_event *event
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300161 __maybe_unused,
162 struct perf_session *session
163 __maybe_unused)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200164{
165 dump_printf(": unhandled!\n");
166 return 0;
167}
168
Adrian Hunter47c3d102013-07-04 16:20:21 +0300169static int process_event_synth_attr_stub(struct perf_tool *tool __maybe_unused,
170 union perf_event *event __maybe_unused,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300171 struct perf_evlist **pevlist
172 __maybe_unused)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200173{
174 dump_printf(": unhandled!\n");
175 return 0;
176}
177
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300178static int process_event_sample_stub(struct perf_tool *tool __maybe_unused,
179 union perf_event *event __maybe_unused,
180 struct perf_sample *sample __maybe_unused,
181 struct perf_evsel *evsel __maybe_unused,
182 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300183{
184 dump_printf(": unhandled!\n");
185 return 0;
186}
187
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300188static int process_event_stub(struct perf_tool *tool __maybe_unused,
189 union perf_event *event __maybe_unused,
190 struct perf_sample *sample __maybe_unused,
191 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200192{
193 dump_printf(": unhandled!\n");
194 return 0;
195}
196
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300197static int process_finished_round_stub(struct perf_tool *tool __maybe_unused,
198 union perf_event *event __maybe_unused,
199 struct perf_session *perf_session
200 __maybe_unused)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200201{
202 dump_printf(": unhandled!\n");
203 return 0;
204}
205
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200206static int process_finished_round(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200207 union perf_event *event,
208 struct perf_session *session);
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200209
David Ahern9c501402013-08-02 14:05:41 -0600210void perf_tool__fill_defaults(struct perf_tool *tool)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200211{
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200212 if (tool->sample == NULL)
213 tool->sample = process_event_sample_stub;
214 if (tool->mmap == NULL)
215 tool->mmap = process_event_stub;
David Ahern6adb0b02013-09-22 19:44:59 -0600216 if (tool->mmap2 == NULL)
217 tool->mmap2 = process_event_stub;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200218 if (tool->comm == NULL)
219 tool->comm = process_event_stub;
220 if (tool->fork == NULL)
221 tool->fork = process_event_stub;
222 if (tool->exit == NULL)
223 tool->exit = process_event_stub;
224 if (tool->lost == NULL)
225 tool->lost = perf_event__process_lost;
226 if (tool->read == NULL)
227 tool->read = process_event_sample_stub;
228 if (tool->throttle == NULL)
229 tool->throttle = process_event_stub;
230 if (tool->unthrottle == NULL)
231 tool->unthrottle = process_event_stub;
232 if (tool->attr == NULL)
233 tool->attr = process_event_synth_attr_stub;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200234 if (tool->tracing_data == NULL)
235 tool->tracing_data = process_event_synth_tracing_data_stub;
236 if (tool->build_id == NULL)
237 tool->build_id = process_finished_round_stub;
238 if (tool->finished_round == NULL) {
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200239 if (tool->ordered_events)
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200240 tool->finished_round = process_finished_round;
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200241 else
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200242 tool->finished_round = process_finished_round_stub;
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200243 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200244}
David Ahern80c01202012-06-08 11:47:51 -0300245
Jiri Olsa268fb202012-05-30 14:23:43 +0200246static void swap_sample_id_all(union perf_event *event, void *data)
247{
248 void *end = (void *) event + event->header.size;
249 int size = end - data;
250
251 BUG_ON(size % sizeof(u64));
252 mem_bswap_64(data, size);
253}
254
255static void perf_event__all64_swap(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300256 bool sample_id_all __maybe_unused)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200257{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200258 struct perf_event_header *hdr = &event->header;
259 mem_bswap_64(hdr + 1, event->header.size - sizeof(*hdr));
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200260}
261
Jiri Olsa268fb202012-05-30 14:23:43 +0200262static void perf_event__comm_swap(union perf_event *event, bool sample_id_all)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200263{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200264 event->comm.pid = bswap_32(event->comm.pid);
265 event->comm.tid = bswap_32(event->comm.tid);
Jiri Olsa268fb202012-05-30 14:23:43 +0200266
267 if (sample_id_all) {
268 void *data = &event->comm.comm;
269
Irina Tirdea9ac3e482012-09-11 01:15:01 +0300270 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
Jiri Olsa268fb202012-05-30 14:23:43 +0200271 swap_sample_id_all(event, data);
272 }
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200273}
274
Jiri Olsa268fb202012-05-30 14:23:43 +0200275static void perf_event__mmap_swap(union perf_event *event,
276 bool sample_id_all)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200277{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200278 event->mmap.pid = bswap_32(event->mmap.pid);
279 event->mmap.tid = bswap_32(event->mmap.tid);
280 event->mmap.start = bswap_64(event->mmap.start);
281 event->mmap.len = bswap_64(event->mmap.len);
282 event->mmap.pgoff = bswap_64(event->mmap.pgoff);
Jiri Olsa268fb202012-05-30 14:23:43 +0200283
284 if (sample_id_all) {
285 void *data = &event->mmap.filename;
286
Irina Tirdea9ac3e482012-09-11 01:15:01 +0300287 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
Jiri Olsa268fb202012-05-30 14:23:43 +0200288 swap_sample_id_all(event, data);
289 }
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200290}
291
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200292static void perf_event__mmap2_swap(union perf_event *event,
293 bool sample_id_all)
294{
295 event->mmap2.pid = bswap_32(event->mmap2.pid);
296 event->mmap2.tid = bswap_32(event->mmap2.tid);
297 event->mmap2.start = bswap_64(event->mmap2.start);
298 event->mmap2.len = bswap_64(event->mmap2.len);
299 event->mmap2.pgoff = bswap_64(event->mmap2.pgoff);
300 event->mmap2.maj = bswap_32(event->mmap2.maj);
301 event->mmap2.min = bswap_32(event->mmap2.min);
302 event->mmap2.ino = bswap_64(event->mmap2.ino);
303
304 if (sample_id_all) {
305 void *data = &event->mmap2.filename;
306
307 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
308 swap_sample_id_all(event, data);
309 }
310}
Jiri Olsa268fb202012-05-30 14:23:43 +0200311static void perf_event__task_swap(union perf_event *event, bool sample_id_all)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200312{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200313 event->fork.pid = bswap_32(event->fork.pid);
314 event->fork.tid = bswap_32(event->fork.tid);
315 event->fork.ppid = bswap_32(event->fork.ppid);
316 event->fork.ptid = bswap_32(event->fork.ptid);
317 event->fork.time = bswap_64(event->fork.time);
Jiri Olsa268fb202012-05-30 14:23:43 +0200318
319 if (sample_id_all)
320 swap_sample_id_all(event, &event->fork + 1);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200321}
322
Jiri Olsa268fb202012-05-30 14:23:43 +0200323static void perf_event__read_swap(union perf_event *event, bool sample_id_all)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200324{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200325 event->read.pid = bswap_32(event->read.pid);
326 event->read.tid = bswap_32(event->read.tid);
327 event->read.value = bswap_64(event->read.value);
328 event->read.time_enabled = bswap_64(event->read.time_enabled);
329 event->read.time_running = bswap_64(event->read.time_running);
330 event->read.id = bswap_64(event->read.id);
Jiri Olsa268fb202012-05-30 14:23:43 +0200331
332 if (sample_id_all)
333 swap_sample_id_all(event, &event->read + 1);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200334}
335
Jiri Olsadd96c462013-09-01 12:36:15 +0200336static void perf_event__throttle_swap(union perf_event *event,
337 bool sample_id_all)
338{
339 event->throttle.time = bswap_64(event->throttle.time);
340 event->throttle.id = bswap_64(event->throttle.id);
341 event->throttle.stream_id = bswap_64(event->throttle.stream_id);
342
343 if (sample_id_all)
344 swap_sample_id_all(event, &event->throttle + 1);
345}
346
Jiri Olsae108c662012-05-16 08:59:03 +0200347static u8 revbyte(u8 b)
348{
349 int rev = (b >> 4) | ((b & 0xf) << 4);
350 rev = ((rev & 0xcc) >> 2) | ((rev & 0x33) << 2);
351 rev = ((rev & 0xaa) >> 1) | ((rev & 0x55) << 1);
352 return (u8) rev;
353}
354
355/*
356 * XXX this is hack in attempt to carry flags bitfield
357 * throught endian village. ABI says:
358 *
359 * Bit-fields are allocated from right to left (least to most significant)
360 * on little-endian implementations and from left to right (most to least
361 * significant) on big-endian implementations.
362 *
363 * The above seems to be byte specific, so we need to reverse each
364 * byte of the bitfield. 'Internet' also says this might be implementation
365 * specific and we probably need proper fix and carry perf_event_attr
366 * bitfield flags in separate data file FEAT_ section. Thought this seems
367 * to work for now.
368 */
369static void swap_bitfield(u8 *p, unsigned len)
370{
371 unsigned i;
372
373 for (i = 0; i < len; i++) {
374 *p = revbyte(*p);
375 p++;
376 }
377}
378
David Aherneda39132011-07-15 12:34:09 -0600379/* exported for swapping attributes in file header */
380void perf_event__attr_swap(struct perf_event_attr *attr)
381{
382 attr->type = bswap_32(attr->type);
383 attr->size = bswap_32(attr->size);
384 attr->config = bswap_64(attr->config);
385 attr->sample_period = bswap_64(attr->sample_period);
386 attr->sample_type = bswap_64(attr->sample_type);
387 attr->read_format = bswap_64(attr->read_format);
388 attr->wakeup_events = bswap_32(attr->wakeup_events);
389 attr->bp_type = bswap_32(attr->bp_type);
390 attr->bp_addr = bswap_64(attr->bp_addr);
391 attr->bp_len = bswap_64(attr->bp_len);
Adrian Hunter7db59522013-10-18 15:29:03 +0300392 attr->branch_sample_type = bswap_64(attr->branch_sample_type);
393 attr->sample_regs_user = bswap_64(attr->sample_regs_user);
394 attr->sample_stack_user = bswap_32(attr->sample_stack_user);
Jiri Olsae108c662012-05-16 08:59:03 +0200395
396 swap_bitfield((u8 *) (&attr->read_format + 1), sizeof(u64));
David Aherneda39132011-07-15 12:34:09 -0600397}
398
Jiri Olsa268fb202012-05-30 14:23:43 +0200399static void perf_event__hdr_attr_swap(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300400 bool sample_id_all __maybe_unused)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500401{
402 size_t size;
403
David Aherneda39132011-07-15 12:34:09 -0600404 perf_event__attr_swap(&event->attr.attr);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500405
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200406 size = event->header.size;
407 size -= (void *)&event->attr.id - (void *)event;
408 mem_bswap_64(event->attr.id, size);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500409}
410
Jiri Olsa268fb202012-05-30 14:23:43 +0200411static void perf_event__event_type_swap(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300412 bool sample_id_all __maybe_unused)
Tom Zanussicd19a032010-04-01 23:59:20 -0500413{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200414 event->event_type.event_type.event_id =
415 bswap_64(event->event_type.event_type.event_id);
Tom Zanussicd19a032010-04-01 23:59:20 -0500416}
417
Jiri Olsa268fb202012-05-30 14:23:43 +0200418static void perf_event__tracing_data_swap(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300419 bool sample_id_all __maybe_unused)
Tom Zanussi92155452010-04-01 23:59:21 -0500420{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200421 event->tracing_data.size = bswap_32(event->tracing_data.size);
Tom Zanussi92155452010-04-01 23:59:21 -0500422}
423
Jiri Olsa268fb202012-05-30 14:23:43 +0200424typedef void (*perf_event__swap_op)(union perf_event *event,
425 bool sample_id_all);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200426
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200427static perf_event__swap_op perf_event__swap_ops[] = {
428 [PERF_RECORD_MMAP] = perf_event__mmap_swap,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200429 [PERF_RECORD_MMAP2] = perf_event__mmap2_swap,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200430 [PERF_RECORD_COMM] = perf_event__comm_swap,
431 [PERF_RECORD_FORK] = perf_event__task_swap,
432 [PERF_RECORD_EXIT] = perf_event__task_swap,
433 [PERF_RECORD_LOST] = perf_event__all64_swap,
434 [PERF_RECORD_READ] = perf_event__read_swap,
Jiri Olsadd96c462013-09-01 12:36:15 +0200435 [PERF_RECORD_THROTTLE] = perf_event__throttle_swap,
436 [PERF_RECORD_UNTHROTTLE] = perf_event__throttle_swap,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200437 [PERF_RECORD_SAMPLE] = perf_event__all64_swap,
David Aherneda39132011-07-15 12:34:09 -0600438 [PERF_RECORD_HEADER_ATTR] = perf_event__hdr_attr_swap,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200439 [PERF_RECORD_HEADER_EVENT_TYPE] = perf_event__event_type_swap,
440 [PERF_RECORD_HEADER_TRACING_DATA] = perf_event__tracing_data_swap,
441 [PERF_RECORD_HEADER_BUILD_ID] = NULL,
442 [PERF_RECORD_HEADER_MAX] = NULL,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200443};
444
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200445/*
446 * When perf record finishes a pass on every buffers, it records this pseudo
447 * event.
448 * We record the max timestamp t found in the pass n.
449 * Assuming these timestamps are monotonic across cpus, we know that if
450 * a buffer still has events with timestamps below t, they will be all
451 * available and then read in the pass n + 1.
452 * Hence when we start to read the pass n + 2, we can safely flush every
453 * events with timestamps below t.
454 *
455 * ============ PASS n =================
456 * CPU 0 | CPU 1
457 * |
458 * cnt1 timestamps | cnt2 timestamps
459 * 1 | 2
460 * 2 | 3
461 * - | 4 <--- max recorded
462 *
463 * ============ PASS n + 1 ==============
464 * CPU 0 | CPU 1
465 * |
466 * cnt1 timestamps | cnt2 timestamps
467 * 3 | 5
468 * 4 | 6
469 * 5 | 7 <---- max recorded
470 *
471 * Flush every events below timestamp 4
472 *
473 * ============ PASS n + 2 ==============
474 * CPU 0 | CPU 1
475 * |
476 * cnt1 timestamps | cnt2 timestamps
477 * 6 | 8
478 * 7 | 9
479 * - | 10
480 *
481 * Flush every events below timestamp 7
482 * etc...
483 */
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200484static int process_finished_round(struct perf_tool *tool,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300485 union perf_event *event __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200486 struct perf_session *session)
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200487{
Jiri Olsad8836b52014-06-05 10:29:45 +0200488 return ordered_events__flush(session, tool, OE_FLUSH__ROUND);
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200489}
490
David Aherne30b88a2013-08-05 21:41:33 -0400491int perf_session_queue_event(struct perf_session *s, union perf_event *event,
Jiri Olsad40b4a12014-08-01 13:01:04 -0300492 struct perf_tool *tool, struct perf_sample *sample,
493 u64 file_offset)
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200494{
Jiri Olsa37e39aa2014-07-06 14:23:03 +0200495 struct ordered_events *oe = &s->ordered_events;
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200496 u64 timestamp = sample->time;
Jiri Olsa37e39aa2014-07-06 14:23:03 +0200497 struct ordered_event *new;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200498
Thomas Gleixner79a14c12010-12-07 12:48:44 +0000499 if (!timestamp || timestamp == ~0ULL)
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100500 return -ETIME;
501
Jiri Olsa37e39aa2014-07-06 14:23:03 +0200502 if (timestamp < s->ordered_events.last_flush) {
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200503 printf("Warning: Timestamp below last timeslice flush\n");
504 return -EINVAL;
505 }
506
Jiri Olsac64c7e12014-06-10 21:58:02 +0200507 new = ordered_events__new(oe, timestamp);
Jiri Olsad40b4a12014-08-01 13:01:04 -0300508 if (!new) {
509 ordered_events__flush(s, tool, OE_FLUSH__HALF);
510 new = ordered_events__new(oe, timestamp);
511 }
512
Jiri Olsac64c7e12014-06-10 21:58:02 +0200513 if (!new)
514 return -ENOMEM;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200515
Thomas Gleixnere4c2df12010-12-07 12:48:50 +0000516 new->file_offset = file_offset;
Thomas Gleixnerfe174202010-11-30 17:49:49 +0000517 new->event = event;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200518 return 0;
519}
520
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200521static void callchain__printf(struct perf_sample *sample)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200522{
523 unsigned int i;
524
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200525 printf("... chain: nr:%" PRIu64 "\n", sample->callchain->nr);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200526
527 for (i = 0; i < sample->callchain->nr; i++)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200528 printf("..... %2d: %016" PRIx64 "\n",
529 i, sample->callchain->ips[i]);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200530}
531
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100532static void branch_stack__printf(struct perf_sample *sample)
533{
534 uint64_t i;
535
536 printf("... branch stack: nr:%" PRIu64 "\n", sample->branch_stack->nr);
537
538 for (i = 0; i < sample->branch_stack->nr; i++)
539 printf("..... %2"PRIu64": %016" PRIx64 " -> %016" PRIx64 "\n",
540 i, sample->branch_stack->entries[i].from,
541 sample->branch_stack->entries[i].to);
542}
543
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200544static void regs_dump__printf(u64 mask, u64 *regs)
545{
546 unsigned rid, i = 0;
547
548 for_each_set_bit(rid, (unsigned long *) &mask, sizeof(mask) * 8) {
549 u64 val = regs[i++];
550
551 printf(".... %-5s 0x%" PRIx64 "\n",
552 perf_reg_name(rid), val);
553 }
554}
555
Jiri Olsa352ea452014-01-07 13:47:25 +0100556static void regs_user__printf(struct perf_sample *sample)
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200557{
558 struct regs_dump *user_regs = &sample->user_regs;
559
560 if (user_regs->regs) {
Jiri Olsa352ea452014-01-07 13:47:25 +0100561 u64 mask = user_regs->mask;
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200562 printf("... user regs: mask 0x%" PRIx64 "\n", mask);
563 regs_dump__printf(mask, user_regs->regs);
564 }
565}
566
567static void stack_user__printf(struct stack_dump *dump)
568{
569 printf("... ustack: size %" PRIu64 ", offset 0x%x\n",
570 dump->size, dump->offset);
571}
572
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200573static void perf_session__print_tstamp(struct perf_session *session,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200574 union perf_event *event,
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200575 struct perf_sample *sample)
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200576{
Adrian Hunter75562572013-08-27 11:23:09 +0300577 u64 sample_type = __perf_evlist__combined_sample_type(session->evlist);
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300578
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200579 if (event->header.type != PERF_RECORD_SAMPLE &&
Arnaldo Carvalho de Melo5e562472012-08-01 19:25:26 -0300580 !perf_evlist__sample_id_all(session->evlist)) {
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200581 fputs("-1 -1 ", stdout);
582 return;
583 }
584
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300585 if ((sample_type & PERF_SAMPLE_CPU))
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200586 printf("%u ", sample->cpu);
587
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300588 if (sample_type & PERF_SAMPLE_TIME)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200589 printf("%" PRIu64 " ", sample->time);
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200590}
591
Jiri Olsa9ede4732012-10-10 17:38:13 +0200592static void sample_read__printf(struct perf_sample *sample, u64 read_format)
593{
594 printf("... sample_read:\n");
595
596 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
597 printf("...... time enabled %016" PRIx64 "\n",
598 sample->read.time_enabled);
599
600 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
601 printf("...... time running %016" PRIx64 "\n",
602 sample->read.time_running);
603
604 if (read_format & PERF_FORMAT_GROUP) {
605 u64 i;
606
607 printf(".... group nr %" PRIu64 "\n", sample->read.group.nr);
608
609 for (i = 0; i < sample->read.group.nr; i++) {
610 struct sample_read_value *value;
611
612 value = &sample->read.group.values[i];
613 printf("..... id %016" PRIx64
614 ", value %016" PRIx64 "\n",
615 value->id, value->value);
616 }
617 } else
618 printf("..... id %016" PRIx64 ", value %016" PRIx64 "\n",
619 sample->read.one.id, sample->read.one.value);
620}
621
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200622static void dump_event(struct perf_session *session, union perf_event *event,
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200623 u64 file_offset, struct perf_sample *sample)
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000624{
625 if (!dump_trace)
626 return;
627
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200628 printf("\n%#" PRIx64 " [%#x]: event: %d\n",
629 file_offset, event->header.size, event->header.type);
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000630
631 trace_event(event);
632
633 if (sample)
634 perf_session__print_tstamp(session, event, sample);
635
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200636 printf("%#" PRIx64 " [%#x]: PERF_RECORD_%s", file_offset,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200637 event->header.size, perf_event__name(event->header.type));
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000638}
639
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200640static void dump_sample(struct perf_evsel *evsel, union perf_event *event,
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200641 struct perf_sample *sample)
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000642{
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300643 u64 sample_type;
644
Arnaldo Carvalho de Meloddbc24b2010-12-09 12:20:20 -0200645 if (!dump_trace)
646 return;
647
Don Zickus0ea590a2014-02-25 22:43:46 -0500648 printf("(IP, 0x%x): %d/%d: %#" PRIx64 " period: %" PRIu64 " addr: %#" PRIx64 "\n",
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200649 event->header.misc, sample->pid, sample->tid, sample->ip,
David Ahern7cec0922011-05-30 13:08:23 -0600650 sample->period, sample->addr);
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000651
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200652 sample_type = evsel->attr.sample_type;
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300653
654 if (sample_type & PERF_SAMPLE_CALLCHAIN)
Arnaldo Carvalho de Meloddbc24b2010-12-09 12:20:20 -0200655 callchain__printf(sample);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100656
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300657 if (sample_type & PERF_SAMPLE_BRANCH_STACK)
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100658 branch_stack__printf(sample);
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200659
660 if (sample_type & PERF_SAMPLE_REGS_USER)
Jiri Olsa352ea452014-01-07 13:47:25 +0100661 regs_user__printf(sample);
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200662
663 if (sample_type & PERF_SAMPLE_STACK_USER)
664 stack_user__printf(&sample->user_stack);
Andi Kleen05484292013-01-24 16:10:29 +0100665
666 if (sample_type & PERF_SAMPLE_WEIGHT)
667 printf("... weight: %" PRIu64 "\n", sample->weight);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100668
669 if (sample_type & PERF_SAMPLE_DATA_SRC)
670 printf(" . data_src: 0x%"PRIx64"\n", sample->data_src);
Jiri Olsa9ede4732012-10-10 17:38:13 +0200671
Andi Kleen475eeab2013-09-20 07:40:43 -0700672 if (sample_type & PERF_SAMPLE_TRANSACTION)
673 printf("... transaction: %" PRIx64 "\n", sample->transaction);
674
Jiri Olsa9ede4732012-10-10 17:38:13 +0200675 if (sample_type & PERF_SAMPLE_READ)
676 sample_read__printf(sample, evsel->attr.read_format);
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000677}
678
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200679static struct machine *
680 perf_session__find_machine_for_cpumode(struct perf_session *session,
Adrian Hunteref893252013-08-27 11:23:06 +0300681 union perf_event *event,
682 struct perf_sample *sample)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200683{
684 const u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Dongsheng Yangad85ace2013-12-20 13:41:47 -0500685 struct machine *machine;
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200686
David Ahern7c0f4a42012-07-20 17:25:48 -0600687 if (perf_guest &&
688 ((cpumode == PERF_RECORD_MISC_GUEST_KERNEL) ||
689 (cpumode == PERF_RECORD_MISC_GUEST_USER))) {
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +0530690 u32 pid;
691
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200692 if (event->header.type == PERF_RECORD_MMAP
693 || event->header.type == PERF_RECORD_MMAP2)
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +0530694 pid = event->mmap.pid;
695 else
Adrian Hunteref893252013-08-27 11:23:06 +0300696 pid = sample->pid;
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +0530697
Dongsheng Yangad85ace2013-12-20 13:41:47 -0500698 machine = perf_session__find_machine(session, pid);
699 if (!machine)
700 machine = perf_session__findnew_machine(session,
701 DEFAULT_GUEST_KERNEL_ID);
702 return machine;
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +0530703 }
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200704
Arnaldo Carvalho de Melo34ba5122012-12-19 09:04:24 -0300705 return &session->machines.host;
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200706}
707
Jiri Olsae4caec02012-10-10 18:52:24 +0200708static int deliver_sample_value(struct perf_session *session,
709 struct perf_tool *tool,
710 union perf_event *event,
711 struct perf_sample *sample,
712 struct sample_read_value *v,
713 struct machine *machine)
714{
715 struct perf_sample_id *sid;
716
717 sid = perf_evlist__id2sid(session->evlist, v->id);
718 if (sid) {
719 sample->id = v->id;
720 sample->period = v->value - sid->period;
721 sid->period = v->value;
722 }
723
724 if (!sid || sid->evsel == NULL) {
725 ++session->stats.nr_unknown_id;
726 return 0;
727 }
728
729 return tool->sample(tool, event, sample, sid->evsel, machine);
730}
731
732static int deliver_sample_group(struct perf_session *session,
733 struct perf_tool *tool,
734 union perf_event *event,
735 struct perf_sample *sample,
736 struct machine *machine)
737{
738 int ret = -EINVAL;
739 u64 i;
740
741 for (i = 0; i < sample->read.group.nr; i++) {
742 ret = deliver_sample_value(session, tool, event, sample,
743 &sample->read.group.values[i],
744 machine);
745 if (ret)
746 break;
747 }
748
749 return ret;
750}
751
752static int
753perf_session__deliver_sample(struct perf_session *session,
754 struct perf_tool *tool,
755 union perf_event *event,
756 struct perf_sample *sample,
757 struct perf_evsel *evsel,
758 struct machine *machine)
759{
760 /* We know evsel != NULL. */
761 u64 sample_type = evsel->attr.sample_type;
762 u64 read_format = evsel->attr.read_format;
763
764 /* Standard sample delievery. */
765 if (!(sample_type & PERF_SAMPLE_READ))
766 return tool->sample(tool, event, sample, evsel, machine);
767
768 /* For PERF_SAMPLE_READ we have either single or group mode. */
769 if (read_format & PERF_FORMAT_GROUP)
770 return deliver_sample_group(session, tool, event, sample,
771 machine);
772 else
773 return deliver_sample_value(session, tool, event, sample,
774 &sample->read.one, machine);
775}
776
Jiri Olsa79a30fe2014-06-10 22:31:35 +0200777int perf_session__deliver_event(struct perf_session *session,
778 union perf_event *event,
779 struct perf_sample *sample,
780 struct perf_tool *tool, u64 file_offset)
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100781{
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300782 struct perf_evsel *evsel;
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200783 struct machine *machine;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300784
Thomas Gleixner532e7262010-12-07 12:48:55 +0000785 dump_event(session, event, file_offset, sample);
786
Arnaldo Carvalho de Melo7b275092011-10-29 12:15:04 -0200787 evsel = perf_evlist__id2evsel(session->evlist, sample->id);
788 if (evsel != NULL && event->header.type != PERF_RECORD_SAMPLE) {
789 /*
790 * XXX We're leaving PERF_RECORD_SAMPLE unnacounted here
791 * because the tools right now may apply filters, discarding
792 * some of the samples. For consistency, in the future we
793 * should have something like nr_filtered_samples and remove
794 * the sample->period from total_sample_period, etc, KISS for
795 * now tho.
796 *
797 * Also testing against NULL allows us to handle files without
798 * attr.sample_id_all and/or without PERF_SAMPLE_ID. In the
799 * future probably it'll be a good idea to restrict event
800 * processing via perf_session to files with both set.
801 */
802 hists__inc_nr_events(&evsel->hists, event->header.type);
803 }
804
Adrian Hunteref893252013-08-27 11:23:06 +0300805 machine = perf_session__find_machine_for_cpumode(session, event,
806 sample);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200807
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100808 switch (event->header.type) {
809 case PERF_RECORD_SAMPLE:
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200810 dump_sample(evsel, event, sample);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300811 if (evsel == NULL) {
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300812 ++session->stats.nr_unknown_id;
Jiri Olsa67822062012-04-12 14:21:01 +0200813 return 0;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300814 }
Joerg Roedel0c095712012-02-10 18:05:04 +0100815 if (machine == NULL) {
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300816 ++session->stats.nr_unprocessable_samples;
Jiri Olsa67822062012-04-12 14:21:01 +0200817 return 0;
Joerg Roedel0c095712012-02-10 18:05:04 +0100818 }
Jiri Olsae4caec02012-10-10 18:52:24 +0200819 return perf_session__deliver_sample(session, tool, event,
820 sample, evsel, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100821 case PERF_RECORD_MMAP:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200822 return tool->mmap(tool, event, sample, machine);
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200823 case PERF_RECORD_MMAP2:
824 return tool->mmap2(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100825 case PERF_RECORD_COMM:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200826 return tool->comm(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100827 case PERF_RECORD_FORK:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200828 return tool->fork(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100829 case PERF_RECORD_EXIT:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200830 return tool->exit(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100831 case PERF_RECORD_LOST:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200832 if (tool->lost == perf_event__process_lost)
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300833 session->stats.total_lost += event->lost.lost;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200834 return tool->lost(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100835 case PERF_RECORD_READ:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200836 return tool->read(tool, event, sample, evsel, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100837 case PERF_RECORD_THROTTLE:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200838 return tool->throttle(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100839 case PERF_RECORD_UNTHROTTLE:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200840 return tool->unthrottle(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100841 default:
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300842 ++session->stats.nr_unknown_events;
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100843 return -1;
844 }
845}
846
Adrian Hunterd5652d82014-07-23 22:19:58 +0300847static s64 perf_session__process_user_event(struct perf_session *session,
848 union perf_event *event,
849 struct perf_tool *tool,
850 u64 file_offset)
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000851{
Jiri Olsacc9784bd2013-10-15 16:27:34 +0200852 int fd = perf_data_file__fd(session->file);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200853 int err;
854
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000855 dump_event(session, event, file_offset, NULL);
856
857 /* These events are processed right away */
858 switch (event->header.type) {
859 case PERF_RECORD_HEADER_ATTR:
Adrian Hunter47c3d102013-07-04 16:20:21 +0300860 err = tool->attr(tool, event, &session->evlist);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200861 if (err == 0)
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -0300862 perf_session__set_id_hdr_size(session);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200863 return err;
Jiri Olsaf67697b2014-02-04 15:37:48 +0100864 case PERF_RECORD_HEADER_EVENT_TYPE:
865 /*
866 * Depreceated, but we need to handle it for sake
867 * of old data files create in pipe mode.
868 */
869 return 0;
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000870 case PERF_RECORD_HEADER_TRACING_DATA:
871 /* setup for reading amidst mmap */
Jiri Olsacc9784bd2013-10-15 16:27:34 +0200872 lseek(fd, file_offset, SEEK_SET);
Adrian Hunter47c3d102013-07-04 16:20:21 +0300873 return tool->tracing_data(tool, event, session);
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000874 case PERF_RECORD_HEADER_BUILD_ID:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200875 return tool->build_id(tool, event, session);
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000876 case PERF_RECORD_FINISHED_ROUND:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200877 return tool->finished_round(tool, event, session);
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000878 default:
879 return -EINVAL;
880 }
881}
882
Jiri Olsa268fb202012-05-30 14:23:43 +0200883static void event_swap(union perf_event *event, bool sample_id_all)
884{
885 perf_event__swap_op swap;
886
887 swap = perf_event__swap_ops[event->header.type];
888 if (swap)
889 swap(event, sample_id_all);
890}
891
Adrian Hunterd5652d82014-07-23 22:19:58 +0300892static s64 perf_session__process_event(struct perf_session *session,
David Aherne30b88a2013-08-05 21:41:33 -0400893 union perf_event *event,
894 struct perf_tool *tool,
895 u64 file_offset)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200896{
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200897 struct perf_sample sample;
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100898 int ret;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200899
Jiri Olsa268fb202012-05-30 14:23:43 +0200900 if (session->header.needs_swap)
Arnaldo Carvalho de Melo5e562472012-08-01 19:25:26 -0300901 event_swap(event, perf_evlist__sample_id_all(session->evlist));
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200902
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000903 if (event->header.type >= PERF_RECORD_HEADER_MAX)
904 return -EINVAL;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200905
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300906 events_stats__inc(&session->stats, event->header.type);
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000907
908 if (event->header.type >= PERF_RECORD_USER_TYPE_START)
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200909 return perf_session__process_user_event(session, event, tool, file_offset);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100910
Thomas Gleixner3dfc2c02010-12-07 12:48:58 +0000911 /*
912 * For all kernel events we get the sample data
913 */
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -0300914 ret = perf_evlist__parse_sample(session->evlist, event, &sample);
Frederic Weisbecker5538bec2011-05-22 02:17:22 +0200915 if (ret)
916 return ret;
Thomas Gleixner3dfc2c02010-12-07 12:48:58 +0000917
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200918 if (tool->ordered_events) {
Jiri Olsad40b4a12014-08-01 13:01:04 -0300919 ret = perf_session_queue_event(session, event, tool, &sample,
Thomas Gleixnere4c2df12010-12-07 12:48:50 +0000920 file_offset);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100921 if (ret != -ETIME)
922 return ret;
923 }
924
Jiri Olsa79a30fe2014-06-10 22:31:35 +0200925 return perf_session__deliver_event(session, event, &sample, tool,
926 file_offset);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200927}
928
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300929void perf_event_header__bswap(struct perf_event_header *hdr)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200930{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300931 hdr->type = bswap_32(hdr->type);
932 hdr->misc = bswap_16(hdr->misc);
933 hdr->size = bswap_16(hdr->size);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200934}
935
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200936struct thread *perf_session__findnew(struct perf_session *session, pid_t pid)
937{
Adrian Hunter1fcb8762014-07-14 13:02:25 +0300938 return machine__findnew_thread(&session->machines.host, -1, pid);
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200939}
940
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300941static struct thread *perf_session__register_idle_thread(struct perf_session *session)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200942{
Adrian Hunter1fcb8762014-07-14 13:02:25 +0300943 struct thread *thread;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200944
Adrian Hunter1fcb8762014-07-14 13:02:25 +0300945 thread = machine__findnew_thread(&session->machines.host, 0, 0);
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200946 if (thread == NULL || thread__set_comm(thread, "swapper", 0)) {
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200947 pr_err("problem inserting idle task.\n");
948 thread = NULL;
949 }
950
951 return thread;
952}
953
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200954static void perf_session__warn_about_errors(const struct perf_session *session,
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200955 const struct perf_tool *tool)
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200956{
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200957 if (tool->lost == perf_event__process_lost &&
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300958 session->stats.nr_events[PERF_RECORD_LOST] != 0) {
Arnaldo Carvalho de Melo7b275092011-10-29 12:15:04 -0200959 ui__warning("Processed %d events and lost %d chunks!\n\n"
960 "Check IO/CPU overload!\n\n",
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300961 session->stats.nr_events[0],
962 session->stats.nr_events[PERF_RECORD_LOST]);
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200963 }
964
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300965 if (session->stats.nr_unknown_events != 0) {
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200966 ui__warning("Found %u unknown events!\n\n"
967 "Is this an older tool processing a perf.data "
968 "file generated by a more recent tool?\n\n"
969 "If that is not the case, consider "
970 "reporting to linux-kernel@vger.kernel.org.\n\n",
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300971 session->stats.nr_unknown_events);
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200972 }
973
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300974 if (session->stats.nr_unknown_id != 0) {
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300975 ui__warning("%u samples with id not present in the header\n",
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300976 session->stats.nr_unknown_id);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300977 }
978
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300979 if (session->stats.nr_invalid_chains != 0) {
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200980 ui__warning("Found invalid callchains!\n\n"
981 "%u out of %u events were discarded for this reason.\n\n"
982 "Consider reporting to linux-kernel@vger.kernel.org.\n\n",
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300983 session->stats.nr_invalid_chains,
984 session->stats.nr_events[PERF_RECORD_SAMPLE]);
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200985 }
Joerg Roedel0c095712012-02-10 18:05:04 +0100986
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300987 if (session->stats.nr_unprocessable_samples != 0) {
Joerg Roedel0c095712012-02-10 18:05:04 +0100988 ui__warning("%u unprocessable samples recorded.\n"
989 "Do you have a KVM guest running and not using 'perf kvm'?\n",
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300990 session->stats.nr_unprocessable_samples);
Joerg Roedel0c095712012-02-10 18:05:04 +0100991 }
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200992}
993
Tom Zanussi8dc58102010-04-01 23:59:15 -0500994volatile int session_done;
995
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300996static int __perf_session__process_pipe_events(struct perf_session *session,
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200997 struct perf_tool *tool)
Tom Zanussi8dc58102010-04-01 23:59:15 -0500998{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300999 int fd = perf_data_file__fd(session->file);
Stephane Eranian444d2862012-05-15 13:28:12 +02001000 union perf_event *event;
1001 uint32_t size, cur_size = 0;
1002 void *buf = NULL;
Adrian Hunterd5652d82014-07-23 22:19:58 +03001003 s64 skip = 0;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001004 u64 head;
Jiri Olsa727ebd52013-11-28 11:30:14 +01001005 ssize_t err;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001006 void *p;
1007
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001008 perf_tool__fill_defaults(tool);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001009
1010 head = 0;
Stephane Eranian444d2862012-05-15 13:28:12 +02001011 cur_size = sizeof(union perf_event);
1012
1013 buf = malloc(cur_size);
1014 if (!buf)
1015 return -errno;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001016more:
Stephane Eranian444d2862012-05-15 13:28:12 +02001017 event = buf;
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001018 err = readn(fd, event, sizeof(struct perf_event_header));
Tom Zanussi8dc58102010-04-01 23:59:15 -05001019 if (err <= 0) {
1020 if (err == 0)
1021 goto done;
1022
1023 pr_err("failed to read event header\n");
1024 goto out_err;
1025 }
1026
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001027 if (session->header.needs_swap)
Stephane Eranian444d2862012-05-15 13:28:12 +02001028 perf_event_header__bswap(&event->header);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001029
Stephane Eranian444d2862012-05-15 13:28:12 +02001030 size = event->header.size;
Adrian Hunter27389d72013-07-04 16:20:27 +03001031 if (size < sizeof(struct perf_event_header)) {
1032 pr_err("bad event header size\n");
1033 goto out_err;
1034 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05001035
Stephane Eranian444d2862012-05-15 13:28:12 +02001036 if (size > cur_size) {
1037 void *new = realloc(buf, size);
1038 if (!new) {
1039 pr_err("failed to allocate memory to read event\n");
1040 goto out_err;
1041 }
1042 buf = new;
1043 cur_size = size;
1044 event = buf;
1045 }
1046 p = event;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001047 p += sizeof(struct perf_event_header);
1048
Tom Zanussi794e43b2010-05-05 00:27:40 -05001049 if (size - sizeof(struct perf_event_header)) {
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001050 err = readn(fd, p, size - sizeof(struct perf_event_header));
Tom Zanussi794e43b2010-05-05 00:27:40 -05001051 if (err <= 0) {
1052 if (err == 0) {
1053 pr_err("unexpected end of event stream\n");
1054 goto done;
1055 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05001056
Tom Zanussi794e43b2010-05-05 00:27:40 -05001057 pr_err("failed to read event data\n");
1058 goto out_err;
1059 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05001060 }
1061
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001062 if ((skip = perf_session__process_event(session, event, tool, head)) < 0) {
Jiri Olsa9389a462012-04-16 20:42:51 +02001063 pr_err("%#" PRIx64 " [%#x]: failed to process type: %d\n",
Stephane Eranian444d2862012-05-15 13:28:12 +02001064 head, event->header.size, event->header.type);
Jiri Olsa9389a462012-04-16 20:42:51 +02001065 err = -EINVAL;
1066 goto out_err;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001067 }
1068
1069 head += size;
1070
Tom Zanussi8dc58102010-04-01 23:59:15 -05001071 if (skip > 0)
1072 head += skip;
1073
1074 if (!session_done())
1075 goto more;
1076done:
Adrian Hunter8c16b642013-10-18 15:29:02 +03001077 /* do the final flush for ordered samples */
Jiri Olsad8836b52014-06-05 10:29:45 +02001078 err = ordered_events__flush(session, tool, OE_FLUSH__FINAL);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001079out_err:
Stephane Eranian444d2862012-05-15 13:28:12 +02001080 free(buf);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001081 perf_session__warn_about_errors(session, tool);
Jiri Olsaadc56ed2014-06-10 22:50:03 +02001082 ordered_events__free(&session->ordered_events);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001083 return err;
1084}
1085
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02001086static union perf_event *
1087fetch_mmaped_event(struct perf_session *session,
1088 u64 head, size_t mmap_size, char *buf)
1089{
1090 union perf_event *event;
1091
1092 /*
1093 * Ensure we have enough space remaining to read
1094 * the size of the event in the headers.
1095 */
1096 if (head + sizeof(event->header) > mmap_size)
1097 return NULL;
1098
1099 event = (union perf_event *)(buf + head);
1100
1101 if (session->header.needs_swap)
1102 perf_event_header__bswap(&event->header);
1103
Adrian Hunter27389d72013-07-04 16:20:27 +03001104 if (head + event->header.size > mmap_size) {
1105 /* We're not fetching the event so swap back again */
1106 if (session->header.needs_swap)
1107 perf_event_header__bswap(&event->header);
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02001108 return NULL;
Adrian Hunter27389d72013-07-04 16:20:27 +03001109 }
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02001110
1111 return event;
1112}
1113
David Miller35d48dd2012-11-10 14:12:19 -05001114/*
1115 * On 64bit we can mmap the data file in one go. No need for tiny mmap
1116 * slices. On 32bit we use 32MB.
1117 */
1118#if BITS_PER_LONG == 64
1119#define MMAP_SIZE ULLONG_MAX
1120#define NUM_MMAPS 1
1121#else
1122#define MMAP_SIZE (32 * 1024 * 1024ULL)
1123#define NUM_MMAPS 128
1124#endif
1125
Thomas Gleixner0331ee02010-11-30 17:49:38 +00001126int __perf_session__process_events(struct perf_session *session,
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02001127 u64 data_offset, u64 data_size,
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001128 u64 file_size, struct perf_tool *tool)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001129{
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001130 int fd = perf_data_file__fd(session->file);
Adrian Hunterd5652d82014-07-23 22:19:58 +03001131 u64 head, page_offset, file_offset, file_pos, size;
Thomas Gleixnerfe174202010-11-30 17:49:49 +00001132 int err, mmap_prot, mmap_flags, map_idx = 0;
Arnaldo Carvalho de Melo0c1fe6b2012-10-06 14:57:10 -03001133 size_t mmap_size;
David Miller35d48dd2012-11-10 14:12:19 -05001134 char *buf, *mmaps[NUM_MMAPS];
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02001135 union perf_event *event;
Arnaldo Carvalho de Melo4d3001f2013-10-23 15:40:38 -03001136 struct ui_progress prog;
Adrian Hunterd5652d82014-07-23 22:19:58 +03001137 s64 skip;
Thomas Gleixner0331ee02010-11-30 17:49:38 +00001138
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001139 perf_tool__fill_defaults(tool);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001140
Thomas Gleixner0331ee02010-11-30 17:49:38 +00001141 page_offset = page_size * (data_offset / page_size);
1142 file_offset = page_offset;
1143 head = data_offset - page_offset;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001144
Namhyung Kimb314e5c2013-09-30 17:19:48 +09001145 if (data_size && (data_offset + data_size < file_size))
Thomas Gleixnerd6513282010-11-30 17:49:44 +00001146 file_size = data_offset + data_size;
1147
Arnaldo Carvalho de Melo4d3001f2013-10-23 15:40:38 -03001148 ui_progress__init(&prog, file_size, "Processing events...");
Thomas Gleixner55b44622010-11-30 17:49:46 +00001149
David Miller35d48dd2012-11-10 14:12:19 -05001150 mmap_size = MMAP_SIZE;
Adrian Hunter919d86d2014-07-14 13:02:51 +03001151 if (mmap_size > file_size) {
Thomas Gleixner55b44622010-11-30 17:49:46 +00001152 mmap_size = file_size;
Adrian Hunter919d86d2014-07-14 13:02:51 +03001153 session->one_mmap = true;
1154 }
Thomas Gleixner55b44622010-11-30 17:49:46 +00001155
Thomas Gleixnerfe174202010-11-30 17:49:49 +00001156 memset(mmaps, 0, sizeof(mmaps));
1157
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02001158 mmap_prot = PROT_READ;
1159 mmap_flags = MAP_SHARED;
1160
Thomas Gleixner0331ee02010-11-30 17:49:38 +00001161 if (session->header.needs_swap) {
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02001162 mmap_prot |= PROT_WRITE;
1163 mmap_flags = MAP_PRIVATE;
1164 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001165remap:
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001166 buf = mmap(NULL, mmap_size, mmap_prot, mmap_flags, fd,
Thomas Gleixner55b44622010-11-30 17:49:46 +00001167 file_offset);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001168 if (buf == MAP_FAILED) {
1169 pr_err("failed to mmap file\n");
1170 err = -errno;
1171 goto out_err;
1172 }
Thomas Gleixnerfe174202010-11-30 17:49:49 +00001173 mmaps[map_idx] = buf;
1174 map_idx = (map_idx + 1) & (ARRAY_SIZE(mmaps) - 1);
Thomas Gleixnerd6513282010-11-30 17:49:44 +00001175 file_pos = file_offset + head;
Adrian Hunter919d86d2014-07-14 13:02:51 +03001176 if (session->one_mmap) {
1177 session->one_mmap_addr = buf;
1178 session->one_mmap_offset = file_offset;
1179 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001180
1181more:
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02001182 event = fetch_mmaped_event(session, head, mmap_size, buf);
1183 if (!event) {
Thomas Gleixnerfe174202010-11-30 17:49:49 +00001184 if (mmaps[map_idx]) {
1185 munmap(mmaps[map_idx], mmap_size);
1186 mmaps[map_idx] = NULL;
1187 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001188
Thomas Gleixner0331ee02010-11-30 17:49:38 +00001189 page_offset = page_size * (head / page_size);
1190 file_offset += page_offset;
1191 head -= page_offset;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001192 goto remap;
1193 }
1194
1195 size = event->header.size;
1196
Adrian Hunter27389d72013-07-04 16:20:27 +03001197 if (size < sizeof(struct perf_event_header) ||
Adrian Hunter6f917c72014-07-23 22:19:57 +03001198 (skip = perf_session__process_event(session, event, tool, file_pos))
1199 < 0) {
Jiri Olsa9389a462012-04-16 20:42:51 +02001200 pr_err("%#" PRIx64 " [%#x]: failed to process type: %d\n",
1201 file_offset + head, event->header.size,
1202 event->header.type);
1203 err = -EINVAL;
1204 goto out_err;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001205 }
1206
Adrian Hunter6f917c72014-07-23 22:19:57 +03001207 if (skip)
1208 size += skip;
1209
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001210 head += size;
Thomas Gleixnerd6513282010-11-30 17:49:44 +00001211 file_pos += size;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001212
Arnaldo Carvalho de Melo4d3001f2013-10-23 15:40:38 -03001213 ui_progress__update(&prog, size);
Thomas Gleixner55b44622010-11-30 17:49:46 +00001214
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -03001215 if (session_done())
Adrian Hunter8c16b642013-10-18 15:29:02 +03001216 goto out;
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -03001217
Thomas Gleixnerd6513282010-11-30 17:49:44 +00001218 if (file_pos < file_size)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001219 goto more;
Thomas Gleixnerd6513282010-11-30 17:49:44 +00001220
Adrian Hunter8c16b642013-10-18 15:29:02 +03001221out:
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +02001222 /* do the final flush for ordered samples */
Jiri Olsad8836b52014-06-05 10:29:45 +02001223 err = ordered_events__flush(session, tool, OE_FLUSH__FINAL);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001224out_err:
Namhyung Kima5580f32012-11-13 22:30:34 +09001225 ui_progress__finish();
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001226 perf_session__warn_about_errors(session, tool);
Jiri Olsaadc56ed2014-06-10 22:50:03 +02001227 ordered_events__free(&session->ordered_events);
Adrian Hunter919d86d2014-07-14 13:02:51 +03001228 session->one_mmap = false;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001229 return err;
1230}
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02001231
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001232int perf_session__process_events(struct perf_session *session,
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001233 struct perf_tool *tool)
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02001234{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001235 u64 size = perf_data_file__size(session->file);
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02001236 int err;
1237
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001238 if (perf_session__register_idle_thread(session) == NULL)
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02001239 return -ENOMEM;
1240
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001241 if (!perf_data_file__is_pipe(session->file))
1242 err = __perf_session__process_events(session,
1243 session->header.data_offset,
1244 session->header.data_size,
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001245 size, tool);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001246 else
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001247 err = __perf_session__process_pipe_events(session, tool);
Dave Martin88ca8952010-07-27 11:46:12 -03001248
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02001249 return err;
1250}
1251
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03001252bool perf_session__has_traces(struct perf_session *session, const char *msg)
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02001253{
David Ahern93ea01c2013-08-07 22:50:58 -04001254 struct perf_evsel *evsel;
1255
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001256 evlist__for_each(session->evlist, evsel) {
David Ahern93ea01c2013-08-07 22:50:58 -04001257 if (evsel->attr.type == PERF_TYPE_TRACEPOINT)
1258 return true;
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02001259 }
1260
David Ahern93ea01c2013-08-07 22:50:58 -04001261 pr_err("No trace sample to read. Did you call 'perf %s'?\n", msg);
1262 return false;
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02001263}
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001264
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001265int maps__set_kallsyms_ref_reloc_sym(struct map **maps,
1266 const char *symbol_name, u64 addr)
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001267{
1268 char *bracket;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -02001269 enum map_type i;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001270 struct ref_reloc_sym *ref;
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001271
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001272 ref = zalloc(sizeof(struct ref_reloc_sym));
1273 if (ref == NULL)
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001274 return -ENOMEM;
1275
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001276 ref->name = strdup(symbol_name);
1277 if (ref->name == NULL) {
1278 free(ref);
1279 return -ENOMEM;
1280 }
1281
1282 bracket = strchr(ref->name, ']');
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001283 if (bracket)
1284 *bracket = '\0';
1285
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001286 ref->addr = addr;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -02001287
1288 for (i = 0; i < MAP__NR_TYPES; ++i) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001289 struct kmap *kmap = map__kmap(maps[i]);
1290 kmap->ref_reloc_sym = ref;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -02001291 }
1292
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001293 return 0;
1294}
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -03001295
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001296size_t perf_session__fprintf_dsos(struct perf_session *session, FILE *fp)
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -03001297{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001298 return machines__fprintf_dsos(&session->machines, fp);
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -03001299}
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -03001300
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001301size_t perf_session__fprintf_dsos_buildid(struct perf_session *session, FILE *fp,
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -03001302 bool (skip)(struct dso *dso, int parm), int parm)
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -03001303{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001304 return machines__fprintf_dsos_buildid(&session->machines, fp, skip, parm);
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -03001305}
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03001306
1307size_t perf_session__fprintf_nr_events(struct perf_session *session, FILE *fp)
1308{
1309 struct perf_evsel *pos;
1310 size_t ret = fprintf(fp, "Aggregated stats:\n");
1311
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -03001312 ret += events_stats__fprintf(&session->stats, fp);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03001313
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001314 evlist__for_each(session->evlist, pos) {
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -03001315 ret += fprintf(fp, "%s stats:\n", perf_evsel__name(pos));
Arnaldo Carvalho de Melo52168ee2012-12-18 16:02:17 -03001316 ret += events_stats__fprintf(&pos->hists.stats, fp);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03001317 }
1318
1319 return ret;
1320}
David Ahernc0230b22011-03-09 22:23:27 -07001321
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -02001322size_t perf_session__fprintf(struct perf_session *session, FILE *fp)
1323{
1324 /*
1325 * FIXME: Here we have to actually print all the machines in this
1326 * session, not just the host...
1327 */
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -03001328 return machine__fprintf(&session->machines.host, fp);
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -02001329}
1330
David Ahern9cbdb702011-04-06 21:54:20 -06001331struct perf_evsel *perf_session__find_first_evtype(struct perf_session *session,
1332 unsigned int type)
1333{
1334 struct perf_evsel *pos;
1335
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001336 evlist__for_each(session->evlist, pos) {
David Ahern9cbdb702011-04-06 21:54:20 -06001337 if (pos->attr.type == type)
1338 return pos;
1339 }
1340 return NULL;
1341}
1342
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001343void perf_evsel__print_ip(struct perf_evsel *evsel, struct perf_sample *sample,
Arnaldo Carvalho de Melocc22e572013-12-19 17:20:06 -03001344 struct addr_location *al,
David Ahern307cbb92013-08-07 22:50:53 -04001345 unsigned int print_opts, unsigned int stack_depth)
David Ahernc0230b22011-03-09 22:23:27 -07001346{
David Ahernc0230b22011-03-09 22:23:27 -07001347 struct callchain_cursor_node *node;
David Aherna6ffaf92013-08-07 22:50:51 -04001348 int print_ip = print_opts & PRINT_IP_OPT_IP;
1349 int print_sym = print_opts & PRINT_IP_OPT_SYM;
1350 int print_dso = print_opts & PRINT_IP_OPT_DSO;
1351 int print_symoffset = print_opts & PRINT_IP_OPT_SYMOFFSET;
David Ahernb0b35f02013-08-07 22:50:52 -04001352 int print_oneline = print_opts & PRINT_IP_OPT_ONELINE;
Adrian Huntercc8fae12013-12-06 09:42:57 +02001353 int print_srcline = print_opts & PRINT_IP_OPT_SRCLINE;
David Ahernb0b35f02013-08-07 22:50:52 -04001354 char s = print_oneline ? ' ' : '\t';
David Ahernc0230b22011-03-09 22:23:27 -07001355
David Ahernc0230b22011-03-09 22:23:27 -07001356 if (symbol_conf.use_callchain && sample->callchain) {
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001357 struct addr_location node_al;
David Ahernc0230b22011-03-09 22:23:27 -07001358
Arnaldo Carvalho de Melocc22e572013-12-19 17:20:06 -03001359 if (machine__resolve_callchain(al->machine, evsel, al->thread,
Waiman Long91e95612013-10-18 10:38:48 -04001360 sample, NULL, NULL,
1361 PERF_MAX_STACK_DEPTH) != 0) {
David Ahernc0230b22011-03-09 22:23:27 -07001362 if (verbose)
1363 error("Failed to resolve callchain. Skipping\n");
1364 return;
1365 }
Namhyung Kim47260642012-05-31 14:43:26 +09001366 callchain_cursor_commit(&callchain_cursor);
David Ahernc0230b22011-03-09 22:23:27 -07001367
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001368 if (print_symoffset)
1369 node_al = *al;
1370
David Ahern307cbb92013-08-07 22:50:53 -04001371 while (stack_depth) {
Adrian Huntera4eb24a2013-12-06 09:42:56 +02001372 u64 addr = 0;
1373
Namhyung Kim47260642012-05-31 14:43:26 +09001374 node = callchain_cursor_current(&callchain_cursor);
David Ahernc0230b22011-03-09 22:23:27 -07001375 if (!node)
1376 break;
1377
David Ahernd2ff1b12013-11-18 13:32:44 -07001378 if (node->sym && node->sym->ignore)
1379 goto next;
1380
David Aherna6ffaf92013-08-07 22:50:51 -04001381 if (print_ip)
David Ahernb0b35f02013-08-07 22:50:52 -04001382 printf("%c%16" PRIx64, s, node->ip);
David Aherna6ffaf92013-08-07 22:50:51 -04001383
Adrian Huntera4eb24a2013-12-06 09:42:56 +02001384 if (node->map)
1385 addr = node->map->map_ip(node->map, node->ip);
1386
David Ahern787bef12011-05-27 14:28:43 -06001387 if (print_sym) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001388 printf(" ");
David Ahern251f4262013-07-28 09:14:34 -06001389 if (print_symoffset) {
Adrian Huntera4eb24a2013-12-06 09:42:56 +02001390 node_al.addr = addr;
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001391 node_al.map = node->map;
1392 symbol__fprintf_symname_offs(node->sym, &node_al, stdout);
David Ahern251f4262013-07-28 09:14:34 -06001393 } else
1394 symbol__fprintf_symname(node->sym, stdout);
David Ahern610723f2011-05-27 14:28:44 -06001395 }
David Ahern251f4262013-07-28 09:14:34 -06001396
David Ahern610723f2011-05-27 14:28:44 -06001397 if (print_dso) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001398 printf(" (");
David Ahern52deff72012-05-29 22:58:26 -06001399 map__fprintf_dsoname(node->map, stdout);
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001400 printf(")");
David Ahern787bef12011-05-27 14:28:43 -06001401 }
David Ahernb0b35f02013-08-07 22:50:52 -04001402
Adrian Huntercc8fae12013-12-06 09:42:57 +02001403 if (print_srcline)
1404 map__fprintf_srcline(node->map, addr, "\n ",
1405 stdout);
1406
David Ahernb0b35f02013-08-07 22:50:52 -04001407 if (!print_oneline)
1408 printf("\n");
David Ahernc0230b22011-03-09 22:23:27 -07001409
David Ahern307cbb92013-08-07 22:50:53 -04001410 stack_depth--;
David Ahernd2ff1b12013-11-18 13:32:44 -07001411next:
1412 callchain_cursor_advance(&callchain_cursor);
David Ahernc0230b22011-03-09 22:23:27 -07001413 }
1414
1415 } else {
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001416 if (al->sym && al->sym->ignore)
David Ahernd2ff1b12013-11-18 13:32:44 -07001417 return;
1418
David Aherna6ffaf92013-08-07 22:50:51 -04001419 if (print_ip)
1420 printf("%16" PRIx64, sample->ip);
1421
David Ahern787bef12011-05-27 14:28:43 -06001422 if (print_sym) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001423 printf(" ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001424 if (print_symoffset)
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001425 symbol__fprintf_symname_offs(al->sym, al,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001426 stdout);
1427 else
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001428 symbol__fprintf_symname(al->sym, stdout);
David Ahern610723f2011-05-27 14:28:44 -06001429 }
1430
1431 if (print_dso) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001432 printf(" (");
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001433 map__fprintf_dsoname(al->map, stdout);
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001434 printf(")");
David Ahern787bef12011-05-27 14:28:43 -06001435 }
Adrian Huntercc8fae12013-12-06 09:42:57 +02001436
1437 if (print_srcline)
1438 map__fprintf_srcline(al->map, al->addr, "\n ", stdout);
David Ahernc0230b22011-03-09 22:23:27 -07001439 }
1440}
Anton Blanchard5d67be92011-07-04 21:57:50 +10001441
1442int perf_session__cpu_bitmap(struct perf_session *session,
1443 const char *cpu_list, unsigned long *cpu_bitmap)
1444{
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04001445 int i, err = -1;
Anton Blanchard5d67be92011-07-04 21:57:50 +10001446 struct cpu_map *map;
1447
1448 for (i = 0; i < PERF_TYPE_MAX; ++i) {
1449 struct perf_evsel *evsel;
1450
1451 evsel = perf_session__find_first_evtype(session, i);
1452 if (!evsel)
1453 continue;
1454
1455 if (!(evsel->attr.sample_type & PERF_SAMPLE_CPU)) {
1456 pr_err("File does not contain CPU events. "
1457 "Remove -c option to proceed.\n");
1458 return -1;
1459 }
1460 }
1461
1462 map = cpu_map__new(cpu_list);
David Ahern47fbe532011-11-13 10:45:27 -07001463 if (map == NULL) {
1464 pr_err("Invalid cpu_list\n");
1465 return -1;
1466 }
Anton Blanchard5d67be92011-07-04 21:57:50 +10001467
1468 for (i = 0; i < map->nr; i++) {
1469 int cpu = map->map[i];
1470
1471 if (cpu >= MAX_NR_CPUS) {
1472 pr_err("Requested CPU %d too large. "
1473 "Consider raising MAX_NR_CPUS\n", cpu);
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04001474 goto out_delete_map;
Anton Blanchard5d67be92011-07-04 21:57:50 +10001475 }
1476
1477 set_bit(cpu, cpu_bitmap);
1478 }
1479
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04001480 err = 0;
1481
1482out_delete_map:
1483 cpu_map__delete(map);
1484 return err;
Anton Blanchard5d67be92011-07-04 21:57:50 +10001485}
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001486
1487void perf_session__fprintf_info(struct perf_session *session, FILE *fp,
1488 bool full)
1489{
1490 struct stat st;
Masanari Iidac5765ec2014-05-15 02:13:38 +09001491 int fd, ret;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001492
1493 if (session == NULL || fp == NULL)
1494 return;
1495
Masanari Iidac5765ec2014-05-15 02:13:38 +09001496 fd = perf_data_file__fd(session->file);
1497
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001498 ret = fstat(fd, &st);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001499 if (ret == -1)
1500 return;
1501
1502 fprintf(fp, "# ========\n");
1503 fprintf(fp, "# captured on: %s", ctime(&st.st_ctime));
1504 perf_header__fprintf_info(session, fp, full);
1505 fprintf(fp, "# ========\n#\n");
1506}
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001507
1508
1509int __perf_session__set_tracepoints_handlers(struct perf_session *session,
1510 const struct perf_evsel_str_handler *assocs,
1511 size_t nr_assocs)
1512{
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001513 struct perf_evsel *evsel;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001514 size_t i;
1515 int err;
1516
1517 for (i = 0; i < nr_assocs; i++) {
Arnaldo Carvalho de Meloccf53ea2013-09-06 15:19:01 -03001518 /*
1519 * Adding a handler for an event not in the session,
1520 * just ignore it.
1521 */
1522 evsel = perf_evlist__find_tracepoint_by_name(session->evlist, assocs[i].name);
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001523 if (evsel == NULL)
Arnaldo Carvalho de Meloccf53ea2013-09-06 15:19:01 -03001524 continue;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001525
1526 err = -EEXIST;
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -03001527 if (evsel->handler != NULL)
Arnaldo Carvalho de Meloccf53ea2013-09-06 15:19:01 -03001528 goto out;
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -03001529 evsel->handler = assocs[i].handler;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001530 }
1531
1532 err = 0;
1533out:
1534 return err;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001535}