blob: eea56910b91c3a203b1eb2584325c4d1496a8f7a [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"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020020#include "util/session.h"
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020021#include "util/symbol.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020022
Peter Zijlstra97124d52009-06-02 15:52:24 +020023#include <unistd.h>
Peter Zijlstrade9ac072009-04-08 15:01:31 +020024#include <sched.h>
Peter Zijlstrade9ac072009-04-08 15:01:31 +020025
Peter Zijlstrade9ac072009-04-08 15:01:31 +020026static int fd[MAX_NR_CPUS][MAX_COUNTERS];
Ingo Molnara21ca2c2009-06-06 09:58:57 +020027
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +020028static long default_interval = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020029
Ingo Molnar42e59d72009-10-06 15:14:21 +020030static int nr_cpus = 0;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020031static unsigned int page_size;
Ingo Molnar42e59d72009-10-06 15:14:21 +020032static unsigned int mmap_pages = 128;
33static int freq = 1000;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020034static int output;
Ingo Molnar23ac9cb2009-05-27 09:33:18 +020035static const char *output_name = "perf.data";
Ingo Molnar42e59d72009-10-06 15:14:21 +020036static int group = 0;
37static unsigned int realtime_prio = 0;
38static int raw_samples = 0;
39static int system_wide = 0;
40static int profile_cpu = -1;
41static pid_t target_pid = -1;
42static pid_t child_pid = -1;
43static int inherit = 1;
44static int force = 0;
45static int append_file = 0;
46static int call_graph = 0;
47static int inherit_stat = 0;
48static int no_samples = 0;
49static int sample_address = 0;
50static int multiplex = 0;
51static int multiplex_fd = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020052
Ingo Molnar42e59d72009-10-06 15:14:21 +020053static long samples = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020054static struct timeval last_read;
55static struct timeval this_read;
56
Ingo Molnar42e59d72009-10-06 15:14:21 +020057static u64 bytes_written = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020058
59static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS];
60
Ingo Molnar42e59d72009-10-06 15:14:21 +020061static int nr_poll = 0;
62static int nr_cpu = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020063
Ingo Molnar42e59d72009-10-06 15:14:21 +020064static int file_new = 1;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020065
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020066static struct perf_session *session;
Peter Zijlstraf5970552009-06-18 23:22:55 +020067
Ingo Molnara21ca2c2009-06-06 09:58:57 +020068struct mmap_data {
69 int counter;
70 void *base;
71 unsigned int mask;
72 unsigned int prev;
73};
74
75static struct mmap_data mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
76
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020077static unsigned long mmap_read_head(struct mmap_data *md)
Peter Zijlstrade9ac072009-04-08 15:01:31 +020078{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020079 struct perf_event_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020080 long head;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020081
82 head = pc->data_head;
83 rmb();
84
85 return head;
86}
87
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020088static void mmap_write_tail(struct mmap_data *md, unsigned long tail)
89{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020090 struct perf_event_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020091
92 /*
93 * ensure all reads are done before we write the tail out.
94 */
95 /* mb(); */
96 pc->data_tail = tail;
97}
98
Peter Zijlstraf5970552009-06-18 23:22:55 +020099static void write_output(void *buf, size_t size)
100{
101 while (size) {
102 int ret = write(output, buf, size);
103
104 if (ret < 0)
105 die("failed to write");
106
107 size -= ret;
108 buf += ret;
109
110 bytes_written += ret;
111 }
112}
113
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -0200114static void write_event(event_t *buf, size_t size)
115{
Hitoshi Mitakea8e6f732010-01-30 20:55:41 +0900116 /*
117 * Add it to the list of DSOs, so that when we finish this
118 * record session we can pick the available build-ids.
119 */
120 if (buf->header.type == PERF_RECORD_MMAP) {
121 struct list_head *head = &dsos__user;
122 if (buf->mmap.header.misc == 1)
123 head = &dsos__kernel;
124 __dsos__findnew(head, buf->mmap.filename);
125 }
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -0200126
127 write_output(buf, size);
128}
129
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200130static int process_synthesized_event(event_t *event,
131 struct perf_session *self __used)
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200132{
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -0200133 write_event(event, event->header.size);
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200134 return 0;
135}
136
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200137static void mmap_read(struct mmap_data *md)
138{
139 unsigned int head = mmap_read_head(md);
140 unsigned int old = md->prev;
141 unsigned char *data = md->base + page_size;
142 unsigned long size;
143 void *buf;
144 int diff;
145
146 gettimeofday(&this_read, NULL);
147
148 /*
149 * If we're further behind than half the buffer, there's a chance
Ingo Molnar2debbc82009-06-05 14:29:10 +0200150 * the writer will bite our tail and mess up the samples under us.
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200151 *
152 * If we somehow ended up ahead of the head, we got messed up.
153 *
154 * In either case, truncate and restart at head.
155 */
156 diff = head - old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200157 if (diff < 0) {
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200158 struct timeval iv;
159 unsigned long msecs;
160
161 timersub(&this_read, &last_read, &iv);
162 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
163
164 fprintf(stderr, "WARNING: failed to keep up with mmap data."
165 " Last read %lu msecs ago.\n", msecs);
166
167 /*
168 * head points to a known good entry, start there.
169 */
170 old = head;
171 }
172
173 last_read = this_read;
174
175 if (old != head)
Ingo Molnar2debbc82009-06-05 14:29:10 +0200176 samples++;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200177
178 size = head - old;
179
180 if ((old & md->mask) + size != (head & md->mask)) {
181 buf = &data[old & md->mask];
182 size = md->mask + 1 - (old & md->mask);
183 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200184
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -0200185 write_event(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200186 }
187
188 buf = &data[old & md->mask];
189 size = head - old;
190 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200191
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -0200192 write_event(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200193
194 md->prev = old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200195 mmap_write_tail(md, old);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200196}
197
198static volatile int done = 0;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200199static volatile int signr = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200200
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200201static void sig_handler(int sig)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200202{
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200203 done = 1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200204 signr = sig;
205}
206
207static void sig_atexit(void)
208{
Chris Wilson933da832009-10-04 01:35:01 +0100209 if (child_pid != -1)
210 kill(child_pid, SIGTERM);
211
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200212 if (signr == -1)
213 return;
214
215 signal(signr, SIG_DFL);
216 kill(getpid(), signr);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200217}
218
Ingo Molnarf250c0302009-06-05 13:18:41 +0200219static int group_fd;
220
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200221static struct perf_header_attr *get_header_attr(struct perf_event_attr *a, int nr)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200222{
223 struct perf_header_attr *h_attr;
224
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200225 if (nr < session->header.attrs) {
226 h_attr = session->header.attr[nr];
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200227 } else {
228 h_attr = perf_header_attr__new(a);
Arnaldo Carvalho de Melodc79c0f2009-11-16 19:30:26 -0200229 if (h_attr != NULL)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200230 if (perf_header__add_attr(&session->header, h_attr) < 0) {
Arnaldo Carvalho de Melo11deb1f2009-11-17 01:18:09 -0200231 perf_header_attr__delete(h_attr);
232 h_attr = NULL;
233 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200234 }
235
236 return h_attr;
237}
238
Ingo Molnarf250c0302009-06-05 13:18:41 +0200239static void create_counter(int counter, int cpu, pid_t pid)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200240{
Li Zefanc171b552009-10-15 11:22:07 +0800241 char *filter = filters[counter];
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200242 struct perf_event_attr *attr = attrs + counter;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200243 struct perf_header_attr *h_attr;
244 int track = !counter; /* only the first counter needs these */
Li Zefanc171b552009-10-15 11:22:07 +0800245 int ret;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200246 struct {
247 u64 count;
248 u64 time_enabled;
249 u64 time_running;
250 u64 id;
251 } read_data;
252
253 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
254 PERF_FORMAT_TOTAL_TIME_RUNNING |
255 PERF_FORMAT_ID;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200256
Frederic Weisbecker3a9f1312009-08-13 10:27:18 +0200257 attr->sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200258
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200259 if (freq) {
Peter Zijlstraea1900e2009-06-10 21:45:22 +0200260 attr->sample_type |= PERF_SAMPLE_PERIOD;
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200261 attr->freq = 1;
262 attr->sample_freq = freq;
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200263 }
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200264
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200265 if (no_samples)
266 attr->sample_freq = 0;
267
268 if (inherit_stat)
269 attr->inherit_stat = 1;
270
Anton Blanchard4bba8282009-07-16 15:44:29 +0200271 if (sample_address)
272 attr->sample_type |= PERF_SAMPLE_ADDR;
273
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200274 if (call_graph)
275 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
276
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200277 if (raw_samples) {
Ingo Molnar6ddf2592009-09-03 12:00:22 +0200278 attr->sample_type |= PERF_SAMPLE_TIME;
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200279 attr->sample_type |= PERF_SAMPLE_RAW;
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200280 attr->sample_type |= PERF_SAMPLE_CPU;
281 }
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +0200282
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200283 attr->mmap = track;
284 attr->comm = track;
Peter Zijlstra60ab2712009-12-16 17:55:56 +0100285 attr->inherit = inherit;
Peter Zijlstra4502d772009-06-10 15:03:06 +0200286 attr->disabled = 1;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200287
Ingo Molnar3da297a2009-06-07 17:39:02 +0200288try_again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200289 fd[nr_cpu][counter] = sys_perf_event_open(attr, pid, cpu, group_fd, 0);
Ingo Molnarf250c0302009-06-05 13:18:41 +0200290
291 if (fd[nr_cpu][counter] < 0) {
292 int err = errno;
293
Pekka Enbergc10edee2009-11-08 18:01:06 +0200294 if (err == EPERM || err == EACCES)
Ingo Molnar3da297a2009-06-07 17:39:02 +0200295 die("Permission error - are you root?\n");
Jens Axboe0a5ac842009-08-12 11:18:01 +0200296 else if (err == ENODEV && profile_cpu != -1)
297 die("No such device - did you specify an out-of-range profile CPU?\n");
Ingo Molnar3da297a2009-06-07 17:39:02 +0200298
299 /*
300 * If it's cycles then fall back to hrtimer
301 * based cpu-clock-tick sw counter, which
302 * is always available even if no PMU support:
303 */
304 if (attr->type == PERF_TYPE_HARDWARE
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200305 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
Ingo Molnar3da297a2009-06-07 17:39:02 +0200306
307 if (verbose)
308 warning(" ... trying to fall back to cpu-clock-ticks\n");
309 attr->type = PERF_TYPE_SOFTWARE;
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200310 attr->config = PERF_COUNT_SW_CPU_CLOCK;
Ingo Molnar3da297a2009-06-07 17:39:02 +0200311 goto try_again;
312 }
Ingo Molnar30c806a2009-06-07 17:46:24 +0200313 printf("\n");
314 error("perfcounter syscall returned with %d (%s)\n",
315 fd[nr_cpu][counter], strerror(err));
Simon Kaempfleinbfd45112009-11-16 15:25:53 +1000316
317#if defined(__i386__) || defined(__x86_64__)
318 if (attr->type == PERF_TYPE_HARDWARE && err == EOPNOTSUPP)
319 die("No hardware sampling interrupt available. No APIC? If so then you can boot the kernel with the \"lapic\" boot parameter to force-enable it.\n");
320#endif
321
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200322 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
Ingo Molnarf250c0302009-06-05 13:18:41 +0200323 exit(-1);
324 }
Ingo Molnar3da297a2009-06-07 17:39:02 +0200325
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200326 h_attr = get_header_attr(attr, counter);
Arnaldo Carvalho de Melodc79c0f2009-11-16 19:30:26 -0200327 if (h_attr == NULL)
328 die("nomem\n");
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200329
330 if (!file_new) {
331 if (memcmp(&h_attr->attr, attr, sizeof(*attr))) {
332 fprintf(stderr, "incompatible append\n");
333 exit(-1);
334 }
335 }
336
Frederic Weisbecker3928ddb2009-06-25 22:21:27 +0200337 if (read(fd[nr_cpu][counter], &read_data, sizeof(read_data)) == -1) {
338 perror("Unable to read perf file descriptor\n");
339 exit(-1);
340 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200341
Arnaldo Carvalho de Melo58754122009-11-17 01:18:10 -0200342 if (perf_header_attr__add_id(h_attr, read_data.id) < 0) {
343 pr_warning("Not enough memory to add id\n");
344 exit(-1);
345 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200346
Ingo Molnarf250c0302009-06-05 13:18:41 +0200347 assert(fd[nr_cpu][counter] >= 0);
348 fcntl(fd[nr_cpu][counter], F_SETFL, O_NONBLOCK);
349
350 /*
351 * First counter acts as the group leader:
352 */
353 if (group && group_fd == -1)
354 group_fd = fd[nr_cpu][counter];
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200355 if (multiplex && multiplex_fd == -1)
356 multiplex_fd = fd[nr_cpu][counter];
Ingo Molnarf250c0302009-06-05 13:18:41 +0200357
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200358 if (multiplex && fd[nr_cpu][counter] != multiplex_fd) {
Ingo Molnarf250c0302009-06-05 13:18:41 +0200359
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200360 ret = ioctl(fd[nr_cpu][counter], PERF_EVENT_IOC_SET_OUTPUT, multiplex_fd);
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200361 assert(ret != -1);
362 } else {
363 event_array[nr_poll].fd = fd[nr_cpu][counter];
364 event_array[nr_poll].events = POLLIN;
365 nr_poll++;
366
367 mmap_array[nr_cpu][counter].counter = counter;
368 mmap_array[nr_cpu][counter].prev = 0;
369 mmap_array[nr_cpu][counter].mask = mmap_pages*page_size - 1;
370 mmap_array[nr_cpu][counter].base = mmap(NULL, (mmap_pages+1)*page_size,
371 PROT_READ|PROT_WRITE, MAP_SHARED, fd[nr_cpu][counter], 0);
372 if (mmap_array[nr_cpu][counter].base == MAP_FAILED) {
373 error("failed to mmap with %d (%s)\n", errno, strerror(errno));
374 exit(-1);
375 }
Ingo Molnarf250c0302009-06-05 13:18:41 +0200376 }
Peter Zijlstra4502d772009-06-10 15:03:06 +0200377
Li Zefanc171b552009-10-15 11:22:07 +0800378 if (filter != NULL) {
379 ret = ioctl(fd[nr_cpu][counter],
380 PERF_EVENT_IOC_SET_FILTER, filter);
381 if (ret) {
382 error("failed to set filter with %d (%s)\n", errno,
383 strerror(errno));
384 exit(-1);
385 }
386 }
387
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200388 ioctl(fd[nr_cpu][counter], PERF_EVENT_IOC_ENABLE);
Ingo Molnarf250c0302009-06-05 13:18:41 +0200389}
390
391static void open_counters(int cpu, pid_t pid)
392{
393 int counter;
394
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200395 group_fd = -1;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200396 for (counter = 0; counter < nr_counters; counter++)
397 create_counter(counter, cpu, pid);
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200398
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200399 nr_cpu++;
400}
401
Peter Zijlstraf5970552009-06-18 23:22:55 +0200402static void atexit_header(void)
403{
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200404 session->header.data_size += bytes_written;
Peter Zijlstraf5970552009-06-18 23:22:55 +0200405
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200406 perf_header__write(&session->header, output, true);
Peter Zijlstraf5970552009-06-18 23:22:55 +0200407}
408
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200409static int __cmd_record(int argc, const char **argv)
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200410{
411 int i, counter;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200412 struct stat st;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200413 pid_t pid = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200414 int flags;
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200415 int err;
Peter Zijlstra8b412662009-09-17 19:59:05 +0200416 unsigned long waking = 0;
Peter Zijlstra856e9662009-12-16 17:55:55 +0100417 int child_ready_pipe[2], go_pipe[2];
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200418 const bool forks = target_pid == -1 && argc > 0;
Peter Zijlstra856e9662009-12-16 17:55:55 +0100419 char buf;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200420
421 page_size = sysconf(_SC_PAGE_SIZE);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200422 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
423 assert(nr_cpus <= MAX_NR_CPUS);
424 assert(nr_cpus >= 0);
425
Peter Zijlstraf5970552009-06-18 23:22:55 +0200426 atexit(sig_atexit);
427 signal(SIGCHLD, sig_handler);
428 signal(SIGINT, sig_handler);
429
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200430 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
Peter Zijlstra856e9662009-12-16 17:55:55 +0100431 perror("failed to create pipes");
432 exit(-1);
433 }
434
Pierre Habouzit266e0e22009-08-07 14:16:01 +0200435 if (!stat(output_name, &st) && st.st_size) {
Arnaldo Carvalho de Melob38d3462009-12-14 20:09:30 -0200436 if (!force) {
437 if (!append_file) {
438 pr_err("Error, output file %s exists, use -A "
439 "to append or -f to overwrite.\n",
440 output_name);
441 exit(-1);
442 }
443 } else {
444 char oldname[PATH_MAX];
445 snprintf(oldname, sizeof(oldname), "%s.old",
446 output_name);
447 unlink(oldname);
448 rename(output_name, oldname);
Pierre Habouzit266e0e22009-08-07 14:16:01 +0200449 }
450 } else {
451 append_file = 0;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200452 }
453
Ingo Molnarabaff322009-06-02 22:59:57 +0200454 flags = O_CREAT|O_RDWR;
455 if (append_file)
Peter Zijlstraf5970552009-06-18 23:22:55 +0200456 file_new = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200457 else
458 flags |= O_TRUNC;
459
460 output = open(output_name, flags, S_IRUSR|S_IWUSR);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200461 if (output < 0) {
462 perror("failed to create output file");
463 exit(-1);
464 }
465
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200466 session = perf_session__new(output_name, O_WRONLY, force);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200467 if (session == NULL) {
Arnaldo Carvalho de Meloa9a70bb2009-11-17 01:18:11 -0200468 pr_err("Not enough memory for reading perf file header\n");
469 return -1;
470 }
471
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200472 if (!file_new) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200473 err = perf_header__read(&session->header, output);
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200474 if (err < 0)
475 return err;
476 }
477
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200478 if (raw_samples) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200479 perf_header__set_feat(&session->header, HEADER_TRACE_INFO);
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200480 } else {
481 for (i = 0; i < nr_counters; i++) {
482 if (attrs[i].sample_type & PERF_SAMPLE_RAW) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200483 perf_header__set_feat(&session->header, HEADER_TRACE_INFO);
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200484 break;
485 }
486 }
487 }
Frederic Weisbecker03456a12009-10-06 23:36:47 +0200488
Peter Zijlstraf5970552009-06-18 23:22:55 +0200489 atexit(atexit_header);
490
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200491 if (forks) {
Peter Zijlstra856e9662009-12-16 17:55:55 +0100492 pid = fork();
493 if (pid < 0) {
494 perror("failed to fork");
495 exit(-1);
Jens Axboe0a5ac842009-08-12 11:18:01 +0200496 }
Peter Zijlstra856e9662009-12-16 17:55:55 +0100497
498 if (!pid) {
499 close(child_ready_pipe[0]);
500 close(go_pipe[1]);
501 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
502
503 /*
504 * Do a dummy execvp to get the PLT entry resolved,
505 * so we avoid the resolver overhead on the real
506 * execvp call.
507 */
508 execvp("", (char **)argv);
509
510 /*
511 * Tell the parent we're ready to go
512 */
513 close(child_ready_pipe[1]);
514
515 /*
516 * Wait until the parent tells us to go.
517 */
518 if (read(go_pipe[0], &buf, 1) == -1)
519 perror("unable to read pipe");
520
521 execvp(argv[0], (char **)argv);
522
523 perror(argv[0]);
524 exit(-1);
525 }
526
527 child_pid = pid;
528
529 if (!system_wide)
530 target_pid = pid;
531
532 close(child_ready_pipe[1]);
533 close(go_pipe[0]);
534 /*
535 * wait for child to settle
536 */
537 if (read(child_ready_pipe[0], &buf, 1) == -1) {
538 perror("unable to read pipe");
539 exit(-1);
540 }
541 close(child_ready_pipe[0]);
542 }
543
544
Peter Zijlstra60ab2712009-12-16 17:55:56 +0100545 if ((!system_wide && !inherit) || profile_cpu != -1) {
Peter Zijlstra856e9662009-12-16 17:55:55 +0100546 open_counters(profile_cpu, target_pid);
547 } else {
548 for (i = 0; i < nr_cpus; i++)
549 open_counters(i, target_pid);
Jens Axboe0a5ac842009-08-12 11:18:01 +0200550 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200551
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -0200552 if (file_new) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200553 err = perf_header__write(&session->header, output, false);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -0200554 if (err < 0)
555 return err;
556 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200557
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200558 err = event__synthesize_kernel_mmap(process_synthesized_event,
559 session, "_text");
560 if (err < 0) {
561 pr_err("Couldn't record kernel reference relocation symbol.\n");
562 return err;
563 }
564
Arnaldo Carvalho de Melob7cece72010-01-13 13:22:17 -0200565 err = event__synthesize_modules(process_synthesized_event, session);
566 if (err < 0) {
567 pr_err("Couldn't record kernel reference relocation symbol.\n");
568 return err;
569 }
570
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200571 if (!system_wide && profile_cpu == -1)
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200572 event__synthesize_thread(pid, process_synthesized_event,
573 session);
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200574 else
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200575 event__synthesize_threads(process_synthesized_event, session);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200576
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200577 if (realtime_prio) {
578 struct sched_param param;
579
580 param.sched_priority = realtime_prio;
581 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200582 pr_err("Could not set realtime priority.\n");
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200583 exit(-1);
584 }
585 }
586
Peter Zijlstra856e9662009-12-16 17:55:55 +0100587 /*
588 * Let the child rip
589 */
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200590 if (forks)
591 close(go_pipe[1]);
Peter Zijlstra856e9662009-12-16 17:55:55 +0100592
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++) {
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200597 for (counter = 0; counter < nr_counters; counter++) {
598 if (mmap_array[i][counter].base)
599 mmap_read(&mmap_array[i][counter]);
600 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200601 }
602
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200603 if (hits == samples) {
604 if (done)
605 break;
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200606 err = poll(event_array, nr_poll, -1);
Peter Zijlstra8b412662009-09-17 19:59:05 +0200607 waking++;
608 }
609
610 if (done) {
611 for (i = 0; i < nr_cpu; i++) {
612 for (counter = 0; counter < nr_counters; counter++)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200613 ioctl(fd[i][counter], PERF_EVENT_IOC_DISABLE);
Peter Zijlstra8b412662009-09-17 19:59:05 +0200614 }
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200615 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200616 }
617
Peter Zijlstra8b412662009-09-17 19:59:05 +0200618 fprintf(stderr, "[ perf record: Woken up %ld times to write data ]\n", waking);
619
Ingo Molnar021e9f42009-06-03 19:27:19 +0200620 /*
621 * Approximate RIP event size: 24 bytes.
622 */
623 fprintf(stderr,
Ingo Molnar2debbc82009-06-05 14:29:10 +0200624 "[ perf record: Captured and wrote %.3f MB %s (~%lld samples) ]\n",
Ingo Molnar021e9f42009-06-03 19:27:19 +0200625 (double)bytes_written / 1024.0 / 1024.0,
626 output_name,
627 bytes_written / 24);
Ingo Molnaraddc2782009-06-02 23:43:11 +0200628
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200629 return 0;
630}
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200631
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200632static const char * const record_usage[] = {
Mike Galbraith9e0967532009-05-28 16:25:34 +0200633 "perf record [<options>] [<command>]",
634 "perf record [<options>] -- <command> [<options>]",
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200635 NULL
636};
637
Ingo Molnar52425192009-05-26 09:17:18 +0200638static const struct option options[] = {
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200639 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200640 "event selector. use 'perf list' to list available events",
641 parse_events),
Li Zefanc171b552009-10-15 11:22:07 +0800642 OPT_CALLBACK(0, "filter", NULL, "filter",
643 "event filter", parse_filter),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200644 OPT_INTEGER('p', "pid", &target_pid,
645 "record events on existing pid"),
646 OPT_INTEGER('r', "realtime", &realtime_prio,
647 "collect data with this RT SCHED_FIFO priority"),
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200648 OPT_BOOLEAN('R', "raw-samples", &raw_samples,
649 "collect raw sample records from all opened counters"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200650 OPT_BOOLEAN('a', "all-cpus", &system_wide,
651 "system-wide collection from all CPUs"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200652 OPT_BOOLEAN('A', "append", &append_file,
653 "append to the output file to do incremental profiling"),
Jens Axboe0a5ac842009-08-12 11:18:01 +0200654 OPT_INTEGER('C', "profile_cpu", &profile_cpu,
655 "CPU to profile on"),
Peter Zijlstra97124d52009-06-02 15:52:24 +0200656 OPT_BOOLEAN('f', "force", &force,
657 "overwrite existing data file"),
Peter Zijlstrae61078a2009-06-03 11:24:33 +0200658 OPT_LONG('c', "count", &default_interval,
Ingo Molnarabaff322009-06-02 22:59:57 +0200659 "event period to sample"),
660 OPT_STRING('o', "output", &output_name, "file",
661 "output file name"),
662 OPT_BOOLEAN('i', "inherit", &inherit,
663 "child tasks inherit counters"),
Ingo Molnarcf1f4572009-06-05 13:27:02 +0200664 OPT_INTEGER('F', "freq", &freq,
665 "profile at this frequency"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200666 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
667 "number of mmap data pages"),
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200668 OPT_BOOLEAN('g', "call-graph", &call_graph,
669 "do call-graph (stack chain/backtrace) recording"),
Ingo Molnar3da297a2009-06-07 17:39:02 +0200670 OPT_BOOLEAN('v', "verbose", &verbose,
671 "be more verbose (show counter open errors, etc)"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200672 OPT_BOOLEAN('s', "stat", &inherit_stat,
673 "per thread counts"),
Anton Blanchard4bba8282009-07-16 15:44:29 +0200674 OPT_BOOLEAN('d', "data", &sample_address,
675 "Sample addresses"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200676 OPT_BOOLEAN('n', "no-samples", &no_samples,
677 "don't sample"),
Frederic Weisbeckerd1302522009-09-14 08:57:15 +0200678 OPT_BOOLEAN('M', "multiplex", &multiplex,
679 "multiplex counter output in a single channel"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200680 OPT_END()
681};
682
Ingo Molnarf37a2912009-07-01 12:37:06 +0200683int cmd_record(int argc, const char **argv, const char *prefix __used)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200684{
685 int counter;
686
Anton Blancharda0541232009-07-22 23:04:12 +1000687 argc = parse_options(argc, argv, options, record_usage,
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200688 PARSE_OPT_STOP_AT_NON_OPTION);
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200689 if (!argc && target_pid == -1 && !system_wide && profile_cpu == -1)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200690 usage_with_options(record_usage, options);
691
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200692 symbol__init();
693
Peter Zijlstrabbd36e52009-06-11 23:11:50 +0200694 if (!nr_counters) {
695 nr_counters = 1;
696 attrs[0].type = PERF_TYPE_HARDWARE;
697 attrs[0].config = PERF_COUNT_HW_CPU_CYCLES;
698 }
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200699
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +0200700 /*
701 * User specified count overrides default frequency.
702 */
703 if (default_interval)
704 freq = 0;
705 else if (freq) {
706 default_interval = freq;
707 } else {
708 fprintf(stderr, "frequency and count are zero, aborting\n");
709 exit(EXIT_FAILURE);
710 }
711
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200712 for (counter = 0; counter < nr_counters; counter++) {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200713 if (attrs[counter].sample_period)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200714 continue;
715
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200716 attrs[counter].sample_period = default_interval;
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200717 }
718
719 return __cmd_record(argc, argv);
720}