blob: 6da09928130f8b726446e21e55b4a114a02926dd [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"
18
Peter Zijlstra97124d52009-06-02 15:52:24 +020019#include <unistd.h>
Peter Zijlstrade9ac072009-04-08 15:01:31 +020020#include <sched.h>
Peter Zijlstrade9ac072009-04-08 15:01:31 +020021
Ingo Molnar0e9b20b2009-05-26 09:17:18 +020022#define ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a)-1)
23#define __ALIGN_MASK(x, mask) (((x)+(mask))&~(mask))
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -030024
Peter Zijlstrade9ac072009-04-08 15:01:31 +020025static int fd[MAX_NR_CPUS][MAX_COUNTERS];
Ingo Molnara21ca2c2009-06-06 09:58:57 +020026
27static long default_interval = 100000;
28
Ingo Molnar3cf165f2009-06-02 23:02:59 +020029static int nr_cpus = 0;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020030static unsigned int page_size;
Ingo Molnar3cf165f2009-06-02 23:02:59 +020031static unsigned int mmap_pages = 128;
Ingo Molnarcf1f4572009-06-05 13:27:02 +020032static int freq = 0;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020033static int output;
Ingo Molnar23ac9cb2009-05-27 09:33:18 +020034static const char *output_name = "perf.data";
Peter Zijlstrade9ac072009-04-08 15:01:31 +020035static int group = 0;
Peter Zijlstra16c8a102009-05-05 17:50:27 +020036static unsigned int realtime_prio = 0;
37static int system_wide = 0;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -030038static pid_t target_pid = -1;
Peter Zijlstra16c8a102009-05-05 17:50:27 +020039static int inherit = 1;
Peter Zijlstra97124d52009-06-02 15:52:24 +020040static int force = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +020041static int append_file = 0;
Ingo Molnar3efa1cc92009-06-14 15:04:15 +020042static int call_graph = 0;
Ingo Molnar3da297a2009-06-07 17:39:02 +020043static int verbose = 0;
Peter Zijlstra649c48a2009-06-24 21:12:48 +020044static int inherit_stat = 0;
45static int no_samples = 0;
Anton Blanchard4bba8282009-07-16 15:44:29 +020046static int sample_address = 0;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020047
Ingo Molnara21ca2c2009-06-06 09:58:57 +020048static long samples;
49static struct timeval last_read;
50static struct timeval this_read;
51
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100052static u64 bytes_written;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020053
54static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS];
55
56static int nr_poll;
57static int nr_cpu;
58
Peter Zijlstraf5970552009-06-18 23:22:55 +020059static int file_new = 1;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020060
61struct perf_header *header;
Peter Zijlstraf5970552009-06-18 23:22:55 +020062
Ingo Molnara21ca2c2009-06-06 09:58:57 +020063struct mmap_event {
64 struct perf_event_header header;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100065 u32 pid;
66 u32 tid;
67 u64 start;
68 u64 len;
69 u64 pgoff;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020070 char filename[PATH_MAX];
Peter Zijlstrade9ac072009-04-08 15:01:31 +020071};
72
Ingo Molnara21ca2c2009-06-06 09:58:57 +020073struct comm_event {
74 struct perf_event_header header;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100075 u32 pid;
76 u32 tid;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020077 char comm[16];
Peter Zijlstrade9ac072009-04-08 15:01:31 +020078};
79
Ingo Molnara21ca2c2009-06-06 09:58:57 +020080
81struct mmap_data {
82 int counter;
83 void *base;
84 unsigned int mask;
85 unsigned int prev;
86};
87
88static struct mmap_data mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
89
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020090static unsigned long mmap_read_head(struct mmap_data *md)
Peter Zijlstrade9ac072009-04-08 15:01:31 +020091{
92 struct perf_counter_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020093 long head;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020094
95 head = pc->data_head;
96 rmb();
97
98 return head;
99}
100
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200101static void mmap_write_tail(struct mmap_data *md, unsigned long tail)
102{
103 struct perf_counter_mmap_page *pc = md->base;
104
105 /*
106 * ensure all reads are done before we write the tail out.
107 */
108 /* mb(); */
109 pc->data_tail = tail;
110}
111
Peter Zijlstraf5970552009-06-18 23:22:55 +0200112static void write_output(void *buf, size_t size)
113{
114 while (size) {
115 int ret = write(output, buf, size);
116
117 if (ret < 0)
118 die("failed to write");
119
120 size -= ret;
121 buf += ret;
122
123 bytes_written += ret;
124 }
125}
126
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200127static void mmap_read(struct mmap_data *md)
128{
129 unsigned int head = mmap_read_head(md);
130 unsigned int old = md->prev;
131 unsigned char *data = md->base + page_size;
132 unsigned long size;
133 void *buf;
134 int diff;
135
136 gettimeofday(&this_read, NULL);
137
138 /*
139 * If we're further behind than half the buffer, there's a chance
Ingo Molnar2debbc82009-06-05 14:29:10 +0200140 * the writer will bite our tail and mess up the samples under us.
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200141 *
142 * If we somehow ended up ahead of the head, we got messed up.
143 *
144 * In either case, truncate and restart at head.
145 */
146 diff = head - old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200147 if (diff < 0) {
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200148 struct timeval iv;
149 unsigned long msecs;
150
151 timersub(&this_read, &last_read, &iv);
152 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
153
154 fprintf(stderr, "WARNING: failed to keep up with mmap data."
155 " Last read %lu msecs ago.\n", msecs);
156
157 /*
158 * head points to a known good entry, start there.
159 */
160 old = head;
161 }
162
163 last_read = this_read;
164
165 if (old != head)
Ingo Molnar2debbc82009-06-05 14:29:10 +0200166 samples++;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200167
168 size = head - old;
169
170 if ((old & md->mask) + size != (head & md->mask)) {
171 buf = &data[old & md->mask];
172 size = md->mask + 1 - (old & md->mask);
173 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200174
Peter Zijlstraf5970552009-06-18 23:22:55 +0200175 write_output(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200176 }
177
178 buf = &data[old & md->mask];
179 size = head - old;
180 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200181
Peter Zijlstraf5970552009-06-18 23:22:55 +0200182 write_output(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200183
184 md->prev = old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200185 mmap_write_tail(md, old);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200186}
187
188static volatile int done = 0;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200189static volatile int signr = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200190
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200191static void sig_handler(int sig)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200192{
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200193 done = 1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200194 signr = sig;
195}
196
197static void sig_atexit(void)
198{
199 if (signr == -1)
200 return;
201
202 signal(signr, SIG_DFL);
203 kill(getpid(), signr);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200204}
205
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200206static void pid_synthesize_comm_event(pid_t pid, int full)
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300207{
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300208 struct comm_event comm_ev;
Ingo Molnar16f762a2009-05-27 09:10:38 +0200209 char filename[PATH_MAX];
Ingo Molnar16f762a2009-05-27 09:10:38 +0200210 char bf[BUFSIZ];
Peter Zijlstraf5970552009-06-18 23:22:55 +0200211 int fd;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300212 size_t size;
Arnaldo Carvalho de Meloa0055ae2009-06-01 17:50:19 -0300213 char *field, *sep;
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200214 DIR *tasks;
215 struct dirent dirent, *next;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300216
217 snprintf(filename, sizeof(filename), "/proc/%d/stat", pid);
218
219 fd = open(filename, O_RDONLY);
220 if (fd < 0) {
Ingo Molnar613d8602009-06-15 08:17:12 +0200221 /*
222 * We raced with a task exiting - just return:
223 */
224 if (verbose)
225 fprintf(stderr, "couldn't open %s\n", filename);
226 return;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300227 }
228 if (read(fd, bf, sizeof(bf)) < 0) {
229 fprintf(stderr, "couldn't read %s\n", filename);
230 exit(EXIT_FAILURE);
231 }
232 close(fd);
233
Arnaldo Carvalho de Meloa0055ae2009-06-01 17:50:19 -0300234 /* 9027 (cat) R 6747 9027 6747 34816 9027 ... */
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300235 memset(&comm_ev, 0, sizeof(comm_ev));
Arnaldo Carvalho de Meloa0055ae2009-06-01 17:50:19 -0300236 field = strchr(bf, '(');
237 if (field == NULL)
238 goto out_failure;
239 sep = strchr(++field, ')');
240 if (sep == NULL)
241 goto out_failure;
242 size = sep - field;
243 memcpy(comm_ev.comm, field, size++);
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200244
245 comm_ev.pid = pid;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300246 comm_ev.header.type = PERF_EVENT_COMM;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000247 size = ALIGN(size, sizeof(u64));
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300248 comm_ev.header.size = sizeof(comm_ev) - (sizeof(comm_ev.comm) - size);
Ingo Molnar16f762a2009-05-27 09:10:38 +0200249
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200250 if (!full) {
251 comm_ev.tid = pid;
252
Peter Zijlstraf5970552009-06-18 23:22:55 +0200253 write_output(&comm_ev, comm_ev.header.size);
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200254 return;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300255 }
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200256
257 snprintf(filename, sizeof(filename), "/proc/%d/task", pid);
258
259 tasks = opendir(filename);
260 while (!readdir_r(tasks, &dirent, &next) && next) {
261 char *end;
262 pid = strtol(dirent.d_name, &end, 10);
263 if (*end)
264 continue;
265
266 comm_ev.tid = pid;
267
Peter Zijlstraf5970552009-06-18 23:22:55 +0200268 write_output(&comm_ev, comm_ev.header.size);
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200269 }
270 closedir(tasks);
271 return;
272
Arnaldo Carvalho de Meloa0055ae2009-06-01 17:50:19 -0300273out_failure:
274 fprintf(stderr, "couldn't get COMM and pgid, malformed %s\n",
275 filename);
276 exit(EXIT_FAILURE);
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300277}
278
Ingo Molnar2debbc82009-06-05 14:29:10 +0200279static void pid_synthesize_mmap_samples(pid_t pid)
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300280{
281 char filename[PATH_MAX];
282 FILE *fp;
283
284 snprintf(filename, sizeof(filename), "/proc/%d/maps", pid);
285
286 fp = fopen(filename, "r");
287 if (fp == NULL) {
Ingo Molnar613d8602009-06-15 08:17:12 +0200288 /*
289 * We raced with a task exiting - just return:
290 */
291 if (verbose)
292 fprintf(stderr, "couldn't open %s\n", filename);
293 return;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300294 }
295 while (1) {
Arnaldo Carvalho de Meloa0055ae2009-06-01 17:50:19 -0300296 char bf[BUFSIZ], *pbf = bf;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300297 struct mmap_event mmap_ev = {
Ingo Molnarf37a2912009-07-01 12:37:06 +0200298 .header = { .type = PERF_EVENT_MMAP },
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300299 };
Arnaldo Carvalho de Meloa0055ae2009-06-01 17:50:19 -0300300 int n;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300301 size_t size;
302 if (fgets(bf, sizeof(bf), fp) == NULL)
303 break;
304
305 /* 00400000-0040c000 r-xp 00000000 fd:01 41038 /bin/cat */
Arnaldo Carvalho de Meloa0055ae2009-06-01 17:50:19 -0300306 n = hex2u64(pbf, &mmap_ev.start);
307 if (n < 0)
308 continue;
309 pbf += n + 1;
310 n = hex2u64(pbf, &mmap_ev.len);
311 if (n < 0)
312 continue;
313 pbf += n + 3;
314 if (*pbf == 'x') { /* vm_exec */
Johannes Weiner76c64c52009-06-24 21:08:36 +0200315 char *execname = strchr(bf, '/');
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300316
Anton Blanchard11b5f812009-07-16 15:44:29 +0200317 /* Catch VDSO */
318 if (execname == NULL)
319 execname = strstr(bf, "[vdso]");
320
Johannes Weiner76c64c52009-06-24 21:08:36 +0200321 if (execname == NULL)
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300322 continue;
323
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300324 size = strlen(execname);
325 execname[size - 1] = '\0'; /* Remove \n */
326 memcpy(mmap_ev.filename, execname, size);
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000327 size = ALIGN(size, sizeof(u64));
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300328 mmap_ev.len -= mmap_ev.start;
329 mmap_ev.header.size = (sizeof(mmap_ev) -
330 (sizeof(mmap_ev.filename) - size));
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200331 mmap_ev.pid = pid;
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300332 mmap_ev.tid = pid;
333
Peter Zijlstraf5970552009-06-18 23:22:55 +0200334 write_output(&mmap_ev, mmap_ev.header.size);
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300335 }
336 }
337
338 fclose(fp);
339}
340
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200341static void synthesize_all(void)
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200342{
343 DIR *proc;
344 struct dirent dirent, *next;
345
346 proc = opendir("/proc");
347
348 while (!readdir_r(proc, &dirent, &next) && next) {
349 char *end;
350 pid_t pid;
351
352 pid = strtol(dirent.d_name, &end, 10);
353 if (*end) /* only interested in proper numerical dirents */
354 continue;
355
356 pid_synthesize_comm_event(pid, 1);
Ingo Molnar2debbc82009-06-05 14:29:10 +0200357 pid_synthesize_mmap_samples(pid);
Peter Zijlstraf70e87d2009-06-02 14:13:24 +0200358 }
359
360 closedir(proc);
361}
362
Ingo Molnarf250c0302009-06-05 13:18:41 +0200363static int group_fd;
364
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200365static struct perf_header_attr *get_header_attr(struct perf_counter_attr *a, int nr)
366{
367 struct perf_header_attr *h_attr;
368
369 if (nr < header->attrs) {
370 h_attr = header->attr[nr];
371 } else {
372 h_attr = perf_header_attr__new(a);
373 perf_header__add_attr(header, h_attr);
374 }
375
376 return h_attr;
377}
378
Ingo Molnarf250c0302009-06-05 13:18:41 +0200379static void create_counter(int counter, int cpu, pid_t pid)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200380{
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200381 struct perf_counter_attr *attr = attrs + counter;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200382 struct perf_header_attr *h_attr;
383 int track = !counter; /* only the first counter needs these */
384 struct {
385 u64 count;
386 u64 time_enabled;
387 u64 time_running;
388 u64 id;
389 } read_data;
390
391 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
392 PERF_FORMAT_TOTAL_TIME_RUNNING |
393 PERF_FORMAT_ID;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200394
Peter Zijlstraea1900e2009-06-10 21:45:22 +0200395 attr->sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID;
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200396
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200397 if (freq) {
Peter Zijlstraea1900e2009-06-10 21:45:22 +0200398 attr->sample_type |= PERF_SAMPLE_PERIOD;
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200399 attr->freq = 1;
400 attr->sample_freq = freq;
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200401 }
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200402
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200403 if (no_samples)
404 attr->sample_freq = 0;
405
406 if (inherit_stat)
407 attr->inherit_stat = 1;
408
Anton Blanchard4bba8282009-07-16 15:44:29 +0200409 if (sample_address)
410 attr->sample_type |= PERF_SAMPLE_ADDR;
411
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200412 if (call_graph)
413 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
414
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200415 attr->mmap = track;
416 attr->comm = track;
417 attr->inherit = (cpu < 0) && inherit;
Peter Zijlstra4502d772009-06-10 15:03:06 +0200418 attr->disabled = 1;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200419
Ingo Molnar3da297a2009-06-07 17:39:02 +0200420try_again:
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200421 fd[nr_cpu][counter] = sys_perf_counter_open(attr, pid, cpu, group_fd, 0);
Ingo Molnarf250c0302009-06-05 13:18:41 +0200422
423 if (fd[nr_cpu][counter] < 0) {
424 int err = errno;
425
Ingo Molnarf250c0302009-06-05 13:18:41 +0200426 if (err == EPERM)
Ingo Molnar3da297a2009-06-07 17:39:02 +0200427 die("Permission error - are you root?\n");
428
429 /*
430 * If it's cycles then fall back to hrtimer
431 * based cpu-clock-tick sw counter, which
432 * is always available even if no PMU support:
433 */
434 if (attr->type == PERF_TYPE_HARDWARE
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200435 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
Ingo Molnar3da297a2009-06-07 17:39:02 +0200436
437 if (verbose)
438 warning(" ... trying to fall back to cpu-clock-ticks\n");
439 attr->type = PERF_TYPE_SOFTWARE;
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200440 attr->config = PERF_COUNT_SW_CPU_CLOCK;
Ingo Molnar3da297a2009-06-07 17:39:02 +0200441 goto try_again;
442 }
Ingo Molnar30c806a2009-06-07 17:46:24 +0200443 printf("\n");
444 error("perfcounter syscall returned with %d (%s)\n",
445 fd[nr_cpu][counter], strerror(err));
446 die("No CONFIG_PERF_COUNTERS=y kernel support configured?\n");
Ingo Molnarf250c0302009-06-05 13:18:41 +0200447 exit(-1);
448 }
Ingo Molnar3da297a2009-06-07 17:39:02 +0200449
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200450 h_attr = get_header_attr(attr, counter);
451
452 if (!file_new) {
453 if (memcmp(&h_attr->attr, attr, sizeof(*attr))) {
454 fprintf(stderr, "incompatible append\n");
455 exit(-1);
456 }
457 }
458
Frederic Weisbecker3928ddb2009-06-25 22:21:27 +0200459 if (read(fd[nr_cpu][counter], &read_data, sizeof(read_data)) == -1) {
460 perror("Unable to read perf file descriptor\n");
461 exit(-1);
462 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200463
464 perf_header_attr__add_id(h_attr, read_data.id);
465
Ingo Molnarf250c0302009-06-05 13:18:41 +0200466 assert(fd[nr_cpu][counter] >= 0);
467 fcntl(fd[nr_cpu][counter], F_SETFL, O_NONBLOCK);
468
469 /*
470 * First counter acts as the group leader:
471 */
472 if (group && group_fd == -1)
473 group_fd = fd[nr_cpu][counter];
474
475 event_array[nr_poll].fd = fd[nr_cpu][counter];
476 event_array[nr_poll].events = POLLIN;
477 nr_poll++;
478
479 mmap_array[nr_cpu][counter].counter = counter;
480 mmap_array[nr_cpu][counter].prev = 0;
481 mmap_array[nr_cpu][counter].mask = mmap_pages*page_size - 1;
482 mmap_array[nr_cpu][counter].base = mmap(NULL, (mmap_pages+1)*page_size,
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200483 PROT_READ|PROT_WRITE, MAP_SHARED, fd[nr_cpu][counter], 0);
Ingo Molnarf250c0302009-06-05 13:18:41 +0200484 if (mmap_array[nr_cpu][counter].base == MAP_FAILED) {
485 error("failed to mmap with %d (%s)\n", errno, strerror(errno));
486 exit(-1);
487 }
Peter Zijlstra4502d772009-06-10 15:03:06 +0200488
489 ioctl(fd[nr_cpu][counter], PERF_COUNTER_IOC_ENABLE);
Ingo Molnarf250c0302009-06-05 13:18:41 +0200490}
491
492static void open_counters(int cpu, pid_t pid)
493{
494 int counter;
495
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200496 group_fd = -1;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200497 for (counter = 0; counter < nr_counters; counter++)
498 create_counter(counter, cpu, pid);
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200499
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200500 nr_cpu++;
501}
502
Peter Zijlstraf5970552009-06-18 23:22:55 +0200503static void atexit_header(void)
504{
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200505 header->data_size += bytes_written;
Peter Zijlstraf5970552009-06-18 23:22:55 +0200506
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200507 perf_header__write(header, output);
Peter Zijlstraf5970552009-06-18 23:22:55 +0200508}
509
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200510static int __cmd_record(int argc, const char **argv)
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200511{
512 int i, counter;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200513 struct stat st;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200514 pid_t pid = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200515 int flags;
516 int ret;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200517
518 page_size = sysconf(_SC_PAGE_SIZE);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200519 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
520 assert(nr_cpus <= MAX_NR_CPUS);
521 assert(nr_cpus >= 0);
522
Peter Zijlstraf5970552009-06-18 23:22:55 +0200523 atexit(sig_atexit);
524 signal(SIGCHLD, sig_handler);
525 signal(SIGINT, sig_handler);
526
Ingo Molnarabaff322009-06-02 22:59:57 +0200527 if (!stat(output_name, &st) && !force && !append_file) {
528 fprintf(stderr, "Error, output file %s exists, use -A to append or -f to overwrite.\n",
Peter Zijlstra97124d52009-06-02 15:52:24 +0200529 output_name);
530 exit(-1);
531 }
532
Ingo Molnarabaff322009-06-02 22:59:57 +0200533 flags = O_CREAT|O_RDWR;
534 if (append_file)
Peter Zijlstraf5970552009-06-18 23:22:55 +0200535 file_new = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200536 else
537 flags |= O_TRUNC;
538
539 output = open(output_name, flags, S_IRUSR|S_IWUSR);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200540 if (output < 0) {
541 perror("failed to create output file");
542 exit(-1);
543 }
544
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200545 if (!file_new)
546 header = perf_header__read(output);
547 else
548 header = perf_header__new();
Peter Zijlstraf5970552009-06-18 23:22:55 +0200549
550 atexit(atexit_header);
551
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300552 if (!system_wide) {
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200553 pid = target_pid;
554 if (pid == -1)
555 pid = getpid();
556
557 open_counters(-1, pid);
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300558 } else for (i = 0; i < nr_cpus; i++)
559 open_counters(i, target_pid);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200560
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200561 if (file_new)
562 perf_header__write(header, output);
563
564 if (!system_wide) {
565 pid_synthesize_comm_event(pid, 0);
566 pid_synthesize_mmap_samples(pid);
567 } else
568 synthesize_all();
569
Mike Galbraithef65b2a2009-05-27 10:10:51 +0200570 if (target_pid == -1 && argc) {
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300571 pid = fork();
572 if (pid < 0)
573 perror("failed to fork");
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200574
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300575 if (!pid) {
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200576 if (execvp(argv[0], (char **)argv)) {
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300577 perror(argv[0]);
578 exit(-1);
579 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200580 }
581 }
582
583 if (realtime_prio) {
584 struct sched_param param;
585
586 param.sched_priority = realtime_prio;
587 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
588 printf("Could not set realtime priority.\n");
589 exit(-1);
590 }
591 }
592
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200593 for (;;) {
Ingo Molnar2debbc82009-06-05 14:29:10 +0200594 int hits = samples;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200595
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200596 for (i = 0; i < nr_cpu; i++) {
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200597 for (counter = 0; counter < nr_counters; counter++)
598 mmap_read(&mmap_array[i][counter]);
599 }
600
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200601 if (hits == samples) {
602 if (done)
603 break;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200604 ret = poll(event_array, nr_poll, 100);
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200605 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200606 }
607
Ingo Molnar021e9f42009-06-03 19:27:19 +0200608 /*
609 * Approximate RIP event size: 24 bytes.
610 */
611 fprintf(stderr,
Ingo Molnar2debbc82009-06-05 14:29:10 +0200612 "[ perf record: Captured and wrote %.3f MB %s (~%lld samples) ]\n",
Ingo Molnar021e9f42009-06-03 19:27:19 +0200613 (double)bytes_written / 1024.0 / 1024.0,
614 output_name,
615 bytes_written / 24);
Ingo Molnaraddc2782009-06-02 23:43:11 +0200616
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200617 return 0;
618}
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200619
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200620static const char * const record_usage[] = {
Mike Galbraith9e0967532009-05-28 16:25:34 +0200621 "perf record [<options>] [<command>]",
622 "perf record [<options>] -- <command> [<options>]",
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200623 NULL
624};
625
Ingo Molnar52425192009-05-26 09:17:18 +0200626static const struct option options[] = {
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200627 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200628 "event selector. use 'perf list' to list available events",
629 parse_events),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200630 OPT_INTEGER('p', "pid", &target_pid,
631 "record events on existing pid"),
632 OPT_INTEGER('r', "realtime", &realtime_prio,
633 "collect data with this RT SCHED_FIFO priority"),
634 OPT_BOOLEAN('a', "all-cpus", &system_wide,
635 "system-wide collection from all CPUs"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200636 OPT_BOOLEAN('A', "append", &append_file,
637 "append to the output file to do incremental profiling"),
Peter Zijlstra97124d52009-06-02 15:52:24 +0200638 OPT_BOOLEAN('f', "force", &force,
639 "overwrite existing data file"),
Peter Zijlstrae61078a2009-06-03 11:24:33 +0200640 OPT_LONG('c', "count", &default_interval,
Ingo Molnarabaff322009-06-02 22:59:57 +0200641 "event period to sample"),
642 OPT_STRING('o', "output", &output_name, "file",
643 "output file name"),
644 OPT_BOOLEAN('i', "inherit", &inherit,
645 "child tasks inherit counters"),
Ingo Molnarcf1f4572009-06-05 13:27:02 +0200646 OPT_INTEGER('F', "freq", &freq,
647 "profile at this frequency"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200648 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
649 "number of mmap data pages"),
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200650 OPT_BOOLEAN('g', "call-graph", &call_graph,
651 "do call-graph (stack chain/backtrace) recording"),
Ingo Molnar3da297a2009-06-07 17:39:02 +0200652 OPT_BOOLEAN('v', "verbose", &verbose,
653 "be more verbose (show counter open errors, etc)"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200654 OPT_BOOLEAN('s', "stat", &inherit_stat,
655 "per thread counts"),
Anton Blanchard4bba8282009-07-16 15:44:29 +0200656 OPT_BOOLEAN('d', "data", &sample_address,
657 "Sample addresses"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200658 OPT_BOOLEAN('n', "no-samples", &no_samples,
659 "don't sample"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200660 OPT_END()
661};
662
Ingo Molnarf37a2912009-07-01 12:37:06 +0200663int cmd_record(int argc, const char **argv, const char *prefix __used)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200664{
665 int counter;
666
Anton Blancharda0541232009-07-22 23:04:12 +1000667 argc = parse_options(argc, argv, options, record_usage,
668 PARSE_OPT_STOP_AT_NON_OPTION);
Mike Galbraithef65b2a2009-05-27 10:10:51 +0200669 if (!argc && target_pid == -1 && !system_wide)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200670 usage_with_options(record_usage, options);
671
Peter Zijlstrabbd36e52009-06-11 23:11:50 +0200672 if (!nr_counters) {
673 nr_counters = 1;
674 attrs[0].type = PERF_TYPE_HARDWARE;
675 attrs[0].config = PERF_COUNT_HW_CPU_CYCLES;
676 }
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200677
678 for (counter = 0; counter < nr_counters; counter++) {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200679 if (attrs[counter].sample_period)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200680 continue;
681
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200682 attrs[counter].sample_period = default_interval;
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200683 }
684
685 return __cmd_record(argc, argv);
686}