[PATCH] Change output/input file expectations
[blktrace.git] / blkparse.c
CommitLineData
d956a2cd
JA
1/*
2 * block queue tracing parse application
3 *
4 * Copyright (C) 2005 Jens Axboe <axboe@suse.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
d0ca268b
JA
21#include <sys/types.h>
22#include <sys/stat.h>
23#include <unistd.h>
24#include <stdio.h>
25#include <fcntl.h>
26#include <stdlib.h>
8fc0abbc 27#include <string.h>
d5396421 28#include <getopt.h>
412819ce
JA
29#include <errno.h>
30#include <signal.h>
d69db225 31#include <locale.h>
46e6968b 32#include <limits.h>
ab197ca7 33#include <ctype.h>
d0ca268b 34
8fc0abbc
JA
35#include "blktrace.h"
36#include "rbtree.h"
d0ca268b 37
2e3e8ded
JA
38#define SECONDS(x) ((unsigned long long)(x) / 1000000000)
39#define NANO_SECONDS(x) ((unsigned long long)(x) % 1000000000)
46e6968b 40#define DOUBLE_TO_NANO_ULL(d) ((unsigned long long)((d) * 1000000000))
cfab07eb 41
e7c9f3ff
NS
42#define MINORBITS 20
43#define MINORMASK ((1U << MINORBITS) - 1)
44#define MAJOR(dev) ((unsigned int) ((dev) >> MINORBITS))
45#define MINOR(dev) ((unsigned int) ((dev) & MINORMASK))
46
47#define min(a, b) ((a) < (b) ? (a) : (b))
d5396421 48
ab197ca7
AB
49#define HEADER "%D %2c %8s %5T.%9t %5p %2a %3d "
50
152f6476
JA
51struct io_stats {
52 unsigned long qreads, qwrites, creads, cwrites, mreads, mwrites;
53 unsigned long ireads, iwrites;
54 unsigned long long qread_kb, qwrite_kb, cread_kb, cwrite_kb;
55 unsigned long long iread_kb, iwrite_kb;
06639b27 56 unsigned long io_unplugs, timer_unplugs;
152f6476
JA
57};
58
d5396421 59struct per_cpu_info {
d0ca268b
JA
60 int cpu;
61 int nelems;
d0ca268b
JA
62
63 int fd;
87b72777 64 char fname[128];
d0ca268b 65
152f6476
JA
66 struct io_stats io_stats;
67};
8fc0abbc 68
e7c9f3ff
NS
69struct per_dev_info {
70 dev_t id;
71 char *name;
72
73 int backwards;
74 unsigned long long events;
75 unsigned long long last_reported_time;
76 struct io_stats io_stats;
cb2a1a62 77 unsigned long last_sequence;
0aa8a62d 78 unsigned long skips;
e7c9f3ff
NS
79
80 int ncpus;
81 struct per_cpu_info *cpus;
82};
83
152f6476
JA
84struct per_process_info {
85 char name[16];
86 __u32 pid;
87 struct io_stats io_stats;
88 struct per_process_info *hash_next, *list_next;
50adc0ba
JA
89
90 /*
91 * individual io stats
92 */
b9d40d6f
JA
93 unsigned long long longest_allocation_wait[2];
94 unsigned long long longest_dispatch_wait[2];
95 unsigned long long longest_completion_wait[2];
d0ca268b
JA
96};
97
152f6476
JA
98#define PPI_HASH_SHIFT (8)
99static struct per_process_info *ppi_hash[1 << PPI_HASH_SHIFT];
100static struct per_process_info *ppi_list;
101
ab197ca7 102#define S_OPTS "i:o:b:stqw:f:F:"
d5396421
JA
103static struct option l_opts[] = {
104 {
105 .name = "input",
428683db 106 .has_arg = required_argument,
d5396421
JA
107 .flag = NULL,
108 .val = 'i'
109 },
110 {
111 .name = "output",
428683db 112 .has_arg = required_argument,
d5396421
JA
113 .flag = NULL,
114 .val = 'o'
115 },
79f19470
JA
116 {
117 .name = "batch",
428683db 118 .has_arg = required_argument,
79f19470
JA
119 .flag = NULL,
120 .val = 'b'
121 },
152f6476
JA
122 {
123 .name = "per program stats",
428683db 124 .has_arg = no_argument,
152f6476
JA
125 .flag = NULL,
126 .val = 's'
127 },
7997c5b0
JA
128 {
129 .name = "track ios",
428683db 130 .has_arg = no_argument,
7997c5b0
JA
131 .flag = NULL,
132 .val = 't'
133 },
1e1c60f1
NS
134 {
135 .name = "quiet",
428683db 136 .has_arg = no_argument,
1e1c60f1
NS
137 .flag = NULL,
138 .val = 'q'
139 },
46e6968b
NS
140 {
141 .name = "stopwatch",
428683db 142 .has_arg = required_argument,
46e6968b
NS
143 .flag = NULL,
144 .val = 'w'
145 },
ab197ca7
AB
146 {
147 .name = "format",
428683db 148 .has_arg = required_argument,
ab197ca7
AB
149 .flag = NULL,
150 .val = 'f'
151 },
152 {
153 .name = "format-spec",
428683db 154 .has_arg = required_argument,
ab197ca7
AB
155 .flag = NULL,
156 .val = 'F'
157 },
d5396421
JA
158};
159
7997c5b0
JA
160/*
161 * for sorting the displayed output
162 */
8fc0abbc
JA
163struct trace {
164 struct blk_io_trace *bit;
165 struct rb_node rb_node;
cb2a1a62
JA
166 struct trace *next;
167 int skipped;
8fc0abbc
JA
168};
169
cb2a1a62
JA
170static struct rb_root rb_sort_root;
171static struct rb_root rb_track_root;
172
173static struct trace *trace_list;
174
7997c5b0
JA
175/*
176 * for tracking individual ios
177 */
178struct io_track {
179 struct rb_node rb_node;
180
e7c9f3ff 181 dev_t device;
7997c5b0
JA
182 __u64 sector;
183 __u32 pid;
95c15013 184 unsigned long long allocation_time;
7997c5b0
JA
185 unsigned long long queue_time;
186 unsigned long long dispatch_time;
187 unsigned long long completion_time;
188};
189
e7c9f3ff
NS
190static int ndevices;
191static struct per_dev_info *devices;
192static char *get_dev_name(struct per_dev_info *, char *, int);
d0ca268b 193
152f6476 194static FILE *ofp;
e7c9f3ff
NS
195static char *output_name;
196
197static unsigned long long genesis_time;
46e6968b
NS
198static unsigned long long stopwatch_start; /* start from zero by default */
199static unsigned long long stopwatch_end = ULONG_LONG_MAX; /* "infinity" */
152f6476
JA
200
201static int per_process_stats;
7997c5b0 202static int track_ios;
d0ca268b 203
79f19470
JA
204#define RB_BATCH_DEFAULT (1024)
205static int rb_batch = RB_BATCH_DEFAULT;
206
e7c9f3ff
NS
207static int pipeline;
208
412819ce
JA
209#define is_done() (*(volatile int *)(&done))
210static volatile int done;
211
152f6476
JA
212static inline unsigned long hash_long(unsigned long val)
213{
16ef714e
JA
214#if __WORDSIZE == 32
215 val *= 0x9e370001UL;
216#elif __WORDSIZE == 64
217 val *= 0x9e37fffffffc0001UL;
218#else
219#error unknown word size
220#endif
221
222 return val >> (__WORDSIZE - PPI_HASH_SHIFT);
152f6476
JA
223}
224
225static inline void add_process_to_hash(struct per_process_info *ppi)
226{
227 const int hash_idx = hash_long(ppi->pid);
228
229 ppi->hash_next = ppi_hash[hash_idx];
230 ppi_hash[hash_idx] = ppi;
231}
232
233static inline void add_process_to_list(struct per_process_info *ppi)
234{
235 ppi->list_next = ppi_list;
236 ppi_list = ppi;
237}
238
239static struct per_process_info *find_process_by_pid(__u32 pid)
240{
241 const int hash_idx = hash_long(pid);
242 struct per_process_info *ppi;
243
244 ppi = ppi_hash[hash_idx];
245 while (ppi) {
246 if (ppi->pid == pid)
247 return ppi;
248
249 ppi = ppi->hash_next;
250 }
251
252 return NULL;
253}
254
7997c5b0
JA
255static inline int trace_rb_insert(struct trace *t)
256{
257 struct rb_node **p = &rb_sort_root.rb_node;
258 struct rb_node *parent = NULL;
259 struct trace *__t;
260
e7c9f3ff
NS
261 if (genesis_time == 0 || t->bit->time < genesis_time)
262 genesis_time = t->bit->time;
263
7997c5b0
JA
264 while (*p) {
265 parent = *p;
266 __t = rb_entry(parent, struct trace, rb_node);
267
e7c9f3ff
NS
268 if (t->bit->time < __t->bit->time)
269 p = &(*p)->rb_left;
270 else if (t->bit->time > __t->bit->time)
271 p = &(*p)->rb_right;
272 else if (t->bit->device < __t->bit->device)
273 p = &(*p)->rb_left;
274 else if (t->bit->device > __t->bit->device)
275 p = &(*p)->rb_right;
276 else if (t->bit->sequence < __t->bit->sequence)
7997c5b0
JA
277 p = &(*p)->rb_left;
278 else if (t->bit->sequence > __t->bit->sequence)
279 p = &(*p)->rb_right;
e7c9f3ff
NS
280 else if (t->bit->device == __t->bit->device) {
281 fprintf(stderr,
282 "sequence alias (%d) on device %d,%d!\n",
283 t->bit->sequence,
284 MAJOR(t->bit->device), MINOR(t->bit->device));
7997c5b0
JA
285 return 1;
286 }
287 }
288
289 rb_link_node(&t->rb_node, parent, p);
290 rb_insert_color(&t->rb_node, &rb_sort_root);
291 return 0;
292}
293
294static inline int track_rb_insert(struct io_track *iot)
295{
296 struct rb_node **p = &rb_track_root.rb_node;
297 struct rb_node *parent = NULL;
298 struct io_track *__iot;
299
300 while (*p) {
301 parent = *p;
e7c9f3ff 302
7997c5b0
JA
303 __iot = rb_entry(parent, struct io_track, rb_node);
304
e7c9f3ff
NS
305 if (iot->device < __iot->device)
306 p = &(*p)->rb_left;
307 else if (iot->device > __iot->device)
308 p = &(*p)->rb_right;
309 else if (iot->sector < __iot->sector)
7997c5b0
JA
310 p = &(*p)->rb_left;
311 else if (iot->sector > __iot->sector)
312 p = &(*p)->rb_right;
313 else {
e7c9f3ff 314 fprintf(stderr,
ab197ca7
AB
315 "sector alias (%Lu) on device %d,%d!\n",
316 (unsigned long long) iot->sector,
e7c9f3ff 317 MAJOR(iot->device), MINOR(iot->device));
7997c5b0
JA
318 return 1;
319 }
320 }
321
322 rb_link_node(&iot->rb_node, parent, p);
323 rb_insert_color(&iot->rb_node, &rb_track_root);
324 return 0;
325}
326
e7c9f3ff 327static struct io_track *__find_track(dev_t device, __u64 sector)
7997c5b0
JA
328{
329 struct rb_node **p = &rb_track_root.rb_node;
330 struct rb_node *parent = NULL;
331 struct io_track *__iot;
332
333 while (*p) {
334 parent = *p;
335
336 __iot = rb_entry(parent, struct io_track, rb_node);
337
e7c9f3ff
NS
338 if (device < __iot->device)
339 p = &(*p)->rb_left;
340 else if (device > __iot->device)
341 p = &(*p)->rb_right;
342 else if (sector < __iot->sector)
7997c5b0
JA
343 p = &(*p)->rb_left;
344 else if (sector > __iot->sector)
345 p = &(*p)->rb_right;
346 else
347 return __iot;
348 }
349
350 return NULL;
351}
352
e7c9f3ff 353static struct io_track *find_track(__u32 pid, dev_t device, __u64 sector)
7997c5b0 354{
916b5501 355 struct io_track *iot;
7997c5b0 356
e7c9f3ff 357 iot = __find_track(device, sector);
7997c5b0
JA
358 if (!iot) {
359 iot = malloc(sizeof(*iot));
50adc0ba 360 iot->pid = pid;
e7c9f3ff 361 iot->device = device;
7997c5b0
JA
362 iot->sector = sector;
363 track_rb_insert(iot);
364 }
365
366 return iot;
367}
368
a01516de 369static void log_track_frontmerge(struct blk_io_trace *t)
2e3e8ded
JA
370{
371 struct io_track *iot;
372
373 if (!track_ios)
374 return;
2e3e8ded 375
a01516de 376 iot = __find_track(t->device, t->sector + (t->bytes >> 9));
cb2a1a62
JA
377 if (!iot) {
378 fprintf(stderr, "failed to find mergeable event\n");
379 return;
2e3e8ded 380 }
cb2a1a62
JA
381
382 rb_erase(&iot->rb_node, &rb_track_root);
a01516de 383 iot->sector -= t->bytes >> 9;
cb2a1a62 384 track_rb_insert(iot);
2e3e8ded
JA
385}
386
95c15013 387static void log_track_getrq(struct blk_io_trace *t)
2e3e8ded
JA
388{
389 struct io_track *iot;
390
391 if (!track_ios)
392 return;
393
e7c9f3ff 394 iot = find_track(t->pid, t->device, t->sector);
95c15013
JA
395 iot->allocation_time = t->time;
396}
397
398
399/*
400 * return time between rq allocation and queue
401 */
402static unsigned long long log_track_queue(struct blk_io_trace *t)
403{
50adc0ba 404 unsigned long long elapsed;
95c15013
JA
405 struct io_track *iot;
406
407 if (!track_ios)
408 return -1;
409
e7c9f3ff 410 iot = find_track(t->pid, t->device, t->sector);
2e3e8ded 411 iot->queue_time = t->time;
50adc0ba
JA
412 elapsed = iot->queue_time - iot->allocation_time;
413
414 if (per_process_stats) {
415 struct per_process_info *ppi = find_process_by_pid(iot->pid);
b9d40d6f 416 int w = (t->action & BLK_TC_ACT(BLK_TC_WRITE)) != 0;
50adc0ba 417
b9d40d6f
JA
418 if (ppi && elapsed > ppi->longest_allocation_wait[w])
419 ppi->longest_allocation_wait[w] = elapsed;
50adc0ba
JA
420 }
421
422 return elapsed;
2e3e8ded
JA
423}
424
425/*
426 * return time between queue and issue
427 */
428static unsigned long long log_track_issue(struct blk_io_trace *t)
429{
50adc0ba 430 unsigned long long elapsed;
2e3e8ded
JA
431 struct io_track *iot;
432
433 if (!track_ios)
434 return -1;
435 if ((t->action & BLK_TC_ACT(BLK_TC_FS)) == 0)
436 return -1;
437
e7c9f3ff 438 iot = __find_track(t->device, t->sector);
cb2a1a62
JA
439 if (!iot) {
440 fprintf(stderr, "failed to find issue event\n");
2e3e8ded 441 return -1;
cb2a1a62 442 }
2e3e8ded
JA
443
444 iot->dispatch_time = t->time;
50adc0ba
JA
445 elapsed = iot->dispatch_time - iot->queue_time;
446
447 if (per_process_stats) {
448 struct per_process_info *ppi = find_process_by_pid(iot->pid);
b9d40d6f 449 int w = (t->action & BLK_TC_ACT(BLK_TC_WRITE)) != 0;
50adc0ba 450
b9d40d6f
JA
451 if (ppi && elapsed > ppi->longest_dispatch_wait[w])
452 ppi->longest_dispatch_wait[w] = elapsed;
50adc0ba
JA
453 }
454
455 return elapsed;
2e3e8ded
JA
456}
457
458/*
459 * return time between dispatch and complete
460 */
461static unsigned long long log_track_complete(struct blk_io_trace *t)
462{
463 unsigned long long elapsed;
464 struct io_track *iot;
465
466 if (!track_ios)
467 return -1;
468 if ((t->action & BLK_TC_ACT(BLK_TC_FS)) == 0)
469 return -1;
470
e7c9f3ff 471 iot = __find_track(t->device, t->sector);
cb2a1a62
JA
472 if (!iot) {
473 fprintf(stderr, "failed to find complete event\n");
2e3e8ded 474 return -1;
cb2a1a62 475 }
2e3e8ded
JA
476
477 iot->completion_time = t->time;
478 elapsed = iot->completion_time - iot->dispatch_time;
479
50adc0ba
JA
480 if (per_process_stats) {
481 struct per_process_info *ppi = find_process_by_pid(iot->pid);
b9d40d6f 482 int w = (t->action & BLK_TC_ACT(BLK_TC_WRITE)) != 0;
50adc0ba 483
b9d40d6f
JA
484 if (ppi && elapsed > ppi->longest_completion_wait[w])
485 ppi->longest_completion_wait[w] = elapsed;
50adc0ba
JA
486 }
487
2e3e8ded
JA
488 /*
489 * kill the trace, we don't need it after completion
490 */
491 rb_erase(&iot->rb_node, &rb_track_root);
492 free(iot);
493
494 return elapsed;
495}
496
497
152f6476
JA
498static struct io_stats *find_process_io_stats(__u32 pid, char *name)
499{
500 struct per_process_info *ppi = find_process_by_pid(pid);
501
502 if (!ppi) {
503 ppi = malloc(sizeof(*ppi));
504 memset(ppi, 0, sizeof(*ppi));
505 strncpy(ppi->name, name, sizeof(ppi->name));
506 ppi->pid = pid;
507 add_process_to_hash(ppi);
508 add_process_to_list(ppi);
509 }
510
511 return &ppi->io_stats;
512}
513
e7c9f3ff
NS
514
515static void resize_cpu_info(struct per_dev_info *pdi, int cpu)
a718bd37 516{
e7c9f3ff
NS
517 struct per_cpu_info *cpus = pdi->cpus;
518 int ncpus = pdi->ncpus;
519 int new_count = cpu + 1;
520 int new_space, size;
a718bd37
NS
521 char *new_start;
522
e7c9f3ff
NS
523 size = new_count * sizeof(struct per_cpu_info);
524 cpus = realloc(cpus, size);
525 if (!cpus) {
526 char name[20];
527 fprintf(stderr, "Out of memory, CPU info for device %s (%d)\n",
528 get_dev_name(pdi, name, sizeof(name)), size);
a718bd37
NS
529 exit(1);
530 }
531
e7c9f3ff
NS
532 new_start = (char *)cpus + (ncpus * sizeof(struct per_cpu_info));
533 new_space = (new_count - ncpus) * sizeof(struct per_cpu_info);
a718bd37 534 memset(new_start, 0, new_space);
e7c9f3ff
NS
535
536 pdi->ncpus = new_count;
537 pdi->cpus = cpus;
538}
cb2a1a62 539
e7c9f3ff
NS
540static struct per_cpu_info *get_cpu_info(struct per_dev_info *pdi, int cpu)
541{
cb2a1a62
JA
542 struct per_cpu_info *pci;
543
e7c9f3ff
NS
544 if (cpu >= pdi->ncpus)
545 resize_cpu_info(pdi, cpu);
cb2a1a62
JA
546
547 pci = &pdi->cpus[cpu];
548 pci->cpu = cpu;
549 return pci;
a718bd37
NS
550}
551
e7c9f3ff
NS
552
553static int resize_devices(char *name)
a718bd37 554{
e7c9f3ff 555 int size = (ndevices + 1) * sizeof(struct per_dev_info);
c499bf38 556
e7c9f3ff
NS
557 devices = realloc(devices, size);
558 if (!devices) {
559 fprintf(stderr, "Out of memory, device %s (%d)\n", name, size);
560 return 1;
561 }
562 memset(&devices[ndevices], 0, sizeof(struct per_dev_info));
563 devices[ndevices].name = name;
564 ndevices++;
565 return 0;
566}
a718bd37 567
cb2a1a62 568static struct per_dev_info *get_dev_info(dev_t id)
e7c9f3ff 569{
cb2a1a62 570 struct per_dev_info *pdi;
e7c9f3ff 571 int i;
c499bf38 572
e7c9f3ff
NS
573 for (i = 0; i < ndevices; i++)
574 if (devices[i].id == id)
575 return &devices[i];
cb2a1a62 576
e7c9f3ff
NS
577 if (resize_devices(NULL) != 0)
578 return NULL;
cb2a1a62
JA
579
580 pdi = &devices[ndevices - 1];
581 pdi->id = id;
582 return pdi;
a718bd37
NS
583}
584
e7c9f3ff
NS
585static char *get_dev_name(struct per_dev_info *pdi, char *buffer, int size)
586{
587 if (pdi->name)
588 snprintf(buffer, size, "%s", pdi->name);
589 else
590 snprintf(buffer, size, "%d,%d", MAJOR(pdi->id), MINOR(pdi->id));
591 return buffer;
592}
593
e7c9f3ff 594static void check_time(struct per_dev_info *pdi, struct blk_io_trace *bit)
cfab07eb
AB
595{
596 unsigned long long this = bit->time;
e7c9f3ff 597 unsigned long long last = pdi->last_reported_time;
cfab07eb 598
e7c9f3ff
NS
599 pdi->backwards = (this < last) ? 'B' : ' ';
600 pdi->last_reported_time = this;
cfab07eb
AB
601}
602
152f6476
JA
603static inline void __account_m(struct io_stats *ios, struct blk_io_trace *t,
604 int rw)
d0ca268b
JA
605{
606 if (rw) {
152f6476
JA
607 ios->mwrites++;
608 ios->qwrite_kb += t->bytes >> 10;
d0ca268b 609 } else {
152f6476
JA
610 ios->mreads++;
611 ios->qread_kb += t->bytes >> 10;
612 }
613}
614
615static inline void account_m(struct blk_io_trace *t, struct per_cpu_info *pci,
616 int rw)
617{
618 __account_m(&pci->io_stats, t, rw);
619
620 if (per_process_stats) {
621 struct io_stats *ios = find_process_io_stats(t->pid, t->comm);
622
623 __account_m(ios, t, rw);
d0ca268b
JA
624 }
625}
626
152f6476
JA
627static inline void __account_q(struct io_stats *ios, struct blk_io_trace *t,
628 int rw)
d0ca268b
JA
629{
630 if (rw) {
152f6476
JA
631 ios->qwrites++;
632 ios->qwrite_kb += t->bytes >> 10;
d0ca268b 633 } else {
152f6476
JA
634 ios->qreads++;
635 ios->qread_kb += t->bytes >> 10;
636 }
637}
638
639static inline void account_q(struct blk_io_trace *t, struct per_cpu_info *pci,
640 int rw)
641{
642 __account_q(&pci->io_stats, t, rw);
643
644 if (per_process_stats) {
645 struct io_stats *ios = find_process_io_stats(t->pid, t->comm);
646
647 __account_q(ios, t, rw);
d0ca268b
JA
648 }
649}
650
152f6476 651static inline void __account_c(struct io_stats *ios, int rw, unsigned int bytes)
d0ca268b
JA
652{
653 if (rw) {
152f6476
JA
654 ios->cwrites++;
655 ios->cwrite_kb += bytes >> 10;
d0ca268b 656 } else {
152f6476
JA
657 ios->creads++;
658 ios->cread_kb += bytes >> 10;
659 }
660}
661
662static inline void account_c(struct blk_io_trace *t, struct per_cpu_info *pci,
663 int rw, int bytes)
664{
665 __account_c(&pci->io_stats, rw, bytes);
666
667 if (per_process_stats) {
668 struct io_stats *ios = find_process_io_stats(t->pid, t->comm);
669
670 __account_c(ios, rw, bytes);
d0ca268b
JA
671 }
672}
673
152f6476 674static inline void __account_i(struct io_stats *ios, int rw, unsigned int bytes)
afd2d7ad 675{
676 if (rw) {
152f6476
JA
677 ios->iwrites++;
678 ios->iwrite_kb += bytes >> 10;
afd2d7ad 679 } else {
152f6476
JA
680 ios->ireads++;
681 ios->iread_kb += bytes >> 10;
afd2d7ad 682 }
683}
684
152f6476
JA
685static inline void account_i(struct blk_io_trace *t, struct per_cpu_info *pci,
686 int rw)
d0ca268b 687{
152f6476
JA
688 __account_i(&pci->io_stats, rw, t->bytes);
689
690 if (per_process_stats) {
691 struct io_stats *ios = find_process_io_stats(t->pid, t->comm);
d5396421 692
152f6476
JA
693 __account_i(ios, rw, t->bytes);
694 }
695}
696
06639b27
JA
697static inline void __account_unplug(struct io_stats *ios, int timer)
698{
699 if (timer)
700 ios->timer_unplugs++;
701 else
702 ios->io_unplugs++;
703}
704
705static inline void account_unplug(struct blk_io_trace *t,
706 struct per_cpu_info *pci, int timer)
707{
708 __account_unplug(&pci->io_stats, timer);
709
710 if (per_process_stats) {
711 struct io_stats *ios = find_process_io_stats(t->pid, t->comm);
712
713 __account_unplug(ios, timer);
714 }
715}
716
ab197ca7
AB
717#define VALID_SPECS "BCDFGMPQRSTU"
718static char *override_format[256];
719static inline int valid_spec(int spec)
152f6476 720{
ab197ca7 721 return strchr(VALID_SPECS, spec) != NULL;
d0ca268b
JA
722}
723
ab197ca7 724static void set_all_format_specs(char *optarg)
d0ca268b 725{
ab197ca7 726 char *p;
d0ca268b 727
ab197ca7
AB
728 for (p = VALID_SPECS; *p; p++)
729 if (override_format[(int)(*p)] == NULL)
730 override_format[(int)(*p)] = strdup(optarg);
731}
d0ca268b 732
ab197ca7
AB
733static int add_format_spec(char *optarg)
734{
735 int spec = optarg[0];
d0ca268b 736
ab197ca7
AB
737 if (!valid_spec(spec)) {
738 fprintf(stderr,"Bad format specifier %c\n", spec);
739 return 1;
740 }
741 if (optarg[1] != ',') {
742 fprintf(stderr,"Bad format specifier - need ',' %s\n", optarg);
743 return 1;
744 }
745 optarg += 2;
746 if (*optarg == '\0') {
747 fprintf(stderr,"Bad format specifier - need fmt %s\n", optarg);
748 return 1;
749 }
750
751 /*
752 * Set both merges (front and back)
753 */
754 if (spec == 'M') {
755 override_format['B'] = strdup(optarg);
756 override_format['M'] = strdup(optarg);
757 } else
758 override_format[spec] = strdup(optarg);
d0ca268b 759
ab197ca7 760 return 0;
d0ca268b
JA
761}
762
ab197ca7
AB
763static void print_field(char *act, struct per_cpu_info *pci,
764 struct blk_io_trace *t, unsigned long long elapsed,
765 int pdu_len, unsigned char *pdu_buf, char field,
766 int minus, int has_w, int width)
d0ca268b 767{
ab197ca7 768 char format[64];
2e3e8ded 769
ab197ca7
AB
770 if (has_w) {
771 if (minus)
772 sprintf(format, "%%-%d", width);
773 else
774 sprintf(format, "%%%d", width);
775 } else
776 sprintf(format, "%%");
777
778 switch (field) {
779 case 'a':
780 fprintf(ofp, strcat(format, "s"), act);
781 break;
782 case 'c':
783 fprintf(ofp, strcat(format, "d"), pci->cpu);
784 break;
785 case 'C':
786 fprintf(ofp, strcat(format, "s"), t->comm);
787 break;
788 case 'd': {
789 char rwbs[4];
790 int i = 0;
791 int w = t->action & BLK_TC_ACT(BLK_TC_WRITE);
792 int b = t->action & BLK_TC_ACT(BLK_TC_BARRIER);
793 int s = t->action & BLK_TC_ACT(BLK_TC_SYNC);
794 if (w)
795 rwbs[i++] = 'W';
796 else
797 rwbs[i++] = 'R';
798 if (b)
799 rwbs[i++] = 'B';
800 if (s)
801 rwbs[i++] = 'S';
802 rwbs[i] = '\0';
803 fprintf(ofp, strcat(format, "s"), rwbs);
804 break;
805 }
806 case 'D': /* format width ignored */
807 fprintf(ofp,"%3d,%-3d", MAJOR(t->device), MINOR(t->device));
808 break;
809 case 'e':
810 fprintf(ofp, strcat(format, "d"), t->error);
811 break;
812 case 'M':
813 fprintf(ofp, strcat(format, "d"), MAJOR(t->device));
814 break;
815 case 'm':
816 fprintf(ofp, strcat(format, "d"), MINOR(t->device));
817 break;
818 case 'n':
819 fprintf(ofp, strcat(format, "u"), t->bytes >> 9);
820 break;
821 case 'p':
822 fprintf(ofp, strcat(format, "u"), t->pid);
823 break;
824 case 'P': /* format width ignored */
825 if ((pdu_len > 0) && (pdu_buf != NULL)) {
826 int i;
827 unsigned char *p = pdu_buf;
828 for (i = 0; i < pdu_len; i++)
829 fprintf(ofp, "%02x ", *p++);
830 }
831 break;
832 case 's':
833 fprintf(ofp, strcat(format, "ld"), t->sequence);
834 break;
835 case 'S':
836 fprintf(ofp, strcat(format, "lu"), t->sector);
837 break;
838 case 't':
839 sprintf(format, "%%0%dlu", has_w ? width : 9);
840 fprintf(ofp, format, NANO_SECONDS(t->time));
841 break;
842 case 'T':
843 fprintf(ofp, strcat(format, "d"), SECONDS(t->time));
844 break;
845 case 'u':
846 if (elapsed == -1ULL) {
847 fprintf(stderr, "Expecting elapsed value\n");
848 exit(1);
849 }
850 fprintf(ofp, strcat(format, "llu"), elapsed / 1000);
851 break;
852 case 'U': {
853 __u64 *depth = (__u64 *) ((char *) t + sizeof(*t));
854 fprintf(ofp, strcat(format, "u"),
855 (unsigned int) be64_to_cpu(*depth));
856 break;
857 }
858 default:
859 fprintf(ofp,strcat(format, "c"), field);
860 break;
861 }
862}
2e3e8ded 863
ab197ca7
AB
864static char *parse_field(char *act, struct per_cpu_info *pci,
865 struct blk_io_trace *t, unsigned long long elapsed,
866 int pdu_len, unsigned char *pdu_buf,
867 char *master_format)
868{
869 int minus = 0;
870 int has_w = 0;
871 int width = 0;
872 char *p = master_format;
873
874 if (*p == '-') {
875 minus = 1;
876 p++;
2e3e8ded 877 }
ab197ca7
AB
878 if (isdigit(*p)) {
879 has_w = 1;
880 do {
881 width = (width * 10) + (*p++ - '0');
882 } while ((*p) && (isdigit(*p)));
883 }
884 if (*p) {
885 print_field(act, pci, t, elapsed, pdu_len, pdu_buf, *p++,
886 minus, has_w, width);
887 }
888 return p;
d0ca268b
JA
889}
890
ab197ca7
AB
891static char *fmt_select(int fmt_spec, struct blk_io_trace *t,
892 unsigned long long elapsed)
d0ca268b 893{
ab197ca7
AB
894 char *fmt;
895 char scratch_format[1024];
2e3e8ded 896
ab197ca7
AB
897 if (override_format[fmt_spec] != NULL)
898 return override_format[fmt_spec];
95c15013 899
ab197ca7
AB
900 switch (fmt_spec) {
901 case 'C': /* Complete */
902 if (t->action & BLK_TC_ACT(BLK_TC_PC)) {
903 strcpy(scratch_format, HEADER);
904 strcat(scratch_format, "%P");
905 } else {
906 strcpy(scratch_format, HEADER "%S + %n ");
907 if (elapsed != -1ULL)
908 strcat(scratch_format, "(%8u) ");
909 }
910 strcat(scratch_format, "[%e]\n");
911 fmt = scratch_format;
912 break;
913
914 case 'D': /* Issue */
915 if (t->action & BLK_TC_ACT(BLK_TC_PC)) {
916 strcpy(scratch_format, HEADER);
917 strcat(scratch_format, "%P");
918 } else {
919 strcpy(scratch_format, HEADER "%S + %n ");
920 if (elapsed != -1ULL)
921 strcat(scratch_format, "(%8u) ");
922 }
923 strcat(scratch_format,"[%C]\n");
924 fmt = scratch_format;
925 break;
926
927 case 'Q': /* Queue */
928 strcpy(scratch_format, HEADER "%S + %n ");
929 if (elapsed != -1ULL)
930 strcat(scratch_format, "(%8u) ");
931 strcat(scratch_format,"[%C]\n");
932 fmt = scratch_format;
933 break;
934
935 case 'B': /* Back merge */
936 case 'F': /* Front merge */
937 case 'M': /* Front or back merge */
938 fmt = HEADER "%S + %n [%C]\n";
939 break;
940
941 case 'P': /* Plug */
942 fmt = HEADER "[%C]\n";
943 break;
944
945 case 'G': /* Get request */
946 case 'S': /* Sleep request */
947 fmt = HEADER "%S + %n [%C]\n";
948 break;
949
950 case 'U': /* Unplug IO */
951 case 'T': /* Unplug timer */
952 fmt = HEADER "[%C] %U\n";
953 break;
954
955 default:
956 fprintf(stderr,"FATAL: Invalid format spec %c\n", fmt_spec);
957 exit(1);
958 /*NOTREACHED*/
95c15013 959 }
ab197ca7
AB
960
961 return fmt;
d0ca268b
JA
962}
963
ab197ca7
AB
964static void process_fmt(char *act, struct per_cpu_info *pci,
965 struct blk_io_trace *t, unsigned long long elapsed,
966 int pdu_len, unsigned char *pdu_buf)
d0ca268b 967{
ab197ca7 968 char *p = fmt_select(act[0], t, elapsed);
2e3e8ded 969
ab197ca7
AB
970 while (*p) {
971 switch (*p) {
972 case '%': /* Field specifier */
973 p++;
974 if (*p == '%')
975 fprintf(ofp, "%c", *p++);
976 else if (!*p)
977 fprintf(ofp, "%c", '%');
978 else
979 p = parse_field(act, pci, t, elapsed,
980 pdu_len, pdu_buf, p);
981 break;
982 case '\\': { /* escape */
983 switch (p[1]) {
984 case 'b': fprintf(ofp, "\b"); break;
985 case 'n': fprintf(ofp, "\n"); break;
986 case 'r': fprintf(ofp, "\r"); break;
987 case 't': fprintf(ofp, "\t"); break;
988 default:
989 fprintf(stderr,
990 "Invalid escape char in format %c\n",
991 p[1]);
992 exit(1);
993 /*NOTREACHED*/
994 }
995 p += 2;
996 break;
997 }
998 default:
999 fprintf(ofp, "%c", *p++);
1000 break;
1001 }
2e3e8ded 1002 }
ab197ca7
AB
1003}
1004
1005static void log_complete(struct per_cpu_info *pci, struct blk_io_trace *t,
1006 char *act)
1007{
1008 process_fmt(act, pci, t, log_track_complete(t), 0, NULL);
1009}
1010
1011static void log_queue(struct per_cpu_info *pci, struct blk_io_trace *t,
1012 char *act)
1013{
1014 process_fmt(act, pci, t, log_track_queue(t), 0, NULL);
1015}
2e3e8ded 1016
ab197ca7
AB
1017static void log_issue(struct per_cpu_info *pci, struct blk_io_trace *t,
1018 char *act)
1019{
1020 process_fmt(act, pci, t, log_track_issue(t), 0, NULL);
d0ca268b
JA
1021}
1022
d5396421 1023static void log_merge(struct per_cpu_info *pci, struct blk_io_trace *t,
3639a11e 1024 char *act)
d0ca268b 1025{
a01516de
JA
1026 if (act[0] == 'F')
1027 log_track_frontmerge(t);
2e3e8ded 1028
ab197ca7 1029 process_fmt(act, pci, t, -1ULL, 0, NULL);
d0ca268b
JA
1030}
1031
dfe34da1 1032static void log_action(struct per_cpu_info *pci, struct blk_io_trace *t,
3639a11e 1033 char *act)
dfe34da1 1034{
ab197ca7 1035 process_fmt(act, pci, t, -1ULL, 0, NULL);
dfe34da1
JA
1036}
1037
d5396421 1038static void log_generic(struct per_cpu_info *pci, struct blk_io_trace *t,
3639a11e 1039 char *act)
d0ca268b 1040{
ab197ca7 1041 process_fmt(act, pci, t, -1ULL, 0, NULL);
d0ca268b
JA
1042}
1043
ab197ca7 1044static void log_unplug(struct per_cpu_info *pci, struct blk_io_trace *t,
3639a11e 1045 char *act)
67e14fdc 1046{
ab197ca7 1047 process_fmt(act, pci, t, -1ULL, 0, NULL);
67e14fdc
JA
1048}
1049
ab197ca7 1050static void log_pc(struct per_cpu_info *pci, struct blk_io_trace *t, char *act)
d0ca268b 1051{
ab197ca7 1052 unsigned char *buf = (unsigned char *) t + sizeof(*t);
d0ca268b 1053
ab197ca7 1054 process_fmt(act, pci, t, -1ULL, t->pdu_len, buf);
d0ca268b
JA
1055}
1056
d5396421 1057static int dump_trace_pc(struct blk_io_trace *t, struct per_cpu_info *pci)
d0ca268b 1058{
87b72777
JA
1059 int ret = 0;
1060
d0ca268b
JA
1061 switch (t->action & 0xffff) {
1062 case __BLK_TA_QUEUE:
3639a11e 1063 log_generic(pci, t, "Q");
d0ca268b
JA
1064 break;
1065 case __BLK_TA_GETRQ:
3639a11e 1066 log_generic(pci, t, "G");
d0ca268b
JA
1067 break;
1068 case __BLK_TA_SLEEPRQ:
3639a11e 1069 log_generic(pci, t, "S");
d0ca268b
JA
1070 break;
1071 case __BLK_TA_REQUEUE:
3639a11e 1072 log_generic(pci, t, "R");
d0ca268b
JA
1073 break;
1074 case __BLK_TA_ISSUE:
ab197ca7 1075 log_pc(pci, t, "D");
d0ca268b
JA
1076 break;
1077 case __BLK_TA_COMPLETE:
3639a11e 1078 log_pc(pci, t, "C");
d0ca268b
JA
1079 break;
1080 default:
1081 fprintf(stderr, "Bad pc action %x\n", t->action);
87b72777
JA
1082 ret = 1;
1083 break;
d0ca268b
JA
1084 }
1085
ab197ca7 1086 return 0;
d0ca268b
JA
1087}
1088
d5396421 1089static void dump_trace_fs(struct blk_io_trace *t, struct per_cpu_info *pci)
d0ca268b
JA
1090{
1091 int w = t->action & BLK_TC_ACT(BLK_TC_WRITE);
7997c5b0 1092 int act = t->action & 0xffff;
d0ca268b 1093
7997c5b0 1094 switch (act) {
d0ca268b 1095 case __BLK_TA_QUEUE:
152f6476 1096 account_q(t, pci, w);
3639a11e 1097 log_queue(pci, t, "Q");
d0ca268b
JA
1098 break;
1099 case __BLK_TA_BACKMERGE:
152f6476 1100 account_m(t, pci, w);
3639a11e 1101 log_merge(pci, t, "M");
d0ca268b
JA
1102 break;
1103 case __BLK_TA_FRONTMERGE:
152f6476 1104 account_m(t, pci, w);
3639a11e 1105 log_merge(pci, t, "F");
d0ca268b
JA
1106 break;
1107 case __BLK_TA_GETRQ:
95c15013 1108 log_track_getrq(t);
3639a11e 1109 log_generic(pci, t, "G");
d0ca268b
JA
1110 break;
1111 case __BLK_TA_SLEEPRQ:
3639a11e 1112 log_generic(pci, t, "S");
d0ca268b
JA
1113 break;
1114 case __BLK_TA_REQUEUE:
152f6476 1115 account_c(t, pci, w, -t->bytes);
3639a11e 1116 log_queue(pci, t, "R");
d0ca268b
JA
1117 break;
1118 case __BLK_TA_ISSUE:
152f6476 1119 account_i(t, pci, w);
3639a11e 1120 log_issue(pci, t, "D");
d0ca268b
JA
1121 break;
1122 case __BLK_TA_COMPLETE:
152f6476 1123 account_c(t, pci, w, t->bytes);
3639a11e 1124 log_complete(pci, t, "C");
d0ca268b 1125 break;
88b1a526 1126 case __BLK_TA_PLUG:
3639a11e 1127 log_action(pci, t, "P");
88b1a526 1128 break;
3639a11e 1129 case __BLK_TA_UNPLUG_IO:
06639b27 1130 account_unplug(t, pci, 0);
3639a11e
JA
1131 log_unplug(pci, t, "U");
1132 break;
1133 case __BLK_TA_UNPLUG_TIMER:
06639b27 1134 account_unplug(t, pci, 1);
3639a11e 1135 log_unplug(pci, t, "UT");
88b1a526 1136 break;
d0ca268b
JA
1137 default:
1138 fprintf(stderr, "Bad fs action %x\n", t->action);
1f79c4a0 1139 break;
d0ca268b 1140 }
d0ca268b
JA
1141}
1142
e7c9f3ff
NS
1143static int dump_trace(struct blk_io_trace *t, struct per_cpu_info *pci,
1144 struct per_dev_info *pdi)
d0ca268b 1145{
87b72777
JA
1146 int ret = 0;
1147
d0ca268b 1148 if (t->action & BLK_TC_ACT(BLK_TC_PC))
d5396421 1149 ret = dump_trace_pc(t, pci);
d0ca268b 1150 else
d5396421 1151 dump_trace_fs(t, pci);
87b72777 1152
e7c9f3ff 1153 pdi->events++;
87b72777 1154 return ret;
d0ca268b
JA
1155}
1156
152f6476 1157static void dump_io_stats(struct io_stats *ios, char *msg)
5c017e4b 1158{
152f6476
JA
1159 fprintf(ofp, "%s\n", msg);
1160
1161 fprintf(ofp, " Reads Queued: %'8lu, %'8LuKiB\t", ios->qreads, ios->qread_kb);
1162 fprintf(ofp, " Writes Queued: %'8lu, %'8LuKiB\n", ios->qwrites,ios->qwrite_kb);
0a6b8fc4 1163
152f6476
JA
1164 fprintf(ofp, " Read Dispatches: %'8lu, %'8LuKiB\t", ios->ireads, ios->iread_kb);
1165 fprintf(ofp, " Write Dispatches: %'8lu, %'8LuKiB\n", ios->iwrites,ios->iwrite_kb);
1166 fprintf(ofp, " Reads Completed: %'8lu, %'8LuKiB\t", ios->creads, ios->cread_kb);
1167 fprintf(ofp, " Writes Completed: %'8lu, %'8LuKiB\n", ios->cwrites,ios->cwrite_kb);
1168 fprintf(ofp, " Read Merges: %'8lu%8c\t", ios->mreads, ' ');
152f6476 1169 fprintf(ofp, " Write Merges: %'8lu\n", ios->mwrites);
06639b27
JA
1170 fprintf(ofp, " IO unplugs: %'8lu%8c\t", ios->io_unplugs, ' ');
1171 fprintf(ofp, " Timer unplugs: %'8lu\n", ios->timer_unplugs);
5c017e4b
JA
1172}
1173
50adc0ba
JA
1174static void dump_wait_stats(struct per_process_info *ppi)
1175{
b9d40d6f
JA
1176 unsigned long rawait = ppi->longest_allocation_wait[0] / 1000;
1177 unsigned long rdwait = ppi->longest_dispatch_wait[0] / 1000;
1178 unsigned long rcwait = ppi->longest_completion_wait[0] / 1000;
1179 unsigned long wawait = ppi->longest_allocation_wait[1] / 1000;
1180 unsigned long wdwait = ppi->longest_dispatch_wait[1] / 1000;
1181 unsigned long wcwait = ppi->longest_completion_wait[1] / 1000;
1182
1183 fprintf(ofp, " Allocation wait: %'8lu%8c\t", rawait, ' ');
1184 fprintf(ofp, " Allocation wait: %'8lu\n", wawait);
1185 fprintf(ofp, " Dispatch wait: %'8lu%8c\t", rdwait, ' ');
1186 fprintf(ofp, " Dispatch wait: %'8lu\n", wdwait);
1187 fprintf(ofp, " Completion wait: %'8lu%8c\t", rcwait, ' ');
1188 fprintf(ofp, " Completion wait: %'8lu\n", wcwait);
50adc0ba
JA
1189}
1190
152f6476
JA
1191static void show_process_stats(void)
1192{
1193 struct per_process_info *ppi;
1194
1195 ppi = ppi_list;
1196 while (ppi) {
1197 dump_io_stats(&ppi->io_stats, ppi->name);
50adc0ba 1198 dump_wait_stats(ppi);
152f6476
JA
1199 ppi = ppi->list_next;
1200 }
1201
1202 fprintf(ofp, "\n");
1203}
1204
e7c9f3ff 1205static void show_device_and_cpu_stats(void)
d0ca268b 1206{
e7c9f3ff
NS
1207 struct per_dev_info *pdi;
1208 struct per_cpu_info *pci;
1209 struct io_stats total, *ios;
1210 int i, j, pci_events;
1211 char line[3 + 8/*cpu*/ + 2 + 32/*dev*/ + 3];
1212 char name[32];
1213
1214 for (pdi = devices, i = 0; i < ndevices; i++, pdi++) {
1215
1216 memset(&total, 0, sizeof(total));
1217 pci_events = 0;
1218
1219 if (i > 0)
1220 fprintf(ofp, "\n");
1221
1222 for (pci = pdi->cpus, j = 0; j < pdi->ncpus; j++, pci++) {
1223 if (!pci->nelems)
1224 continue;
1225
1226 ios = &pci->io_stats;
1227 total.qreads += ios->qreads;
1228 total.qwrites += ios->qwrites;
1229 total.creads += ios->creads;
1230 total.cwrites += ios->cwrites;
1231 total.mreads += ios->mreads;
1232 total.mwrites += ios->mwrites;
1233 total.ireads += ios->ireads;
1234 total.iwrites += ios->iwrites;
1235 total.qread_kb += ios->qread_kb;
1236 total.qwrite_kb += ios->qwrite_kb;
1237 total.cread_kb += ios->cread_kb;
1238 total.cwrite_kb += ios->cwrite_kb;
1239 total.iread_kb += ios->iread_kb;
1240 total.iwrite_kb += ios->iwrite_kb;
06639b27
JA
1241 total.timer_unplugs += ios->timer_unplugs;
1242 total.io_unplugs += ios->io_unplugs;
e7c9f3ff
NS
1243
1244 snprintf(line, sizeof(line) - 1, "CPU%d (%s):",
1245 j, get_dev_name(pdi, name, sizeof(name)));
1246 dump_io_stats(ios, line);
1247 pci_events++;
1248 }
5c017e4b 1249
e7c9f3ff
NS
1250 if (pci_events > 1) {
1251 fprintf(ofp, "\n");
1252 snprintf(line, sizeof(line) - 1, "Total (%s):",
1253 get_dev_name(pdi, name, sizeof(name)));
1254 dump_io_stats(&total, line);
1255 }
d0ca268b 1256
0aa8a62d
JA
1257 fprintf(ofp, "\nEvents (%s): %'Lu entries, %'lu skips\n",
1258 get_dev_name(pdi, line, sizeof(line)), pdi->events,
1259 pdi->skips);
e7c9f3ff 1260 }
d0ca268b
JA
1261}
1262
cb2a1a62 1263static struct blk_io_trace *find_trace(void *p, unsigned long offset)
2ff323b0 1264{
cb2a1a62 1265 unsigned long max_offset = offset;
2ff323b0
JA
1266 unsigned long off;
1267 struct blk_io_trace *bit;
1268 __u32 magic;
1269
1270 for (off = 0; off < max_offset; off++) {
1271 bit = p + off;
1272
1273 magic = be32_to_cpu(bit->magic);
1274 if ((magic & 0xffffff00) == BLK_IO_TRACE_MAGIC)
1275 return bit;
1276 }
1277
1278 return NULL;
1279}
1280
cb2a1a62 1281static int sort_entries(void)
8fc0abbc 1282{
e7c9f3ff 1283 struct per_dev_info *pdi;
412819ce 1284 struct per_cpu_info *pci;
8fc0abbc
JA
1285 struct blk_io_trace *bit;
1286 struct trace *t;
cb2a1a62 1287 int nr = 0;
8fc0abbc 1288
cb2a1a62 1289 while ((t = trace_list) != NULL) {
412819ce 1290
cb2a1a62
JA
1291 trace_list = t->next;
1292 bit = t->bit;
6fe4709e 1293
8fc0abbc
JA
1294 memset(&t->rb_node, 0, sizeof(t->rb_node));
1295
cb2a1a62 1296 if (verify_trace(bit))
66fa7233 1297 break;
cb2a1a62
JA
1298 if (trace_rb_insert(t))
1299 return -1;
66fa7233 1300
cb2a1a62
JA
1301 pdi = get_dev_info(bit->device);
1302 pci = get_cpu_info(pdi, bit->cpu);
412819ce
JA
1303 pci->nelems++;
1304
cb2a1a62 1305 nr++;
6fe4709e 1306 }
8fc0abbc 1307
cb2a1a62 1308 return nr;
412819ce
JA
1309}
1310
f1327cc5 1311static void show_entries_rb(int piped)
8fc0abbc 1312{
e7c9f3ff 1313 struct per_dev_info *pdi;
8fc0abbc 1314 struct blk_io_trace *bit;
3aabcd89 1315 struct rb_node *n;
8fc0abbc
JA
1316 struct trace *t;
1317 int cpu;
1318
cb2a1a62 1319 while ((n = rb_first(&rb_sort_root)) != NULL) {
8fc0abbc
JA
1320
1321 t = rb_entry(n, struct trace, rb_node);
1322 bit = t->bit;
1323
cb2a1a62 1324 pdi = get_dev_info(bit->device);
e7c9f3ff
NS
1325 if (!pdi) {
1326 fprintf(stderr, "Unknown device ID? (%d,%d)\n",
1327 MAJOR(bit->device), MINOR(bit->device));
1328 break;
1329 }
d5396421 1330 cpu = bit->cpu;
e7c9f3ff
NS
1331 if (cpu > pdi->ncpus) {
1332 fprintf(stderr, "Unknown CPU ID? (%d, device %d,%d)\n",
1333 cpu, MAJOR(bit->device), MINOR(bit->device));
87b72777 1334 break;
8fc0abbc
JA
1335 }
1336
cb2a1a62
JA
1337 /*
1338 * back off displaying more info if we are out of sync
1339 * on SMP systems. to prevent stalling on lost events,
0aa8a62d 1340 * only allow an event to us a few times
cb2a1a62 1341 */
a3983763
JA
1342 if (bit->sequence != (pdi->last_sequence + 1)) {
1343 if (piped && t->skipped < 5) {
0aa8a62d 1344 t->skipped++;
cb2a1a62 1345 break;
0aa8a62d
JA
1346 } else {
1347 fprintf(stderr, "skipping from %lu to %u\n", pdi->last_sequence, bit->sequence);
1348 pdi->skips++;
cb2a1a62
JA
1349 }
1350 }
1351
1352 pdi->last_sequence = bit->sequence;
1353
cfab07eb 1354 bit->time -= genesis_time;
46e6968b
NS
1355 if (bit->time < stopwatch_start)
1356 continue;
1357 if (bit->time >= stopwatch_end)
1358 break;
8fc0abbc 1359
e7c9f3ff 1360 check_time(pdi, bit);
8fc0abbc 1361
e7c9f3ff 1362 if (dump_trace(bit, &pdi->cpus[cpu], pdi))
87b72777
JA
1363 break;
1364
cb2a1a62 1365 rb_erase(&t->rb_node, &rb_sort_root);
e8741a4a 1366
f1327cc5 1367 if (piped) {
e8741a4a
JA
1368 free(bit);
1369 free(t);
1370 }
cb2a1a62 1371 }
8fc0abbc
JA
1372}
1373
1f79c4a0
JA
1374static int read_data(int fd, void *buffer, int bytes, int block)
1375{
1376 int ret, bytes_left, fl;
1377 void *p;
1378
1379 fl = fcntl(fd, F_GETFL);
1380
1381 if (!block)
1382 fcntl(fd, F_SETFL, fl | O_NONBLOCK);
1383 else
1384 fcntl(fd, F_SETFL, fl & ~O_NONBLOCK);
1385
1386 bytes_left = bytes;
1387 p = buffer;
1388 while (bytes_left > 0) {
1389 ret = read(fd, p, bytes_left);
1390 if (!ret)
1391 return 1;
1392 else if (ret < 0) {
1393 if (errno != EAGAIN)
1394 perror("read");
1395 return -1;
1396 } else {
1397 p += ret;
1398 bytes_left -= ret;
1399 }
1400 }
1401
1402 return 0;
1403}
1404
cb2a1a62
JA
1405/*
1406 * Find the traces in 'tb' and add them to the list for sorting and
1407 * displaying
1408 */
1409static int find_entries(void *tb, unsigned long size)
1410{
1411 struct blk_io_trace *bit;
1412 struct trace *t;
1413 void *start = tb;
1414
1415 while (tb - start <= size - sizeof(*bit)) {
1416 bit = find_trace(tb, size - (tb - start));
1417 if (!bit)
1418 break;
1419
1420 t = malloc(sizeof(*t));
1421 memset(t, 0, sizeof(*t));
1422 t->bit = bit;
1423
f1327cc5 1424 trace_to_cpu(bit);
cb2a1a62
JA
1425 t->next = trace_list;
1426 trace_list = t;
1427
1428 tb += sizeof(*bit) + bit->pdu_len;
1429 }
1430
1431 return 0;
1432}
1433
d5396421 1434static int do_file(void)
d0ca268b 1435{
cb2a1a62 1436 int i, j, nfiles = 0, nelems;
d0ca268b 1437
e8741a4a 1438 for (i = 0; i < ndevices; i++) {
e7c9f3ff 1439 for (j = 0;; j++, nfiles++) {
e8741a4a 1440 struct per_dev_info *pdi;
e7c9f3ff
NS
1441 struct per_cpu_info *pci;
1442 struct stat st;
1443 void *tb;
87b72777 1444
e8741a4a 1445 pdi = &devices[i];
e7c9f3ff
NS
1446 pci = get_cpu_info(pdi, j);
1447 pci->cpu = j;
d0ca268b 1448
e7c9f3ff 1449 snprintf(pci->fname, sizeof(pci->fname)-1,
428683db 1450 "%s.%d", pdi->name, j);
e7c9f3ff
NS
1451 if (stat(pci->fname, &st) < 0)
1452 break;
1453 if (!st.st_size)
1454 continue;
1455
1456 printf("Processing %s\n", pci->fname);
1457
1458 tb = malloc(st.st_size);
1459 if (!tb) {
1460 fprintf(stderr, "Out of memory, skip file %s\n",
1461 pci->fname);
1462 continue;
1463 }
1464
1465 pci->fd = open(pci->fname, O_RDONLY);
1466 if (pci->fd < 0) {
1467 perror(pci->fname);
1468 free(tb);
1469 continue;
1470 }
1471
1472 if (read_data(pci->fd, tb, st.st_size, 1)) {
1473 close(pci->fd);
1474 free(tb);
1475 continue;
1476 }
1477
cb2a1a62
JA
1478 if (find_entries(tb, st.st_size)) {
1479 close(pci->fd);
1480 free(tb);
1481 }
1482
1483 nelems = sort_entries();
1484 if (nelems == -1) {
e7c9f3ff
NS
1485 close(pci->fd);
1486 free(tb);
1487 continue;
1488 }
1489
1490 printf("Completed %s (CPU%d %d, entries)\n",
cb2a1a62 1491 pci->fname, j, nelems);
e7c9f3ff 1492 close(pci->fd);
d0ca268b 1493 }
d5396421
JA
1494 }
1495
1496 if (!nfiles) {
1497 fprintf(stderr, "No files found\n");
1498 return 1;
1499 }
1500
e8741a4a 1501 show_entries_rb(0);
d5396421
JA
1502 return 0;
1503}
1504
cb2a1a62 1505static int read_sort_events(int fd)
d5396421 1506{
cb2a1a62 1507 int events = 0;
d5396421 1508
412819ce 1509 do {
cb2a1a62
JA
1510 struct blk_io_trace *bit;
1511 struct trace *t;
412819ce 1512 int pdu_len;
51128a28 1513 __u32 magic;
d5396421 1514
cb2a1a62 1515 bit = malloc(sizeof(*bit));
d5396421 1516
cb2a1a62 1517 if (read_data(fd, bit, sizeof(*bit), !events))
c80c18a7 1518 break;
d5396421 1519
cb2a1a62 1520 magic = be32_to_cpu(bit->magic);
51128a28
JA
1521 if ((magic & 0xffffff00) != BLK_IO_TRACE_MAGIC) {
1522 fprintf(stderr, "Bad magic %x\n", magic);
1523 break;
1524 }
1525
cb2a1a62 1526 pdu_len = be16_to_cpu(bit->pdu_len);
2ff323b0 1527 if (pdu_len) {
cb2a1a62 1528 void *ptr = realloc(bit, sizeof(*bit) + pdu_len);
d5396421 1529
cb2a1a62 1530 if (read_data(fd, ptr + sizeof(*bit), pdu_len, 1))
2ff323b0 1531 break;
d5396421 1532
cb2a1a62 1533 bit = ptr;
2ff323b0 1534 }
d5396421 1535
cb2a1a62
JA
1536 t = malloc(sizeof(*t));
1537 memset(t, 0, sizeof(*t));
1538 t->bit = bit;
f1327cc5
JA
1539
1540 trace_to_cpu(bit);
cb2a1a62
JA
1541 t->next = trace_list;
1542 trace_list = t;
1543
412819ce 1544 events++;
79f19470 1545 } while (!is_done() && events < rb_batch);
d5396421 1546
412819ce
JA
1547 return events;
1548}
d5396421 1549
412819ce
JA
1550static int do_stdin(void)
1551{
1552 int fd;
d5396421 1553
1f79c4a0 1554 fd = dup(STDIN_FILENO);
412819ce
JA
1555 do {
1556 int events;
d5396421 1557
cb2a1a62 1558 events = read_sort_events(fd);
412819ce
JA
1559 if (!events)
1560 break;
1561
cb2a1a62 1562 if (sort_entries() == -1)
2ff323b0
JA
1563 break;
1564
e8741a4a 1565 show_entries_rb(1);
d5396421
JA
1566 } while (1);
1567
1568 close(fd);
d5396421
JA
1569 return 0;
1570}
d0ca268b 1571
1f79c4a0 1572static void flush_output(void)
412819ce 1573{
152f6476 1574 fflush(ofp);
412819ce
JA
1575}
1576
1f79c4a0 1577static void handle_sigint(int sig)
412819ce
JA
1578{
1579 done = 1;
1580 flush_output();
1581}
1582
46e6968b
NS
1583/*
1584 * Extract start and duration times from a string, allowing
1585 * us to specify a time interval of interest within a trace.
1586 * Format: "duration" (start is zero) or "start:duration".
1587 */
1588static int find_stopwatch_interval(char *string)
1589{
1590 double value;
1591 char *sp;
1592
1593 value = strtod(string, &sp);
1594 if (sp == string) {
1595 fprintf(stderr,"Invalid stopwatch timer: %s\n", string);
1596 return 1;
1597 }
1598 if (*sp == ':') {
1599 stopwatch_start = DOUBLE_TO_NANO_ULL(value);
1600 string = sp + 1;
1601 value = strtod(string, &sp);
1602 if (sp == string || *sp != '\0') {
1603 fprintf(stderr,"Invalid stopwatch duration time: %s\n",
1604 string);
1605 return 1;
1606 }
1607 } else if (*sp != '\0') {
1608 fprintf(stderr,"Invalid stopwatch start timer: %s\n", string);
1609 return 1;
1610 }
1611 stopwatch_end = stopwatch_start + DOUBLE_TO_NANO_ULL(value);
1612 return 0;
1613}
1614
1f79c4a0
JA
1615static void usage(char *prog)
1616{
46e6968b
NS
1617 fprintf(stderr, "Usage: %s "
1618 "[-i <name>] [-o <output>] [-s] [-w N[:n]] <name>...\n",
1619 prog);
1f79c4a0
JA
1620}
1621
d5396421
JA
1622int main(int argc, char *argv[])
1623{
152f6476 1624 char *ofp_buffer;
a66877e6 1625 int c, ret, mode;
1e1c60f1 1626 int per_device_and_cpu_stats = 1;
d5396421
JA
1627
1628 while ((c = getopt_long(argc, argv, S_OPTS, l_opts, NULL)) != -1) {
1629 switch (c) {
1630 case 'i':
e7c9f3ff
NS
1631 if (!strcmp(optarg, "-") && !pipeline)
1632 pipeline = 1;
1633 else if (resize_devices(optarg) != 0)
1634 return 1;
d5396421
JA
1635 break;
1636 case 'o':
66efebf8 1637 output_name = optarg;
d5396421 1638 break;
79f19470
JA
1639 case 'b':
1640 rb_batch = atoi(optarg);
1641 if (rb_batch <= 0)
1642 rb_batch = RB_BATCH_DEFAULT;
1643 break;
152f6476
JA
1644 case 's':
1645 per_process_stats = 1;
1646 break;
7997c5b0
JA
1647 case 't':
1648 track_ios = 1;
1649 break;
1e1c60f1
NS
1650 case 'q':
1651 per_device_and_cpu_stats = 0;
1652 break;
46e6968b
NS
1653 case 'w':
1654 if (find_stopwatch_interval(optarg) != 0)
1655 return 1;
1656 break;
ab197ca7
AB
1657 case 'f':
1658 set_all_format_specs(optarg);
1659 break;
1660 case 'F':
1661 if (add_format_spec(optarg) != 0)
1662 return 1;
1663 break;
d5396421 1664 default:
1f79c4a0 1665 usage(argv[0]);
d5396421
JA
1666 return 1;
1667 }
d0ca268b
JA
1668 }
1669
e7c9f3ff
NS
1670 while (optind < argc) {
1671 if (!strcmp(argv[optind], "-") && !pipeline)
1672 pipeline = 1;
1673 else if (resize_devices(argv[optind]) != 0)
1674 return 1;
1675 optind++;
1676 }
1677
1678 if (!pipeline && !ndevices) {
1f79c4a0 1679 usage(argv[0]);
d5396421
JA
1680 return 1;
1681 }
1682
7997c5b0
JA
1683 memset(&rb_sort_root, 0, sizeof(rb_sort_root));
1684 memset(&rb_track_root, 0, sizeof(rb_track_root));
412819ce
JA
1685
1686 signal(SIGINT, handle_sigint);
1687 signal(SIGHUP, handle_sigint);
1688 signal(SIGTERM, handle_sigint);
d5396421 1689
d69db225
JA
1690 setlocale(LC_NUMERIC, "en_US");
1691
a66877e6 1692 if (!output_name) {
152f6476 1693 ofp = fdopen(STDOUT_FILENO, "w");
a66877e6
JA
1694 mode = _IOLBF;
1695 } else {
152f6476
JA
1696 char ofname[128];
1697
1698 snprintf(ofname, sizeof(ofname) - 1, "%s.log", output_name);
1699 ofp = fopen(ofname, "w");
a66877e6 1700 mode = _IOFBF;
152f6476
JA
1701 }
1702
1703 if (!ofp) {
1704 perror("fopen");
1705 return 1;
1706 }
1707
1708 ofp_buffer = malloc(4096);
a66877e6 1709 if (setvbuf(ofp, ofp_buffer, mode, 4096)) {
152f6476
JA
1710 perror("setvbuf");
1711 return 1;
1712 }
1713
e7c9f3ff 1714 if (pipeline)
d5396421
JA
1715 ret = do_stdin();
1716 else
1717 ret = do_file();
1718
152f6476
JA
1719 if (per_process_stats)
1720 show_process_stats();
1721
1e1c60f1
NS
1722 if (per_device_and_cpu_stats)
1723 show_device_and_cpu_stats();
152f6476 1724
412819ce 1725 flush_output();
d5396421 1726 return ret;
d0ca268b 1727}