blob: 5ea8973ad331d48e1d4d9e9c94cc65d27a816599 [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 */
21#define _GNU_SOURCE
22#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>
34#include <ctype.h>
35#include <errno.h>
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +020036#include <stdbool.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"
Xiao Guangrong61be3e52009-12-28 16:48:30 +080041#include "debugfs.h"
Steven Rostedt520509432009-08-17 16:18:05 +020042
Steven Rostedt520509432009-08-17 16:18:05 +020043#define VERSION "0.5"
44
45#define _STR(x) #x
46#define STR(x) _STR(x)
47#define MAX_PATH 256
48
49#define TRACE_CTRL "tracing_on"
50#define TRACE "trace"
51#define AVAILABLE "available_tracers"
52#define CURRENT "current_tracer"
53#define ITER_CTRL "trace_options"
54#define MAX_LATENCY "tracing_max_latency"
55
56unsigned int page_size;
57
58static const char *output_file = "trace.info";
59static int output_fd;
60
61struct event_list {
62 struct event_list *next;
63 const char *event;
64};
65
66struct events {
67 struct events *sibling;
68 struct events *children;
69 struct events *next;
70 char *name;
71};
72
73
74
75static void die(const char *fmt, ...)
76{
77 va_list ap;
78 int ret = errno;
79
80 if (errno)
81 perror("trace-cmd");
82 else
83 ret = -1;
84
85 va_start(ap, fmt);
86 fprintf(stderr, " ");
87 vfprintf(stderr, fmt, ap);
88 va_end(ap);
89
90 fprintf(stderr, "\n");
91 exit(ret);
92}
93
94void *malloc_or_die(unsigned int size)
95{
96 void *data;
97
98 data = malloc(size);
99 if (!data)
100 die("malloc");
101 return data;
102}
103
104static const char *find_debugfs(void)
105{
Xiao Guangrong61be3e52009-12-28 16:48:30 +0800106 const char *path = debugfs_mount(NULL);
Steven Rostedt520509432009-08-17 16:18:05 +0200107
Xiao Guangrong61be3e52009-12-28 16:48:30 +0800108 if (!path)
109 die("Your kernel not support debugfs filesystem");
Steven Rostedt520509432009-08-17 16:18:05 +0200110
Xiao Guangrong61be3e52009-12-28 16:48:30 +0800111 return path;
Steven Rostedt520509432009-08-17 16:18:05 +0200112}
113
114/*
115 * Finds the path to the debugfs/tracing
116 * Allocates the string and stores it.
117 */
118static const char *find_tracing_dir(void)
119{
120 static char *tracing;
121 static int tracing_found;
122 const char *debugfs;
123
124 if (tracing_found)
125 return tracing;
126
127 debugfs = find_debugfs();
128
129 tracing = malloc_or_die(strlen(debugfs) + 9);
130
131 sprintf(tracing, "%s/tracing", debugfs);
132
133 tracing_found = 1;
134 return tracing;
135}
136
137static char *get_tracing_file(const char *name)
138{
139 const char *tracing;
140 char *file;
141
142 tracing = find_tracing_dir();
143 if (!tracing)
144 return NULL;
145
146 file = malloc_or_die(strlen(tracing) + strlen(name) + 2);
147
148 sprintf(file, "%s/%s", tracing, name);
149 return file;
150}
151
152static void put_tracing_file(char *file)
153{
154 free(file);
155}
156
157static ssize_t write_or_die(const void *buf, size_t len)
158{
159 int ret;
160
161 ret = write(output_fd, buf, len);
162 if (ret < 0)
163 die("writing to '%s'", output_file);
164
165 return ret;
166}
167
168int bigendian(void)
169{
170 unsigned char str[] = { 0x1, 0x2, 0x3, 0x4, 0x0, 0x0, 0x0, 0x0};
171 unsigned int *ptr;
172
Ingo Molnar65014ab2009-09-02 14:55:55 +0200173 ptr = (unsigned int *)(void *)str;
Steven Rostedt520509432009-08-17 16:18:05 +0200174 return *ptr == 0x01020304;
175}
176
177static unsigned long long copy_file_fd(int fd)
178{
179 unsigned long long size = 0;
180 char buf[BUFSIZ];
181 int r;
182
183 do {
184 r = read(fd, buf, BUFSIZ);
185 if (r > 0) {
186 size += r;
187 write_or_die(buf, r);
188 }
189 } while (r > 0);
190
191 return size;
192}
193
194static unsigned long long copy_file(const char *file)
195{
196 unsigned long long size = 0;
197 int fd;
198
199 fd = open(file, O_RDONLY);
200 if (fd < 0)
201 die("Can't read '%s'", file);
202 size = copy_file_fd(fd);
203 close(fd);
204
205 return size;
206}
207
208static unsigned long get_size_fd(int fd)
209{
210 unsigned long long size = 0;
211 char buf[BUFSIZ];
212 int r;
213
214 do {
215 r = read(fd, buf, BUFSIZ);
216 if (r > 0)
217 size += r;
218 } while (r > 0);
219
220 lseek(fd, 0, SEEK_SET);
221
222 return size;
223}
224
225static unsigned long get_size(const char *file)
226{
227 unsigned long long size = 0;
228 int fd;
229
230 fd = open(file, O_RDONLY);
231 if (fd < 0)
232 die("Can't read '%s'", file);
233 size = get_size_fd(fd);
234 close(fd);
235
236 return size;
237}
238
239static void read_header_files(void)
240{
241 unsigned long long size, check_size;
242 char *path;
243 int fd;
244
245 path = get_tracing_file("events/header_page");
246 fd = open(path, O_RDONLY);
247 if (fd < 0)
248 die("can't read '%s'", path);
249
250 /* unfortunately, you can not stat debugfs files for size */
251 size = get_size_fd(fd);
252
253 write_or_die("header_page", 12);
254 write_or_die(&size, 8);
255 check_size = copy_file_fd(fd);
Xiao Guangrong99674112009-12-28 16:49:38 +0800256 close(fd);
257
Steven Rostedt520509432009-08-17 16:18:05 +0200258 if (size != check_size)
259 die("wrong size for '%s' size=%lld read=%lld",
260 path, size, check_size);
261 put_tracing_file(path);
262
263 path = get_tracing_file("events/header_event");
264 fd = open(path, O_RDONLY);
265 if (fd < 0)
266 die("can't read '%s'", path);
267
268 size = get_size_fd(fd);
269
270 write_or_die("header_event", 13);
271 write_or_die(&size, 8);
272 check_size = copy_file_fd(fd);
273 if (size != check_size)
274 die("wrong size for '%s'", path);
275 put_tracing_file(path);
Xiao Guangrong99674112009-12-28 16:49:38 +0800276 close(fd);
Steven Rostedt520509432009-08-17 16:18:05 +0200277}
278
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200279static bool name_in_tp_list(char *sys, struct tracepoint_path *tps)
280{
281 while (tps) {
282 if (!strcmp(sys, tps->name))
283 return true;
284 tps = tps->next;
285 }
286
287 return false;
288}
289
290static void copy_event_system(const char *sys, struct tracepoint_path *tps)
Steven Rostedt520509432009-08-17 16:18:05 +0200291{
292 unsigned long long size, check_size;
293 struct dirent *dent;
294 struct stat st;
295 char *format;
296 DIR *dir;
297 int count = 0;
298 int ret;
299
300 dir = opendir(sys);
301 if (!dir)
302 die("can't read directory '%s'", sys);
303
304 while ((dent = readdir(dir))) {
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500305 if (dent->d_type != DT_DIR ||
306 strcmp(dent->d_name, ".") == 0 ||
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200307 strcmp(dent->d_name, "..") == 0 ||
308 !name_in_tp_list(dent->d_name, tps))
Steven Rostedt520509432009-08-17 16:18:05 +0200309 continue;
310 format = malloc_or_die(strlen(sys) + strlen(dent->d_name) + 10);
311 sprintf(format, "%s/%s/format", sys, dent->d_name);
312 ret = stat(format, &st);
313 free(format);
314 if (ret < 0)
315 continue;
316 count++;
317 }
318
319 write_or_die(&count, 4);
320
321 rewinddir(dir);
322 while ((dent = readdir(dir))) {
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500323 if (dent->d_type != DT_DIR ||
324 strcmp(dent->d_name, ".") == 0 ||
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200325 strcmp(dent->d_name, "..") == 0 ||
326 !name_in_tp_list(dent->d_name, tps))
Steven Rostedt520509432009-08-17 16:18:05 +0200327 continue;
328 format = malloc_or_die(strlen(sys) + strlen(dent->d_name) + 10);
329 sprintf(format, "%s/%s/format", sys, dent->d_name);
330 ret = stat(format, &st);
331
332 if (ret >= 0) {
333 /* unfortunately, you can not stat debugfs files for size */
334 size = get_size(format);
335 write_or_die(&size, 8);
336 check_size = copy_file(format);
337 if (size != check_size)
338 die("error in size of file '%s'", format);
339 }
340
341 free(format);
342 }
Xiao Guangrong99674112009-12-28 16:49:38 +0800343 closedir(dir);
Steven Rostedt520509432009-08-17 16:18:05 +0200344}
345
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200346static void read_ftrace_files(struct tracepoint_path *tps)
Steven Rostedt520509432009-08-17 16:18:05 +0200347{
348 char *path;
349
350 path = get_tracing_file("events/ftrace");
351
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200352 copy_event_system(path, tps);
Steven Rostedt520509432009-08-17 16:18:05 +0200353
354 put_tracing_file(path);
355}
356
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200357static bool system_in_tp_list(char *sys, struct tracepoint_path *tps)
358{
359 while (tps) {
360 if (!strcmp(sys, tps->system))
361 return true;
362 tps = tps->next;
363 }
364
365 return false;
366}
367
368static void read_event_files(struct tracepoint_path *tps)
Steven Rostedt520509432009-08-17 16:18:05 +0200369{
370 struct dirent *dent;
371 struct stat st;
372 char *path;
373 char *sys;
374 DIR *dir;
375 int count = 0;
376 int ret;
377
378 path = get_tracing_file("events");
379
380 dir = opendir(path);
381 if (!dir)
382 die("can't read directory '%s'", path);
383
384 while ((dent = readdir(dir))) {
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500385 if (dent->d_type != DT_DIR ||
386 strcmp(dent->d_name, ".") == 0 ||
Steven Rostedt520509432009-08-17 16:18:05 +0200387 strcmp(dent->d_name, "..") == 0 ||
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200388 strcmp(dent->d_name, "ftrace") == 0 ||
389 !system_in_tp_list(dent->d_name, tps))
Steven Rostedt520509432009-08-17 16:18:05 +0200390 continue;
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500391 count++;
Steven Rostedt520509432009-08-17 16:18:05 +0200392 }
393
394 write_or_die(&count, 4);
395
396 rewinddir(dir);
397 while ((dent = readdir(dir))) {
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500398 if (dent->d_type != DT_DIR ||
399 strcmp(dent->d_name, ".") == 0 ||
Steven Rostedt520509432009-08-17 16:18:05 +0200400 strcmp(dent->d_name, "..") == 0 ||
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200401 strcmp(dent->d_name, "ftrace") == 0 ||
402 !system_in_tp_list(dent->d_name, tps))
Steven Rostedt520509432009-08-17 16:18:05 +0200403 continue;
404 sys = malloc_or_die(strlen(path) + strlen(dent->d_name) + 2);
405 sprintf(sys, "%s/%s", path, dent->d_name);
406 ret = stat(sys, &st);
407 if (ret >= 0) {
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500408 write_or_die(dent->d_name, strlen(dent->d_name) + 1);
409 copy_event_system(sys, tps);
Steven Rostedt520509432009-08-17 16:18:05 +0200410 }
411 free(sys);
412 }
413
Xiao Guangrong99674112009-12-28 16:49:38 +0800414 closedir(dir);
Steven Rostedt520509432009-08-17 16:18:05 +0200415 put_tracing_file(path);
416}
417
418static void read_proc_kallsyms(void)
419{
420 unsigned int size, check_size;
421 const char *path = "/proc/kallsyms";
422 struct stat st;
423 int ret;
424
425 ret = stat(path, &st);
426 if (ret < 0) {
427 /* not found */
428 size = 0;
429 write_or_die(&size, 4);
430 return;
431 }
432 size = get_size(path);
433 write_or_die(&size, 4);
434 check_size = copy_file(path);
435 if (size != check_size)
436 die("error in size of file '%s'", path);
437
438}
439
440static void read_ftrace_printk(void)
441{
442 unsigned int size, check_size;
Li Zefan6706ccf2009-09-17 16:34:23 +0800443 char *path;
Steven Rostedt520509432009-08-17 16:18:05 +0200444 struct stat st;
445 int ret;
446
447 path = get_tracing_file("printk_formats");
448 ret = stat(path, &st);
449 if (ret < 0) {
450 /* not found */
451 size = 0;
452 write_or_die(&size, 4);
Li Zefan6706ccf2009-09-17 16:34:23 +0800453 goto out;
Steven Rostedt520509432009-08-17 16:18:05 +0200454 }
455 size = get_size(path);
456 write_or_die(&size, 4);
457 check_size = copy_file(path);
458 if (size != check_size)
459 die("error in size of file '%s'", path);
Li Zefan6706ccf2009-09-17 16:34:23 +0800460out:
461 put_tracing_file(path);
Steven Rostedt520509432009-08-17 16:18:05 +0200462}
463
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200464static struct tracepoint_path *
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200465get_tracepoints_path(struct perf_event_attr *pattrs, int nb_events)
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200466{
467 struct tracepoint_path path, *ppath = &path;
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200468 int i, nr_tracepoints = 0;
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200469
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200470 for (i = 0; i < nb_events; i++) {
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200471 if (pattrs[i].type != PERF_TYPE_TRACEPOINT)
472 continue;
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200473 ++nr_tracepoints;
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200474 ppath->next = tracepoint_id_to_path(pattrs[i].config);
475 if (!ppath->next)
476 die("%s\n", "No memory to alloc tracepoints list");
477 ppath = ppath->next;
478 }
479
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200480 return nr_tracepoints > 0 ? path.next : NULL;
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200481}
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200482
483int read_tracing_data(int fd, struct perf_event_attr *pattrs, int nb_events)
Steven Rostedt520509432009-08-17 16:18:05 +0200484{
485 char buf[BUFSIZ];
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200486 struct tracepoint_path *tps = get_tracepoints_path(pattrs, nb_events);
487
488 /*
489 * What? No tracepoints? No sense writing anything here, bail out.
490 */
491 if (tps == NULL)
492 return -1;
Steven Rostedt520509432009-08-17 16:18:05 +0200493
Frederic Weisbecker03456a12009-10-06 23:36:47 +0200494 output_fd = fd;
Steven Rostedt520509432009-08-17 16:18:05 +0200495
496 buf[0] = 23;
497 buf[1] = 8;
498 buf[2] = 68;
499 memcpy(buf + 3, "tracing", 7);
500
501 write_or_die(buf, 10);
502
503 write_or_die(VERSION, strlen(VERSION) + 1);
504
505 /* save endian */
506 if (bigendian())
507 buf[0] = 1;
508 else
509 buf[0] = 0;
510
511 write_or_die(buf, 1);
512
513 /* save size of long */
514 buf[0] = sizeof(long);
515 write_or_die(buf, 1);
516
517 /* save page_size */
Arnaldo Carvalho de Melo1b759622010-01-14 18:30:04 -0200518 page_size = sysconf(_SC_PAGESIZE);
Steven Rostedt520509432009-08-17 16:18:05 +0200519 write_or_die(&page_size, 4);
520
521 read_header_files();
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200522 read_ftrace_files(tps);
523 read_event_files(tps);
Steven Rostedt520509432009-08-17 16:18:05 +0200524 read_proc_kallsyms();
525 read_ftrace_printk();
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200526
527 return 0;
Steven Rostedt520509432009-08-17 16:18:05 +0200528}