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