blob: 23baee7b786aa6c6e89c0a7b121046e590b3a452 [file] [log] [blame]
Steven Rostedt538bafb2009-08-17 16:18:06 +02001/*
2 * Copyright (C) 2009, Steven Rostedt <srostedt@redhat.com>
3 *
4 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License (not later!)
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 */
Steven Rostedt538bafb2009-08-17 16:18:06 +020021#include <dirent.h>
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
Steven Rostedt538bafb2009-08-17 16:18:06 +020025#include <stdarg.h>
26#include <sys/types.h>
27#include <sys/stat.h>
28#include <sys/wait.h>
29#include <sys/mman.h>
30#include <pthread.h>
31#include <fcntl.h>
32#include <unistd.h>
Steven Rostedt538bafb2009-08-17 16:18:06 +020033#include <errno.h>
34
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +020035#include "../perf.h"
Steven Rostedt538bafb2009-08-17 16:18:06 +020036#include "util.h"
37#include "trace-event.h"
Jiri Olsa84f5d362014-07-14 23:46:48 +020038#include "debug.h"
Steven Rostedt538bafb2009-08-17 16:18:06 +020039
40static int input_fd;
41
Namhyung Kimebf3c672013-03-21 16:18:52 +090042static ssize_t trace_data_size;
Tom Zanussi454c4072010-05-01 01:41:20 -050043static bool repipe;
Tom Zanussi92155452010-04-01 23:59:21 -050044
Namhyung Kim4a31e562013-03-21 16:18:50 +090045static int __do_read(int fd, void *buf, int size)
Tom Zanussi92155452010-04-01 23:59:21 -050046{
47 int rsize = size;
48
49 while (size) {
50 int ret = read(fd, buf, size);
51
52 if (ret <= 0)
53 return -1;
54
Tom Zanussi454c4072010-05-01 01:41:20 -050055 if (repipe) {
56 int retw = write(STDOUT_FILENO, buf, ret);
57
Namhyung Kim4a31e562013-03-21 16:18:50 +090058 if (retw <= 0 || retw != ret) {
59 pr_debug("repiping input file");
60 return -1;
61 }
Tom Zanussi454c4072010-05-01 01:41:20 -050062 }
63
Tom Zanussi92155452010-04-01 23:59:21 -050064 size -= ret;
65 buf += ret;
66 }
67
68 return rsize;
69}
70
Namhyung Kim4a31e562013-03-21 16:18:50 +090071static int do_read(void *data, int size)
Steven Rostedt538bafb2009-08-17 16:18:06 +020072{
73 int r;
74
Namhyung Kim4a31e562013-03-21 16:18:50 +090075 r = __do_read(input_fd, data, size);
76 if (r <= 0) {
77 pr_debug("reading input file (size expected=%d received=%d)",
78 size, r);
79 return -1;
80 }
Tom Zanussi92155452010-04-01 23:59:21 -050081
Namhyung Kimebf3c672013-03-21 16:18:52 +090082 trace_data_size += r;
Tom Zanussi92155452010-04-01 23:59:21 -050083
Steven Rostedt538bafb2009-08-17 16:18:06 +020084 return r;
85}
86
Tom Zanussicbb5cf72010-05-04 23:02:10 -050087/* If it fails, the next read will report it */
88static void skip(int size)
89{
90 char buf[BUFSIZ];
91 int r;
92
93 while (size) {
94 r = size > BUFSIZ ? BUFSIZ : size;
Namhyung Kim4a31e562013-03-21 16:18:50 +090095 do_read(buf, r);
Tom Zanussicbb5cf72010-05-04 23:02:10 -050096 size -= r;
97 };
98}
99
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300100static unsigned int read4(struct pevent *pevent)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200101{
102 unsigned int data;
103
Namhyung Kim4a31e562013-03-21 16:18:50 +0900104 if (do_read(&data, 4) < 0)
105 return 0;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300106 return __data2host4(pevent, data);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200107}
108
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300109static unsigned long long read8(struct pevent *pevent)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200110{
111 unsigned long long data;
112
Namhyung Kim4a31e562013-03-21 16:18:50 +0900113 if (do_read(&data, 8) < 0)
114 return 0;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300115 return __data2host8(pevent, data);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200116}
117
118static char *read_string(void)
119{
120 char buf[BUFSIZ];
121 char *str = NULL;
122 int size = 0;
Xiao Guangrongf887f302010-02-04 16:46:42 +0800123 off_t r;
Tom Zanussi92155452010-04-01 23:59:21 -0500124 char c;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200125
126 for (;;) {
Tom Zanussi92155452010-04-01 23:59:21 -0500127 r = read(input_fd, &c, 1);
Namhyung Kim452958f2013-03-21 16:18:51 +0900128 if (r < 0) {
129 pr_debug("reading input file");
130 goto out;
131 }
Steven Rostedt538bafb2009-08-17 16:18:06 +0200132
Namhyung Kim452958f2013-03-21 16:18:51 +0900133 if (!r) {
134 pr_debug("no data");
135 goto out;
136 }
Steven Rostedt538bafb2009-08-17 16:18:06 +0200137
Tom Zanussi454c4072010-05-01 01:41:20 -0500138 if (repipe) {
139 int retw = write(STDOUT_FILENO, &c, 1);
140
Namhyung Kim452958f2013-03-21 16:18:51 +0900141 if (retw <= 0 || retw != r) {
142 pr_debug("repiping input file string");
143 goto out;
144 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500145 }
146
Tom Zanussi92155452010-04-01 23:59:21 -0500147 buf[size++] = c;
148
149 if (!c)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200150 break;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200151 }
152
Namhyung Kimebf3c672013-03-21 16:18:52 +0900153 trace_data_size += size;
Ingo Molnar6f4596d2009-09-03 16:22:45 +0200154
Namhyung Kima4c98362013-03-21 16:18:49 +0900155 str = malloc(size);
156 if (str)
157 memcpy(str, buf, size);
Namhyung Kim452958f2013-03-21 16:18:51 +0900158out:
Steven Rostedt538bafb2009-08-17 16:18:06 +0200159 return str;
160}
161
Namhyung Kima4c98362013-03-21 16:18:49 +0900162static int read_proc_kallsyms(struct pevent *pevent)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200163{
164 unsigned int size;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200165
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300166 size = read4(pevent);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200167 if (!size)
Namhyung Kima4c98362013-03-21 16:18:49 +0900168 return 0;
Arnaldo Carvalho de Melo4263cec2015-07-22 16:48:16 -0300169 /*
170 * Just skip it, now that we configure libtraceevent to use the
171 * tools/perf/ symbol resolver.
172 *
173 * We need to skip it so that we can continue parsing old perf.data
174 * files, that contains this /proc/kallsyms payload.
175 *
176 * Newer perf.data files will have just the 4-bytes zeros "kallsyms
177 * payload", so that older tools can continue reading it and interpret
178 * it as "no kallsyms payload is present".
179 */
180 lseek(input_fd, size, SEEK_CUR);
181 trace_data_size += size;
Namhyung Kima4c98362013-03-21 16:18:49 +0900182 return 0;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200183}
184
Namhyung Kima4c98362013-03-21 16:18:49 +0900185static int read_ftrace_printk(struct pevent *pevent)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200186{
187 unsigned int size;
188 char *buf;
189
Namhyung Kim4a31e562013-03-21 16:18:50 +0900190 /* it can have 0 size */
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300191 size = read4(pevent);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200192 if (!size)
Namhyung Kima4c98362013-03-21 16:18:49 +0900193 return 0;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200194
Namhyung Kima4c98362013-03-21 16:18:49 +0900195 buf = malloc(size);
196 if (buf == NULL)
197 return -1;
198
Namhyung Kim4a31e562013-03-21 16:18:50 +0900199 if (do_read(buf, size) < 0) {
200 free(buf);
201 return -1;
202 }
Steven Rostedt538bafb2009-08-17 16:18:06 +0200203
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300204 parse_ftrace_printk(pevent, buf, size);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200205
206 free(buf);
Namhyung Kima4c98362013-03-21 16:18:49 +0900207 return 0;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200208}
209
Namhyung Kima4c98362013-03-21 16:18:49 +0900210static int read_header_files(struct pevent *pevent)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200211{
212 unsigned long long size;
Namhyung Kim94b4d892013-06-04 14:20:26 +0900213 char *header_page;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200214 char buf[BUFSIZ];
Namhyung Kim4a31e562013-03-21 16:18:50 +0900215 int ret = 0;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200216
Namhyung Kim4a31e562013-03-21 16:18:50 +0900217 if (do_read(buf, 12) < 0)
218 return -1;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200219
Namhyung Kim452958f2013-03-21 16:18:51 +0900220 if (memcmp(buf, "header_page", 12) != 0) {
221 pr_debug("did not read header page");
222 return -1;
223 }
Steven Rostedt538bafb2009-08-17 16:18:06 +0200224
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300225 size = read8(pevent);
Namhyung Kim94b4d892013-06-04 14:20:26 +0900226
227 header_page = malloc(size);
228 if (header_page == NULL)
229 return -1;
230
231 if (do_read(header_page, size) < 0) {
232 pr_debug("did not read header page");
233 free(header_page);
234 return -1;
235 }
236
237 if (!pevent_parse_header_page(pevent, header_page, size,
238 pevent_get_long_size(pevent))) {
239 /*
240 * The commit field in the page is of type long,
241 * use that instead, since it represents the kernel.
242 */
243 pevent_set_long_size(pevent, pevent->header_page_size_size);
244 }
245 free(header_page);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200246
Namhyung Kim4a31e562013-03-21 16:18:50 +0900247 if (do_read(buf, 13) < 0)
248 return -1;
249
Namhyung Kim452958f2013-03-21 16:18:51 +0900250 if (memcmp(buf, "header_event", 13) != 0) {
251 pr_debug("did not read header event");
252 return -1;
253 }
Steven Rostedt538bafb2009-08-17 16:18:06 +0200254
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300255 size = read8(pevent);
Namhyung Kim2b2efc72013-06-04 14:20:25 +0900256 skip(size);
Namhyung Kima4c98362013-03-21 16:18:49 +0900257
Namhyung Kim4a31e562013-03-21 16:18:50 +0900258 return ret;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200259}
260
Namhyung Kima4c98362013-03-21 16:18:49 +0900261static int read_ftrace_file(struct pevent *pevent, unsigned long long size)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200262{
263 char *buf;
264
Namhyung Kima4c98362013-03-21 16:18:49 +0900265 buf = malloc(size);
266 if (buf == NULL)
267 return -1;
268
Namhyung Kim4a31e562013-03-21 16:18:50 +0900269 if (do_read(buf, size) < 0) {
270 free(buf);
271 return -1;
272 }
273
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300274 parse_ftrace_file(pevent, buf, size);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200275 free(buf);
Namhyung Kima4c98362013-03-21 16:18:49 +0900276 return 0;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200277}
278
Namhyung Kima4c98362013-03-21 16:18:49 +0900279static int read_event_file(struct pevent *pevent, char *sys,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300280 unsigned long long size)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200281{
282 char *buf;
283
Namhyung Kima4c98362013-03-21 16:18:49 +0900284 buf = malloc(size);
285 if (buf == NULL)
286 return -1;
287
Namhyung Kim4a31e562013-03-21 16:18:50 +0900288 if (do_read(buf, size) < 0) {
289 free(buf);
290 return -1;
291 }
292
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300293 parse_event_file(pevent, buf, size, sys);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200294 free(buf);
Namhyung Kima4c98362013-03-21 16:18:49 +0900295 return 0;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200296}
297
Namhyung Kima4c98362013-03-21 16:18:49 +0900298static int read_ftrace_files(struct pevent *pevent)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200299{
300 unsigned long long size;
301 int count;
302 int i;
Namhyung Kima4c98362013-03-21 16:18:49 +0900303 int ret;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200304
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300305 count = read4(pevent);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200306
307 for (i = 0; i < count; i++) {
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300308 size = read8(pevent);
Namhyung Kima4c98362013-03-21 16:18:49 +0900309 ret = read_ftrace_file(pevent, size);
310 if (ret)
311 return ret;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200312 }
Namhyung Kima4c98362013-03-21 16:18:49 +0900313 return 0;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200314}
315
Namhyung Kima4c98362013-03-21 16:18:49 +0900316static int read_event_files(struct pevent *pevent)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200317{
318 unsigned long long size;
319 char *sys;
320 int systems;
321 int count;
322 int i,x;
Namhyung Kima4c98362013-03-21 16:18:49 +0900323 int ret;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200324
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300325 systems = read4(pevent);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200326
327 for (i = 0; i < systems; i++) {
328 sys = read_string();
Namhyung Kima4c98362013-03-21 16:18:49 +0900329 if (sys == NULL)
330 return -1;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200331
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300332 count = read4(pevent);
Namhyung Kim4a31e562013-03-21 16:18:50 +0900333
Steven Rostedt538bafb2009-08-17 16:18:06 +0200334 for (x=0; x < count; x++) {
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300335 size = read8(pevent);
Namhyung Kima4c98362013-03-21 16:18:49 +0900336 ret = read_event_file(pevent, sys, size);
Sanskriti Sharma401bd182018-10-02 10:29:14 -0400337 if (ret) {
338 free(sys);
Namhyung Kima4c98362013-03-21 16:18:49 +0900339 return ret;
Sanskriti Sharma401bd182018-10-02 10:29:14 -0400340 }
Steven Rostedt538bafb2009-08-17 16:18:06 +0200341 }
Sanskriti Sharma401bd182018-10-02 10:29:14 -0400342 free(sys);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200343 }
Namhyung Kima4c98362013-03-21 16:18:49 +0900344 return 0;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200345}
346
Jiri Olsa29f5ffd2013-12-03 14:09:23 +0100347ssize_t trace_report(int fd, struct trace_event *tevent, bool __repipe)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200348{
Steven Rostedt538bafb2009-08-17 16:18:06 +0200349 char buf[BUFSIZ];
350 char test[] = { 23, 8, 68 };
351 char *version;
Ingo Molnard9340c12009-09-12 10:08:34 +0200352 int show_version = 0;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200353 int show_funcs = 0;
354 int show_printk = 0;
Namhyung Kim3dce2ce2013-03-21 16:18:48 +0900355 ssize_t size = -1;
Namhyung Kim63af28f2013-06-04 14:20:24 +0900356 int file_bigendian;
357 int host_bigendian;
Namhyung Kim59657f92013-06-04 14:20:23 +0900358 int file_long_size;
Namhyung Kim30f36762013-06-04 14:20:22 +0900359 int file_page_size;
Jiri Olsa29f5ffd2013-12-03 14:09:23 +0100360 struct pevent *pevent = NULL;
Namhyung Kima4c98362013-03-21 16:18:49 +0900361 int err;
Namhyung Kim3dce2ce2013-03-21 16:18:48 +0900362
Tom Zanussi454c4072010-05-01 01:41:20 -0500363 repipe = __repipe;
Frederic Weisbecker03456a12009-10-06 23:36:47 +0200364 input_fd = fd;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200365
Namhyung Kim4a31e562013-03-21 16:18:50 +0900366 if (do_read(buf, 3) < 0)
367 return -1;
Namhyung Kim452958f2013-03-21 16:18:51 +0900368 if (memcmp(buf, test, 3) != 0) {
369 pr_debug("no trace data in the file");
370 return -1;
371 }
Steven Rostedt538bafb2009-08-17 16:18:06 +0200372
Namhyung Kim4a31e562013-03-21 16:18:50 +0900373 if (do_read(buf, 7) < 0)
374 return -1;
Namhyung Kim452958f2013-03-21 16:18:51 +0900375 if (memcmp(buf, "tracing", 7) != 0) {
376 pr_debug("not a trace file (missing 'tracing' tag)");
377 return -1;
378 }
Steven Rostedt538bafb2009-08-17 16:18:06 +0200379
380 version = read_string();
Namhyung Kima4c98362013-03-21 16:18:49 +0900381 if (version == NULL)
382 return -1;
Ingo Molnard9340c12009-09-12 10:08:34 +0200383 if (show_version)
384 printf("version = %s\n", version);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200385 free(version);
386
Namhyung Kim4a31e562013-03-21 16:18:50 +0900387 if (do_read(buf, 1) < 0)
388 return -1;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200389 file_bigendian = buf[0];
390 host_bigendian = bigendian();
391
Jiri Olsa29f5ffd2013-12-03 14:09:23 +0100392 if (trace_event__init(tevent)) {
393 pr_debug("trace_event__init failed");
Namhyung Kim3dce2ce2013-03-21 16:18:48 +0900394 goto out;
395 }
Steven Rostedtaaf045f2012-04-06 00:47:56 +0200396
Jiri Olsa29f5ffd2013-12-03 14:09:23 +0100397 pevent = tevent->pevent;
398
399 pevent_set_flag(pevent, PEVENT_NSEC_OUTPUT);
400 pevent_set_file_bigendian(pevent, file_bigendian);
401 pevent_set_host_bigendian(pevent, host_bigendian);
402
Namhyung Kim4a31e562013-03-21 16:18:50 +0900403 if (do_read(buf, 1) < 0)
404 goto out;
Namhyung Kim59657f92013-06-04 14:20:23 +0900405 file_long_size = buf[0];
Steven Rostedt538bafb2009-08-17 16:18:06 +0200406
Namhyung Kim30f36762013-06-04 14:20:22 +0900407 file_page_size = read4(pevent);
408 if (!file_page_size)
Namhyung Kim4a31e562013-03-21 16:18:50 +0900409 goto out;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200410
Namhyung Kim59657f92013-06-04 14:20:23 +0900411 pevent_set_long_size(pevent, file_long_size);
Namhyung Kim30f36762013-06-04 14:20:22 +0900412 pevent_set_page_size(pevent, file_page_size);
413
Namhyung Kima4c98362013-03-21 16:18:49 +0900414 err = read_header_files(pevent);
415 if (err)
416 goto out;
417 err = read_ftrace_files(pevent);
418 if (err)
419 goto out;
420 err = read_event_files(pevent);
421 if (err)
422 goto out;
423 err = read_proc_kallsyms(pevent);
424 if (err)
425 goto out;
426 err = read_ftrace_printk(pevent);
427 if (err)
428 goto out;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200429
Namhyung Kimebf3c672013-03-21 16:18:52 +0900430 size = trace_data_size;
Tom Zanussi454c4072010-05-01 01:41:20 -0500431 repipe = false;
Tom Zanussi92155452010-04-01 23:59:21 -0500432
Steven Rostedt538bafb2009-08-17 16:18:06 +0200433 if (show_funcs) {
Namhyung Kim3dce2ce2013-03-21 16:18:48 +0900434 pevent_print_funcs(pevent);
435 } else if (show_printk) {
436 pevent_print_printk(pevent);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200437 }
438
Namhyung Kim3dce2ce2013-03-21 16:18:48 +0900439 pevent = NULL;
440
441out:
442 if (pevent)
Jiri Olsa29f5ffd2013-12-03 14:09:23 +0100443 trace_event__cleanup(tevent);
Tom Zanussi92155452010-04-01 23:59:21 -0500444 return size;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200445}