blob: d4464f7fcea5b0e401491df15e1c4b52c182deb0 [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;
Tom Zanussi529870e2010-04-01 23:59:16 -050038static int pipe_output = 0;
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;
Ian Munsiec0555642010-04-13 18:37:33 +100042static bool raw_samples = false;
43static bool system_wide = false;
Ingo Molnar42e59d72009-10-06 15:14:21 +020044static int profile_cpu = -1;
45static pid_t target_pid = -1;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030046static pid_t target_tid = -1;
47static pid_t *all_tids = NULL;
48static int thread_num = 0;
Ingo Molnar42e59d72009-10-06 15:14:21 +020049static pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +100050static bool inherit = true;
51static bool force = false;
52static bool append_file = false;
53static bool call_graph = false;
54static bool inherit_stat = false;
55static bool no_samples = false;
56static bool sample_address = false;
57static bool multiplex = false;
Ingo Molnar42e59d72009-10-06 15:14:21 +020058static int multiplex_fd = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020059
Ingo Molnar42e59d72009-10-06 15:14:21 +020060static long samples = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020061static struct timeval last_read;
62static struct timeval this_read;
63
Ingo Molnar42e59d72009-10-06 15:14:21 +020064static u64 bytes_written = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020065
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030066static struct pollfd *event_array;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020067
Ingo Molnar42e59d72009-10-06 15:14:21 +020068static int nr_poll = 0;
69static int nr_cpu = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020070
Ingo Molnar42e59d72009-10-06 15:14:21 +020071static int file_new = 1;
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -020072static off_t post_processing_offset;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020073
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020074static struct perf_session *session;
Peter Zijlstraf5970552009-06-18 23:22:55 +020075
Ingo Molnara21ca2c2009-06-06 09:58:57 +020076struct mmap_data {
77 int counter;
78 void *base;
79 unsigned int mask;
80 unsigned int prev;
81};
82
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030083static struct mmap_data *mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
Ingo Molnara21ca2c2009-06-06 09:58:57 +020084
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020085static unsigned long mmap_read_head(struct mmap_data *md)
Peter Zijlstrade9ac072009-04-08 15:01:31 +020086{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020087 struct perf_event_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020088 long head;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020089
90 head = pc->data_head;
91 rmb();
92
93 return head;
94}
95
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020096static void mmap_write_tail(struct mmap_data *md, unsigned long tail)
97{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020098 struct perf_event_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020099
100 /*
101 * ensure all reads are done before we write the tail out.
102 */
103 /* mb(); */
104 pc->data_tail = tail;
105}
106
Peter Zijlstraf5970552009-06-18 23:22:55 +0200107static void write_output(void *buf, size_t size)
108{
109 while (size) {
110 int ret = write(output, buf, size);
111
112 if (ret < 0)
113 die("failed to write");
114
115 size -= ret;
116 buf += ret;
117
118 bytes_written += ret;
119 }
120}
121
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200122static int process_synthesized_event(event_t *event,
123 struct perf_session *self __used)
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200124{
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200125 write_output(event, event->header.size);
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200126 return 0;
127}
128
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200129static void mmap_read(struct mmap_data *md)
130{
131 unsigned int head = mmap_read_head(md);
132 unsigned int old = md->prev;
133 unsigned char *data = md->base + page_size;
134 unsigned long size;
135 void *buf;
136 int diff;
137
138 gettimeofday(&this_read, NULL);
139
140 /*
141 * If we're further behind than half the buffer, there's a chance
Ingo Molnar2debbc82009-06-05 14:29:10 +0200142 * the writer will bite our tail and mess up the samples under us.
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200143 *
144 * If we somehow ended up ahead of the head, we got messed up.
145 *
146 * In either case, truncate and restart at head.
147 */
148 diff = head - old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200149 if (diff < 0) {
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200150 struct timeval iv;
151 unsigned long msecs;
152
153 timersub(&this_read, &last_read, &iv);
154 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
155
156 fprintf(stderr, "WARNING: failed to keep up with mmap data."
157 " Last read %lu msecs ago.\n", msecs);
158
159 /*
160 * head points to a known good entry, start there.
161 */
162 old = head;
163 }
164
165 last_read = this_read;
166
167 if (old != head)
Ingo Molnar2debbc82009-06-05 14:29:10 +0200168 samples++;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200169
170 size = head - old;
171
172 if ((old & md->mask) + size != (head & md->mask)) {
173 buf = &data[old & md->mask];
174 size = md->mask + 1 - (old & md->mask);
175 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200176
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200177 write_output(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200178 }
179
180 buf = &data[old & md->mask];
181 size = head - old;
182 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200183
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200184 write_output(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200185
186 md->prev = old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200187 mmap_write_tail(md, old);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200188}
189
190static volatile int done = 0;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200191static volatile int signr = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200192
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200193static void sig_handler(int sig)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200194{
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200195 done = 1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200196 signr = sig;
197}
198
199static void sig_atexit(void)
200{
Chris Wilson933da832009-10-04 01:35:01 +0100201 if (child_pid != -1)
202 kill(child_pid, SIGTERM);
203
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200204 if (signr == -1)
205 return;
206
207 signal(signr, SIG_DFL);
208 kill(getpid(), signr);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200209}
210
Ingo Molnarf250c0302009-06-05 13:18:41 +0200211static int group_fd;
212
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200213static struct perf_header_attr *get_header_attr(struct perf_event_attr *a, int nr)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200214{
215 struct perf_header_attr *h_attr;
216
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200217 if (nr < session->header.attrs) {
218 h_attr = session->header.attr[nr];
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200219 } else {
220 h_attr = perf_header_attr__new(a);
Arnaldo Carvalho de Melodc79c0f2009-11-16 19:30:26 -0200221 if (h_attr != NULL)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200222 if (perf_header__add_attr(&session->header, h_attr) < 0) {
Arnaldo Carvalho de Melo11deb1f2009-11-17 01:18:09 -0200223 perf_header_attr__delete(h_attr);
224 h_attr = NULL;
225 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200226 }
227
228 return h_attr;
229}
230
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300231static void create_counter(int counter, int cpu)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200232{
Li Zefanc171b552009-10-15 11:22:07 +0800233 char *filter = filters[counter];
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200234 struct perf_event_attr *attr = attrs + counter;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200235 struct perf_header_attr *h_attr;
236 int track = !counter; /* only the first counter needs these */
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300237 int thread_index;
Li Zefanc171b552009-10-15 11:22:07 +0800238 int ret;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200239 struct {
240 u64 count;
241 u64 time_enabled;
242 u64 time_running;
243 u64 id;
244 } read_data;
245
246 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
247 PERF_FORMAT_TOTAL_TIME_RUNNING |
248 PERF_FORMAT_ID;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200249
Frederic Weisbecker3a9f1312009-08-13 10:27:18 +0200250 attr->sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200251
Eric B Munson8907fd62010-03-05 12:51:05 -0300252 if (nr_counters > 1)
253 attr->sample_type |= PERF_SAMPLE_ID;
254
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200255 if (freq) {
Peter Zijlstraea1900e2009-06-10 21:45:22 +0200256 attr->sample_type |= PERF_SAMPLE_PERIOD;
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200257 attr->freq = 1;
258 attr->sample_freq = freq;
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200259 }
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200260
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200261 if (no_samples)
262 attr->sample_freq = 0;
263
264 if (inherit_stat)
265 attr->inherit_stat = 1;
266
Anton Blanchard4bba8282009-07-16 15:44:29 +0200267 if (sample_address)
268 attr->sample_type |= PERF_SAMPLE_ADDR;
269
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200270 if (call_graph)
271 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
272
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200273 if (raw_samples) {
Ingo Molnar6ddf2592009-09-03 12:00:22 +0200274 attr->sample_type |= PERF_SAMPLE_TIME;
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200275 attr->sample_type |= PERF_SAMPLE_RAW;
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200276 attr->sample_type |= PERF_SAMPLE_CPU;
277 }
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +0200278
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200279 attr->mmap = track;
280 attr->comm = track;
Peter Zijlstra60ab2712009-12-16 17:55:56 +0100281 attr->inherit = inherit;
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300282 if (target_pid == -1 && !system_wide) {
283 attr->disabled = 1;
Eric B Munsonbedbfde2010-03-15 11:46:57 -0300284 attr->enable_on_exec = 1;
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300285 }
Eric B Munsonbedbfde2010-03-15 11:46:57 -0300286
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300287 for (thread_index = 0; thread_index < thread_num; thread_index++) {
Ingo Molnar3da297a2009-06-07 17:39:02 +0200288try_again:
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300289 fd[nr_cpu][counter][thread_index] = sys_perf_event_open(attr,
290 all_tids[thread_index], cpu, group_fd, 0);
Ingo Molnarf250c0302009-06-05 13:18:41 +0200291
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300292 if (fd[nr_cpu][counter][thread_index] < 0) {
293 int err = errno;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200294
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300295 if (err == EPERM || err == EACCES)
296 die("Permission error - are you root?\n"
297 "\t Consider tweaking"
298 " /proc/sys/kernel/perf_event_paranoid.\n");
299 else if (err == ENODEV && profile_cpu != -1) {
300 die("No such device - did you specify"
301 " an out-of-range profile CPU?\n");
302 }
Ingo Molnar3da297a2009-06-07 17:39:02 +0200303
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300304 /*
305 * If it's cycles then fall back to hrtimer
306 * based cpu-clock-tick sw counter, which
307 * is always available even if no PMU support:
308 */
309 if (attr->type == PERF_TYPE_HARDWARE
310 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
Ingo Molnar3da297a2009-06-07 17:39:02 +0200311
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300312 if (verbose)
313 warning(" ... trying to fall back to cpu-clock-ticks\n");
314 attr->type = PERF_TYPE_SOFTWARE;
315 attr->config = PERF_COUNT_SW_CPU_CLOCK;
316 goto try_again;
317 }
318 printf("\n");
319 error("perfcounter syscall returned with %d (%s)\n",
320 fd[nr_cpu][counter][thread_index], strerror(err));
Simon Kaempfleinbfd45112009-11-16 15:25:53 +1000321
322#if defined(__i386__) || defined(__x86_64__)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300323 if (attr->type == PERF_TYPE_HARDWARE && err == EOPNOTSUPP)
324 die("No hardware sampling interrupt available."
325 " No APIC? If so then you can boot the kernel"
326 " with the \"lapic\" boot parameter to"
327 " force-enable it.\n");
Simon Kaempfleinbfd45112009-11-16 15:25:53 +1000328#endif
329
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300330 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200331 exit(-1);
332 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200333
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300334 h_attr = get_header_attr(attr, counter);
335 if (h_attr == NULL)
336 die("nomem\n");
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200337
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300338 if (!file_new) {
339 if (memcmp(&h_attr->attr, attr, sizeof(*attr))) {
340 fprintf(stderr, "incompatible append\n");
341 exit(-1);
342 }
343 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200344
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300345 if (read(fd[nr_cpu][counter][thread_index], &read_data, sizeof(read_data)) == -1) {
346 perror("Unable to read perf file descriptor\n");
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200347 exit(-1);
348 }
Peter Zijlstra4502d772009-06-10 15:03:06 +0200349
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300350 if (perf_header_attr__add_id(h_attr, read_data.id) < 0) {
351 pr_warning("Not enough memory to add id\n");
Li Zefanc171b552009-10-15 11:22:07 +0800352 exit(-1);
353 }
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300354
355 assert(fd[nr_cpu][counter][thread_index] >= 0);
356 fcntl(fd[nr_cpu][counter][thread_index], F_SETFL, O_NONBLOCK);
357
358 /*
359 * First counter acts as the group leader:
360 */
361 if (group && group_fd == -1)
362 group_fd = fd[nr_cpu][counter][thread_index];
363 if (multiplex && multiplex_fd == -1)
364 multiplex_fd = fd[nr_cpu][counter][thread_index];
365
366 if (multiplex && fd[nr_cpu][counter][thread_index] != multiplex_fd) {
367
368 ret = ioctl(fd[nr_cpu][counter][thread_index], PERF_EVENT_IOC_SET_OUTPUT, multiplex_fd);
369 assert(ret != -1);
370 } else {
371 event_array[nr_poll].fd = fd[nr_cpu][counter][thread_index];
372 event_array[nr_poll].events = POLLIN;
373 nr_poll++;
374
375 mmap_array[nr_cpu][counter][thread_index].counter = counter;
376 mmap_array[nr_cpu][counter][thread_index].prev = 0;
377 mmap_array[nr_cpu][counter][thread_index].mask = mmap_pages*page_size - 1;
378 mmap_array[nr_cpu][counter][thread_index].base = mmap(NULL, (mmap_pages+1)*page_size,
379 PROT_READ|PROT_WRITE, MAP_SHARED, fd[nr_cpu][counter][thread_index], 0);
380 if (mmap_array[nr_cpu][counter][thread_index].base == MAP_FAILED) {
381 error("failed to mmap with %d (%s)\n", errno, strerror(errno));
382 exit(-1);
383 }
384 }
385
386 if (filter != NULL) {
387 ret = ioctl(fd[nr_cpu][counter][thread_index],
388 PERF_EVENT_IOC_SET_FILTER, filter);
389 if (ret) {
390 error("failed to set filter with %d (%s)\n", errno,
391 strerror(errno));
392 exit(-1);
393 }
394 }
Li Zefanc171b552009-10-15 11:22:07 +0800395 }
Ingo Molnarf250c0302009-06-05 13:18:41 +0200396}
397
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300398static void open_counters(int cpu)
Ingo Molnarf250c0302009-06-05 13:18:41 +0200399{
400 int counter;
401
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200402 group_fd = -1;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200403 for (counter = 0; counter < nr_counters; counter++)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300404 create_counter(counter, cpu);
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200405
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200406 nr_cpu++;
407}
408
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200409static int process_buildids(void)
410{
411 u64 size = lseek(output, 0, SEEK_CUR);
412
Arnaldo Carvalho de Melo9f591fd2010-03-11 15:53:11 -0300413 if (size == 0)
414 return 0;
415
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200416 session->fd = output;
417 return __perf_session__process_events(session, post_processing_offset,
418 size - post_processing_offset,
419 size, &build_id__mark_dso_hit_ops);
420}
421
Peter Zijlstraf5970552009-06-18 23:22:55 +0200422static void atexit_header(void)
423{
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200424 session->header.data_size += bytes_written;
Peter Zijlstraf5970552009-06-18 23:22:55 +0200425
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200426 process_buildids();
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200427 perf_header__write(&session->header, output, true);
Peter Zijlstraf5970552009-06-18 23:22:55 +0200428}
429
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200430static int __cmd_record(int argc, const char **argv)
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200431{
432 int i, counter;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200433 struct stat st;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200434 pid_t pid = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200435 int flags;
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200436 int err;
Peter Zijlstra8b412662009-09-17 19:59:05 +0200437 unsigned long waking = 0;
Peter Zijlstra856e9662009-12-16 17:55:55 +0100438 int child_ready_pipe[2], go_pipe[2];
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300439 const bool forks = argc > 0;
Peter Zijlstra856e9662009-12-16 17:55:55 +0100440 char buf;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200441
442 page_size = sysconf(_SC_PAGE_SIZE);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200443
Peter Zijlstraf5970552009-06-18 23:22:55 +0200444 atexit(sig_atexit);
445 signal(SIGCHLD, sig_handler);
446 signal(SIGINT, sig_handler);
447
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200448 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
Peter Zijlstra856e9662009-12-16 17:55:55 +0100449 perror("failed to create pipes");
450 exit(-1);
451 }
452
Tom Zanussi529870e2010-04-01 23:59:16 -0500453 if (!strcmp(output_name, "-"))
454 pipe_output = 1;
455 else if (!stat(output_name, &st) && st.st_size) {
Arnaldo Carvalho de Melob38d3462009-12-14 20:09:30 -0200456 if (!force) {
457 if (!append_file) {
458 pr_err("Error, output file %s exists, use -A "
459 "to append or -f to overwrite.\n",
460 output_name);
461 exit(-1);
462 }
463 } else {
464 char oldname[PATH_MAX];
465 snprintf(oldname, sizeof(oldname), "%s.old",
466 output_name);
467 unlink(oldname);
468 rename(output_name, oldname);
Pierre Habouzit266e0e22009-08-07 14:16:01 +0200469 }
470 } else {
Ian Munsiec0555642010-04-13 18:37:33 +1000471 append_file = false;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200472 }
473
Xiao Guangrongf887f302010-02-04 16:46:42 +0800474 flags = O_CREAT|O_RDWR;
Ingo Molnarabaff322009-06-02 22:59:57 +0200475 if (append_file)
Peter Zijlstraf5970552009-06-18 23:22:55 +0200476 file_new = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200477 else
478 flags |= O_TRUNC;
479
Tom Zanussi529870e2010-04-01 23:59:16 -0500480 if (pipe_output)
481 output = STDOUT_FILENO;
482 else
483 output = open(output_name, flags, S_IRUSR | S_IWUSR);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200484 if (output < 0) {
485 perror("failed to create output file");
486 exit(-1);
487 }
488
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200489 session = perf_session__new(output_name, O_WRONLY, force);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200490 if (session == NULL) {
Arnaldo Carvalho de Meloa9a70bb2009-11-17 01:18:11 -0200491 pr_err("Not enough memory for reading perf file header\n");
492 return -1;
493 }
494
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200495 if (!file_new) {
Tom Zanussi8dc58102010-04-01 23:59:15 -0500496 err = perf_header__read(session, output);
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200497 if (err < 0)
498 return err;
499 }
500
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200501 if (raw_samples) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200502 perf_header__set_feat(&session->header, HEADER_TRACE_INFO);
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200503 } else {
504 for (i = 0; i < nr_counters; i++) {
505 if (attrs[i].sample_type & PERF_SAMPLE_RAW) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200506 perf_header__set_feat(&session->header, HEADER_TRACE_INFO);
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200507 break;
508 }
509 }
510 }
Frederic Weisbecker03456a12009-10-06 23:36:47 +0200511
Peter Zijlstraf5970552009-06-18 23:22:55 +0200512 atexit(atexit_header);
513
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200514 if (forks) {
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300515 child_pid = fork();
Peter Zijlstra856e9662009-12-16 17:55:55 +0100516 if (pid < 0) {
517 perror("failed to fork");
518 exit(-1);
Jens Axboe0a5ac842009-08-12 11:18:01 +0200519 }
Peter Zijlstra856e9662009-12-16 17:55:55 +0100520
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300521 if (!child_pid) {
Tom Zanussi529870e2010-04-01 23:59:16 -0500522 if (pipe_output)
523 dup2(2, 1);
Peter Zijlstra856e9662009-12-16 17:55:55 +0100524 close(child_ready_pipe[0]);
525 close(go_pipe[1]);
526 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
527
528 /*
529 * Do a dummy execvp to get the PLT entry resolved,
530 * so we avoid the resolver overhead on the real
531 * execvp call.
532 */
533 execvp("", (char **)argv);
534
535 /*
536 * Tell the parent we're ready to go
537 */
538 close(child_ready_pipe[1]);
539
540 /*
541 * Wait until the parent tells us to go.
542 */
543 if (read(go_pipe[0], &buf, 1) == -1)
544 perror("unable to read pipe");
545
546 execvp(argv[0], (char **)argv);
547
548 perror(argv[0]);
549 exit(-1);
550 }
551
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300552 if (!system_wide && target_tid == -1 && target_pid == -1)
553 all_tids[0] = child_pid;
554
Peter Zijlstra856e9662009-12-16 17:55:55 +0100555 close(child_ready_pipe[1]);
556 close(go_pipe[0]);
557 /*
558 * wait for child to settle
559 */
560 if (read(child_ready_pipe[0], &buf, 1) == -1) {
561 perror("unable to read pipe");
562 exit(-1);
563 }
564 close(child_ready_pipe[0]);
565 }
566
Peter Zijlstra60ab2712009-12-16 17:55:56 +0100567 if ((!system_wide && !inherit) || profile_cpu != -1) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300568 open_counters(profile_cpu);
Peter Zijlstra856e9662009-12-16 17:55:55 +0100569 } else {
Paul Mackerrasa12b51c2010-03-10 20:36:09 +1100570 nr_cpus = read_cpu_map();
Peter Zijlstra856e9662009-12-16 17:55:55 +0100571 for (i = 0; i < nr_cpus; i++)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300572 open_counters(cpumap[i]);
Jens Axboe0a5ac842009-08-12 11:18:01 +0200573 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200574
Tom Zanussi529870e2010-04-01 23:59:16 -0500575 if (pipe_output) {
576 err = perf_header__write_pipe(output);
577 if (err < 0)
578 return err;
579 } else if (file_new) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200580 err = perf_header__write(&session->header, output, false);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -0200581 if (err < 0)
582 return err;
583 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200584
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200585 post_processing_offset = lseek(output, 0, SEEK_CUR);
586
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200587 err = event__synthesize_kernel_mmap(process_synthesized_event,
588 session, "_text");
Arnaldo Carvalho de Melo70162132010-03-30 18:27:39 -0300589 if (err < 0)
590 err = event__synthesize_kernel_mmap(process_synthesized_event,
591 session, "_stext");
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200592 if (err < 0) {
593 pr_err("Couldn't record kernel reference relocation symbol.\n");
594 return err;
595 }
596
Arnaldo Carvalho de Melob7cece72010-01-13 13:22:17 -0200597 err = event__synthesize_modules(process_synthesized_event, session);
598 if (err < 0) {
599 pr_err("Couldn't record kernel reference relocation symbol.\n");
600 return err;
601 }
602
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200603 if (!system_wide && profile_cpu == -1)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300604 event__synthesize_thread(target_tid, process_synthesized_event,
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200605 session);
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200606 else
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200607 event__synthesize_threads(process_synthesized_event, session);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200608
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200609 if (realtime_prio) {
610 struct sched_param param;
611
612 param.sched_priority = realtime_prio;
613 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200614 pr_err("Could not set realtime priority.\n");
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200615 exit(-1);
616 }
617 }
618
Peter Zijlstra856e9662009-12-16 17:55:55 +0100619 /*
620 * Let the child rip
621 */
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200622 if (forks)
623 close(go_pipe[1]);
Peter Zijlstra856e9662009-12-16 17:55:55 +0100624
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200625 for (;;) {
Ingo Molnar2debbc82009-06-05 14:29:10 +0200626 int hits = samples;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300627 int thread;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200628
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200629 for (i = 0; i < nr_cpu; i++) {
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200630 for (counter = 0; counter < nr_counters; counter++) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300631 for (thread = 0;
632 thread < thread_num; thread++) {
633 if (mmap_array[i][counter][thread].base)
634 mmap_read(&mmap_array[i][counter][thread]);
635 }
636
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200637 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200638 }
639
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200640 if (hits == samples) {
641 if (done)
642 break;
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200643 err = poll(event_array, nr_poll, -1);
Peter Zijlstra8b412662009-09-17 19:59:05 +0200644 waking++;
645 }
646
647 if (done) {
648 for (i = 0; i < nr_cpu; i++) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300649 for (counter = 0;
650 counter < nr_counters;
651 counter++) {
652 for (thread = 0;
653 thread < thread_num;
654 thread++)
655 ioctl(fd[i][counter][thread],
656 PERF_EVENT_IOC_DISABLE);
657 }
Peter Zijlstra8b412662009-09-17 19:59:05 +0200658 }
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200659 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200660 }
661
Peter Zijlstra8b412662009-09-17 19:59:05 +0200662 fprintf(stderr, "[ perf record: Woken up %ld times to write data ]\n", waking);
663
Ingo Molnar021e9f42009-06-03 19:27:19 +0200664 /*
665 * Approximate RIP event size: 24 bytes.
666 */
667 fprintf(stderr,
Ingo Molnar2debbc82009-06-05 14:29:10 +0200668 "[ perf record: Captured and wrote %.3f MB %s (~%lld samples) ]\n",
Ingo Molnar021e9f42009-06-03 19:27:19 +0200669 (double)bytes_written / 1024.0 / 1024.0,
670 output_name,
671 bytes_written / 24);
Ingo Molnaraddc2782009-06-02 23:43:11 +0200672
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200673 return 0;
674}
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200675
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200676static const char * const record_usage[] = {
Mike Galbraith9e0967532009-05-28 16:25:34 +0200677 "perf record [<options>] [<command>]",
678 "perf record [<options>] -- <command> [<options>]",
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200679 NULL
680};
681
Ingo Molnar52425192009-05-26 09:17:18 +0200682static const struct option options[] = {
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200683 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200684 "event selector. use 'perf list' to list available events",
685 parse_events),
Li Zefanc171b552009-10-15 11:22:07 +0800686 OPT_CALLBACK(0, "filter", NULL, "filter",
687 "event filter", parse_filter),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200688 OPT_INTEGER('p', "pid", &target_pid,
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300689 "record events on existing process id"),
690 OPT_INTEGER('t', "tid", &target_tid,
691 "record events on existing thread id"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200692 OPT_INTEGER('r', "realtime", &realtime_prio,
693 "collect data with this RT SCHED_FIFO priority"),
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200694 OPT_BOOLEAN('R', "raw-samples", &raw_samples,
695 "collect raw sample records from all opened counters"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200696 OPT_BOOLEAN('a', "all-cpus", &system_wide,
697 "system-wide collection from all CPUs"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200698 OPT_BOOLEAN('A', "append", &append_file,
699 "append to the output file to do incremental profiling"),
Jens Axboe0a5ac842009-08-12 11:18:01 +0200700 OPT_INTEGER('C', "profile_cpu", &profile_cpu,
701 "CPU to profile on"),
Peter Zijlstra97124d52009-06-02 15:52:24 +0200702 OPT_BOOLEAN('f', "force", &force,
703 "overwrite existing data file"),
Peter Zijlstrae61078a2009-06-03 11:24:33 +0200704 OPT_LONG('c', "count", &default_interval,
Ingo Molnarabaff322009-06-02 22:59:57 +0200705 "event period to sample"),
706 OPT_STRING('o', "output", &output_name, "file",
707 "output file name"),
708 OPT_BOOLEAN('i', "inherit", &inherit,
709 "child tasks inherit counters"),
Ingo Molnarcf1f4572009-06-05 13:27:02 +0200710 OPT_INTEGER('F', "freq", &freq,
711 "profile at this frequency"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200712 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
713 "number of mmap data pages"),
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200714 OPT_BOOLEAN('g', "call-graph", &call_graph,
715 "do call-graph (stack chain/backtrace) recording"),
Ian Munsiec0555642010-04-13 18:37:33 +1000716 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar3da297a2009-06-07 17:39:02 +0200717 "be more verbose (show counter open errors, etc)"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200718 OPT_BOOLEAN('s', "stat", &inherit_stat,
719 "per thread counts"),
Anton Blanchard4bba8282009-07-16 15:44:29 +0200720 OPT_BOOLEAN('d', "data", &sample_address,
721 "Sample addresses"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200722 OPT_BOOLEAN('n', "no-samples", &no_samples,
723 "don't sample"),
Frederic Weisbeckerd1302522009-09-14 08:57:15 +0200724 OPT_BOOLEAN('M', "multiplex", &multiplex,
725 "multiplex counter output in a single channel"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200726 OPT_END()
727};
728
Ingo Molnarf37a2912009-07-01 12:37:06 +0200729int cmd_record(int argc, const char **argv, const char *prefix __used)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200730{
731 int counter;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300732 int i,j;
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200733
Anton Blancharda0541232009-07-22 23:04:12 +1000734 argc = parse_options(argc, argv, options, record_usage,
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200735 PARSE_OPT_STOP_AT_NON_OPTION);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300736 if (!argc && target_pid == -1 && target_tid == -1 &&
737 !system_wide && profile_cpu == -1)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200738 usage_with_options(record_usage, options);
739
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200740 symbol__init();
741
Peter Zijlstrabbd36e52009-06-11 23:11:50 +0200742 if (!nr_counters) {
743 nr_counters = 1;
744 attrs[0].type = PERF_TYPE_HARDWARE;
745 attrs[0].config = PERF_COUNT_HW_CPU_CYCLES;
746 }
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200747
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300748 if (target_pid != -1) {
749 target_tid = target_pid;
750 thread_num = find_all_tid(target_pid, &all_tids);
751 if (thread_num <= 0) {
752 fprintf(stderr, "Can't find all threads of pid %d\n",
753 target_pid);
754 usage_with_options(record_usage, options);
755 }
756 } else {
757 all_tids=malloc(sizeof(pid_t));
758 if (!all_tids)
759 return -ENOMEM;
760
761 all_tids[0] = target_tid;
762 thread_num = 1;
763 }
764
765 for (i = 0; i < MAX_NR_CPUS; i++) {
766 for (j = 0; j < MAX_COUNTERS; j++) {
767 fd[i][j] = malloc(sizeof(int)*thread_num);
Zhang, Yanmin5a103172010-03-25 19:59:01 -0300768 mmap_array[i][j] = zalloc(
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300769 sizeof(struct mmap_data)*thread_num);
770 if (!fd[i][j] || !mmap_array[i][j])
771 return -ENOMEM;
772 }
773 }
774 event_array = malloc(
775 sizeof(struct pollfd)*MAX_NR_CPUS*MAX_COUNTERS*thread_num);
776 if (!event_array)
777 return -ENOMEM;
778
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +0200779 /*
780 * User specified count overrides default frequency.
781 */
782 if (default_interval)
783 freq = 0;
784 else if (freq) {
785 default_interval = freq;
786 } else {
787 fprintf(stderr, "frequency and count are zero, aborting\n");
788 exit(EXIT_FAILURE);
789 }
790
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200791 for (counter = 0; counter < nr_counters; counter++) {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200792 if (attrs[counter].sample_period)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200793 continue;
794
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200795 attrs[counter].sample_period = default_interval;
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200796 }
797
798 return __cmd_record(argc, argv);
799}