blob: 462be274946229361243407f3712341e2b2b9838 [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 Olsacee3ab92014-07-11 14:49:54 +0200502 if (timestamp < oe->last_flush) {
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200503 printf("Warning: Timestamp below last timeslice flush\n");
Jiri Olsacee3ab92014-07-11 14:49:54 +0200504 pr_oe_time(timestamp, "out of order event");
505 pr_oe_time(oe->last_flush, "last flush");
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200506 return -EINVAL;
507 }
508
Jiri Olsac64c7e12014-06-10 21:58:02 +0200509 new = ordered_events__new(oe, timestamp);
Jiri Olsad40b4a12014-08-01 13:01:04 -0300510 if (!new) {
511 ordered_events__flush(s, tool, OE_FLUSH__HALF);
512 new = ordered_events__new(oe, timestamp);
513 }
514
Jiri Olsac64c7e12014-06-10 21:58:02 +0200515 if (!new)
516 return -ENOMEM;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200517
Thomas Gleixnere4c2df12010-12-07 12:48:50 +0000518 new->file_offset = file_offset;
Thomas Gleixnerfe174202010-11-30 17:49:49 +0000519 new->event = event;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200520 return 0;
521}
522
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200523static void callchain__printf(struct perf_sample *sample)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200524{
525 unsigned int i;
526
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200527 printf("... chain: nr:%" PRIu64 "\n", sample->callchain->nr);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200528
529 for (i = 0; i < sample->callchain->nr; i++)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200530 printf("..... %2d: %016" PRIx64 "\n",
531 i, sample->callchain->ips[i]);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200532}
533
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100534static void branch_stack__printf(struct perf_sample *sample)
535{
536 uint64_t i;
537
538 printf("... branch stack: nr:%" PRIu64 "\n", sample->branch_stack->nr);
539
540 for (i = 0; i < sample->branch_stack->nr; i++)
541 printf("..... %2"PRIu64": %016" PRIx64 " -> %016" PRIx64 "\n",
542 i, sample->branch_stack->entries[i].from,
543 sample->branch_stack->entries[i].to);
544}
545
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200546static void regs_dump__printf(u64 mask, u64 *regs)
547{
548 unsigned rid, i = 0;
549
550 for_each_set_bit(rid, (unsigned long *) &mask, sizeof(mask) * 8) {
551 u64 val = regs[i++];
552
553 printf(".... %-5s 0x%" PRIx64 "\n",
554 perf_reg_name(rid), val);
555 }
556}
557
Jiri Olsa352ea452014-01-07 13:47:25 +0100558static void regs_user__printf(struct perf_sample *sample)
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200559{
560 struct regs_dump *user_regs = &sample->user_regs;
561
562 if (user_regs->regs) {
Jiri Olsa352ea452014-01-07 13:47:25 +0100563 u64 mask = user_regs->mask;
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200564 printf("... user regs: mask 0x%" PRIx64 "\n", mask);
565 regs_dump__printf(mask, user_regs->regs);
566 }
567}
568
569static void stack_user__printf(struct stack_dump *dump)
570{
571 printf("... ustack: size %" PRIu64 ", offset 0x%x\n",
572 dump->size, dump->offset);
573}
574
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200575static void perf_session__print_tstamp(struct perf_session *session,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200576 union perf_event *event,
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200577 struct perf_sample *sample)
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200578{
Adrian Hunter75562572013-08-27 11:23:09 +0300579 u64 sample_type = __perf_evlist__combined_sample_type(session->evlist);
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300580
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200581 if (event->header.type != PERF_RECORD_SAMPLE &&
Arnaldo Carvalho de Melo5e562472012-08-01 19:25:26 -0300582 !perf_evlist__sample_id_all(session->evlist)) {
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200583 fputs("-1 -1 ", stdout);
584 return;
585 }
586
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300587 if ((sample_type & PERF_SAMPLE_CPU))
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200588 printf("%u ", sample->cpu);
589
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300590 if (sample_type & PERF_SAMPLE_TIME)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200591 printf("%" PRIu64 " ", sample->time);
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200592}
593
Jiri Olsa9ede4732012-10-10 17:38:13 +0200594static void sample_read__printf(struct perf_sample *sample, u64 read_format)
595{
596 printf("... sample_read:\n");
597
598 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
599 printf("...... time enabled %016" PRIx64 "\n",
600 sample->read.time_enabled);
601
602 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
603 printf("...... time running %016" PRIx64 "\n",
604 sample->read.time_running);
605
606 if (read_format & PERF_FORMAT_GROUP) {
607 u64 i;
608
609 printf(".... group nr %" PRIu64 "\n", sample->read.group.nr);
610
611 for (i = 0; i < sample->read.group.nr; i++) {
612 struct sample_read_value *value;
613
614 value = &sample->read.group.values[i];
615 printf("..... id %016" PRIx64
616 ", value %016" PRIx64 "\n",
617 value->id, value->value);
618 }
619 } else
620 printf("..... id %016" PRIx64 ", value %016" PRIx64 "\n",
621 sample->read.one.id, sample->read.one.value);
622}
623
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200624static void dump_event(struct perf_session *session, union perf_event *event,
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200625 u64 file_offset, struct perf_sample *sample)
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000626{
627 if (!dump_trace)
628 return;
629
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200630 printf("\n%#" PRIx64 " [%#x]: event: %d\n",
631 file_offset, event->header.size, event->header.type);
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000632
633 trace_event(event);
634
635 if (sample)
636 perf_session__print_tstamp(session, event, sample);
637
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200638 printf("%#" PRIx64 " [%#x]: PERF_RECORD_%s", file_offset,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200639 event->header.size, perf_event__name(event->header.type));
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000640}
641
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200642static void dump_sample(struct perf_evsel *evsel, union perf_event *event,
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200643 struct perf_sample *sample)
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000644{
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300645 u64 sample_type;
646
Arnaldo Carvalho de Meloddbc24b72010-12-09 12:20:20 -0200647 if (!dump_trace)
648 return;
649
Don Zickus0ea590a2014-02-25 22:43:46 -0500650 printf("(IP, 0x%x): %d/%d: %#" PRIx64 " period: %" PRIu64 " addr: %#" PRIx64 "\n",
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200651 event->header.misc, sample->pid, sample->tid, sample->ip,
David Ahern7cec0922011-05-30 13:08:23 -0600652 sample->period, sample->addr);
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000653
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200654 sample_type = evsel->attr.sample_type;
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300655
656 if (sample_type & PERF_SAMPLE_CALLCHAIN)
Arnaldo Carvalho de Meloddbc24b72010-12-09 12:20:20 -0200657 callchain__printf(sample);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100658
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300659 if (sample_type & PERF_SAMPLE_BRANCH_STACK)
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100660 branch_stack__printf(sample);
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200661
662 if (sample_type & PERF_SAMPLE_REGS_USER)
Jiri Olsa352ea452014-01-07 13:47:25 +0100663 regs_user__printf(sample);
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200664
665 if (sample_type & PERF_SAMPLE_STACK_USER)
666 stack_user__printf(&sample->user_stack);
Andi Kleen05484292013-01-24 16:10:29 +0100667
668 if (sample_type & PERF_SAMPLE_WEIGHT)
669 printf("... weight: %" PRIu64 "\n", sample->weight);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100670
671 if (sample_type & PERF_SAMPLE_DATA_SRC)
672 printf(" . data_src: 0x%"PRIx64"\n", sample->data_src);
Jiri Olsa9ede4732012-10-10 17:38:13 +0200673
Andi Kleen475eeab2013-09-20 07:40:43 -0700674 if (sample_type & PERF_SAMPLE_TRANSACTION)
675 printf("... transaction: %" PRIx64 "\n", sample->transaction);
676
Jiri Olsa9ede4732012-10-10 17:38:13 +0200677 if (sample_type & PERF_SAMPLE_READ)
678 sample_read__printf(sample, evsel->attr.read_format);
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000679}
680
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200681static struct machine *
682 perf_session__find_machine_for_cpumode(struct perf_session *session,
Adrian Hunteref893252013-08-27 11:23:06 +0300683 union perf_event *event,
684 struct perf_sample *sample)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200685{
686 const u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Dongsheng Yangad85ace2013-12-20 13:41:47 -0500687 struct machine *machine;
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200688
David Ahern7c0f4a42012-07-20 17:25:48 -0600689 if (perf_guest &&
690 ((cpumode == PERF_RECORD_MISC_GUEST_KERNEL) ||
691 (cpumode == PERF_RECORD_MISC_GUEST_USER))) {
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +0530692 u32 pid;
693
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200694 if (event->header.type == PERF_RECORD_MMAP
695 || event->header.type == PERF_RECORD_MMAP2)
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +0530696 pid = event->mmap.pid;
697 else
Adrian Hunteref893252013-08-27 11:23:06 +0300698 pid = sample->pid;
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +0530699
Dongsheng Yangad85ace2013-12-20 13:41:47 -0500700 machine = perf_session__find_machine(session, pid);
701 if (!machine)
702 machine = perf_session__findnew_machine(session,
703 DEFAULT_GUEST_KERNEL_ID);
704 return machine;
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +0530705 }
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200706
Arnaldo Carvalho de Melo34ba5122012-12-19 09:04:24 -0300707 return &session->machines.host;
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200708}
709
Jiri Olsae4caec02012-10-10 18:52:24 +0200710static int deliver_sample_value(struct perf_session *session,
711 struct perf_tool *tool,
712 union perf_event *event,
713 struct perf_sample *sample,
714 struct sample_read_value *v,
715 struct machine *machine)
716{
717 struct perf_sample_id *sid;
718
719 sid = perf_evlist__id2sid(session->evlist, v->id);
720 if (sid) {
721 sample->id = v->id;
722 sample->period = v->value - sid->period;
723 sid->period = v->value;
724 }
725
726 if (!sid || sid->evsel == NULL) {
727 ++session->stats.nr_unknown_id;
728 return 0;
729 }
730
731 return tool->sample(tool, event, sample, sid->evsel, machine);
732}
733
734static int deliver_sample_group(struct perf_session *session,
735 struct perf_tool *tool,
736 union perf_event *event,
737 struct perf_sample *sample,
738 struct machine *machine)
739{
740 int ret = -EINVAL;
741 u64 i;
742
743 for (i = 0; i < sample->read.group.nr; i++) {
744 ret = deliver_sample_value(session, tool, event, sample,
745 &sample->read.group.values[i],
746 machine);
747 if (ret)
748 break;
749 }
750
751 return ret;
752}
753
754static int
755perf_session__deliver_sample(struct perf_session *session,
756 struct perf_tool *tool,
757 union perf_event *event,
758 struct perf_sample *sample,
759 struct perf_evsel *evsel,
760 struct machine *machine)
761{
762 /* We know evsel != NULL. */
763 u64 sample_type = evsel->attr.sample_type;
764 u64 read_format = evsel->attr.read_format;
765
766 /* Standard sample delievery. */
767 if (!(sample_type & PERF_SAMPLE_READ))
768 return tool->sample(tool, event, sample, evsel, machine);
769
770 /* For PERF_SAMPLE_READ we have either single or group mode. */
771 if (read_format & PERF_FORMAT_GROUP)
772 return deliver_sample_group(session, tool, event, sample,
773 machine);
774 else
775 return deliver_sample_value(session, tool, event, sample,
776 &sample->read.one, machine);
777}
778
Jiri Olsa79a30fe2014-06-10 22:31:35 +0200779int perf_session__deliver_event(struct perf_session *session,
780 union perf_event *event,
781 struct perf_sample *sample,
782 struct perf_tool *tool, u64 file_offset)
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100783{
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300784 struct perf_evsel *evsel;
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200785 struct machine *machine;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300786
Thomas Gleixner532e7262010-12-07 12:48:55 +0000787 dump_event(session, event, file_offset, sample);
788
Arnaldo Carvalho de Melo7b275092011-10-29 12:15:04 -0200789 evsel = perf_evlist__id2evsel(session->evlist, sample->id);
790 if (evsel != NULL && event->header.type != PERF_RECORD_SAMPLE) {
791 /*
792 * XXX We're leaving PERF_RECORD_SAMPLE unnacounted here
793 * because the tools right now may apply filters, discarding
794 * some of the samples. For consistency, in the future we
795 * should have something like nr_filtered_samples and remove
796 * the sample->period from total_sample_period, etc, KISS for
797 * now tho.
798 *
799 * Also testing against NULL allows us to handle files without
800 * attr.sample_id_all and/or without PERF_SAMPLE_ID. In the
801 * future probably it'll be a good idea to restrict event
802 * processing via perf_session to files with both set.
803 */
804 hists__inc_nr_events(&evsel->hists, event->header.type);
805 }
806
Adrian Hunteref893252013-08-27 11:23:06 +0300807 machine = perf_session__find_machine_for_cpumode(session, event,
808 sample);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200809
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100810 switch (event->header.type) {
811 case PERF_RECORD_SAMPLE:
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200812 dump_sample(evsel, event, sample);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300813 if (evsel == NULL) {
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300814 ++session->stats.nr_unknown_id;
Jiri Olsa67822062012-04-12 14:21:01 +0200815 return 0;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300816 }
Joerg Roedel0c095712012-02-10 18:05:04 +0100817 if (machine == NULL) {
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300818 ++session->stats.nr_unprocessable_samples;
Jiri Olsa67822062012-04-12 14:21:01 +0200819 return 0;
Joerg Roedel0c095712012-02-10 18:05:04 +0100820 }
Jiri Olsae4caec02012-10-10 18:52:24 +0200821 return perf_session__deliver_sample(session, tool, event,
822 sample, evsel, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100823 case PERF_RECORD_MMAP:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200824 return tool->mmap(tool, event, sample, machine);
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200825 case PERF_RECORD_MMAP2:
826 return tool->mmap2(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100827 case PERF_RECORD_COMM:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200828 return tool->comm(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100829 case PERF_RECORD_FORK:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200830 return tool->fork(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100831 case PERF_RECORD_EXIT:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200832 return tool->exit(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100833 case PERF_RECORD_LOST:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200834 if (tool->lost == perf_event__process_lost)
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300835 session->stats.total_lost += event->lost.lost;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200836 return tool->lost(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100837 case PERF_RECORD_READ:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200838 return tool->read(tool, event, sample, evsel, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100839 case PERF_RECORD_THROTTLE:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200840 return tool->throttle(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100841 case PERF_RECORD_UNTHROTTLE:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200842 return tool->unthrottle(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100843 default:
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300844 ++session->stats.nr_unknown_events;
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100845 return -1;
846 }
847}
848
Adrian Hunterd5652d82014-07-23 22:19:58 +0300849static s64 perf_session__process_user_event(struct perf_session *session,
850 union perf_event *event,
851 struct perf_tool *tool,
852 u64 file_offset)
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000853{
Jiri Olsacc9784bd2013-10-15 16:27:34 +0200854 int fd = perf_data_file__fd(session->file);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200855 int err;
856
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000857 dump_event(session, event, file_offset, NULL);
858
859 /* These events are processed right away */
860 switch (event->header.type) {
861 case PERF_RECORD_HEADER_ATTR:
Adrian Hunter47c3d102013-07-04 16:20:21 +0300862 err = tool->attr(tool, event, &session->evlist);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200863 if (err == 0)
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -0300864 perf_session__set_id_hdr_size(session);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200865 return err;
Jiri Olsaf67697b2014-02-04 15:37:48 +0100866 case PERF_RECORD_HEADER_EVENT_TYPE:
867 /*
868 * Depreceated, but we need to handle it for sake
869 * of old data files create in pipe mode.
870 */
871 return 0;
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000872 case PERF_RECORD_HEADER_TRACING_DATA:
873 /* setup for reading amidst mmap */
Jiri Olsacc9784bd2013-10-15 16:27:34 +0200874 lseek(fd, file_offset, SEEK_SET);
Adrian Hunter47c3d102013-07-04 16:20:21 +0300875 return tool->tracing_data(tool, event, session);
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000876 case PERF_RECORD_HEADER_BUILD_ID:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200877 return tool->build_id(tool, event, session);
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000878 case PERF_RECORD_FINISHED_ROUND:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200879 return tool->finished_round(tool, event, session);
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000880 default:
881 return -EINVAL;
882 }
883}
884
Jiri Olsa268fb202012-05-30 14:23:43 +0200885static void event_swap(union perf_event *event, bool sample_id_all)
886{
887 perf_event__swap_op swap;
888
889 swap = perf_event__swap_ops[event->header.type];
890 if (swap)
891 swap(event, sample_id_all);
892}
893
Adrian Hunterd5652d82014-07-23 22:19:58 +0300894static s64 perf_session__process_event(struct perf_session *session,
David Aherne30b88a2013-08-05 21:41:33 -0400895 union perf_event *event,
896 struct perf_tool *tool,
897 u64 file_offset)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200898{
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200899 struct perf_sample sample;
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100900 int ret;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200901
Jiri Olsa268fb202012-05-30 14:23:43 +0200902 if (session->header.needs_swap)
Arnaldo Carvalho de Melo5e562472012-08-01 19:25:26 -0300903 event_swap(event, perf_evlist__sample_id_all(session->evlist));
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200904
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000905 if (event->header.type >= PERF_RECORD_HEADER_MAX)
906 return -EINVAL;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200907
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300908 events_stats__inc(&session->stats, event->header.type);
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000909
910 if (event->header.type >= PERF_RECORD_USER_TYPE_START)
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200911 return perf_session__process_user_event(session, event, tool, file_offset);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100912
Thomas Gleixner3dfc2c02010-12-07 12:48:58 +0000913 /*
914 * For all kernel events we get the sample data
915 */
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -0300916 ret = perf_evlist__parse_sample(session->evlist, event, &sample);
Frederic Weisbecker5538bec2011-05-22 02:17:22 +0200917 if (ret)
918 return ret;
Thomas Gleixner3dfc2c02010-12-07 12:48:58 +0000919
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200920 if (tool->ordered_events) {
Jiri Olsad40b4a12014-08-01 13:01:04 -0300921 ret = perf_session_queue_event(session, event, tool, &sample,
Thomas Gleixnere4c2df12010-12-07 12:48:50 +0000922 file_offset);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100923 if (ret != -ETIME)
924 return ret;
925 }
926
Jiri Olsa79a30fe2014-06-10 22:31:35 +0200927 return perf_session__deliver_event(session, event, &sample, tool,
928 file_offset);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200929}
930
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300931void perf_event_header__bswap(struct perf_event_header *hdr)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200932{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300933 hdr->type = bswap_32(hdr->type);
934 hdr->misc = bswap_16(hdr->misc);
935 hdr->size = bswap_16(hdr->size);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200936}
937
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200938struct thread *perf_session__findnew(struct perf_session *session, pid_t pid)
939{
Adrian Hunter1fcb8762014-07-14 13:02:25 +0300940 return machine__findnew_thread(&session->machines.host, -1, pid);
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200941}
942
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300943static struct thread *perf_session__register_idle_thread(struct perf_session *session)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200944{
Adrian Hunter1fcb8762014-07-14 13:02:25 +0300945 struct thread *thread;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200946
Adrian Hunter1fcb8762014-07-14 13:02:25 +0300947 thread = machine__findnew_thread(&session->machines.host, 0, 0);
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200948 if (thread == NULL || thread__set_comm(thread, "swapper", 0)) {
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200949 pr_err("problem inserting idle task.\n");
950 thread = NULL;
951 }
952
953 return thread;
954}
955
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200956static void perf_session__warn_about_errors(const struct perf_session *session,
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200957 const struct perf_tool *tool)
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200958{
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200959 if (tool->lost == perf_event__process_lost &&
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300960 session->stats.nr_events[PERF_RECORD_LOST] != 0) {
Arnaldo Carvalho de Melo7b275092011-10-29 12:15:04 -0200961 ui__warning("Processed %d events and lost %d chunks!\n\n"
962 "Check IO/CPU overload!\n\n",
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300963 session->stats.nr_events[0],
964 session->stats.nr_events[PERF_RECORD_LOST]);
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200965 }
966
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300967 if (session->stats.nr_unknown_events != 0) {
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200968 ui__warning("Found %u unknown events!\n\n"
969 "Is this an older tool processing a perf.data "
970 "file generated by a more recent tool?\n\n"
971 "If that is not the case, consider "
972 "reporting to linux-kernel@vger.kernel.org.\n\n",
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300973 session->stats.nr_unknown_events);
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200974 }
975
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300976 if (session->stats.nr_unknown_id != 0) {
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300977 ui__warning("%u samples with id not present in the header\n",
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300978 session->stats.nr_unknown_id);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300979 }
980
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300981 if (session->stats.nr_invalid_chains != 0) {
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200982 ui__warning("Found invalid callchains!\n\n"
983 "%u out of %u events were discarded for this reason.\n\n"
984 "Consider reporting to linux-kernel@vger.kernel.org.\n\n",
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300985 session->stats.nr_invalid_chains,
986 session->stats.nr_events[PERF_RECORD_SAMPLE]);
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200987 }
Joerg Roedel0c095712012-02-10 18:05:04 +0100988
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300989 if (session->stats.nr_unprocessable_samples != 0) {
Joerg Roedel0c095712012-02-10 18:05:04 +0100990 ui__warning("%u unprocessable samples recorded.\n"
991 "Do you have a KVM guest running and not using 'perf kvm'?\n",
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300992 session->stats.nr_unprocessable_samples);
Joerg Roedel0c095712012-02-10 18:05:04 +0100993 }
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200994}
995
Tom Zanussi8dc58102010-04-01 23:59:15 -0500996volatile int session_done;
997
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300998static int __perf_session__process_pipe_events(struct perf_session *session,
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200999 struct perf_tool *tool)
Tom Zanussi8dc58102010-04-01 23:59:15 -05001000{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001001 int fd = perf_data_file__fd(session->file);
Stephane Eranian444d2862012-05-15 13:28:12 +02001002 union perf_event *event;
1003 uint32_t size, cur_size = 0;
1004 void *buf = NULL;
Adrian Hunterd5652d82014-07-23 22:19:58 +03001005 s64 skip = 0;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001006 u64 head;
Jiri Olsa727ebd52013-11-28 11:30:14 +01001007 ssize_t err;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001008 void *p;
1009
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001010 perf_tool__fill_defaults(tool);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001011
1012 head = 0;
Stephane Eranian444d2862012-05-15 13:28:12 +02001013 cur_size = sizeof(union perf_event);
1014
1015 buf = malloc(cur_size);
1016 if (!buf)
1017 return -errno;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001018more:
Stephane Eranian444d2862012-05-15 13:28:12 +02001019 event = buf;
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001020 err = readn(fd, event, sizeof(struct perf_event_header));
Tom Zanussi8dc58102010-04-01 23:59:15 -05001021 if (err <= 0) {
1022 if (err == 0)
1023 goto done;
1024
1025 pr_err("failed to read event header\n");
1026 goto out_err;
1027 }
1028
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001029 if (session->header.needs_swap)
Stephane Eranian444d2862012-05-15 13:28:12 +02001030 perf_event_header__bswap(&event->header);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001031
Stephane Eranian444d2862012-05-15 13:28:12 +02001032 size = event->header.size;
Adrian Hunter27389d72013-07-04 16:20:27 +03001033 if (size < sizeof(struct perf_event_header)) {
1034 pr_err("bad event header size\n");
1035 goto out_err;
1036 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05001037
Stephane Eranian444d2862012-05-15 13:28:12 +02001038 if (size > cur_size) {
1039 void *new = realloc(buf, size);
1040 if (!new) {
1041 pr_err("failed to allocate memory to read event\n");
1042 goto out_err;
1043 }
1044 buf = new;
1045 cur_size = size;
1046 event = buf;
1047 }
1048 p = event;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001049 p += sizeof(struct perf_event_header);
1050
Tom Zanussi794e43b2010-05-05 00:27:40 -05001051 if (size - sizeof(struct perf_event_header)) {
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001052 err = readn(fd, p, size - sizeof(struct perf_event_header));
Tom Zanussi794e43b2010-05-05 00:27:40 -05001053 if (err <= 0) {
1054 if (err == 0) {
1055 pr_err("unexpected end of event stream\n");
1056 goto done;
1057 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05001058
Tom Zanussi794e43b2010-05-05 00:27:40 -05001059 pr_err("failed to read event data\n");
1060 goto out_err;
1061 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05001062 }
1063
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001064 if ((skip = perf_session__process_event(session, event, tool, head)) < 0) {
Jiri Olsa9389a462012-04-16 20:42:51 +02001065 pr_err("%#" PRIx64 " [%#x]: failed to process type: %d\n",
Stephane Eranian444d2862012-05-15 13:28:12 +02001066 head, event->header.size, event->header.type);
Jiri Olsa9389a462012-04-16 20:42:51 +02001067 err = -EINVAL;
1068 goto out_err;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001069 }
1070
1071 head += size;
1072
Tom Zanussi8dc58102010-04-01 23:59:15 -05001073 if (skip > 0)
1074 head += skip;
1075
1076 if (!session_done())
1077 goto more;
1078done:
Adrian Hunter8c16b642013-10-18 15:29:02 +03001079 /* do the final flush for ordered samples */
Jiri Olsad8836b52014-06-05 10:29:45 +02001080 err = ordered_events__flush(session, tool, OE_FLUSH__FINAL);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001081out_err:
Stephane Eranian444d2862012-05-15 13:28:12 +02001082 free(buf);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001083 perf_session__warn_about_errors(session, tool);
Jiri Olsaadc56ed2014-06-10 22:50:03 +02001084 ordered_events__free(&session->ordered_events);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001085 return err;
1086}
1087
Frederic Weisbecker998bedc82011-05-23 13:06:28 +02001088static union perf_event *
1089fetch_mmaped_event(struct perf_session *session,
1090 u64 head, size_t mmap_size, char *buf)
1091{
1092 union perf_event *event;
1093
1094 /*
1095 * Ensure we have enough space remaining to read
1096 * the size of the event in the headers.
1097 */
1098 if (head + sizeof(event->header) > mmap_size)
1099 return NULL;
1100
1101 event = (union perf_event *)(buf + head);
1102
1103 if (session->header.needs_swap)
1104 perf_event_header__bswap(&event->header);
1105
Adrian Hunter27389d72013-07-04 16:20:27 +03001106 if (head + event->header.size > mmap_size) {
1107 /* We're not fetching the event so swap back again */
1108 if (session->header.needs_swap)
1109 perf_event_header__bswap(&event->header);
Frederic Weisbecker998bedc82011-05-23 13:06:28 +02001110 return NULL;
Adrian Hunter27389d72013-07-04 16:20:27 +03001111 }
Frederic Weisbecker998bedc82011-05-23 13:06:28 +02001112
1113 return event;
1114}
1115
David Miller35d48dd2012-11-10 14:12:19 -05001116/*
1117 * On 64bit we can mmap the data file in one go. No need for tiny mmap
1118 * slices. On 32bit we use 32MB.
1119 */
1120#if BITS_PER_LONG == 64
1121#define MMAP_SIZE ULLONG_MAX
1122#define NUM_MMAPS 1
1123#else
1124#define MMAP_SIZE (32 * 1024 * 1024ULL)
1125#define NUM_MMAPS 128
1126#endif
1127
Thomas Gleixner0331ee02010-11-30 17:49:38 +00001128int __perf_session__process_events(struct perf_session *session,
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02001129 u64 data_offset, u64 data_size,
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001130 u64 file_size, struct perf_tool *tool)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001131{
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001132 int fd = perf_data_file__fd(session->file);
Adrian Hunterd5652d82014-07-23 22:19:58 +03001133 u64 head, page_offset, file_offset, file_pos, size;
Thomas Gleixnerfe174202010-11-30 17:49:49 +00001134 int err, mmap_prot, mmap_flags, map_idx = 0;
Arnaldo Carvalho de Melo0c1fe6b2012-10-06 14:57:10 -03001135 size_t mmap_size;
David Miller35d48dd2012-11-10 14:12:19 -05001136 char *buf, *mmaps[NUM_MMAPS];
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02001137 union perf_event *event;
Arnaldo Carvalho de Melo4d3001f2013-10-23 15:40:38 -03001138 struct ui_progress prog;
Adrian Hunterd5652d82014-07-23 22:19:58 +03001139 s64 skip;
Thomas Gleixner0331ee02010-11-30 17:49:38 +00001140
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001141 perf_tool__fill_defaults(tool);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001142
Thomas Gleixner0331ee02010-11-30 17:49:38 +00001143 page_offset = page_size * (data_offset / page_size);
1144 file_offset = page_offset;
1145 head = data_offset - page_offset;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001146
Namhyung Kimb314e5c2013-09-30 17:19:48 +09001147 if (data_size && (data_offset + data_size < file_size))
Thomas Gleixnerd6513282010-11-30 17:49:44 +00001148 file_size = data_offset + data_size;
1149
Arnaldo Carvalho de Melo4d3001f2013-10-23 15:40:38 -03001150 ui_progress__init(&prog, file_size, "Processing events...");
Thomas Gleixner55b44622010-11-30 17:49:46 +00001151
David Miller35d48dd2012-11-10 14:12:19 -05001152 mmap_size = MMAP_SIZE;
Adrian Hunter919d86d2014-07-14 13:02:51 +03001153 if (mmap_size > file_size) {
Thomas Gleixner55b44622010-11-30 17:49:46 +00001154 mmap_size = file_size;
Adrian Hunter919d86d2014-07-14 13:02:51 +03001155 session->one_mmap = true;
1156 }
Thomas Gleixner55b44622010-11-30 17:49:46 +00001157
Thomas Gleixnerfe174202010-11-30 17:49:49 +00001158 memset(mmaps, 0, sizeof(mmaps));
1159
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02001160 mmap_prot = PROT_READ;
1161 mmap_flags = MAP_SHARED;
1162
Thomas Gleixner0331ee02010-11-30 17:49:38 +00001163 if (session->header.needs_swap) {
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02001164 mmap_prot |= PROT_WRITE;
1165 mmap_flags = MAP_PRIVATE;
1166 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001167remap:
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001168 buf = mmap(NULL, mmap_size, mmap_prot, mmap_flags, fd,
Thomas Gleixner55b44622010-11-30 17:49:46 +00001169 file_offset);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001170 if (buf == MAP_FAILED) {
1171 pr_err("failed to mmap file\n");
1172 err = -errno;
1173 goto out_err;
1174 }
Thomas Gleixnerfe174202010-11-30 17:49:49 +00001175 mmaps[map_idx] = buf;
1176 map_idx = (map_idx + 1) & (ARRAY_SIZE(mmaps) - 1);
Thomas Gleixnerd6513282010-11-30 17:49:44 +00001177 file_pos = file_offset + head;
Adrian Hunter919d86d2014-07-14 13:02:51 +03001178 if (session->one_mmap) {
1179 session->one_mmap_addr = buf;
1180 session->one_mmap_offset = file_offset;
1181 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001182
1183more:
Frederic Weisbecker998bedc82011-05-23 13:06:28 +02001184 event = fetch_mmaped_event(session, head, mmap_size, buf);
1185 if (!event) {
Thomas Gleixnerfe174202010-11-30 17:49:49 +00001186 if (mmaps[map_idx]) {
1187 munmap(mmaps[map_idx], mmap_size);
1188 mmaps[map_idx] = NULL;
1189 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001190
Thomas Gleixner0331ee02010-11-30 17:49:38 +00001191 page_offset = page_size * (head / page_size);
1192 file_offset += page_offset;
1193 head -= page_offset;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001194 goto remap;
1195 }
1196
1197 size = event->header.size;
1198
Adrian Hunter27389d72013-07-04 16:20:27 +03001199 if (size < sizeof(struct perf_event_header) ||
Adrian Hunter6f917c72014-07-23 22:19:57 +03001200 (skip = perf_session__process_event(session, event, tool, file_pos))
1201 < 0) {
Jiri Olsa9389a462012-04-16 20:42:51 +02001202 pr_err("%#" PRIx64 " [%#x]: failed to process type: %d\n",
1203 file_offset + head, event->header.size,
1204 event->header.type);
1205 err = -EINVAL;
1206 goto out_err;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001207 }
1208
Adrian Hunter6f917c72014-07-23 22:19:57 +03001209 if (skip)
1210 size += skip;
1211
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001212 head += size;
Thomas Gleixnerd6513282010-11-30 17:49:44 +00001213 file_pos += size;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001214
Arnaldo Carvalho de Melo4d3001f2013-10-23 15:40:38 -03001215 ui_progress__update(&prog, size);
Thomas Gleixner55b44622010-11-30 17:49:46 +00001216
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -03001217 if (session_done())
Adrian Hunter8c16b642013-10-18 15:29:02 +03001218 goto out;
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -03001219
Thomas Gleixnerd6513282010-11-30 17:49:44 +00001220 if (file_pos < file_size)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001221 goto more;
Thomas Gleixnerd6513282010-11-30 17:49:44 +00001222
Adrian Hunter8c16b642013-10-18 15:29:02 +03001223out:
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +02001224 /* do the final flush for ordered samples */
Jiri Olsad8836b52014-06-05 10:29:45 +02001225 err = ordered_events__flush(session, tool, OE_FLUSH__FINAL);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001226out_err:
Namhyung Kima5580f32012-11-13 22:30:34 +09001227 ui_progress__finish();
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001228 perf_session__warn_about_errors(session, tool);
Jiri Olsaadc56ed2014-06-10 22:50:03 +02001229 ordered_events__free(&session->ordered_events);
Adrian Hunter919d86d2014-07-14 13:02:51 +03001230 session->one_mmap = false;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001231 return err;
1232}
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02001233
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001234int perf_session__process_events(struct perf_session *session,
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001235 struct perf_tool *tool)
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02001236{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001237 u64 size = perf_data_file__size(session->file);
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02001238 int err;
1239
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001240 if (perf_session__register_idle_thread(session) == NULL)
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02001241 return -ENOMEM;
1242
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001243 if (!perf_data_file__is_pipe(session->file))
1244 err = __perf_session__process_events(session,
1245 session->header.data_offset,
1246 session->header.data_size,
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001247 size, tool);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001248 else
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001249 err = __perf_session__process_pipe_events(session, tool);
Dave Martin88ca8952010-07-27 11:46:12 -03001250
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02001251 return err;
1252}
1253
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03001254bool perf_session__has_traces(struct perf_session *session, const char *msg)
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02001255{
David Ahern93ea01c292013-08-07 22:50:58 -04001256 struct perf_evsel *evsel;
1257
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001258 evlist__for_each(session->evlist, evsel) {
David Ahern93ea01c292013-08-07 22:50:58 -04001259 if (evsel->attr.type == PERF_TYPE_TRACEPOINT)
1260 return true;
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02001261 }
1262
David Ahern93ea01c292013-08-07 22:50:58 -04001263 pr_err("No trace sample to read. Did you call 'perf %s'?\n", msg);
1264 return false;
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02001265}
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001266
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001267int maps__set_kallsyms_ref_reloc_sym(struct map **maps,
1268 const char *symbol_name, u64 addr)
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001269{
1270 char *bracket;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -02001271 enum map_type i;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001272 struct ref_reloc_sym *ref;
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001273
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001274 ref = zalloc(sizeof(struct ref_reloc_sym));
1275 if (ref == NULL)
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001276 return -ENOMEM;
1277
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001278 ref->name = strdup(symbol_name);
1279 if (ref->name == NULL) {
1280 free(ref);
1281 return -ENOMEM;
1282 }
1283
1284 bracket = strchr(ref->name, ']');
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001285 if (bracket)
1286 *bracket = '\0';
1287
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001288 ref->addr = addr;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -02001289
1290 for (i = 0; i < MAP__NR_TYPES; ++i) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001291 struct kmap *kmap = map__kmap(maps[i]);
1292 kmap->ref_reloc_sym = ref;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -02001293 }
1294
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001295 return 0;
1296}
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -03001297
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001298size_t perf_session__fprintf_dsos(struct perf_session *session, FILE *fp)
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -03001299{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001300 return machines__fprintf_dsos(&session->machines, fp);
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -03001301}
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -03001302
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001303size_t perf_session__fprintf_dsos_buildid(struct perf_session *session, FILE *fp,
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -03001304 bool (skip)(struct dso *dso, int parm), int parm)
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -03001305{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001306 return machines__fprintf_dsos_buildid(&session->machines, fp, skip, parm);
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -03001307}
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03001308
1309size_t perf_session__fprintf_nr_events(struct perf_session *session, FILE *fp)
1310{
1311 struct perf_evsel *pos;
1312 size_t ret = fprintf(fp, "Aggregated stats:\n");
1313
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -03001314 ret += events_stats__fprintf(&session->stats, fp);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03001315
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001316 evlist__for_each(session->evlist, pos) {
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -03001317 ret += fprintf(fp, "%s stats:\n", perf_evsel__name(pos));
Arnaldo Carvalho de Melo52168ee2012-12-18 16:02:17 -03001318 ret += events_stats__fprintf(&pos->hists.stats, fp);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03001319 }
1320
1321 return ret;
1322}
David Ahernc0230b22011-03-09 22:23:27 -07001323
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -02001324size_t perf_session__fprintf(struct perf_session *session, FILE *fp)
1325{
1326 /*
1327 * FIXME: Here we have to actually print all the machines in this
1328 * session, not just the host...
1329 */
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -03001330 return machine__fprintf(&session->machines.host, fp);
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -02001331}
1332
David Ahern9cbdb702011-04-06 21:54:20 -06001333struct perf_evsel *perf_session__find_first_evtype(struct perf_session *session,
1334 unsigned int type)
1335{
1336 struct perf_evsel *pos;
1337
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001338 evlist__for_each(session->evlist, pos) {
David Ahern9cbdb702011-04-06 21:54:20 -06001339 if (pos->attr.type == type)
1340 return pos;
1341 }
1342 return NULL;
1343}
1344
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001345void perf_evsel__print_ip(struct perf_evsel *evsel, struct perf_sample *sample,
Arnaldo Carvalho de Melocc22e572013-12-19 17:20:06 -03001346 struct addr_location *al,
David Ahern307cbb92013-08-07 22:50:53 -04001347 unsigned int print_opts, unsigned int stack_depth)
David Ahernc0230b22011-03-09 22:23:27 -07001348{
David Ahernc0230b22011-03-09 22:23:27 -07001349 struct callchain_cursor_node *node;
David Aherna6ffaf92013-08-07 22:50:51 -04001350 int print_ip = print_opts & PRINT_IP_OPT_IP;
1351 int print_sym = print_opts & PRINT_IP_OPT_SYM;
1352 int print_dso = print_opts & PRINT_IP_OPT_DSO;
1353 int print_symoffset = print_opts & PRINT_IP_OPT_SYMOFFSET;
David Ahernb0b35f02013-08-07 22:50:52 -04001354 int print_oneline = print_opts & PRINT_IP_OPT_ONELINE;
Adrian Huntercc8fae12013-12-06 09:42:57 +02001355 int print_srcline = print_opts & PRINT_IP_OPT_SRCLINE;
David Ahernb0b35f02013-08-07 22:50:52 -04001356 char s = print_oneline ? ' ' : '\t';
David Ahernc0230b22011-03-09 22:23:27 -07001357
David Ahernc0230b22011-03-09 22:23:27 -07001358 if (symbol_conf.use_callchain && sample->callchain) {
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001359 struct addr_location node_al;
David Ahernc0230b22011-03-09 22:23:27 -07001360
Arnaldo Carvalho de Melocc22e572013-12-19 17:20:06 -03001361 if (machine__resolve_callchain(al->machine, evsel, al->thread,
Waiman Long91e95612013-10-18 10:38:48 -04001362 sample, NULL, NULL,
1363 PERF_MAX_STACK_DEPTH) != 0) {
David Ahernc0230b22011-03-09 22:23:27 -07001364 if (verbose)
1365 error("Failed to resolve callchain. Skipping\n");
1366 return;
1367 }
Namhyung Kim47260642012-05-31 14:43:26 +09001368 callchain_cursor_commit(&callchain_cursor);
David Ahernc0230b22011-03-09 22:23:27 -07001369
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001370 if (print_symoffset)
1371 node_al = *al;
1372
David Ahern307cbb92013-08-07 22:50:53 -04001373 while (stack_depth) {
Adrian Huntera4eb24a2013-12-06 09:42:56 +02001374 u64 addr = 0;
1375
Namhyung Kim47260642012-05-31 14:43:26 +09001376 node = callchain_cursor_current(&callchain_cursor);
David Ahernc0230b22011-03-09 22:23:27 -07001377 if (!node)
1378 break;
1379
David Ahernd2ff1b12013-11-18 13:32:44 -07001380 if (node->sym && node->sym->ignore)
1381 goto next;
1382
David Aherna6ffaf92013-08-07 22:50:51 -04001383 if (print_ip)
David Ahernb0b35f02013-08-07 22:50:52 -04001384 printf("%c%16" PRIx64, s, node->ip);
David Aherna6ffaf92013-08-07 22:50:51 -04001385
Adrian Huntera4eb24a2013-12-06 09:42:56 +02001386 if (node->map)
1387 addr = node->map->map_ip(node->map, node->ip);
1388
David Ahern787bef12011-05-27 14:28:43 -06001389 if (print_sym) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001390 printf(" ");
David Ahern251f4262013-07-28 09:14:34 -06001391 if (print_symoffset) {
Adrian Huntera4eb24a2013-12-06 09:42:56 +02001392 node_al.addr = addr;
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001393 node_al.map = node->map;
1394 symbol__fprintf_symname_offs(node->sym, &node_al, stdout);
David Ahern251f4262013-07-28 09:14:34 -06001395 } else
1396 symbol__fprintf_symname(node->sym, stdout);
David Ahern610723f2011-05-27 14:28:44 -06001397 }
David Ahern251f4262013-07-28 09:14:34 -06001398
David Ahern610723f2011-05-27 14:28:44 -06001399 if (print_dso) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001400 printf(" (");
David Ahern52deff72012-05-29 22:58:26 -06001401 map__fprintf_dsoname(node->map, stdout);
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001402 printf(")");
David Ahern787bef12011-05-27 14:28:43 -06001403 }
David Ahernb0b35f02013-08-07 22:50:52 -04001404
Adrian Huntercc8fae12013-12-06 09:42:57 +02001405 if (print_srcline)
1406 map__fprintf_srcline(node->map, addr, "\n ",
1407 stdout);
1408
David Ahernb0b35f02013-08-07 22:50:52 -04001409 if (!print_oneline)
1410 printf("\n");
David Ahernc0230b22011-03-09 22:23:27 -07001411
David Ahern307cbb92013-08-07 22:50:53 -04001412 stack_depth--;
David Ahernd2ff1b12013-11-18 13:32:44 -07001413next:
1414 callchain_cursor_advance(&callchain_cursor);
David Ahernc0230b22011-03-09 22:23:27 -07001415 }
1416
1417 } else {
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001418 if (al->sym && al->sym->ignore)
David Ahernd2ff1b12013-11-18 13:32:44 -07001419 return;
1420
David Aherna6ffaf92013-08-07 22:50:51 -04001421 if (print_ip)
1422 printf("%16" PRIx64, sample->ip);
1423
David Ahern787bef12011-05-27 14:28:43 -06001424 if (print_sym) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001425 printf(" ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001426 if (print_symoffset)
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001427 symbol__fprintf_symname_offs(al->sym, al,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001428 stdout);
1429 else
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001430 symbol__fprintf_symname(al->sym, stdout);
David Ahern610723f2011-05-27 14:28:44 -06001431 }
1432
1433 if (print_dso) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001434 printf(" (");
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001435 map__fprintf_dsoname(al->map, stdout);
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001436 printf(")");
David Ahern787bef12011-05-27 14:28:43 -06001437 }
Adrian Huntercc8fae12013-12-06 09:42:57 +02001438
1439 if (print_srcline)
1440 map__fprintf_srcline(al->map, al->addr, "\n ", stdout);
David Ahernc0230b22011-03-09 22:23:27 -07001441 }
1442}
Anton Blanchard5d67be92011-07-04 21:57:50 +10001443
1444int perf_session__cpu_bitmap(struct perf_session *session,
1445 const char *cpu_list, unsigned long *cpu_bitmap)
1446{
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04001447 int i, err = -1;
Anton Blanchard5d67be92011-07-04 21:57:50 +10001448 struct cpu_map *map;
1449
1450 for (i = 0; i < PERF_TYPE_MAX; ++i) {
1451 struct perf_evsel *evsel;
1452
1453 evsel = perf_session__find_first_evtype(session, i);
1454 if (!evsel)
1455 continue;
1456
1457 if (!(evsel->attr.sample_type & PERF_SAMPLE_CPU)) {
1458 pr_err("File does not contain CPU events. "
1459 "Remove -c option to proceed.\n");
1460 return -1;
1461 }
1462 }
1463
1464 map = cpu_map__new(cpu_list);
David Ahern47fbe532011-11-13 10:45:27 -07001465 if (map == NULL) {
1466 pr_err("Invalid cpu_list\n");
1467 return -1;
1468 }
Anton Blanchard5d67be92011-07-04 21:57:50 +10001469
1470 for (i = 0; i < map->nr; i++) {
1471 int cpu = map->map[i];
1472
1473 if (cpu >= MAX_NR_CPUS) {
1474 pr_err("Requested CPU %d too large. "
1475 "Consider raising MAX_NR_CPUS\n", cpu);
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04001476 goto out_delete_map;
Anton Blanchard5d67be92011-07-04 21:57:50 +10001477 }
1478
1479 set_bit(cpu, cpu_bitmap);
1480 }
1481
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04001482 err = 0;
1483
1484out_delete_map:
1485 cpu_map__delete(map);
1486 return err;
Anton Blanchard5d67be92011-07-04 21:57:50 +10001487}
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001488
1489void perf_session__fprintf_info(struct perf_session *session, FILE *fp,
1490 bool full)
1491{
1492 struct stat st;
Masanari Iidac5765ec2014-05-15 02:13:38 +09001493 int fd, ret;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001494
1495 if (session == NULL || fp == NULL)
1496 return;
1497
Masanari Iidac5765ec2014-05-15 02:13:38 +09001498 fd = perf_data_file__fd(session->file);
1499
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001500 ret = fstat(fd, &st);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001501 if (ret == -1)
1502 return;
1503
1504 fprintf(fp, "# ========\n");
1505 fprintf(fp, "# captured on: %s", ctime(&st.st_ctime));
1506 perf_header__fprintf_info(session, fp, full);
1507 fprintf(fp, "# ========\n#\n");
1508}
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001509
1510
1511int __perf_session__set_tracepoints_handlers(struct perf_session *session,
1512 const struct perf_evsel_str_handler *assocs,
1513 size_t nr_assocs)
1514{
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001515 struct perf_evsel *evsel;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001516 size_t i;
1517 int err;
1518
1519 for (i = 0; i < nr_assocs; i++) {
Arnaldo Carvalho de Meloccf53ea2013-09-06 15:19:01 -03001520 /*
1521 * Adding a handler for an event not in the session,
1522 * just ignore it.
1523 */
1524 evsel = perf_evlist__find_tracepoint_by_name(session->evlist, assocs[i].name);
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001525 if (evsel == NULL)
Arnaldo Carvalho de Meloccf53ea2013-09-06 15:19:01 -03001526 continue;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001527
1528 err = -EEXIST;
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -03001529 if (evsel->handler != NULL)
Arnaldo Carvalho de Meloccf53ea2013-09-06 15:19:01 -03001530 goto out;
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -03001531 evsel->handler = assocs[i].handler;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001532 }
1533
1534 err = 0;
1535out:
1536 return err;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001537}