blob: c24b3a15e319675b2ddf9de760ff81f1f2468854 [file] [log] [blame]
Thomas Gleixner5a8e0ff2019-05-31 01:09:51 -07001// SPDX-License-Identifier: GPL-2.0-only
Steven Rostedt520509432009-08-17 16:18:05 +02002/*
3 * Copyright (C) 2008,2009, Steven Rostedt <srostedt@redhat.com>
Steven Rostedt520509432009-08-17 16:18:05 +02004 */
Steven Rostedt520509432009-08-17 16:18:05 +02005#include <dirent.h>
Ulrich Drepper659d8cf2009-12-19 16:40:28 -05006#include <mntent.h>
Steven Rostedt520509432009-08-17 16:18:05 +02007#include <stdio.h>
8#include <stdlib.h>
9#include <string.h>
10#include <stdarg.h>
11#include <sys/types.h>
12#include <sys/stat.h>
13#include <sys/wait.h>
Steven Rostedt520509432009-08-17 16:18:05 +020014#include <fcntl.h>
15#include <unistd.h>
Steven Rostedt520509432009-08-17 16:18:05 +020016#include <errno.h>
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +020017#include <stdbool.h>
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020018#include <linux/list.h>
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -020019#include <linux/kernel.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -030020#include <linux/zalloc.h>
Jiri Olsa20f2be12019-08-06 15:25:25 +020021#include <internal/lib.h> // page_size
Ian Rogers9b7c7722022-07-29 13:42:17 -070022#include <sys/param.h>
Steven Rostedt520509432009-08-17 16:18:05 +020023
24#include "trace-event.h"
Ian Rogers9b7c7722022-07-29 13:42:17 -070025#include "tracepoint.h"
Jiri Olsa592d5a62015-09-02 09:56:34 +020026#include <api/fs/tracing_path.h>
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020027#include "evsel.h"
Jiri Olsa84f5d362014-07-14 23:46:48 +020028#include "debug.h"
Ian Rogers5b7a29f2022-11-29 22:29:33 -080029#include "util.h"
Steven Rostedt520509432009-08-17 16:18:05 +020030
Namhyung Kimcd4ceb632013-04-11 17:25:04 +090031#define VERSION "0.6"
Ian Rogers9b7c7722022-07-29 13:42:17 -070032#define MAX_EVENT_LENGTH 512
Steven Rostedt520509432009-08-17 16:18:05 +020033
Steven Rostedt520509432009-08-17 16:18:05 +020034static int output_fd;
35
Ian Rogers9b7c7722022-07-29 13:42:17 -070036struct tracepoint_path {
37 char *system;
38 char *name;
39 struct tracepoint_path *next;
40};
Steven Rostedt520509432009-08-17 16:18:05 +020041
Sonny Rao259032b2011-07-14 13:34:43 +100042/* unfortunately, you can not stat debugfs or proc files for size */
Namhyung Kim8755d5e2013-03-21 16:18:46 +090043static int record_file(const char *file, ssize_t hdr_sz)
Steven Rostedt520509432009-08-17 16:18:05 +020044{
45 unsigned long long size = 0;
Sonny Rao259032b2011-07-14 13:34:43 +100046 char buf[BUFSIZ], *sizep;
47 off_t hdr_pos = lseek(output_fd, 0, SEEK_CUR);
48 int r, fd;
Namhyung Kim8755d5e2013-03-21 16:18:46 +090049 int err = -EIO;
Sonny Rao259032b2011-07-14 13:34:43 +100050
51 fd = open(file, O_RDONLY);
Namhyung Kim7f42b952013-03-21 16:18:47 +090052 if (fd < 0) {
53 pr_debug("Can't read '%s'", file);
54 return -errno;
55 }
Sonny Rao259032b2011-07-14 13:34:43 +100056
57 /* put in zeros for file size, then fill true size later */
Namhyung Kim8755d5e2013-03-21 16:18:46 +090058 if (hdr_sz) {
59 if (write(output_fd, &size, hdr_sz) != hdr_sz)
60 goto out;
61 }
Steven Rostedt520509432009-08-17 16:18:05 +020062
63 do {
64 r = read(fd, buf, BUFSIZ);
65 if (r > 0) {
66 size += r;
Namhyung Kim8755d5e2013-03-21 16:18:46 +090067 if (write(output_fd, buf, r) != r)
68 goto out;
Steven Rostedt520509432009-08-17 16:18:05 +020069 }
70 } while (r > 0);
Steven Rostedt520509432009-08-17 16:18:05 +020071
Sonny Rao259032b2011-07-14 13:34:43 +100072 /* ugh, handle big-endian hdr_size == 4 */
73 sizep = (char*)&size;
Ian Rogers5b7a29f2022-11-29 22:29:33 -080074 if (host_is_bigendian())
Sonny Rao259032b2011-07-14 13:34:43 +100075 sizep += sizeof(u64) - hdr_sz;
Steven Rostedt520509432009-08-17 16:18:05 +020076
Namhyung Kim7f42b952013-03-21 16:18:47 +090077 if (hdr_sz && pwrite(output_fd, sizep, hdr_sz, hdr_pos) < 0) {
78 pr_debug("writing file size failed\n");
79 goto out;
80 }
Namhyung Kim8755d5e2013-03-21 16:18:46 +090081
82 err = 0;
83out:
84 close(fd);
85 return err;
Steven Rostedt520509432009-08-17 16:18:05 +020086}
87
Namhyung Kim077f1592013-06-04 14:20:29 +090088static int record_header_files(void)
Steven Rostedt520509432009-08-17 16:18:05 +020089{
Arnaldo Carvalho de Melo40c3c0c2018-05-16 16:42:26 -030090 char *path = get_events_file("header_page");
Sonny Rao259032b2011-07-14 13:34:43 +100091 struct stat st;
Namhyung Kim8755d5e2013-03-21 16:18:46 +090092 int err = -EIO;
Steven Rostedt520509432009-08-17 16:18:05 +020093
Namhyung Kim7f42b952013-03-21 16:18:47 +090094 if (!path) {
95 pr_debug("can't get tracing/events/header_page");
96 return -ENOMEM;
97 }
Namhyung Kim454f8c72013-03-21 16:18:44 +090098
Namhyung Kim7f42b952013-03-21 16:18:47 +090099 if (stat(path, &st) < 0) {
100 pr_debug("can't read '%s'", path);
101 goto out;
102 }
Steven Rostedt520509432009-08-17 16:18:05 +0200103
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900104 if (write(output_fd, "header_page", 12) != 12) {
105 pr_debug("can't write header_page\n");
106 goto out;
107 }
108
109 if (record_file(path, 8) < 0) {
110 pr_debug("can't record header_page file\n");
111 goto out;
112 }
113
Arnaldo Carvalho de Melo40c3c0c2018-05-16 16:42:26 -0300114 put_events_file(path);
Steven Rostedt520509432009-08-17 16:18:05 +0200115
Arnaldo Carvalho de Melo40c3c0c2018-05-16 16:42:26 -0300116 path = get_events_file("header_event");
Namhyung Kim7f42b952013-03-21 16:18:47 +0900117 if (!path) {
118 pr_debug("can't get tracing/events/header_event");
119 err = -ENOMEM;
120 goto out;
121 }
Namhyung Kim454f8c72013-03-21 16:18:44 +0900122
Namhyung Kim7f42b952013-03-21 16:18:47 +0900123 if (stat(path, &st) < 0) {
124 pr_debug("can't read '%s'", path);
125 goto out;
126 }
Steven Rostedt520509432009-08-17 16:18:05 +0200127
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900128 if (write(output_fd, "header_event", 13) != 13) {
129 pr_debug("can't write header_event\n");
130 goto out;
131 }
132
133 if (record_file(path, 8) < 0) {
134 pr_debug("can't record header_event file\n");
135 goto out;
136 }
137
138 err = 0;
139out:
Arnaldo Carvalho de Melo40c3c0c2018-05-16 16:42:26 -0300140 put_events_file(path);
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900141 return err;
Steven Rostedt520509432009-08-17 16:18:05 +0200142}
143
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200144static bool name_in_tp_list(char *sys, struct tracepoint_path *tps)
145{
146 while (tps) {
147 if (!strcmp(sys, tps->name))
148 return true;
149 tps = tps->next;
150 }
151
152 return false;
153}
154
Ian Rogersd2e31d72021-02-02 21:26:58 -0800155#define for_each_event_tps(dir, dent, tps) \
Taeung Song43d41de2017-01-31 20:38:28 +0900156 while ((dent = readdir(dir))) \
157 if (dent->d_type == DT_DIR && \
158 (strcmp(dent->d_name, ".")) && \
159 (strcmp(dent->d_name, ".."))) \
160
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900161static int copy_event_system(const char *sys, struct tracepoint_path *tps)
Steven Rostedt520509432009-08-17 16:18:05 +0200162{
Steven Rostedt520509432009-08-17 16:18:05 +0200163 struct dirent *dent;
164 struct stat st;
165 char *format;
166 DIR *dir;
167 int count = 0;
168 int ret;
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900169 int err;
Steven Rostedt520509432009-08-17 16:18:05 +0200170
171 dir = opendir(sys);
Namhyung Kim7f42b952013-03-21 16:18:47 +0900172 if (!dir) {
173 pr_debug("can't read directory '%s'", sys);
174 return -errno;
175 }
Steven Rostedt520509432009-08-17 16:18:05 +0200176
Ian Rogersd2e31d72021-02-02 21:26:58 -0800177 for_each_event_tps(dir, dent, tps) {
Taeung Song43d41de2017-01-31 20:38:28 +0900178 if (!name_in_tp_list(dent->d_name, tps))
Steven Rostedt520509432009-08-17 16:18:05 +0200179 continue;
Taeung Song43d41de2017-01-31 20:38:28 +0900180
Andy Shevchenkod400a682014-07-04 14:43:48 +0300181 if (asprintf(&format, "%s/%s/format", sys, dent->d_name) < 0) {
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900182 err = -ENOMEM;
183 goto out;
184 }
Steven Rostedt520509432009-08-17 16:18:05 +0200185 ret = stat(format, &st);
186 free(format);
187 if (ret < 0)
188 continue;
189 count++;
190 }
191
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900192 if (write(output_fd, &count, 4) != 4) {
193 err = -EIO;
194 pr_debug("can't write count\n");
195 goto out;
196 }
Steven Rostedt520509432009-08-17 16:18:05 +0200197
198 rewinddir(dir);
Ian Rogersd2e31d72021-02-02 21:26:58 -0800199 for_each_event_tps(dir, dent, tps) {
Taeung Song43d41de2017-01-31 20:38:28 +0900200 if (!name_in_tp_list(dent->d_name, tps))
Steven Rostedt520509432009-08-17 16:18:05 +0200201 continue;
Taeung Song43d41de2017-01-31 20:38:28 +0900202
Andy Shevchenkod400a682014-07-04 14:43:48 +0300203 if (asprintf(&format, "%s/%s/format", sys, dent->d_name) < 0) {
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900204 err = -ENOMEM;
205 goto out;
206 }
Steven Rostedt520509432009-08-17 16:18:05 +0200207 ret = stat(format, &st);
208
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900209 if (ret >= 0) {
210 err = record_file(format, 8);
211 if (err) {
212 free(format);
213 goto out;
214 }
215 }
Steven Rostedt520509432009-08-17 16:18:05 +0200216 free(format);
217 }
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900218 err = 0;
219out:
Xiao Guangrong99674112009-12-28 16:49:38 +0800220 closedir(dir);
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900221 return err;
Steven Rostedt520509432009-08-17 16:18:05 +0200222}
223
Namhyung Kim077f1592013-06-04 14:20:29 +0900224static int record_ftrace_files(struct tracepoint_path *tps)
Steven Rostedt520509432009-08-17 16:18:05 +0200225{
226 char *path;
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900227 int ret;
Steven Rostedt520509432009-08-17 16:18:05 +0200228
Arnaldo Carvalho de Melo40c3c0c2018-05-16 16:42:26 -0300229 path = get_events_file("ftrace");
Namhyung Kim7f42b952013-03-21 16:18:47 +0900230 if (!path) {
231 pr_debug("can't get tracing/events/ftrace");
232 return -ENOMEM;
233 }
Steven Rostedt520509432009-08-17 16:18:05 +0200234
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900235 ret = copy_event_system(path, tps);
Steven Rostedt520509432009-08-17 16:18:05 +0200236
237 put_tracing_file(path);
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900238
239 return ret;
Steven Rostedt520509432009-08-17 16:18:05 +0200240}
241
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200242static bool system_in_tp_list(char *sys, struct tracepoint_path *tps)
243{
244 while (tps) {
245 if (!strcmp(sys, tps->system))
246 return true;
247 tps = tps->next;
248 }
249
250 return false;
251}
252
Namhyung Kim077f1592013-06-04 14:20:29 +0900253static int record_event_files(struct tracepoint_path *tps)
Steven Rostedt520509432009-08-17 16:18:05 +0200254{
255 struct dirent *dent;
256 struct stat st;
257 char *path;
258 char *sys;
259 DIR *dir;
260 int count = 0;
261 int ret;
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900262 int err;
Steven Rostedt520509432009-08-17 16:18:05 +0200263
264 path = get_tracing_file("events");
Namhyung Kim7f42b952013-03-21 16:18:47 +0900265 if (!path) {
266 pr_debug("can't get tracing/events");
267 return -ENOMEM;
268 }
Steven Rostedt520509432009-08-17 16:18:05 +0200269
270 dir = opendir(path);
Namhyung Kim7f42b952013-03-21 16:18:47 +0900271 if (!dir) {
272 err = -errno;
273 pr_debug("can't read directory '%s'", path);
274 goto out;
275 }
Steven Rostedt520509432009-08-17 16:18:05 +0200276
Ian Rogersd2e31d72021-02-02 21:26:58 -0800277 for_each_event_tps(dir, dent, tps) {
Taeung Song43d41de2017-01-31 20:38:28 +0900278 if (strcmp(dent->d_name, "ftrace") == 0 ||
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200279 !system_in_tp_list(dent->d_name, tps))
Steven Rostedt520509432009-08-17 16:18:05 +0200280 continue;
Taeung Song43d41de2017-01-31 20:38:28 +0900281
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500282 count++;
Steven Rostedt520509432009-08-17 16:18:05 +0200283 }
284
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900285 if (write(output_fd, &count, 4) != 4) {
286 err = -EIO;
287 pr_debug("can't write count\n");
288 goto out;
289 }
Steven Rostedt520509432009-08-17 16:18:05 +0200290
291 rewinddir(dir);
Ian Rogersd2e31d72021-02-02 21:26:58 -0800292 for_each_event_tps(dir, dent, tps) {
Taeung Song43d41de2017-01-31 20:38:28 +0900293 if (strcmp(dent->d_name, "ftrace") == 0 ||
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200294 !system_in_tp_list(dent->d_name, tps))
Steven Rostedt520509432009-08-17 16:18:05 +0200295 continue;
Taeung Song43d41de2017-01-31 20:38:28 +0900296
Andy Shevchenkod400a682014-07-04 14:43:48 +0300297 if (asprintf(&sys, "%s/%s", path, dent->d_name) < 0) {
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900298 err = -ENOMEM;
299 goto out;
300 }
Steven Rostedt520509432009-08-17 16:18:05 +0200301 ret = stat(sys, &st);
302 if (ret >= 0) {
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900303 ssize_t size = strlen(dent->d_name) + 1;
304
305 if (write(output_fd, dent->d_name, size) != size ||
306 copy_event_system(sys, tps) < 0) {
307 err = -EIO;
308 free(sys);
309 goto out;
310 }
Steven Rostedt520509432009-08-17 16:18:05 +0200311 }
312 free(sys);
313 }
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900314 err = 0;
315out:
Xiao Guangrong99674112009-12-28 16:49:38 +0800316 closedir(dir);
Steven Rostedt520509432009-08-17 16:18:05 +0200317 put_tracing_file(path);
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900318
319 return err;
Steven Rostedt520509432009-08-17 16:18:05 +0200320}
321
Namhyung Kim077f1592013-06-04 14:20:29 +0900322static int record_proc_kallsyms(void)
Steven Rostedt520509432009-08-17 16:18:05 +0200323{
Arnaldo Carvalho de Melo6e5259e2015-07-22 17:02:18 -0300324 unsigned long long size = 0;
325 /*
326 * Just to keep older perf.data file parsers happy, record a zero
327 * sized kallsyms file, i.e. do the same thing that was done when
328 * /proc/kallsyms (or something specified via --kallsyms, in a
329 * different path) couldn't be read.
330 */
331 return write(output_fd, &size, 4) != 4 ? -EIO : 0;
Steven Rostedt520509432009-08-17 16:18:05 +0200332}
333
Namhyung Kim077f1592013-06-04 14:20:29 +0900334static int record_ftrace_printk(void)
Steven Rostedt520509432009-08-17 16:18:05 +0200335{
Sonny Rao259032b2011-07-14 13:34:43 +1000336 unsigned int size;
Li Zefan6706ccf2009-09-17 16:34:23 +0800337 char *path;
Steven Rostedt520509432009-08-17 16:18:05 +0200338 struct stat st;
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900339 int ret, err = 0;
Steven Rostedt520509432009-08-17 16:18:05 +0200340
341 path = get_tracing_file("printk_formats");
Namhyung Kim7f42b952013-03-21 16:18:47 +0900342 if (!path) {
343 pr_debug("can't get tracing/printk_formats");
344 return -ENOMEM;
345 }
Namhyung Kim454f8c72013-03-21 16:18:44 +0900346
Steven Rostedt520509432009-08-17 16:18:05 +0200347 ret = stat(path, &st);
348 if (ret < 0) {
349 /* not found */
350 size = 0;
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900351 if (write(output_fd, &size, 4) != 4)
352 err = -EIO;
Li Zefan6706ccf2009-09-17 16:34:23 +0800353 goto out;
Steven Rostedt520509432009-08-17 16:18:05 +0200354 }
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900355 err = record_file(path, 4);
Sonny Rao259032b2011-07-14 13:34:43 +1000356
Li Zefan6706ccf2009-09-17 16:34:23 +0800357out:
358 put_tracing_file(path);
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900359 return err;
Steven Rostedt520509432009-08-17 16:18:05 +0200360}
361
Namhyung Kimcd4ceb632013-04-11 17:25:04 +0900362static int record_saved_cmdline(void)
363{
Chris Phlipota72f6422018-08-28 23:19:54 -0700364 unsigned long long size;
Namhyung Kimcd4ceb632013-04-11 17:25:04 +0900365 char *path;
366 struct stat st;
367 int ret, err = 0;
368
369 path = get_tracing_file("saved_cmdlines");
370 if (!path) {
371 pr_debug("can't get tracing/saved_cmdline");
372 return -ENOMEM;
373 }
374
375 ret = stat(path, &st);
376 if (ret < 0) {
377 /* not found */
378 size = 0;
379 if (write(output_fd, &size, 8) != 8)
380 err = -EIO;
381 goto out;
382 }
383 err = record_file(path, 8);
384
385out:
386 put_tracing_file(path);
387 return err;
388}
389
Namhyung Kim7f42b952013-03-21 16:18:47 +0900390static void
391put_tracepoints_path(struct tracepoint_path *tps)
392{
393 while (tps) {
394 struct tracepoint_path *t = tps;
395
396 tps = tps->next;
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300397 zfree(&t->name);
398 zfree(&t->system);
Namhyung Kim7f42b952013-03-21 16:18:47 +0900399 free(t);
400 }
401}
402
Ian Rogers9b7c7722022-07-29 13:42:17 -0700403static struct tracepoint_path *tracepoint_id_to_path(u64 config)
404{
405 struct tracepoint_path *path = NULL;
406 DIR *sys_dir, *evt_dir;
407 struct dirent *sys_dirent, *evt_dirent;
408 char id_buf[24];
409 int fd;
410 u64 id;
411 char evt_path[MAXPATHLEN];
412 char *dir_path;
413
414 sys_dir = tracing_events__opendir();
415 if (!sys_dir)
416 return NULL;
417
418 for_each_subsystem(sys_dir, sys_dirent) {
419 dir_path = get_events_file(sys_dirent->d_name);
420 if (!dir_path)
421 continue;
422 evt_dir = opendir(dir_path);
423 if (!evt_dir)
424 goto next;
425
426 for_each_event(dir_path, evt_dir, evt_dirent) {
427
428 scnprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path,
429 evt_dirent->d_name);
430 fd = open(evt_path, O_RDONLY);
431 if (fd < 0)
432 continue;
433 if (read(fd, id_buf, sizeof(id_buf)) < 0) {
434 close(fd);
435 continue;
436 }
437 close(fd);
438 id = atoll(id_buf);
439 if (id == config) {
440 put_events_file(dir_path);
441 closedir(evt_dir);
442 closedir(sys_dir);
443 path = zalloc(sizeof(*path));
444 if (!path)
445 return NULL;
446 if (asprintf(&path->system, "%.*s",
447 MAX_EVENT_LENGTH, sys_dirent->d_name) < 0) {
448 free(path);
449 return NULL;
450 }
451 if (asprintf(&path->name, "%.*s",
452 MAX_EVENT_LENGTH, evt_dirent->d_name) < 0) {
453 zfree(&path->system);
454 free(path);
455 return NULL;
456 }
457 return path;
458 }
459 }
460 closedir(evt_dir);
461next:
462 put_events_file(dir_path);
463 }
464
465 closedir(sys_dir);
466 return NULL;
467}
468
469static struct tracepoint_path *tracepoint_name_to_path(const char *name)
470{
471 struct tracepoint_path *path = zalloc(sizeof(*path));
472 char *str = strchr(name, ':');
473
474 if (path == NULL || str == NULL) {
475 free(path);
476 return NULL;
477 }
478
479 path->system = strndup(name, str - name);
480 path->name = strdup(str+1);
481
482 if (path->system == NULL || path->name == NULL) {
483 zfree(&path->system);
484 zfree(&path->name);
485 zfree(&path);
486 }
487
488 return path;
489}
490
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200491static struct tracepoint_path *
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200492get_tracepoints_path(struct list_head *pattrs)
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200493{
494 struct tracepoint_path path, *ppath = &path;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200495 struct evsel *pos;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200496 int nr_tracepoints = 0;
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200497
Jiri Olsab27c4ec2019-07-21 13:24:22 +0200498 list_for_each_entry(pos, pattrs, core.node) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200499 if (pos->core.attr.type != PERF_TYPE_TRACEPOINT)
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200500 continue;
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200501 ++nr_tracepoints;
Namhyung Kime7c93f02013-06-26 16:14:05 +0900502
503 if (pos->name) {
504 ppath->next = tracepoint_name_to_path(pos->name);
505 if (ppath->next)
506 goto next;
507
508 if (strchr(pos->name, ':') == NULL)
509 goto try_id;
510
511 goto error;
512 }
513
514try_id:
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200515 ppath->next = tracepoint_id_to_path(pos->core.attr.config);
Namhyung Kim7f42b952013-03-21 16:18:47 +0900516 if (!ppath->next) {
Namhyung Kime7c93f02013-06-26 16:14:05 +0900517error:
Namhyung Kim7f42b952013-03-21 16:18:47 +0900518 pr_debug("No memory to alloc tracepoints list\n");
Li Binfa99ce82020-05-21 21:32:18 +0800519 put_tracepoints_path(path.next);
Namhyung Kim7f42b952013-03-21 16:18:47 +0900520 return NULL;
521 }
Namhyung Kime7c93f02013-06-26 16:14:05 +0900522next:
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200523 ppath = ppath->next;
524 }
525
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200526 return nr_tracepoints > 0 ? path.next : NULL;
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200527}
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200528
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200529bool have_tracepoints(struct list_head *pattrs)
Tom Zanussi63e0c772010-05-03 00:14:48 -0500530{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200531 struct evsel *pos;
Tom Zanussidb620b12010-05-04 22:20:16 -0500532
Jiri Olsab27c4ec2019-07-21 13:24:22 +0200533 list_for_each_entry(pos, pattrs, core.node)
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200534 if (pos->core.attr.type == PERF_TYPE_TRACEPOINT)
Tom Zanussidb620b12010-05-04 22:20:16 -0500535 return true;
536
537 return false;
Tom Zanussi63e0c772010-05-03 00:14:48 -0500538}
539
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900540static int tracing_data_header(void)
Steven Rostedt520509432009-08-17 16:18:05 +0200541{
Jiri Olsa29208e52011-10-20 15:59:43 +0200542 char buf[20];
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900543 ssize_t size;
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200544
Jiri Olsa29208e52011-10-20 15:59:43 +0200545 /* just guessing this is someone's birthday.. ;) */
Steven Rostedt520509432009-08-17 16:18:05 +0200546 buf[0] = 23;
547 buf[1] = 8;
548 buf[2] = 68;
549 memcpy(buf + 3, "tracing", 7);
550
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900551 if (write(output_fd, buf, 10) != 10)
552 return -1;
Steven Rostedt520509432009-08-17 16:18:05 +0200553
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900554 size = strlen(VERSION) + 1;
555 if (write(output_fd, VERSION, size) != size)
556 return -1;
Steven Rostedt520509432009-08-17 16:18:05 +0200557
558 /* save endian */
Ian Rogers5b7a29f2022-11-29 22:29:33 -0800559 if (host_is_bigendian())
Steven Rostedt520509432009-08-17 16:18:05 +0200560 buf[0] = 1;
561 else
562 buf[0] = 0;
563
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900564 if (write(output_fd, buf, 1) != 1)
565 return -1;
Steven Rostedt520509432009-08-17 16:18:05 +0200566
567 /* save size of long */
568 buf[0] = sizeof(long);
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900569 if (write(output_fd, buf, 1) != 1)
570 return -1;
Steven Rostedt520509432009-08-17 16:18:05 +0200571
572 /* save page_size */
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900573 if (write(output_fd, &page_size, 4) != 4)
574 return -1;
575
576 return 0;
Jiri Olsa29208e52011-10-20 15:59:43 +0200577}
Steven Rostedt520509432009-08-17 16:18:05 +0200578
Jiri Olsa29208e52011-10-20 15:59:43 +0200579struct tracing_data *tracing_data_get(struct list_head *pattrs,
580 int fd, bool temp)
581{
582 struct tracepoint_path *tps;
583 struct tracing_data *tdata;
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900584 int err;
Jiri Olsa29208e52011-10-20 15:59:43 +0200585
586 output_fd = fd;
587
588 tps = get_tracepoints_path(pattrs);
589 if (!tps)
590 return NULL;
591
Namhyung Kim5a6fd272013-03-21 16:18:45 +0900592 tdata = malloc(sizeof(*tdata));
593 if (!tdata)
594 return NULL;
595
Jiri Olsa29208e52011-10-20 15:59:43 +0200596 tdata->temp = temp;
597 tdata->size = 0;
598
599 if (temp) {
600 int temp_fd;
601
602 snprintf(tdata->temp_file, sizeof(tdata->temp_file),
603 "/tmp/perf-XXXXXX");
Namhyung Kim7f42b952013-03-21 16:18:47 +0900604 if (!mkstemp(tdata->temp_file)) {
605 pr_debug("Can't make temp file");
Sanskriti Sharmafaedbf32018-10-02 10:29:11 -0400606 free(tdata);
Namhyung Kim7f42b952013-03-21 16:18:47 +0900607 return NULL;
608 }
Jiri Olsa29208e52011-10-20 15:59:43 +0200609
610 temp_fd = open(tdata->temp_file, O_RDWR);
Namhyung Kim7f42b952013-03-21 16:18:47 +0900611 if (temp_fd < 0) {
612 pr_debug("Can't read '%s'", tdata->temp_file);
Sanskriti Sharmafaedbf32018-10-02 10:29:11 -0400613 free(tdata);
Namhyung Kim7f42b952013-03-21 16:18:47 +0900614 return NULL;
615 }
Jiri Olsa29208e52011-10-20 15:59:43 +0200616
617 /*
618 * Set the temp file the default output, so all the
619 * tracing data are stored into it.
620 */
621 output_fd = temp_fd;
622 }
623
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900624 err = tracing_data_header();
625 if (err)
626 goto out;
Namhyung Kim077f1592013-06-04 14:20:29 +0900627 err = record_header_files();
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900628 if (err)
629 goto out;
Namhyung Kim077f1592013-06-04 14:20:29 +0900630 err = record_ftrace_files(tps);
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900631 if (err)
632 goto out;
Namhyung Kim077f1592013-06-04 14:20:29 +0900633 err = record_event_files(tps);
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900634 if (err)
635 goto out;
Namhyung Kim077f1592013-06-04 14:20:29 +0900636 err = record_proc_kallsyms();
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900637 if (err)
638 goto out;
Namhyung Kim077f1592013-06-04 14:20:29 +0900639 err = record_ftrace_printk();
Namhyung Kimcd4ceb632013-04-11 17:25:04 +0900640 if (err)
641 goto out;
642 err = record_saved_cmdline();
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200643
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900644out:
Jiri Olsa29208e52011-10-20 15:59:43 +0200645 /*
646 * All tracing data are stored by now, we can restore
647 * the default output file in case we used temp file.
648 */
649 if (temp) {
650 tdata->size = lseek(output_fd, 0, SEEK_CUR);
651 close(output_fd);
652 output_fd = fd;
653 }
654
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300655 if (err)
656 zfree(&tdata);
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900657
Jiri Olsa29208e52011-10-20 15:59:43 +0200658 put_tracepoints_path(tps);
659 return tdata;
Steven Rostedt520509432009-08-17 16:18:05 +0200660}
Tom Zanussi92155452010-04-01 23:59:21 -0500661
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900662int tracing_data_put(struct tracing_data *tdata)
Tom Zanussi92155452010-04-01 23:59:21 -0500663{
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900664 int err = 0;
665
Jiri Olsa29208e52011-10-20 15:59:43 +0200666 if (tdata->temp) {
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900667 err = record_file(tdata->temp_file, 0);
Jiri Olsa29208e52011-10-20 15:59:43 +0200668 unlink(tdata->temp_file);
669 }
Tom Zanussi92155452010-04-01 23:59:21 -0500670
Jiri Olsa29208e52011-10-20 15:59:43 +0200671 free(tdata);
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900672 return err;
Jiri Olsa29208e52011-10-20 15:59:43 +0200673}
Tom Zanussi92155452010-04-01 23:59:21 -0500674
Jiri Olsa29208e52011-10-20 15:59:43 +0200675int read_tracing_data(int fd, struct list_head *pattrs)
676{
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900677 int err;
Jiri Olsa29208e52011-10-20 15:59:43 +0200678 struct tracing_data *tdata;
Tom Zanussi92155452010-04-01 23:59:21 -0500679
Jiri Olsa29208e52011-10-20 15:59:43 +0200680 /*
681 * We work over the real file, so we can write data
682 * directly, no temp file is needed.
683 */
684 tdata = tracing_data_get(pattrs, fd, false);
685 if (!tdata)
686 return -ENOMEM;
687
Namhyung Kim8755d5e2013-03-21 16:18:46 +0900688 err = tracing_data_put(tdata);
689 return err;
Tom Zanussi92155452010-04-01 23:59:21 -0500690}