blob: 7e27f1eb260cf86118d551d3d0b82f0b0278d1c6 [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"
Jiri Olsab0a45202014-06-12 09:50:11 +020017#include "asm/bug.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020018
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030019static int perf_session__open(struct perf_session *session)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020020{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030021 struct perf_data_file *file = session->file;
Tom Zanussi8dc58102010-04-01 23:59:15 -050022
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030023 if (perf_session__read_header(session) < 0) {
Stephane Eranian69996df2012-02-09 23:21:06 +010024 pr_err("incompatible file format (rerun with -v to learn more)");
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020025 return -1;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020026 }
27
Jiri Olsacc9784bd2013-10-15 16:27:34 +020028 if (perf_data_file__is_pipe(file))
29 return 0;
30
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030031 if (!perf_evlist__valid_sample_type(session->evlist)) {
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -030032 pr_err("non matching sample_type");
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020033 return -1;
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -030034 }
35
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030036 if (!perf_evlist__valid_sample_id_all(session->evlist)) {
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -030037 pr_err("non matching sample_id_all");
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020038 return -1;
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -030039 }
40
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030041 if (!perf_evlist__valid_read_format(session->evlist)) {
Jiri Olsa9ede4732012-10-10 17:38:13 +020042 pr_err("non matching read_format");
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020043 return -1;
Jiri Olsa9ede4732012-10-10 17:38:13 +020044 }
45
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020046 return 0;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020047}
48
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -030049void perf_session__set_id_hdr_size(struct perf_session *session)
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -020050{
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -030051 u16 id_hdr_size = perf_evlist__id_hdr_size(session->evlist);
52
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -030053 machines__set_id_hdr_size(&session->machines, id_hdr_size);
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -020054}
55
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030056int perf_session__create_kernel_maps(struct perf_session *session)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080057{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030058 int ret = machine__create_kernel_maps(&session->machines.host);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080059
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080060 if (ret >= 0)
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030061 ret = machines__create_guest_kernel_maps(&session->machines);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080062 return ret;
63}
64
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030065static void perf_session__destroy_kernel_maps(struct perf_session *session)
Arnaldo Carvalho de Melo076c6e452010-08-02 18:18:28 -030066{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030067 machines__destroy_kernel_maps(&session->machines);
Arnaldo Carvalho de Melo076c6e452010-08-02 18:18:28 -030068}
69
Jiri Olsaf5fc1412013-10-15 16:27:32 +020070struct perf_session *perf_session__new(struct perf_data_file *file,
71 bool repipe, struct perf_tool *tool)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020072{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030073 struct perf_session *session = zalloc(sizeof(*session));
Robert Richterefad1412011-12-07 10:02:54 +010074
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030075 if (!session)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020076 goto out;
77
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030078 session->repipe = repipe;
Jiri Olsa36522f52014-06-10 22:47:40 +020079 ordered_events__init(&session->ordered_events);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030080 machines__init(&session->machines);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020081
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020082 if (file) {
83 if (perf_data_file__open(file))
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -020084 goto out_delete;
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020085
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030086 session->file = file;
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020087
88 if (perf_data_file__is_read(file)) {
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030089 if (perf_session__open(session) < 0)
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020090 goto out_close;
91
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030092 perf_session__set_id_hdr_size(session);
Jiri Olsa6a4d98d2013-10-15 16:27:33 +020093 }
94 }
95
96 if (!file || perf_data_file__is_write(file)) {
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -020097 /*
98 * In O_RDONLY mode this will be performed when reading the
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -020099 * kernel MMAP event, in perf_event__process_mmap().
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -0200100 */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300101 if (perf_session__create_kernel_maps(session) < 0)
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -0200102 goto out_delete;
103 }
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200104
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200105 if (tool && tool->ordering_requires_timestamps &&
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200106 tool->ordered_events && !perf_evlist__sample_id_all(session->evlist)) {
Ian Munsie21ef97f2010-12-10 14:09:16 +1100107 dump_printf("WARNING: No sample_id_all support, falling back to unordered processing\n");
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200108 tool->ordered_events = false;
Ian Munsie21ef97f2010-12-10 14:09:16 +1100109 }
110
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300111 return session;
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200112
113 out_close:
114 perf_data_file__close(file);
115 out_delete:
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300116 perf_session__delete(session);
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200117 out:
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200118 return NULL;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200119}
120
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200121static void perf_session__delete_dead_threads(struct perf_session *session)
122{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300123 machine__delete_dead_threads(&session->machines.host);
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200124}
125
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200126static void perf_session__delete_threads(struct perf_session *session)
127{
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300128 machine__delete_threads(&session->machines.host);
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200129}
130
Namhyung Kim03cd2092012-11-21 13:43:19 +0900131static void perf_session_env__delete(struct perf_session_env *env)
132{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300133 zfree(&env->hostname);
134 zfree(&env->os_release);
135 zfree(&env->version);
136 zfree(&env->arch);
137 zfree(&env->cpu_desc);
138 zfree(&env->cpuid);
Namhyung Kim03cd2092012-11-21 13:43:19 +0900139
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300140 zfree(&env->cmdline);
141 zfree(&env->sibling_cores);
142 zfree(&env->sibling_threads);
143 zfree(&env->numa_nodes);
144 zfree(&env->pmu_mappings);
Namhyung Kim03cd2092012-11-21 13:43:19 +0900145}
146
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300147void perf_session__delete(struct perf_session *session)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200148{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300149 perf_session__destroy_kernel_maps(session);
150 perf_session__delete_dead_threads(session);
151 perf_session__delete_threads(session);
152 perf_session_env__delete(&session->header.env);
153 machines__exit(&session->machines);
154 if (session->file)
155 perf_data_file__close(session->file);
156 free(session);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200157}
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200158
Adrian Hunter47c3d102013-07-04 16:20:21 +0300159static int process_event_synth_tracing_data_stub(struct perf_tool *tool
160 __maybe_unused,
161 union perf_event *event
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300162 __maybe_unused,
163 struct perf_session *session
164 __maybe_unused)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200165{
166 dump_printf(": unhandled!\n");
167 return 0;
168}
169
Adrian Hunter47c3d102013-07-04 16:20:21 +0300170static int process_event_synth_attr_stub(struct perf_tool *tool __maybe_unused,
171 union perf_event *event __maybe_unused,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300172 struct perf_evlist **pevlist
173 __maybe_unused)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200174{
175 dump_printf(": unhandled!\n");
176 return 0;
177}
178
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300179static int process_event_sample_stub(struct perf_tool *tool __maybe_unused,
180 union perf_event *event __maybe_unused,
181 struct perf_sample *sample __maybe_unused,
182 struct perf_evsel *evsel __maybe_unused,
183 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300184{
185 dump_printf(": unhandled!\n");
186 return 0;
187}
188
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300189static int process_event_stub(struct perf_tool *tool __maybe_unused,
190 union perf_event *event __maybe_unused,
191 struct perf_sample *sample __maybe_unused,
192 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200193{
194 dump_printf(": unhandled!\n");
195 return 0;
196}
197
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300198static int process_finished_round_stub(struct perf_tool *tool __maybe_unused,
199 union perf_event *event __maybe_unused,
200 struct perf_session *perf_session
201 __maybe_unused)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200202{
203 dump_printf(": unhandled!\n");
204 return 0;
205}
206
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200207static int process_finished_round(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200208 union perf_event *event,
209 struct perf_session *session);
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200210
David Ahern9c501402013-08-02 14:05:41 -0600211void perf_tool__fill_defaults(struct perf_tool *tool)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200212{
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200213 if (tool->sample == NULL)
214 tool->sample = process_event_sample_stub;
215 if (tool->mmap == NULL)
216 tool->mmap = process_event_stub;
David Ahern6adb0b02013-09-22 19:44:59 -0600217 if (tool->mmap2 == NULL)
218 tool->mmap2 = process_event_stub;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200219 if (tool->comm == NULL)
220 tool->comm = process_event_stub;
221 if (tool->fork == NULL)
222 tool->fork = process_event_stub;
223 if (tool->exit == NULL)
224 tool->exit = process_event_stub;
225 if (tool->lost == NULL)
226 tool->lost = perf_event__process_lost;
227 if (tool->read == NULL)
228 tool->read = process_event_sample_stub;
229 if (tool->throttle == NULL)
230 tool->throttle = process_event_stub;
231 if (tool->unthrottle == NULL)
232 tool->unthrottle = process_event_stub;
233 if (tool->attr == NULL)
234 tool->attr = process_event_synth_attr_stub;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200235 if (tool->tracing_data == NULL)
236 tool->tracing_data = process_event_synth_tracing_data_stub;
237 if (tool->build_id == NULL)
238 tool->build_id = process_finished_round_stub;
239 if (tool->finished_round == NULL) {
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200240 if (tool->ordered_events)
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200241 tool->finished_round = process_finished_round;
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200242 else
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200243 tool->finished_round = process_finished_round_stub;
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200244 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200245}
David Ahern80c01202012-06-08 11:47:51 -0300246
Jiri Olsa268fb202012-05-30 14:23:43 +0200247static void swap_sample_id_all(union perf_event *event, void *data)
248{
249 void *end = (void *) event + event->header.size;
250 int size = end - data;
251
252 BUG_ON(size % sizeof(u64));
253 mem_bswap_64(data, size);
254}
255
256static void perf_event__all64_swap(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300257 bool sample_id_all __maybe_unused)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200258{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200259 struct perf_event_header *hdr = &event->header;
260 mem_bswap_64(hdr + 1, event->header.size - sizeof(*hdr));
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200261}
262
Jiri Olsa268fb202012-05-30 14:23:43 +0200263static void perf_event__comm_swap(union perf_event *event, bool sample_id_all)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200264{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200265 event->comm.pid = bswap_32(event->comm.pid);
266 event->comm.tid = bswap_32(event->comm.tid);
Jiri Olsa268fb202012-05-30 14:23:43 +0200267
268 if (sample_id_all) {
269 void *data = &event->comm.comm;
270
Irina Tirdea9ac3e482012-09-11 01:15:01 +0300271 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
Jiri Olsa268fb202012-05-30 14:23:43 +0200272 swap_sample_id_all(event, data);
273 }
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200274}
275
Jiri Olsa268fb202012-05-30 14:23:43 +0200276static void perf_event__mmap_swap(union perf_event *event,
277 bool sample_id_all)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200278{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200279 event->mmap.pid = bswap_32(event->mmap.pid);
280 event->mmap.tid = bswap_32(event->mmap.tid);
281 event->mmap.start = bswap_64(event->mmap.start);
282 event->mmap.len = bswap_64(event->mmap.len);
283 event->mmap.pgoff = bswap_64(event->mmap.pgoff);
Jiri Olsa268fb202012-05-30 14:23:43 +0200284
285 if (sample_id_all) {
286 void *data = &event->mmap.filename;
287
Irina Tirdea9ac3e482012-09-11 01:15:01 +0300288 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
Jiri Olsa268fb202012-05-30 14:23:43 +0200289 swap_sample_id_all(event, data);
290 }
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200291}
292
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200293static void perf_event__mmap2_swap(union perf_event *event,
294 bool sample_id_all)
295{
296 event->mmap2.pid = bswap_32(event->mmap2.pid);
297 event->mmap2.tid = bswap_32(event->mmap2.tid);
298 event->mmap2.start = bswap_64(event->mmap2.start);
299 event->mmap2.len = bswap_64(event->mmap2.len);
300 event->mmap2.pgoff = bswap_64(event->mmap2.pgoff);
301 event->mmap2.maj = bswap_32(event->mmap2.maj);
302 event->mmap2.min = bswap_32(event->mmap2.min);
303 event->mmap2.ino = bswap_64(event->mmap2.ino);
304
305 if (sample_id_all) {
306 void *data = &event->mmap2.filename;
307
308 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
309 swap_sample_id_all(event, data);
310 }
311}
Jiri Olsa268fb202012-05-30 14:23:43 +0200312static void perf_event__task_swap(union perf_event *event, bool sample_id_all)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200313{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200314 event->fork.pid = bswap_32(event->fork.pid);
315 event->fork.tid = bswap_32(event->fork.tid);
316 event->fork.ppid = bswap_32(event->fork.ppid);
317 event->fork.ptid = bswap_32(event->fork.ptid);
318 event->fork.time = bswap_64(event->fork.time);
Jiri Olsa268fb202012-05-30 14:23:43 +0200319
320 if (sample_id_all)
321 swap_sample_id_all(event, &event->fork + 1);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200322}
323
Jiri Olsa268fb202012-05-30 14:23:43 +0200324static void perf_event__read_swap(union perf_event *event, bool sample_id_all)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200325{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200326 event->read.pid = bswap_32(event->read.pid);
327 event->read.tid = bswap_32(event->read.tid);
328 event->read.value = bswap_64(event->read.value);
329 event->read.time_enabled = bswap_64(event->read.time_enabled);
330 event->read.time_running = bswap_64(event->read.time_running);
331 event->read.id = bswap_64(event->read.id);
Jiri Olsa268fb202012-05-30 14:23:43 +0200332
333 if (sample_id_all)
334 swap_sample_id_all(event, &event->read + 1);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200335}
336
Jiri Olsadd96c462013-09-01 12:36:15 +0200337static void perf_event__throttle_swap(union perf_event *event,
338 bool sample_id_all)
339{
340 event->throttle.time = bswap_64(event->throttle.time);
341 event->throttle.id = bswap_64(event->throttle.id);
342 event->throttle.stream_id = bswap_64(event->throttle.stream_id);
343
344 if (sample_id_all)
345 swap_sample_id_all(event, &event->throttle + 1);
346}
347
Jiri Olsae108c662012-05-16 08:59:03 +0200348static u8 revbyte(u8 b)
349{
350 int rev = (b >> 4) | ((b & 0xf) << 4);
351 rev = ((rev & 0xcc) >> 2) | ((rev & 0x33) << 2);
352 rev = ((rev & 0xaa) >> 1) | ((rev & 0x55) << 1);
353 return (u8) rev;
354}
355
356/*
357 * XXX this is hack in attempt to carry flags bitfield
358 * throught endian village. ABI says:
359 *
360 * Bit-fields are allocated from right to left (least to most significant)
361 * on little-endian implementations and from left to right (most to least
362 * significant) on big-endian implementations.
363 *
364 * The above seems to be byte specific, so we need to reverse each
365 * byte of the bitfield. 'Internet' also says this might be implementation
366 * specific and we probably need proper fix and carry perf_event_attr
367 * bitfield flags in separate data file FEAT_ section. Thought this seems
368 * to work for now.
369 */
370static void swap_bitfield(u8 *p, unsigned len)
371{
372 unsigned i;
373
374 for (i = 0; i < len; i++) {
375 *p = revbyte(*p);
376 p++;
377 }
378}
379
David Aherneda39132011-07-15 12:34:09 -0600380/* exported for swapping attributes in file header */
381void perf_event__attr_swap(struct perf_event_attr *attr)
382{
383 attr->type = bswap_32(attr->type);
384 attr->size = bswap_32(attr->size);
385 attr->config = bswap_64(attr->config);
386 attr->sample_period = bswap_64(attr->sample_period);
387 attr->sample_type = bswap_64(attr->sample_type);
388 attr->read_format = bswap_64(attr->read_format);
389 attr->wakeup_events = bswap_32(attr->wakeup_events);
390 attr->bp_type = bswap_32(attr->bp_type);
391 attr->bp_addr = bswap_64(attr->bp_addr);
392 attr->bp_len = bswap_64(attr->bp_len);
Adrian Hunter7db59522013-10-18 15:29:03 +0300393 attr->branch_sample_type = bswap_64(attr->branch_sample_type);
394 attr->sample_regs_user = bswap_64(attr->sample_regs_user);
395 attr->sample_stack_user = bswap_32(attr->sample_stack_user);
Jiri Olsae108c662012-05-16 08:59:03 +0200396
397 swap_bitfield((u8 *) (&attr->read_format + 1), sizeof(u64));
David Aherneda39132011-07-15 12:34:09 -0600398}
399
Jiri Olsa268fb202012-05-30 14:23:43 +0200400static void perf_event__hdr_attr_swap(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300401 bool sample_id_all __maybe_unused)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500402{
403 size_t size;
404
David Aherneda39132011-07-15 12:34:09 -0600405 perf_event__attr_swap(&event->attr.attr);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500406
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200407 size = event->header.size;
408 size -= (void *)&event->attr.id - (void *)event;
409 mem_bswap_64(event->attr.id, size);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500410}
411
Jiri Olsa268fb202012-05-30 14:23:43 +0200412static void perf_event__event_type_swap(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300413 bool sample_id_all __maybe_unused)
Tom Zanussicd19a032010-04-01 23:59:20 -0500414{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200415 event->event_type.event_type.event_id =
416 bswap_64(event->event_type.event_type.event_id);
Tom Zanussicd19a032010-04-01 23:59:20 -0500417}
418
Jiri Olsa268fb202012-05-30 14:23:43 +0200419static void perf_event__tracing_data_swap(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300420 bool sample_id_all __maybe_unused)
Tom Zanussi92155452010-04-01 23:59:21 -0500421{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200422 event->tracing_data.size = bswap_32(event->tracing_data.size);
Tom Zanussi92155452010-04-01 23:59:21 -0500423}
424
Jiri Olsa268fb202012-05-30 14:23:43 +0200425typedef void (*perf_event__swap_op)(union perf_event *event,
426 bool sample_id_all);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200427
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200428static perf_event__swap_op perf_event__swap_ops[] = {
429 [PERF_RECORD_MMAP] = perf_event__mmap_swap,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200430 [PERF_RECORD_MMAP2] = perf_event__mmap2_swap,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200431 [PERF_RECORD_COMM] = perf_event__comm_swap,
432 [PERF_RECORD_FORK] = perf_event__task_swap,
433 [PERF_RECORD_EXIT] = perf_event__task_swap,
434 [PERF_RECORD_LOST] = perf_event__all64_swap,
435 [PERF_RECORD_READ] = perf_event__read_swap,
Jiri Olsadd96c462013-09-01 12:36:15 +0200436 [PERF_RECORD_THROTTLE] = perf_event__throttle_swap,
437 [PERF_RECORD_UNTHROTTLE] = perf_event__throttle_swap,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200438 [PERF_RECORD_SAMPLE] = perf_event__all64_swap,
David Aherneda39132011-07-15 12:34:09 -0600439 [PERF_RECORD_HEADER_ATTR] = perf_event__hdr_attr_swap,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200440 [PERF_RECORD_HEADER_EVENT_TYPE] = perf_event__event_type_swap,
441 [PERF_RECORD_HEADER_TRACING_DATA] = perf_event__tracing_data_swap,
442 [PERF_RECORD_HEADER_BUILD_ID] = NULL,
443 [PERF_RECORD_HEADER_MAX] = NULL,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200444};
445
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200446/*
447 * When perf record finishes a pass on every buffers, it records this pseudo
448 * event.
449 * We record the max timestamp t found in the pass n.
450 * Assuming these timestamps are monotonic across cpus, we know that if
451 * a buffer still has events with timestamps below t, they will be all
452 * available and then read in the pass n + 1.
453 * Hence when we start to read the pass n + 2, we can safely flush every
454 * events with timestamps below t.
455 *
456 * ============ PASS n =================
457 * CPU 0 | CPU 1
458 * |
459 * cnt1 timestamps | cnt2 timestamps
460 * 1 | 2
461 * 2 | 3
462 * - | 4 <--- max recorded
463 *
464 * ============ PASS n + 1 ==============
465 * CPU 0 | CPU 1
466 * |
467 * cnt1 timestamps | cnt2 timestamps
468 * 3 | 5
469 * 4 | 6
470 * 5 | 7 <---- max recorded
471 *
472 * Flush every events below timestamp 4
473 *
474 * ============ PASS n + 2 ==============
475 * CPU 0 | CPU 1
476 * |
477 * cnt1 timestamps | cnt2 timestamps
478 * 6 | 8
479 * 7 | 9
480 * - | 10
481 *
482 * Flush every events below timestamp 7
483 * etc...
484 */
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200485static int process_finished_round(struct perf_tool *tool,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300486 union perf_event *event __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200487 struct perf_session *session)
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200488{
Jiri Olsad8836b52014-06-05 10:29:45 +0200489 return ordered_events__flush(session, tool, OE_FLUSH__ROUND);
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200490}
491
David Aherne30b88a2013-08-05 21:41:33 -0400492int perf_session_queue_event(struct perf_session *s, union perf_event *event,
Jiri Olsad40b4a12014-08-01 13:01:04 -0300493 struct perf_tool *tool, struct perf_sample *sample,
494 u64 file_offset)
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200495{
Jiri Olsa37e39aa2014-07-06 14:23:03 +0200496 struct ordered_events *oe = &s->ordered_events;
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200497 u64 timestamp = sample->time;
Jiri Olsa37e39aa2014-07-06 14:23:03 +0200498 struct ordered_event *new;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200499
Thomas Gleixner79a14c12010-12-07 12:48:44 +0000500 if (!timestamp || timestamp == ~0ULL)
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100501 return -ETIME;
502
Jiri Olsacee3ab92014-07-11 14:49:54 +0200503 if (timestamp < oe->last_flush) {
Jiri Olsab0a45202014-06-12 09:50:11 +0200504 WARN_ONCE(1, "Timestamp below last timeslice flush\n");
505
Jiri Olsacee3ab92014-07-11 14:49:54 +0200506 pr_oe_time(timestamp, "out of order event");
Jiri Olsab0a45202014-06-12 09:50:11 +0200507 pr_oe_time(oe->last_flush, "last flush, last_flush_type %d\n",
508 oe->last_flush_type);
509
510 /* We could get out of order messages after forced flush. */
511 if (oe->last_flush_type != OE_FLUSH__HALF)
512 return -EINVAL;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200513 }
514
Jiri Olsac64c7e12014-06-10 21:58:02 +0200515 new = ordered_events__new(oe, timestamp);
Jiri Olsad40b4a12014-08-01 13:01:04 -0300516 if (!new) {
517 ordered_events__flush(s, tool, OE_FLUSH__HALF);
518 new = ordered_events__new(oe, timestamp);
519 }
520
Jiri Olsac64c7e12014-06-10 21:58:02 +0200521 if (!new)
522 return -ENOMEM;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200523
Thomas Gleixnere4c2df12010-12-07 12:48:50 +0000524 new->file_offset = file_offset;
Thomas Gleixnerfe174202010-11-30 17:49:49 +0000525 new->event = event;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200526 return 0;
527}
528
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200529static void callchain__printf(struct perf_sample *sample)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200530{
531 unsigned int i;
532
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200533 printf("... chain: nr:%" PRIu64 "\n", sample->callchain->nr);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200534
535 for (i = 0; i < sample->callchain->nr; i++)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200536 printf("..... %2d: %016" PRIx64 "\n",
537 i, sample->callchain->ips[i]);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200538}
539
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100540static void branch_stack__printf(struct perf_sample *sample)
541{
542 uint64_t i;
543
544 printf("... branch stack: nr:%" PRIu64 "\n", sample->branch_stack->nr);
545
546 for (i = 0; i < sample->branch_stack->nr; i++)
547 printf("..... %2"PRIu64": %016" PRIx64 " -> %016" PRIx64 "\n",
548 i, sample->branch_stack->entries[i].from,
549 sample->branch_stack->entries[i].to);
550}
551
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200552static void regs_dump__printf(u64 mask, u64 *regs)
553{
554 unsigned rid, i = 0;
555
556 for_each_set_bit(rid, (unsigned long *) &mask, sizeof(mask) * 8) {
557 u64 val = regs[i++];
558
559 printf(".... %-5s 0x%" PRIx64 "\n",
560 perf_reg_name(rid), val);
561 }
562}
563
Jiri Olsa352ea452014-01-07 13:47:25 +0100564static void regs_user__printf(struct perf_sample *sample)
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200565{
566 struct regs_dump *user_regs = &sample->user_regs;
567
568 if (user_regs->regs) {
Jiri Olsa352ea452014-01-07 13:47:25 +0100569 u64 mask = user_regs->mask;
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200570 printf("... user regs: mask 0x%" PRIx64 "\n", mask);
571 regs_dump__printf(mask, user_regs->regs);
572 }
573}
574
575static void stack_user__printf(struct stack_dump *dump)
576{
577 printf("... ustack: size %" PRIu64 ", offset 0x%x\n",
578 dump->size, dump->offset);
579}
580
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200581static void perf_session__print_tstamp(struct perf_session *session,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200582 union perf_event *event,
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200583 struct perf_sample *sample)
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200584{
Adrian Hunter75562572013-08-27 11:23:09 +0300585 u64 sample_type = __perf_evlist__combined_sample_type(session->evlist);
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300586
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200587 if (event->header.type != PERF_RECORD_SAMPLE &&
Arnaldo Carvalho de Melo5e562472012-08-01 19:25:26 -0300588 !perf_evlist__sample_id_all(session->evlist)) {
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200589 fputs("-1 -1 ", stdout);
590 return;
591 }
592
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300593 if ((sample_type & PERF_SAMPLE_CPU))
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200594 printf("%u ", sample->cpu);
595
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300596 if (sample_type & PERF_SAMPLE_TIME)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200597 printf("%" PRIu64 " ", sample->time);
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200598}
599
Jiri Olsa9ede4732012-10-10 17:38:13 +0200600static void sample_read__printf(struct perf_sample *sample, u64 read_format)
601{
602 printf("... sample_read:\n");
603
604 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
605 printf("...... time enabled %016" PRIx64 "\n",
606 sample->read.time_enabled);
607
608 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
609 printf("...... time running %016" PRIx64 "\n",
610 sample->read.time_running);
611
612 if (read_format & PERF_FORMAT_GROUP) {
613 u64 i;
614
615 printf(".... group nr %" PRIu64 "\n", sample->read.group.nr);
616
617 for (i = 0; i < sample->read.group.nr; i++) {
618 struct sample_read_value *value;
619
620 value = &sample->read.group.values[i];
621 printf("..... id %016" PRIx64
622 ", value %016" PRIx64 "\n",
623 value->id, value->value);
624 }
625 } else
626 printf("..... id %016" PRIx64 ", value %016" PRIx64 "\n",
627 sample->read.one.id, sample->read.one.value);
628}
629
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200630static void dump_event(struct perf_session *session, union perf_event *event,
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200631 u64 file_offset, struct perf_sample *sample)
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000632{
633 if (!dump_trace)
634 return;
635
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200636 printf("\n%#" PRIx64 " [%#x]: event: %d\n",
637 file_offset, event->header.size, event->header.type);
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000638
639 trace_event(event);
640
641 if (sample)
642 perf_session__print_tstamp(session, event, sample);
643
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200644 printf("%#" PRIx64 " [%#x]: PERF_RECORD_%s", file_offset,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200645 event->header.size, perf_event__name(event->header.type));
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000646}
647
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200648static void dump_sample(struct perf_evsel *evsel, union perf_event *event,
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200649 struct perf_sample *sample)
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000650{
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300651 u64 sample_type;
652
Arnaldo Carvalho de Meloddbc24b2010-12-09 12:20:20 -0200653 if (!dump_trace)
654 return;
655
Don Zickus0ea590a2014-02-25 22:43:46 -0500656 printf("(IP, 0x%x): %d/%d: %#" PRIx64 " period: %" PRIu64 " addr: %#" PRIx64 "\n",
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200657 event->header.misc, sample->pid, sample->tid, sample->ip,
David Ahern7cec0922011-05-30 13:08:23 -0600658 sample->period, sample->addr);
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000659
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200660 sample_type = evsel->attr.sample_type;
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300661
662 if (sample_type & PERF_SAMPLE_CALLCHAIN)
Arnaldo Carvalho de Meloddbc24b2010-12-09 12:20:20 -0200663 callchain__printf(sample);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100664
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300665 if (sample_type & PERF_SAMPLE_BRANCH_STACK)
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100666 branch_stack__printf(sample);
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200667
668 if (sample_type & PERF_SAMPLE_REGS_USER)
Jiri Olsa352ea452014-01-07 13:47:25 +0100669 regs_user__printf(sample);
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200670
671 if (sample_type & PERF_SAMPLE_STACK_USER)
672 stack_user__printf(&sample->user_stack);
Andi Kleen05484292013-01-24 16:10:29 +0100673
674 if (sample_type & PERF_SAMPLE_WEIGHT)
675 printf("... weight: %" PRIu64 "\n", sample->weight);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100676
677 if (sample_type & PERF_SAMPLE_DATA_SRC)
678 printf(" . data_src: 0x%"PRIx64"\n", sample->data_src);
Jiri Olsa9ede4732012-10-10 17:38:13 +0200679
Andi Kleen475eeab2013-09-20 07:40:43 -0700680 if (sample_type & PERF_SAMPLE_TRANSACTION)
681 printf("... transaction: %" PRIx64 "\n", sample->transaction);
682
Jiri Olsa9ede4732012-10-10 17:38:13 +0200683 if (sample_type & PERF_SAMPLE_READ)
684 sample_read__printf(sample, evsel->attr.read_format);
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000685}
686
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200687static struct machine *
688 perf_session__find_machine_for_cpumode(struct perf_session *session,
Adrian Hunteref893252013-08-27 11:23:06 +0300689 union perf_event *event,
690 struct perf_sample *sample)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200691{
692 const u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Dongsheng Yangad85ace2013-12-20 13:41:47 -0500693 struct machine *machine;
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200694
David Ahern7c0f4a42012-07-20 17:25:48 -0600695 if (perf_guest &&
696 ((cpumode == PERF_RECORD_MISC_GUEST_KERNEL) ||
697 (cpumode == PERF_RECORD_MISC_GUEST_USER))) {
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +0530698 u32 pid;
699
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200700 if (event->header.type == PERF_RECORD_MMAP
701 || event->header.type == PERF_RECORD_MMAP2)
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +0530702 pid = event->mmap.pid;
703 else
Adrian Hunteref893252013-08-27 11:23:06 +0300704 pid = sample->pid;
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +0530705
Dongsheng Yangad85ace2013-12-20 13:41:47 -0500706 machine = perf_session__find_machine(session, pid);
707 if (!machine)
708 machine = perf_session__findnew_machine(session,
709 DEFAULT_GUEST_KERNEL_ID);
710 return machine;
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +0530711 }
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200712
Arnaldo Carvalho de Melo34ba5122012-12-19 09:04:24 -0300713 return &session->machines.host;
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200714}
715
Jiri Olsae4caec02012-10-10 18:52:24 +0200716static int deliver_sample_value(struct perf_session *session,
717 struct perf_tool *tool,
718 union perf_event *event,
719 struct perf_sample *sample,
720 struct sample_read_value *v,
721 struct machine *machine)
722{
723 struct perf_sample_id *sid;
724
725 sid = perf_evlist__id2sid(session->evlist, v->id);
726 if (sid) {
727 sample->id = v->id;
728 sample->period = v->value - sid->period;
729 sid->period = v->value;
730 }
731
732 if (!sid || sid->evsel == NULL) {
733 ++session->stats.nr_unknown_id;
734 return 0;
735 }
736
737 return tool->sample(tool, event, sample, sid->evsel, machine);
738}
739
740static int deliver_sample_group(struct perf_session *session,
741 struct perf_tool *tool,
742 union perf_event *event,
743 struct perf_sample *sample,
744 struct machine *machine)
745{
746 int ret = -EINVAL;
747 u64 i;
748
749 for (i = 0; i < sample->read.group.nr; i++) {
750 ret = deliver_sample_value(session, tool, event, sample,
751 &sample->read.group.values[i],
752 machine);
753 if (ret)
754 break;
755 }
756
757 return ret;
758}
759
760static int
761perf_session__deliver_sample(struct perf_session *session,
762 struct perf_tool *tool,
763 union perf_event *event,
764 struct perf_sample *sample,
765 struct perf_evsel *evsel,
766 struct machine *machine)
767{
768 /* We know evsel != NULL. */
769 u64 sample_type = evsel->attr.sample_type;
770 u64 read_format = evsel->attr.read_format;
771
772 /* Standard sample delievery. */
773 if (!(sample_type & PERF_SAMPLE_READ))
774 return tool->sample(tool, event, sample, evsel, machine);
775
776 /* For PERF_SAMPLE_READ we have either single or group mode. */
777 if (read_format & PERF_FORMAT_GROUP)
778 return deliver_sample_group(session, tool, event, sample,
779 machine);
780 else
781 return deliver_sample_value(session, tool, event, sample,
782 &sample->read.one, machine);
783}
784
Jiri Olsa79a30fe2014-06-10 22:31:35 +0200785int perf_session__deliver_event(struct perf_session *session,
786 union perf_event *event,
787 struct perf_sample *sample,
788 struct perf_tool *tool, u64 file_offset)
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100789{
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300790 struct perf_evsel *evsel;
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200791 struct machine *machine;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300792
Thomas Gleixner532e7262010-12-07 12:48:55 +0000793 dump_event(session, event, file_offset, sample);
794
Arnaldo Carvalho de Melo7b275092011-10-29 12:15:04 -0200795 evsel = perf_evlist__id2evsel(session->evlist, sample->id);
796 if (evsel != NULL && event->header.type != PERF_RECORD_SAMPLE) {
797 /*
798 * XXX We're leaving PERF_RECORD_SAMPLE unnacounted here
799 * because the tools right now may apply filters, discarding
800 * some of the samples. For consistency, in the future we
801 * should have something like nr_filtered_samples and remove
802 * the sample->period from total_sample_period, etc, KISS for
803 * now tho.
804 *
805 * Also testing against NULL allows us to handle files without
806 * attr.sample_id_all and/or without PERF_SAMPLE_ID. In the
807 * future probably it'll be a good idea to restrict event
808 * processing via perf_session to files with both set.
809 */
810 hists__inc_nr_events(&evsel->hists, event->header.type);
811 }
812
Adrian Hunteref893252013-08-27 11:23:06 +0300813 machine = perf_session__find_machine_for_cpumode(session, event,
814 sample);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200815
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100816 switch (event->header.type) {
817 case PERF_RECORD_SAMPLE:
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200818 dump_sample(evsel, event, sample);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300819 if (evsel == NULL) {
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300820 ++session->stats.nr_unknown_id;
Jiri Olsa67822062012-04-12 14:21:01 +0200821 return 0;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300822 }
Joerg Roedel0c095712012-02-10 18:05:04 +0100823 if (machine == NULL) {
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300824 ++session->stats.nr_unprocessable_samples;
Jiri Olsa67822062012-04-12 14:21:01 +0200825 return 0;
Joerg Roedel0c095712012-02-10 18:05:04 +0100826 }
Jiri Olsae4caec02012-10-10 18:52:24 +0200827 return perf_session__deliver_sample(session, tool, event,
828 sample, evsel, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100829 case PERF_RECORD_MMAP:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200830 return tool->mmap(tool, event, sample, machine);
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200831 case PERF_RECORD_MMAP2:
832 return tool->mmap2(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100833 case PERF_RECORD_COMM:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200834 return tool->comm(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100835 case PERF_RECORD_FORK:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200836 return tool->fork(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100837 case PERF_RECORD_EXIT:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200838 return tool->exit(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100839 case PERF_RECORD_LOST:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200840 if (tool->lost == perf_event__process_lost)
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300841 session->stats.total_lost += event->lost.lost;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200842 return tool->lost(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100843 case PERF_RECORD_READ:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200844 return tool->read(tool, event, sample, evsel, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100845 case PERF_RECORD_THROTTLE:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200846 return tool->throttle(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100847 case PERF_RECORD_UNTHROTTLE:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200848 return tool->unthrottle(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100849 default:
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300850 ++session->stats.nr_unknown_events;
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100851 return -1;
852 }
853}
854
Adrian Hunterd5652d82014-07-23 22:19:58 +0300855static s64 perf_session__process_user_event(struct perf_session *session,
856 union perf_event *event,
857 struct perf_tool *tool,
858 u64 file_offset)
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000859{
Jiri Olsacc9784bd2013-10-15 16:27:34 +0200860 int fd = perf_data_file__fd(session->file);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200861 int err;
862
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000863 dump_event(session, event, file_offset, NULL);
864
865 /* These events are processed right away */
866 switch (event->header.type) {
867 case PERF_RECORD_HEADER_ATTR:
Adrian Hunter47c3d102013-07-04 16:20:21 +0300868 err = tool->attr(tool, event, &session->evlist);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200869 if (err == 0)
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -0300870 perf_session__set_id_hdr_size(session);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200871 return err;
Jiri Olsaf67697b2014-02-04 15:37:48 +0100872 case PERF_RECORD_HEADER_EVENT_TYPE:
873 /*
874 * Depreceated, but we need to handle it for sake
875 * of old data files create in pipe mode.
876 */
877 return 0;
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000878 case PERF_RECORD_HEADER_TRACING_DATA:
879 /* setup for reading amidst mmap */
Jiri Olsacc9784bd2013-10-15 16:27:34 +0200880 lseek(fd, file_offset, SEEK_SET);
Adrian Hunter47c3d102013-07-04 16:20:21 +0300881 return tool->tracing_data(tool, event, session);
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000882 case PERF_RECORD_HEADER_BUILD_ID:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200883 return tool->build_id(tool, event, session);
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000884 case PERF_RECORD_FINISHED_ROUND:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200885 return tool->finished_round(tool, event, session);
Thomas Gleixnerba74f062010-12-07 12:49:01 +0000886 default:
887 return -EINVAL;
888 }
889}
890
Jiri Olsa268fb202012-05-30 14:23:43 +0200891static void event_swap(union perf_event *event, bool sample_id_all)
892{
893 perf_event__swap_op swap;
894
895 swap = perf_event__swap_ops[event->header.type];
896 if (swap)
897 swap(event, sample_id_all);
898}
899
Adrian Hunterd5652d82014-07-23 22:19:58 +0300900static s64 perf_session__process_event(struct perf_session *session,
David Aherne30b88a2013-08-05 21:41:33 -0400901 union perf_event *event,
902 struct perf_tool *tool,
903 u64 file_offset)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200904{
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200905 struct perf_sample sample;
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100906 int ret;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200907
Jiri Olsa268fb202012-05-30 14:23:43 +0200908 if (session->header.needs_swap)
Arnaldo Carvalho de Melo5e562472012-08-01 19:25:26 -0300909 event_swap(event, perf_evlist__sample_id_all(session->evlist));
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200910
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000911 if (event->header.type >= PERF_RECORD_HEADER_MAX)
912 return -EINVAL;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200913
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300914 events_stats__inc(&session->stats, event->header.type);
Thomas Gleixner9aefcab2010-12-07 12:48:47 +0000915
916 if (event->header.type >= PERF_RECORD_USER_TYPE_START)
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200917 return perf_session__process_user_event(session, event, tool, file_offset);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100918
Thomas Gleixner3dfc2c02010-12-07 12:48:58 +0000919 /*
920 * For all kernel events we get the sample data
921 */
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -0300922 ret = perf_evlist__parse_sample(session->evlist, event, &sample);
Frederic Weisbecker5538bec2011-05-22 02:17:22 +0200923 if (ret)
924 return ret;
Thomas Gleixner3dfc2c02010-12-07 12:48:58 +0000925
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200926 if (tool->ordered_events) {
Jiri Olsad40b4a12014-08-01 13:01:04 -0300927 ret = perf_session_queue_event(session, event, tool, &sample,
Thomas Gleixnere4c2df12010-12-07 12:48:50 +0000928 file_offset);
Thomas Gleixnercbf41642010-12-05 14:32:55 +0100929 if (ret != -ETIME)
930 return ret;
931 }
932
Jiri Olsa79a30fe2014-06-10 22:31:35 +0200933 return perf_session__deliver_event(session, event, &sample, tool,
934 file_offset);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200935}
936
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300937void perf_event_header__bswap(struct perf_event_header *hdr)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200938{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300939 hdr->type = bswap_32(hdr->type);
940 hdr->misc = bswap_16(hdr->misc);
941 hdr->size = bswap_16(hdr->size);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200942}
943
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200944struct thread *perf_session__findnew(struct perf_session *session, pid_t pid)
945{
Adrian Hunter1fcb8762014-07-14 13:02:25 +0300946 return machine__findnew_thread(&session->machines.host, -1, pid);
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200947}
948
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300949static struct thread *perf_session__register_idle_thread(struct perf_session *session)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200950{
Adrian Hunter1fcb8762014-07-14 13:02:25 +0300951 struct thread *thread;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200952
Adrian Hunter1fcb8762014-07-14 13:02:25 +0300953 thread = machine__findnew_thread(&session->machines.host, 0, 0);
Frederic Weisbecker162f0be2013-09-11 16:18:24 +0200954 if (thread == NULL || thread__set_comm(thread, "swapper", 0)) {
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200955 pr_err("problem inserting idle task.\n");
956 thread = NULL;
957 }
958
959 return thread;
960}
961
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200962static void perf_session__warn_about_errors(const struct perf_session *session,
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200963 const struct perf_tool *tool)
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200964{
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200965 if (tool->lost == perf_event__process_lost &&
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300966 session->stats.nr_events[PERF_RECORD_LOST] != 0) {
Arnaldo Carvalho de Melo7b275092011-10-29 12:15:04 -0200967 ui__warning("Processed %d events and lost %d chunks!\n\n"
968 "Check IO/CPU overload!\n\n",
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300969 session->stats.nr_events[0],
970 session->stats.nr_events[PERF_RECORD_LOST]);
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200971 }
972
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300973 if (session->stats.nr_unknown_events != 0) {
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200974 ui__warning("Found %u unknown events!\n\n"
975 "Is this an older tool processing a perf.data "
976 "file generated by a more recent tool?\n\n"
977 "If that is not the case, consider "
978 "reporting to linux-kernel@vger.kernel.org.\n\n",
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300979 session->stats.nr_unknown_events);
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200980 }
981
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300982 if (session->stats.nr_unknown_id != 0) {
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300983 ui__warning("%u samples with id not present in the header\n",
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300984 session->stats.nr_unknown_id);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300985 }
986
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300987 if (session->stats.nr_invalid_chains != 0) {
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200988 ui__warning("Found invalid callchains!\n\n"
989 "%u out of %u events were discarded for this reason.\n\n"
990 "Consider reporting to linux-kernel@vger.kernel.org.\n\n",
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300991 session->stats.nr_invalid_chains,
992 session->stats.nr_events[PERF_RECORD_SAMPLE]);
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -0200993 }
Joerg Roedel0c095712012-02-10 18:05:04 +0100994
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300995 if (session->stats.nr_unprocessable_samples != 0) {
Joerg Roedel0c095712012-02-10 18:05:04 +0100996 ui__warning("%u unprocessable samples recorded.\n"
997 "Do you have a KVM guest running and not using 'perf kvm'?\n",
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300998 session->stats.nr_unprocessable_samples);
Joerg Roedel0c095712012-02-10 18:05:04 +0100999 }
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -02001000}
1001
Tom Zanussi8dc58102010-04-01 23:59:15 -05001002volatile int session_done;
1003
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001004static int __perf_session__process_pipe_events(struct perf_session *session,
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001005 struct perf_tool *tool)
Tom Zanussi8dc58102010-04-01 23:59:15 -05001006{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001007 int fd = perf_data_file__fd(session->file);
Stephane Eranian444d2862012-05-15 13:28:12 +02001008 union perf_event *event;
1009 uint32_t size, cur_size = 0;
1010 void *buf = NULL;
Adrian Hunterd5652d82014-07-23 22:19:58 +03001011 s64 skip = 0;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001012 u64 head;
Jiri Olsa727ebd52013-11-28 11:30:14 +01001013 ssize_t err;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001014 void *p;
1015
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001016 perf_tool__fill_defaults(tool);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001017
1018 head = 0;
Stephane Eranian444d2862012-05-15 13:28:12 +02001019 cur_size = sizeof(union perf_event);
1020
1021 buf = malloc(cur_size);
1022 if (!buf)
1023 return -errno;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001024more:
Stephane Eranian444d2862012-05-15 13:28:12 +02001025 event = buf;
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001026 err = readn(fd, event, sizeof(struct perf_event_header));
Tom Zanussi8dc58102010-04-01 23:59:15 -05001027 if (err <= 0) {
1028 if (err == 0)
1029 goto done;
1030
1031 pr_err("failed to read event header\n");
1032 goto out_err;
1033 }
1034
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001035 if (session->header.needs_swap)
Stephane Eranian444d2862012-05-15 13:28:12 +02001036 perf_event_header__bswap(&event->header);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001037
Stephane Eranian444d2862012-05-15 13:28:12 +02001038 size = event->header.size;
Adrian Hunter27389d72013-07-04 16:20:27 +03001039 if (size < sizeof(struct perf_event_header)) {
1040 pr_err("bad event header size\n");
1041 goto out_err;
1042 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05001043
Stephane Eranian444d2862012-05-15 13:28:12 +02001044 if (size > cur_size) {
1045 void *new = realloc(buf, size);
1046 if (!new) {
1047 pr_err("failed to allocate memory to read event\n");
1048 goto out_err;
1049 }
1050 buf = new;
1051 cur_size = size;
1052 event = buf;
1053 }
1054 p = event;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001055 p += sizeof(struct perf_event_header);
1056
Tom Zanussi794e43b2010-05-05 00:27:40 -05001057 if (size - sizeof(struct perf_event_header)) {
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001058 err = readn(fd, p, size - sizeof(struct perf_event_header));
Tom Zanussi794e43b2010-05-05 00:27:40 -05001059 if (err <= 0) {
1060 if (err == 0) {
1061 pr_err("unexpected end of event stream\n");
1062 goto done;
1063 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05001064
Tom Zanussi794e43b2010-05-05 00:27:40 -05001065 pr_err("failed to read event data\n");
1066 goto out_err;
1067 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05001068 }
1069
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001070 if ((skip = perf_session__process_event(session, event, tool, head)) < 0) {
Jiri Olsa9389a462012-04-16 20:42:51 +02001071 pr_err("%#" PRIx64 " [%#x]: failed to process type: %d\n",
Stephane Eranian444d2862012-05-15 13:28:12 +02001072 head, event->header.size, event->header.type);
Jiri Olsa9389a462012-04-16 20:42:51 +02001073 err = -EINVAL;
1074 goto out_err;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001075 }
1076
1077 head += size;
1078
Tom Zanussi8dc58102010-04-01 23:59:15 -05001079 if (skip > 0)
1080 head += skip;
1081
1082 if (!session_done())
1083 goto more;
1084done:
Adrian Hunter8c16b642013-10-18 15:29:02 +03001085 /* do the final flush for ordered samples */
Jiri Olsad8836b52014-06-05 10:29:45 +02001086 err = ordered_events__flush(session, tool, OE_FLUSH__FINAL);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001087out_err:
Stephane Eranian444d2862012-05-15 13:28:12 +02001088 free(buf);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001089 perf_session__warn_about_errors(session, tool);
Jiri Olsaadc56ed2014-06-10 22:50:03 +02001090 ordered_events__free(&session->ordered_events);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001091 return err;
1092}
1093
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02001094static union perf_event *
1095fetch_mmaped_event(struct perf_session *session,
1096 u64 head, size_t mmap_size, char *buf)
1097{
1098 union perf_event *event;
1099
1100 /*
1101 * Ensure we have enough space remaining to read
1102 * the size of the event in the headers.
1103 */
1104 if (head + sizeof(event->header) > mmap_size)
1105 return NULL;
1106
1107 event = (union perf_event *)(buf + head);
1108
1109 if (session->header.needs_swap)
1110 perf_event_header__bswap(&event->header);
1111
Adrian Hunter27389d72013-07-04 16:20:27 +03001112 if (head + event->header.size > mmap_size) {
1113 /* We're not fetching the event so swap back again */
1114 if (session->header.needs_swap)
1115 perf_event_header__bswap(&event->header);
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02001116 return NULL;
Adrian Hunter27389d72013-07-04 16:20:27 +03001117 }
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02001118
1119 return event;
1120}
1121
David Miller35d48dd2012-11-10 14:12:19 -05001122/*
1123 * On 64bit we can mmap the data file in one go. No need for tiny mmap
1124 * slices. On 32bit we use 32MB.
1125 */
1126#if BITS_PER_LONG == 64
1127#define MMAP_SIZE ULLONG_MAX
1128#define NUM_MMAPS 1
1129#else
1130#define MMAP_SIZE (32 * 1024 * 1024ULL)
1131#define NUM_MMAPS 128
1132#endif
1133
Thomas Gleixner0331ee02010-11-30 17:49:38 +00001134int __perf_session__process_events(struct perf_session *session,
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02001135 u64 data_offset, u64 data_size,
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001136 u64 file_size, struct perf_tool *tool)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001137{
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001138 int fd = perf_data_file__fd(session->file);
Adrian Hunterd5652d82014-07-23 22:19:58 +03001139 u64 head, page_offset, file_offset, file_pos, size;
Thomas Gleixnerfe174202010-11-30 17:49:49 +00001140 int err, mmap_prot, mmap_flags, map_idx = 0;
Arnaldo Carvalho de Melo0c1fe6b2012-10-06 14:57:10 -03001141 size_t mmap_size;
David Miller35d48dd2012-11-10 14:12:19 -05001142 char *buf, *mmaps[NUM_MMAPS];
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02001143 union perf_event *event;
Arnaldo Carvalho de Melo4d3001f2013-10-23 15:40:38 -03001144 struct ui_progress prog;
Adrian Hunterd5652d82014-07-23 22:19:58 +03001145 s64 skip;
Thomas Gleixner0331ee02010-11-30 17:49:38 +00001146
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001147 perf_tool__fill_defaults(tool);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001148
Thomas Gleixner0331ee02010-11-30 17:49:38 +00001149 page_offset = page_size * (data_offset / page_size);
1150 file_offset = page_offset;
1151 head = data_offset - page_offset;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001152
Namhyung Kimb314e5c2013-09-30 17:19:48 +09001153 if (data_size && (data_offset + data_size < file_size))
Thomas Gleixnerd6513282010-11-30 17:49:44 +00001154 file_size = data_offset + data_size;
1155
Arnaldo Carvalho de Melo4d3001f2013-10-23 15:40:38 -03001156 ui_progress__init(&prog, file_size, "Processing events...");
Thomas Gleixner55b44622010-11-30 17:49:46 +00001157
David Miller35d48dd2012-11-10 14:12:19 -05001158 mmap_size = MMAP_SIZE;
Adrian Hunter919d86d2014-07-14 13:02:51 +03001159 if (mmap_size > file_size) {
Thomas Gleixner55b44622010-11-30 17:49:46 +00001160 mmap_size = file_size;
Adrian Hunter919d86d2014-07-14 13:02:51 +03001161 session->one_mmap = true;
1162 }
Thomas Gleixner55b44622010-11-30 17:49:46 +00001163
Thomas Gleixnerfe174202010-11-30 17:49:49 +00001164 memset(mmaps, 0, sizeof(mmaps));
1165
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02001166 mmap_prot = PROT_READ;
1167 mmap_flags = MAP_SHARED;
1168
Thomas Gleixner0331ee02010-11-30 17:49:38 +00001169 if (session->header.needs_swap) {
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02001170 mmap_prot |= PROT_WRITE;
1171 mmap_flags = MAP_PRIVATE;
1172 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001173remap:
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001174 buf = mmap(NULL, mmap_size, mmap_prot, mmap_flags, fd,
Thomas Gleixner55b44622010-11-30 17:49:46 +00001175 file_offset);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001176 if (buf == MAP_FAILED) {
1177 pr_err("failed to mmap file\n");
1178 err = -errno;
1179 goto out_err;
1180 }
Thomas Gleixnerfe174202010-11-30 17:49:49 +00001181 mmaps[map_idx] = buf;
1182 map_idx = (map_idx + 1) & (ARRAY_SIZE(mmaps) - 1);
Thomas Gleixnerd6513282010-11-30 17:49:44 +00001183 file_pos = file_offset + head;
Adrian Hunter919d86d2014-07-14 13:02:51 +03001184 if (session->one_mmap) {
1185 session->one_mmap_addr = buf;
1186 session->one_mmap_offset = file_offset;
1187 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001188
1189more:
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02001190 event = fetch_mmaped_event(session, head, mmap_size, buf);
1191 if (!event) {
Thomas Gleixnerfe174202010-11-30 17:49:49 +00001192 if (mmaps[map_idx]) {
1193 munmap(mmaps[map_idx], mmap_size);
1194 mmaps[map_idx] = NULL;
1195 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001196
Thomas Gleixner0331ee02010-11-30 17:49:38 +00001197 page_offset = page_size * (head / page_size);
1198 file_offset += page_offset;
1199 head -= page_offset;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001200 goto remap;
1201 }
1202
1203 size = event->header.size;
1204
Adrian Hunter27389d72013-07-04 16:20:27 +03001205 if (size < sizeof(struct perf_event_header) ||
Adrian Hunter6f917c72014-07-23 22:19:57 +03001206 (skip = perf_session__process_event(session, event, tool, file_pos))
1207 < 0) {
Jiri Olsa9389a462012-04-16 20:42:51 +02001208 pr_err("%#" PRIx64 " [%#x]: failed to process type: %d\n",
1209 file_offset + head, event->header.size,
1210 event->header.type);
1211 err = -EINVAL;
1212 goto out_err;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001213 }
1214
Adrian Hunter6f917c72014-07-23 22:19:57 +03001215 if (skip)
1216 size += skip;
1217
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001218 head += size;
Thomas Gleixnerd6513282010-11-30 17:49:44 +00001219 file_pos += size;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001220
Arnaldo Carvalho de Melo4d3001f2013-10-23 15:40:38 -03001221 ui_progress__update(&prog, size);
Thomas Gleixner55b44622010-11-30 17:49:46 +00001222
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -03001223 if (session_done())
Adrian Hunter8c16b642013-10-18 15:29:02 +03001224 goto out;
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -03001225
Thomas Gleixnerd6513282010-11-30 17:49:44 +00001226 if (file_pos < file_size)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001227 goto more;
Thomas Gleixnerd6513282010-11-30 17:49:44 +00001228
Adrian Hunter8c16b642013-10-18 15:29:02 +03001229out:
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +02001230 /* do the final flush for ordered samples */
Jiri Olsad8836b52014-06-05 10:29:45 +02001231 err = ordered_events__flush(session, tool, OE_FLUSH__FINAL);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001232out_err:
Namhyung Kima5580f32012-11-13 22:30:34 +09001233 ui_progress__finish();
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001234 perf_session__warn_about_errors(session, tool);
Jiri Olsaadc56ed2014-06-10 22:50:03 +02001235 ordered_events__free(&session->ordered_events);
Adrian Hunter919d86d2014-07-14 13:02:51 +03001236 session->one_mmap = false;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001237 return err;
1238}
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02001239
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001240int perf_session__process_events(struct perf_session *session,
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001241 struct perf_tool *tool)
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02001242{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001243 u64 size = perf_data_file__size(session->file);
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02001244 int err;
1245
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001246 if (perf_session__register_idle_thread(session) == NULL)
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02001247 return -ENOMEM;
1248
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001249 if (!perf_data_file__is_pipe(session->file))
1250 err = __perf_session__process_events(session,
1251 session->header.data_offset,
1252 session->header.data_size,
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001253 size, tool);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001254 else
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001255 err = __perf_session__process_pipe_events(session, tool);
Dave Martin88ca8952010-07-27 11:46:12 -03001256
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02001257 return err;
1258}
1259
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03001260bool perf_session__has_traces(struct perf_session *session, const char *msg)
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02001261{
David Ahern93ea01c2013-08-07 22:50:58 -04001262 struct perf_evsel *evsel;
1263
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001264 evlist__for_each(session->evlist, evsel) {
David Ahern93ea01c2013-08-07 22:50:58 -04001265 if (evsel->attr.type == PERF_TYPE_TRACEPOINT)
1266 return true;
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02001267 }
1268
David Ahern93ea01c2013-08-07 22:50:58 -04001269 pr_err("No trace sample to read. Did you call 'perf %s'?\n", msg);
1270 return false;
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02001271}
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001272
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001273int maps__set_kallsyms_ref_reloc_sym(struct map **maps,
1274 const char *symbol_name, u64 addr)
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001275{
1276 char *bracket;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -02001277 enum map_type i;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001278 struct ref_reloc_sym *ref;
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001279
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001280 ref = zalloc(sizeof(struct ref_reloc_sym));
1281 if (ref == NULL)
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001282 return -ENOMEM;
1283
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001284 ref->name = strdup(symbol_name);
1285 if (ref->name == NULL) {
1286 free(ref);
1287 return -ENOMEM;
1288 }
1289
1290 bracket = strchr(ref->name, ']');
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001291 if (bracket)
1292 *bracket = '\0';
1293
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001294 ref->addr = addr;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -02001295
1296 for (i = 0; i < MAP__NR_TYPES; ++i) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001297 struct kmap *kmap = map__kmap(maps[i]);
1298 kmap->ref_reloc_sym = ref;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -02001299 }
1300
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02001301 return 0;
1302}
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -03001303
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001304size_t perf_session__fprintf_dsos(struct perf_session *session, FILE *fp)
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -03001305{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001306 return machines__fprintf_dsos(&session->machines, fp);
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -03001307}
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -03001308
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001309size_t perf_session__fprintf_dsos_buildid(struct perf_session *session, FILE *fp,
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -03001310 bool (skip)(struct dso *dso, int parm), int parm)
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -03001311{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001312 return machines__fprintf_dsos_buildid(&session->machines, fp, skip, parm);
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -03001313}
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03001314
1315size_t perf_session__fprintf_nr_events(struct perf_session *session, FILE *fp)
1316{
1317 struct perf_evsel *pos;
1318 size_t ret = fprintf(fp, "Aggregated stats:\n");
1319
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -03001320 ret += events_stats__fprintf(&session->stats, fp);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03001321
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001322 evlist__for_each(session->evlist, pos) {
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -03001323 ret += fprintf(fp, "%s stats:\n", perf_evsel__name(pos));
Arnaldo Carvalho de Melo52168ee2012-12-18 16:02:17 -03001324 ret += events_stats__fprintf(&pos->hists.stats, fp);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03001325 }
1326
1327 return ret;
1328}
David Ahernc0230b22011-03-09 22:23:27 -07001329
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -02001330size_t perf_session__fprintf(struct perf_session *session, FILE *fp)
1331{
1332 /*
1333 * FIXME: Here we have to actually print all the machines in this
1334 * session, not just the host...
1335 */
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -03001336 return machine__fprintf(&session->machines.host, fp);
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -02001337}
1338
David Ahern9cbdb702011-04-06 21:54:20 -06001339struct perf_evsel *perf_session__find_first_evtype(struct perf_session *session,
1340 unsigned int type)
1341{
1342 struct perf_evsel *pos;
1343
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001344 evlist__for_each(session->evlist, pos) {
David Ahern9cbdb702011-04-06 21:54:20 -06001345 if (pos->attr.type == type)
1346 return pos;
1347 }
1348 return NULL;
1349}
1350
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001351void perf_evsel__print_ip(struct perf_evsel *evsel, struct perf_sample *sample,
Arnaldo Carvalho de Melocc22e572013-12-19 17:20:06 -03001352 struct addr_location *al,
David Ahern307cbb92013-08-07 22:50:53 -04001353 unsigned int print_opts, unsigned int stack_depth)
David Ahernc0230b22011-03-09 22:23:27 -07001354{
David Ahernc0230b22011-03-09 22:23:27 -07001355 struct callchain_cursor_node *node;
David Aherna6ffaf92013-08-07 22:50:51 -04001356 int print_ip = print_opts & PRINT_IP_OPT_IP;
1357 int print_sym = print_opts & PRINT_IP_OPT_SYM;
1358 int print_dso = print_opts & PRINT_IP_OPT_DSO;
1359 int print_symoffset = print_opts & PRINT_IP_OPT_SYMOFFSET;
David Ahernb0b35f02013-08-07 22:50:52 -04001360 int print_oneline = print_opts & PRINT_IP_OPT_ONELINE;
Adrian Huntercc8fae12013-12-06 09:42:57 +02001361 int print_srcline = print_opts & PRINT_IP_OPT_SRCLINE;
David Ahernb0b35f02013-08-07 22:50:52 -04001362 char s = print_oneline ? ' ' : '\t';
David Ahernc0230b22011-03-09 22:23:27 -07001363
David Ahernc0230b22011-03-09 22:23:27 -07001364 if (symbol_conf.use_callchain && sample->callchain) {
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001365 struct addr_location node_al;
David Ahernc0230b22011-03-09 22:23:27 -07001366
Arnaldo Carvalho de Melocc22e572013-12-19 17:20:06 -03001367 if (machine__resolve_callchain(al->machine, evsel, al->thread,
Waiman Long91e95612013-10-18 10:38:48 -04001368 sample, NULL, NULL,
1369 PERF_MAX_STACK_DEPTH) != 0) {
David Ahernc0230b22011-03-09 22:23:27 -07001370 if (verbose)
1371 error("Failed to resolve callchain. Skipping\n");
1372 return;
1373 }
Namhyung Kim47260642012-05-31 14:43:26 +09001374 callchain_cursor_commit(&callchain_cursor);
David Ahernc0230b22011-03-09 22:23:27 -07001375
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001376 if (print_symoffset)
1377 node_al = *al;
1378
David Ahern307cbb92013-08-07 22:50:53 -04001379 while (stack_depth) {
Adrian Huntera4eb24a2013-12-06 09:42:56 +02001380 u64 addr = 0;
1381
Namhyung Kim47260642012-05-31 14:43:26 +09001382 node = callchain_cursor_current(&callchain_cursor);
David Ahernc0230b22011-03-09 22:23:27 -07001383 if (!node)
1384 break;
1385
David Ahernd2ff1b12013-11-18 13:32:44 -07001386 if (node->sym && node->sym->ignore)
1387 goto next;
1388
David Aherna6ffaf92013-08-07 22:50:51 -04001389 if (print_ip)
David Ahernb0b35f02013-08-07 22:50:52 -04001390 printf("%c%16" PRIx64, s, node->ip);
David Aherna6ffaf92013-08-07 22:50:51 -04001391
Adrian Huntera4eb24a2013-12-06 09:42:56 +02001392 if (node->map)
1393 addr = node->map->map_ip(node->map, node->ip);
1394
David Ahern787bef12011-05-27 14:28:43 -06001395 if (print_sym) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001396 printf(" ");
David Ahern251f4262013-07-28 09:14:34 -06001397 if (print_symoffset) {
Adrian Huntera4eb24a2013-12-06 09:42:56 +02001398 node_al.addr = addr;
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001399 node_al.map = node->map;
1400 symbol__fprintf_symname_offs(node->sym, &node_al, stdout);
David Ahern251f4262013-07-28 09:14:34 -06001401 } else
1402 symbol__fprintf_symname(node->sym, stdout);
David Ahern610723f2011-05-27 14:28:44 -06001403 }
David Ahern251f4262013-07-28 09:14:34 -06001404
David Ahern610723f2011-05-27 14:28:44 -06001405 if (print_dso) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001406 printf(" (");
David Ahern52deff72012-05-29 22:58:26 -06001407 map__fprintf_dsoname(node->map, stdout);
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001408 printf(")");
David Ahern787bef12011-05-27 14:28:43 -06001409 }
David Ahernb0b35f02013-08-07 22:50:52 -04001410
Adrian Huntercc8fae12013-12-06 09:42:57 +02001411 if (print_srcline)
1412 map__fprintf_srcline(node->map, addr, "\n ",
1413 stdout);
1414
David Ahernb0b35f02013-08-07 22:50:52 -04001415 if (!print_oneline)
1416 printf("\n");
David Ahernc0230b22011-03-09 22:23:27 -07001417
David Ahern307cbb92013-08-07 22:50:53 -04001418 stack_depth--;
David Ahernd2ff1b12013-11-18 13:32:44 -07001419next:
1420 callchain_cursor_advance(&callchain_cursor);
David Ahernc0230b22011-03-09 22:23:27 -07001421 }
1422
1423 } else {
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001424 if (al->sym && al->sym->ignore)
David Ahernd2ff1b12013-11-18 13:32:44 -07001425 return;
1426
David Aherna6ffaf92013-08-07 22:50:51 -04001427 if (print_ip)
1428 printf("%16" PRIx64, sample->ip);
1429
David Ahern787bef12011-05-27 14:28:43 -06001430 if (print_sym) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001431 printf(" ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001432 if (print_symoffset)
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001433 symbol__fprintf_symname_offs(al->sym, al,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001434 stdout);
1435 else
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001436 symbol__fprintf_symname(al->sym, stdout);
David Ahern610723f2011-05-27 14:28:44 -06001437 }
1438
1439 if (print_dso) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001440 printf(" (");
Adrian Huntera2cb3cf2013-12-04 16:16:36 +02001441 map__fprintf_dsoname(al->map, stdout);
Akihiro Nagai547a92e2012-01-30 13:42:57 +09001442 printf(")");
David Ahern787bef12011-05-27 14:28:43 -06001443 }
Adrian Huntercc8fae12013-12-06 09:42:57 +02001444
1445 if (print_srcline)
1446 map__fprintf_srcline(al->map, al->addr, "\n ", stdout);
David Ahernc0230b22011-03-09 22:23:27 -07001447 }
1448}
Anton Blanchard5d67be92011-07-04 21:57:50 +10001449
1450int perf_session__cpu_bitmap(struct perf_session *session,
1451 const char *cpu_list, unsigned long *cpu_bitmap)
1452{
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04001453 int i, err = -1;
Anton Blanchard5d67be92011-07-04 21:57:50 +10001454 struct cpu_map *map;
1455
1456 for (i = 0; i < PERF_TYPE_MAX; ++i) {
1457 struct perf_evsel *evsel;
1458
1459 evsel = perf_session__find_first_evtype(session, i);
1460 if (!evsel)
1461 continue;
1462
1463 if (!(evsel->attr.sample_type & PERF_SAMPLE_CPU)) {
1464 pr_err("File does not contain CPU events. "
1465 "Remove -c option to proceed.\n");
1466 return -1;
1467 }
1468 }
1469
1470 map = cpu_map__new(cpu_list);
David Ahern47fbe532011-11-13 10:45:27 -07001471 if (map == NULL) {
1472 pr_err("Invalid cpu_list\n");
1473 return -1;
1474 }
Anton Blanchard5d67be92011-07-04 21:57:50 +10001475
1476 for (i = 0; i < map->nr; i++) {
1477 int cpu = map->map[i];
1478
1479 if (cpu >= MAX_NR_CPUS) {
1480 pr_err("Requested CPU %d too large. "
1481 "Consider raising MAX_NR_CPUS\n", cpu);
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04001482 goto out_delete_map;
Anton Blanchard5d67be92011-07-04 21:57:50 +10001483 }
1484
1485 set_bit(cpu, cpu_bitmap);
1486 }
1487
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04001488 err = 0;
1489
1490out_delete_map:
1491 cpu_map__delete(map);
1492 return err;
Anton Blanchard5d67be92011-07-04 21:57:50 +10001493}
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001494
1495void perf_session__fprintf_info(struct perf_session *session, FILE *fp,
1496 bool full)
1497{
1498 struct stat st;
Masanari Iidac5765ec2014-05-15 02:13:38 +09001499 int fd, ret;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001500
1501 if (session == NULL || fp == NULL)
1502 return;
1503
Masanari Iidac5765ec2014-05-15 02:13:38 +09001504 fd = perf_data_file__fd(session->file);
1505
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001506 ret = fstat(fd, &st);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001507 if (ret == -1)
1508 return;
1509
1510 fprintf(fp, "# ========\n");
1511 fprintf(fp, "# captured on: %s", ctime(&st.st_ctime));
1512 perf_header__fprintf_info(session, fp, full);
1513 fprintf(fp, "# ========\n#\n");
1514}
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001515
1516
1517int __perf_session__set_tracepoints_handlers(struct perf_session *session,
1518 const struct perf_evsel_str_handler *assocs,
1519 size_t nr_assocs)
1520{
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001521 struct perf_evsel *evsel;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001522 size_t i;
1523 int err;
1524
1525 for (i = 0; i < nr_assocs; i++) {
Arnaldo Carvalho de Meloccf53ea2013-09-06 15:19:01 -03001526 /*
1527 * Adding a handler for an event not in the session,
1528 * just ignore it.
1529 */
1530 evsel = perf_evlist__find_tracepoint_by_name(session->evlist, assocs[i].name);
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001531 if (evsel == NULL)
Arnaldo Carvalho de Meloccf53ea2013-09-06 15:19:01 -03001532 continue;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001533
1534 err = -EEXIST;
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -03001535 if (evsel->handler != NULL)
Arnaldo Carvalho de Meloccf53ea2013-09-06 15:19:01 -03001536 goto out;
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -03001537 evsel->handler = assocs[i].handler;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001538 }
1539
1540 err = 0;
1541out:
1542 return err;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001543}