perf_counter tools: Clean up u64 usage
[linux-2.6/x86.git] / tools / perf / builtin-record.c
blob84cd336ae79bc28e9b38f79ae6c8db016dfaa962
1 /*
2 * builtin-record.c
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"
10 #include "perf.h"
12 #include "util/util.h"
13 #include "util/parse-options.h"
14 #include "util/parse-events.h"
15 #include "util/string.h"
17 #include <unistd.h>
18 #include <sched.h>
20 #define ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a)-1)
21 #define __ALIGN_MASK(x, mask) (((x)+(mask))&~(mask))
23 static int fd[MAX_NR_CPUS][MAX_COUNTERS];
25 static long default_interval = 100000;
27 static int nr_cpus = 0;
28 static unsigned int page_size;
29 static unsigned int mmap_pages = 128;
30 static int freq = 0;
31 static int output;
32 static const char *output_name = "perf.data";
33 static int group = 0;
34 static unsigned int realtime_prio = 0;
35 static int system_wide = 0;
36 static pid_t target_pid = -1;
37 static int inherit = 1;
38 static int force = 0;
39 static int append_file = 0;
40 static int verbose = 0;
42 static long samples;
43 static struct timeval last_read;
44 static struct timeval this_read;
46 static __u64 bytes_written;
48 static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS];
50 static int nr_poll;
51 static int nr_cpu;
53 struct mmap_event {
54 struct perf_event_header header;
55 __u32 pid;
56 __u32 tid;
57 __u64 start;
58 __u64 len;
59 __u64 pgoff;
60 char filename[PATH_MAX];
63 struct comm_event {
64 struct perf_event_header header;
65 __u32 pid;
66 __u32 tid;
67 char comm[16];
71 struct mmap_data {
72 int counter;
73 void *base;
74 unsigned int mask;
75 unsigned int prev;
78 static struct mmap_data mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
80 static unsigned int mmap_read_head(struct mmap_data *md)
82 struct perf_counter_mmap_page *pc = md->base;
83 int head;
85 head = pc->data_head;
86 rmb();
88 return head;
91 static void mmap_read(struct mmap_data *md)
93 unsigned int head = mmap_read_head(md);
94 unsigned int old = md->prev;
95 unsigned char *data = md->base + page_size;
96 unsigned long size;
97 void *buf;
98 int diff;
100 gettimeofday(&this_read, NULL);
103 * If we're further behind than half the buffer, there's a chance
104 * the writer will bite our tail and mess up the samples under us.
106 * If we somehow ended up ahead of the head, we got messed up.
108 * In either case, truncate and restart at head.
110 diff = head - old;
111 if (diff > md->mask / 2 || diff < 0) {
112 struct timeval iv;
113 unsigned long msecs;
115 timersub(&this_read, &last_read, &iv);
116 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
118 fprintf(stderr, "WARNING: failed to keep up with mmap data."
119 " Last read %lu msecs ago.\n", msecs);
122 * head points to a known good entry, start there.
124 old = head;
127 last_read = this_read;
129 if (old != head)
130 samples++;
132 size = head - old;
134 if ((old & md->mask) + size != (head & md->mask)) {
135 buf = &data[old & md->mask];
136 size = md->mask + 1 - (old & md->mask);
137 old += size;
139 while (size) {
140 int ret = write(output, buf, size);
142 if (ret < 0)
143 die("failed to write");
145 size -= ret;
146 buf += ret;
148 bytes_written += ret;
152 buf = &data[old & md->mask];
153 size = head - old;
154 old += size;
156 while (size) {
157 int ret = write(output, buf, size);
159 if (ret < 0)
160 die("failed to write");
162 size -= ret;
163 buf += ret;
165 bytes_written += ret;
168 md->prev = old;
171 static volatile int done = 0;
172 static volatile int signr = -1;
174 static void sig_handler(int sig)
176 done = 1;
177 signr = sig;
180 static void sig_atexit(void)
182 if (signr == -1)
183 return;
185 signal(signr, SIG_DFL);
186 kill(getpid(), signr);
189 static void pid_synthesize_comm_event(pid_t pid, int full)
191 struct comm_event comm_ev;
192 char filename[PATH_MAX];
193 char bf[BUFSIZ];
194 int fd, ret;
195 size_t size;
196 char *field, *sep;
197 DIR *tasks;
198 struct dirent dirent, *next;
200 snprintf(filename, sizeof(filename), "/proc/%d/stat", pid);
202 fd = open(filename, O_RDONLY);
203 if (fd < 0) {
204 fprintf(stderr, "couldn't open %s\n", filename);
205 exit(EXIT_FAILURE);
207 if (read(fd, bf, sizeof(bf)) < 0) {
208 fprintf(stderr, "couldn't read %s\n", filename);
209 exit(EXIT_FAILURE);
211 close(fd);
213 /* 9027 (cat) R 6747 9027 6747 34816 9027 ... */
214 memset(&comm_ev, 0, sizeof(comm_ev));
215 field = strchr(bf, '(');
216 if (field == NULL)
217 goto out_failure;
218 sep = strchr(++field, ')');
219 if (sep == NULL)
220 goto out_failure;
221 size = sep - field;
222 memcpy(comm_ev.comm, field, size++);
224 comm_ev.pid = pid;
225 comm_ev.header.type = PERF_EVENT_COMM;
226 size = ALIGN(size, sizeof(__u64));
227 comm_ev.header.size = sizeof(comm_ev) - (sizeof(comm_ev.comm) - size);
229 if (!full) {
230 comm_ev.tid = pid;
232 ret = write(output, &comm_ev, comm_ev.header.size);
233 if (ret < 0) {
234 perror("failed to write");
235 exit(-1);
237 return;
240 snprintf(filename, sizeof(filename), "/proc/%d/task", pid);
242 tasks = opendir(filename);
243 while (!readdir_r(tasks, &dirent, &next) && next) {
244 char *end;
245 pid = strtol(dirent.d_name, &end, 10);
246 if (*end)
247 continue;
249 comm_ev.tid = pid;
251 ret = write(output, &comm_ev, comm_ev.header.size);
252 if (ret < 0) {
253 perror("failed to write");
254 exit(-1);
257 closedir(tasks);
258 return;
260 out_failure:
261 fprintf(stderr, "couldn't get COMM and pgid, malformed %s\n",
262 filename);
263 exit(EXIT_FAILURE);
266 static void pid_synthesize_mmap_samples(pid_t pid)
268 char filename[PATH_MAX];
269 FILE *fp;
271 snprintf(filename, sizeof(filename), "/proc/%d/maps", pid);
273 fp = fopen(filename, "r");
274 if (fp == NULL) {
275 fprintf(stderr, "couldn't open %s\n", filename);
276 exit(EXIT_FAILURE);
278 while (1) {
279 char bf[BUFSIZ], *pbf = bf;
280 struct mmap_event mmap_ev = {
281 .header.type = PERF_EVENT_MMAP,
283 int n;
284 size_t size;
285 if (fgets(bf, sizeof(bf), fp) == NULL)
286 break;
288 /* 00400000-0040c000 r-xp 00000000 fd:01 41038 /bin/cat */
289 n = hex2u64(pbf, &mmap_ev.start);
290 if (n < 0)
291 continue;
292 pbf += n + 1;
293 n = hex2u64(pbf, &mmap_ev.len);
294 if (n < 0)
295 continue;
296 pbf += n + 3;
297 if (*pbf == 'x') { /* vm_exec */
298 char *execname = strrchr(bf, ' ');
300 if (execname == NULL || execname[1] != '/')
301 continue;
303 execname += 1;
304 size = strlen(execname);
305 execname[size - 1] = '\0'; /* Remove \n */
306 memcpy(mmap_ev.filename, execname, size);
307 size = ALIGN(size, sizeof(__u64));
308 mmap_ev.len -= mmap_ev.start;
309 mmap_ev.header.size = (sizeof(mmap_ev) -
310 (sizeof(mmap_ev.filename) - size));
311 mmap_ev.pid = pid;
312 mmap_ev.tid = pid;
314 if (write(output, &mmap_ev, mmap_ev.header.size) < 0) {
315 perror("failed to write");
316 exit(-1);
321 fclose(fp);
324 static void synthesize_samples(void)
326 DIR *proc;
327 struct dirent dirent, *next;
329 proc = opendir("/proc");
331 while (!readdir_r(proc, &dirent, &next) && next) {
332 char *end;
333 pid_t pid;
335 pid = strtol(dirent.d_name, &end, 10);
336 if (*end) /* only interested in proper numerical dirents */
337 continue;
339 pid_synthesize_comm_event(pid, 1);
340 pid_synthesize_mmap_samples(pid);
343 closedir(proc);
346 static int group_fd;
348 static void create_counter(int counter, int cpu, pid_t pid)
350 struct perf_counter_attr *attr = attrs + counter;
351 int track = 1;
353 attr->sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID;
354 if (freq) {
355 attr->sample_type |= PERF_SAMPLE_PERIOD;
356 attr->freq = 1;
357 attr->sample_freq = freq;
359 attr->mmap = track;
360 attr->comm = track;
361 attr->inherit = (cpu < 0) && inherit;
362 attr->disabled = 1;
364 track = 0; /* only the first counter needs these */
366 try_again:
367 fd[nr_cpu][counter] = sys_perf_counter_open(attr, pid, cpu, group_fd, 0);
369 if (fd[nr_cpu][counter] < 0) {
370 int err = errno;
372 if (err == EPERM)
373 die("Permission error - are you root?\n");
376 * If it's cycles then fall back to hrtimer
377 * based cpu-clock-tick sw counter, which
378 * is always available even if no PMU support:
380 if (attr->type == PERF_TYPE_HARDWARE
381 && attr->config == PERF_COUNT_CPU_CYCLES) {
383 if (verbose)
384 warning(" ... trying to fall back to cpu-clock-ticks\n");
385 attr->type = PERF_TYPE_SOFTWARE;
386 attr->config = PERF_COUNT_CPU_CLOCK;
387 goto try_again;
389 printf("\n");
390 error("perfcounter syscall returned with %d (%s)\n",
391 fd[nr_cpu][counter], strerror(err));
392 die("No CONFIG_PERF_COUNTERS=y kernel support configured?\n");
393 exit(-1);
396 assert(fd[nr_cpu][counter] >= 0);
397 fcntl(fd[nr_cpu][counter], F_SETFL, O_NONBLOCK);
400 * First counter acts as the group leader:
402 if (group && group_fd == -1)
403 group_fd = fd[nr_cpu][counter];
405 event_array[nr_poll].fd = fd[nr_cpu][counter];
406 event_array[nr_poll].events = POLLIN;
407 nr_poll++;
409 mmap_array[nr_cpu][counter].counter = counter;
410 mmap_array[nr_cpu][counter].prev = 0;
411 mmap_array[nr_cpu][counter].mask = mmap_pages*page_size - 1;
412 mmap_array[nr_cpu][counter].base = mmap(NULL, (mmap_pages+1)*page_size,
413 PROT_READ, MAP_SHARED, fd[nr_cpu][counter], 0);
414 if (mmap_array[nr_cpu][counter].base == MAP_FAILED) {
415 error("failed to mmap with %d (%s)\n", errno, strerror(errno));
416 exit(-1);
419 ioctl(fd[nr_cpu][counter], PERF_COUNTER_IOC_ENABLE);
422 static void open_counters(int cpu, pid_t pid)
424 int counter;
426 if (pid > 0) {
427 pid_synthesize_comm_event(pid, 0);
428 pid_synthesize_mmap_samples(pid);
431 group_fd = -1;
432 for (counter = 0; counter < nr_counters; counter++)
433 create_counter(counter, cpu, pid);
435 nr_cpu++;
438 static int __cmd_record(int argc, const char **argv)
440 int i, counter;
441 struct stat st;
442 pid_t pid;
443 int flags;
444 int ret;
446 page_size = sysconf(_SC_PAGE_SIZE);
447 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
448 assert(nr_cpus <= MAX_NR_CPUS);
449 assert(nr_cpus >= 0);
451 if (!stat(output_name, &st) && !force && !append_file) {
452 fprintf(stderr, "Error, output file %s exists, use -A to append or -f to overwrite.\n",
453 output_name);
454 exit(-1);
457 flags = O_CREAT|O_RDWR;
458 if (append_file)
459 flags |= O_APPEND;
460 else
461 flags |= O_TRUNC;
463 output = open(output_name, flags, S_IRUSR|S_IWUSR);
464 if (output < 0) {
465 perror("failed to create output file");
466 exit(-1);
469 if (!system_wide) {
470 open_counters(-1, target_pid != -1 ? target_pid : getpid());
471 } else for (i = 0; i < nr_cpus; i++)
472 open_counters(i, target_pid);
474 atexit(sig_atexit);
475 signal(SIGCHLD, sig_handler);
476 signal(SIGINT, sig_handler);
478 if (target_pid == -1 && argc) {
479 pid = fork();
480 if (pid < 0)
481 perror("failed to fork");
483 if (!pid) {
484 if (execvp(argv[0], (char **)argv)) {
485 perror(argv[0]);
486 exit(-1);
491 if (realtime_prio) {
492 struct sched_param param;
494 param.sched_priority = realtime_prio;
495 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
496 printf("Could not set realtime priority.\n");
497 exit(-1);
501 if (system_wide)
502 synthesize_samples();
504 while (!done) {
505 int hits = samples;
507 for (i = 0; i < nr_cpu; i++) {
508 for (counter = 0; counter < nr_counters; counter++)
509 mmap_read(&mmap_array[i][counter]);
512 if (hits == samples)
513 ret = poll(event_array, nr_poll, 100);
517 * Approximate RIP event size: 24 bytes.
519 fprintf(stderr,
520 "[ perf record: Captured and wrote %.3f MB %s (~%lld samples) ]\n",
521 (double)bytes_written / 1024.0 / 1024.0,
522 output_name,
523 bytes_written / 24);
525 return 0;
528 static const char * const record_usage[] = {
529 "perf record [<options>] [<command>]",
530 "perf record [<options>] -- <command> [<options>]",
531 NULL
534 static const struct option options[] = {
535 OPT_CALLBACK('e', "event", NULL, "event",
536 "event selector. use 'perf list' to list available events",
537 parse_events),
538 OPT_INTEGER('p', "pid", &target_pid,
539 "record events on existing pid"),
540 OPT_INTEGER('r', "realtime", &realtime_prio,
541 "collect data with this RT SCHED_FIFO priority"),
542 OPT_BOOLEAN('a', "all-cpus", &system_wide,
543 "system-wide collection from all CPUs"),
544 OPT_BOOLEAN('A', "append", &append_file,
545 "append to the output file to do incremental profiling"),
546 OPT_BOOLEAN('f', "force", &force,
547 "overwrite existing data file"),
548 OPT_LONG('c', "count", &default_interval,
549 "event period to sample"),
550 OPT_STRING('o', "output", &output_name, "file",
551 "output file name"),
552 OPT_BOOLEAN('i', "inherit", &inherit,
553 "child tasks inherit counters"),
554 OPT_INTEGER('F', "freq", &freq,
555 "profile at this frequency"),
556 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
557 "number of mmap data pages"),
558 OPT_BOOLEAN('v', "verbose", &verbose,
559 "be more verbose (show counter open errors, etc)"),
560 OPT_END()
563 int cmd_record(int argc, const char **argv, const char *prefix)
565 int counter;
567 argc = parse_options(argc, argv, options, record_usage, 0);
568 if (!argc && target_pid == -1 && !system_wide)
569 usage_with_options(record_usage, options);
571 if (!nr_counters)
572 nr_counters = 1;
574 for (counter = 0; counter < nr_counters; counter++) {
575 if (attrs[counter].sample_period)
576 continue;
578 attrs[counter].sample_period = default_interval;
581 return __cmd_record(argc, argv);