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)
106 char *path = get_events_file("header_page");
111 pr_debug("can't get tracing/events/header_page");
115 if (stat(path, &st) < 0) {
116 pr_debug("can't read '%s'", path);
120 if (write(output_fd, "header_page", 12) != 12) {
121 pr_debug("can't write header_page\n");
125 if (record_file(path, 8) < 0) {
126 pr_debug("can't record header_page file\n");
130 put_events_file(path);
132 path = get_events_file("header_event");
134 pr_debug("can't get tracing/events/header_event");
139 if (stat(path, &st) < 0) {
140 pr_debug("can't read '%s'", path);
144 if (write(output_fd, "header_event", 13) != 13) {
145 pr_debug("can't write header_event\n");
149 if (record_file(path, 8) < 0) {
150 pr_debug("can't record header_event file\n");
156 put_events_file(path);
160 static bool name_in_tp_list(char *sys, struct tracepoint_path *tps)
163 if (!strcmp(sys, tps->name))
171 #define for_each_event(dir, dent, tps) \
172 while ((dent = readdir(dir))) \
173 if (dent->d_type == DT_DIR && \
174 (strcmp(dent->d_name, ".")) && \
175 (strcmp(dent->d_name, ".."))) \
177 static int copy_event_system(const char *sys, struct tracepoint_path *tps)
189 pr_debug("can't read directory '%s'", sys);
193 for_each_event(dir, dent, tps) {
194 if (!name_in_tp_list(dent->d_name, tps))
197 if (asprintf(&format, "%s/%s/format", sys, dent->d_name) < 0) {
201 ret = stat(format, &st);
208 if (write(output_fd, &count, 4) != 4) {
210 pr_debug("can't write count\n");
215 for_each_event(dir, dent, tps) {
216 if (!name_in_tp_list(dent->d_name, tps))
219 if (asprintf(&format, "%s/%s/format", sys, dent->d_name) < 0) {
223 ret = stat(format, &st);
226 err = record_file(format, 8);
240 static int record_ftrace_files(struct tracepoint_path *tps)
245 path = get_events_file("ftrace");
247 pr_debug("can't get tracing/events/ftrace");
251 ret = copy_event_system(path, tps);
253 put_tracing_file(path);
258 static bool system_in_tp_list(char *sys, struct tracepoint_path *tps)
261 if (!strcmp(sys, tps->system))
269 static int record_event_files(struct tracepoint_path *tps)
280 path = get_tracing_file("events");
282 pr_debug("can't get tracing/events");
289 pr_debug("can't read directory '%s'", path);
293 for_each_event(dir, dent, tps) {
294 if (strcmp(dent->d_name, "ftrace") == 0 ||
295 !system_in_tp_list(dent->d_name, tps))
301 if (write(output_fd, &count, 4) != 4) {
303 pr_debug("can't write count\n");
308 for_each_event(dir, dent, tps) {
309 if (strcmp(dent->d_name, "ftrace") == 0 ||
310 !system_in_tp_list(dent->d_name, tps))
313 if (asprintf(&sys, "%s/%s", path, dent->d_name) < 0) {
317 ret = stat(sys, &st);
319 ssize_t size = strlen(dent->d_name) + 1;
321 if (write(output_fd, dent->d_name, size) != size ||
322 copy_event_system(sys, tps) < 0) {
333 put_tracing_file(path);
338 static int record_proc_kallsyms(void)
340 unsigned long long size = 0;
342 * Just to keep older perf.data file parsers happy, record a zero
343 * sized kallsyms file, i.e. do the same thing that was done when
344 * /proc/kallsyms (or something specified via --kallsyms, in a
345 * different path) couldn't be read.
347 return write(output_fd, &size, 4) != 4 ? -EIO : 0;
350 static int record_ftrace_printk(void)
357 path = get_tracing_file("printk_formats");
359 pr_debug("can't get tracing/printk_formats");
363 ret = stat(path, &st);
367 if (write(output_fd, &size, 4) != 4)
371 err = record_file(path, 4);
374 put_tracing_file(path);
378 static int record_saved_cmdline(void)
380 unsigned long long size;
385 path = get_tracing_file("saved_cmdlines");
387 pr_debug("can't get tracing/saved_cmdline");
391 ret = stat(path, &st);
395 if (write(output_fd, &size, 8) != 8)
399 err = record_file(path, 8);
402 put_tracing_file(path);
407 put_tracepoints_path(struct tracepoint_path *tps)
410 struct tracepoint_path *t = tps;
419 static struct tracepoint_path *
420 get_tracepoints_path(struct list_head *pattrs)
422 struct tracepoint_path path, *ppath = &path;
423 struct perf_evsel *pos;
424 int nr_tracepoints = 0;
426 list_for_each_entry(pos, pattrs, node) {
427 if (pos->attr.type != PERF_TYPE_TRACEPOINT)
432 ppath->next = tracepoint_name_to_path(pos->name);
436 if (strchr(pos->name, ':') == NULL)
443 ppath->next = tracepoint_id_to_path(pos->attr.config);
446 pr_debug("No memory to alloc tracepoints list\n");
447 put_tracepoints_path(&path);
454 return nr_tracepoints > 0 ? path.next : NULL;
457 bool have_tracepoints(struct list_head *pattrs)
459 struct perf_evsel *pos;
461 list_for_each_entry(pos, pattrs, node)
462 if (pos->attr.type == PERF_TYPE_TRACEPOINT)
468 static int tracing_data_header(void)
473 /* just guessing this is someone's birthday.. ;) */
477 memcpy(buf + 3, "tracing", 7);
479 if (write(output_fd, buf, 10) != 10)
482 size = strlen(VERSION) + 1;
483 if (write(output_fd, VERSION, size) != size)
492 if (write(output_fd, buf, 1) != 1)
495 /* save size of long */
496 buf[0] = sizeof(long);
497 if (write(output_fd, buf, 1) != 1)
501 if (write(output_fd, &page_size, 4) != 4)
507 struct tracing_data *tracing_data_get(struct list_head *pattrs,
510 struct tracepoint_path *tps;
511 struct tracing_data *tdata;
516 tps = get_tracepoints_path(pattrs);
520 tdata = malloc(sizeof(*tdata));
530 snprintf(tdata->temp_file, sizeof(tdata->temp_file),
532 if (!mkstemp(tdata->temp_file)) {
533 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);
546 * Set the temp file the default output, so all the
547 * tracing data are stored into it.
552 err = tracing_data_header();
555 err = record_header_files();
558 err = record_ftrace_files(tps);
561 err = record_event_files(tps);
564 err = record_proc_kallsyms();
567 err = record_ftrace_printk();
570 err = record_saved_cmdline();
574 * All tracing data are stored by now, we can restore
575 * the default output file in case we used temp file.
578 tdata->size = lseek(output_fd, 0, SEEK_CUR);
586 put_tracepoints_path(tps);
590 int tracing_data_put(struct tracing_data *tdata)
595 err = record_file(tdata->temp_file, 0);
596 unlink(tdata->temp_file);
603 int read_tracing_data(int fd, struct list_head *pattrs)
606 struct tracing_data *tdata;
609 * We work over the real file, so we can write data
610 * directly, no temp file is needed.
612 tdata = tracing_data_get(pattrs, fd, false);
616 err = tracing_data_put(tdata);