2 * Copyright (C) 2008,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 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
28 #include <sys/types.h>
35 #include <linux/list.h>
36 #include <linux/kernel.h>
39 #include "trace-event.h"
40 #include <api/fs/tracing_path.h>
51 unsigned char str
[] = { 0x1, 0x2, 0x3, 0x4, 0x0, 0x0, 0x0, 0x0};
54 ptr
= (unsigned int *)(void *)str
;
55 return *ptr
== 0x01020304;
58 /* unfortunately, you can not stat debugfs or proc files for size */
59 static int record_file(const char *file
, ssize_t hdr_sz
)
61 unsigned long long size
= 0;
62 char buf
[BUFSIZ
], *sizep
;
63 off_t hdr_pos
= lseek(output_fd
, 0, SEEK_CUR
);
67 fd
= open(file
, O_RDONLY
);
69 pr_debug("Can't read '%s'", file
);
73 /* put in zeros for file size, then fill true size later */
75 if (write(output_fd
, &size
, hdr_sz
) != hdr_sz
)
80 r
= read(fd
, buf
, BUFSIZ
);
83 if (write(output_fd
, buf
, r
) != r
)
88 /* ugh, handle big-endian hdr_size == 4 */
91 sizep
+= sizeof(u64
) - hdr_sz
;
93 if (hdr_sz
&& pwrite(output_fd
, sizep
, hdr_sz
, hdr_pos
) < 0) {
94 pr_debug("writing file size failed\n");
104 static int record_header_files(void)
110 path
= get_tracing_file("events/header_page");
112 pr_debug("can't get tracing/events/header_page");
116 if (stat(path
, &st
) < 0) {
117 pr_debug("can't read '%s'", path
);
121 if (write(output_fd
, "header_page", 12) != 12) {
122 pr_debug("can't write header_page\n");
126 if (record_file(path
, 8) < 0) {
127 pr_debug("can't record header_page file\n");
131 put_tracing_file(path
);
133 path
= get_tracing_file("events/header_event");
135 pr_debug("can't get tracing/events/header_event");
140 if (stat(path
, &st
) < 0) {
141 pr_debug("can't read '%s'", path
);
145 if (write(output_fd
, "header_event", 13) != 13) {
146 pr_debug("can't write header_event\n");
150 if (record_file(path
, 8) < 0) {
151 pr_debug("can't record header_event file\n");
157 put_tracing_file(path
);
161 static bool name_in_tp_list(char *sys
, struct tracepoint_path
*tps
)
164 if (!strcmp(sys
, tps
->name
))
172 #define for_each_event(dir, dent, tps) \
173 while ((dent = readdir(dir))) \
174 if (dent->d_type == DT_DIR && \
175 (strcmp(dent->d_name, ".")) && \
176 (strcmp(dent->d_name, ".."))) \
178 static int copy_event_system(const char *sys, struct tracepoint_path *tps)
190 pr_debug("can't read directory '%s'", sys
);
194 for_each_event(dir
, dent
, tps
) {
195 if (!name_in_tp_list(dent
->d_name
, tps
))
198 if (asprintf(&format
, "%s/%s/format", sys
, dent
->d_name
) < 0) {
202 ret
= stat(format
, &st
);
209 if (write(output_fd
, &count
, 4) != 4) {
211 pr_debug("can't write count\n");
216 for_each_event(dir
, dent
, tps
) {
217 if (!name_in_tp_list(dent
->d_name
, tps
))
220 if (asprintf(&format
, "%s/%s/format", sys
, dent
->d_name
) < 0) {
224 ret
= stat(format
, &st
);
227 err
= record_file(format
, 8);
241 static int record_ftrace_files(struct tracepoint_path
*tps
)
246 path
= get_tracing_file("events/ftrace");
248 pr_debug("can't get tracing/events/ftrace");
252 ret
= copy_event_system(path
, tps
);
254 put_tracing_file(path
);
259 static bool system_in_tp_list(char *sys
, struct tracepoint_path
*tps
)
262 if (!strcmp(sys
, tps
->system
))
270 static int record_event_files(struct tracepoint_path
*tps
)
281 path
= get_tracing_file("events");
283 pr_debug("can't get tracing/events");
290 pr_debug("can't read directory '%s'", path
);
294 for_each_event(dir
, dent
, tps
) {
295 if (strcmp(dent
->d_name
, "ftrace") == 0 ||
296 !system_in_tp_list(dent
->d_name
, tps
))
302 if (write(output_fd
, &count
, 4) != 4) {
304 pr_debug("can't write count\n");
309 for_each_event(dir
, dent
, tps
) {
310 if (strcmp(dent
->d_name
, "ftrace") == 0 ||
311 !system_in_tp_list(dent
->d_name
, tps
))
314 if (asprintf(&sys
, "%s/%s", path
, dent
->d_name
) < 0) {
318 ret
= stat(sys
, &st
);
320 ssize_t size
= strlen(dent
->d_name
) + 1;
322 if (write(output_fd
, dent
->d_name
, size
) != size
||
323 copy_event_system(sys
, tps
) < 0) {
334 put_tracing_file(path
);
339 static int record_proc_kallsyms(void)
341 unsigned long long size
= 0;
343 * Just to keep older perf.data file parsers happy, record a zero
344 * sized kallsyms file, i.e. do the same thing that was done when
345 * /proc/kallsyms (or something specified via --kallsyms, in a
346 * different path) couldn't be read.
348 return write(output_fd
, &size
, 4) != 4 ? -EIO
: 0;
351 static int record_ftrace_printk(void)
358 path
= get_tracing_file("printk_formats");
360 pr_debug("can't get tracing/printk_formats");
364 ret
= stat(path
, &st
);
368 if (write(output_fd
, &size
, 4) != 4)
372 err
= record_file(path
, 4);
375 put_tracing_file(path
);
379 static int record_saved_cmdline(void)
386 path
= get_tracing_file("saved_cmdlines");
388 pr_debug("can't get tracing/saved_cmdline");
392 ret
= stat(path
, &st
);
396 if (write(output_fd
, &size
, 8) != 8)
400 err
= record_file(path
, 8);
403 put_tracing_file(path
);
408 put_tracepoints_path(struct tracepoint_path
*tps
)
411 struct tracepoint_path
*t
= tps
;
420 static struct tracepoint_path
*
421 get_tracepoints_path(struct list_head
*pattrs
)
423 struct tracepoint_path path
, *ppath
= &path
;
424 struct perf_evsel
*pos
;
425 int nr_tracepoints
= 0;
427 list_for_each_entry(pos
, pattrs
, node
) {
428 if (pos
->attr
.type
!= PERF_TYPE_TRACEPOINT
)
433 ppath
->next
= tracepoint_name_to_path(pos
->name
);
437 if (strchr(pos
->name
, ':') == NULL
)
444 ppath
->next
= tracepoint_id_to_path(pos
->attr
.config
);
447 pr_debug("No memory to alloc tracepoints list\n");
448 put_tracepoints_path(&path
);
455 return nr_tracepoints
> 0 ? path
.next
: NULL
;
458 bool have_tracepoints(struct list_head
*pattrs
)
460 struct perf_evsel
*pos
;
462 list_for_each_entry(pos
, pattrs
, node
)
463 if (pos
->attr
.type
== PERF_TYPE_TRACEPOINT
)
469 static int tracing_data_header(void)
474 /* just guessing this is someone's birthday.. ;) */
478 memcpy(buf
+ 3, "tracing", 7);
480 if (write(output_fd
, buf
, 10) != 10)
483 size
= strlen(VERSION
) + 1;
484 if (write(output_fd
, VERSION
, size
) != size
)
493 if (write(output_fd
, buf
, 1) != 1)
496 /* save size of long */
497 buf
[0] = sizeof(long);
498 if (write(output_fd
, buf
, 1) != 1)
502 if (write(output_fd
, &page_size
, 4) != 4)
508 struct tracing_data
*tracing_data_get(struct list_head
*pattrs
,
511 struct tracepoint_path
*tps
;
512 struct tracing_data
*tdata
;
517 tps
= get_tracepoints_path(pattrs
);
521 tdata
= malloc(sizeof(*tdata
));
531 snprintf(tdata
->temp_file
, sizeof(tdata
->temp_file
),
533 if (!mkstemp(tdata
->temp_file
)) {
534 pr_debug("Can't make temp file");
538 temp_fd
= open(tdata
->temp_file
, O_RDWR
);
540 pr_debug("Can't read '%s'", tdata
->temp_file
);
545 * Set the temp file the default output, so all the
546 * tracing data are stored into it.
551 err
= tracing_data_header();
554 err
= record_header_files();
557 err
= record_ftrace_files(tps
);
560 err
= record_event_files(tps
);
563 err
= record_proc_kallsyms();
566 err
= record_ftrace_printk();
569 err
= record_saved_cmdline();
573 * All tracing data are stored by now, we can restore
574 * the default output file in case we used temp file.
577 tdata
->size
= lseek(output_fd
, 0, SEEK_CUR
);
585 put_tracepoints_path(tps
);
589 int tracing_data_put(struct tracing_data
*tdata
)
594 err
= record_file(tdata
->temp_file
, 0);
595 unlink(tdata
->temp_file
);
602 int read_tracing_data(int fd
, struct list_head
*pattrs
)
605 struct tracing_data
*tdata
;
608 * We work over the real file, so we can write data
609 * directly, no temp file is needed.
611 tdata
= tracing_data_get(pattrs
, fd
, false);
615 err
= tracing_data_put(tdata
);