blob: ac5ddfff44561b2f3d7771b16cb9425c8d861eec [file] [log] [blame]
Ingo Molnarabaff322009-06-02 22:59:57 +02001/*
Ingo Molnarbf9e1872009-06-02 23:37:05 +02002 * builtin-record.c
3 *
4 * Builtin record command: Record the profile of a workload
5 * (or a CPU, or a PID) into the perf.data output file - for
6 * later analysis via perf report.
Ingo Molnarabaff322009-06-02 22:59:57 +02007 */
Ingo Molnar16f762a2009-05-27 09:10:38 +02008#include "builtin.h"
Ingo Molnarbf9e1872009-06-02 23:37:05 +02009
10#include "perf.h"
11
Thomas Gleixner6eda5832009-05-01 18:29:57 +020012#include "util/util.h"
Ingo Molnar0e9b20b2009-05-26 09:17:18 +020013#include "util/parse-options.h"
Ingo Molnar8ad8db32009-05-26 11:10:09 +020014#include "util/parse-events.h"
Arnaldo Carvalho de Meloa0055ae2009-06-01 17:50:19 -030015#include "util/string.h"
Thomas Gleixner6eda5832009-05-01 18:29:57 +020016
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020017#include "util/header.h"
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020018#include "util/event.h"
Frederic Weisbecker8f28827a2009-08-16 22:05:48 +020019#include "util/debug.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020020
Peter Zijlstra97124d52009-06-02 15:52:24 +020021#include <unistd.h>
Peter Zijlstrade9ac072009-04-08 15:01:31 +020022#include <sched.h>
Peter Zijlstrade9ac072009-04-08 15:01:31 +020023
Peter Zijlstrade9ac072009-04-08 15:01:31 +020024static int fd[MAX_NR_CPUS][MAX_COUNTERS];
Ingo Molnara21ca2c2009-06-06 09:58:57 +020025
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +020026static long default_interval = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020027
Ingo Molnar42e59d72009-10-06 15:14:21 +020028static int nr_cpus = 0;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020029static unsigned int page_size;
Ingo Molnar42e59d72009-10-06 15:14:21 +020030static unsigned int mmap_pages = 128;
31static int freq = 1000;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020032static int output;
Ingo Molnar23ac9cb2009-05-27 09:33:18 +020033static const char *output_name = "perf.data";
Ingo Molnar42e59d72009-10-06 15:14:21 +020034static int group = 0;
35static unsigned int realtime_prio = 0;
36static int raw_samples = 0;
37static int system_wide = 0;
38static int profile_cpu = -1;
39static pid_t target_pid = -1;
40static pid_t child_pid = -1;
41static int inherit = 1;
42static int force = 0;
43static int append_file = 0;
44static int call_graph = 0;
45static int inherit_stat = 0;
46static int no_samples = 0;
47static int sample_address = 0;
48static int multiplex = 0;
49static int multiplex_fd = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020050
Ingo Molnar42e59d72009-10-06 15:14:21 +020051static long samples = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020052static struct timeval last_read;
53static struct timeval this_read;
54
Ingo Molnar42e59d72009-10-06 15:14:21 +020055static u64 bytes_written = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020056
57static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS];
58
Ingo Molnar42e59d72009-10-06 15:14:21 +020059static int nr_poll = 0;
60static int nr_cpu = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020061
Ingo Molnar42e59d72009-10-06 15:14:21 +020062static int file_new = 1;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020063
Ingo Molnar42e59d72009-10-06 15:14:21 +020064struct perf_header *header = NULL;
Peter Zijlstraf5970552009-06-18 23:22:55 +020065
Ingo Molnara21ca2c2009-06-06 09:58:57 +020066struct mmap_data {
67 int counter;
68 void *base;
69 unsigned int mask;
70 unsigned int prev;
71};
72
73static struct mmap_data mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
74
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020075static unsigned long mmap_read_head(struct mmap_data *md)
Peter Zijlstrade9ac072009-04-08 15:01:31 +020076{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020077 struct perf_event_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020078 long head;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020079
80 head = pc->data_head;
81 rmb();
82
83 return head;
84}
85
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020086static void mmap_write_tail(struct mmap_data *md, unsigned long tail)
87{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020088 struct perf_event_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020089
90 /*
91 * ensure all reads are done before we write the tail out.
92 */
93 /* mb(); */
94 pc->data_tail = tail;
95}
96
Peter Zijlstraf5970552009-06-18 23:22:55 +020097static void write_output(void *buf, size_t size)
98{
99 while (size) {
100 int ret = write(output, buf, size);
101
102 if (ret < 0)
103 die("failed to write");
104
105 size -= ret;
106 buf += ret;
107
108 bytes_written += ret;
109 }
110}
111
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200112static void mmap_read(struct mmap_data *md)
113{
114 unsigned int head = mmap_read_head(md);
115 unsigned int old = md->prev;
116 unsigned char *data = md->base + page_size;
117 unsigned long size;
118 void *buf;
119 int diff;
120
121 gettimeofday(&this_read, NULL);
122
123 /*
124 * If we're further behind than half the buffer, there's a chance
Ingo Molnar2debbc82009-06-05 14:29:10 +0200125 * the writer will bite our tail and mess up the samples under us.
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200126 *
127 * If we somehow ended up ahead of the head, we got messed up.
128 *
129 * In either case, truncate and restart at head.
130 */
131 diff = head - old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200132 if (diff < 0) {
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200133 struct timeval iv;
134 unsigned long msecs;
135
136 timersub(&this_read, &last_read, &iv);
137 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
138
139 fprintf(stderr, "WARNING: failed to keep up with mmap data."
140 " Last read %lu msecs ago.\n", msecs);
141
142 /*
143 * head points to a known good entry, start there.
144 */
145 old = head;
146 }
147
148 last_read = this_read;
149
150 if (old != head)
Ingo Molnar2debbc82009-06-05 14:29:10 +0200151 samples++;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200152
153 size = head - old;
154
155 if ((old & md->mask) + size != (head & md->mask)) {
156 buf = &data[old & md->mask];
157 size = md->mask + 1 - (old & md->mask);
158 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200159
Peter Zijlstraf5970552009-06-18 23:22:55 +0200160 write_output(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200161 }
162
163 buf = &data[old & md->mask];
164 size = head - old;
165 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200166
Peter Zijlstraf5970552009-06-18 23:22:55 +0200167 write_output(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200168
169 md->prev = old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200170 mmap_write_tail(md, old);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200171}
172
173static volatile int done = 0;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200174static volatile int signr = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200175
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200176static void sig_handler(int sig)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200177{
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200178 done = 1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200179 signr = sig;
180}
181
182static void sig_atexit(void)
183{
Chris Wilson933da832009-10-04 01:35:01 +0100184 if (child_pid != -1)
185 kill(child_pid, SIGTERM);
186
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200187 if (signr == -1)
188 return;
189
190 signal(signr, SIG_DFL);
191 kill(getpid(), signr);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200192}
193
Arnaldo Carvalho de Melo2a8083f2009-08-11 16:22:00 -0300194static pid_t pid_synthesize_comm_event(pid_t pid, int full)
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300195{
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300196 struct comm_event comm_ev;
Ingo Molnar16f762a2009-05-27 09:10:38 +0200197 char filename[PATH_MAX];
Ingo Molnar16f762a2009-05-27 09:10:38 +0200198 char bf[BUFSIZ];
Arnaldo Carvalho de Melo2a8083f2009-08-11 16:22:00 -0300199 FILE *fp;
200 size_t size = 0;
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200201 DIR *tasks;
202 struct dirent dirent, *next;
Arnaldo Carvalho de Melo2a8083f2009-08-11 16:22:00 -0300203 pid_t tgid = 0;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300204
Arnaldo Carvalho de Melo2a8083f2009-08-11 16:22:00 -0300205 snprintf(filename, sizeof(filename), "/proc/%d/status", pid);
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300206
Arnaldo Carvalho de Melo2a8083f2009-08-11 16:22:00 -0300207 fp = fopen(filename, "r");
Arnaldo Carvalho de Melo39e6dd72009-08-14 15:26:32 -0300208 if (fp == NULL) {
Ingo Molnar613d8602009-06-15 08:17:12 +0200209 /*
210 * We raced with a task exiting - just return:
211 */
212 if (verbose)
213 fprintf(stderr, "couldn't open %s\n", filename);
Arnaldo Carvalho de Melo2a8083f2009-08-11 16:22:00 -0300214 return 0;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300215 }
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300216
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300217 memset(&comm_ev, 0, sizeof(comm_ev));
Arnaldo Carvalho de Melo2a8083f2009-08-11 16:22:00 -0300218 while (!comm_ev.comm[0] || !comm_ev.pid) {
219 if (fgets(bf, sizeof(bf), fp) == NULL)
220 goto out_failure;
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200221
Arnaldo Carvalho de Melo2a8083f2009-08-11 16:22:00 -0300222 if (memcmp(bf, "Name:", 5) == 0) {
223 char *name = bf + 5;
224 while (*name && isspace(*name))
225 ++name;
226 size = strlen(name) - 1;
227 memcpy(comm_ev.comm, name, size++);
228 } else if (memcmp(bf, "Tgid:", 5) == 0) {
229 char *tgids = bf + 5;
230 while (*tgids && isspace(*tgids))
231 ++tgids;
232 tgid = comm_ev.pid = atoi(tgids);
233 }
234 }
235
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200236 comm_ev.header.type = PERF_RECORD_COMM;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000237 size = ALIGN(size, sizeof(u64));
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300238 comm_ev.header.size = sizeof(comm_ev) - (sizeof(comm_ev.comm) - size);
Ingo Molnar16f762a2009-05-27 09:10:38 +0200239
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200240 if (!full) {
241 comm_ev.tid = pid;
242
Peter Zijlstraf5970552009-06-18 23:22:55 +0200243 write_output(&comm_ev, comm_ev.header.size);
Arnaldo Carvalho de Melo2a8083f2009-08-11 16:22:00 -0300244 goto out_fclose;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300245 }
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200246
247 snprintf(filename, sizeof(filename), "/proc/%d/task", pid);
248
249 tasks = opendir(filename);
250 while (!readdir_r(tasks, &dirent, &next) && next) {
251 char *end;
252 pid = strtol(dirent.d_name, &end, 10);
253 if (*end)
254 continue;
255
256 comm_ev.tid = pid;
257
Peter Zijlstraf5970552009-06-18 23:22:55 +0200258 write_output(&comm_ev, comm_ev.header.size);
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200259 }
260 closedir(tasks);
Arnaldo Carvalho de Melo2a8083f2009-08-11 16:22:00 -0300261
262out_fclose:
263 fclose(fp);
264 return tgid;
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200265
Arnaldo Carvalho de Meloa0055ae2009-06-01 17:50:19 -0300266out_failure:
267 fprintf(stderr, "couldn't get COMM and pgid, malformed %s\n",
268 filename);
269 exit(EXIT_FAILURE);
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300270}
271
Arnaldo Carvalho de Melo2a8083f2009-08-11 16:22:00 -0300272static void pid_synthesize_mmap_samples(pid_t pid, pid_t tgid)
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300273{
274 char filename[PATH_MAX];
275 FILE *fp;
276
277 snprintf(filename, sizeof(filename), "/proc/%d/maps", pid);
278
279 fp = fopen(filename, "r");
280 if (fp == NULL) {
Ingo Molnar613d8602009-06-15 08:17:12 +0200281 /*
282 * We raced with a task exiting - just return:
283 */
284 if (verbose)
285 fprintf(stderr, "couldn't open %s\n", filename);
286 return;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300287 }
288 while (1) {
Arnaldo Carvalho de Meloa0055ae2009-06-01 17:50:19 -0300289 char bf[BUFSIZ], *pbf = bf;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300290 struct mmap_event mmap_ev = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200291 .header = { .type = PERF_RECORD_MMAP },
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300292 };
Arnaldo Carvalho de Meloa0055ae2009-06-01 17:50:19 -0300293 int n;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300294 size_t size;
295 if (fgets(bf, sizeof(bf), fp) == NULL)
296 break;
297
298 /* 00400000-0040c000 r-xp 00000000 fd:01 41038 /bin/cat */
Arnaldo Carvalho de Meloa0055ae2009-06-01 17:50:19 -0300299 n = hex2u64(pbf, &mmap_ev.start);
300 if (n < 0)
301 continue;
302 pbf += n + 1;
303 n = hex2u64(pbf, &mmap_ev.len);
304 if (n < 0)
305 continue;
306 pbf += n + 3;
307 if (*pbf == 'x') { /* vm_exec */
Johannes Weiner76c64c52009-06-24 21:08:36 +0200308 char *execname = strchr(bf, '/');
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300309
Anton Blanchard11b5f812009-07-16 15:44:29 +0200310 /* Catch VDSO */
311 if (execname == NULL)
312 execname = strstr(bf, "[vdso]");
313
Johannes Weiner76c64c52009-06-24 21:08:36 +0200314 if (execname == NULL)
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300315 continue;
316
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300317 size = strlen(execname);
318 execname[size - 1] = '\0'; /* Remove \n */
319 memcpy(mmap_ev.filename, execname, size);
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000320 size = ALIGN(size, sizeof(u64));
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300321 mmap_ev.len -= mmap_ev.start;
322 mmap_ev.header.size = (sizeof(mmap_ev) -
323 (sizeof(mmap_ev.filename) - size));
Arnaldo Carvalho de Melo2a8083f2009-08-11 16:22:00 -0300324 mmap_ev.pid = tgid;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300325 mmap_ev.tid = pid;
326
Peter Zijlstraf5970552009-06-18 23:22:55 +0200327 write_output(&mmap_ev, mmap_ev.header.size);
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300328 }
329 }
330
331 fclose(fp);
332}
333
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200334static void synthesize_all(void)
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200335{
336 DIR *proc;
337 struct dirent dirent, *next;
338
339 proc = opendir("/proc");
340
341 while (!readdir_r(proc, &dirent, &next) && next) {
342 char *end;
Arnaldo Carvalho de Melo2a8083f2009-08-11 16:22:00 -0300343 pid_t pid, tgid;
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200344
345 pid = strtol(dirent.d_name, &end, 10);
346 if (*end) /* only interested in proper numerical dirents */
347 continue;
348
Arnaldo Carvalho de Melo2a8083f2009-08-11 16:22:00 -0300349 tgid = pid_synthesize_comm_event(pid, 1);
350 pid_synthesize_mmap_samples(pid, tgid);
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200351 }
352
353 closedir(proc);
354}
355
Ingo Molnarf250c0302009-06-05 13:18:41 +0200356static int group_fd;
357
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200358static struct perf_header_attr *get_header_attr(struct perf_event_attr *a, int nr)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200359{
360 struct perf_header_attr *h_attr;
361
362 if (nr < header->attrs) {
363 h_attr = header->attr[nr];
364 } else {
365 h_attr = perf_header_attr__new(a);
366 perf_header__add_attr(header, h_attr);
367 }
368
369 return h_attr;
370}
371
Ingo Molnarf250c0302009-06-05 13:18:41 +0200372static void create_counter(int counter, int cpu, pid_t pid)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200373{
Li Zefanc171b552009-10-15 11:22:07 +0800374 char *filter = filters[counter];
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200375 struct perf_event_attr *attr = attrs + counter;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200376 struct perf_header_attr *h_attr;
377 int track = !counter; /* only the first counter needs these */
Li Zefanc171b552009-10-15 11:22:07 +0800378 int ret;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200379 struct {
380 u64 count;
381 u64 time_enabled;
382 u64 time_running;
383 u64 id;
384 } read_data;
385
386 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
387 PERF_FORMAT_TOTAL_TIME_RUNNING |
388 PERF_FORMAT_ID;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200389
Frederic Weisbecker3a9f1312009-08-13 10:27:18 +0200390 attr->sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200391
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200392 if (freq) {
Peter Zijlstraea1900e2009-06-10 21:45:22 +0200393 attr->sample_type |= PERF_SAMPLE_PERIOD;
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200394 attr->freq = 1;
395 attr->sample_freq = freq;
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200396 }
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200397
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200398 if (no_samples)
399 attr->sample_freq = 0;
400
401 if (inherit_stat)
402 attr->inherit_stat = 1;
403
Anton Blanchard4bba8282009-07-16 15:44:29 +0200404 if (sample_address)
405 attr->sample_type |= PERF_SAMPLE_ADDR;
406
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200407 if (call_graph)
408 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
409
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200410 if (raw_samples) {
Ingo Molnar6ddf2592009-09-03 12:00:22 +0200411 attr->sample_type |= PERF_SAMPLE_TIME;
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200412 attr->sample_type |= PERF_SAMPLE_RAW;
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200413 attr->sample_type |= PERF_SAMPLE_CPU;
414 }
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +0200415
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200416 attr->mmap = track;
417 attr->comm = track;
418 attr->inherit = (cpu < 0) && inherit;
Peter Zijlstra4502d772009-06-10 15:03:06 +0200419 attr->disabled = 1;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200420
Ingo Molnar3da297a2009-06-07 17:39:02 +0200421try_again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200422 fd[nr_cpu][counter] = sys_perf_event_open(attr, pid, cpu, group_fd, 0);
Ingo Molnarf250c0302009-06-05 13:18:41 +0200423
424 if (fd[nr_cpu][counter] < 0) {
425 int err = errno;
426
Ingo Molnarf250c0302009-06-05 13:18:41 +0200427 if (err == EPERM)
Ingo Molnar3da297a2009-06-07 17:39:02 +0200428 die("Permission error - are you root?\n");
Jens Axboe0a5ac842009-08-12 11:18:01 +0200429 else if (err == ENODEV && profile_cpu != -1)
430 die("No such device - did you specify an out-of-range profile CPU?\n");
Ingo Molnar3da297a2009-06-07 17:39:02 +0200431
432 /*
433 * If it's cycles then fall back to hrtimer
434 * based cpu-clock-tick sw counter, which
435 * is always available even if no PMU support:
436 */
437 if (attr->type == PERF_TYPE_HARDWARE
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200438 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
Ingo Molnar3da297a2009-06-07 17:39:02 +0200439
440 if (verbose)
441 warning(" ... trying to fall back to cpu-clock-ticks\n");
442 attr->type = PERF_TYPE_SOFTWARE;
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200443 attr->config = PERF_COUNT_SW_CPU_CLOCK;
Ingo Molnar3da297a2009-06-07 17:39:02 +0200444 goto try_again;
445 }
Ingo Molnar30c806a2009-06-07 17:46:24 +0200446 printf("\n");
447 error("perfcounter syscall returned with %d (%s)\n",
448 fd[nr_cpu][counter], strerror(err));
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200449 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
Ingo Molnarf250c0302009-06-05 13:18:41 +0200450 exit(-1);
451 }
Ingo Molnar3da297a2009-06-07 17:39:02 +0200452
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200453 h_attr = get_header_attr(attr, counter);
454
455 if (!file_new) {
456 if (memcmp(&h_attr->attr, attr, sizeof(*attr))) {
457 fprintf(stderr, "incompatible append\n");
458 exit(-1);
459 }
460 }
461
Frederic Weisbecker3928ddb2009-06-25 22:21:27 +0200462 if (read(fd[nr_cpu][counter], &read_data, sizeof(read_data)) == -1) {
463 perror("Unable to read perf file descriptor\n");
464 exit(-1);
465 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200466
467 perf_header_attr__add_id(h_attr, read_data.id);
468
Ingo Molnarf250c0302009-06-05 13:18:41 +0200469 assert(fd[nr_cpu][counter] >= 0);
470 fcntl(fd[nr_cpu][counter], F_SETFL, O_NONBLOCK);
471
472 /*
473 * First counter acts as the group leader:
474 */
475 if (group && group_fd == -1)
476 group_fd = fd[nr_cpu][counter];
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200477 if (multiplex && multiplex_fd == -1)
478 multiplex_fd = fd[nr_cpu][counter];
Ingo Molnarf250c0302009-06-05 13:18:41 +0200479
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200480 if (multiplex && fd[nr_cpu][counter] != multiplex_fd) {
Ingo Molnarf250c0302009-06-05 13:18:41 +0200481
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200482 ret = ioctl(fd[nr_cpu][counter], PERF_EVENT_IOC_SET_OUTPUT, multiplex_fd);
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200483 assert(ret != -1);
484 } else {
485 event_array[nr_poll].fd = fd[nr_cpu][counter];
486 event_array[nr_poll].events = POLLIN;
487 nr_poll++;
488
489 mmap_array[nr_cpu][counter].counter = counter;
490 mmap_array[nr_cpu][counter].prev = 0;
491 mmap_array[nr_cpu][counter].mask = mmap_pages*page_size - 1;
492 mmap_array[nr_cpu][counter].base = mmap(NULL, (mmap_pages+1)*page_size,
493 PROT_READ|PROT_WRITE, MAP_SHARED, fd[nr_cpu][counter], 0);
494 if (mmap_array[nr_cpu][counter].base == MAP_FAILED) {
495 error("failed to mmap with %d (%s)\n", errno, strerror(errno));
496 exit(-1);
497 }
Ingo Molnarf250c0302009-06-05 13:18:41 +0200498 }
Peter Zijlstra4502d772009-06-10 15:03:06 +0200499
Li Zefanc171b552009-10-15 11:22:07 +0800500 if (filter != NULL) {
501 ret = ioctl(fd[nr_cpu][counter],
502 PERF_EVENT_IOC_SET_FILTER, filter);
503 if (ret) {
504 error("failed to set filter with %d (%s)\n", errno,
505 strerror(errno));
506 exit(-1);
507 }
508 }
509
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200510 ioctl(fd[nr_cpu][counter], PERF_EVENT_IOC_ENABLE);
Ingo Molnarf250c0302009-06-05 13:18:41 +0200511}
512
513static void open_counters(int cpu, pid_t pid)
514{
515 int counter;
516
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200517 group_fd = -1;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200518 for (counter = 0; counter < nr_counters; counter++)
519 create_counter(counter, cpu, pid);
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200520
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200521 nr_cpu++;
522}
523
Peter Zijlstraf5970552009-06-18 23:22:55 +0200524static void atexit_header(void)
525{
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200526 header->data_size += bytes_written;
Peter Zijlstraf5970552009-06-18 23:22:55 +0200527
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200528 perf_header__write(header, output);
Peter Zijlstraf5970552009-06-18 23:22:55 +0200529}
530
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200531static int __cmd_record(int argc, const char **argv)
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200532{
533 int i, counter;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200534 struct stat st;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200535 pid_t pid = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200536 int flags;
537 int ret;
Peter Zijlstra8b412662009-09-17 19:59:05 +0200538 unsigned long waking = 0;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200539
540 page_size = sysconf(_SC_PAGE_SIZE);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200541 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
542 assert(nr_cpus <= MAX_NR_CPUS);
543 assert(nr_cpus >= 0);
544
Peter Zijlstraf5970552009-06-18 23:22:55 +0200545 atexit(sig_atexit);
546 signal(SIGCHLD, sig_handler);
547 signal(SIGINT, sig_handler);
548
Pierre Habouzit266e0e22009-08-07 14:16:01 +0200549 if (!stat(output_name, &st) && st.st_size) {
550 if (!force && !append_file) {
551 fprintf(stderr, "Error, output file %s exists, use -A to append or -f to overwrite.\n",
552 output_name);
553 exit(-1);
554 }
555 } else {
556 append_file = 0;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200557 }
558
Ingo Molnarabaff322009-06-02 22:59:57 +0200559 flags = O_CREAT|O_RDWR;
560 if (append_file)
Peter Zijlstraf5970552009-06-18 23:22:55 +0200561 file_new = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200562 else
563 flags |= O_TRUNC;
564
565 output = open(output_name, flags, S_IRUSR|S_IWUSR);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200566 if (output < 0) {
567 perror("failed to create output file");
568 exit(-1);
569 }
570
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200571 if (!file_new)
572 header = perf_header__read(output);
573 else
574 header = perf_header__new();
Peter Zijlstraf5970552009-06-18 23:22:55 +0200575
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200576 if (raw_samples) {
Frederic Weisbecker2ba08252009-10-17 17:12:34 +0200577 perf_header__feat_trace_info(header);
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200578 } else {
579 for (i = 0; i < nr_counters; i++) {
580 if (attrs[i].sample_type & PERF_SAMPLE_RAW) {
Frederic Weisbecker2ba08252009-10-17 17:12:34 +0200581 perf_header__feat_trace_info(header);
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200582 break;
583 }
584 }
585 }
Frederic Weisbecker03456a12009-10-06 23:36:47 +0200586
Peter Zijlstraf5970552009-06-18 23:22:55 +0200587 atexit(atexit_header);
588
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300589 if (!system_wide) {
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200590 pid = target_pid;
591 if (pid == -1)
592 pid = getpid();
593
Jens Axboe0a5ac842009-08-12 11:18:01 +0200594 open_counters(profile_cpu, pid);
595 } else {
596 if (profile_cpu != -1) {
597 open_counters(profile_cpu, target_pid);
598 } else {
599 for (i = 0; i < nr_cpus; i++)
600 open_counters(i, target_pid);
601 }
602 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200603
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200604 if (file_new)
605 perf_header__write(header, output);
606
607 if (!system_wide) {
Arnaldo Carvalho de Melo2a8083f2009-08-11 16:22:00 -0300608 pid_t tgid = pid_synthesize_comm_event(pid, 0);
609 pid_synthesize_mmap_samples(pid, tgid);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200610 } else
611 synthesize_all();
612
Mike Galbraithef65b2a2009-05-27 10:10:51 +0200613 if (target_pid == -1 && argc) {
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300614 pid = fork();
615 if (pid < 0)
616 perror("failed to fork");
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200617
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300618 if (!pid) {
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200619 if (execvp(argv[0], (char **)argv)) {
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300620 perror(argv[0]);
621 exit(-1);
622 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200623 }
Chris Wilson933da832009-10-04 01:35:01 +0100624
625 child_pid = pid;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200626 }
627
628 if (realtime_prio) {
629 struct sched_param param;
630
631 param.sched_priority = realtime_prio;
632 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200633 pr_err("Could not set realtime priority.\n");
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200634 exit(-1);
635 }
636 }
637
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200638 for (;;) {
Ingo Molnar2debbc82009-06-05 14:29:10 +0200639 int hits = samples;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200640
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200641 for (i = 0; i < nr_cpu; i++) {
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200642 for (counter = 0; counter < nr_counters; counter++) {
643 if (mmap_array[i][counter].base)
644 mmap_read(&mmap_array[i][counter]);
645 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200646 }
647
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200648 if (hits == samples) {
649 if (done)
650 break;
Peter Zijlstra8b412662009-09-17 19:59:05 +0200651 ret = poll(event_array, nr_poll, -1);
652 waking++;
653 }
654
655 if (done) {
656 for (i = 0; i < nr_cpu; i++) {
657 for (counter = 0; counter < nr_counters; counter++)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200658 ioctl(fd[i][counter], PERF_EVENT_IOC_DISABLE);
Peter Zijlstra8b412662009-09-17 19:59:05 +0200659 }
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200660 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200661 }
662
Peter Zijlstra8b412662009-09-17 19:59:05 +0200663 fprintf(stderr, "[ perf record: Woken up %ld times to write data ]\n", waking);
664
Ingo Molnar021e9f42009-06-03 19:27:19 +0200665 /*
666 * Approximate RIP event size: 24 bytes.
667 */
668 fprintf(stderr,
Ingo Molnar2debbc82009-06-05 14:29:10 +0200669 "[ perf record: Captured and wrote %.3f MB %s (~%lld samples) ]\n",
Ingo Molnar021e9f42009-06-03 19:27:19 +0200670 (double)bytes_written / 1024.0 / 1024.0,
671 output_name,
672 bytes_written / 24);
Ingo Molnaraddc2782009-06-02 23:43:11 +0200673
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200674 return 0;
675}
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200676
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200677static const char * const record_usage[] = {
Mike Galbraith9e0967532009-05-28 16:25:34 +0200678 "perf record [<options>] [<command>]",
679 "perf record [<options>] -- <command> [<options>]",
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200680 NULL
681};
682
Ingo Molnar52425192009-05-26 09:17:18 +0200683static const struct option options[] = {
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200684 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200685 "event selector. use 'perf list' to list available events",
686 parse_events),
Li Zefanc171b552009-10-15 11:22:07 +0800687 OPT_CALLBACK(0, "filter", NULL, "filter",
688 "event filter", parse_filter),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200689 OPT_INTEGER('p', "pid", &target_pid,
690 "record events on existing pid"),
691 OPT_INTEGER('r', "realtime", &realtime_prio,
692 "collect data with this RT SCHED_FIFO priority"),
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200693 OPT_BOOLEAN('R', "raw-samples", &raw_samples,
694 "collect raw sample records from all opened counters"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200695 OPT_BOOLEAN('a', "all-cpus", &system_wide,
696 "system-wide collection from all CPUs"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200697 OPT_BOOLEAN('A', "append", &append_file,
698 "append to the output file to do incremental profiling"),
Jens Axboe0a5ac842009-08-12 11:18:01 +0200699 OPT_INTEGER('C', "profile_cpu", &profile_cpu,
700 "CPU to profile on"),
Peter Zijlstra97124d52009-06-02 15:52:24 +0200701 OPT_BOOLEAN('f', "force", &force,
702 "overwrite existing data file"),
Peter Zijlstrae61078a2009-06-03 11:24:33 +0200703 OPT_LONG('c', "count", &default_interval,
Ingo Molnarabaff322009-06-02 22:59:57 +0200704 "event period to sample"),
705 OPT_STRING('o', "output", &output_name, "file",
706 "output file name"),
707 OPT_BOOLEAN('i', "inherit", &inherit,
708 "child tasks inherit counters"),
Ingo Molnarcf1f4572009-06-05 13:27:02 +0200709 OPT_INTEGER('F', "freq", &freq,
710 "profile at this frequency"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200711 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
712 "number of mmap data pages"),
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200713 OPT_BOOLEAN('g', "call-graph", &call_graph,
714 "do call-graph (stack chain/backtrace) recording"),
Ingo Molnar3da297a2009-06-07 17:39:02 +0200715 OPT_BOOLEAN('v', "verbose", &verbose,
716 "be more verbose (show counter open errors, etc)"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200717 OPT_BOOLEAN('s', "stat", &inherit_stat,
718 "per thread counts"),
Anton Blanchard4bba8282009-07-16 15:44:29 +0200719 OPT_BOOLEAN('d', "data", &sample_address,
720 "Sample addresses"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200721 OPT_BOOLEAN('n', "no-samples", &no_samples,
722 "don't sample"),
Frederic Weisbeckerd1302522009-09-14 08:57:15 +0200723 OPT_BOOLEAN('M', "multiplex", &multiplex,
724 "multiplex counter output in a single channel"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200725 OPT_END()
726};
727
Ingo Molnarf37a2912009-07-01 12:37:06 +0200728int cmd_record(int argc, const char **argv, const char *prefix __used)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200729{
730 int counter;
731
Anton Blancharda0541232009-07-22 23:04:12 +1000732 argc = parse_options(argc, argv, options, record_usage,
733 PARSE_OPT_STOP_AT_NON_OPTION);
Mike Galbraithef65b2a2009-05-27 10:10:51 +0200734 if (!argc && target_pid == -1 && !system_wide)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200735 usage_with_options(record_usage, options);
736
Peter Zijlstrabbd36e52009-06-11 23:11:50 +0200737 if (!nr_counters) {
738 nr_counters = 1;
739 attrs[0].type = PERF_TYPE_HARDWARE;
740 attrs[0].config = PERF_COUNT_HW_CPU_CYCLES;
741 }
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200742
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +0200743 /*
744 * User specified count overrides default frequency.
745 */
746 if (default_interval)
747 freq = 0;
748 else if (freq) {
749 default_interval = freq;
750 } else {
751 fprintf(stderr, "frequency and count are zero, aborting\n");
752 exit(EXIT_FAILURE);
753 }
754
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200755 for (counter = 0; counter < nr_counters; counter++) {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200756 if (attrs[counter].sample_period)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200757 continue;
758
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200759 attrs[counter].sample_period = default_interval;
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200760 }
761
762 return __cmd_record(argc, argv);
763}