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