Thomas Gleixner | 5a8e0ff | 2019-05-31 01:09:51 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2008,2009, Steven Rostedt <srostedt@redhat.com> |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 4 | */ |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 5 | #include <dirent.h> |
Ulrich Drepper | 659d8cf | 2009-12-19 16:40:28 -0500 | [diff] [blame] | 6 | #include <mntent.h> |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 7 | #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 Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 14 | #include <fcntl.h> |
| 15 | #include <unistd.h> |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 16 | #include <errno.h> |
Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 17 | #include <stdbool.h> |
Arnaldo Carvalho de Melo | 69aad6f | 2011-01-03 16:39:04 -0200 | [diff] [blame] | 18 | #include <linux/list.h> |
Arnaldo Carvalho de Melo | e256136 | 2009-11-21 14:31:26 -0200 | [diff] [blame] | 19 | #include <linux/kernel.h> |
Arnaldo Carvalho de Melo | 7f7c536 | 2019-07-04 11:32:27 -0300 | [diff] [blame] | 20 | #include <linux/zalloc.h> |
Jiri Olsa | 20f2be1 | 2019-08-06 15:25:25 +0200 | [diff] [blame] | 21 | #include <internal/lib.h> // page_size |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 22 | |
| 23 | #include "trace-event.h" |
Jiri Olsa | 592d5a6 | 2015-09-02 09:56:34 +0200 | [diff] [blame] | 24 | #include <api/fs/tracing_path.h> |
Arnaldo Carvalho de Melo | 69aad6f | 2011-01-03 16:39:04 -0200 | [diff] [blame] | 25 | #include "evsel.h" |
Jiri Olsa | 84f5d36 | 2014-07-14 23:46:48 +0200 | [diff] [blame] | 26 | #include "debug.h" |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 27 | |
Namhyung Kim | cd4ceb63 | 2013-04-11 17:25:04 +0900 | [diff] [blame] | 28 | #define VERSION "0.6" |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 29 | |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 30 | static int output_fd; |
| 31 | |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 32 | |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 33 | int bigendian(void) |
| 34 | { |
| 35 | unsigned char str[] = { 0x1, 0x2, 0x3, 0x4, 0x0, 0x0, 0x0, 0x0}; |
| 36 | unsigned int *ptr; |
| 37 | |
Ingo Molnar | 65014ab | 2009-09-02 14:55:55 +0200 | [diff] [blame] | 38 | ptr = (unsigned int *)(void *)str; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 39 | return *ptr == 0x01020304; |
| 40 | } |
| 41 | |
Sonny Rao | 259032b | 2011-07-14 13:34:43 +1000 | [diff] [blame] | 42 | /* unfortunately, you can not stat debugfs or proc files for size */ |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 43 | static int record_file(const char *file, ssize_t hdr_sz) |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 44 | { |
| 45 | unsigned long long size = 0; |
Sonny Rao | 259032b | 2011-07-14 13:34:43 +1000 | [diff] [blame] | 46 | char buf[BUFSIZ], *sizep; |
| 47 | off_t hdr_pos = lseek(output_fd, 0, SEEK_CUR); |
| 48 | int r, fd; |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 49 | int err = -EIO; |
Sonny Rao | 259032b | 2011-07-14 13:34:43 +1000 | [diff] [blame] | 50 | |
| 51 | fd = open(file, O_RDONLY); |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 52 | if (fd < 0) { |
| 53 | pr_debug("Can't read '%s'", file); |
| 54 | return -errno; |
| 55 | } |
Sonny Rao | 259032b | 2011-07-14 13:34:43 +1000 | [diff] [blame] | 56 | |
| 57 | /* put in zeros for file size, then fill true size later */ |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 58 | if (hdr_sz) { |
| 59 | if (write(output_fd, &size, hdr_sz) != hdr_sz) |
| 60 | goto out; |
| 61 | } |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 62 | |
| 63 | do { |
| 64 | r = read(fd, buf, BUFSIZ); |
| 65 | if (r > 0) { |
| 66 | size += r; |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 67 | if (write(output_fd, buf, r) != r) |
| 68 | goto out; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 69 | } |
| 70 | } while (r > 0); |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 71 | |
Sonny Rao | 259032b | 2011-07-14 13:34:43 +1000 | [diff] [blame] | 72 | /* ugh, handle big-endian hdr_size == 4 */ |
| 73 | sizep = (char*)&size; |
| 74 | if (bigendian()) |
| 75 | sizep += sizeof(u64) - hdr_sz; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 76 | |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 77 | 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 Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 81 | |
| 82 | err = 0; |
| 83 | out: |
| 84 | close(fd); |
| 85 | return err; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 86 | } |
| 87 | |
Namhyung Kim | 077f159 | 2013-06-04 14:20:29 +0900 | [diff] [blame] | 88 | static int record_header_files(void) |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 89 | { |
Arnaldo Carvalho de Melo | 40c3c0c | 2018-05-16 16:42:26 -0300 | [diff] [blame] | 90 | char *path = get_events_file("header_page"); |
Sonny Rao | 259032b | 2011-07-14 13:34:43 +1000 | [diff] [blame] | 91 | struct stat st; |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 92 | int err = -EIO; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 93 | |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 94 | if (!path) { |
| 95 | pr_debug("can't get tracing/events/header_page"); |
| 96 | return -ENOMEM; |
| 97 | } |
Namhyung Kim | 454f8c7 | 2013-03-21 16:18:44 +0900 | [diff] [blame] | 98 | |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 99 | if (stat(path, &st) < 0) { |
| 100 | pr_debug("can't read '%s'", path); |
| 101 | goto out; |
| 102 | } |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 103 | |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 104 | 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 Melo | 40c3c0c | 2018-05-16 16:42:26 -0300 | [diff] [blame] | 114 | put_events_file(path); |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 115 | |
Arnaldo Carvalho de Melo | 40c3c0c | 2018-05-16 16:42:26 -0300 | [diff] [blame] | 116 | path = get_events_file("header_event"); |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 117 | if (!path) { |
| 118 | pr_debug("can't get tracing/events/header_event"); |
| 119 | err = -ENOMEM; |
| 120 | goto out; |
| 121 | } |
Namhyung Kim | 454f8c7 | 2013-03-21 16:18:44 +0900 | [diff] [blame] | 122 | |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 123 | if (stat(path, &st) < 0) { |
| 124 | pr_debug("can't read '%s'", path); |
| 125 | goto out; |
| 126 | } |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 127 | |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 128 | 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; |
| 139 | out: |
Arnaldo Carvalho de Melo | 40c3c0c | 2018-05-16 16:42:26 -0300 | [diff] [blame] | 140 | put_events_file(path); |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 141 | return err; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 142 | } |
| 143 | |
Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 144 | static 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 | |
Taeung Song | 43d41de | 2017-01-31 20:38:28 +0900 | [diff] [blame] | 155 | #define for_each_event(dir, dent, tps) \ |
| 156 | while ((dent = readdir(dir))) \ |
| 157 | if (dent->d_type == DT_DIR && \ |
| 158 | (strcmp(dent->d_name, ".")) && \ |
| 159 | (strcmp(dent->d_name, ".."))) \ |
| 160 | |
Namhyung Kim | 5a6fd27 | 2013-03-21 16:18:45 +0900 | [diff] [blame] | 161 | static int copy_event_system(const char *sys, struct tracepoint_path *tps) |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 162 | { |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 163 | struct dirent *dent; |
| 164 | struct stat st; |
| 165 | char *format; |
| 166 | DIR *dir; |
| 167 | int count = 0; |
| 168 | int ret; |
Namhyung Kim | 5a6fd27 | 2013-03-21 16:18:45 +0900 | [diff] [blame] | 169 | int err; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 170 | |
| 171 | dir = opendir(sys); |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 172 | if (!dir) { |
| 173 | pr_debug("can't read directory '%s'", sys); |
| 174 | return -errno; |
| 175 | } |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 176 | |
Taeung Song | 43d41de | 2017-01-31 20:38:28 +0900 | [diff] [blame] | 177 | for_each_event(dir, dent, tps) { |
| 178 | if (!name_in_tp_list(dent->d_name, tps)) |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 179 | continue; |
Taeung Song | 43d41de | 2017-01-31 20:38:28 +0900 | [diff] [blame] | 180 | |
Andy Shevchenko | d400a68 | 2014-07-04 14:43:48 +0300 | [diff] [blame] | 181 | if (asprintf(&format, "%s/%s/format", sys, dent->d_name) < 0) { |
Namhyung Kim | 5a6fd27 | 2013-03-21 16:18:45 +0900 | [diff] [blame] | 182 | err = -ENOMEM; |
| 183 | goto out; |
| 184 | } |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 185 | ret = stat(format, &st); |
| 186 | free(format); |
| 187 | if (ret < 0) |
| 188 | continue; |
| 189 | count++; |
| 190 | } |
| 191 | |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 192 | if (write(output_fd, &count, 4) != 4) { |
| 193 | err = -EIO; |
| 194 | pr_debug("can't write count\n"); |
| 195 | goto out; |
| 196 | } |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 197 | |
| 198 | rewinddir(dir); |
Taeung Song | 43d41de | 2017-01-31 20:38:28 +0900 | [diff] [blame] | 199 | for_each_event(dir, dent, tps) { |
| 200 | if (!name_in_tp_list(dent->d_name, tps)) |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 201 | continue; |
Taeung Song | 43d41de | 2017-01-31 20:38:28 +0900 | [diff] [blame] | 202 | |
Andy Shevchenko | d400a68 | 2014-07-04 14:43:48 +0300 | [diff] [blame] | 203 | if (asprintf(&format, "%s/%s/format", sys, dent->d_name) < 0) { |
Namhyung Kim | 5a6fd27 | 2013-03-21 16:18:45 +0900 | [diff] [blame] | 204 | err = -ENOMEM; |
| 205 | goto out; |
| 206 | } |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 207 | ret = stat(format, &st); |
| 208 | |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 209 | if (ret >= 0) { |
| 210 | err = record_file(format, 8); |
| 211 | if (err) { |
| 212 | free(format); |
| 213 | goto out; |
| 214 | } |
| 215 | } |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 216 | free(format); |
| 217 | } |
Namhyung Kim | 5a6fd27 | 2013-03-21 16:18:45 +0900 | [diff] [blame] | 218 | err = 0; |
| 219 | out: |
Xiao Guangrong | 9967411 | 2009-12-28 16:49:38 +0800 | [diff] [blame] | 220 | closedir(dir); |
Namhyung Kim | 5a6fd27 | 2013-03-21 16:18:45 +0900 | [diff] [blame] | 221 | return err; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 222 | } |
| 223 | |
Namhyung Kim | 077f159 | 2013-06-04 14:20:29 +0900 | [diff] [blame] | 224 | static int record_ftrace_files(struct tracepoint_path *tps) |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 225 | { |
| 226 | char *path; |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 227 | int ret; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 228 | |
Arnaldo Carvalho de Melo | 40c3c0c | 2018-05-16 16:42:26 -0300 | [diff] [blame] | 229 | path = get_events_file("ftrace"); |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 230 | if (!path) { |
| 231 | pr_debug("can't get tracing/events/ftrace"); |
| 232 | return -ENOMEM; |
| 233 | } |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 234 | |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 235 | ret = copy_event_system(path, tps); |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 236 | |
| 237 | put_tracing_file(path); |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 238 | |
| 239 | return ret; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 240 | } |
| 241 | |
Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 242 | static 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 Kim | 077f159 | 2013-06-04 14:20:29 +0900 | [diff] [blame] | 253 | static int record_event_files(struct tracepoint_path *tps) |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 254 | { |
| 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 Kim | 5a6fd27 | 2013-03-21 16:18:45 +0900 | [diff] [blame] | 262 | int err; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 263 | |
| 264 | path = get_tracing_file("events"); |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 265 | if (!path) { |
| 266 | pr_debug("can't get tracing/events"); |
| 267 | return -ENOMEM; |
| 268 | } |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 269 | |
| 270 | dir = opendir(path); |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 271 | if (!dir) { |
| 272 | err = -errno; |
| 273 | pr_debug("can't read directory '%s'", path); |
| 274 | goto out; |
| 275 | } |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 276 | |
Taeung Song | 43d41de | 2017-01-31 20:38:28 +0900 | [diff] [blame] | 277 | for_each_event(dir, dent, tps) { |
| 278 | if (strcmp(dent->d_name, "ftrace") == 0 || |
Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 279 | !system_in_tp_list(dent->d_name, tps)) |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 280 | continue; |
Taeung Song | 43d41de | 2017-01-31 20:38:28 +0900 | [diff] [blame] | 281 | |
Ulrich Drepper | 659d8cf | 2009-12-19 16:40:28 -0500 | [diff] [blame] | 282 | count++; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 283 | } |
| 284 | |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 285 | if (write(output_fd, &count, 4) != 4) { |
| 286 | err = -EIO; |
| 287 | pr_debug("can't write count\n"); |
| 288 | goto out; |
| 289 | } |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 290 | |
| 291 | rewinddir(dir); |
Taeung Song | 43d41de | 2017-01-31 20:38:28 +0900 | [diff] [blame] | 292 | for_each_event(dir, dent, tps) { |
| 293 | if (strcmp(dent->d_name, "ftrace") == 0 || |
Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 294 | !system_in_tp_list(dent->d_name, tps)) |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 295 | continue; |
Taeung Song | 43d41de | 2017-01-31 20:38:28 +0900 | [diff] [blame] | 296 | |
Andy Shevchenko | d400a68 | 2014-07-04 14:43:48 +0300 | [diff] [blame] | 297 | if (asprintf(&sys, "%s/%s", path, dent->d_name) < 0) { |
Namhyung Kim | 5a6fd27 | 2013-03-21 16:18:45 +0900 | [diff] [blame] | 298 | err = -ENOMEM; |
| 299 | goto out; |
| 300 | } |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 301 | ret = stat(sys, &st); |
| 302 | if (ret >= 0) { |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 303 | 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 Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 311 | } |
| 312 | free(sys); |
| 313 | } |
Namhyung Kim | 5a6fd27 | 2013-03-21 16:18:45 +0900 | [diff] [blame] | 314 | err = 0; |
| 315 | out: |
Xiao Guangrong | 9967411 | 2009-12-28 16:49:38 +0800 | [diff] [blame] | 316 | closedir(dir); |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 317 | put_tracing_file(path); |
Namhyung Kim | 5a6fd27 | 2013-03-21 16:18:45 +0900 | [diff] [blame] | 318 | |
| 319 | return err; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 320 | } |
| 321 | |
Namhyung Kim | 077f159 | 2013-06-04 14:20:29 +0900 | [diff] [blame] | 322 | static int record_proc_kallsyms(void) |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 323 | { |
Arnaldo Carvalho de Melo | 6e5259e | 2015-07-22 17:02:18 -0300 | [diff] [blame] | 324 | 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 Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 332 | } |
| 333 | |
Namhyung Kim | 077f159 | 2013-06-04 14:20:29 +0900 | [diff] [blame] | 334 | static int record_ftrace_printk(void) |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 335 | { |
Sonny Rao | 259032b | 2011-07-14 13:34:43 +1000 | [diff] [blame] | 336 | unsigned int size; |
Li Zefan | 6706ccf | 2009-09-17 16:34:23 +0800 | [diff] [blame] | 337 | char *path; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 338 | struct stat st; |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 339 | int ret, err = 0; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 340 | |
| 341 | path = get_tracing_file("printk_formats"); |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 342 | if (!path) { |
| 343 | pr_debug("can't get tracing/printk_formats"); |
| 344 | return -ENOMEM; |
| 345 | } |
Namhyung Kim | 454f8c7 | 2013-03-21 16:18:44 +0900 | [diff] [blame] | 346 | |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 347 | ret = stat(path, &st); |
| 348 | if (ret < 0) { |
| 349 | /* not found */ |
| 350 | size = 0; |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 351 | if (write(output_fd, &size, 4) != 4) |
| 352 | err = -EIO; |
Li Zefan | 6706ccf | 2009-09-17 16:34:23 +0800 | [diff] [blame] | 353 | goto out; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 354 | } |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 355 | err = record_file(path, 4); |
Sonny Rao | 259032b | 2011-07-14 13:34:43 +1000 | [diff] [blame] | 356 | |
Li Zefan | 6706ccf | 2009-09-17 16:34:23 +0800 | [diff] [blame] | 357 | out: |
| 358 | put_tracing_file(path); |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 359 | return err; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 360 | } |
| 361 | |
Namhyung Kim | cd4ceb63 | 2013-04-11 17:25:04 +0900 | [diff] [blame] | 362 | static int record_saved_cmdline(void) |
| 363 | { |
Chris Phlipot | a72f642 | 2018-08-28 23:19:54 -0700 | [diff] [blame] | 364 | unsigned long long size; |
Namhyung Kim | cd4ceb63 | 2013-04-11 17:25:04 +0900 | [diff] [blame] | 365 | 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 | |
| 385 | out: |
| 386 | put_tracing_file(path); |
| 387 | return err; |
| 388 | } |
| 389 | |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 390 | static void |
| 391 | put_tracepoints_path(struct tracepoint_path *tps) |
| 392 | { |
| 393 | while (tps) { |
| 394 | struct tracepoint_path *t = tps; |
| 395 | |
| 396 | tps = tps->next; |
Arnaldo Carvalho de Melo | 74cf249 | 2013-12-27 16:55:14 -0300 | [diff] [blame] | 397 | zfree(&t->name); |
| 398 | zfree(&t->system); |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 399 | free(t); |
| 400 | } |
| 401 | } |
| 402 | |
Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 403 | static struct tracepoint_path * |
Arnaldo Carvalho de Melo | 69aad6f | 2011-01-03 16:39:04 -0200 | [diff] [blame] | 404 | get_tracepoints_path(struct list_head *pattrs) |
Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 405 | { |
| 406 | struct tracepoint_path path, *ppath = &path; |
Jiri Olsa | 32dcd02 | 2019-07-21 13:23:51 +0200 | [diff] [blame] | 407 | struct evsel *pos; |
Arnaldo Carvalho de Melo | 69aad6f | 2011-01-03 16:39:04 -0200 | [diff] [blame] | 408 | int nr_tracepoints = 0; |
Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 409 | |
Jiri Olsa | b27c4ec | 2019-07-21 13:24:22 +0200 | [diff] [blame] | 410 | list_for_each_entry(pos, pattrs, core.node) { |
Jiri Olsa | 1fc632c | 2019-07-21 13:24:29 +0200 | [diff] [blame] | 411 | if (pos->core.attr.type != PERF_TYPE_TRACEPOINT) |
Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 412 | continue; |
Arnaldo Carvalho de Melo | e256136 | 2009-11-21 14:31:26 -0200 | [diff] [blame] | 413 | ++nr_tracepoints; |
Namhyung Kim | e7c93f0 | 2013-06-26 16:14:05 +0900 | [diff] [blame] | 414 | |
| 415 | if (pos->name) { |
| 416 | ppath->next = tracepoint_name_to_path(pos->name); |
| 417 | if (ppath->next) |
| 418 | goto next; |
| 419 | |
| 420 | if (strchr(pos->name, ':') == NULL) |
| 421 | goto try_id; |
| 422 | |
| 423 | goto error; |
| 424 | } |
| 425 | |
| 426 | try_id: |
Jiri Olsa | 1fc632c | 2019-07-21 13:24:29 +0200 | [diff] [blame] | 427 | ppath->next = tracepoint_id_to_path(pos->core.attr.config); |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 428 | if (!ppath->next) { |
Namhyung Kim | e7c93f0 | 2013-06-26 16:14:05 +0900 | [diff] [blame] | 429 | error: |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 430 | pr_debug("No memory to alloc tracepoints list\n"); |
| 431 | put_tracepoints_path(&path); |
| 432 | return NULL; |
| 433 | } |
Namhyung Kim | e7c93f0 | 2013-06-26 16:14:05 +0900 | [diff] [blame] | 434 | next: |
Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 435 | ppath = ppath->next; |
| 436 | } |
| 437 | |
Arnaldo Carvalho de Melo | e256136 | 2009-11-21 14:31:26 -0200 | [diff] [blame] | 438 | return nr_tracepoints > 0 ? path.next : NULL; |
Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 439 | } |
Arnaldo Carvalho de Melo | e256136 | 2009-11-21 14:31:26 -0200 | [diff] [blame] | 440 | |
Arnaldo Carvalho de Melo | 69aad6f | 2011-01-03 16:39:04 -0200 | [diff] [blame] | 441 | bool have_tracepoints(struct list_head *pattrs) |
Tom Zanussi | 63e0c77 | 2010-05-03 00:14:48 -0500 | [diff] [blame] | 442 | { |
Jiri Olsa | 32dcd02 | 2019-07-21 13:23:51 +0200 | [diff] [blame] | 443 | struct evsel *pos; |
Tom Zanussi | db620b1 | 2010-05-04 22:20:16 -0500 | [diff] [blame] | 444 | |
Jiri Olsa | b27c4ec | 2019-07-21 13:24:22 +0200 | [diff] [blame] | 445 | list_for_each_entry(pos, pattrs, core.node) |
Jiri Olsa | 1fc632c | 2019-07-21 13:24:29 +0200 | [diff] [blame] | 446 | if (pos->core.attr.type == PERF_TYPE_TRACEPOINT) |
Tom Zanussi | db620b1 | 2010-05-04 22:20:16 -0500 | [diff] [blame] | 447 | return true; |
| 448 | |
| 449 | return false; |
Tom Zanussi | 63e0c77 | 2010-05-03 00:14:48 -0500 | [diff] [blame] | 450 | } |
| 451 | |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 452 | static int tracing_data_header(void) |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 453 | { |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 454 | char buf[20]; |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 455 | ssize_t size; |
Arnaldo Carvalho de Melo | e256136 | 2009-11-21 14:31:26 -0200 | [diff] [blame] | 456 | |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 457 | /* just guessing this is someone's birthday.. ;) */ |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 458 | buf[0] = 23; |
| 459 | buf[1] = 8; |
| 460 | buf[2] = 68; |
| 461 | memcpy(buf + 3, "tracing", 7); |
| 462 | |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 463 | if (write(output_fd, buf, 10) != 10) |
| 464 | return -1; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 465 | |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 466 | size = strlen(VERSION) + 1; |
| 467 | if (write(output_fd, VERSION, size) != size) |
| 468 | return -1; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 469 | |
| 470 | /* save endian */ |
| 471 | if (bigendian()) |
| 472 | buf[0] = 1; |
| 473 | else |
| 474 | buf[0] = 0; |
| 475 | |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 476 | if (write(output_fd, buf, 1) != 1) |
| 477 | return -1; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 478 | |
| 479 | /* save size of long */ |
| 480 | buf[0] = sizeof(long); |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 481 | if (write(output_fd, buf, 1) != 1) |
| 482 | return -1; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 483 | |
| 484 | /* save page_size */ |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 485 | if (write(output_fd, &page_size, 4) != 4) |
| 486 | return -1; |
| 487 | |
| 488 | return 0; |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 489 | } |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 490 | |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 491 | struct tracing_data *tracing_data_get(struct list_head *pattrs, |
| 492 | int fd, bool temp) |
| 493 | { |
| 494 | struct tracepoint_path *tps; |
| 495 | struct tracing_data *tdata; |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 496 | int err; |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 497 | |
| 498 | output_fd = fd; |
| 499 | |
| 500 | tps = get_tracepoints_path(pattrs); |
| 501 | if (!tps) |
| 502 | return NULL; |
| 503 | |
Namhyung Kim | 5a6fd27 | 2013-03-21 16:18:45 +0900 | [diff] [blame] | 504 | tdata = malloc(sizeof(*tdata)); |
| 505 | if (!tdata) |
| 506 | return NULL; |
| 507 | |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 508 | tdata->temp = temp; |
| 509 | tdata->size = 0; |
| 510 | |
| 511 | if (temp) { |
| 512 | int temp_fd; |
| 513 | |
| 514 | snprintf(tdata->temp_file, sizeof(tdata->temp_file), |
| 515 | "/tmp/perf-XXXXXX"); |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 516 | if (!mkstemp(tdata->temp_file)) { |
| 517 | pr_debug("Can't make temp file"); |
Sanskriti Sharma | faedbf3 | 2018-10-02 10:29:11 -0400 | [diff] [blame] | 518 | free(tdata); |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 519 | return NULL; |
| 520 | } |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 521 | |
| 522 | temp_fd = open(tdata->temp_file, O_RDWR); |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 523 | if (temp_fd < 0) { |
| 524 | pr_debug("Can't read '%s'", tdata->temp_file); |
Sanskriti Sharma | faedbf3 | 2018-10-02 10:29:11 -0400 | [diff] [blame] | 525 | free(tdata); |
Namhyung Kim | 7f42b95 | 2013-03-21 16:18:47 +0900 | [diff] [blame] | 526 | return NULL; |
| 527 | } |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 528 | |
| 529 | /* |
| 530 | * Set the temp file the default output, so all the |
| 531 | * tracing data are stored into it. |
| 532 | */ |
| 533 | output_fd = temp_fd; |
| 534 | } |
| 535 | |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 536 | err = tracing_data_header(); |
| 537 | if (err) |
| 538 | goto out; |
Namhyung Kim | 077f159 | 2013-06-04 14:20:29 +0900 | [diff] [blame] | 539 | err = record_header_files(); |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 540 | if (err) |
| 541 | goto out; |
Namhyung Kim | 077f159 | 2013-06-04 14:20:29 +0900 | [diff] [blame] | 542 | err = record_ftrace_files(tps); |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 543 | if (err) |
| 544 | goto out; |
Namhyung Kim | 077f159 | 2013-06-04 14:20:29 +0900 | [diff] [blame] | 545 | err = record_event_files(tps); |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 546 | if (err) |
| 547 | goto out; |
Namhyung Kim | 077f159 | 2013-06-04 14:20:29 +0900 | [diff] [blame] | 548 | err = record_proc_kallsyms(); |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 549 | if (err) |
| 550 | goto out; |
Namhyung Kim | 077f159 | 2013-06-04 14:20:29 +0900 | [diff] [blame] | 551 | err = record_ftrace_printk(); |
Namhyung Kim | cd4ceb63 | 2013-04-11 17:25:04 +0900 | [diff] [blame] | 552 | if (err) |
| 553 | goto out; |
| 554 | err = record_saved_cmdline(); |
Arnaldo Carvalho de Melo | e256136 | 2009-11-21 14:31:26 -0200 | [diff] [blame] | 555 | |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 556 | out: |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 557 | /* |
| 558 | * All tracing data are stored by now, we can restore |
| 559 | * the default output file in case we used temp file. |
| 560 | */ |
| 561 | if (temp) { |
| 562 | tdata->size = lseek(output_fd, 0, SEEK_CUR); |
| 563 | close(output_fd); |
| 564 | output_fd = fd; |
| 565 | } |
| 566 | |
Arnaldo Carvalho de Melo | 0466252 | 2013-12-26 17:41:15 -0300 | [diff] [blame] | 567 | if (err) |
| 568 | zfree(&tdata); |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 569 | |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 570 | put_tracepoints_path(tps); |
| 571 | return tdata; |
Steven Rostedt | 52050943 | 2009-08-17 16:18:05 +0200 | [diff] [blame] | 572 | } |
Tom Zanussi | 9215545 | 2010-04-01 23:59:21 -0500 | [diff] [blame] | 573 | |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 574 | int tracing_data_put(struct tracing_data *tdata) |
Tom Zanussi | 9215545 | 2010-04-01 23:59:21 -0500 | [diff] [blame] | 575 | { |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 576 | int err = 0; |
| 577 | |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 578 | if (tdata->temp) { |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 579 | err = record_file(tdata->temp_file, 0); |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 580 | unlink(tdata->temp_file); |
| 581 | } |
Tom Zanussi | 9215545 | 2010-04-01 23:59:21 -0500 | [diff] [blame] | 582 | |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 583 | free(tdata); |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 584 | return err; |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 585 | } |
Tom Zanussi | 9215545 | 2010-04-01 23:59:21 -0500 | [diff] [blame] | 586 | |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 587 | int read_tracing_data(int fd, struct list_head *pattrs) |
| 588 | { |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 589 | int err; |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 590 | struct tracing_data *tdata; |
Tom Zanussi | 9215545 | 2010-04-01 23:59:21 -0500 | [diff] [blame] | 591 | |
Jiri Olsa | 29208e5 | 2011-10-20 15:59:43 +0200 | [diff] [blame] | 592 | /* |
| 593 | * We work over the real file, so we can write data |
| 594 | * directly, no temp file is needed. |
| 595 | */ |
| 596 | tdata = tracing_data_get(pattrs, fd, false); |
| 597 | if (!tdata) |
| 598 | return -ENOMEM; |
| 599 | |
Namhyung Kim | 8755d5e | 2013-03-21 16:18:46 +0900 | [diff] [blame] | 600 | err = tracing_data_put(tdata); |
| 601 | return err; |
Tom Zanussi | 9215545 | 2010-04-01 23:59:21 -0500 | [diff] [blame] | 602 | } |