blob: c97cb2ca8fa49465ed1066cc1c302f709ad7b036 [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 Melo8d063672009-11-04 18:50:43 -020020#include "util/symbol.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020021
Peter Zijlstra97124d52009-06-02 15:52:24 +020022#include <unistd.h>
Peter Zijlstrade9ac072009-04-08 15:01:31 +020023#include <sched.h>
Peter Zijlstrade9ac072009-04-08 15:01:31 +020024
Peter Zijlstrade9ac072009-04-08 15:01:31 +020025static int fd[MAX_NR_CPUS][MAX_COUNTERS];
Ingo Molnara21ca2c2009-06-06 09:58:57 +020026
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +020027static long default_interval = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020028
Ingo Molnar42e59d72009-10-06 15:14:21 +020029static int nr_cpus = 0;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020030static unsigned int page_size;
Ingo Molnar42e59d72009-10-06 15:14:21 +020031static unsigned int mmap_pages = 128;
32static int freq = 1000;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020033static int output;
Ingo Molnar23ac9cb2009-05-27 09:33:18 +020034static const char *output_name = "perf.data";
Ingo Molnar42e59d72009-10-06 15:14:21 +020035static int group = 0;
36static unsigned int realtime_prio = 0;
37static int raw_samples = 0;
38static int system_wide = 0;
39static int profile_cpu = -1;
40static pid_t target_pid = -1;
41static pid_t child_pid = -1;
42static int inherit = 1;
43static int force = 0;
44static int append_file = 0;
45static int call_graph = 0;
46static int inherit_stat = 0;
47static int no_samples = 0;
48static int sample_address = 0;
49static int multiplex = 0;
50static int multiplex_fd = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020051
Ingo Molnar42e59d72009-10-06 15:14:21 +020052static long samples = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020053static struct timeval last_read;
54static struct timeval this_read;
55
Ingo Molnar42e59d72009-10-06 15:14:21 +020056static u64 bytes_written = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020057
58static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS];
59
Ingo Molnar42e59d72009-10-06 15:14:21 +020060static int nr_poll = 0;
61static int nr_cpu = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020062
Ingo Molnar42e59d72009-10-06 15:14:21 +020063static int file_new = 1;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020064
Ingo Molnar42e59d72009-10-06 15:14:21 +020065struct perf_header *header = NULL;
Peter Zijlstraf5970552009-06-18 23:22:55 +020066
Ingo Molnara21ca2c2009-06-06 09:58:57 +020067struct mmap_data {
68 int counter;
69 void *base;
70 unsigned int mask;
71 unsigned int prev;
72};
73
74static struct mmap_data mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
75
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020076static unsigned long mmap_read_head(struct mmap_data *md)
Peter Zijlstrade9ac072009-04-08 15:01:31 +020077{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020078 struct perf_event_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020079 long head;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020080
81 head = pc->data_head;
82 rmb();
83
84 return head;
85}
86
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020087static void mmap_write_tail(struct mmap_data *md, unsigned long tail)
88{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020089 struct perf_event_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020090
91 /*
92 * ensure all reads are done before we write the tail out.
93 */
94 /* mb(); */
95 pc->data_tail = tail;
96}
97
Peter Zijlstraf5970552009-06-18 23:22:55 +020098static void write_output(void *buf, size_t size)
99{
100 while (size) {
101 int ret = write(output, buf, size);
102
103 if (ret < 0)
104 die("failed to write");
105
106 size -= ret;
107 buf += ret;
108
109 bytes_written += ret;
110 }
111}
112
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -0200113static void write_event(event_t *buf, size_t size)
114{
115 /*
116 * Add it to the list of DSOs, so that when we finish this
117 * record session we can pick the available build-ids.
118 */
119 if (buf->header.type == PERF_RECORD_MMAP)
120 dsos__findnew(buf->mmap.filename);
121
122 write_output(buf, size);
123}
124
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200125static int process_synthesized_event(event_t *event)
126{
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -0200127 write_event(event, event->header.size);
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200128 return 0;
129}
130
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200131static void mmap_read(struct mmap_data *md)
132{
133 unsigned int head = mmap_read_head(md);
134 unsigned int old = md->prev;
135 unsigned char *data = md->base + page_size;
136 unsigned long size;
137 void *buf;
138 int diff;
139
140 gettimeofday(&this_read, NULL);
141
142 /*
143 * If we're further behind than half the buffer, there's a chance
Ingo Molnar2debbc82009-06-05 14:29:10 +0200144 * the writer will bite our tail and mess up the samples under us.
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200145 *
146 * If we somehow ended up ahead of the head, we got messed up.
147 *
148 * In either case, truncate and restart at head.
149 */
150 diff = head - old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200151 if (diff < 0) {
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200152 struct timeval iv;
153 unsigned long msecs;
154
155 timersub(&this_read, &last_read, &iv);
156 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
157
158 fprintf(stderr, "WARNING: failed to keep up with mmap data."
159 " Last read %lu msecs ago.\n", msecs);
160
161 /*
162 * head points to a known good entry, start there.
163 */
164 old = head;
165 }
166
167 last_read = this_read;
168
169 if (old != head)
Ingo Molnar2debbc82009-06-05 14:29:10 +0200170 samples++;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200171
172 size = head - old;
173
174 if ((old & md->mask) + size != (head & md->mask)) {
175 buf = &data[old & md->mask];
176 size = md->mask + 1 - (old & md->mask);
177 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200178
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -0200179 write_event(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200180 }
181
182 buf = &data[old & md->mask];
183 size = head - old;
184 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200185
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -0200186 write_event(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200187
188 md->prev = old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200189 mmap_write_tail(md, old);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200190}
191
192static volatile int done = 0;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200193static volatile int signr = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200194
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200195static void sig_handler(int sig)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200196{
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200197 done = 1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200198 signr = sig;
199}
200
201static void sig_atexit(void)
202{
Chris Wilson933da832009-10-04 01:35:01 +0100203 if (child_pid != -1)
204 kill(child_pid, SIGTERM);
205
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200206 if (signr == -1)
207 return;
208
209 signal(signr, SIG_DFL);
210 kill(getpid(), signr);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200211}
212
Ingo Molnarf250c0302009-06-05 13:18:41 +0200213static int group_fd;
214
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200215static struct perf_header_attr *get_header_attr(struct perf_event_attr *a, int nr)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200216{
217 struct perf_header_attr *h_attr;
218
219 if (nr < header->attrs) {
220 h_attr = header->attr[nr];
221 } else {
222 h_attr = perf_header_attr__new(a);
Arnaldo Carvalho de Melodc79c0f2009-11-16 19:30:26 -0200223 if (h_attr != NULL)
Arnaldo Carvalho de Melo11deb1f2009-11-17 01:18:09 -0200224 if (perf_header__add_attr(header, h_attr) < 0) {
225 perf_header_attr__delete(h_attr);
226 h_attr = NULL;
227 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200228 }
229
230 return h_attr;
231}
232
Ingo Molnarf250c0302009-06-05 13:18:41 +0200233static void create_counter(int counter, int cpu, pid_t pid)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200234{
Li Zefanc171b552009-10-15 11:22:07 +0800235 char *filter = filters[counter];
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200236 struct perf_event_attr *attr = attrs + counter;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200237 struct perf_header_attr *h_attr;
238 int track = !counter; /* only the first counter needs these */
Li Zefanc171b552009-10-15 11:22:07 +0800239 int ret;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200240 struct {
241 u64 count;
242 u64 time_enabled;
243 u64 time_running;
244 u64 id;
245 } read_data;
246
247 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
248 PERF_FORMAT_TOTAL_TIME_RUNNING |
249 PERF_FORMAT_ID;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200250
Frederic Weisbecker3a9f1312009-08-13 10:27:18 +0200251 attr->sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200252
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200253 if (freq) {
Peter Zijlstraea1900e2009-06-10 21:45:22 +0200254 attr->sample_type |= PERF_SAMPLE_PERIOD;
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200255 attr->freq = 1;
256 attr->sample_freq = freq;
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200257 }
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200258
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200259 if (no_samples)
260 attr->sample_freq = 0;
261
262 if (inherit_stat)
263 attr->inherit_stat = 1;
264
Anton Blanchard4bba8282009-07-16 15:44:29 +0200265 if (sample_address)
266 attr->sample_type |= PERF_SAMPLE_ADDR;
267
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200268 if (call_graph)
269 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
270
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200271 if (raw_samples) {
Ingo Molnar6ddf2592009-09-03 12:00:22 +0200272 attr->sample_type |= PERF_SAMPLE_TIME;
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200273 attr->sample_type |= PERF_SAMPLE_RAW;
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200274 attr->sample_type |= PERF_SAMPLE_CPU;
275 }
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +0200276
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200277 attr->mmap = track;
278 attr->comm = track;
279 attr->inherit = (cpu < 0) && inherit;
Peter Zijlstra4502d772009-06-10 15:03:06 +0200280 attr->disabled = 1;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200281
Ingo Molnar3da297a2009-06-07 17:39:02 +0200282try_again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200283 fd[nr_cpu][counter] = sys_perf_event_open(attr, pid, cpu, group_fd, 0);
Ingo Molnarf250c0302009-06-05 13:18:41 +0200284
285 if (fd[nr_cpu][counter] < 0) {
286 int err = errno;
287
Pekka Enbergc10edee2009-11-08 18:01:06 +0200288 if (err == EPERM || err == EACCES)
Ingo Molnar3da297a2009-06-07 17:39:02 +0200289 die("Permission error - are you root?\n");
Jens Axboe0a5ac842009-08-12 11:18:01 +0200290 else if (err == ENODEV && profile_cpu != -1)
291 die("No such device - did you specify an out-of-range profile CPU?\n");
Ingo Molnar3da297a2009-06-07 17:39:02 +0200292
293 /*
294 * If it's cycles then fall back to hrtimer
295 * based cpu-clock-tick sw counter, which
296 * is always available even if no PMU support:
297 */
298 if (attr->type == PERF_TYPE_HARDWARE
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200299 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
Ingo Molnar3da297a2009-06-07 17:39:02 +0200300
301 if (verbose)
302 warning(" ... trying to fall back to cpu-clock-ticks\n");
303 attr->type = PERF_TYPE_SOFTWARE;
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200304 attr->config = PERF_COUNT_SW_CPU_CLOCK;
Ingo Molnar3da297a2009-06-07 17:39:02 +0200305 goto try_again;
306 }
Ingo Molnar30c806a2009-06-07 17:46:24 +0200307 printf("\n");
308 error("perfcounter syscall returned with %d (%s)\n",
309 fd[nr_cpu][counter], strerror(err));
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200310 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
Ingo Molnarf250c0302009-06-05 13:18:41 +0200311 exit(-1);
312 }
Ingo Molnar3da297a2009-06-07 17:39:02 +0200313
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200314 h_attr = get_header_attr(attr, counter);
Arnaldo Carvalho de Melodc79c0f2009-11-16 19:30:26 -0200315 if (h_attr == NULL)
316 die("nomem\n");
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200317
318 if (!file_new) {
319 if (memcmp(&h_attr->attr, attr, sizeof(*attr))) {
320 fprintf(stderr, "incompatible append\n");
321 exit(-1);
322 }
323 }
324
Frederic Weisbecker3928ddb2009-06-25 22:21:27 +0200325 if (read(fd[nr_cpu][counter], &read_data, sizeof(read_data)) == -1) {
326 perror("Unable to read perf file descriptor\n");
327 exit(-1);
328 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200329
Arnaldo Carvalho de Melo58754122009-11-17 01:18:10 -0200330 if (perf_header_attr__add_id(h_attr, read_data.id) < 0) {
331 pr_warning("Not enough memory to add id\n");
332 exit(-1);
333 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200334
Ingo Molnarf250c0302009-06-05 13:18:41 +0200335 assert(fd[nr_cpu][counter] >= 0);
336 fcntl(fd[nr_cpu][counter], F_SETFL, O_NONBLOCK);
337
338 /*
339 * First counter acts as the group leader:
340 */
341 if (group && group_fd == -1)
342 group_fd = fd[nr_cpu][counter];
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200343 if (multiplex && multiplex_fd == -1)
344 multiplex_fd = fd[nr_cpu][counter];
Ingo Molnarf250c0302009-06-05 13:18:41 +0200345
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200346 if (multiplex && fd[nr_cpu][counter] != multiplex_fd) {
Ingo Molnarf250c0302009-06-05 13:18:41 +0200347
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200348 ret = ioctl(fd[nr_cpu][counter], PERF_EVENT_IOC_SET_OUTPUT, multiplex_fd);
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200349 assert(ret != -1);
350 } else {
351 event_array[nr_poll].fd = fd[nr_cpu][counter];
352 event_array[nr_poll].events = POLLIN;
353 nr_poll++;
354
355 mmap_array[nr_cpu][counter].counter = counter;
356 mmap_array[nr_cpu][counter].prev = 0;
357 mmap_array[nr_cpu][counter].mask = mmap_pages*page_size - 1;
358 mmap_array[nr_cpu][counter].base = mmap(NULL, (mmap_pages+1)*page_size,
359 PROT_READ|PROT_WRITE, MAP_SHARED, fd[nr_cpu][counter], 0);
360 if (mmap_array[nr_cpu][counter].base == MAP_FAILED) {
361 error("failed to mmap with %d (%s)\n", errno, strerror(errno));
362 exit(-1);
363 }
Ingo Molnarf250c0302009-06-05 13:18:41 +0200364 }
Peter Zijlstra4502d772009-06-10 15:03:06 +0200365
Li Zefanc171b552009-10-15 11:22:07 +0800366 if (filter != NULL) {
367 ret = ioctl(fd[nr_cpu][counter],
368 PERF_EVENT_IOC_SET_FILTER, filter);
369 if (ret) {
370 error("failed to set filter with %d (%s)\n", errno,
371 strerror(errno));
372 exit(-1);
373 }
374 }
375
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200376 ioctl(fd[nr_cpu][counter], PERF_EVENT_IOC_ENABLE);
Ingo Molnarf250c0302009-06-05 13:18:41 +0200377}
378
379static void open_counters(int cpu, pid_t pid)
380{
381 int counter;
382
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200383 group_fd = -1;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200384 for (counter = 0; counter < nr_counters; counter++)
385 create_counter(counter, cpu, pid);
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200386
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200387 nr_cpu++;
388}
389
Peter Zijlstraf5970552009-06-18 23:22:55 +0200390static void atexit_header(void)
391{
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200392 header->data_size += bytes_written;
Peter Zijlstraf5970552009-06-18 23:22:55 +0200393
Frederic Weisbecker8671dab2009-11-11 04:51:03 +0100394 perf_header__write(header, output, true);
Peter Zijlstraf5970552009-06-18 23:22:55 +0200395}
396
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200397static int __cmd_record(int argc, const char **argv)
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200398{
399 int i, counter;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200400 struct stat st;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200401 pid_t pid = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200402 int flags;
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200403 int err;
Peter Zijlstra8b412662009-09-17 19:59:05 +0200404 unsigned long waking = 0;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200405
406 page_size = sysconf(_SC_PAGE_SIZE);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200407 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
408 assert(nr_cpus <= MAX_NR_CPUS);
409 assert(nr_cpus >= 0);
410
Peter Zijlstraf5970552009-06-18 23:22:55 +0200411 atexit(sig_atexit);
412 signal(SIGCHLD, sig_handler);
413 signal(SIGINT, sig_handler);
414
Pierre Habouzit266e0e22009-08-07 14:16:01 +0200415 if (!stat(output_name, &st) && st.st_size) {
416 if (!force && !append_file) {
417 fprintf(stderr, "Error, output file %s exists, use -A to append or -f to overwrite.\n",
418 output_name);
419 exit(-1);
420 }
421 } else {
422 append_file = 0;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200423 }
424
Ingo Molnarabaff322009-06-02 22:59:57 +0200425 flags = O_CREAT|O_RDWR;
426 if (append_file)
Peter Zijlstraf5970552009-06-18 23:22:55 +0200427 file_new = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200428 else
429 flags |= O_TRUNC;
430
431 output = open(output_name, flags, S_IRUSR|S_IWUSR);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200432 if (output < 0) {
433 perror("failed to create output file");
434 exit(-1);
435 }
436
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200437 header = perf_header__new();
Arnaldo Carvalho de Meloa9a70bb2009-11-17 01:18:11 -0200438 if (header == NULL) {
439 pr_err("Not enough memory for reading perf file header\n");
440 return -1;
441 }
442
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200443 if (!file_new) {
444 err = perf_header__read(header, output);
445 if (err < 0)
446 return err;
447 }
448
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200449 if (raw_samples) {
Frederic Weisbecker3e13ab22009-11-11 04:51:06 +0100450 perf_header__set_feat(header, HEADER_TRACE_INFO);
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200451 } else {
452 for (i = 0; i < nr_counters; i++) {
453 if (attrs[i].sample_type & PERF_SAMPLE_RAW) {
Frederic Weisbecker3e13ab22009-11-11 04:51:06 +0100454 perf_header__set_feat(header, HEADER_TRACE_INFO);
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200455 break;
456 }
457 }
458 }
Frederic Weisbecker03456a12009-10-06 23:36:47 +0200459
Peter Zijlstraf5970552009-06-18 23:22:55 +0200460 atexit(atexit_header);
461
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300462 if (!system_wide) {
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200463 pid = target_pid;
464 if (pid == -1)
465 pid = getpid();
466
Jens Axboe0a5ac842009-08-12 11:18:01 +0200467 open_counters(profile_cpu, pid);
468 } else {
469 if (profile_cpu != -1) {
470 open_counters(profile_cpu, target_pid);
471 } else {
472 for (i = 0; i < nr_cpus; i++)
473 open_counters(i, target_pid);
474 }
475 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200476
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200477 if (file_new)
Frederic Weisbecker8671dab2009-11-11 04:51:03 +0100478 perf_header__write(header, output, false);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200479
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200480 if (!system_wide)
481 event__synthesize_thread(pid, process_synthesized_event);
482 else
483 event__synthesize_threads(process_synthesized_event);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200484
Mike Galbraithef65b2a2009-05-27 10:10:51 +0200485 if (target_pid == -1 && argc) {
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300486 pid = fork();
487 if (pid < 0)
Frederic Weisbeckerde896722009-11-11 04:51:02 +0100488 die("failed to fork");
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200489
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300490 if (!pid) {
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200491 if (execvp(argv[0], (char **)argv)) {
Arnaldo Carvalho de Melo1a853e32009-05-14 22:50:46 -0300492 perror(argv[0]);
493 exit(-1);
494 }
Frederic Weisbeckerde896722009-11-11 04:51:02 +0100495 } else {
496 /*
497 * Wait a bit for the execv'ed child to appear
498 * and be updated in /proc
499 * FIXME: Do you know a less heuristical solution?
500 */
501 usleep(1000);
502 event__synthesize_thread(pid,
503 process_synthesized_event);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200504 }
Chris Wilson933da832009-10-04 01:35:01 +0100505
506 child_pid = pid;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200507 }
508
509 if (realtime_prio) {
510 struct sched_param param;
511
512 param.sched_priority = realtime_prio;
513 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200514 pr_err("Could not set realtime priority.\n");
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200515 exit(-1);
516 }
517 }
518
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200519 for (;;) {
Ingo Molnar2debbc82009-06-05 14:29:10 +0200520 int hits = samples;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200521
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200522 for (i = 0; i < nr_cpu; i++) {
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200523 for (counter = 0; counter < nr_counters; counter++) {
524 if (mmap_array[i][counter].base)
525 mmap_read(&mmap_array[i][counter]);
526 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200527 }
528
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200529 if (hits == samples) {
530 if (done)
531 break;
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200532 err = poll(event_array, nr_poll, -1);
Peter Zijlstra8b412662009-09-17 19:59:05 +0200533 waking++;
534 }
535
536 if (done) {
537 for (i = 0; i < nr_cpu; i++) {
538 for (counter = 0; counter < nr_counters; counter++)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200539 ioctl(fd[i][counter], PERF_EVENT_IOC_DISABLE);
Peter Zijlstra8b412662009-09-17 19:59:05 +0200540 }
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200541 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200542 }
543
Peter Zijlstra8b412662009-09-17 19:59:05 +0200544 fprintf(stderr, "[ perf record: Woken up %ld times to write data ]\n", waking);
545
Ingo Molnar021e9f42009-06-03 19:27:19 +0200546 /*
547 * Approximate RIP event size: 24 bytes.
548 */
549 fprintf(stderr,
Ingo Molnar2debbc82009-06-05 14:29:10 +0200550 "[ perf record: Captured and wrote %.3f MB %s (~%lld samples) ]\n",
Ingo Molnar021e9f42009-06-03 19:27:19 +0200551 (double)bytes_written / 1024.0 / 1024.0,
552 output_name,
553 bytes_written / 24);
Ingo Molnaraddc2782009-06-02 23:43:11 +0200554
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200555 return 0;
556}
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200557
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200558static const char * const record_usage[] = {
Mike Galbraith9e0967532009-05-28 16:25:34 +0200559 "perf record [<options>] [<command>]",
560 "perf record [<options>] -- <command> [<options>]",
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200561 NULL
562};
563
Ingo Molnar52425192009-05-26 09:17:18 +0200564static const struct option options[] = {
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200565 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200566 "event selector. use 'perf list' to list available events",
567 parse_events),
Li Zefanc171b552009-10-15 11:22:07 +0800568 OPT_CALLBACK(0, "filter", NULL, "filter",
569 "event filter", parse_filter),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200570 OPT_INTEGER('p', "pid", &target_pid,
571 "record events on existing pid"),
572 OPT_INTEGER('r', "realtime", &realtime_prio,
573 "collect data with this RT SCHED_FIFO priority"),
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200574 OPT_BOOLEAN('R', "raw-samples", &raw_samples,
575 "collect raw sample records from all opened counters"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200576 OPT_BOOLEAN('a', "all-cpus", &system_wide,
577 "system-wide collection from all CPUs"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200578 OPT_BOOLEAN('A', "append", &append_file,
579 "append to the output file to do incremental profiling"),
Jens Axboe0a5ac842009-08-12 11:18:01 +0200580 OPT_INTEGER('C', "profile_cpu", &profile_cpu,
581 "CPU to profile on"),
Peter Zijlstra97124d52009-06-02 15:52:24 +0200582 OPT_BOOLEAN('f', "force", &force,
583 "overwrite existing data file"),
Peter Zijlstrae61078a2009-06-03 11:24:33 +0200584 OPT_LONG('c', "count", &default_interval,
Ingo Molnarabaff322009-06-02 22:59:57 +0200585 "event period to sample"),
586 OPT_STRING('o', "output", &output_name, "file",
587 "output file name"),
588 OPT_BOOLEAN('i', "inherit", &inherit,
589 "child tasks inherit counters"),
Ingo Molnarcf1f4572009-06-05 13:27:02 +0200590 OPT_INTEGER('F', "freq", &freq,
591 "profile at this frequency"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200592 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
593 "number of mmap data pages"),
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200594 OPT_BOOLEAN('g', "call-graph", &call_graph,
595 "do call-graph (stack chain/backtrace) recording"),
Ingo Molnar3da297a2009-06-07 17:39:02 +0200596 OPT_BOOLEAN('v', "verbose", &verbose,
597 "be more verbose (show counter open errors, etc)"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200598 OPT_BOOLEAN('s', "stat", &inherit_stat,
599 "per thread counts"),
Anton Blanchard4bba8282009-07-16 15:44:29 +0200600 OPT_BOOLEAN('d', "data", &sample_address,
601 "Sample addresses"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200602 OPT_BOOLEAN('n', "no-samples", &no_samples,
603 "don't sample"),
Frederic Weisbeckerd1302522009-09-14 08:57:15 +0200604 OPT_BOOLEAN('M', "multiplex", &multiplex,
605 "multiplex counter output in a single channel"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200606 OPT_END()
607};
608
Ingo Molnarf37a2912009-07-01 12:37:06 +0200609int cmd_record(int argc, const char **argv, const char *prefix __used)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200610{
611 int counter;
612
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -0200613 symbol__init(0);
614
Anton Blancharda0541232009-07-22 23:04:12 +1000615 argc = parse_options(argc, argv, options, record_usage,
616 PARSE_OPT_STOP_AT_NON_OPTION);
Mike Galbraithef65b2a2009-05-27 10:10:51 +0200617 if (!argc && target_pid == -1 && !system_wide)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200618 usage_with_options(record_usage, options);
619
Peter Zijlstrabbd36e52009-06-11 23:11:50 +0200620 if (!nr_counters) {
621 nr_counters = 1;
622 attrs[0].type = PERF_TYPE_HARDWARE;
623 attrs[0].config = PERF_COUNT_HW_CPU_CYCLES;
624 }
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200625
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +0200626 /*
627 * User specified count overrides default frequency.
628 */
629 if (default_interval)
630 freq = 0;
631 else if (freq) {
632 default_interval = freq;
633 } else {
634 fprintf(stderr, "frequency and count are zero, aborting\n");
635 exit(EXIT_FAILURE);
636 }
637
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200638 for (counter = 0; counter < nr_counters; counter++) {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200639 if (attrs[counter].sample_period)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200640 continue;
641
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200642 attrs[counter].sample_period = default_interval;
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200643 }
644
645 return __cmd_record(argc, argv);
646}