blob: b34de9291c271ab89a21ca449edf1738c32627fc [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>
Arnaldo Carvalho de Meloa41794c2010-05-18 18:29:23 -030028#include <sys/mman.h>
Peter Zijlstrade9ac072009-04-08 15:01:31 +020029
Frederic Weisbecker7865e812010-04-14 19:42:07 +020030enum write_mode_t {
31 WRITE_FORCE,
32 WRITE_APPEND
33};
34
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030035static int *fd[MAX_NR_CPUS][MAX_COUNTERS];
Ingo Molnara21ca2c2009-06-06 09:58:57 +020036
Stephane Eranian3de29ca2010-05-17 12:20:43 -030037static u64 user_interval = ULLONG_MAX;
38static u64 default_interval = 0;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020039static u64 sample_type;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020040
Ingo Molnar42e59d72009-10-06 15:14:21 +020041static int nr_cpus = 0;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020042static unsigned int page_size;
Ingo Molnar42e59d72009-10-06 15:14:21 +020043static unsigned int mmap_pages = 128;
Frederic Weisbeckerf9212812010-04-14 22:09:02 +020044static unsigned int user_freq = UINT_MAX;
Ingo Molnar42e59d72009-10-06 15:14:21 +020045static int freq = 1000;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020046static int output;
Tom Zanussi529870e2010-04-01 23:59:16 -050047static int pipe_output = 0;
Ingo Molnar23ac9cb2009-05-27 09:33:18 +020048static const char *output_name = "perf.data";
Ingo Molnar42e59d72009-10-06 15:14:21 +020049static int group = 0;
Arnaldo Carvalho de Melo19679362010-05-17 15:39:16 -030050static int realtime_prio = 0;
Ian Munsiec0555642010-04-13 18:37:33 +100051static bool raw_samples = false;
52static bool system_wide = false;
Ingo Molnar42e59d72009-10-06 15:14:21 +020053static pid_t target_pid = -1;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030054static pid_t target_tid = -1;
55static pid_t *all_tids = NULL;
56static int thread_num = 0;
Ingo Molnar42e59d72009-10-06 15:14:21 +020057static pid_t child_pid = -1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +020058static bool no_inherit = false;
Frederic Weisbecker7865e812010-04-14 19:42:07 +020059static enum write_mode_t write_mode = WRITE_FORCE;
Ian Munsiec0555642010-04-13 18:37:33 +100060static bool call_graph = false;
61static bool inherit_stat = false;
62static bool no_samples = false;
63static bool sample_address = false;
Stephane Eraniana1ac1d32010-06-17 11:39:01 +020064static bool no_buildid = false;
Arnaldo Carvalho de Melobaa2f6c2010-11-26 19:39:15 -020065static bool no_buildid_cache = false;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020066
Ingo Molnar42e59d72009-10-06 15:14:21 +020067static long samples = 0;
Ingo Molnar42e59d72009-10-06 15:14:21 +020068static u64 bytes_written = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020069
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030070static struct pollfd *event_array;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020071
Ingo Molnar42e59d72009-10-06 15:14:21 +020072static int nr_poll = 0;
73static int nr_cpu = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020074
Ingo Molnar42e59d72009-10-06 15:14:21 +020075static int file_new = 1;
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -020076static off_t post_processing_offset;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020077
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020078static struct perf_session *session;
Stephane Eranianc45c6ea2010-05-28 12:00:01 +020079static const char *cpu_list;
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
Peter Zijlstra0e2e63d2010-05-20 14:45:26 +020088static struct mmap_data mmap_array[MAX_NR_CPUS];
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
Tom Zanussi92155452010-04-01 23:59:21 -0500112static void advance_output(size_t size)
113{
114 bytes_written += size;
115}
116
Peter Zijlstraf5970552009-06-18 23:22:55 +0200117static void write_output(void *buf, size_t size)
118{
119 while (size) {
120 int ret = write(output, buf, size);
121
122 if (ret < 0)
123 die("failed to write");
124
125 size -= ret;
126 buf += ret;
127
128 bytes_written += ret;
129 }
130}
131
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200132static int process_synthesized_event(event_t *event,
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200133 struct sample_data *sample __used,
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200134 struct perf_session *self __used)
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200135{
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200136 write_output(event, event->header.size);
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200137 return 0;
138}
139
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200140static void mmap_read(struct mmap_data *md)
141{
142 unsigned int head = mmap_read_head(md);
143 unsigned int old = md->prev;
144 unsigned char *data = md->base + page_size;
145 unsigned long size;
146 void *buf;
147 int diff;
148
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200149 /*
150 * If we're further behind than half the buffer, there's a chance
Ingo Molnar2debbc82009-06-05 14:29:10 +0200151 * the writer will bite our tail and mess up the samples under us.
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200152 *
153 * If we somehow ended up ahead of the head, we got messed up.
154 *
155 * In either case, truncate and restart at head.
156 */
157 diff = head - old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200158 if (diff < 0) {
Russ Andersonef365ce2010-05-18 17:52:40 -0500159 fprintf(stderr, "WARNING: failed to keep up with mmap data\n");
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200160 /*
161 * head points to a known good entry, start there.
162 */
163 old = head;
164 }
165
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200166 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{
Ian Munsie5ffc8882010-06-09 18:38:00 +1000200 if (child_pid > 0)
Chris Wilson933da832009-10-04 01:35:01 +0100201 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
Frederic Weisbeckerf9212812010-04-14 22:09:02 +0200254 /*
255 * We default some events to a 1 default interval. But keep
256 * it a weak assumption overridable by the user.
257 */
258 if (!attr->sample_period || (user_freq != UINT_MAX &&
Stephane Eranian3de29ca2010-05-17 12:20:43 -0300259 user_interval != ULLONG_MAX)) {
Frederic Weisbeckerf9212812010-04-14 22:09:02 +0200260 if (freq) {
261 attr->sample_type |= PERF_SAMPLE_PERIOD;
262 attr->freq = 1;
263 attr->sample_freq = freq;
264 } else {
265 attr->sample_period = default_interval;
266 }
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200267 }
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200268
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200269 if (no_samples)
270 attr->sample_freq = 0;
271
272 if (inherit_stat)
273 attr->inherit_stat = 1;
274
Eric B Munson3af9e852010-05-18 15:30:49 +0100275 if (sample_address) {
Anton Blanchard4bba8282009-07-16 15:44:29 +0200276 attr->sample_type |= PERF_SAMPLE_ADDR;
Eric B Munson3af9e852010-05-18 15:30:49 +0100277 attr->mmap_data = track;
278 }
Anton Blanchard4bba8282009-07-16 15:44:29 +0200279
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200280 if (call_graph)
281 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
282
Arun Sharmaf60f3592010-06-04 11:27:10 -0300283 if (system_wide)
284 attr->sample_type |= PERF_SAMPLE_CPU;
285
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200286 if (raw_samples) {
Ingo Molnar6ddf2592009-09-03 12:00:22 +0200287 attr->sample_type |= PERF_SAMPLE_TIME;
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200288 attr->sample_type |= PERF_SAMPLE_RAW;
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200289 attr->sample_type |= PERF_SAMPLE_CPU;
290 }
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +0200291
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200292 if (!sample_type)
293 sample_type = attr->sample_type;
294
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200295 attr->mmap = track;
296 attr->comm = track;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200297 attr->inherit = !no_inherit;
298 if (target_pid == -1 && target_tid == -1 && !system_wide) {
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300299 attr->disabled = 1;
Eric B Munsonbedbfde2010-03-15 11:46:57 -0300300 attr->enable_on_exec = 1;
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300301 }
Eric B Munsonbedbfde2010-03-15 11:46:57 -0300302
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300303 for (thread_index = 0; thread_index < thread_num; thread_index++) {
Ingo Molnar3da297a2009-06-07 17:39:02 +0200304try_again:
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300305 fd[nr_cpu][counter][thread_index] = sys_perf_event_open(attr,
306 all_tids[thread_index], cpu, group_fd, 0);
Ingo Molnarf250c0302009-06-05 13:18:41 +0200307
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300308 if (fd[nr_cpu][counter][thread_index] < 0) {
309 int err = errno;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200310
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300311 if (err == EPERM || err == EACCES)
312 die("Permission error - are you root?\n"
313 "\t Consider tweaking"
314 " /proc/sys/kernel/perf_event_paranoid.\n");
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200315 else if (err == ENODEV && cpu_list) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300316 die("No such device - did you specify"
317 " an out-of-range profile CPU?\n");
318 }
Ingo Molnar3da297a2009-06-07 17:39:02 +0200319
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300320 /*
321 * If it's cycles then fall back to hrtimer
322 * based cpu-clock-tick sw counter, which
323 * is always available even if no PMU support:
324 */
325 if (attr->type == PERF_TYPE_HARDWARE
326 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
Ingo Molnar3da297a2009-06-07 17:39:02 +0200327
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300328 if (verbose)
329 warning(" ... trying to fall back to cpu-clock-ticks\n");
330 attr->type = PERF_TYPE_SOFTWARE;
331 attr->config = PERF_COUNT_SW_CPU_CLOCK;
332 goto try_again;
333 }
334 printf("\n");
Corey Ashfordd9cf8372010-11-19 17:37:24 -0800335 error("sys_perf_event_open() syscall returned with %d (%s). /bin/dmesg may provide additional information.\n",
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300336 fd[nr_cpu][counter][thread_index], strerror(err));
Simon Kaempfleinbfd45112009-11-16 15:25:53 +1000337
338#if defined(__i386__) || defined(__x86_64__)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300339 if (attr->type == PERF_TYPE_HARDWARE && err == EOPNOTSUPP)
340 die("No hardware sampling interrupt available."
341 " No APIC? If so then you can boot the kernel"
342 " with the \"lapic\" boot parameter to"
343 " force-enable it.\n");
Simon Kaempfleinbfd45112009-11-16 15:25:53 +1000344#endif
345
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300346 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200347 exit(-1);
348 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200349
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300350 h_attr = get_header_attr(attr, counter);
351 if (h_attr == NULL)
352 die("nomem\n");
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200353
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300354 if (!file_new) {
355 if (memcmp(&h_attr->attr, attr, sizeof(*attr))) {
356 fprintf(stderr, "incompatible append\n");
357 exit(-1);
358 }
359 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200360
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300361 if (read(fd[nr_cpu][counter][thread_index], &read_data, sizeof(read_data)) == -1) {
Matt Fleming0ab73682010-08-28 16:46:19 +0100362 perror("Unable to read perf file descriptor");
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200363 exit(-1);
364 }
Peter Zijlstra4502d772009-06-10 15:03:06 +0200365
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300366 if (perf_header_attr__add_id(h_attr, read_data.id) < 0) {
367 pr_warning("Not enough memory to add id\n");
Li Zefanc171b552009-10-15 11:22:07 +0800368 exit(-1);
369 }
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300370
371 assert(fd[nr_cpu][counter][thread_index] >= 0);
372 fcntl(fd[nr_cpu][counter][thread_index], F_SETFL, O_NONBLOCK);
373
374 /*
375 * First counter acts as the group leader:
376 */
377 if (group && group_fd == -1)
378 group_fd = fd[nr_cpu][counter][thread_index];
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300379
Peter Zijlstra0e2e63d2010-05-20 14:45:26 +0200380 if (counter || thread_index) {
381 ret = ioctl(fd[nr_cpu][counter][thread_index],
382 PERF_EVENT_IOC_SET_OUTPUT,
383 fd[nr_cpu][0][0]);
384 if (ret) {
385 error("failed to set output: %d (%s)\n", errno,
386 strerror(errno));
387 exit(-1);
388 }
389 } else {
390 mmap_array[nr_cpu].counter = counter;
391 mmap_array[nr_cpu].prev = 0;
392 mmap_array[nr_cpu].mask = mmap_pages*page_size - 1;
393 mmap_array[nr_cpu].base = mmap(NULL, (mmap_pages+1)*page_size,
394 PROT_READ|PROT_WRITE, MAP_SHARED, fd[nr_cpu][counter][thread_index], 0);
395 if (mmap_array[nr_cpu].base == MAP_FAILED) {
396 error("failed to mmap with %d (%s)\n", errno, strerror(errno));
397 exit(-1);
398 }
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300399
Peter Zijlstra0e2e63d2010-05-20 14:45:26 +0200400 event_array[nr_poll].fd = fd[nr_cpu][counter][thread_index];
401 event_array[nr_poll].events = POLLIN;
402 nr_poll++;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300403 }
404
405 if (filter != NULL) {
406 ret = ioctl(fd[nr_cpu][counter][thread_index],
407 PERF_EVENT_IOC_SET_FILTER, filter);
408 if (ret) {
409 error("failed to set filter with %d (%s)\n", errno,
410 strerror(errno));
411 exit(-1);
412 }
413 }
Li Zefanc171b552009-10-15 11:22:07 +0800414 }
Ingo Molnarf250c0302009-06-05 13:18:41 +0200415}
416
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300417static void open_counters(int cpu)
Ingo Molnarf250c0302009-06-05 13:18:41 +0200418{
419 int counter;
420
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200421 group_fd = -1;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200422 for (counter = 0; counter < nr_counters; counter++)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300423 create_counter(counter, cpu);
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200424
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200425 nr_cpu++;
426}
427
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200428static int process_buildids(void)
429{
430 u64 size = lseek(output, 0, SEEK_CUR);
431
Arnaldo Carvalho de Melo9f591fd2010-03-11 15:53:11 -0300432 if (size == 0)
433 return 0;
434
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200435 session->fd = output;
436 return __perf_session__process_events(session, post_processing_offset,
437 size - post_processing_offset,
438 size, &build_id__mark_dso_hit_ops);
439}
440
Peter Zijlstraf5970552009-06-18 23:22:55 +0200441static void atexit_header(void)
442{
Tom Zanussic7929e42010-04-01 23:59:22 -0500443 if (!pipe_output) {
444 session->header.data_size += bytes_written;
Peter Zijlstraf5970552009-06-18 23:22:55 +0200445
Arnaldo Carvalho de Melobaa2f6c2010-11-26 19:39:15 -0200446 if (!no_buildid)
447 process_buildids();
Tom Zanussic7929e42010-04-01 23:59:22 -0500448 perf_header__write(&session->header, output, true);
Arnaldo Carvalho de Melo39d17da2010-07-29 14:08:55 -0300449 perf_session__delete(session);
Arnaldo Carvalho de Melod65a4582010-07-30 18:31:28 -0300450 symbol__exit();
Tom Zanussic7929e42010-04-01 23:59:22 -0500451 }
Peter Zijlstraf5970552009-06-18 23:22:55 +0200452}
453
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300454static void event__synthesize_guest_os(struct machine *machine, void *data)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800455{
456 int err;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300457 struct perf_session *psession = data;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800458
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300459 if (machine__is_host(machine))
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800460 return;
461
462 /*
463 *As for guest kernel when processing subcommand record&report,
464 *we arrange module mmap prior to guest kernel mmap and trigger
465 *a preload dso because default guest module symbols are loaded
466 *from guest kallsyms instead of /lib/modules/XXX/XXX. This
467 *method is used to avoid symbol missing when the first addr is
468 *in module instead of in guest kernel.
469 */
470 err = event__synthesize_modules(process_synthesized_event,
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300471 psession, machine);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800472 if (err < 0)
473 pr_err("Couldn't record guest kernel [%d]'s reference"
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300474 " relocation symbol.\n", machine->pid);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800475
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800476 /*
477 * We use _stext for guest kernel because guest kernel's /proc/kallsyms
478 * have no _text sometimes.
479 */
480 err = event__synthesize_kernel_mmap(process_synthesized_event,
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300481 psession, machine, "_text");
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800482 if (err < 0)
483 err = event__synthesize_kernel_mmap(process_synthesized_event,
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300484 psession, machine, "_stext");
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800485 if (err < 0)
486 pr_err("Couldn't record guest kernel [%d]'s reference"
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300487 " relocation symbol.\n", machine->pid);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800488}
489
Frederic Weisbecker98402802010-05-02 22:05:29 +0200490static struct perf_event_header finished_round_event = {
491 .size = sizeof(struct perf_event_header),
492 .type = PERF_RECORD_FINISHED_ROUND,
493};
494
495static void mmap_read_all(void)
496{
Peter Zijlstra0e2e63d2010-05-20 14:45:26 +0200497 int i;
Frederic Weisbecker98402802010-05-02 22:05:29 +0200498
499 for (i = 0; i < nr_cpu; i++) {
Peter Zijlstra0e2e63d2010-05-20 14:45:26 +0200500 if (mmap_array[i].base)
501 mmap_read(&mmap_array[i]);
Frederic Weisbecker98402802010-05-02 22:05:29 +0200502 }
503
504 if (perf_header__has_feat(&session->header, HEADER_TRACE_INFO))
505 write_output(&finished_round_event, sizeof(finished_round_event));
506}
507
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200508static int __cmd_record(int argc, const char **argv)
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200509{
510 int i, counter;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200511 struct stat st;
Ingo Molnarabaff322009-06-02 22:59:57 +0200512 int flags;
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200513 int err;
Peter Zijlstra8b412662009-09-17 19:59:05 +0200514 unsigned long waking = 0;
Peter Zijlstra856e9662009-12-16 17:55:55 +0100515 int child_ready_pipe[2], go_pipe[2];
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300516 const bool forks = argc > 0;
Peter Zijlstra856e9662009-12-16 17:55:55 +0100517 char buf;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300518 struct machine *machine;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200519
520 page_size = sysconf(_SC_PAGE_SIZE);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200521
Peter Zijlstraf5970552009-06-18 23:22:55 +0200522 atexit(sig_atexit);
523 signal(SIGCHLD, sig_handler);
524 signal(SIGINT, sig_handler);
525
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200526 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
Peter Zijlstra856e9662009-12-16 17:55:55 +0100527 perror("failed to create pipes");
528 exit(-1);
529 }
530
Tom Zanussi529870e2010-04-01 23:59:16 -0500531 if (!strcmp(output_name, "-"))
532 pipe_output = 1;
533 else if (!stat(output_name, &st) && st.st_size) {
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200534 if (write_mode == WRITE_FORCE) {
Arnaldo Carvalho de Melob38d3462009-12-14 20:09:30 -0200535 char oldname[PATH_MAX];
536 snprintf(oldname, sizeof(oldname), "%s.old",
537 output_name);
538 unlink(oldname);
539 rename(output_name, oldname);
Pierre Habouzit266e0e22009-08-07 14:16:01 +0200540 }
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200541 } else if (write_mode == WRITE_APPEND) {
542 write_mode = WRITE_FORCE;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200543 }
544
Xiao Guangrongf887f302010-02-04 16:46:42 +0800545 flags = O_CREAT|O_RDWR;
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200546 if (write_mode == WRITE_APPEND)
Peter Zijlstraf5970552009-06-18 23:22:55 +0200547 file_new = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200548 else
549 flags |= O_TRUNC;
550
Tom Zanussi529870e2010-04-01 23:59:16 -0500551 if (pipe_output)
552 output = STDOUT_FILENO;
553 else
554 output = open(output_name, flags, S_IRUSR | S_IWUSR);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200555 if (output < 0) {
556 perror("failed to create output file");
557 exit(-1);
558 }
559
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200560 session = perf_session__new(output_name, O_WRONLY,
Tom Zanussi454c4072010-05-01 01:41:20 -0500561 write_mode == WRITE_FORCE, false);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200562 if (session == NULL) {
Arnaldo Carvalho de Meloa9a70bb2009-11-17 01:18:11 -0200563 pr_err("Not enough memory for reading perf file header\n");
564 return -1;
565 }
566
Arnaldo Carvalho de Melobaa2f6c2010-11-26 19:39:15 -0200567 if (!no_buildid)
568 perf_header__set_feat(&session->header, HEADER_BUILD_ID);
569
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200570 if (!file_new) {
Tom Zanussi8dc58102010-04-01 23:59:15 -0500571 err = perf_header__read(session, output);
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200572 if (err < 0)
Arnaldo Carvalho de Melo39d17da2010-07-29 14:08:55 -0300573 goto out_delete_session;
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200574 }
575
Tom Zanussidb620b12010-05-04 22:20:16 -0500576 if (have_tracepoints(attrs, nr_counters))
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200577 perf_header__set_feat(&session->header, HEADER_TRACE_INFO);
Frederic Weisbecker03456a12009-10-06 23:36:47 +0200578
Arnaldo Carvalho de Melo39d17da2010-07-29 14:08:55 -0300579 /*
580 * perf_session__delete(session) will be called at atexit_header()
581 */
Peter Zijlstraf5970552009-06-18 23:22:55 +0200582 atexit(atexit_header);
583
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200584 if (forks) {
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300585 child_pid = fork();
Borislav Petkov2fb750e2010-05-31 23:18:18 +0200586 if (child_pid < 0) {
Peter Zijlstra856e9662009-12-16 17:55:55 +0100587 perror("failed to fork");
588 exit(-1);
Jens Axboe0a5ac842009-08-12 11:18:01 +0200589 }
Peter Zijlstra856e9662009-12-16 17:55:55 +0100590
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300591 if (!child_pid) {
Tom Zanussi529870e2010-04-01 23:59:16 -0500592 if (pipe_output)
593 dup2(2, 1);
Peter Zijlstra856e9662009-12-16 17:55:55 +0100594 close(child_ready_pipe[0]);
595 close(go_pipe[1]);
596 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
597
598 /*
599 * Do a dummy execvp to get the PLT entry resolved,
600 * so we avoid the resolver overhead on the real
601 * execvp call.
602 */
603 execvp("", (char **)argv);
604
605 /*
606 * Tell the parent we're ready to go
607 */
608 close(child_ready_pipe[1]);
609
610 /*
611 * Wait until the parent tells us to go.
612 */
613 if (read(go_pipe[0], &buf, 1) == -1)
614 perror("unable to read pipe");
615
616 execvp(argv[0], (char **)argv);
617
618 perror(argv[0]);
619 exit(-1);
620 }
621
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300622 if (!system_wide && target_tid == -1 && target_pid == -1)
623 all_tids[0] = child_pid;
624
Peter Zijlstra856e9662009-12-16 17:55:55 +0100625 close(child_ready_pipe[1]);
626 close(go_pipe[0]);
627 /*
628 * wait for child to settle
629 */
630 if (read(child_ready_pipe[0], &buf, 1) == -1) {
631 perror("unable to read pipe");
632 exit(-1);
633 }
634 close(child_ready_pipe[0]);
635 }
636
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200637 nr_cpus = read_cpu_map(cpu_list);
638 if (nr_cpus < 1) {
Matt Fleming0ab73682010-08-28 16:46:19 +0100639 perror("failed to collect number of CPUs");
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200640 return -1;
641 }
642
643 if (!system_wide && no_inherit && !cpu_list) {
644 open_counters(-1);
Peter Zijlstra856e9662009-12-16 17:55:55 +0100645 } else {
646 for (i = 0; i < nr_cpus; i++)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300647 open_counters(cpumap[i]);
Jens Axboe0a5ac842009-08-12 11:18:01 +0200648 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200649
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200650 perf_session__set_sample_type(session, sample_type);
651
Tom Zanussi529870e2010-04-01 23:59:16 -0500652 if (pipe_output) {
653 err = perf_header__write_pipe(output);
654 if (err < 0)
655 return err;
656 } else if (file_new) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200657 err = perf_header__write(&session->header, output, false);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -0200658 if (err < 0)
659 return err;
660 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200661
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200662 post_processing_offset = lseek(output, 0, SEEK_CUR);
663
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500664 if (pipe_output) {
665 err = event__synthesize_attrs(&session->header,
666 process_synthesized_event,
667 session);
668 if (err < 0) {
669 pr_err("Couldn't synthesize attrs.\n");
670 return err;
671 }
Tom Zanussicd19a032010-04-01 23:59:20 -0500672
673 err = event__synthesize_event_types(process_synthesized_event,
674 session);
675 if (err < 0) {
676 pr_err("Couldn't synthesize event_types.\n");
677 return err;
678 }
Tom Zanussi92155452010-04-01 23:59:21 -0500679
Tom Zanussi63e0c772010-05-03 00:14:48 -0500680 if (have_tracepoints(attrs, nr_counters)) {
681 /*
682 * FIXME err <= 0 here actually means that
683 * there were no tracepoints so its not really
684 * an error, just that we don't need to
685 * synthesize anything. We really have to
686 * return this more properly and also
687 * propagate errors that now are calling die()
688 */
689 err = event__synthesize_tracing_data(output, attrs,
690 nr_counters,
691 process_synthesized_event,
692 session);
693 if (err <= 0) {
694 pr_err("Couldn't record tracing data.\n");
695 return err;
696 }
Arnaldo Carvalho de Melo2c9faa02010-05-02 13:37:24 -0300697 advance_output(err);
Tom Zanussi63e0c772010-05-03 00:14:48 -0500698 }
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500699 }
700
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300701 machine = perf_session__find_host_machine(session);
702 if (!machine) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800703 pr_err("Couldn't find native kernel information.\n");
704 return -1;
705 }
706
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200707 err = event__synthesize_kernel_mmap(process_synthesized_event,
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300708 session, machine, "_text");
Arnaldo Carvalho de Melo70162132010-03-30 18:27:39 -0300709 if (err < 0)
710 err = event__synthesize_kernel_mmap(process_synthesized_event,
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300711 session, machine, "_stext");
Arnaldo Carvalho de Meloc1a3a4b2010-11-22 14:01:55 -0200712 if (err < 0)
713 pr_err("Couldn't record kernel reference relocation symbol\n"
714 "Symbol resolution may be skewed if relocation was used (e.g. kexec).\n"
715 "Check /proc/kallsyms permission or run as root.\n");
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200716
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800717 err = event__synthesize_modules(process_synthesized_event,
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300718 session, machine);
Arnaldo Carvalho de Meloc1a3a4b2010-11-22 14:01:55 -0200719 if (err < 0)
720 pr_err("Couldn't record kernel module information.\n"
721 "Symbol resolution may be skewed if relocation was used (e.g. kexec).\n"
722 "Check /proc/modules permission or run as root.\n");
723
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800724 if (perf_guest)
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300725 perf_session__process_machines(session, event__synthesize_guest_os);
Arnaldo Carvalho de Melob7cece72010-01-13 13:22:17 -0200726
Stephane Eraniancf103a12010-06-16 20:59:01 +0200727 if (!system_wide)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300728 event__synthesize_thread(target_tid, process_synthesized_event,
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200729 session);
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200730 else
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200731 event__synthesize_threads(process_synthesized_event, session);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200732
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200733 if (realtime_prio) {
734 struct sched_param param;
735
736 param.sched_priority = realtime_prio;
737 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200738 pr_err("Could not set realtime priority.\n");
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200739 exit(-1);
740 }
741 }
742
Peter Zijlstra856e9662009-12-16 17:55:55 +0100743 /*
744 * Let the child rip
745 */
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200746 if (forks)
747 close(go_pipe[1]);
Peter Zijlstra856e9662009-12-16 17:55:55 +0100748
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200749 for (;;) {
Ingo Molnar2debbc82009-06-05 14:29:10 +0200750 int hits = samples;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300751 int thread;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200752
Frederic Weisbecker98402802010-05-02 22:05:29 +0200753 mmap_read_all();
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200754
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200755 if (hits == samples) {
756 if (done)
757 break;
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200758 err = poll(event_array, nr_poll, -1);
Peter Zijlstra8b412662009-09-17 19:59:05 +0200759 waking++;
760 }
761
762 if (done) {
763 for (i = 0; i < nr_cpu; i++) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300764 for (counter = 0;
765 counter < nr_counters;
766 counter++) {
767 for (thread = 0;
768 thread < thread_num;
769 thread++)
770 ioctl(fd[i][counter][thread],
771 PERF_EVENT_IOC_DISABLE);
772 }
Peter Zijlstra8b412662009-09-17 19:59:05 +0200773 }
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200774 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200775 }
776
Arnaldo Carvalho de Melob44308f2010-10-26 15:20:09 -0200777 if (quiet)
778 return 0;
779
Peter Zijlstra8b412662009-09-17 19:59:05 +0200780 fprintf(stderr, "[ perf record: Woken up %ld times to write data ]\n", waking);
781
Ingo Molnar021e9f42009-06-03 19:27:19 +0200782 /*
783 * Approximate RIP event size: 24 bytes.
784 */
785 fprintf(stderr,
Ingo Molnar2debbc82009-06-05 14:29:10 +0200786 "[ perf record: Captured and wrote %.3f MB %s (~%lld samples) ]\n",
Ingo Molnar021e9f42009-06-03 19:27:19 +0200787 (double)bytes_written / 1024.0 / 1024.0,
788 output_name,
789 bytes_written / 24);
Ingo Molnaraddc2782009-06-02 23:43:11 +0200790
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200791 return 0;
Arnaldo Carvalho de Melo39d17da2010-07-29 14:08:55 -0300792
793out_delete_session:
794 perf_session__delete(session);
795 return err;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200796}
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200797
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200798static const char * const record_usage[] = {
Mike Galbraith9e0967532009-05-28 16:25:34 +0200799 "perf record [<options>] [<command>]",
800 "perf record [<options>] -- <command> [<options>]",
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200801 NULL
802};
803
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200804static bool force, append_file;
805
Tom Zanussibca647a2010-11-10 08:11:30 -0600806const struct option record_options[] = {
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200807 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200808 "event selector. use 'perf list' to list available events",
809 parse_events),
Li Zefanc171b552009-10-15 11:22:07 +0800810 OPT_CALLBACK(0, "filter", NULL, "filter",
811 "event filter", parse_filter),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200812 OPT_INTEGER('p', "pid", &target_pid,
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300813 "record events on existing process id"),
814 OPT_INTEGER('t', "tid", &target_tid,
815 "record events on existing thread id"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200816 OPT_INTEGER('r', "realtime", &realtime_prio,
817 "collect data with this RT SCHED_FIFO priority"),
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200818 OPT_BOOLEAN('R', "raw-samples", &raw_samples,
819 "collect raw sample records from all opened counters"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200820 OPT_BOOLEAN('a', "all-cpus", &system_wide,
821 "system-wide collection from all CPUs"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200822 OPT_BOOLEAN('A', "append", &append_file,
823 "append to the output file to do incremental profiling"),
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200824 OPT_STRING('C', "cpu", &cpu_list, "cpu",
825 "list of cpus to monitor"),
Peter Zijlstra97124d52009-06-02 15:52:24 +0200826 OPT_BOOLEAN('f', "force", &force,
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200827 "overwrite existing data file (deprecated)"),
Stephane Eranian3de29ca2010-05-17 12:20:43 -0300828 OPT_U64('c', "count", &user_interval, "event period to sample"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200829 OPT_STRING('o', "output", &output_name, "file",
830 "output file name"),
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200831 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
832 "child tasks do not inherit counters"),
Arnaldo Carvalho de Melo19679362010-05-17 15:39:16 -0300833 OPT_UINTEGER('F', "freq", &user_freq, "profile at this frequency"),
834 OPT_UINTEGER('m', "mmap-pages", &mmap_pages, "number of mmap data pages"),
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200835 OPT_BOOLEAN('g', "call-graph", &call_graph,
836 "do call-graph (stack chain/backtrace) recording"),
Ian Munsiec0555642010-04-13 18:37:33 +1000837 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar3da297a2009-06-07 17:39:02 +0200838 "be more verbose (show counter open errors, etc)"),
Arnaldo Carvalho de Melob44308f2010-10-26 15:20:09 -0200839 OPT_BOOLEAN('q', "quiet", &quiet, "don't print any message"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200840 OPT_BOOLEAN('s', "stat", &inherit_stat,
841 "per thread counts"),
Anton Blanchard4bba8282009-07-16 15:44:29 +0200842 OPT_BOOLEAN('d', "data", &sample_address,
843 "Sample addresses"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200844 OPT_BOOLEAN('n', "no-samples", &no_samples,
845 "don't sample"),
Arnaldo Carvalho de Melobaa2f6c2010-11-26 19:39:15 -0200846 OPT_BOOLEAN('N', "no-buildid-cache", &no_buildid_cache,
Stephane Eraniana1ac1d32010-06-17 11:39:01 +0200847 "do not update the buildid cache"),
Arnaldo Carvalho de Melobaa2f6c2010-11-26 19:39:15 -0200848 OPT_BOOLEAN('B', "no-buildid", &no_buildid,
849 "do not collect buildids in perf.data"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200850 OPT_END()
851};
852
Ingo Molnarf37a2912009-07-01 12:37:06 +0200853int cmd_record(int argc, const char **argv, const char *prefix __used)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200854{
Arnaldo Carvalho de Melo39d17da2010-07-29 14:08:55 -0300855 int i, j, err = -ENOMEM;
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200856
Tom Zanussibca647a2010-11-10 08:11:30 -0600857 argc = parse_options(argc, argv, record_options, record_usage,
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200858 PARSE_OPT_STOP_AT_NON_OPTION);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300859 if (!argc && target_pid == -1 && target_tid == -1 &&
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200860 !system_wide && !cpu_list)
Tom Zanussibca647a2010-11-10 08:11:30 -0600861 usage_with_options(record_usage, record_options);
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200862
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200863 if (force && append_file) {
864 fprintf(stderr, "Can't overwrite and append at the same time."
865 " You need to choose between -f and -A");
Tom Zanussibca647a2010-11-10 08:11:30 -0600866 usage_with_options(record_usage, record_options);
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200867 } else if (append_file) {
868 write_mode = WRITE_APPEND;
869 } else {
870 write_mode = WRITE_FORCE;
871 }
872
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200873 symbol__init();
Arnaldo Carvalho de Melobaa2f6c2010-11-26 19:39:15 -0200874
875 if (no_buildid_cache || no_buildid)
Stephane Eraniana1ac1d32010-06-17 11:39:01 +0200876 disable_buildid_cache();
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200877
Peter Zijlstrabbd36e52009-06-11 23:11:50 +0200878 if (!nr_counters) {
879 nr_counters = 1;
880 attrs[0].type = PERF_TYPE_HARDWARE;
881 attrs[0].config = PERF_COUNT_HW_CPU_CYCLES;
882 }
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200883
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300884 if (target_pid != -1) {
885 target_tid = target_pid;
886 thread_num = find_all_tid(target_pid, &all_tids);
887 if (thread_num <= 0) {
888 fprintf(stderr, "Can't find all threads of pid %d\n",
889 target_pid);
Tom Zanussibca647a2010-11-10 08:11:30 -0600890 usage_with_options(record_usage, record_options);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300891 }
892 } else {
893 all_tids=malloc(sizeof(pid_t));
894 if (!all_tids)
Arnaldo Carvalho de Melod65a4582010-07-30 18:31:28 -0300895 goto out_symbol_exit;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300896
897 all_tids[0] = target_tid;
898 thread_num = 1;
899 }
900
901 for (i = 0; i < MAX_NR_CPUS; i++) {
902 for (j = 0; j < MAX_COUNTERS; j++) {
903 fd[i][j] = malloc(sizeof(int)*thread_num);
Peter Zijlstra0e2e63d2010-05-20 14:45:26 +0200904 if (!fd[i][j])
Arnaldo Carvalho de Melo39d17da2010-07-29 14:08:55 -0300905 goto out_free_fd;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300906 }
907 }
908 event_array = malloc(
909 sizeof(struct pollfd)*MAX_NR_CPUS*MAX_COUNTERS*thread_num);
910 if (!event_array)
Arnaldo Carvalho de Melo39d17da2010-07-29 14:08:55 -0300911 goto out_free_fd;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300912
Stephane Eranian3de29ca2010-05-17 12:20:43 -0300913 if (user_interval != ULLONG_MAX)
Frederic Weisbeckerf9212812010-04-14 22:09:02 +0200914 default_interval = user_interval;
915 if (user_freq != UINT_MAX)
916 freq = user_freq;
917
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +0200918 /*
919 * User specified count overrides default frequency.
920 */
921 if (default_interval)
922 freq = 0;
923 else if (freq) {
924 default_interval = freq;
925 } else {
926 fprintf(stderr, "frequency and count are zero, aborting\n");
Arnaldo Carvalho de Melo39d17da2010-07-29 14:08:55 -0300927 err = -EINVAL;
928 goto out_free_event_array;
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +0200929 }
930
Arnaldo Carvalho de Melo39d17da2010-07-29 14:08:55 -0300931 err = __cmd_record(argc, argv);
932
933out_free_event_array:
934 free(event_array);
935out_free_fd:
936 for (i = 0; i < MAX_NR_CPUS; i++) {
937 for (j = 0; j < MAX_COUNTERS; j++)
938 free(fd[i][j]);
939 }
940 free(all_tids);
941 all_tids = NULL;
Arnaldo Carvalho de Melod65a4582010-07-30 18:31:28 -0300942out_symbol_exit:
943 symbol__exit();
Arnaldo Carvalho de Melo39d17da2010-07-29 14:08:55 -0300944 return err;
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200945}