blob: eb72716017ac265bf1572c912769bad3bf21c643 [file] [log] [blame]
Steven Rostedt520509432009-08-17 16:18:05 +02001/*
2 * Copyright (C) 2008,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 */
Arnaldo Carvalho de Meloc168fbf2011-11-16 12:55:59 -020021#include "util.h"
Steven Rostedt520509432009-08-17 16:18:05 +020022#include <dirent.h>
Ulrich Drepper659d8cf2009-12-19 16:40:28 -050023#include <mntent.h>
Steven Rostedt520509432009-08-17 16:18:05 +020024#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <stdarg.h>
28#include <sys/types.h>
29#include <sys/stat.h>
30#include <sys/wait.h>
31#include <pthread.h>
32#include <fcntl.h>
33#include <unistd.h>
Steven Rostedt520509432009-08-17 16:18:05 +020034#include <errno.h>
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +020035#include <stdbool.h>
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020036#include <linux/list.h>
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -020037#include <linux/kernel.h>
Steven Rostedt520509432009-08-17 16:18:05 +020038
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +020039#include "../perf.h"
Steven Rostedt520509432009-08-17 16:18:05 +020040#include "trace-event.h"
Borislav Petkov553873e2013-12-09 17:14:23 +010041#include <api/fs/debugfs.h>
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020042#include "evsel.h"
Jiri Olsa84f5d362014-07-14 23:46:48 +020043#include "debug.h"
Steven Rostedt520509432009-08-17 16:18:05 +020044
Steven Rostedt520509432009-08-17 16:18:05 +020045#define VERSION "0.5"
46
Steven Rostedt520509432009-08-17 16:18:05 +020047static int output_fd;
48
Steven Rostedt520509432009-08-17 16:18:05 +020049
Steven Rostedt520509432009-08-17 16:18:05 +020050int bigendian(void)
51{
52 unsigned char str[] = { 0x1, 0x2, 0x3, 0x4, 0x0, 0x0, 0x0, 0x0};
53 unsigned int *ptr;
54
Ingo Molnar65014ab2009-09-02 14:55:55 +020055 ptr = (unsigned int *)(void *)str;
Steven Rostedt520509432009-08-17 16:18:05 +020056 return *ptr == 0x01020304;
57}
58
Sonny Rao259032b2011-07-14 13:34:43 +100059/* unfortunately, you can not stat debugfs or proc files for size */
Namhyung Kim8755d5e2013-03-21 16:18:46 +090060static int record_file(const char *file, ssize_t hdr_sz)
Steven Rostedt520509432009-08-17 16:18:05 +020061{
62 unsigned long long size = 0;
Sonny Rao259032b2011-07-14 13:34:43 +100063 char buf[BUFSIZ], *sizep;
64 off_t hdr_pos = lseek(output_fd, 0, SEEK_CUR);
65 int r, fd;
Namhyung Kim8755d5e2013-03-21 16:18:46 +090066 int err = -EIO;
Sonny Rao259032b2011-07-14 13:34:43 +100067
68 fd = open(file, O_RDONLY);
Namhyung Kim7f42b952013-03-21 16:18:47 +090069 if (fd < 0) {
70 pr_debug("Can't read '%s'", file);
71 return -errno;
72 }
Sonny Rao259032b2011-07-14 13:34:43 +100073
74 /* put in zeros for file size, then fill true size later */
Namhyung Kim8755d5e2013-03-21 16:18:46 +090075 if (hdr_sz) {
76 if (write(output_fd, &size, hdr_sz) != hdr_sz)
77 goto out;
78 }
Steven Rostedt520509432009-08-17 16:18:05 +020079
80 do {
81 r = read(fd, buf, BUFSIZ);
82 if (r > 0) {
83 size += r;
Namhyung Kim8755d5e2013-03-21 16:18:46 +090084 if (write(output_fd, buf, r) != r)
85 goto out;
Steven Rostedt520509432009-08-17 16:18:05 +020086 }
87 } while (r > 0);
Steven Rostedt520509432009-08-17 16:18:05 +020088
Sonny Rao259032b2011-07-14 13:34:43 +100089 /* ugh, handle big-endian hdr_size == 4 */
90 sizep = (char*)&size;
91 if (bigendian())
92 sizep += sizeof(u64) - hdr_sz;
Steven Rostedt520509432009-08-17 16:18:05 +020093
Namhyung Kim7f42b952013-03-21 16:18:47 +090094 if (hdr_sz && pwrite(output_fd, sizep, hdr_sz, hdr_pos) < 0) {
95 pr_debug("writing file size failed\n");
96 goto out;
97 }
Namhyung Kim8755d5e2013-03-21 16:18:46 +090098
99 err = 0;
100out:
101 close(fd);
102 return err;
Steven Rostedt520509432009-08-17 16:18:05 +0200103}
104
Namhyung Kim077f1592013-06-04 14:20:29 +0900105static int record_header_files(void)
Steven Rostedt520509432009-08-17 16:18:05 +0200106{
Steven Rostedt520509432009-08-17 16:18:05 +0200107 char *path;
Sonny Rao259032b2011-07-14 13:34:43 +1000108 struct stat st;
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900109 int err = -EIO;
Steven Rostedt520509432009-08-17 16:18:05 +0200110
111 path = get_tracing_file("events/header_page");
Namhyung Kim7f42b952013-03-21 16:18:47 +0900112 if (!path) {
113 pr_debug("can't get tracing/events/header_page");
114 return -ENOMEM;
115 }
Namhyung Kim454f8c72013-03-21 16:18:44 +0900116
Namhyung Kim7f42b952013-03-21 16:18:47 +0900117 if (stat(path, &st) < 0) {
118 pr_debug("can't read '%s'", path);
119 goto out;
120 }
Steven Rostedt520509432009-08-17 16:18:05 +0200121
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900122 if (write(output_fd, "header_page", 12) != 12) {
123 pr_debug("can't write header_page\n");
124 goto out;
125 }
126
127 if (record_file(path, 8) < 0) {
128 pr_debug("can't record header_page file\n");
129 goto out;
130 }
131
Steven Rostedt520509432009-08-17 16:18:05 +0200132 put_tracing_file(path);
133
134 path = get_tracing_file("events/header_event");
Namhyung Kim7f42b952013-03-21 16:18:47 +0900135 if (!path) {
136 pr_debug("can't get tracing/events/header_event");
137 err = -ENOMEM;
138 goto out;
139 }
Namhyung Kim454f8c72013-03-21 16:18:44 +0900140
Namhyung Kim7f42b952013-03-21 16:18:47 +0900141 if (stat(path, &st) < 0) {
142 pr_debug("can't read '%s'", path);
143 goto out;
144 }
Steven Rostedt520509432009-08-17 16:18:05 +0200145
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900146 if (write(output_fd, "header_event", 13) != 13) {
147 pr_debug("can't write header_event\n");
148 goto out;
149 }
150
151 if (record_file(path, 8) < 0) {
152 pr_debug("can't record header_event file\n");
153 goto out;
154 }
155
156 err = 0;
157out:
Steven Rostedt520509432009-08-17 16:18:05 +0200158 put_tracing_file(path);
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900159 return err;
Steven Rostedt520509432009-08-17 16:18:05 +0200160}
161
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200162static bool name_in_tp_list(char *sys, struct tracepoint_path *tps)
163{
164 while (tps) {
165 if (!strcmp(sys, tps->name))
166 return true;
167 tps = tps->next;
168 }
169
170 return false;
171}
172
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900173static int copy_event_system(const char *sys, struct tracepoint_path *tps)
Steven Rostedt520509432009-08-17 16:18:05 +0200174{
Steven Rostedt520509432009-08-17 16:18:05 +0200175 struct dirent *dent;
176 struct stat st;
177 char *format;
178 DIR *dir;
179 int count = 0;
180 int ret;
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900181 int err;
Steven Rostedt520509432009-08-17 16:18:05 +0200182
183 dir = opendir(sys);
Namhyung Kim7f42b952013-03-21 16:18:47 +0900184 if (!dir) {
185 pr_debug("can't read directory '%s'", sys);
186 return -errno;
187 }
Steven Rostedt520509432009-08-17 16:18:05 +0200188
189 while ((dent = readdir(dir))) {
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500190 if (dent->d_type != DT_DIR ||
191 strcmp(dent->d_name, ".") == 0 ||
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200192 strcmp(dent->d_name, "..") == 0 ||
193 !name_in_tp_list(dent->d_name, tps))
Steven Rostedt520509432009-08-17 16:18:05 +0200194 continue;
Andy Shevchenkod400a682014-07-04 14:43:48 +0300195 if (asprintf(&format, "%s/%s/format", sys, dent->d_name) < 0) {
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900196 err = -ENOMEM;
197 goto out;
198 }
Steven Rostedt520509432009-08-17 16:18:05 +0200199 ret = stat(format, &st);
200 free(format);
201 if (ret < 0)
202 continue;
203 count++;
204 }
205
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900206 if (write(output_fd, &count, 4) != 4) {
207 err = -EIO;
208 pr_debug("can't write count\n");
209 goto out;
210 }
Steven Rostedt520509432009-08-17 16:18:05 +0200211
212 rewinddir(dir);
213 while ((dent = readdir(dir))) {
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500214 if (dent->d_type != DT_DIR ||
215 strcmp(dent->d_name, ".") == 0 ||
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200216 strcmp(dent->d_name, "..") == 0 ||
217 !name_in_tp_list(dent->d_name, tps))
Steven Rostedt520509432009-08-17 16:18:05 +0200218 continue;
Andy Shevchenkod400a682014-07-04 14:43:48 +0300219 if (asprintf(&format, "%s/%s/format", sys, dent->d_name) < 0) {
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900220 err = -ENOMEM;
221 goto out;
222 }
Steven Rostedt520509432009-08-17 16:18:05 +0200223 ret = stat(format, &st);
224
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900225 if (ret >= 0) {
226 err = record_file(format, 8);
227 if (err) {
228 free(format);
229 goto out;
230 }
231 }
Steven Rostedt520509432009-08-17 16:18:05 +0200232 free(format);
233 }
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900234 err = 0;
235out:
Xiao Guangrong99674112009-12-28 16:49:38 +0800236 closedir(dir);
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900237 return err;
Steven Rostedt520509432009-08-17 16:18:05 +0200238}
239
Namhyung Kim077f1592013-06-04 14:20:29 +0900240static int record_ftrace_files(struct tracepoint_path *tps)
Steven Rostedt520509432009-08-17 16:18:05 +0200241{
242 char *path;
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900243 int ret;
Steven Rostedt520509432009-08-17 16:18:05 +0200244
245 path = get_tracing_file("events/ftrace");
Namhyung Kim7f42b952013-03-21 16:18:47 +0900246 if (!path) {
247 pr_debug("can't get tracing/events/ftrace");
248 return -ENOMEM;
249 }
Steven Rostedt520509432009-08-17 16:18:05 +0200250
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900251 ret = copy_event_system(path, tps);
Steven Rostedt520509432009-08-17 16:18:05 +0200252
253 put_tracing_file(path);
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900254
255 return ret;
Steven Rostedt520509432009-08-17 16:18:05 +0200256}
257
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200258static bool system_in_tp_list(char *sys, struct tracepoint_path *tps)
259{
260 while (tps) {
261 if (!strcmp(sys, tps->system))
262 return true;
263 tps = tps->next;
264 }
265
266 return false;
267}
268
Namhyung Kim077f1592013-06-04 14:20:29 +0900269static int record_event_files(struct tracepoint_path *tps)
Steven Rostedt520509432009-08-17 16:18:05 +0200270{
271 struct dirent *dent;
272 struct stat st;
273 char *path;
274 char *sys;
275 DIR *dir;
276 int count = 0;
277 int ret;
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900278 int err;
Steven Rostedt520509432009-08-17 16:18:05 +0200279
280 path = get_tracing_file("events");
Namhyung Kim7f42b952013-03-21 16:18:47 +0900281 if (!path) {
282 pr_debug("can't get tracing/events");
283 return -ENOMEM;
284 }
Steven Rostedt520509432009-08-17 16:18:05 +0200285
286 dir = opendir(path);
Namhyung Kim7f42b952013-03-21 16:18:47 +0900287 if (!dir) {
288 err = -errno;
289 pr_debug("can't read directory '%s'", path);
290 goto out;
291 }
Steven Rostedt520509432009-08-17 16:18:05 +0200292
293 while ((dent = readdir(dir))) {
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500294 if (dent->d_type != DT_DIR ||
295 strcmp(dent->d_name, ".") == 0 ||
Steven Rostedt520509432009-08-17 16:18:05 +0200296 strcmp(dent->d_name, "..") == 0 ||
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200297 strcmp(dent->d_name, "ftrace") == 0 ||
298 !system_in_tp_list(dent->d_name, tps))
Steven Rostedt520509432009-08-17 16:18:05 +0200299 continue;
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500300 count++;
Steven Rostedt520509432009-08-17 16:18:05 +0200301 }
302
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900303 if (write(output_fd, &count, 4) != 4) {
304 err = -EIO;
305 pr_debug("can't write count\n");
306 goto out;
307 }
Steven Rostedt520509432009-08-17 16:18:05 +0200308
309 rewinddir(dir);
310 while ((dent = readdir(dir))) {
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500311 if (dent->d_type != DT_DIR ||
312 strcmp(dent->d_name, ".") == 0 ||
Steven Rostedt520509432009-08-17 16:18:05 +0200313 strcmp(dent->d_name, "..") == 0 ||
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200314 strcmp(dent->d_name, "ftrace") == 0 ||
315 !system_in_tp_list(dent->d_name, tps))
Steven Rostedt520509432009-08-17 16:18:05 +0200316 continue;
Andy Shevchenkod400a682014-07-04 14:43:48 +0300317 if (asprintf(&sys, "%s/%s", path, dent->d_name) < 0) {
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900318 err = -ENOMEM;
319 goto out;
320 }
Steven Rostedt520509432009-08-17 16:18:05 +0200321 ret = stat(sys, &st);
322 if (ret >= 0) {
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900323 ssize_t size = strlen(dent->d_name) + 1;
324
325 if (write(output_fd, dent->d_name, size) != size ||
326 copy_event_system(sys, tps) < 0) {
327 err = -EIO;
328 free(sys);
329 goto out;
330 }
Steven Rostedt520509432009-08-17 16:18:05 +0200331 }
332 free(sys);
333 }
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900334 err = 0;
335out:
Xiao Guangrong99674112009-12-28 16:49:38 +0800336 closedir(dir);
Steven Rostedt520509432009-08-17 16:18:05 +0200337 put_tracing_file(path);
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900338
339 return err;
Steven Rostedt520509432009-08-17 16:18:05 +0200340}
341
Namhyung Kim077f1592013-06-04 14:20:29 +0900342static int record_proc_kallsyms(void)
Steven Rostedt520509432009-08-17 16:18:05 +0200343{
Sonny Rao259032b2011-07-14 13:34:43 +1000344 unsigned int size;
Steven Rostedt520509432009-08-17 16:18:05 +0200345 const char *path = "/proc/kallsyms";
346 struct stat st;
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900347 int ret, err = 0;
Steven Rostedt520509432009-08-17 16:18:05 +0200348
349 ret = stat(path, &st);
350 if (ret < 0) {
351 /* not found */
352 size = 0;
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900353 if (write(output_fd, &size, 4) != 4)
354 err = -EIO;
355 return err;
Steven Rostedt520509432009-08-17 16:18:05 +0200356 }
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900357 return record_file(path, 4);
Steven Rostedt520509432009-08-17 16:18:05 +0200358}
359
Namhyung Kim077f1592013-06-04 14:20:29 +0900360static int record_ftrace_printk(void)
Steven Rostedt520509432009-08-17 16:18:05 +0200361{
Sonny Rao259032b2011-07-14 13:34:43 +1000362 unsigned int size;
Li Zefan6706ccf2009-09-17 16:34:23 +0800363 char *path;
Steven Rostedt520509432009-08-17 16:18:05 +0200364 struct stat st;
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900365 int ret, err = 0;
Steven Rostedt520509432009-08-17 16:18:05 +0200366
367 path = get_tracing_file("printk_formats");
Namhyung Kim7f42b952013-03-21 16:18:47 +0900368 if (!path) {
369 pr_debug("can't get tracing/printk_formats");
370 return -ENOMEM;
371 }
Namhyung Kim454f8c72013-03-21 16:18:44 +0900372
Steven Rostedt520509432009-08-17 16:18:05 +0200373 ret = stat(path, &st);
374 if (ret < 0) {
375 /* not found */
376 size = 0;
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900377 if (write(output_fd, &size, 4) != 4)
378 err = -EIO;
Li Zefan6706ccf2009-09-17 16:34:23 +0800379 goto out;
Steven Rostedt520509432009-08-17 16:18:05 +0200380 }
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900381 err = record_file(path, 4);
Sonny Rao259032b2011-07-14 13:34:43 +1000382
Li Zefan6706ccf2009-09-17 16:34:23 +0800383out:
384 put_tracing_file(path);
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900385 return err;
Steven Rostedt520509432009-08-17 16:18:05 +0200386}
387
Namhyung Kim7f42b952013-03-21 16:18:47 +0900388static void
389put_tracepoints_path(struct tracepoint_path *tps)
390{
391 while (tps) {
392 struct tracepoint_path *t = tps;
393
394 tps = tps->next;
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300395 zfree(&t->name);
396 zfree(&t->system);
Namhyung Kim7f42b952013-03-21 16:18:47 +0900397 free(t);
398 }
399}
400
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200401static struct tracepoint_path *
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200402get_tracepoints_path(struct list_head *pattrs)
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200403{
404 struct tracepoint_path path, *ppath = &path;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200405 struct perf_evsel *pos;
406 int nr_tracepoints = 0;
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200407
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200408 list_for_each_entry(pos, pattrs, node) {
409 if (pos->attr.type != PERF_TYPE_TRACEPOINT)
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200410 continue;
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200411 ++nr_tracepoints;
Namhyung Kime7c93f02013-06-26 16:14:05 +0900412
413 if (pos->name) {
414 ppath->next = tracepoint_name_to_path(pos->name);
415 if (ppath->next)
416 goto next;
417
418 if (strchr(pos->name, ':') == NULL)
419 goto try_id;
420
421 goto error;
422 }
423
424try_id:
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200425 ppath->next = tracepoint_id_to_path(pos->attr.config);
Namhyung Kim7f42b952013-03-21 16:18:47 +0900426 if (!ppath->next) {
Namhyung Kime7c93f02013-06-26 16:14:05 +0900427error:
Namhyung Kim7f42b952013-03-21 16:18:47 +0900428 pr_debug("No memory to alloc tracepoints list\n");
429 put_tracepoints_path(&path);
430 return NULL;
431 }
Namhyung Kime7c93f02013-06-26 16:14:05 +0900432next:
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200433 ppath = ppath->next;
434 }
435
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200436 return nr_tracepoints > 0 ? path.next : NULL;
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200437}
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200438
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200439bool have_tracepoints(struct list_head *pattrs)
Tom Zanussi63e0c772010-05-03 00:14:48 -0500440{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200441 struct perf_evsel *pos;
Tom Zanussidb620b12010-05-04 22:20:16 -0500442
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200443 list_for_each_entry(pos, pattrs, node)
444 if (pos->attr.type == PERF_TYPE_TRACEPOINT)
Tom Zanussidb620b12010-05-04 22:20:16 -0500445 return true;
446
447 return false;
Tom Zanussi63e0c772010-05-03 00:14:48 -0500448}
449
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900450static int tracing_data_header(void)
Steven Rostedt520509432009-08-17 16:18:05 +0200451{
Jiri Olsa29208e52011-10-20 15:59:43 +0200452 char buf[20];
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900453 ssize_t size;
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200454
Jiri Olsa29208e52011-10-20 15:59:43 +0200455 /* just guessing this is someone's birthday.. ;) */
Steven Rostedt520509432009-08-17 16:18:05 +0200456 buf[0] = 23;
457 buf[1] = 8;
458 buf[2] = 68;
459 memcpy(buf + 3, "tracing", 7);
460
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900461 if (write(output_fd, buf, 10) != 10)
462 return -1;
Steven Rostedt520509432009-08-17 16:18:05 +0200463
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900464 size = strlen(VERSION) + 1;
465 if (write(output_fd, VERSION, size) != size)
466 return -1;
Steven Rostedt520509432009-08-17 16:18:05 +0200467
468 /* save endian */
469 if (bigendian())
470 buf[0] = 1;
471 else
472 buf[0] = 0;
473
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900474 if (write(output_fd, buf, 1) != 1)
475 return -1;
Steven Rostedt520509432009-08-17 16:18:05 +0200476
477 /* save size of long */
478 buf[0] = sizeof(long);
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900479 if (write(output_fd, buf, 1) != 1)
480 return -1;
Steven Rostedt520509432009-08-17 16:18:05 +0200481
482 /* save page_size */
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900483 if (write(output_fd, &page_size, 4) != 4)
484 return -1;
485
486 return 0;
Jiri Olsa29208e52011-10-20 15:59:43 +0200487}
Steven Rostedt520509432009-08-17 16:18:05 +0200488
Jiri Olsa29208e52011-10-20 15:59:43 +0200489struct tracing_data *tracing_data_get(struct list_head *pattrs,
490 int fd, bool temp)
491{
492 struct tracepoint_path *tps;
493 struct tracing_data *tdata;
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900494 int err;
Jiri Olsa29208e52011-10-20 15:59:43 +0200495
496 output_fd = fd;
497
498 tps = get_tracepoints_path(pattrs);
499 if (!tps)
500 return NULL;
501
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900502 tdata = malloc(sizeof(*tdata));
503 if (!tdata)
504 return NULL;
505
Jiri Olsa29208e52011-10-20 15:59:43 +0200506 tdata->temp = temp;
507 tdata->size = 0;
508
509 if (temp) {
510 int temp_fd;
511
512 snprintf(tdata->temp_file, sizeof(tdata->temp_file),
513 "/tmp/perf-XXXXXX");
Namhyung Kim7f42b952013-03-21 16:18:47 +0900514 if (!mkstemp(tdata->temp_file)) {
515 pr_debug("Can't make temp file");
516 return NULL;
517 }
Jiri Olsa29208e52011-10-20 15:59:43 +0200518
519 temp_fd = open(tdata->temp_file, O_RDWR);
Namhyung Kim7f42b952013-03-21 16:18:47 +0900520 if (temp_fd < 0) {
521 pr_debug("Can't read '%s'", tdata->temp_file);
522 return NULL;
523 }
Jiri Olsa29208e52011-10-20 15:59:43 +0200524
525 /*
526 * Set the temp file the default output, so all the
527 * tracing data are stored into it.
528 */
529 output_fd = temp_fd;
530 }
531
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900532 err = tracing_data_header();
533 if (err)
534 goto out;
Namhyung Kim077f1592013-06-04 14:20:29 +0900535 err = record_header_files();
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900536 if (err)
537 goto out;
Namhyung Kim077f1592013-06-04 14:20:29 +0900538 err = record_ftrace_files(tps);
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900539 if (err)
540 goto out;
Namhyung Kim077f1592013-06-04 14:20:29 +0900541 err = record_event_files(tps);
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900542 if (err)
543 goto out;
Namhyung Kim077f1592013-06-04 14:20:29 +0900544 err = record_proc_kallsyms();
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900545 if (err)
546 goto out;
Namhyung Kim077f1592013-06-04 14:20:29 +0900547 err = record_ftrace_printk();
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200548
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900549out:
Jiri Olsa29208e52011-10-20 15:59:43 +0200550 /*
551 * All tracing data are stored by now, we can restore
552 * the default output file in case we used temp file.
553 */
554 if (temp) {
555 tdata->size = lseek(output_fd, 0, SEEK_CUR);
556 close(output_fd);
557 output_fd = fd;
558 }
559
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300560 if (err)
561 zfree(&tdata);
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900562
Jiri Olsa29208e52011-10-20 15:59:43 +0200563 put_tracepoints_path(tps);
564 return tdata;
Steven Rostedt520509432009-08-17 16:18:05 +0200565}
Tom Zanussi92155452010-04-01 23:59:21 -0500566
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900567int tracing_data_put(struct tracing_data *tdata)
Tom Zanussi92155452010-04-01 23:59:21 -0500568{
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900569 int err = 0;
570
Jiri Olsa29208e52011-10-20 15:59:43 +0200571 if (tdata->temp) {
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900572 err = record_file(tdata->temp_file, 0);
Jiri Olsa29208e52011-10-20 15:59:43 +0200573 unlink(tdata->temp_file);
574 }
Tom Zanussi92155452010-04-01 23:59:21 -0500575
Jiri Olsa29208e52011-10-20 15:59:43 +0200576 free(tdata);
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900577 return err;
Jiri Olsa29208e52011-10-20 15:59:43 +0200578}
Tom Zanussi92155452010-04-01 23:59:21 -0500579
Jiri Olsa29208e52011-10-20 15:59:43 +0200580int read_tracing_data(int fd, struct list_head *pattrs)
581{
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900582 int err;
Jiri Olsa29208e52011-10-20 15:59:43 +0200583 struct tracing_data *tdata;
Tom Zanussi92155452010-04-01 23:59:21 -0500584
Jiri Olsa29208e52011-10-20 15:59:43 +0200585 /*
586 * We work over the real file, so we can write data
587 * directly, no temp file is needed.
588 */
589 tdata = tracing_data_get(pattrs, fd, false);
590 if (!tdata)
591 return -ENOMEM;
592
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900593 err = tracing_data_put(tdata);
594 return err;
Tom Zanussi92155452010-04-01 23:59:21 -0500595}