blob: 706f00196b87a8a3c50e0b0c935663c0590114f9 [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 */
Xiao Guangrongb8f46c52010-02-03 11:53:14 +08008#define _LARGEFILE64_SOURCE
9#define _FILE_OFFSET_BITS 64
10
Ingo Molnar16f762a2009-05-27 09:10:38 +020011#include "builtin.h"
Ingo Molnarbf9e1872009-06-02 23:37:05 +020012
13#include "perf.h"
14
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -020015#include "util/build-id.h"
Thomas Gleixner6eda5832009-05-01 18:29:57 +020016#include "util/util.h"
Ingo Molnar0e9b20b2009-05-26 09:17:18 +020017#include "util/parse-options.h"
Ingo Molnar8ad8db32009-05-26 11:10:09 +020018#include "util/parse-events.h"
Arnaldo Carvalho de Meloa0055ae2009-06-01 17:50:19 -030019#include "util/string.h"
Thomas Gleixner6eda5832009-05-01 18:29:57 +020020
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020021#include "util/header.h"
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020022#include "util/event.h"
Frederic Weisbecker8f28827a2009-08-16 22:05:48 +020023#include "util/debug.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020024#include "util/session.h"
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020025#include "util/symbol.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020026
Peter Zijlstra97124d52009-06-02 15:52:24 +020027#include <unistd.h>
Peter Zijlstrade9ac072009-04-08 15:01:31 +020028#include <sched.h>
Peter Zijlstrade9ac072009-04-08 15:01:31 +020029
Peter Zijlstrade9ac072009-04-08 15:01:31 +020030static int fd[MAX_NR_CPUS][MAX_COUNTERS];
Ingo Molnara21ca2c2009-06-06 09:58:57 +020031
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +020032static long default_interval = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020033
Ingo Molnar42e59d72009-10-06 15:14:21 +020034static int nr_cpus = 0;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020035static unsigned int page_size;
Ingo Molnar42e59d72009-10-06 15:14:21 +020036static unsigned int mmap_pages = 128;
37static int freq = 1000;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020038static int output;
Ingo Molnar23ac9cb2009-05-27 09:33:18 +020039static const char *output_name = "perf.data";
Ingo Molnar42e59d72009-10-06 15:14:21 +020040static int group = 0;
41static unsigned int realtime_prio = 0;
42static int raw_samples = 0;
43static int system_wide = 0;
44static int profile_cpu = -1;
45static pid_t target_pid = -1;
46static pid_t child_pid = -1;
47static int inherit = 1;
48static int force = 0;
49static int append_file = 0;
50static int call_graph = 0;
51static int inherit_stat = 0;
52static int no_samples = 0;
53static int sample_address = 0;
54static int multiplex = 0;
55static int multiplex_fd = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020056
Ingo Molnar42e59d72009-10-06 15:14:21 +020057static long samples = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020058static struct timeval last_read;
59static struct timeval this_read;
60
Ingo Molnar42e59d72009-10-06 15:14:21 +020061static u64 bytes_written = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020062
63static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS];
64
Ingo Molnar42e59d72009-10-06 15:14:21 +020065static int nr_poll = 0;
66static int nr_cpu = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020067
Ingo Molnar42e59d72009-10-06 15:14:21 +020068static int file_new = 1;
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -020069static off_t post_processing_offset;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020070
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020071static struct perf_session *session;
Peter Zijlstraf5970552009-06-18 23:22:55 +020072
Ingo Molnara21ca2c2009-06-06 09:58:57 +020073struct mmap_data {
74 int counter;
75 void *base;
76 unsigned int mask;
77 unsigned int prev;
78};
79
80static struct mmap_data mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
81
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020082static unsigned long mmap_read_head(struct mmap_data *md)
Peter Zijlstrade9ac072009-04-08 15:01:31 +020083{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020084 struct perf_event_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020085 long head;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020086
87 head = pc->data_head;
88 rmb();
89
90 return head;
91}
92
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020093static void mmap_write_tail(struct mmap_data *md, unsigned long tail)
94{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020095 struct perf_event_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020096
97 /*
98 * ensure all reads are done before we write the tail out.
99 */
100 /* mb(); */
101 pc->data_tail = tail;
102}
103
Peter Zijlstraf5970552009-06-18 23:22:55 +0200104static void write_output(void *buf, size_t size)
105{
106 while (size) {
107 int ret = write(output, buf, size);
108
109 if (ret < 0)
110 die("failed to write");
111
112 size -= ret;
113 buf += ret;
114
115 bytes_written += ret;
116 }
117}
118
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200119static int process_synthesized_event(event_t *event,
120 struct perf_session *self __used)
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200121{
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200122 write_output(event, event->header.size);
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200123 return 0;
124}
125
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200126static void mmap_read(struct mmap_data *md)
127{
128 unsigned int head = mmap_read_head(md);
129 unsigned int old = md->prev;
130 unsigned char *data = md->base + page_size;
131 unsigned long size;
132 void *buf;
133 int diff;
134
135 gettimeofday(&this_read, NULL);
136
137 /*
138 * If we're further behind than half the buffer, there's a chance
Ingo Molnar2debbc82009-06-05 14:29:10 +0200139 * the writer will bite our tail and mess up the samples under us.
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200140 *
141 * If we somehow ended up ahead of the head, we got messed up.
142 *
143 * In either case, truncate and restart at head.
144 */
145 diff = head - old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200146 if (diff < 0) {
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200147 struct timeval iv;
148 unsigned long msecs;
149
150 timersub(&this_read, &last_read, &iv);
151 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
152
153 fprintf(stderr, "WARNING: failed to keep up with mmap data."
154 " Last read %lu msecs ago.\n", msecs);
155
156 /*
157 * head points to a known good entry, start there.
158 */
159 old = head;
160 }
161
162 last_read = this_read;
163
164 if (old != head)
Ingo Molnar2debbc82009-06-05 14:29:10 +0200165 samples++;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200166
167 size = head - old;
168
169 if ((old & md->mask) + size != (head & md->mask)) {
170 buf = &data[old & md->mask];
171 size = md->mask + 1 - (old & md->mask);
172 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200173
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200174 write_output(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200175 }
176
177 buf = &data[old & md->mask];
178 size = head - old;
179 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200180
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200181 write_output(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200182
183 md->prev = old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200184 mmap_write_tail(md, old);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200185}
186
187static volatile int done = 0;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200188static volatile int signr = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200189
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200190static void sig_handler(int sig)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200191{
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200192 done = 1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200193 signr = sig;
194}
195
196static void sig_atexit(void)
197{
Chris Wilson933da832009-10-04 01:35:01 +0100198 if (child_pid != -1)
199 kill(child_pid, SIGTERM);
200
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200201 if (signr == -1)
202 return;
203
204 signal(signr, SIG_DFL);
205 kill(getpid(), signr);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200206}
207
Ingo Molnarf250c0302009-06-05 13:18:41 +0200208static int group_fd;
209
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200210static struct perf_header_attr *get_header_attr(struct perf_event_attr *a, int nr)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200211{
212 struct perf_header_attr *h_attr;
213
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200214 if (nr < session->header.attrs) {
215 h_attr = session->header.attr[nr];
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200216 } else {
217 h_attr = perf_header_attr__new(a);
Arnaldo Carvalho de Melodc79c0f2009-11-16 19:30:26 -0200218 if (h_attr != NULL)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200219 if (perf_header__add_attr(&session->header, h_attr) < 0) {
Arnaldo Carvalho de Melo11deb1f2009-11-17 01:18:09 -0200220 perf_header_attr__delete(h_attr);
221 h_attr = NULL;
222 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200223 }
224
225 return h_attr;
226}
227
Ingo Molnarf250c0302009-06-05 13:18:41 +0200228static void create_counter(int counter, int cpu, pid_t pid)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200229{
Li Zefanc171b552009-10-15 11:22:07 +0800230 char *filter = filters[counter];
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200231 struct perf_event_attr *attr = attrs + counter;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200232 struct perf_header_attr *h_attr;
233 int track = !counter; /* only the first counter needs these */
Li Zefanc171b552009-10-15 11:22:07 +0800234 int ret;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200235 struct {
236 u64 count;
237 u64 time_enabled;
238 u64 time_running;
239 u64 id;
240 } read_data;
241
242 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
243 PERF_FORMAT_TOTAL_TIME_RUNNING |
244 PERF_FORMAT_ID;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200245
Frederic Weisbecker3a9f1312009-08-13 10:27:18 +0200246 attr->sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200247
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200248 if (freq) {
Peter Zijlstraea1900e2009-06-10 21:45:22 +0200249 attr->sample_type |= PERF_SAMPLE_PERIOD;
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200250 attr->freq = 1;
251 attr->sample_freq = freq;
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200252 }
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200253
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200254 if (no_samples)
255 attr->sample_freq = 0;
256
257 if (inherit_stat)
258 attr->inherit_stat = 1;
259
Anton Blanchard4bba8282009-07-16 15:44:29 +0200260 if (sample_address)
261 attr->sample_type |= PERF_SAMPLE_ADDR;
262
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200263 if (call_graph)
264 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
265
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200266 if (raw_samples) {
Ingo Molnar6ddf2592009-09-03 12:00:22 +0200267 attr->sample_type |= PERF_SAMPLE_TIME;
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200268 attr->sample_type |= PERF_SAMPLE_RAW;
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200269 attr->sample_type |= PERF_SAMPLE_CPU;
270 }
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +0200271
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200272 attr->mmap = track;
273 attr->comm = track;
Peter Zijlstra60ab2712009-12-16 17:55:56 +0100274 attr->inherit = inherit;
Peter Zijlstra4502d772009-06-10 15:03:06 +0200275 attr->disabled = 1;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200276
Ingo Molnar3da297a2009-06-07 17:39:02 +0200277try_again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200278 fd[nr_cpu][counter] = sys_perf_event_open(attr, pid, cpu, group_fd, 0);
Ingo Molnarf250c0302009-06-05 13:18:41 +0200279
280 if (fd[nr_cpu][counter] < 0) {
281 int err = errno;
282
Pekka Enbergc10edee2009-11-08 18:01:06 +0200283 if (err == EPERM || err == EACCES)
Ingo Molnar3da297a2009-06-07 17:39:02 +0200284 die("Permission error - are you root?\n");
Jens Axboe0a5ac842009-08-12 11:18:01 +0200285 else if (err == ENODEV && profile_cpu != -1)
286 die("No such device - did you specify an out-of-range profile CPU?\n");
Ingo Molnar3da297a2009-06-07 17:39:02 +0200287
288 /*
289 * If it's cycles then fall back to hrtimer
290 * based cpu-clock-tick sw counter, which
291 * is always available even if no PMU support:
292 */
293 if (attr->type == PERF_TYPE_HARDWARE
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200294 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
Ingo Molnar3da297a2009-06-07 17:39:02 +0200295
296 if (verbose)
297 warning(" ... trying to fall back to cpu-clock-ticks\n");
298 attr->type = PERF_TYPE_SOFTWARE;
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200299 attr->config = PERF_COUNT_SW_CPU_CLOCK;
Ingo Molnar3da297a2009-06-07 17:39:02 +0200300 goto try_again;
301 }
Ingo Molnar30c806a2009-06-07 17:46:24 +0200302 printf("\n");
303 error("perfcounter syscall returned with %d (%s)\n",
304 fd[nr_cpu][counter], strerror(err));
Simon Kaempfleinbfd45112009-11-16 15:25:53 +1000305
306#if defined(__i386__) || defined(__x86_64__)
307 if (attr->type == PERF_TYPE_HARDWARE && err == EOPNOTSUPP)
308 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");
309#endif
310
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200311 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
Ingo Molnarf250c0302009-06-05 13:18:41 +0200312 exit(-1);
313 }
Ingo Molnar3da297a2009-06-07 17:39:02 +0200314
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200315 h_attr = get_header_attr(attr, counter);
Arnaldo Carvalho de Melodc79c0f2009-11-16 19:30:26 -0200316 if (h_attr == NULL)
317 die("nomem\n");
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200318
319 if (!file_new) {
320 if (memcmp(&h_attr->attr, attr, sizeof(*attr))) {
321 fprintf(stderr, "incompatible append\n");
322 exit(-1);
323 }
324 }
325
Frederic Weisbecker3928ddb2009-06-25 22:21:27 +0200326 if (read(fd[nr_cpu][counter], &read_data, sizeof(read_data)) == -1) {
327 perror("Unable to read perf file descriptor\n");
328 exit(-1);
329 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200330
Arnaldo Carvalho de Melo58754122009-11-17 01:18:10 -0200331 if (perf_header_attr__add_id(h_attr, read_data.id) < 0) {
332 pr_warning("Not enough memory to add id\n");
333 exit(-1);
334 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200335
Ingo Molnarf250c0302009-06-05 13:18:41 +0200336 assert(fd[nr_cpu][counter] >= 0);
337 fcntl(fd[nr_cpu][counter], F_SETFL, O_NONBLOCK);
338
339 /*
340 * First counter acts as the group leader:
341 */
342 if (group && group_fd == -1)
343 group_fd = fd[nr_cpu][counter];
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200344 if (multiplex && multiplex_fd == -1)
345 multiplex_fd = fd[nr_cpu][counter];
Ingo Molnarf250c0302009-06-05 13:18:41 +0200346
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200347 if (multiplex && fd[nr_cpu][counter] != multiplex_fd) {
Ingo Molnarf250c0302009-06-05 13:18:41 +0200348
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200349 ret = ioctl(fd[nr_cpu][counter], PERF_EVENT_IOC_SET_OUTPUT, multiplex_fd);
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200350 assert(ret != -1);
351 } else {
352 event_array[nr_poll].fd = fd[nr_cpu][counter];
353 event_array[nr_poll].events = POLLIN;
354 nr_poll++;
355
356 mmap_array[nr_cpu][counter].counter = counter;
357 mmap_array[nr_cpu][counter].prev = 0;
358 mmap_array[nr_cpu][counter].mask = mmap_pages*page_size - 1;
359 mmap_array[nr_cpu][counter].base = mmap(NULL, (mmap_pages+1)*page_size,
360 PROT_READ|PROT_WRITE, MAP_SHARED, fd[nr_cpu][counter], 0);
361 if (mmap_array[nr_cpu][counter].base == MAP_FAILED) {
362 error("failed to mmap with %d (%s)\n", errno, strerror(errno));
363 exit(-1);
364 }
Ingo Molnarf250c0302009-06-05 13:18:41 +0200365 }
Peter Zijlstra4502d772009-06-10 15:03:06 +0200366
Li Zefanc171b552009-10-15 11:22:07 +0800367 if (filter != NULL) {
368 ret = ioctl(fd[nr_cpu][counter],
369 PERF_EVENT_IOC_SET_FILTER, filter);
370 if (ret) {
371 error("failed to set filter with %d (%s)\n", errno,
372 strerror(errno));
373 exit(-1);
374 }
375 }
376
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200377 ioctl(fd[nr_cpu][counter], PERF_EVENT_IOC_ENABLE);
Ingo Molnarf250c0302009-06-05 13:18:41 +0200378}
379
380static void open_counters(int cpu, pid_t pid)
381{
382 int counter;
383
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200384 group_fd = -1;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200385 for (counter = 0; counter < nr_counters; counter++)
386 create_counter(counter, cpu, pid);
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200387
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200388 nr_cpu++;
389}
390
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200391static int process_buildids(void)
392{
393 u64 size = lseek(output, 0, SEEK_CUR);
394
395 session->fd = output;
396 return __perf_session__process_events(session, post_processing_offset,
397 size - post_processing_offset,
398 size, &build_id__mark_dso_hit_ops);
399}
400
Peter Zijlstraf5970552009-06-18 23:22:55 +0200401static void atexit_header(void)
402{
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200403 session->header.data_size += bytes_written;
Peter Zijlstraf5970552009-06-18 23:22:55 +0200404
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200405 process_buildids();
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
Xiao Guangrongb8f46c52010-02-03 11:53:14 +0800454 flags = O_CREAT|O_RDWR|O_LARGEFILE;
Ingo Molnarabaff322009-06-02 22:59:57 +0200455 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 Melo6122e4e2010-02-03 16:52:05 -0200558 post_processing_offset = lseek(output, 0, SEEK_CUR);
559
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200560 err = event__synthesize_kernel_mmap(process_synthesized_event,
561 session, "_text");
562 if (err < 0) {
563 pr_err("Couldn't record kernel reference relocation symbol.\n");
564 return err;
565 }
566
Arnaldo Carvalho de Melob7cece72010-01-13 13:22:17 -0200567 err = event__synthesize_modules(process_synthesized_event, session);
568 if (err < 0) {
569 pr_err("Couldn't record kernel reference relocation symbol.\n");
570 return err;
571 }
572
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200573 if (!system_wide && profile_cpu == -1)
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200574 event__synthesize_thread(pid, process_synthesized_event,
575 session);
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200576 else
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200577 event__synthesize_threads(process_synthesized_event, session);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200578
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200579 if (realtime_prio) {
580 struct sched_param param;
581
582 param.sched_priority = realtime_prio;
583 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200584 pr_err("Could not set realtime priority.\n");
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200585 exit(-1);
586 }
587 }
588
Peter Zijlstra856e9662009-12-16 17:55:55 +0100589 /*
590 * Let the child rip
591 */
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200592 if (forks)
593 close(go_pipe[1]);
Peter Zijlstra856e9662009-12-16 17:55:55 +0100594
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200595 for (;;) {
Ingo Molnar2debbc82009-06-05 14:29:10 +0200596 int hits = samples;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200597
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200598 for (i = 0; i < nr_cpu; i++) {
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200599 for (counter = 0; counter < nr_counters; counter++) {
600 if (mmap_array[i][counter].base)
601 mmap_read(&mmap_array[i][counter]);
602 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200603 }
604
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200605 if (hits == samples) {
606 if (done)
607 break;
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200608 err = poll(event_array, nr_poll, -1);
Peter Zijlstra8b412662009-09-17 19:59:05 +0200609 waking++;
610 }
611
612 if (done) {
613 for (i = 0; i < nr_cpu; i++) {
614 for (counter = 0; counter < nr_counters; counter++)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200615 ioctl(fd[i][counter], PERF_EVENT_IOC_DISABLE);
Peter Zijlstra8b412662009-09-17 19:59:05 +0200616 }
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200617 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200618 }
619
Peter Zijlstra8b412662009-09-17 19:59:05 +0200620 fprintf(stderr, "[ perf record: Woken up %ld times to write data ]\n", waking);
621
Ingo Molnar021e9f42009-06-03 19:27:19 +0200622 /*
623 * Approximate RIP event size: 24 bytes.
624 */
625 fprintf(stderr,
Ingo Molnar2debbc82009-06-05 14:29:10 +0200626 "[ perf record: Captured and wrote %.3f MB %s (~%lld samples) ]\n",
Ingo Molnar021e9f42009-06-03 19:27:19 +0200627 (double)bytes_written / 1024.0 / 1024.0,
628 output_name,
629 bytes_written / 24);
Ingo Molnaraddc2782009-06-02 23:43:11 +0200630
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200631 return 0;
632}
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200633
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200634static const char * const record_usage[] = {
Mike Galbraith9e0967532009-05-28 16:25:34 +0200635 "perf record [<options>] [<command>]",
636 "perf record [<options>] -- <command> [<options>]",
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200637 NULL
638};
639
Ingo Molnar52425192009-05-26 09:17:18 +0200640static const struct option options[] = {
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200641 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200642 "event selector. use 'perf list' to list available events",
643 parse_events),
Li Zefanc171b552009-10-15 11:22:07 +0800644 OPT_CALLBACK(0, "filter", NULL, "filter",
645 "event filter", parse_filter),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200646 OPT_INTEGER('p', "pid", &target_pid,
647 "record events on existing pid"),
648 OPT_INTEGER('r', "realtime", &realtime_prio,
649 "collect data with this RT SCHED_FIFO priority"),
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200650 OPT_BOOLEAN('R', "raw-samples", &raw_samples,
651 "collect raw sample records from all opened counters"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200652 OPT_BOOLEAN('a', "all-cpus", &system_wide,
653 "system-wide collection from all CPUs"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200654 OPT_BOOLEAN('A', "append", &append_file,
655 "append to the output file to do incremental profiling"),
Jens Axboe0a5ac842009-08-12 11:18:01 +0200656 OPT_INTEGER('C', "profile_cpu", &profile_cpu,
657 "CPU to profile on"),
Peter Zijlstra97124d52009-06-02 15:52:24 +0200658 OPT_BOOLEAN('f', "force", &force,
659 "overwrite existing data file"),
Peter Zijlstrae61078a2009-06-03 11:24:33 +0200660 OPT_LONG('c', "count", &default_interval,
Ingo Molnarabaff322009-06-02 22:59:57 +0200661 "event period to sample"),
662 OPT_STRING('o', "output", &output_name, "file",
663 "output file name"),
664 OPT_BOOLEAN('i', "inherit", &inherit,
665 "child tasks inherit counters"),
Ingo Molnarcf1f4572009-06-05 13:27:02 +0200666 OPT_INTEGER('F', "freq", &freq,
667 "profile at this frequency"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200668 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
669 "number of mmap data pages"),
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200670 OPT_BOOLEAN('g', "call-graph", &call_graph,
671 "do call-graph (stack chain/backtrace) recording"),
Ingo Molnar3da297a2009-06-07 17:39:02 +0200672 OPT_BOOLEAN('v', "verbose", &verbose,
673 "be more verbose (show counter open errors, etc)"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200674 OPT_BOOLEAN('s', "stat", &inherit_stat,
675 "per thread counts"),
Anton Blanchard4bba8282009-07-16 15:44:29 +0200676 OPT_BOOLEAN('d', "data", &sample_address,
677 "Sample addresses"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200678 OPT_BOOLEAN('n', "no-samples", &no_samples,
679 "don't sample"),
Frederic Weisbeckerd1302522009-09-14 08:57:15 +0200680 OPT_BOOLEAN('M', "multiplex", &multiplex,
681 "multiplex counter output in a single channel"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200682 OPT_END()
683};
684
Ingo Molnarf37a2912009-07-01 12:37:06 +0200685int cmd_record(int argc, const char **argv, const char *prefix __used)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200686{
687 int counter;
688
Anton Blancharda0541232009-07-22 23:04:12 +1000689 argc = parse_options(argc, argv, options, record_usage,
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200690 PARSE_OPT_STOP_AT_NON_OPTION);
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200691 if (!argc && target_pid == -1 && !system_wide && profile_cpu == -1)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200692 usage_with_options(record_usage, options);
693
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200694 symbol__init();
695
Peter Zijlstrabbd36e52009-06-11 23:11:50 +0200696 if (!nr_counters) {
697 nr_counters = 1;
698 attrs[0].type = PERF_TYPE_HARDWARE;
699 attrs[0].config = PERF_COUNT_HW_CPU_CYCLES;
700 }
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200701
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +0200702 /*
703 * User specified count overrides default frequency.
704 */
705 if (default_interval)
706 freq = 0;
707 else if (freq) {
708 default_interval = freq;
709 } else {
710 fprintf(stderr, "frequency and count are zero, aborting\n");
711 exit(EXIT_FAILURE);
712 }
713
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200714 for (counter = 0; counter < nr_counters; counter++) {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200715 if (attrs[counter].sample_period)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200716 continue;
717
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200718 attrs[counter].sample_period = default_interval;
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200719 }
720
721 return __cmd_record(argc, argv);
722}