blob: 8a9a677f75768205c47343c126813808e564a38a [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
Tommi Rantalad4b364d2017-03-22 15:06:23 +0200195 buf = malloc(size + 1);
Namhyung Kima4c98362013-03-21 16:18:49 +0900196 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
Tommi Rantalad4b364d2017-03-22 15:06:23 +0200204 buf[size] = '\0';
205
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300206 parse_ftrace_printk(pevent, buf, size);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200207
208 free(buf);
Namhyung Kima4c98362013-03-21 16:18:49 +0900209 return 0;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200210}
211
Namhyung Kima4c98362013-03-21 16:18:49 +0900212static int read_header_files(struct pevent *pevent)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200213{
214 unsigned long long size;
Namhyung Kim94b4d892013-06-04 14:20:26 +0900215 char *header_page;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200216 char buf[BUFSIZ];
Namhyung Kim4a31e562013-03-21 16:18:50 +0900217 int ret = 0;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200218
Namhyung Kim4a31e562013-03-21 16:18:50 +0900219 if (do_read(buf, 12) < 0)
220 return -1;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200221
Namhyung Kim452958f2013-03-21 16:18:51 +0900222 if (memcmp(buf, "header_page", 12) != 0) {
223 pr_debug("did not read header page");
224 return -1;
225 }
Steven Rostedt538bafb2009-08-17 16:18:06 +0200226
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300227 size = read8(pevent);
Namhyung Kim94b4d892013-06-04 14:20:26 +0900228
229 header_page = malloc(size);
230 if (header_page == NULL)
231 return -1;
232
233 if (do_read(header_page, size) < 0) {
234 pr_debug("did not read header page");
235 free(header_page);
236 return -1;
237 }
238
239 if (!pevent_parse_header_page(pevent, header_page, size,
240 pevent_get_long_size(pevent))) {
241 /*
242 * The commit field in the page is of type long,
243 * use that instead, since it represents the kernel.
244 */
245 pevent_set_long_size(pevent, pevent->header_page_size_size);
246 }
247 free(header_page);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200248
Namhyung Kim4a31e562013-03-21 16:18:50 +0900249 if (do_read(buf, 13) < 0)
250 return -1;
251
Namhyung Kim452958f2013-03-21 16:18:51 +0900252 if (memcmp(buf, "header_event", 13) != 0) {
253 pr_debug("did not read header event");
254 return -1;
255 }
Steven Rostedt538bafb2009-08-17 16:18:06 +0200256
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300257 size = read8(pevent);
Namhyung Kim2b2efc72013-06-04 14:20:25 +0900258 skip(size);
Namhyung Kima4c98362013-03-21 16:18:49 +0900259
Namhyung Kim4a31e562013-03-21 16:18:50 +0900260 return ret;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200261}
262
Namhyung Kima4c98362013-03-21 16:18:49 +0900263static int read_ftrace_file(struct pevent *pevent, unsigned long long size)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200264{
Namhyung Kima7619ae2013-04-18 21:24:16 +0900265 int ret;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200266 char *buf;
267
Namhyung Kima4c98362013-03-21 16:18:49 +0900268 buf = malloc(size);
Namhyung Kima7619ae2013-04-18 21:24:16 +0900269 if (buf == NULL) {
270 pr_debug("memory allocation failure\n");
Namhyung Kim4a31e562013-03-21 16:18:50 +0900271 return -1;
272 }
273
Namhyung Kima7619ae2013-04-18 21:24:16 +0900274 ret = do_read(buf, size);
275 if (ret < 0) {
276 pr_debug("error reading ftrace file.\n");
277 goto out;
278 }
279
280 ret = parse_ftrace_file(pevent, buf, size);
281 if (ret < 0)
282 pr_debug("error parsing ftrace file.\n");
283out:
Steven Rostedt538bafb2009-08-17 16:18:06 +0200284 free(buf);
Namhyung Kima7619ae2013-04-18 21:24:16 +0900285 return ret;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200286}
287
Namhyung Kima4c98362013-03-21 16:18:49 +0900288static int read_event_file(struct pevent *pevent, char *sys,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300289 unsigned long long size)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200290{
Namhyung Kima7619ae2013-04-18 21:24:16 +0900291 int ret;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200292 char *buf;
293
Namhyung Kima4c98362013-03-21 16:18:49 +0900294 buf = malloc(size);
Namhyung Kima7619ae2013-04-18 21:24:16 +0900295 if (buf == NULL) {
296 pr_debug("memory allocation failure\n");
Namhyung Kim4a31e562013-03-21 16:18:50 +0900297 return -1;
298 }
299
Namhyung Kima7619ae2013-04-18 21:24:16 +0900300 ret = do_read(buf, size);
301 if (ret < 0) {
302 free(buf);
303 goto out;
304 }
305
306 ret = parse_event_file(pevent, buf, size, sys);
307 if (ret < 0)
308 pr_debug("error parsing event file.\n");
309out:
Steven Rostedt538bafb2009-08-17 16:18:06 +0200310 free(buf);
Namhyung Kima7619ae2013-04-18 21:24:16 +0900311 return ret;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200312}
313
Namhyung Kima4c98362013-03-21 16:18:49 +0900314static int read_ftrace_files(struct pevent *pevent)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200315{
316 unsigned long long size;
317 int count;
318 int i;
Namhyung Kima4c98362013-03-21 16:18:49 +0900319 int ret;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200320
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300321 count = read4(pevent);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200322
323 for (i = 0; i < count; i++) {
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300324 size = read8(pevent);
Namhyung Kima4c98362013-03-21 16:18:49 +0900325 ret = read_ftrace_file(pevent, size);
326 if (ret)
327 return ret;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200328 }
Namhyung Kima4c98362013-03-21 16:18:49 +0900329 return 0;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200330}
331
Namhyung Kima4c98362013-03-21 16:18:49 +0900332static int read_event_files(struct pevent *pevent)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200333{
334 unsigned long long size;
335 char *sys;
336 int systems;
337 int count;
338 int i,x;
Namhyung Kima4c98362013-03-21 16:18:49 +0900339 int ret;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200340
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300341 systems = read4(pevent);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200342
343 for (i = 0; i < systems; i++) {
344 sys = read_string();
Namhyung Kima4c98362013-03-21 16:18:49 +0900345 if (sys == NULL)
346 return -1;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200347
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300348 count = read4(pevent);
Namhyung Kim4a31e562013-03-21 16:18:50 +0900349
Steven Rostedt538bafb2009-08-17 16:18:06 +0200350 for (x=0; x < count; x++) {
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300351 size = read8(pevent);
Namhyung Kima4c98362013-03-21 16:18:49 +0900352 ret = read_event_file(pevent, sys, size);
353 if (ret)
354 return ret;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200355 }
356 }
Namhyung Kima4c98362013-03-21 16:18:49 +0900357 return 0;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200358}
359
Namhyung Kimcd4ceb632013-04-11 17:25:04 +0900360static int read_saved_cmdline(struct pevent *pevent)
361{
362 unsigned long long size;
363 char *buf;
Namhyung Kima7619ae2013-04-18 21:24:16 +0900364 int ret;
Namhyung Kimcd4ceb632013-04-11 17:25:04 +0900365
366 /* it can have 0 size */
367 size = read8(pevent);
368 if (!size)
369 return 0;
370
371 buf = malloc(size + 1);
Namhyung Kima7619ae2013-04-18 21:24:16 +0900372 if (buf == NULL) {
373 pr_debug("memory allocation failure\n");
Namhyung Kimcd4ceb632013-04-11 17:25:04 +0900374 return -1;
375 }
376
Namhyung Kima7619ae2013-04-18 21:24:16 +0900377 ret = do_read(buf, size);
378 if (ret < 0) {
379 pr_debug("error reading saved cmdlines\n");
380 goto out;
381 }
Namhyung Kimcd4ceb632013-04-11 17:25:04 +0900382
Namhyung Kima7619ae2013-04-18 21:24:16 +0900383 parse_saved_cmdline(pevent, buf, size);
384 ret = 0;
385out:
Namhyung Kimcd4ceb632013-04-11 17:25:04 +0900386 free(buf);
Namhyung Kima7619ae2013-04-18 21:24:16 +0900387 return ret;
Namhyung Kimcd4ceb632013-04-11 17:25:04 +0900388}
389
Jiri Olsa29f5ffd2013-12-03 14:09:23 +0100390ssize_t trace_report(int fd, struct trace_event *tevent, bool __repipe)
Steven Rostedt538bafb2009-08-17 16:18:06 +0200391{
Steven Rostedt538bafb2009-08-17 16:18:06 +0200392 char buf[BUFSIZ];
393 char test[] = { 23, 8, 68 };
394 char *version;
Ingo Molnard9340c12009-09-12 10:08:34 +0200395 int show_version = 0;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200396 int show_funcs = 0;
397 int show_printk = 0;
Namhyung Kim3dce2ce2013-03-21 16:18:48 +0900398 ssize_t size = -1;
Namhyung Kim63af28f2013-06-04 14:20:24 +0900399 int file_bigendian;
400 int host_bigendian;
Namhyung Kim59657f92013-06-04 14:20:23 +0900401 int file_long_size;
Namhyung Kim30f36762013-06-04 14:20:22 +0900402 int file_page_size;
Jiri Olsa29f5ffd2013-12-03 14:09:23 +0100403 struct pevent *pevent = NULL;
Namhyung Kima4c98362013-03-21 16:18:49 +0900404 int err;
Namhyung Kim3dce2ce2013-03-21 16:18:48 +0900405
Tom Zanussi454c4072010-05-01 01:41:20 -0500406 repipe = __repipe;
Frederic Weisbecker03456a12009-10-06 23:36:47 +0200407 input_fd = fd;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200408
Namhyung Kim4a31e562013-03-21 16:18:50 +0900409 if (do_read(buf, 3) < 0)
410 return -1;
Namhyung Kim452958f2013-03-21 16:18:51 +0900411 if (memcmp(buf, test, 3) != 0) {
412 pr_debug("no trace data in the file");
413 return -1;
414 }
Steven Rostedt538bafb2009-08-17 16:18:06 +0200415
Namhyung Kim4a31e562013-03-21 16:18:50 +0900416 if (do_read(buf, 7) < 0)
417 return -1;
Namhyung Kim452958f2013-03-21 16:18:51 +0900418 if (memcmp(buf, "tracing", 7) != 0) {
419 pr_debug("not a trace file (missing 'tracing' tag)");
420 return -1;
421 }
Steven Rostedt538bafb2009-08-17 16:18:06 +0200422
423 version = read_string();
Namhyung Kima4c98362013-03-21 16:18:49 +0900424 if (version == NULL)
425 return -1;
Ingo Molnard9340c12009-09-12 10:08:34 +0200426 if (show_version)
427 printf("version = %s\n", version);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200428
Namhyung Kimcd4ceb632013-04-11 17:25:04 +0900429 if (do_read(buf, 1) < 0) {
430 free(version);
Namhyung Kim4a31e562013-03-21 16:18:50 +0900431 return -1;
Namhyung Kimcd4ceb632013-04-11 17:25:04 +0900432 }
Steven Rostedt538bafb2009-08-17 16:18:06 +0200433 file_bigendian = buf[0];
434 host_bigendian = bigendian();
435
Jiri Olsa29f5ffd2013-12-03 14:09:23 +0100436 if (trace_event__init(tevent)) {
437 pr_debug("trace_event__init failed");
Namhyung Kim3dce2ce2013-03-21 16:18:48 +0900438 goto out;
439 }
Steven Rostedtaaf045f2012-04-06 00:47:56 +0200440
Jiri Olsa29f5ffd2013-12-03 14:09:23 +0100441 pevent = tevent->pevent;
442
443 pevent_set_flag(pevent, PEVENT_NSEC_OUTPUT);
444 pevent_set_file_bigendian(pevent, file_bigendian);
445 pevent_set_host_bigendian(pevent, host_bigendian);
446
Namhyung Kim4a31e562013-03-21 16:18:50 +0900447 if (do_read(buf, 1) < 0)
448 goto out;
Namhyung Kim59657f92013-06-04 14:20:23 +0900449 file_long_size = buf[0];
Steven Rostedt538bafb2009-08-17 16:18:06 +0200450
Namhyung Kim30f36762013-06-04 14:20:22 +0900451 file_page_size = read4(pevent);
452 if (!file_page_size)
Namhyung Kim4a31e562013-03-21 16:18:50 +0900453 goto out;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200454
Namhyung Kim59657f92013-06-04 14:20:23 +0900455 pevent_set_long_size(pevent, file_long_size);
Namhyung Kim30f36762013-06-04 14:20:22 +0900456 pevent_set_page_size(pevent, file_page_size);
457
Namhyung Kima4c98362013-03-21 16:18:49 +0900458 err = read_header_files(pevent);
459 if (err)
460 goto out;
461 err = read_ftrace_files(pevent);
462 if (err)
463 goto out;
464 err = read_event_files(pevent);
465 if (err)
466 goto out;
467 err = read_proc_kallsyms(pevent);
468 if (err)
469 goto out;
470 err = read_ftrace_printk(pevent);
471 if (err)
472 goto out;
Namhyung Kimcd4ceb632013-04-11 17:25:04 +0900473 if (atof(version) >= 0.6) {
474 err = read_saved_cmdline(pevent);
475 if (err)
476 goto out;
477 }
Steven Rostedt538bafb2009-08-17 16:18:06 +0200478
Namhyung Kimebf3c672013-03-21 16:18:52 +0900479 size = trace_data_size;
Tom Zanussi454c4072010-05-01 01:41:20 -0500480 repipe = false;
Tom Zanussi92155452010-04-01 23:59:21 -0500481
Steven Rostedt538bafb2009-08-17 16:18:06 +0200482 if (show_funcs) {
Namhyung Kim3dce2ce2013-03-21 16:18:48 +0900483 pevent_print_funcs(pevent);
484 } else if (show_printk) {
485 pevent_print_printk(pevent);
Steven Rostedt538bafb2009-08-17 16:18:06 +0200486 }
487
Namhyung Kim3dce2ce2013-03-21 16:18:48 +0900488 pevent = NULL;
489
490out:
491 if (pevent)
Jiri Olsa29f5ffd2013-12-03 14:09:23 +0100492 trace_event__cleanup(tevent);
Namhyung Kimcd4ceb632013-04-11 17:25:04 +0900493 free(version);
Tom Zanussi92155452010-04-01 23:59:21 -0500494 return size;
Steven Rostedt538bafb2009-08-17 16:18:06 +0200495}