Linux 5.1.15
[linux/fpc-iii.git] / tools / perf / util / trace-event-read.c
blobefe2f58cff4e4e7284171fa43244bfa9a91cc474
1 /*
2 * Copyright (C) 2009, Steven Rostedt <srostedt@redhat.com>
4 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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!)
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.
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
19 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21 #include <dirent.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #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 <fcntl.h>
31 #include <unistd.h>
32 #include <errno.h>
34 #include "../perf.h"
35 #include "util.h"
36 #include "trace-event.h"
37 #include "debug.h"
39 static int input_fd;
41 static ssize_t trace_data_size;
42 static bool repipe;
44 static int __do_read(int fd, void *buf, int size)
46 int rsize = size;
48 while (size) {
49 int ret = read(fd, buf, size);
51 if (ret <= 0)
52 return -1;
54 if (repipe) {
55 int retw = write(STDOUT_FILENO, buf, ret);
57 if (retw <= 0 || retw != ret) {
58 pr_debug("repiping input file");
59 return -1;
63 size -= ret;
64 buf += ret;
67 return rsize;
70 static int do_read(void *data, int size)
72 int r;
74 r = __do_read(input_fd, data, size);
75 if (r <= 0) {
76 pr_debug("reading input file (size expected=%d received=%d)",
77 size, r);
78 return -1;
81 trace_data_size += r;
83 return r;
86 /* If it fails, the next read will report it */
87 static void skip(int size)
89 char buf[BUFSIZ];
90 int r;
92 while (size) {
93 r = size > BUFSIZ ? BUFSIZ : size;
94 do_read(buf, r);
95 size -= r;
99 static unsigned int read4(struct tep_handle *pevent)
101 unsigned int data;
103 if (do_read(&data, 4) < 0)
104 return 0;
105 return tep_read_number(pevent, &data, 4);
108 static unsigned long long read8(struct tep_handle *pevent)
110 unsigned long long data;
112 if (do_read(&data, 8) < 0)
113 return 0;
114 return tep_read_number(pevent, &data, 8);
117 static char *read_string(void)
119 char buf[BUFSIZ];
120 char *str = NULL;
121 int size = 0;
122 off_t r;
123 char c;
125 for (;;) {
126 r = read(input_fd, &c, 1);
127 if (r < 0) {
128 pr_debug("reading input file");
129 goto out;
132 if (!r) {
133 pr_debug("no data");
134 goto out;
137 if (repipe) {
138 int retw = write(STDOUT_FILENO, &c, 1);
140 if (retw <= 0 || retw != r) {
141 pr_debug("repiping input file string");
142 goto out;
146 buf[size++] = c;
148 if (!c)
149 break;
152 trace_data_size += size;
154 str = malloc(size);
155 if (str)
156 memcpy(str, buf, size);
157 out:
158 return str;
161 static int read_proc_kallsyms(struct tep_handle *pevent)
163 unsigned int size;
165 size = read4(pevent);
166 if (!size)
167 return 0;
169 * Just skip it, now that we configure libtraceevent to use the
170 * tools/perf/ symbol resolver.
172 * We need to skip it so that we can continue parsing old perf.data
173 * files, that contains this /proc/kallsyms payload.
175 * Newer perf.data files will have just the 4-bytes zeros "kallsyms
176 * payload", so that older tools can continue reading it and interpret
177 * it as "no kallsyms payload is present".
179 lseek(input_fd, size, SEEK_CUR);
180 trace_data_size += size;
181 return 0;
184 static int read_ftrace_printk(struct tep_handle *pevent)
186 unsigned int size;
187 char *buf;
189 /* it can have 0 size */
190 size = read4(pevent);
191 if (!size)
192 return 0;
194 buf = malloc(size + 1);
195 if (buf == NULL)
196 return -1;
198 if (do_read(buf, size) < 0) {
199 free(buf);
200 return -1;
203 buf[size] = '\0';
205 parse_ftrace_printk(pevent, buf, size);
207 free(buf);
208 return 0;
211 static int read_header_files(struct tep_handle *pevent)
213 unsigned long long size;
214 char *header_page;
215 char buf[BUFSIZ];
216 int ret = 0;
218 if (do_read(buf, 12) < 0)
219 return -1;
221 if (memcmp(buf, "header_page", 12) != 0) {
222 pr_debug("did not read header page");
223 return -1;
226 size = read8(pevent);
228 header_page = malloc(size);
229 if (header_page == NULL)
230 return -1;
232 if (do_read(header_page, size) < 0) {
233 pr_debug("did not read header page");
234 free(header_page);
235 return -1;
238 if (!tep_parse_header_page(pevent, header_page, size,
239 tep_get_long_size(pevent))) {
241 * The commit field in the page is of type long,
242 * use that instead, since it represents the kernel.
244 tep_set_long_size(pevent, tep_get_header_page_size(pevent));
246 free(header_page);
248 if (do_read(buf, 13) < 0)
249 return -1;
251 if (memcmp(buf, "header_event", 13) != 0) {
252 pr_debug("did not read header event");
253 return -1;
256 size = read8(pevent);
257 skip(size);
259 return ret;
262 static int read_ftrace_file(struct tep_handle *pevent, unsigned long long size)
264 int ret;
265 char *buf;
267 buf = malloc(size);
268 if (buf == NULL) {
269 pr_debug("memory allocation failure\n");
270 return -1;
273 ret = do_read(buf, size);
274 if (ret < 0) {
275 pr_debug("error reading ftrace file.\n");
276 goto out;
279 ret = parse_ftrace_file(pevent, buf, size);
280 if (ret < 0)
281 pr_debug("error parsing ftrace file.\n");
282 out:
283 free(buf);
284 return ret;
287 static int read_event_file(struct tep_handle *pevent, char *sys,
288 unsigned long long size)
290 int ret;
291 char *buf;
293 buf = malloc(size);
294 if (buf == NULL) {
295 pr_debug("memory allocation failure\n");
296 return -1;
299 ret = do_read(buf, size);
300 if (ret < 0)
301 goto out;
303 ret = parse_event_file(pevent, buf, size, sys);
304 if (ret < 0)
305 pr_debug("error parsing event file.\n");
306 out:
307 free(buf);
308 return ret;
311 static int read_ftrace_files(struct tep_handle *pevent)
313 unsigned long long size;
314 int count;
315 int i;
316 int ret;
318 count = read4(pevent);
320 for (i = 0; i < count; i++) {
321 size = read8(pevent);
322 ret = read_ftrace_file(pevent, size);
323 if (ret)
324 return ret;
326 return 0;
329 static int read_event_files(struct tep_handle *pevent)
331 unsigned long long size;
332 char *sys;
333 int systems;
334 int count;
335 int i,x;
336 int ret;
338 systems = read4(pevent);
340 for (i = 0; i < systems; i++) {
341 sys = read_string();
342 if (sys == NULL)
343 return -1;
345 count = read4(pevent);
347 for (x=0; x < count; x++) {
348 size = read8(pevent);
349 ret = read_event_file(pevent, sys, size);
350 if (ret) {
351 free(sys);
352 return ret;
355 free(sys);
357 return 0;
360 static int read_saved_cmdline(struct tep_handle *pevent)
362 unsigned long long size;
363 char *buf;
364 int ret;
366 /* it can have 0 size */
367 size = read8(pevent);
368 if (!size)
369 return 0;
371 buf = malloc(size + 1);
372 if (buf == NULL) {
373 pr_debug("memory allocation failure\n");
374 return -1;
377 ret = do_read(buf, size);
378 if (ret < 0) {
379 pr_debug("error reading saved cmdlines\n");
380 goto out;
383 parse_saved_cmdline(pevent, buf, size);
384 ret = 0;
385 out:
386 free(buf);
387 return ret;
390 ssize_t trace_report(int fd, struct trace_event *tevent, bool __repipe)
392 char buf[BUFSIZ];
393 char test[] = { 23, 8, 68 };
394 char *version;
395 int show_version = 0;
396 int show_funcs = 0;
397 int show_printk = 0;
398 ssize_t size = -1;
399 int file_bigendian;
400 int host_bigendian;
401 int file_long_size;
402 int file_page_size;
403 struct tep_handle *pevent = NULL;
404 int err;
406 repipe = __repipe;
407 input_fd = fd;
409 if (do_read(buf, 3) < 0)
410 return -1;
411 if (memcmp(buf, test, 3) != 0) {
412 pr_debug("no trace data in the file");
413 return -1;
416 if (do_read(buf, 7) < 0)
417 return -1;
418 if (memcmp(buf, "tracing", 7) != 0) {
419 pr_debug("not a trace file (missing 'tracing' tag)");
420 return -1;
423 version = read_string();
424 if (version == NULL)
425 return -1;
426 if (show_version)
427 printf("version = %s\n", version);
429 if (do_read(buf, 1) < 0) {
430 free(version);
431 return -1;
433 file_bigendian = buf[0];
434 host_bigendian = bigendian();
436 if (trace_event__init(tevent)) {
437 pr_debug("trace_event__init failed");
438 goto out;
441 pevent = tevent->pevent;
443 tep_set_flag(pevent, TEP_NSEC_OUTPUT);
444 tep_set_file_bigendian(pevent, file_bigendian);
445 tep_set_host_bigendian(pevent, host_bigendian);
447 if (do_read(buf, 1) < 0)
448 goto out;
449 file_long_size = buf[0];
451 file_page_size = read4(pevent);
452 if (!file_page_size)
453 goto out;
455 tep_set_long_size(pevent, file_long_size);
456 tep_set_page_size(pevent, file_page_size);
458 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;
473 if (atof(version) >= 0.6) {
474 err = read_saved_cmdline(pevent);
475 if (err)
476 goto out;
479 size = trace_data_size;
480 repipe = false;
482 if (show_funcs) {
483 tep_print_funcs(pevent);
484 } else if (show_printk) {
485 tep_print_printk(pevent);
488 pevent = NULL;
490 out:
491 if (pevent)
492 trace_event__cleanup(tevent);
493 free(version);
494 return size;