blob: d060fc50c8a4987e908dc4583adae7c1109a996b [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 _FILE_OFFSET_BITS 64
9
Ingo Molnar16f762a2009-05-27 09:10:38 +020010#include "builtin.h"
Ingo Molnarbf9e1872009-06-02 23:37:05 +020011
12#include "perf.h"
13
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -020014#include "util/build-id.h"
Thomas Gleixner6eda5832009-05-01 18:29:57 +020015#include "util/util.h"
Ingo Molnar0e9b20b2009-05-26 09:17:18 +020016#include "util/parse-options.h"
Ingo Molnar8ad8db32009-05-26 11:10:09 +020017#include "util/parse-events.h"
Thomas Gleixner6eda5832009-05-01 18:29:57 +020018
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020019#include "util/header.h"
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020020#include "util/event.h"
Frederic Weisbecker8f28827a2009-08-16 22:05:48 +020021#include "util/debug.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020022#include "util/session.h"
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020023#include "util/symbol.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110024#include "util/cpumap.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020025
Peter Zijlstra97124d52009-06-02 15:52:24 +020026#include <unistd.h>
Peter Zijlstrade9ac072009-04-08 15:01:31 +020027#include <sched.h>
Peter Zijlstrade9ac072009-04-08 15:01:31 +020028
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030029static int *fd[MAX_NR_CPUS][MAX_COUNTERS];
Ingo Molnara21ca2c2009-06-06 09:58:57 +020030
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +020031static long default_interval = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020032
Ingo Molnar42e59d72009-10-06 15:14:21 +020033static int nr_cpus = 0;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020034static unsigned int page_size;
Ingo Molnar42e59d72009-10-06 15:14:21 +020035static unsigned int mmap_pages = 128;
36static int freq = 1000;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020037static int output;
Ingo Molnar23ac9cb2009-05-27 09:33:18 +020038static const char *output_name = "perf.data";
Ingo Molnar42e59d72009-10-06 15:14:21 +020039static int group = 0;
40static unsigned int realtime_prio = 0;
Ian Munsiec0555642010-04-13 18:37:33 +100041static bool raw_samples = false;
42static bool system_wide = false;
Ingo Molnar42e59d72009-10-06 15:14:21 +020043static int profile_cpu = -1;
44static pid_t target_pid = -1;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030045static pid_t target_tid = -1;
46static pid_t *all_tids = NULL;
47static int thread_num = 0;
Ingo Molnar42e59d72009-10-06 15:14:21 +020048static pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +100049static bool inherit = true;
50static bool force = false;
51static bool append_file = false;
52static bool call_graph = false;
53static bool inherit_stat = false;
54static bool no_samples = false;
55static bool sample_address = false;
56static bool multiplex = false;
Ingo Molnar42e59d72009-10-06 15:14:21 +020057static int multiplex_fd = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020058
Ingo Molnar42e59d72009-10-06 15:14:21 +020059static long samples = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020060static struct timeval last_read;
61static struct timeval this_read;
62
Ingo Molnar42e59d72009-10-06 15:14:21 +020063static u64 bytes_written = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020064
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030065static struct pollfd *event_array;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020066
Ingo Molnar42e59d72009-10-06 15:14:21 +020067static int nr_poll = 0;
68static int nr_cpu = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020069
Ingo Molnar42e59d72009-10-06 15:14:21 +020070static int file_new = 1;
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -020071static off_t post_processing_offset;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020072
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020073static struct perf_session *session;
Peter Zijlstraf5970552009-06-18 23:22:55 +020074
Ingo Molnara21ca2c2009-06-06 09:58:57 +020075struct mmap_data {
76 int counter;
77 void *base;
78 unsigned int mask;
79 unsigned int prev;
80};
81
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030082static struct mmap_data *mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
Ingo Molnara21ca2c2009-06-06 09:58:57 +020083
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020084static unsigned long mmap_read_head(struct mmap_data *md)
Peter Zijlstrade9ac072009-04-08 15:01:31 +020085{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020086 struct perf_event_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020087 long head;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020088
89 head = pc->data_head;
90 rmb();
91
92 return head;
93}
94
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020095static void mmap_write_tail(struct mmap_data *md, unsigned long tail)
96{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020097 struct perf_event_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020098
99 /*
100 * ensure all reads are done before we write the tail out.
101 */
102 /* mb(); */
103 pc->data_tail = tail;
104}
105
Peter Zijlstraf5970552009-06-18 23:22:55 +0200106static void write_output(void *buf, size_t size)
107{
108 while (size) {
109 int ret = write(output, buf, size);
110
111 if (ret < 0)
112 die("failed to write");
113
114 size -= ret;
115 buf += ret;
116
117 bytes_written += ret;
118 }
119}
120
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200121static int process_synthesized_event(event_t *event,
122 struct perf_session *self __used)
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200123{
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200124 write_output(event, event->header.size);
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200125 return 0;
126}
127
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200128static void mmap_read(struct mmap_data *md)
129{
130 unsigned int head = mmap_read_head(md);
131 unsigned int old = md->prev;
132 unsigned char *data = md->base + page_size;
133 unsigned long size;
134 void *buf;
135 int diff;
136
137 gettimeofday(&this_read, NULL);
138
139 /*
140 * If we're further behind than half the buffer, there's a chance
Ingo Molnar2debbc82009-06-05 14:29:10 +0200141 * the writer will bite our tail and mess up the samples under us.
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200142 *
143 * If we somehow ended up ahead of the head, we got messed up.
144 *
145 * In either case, truncate and restart at head.
146 */
147 diff = head - old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200148 if (diff < 0) {
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200149 struct timeval iv;
150 unsigned long msecs;
151
152 timersub(&this_read, &last_read, &iv);
153 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
154
155 fprintf(stderr, "WARNING: failed to keep up with mmap data."
156 " Last read %lu msecs ago.\n", msecs);
157
158 /*
159 * head points to a known good entry, start there.
160 */
161 old = head;
162 }
163
164 last_read = this_read;
165
166 if (old != head)
Ingo Molnar2debbc82009-06-05 14:29:10 +0200167 samples++;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200168
169 size = head - old;
170
171 if ((old & md->mask) + size != (head & md->mask)) {
172 buf = &data[old & md->mask];
173 size = md->mask + 1 - (old & md->mask);
174 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200175
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200176 write_output(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200177 }
178
179 buf = &data[old & md->mask];
180 size = head - old;
181 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200182
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200183 write_output(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200184
185 md->prev = old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200186 mmap_write_tail(md, old);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200187}
188
189static volatile int done = 0;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200190static volatile int signr = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200191
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200192static void sig_handler(int sig)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200193{
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200194 done = 1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200195 signr = sig;
196}
197
198static void sig_atexit(void)
199{
Chris Wilson933da832009-10-04 01:35:01 +0100200 if (child_pid != -1)
201 kill(child_pid, SIGTERM);
202
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200203 if (signr == -1)
204 return;
205
206 signal(signr, SIG_DFL);
207 kill(getpid(), signr);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200208}
209
Ingo Molnarf250c0302009-06-05 13:18:41 +0200210static int group_fd;
211
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200212static struct perf_header_attr *get_header_attr(struct perf_event_attr *a, int nr)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200213{
214 struct perf_header_attr *h_attr;
215
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200216 if (nr < session->header.attrs) {
217 h_attr = session->header.attr[nr];
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200218 } else {
219 h_attr = perf_header_attr__new(a);
Arnaldo Carvalho de Melodc79c0f2009-11-16 19:30:26 -0200220 if (h_attr != NULL)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200221 if (perf_header__add_attr(&session->header, h_attr) < 0) {
Arnaldo Carvalho de Melo11deb1f2009-11-17 01:18:09 -0200222 perf_header_attr__delete(h_attr);
223 h_attr = NULL;
224 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200225 }
226
227 return h_attr;
228}
229
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300230static void create_counter(int counter, int cpu)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200231{
Li Zefanc171b552009-10-15 11:22:07 +0800232 char *filter = filters[counter];
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200233 struct perf_event_attr *attr = attrs + counter;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200234 struct perf_header_attr *h_attr;
235 int track = !counter; /* only the first counter needs these */
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300236 int thread_index;
Li Zefanc171b552009-10-15 11:22:07 +0800237 int ret;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200238 struct {
239 u64 count;
240 u64 time_enabled;
241 u64 time_running;
242 u64 id;
243 } read_data;
244
245 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
246 PERF_FORMAT_TOTAL_TIME_RUNNING |
247 PERF_FORMAT_ID;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200248
Frederic Weisbecker3a9f1312009-08-13 10:27:18 +0200249 attr->sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200250
Eric B Munson8907fd62010-03-05 12:51:05 -0300251 if (nr_counters > 1)
252 attr->sample_type |= PERF_SAMPLE_ID;
253
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200254 if (freq) {
Peter Zijlstraea1900e2009-06-10 21:45:22 +0200255 attr->sample_type |= PERF_SAMPLE_PERIOD;
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200256 attr->freq = 1;
257 attr->sample_freq = freq;
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200258 }
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200259
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200260 if (no_samples)
261 attr->sample_freq = 0;
262
263 if (inherit_stat)
264 attr->inherit_stat = 1;
265
Anton Blanchard4bba8282009-07-16 15:44:29 +0200266 if (sample_address)
267 attr->sample_type |= PERF_SAMPLE_ADDR;
268
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200269 if (call_graph)
270 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
271
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200272 if (raw_samples) {
Ingo Molnar6ddf2592009-09-03 12:00:22 +0200273 attr->sample_type |= PERF_SAMPLE_TIME;
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200274 attr->sample_type |= PERF_SAMPLE_RAW;
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200275 attr->sample_type |= PERF_SAMPLE_CPU;
276 }
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +0200277
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200278 attr->mmap = track;
279 attr->comm = track;
Peter Zijlstra60ab2712009-12-16 17:55:56 +0100280 attr->inherit = inherit;
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300281 if (target_pid == -1 && !system_wide) {
282 attr->disabled = 1;
Eric B Munsonbedbfde2010-03-15 11:46:57 -0300283 attr->enable_on_exec = 1;
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300284 }
Eric B Munsonbedbfde2010-03-15 11:46:57 -0300285
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300286 for (thread_index = 0; thread_index < thread_num; thread_index++) {
Ingo Molnar3da297a2009-06-07 17:39:02 +0200287try_again:
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300288 fd[nr_cpu][counter][thread_index] = sys_perf_event_open(attr,
289 all_tids[thread_index], cpu, group_fd, 0);
Ingo Molnarf250c0302009-06-05 13:18:41 +0200290
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300291 if (fd[nr_cpu][counter][thread_index] < 0) {
292 int err = errno;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200293
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300294 if (err == EPERM || err == EACCES)
295 die("Permission error - are you root?\n"
296 "\t Consider tweaking"
297 " /proc/sys/kernel/perf_event_paranoid.\n");
298 else if (err == ENODEV && profile_cpu != -1) {
299 die("No such device - did you specify"
300 " an out-of-range profile CPU?\n");
301 }
Ingo Molnar3da297a2009-06-07 17:39:02 +0200302
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300303 /*
304 * If it's cycles then fall back to hrtimer
305 * based cpu-clock-tick sw counter, which
306 * is always available even if no PMU support:
307 */
308 if (attr->type == PERF_TYPE_HARDWARE
309 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
Ingo Molnar3da297a2009-06-07 17:39:02 +0200310
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300311 if (verbose)
312 warning(" ... trying to fall back to cpu-clock-ticks\n");
313 attr->type = PERF_TYPE_SOFTWARE;
314 attr->config = PERF_COUNT_SW_CPU_CLOCK;
315 goto try_again;
316 }
317 printf("\n");
318 error("perfcounter syscall returned with %d (%s)\n",
319 fd[nr_cpu][counter][thread_index], strerror(err));
Simon Kaempfleinbfd45112009-11-16 15:25:53 +1000320
321#if defined(__i386__) || defined(__x86_64__)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300322 if (attr->type == PERF_TYPE_HARDWARE && err == EOPNOTSUPP)
323 die("No hardware sampling interrupt available."
324 " No APIC? If so then you can boot the kernel"
325 " with the \"lapic\" boot parameter to"
326 " force-enable it.\n");
Simon Kaempfleinbfd45112009-11-16 15:25:53 +1000327#endif
328
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300329 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200330 exit(-1);
331 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200332
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300333 h_attr = get_header_attr(attr, counter);
334 if (h_attr == NULL)
335 die("nomem\n");
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200336
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300337 if (!file_new) {
338 if (memcmp(&h_attr->attr, attr, sizeof(*attr))) {
339 fprintf(stderr, "incompatible append\n");
340 exit(-1);
341 }
342 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200343
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300344 if (read(fd[nr_cpu][counter][thread_index], &read_data, sizeof(read_data)) == -1) {
345 perror("Unable to read perf file descriptor\n");
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200346 exit(-1);
347 }
Peter Zijlstra4502d772009-06-10 15:03:06 +0200348
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300349 if (perf_header_attr__add_id(h_attr, read_data.id) < 0) {
350 pr_warning("Not enough memory to add id\n");
Li Zefanc171b552009-10-15 11:22:07 +0800351 exit(-1);
352 }
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300353
354 assert(fd[nr_cpu][counter][thread_index] >= 0);
355 fcntl(fd[nr_cpu][counter][thread_index], F_SETFL, O_NONBLOCK);
356
357 /*
358 * First counter acts as the group leader:
359 */
360 if (group && group_fd == -1)
361 group_fd = fd[nr_cpu][counter][thread_index];
362 if (multiplex && multiplex_fd == -1)
363 multiplex_fd = fd[nr_cpu][counter][thread_index];
364
365 if (multiplex && fd[nr_cpu][counter][thread_index] != multiplex_fd) {
366
367 ret = ioctl(fd[nr_cpu][counter][thread_index], PERF_EVENT_IOC_SET_OUTPUT, multiplex_fd);
368 assert(ret != -1);
369 } else {
370 event_array[nr_poll].fd = fd[nr_cpu][counter][thread_index];
371 event_array[nr_poll].events = POLLIN;
372 nr_poll++;
373
374 mmap_array[nr_cpu][counter][thread_index].counter = counter;
375 mmap_array[nr_cpu][counter][thread_index].prev = 0;
376 mmap_array[nr_cpu][counter][thread_index].mask = mmap_pages*page_size - 1;
377 mmap_array[nr_cpu][counter][thread_index].base = mmap(NULL, (mmap_pages+1)*page_size,
378 PROT_READ|PROT_WRITE, MAP_SHARED, fd[nr_cpu][counter][thread_index], 0);
379 if (mmap_array[nr_cpu][counter][thread_index].base == MAP_FAILED) {
380 error("failed to mmap with %d (%s)\n", errno, strerror(errno));
381 exit(-1);
382 }
383 }
384
385 if (filter != NULL) {
386 ret = ioctl(fd[nr_cpu][counter][thread_index],
387 PERF_EVENT_IOC_SET_FILTER, filter);
388 if (ret) {
389 error("failed to set filter with %d (%s)\n", errno,
390 strerror(errno));
391 exit(-1);
392 }
393 }
Li Zefanc171b552009-10-15 11:22:07 +0800394 }
Ingo Molnarf250c0302009-06-05 13:18:41 +0200395}
396
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300397static void open_counters(int cpu)
Ingo Molnarf250c0302009-06-05 13:18:41 +0200398{
399 int counter;
400
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200401 group_fd = -1;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200402 for (counter = 0; counter < nr_counters; counter++)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300403 create_counter(counter, cpu);
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200404
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200405 nr_cpu++;
406}
407
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200408static int process_buildids(void)
409{
410 u64 size = lseek(output, 0, SEEK_CUR);
411
Arnaldo Carvalho de Melo9f591fd2010-03-11 15:53:11 -0300412 if (size == 0)
413 return 0;
414
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200415 session->fd = output;
416 return __perf_session__process_events(session, post_processing_offset,
417 size - post_processing_offset,
418 size, &build_id__mark_dso_hit_ops);
419}
420
Peter Zijlstraf5970552009-06-18 23:22:55 +0200421static void atexit_header(void)
422{
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200423 session->header.data_size += bytes_written;
Peter Zijlstraf5970552009-06-18 23:22:55 +0200424
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200425 process_buildids();
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200426 perf_header__write(&session->header, output, true);
Peter Zijlstraf5970552009-06-18 23:22:55 +0200427}
428
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200429static int __cmd_record(int argc, const char **argv)
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200430{
431 int i, counter;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200432 struct stat st;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200433 pid_t pid = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200434 int flags;
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200435 int err;
Peter Zijlstra8b412662009-09-17 19:59:05 +0200436 unsigned long waking = 0;
Peter Zijlstra856e9662009-12-16 17:55:55 +0100437 int child_ready_pipe[2], go_pipe[2];
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300438 const bool forks = argc > 0;
Peter Zijlstra856e9662009-12-16 17:55:55 +0100439 char buf;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200440
441 page_size = sysconf(_SC_PAGE_SIZE);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200442
Peter Zijlstraf5970552009-06-18 23:22:55 +0200443 atexit(sig_atexit);
444 signal(SIGCHLD, sig_handler);
445 signal(SIGINT, sig_handler);
446
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200447 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
Peter Zijlstra856e9662009-12-16 17:55:55 +0100448 perror("failed to create pipes");
449 exit(-1);
450 }
451
Pierre Habouzit266e0e22009-08-07 14:16:01 +0200452 if (!stat(output_name, &st) && st.st_size) {
Arnaldo Carvalho de Melob38d3462009-12-14 20:09:30 -0200453 if (!force) {
454 if (!append_file) {
455 pr_err("Error, output file %s exists, use -A "
456 "to append or -f to overwrite.\n",
457 output_name);
458 exit(-1);
459 }
460 } else {
461 char oldname[PATH_MAX];
462 snprintf(oldname, sizeof(oldname), "%s.old",
463 output_name);
464 unlink(oldname);
465 rename(output_name, oldname);
Pierre Habouzit266e0e22009-08-07 14:16:01 +0200466 }
467 } else {
Ian Munsiec0555642010-04-13 18:37:33 +1000468 append_file = false;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200469 }
470
Xiao Guangrongf887f302010-02-04 16:46:42 +0800471 flags = O_CREAT|O_RDWR;
Ingo Molnarabaff322009-06-02 22:59:57 +0200472 if (append_file)
Peter Zijlstraf5970552009-06-18 23:22:55 +0200473 file_new = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200474 else
475 flags |= O_TRUNC;
476
477 output = open(output_name, flags, S_IRUSR|S_IWUSR);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200478 if (output < 0) {
479 perror("failed to create output file");
480 exit(-1);
481 }
482
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200483 session = perf_session__new(output_name, O_WRONLY, force);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200484 if (session == NULL) {
Arnaldo Carvalho de Meloa9a70bb2009-11-17 01:18:11 -0200485 pr_err("Not enough memory for reading perf file header\n");
486 return -1;
487 }
488
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200489 if (!file_new) {
Tom Zanussi8dc58102010-04-01 23:59:15 -0500490 err = perf_header__read(session, output);
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200491 if (err < 0)
492 return err;
493 }
494
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200495 if (raw_samples) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200496 perf_header__set_feat(&session->header, HEADER_TRACE_INFO);
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200497 } else {
498 for (i = 0; i < nr_counters; i++) {
499 if (attrs[i].sample_type & PERF_SAMPLE_RAW) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200500 perf_header__set_feat(&session->header, HEADER_TRACE_INFO);
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200501 break;
502 }
503 }
504 }
Frederic Weisbecker03456a12009-10-06 23:36:47 +0200505
Peter Zijlstraf5970552009-06-18 23:22:55 +0200506 atexit(atexit_header);
507
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200508 if (forks) {
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300509 child_pid = fork();
Peter Zijlstra856e9662009-12-16 17:55:55 +0100510 if (pid < 0) {
511 perror("failed to fork");
512 exit(-1);
Jens Axboe0a5ac842009-08-12 11:18:01 +0200513 }
Peter Zijlstra856e9662009-12-16 17:55:55 +0100514
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300515 if (!child_pid) {
Peter Zijlstra856e9662009-12-16 17:55:55 +0100516 close(child_ready_pipe[0]);
517 close(go_pipe[1]);
518 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
519
520 /*
521 * Do a dummy execvp to get the PLT entry resolved,
522 * so we avoid the resolver overhead on the real
523 * execvp call.
524 */
525 execvp("", (char **)argv);
526
527 /*
528 * Tell the parent we're ready to go
529 */
530 close(child_ready_pipe[1]);
531
532 /*
533 * Wait until the parent tells us to go.
534 */
535 if (read(go_pipe[0], &buf, 1) == -1)
536 perror("unable to read pipe");
537
538 execvp(argv[0], (char **)argv);
539
540 perror(argv[0]);
541 exit(-1);
542 }
543
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300544 if (!system_wide && target_tid == -1 && target_pid == -1)
545 all_tids[0] = child_pid;
546
Peter Zijlstra856e9662009-12-16 17:55:55 +0100547 close(child_ready_pipe[1]);
548 close(go_pipe[0]);
549 /*
550 * wait for child to settle
551 */
552 if (read(child_ready_pipe[0], &buf, 1) == -1) {
553 perror("unable to read pipe");
554 exit(-1);
555 }
556 close(child_ready_pipe[0]);
557 }
558
Peter Zijlstra60ab2712009-12-16 17:55:56 +0100559 if ((!system_wide && !inherit) || profile_cpu != -1) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300560 open_counters(profile_cpu);
Peter Zijlstra856e9662009-12-16 17:55:55 +0100561 } else {
Paul Mackerrasa12b51c2010-03-10 20:36:09 +1100562 nr_cpus = read_cpu_map();
Peter Zijlstra856e9662009-12-16 17:55:55 +0100563 for (i = 0; i < nr_cpus; i++)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300564 open_counters(cpumap[i]);
Jens Axboe0a5ac842009-08-12 11:18:01 +0200565 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200566
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -0200567 if (file_new) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200568 err = perf_header__write(&session->header, output, false);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -0200569 if (err < 0)
570 return err;
571 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200572
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200573 post_processing_offset = lseek(output, 0, SEEK_CUR);
574
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200575 err = event__synthesize_kernel_mmap(process_synthesized_event,
576 session, "_text");
Arnaldo Carvalho de Melo70162132010-03-30 18:27:39 -0300577 if (err < 0)
578 err = event__synthesize_kernel_mmap(process_synthesized_event,
579 session, "_stext");
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200580 if (err < 0) {
581 pr_err("Couldn't record kernel reference relocation symbol.\n");
582 return err;
583 }
584
Arnaldo Carvalho de Melob7cece72010-01-13 13:22:17 -0200585 err = event__synthesize_modules(process_synthesized_event, session);
586 if (err < 0) {
587 pr_err("Couldn't record kernel reference relocation symbol.\n");
588 return err;
589 }
590
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200591 if (!system_wide && profile_cpu == -1)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300592 event__synthesize_thread(target_tid, process_synthesized_event,
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200593 session);
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200594 else
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200595 event__synthesize_threads(process_synthesized_event, session);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200596
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200597 if (realtime_prio) {
598 struct sched_param param;
599
600 param.sched_priority = realtime_prio;
601 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200602 pr_err("Could not set realtime priority.\n");
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200603 exit(-1);
604 }
605 }
606
Peter Zijlstra856e9662009-12-16 17:55:55 +0100607 /*
608 * Let the child rip
609 */
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200610 if (forks)
611 close(go_pipe[1]);
Peter Zijlstra856e9662009-12-16 17:55:55 +0100612
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200613 for (;;) {
Ingo Molnar2debbc82009-06-05 14:29:10 +0200614 int hits = samples;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300615 int thread;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200616
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200617 for (i = 0; i < nr_cpu; i++) {
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200618 for (counter = 0; counter < nr_counters; counter++) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300619 for (thread = 0;
620 thread < thread_num; thread++) {
621 if (mmap_array[i][counter][thread].base)
622 mmap_read(&mmap_array[i][counter][thread]);
623 }
624
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200625 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200626 }
627
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200628 if (hits == samples) {
629 if (done)
630 break;
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200631 err = poll(event_array, nr_poll, -1);
Peter Zijlstra8b412662009-09-17 19:59:05 +0200632 waking++;
633 }
634
635 if (done) {
636 for (i = 0; i < nr_cpu; i++) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300637 for (counter = 0;
638 counter < nr_counters;
639 counter++) {
640 for (thread = 0;
641 thread < thread_num;
642 thread++)
643 ioctl(fd[i][counter][thread],
644 PERF_EVENT_IOC_DISABLE);
645 }
Peter Zijlstra8b412662009-09-17 19:59:05 +0200646 }
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200647 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200648 }
649
Peter Zijlstra8b412662009-09-17 19:59:05 +0200650 fprintf(stderr, "[ perf record: Woken up %ld times to write data ]\n", waking);
651
Ingo Molnar021e9f42009-06-03 19:27:19 +0200652 /*
653 * Approximate RIP event size: 24 bytes.
654 */
655 fprintf(stderr,
Ingo Molnar2debbc82009-06-05 14:29:10 +0200656 "[ perf record: Captured and wrote %.3f MB %s (~%lld samples) ]\n",
Ingo Molnar021e9f42009-06-03 19:27:19 +0200657 (double)bytes_written / 1024.0 / 1024.0,
658 output_name,
659 bytes_written / 24);
Ingo Molnaraddc2782009-06-02 23:43:11 +0200660
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200661 return 0;
662}
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200663
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200664static const char * const record_usage[] = {
Mike Galbraith9e0967532009-05-28 16:25:34 +0200665 "perf record [<options>] [<command>]",
666 "perf record [<options>] -- <command> [<options>]",
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200667 NULL
668};
669
Ingo Molnar52425192009-05-26 09:17:18 +0200670static const struct option options[] = {
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200671 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200672 "event selector. use 'perf list' to list available events",
673 parse_events),
Li Zefanc171b552009-10-15 11:22:07 +0800674 OPT_CALLBACK(0, "filter", NULL, "filter",
675 "event filter", parse_filter),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200676 OPT_INTEGER('p', "pid", &target_pid,
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300677 "record events on existing process id"),
678 OPT_INTEGER('t', "tid", &target_tid,
679 "record events on existing thread id"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200680 OPT_INTEGER('r', "realtime", &realtime_prio,
681 "collect data with this RT SCHED_FIFO priority"),
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200682 OPT_BOOLEAN('R', "raw-samples", &raw_samples,
683 "collect raw sample records from all opened counters"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200684 OPT_BOOLEAN('a', "all-cpus", &system_wide,
685 "system-wide collection from all CPUs"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200686 OPT_BOOLEAN('A', "append", &append_file,
687 "append to the output file to do incremental profiling"),
Jens Axboe0a5ac842009-08-12 11:18:01 +0200688 OPT_INTEGER('C', "profile_cpu", &profile_cpu,
689 "CPU to profile on"),
Peter Zijlstra97124d52009-06-02 15:52:24 +0200690 OPT_BOOLEAN('f', "force", &force,
691 "overwrite existing data file"),
Peter Zijlstrae61078a2009-06-03 11:24:33 +0200692 OPT_LONG('c', "count", &default_interval,
Ingo Molnarabaff322009-06-02 22:59:57 +0200693 "event period to sample"),
694 OPT_STRING('o', "output", &output_name, "file",
695 "output file name"),
696 OPT_BOOLEAN('i', "inherit", &inherit,
697 "child tasks inherit counters"),
Ingo Molnarcf1f4572009-06-05 13:27:02 +0200698 OPT_INTEGER('F', "freq", &freq,
699 "profile at this frequency"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200700 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
701 "number of mmap data pages"),
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200702 OPT_BOOLEAN('g', "call-graph", &call_graph,
703 "do call-graph (stack chain/backtrace) recording"),
Ian Munsiec0555642010-04-13 18:37:33 +1000704 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar3da297a2009-06-07 17:39:02 +0200705 "be more verbose (show counter open errors, etc)"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200706 OPT_BOOLEAN('s', "stat", &inherit_stat,
707 "per thread counts"),
Anton Blanchard4bba8282009-07-16 15:44:29 +0200708 OPT_BOOLEAN('d', "data", &sample_address,
709 "Sample addresses"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200710 OPT_BOOLEAN('n', "no-samples", &no_samples,
711 "don't sample"),
Frederic Weisbeckerd1302522009-09-14 08:57:15 +0200712 OPT_BOOLEAN('M', "multiplex", &multiplex,
713 "multiplex counter output in a single channel"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200714 OPT_END()
715};
716
Ingo Molnarf37a2912009-07-01 12:37:06 +0200717int cmd_record(int argc, const char **argv, const char *prefix __used)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200718{
719 int counter;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300720 int i,j;
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200721
Anton Blancharda0541232009-07-22 23:04:12 +1000722 argc = parse_options(argc, argv, options, record_usage,
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200723 PARSE_OPT_STOP_AT_NON_OPTION);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300724 if (!argc && target_pid == -1 && target_tid == -1 &&
725 !system_wide && profile_cpu == -1)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200726 usage_with_options(record_usage, options);
727
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200728 symbol__init();
729
Peter Zijlstrabbd36e52009-06-11 23:11:50 +0200730 if (!nr_counters) {
731 nr_counters = 1;
732 attrs[0].type = PERF_TYPE_HARDWARE;
733 attrs[0].config = PERF_COUNT_HW_CPU_CYCLES;
734 }
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200735
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300736 if (target_pid != -1) {
737 target_tid = target_pid;
738 thread_num = find_all_tid(target_pid, &all_tids);
739 if (thread_num <= 0) {
740 fprintf(stderr, "Can't find all threads of pid %d\n",
741 target_pid);
742 usage_with_options(record_usage, options);
743 }
744 } else {
745 all_tids=malloc(sizeof(pid_t));
746 if (!all_tids)
747 return -ENOMEM;
748
749 all_tids[0] = target_tid;
750 thread_num = 1;
751 }
752
753 for (i = 0; i < MAX_NR_CPUS; i++) {
754 for (j = 0; j < MAX_COUNTERS; j++) {
755 fd[i][j] = malloc(sizeof(int)*thread_num);
Zhang, Yanmin5a103172010-03-25 19:59:01 -0300756 mmap_array[i][j] = zalloc(
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300757 sizeof(struct mmap_data)*thread_num);
758 if (!fd[i][j] || !mmap_array[i][j])
759 return -ENOMEM;
760 }
761 }
762 event_array = malloc(
763 sizeof(struct pollfd)*MAX_NR_CPUS*MAX_COUNTERS*thread_num);
764 if (!event_array)
765 return -ENOMEM;
766
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +0200767 /*
768 * User specified count overrides default frequency.
769 */
770 if (default_interval)
771 freq = 0;
772 else if (freq) {
773 default_interval = freq;
774 } else {
775 fprintf(stderr, "frequency and count are zero, aborting\n");
776 exit(EXIT_FAILURE);
777 }
778
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200779 for (counter = 0; counter < nr_counters; counter++) {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200780 if (attrs[counter].sample_period)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200781 continue;
782
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200783 attrs[counter].sample_period = default_interval;
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200784 }
785
786 return __cmd_record(argc, argv);
787}