perf record: No need to check for overwrites
[deliverable/linux.git] / tools / perf / builtin-record.c
CommitLineData
abaff32a 1/*
bf9e1876
IM
2 * 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.
abaff32a 7 */
b8f46c5a
XG
8#define _FILE_OFFSET_BITS 64
9
16f762a2 10#include "builtin.h"
bf9e1876
IM
11
12#include "perf.h"
13
6122e4e4 14#include "util/build-id.h"
6eda5838 15#include "util/util.h"
0e9b20b8 16#include "util/parse-options.h"
8ad8db37 17#include "util/parse-events.h"
6eda5838 18
7c6a1c65 19#include "util/header.h"
66e274f3 20#include "util/event.h"
361c99a6 21#include "util/evlist.h"
69aad6f1 22#include "util/evsel.h"
8f28827a 23#include "util/debug.h"
94c744b6 24#include "util/session.h"
8d06367f 25#include "util/symbol.h"
a12b51c4 26#include "util/cpumap.h"
fd78260b 27#include "util/thread_map.h"
7c6a1c65 28
97124d5e 29#include <unistd.h>
de9ac07b 30#include <sched.h>
a41794cd 31#include <sys/mman.h>
de9ac07b 32
69aad6f1 33#define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
0a27d7f9 34#define SID(e, x, y) xyarray__entry(e->id, x, y)
69aad6f1 35
7865e817
FW
36enum write_mode_t {
37 WRITE_FORCE,
38 WRITE_APPEND
39};
40
3de29cab
SE
41static u64 user_interval = ULLONG_MAX;
42static u64 default_interval = 0;
640c03ce 43static u64 sample_type;
a21ca2ca 44
60d567e2 45static struct cpu_map *cpus;
de9ac07b 46static unsigned int page_size;
42e59d7d 47static unsigned int mmap_pages = 128;
f9212819 48static unsigned int user_freq = UINT_MAX;
42e59d7d 49static int freq = 1000;
de9ac07b 50static int output;
529870e3 51static int pipe_output = 0;
d7065adb 52static const char *output_name = NULL;
42e59d7d 53static int group = 0;
1967936d 54static int realtime_prio = 0;
acac03fa 55static bool nodelay = false;
c0555642 56static bool raw_samples = false;
9c90a61c 57static bool sample_id_all_avail = true;
c0555642 58static bool system_wide = false;
42e59d7d 59static pid_t target_pid = -1;
d6d901c2 60static pid_t target_tid = -1;
5c98d466 61static struct thread_map *threads;
42e59d7d 62static pid_t child_pid = -1;
2e6cdf99 63static bool no_inherit = false;
7865e817 64static enum write_mode_t write_mode = WRITE_FORCE;
c0555642
IM
65static bool call_graph = false;
66static bool inherit_stat = false;
67static bool no_samples = false;
68static bool sample_address = false;
9c90a61c 69static bool sample_time = false;
a1ac1d3c 70static bool no_buildid = false;
baa2f6ce 71static bool no_buildid_cache = false;
361c99a6 72static struct perf_evlist *evsel_list;
42e59d7d
IM
73
74static long samples = 0;
42e59d7d 75static u64 bytes_written = 0;
a21ca2ca 76
42e59d7d 77static int file_new = 1;
6122e4e4 78static off_t post_processing_offset;
7c6a1c65 79
94c744b6 80static struct perf_session *session;
c45c6ea2 81static const char *cpu_list;
f5970550 82
9215545e
TZ
83static void advance_output(size_t size)
84{
85 bytes_written += size;
86}
87
f5970550
PZ
88static void write_output(void *buf, size_t size)
89{
90 while (size) {
91 int ret = write(output, buf, size);
92
93 if (ret < 0)
94 die("failed to write");
95
96 size -= ret;
97 buf += ret;
98
99 bytes_written += ret;
100 }
101}
102
d8f66248 103static int process_synthesized_event(event_t *event,
640c03ce 104 struct sample_data *sample __used,
d8f66248 105 struct perf_session *self __used)
234fbbf5 106{
6122e4e4 107 write_output(event, event->header.size);
234fbbf5
ACM
108 return 0;
109}
110
744bd8aa 111static void mmap_read(struct perf_mmap *md)
de9ac07b 112{
744bd8aa 113 unsigned int head = perf_mmap__read_head(md);
de9ac07b
PZ
114 unsigned int old = md->prev;
115 unsigned char *data = md->base + page_size;
116 unsigned long size;
117 void *buf;
de9ac07b 118
dc82009a
ACM
119 if (old == head)
120 return;
121
122 samples++;
de9ac07b
PZ
123
124 size = head - old;
125
126 if ((old & md->mask) + size != (head & md->mask)) {
127 buf = &data[old & md->mask];
128 size = md->mask + 1 - (old & md->mask);
129 old += size;
021e9f47 130
6122e4e4 131 write_output(buf, size);
de9ac07b
PZ
132 }
133
134 buf = &data[old & md->mask];
135 size = head - old;
136 old += size;
021e9f47 137
6122e4e4 138 write_output(buf, size);
de9ac07b
PZ
139
140 md->prev = old;
115d2d89 141 perf_mmap__write_tail(md, old);
de9ac07b
PZ
142}
143
144static volatile int done = 0;
f7b7c26e 145static volatile int signr = -1;
de9ac07b 146
16c8a109 147static void sig_handler(int sig)
de9ac07b 148{
16c8a109 149 done = 1;
f7b7c26e
PZ
150 signr = sig;
151}
152
153static void sig_atexit(void)
154{
5ffc8881 155 if (child_pid > 0)
933da83a
CW
156 kill(child_pid, SIGTERM);
157
18483b81 158 if (signr == -1 || signr == SIGUSR1)
f7b7c26e
PZ
159 return;
160
161 signal(signr, SIG_DFL);
162 kill(getpid(), signr);
de9ac07b
PZ
163}
164
cdd6c482 165static struct perf_header_attr *get_header_attr(struct perf_event_attr *a, int nr)
7c6a1c65
PZ
166{
167 struct perf_header_attr *h_attr;
168
94c744b6
ACM
169 if (nr < session->header.attrs) {
170 h_attr = session->header.attr[nr];
7c6a1c65
PZ
171 } else {
172 h_attr = perf_header_attr__new(a);
dc79c0fc 173 if (h_attr != NULL)
94c744b6 174 if (perf_header__add_attr(&session->header, h_attr) < 0) {
11deb1f9
ACM
175 perf_header_attr__delete(h_attr);
176 h_attr = NULL;
177 }
7c6a1c65
PZ
178 }
179
180 return h_attr;
181}
182
0a27d7f9 183static void create_counter(struct perf_evsel *evsel, int cpu)
de9ac07b 184{
69aad6f1
ACM
185 char *filter = evsel->filter;
186 struct perf_event_attr *attr = &evsel->attr;
7c6a1c65 187 struct perf_header_attr *h_attr;
0a27d7f9 188 struct perf_sample_id *sid;
d6d901c2 189 int thread_index;
c171b552 190 int ret;
dd7927f4
ACM
191
192 for (thread_index = 0; thread_index < threads->nr; thread_index++) {
193 h_attr = get_header_attr(attr, evsel->idx);
194 if (h_attr == NULL)
195 die("nomem\n");
196
197 if (!file_new) {
198 if (memcmp(&h_attr->attr, attr, sizeof(*attr))) {
199 fprintf(stderr, "incompatible append\n");
200 exit(-1);
201 }
202 }
203
0a27d7f9
ACM
204 sid = SID(evsel, cpu, thread_index);
205 if (perf_header_attr__add_id(h_attr, sid->id) < 0) {
dd7927f4
ACM
206 pr_warning("Not enough memory to add id\n");
207 exit(-1);
208 }
209
dd7927f4
ACM
210 if (filter != NULL) {
211 ret = ioctl(FD(evsel, cpu, thread_index),
212 PERF_EVENT_IOC_SET_FILTER, filter);
213 if (ret) {
214 error("failed to set filter with %d (%s)\n", errno,
215 strerror(errno));
216 exit(-1);
217 }
218 }
219 }
220
221 if (!sample_type)
222 sample_type = attr->sample_type;
223}
224
225static void config_attr(struct perf_evsel *evsel, struct perf_evlist *evlist)
226{
227 struct perf_event_attr *attr = &evsel->attr;
228 int track = !evsel->idx; /* only the first counter needs these */
7c6a1c65
PZ
229
230 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
231 PERF_FORMAT_TOTAL_TIME_RUNNING |
232 PERF_FORMAT_ID;
16c8a109 233
3a9f131f 234 attr->sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
3efa1cc9 235
361c99a6 236 if (evlist->nr_entries > 1)
8907fd60
EM
237 attr->sample_type |= PERF_SAMPLE_ID;
238
f9212819
FW
239 /*
240 * We default some events to a 1 default interval. But keep
241 * it a weak assumption overridable by the user.
242 */
243 if (!attr->sample_period || (user_freq != UINT_MAX &&
3de29cab 244 user_interval != ULLONG_MAX)) {
f9212819
FW
245 if (freq) {
246 attr->sample_type |= PERF_SAMPLE_PERIOD;
247 attr->freq = 1;
248 attr->sample_freq = freq;
249 } else {
250 attr->sample_period = default_interval;
251 }
1dba15e7 252 }
3efa1cc9 253
649c48a9
PZ
254 if (no_samples)
255 attr->sample_freq = 0;
256
257 if (inherit_stat)
258 attr->inherit_stat = 1;
259
3af9e859 260 if (sample_address) {
4bba828d 261 attr->sample_type |= PERF_SAMPLE_ADDR;
3af9e859
EM
262 attr->mmap_data = track;
263 }
4bba828d 264
3efa1cc9
IM
265 if (call_graph)
266 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
267
f60f3593
AS
268 if (system_wide)
269 attr->sample_type |= PERF_SAMPLE_CPU;
270
a43d3f08
ACM
271 if (sample_id_all_avail &&
272 (sample_time || system_wide || !no_inherit || cpu_list))
9c90a61c
ACM
273 attr->sample_type |= PERF_SAMPLE_TIME;
274
cd6feeea 275 if (raw_samples) {
6ddf259d 276 attr->sample_type |= PERF_SAMPLE_TIME;
daac07b2 277 attr->sample_type |= PERF_SAMPLE_RAW;
cd6feeea
IM
278 attr->sample_type |= PERF_SAMPLE_CPU;
279 }
f413cdb8 280
acac03fa
KS
281 if (nodelay) {
282 attr->watermark = 0;
283 attr->wakeup_events = 1;
284 }
285
a21ca2ca
IM
286 attr->mmap = track;
287 attr->comm = track;
dd7927f4 288
2e6cdf99 289 if (target_pid == -1 && target_tid == -1 && !system_wide) {
46be604b 290 attr->disabled = 1;
bedbfdea 291 attr->enable_on_exec = 1;
46be604b 292 }
dd7927f4 293}
bedbfdea 294
dd7927f4
ACM
295static void open_counters(struct perf_evlist *evlist)
296{
297 struct perf_evsel *pos;
298 int cpu;
299
300 list_for_each_entry(pos, &evlist->entries, node) {
301 struct perf_event_attr *attr = &pos->attr;
302 /*
303 * Check if parse_single_tracepoint_event has already asked for
304 * PERF_SAMPLE_TIME.
305 *
306 * XXX this is kludgy but short term fix for problems introduced by
307 * eac23d1c that broke 'perf script' by having different sample_types
308 * when using multiple tracepoint events when we use a perf binary
309 * that tries to use sample_id_all on an older kernel.
310 *
311 * We need to move counter creation to perf_session, support
312 * different sample_types, etc.
313 */
314 bool time_needed = attr->sample_type & PERF_SAMPLE_TIME;
d6d901c2 315
dd7927f4
ACM
316 config_attr(pos, evlist);
317retry_sample_id:
318 attr->sample_id_all = sample_id_all_avail ? 1 : 0;
319try_again:
320 if (perf_evsel__open(pos, cpus, threads, group, !no_inherit) < 0) {
d6d901c2
ZY
321 int err = errno;
322
323 if (err == EPERM || err == EACCES)
324 die("Permission error - are you root?\n"
325 "\t Consider tweaking"
326 " /proc/sys/kernel/perf_event_paranoid.\n");
c45c6ea2 327 else if (err == ENODEV && cpu_list) {
d6d901c2
ZY
328 die("No such device - did you specify"
329 " an out-of-range profile CPU?\n");
9c90a61c
ACM
330 } else if (err == EINVAL && sample_id_all_avail) {
331 /*
332 * Old kernel, no attr->sample_id_type_all field
333 */
334 sample_id_all_avail = false;
a43d3f08 335 if (!sample_time && !raw_samples && !time_needed)
eac23d1c
IM
336 attr->sample_type &= ~PERF_SAMPLE_TIME;
337
9c90a61c 338 goto retry_sample_id;
d6d901c2 339 }
3da297a6 340
d6d901c2
ZY
341 /*
342 * If it's cycles then fall back to hrtimer
343 * based cpu-clock-tick sw counter, which
344 * is always available even if no PMU support:
345 */
346 if (attr->type == PERF_TYPE_HARDWARE
347 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
348
349 if (verbose)
350 warning(" ... trying to fall back to cpu-clock-ticks\n");
351 attr->type = PERF_TYPE_SOFTWARE;
352 attr->config = PERF_COUNT_SW_CPU_CLOCK;
353 goto try_again;
354 }
355 printf("\n");
d9cf837e 356 error("sys_perf_event_open() syscall returned with %d (%s). /bin/dmesg may provide additional information.\n",
dd7927f4 357 err, strerror(err));
bfd45118
SK
358
359#if defined(__i386__) || defined(__x86_64__)
d6d901c2
ZY
360 if (attr->type == PERF_TYPE_HARDWARE && err == EOPNOTSUPP)
361 die("No hardware sampling interrupt available."
362 " No APIC? If so then you can boot the kernel"
363 " with the \"lapic\" boot parameter to"
364 " force-enable it.\n");
bfd45118
SK
365#endif
366
d6d901c2 367 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
c171b552
LZ
368 }
369 }
a43d3f08 370
0a27d7f9
ACM
371 if (perf_evlist__mmap(evlist, cpus, threads, mmap_pages, false) < 0)
372 die("failed to mmap with %d (%s)\n", errno, strerror(errno));
373
dd7927f4
ACM
374 for (cpu = 0; cpu < cpus->nr; ++cpu) {
375 list_for_each_entry(pos, &evlist->entries, node)
0a27d7f9 376 create_counter(pos, cpu);
dd7927f4 377 }
16c8a109
PZ
378}
379
6122e4e4
ACM
380static int process_buildids(void)
381{
382 u64 size = lseek(output, 0, SEEK_CUR);
383
9f591fd7
ACM
384 if (size == 0)
385 return 0;
386
6122e4e4
ACM
387 session->fd = output;
388 return __perf_session__process_events(session, post_processing_offset,
389 size - post_processing_offset,
390 size, &build_id__mark_dso_hit_ops);
391}
392
f5970550
PZ
393static void atexit_header(void)
394{
c7929e47
TZ
395 if (!pipe_output) {
396 session->header.data_size += bytes_written;
f5970550 397
baa2f6ce
ACM
398 if (!no_buildid)
399 process_buildids();
361c99a6 400 perf_header__write(&session->header, evsel_list, output, true);
39d17dac 401 perf_session__delete(session);
361c99a6 402 perf_evlist__delete(evsel_list);
d65a458b 403 symbol__exit();
c7929e47 404 }
f5970550
PZ
405}
406
23346f21 407static void event__synthesize_guest_os(struct machine *machine, void *data)
a1645ce1
ZY
408{
409 int err;
23346f21 410 struct perf_session *psession = data;
a1645ce1 411
23346f21 412 if (machine__is_host(machine))
a1645ce1
ZY
413 return;
414
415 /*
416 *As for guest kernel when processing subcommand record&report,
417 *we arrange module mmap prior to guest kernel mmap and trigger
418 *a preload dso because default guest module symbols are loaded
419 *from guest kallsyms instead of /lib/modules/XXX/XXX. This
420 *method is used to avoid symbol missing when the first addr is
421 *in module instead of in guest kernel.
422 */
423 err = event__synthesize_modules(process_synthesized_event,
23346f21 424 psession, machine);
a1645ce1
ZY
425 if (err < 0)
426 pr_err("Couldn't record guest kernel [%d]'s reference"
23346f21 427 " relocation symbol.\n", machine->pid);
a1645ce1 428
a1645ce1
ZY
429 /*
430 * We use _stext for guest kernel because guest kernel's /proc/kallsyms
431 * have no _text sometimes.
432 */
433 err = event__synthesize_kernel_mmap(process_synthesized_event,
23346f21 434 psession, machine, "_text");
a1645ce1
ZY
435 if (err < 0)
436 err = event__synthesize_kernel_mmap(process_synthesized_event,
23346f21 437 psession, machine, "_stext");
a1645ce1
ZY
438 if (err < 0)
439 pr_err("Couldn't record guest kernel [%d]'s reference"
23346f21 440 " relocation symbol.\n", machine->pid);
a1645ce1
ZY
441}
442
98402807
FW
443static struct perf_event_header finished_round_event = {
444 .size = sizeof(struct perf_event_header),
445 .type = PERF_RECORD_FINISHED_ROUND,
446};
447
448static void mmap_read_all(void)
449{
0e2e63dd 450 int i;
98402807 451
dd7927f4 452 for (i = 0; i < cpus->nr; i++) {
0a27d7f9
ACM
453 if (evsel_list->mmap[i].base)
454 mmap_read(&evsel_list->mmap[i]);
98402807
FW
455 }
456
457 if (perf_header__has_feat(&session->header, HEADER_TRACE_INFO))
458 write_output(&finished_round_event, sizeof(finished_round_event));
459}
460
d4db3f16 461static int __cmd_record(int argc, const char **argv)
16c8a109 462{
69aad6f1 463 int i;
abaff32a 464 struct stat st;
abaff32a 465 int flags;
4dc0a04b 466 int err;
8b412664 467 unsigned long waking = 0;
856e9660 468 int child_ready_pipe[2], go_pipe[2];
46be604b 469 const bool forks = argc > 0;
856e9660 470 char buf;
23346f21 471 struct machine *machine;
de9ac07b
PZ
472
473 page_size = sysconf(_SC_PAGE_SIZE);
de9ac07b 474
f5970550
PZ
475 atexit(sig_atexit);
476 signal(SIGCHLD, sig_handler);
477 signal(SIGINT, sig_handler);
18483b81 478 signal(SIGUSR1, sig_handler);
f5970550 479
d4db3f16 480 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
856e9660
PZ
481 perror("failed to create pipes");
482 exit(-1);
483 }
484
d7065adb
FBH
485 if (!output_name) {
486 if (!fstat(STDOUT_FILENO, &st) && S_ISFIFO(st.st_mode))
487 pipe_output = 1;
488 else
489 output_name = "perf.data";
490 }
491 if (output_name) {
492 if (!strcmp(output_name, "-"))
493 pipe_output = 1;
494 else if (!stat(output_name, &st) && st.st_size) {
495 if (write_mode == WRITE_FORCE) {
496 char oldname[PATH_MAX];
497 snprintf(oldname, sizeof(oldname), "%s.old",
498 output_name);
499 unlink(oldname);
500 rename(output_name, oldname);
501 }
502 } else if (write_mode == WRITE_APPEND) {
503 write_mode = WRITE_FORCE;
266e0e21 504 }
97124d5e
PZ
505 }
506
f887f301 507 flags = O_CREAT|O_RDWR;
7865e817 508 if (write_mode == WRITE_APPEND)
f5970550 509 file_new = 0;
abaff32a
IM
510 else
511 flags |= O_TRUNC;
512
529870e3
TZ
513 if (pipe_output)
514 output = STDOUT_FILENO;
515 else
516 output = open(output_name, flags, S_IRUSR | S_IWUSR);
de9ac07b
PZ
517 if (output < 0) {
518 perror("failed to create output file");
519 exit(-1);
520 }
521
7865e817 522 session = perf_session__new(output_name, O_WRONLY,
21ef97f0 523 write_mode == WRITE_FORCE, false, NULL);
94c744b6 524 if (session == NULL) {
a9a70bbc
ACM
525 pr_err("Not enough memory for reading perf file header\n");
526 return -1;
527 }
528
baa2f6ce
ACM
529 if (!no_buildid)
530 perf_header__set_feat(&session->header, HEADER_BUILD_ID);
531
4dc0a04b 532 if (!file_new) {
8dc58101 533 err = perf_header__read(session, output);
4dc0a04b 534 if (err < 0)
39d17dac 535 goto out_delete_session;
4dc0a04b
ACM
536 }
537
361c99a6 538 if (have_tracepoints(&evsel_list->entries))
94c744b6 539 perf_header__set_feat(&session->header, HEADER_TRACE_INFO);
03456a15 540
39d17dac
ACM
541 /*
542 * perf_session__delete(session) will be called at atexit_header()
543 */
f5970550
PZ
544 atexit(atexit_header);
545
d4db3f16 546 if (forks) {
46be604b 547 child_pid = fork();
2fb750e8 548 if (child_pid < 0) {
856e9660
PZ
549 perror("failed to fork");
550 exit(-1);
551 }
7c6a1c65 552
46be604b 553 if (!child_pid) {
529870e3
TZ
554 if (pipe_output)
555 dup2(2, 1);
856e9660
PZ
556 close(child_ready_pipe[0]);
557 close(go_pipe[1]);
558 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
559
560 /*
561 * Do a dummy execvp to get the PLT entry resolved,
562 * so we avoid the resolver overhead on the real
563 * execvp call.
564 */
565 execvp("", (char **)argv);
566
567 /*
568 * Tell the parent we're ready to go
569 */
570 close(child_ready_pipe[1]);
571
572 /*
573 * Wait until the parent tells us to go.
574 */
575 if (read(go_pipe[0], &buf, 1) == -1)
576 perror("unable to read pipe");
577
578 execvp(argv[0], (char **)argv);
579
580 perror(argv[0]);
18483b81 581 kill(getppid(), SIGUSR1);
856e9660 582 exit(-1);
0a5ac846 583 }
856e9660 584
d6d901c2 585 if (!system_wide && target_tid == -1 && target_pid == -1)
5c98d466 586 threads->map[0] = child_pid;
d6d901c2 587
856e9660
PZ
588 close(child_ready_pipe[1]);
589 close(go_pipe[0]);
590 /*
591 * wait for child to settle
592 */
593 if (read(child_ready_pipe[0], &buf, 1) == -1) {
594 perror("unable to read pipe");
595 exit(-1);
596 }
597 close(child_ready_pipe[0]);
598 }
599
dd7927f4 600 open_counters(evsel_list);
de9ac07b 601
640c03ce
ACM
602 perf_session__set_sample_type(session, sample_type);
603
529870e3
TZ
604 if (pipe_output) {
605 err = perf_header__write_pipe(output);
606 if (err < 0)
607 return err;
608 } else if (file_new) {
361c99a6
ACM
609 err = perf_header__write(&session->header, evsel_list,
610 output, false);
d5eed904
ACM
611 if (err < 0)
612 return err;
56b03f3c
ACM
613 }
614
6122e4e4
ACM
615 post_processing_offset = lseek(output, 0, SEEK_CUR);
616
9c90a61c
ACM
617 perf_session__set_sample_id_all(session, sample_id_all_avail);
618
2c46dbb5
TZ
619 if (pipe_output) {
620 err = event__synthesize_attrs(&session->header,
621 process_synthesized_event,
622 session);
623 if (err < 0) {
624 pr_err("Couldn't synthesize attrs.\n");
625 return err;
626 }
cd19a035
TZ
627
628 err = event__synthesize_event_types(process_synthesized_event,
629 session);
630 if (err < 0) {
631 pr_err("Couldn't synthesize event_types.\n");
632 return err;
633 }
9215545e 634
361c99a6 635 if (have_tracepoints(&evsel_list->entries)) {
63e0c771
TZ
636 /*
637 * FIXME err <= 0 here actually means that
638 * there were no tracepoints so its not really
639 * an error, just that we don't need to
640 * synthesize anything. We really have to
641 * return this more properly and also
642 * propagate errors that now are calling die()
643 */
361c99a6 644 err = event__synthesize_tracing_data(output, evsel_list,
63e0c771
TZ
645 process_synthesized_event,
646 session);
647 if (err <= 0) {
648 pr_err("Couldn't record tracing data.\n");
649 return err;
650 }
2c9faa06 651 advance_output(err);
63e0c771 652 }
2c46dbb5
TZ
653 }
654
23346f21
ACM
655 machine = perf_session__find_host_machine(session);
656 if (!machine) {
a1645ce1
ZY
657 pr_err("Couldn't find native kernel information.\n");
658 return -1;
659 }
660
56b03f3c 661 err = event__synthesize_kernel_mmap(process_synthesized_event,
23346f21 662 session, machine, "_text");
70162138
ACM
663 if (err < 0)
664 err = event__synthesize_kernel_mmap(process_synthesized_event,
23346f21 665 session, machine, "_stext");
c1a3a4b9
ACM
666 if (err < 0)
667 pr_err("Couldn't record kernel reference relocation symbol\n"
668 "Symbol resolution may be skewed if relocation was used (e.g. kexec).\n"
669 "Check /proc/kallsyms permission or run as root.\n");
b7cece76 670
a1645ce1 671 err = event__synthesize_modules(process_synthesized_event,
23346f21 672 session, machine);
c1a3a4b9
ACM
673 if (err < 0)
674 pr_err("Couldn't record kernel module information.\n"
675 "Symbol resolution may be skewed if relocation was used (e.g. kexec).\n"
676 "Check /proc/modules permission or run as root.\n");
677
a1645ce1 678 if (perf_guest)
23346f21 679 perf_session__process_machines(session, event__synthesize_guest_os);
7c6a1c65 680
cf103a14 681 if (!system_wide)
d6d901c2 682 event__synthesize_thread(target_tid, process_synthesized_event,
d8f66248 683 session);
234fbbf5 684 else
d8f66248 685 event__synthesize_threads(process_synthesized_event, session);
7c6a1c65 686
de9ac07b
PZ
687 if (realtime_prio) {
688 struct sched_param param;
689
690 param.sched_priority = realtime_prio;
691 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
6beba7ad 692 pr_err("Could not set realtime priority.\n");
de9ac07b
PZ
693 exit(-1);
694 }
695 }
696
856e9660
PZ
697 /*
698 * Let the child rip
699 */
d4db3f16
ACM
700 if (forks)
701 close(go_pipe[1]);
856e9660 702
649c48a9 703 for (;;) {
2debbc83 704 int hits = samples;
d6d901c2 705 int thread;
de9ac07b 706
98402807 707 mmap_read_all();
de9ac07b 708
649c48a9
PZ
709 if (hits == samples) {
710 if (done)
711 break;
5c581041 712 err = poll(evsel_list->pollfd, evsel_list->nr_fds, -1);
8b412664
PZ
713 waking++;
714 }
715
716 if (done) {
dd7927f4 717 for (i = 0; i < cpus->nr; i++) {
69aad6f1
ACM
718 struct perf_evsel *pos;
719
361c99a6 720 list_for_each_entry(pos, &evsel_list->entries, node) {
d6d901c2 721 for (thread = 0;
5c98d466 722 thread < threads->nr;
d6d901c2 723 thread++)
69aad6f1 724 ioctl(FD(pos, i, thread),
d6d901c2
ZY
725 PERF_EVENT_IOC_DISABLE);
726 }
8b412664 727 }
649c48a9 728 }
de9ac07b
PZ
729 }
730
18483b81 731 if (quiet || signr == SIGUSR1)
b44308f5
ACM
732 return 0;
733
8b412664
PZ
734 fprintf(stderr, "[ perf record: Woken up %ld times to write data ]\n", waking);
735
021e9f47
IM
736 /*
737 * Approximate RIP event size: 24 bytes.
738 */
739 fprintf(stderr,
9486aa38 740 "[ perf record: Captured and wrote %.3f MB %s (~%" PRIu64 " samples) ]\n",
021e9f47
IM
741 (double)bytes_written / 1024.0 / 1024.0,
742 output_name,
743 bytes_written / 24);
addc2785 744
de9ac07b 745 return 0;
39d17dac
ACM
746
747out_delete_session:
748 perf_session__delete(session);
749 return err;
de9ac07b 750}
0e9b20b8 751
0e9b20b8 752static const char * const record_usage[] = {
9e096753
MG
753 "perf record [<options>] [<command>]",
754 "perf record [<options>] -- <command> [<options>]",
0e9b20b8
IM
755 NULL
756};
757
7865e817
FW
758static bool force, append_file;
759
bca647aa 760const struct option record_options[] = {
361c99a6 761 OPT_CALLBACK('e', "event", &evsel_list, "event",
86847b62
TG
762 "event selector. use 'perf list' to list available events",
763 parse_events),
361c99a6 764 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
c171b552 765 "event filter", parse_filter),
0e9b20b8 766 OPT_INTEGER('p', "pid", &target_pid,
d6d901c2
ZY
767 "record events on existing process id"),
768 OPT_INTEGER('t', "tid", &target_tid,
769 "record events on existing thread id"),
0e9b20b8
IM
770 OPT_INTEGER('r', "realtime", &realtime_prio,
771 "collect data with this RT SCHED_FIFO priority"),
acac03fa
KS
772 OPT_BOOLEAN('D', "no-delay", &nodelay,
773 "collect data without buffering"),
daac07b2
FW
774 OPT_BOOLEAN('R', "raw-samples", &raw_samples,
775 "collect raw sample records from all opened counters"),
0e9b20b8
IM
776 OPT_BOOLEAN('a', "all-cpus", &system_wide,
777 "system-wide collection from all CPUs"),
abaff32a
IM
778 OPT_BOOLEAN('A', "append", &append_file,
779 "append to the output file to do incremental profiling"),
c45c6ea2
SE
780 OPT_STRING('C', "cpu", &cpu_list, "cpu",
781 "list of cpus to monitor"),
97124d5e 782 OPT_BOOLEAN('f', "force", &force,
7865e817 783 "overwrite existing data file (deprecated)"),
3de29cab 784 OPT_U64('c', "count", &user_interval, "event period to sample"),
abaff32a
IM
785 OPT_STRING('o', "output", &output_name, "file",
786 "output file name"),
2e6cdf99
SE
787 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
788 "child tasks do not inherit counters"),
1967936d
ACM
789 OPT_UINTEGER('F', "freq", &user_freq, "profile at this frequency"),
790 OPT_UINTEGER('m', "mmap-pages", &mmap_pages, "number of mmap data pages"),
3efa1cc9
IM
791 OPT_BOOLEAN('g', "call-graph", &call_graph,
792 "do call-graph (stack chain/backtrace) recording"),
c0555642 793 OPT_INCR('v', "verbose", &verbose,
3da297a6 794 "be more verbose (show counter open errors, etc)"),
b44308f5 795 OPT_BOOLEAN('q', "quiet", &quiet, "don't print any message"),
649c48a9
PZ
796 OPT_BOOLEAN('s', "stat", &inherit_stat,
797 "per thread counts"),
4bba828d
AB
798 OPT_BOOLEAN('d', "data", &sample_address,
799 "Sample addresses"),
9c90a61c 800 OPT_BOOLEAN('T', "timestamp", &sample_time, "Sample timestamps"),
649c48a9
PZ
801 OPT_BOOLEAN('n', "no-samples", &no_samples,
802 "don't sample"),
baa2f6ce 803 OPT_BOOLEAN('N', "no-buildid-cache", &no_buildid_cache,
a1ac1d3c 804 "do not update the buildid cache"),
baa2f6ce
ACM
805 OPT_BOOLEAN('B', "no-buildid", &no_buildid,
806 "do not collect buildids in perf.data"),
0e9b20b8
IM
807 OPT_END()
808};
809
f37a291c 810int cmd_record(int argc, const char **argv, const char *prefix __used)
0e9b20b8 811{
69aad6f1
ACM
812 int err = -ENOMEM;
813 struct perf_evsel *pos;
0e9b20b8 814
361c99a6
ACM
815 evsel_list = perf_evlist__new();
816 if (evsel_list == NULL)
817 return -ENOMEM;
818
bca647aa 819 argc = parse_options(argc, argv, record_options, record_usage,
655000e7 820 PARSE_OPT_STOP_AT_NON_OPTION);
d6d901c2 821 if (!argc && target_pid == -1 && target_tid == -1 &&
c45c6ea2 822 !system_wide && !cpu_list)
bca647aa 823 usage_with_options(record_usage, record_options);
0e9b20b8 824
7865e817
FW
825 if (force && append_file) {
826 fprintf(stderr, "Can't overwrite and append at the same time."
827 " You need to choose between -f and -A");
bca647aa 828 usage_with_options(record_usage, record_options);
7865e817
FW
829 } else if (append_file) {
830 write_mode = WRITE_APPEND;
831 } else {
832 write_mode = WRITE_FORCE;
833 }
834
655000e7 835 symbol__init();
baa2f6ce
ACM
836
837 if (no_buildid_cache || no_buildid)
a1ac1d3c 838 disable_buildid_cache();
655000e7 839
361c99a6
ACM
840 if (evsel_list->nr_entries == 0 &&
841 perf_evlist__add_default(evsel_list) < 0) {
69aad6f1
ACM
842 pr_err("Not enough memory for event selector list\n");
843 goto out_symbol_exit;
bbd36e5e 844 }
0e9b20b8 845
5c98d466 846 if (target_pid != -1)
d6d901c2 847 target_tid = target_pid;
d6d901c2 848
5c98d466
ACM
849 threads = thread_map__new(target_pid, target_tid);
850 if (threads == NULL) {
851 pr_err("Problems finding threads of monitor\n");
852 usage_with_options(record_usage, record_options);
d6d901c2
ZY
853 }
854
dd7927f4
ACM
855 if (target_tid != -1)
856 cpus = cpu_map__dummy_new();
857 else
858 cpus = cpu_map__new(cpu_list);
859
860 if (cpus == NULL)
861 usage_with_options(record_usage, record_options);
69aad6f1 862
361c99a6 863 list_for_each_entry(pos, &evsel_list->entries, node) {
5c98d466 864 if (perf_evsel__alloc_fd(pos, cpus->nr, threads->nr) < 0)
69aad6f1 865 goto out_free_fd;
ad7f4e3f
ACM
866 if (perf_header__push_event(pos->attr.config, event_name(pos)))
867 goto out_free_fd;
d6d901c2 868 }
5c581041
ACM
869
870 if (perf_evlist__alloc_pollfd(evsel_list, cpus->nr, threads->nr) < 0)
39d17dac 871 goto out_free_fd;
d6d901c2 872
3de29cab 873 if (user_interval != ULLONG_MAX)
f9212819
FW
874 default_interval = user_interval;
875 if (user_freq != UINT_MAX)
876 freq = user_freq;
877
7e4ff9e3
MG
878 /*
879 * User specified count overrides default frequency.
880 */
881 if (default_interval)
882 freq = 0;
883 else if (freq) {
884 default_interval = freq;
885 } else {
886 fprintf(stderr, "frequency and count are zero, aborting\n");
39d17dac 887 err = -EINVAL;
5c581041 888 goto out_free_fd;
7e4ff9e3
MG
889 }
890
39d17dac
ACM
891 err = __cmd_record(argc, argv);
892
39d17dac 893out_free_fd:
5c98d466
ACM
894 thread_map__delete(threads);
895 threads = NULL;
d65a458b
ACM
896out_symbol_exit:
897 symbol__exit();
39d17dac 898 return err;
0e9b20b8 899}
This page took 0.135707 seconds and 5 git commands to generate.