1da48a8fe9cc936f53f48f67b9251156451ecc5e
[pandora-kernel.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 #include "builtin.h"
9
10 #include "perf.h"
11
12 #include "util/util.h"
13 #include "util/parse-options.h"
14 #include "util/parse-events.h"
15 #include "util/string.h"
16
17 #include "util/header.h"
18 #include "util/event.h"
19 #include "util/debug.h"
20 #include "util/session.h"
21 #include "util/symbol.h"
22
23 #include <unistd.h>
24 #include <sched.h>
25
26 static int                      fd[MAX_NR_CPUS][MAX_COUNTERS];
27
28 static long                     default_interval                =      0;
29
30 static int                      nr_cpus                         =      0;
31 static unsigned int             page_size;
32 static unsigned int             mmap_pages                      =    128;
33 static int                      freq                            =   1000;
34 static int                      output;
35 static const char               *output_name                    = "perf.data";
36 static int                      group                           =      0;
37 static unsigned int             realtime_prio                   =      0;
38 static int                      raw_samples                     =      0;
39 static int                      system_wide                     =      0;
40 static int                      profile_cpu                     =     -1;
41 static pid_t                    target_pid                      =     -1;
42 static pid_t                    child_pid                       =     -1;
43 static int                      inherit                         =      1;
44 static int                      force                           =      0;
45 static int                      append_file                     =      0;
46 static int                      call_graph                      =      0;
47 static int                      inherit_stat                    =      0;
48 static int                      no_samples                      =      0;
49 static int                      sample_address                  =      0;
50 static int                      multiplex                       =      0;
51 static int                      multiplex_fd                    =     -1;
52
53 static long                     samples                         =      0;
54 static struct timeval           last_read;
55 static struct timeval           this_read;
56
57 static u64                      bytes_written                   =      0;
58
59 static struct pollfd            event_array[MAX_NR_CPUS * MAX_COUNTERS];
60
61 static int                      nr_poll                         =      0;
62 static int                      nr_cpu                          =      0;
63
64 static int                      file_new                        =      1;
65
66 static struct perf_session      *session;
67
68 struct mmap_data {
69         int                     counter;
70         void                    *base;
71         unsigned int            mask;
72         unsigned int            prev;
73 };
74
75 static struct mmap_data         mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
76
77 static unsigned long mmap_read_head(struct mmap_data *md)
78 {
79         struct perf_event_mmap_page *pc = md->base;
80         long head;
81
82         head = pc->data_head;
83         rmb();
84
85         return head;
86 }
87
88 static void mmap_write_tail(struct mmap_data *md, unsigned long tail)
89 {
90         struct perf_event_mmap_page *pc = md->base;
91
92         /*
93          * ensure all reads are done before we write the tail out.
94          */
95         /* mb(); */
96         pc->data_tail = tail;
97 }
98
99 static void write_output(void *buf, size_t size)
100 {
101         while (size) {
102                 int ret = write(output, buf, size);
103
104                 if (ret < 0)
105                         die("failed to write");
106
107                 size -= ret;
108                 buf += ret;
109
110                 bytes_written += ret;
111         }
112 }
113
114 static void write_event(event_t *buf, size_t size)
115 {
116         /*
117         * Add it to the list of DSOs, so that when we finish this
118          * record session we can pick the available build-ids.
119          */
120         if (buf->header.type == PERF_RECORD_MMAP)
121                 dsos__findnew(buf->mmap.filename);
122
123         write_output(buf, size);
124 }
125
126 static int process_synthesized_event(event_t *event,
127                                      struct perf_session *self __used)
128 {
129         write_event(event, event->header.size);
130         return 0;
131 }
132
133 static void mmap_read(struct mmap_data *md)
134 {
135         unsigned int head = mmap_read_head(md);
136         unsigned int old = md->prev;
137         unsigned char *data = md->base + page_size;
138         unsigned long size;
139         void *buf;
140         int diff;
141
142         gettimeofday(&this_read, NULL);
143
144         /*
145          * If we're further behind than half the buffer, there's a chance
146          * the writer will bite our tail and mess up the samples under us.
147          *
148          * If we somehow ended up ahead of the head, we got messed up.
149          *
150          * In either case, truncate and restart at head.
151          */
152         diff = head - old;
153         if (diff < 0) {
154                 struct timeval iv;
155                 unsigned long msecs;
156
157                 timersub(&this_read, &last_read, &iv);
158                 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
159
160                 fprintf(stderr, "WARNING: failed to keep up with mmap data."
161                                 "  Last read %lu msecs ago.\n", msecs);
162
163                 /*
164                  * head points to a known good entry, start there.
165                  */
166                 old = head;
167         }
168
169         last_read = this_read;
170
171         if (old != head)
172                 samples++;
173
174         size = head - old;
175
176         if ((old & md->mask) + size != (head & md->mask)) {
177                 buf = &data[old & md->mask];
178                 size = md->mask + 1 - (old & md->mask);
179                 old += size;
180
181                 write_event(buf, size);
182         }
183
184         buf = &data[old & md->mask];
185         size = head - old;
186         old += size;
187
188         write_event(buf, size);
189
190         md->prev = old;
191         mmap_write_tail(md, old);
192 }
193
194 static volatile int done = 0;
195 static volatile int signr = -1;
196
197 static void sig_handler(int sig)
198 {
199         done = 1;
200         signr = sig;
201 }
202
203 static void sig_atexit(void)
204 {
205         if (child_pid != -1)
206                 kill(child_pid, SIGTERM);
207
208         if (signr == -1)
209                 return;
210
211         signal(signr, SIG_DFL);
212         kill(getpid(), signr);
213 }
214
215 static int group_fd;
216
217 static struct perf_header_attr *get_header_attr(struct perf_event_attr *a, int nr)
218 {
219         struct perf_header_attr *h_attr;
220
221         if (nr < session->header.attrs) {
222                 h_attr = session->header.attr[nr];
223         } else {
224                 h_attr = perf_header_attr__new(a);
225                 if (h_attr != NULL)
226                         if (perf_header__add_attr(&session->header, h_attr) < 0) {
227                                 perf_header_attr__delete(h_attr);
228                                 h_attr = NULL;
229                         }
230         }
231
232         return h_attr;
233 }
234
235 static void create_counter(int counter, int cpu, pid_t pid)
236 {
237         char *filter = filters[counter];
238         struct perf_event_attr *attr = attrs + counter;
239         struct perf_header_attr *h_attr;
240         int track = !counter; /* only the first counter needs these */
241         int ret;
242         struct {
243                 u64 count;
244                 u64 time_enabled;
245                 u64 time_running;
246                 u64 id;
247         } read_data;
248
249         attr->read_format       = PERF_FORMAT_TOTAL_TIME_ENABLED |
250                                   PERF_FORMAT_TOTAL_TIME_RUNNING |
251                                   PERF_FORMAT_ID;
252
253         attr->sample_type       |= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
254
255         if (freq) {
256                 attr->sample_type       |= PERF_SAMPLE_PERIOD;
257                 attr->freq              = 1;
258                 attr->sample_freq       = freq;
259         }
260
261         if (no_samples)
262                 attr->sample_freq = 0;
263
264         if (inherit_stat)
265                 attr->inherit_stat = 1;
266
267         if (sample_address)
268                 attr->sample_type       |= PERF_SAMPLE_ADDR;
269
270         if (call_graph)
271                 attr->sample_type       |= PERF_SAMPLE_CALLCHAIN;
272
273         if (raw_samples) {
274                 attr->sample_type       |= PERF_SAMPLE_TIME;
275                 attr->sample_type       |= PERF_SAMPLE_RAW;
276                 attr->sample_type       |= PERF_SAMPLE_CPU;
277         }
278
279         attr->mmap              = track;
280         attr->comm              = track;
281         attr->inherit           = (cpu < 0) && inherit;
282         attr->disabled          = 1;
283
284 try_again:
285         fd[nr_cpu][counter] = sys_perf_event_open(attr, pid, cpu, group_fd, 0);
286
287         if (fd[nr_cpu][counter] < 0) {
288                 int err = errno;
289
290                 if (err == EPERM || err == EACCES)
291                         die("Permission error - are you root?\n");
292                 else if (err ==  ENODEV && profile_cpu != -1)
293                         die("No such device - did you specify an out-of-range profile CPU?\n");
294
295                 /*
296                  * If it's cycles then fall back to hrtimer
297                  * based cpu-clock-tick sw counter, which
298                  * is always available even if no PMU support:
299                  */
300                 if (attr->type == PERF_TYPE_HARDWARE
301                         && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
302
303                         if (verbose)
304                                 warning(" ... trying to fall back to cpu-clock-ticks\n");
305                         attr->type = PERF_TYPE_SOFTWARE;
306                         attr->config = PERF_COUNT_SW_CPU_CLOCK;
307                         goto try_again;
308                 }
309                 printf("\n");
310                 error("perfcounter syscall returned with %d (%s)\n",
311                         fd[nr_cpu][counter], strerror(err));
312
313 #if defined(__i386__) || defined(__x86_64__)
314                 if (attr->type == PERF_TYPE_HARDWARE && err == EOPNOTSUPP)
315                         die("No hardware sampling interrupt available. No APIC? If so then you can boot the kernel with the \"lapic\" boot parameter to force-enable it.\n");
316 #endif
317
318                 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
319                 exit(-1);
320         }
321
322         h_attr = get_header_attr(attr, counter);
323         if (h_attr == NULL)
324                 die("nomem\n");
325
326         if (!file_new) {
327                 if (memcmp(&h_attr->attr, attr, sizeof(*attr))) {
328                         fprintf(stderr, "incompatible append\n");
329                         exit(-1);
330                 }
331         }
332
333         if (read(fd[nr_cpu][counter], &read_data, sizeof(read_data)) == -1) {
334                 perror("Unable to read perf file descriptor\n");
335                 exit(-1);
336         }
337
338         if (perf_header_attr__add_id(h_attr, read_data.id) < 0) {
339                 pr_warning("Not enough memory to add id\n");
340                 exit(-1);
341         }
342
343         assert(fd[nr_cpu][counter] >= 0);
344         fcntl(fd[nr_cpu][counter], F_SETFL, O_NONBLOCK);
345
346         /*
347          * First counter acts as the group leader:
348          */
349         if (group && group_fd == -1)
350                 group_fd = fd[nr_cpu][counter];
351         if (multiplex && multiplex_fd == -1)
352                 multiplex_fd = fd[nr_cpu][counter];
353
354         if (multiplex && fd[nr_cpu][counter] != multiplex_fd) {
355
356                 ret = ioctl(fd[nr_cpu][counter], PERF_EVENT_IOC_SET_OUTPUT, multiplex_fd);
357                 assert(ret != -1);
358         } else {
359                 event_array[nr_poll].fd = fd[nr_cpu][counter];
360                 event_array[nr_poll].events = POLLIN;
361                 nr_poll++;
362
363                 mmap_array[nr_cpu][counter].counter = counter;
364                 mmap_array[nr_cpu][counter].prev = 0;
365                 mmap_array[nr_cpu][counter].mask = mmap_pages*page_size - 1;
366                 mmap_array[nr_cpu][counter].base = mmap(NULL, (mmap_pages+1)*page_size,
367                                 PROT_READ|PROT_WRITE, MAP_SHARED, fd[nr_cpu][counter], 0);
368                 if (mmap_array[nr_cpu][counter].base == MAP_FAILED) {
369                         error("failed to mmap with %d (%s)\n", errno, strerror(errno));
370                         exit(-1);
371                 }
372         }
373
374         if (filter != NULL) {
375                 ret = ioctl(fd[nr_cpu][counter],
376                             PERF_EVENT_IOC_SET_FILTER, filter);
377                 if (ret) {
378                         error("failed to set filter with %d (%s)\n", errno,
379                               strerror(errno));
380                         exit(-1);
381                 }
382         }
383
384         ioctl(fd[nr_cpu][counter], PERF_EVENT_IOC_ENABLE);
385 }
386
387 static void open_counters(int cpu, pid_t pid)
388 {
389         int counter;
390
391         group_fd = -1;
392         for (counter = 0; counter < nr_counters; counter++)
393                 create_counter(counter, cpu, pid);
394
395         nr_cpu++;
396 }
397
398 static void atexit_header(void)
399 {
400         session->header.data_size += bytes_written;
401
402         perf_header__write(&session->header, output, true);
403 }
404
405 static int __cmd_record(int argc, const char **argv)
406 {
407         int i, counter;
408         struct stat st;
409         pid_t pid = 0;
410         int flags;
411         int err;
412         unsigned long waking = 0;
413
414         page_size = sysconf(_SC_PAGE_SIZE);
415         nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
416         assert(nr_cpus <= MAX_NR_CPUS);
417         assert(nr_cpus >= 0);
418
419         atexit(sig_atexit);
420         signal(SIGCHLD, sig_handler);
421         signal(SIGINT, sig_handler);
422
423         if (!stat(output_name, &st) && st.st_size) {
424                 if (!force) {
425                         if (!append_file) {
426                                 pr_err("Error, output file %s exists, use -A "
427                                        "to append or -f to overwrite.\n",
428                                        output_name);
429                                 exit(-1);
430                         }
431                 } else {
432                         char oldname[PATH_MAX];
433                         snprintf(oldname, sizeof(oldname), "%s.old",
434                                  output_name);
435                         unlink(oldname);
436                         rename(output_name, oldname);
437                 }
438         } else {
439                 append_file = 0;
440         }
441
442         flags = O_CREAT|O_RDWR;
443         if (append_file)
444                 file_new = 0;
445         else
446                 flags |= O_TRUNC;
447
448         output = open(output_name, flags, S_IRUSR|S_IWUSR);
449         if (output < 0) {
450                 perror("failed to create output file");
451                 exit(-1);
452         }
453
454         session = perf_session__new(output_name, O_WRONLY, force);
455         if (session == NULL) {
456                 pr_err("Not enough memory for reading perf file header\n");
457                 return -1;
458         }
459
460         if (!file_new) {
461                 err = perf_header__read(&session->header, output);
462                 if (err < 0)
463                         return err;
464         }
465
466         if (raw_samples) {
467                 perf_header__set_feat(&session->header, HEADER_TRACE_INFO);
468         } else {
469                 for (i = 0; i < nr_counters; i++) {
470                         if (attrs[i].sample_type & PERF_SAMPLE_RAW) {
471                                 perf_header__set_feat(&session->header, HEADER_TRACE_INFO);
472                                 break;
473                         }
474                 }
475         }
476
477         atexit(atexit_header);
478
479         if (!system_wide) {
480                 pid = target_pid;
481                 if (pid == -1)
482                         pid = getpid();
483
484                 open_counters(profile_cpu, pid);
485         } else {
486                 if (profile_cpu != -1) {
487                         open_counters(profile_cpu, target_pid);
488                 } else {
489                         for (i = 0; i < nr_cpus; i++)
490                                 open_counters(i, target_pid);
491                 }
492         }
493
494         if (file_new) {
495                 err = perf_header__write(&session->header, output, false);
496                 if (err < 0)
497                         return err;
498         }
499
500         if (!system_wide)
501                 event__synthesize_thread(pid, process_synthesized_event,
502                                          session);
503         else
504                 event__synthesize_threads(process_synthesized_event, session);
505
506         if (target_pid == -1 && argc) {
507                 pid = fork();
508                 if (pid < 0)
509                         die("failed to fork");
510
511                 if (!pid) {
512                         if (execvp(argv[0], (char **)argv)) {
513                                 perror(argv[0]);
514                                 exit(-1);
515                         }
516                 } else {
517                         /*
518                          * Wait a bit for the execv'ed child to appear
519                          * and be updated in /proc
520                          * FIXME: Do you know a less heuristical solution?
521                          */
522                         usleep(1000);
523                         event__synthesize_thread(pid,
524                                                  process_synthesized_event,
525                                                  session);
526                 }
527
528                 child_pid = pid;
529         }
530
531         if (realtime_prio) {
532                 struct sched_param param;
533
534                 param.sched_priority = realtime_prio;
535                 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
536                         pr_err("Could not set realtime priority.\n");
537                         exit(-1);
538                 }
539         }
540
541         for (;;) {
542                 int hits = samples;
543
544                 for (i = 0; i < nr_cpu; i++) {
545                         for (counter = 0; counter < nr_counters; counter++) {
546                                 if (mmap_array[i][counter].base)
547                                         mmap_read(&mmap_array[i][counter]);
548                         }
549                 }
550
551                 if (hits == samples) {
552                         if (done)
553                                 break;
554                         err = poll(event_array, nr_poll, -1);
555                         waking++;
556                 }
557
558                 if (done) {
559                         for (i = 0; i < nr_cpu; i++) {
560                                 for (counter = 0; counter < nr_counters; counter++)
561                                         ioctl(fd[i][counter], PERF_EVENT_IOC_DISABLE);
562                         }
563                 }
564         }
565
566         fprintf(stderr, "[ perf record: Woken up %ld times to write data ]\n", waking);
567
568         /*
569          * Approximate RIP event size: 24 bytes.
570          */
571         fprintf(stderr,
572                 "[ perf record: Captured and wrote %.3f MB %s (~%lld samples) ]\n",
573                 (double)bytes_written / 1024.0 / 1024.0,
574                 output_name,
575                 bytes_written / 24);
576
577         return 0;
578 }
579
580 static const char * const record_usage[] = {
581         "perf record [<options>] [<command>]",
582         "perf record [<options>] -- <command> [<options>]",
583         NULL
584 };
585
586 static const struct option options[] = {
587         OPT_CALLBACK('e', "event", NULL, "event",
588                      "event selector. use 'perf list' to list available events",
589                      parse_events),
590         OPT_CALLBACK(0, "filter", NULL, "filter",
591                      "event filter", parse_filter),
592         OPT_INTEGER('p', "pid", &target_pid,
593                     "record events on existing pid"),
594         OPT_INTEGER('r', "realtime", &realtime_prio,
595                     "collect data with this RT SCHED_FIFO priority"),
596         OPT_BOOLEAN('R', "raw-samples", &raw_samples,
597                     "collect raw sample records from all opened counters"),
598         OPT_BOOLEAN('a', "all-cpus", &system_wide,
599                             "system-wide collection from all CPUs"),
600         OPT_BOOLEAN('A', "append", &append_file,
601                             "append to the output file to do incremental profiling"),
602         OPT_INTEGER('C', "profile_cpu", &profile_cpu,
603                             "CPU to profile on"),
604         OPT_BOOLEAN('f', "force", &force,
605                         "overwrite existing data file"),
606         OPT_LONG('c', "count", &default_interval,
607                     "event period to sample"),
608         OPT_STRING('o', "output", &output_name, "file",
609                     "output file name"),
610         OPT_BOOLEAN('i', "inherit", &inherit,
611                     "child tasks inherit counters"),
612         OPT_INTEGER('F', "freq", &freq,
613                     "profile at this frequency"),
614         OPT_INTEGER('m', "mmap-pages", &mmap_pages,
615                     "number of mmap data pages"),
616         OPT_BOOLEAN('g', "call-graph", &call_graph,
617                     "do call-graph (stack chain/backtrace) recording"),
618         OPT_BOOLEAN('v', "verbose", &verbose,
619                     "be more verbose (show counter open errors, etc)"),
620         OPT_BOOLEAN('s', "stat", &inherit_stat,
621                     "per thread counts"),
622         OPT_BOOLEAN('d', "data", &sample_address,
623                     "Sample addresses"),
624         OPT_BOOLEAN('n', "no-samples", &no_samples,
625                     "don't sample"),
626         OPT_BOOLEAN('M', "multiplex", &multiplex,
627                     "multiplex counter output in a single channel"),
628         OPT_END()
629 };
630
631 int cmd_record(int argc, const char **argv, const char *prefix __used)
632 {
633         int counter;
634
635         symbol__init();
636
637         argc = parse_options(argc, argv, options, record_usage,
638                 PARSE_OPT_STOP_AT_NON_OPTION);
639         if (!argc && target_pid == -1 && !system_wide)
640                 usage_with_options(record_usage, options);
641
642         if (!nr_counters) {
643                 nr_counters     = 1;
644                 attrs[0].type   = PERF_TYPE_HARDWARE;
645                 attrs[0].config = PERF_COUNT_HW_CPU_CYCLES;
646         }
647
648         /*
649          * User specified count overrides default frequency.
650          */
651         if (default_interval)
652                 freq = 0;
653         else if (freq) {
654                 default_interval = freq;
655         } else {
656                 fprintf(stderr, "frequency and count are zero, aborting\n");
657                 exit(EXIT_FAILURE);
658         }
659
660         for (counter = 0; counter < nr_counters; counter++) {
661                 if (attrs[counter].sample_period)
662                         continue;
663
664                 attrs[counter].sample_period = default_interval;
665         }
666
667         return __cmd_record(argc, argv);
668 }