blob: ca2affc9233f92a047a97fdc6d3e0390a766a3fa [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
Frederic Weisbecker7865e812010-04-14 19:42:07 +020029enum write_mode_t {
30 WRITE_FORCE,
31 WRITE_APPEND
32};
33
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030034static int *fd[MAX_NR_CPUS][MAX_COUNTERS];
Ingo Molnara21ca2c2009-06-06 09:58:57 +020035
Frederic Weisbeckerf9212812010-04-14 22:09:02 +020036static unsigned int user_interval = UINT_MAX;
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +020037static long default_interval = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020038
Ingo Molnar42e59d72009-10-06 15:14:21 +020039static int nr_cpus = 0;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020040static unsigned int page_size;
Ingo Molnar42e59d72009-10-06 15:14:21 +020041static unsigned int mmap_pages = 128;
Frederic Weisbeckerf9212812010-04-14 22:09:02 +020042static unsigned int user_freq = UINT_MAX;
Ingo Molnar42e59d72009-10-06 15:14:21 +020043static int freq = 1000;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020044static int output;
Ingo Molnar23ac9cb2009-05-27 09:33:18 +020045static const char *output_name = "perf.data";
Ingo Molnar42e59d72009-10-06 15:14:21 +020046static int group = 0;
47static unsigned int realtime_prio = 0;
Ian Munsiec0555642010-04-13 18:37:33 +100048static bool raw_samples = false;
49static bool system_wide = false;
Ingo Molnar42e59d72009-10-06 15:14:21 +020050static int profile_cpu = -1;
51static pid_t target_pid = -1;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030052static pid_t target_tid = -1;
53static pid_t *all_tids = NULL;
54static int thread_num = 0;
Ingo Molnar42e59d72009-10-06 15:14:21 +020055static pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +100056static bool inherit = true;
Frederic Weisbecker7865e812010-04-14 19:42:07 +020057static enum write_mode_t write_mode = WRITE_FORCE;
Ian Munsiec0555642010-04-13 18:37:33 +100058static bool call_graph = false;
59static bool inherit_stat = false;
60static bool no_samples = false;
61static bool sample_address = false;
62static bool multiplex = false;
Ingo Molnar42e59d72009-10-06 15:14:21 +020063static int multiplex_fd = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020064
Ingo Molnar42e59d72009-10-06 15:14:21 +020065static long samples = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020066static struct timeval last_read;
67static struct timeval this_read;
68
Ingo Molnar42e59d72009-10-06 15:14:21 +020069static u64 bytes_written = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020070
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030071static struct pollfd *event_array;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020072
Ingo Molnar42e59d72009-10-06 15:14:21 +020073static int nr_poll = 0;
74static int nr_cpu = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020075
Ingo Molnar42e59d72009-10-06 15:14:21 +020076static int file_new = 1;
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -020077static off_t post_processing_offset;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020078
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020079static struct perf_session *session;
Peter Zijlstraf5970552009-06-18 23:22:55 +020080
Ingo Molnara21ca2c2009-06-06 09:58:57 +020081struct mmap_data {
82 int counter;
83 void *base;
84 unsigned int mask;
85 unsigned int prev;
86};
87
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030088static struct mmap_data *mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
Ingo Molnara21ca2c2009-06-06 09:58:57 +020089
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020090static unsigned long mmap_read_head(struct mmap_data *md)
Peter Zijlstrade9ac072009-04-08 15:01:31 +020091{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020092 struct perf_event_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020093 long head;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020094
95 head = pc->data_head;
96 rmb();
97
98 return head;
99}
100
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200101static void mmap_write_tail(struct mmap_data *md, unsigned long tail)
102{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200103 struct perf_event_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200104
105 /*
106 * ensure all reads are done before we write the tail out.
107 */
108 /* mb(); */
109 pc->data_tail = tail;
110}
111
Peter Zijlstraf5970552009-06-18 23:22:55 +0200112static void write_output(void *buf, size_t size)
113{
114 while (size) {
115 int ret = write(output, buf, size);
116
117 if (ret < 0)
118 die("failed to write");
119
120 size -= ret;
121 buf += ret;
122
123 bytes_written += ret;
124 }
125}
126
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200127static int process_synthesized_event(event_t *event,
128 struct perf_session *self __used)
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200129{
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200130 write_output(event, event->header.size);
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200131 return 0;
132}
133
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200134static void mmap_read(struct mmap_data *md)
135{
136 unsigned int head = mmap_read_head(md);
137 unsigned int old = md->prev;
138 unsigned char *data = md->base + page_size;
139 unsigned long size;
140 void *buf;
141 int diff;
142
143 gettimeofday(&this_read, NULL);
144
145 /*
146 * If we're further behind than half the buffer, there's a chance
Ingo Molnar2debbc82009-06-05 14:29:10 +0200147 * the writer will bite our tail and mess up the samples under us.
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200148 *
149 * If we somehow ended up ahead of the head, we got messed up.
150 *
151 * In either case, truncate and restart at head.
152 */
153 diff = head - old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200154 if (diff < 0) {
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200155 struct timeval iv;
156 unsigned long msecs;
157
158 timersub(&this_read, &last_read, &iv);
159 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
160
161 fprintf(stderr, "WARNING: failed to keep up with mmap data."
162 " Last read %lu msecs ago.\n", msecs);
163
164 /*
165 * head points to a known good entry, start there.
166 */
167 old = head;
168 }
169
170 last_read = this_read;
171
172 if (old != head)
Ingo Molnar2debbc82009-06-05 14:29:10 +0200173 samples++;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200174
175 size = head - old;
176
177 if ((old & md->mask) + size != (head & md->mask)) {
178 buf = &data[old & md->mask];
179 size = md->mask + 1 - (old & md->mask);
180 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200181
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200182 write_output(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200183 }
184
185 buf = &data[old & md->mask];
186 size = head - old;
187 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200188
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200189 write_output(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200190
191 md->prev = old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200192 mmap_write_tail(md, old);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200193}
194
195static volatile int done = 0;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200196static volatile int signr = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200197
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200198static void sig_handler(int sig)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200199{
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200200 done = 1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200201 signr = sig;
202}
203
204static void sig_atexit(void)
205{
Chris Wilson933da832009-10-04 01:35:01 +0100206 if (child_pid != -1)
207 kill(child_pid, SIGTERM);
208
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200209 if (signr == -1)
210 return;
211
212 signal(signr, SIG_DFL);
213 kill(getpid(), signr);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200214}
215
Ingo Molnarf250c0302009-06-05 13:18:41 +0200216static int group_fd;
217
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200218static struct perf_header_attr *get_header_attr(struct perf_event_attr *a, int nr)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200219{
220 struct perf_header_attr *h_attr;
221
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200222 if (nr < session->header.attrs) {
223 h_attr = session->header.attr[nr];
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200224 } else {
225 h_attr = perf_header_attr__new(a);
Arnaldo Carvalho de Melodc79c0f2009-11-16 19:30:26 -0200226 if (h_attr != NULL)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200227 if (perf_header__add_attr(&session->header, h_attr) < 0) {
Arnaldo Carvalho de Melo11deb1f2009-11-17 01:18:09 -0200228 perf_header_attr__delete(h_attr);
229 h_attr = NULL;
230 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200231 }
232
233 return h_attr;
234}
235
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300236static void create_counter(int counter, int cpu)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200237{
Li Zefanc171b552009-10-15 11:22:07 +0800238 char *filter = filters[counter];
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200239 struct perf_event_attr *attr = attrs + counter;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200240 struct perf_header_attr *h_attr;
241 int track = !counter; /* only the first counter needs these */
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300242 int thread_index;
Li Zefanc171b552009-10-15 11:22:07 +0800243 int ret;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200244 struct {
245 u64 count;
246 u64 time_enabled;
247 u64 time_running;
248 u64 id;
249 } read_data;
250
251 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
252 PERF_FORMAT_TOTAL_TIME_RUNNING |
253 PERF_FORMAT_ID;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200254
Frederic Weisbecker3a9f1312009-08-13 10:27:18 +0200255 attr->sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200256
Eric B Munson8907fd62010-03-05 12:51:05 -0300257 if (nr_counters > 1)
258 attr->sample_type |= PERF_SAMPLE_ID;
259
Frederic Weisbeckerf9212812010-04-14 22:09:02 +0200260 /*
261 * We default some events to a 1 default interval. But keep
262 * it a weak assumption overridable by the user.
263 */
264 if (!attr->sample_period || (user_freq != UINT_MAX &&
265 user_interval != UINT_MAX)) {
266 if (freq) {
267 attr->sample_type |= PERF_SAMPLE_PERIOD;
268 attr->freq = 1;
269 attr->sample_freq = freq;
270 } else {
271 attr->sample_period = default_interval;
272 }
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200273 }
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200274
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200275 if (no_samples)
276 attr->sample_freq = 0;
277
278 if (inherit_stat)
279 attr->inherit_stat = 1;
280
Anton Blanchard4bba8282009-07-16 15:44:29 +0200281 if (sample_address)
282 attr->sample_type |= PERF_SAMPLE_ADDR;
283
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200284 if (call_graph)
285 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
286
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200287 if (raw_samples) {
Ingo Molnar6ddf2592009-09-03 12:00:22 +0200288 attr->sample_type |= PERF_SAMPLE_TIME;
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200289 attr->sample_type |= PERF_SAMPLE_RAW;
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200290 attr->sample_type |= PERF_SAMPLE_CPU;
291 }
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +0200292
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200293 attr->mmap = track;
294 attr->comm = track;
Peter Zijlstra60ab2712009-12-16 17:55:56 +0100295 attr->inherit = inherit;
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300296 if (target_pid == -1 && !system_wide) {
297 attr->disabled = 1;
Eric B Munsonbedbfde2010-03-15 11:46:57 -0300298 attr->enable_on_exec = 1;
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300299 }
Eric B Munsonbedbfde2010-03-15 11:46:57 -0300300
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300301 for (thread_index = 0; thread_index < thread_num; thread_index++) {
Ingo Molnar3da297a2009-06-07 17:39:02 +0200302try_again:
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300303 fd[nr_cpu][counter][thread_index] = sys_perf_event_open(attr,
304 all_tids[thread_index], cpu, group_fd, 0);
Ingo Molnarf250c0302009-06-05 13:18:41 +0200305
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300306 if (fd[nr_cpu][counter][thread_index] < 0) {
307 int err = errno;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200308
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300309 if (err == EPERM || err == EACCES)
310 die("Permission error - are you root?\n"
311 "\t Consider tweaking"
312 " /proc/sys/kernel/perf_event_paranoid.\n");
313 else if (err == ENODEV && profile_cpu != -1) {
314 die("No such device - did you specify"
315 " an out-of-range profile CPU?\n");
316 }
Ingo Molnar3da297a2009-06-07 17:39:02 +0200317
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300318 /*
319 * If it's cycles then fall back to hrtimer
320 * based cpu-clock-tick sw counter, which
321 * is always available even if no PMU support:
322 */
323 if (attr->type == PERF_TYPE_HARDWARE
324 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
Ingo Molnar3da297a2009-06-07 17:39:02 +0200325
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300326 if (verbose)
327 warning(" ... trying to fall back to cpu-clock-ticks\n");
328 attr->type = PERF_TYPE_SOFTWARE;
329 attr->config = PERF_COUNT_SW_CPU_CLOCK;
330 goto try_again;
331 }
332 printf("\n");
333 error("perfcounter syscall returned with %d (%s)\n",
334 fd[nr_cpu][counter][thread_index], strerror(err));
Simon Kaempfleinbfd45112009-11-16 15:25:53 +1000335
336#if defined(__i386__) || defined(__x86_64__)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300337 if (attr->type == PERF_TYPE_HARDWARE && err == EOPNOTSUPP)
338 die("No hardware sampling interrupt available."
339 " No APIC? If so then you can boot the kernel"
340 " with the \"lapic\" boot parameter to"
341 " force-enable it.\n");
Simon Kaempfleinbfd45112009-11-16 15:25:53 +1000342#endif
343
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300344 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200345 exit(-1);
346 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200347
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300348 h_attr = get_header_attr(attr, counter);
349 if (h_attr == NULL)
350 die("nomem\n");
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200351
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300352 if (!file_new) {
353 if (memcmp(&h_attr->attr, attr, sizeof(*attr))) {
354 fprintf(stderr, "incompatible append\n");
355 exit(-1);
356 }
357 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200358
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300359 if (read(fd[nr_cpu][counter][thread_index], &read_data, sizeof(read_data)) == -1) {
360 perror("Unable to read perf file descriptor\n");
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200361 exit(-1);
362 }
Peter Zijlstra4502d772009-06-10 15:03:06 +0200363
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300364 if (perf_header_attr__add_id(h_attr, read_data.id) < 0) {
365 pr_warning("Not enough memory to add id\n");
Li Zefanc171b552009-10-15 11:22:07 +0800366 exit(-1);
367 }
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300368
369 assert(fd[nr_cpu][counter][thread_index] >= 0);
370 fcntl(fd[nr_cpu][counter][thread_index], F_SETFL, O_NONBLOCK);
371
372 /*
373 * First counter acts as the group leader:
374 */
375 if (group && group_fd == -1)
376 group_fd = fd[nr_cpu][counter][thread_index];
377 if (multiplex && multiplex_fd == -1)
378 multiplex_fd = fd[nr_cpu][counter][thread_index];
379
380 if (multiplex && fd[nr_cpu][counter][thread_index] != multiplex_fd) {
381
382 ret = ioctl(fd[nr_cpu][counter][thread_index], PERF_EVENT_IOC_SET_OUTPUT, multiplex_fd);
383 assert(ret != -1);
384 } else {
385 event_array[nr_poll].fd = fd[nr_cpu][counter][thread_index];
386 event_array[nr_poll].events = POLLIN;
387 nr_poll++;
388
389 mmap_array[nr_cpu][counter][thread_index].counter = counter;
390 mmap_array[nr_cpu][counter][thread_index].prev = 0;
391 mmap_array[nr_cpu][counter][thread_index].mask = mmap_pages*page_size - 1;
392 mmap_array[nr_cpu][counter][thread_index].base = mmap(NULL, (mmap_pages+1)*page_size,
393 PROT_READ|PROT_WRITE, MAP_SHARED, fd[nr_cpu][counter][thread_index], 0);
394 if (mmap_array[nr_cpu][counter][thread_index].base == MAP_FAILED) {
395 error("failed to mmap with %d (%s)\n", errno, strerror(errno));
396 exit(-1);
397 }
398 }
399
400 if (filter != NULL) {
401 ret = ioctl(fd[nr_cpu][counter][thread_index],
402 PERF_EVENT_IOC_SET_FILTER, filter);
403 if (ret) {
404 error("failed to set filter with %d (%s)\n", errno,
405 strerror(errno));
406 exit(-1);
407 }
408 }
Li Zefanc171b552009-10-15 11:22:07 +0800409 }
Ingo Molnarf250c0302009-06-05 13:18:41 +0200410}
411
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300412static void open_counters(int cpu)
Ingo Molnarf250c0302009-06-05 13:18:41 +0200413{
414 int counter;
415
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200416 group_fd = -1;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200417 for (counter = 0; counter < nr_counters; counter++)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300418 create_counter(counter, cpu);
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200419
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200420 nr_cpu++;
421}
422
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200423static int process_buildids(void)
424{
425 u64 size = lseek(output, 0, SEEK_CUR);
426
Arnaldo Carvalho de Melo9f591fd2010-03-11 15:53:11 -0300427 if (size == 0)
428 return 0;
429
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200430 session->fd = output;
431 return __perf_session__process_events(session, post_processing_offset,
432 size - post_processing_offset,
433 size, &build_id__mark_dso_hit_ops);
434}
435
Peter Zijlstraf5970552009-06-18 23:22:55 +0200436static void atexit_header(void)
437{
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200438 session->header.data_size += bytes_written;
Peter Zijlstraf5970552009-06-18 23:22:55 +0200439
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200440 process_buildids();
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200441 perf_header__write(&session->header, output, true);
Peter Zijlstraf5970552009-06-18 23:22:55 +0200442}
443
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200444static int __cmd_record(int argc, const char **argv)
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200445{
446 int i, counter;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200447 struct stat st;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200448 pid_t pid = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200449 int flags;
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200450 int err;
Peter Zijlstra8b412662009-09-17 19:59:05 +0200451 unsigned long waking = 0;
Peter Zijlstra856e9662009-12-16 17:55:55 +0100452 int child_ready_pipe[2], go_pipe[2];
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300453 const bool forks = argc > 0;
Peter Zijlstra856e9662009-12-16 17:55:55 +0100454 char buf;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200455
456 page_size = sysconf(_SC_PAGE_SIZE);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200457
Peter Zijlstraf5970552009-06-18 23:22:55 +0200458 atexit(sig_atexit);
459 signal(SIGCHLD, sig_handler);
460 signal(SIGINT, sig_handler);
461
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200462 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
Peter Zijlstra856e9662009-12-16 17:55:55 +0100463 perror("failed to create pipes");
464 exit(-1);
465 }
466
Pierre Habouzit266e0e22009-08-07 14:16:01 +0200467 if (!stat(output_name, &st) && st.st_size) {
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200468 if (write_mode == WRITE_FORCE) {
Arnaldo Carvalho de Melob38d3462009-12-14 20:09:30 -0200469 char oldname[PATH_MAX];
470 snprintf(oldname, sizeof(oldname), "%s.old",
471 output_name);
472 unlink(oldname);
473 rename(output_name, oldname);
Pierre Habouzit266e0e22009-08-07 14:16:01 +0200474 }
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200475 } else if (write_mode == WRITE_APPEND) {
476 write_mode = WRITE_FORCE;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200477 }
478
Xiao Guangrongf887f302010-02-04 16:46:42 +0800479 flags = O_CREAT|O_RDWR;
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200480 if (write_mode == WRITE_APPEND)
Peter Zijlstraf5970552009-06-18 23:22:55 +0200481 file_new = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200482 else
483 flags |= O_TRUNC;
484
485 output = open(output_name, flags, S_IRUSR|S_IWUSR);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200486 if (output < 0) {
487 perror("failed to create output file");
488 exit(-1);
489 }
490
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200491 session = perf_session__new(output_name, O_WRONLY,
492 write_mode == WRITE_FORCE);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200493 if (session == NULL) {
Arnaldo Carvalho de Meloa9a70bb2009-11-17 01:18:11 -0200494 pr_err("Not enough memory for reading perf file header\n");
495 return -1;
496 }
497
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200498 if (!file_new) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200499 err = perf_header__read(&session->header, output);
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200500 if (err < 0)
501 return err;
502 }
503
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200504 if (raw_samples) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200505 perf_header__set_feat(&session->header, HEADER_TRACE_INFO);
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200506 } else {
507 for (i = 0; i < nr_counters; i++) {
508 if (attrs[i].sample_type & PERF_SAMPLE_RAW) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200509 perf_header__set_feat(&session->header, HEADER_TRACE_INFO);
Frederic Weisbecker9df37dd2009-08-17 23:07:50 +0200510 break;
511 }
512 }
513 }
Frederic Weisbecker03456a12009-10-06 23:36:47 +0200514
Peter Zijlstraf5970552009-06-18 23:22:55 +0200515 atexit(atexit_header);
516
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200517 if (forks) {
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300518 child_pid = fork();
Peter Zijlstra856e9662009-12-16 17:55:55 +0100519 if (pid < 0) {
520 perror("failed to fork");
521 exit(-1);
Jens Axboe0a5ac842009-08-12 11:18:01 +0200522 }
Peter Zijlstra856e9662009-12-16 17:55:55 +0100523
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300524 if (!child_pid) {
Peter Zijlstra856e9662009-12-16 17:55:55 +0100525 close(child_ready_pipe[0]);
526 close(go_pipe[1]);
527 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
528
529 /*
530 * Do a dummy execvp to get the PLT entry resolved,
531 * so we avoid the resolver overhead on the real
532 * execvp call.
533 */
534 execvp("", (char **)argv);
535
536 /*
537 * Tell the parent we're ready to go
538 */
539 close(child_ready_pipe[1]);
540
541 /*
542 * Wait until the parent tells us to go.
543 */
544 if (read(go_pipe[0], &buf, 1) == -1)
545 perror("unable to read pipe");
546
547 execvp(argv[0], (char **)argv);
548
549 perror(argv[0]);
550 exit(-1);
551 }
552
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300553 if (!system_wide && target_tid == -1 && target_pid == -1)
554 all_tids[0] = child_pid;
555
Peter Zijlstra856e9662009-12-16 17:55:55 +0100556 close(child_ready_pipe[1]);
557 close(go_pipe[0]);
558 /*
559 * wait for child to settle
560 */
561 if (read(child_ready_pipe[0], &buf, 1) == -1) {
562 perror("unable to read pipe");
563 exit(-1);
564 }
565 close(child_ready_pipe[0]);
566 }
567
Peter Zijlstra60ab2712009-12-16 17:55:56 +0100568 if ((!system_wide && !inherit) || profile_cpu != -1) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300569 open_counters(profile_cpu);
Peter Zijlstra856e9662009-12-16 17:55:55 +0100570 } else {
Paul Mackerrasa12b51c2010-03-10 20:36:09 +1100571 nr_cpus = read_cpu_map();
Peter Zijlstra856e9662009-12-16 17:55:55 +0100572 for (i = 0; i < nr_cpus; i++)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300573 open_counters(cpumap[i]);
Jens Axboe0a5ac842009-08-12 11:18:01 +0200574 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200575
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -0200576 if (file_new) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200577 err = perf_header__write(&session->header, output, false);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -0200578 if (err < 0)
579 return err;
580 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200581
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200582 post_processing_offset = lseek(output, 0, SEEK_CUR);
583
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200584 err = event__synthesize_kernel_mmap(process_synthesized_event,
585 session, "_text");
Arnaldo Carvalho de Melo70162132010-03-30 18:27:39 -0300586 if (err < 0)
587 err = event__synthesize_kernel_mmap(process_synthesized_event,
588 session, "_stext");
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200589 if (err < 0) {
590 pr_err("Couldn't record kernel reference relocation symbol.\n");
591 return err;
592 }
593
Arnaldo Carvalho de Melob7cece72010-01-13 13:22:17 -0200594 err = event__synthesize_modules(process_synthesized_event, session);
595 if (err < 0) {
596 pr_err("Couldn't record kernel reference relocation symbol.\n");
597 return err;
598 }
599
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200600 if (!system_wide && profile_cpu == -1)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300601 event__synthesize_thread(target_tid, process_synthesized_event,
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200602 session);
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200603 else
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200604 event__synthesize_threads(process_synthesized_event, session);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200605
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200606 if (realtime_prio) {
607 struct sched_param param;
608
609 param.sched_priority = realtime_prio;
610 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200611 pr_err("Could not set realtime priority.\n");
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200612 exit(-1);
613 }
614 }
615
Peter Zijlstra856e9662009-12-16 17:55:55 +0100616 /*
617 * Let the child rip
618 */
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200619 if (forks)
620 close(go_pipe[1]);
Peter Zijlstra856e9662009-12-16 17:55:55 +0100621
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200622 for (;;) {
Ingo Molnar2debbc82009-06-05 14:29:10 +0200623 int hits = samples;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300624 int thread;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200625
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200626 for (i = 0; i < nr_cpu; i++) {
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200627 for (counter = 0; counter < nr_counters; counter++) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300628 for (thread = 0;
629 thread < thread_num; thread++) {
630 if (mmap_array[i][counter][thread].base)
631 mmap_read(&mmap_array[i][counter][thread]);
632 }
633
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200634 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200635 }
636
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200637 if (hits == samples) {
638 if (done)
639 break;
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200640 err = poll(event_array, nr_poll, -1);
Peter Zijlstra8b412662009-09-17 19:59:05 +0200641 waking++;
642 }
643
644 if (done) {
645 for (i = 0; i < nr_cpu; i++) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300646 for (counter = 0;
647 counter < nr_counters;
648 counter++) {
649 for (thread = 0;
650 thread < thread_num;
651 thread++)
652 ioctl(fd[i][counter][thread],
653 PERF_EVENT_IOC_DISABLE);
654 }
Peter Zijlstra8b412662009-09-17 19:59:05 +0200655 }
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200656 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200657 }
658
Peter Zijlstra8b412662009-09-17 19:59:05 +0200659 fprintf(stderr, "[ perf record: Woken up %ld times to write data ]\n", waking);
660
Ingo Molnar021e9f42009-06-03 19:27:19 +0200661 /*
662 * Approximate RIP event size: 24 bytes.
663 */
664 fprintf(stderr,
Ingo Molnar2debbc82009-06-05 14:29:10 +0200665 "[ perf record: Captured and wrote %.3f MB %s (~%lld samples) ]\n",
Ingo Molnar021e9f42009-06-03 19:27:19 +0200666 (double)bytes_written / 1024.0 / 1024.0,
667 output_name,
668 bytes_written / 24);
Ingo Molnaraddc2782009-06-02 23:43:11 +0200669
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200670 return 0;
671}
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200672
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200673static const char * const record_usage[] = {
Mike Galbraith9e0967532009-05-28 16:25:34 +0200674 "perf record [<options>] [<command>]",
675 "perf record [<options>] -- <command> [<options>]",
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200676 NULL
677};
678
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200679static bool force, append_file;
680
Ingo Molnar52425192009-05-26 09:17:18 +0200681static const struct option options[] = {
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200682 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200683 "event selector. use 'perf list' to list available events",
684 parse_events),
Li Zefanc171b552009-10-15 11:22:07 +0800685 OPT_CALLBACK(0, "filter", NULL, "filter",
686 "event filter", parse_filter),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200687 OPT_INTEGER('p', "pid", &target_pid,
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300688 "record events on existing process id"),
689 OPT_INTEGER('t', "tid", &target_tid,
690 "record events on existing thread id"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200691 OPT_INTEGER('r', "realtime", &realtime_prio,
692 "collect data with this RT SCHED_FIFO priority"),
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200693 OPT_BOOLEAN('R', "raw-samples", &raw_samples,
694 "collect raw sample records from all opened counters"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200695 OPT_BOOLEAN('a', "all-cpus", &system_wide,
696 "system-wide collection from all CPUs"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200697 OPT_BOOLEAN('A', "append", &append_file,
698 "append to the output file to do incremental profiling"),
Jens Axboe0a5ac842009-08-12 11:18:01 +0200699 OPT_INTEGER('C', "profile_cpu", &profile_cpu,
700 "CPU to profile on"),
Peter Zijlstra97124d52009-06-02 15:52:24 +0200701 OPT_BOOLEAN('f', "force", &force,
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200702 "overwrite existing data file (deprecated)"),
Frederic Weisbeckerf9212812010-04-14 22:09:02 +0200703 OPT_LONG('c', "count", &user_interval,
Ingo Molnarabaff322009-06-02 22:59:57 +0200704 "event period to sample"),
705 OPT_STRING('o', "output", &output_name, "file",
706 "output file name"),
707 OPT_BOOLEAN('i', "inherit", &inherit,
708 "child tasks inherit counters"),
Frederic Weisbeckerf9212812010-04-14 22:09:02 +0200709 OPT_INTEGER('F', "freq", &user_freq,
Ingo Molnarcf1f4572009-06-05 13:27:02 +0200710 "profile at this frequency"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200711 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
712 "number of mmap data pages"),
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200713 OPT_BOOLEAN('g', "call-graph", &call_graph,
714 "do call-graph (stack chain/backtrace) recording"),
Ian Munsiec0555642010-04-13 18:37:33 +1000715 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar3da297a2009-06-07 17:39:02 +0200716 "be more verbose (show counter open errors, etc)"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200717 OPT_BOOLEAN('s', "stat", &inherit_stat,
718 "per thread counts"),
Anton Blanchard4bba8282009-07-16 15:44:29 +0200719 OPT_BOOLEAN('d', "data", &sample_address,
720 "Sample addresses"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200721 OPT_BOOLEAN('n', "no-samples", &no_samples,
722 "don't sample"),
Frederic Weisbeckerd1302522009-09-14 08:57:15 +0200723 OPT_BOOLEAN('M', "multiplex", &multiplex,
724 "multiplex counter output in a single channel"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200725 OPT_END()
726};
727
Ingo Molnarf37a2912009-07-01 12:37:06 +0200728int cmd_record(int argc, const char **argv, const char *prefix __used)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200729{
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300730 int i,j;
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200731
Anton Blancharda0541232009-07-22 23:04:12 +1000732 argc = parse_options(argc, argv, options, record_usage,
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200733 PARSE_OPT_STOP_AT_NON_OPTION);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300734 if (!argc && target_pid == -1 && target_tid == -1 &&
735 !system_wide && profile_cpu == -1)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200736 usage_with_options(record_usage, options);
737
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200738 if (force && append_file) {
739 fprintf(stderr, "Can't overwrite and append at the same time."
740 " You need to choose between -f and -A");
741 usage_with_options(record_usage, options);
742 } else if (append_file) {
743 write_mode = WRITE_APPEND;
744 } else {
745 write_mode = WRITE_FORCE;
746 }
747
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200748 symbol__init();
749
Peter Zijlstrabbd36e52009-06-11 23:11:50 +0200750 if (!nr_counters) {
751 nr_counters = 1;
752 attrs[0].type = PERF_TYPE_HARDWARE;
753 attrs[0].config = PERF_COUNT_HW_CPU_CYCLES;
754 }
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200755
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300756 if (target_pid != -1) {
757 target_tid = target_pid;
758 thread_num = find_all_tid(target_pid, &all_tids);
759 if (thread_num <= 0) {
760 fprintf(stderr, "Can't find all threads of pid %d\n",
761 target_pid);
762 usage_with_options(record_usage, options);
763 }
764 } else {
765 all_tids=malloc(sizeof(pid_t));
766 if (!all_tids)
767 return -ENOMEM;
768
769 all_tids[0] = target_tid;
770 thread_num = 1;
771 }
772
773 for (i = 0; i < MAX_NR_CPUS; i++) {
774 for (j = 0; j < MAX_COUNTERS; j++) {
775 fd[i][j] = malloc(sizeof(int)*thread_num);
Zhang, Yanmin5a103172010-03-25 19:59:01 -0300776 mmap_array[i][j] = zalloc(
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300777 sizeof(struct mmap_data)*thread_num);
778 if (!fd[i][j] || !mmap_array[i][j])
779 return -ENOMEM;
780 }
781 }
782 event_array = malloc(
783 sizeof(struct pollfd)*MAX_NR_CPUS*MAX_COUNTERS*thread_num);
784 if (!event_array)
785 return -ENOMEM;
786
Frederic Weisbeckerf9212812010-04-14 22:09:02 +0200787 if (user_interval != UINT_MAX)
788 default_interval = user_interval;
789 if (user_freq != UINT_MAX)
790 freq = user_freq;
791
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +0200792 /*
793 * User specified count overrides default frequency.
794 */
795 if (default_interval)
796 freq = 0;
797 else if (freq) {
798 default_interval = freq;
799 } else {
800 fprintf(stderr, "frequency and count are zero, aborting\n");
801 exit(EXIT_FAILURE);
802 }
803
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200804 return __cmd_record(argc, argv);
805}