[PATCH] blktrace.tex: add description of each possible action
[blktrace.git] / blkparse.c
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  */
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>
27 #include <string.h>
28 #include <getopt.h>
29 #include <errno.h>
30 #include <signal.h>
31 #include <locale.h>
32 #include <limits.h>
33
34 #include "blktrace.h"
35 #include "rbtree.h"
36 #include "jhash.h"
37
38 static char blkparse_version[] = "0.90";
39
40 struct per_dev_info {
41         dev_t dev;
42         char *name;
43
44         int backwards;
45         unsigned long long events;
46         unsigned long long last_reported_time;
47         unsigned long long last_read_time;
48         struct io_stats io_stats;
49         unsigned long last_sequence;
50         unsigned long skips;
51
52         struct rb_root rb_last;
53         unsigned long rb_last_entries;
54
55         struct rb_root rb_track;
56
57         int nfiles;
58         int ncpus;
59         struct per_cpu_info *cpus;
60 };
61
62 struct per_process_info {
63         char name[16];
64         __u32 pid;
65         struct io_stats io_stats;
66         struct per_process_info *hash_next, *list_next;
67         int more_than_one;
68
69         /*
70          * individual io stats
71          */
72         unsigned long long longest_allocation_wait[2];
73         unsigned long long longest_dispatch_wait[2];
74         unsigned long long longest_completion_wait[2];
75 };
76
77 #define PPI_HASH_SHIFT  (8)
78 #define PPI_HASH_SIZE   (1 << PPI_HASH_SHIFT)
79 #define PPI_HASH_MASK   (PPI_HASH_SIZE - 1)
80 static struct per_process_info *ppi_hash_table[PPI_HASH_SIZE];
81 static struct per_process_info *ppi_list;
82 static int ppi_list_entries;
83
84 #define S_OPTS  "a:A:i:o:b:stqw:f:F:vnmD:"
85 static struct option l_opts[] = {
86         {
87                 .name = "act-mask",
88                 .has_arg = required_argument,
89                 .flag = NULL,
90                 .val = 'a'
91         },
92         {
93                 .name = "set-mask",
94                 .has_arg = required_argument,
95                 .flag = NULL,
96                 .val = 'A'
97         },
98         {
99                 .name = "input",
100                 .has_arg = required_argument,
101                 .flag = NULL,
102                 .val = 'i'
103         },
104         {
105                 .name = "output",
106                 .has_arg = required_argument,
107                 .flag = NULL,
108                 .val = 'o'
109         },
110         {
111                 .name = "batch",
112                 .has_arg = required_argument,
113                 .flag = NULL,
114                 .val = 'b'
115         },
116         {
117                 .name = "per-program-stats",
118                 .has_arg = no_argument,
119                 .flag = NULL,
120                 .val = 's'
121         },
122         {
123                 .name = "track-ios",
124                 .has_arg = no_argument,
125                 .flag = NULL,
126                 .val = 't'
127         },
128         {
129                 .name = "quiet",
130                 .has_arg = no_argument,
131                 .flag = NULL,
132                 .val = 'q'
133         },
134         {
135                 .name = "stopwatch",
136                 .has_arg = required_argument,
137                 .flag = NULL,
138                 .val = 'w'
139         },
140         {
141                 .name = "format",
142                 .has_arg = required_argument,
143                 .flag = NULL,
144                 .val = 'f'
145         },
146         {
147                 .name = "format-spec",
148                 .has_arg = required_argument,
149                 .flag = NULL,
150                 .val = 'F'
151         },
152         {
153                 .name = "hash-by-name",
154                 .has_arg = no_argument,
155                 .flag = NULL,
156                 .val = 'n'
157         },
158         {
159                 .name = "missing",
160                 .has_arg = no_argument,
161                 .flag = NULL,
162                 .val = 'm'
163         },
164         {
165                 .name = "version",
166                 .has_arg = no_argument,
167                 .flag = NULL,
168                 .val = 'v'
169         },
170         {
171                 .name = "input-directory",
172                 .has_arg = required_argument,
173                 .flag = NULL,
174                 .val = 'D'
175         },
176         {
177                 .name = NULL,
178         }
179 };
180
181 /*
182  * for sorting the displayed output
183  */
184 struct trace {
185         struct blk_io_trace *bit;
186         struct rb_node rb_node;
187         struct trace *next;
188 };
189
190 static struct rb_root rb_sort_root;
191 static unsigned long rb_sort_entries;
192
193 static struct trace *trace_list;
194
195 /*
196  * allocation cache
197  */
198 static struct blk_io_trace *bit_alloc_list;
199 static struct trace *t_alloc_list;
200
201 /*
202  * for tracking individual ios
203  */
204 struct io_track {
205         struct rb_node rb_node;
206
207         __u64 sector;
208         __u32 pid;
209         char comm[16];
210         unsigned long long allocation_time;
211         unsigned long long queue_time;
212         unsigned long long dispatch_time;
213         unsigned long long completion_time;
214 };
215
216 static int ndevices;
217 static struct per_dev_info *devices;
218 static char *get_dev_name(struct per_dev_info *, char *, int);
219
220 FILE *ofp = NULL;
221 static char *output_name;
222 static char *input_dir;
223
224 static unsigned long long genesis_time;
225 static unsigned long long last_allowed_time;
226 static unsigned int smallest_seq_read;
227 static unsigned long long stopwatch_start;      /* start from zero by default */
228 static unsigned long long stopwatch_end = ULONG_LONG_MAX;       /* "infinity" */
229
230 static int per_process_stats;
231 static int track_ios;
232 static int ppi_hash_by_pid = 1;
233 static int print_missing;
234 static unsigned int act_mask = -1U;
235
236 static unsigned int t_alloc_cache;
237 static unsigned int bit_alloc_cache;
238
239 #define RB_BATCH_DEFAULT        (512)
240 static unsigned int rb_batch = RB_BATCH_DEFAULT;
241
242 static int pipeline;
243
244 #define is_done()       (*(volatile int *)(&done))
245 static volatile int done;
246
247 #define JHASH_RANDOM    (0x3af5f2ee)
248
249 static inline int ppi_hash_pid(__u32 pid)
250 {
251         return jhash_1word(pid, JHASH_RANDOM) & PPI_HASH_MASK;
252 }
253
254 static inline int ppi_hash_name(const char *name)
255 {
256         return jhash(name, 16, JHASH_RANDOM) & PPI_HASH_MASK;
257 }
258
259 static inline int ppi_hash(struct per_process_info *ppi)
260 {
261         if (ppi_hash_by_pid)
262                 return ppi_hash_pid(ppi->pid);
263
264         return ppi_hash_name(ppi->name);
265 }
266
267 static inline void add_process_to_hash(struct per_process_info *ppi)
268 {
269         const int hash_idx = ppi_hash(ppi);
270
271         ppi->hash_next = ppi_hash_table[hash_idx];
272         ppi_hash_table[hash_idx] = ppi;
273 }
274
275 static inline void add_process_to_list(struct per_process_info *ppi)
276 {
277         ppi->list_next = ppi_list;
278         ppi_list = ppi;
279         ppi_list_entries++;
280 }
281
282 static struct per_process_info *find_process_by_name(char *name)
283 {
284         const int hash_idx = ppi_hash_name(name);
285         struct per_process_info *ppi;
286
287         ppi = ppi_hash_table[hash_idx];
288         while (ppi) {
289                 if (!strcmp(ppi->name, name))
290                         return ppi;
291
292                 ppi = ppi->hash_next;
293         }
294
295         return NULL;
296 }
297
298 static struct per_process_info *find_process_by_pid(__u32 pid)
299 {
300         const int hash_idx = ppi_hash_pid(pid);
301         struct per_process_info *ppi;
302
303         ppi = ppi_hash_table[hash_idx];
304         while (ppi) {
305                 if (ppi->pid == pid)
306                         return ppi;
307
308                 ppi = ppi->hash_next;
309         }
310
311         return NULL;
312 }
313
314 static struct per_process_info *find_process(__u32 pid, char *name)
315 {
316         struct per_process_info *ppi;
317
318         if (ppi_hash_by_pid)
319                 return find_process_by_pid(pid);
320
321         ppi = find_process_by_name(name);
322         if (ppi && ppi->pid != pid)
323                 ppi->more_than_one = 1;
324
325         return ppi;
326 }
327
328 static inline int trace_rb_insert(struct trace *t, struct rb_root *root,
329                                   int check_time)
330 {
331         struct rb_node **p = &root->rb_node;
332         struct rb_node *parent = NULL;
333         struct trace *__t;
334
335         while (*p) {
336                 parent = *p;
337
338                 __t = rb_entry(parent, struct trace, rb_node);
339
340                 if (check_time) {
341                         if (t->bit->time < __t->bit->time) {
342                                 p = &(*p)->rb_left;
343                                 continue;
344                         } else if (t->bit->time > __t->bit->time) {
345                                 p = &(*p)->rb_right;
346                                 continue;
347                         }
348                 }
349                 if (t->bit->device < __t->bit->device)
350                         p = &(*p)->rb_left;
351                 else if (t->bit->device > __t->bit->device)
352                         p = &(*p)->rb_right;
353                 else if (t->bit->sequence < __t->bit->sequence)
354                         p = &(*p)->rb_left;
355                 else    /* >= sequence */
356                         p = &(*p)->rb_right;
357         }
358
359         rb_link_node(&t->rb_node, parent, p);
360         rb_insert_color(&t->rb_node, root);
361         return 0;
362 }
363
364 static inline int trace_rb_insert_sort(struct trace *t)
365 {
366         if (!trace_rb_insert(t, &rb_sort_root, 1)) {
367                 rb_sort_entries++;
368                 return 0;
369         }
370
371         return 1;
372 }
373
374 static inline int trace_rb_insert_last(struct per_dev_info *pdi,struct trace *t)
375 {
376         if (!trace_rb_insert(t, &pdi->rb_last, 1)) {
377                 pdi->rb_last_entries++;
378                 return 0;
379         }
380
381         return 1;
382 }
383
384 static struct trace *trace_rb_find(dev_t device, unsigned long sequence,
385                                    struct rb_root *root, int order)
386 {
387         struct rb_node *n = root->rb_node;
388         struct rb_node *prev = NULL;
389         struct trace *__t;
390
391         while (n) {
392                 __t = rb_entry(n, struct trace, rb_node);
393                 prev = n;
394
395                 if (device < __t->bit->device)
396                         n = n->rb_left;
397                 else if (device > __t->bit->device)
398                         n = n->rb_right;
399                 else if (sequence < __t->bit->sequence)
400                         n = n->rb_left;
401                 else if (sequence > __t->bit->sequence)
402                         n = n->rb_right;
403                 else
404                         return __t;
405         }
406
407         /*
408          * hack - the list may not be sequence ordered because some
409          * events don't have sequence and time matched. so we end up
410          * being a little off in the rb lookup here, because we don't
411          * know the time we are looking for. compensate by browsing
412          * a little ahead from the last entry to find the match
413          */
414         if (order && prev) {
415                 int max = 5;
416
417                 while (((n = rb_next(prev)) != NULL) && max--) {
418                         __t = rb_entry(n, struct trace, rb_node);
419                         
420                         if (__t->bit->device == device &&
421                             __t->bit->sequence == sequence)
422                                 return __t;
423
424                         prev = n;
425                 }
426         }
427                         
428         return NULL;
429 }
430
431 static inline struct trace *trace_rb_find_sort(dev_t dev, unsigned long seq)
432 {
433         return trace_rb_find(dev, seq, &rb_sort_root, 1);
434 }
435
436 static inline struct trace *trace_rb_find_last(struct per_dev_info *pdi,
437                                                unsigned long seq)
438 {
439         return trace_rb_find(pdi->dev, seq, &pdi->rb_last, 0);
440 }
441
442 static inline int track_rb_insert(struct per_dev_info *pdi,struct io_track *iot)
443 {
444         struct rb_node **p = &pdi->rb_track.rb_node;
445         struct rb_node *parent = NULL;
446         struct io_track *__iot;
447
448         while (*p) {
449                 parent = *p;
450                 __iot = rb_entry(parent, struct io_track, rb_node);
451
452                 if (iot->sector < __iot->sector)
453                         p = &(*p)->rb_left;
454                 else if (iot->sector > __iot->sector)
455                         p = &(*p)->rb_right;
456                 else {
457                         fprintf(stderr,
458                                 "sector alias (%Lu) on device %d,%d!\n",
459                                 (unsigned long long) iot->sector,
460                                 MAJOR(pdi->dev), MINOR(pdi->dev));
461                         return 1;
462                 }
463         }
464
465         rb_link_node(&iot->rb_node, parent, p);
466         rb_insert_color(&iot->rb_node, &pdi->rb_track);
467         return 0;
468 }
469
470 static struct io_track *__find_track(struct per_dev_info *pdi, __u64 sector)
471 {
472         struct rb_node *n = pdi->rb_track.rb_node;
473         struct io_track *__iot;
474
475         while (n) {
476                 __iot = rb_entry(n, struct io_track, rb_node);
477
478                 if (sector < __iot->sector)
479                         n = n->rb_left;
480                 else if (sector > __iot->sector)
481                         n = n->rb_right;
482                 else
483                         return __iot;
484         }
485
486         return NULL;
487 }
488
489 static struct io_track *find_track(struct per_dev_info *pdi, __u32 pid,
490                                    char *comm, __u64 sector)
491 {
492         struct io_track *iot;
493
494         iot = __find_track(pdi, sector);
495         if (!iot) {
496                 iot = malloc(sizeof(*iot));
497                 iot->pid = pid;
498                 memcpy(iot->comm, comm, sizeof(iot->comm));
499                 iot->sector = sector;
500                 track_rb_insert(pdi, iot);
501         }
502
503         return iot;
504 }
505
506 static void log_track_frontmerge(struct per_dev_info *pdi,
507                                  struct blk_io_trace *t)
508 {
509         struct io_track *iot;
510
511         if (!track_ios)
512                 return;
513
514         iot = __find_track(pdi, t->sector + (t->bytes >> 9));
515         if (!iot) {
516                 fprintf(stderr, "merge not found for (%d,%d): %llu\n",
517                         MAJOR(pdi->dev), MINOR(pdi->dev),
518                         (unsigned long long) t->sector + (t->bytes >> 9));
519                 return;
520         }
521
522         rb_erase(&iot->rb_node, &pdi->rb_track);
523         iot->sector -= t->bytes >> 9;
524         track_rb_insert(pdi, iot);
525 }
526
527 static void log_track_getrq(struct per_dev_info *pdi, struct blk_io_trace *t)
528 {
529         struct io_track *iot;
530
531         if (!track_ios)
532                 return;
533
534         iot = find_track(pdi, t->pid, t->comm, t->sector);
535         iot->allocation_time = t->time;
536 }
537
538 /*
539  * return time between rq allocation and insertion
540  */
541 static unsigned long long log_track_insert(struct per_dev_info *pdi,
542                                            struct blk_io_trace *t)
543 {
544         unsigned long long elapsed;
545         struct io_track *iot;
546
547         if (!track_ios)
548                 return -1;
549
550         iot = find_track(pdi, t->pid, t->comm, t->sector);
551         iot->queue_time = t->time;
552
553         if (!iot->allocation_time)
554                 return -1;
555
556         elapsed = iot->queue_time - iot->allocation_time;
557
558         if (per_process_stats) {
559                 struct per_process_info *ppi = find_process(iot->pid,iot->comm);
560                 int w = (t->action & BLK_TC_ACT(BLK_TC_WRITE)) != 0;
561
562                 if (ppi && elapsed > ppi->longest_allocation_wait[w])
563                         ppi->longest_allocation_wait[w] = elapsed;
564         }
565
566         return elapsed;
567 }
568
569 /*
570  * return time between queue and issue
571  */
572 static unsigned long long log_track_issue(struct per_dev_info *pdi,
573                                           struct blk_io_trace *t)
574 {
575         unsigned long long elapsed;
576         struct io_track *iot;
577
578         if (!track_ios)
579                 return -1;
580         if ((t->action & BLK_TC_ACT(BLK_TC_FS)) == 0)
581                 return -1;
582
583         iot = __find_track(pdi, t->sector);
584         if (!iot) {
585                 fprintf(stderr, "issue not found for (%d,%d): %llu\n",
586                         MAJOR(pdi->dev), MINOR(pdi->dev),
587                         (unsigned long long) t->sector);
588                 return -1;
589         }
590
591         iot->dispatch_time = t->time;
592         elapsed = iot->dispatch_time - iot->queue_time;
593
594         if (per_process_stats) {
595                 struct per_process_info *ppi = find_process(iot->pid,iot->comm);
596                 int w = (t->action & BLK_TC_ACT(BLK_TC_WRITE)) != 0;
597
598                 if (ppi && elapsed > ppi->longest_dispatch_wait[w])
599                         ppi->longest_dispatch_wait[w] = elapsed;
600         }
601
602         return elapsed;
603 }
604
605 /*
606  * return time between dispatch and complete
607  */
608 static unsigned long long log_track_complete(struct per_dev_info *pdi,
609                                              struct blk_io_trace *t)
610 {
611         unsigned long long elapsed;
612         struct io_track *iot;
613
614         if (!track_ios)
615                 return -1;
616         if ((t->action & BLK_TC_ACT(BLK_TC_FS)) == 0)
617                 return -1;
618
619         iot = __find_track(pdi, t->sector);
620         if (!iot) {
621                 fprintf(stderr, "complete not found for (%d,%d): %llu\n",
622                         MAJOR(pdi->dev), MINOR(pdi->dev),
623                         (unsigned long long) t->sector);
624                 return -1;
625         }
626
627         iot->completion_time = t->time;
628         elapsed = iot->completion_time - iot->dispatch_time;
629
630         if (per_process_stats) {
631                 struct per_process_info *ppi = find_process(iot->pid,iot->comm);
632                 int w = (t->action & BLK_TC_ACT(BLK_TC_WRITE)) != 0;
633
634                 if (ppi && elapsed > ppi->longest_completion_wait[w])
635                         ppi->longest_completion_wait[w] = elapsed;
636         }
637
638         /*
639          * kill the trace, we don't need it after completion
640          */
641         rb_erase(&iot->rb_node, &pdi->rb_track);
642         free(iot);
643
644         return elapsed;
645 }
646
647
648 static struct io_stats *find_process_io_stats(__u32 pid, char *name)
649 {
650         struct per_process_info *ppi = find_process(pid, name);
651
652         if (!ppi) {
653                 ppi = malloc(sizeof(*ppi));
654                 memset(ppi, 0, sizeof(*ppi));
655                 memcpy(ppi->name, name, 16);
656                 ppi->pid = pid;
657                 add_process_to_hash(ppi);
658                 add_process_to_list(ppi);
659         }
660
661         return &ppi->io_stats;
662 }
663
664 static void resize_cpu_info(struct per_dev_info *pdi, int cpu)
665 {
666         struct per_cpu_info *cpus = pdi->cpus;
667         int ncpus = pdi->ncpus;
668         int new_count = cpu + 1;
669         int new_space, size;
670         char *new_start;
671
672         size = new_count * sizeof(struct per_cpu_info);
673         cpus = realloc(cpus, size);
674         if (!cpus) {
675                 char name[20];
676                 fprintf(stderr, "Out of memory, CPU info for device %s (%d)\n",
677                         get_dev_name(pdi, name, sizeof(name)), size);
678                 exit(1);
679         }
680
681         new_start = (char *)cpus + (ncpus * sizeof(struct per_cpu_info));
682         new_space = (new_count - ncpus) * sizeof(struct per_cpu_info);
683         memset(new_start, 0, new_space);
684
685         pdi->ncpus = new_count;
686         pdi->cpus = cpus;
687 }
688
689 static struct per_cpu_info *get_cpu_info(struct per_dev_info *pdi, int cpu)
690 {
691         struct per_cpu_info *pci;
692
693         if (cpu >= pdi->ncpus)
694                 resize_cpu_info(pdi, cpu);
695
696         pci = &pdi->cpus[cpu];
697         pci->cpu = cpu;
698         return pci;
699 }
700
701
702 static int resize_devices(char *name)
703 {
704         int size = (ndevices + 1) * sizeof(struct per_dev_info);
705
706         devices = realloc(devices, size);
707         if (!devices) {
708                 fprintf(stderr, "Out of memory, device %s (%d)\n", name, size);
709                 return 1;
710         }
711         memset(&devices[ndevices], 0, sizeof(struct per_dev_info));
712         devices[ndevices].name = name;
713         ndevices++;
714         return 0;
715 }
716
717 static struct per_dev_info *get_dev_info(dev_t dev)
718 {
719         struct per_dev_info *pdi;
720         int i;
721
722         for (i = 0; i < ndevices; i++) {
723                 if (!devices[i].dev)
724                         devices[i].dev = dev;
725                 if (devices[i].dev == dev)
726                         return &devices[i];
727         }
728
729         if (resize_devices(NULL))
730                 return NULL;
731
732         pdi = &devices[ndevices - 1];
733         pdi->dev = dev;
734         pdi->last_sequence = -1;
735         pdi->last_read_time = 0;
736         memset(&pdi->rb_last, 0, sizeof(pdi->rb_last));
737         pdi->rb_last_entries = 0;
738         return pdi;
739 }
740
741 static char *get_dev_name(struct per_dev_info *pdi, char *buffer, int size)
742 {
743         if (pdi->name)
744                 snprintf(buffer, size, "%s", pdi->name);
745         else
746                 snprintf(buffer, size, "%d,%d",MAJOR(pdi->dev),MINOR(pdi->dev));
747         return buffer;
748 }
749
750 static void check_time(struct per_dev_info *pdi, struct blk_io_trace *bit)
751 {
752         unsigned long long this = bit->time;
753         unsigned long long last = pdi->last_reported_time;
754
755         pdi->backwards = (this < last) ? 'B' : ' ';
756         pdi->last_reported_time = this;
757 }
758
759 static inline void __account_m(struct io_stats *ios, struct blk_io_trace *t,
760                                int rw)
761 {
762         if (rw) {
763                 ios->mwrites++;
764                 ios->qwrite_kb += t->bytes >> 10;
765         } else {
766                 ios->mreads++;
767                 ios->qread_kb += t->bytes >> 10;
768         }
769 }
770
771 static inline void account_m(struct blk_io_trace *t, struct per_cpu_info *pci,
772                              int rw)
773 {
774         __account_m(&pci->io_stats, t, rw);
775
776         if (per_process_stats) {
777                 struct io_stats *ios = find_process_io_stats(t->pid, t->comm);
778
779                 __account_m(ios, t, rw);
780         }
781 }
782
783 static inline void __account_queue(struct io_stats *ios, struct blk_io_trace *t,
784                                    int rw)
785 {
786         if (rw) {
787                 ios->qwrites++;
788                 ios->qwrite_kb += t->bytes >> 10;
789         } else {
790                 ios->qreads++;
791                 ios->qread_kb += t->bytes >> 10;
792         }
793 }
794
795 static inline void account_queue(struct blk_io_trace *t,
796                                  struct per_cpu_info *pci, int rw)
797 {
798         __account_queue(&pci->io_stats, t, rw);
799
800         if (per_process_stats) {
801                 struct io_stats *ios = find_process_io_stats(t->pid, t->comm);
802
803                 __account_queue(ios, t, rw);
804         }
805 }
806
807 static inline void __account_c(struct io_stats *ios, int rw, unsigned int bytes)
808 {
809         if (rw) {
810                 ios->cwrites++;
811                 ios->cwrite_kb += bytes >> 10;
812         } else {
813                 ios->creads++;
814                 ios->cread_kb += bytes >> 10;
815         }
816 }
817
818 static inline void account_c(struct blk_io_trace *t, struct per_cpu_info *pci,
819                              int rw, int bytes)
820 {
821         __account_c(&pci->io_stats, rw, bytes);
822
823         if (per_process_stats) {
824                 struct io_stats *ios = find_process_io_stats(t->pid, t->comm);
825
826                 __account_c(ios, rw, bytes);
827         }
828 }
829
830 static inline void __account_issue(struct io_stats *ios, int rw,
831                                    unsigned int bytes)
832 {
833         if (rw) {
834                 ios->iwrites++;
835                 ios->iwrite_kb += bytes >> 10;
836         } else {
837                 ios->ireads++;
838                 ios->iread_kb += bytes >> 10;
839         }
840 }
841
842 static inline void account_issue(struct blk_io_trace *t,
843                                  struct per_cpu_info *pci, int rw)
844 {
845         __account_issue(&pci->io_stats, rw, t->bytes);
846
847         if (per_process_stats) {
848                 struct io_stats *ios = find_process_io_stats(t->pid, t->comm);
849
850                 __account_issue(ios, rw, t->bytes);
851         }
852 }
853
854 static inline void __account_unplug(struct io_stats *ios, int timer)
855 {
856         if (timer)
857                 ios->timer_unplugs++;
858         else
859                 ios->io_unplugs++;
860 }
861
862 static inline void account_unplug(struct blk_io_trace *t,
863                                   struct per_cpu_info *pci, int timer)
864 {
865         __account_unplug(&pci->io_stats, timer);
866
867         if (per_process_stats) {
868                 struct io_stats *ios = find_process_io_stats(t->pid, t->comm);
869
870                 __account_unplug(ios, timer);
871         }
872 }
873
874 static void log_complete(struct per_dev_info *pdi, struct per_cpu_info *pci,
875                          struct blk_io_trace *t, char *act)
876 {
877         process_fmt(act, pci, t, log_track_complete(pdi, t), 0, NULL);
878 }
879
880 static void log_insert(struct per_dev_info *pdi, struct per_cpu_info *pci,
881                        struct blk_io_trace *t, char *act)
882 {
883         process_fmt(act, pci, t, log_track_insert(pdi, t), 0, NULL);
884 }
885
886 static void log_queue(struct per_cpu_info *pci, struct blk_io_trace *t,
887                       char *act)
888 {
889         process_fmt(act, pci, t, -1, 0, NULL);
890 }
891
892 static void log_issue(struct per_dev_info *pdi, struct per_cpu_info *pci,
893                       struct blk_io_trace *t, char *act)
894 {
895         process_fmt(act, pci, t, log_track_issue(pdi, t), 0, NULL);
896 }
897
898 static void log_merge(struct per_dev_info *pdi, struct per_cpu_info *pci,
899                       struct blk_io_trace *t, char *act)
900 {
901         if (act[0] == 'F')
902                 log_track_frontmerge(pdi, t);
903
904         process_fmt(act, pci, t, -1ULL, 0, NULL);
905 }
906
907 static void log_action(struct per_cpu_info *pci, struct blk_io_trace *t,
908                         char *act)
909 {
910         process_fmt(act, pci, t, -1ULL, 0, NULL);
911 }
912
913 static void log_generic(struct per_cpu_info *pci, struct blk_io_trace *t,
914                         char *act)
915 {
916         process_fmt(act, pci, t, -1ULL, 0, NULL);
917 }
918
919 static void log_unplug(struct per_cpu_info *pci, struct blk_io_trace *t,
920                       char *act)
921 {
922         process_fmt(act, pci, t, -1ULL, 0, NULL);
923 }
924
925 static void log_split(struct per_cpu_info *pci, struct blk_io_trace *t,
926                       char *act)
927 {
928         process_fmt(act, pci, t, -1ULL, 0, NULL);
929 }
930
931 static void log_pc(struct per_cpu_info *pci, struct blk_io_trace *t, char *act)
932 {
933         unsigned char *buf = (unsigned char *) t + sizeof(*t);
934
935         process_fmt(act, pci, t, -1ULL, t->pdu_len, buf);
936 }
937
938 static void dump_trace_pc(struct blk_io_trace *t, struct per_cpu_info *pci)
939 {
940         int act = t->action & 0xffff;
941
942         switch (act) {
943                 case __BLK_TA_QUEUE:
944                         log_generic(pci, t, "Q");
945                         break;
946                 case __BLK_TA_GETRQ:
947                         log_generic(pci, t, "G");
948                         break;
949                 case __BLK_TA_SLEEPRQ:
950                         log_generic(pci, t, "S");
951                         break;
952                 case __BLK_TA_REQUEUE:
953                         log_generic(pci, t, "R");
954                         break;
955                 case __BLK_TA_ISSUE:
956                         log_pc(pci, t, "D");
957                         break;
958                 case __BLK_TA_COMPLETE:
959                         log_pc(pci, t, "C");
960                         break;
961                 case __BLK_TA_INSERT:
962                         log_pc(pci, t, "I");
963                         break;
964                 default:
965                         fprintf(stderr, "Bad pc action %x\n", act);
966                         break;
967         }
968 }
969
970 static void dump_trace_fs(struct blk_io_trace *t, struct per_dev_info *pdi,
971                           struct per_cpu_info *pci)
972 {
973         int w = t->action & BLK_TC_ACT(BLK_TC_WRITE);
974         int act = t->action & 0xffff;
975
976         switch (act) {
977                 case __BLK_TA_QUEUE:
978                         account_queue(t, pci, w);
979                         log_queue(pci, t, "Q");
980                         break;
981                 case __BLK_TA_INSERT:
982                         log_insert(pdi, pci, t, "I");
983                         break;
984                 case __BLK_TA_BACKMERGE:
985                         account_m(t, pci, w);
986                         log_merge(pdi, pci, t, "M");
987                         break;
988                 case __BLK_TA_FRONTMERGE:
989                         account_m(t, pci, w);
990                         log_merge(pdi, pci, t, "F");
991                         break;
992                 case __BLK_TA_GETRQ:
993                         log_track_getrq(pdi, t);
994                         log_generic(pci, t, "G");
995                         break;
996                 case __BLK_TA_SLEEPRQ:
997                         log_generic(pci, t, "S");
998                         break;
999                 case __BLK_TA_REQUEUE:
1000                         account_c(t, pci, w, -t->bytes);
1001                         log_queue(pci, t, "R");
1002                         break;
1003                 case __BLK_TA_ISSUE:
1004                         account_issue(t, pci, w);
1005                         log_issue(pdi, pci, t, "D");
1006                         break;
1007                 case __BLK_TA_COMPLETE:
1008                         account_c(t, pci, w, t->bytes);
1009                         log_complete(pdi, pci, t, "C");
1010                         break;
1011                 case __BLK_TA_PLUG:
1012                         log_action(pci, t, "P");
1013                         break;
1014                 case __BLK_TA_UNPLUG_IO:
1015                         account_unplug(t, pci, 0);
1016                         log_unplug(pci, t, "U");
1017                         break;
1018                 case __BLK_TA_UNPLUG_TIMER:
1019                         account_unplug(t, pci, 1);
1020                         log_unplug(pci, t, "UT");
1021                         break;
1022                 case __BLK_TA_SPLIT:
1023                         log_split(pci, t, "X");
1024                         break;
1025                 case __BLK_TA_BOUNCE:
1026                         log_generic(pci, t, "B");
1027                         break;
1028                 default:
1029                         fprintf(stderr, "Bad fs action %x\n", t->action);
1030                         break;
1031         }
1032 }
1033
1034 static void dump_trace(struct blk_io_trace *t, struct per_cpu_info *pci,
1035                        struct per_dev_info *pdi)
1036 {
1037         if (t->action & BLK_TC_ACT(BLK_TC_PC))
1038                 dump_trace_pc(t, pci);
1039         else
1040                 dump_trace_fs(t, pdi, pci);
1041
1042         pdi->events++;
1043 }
1044
1045 static void dump_io_stats(struct io_stats *ios, char *msg)
1046 {
1047         fprintf(ofp, "%s\n", msg);
1048
1049         fprintf(ofp, " Reads Queued:    %'8lu, %'8LuKiB\t", ios->qreads, ios->qread_kb);
1050         fprintf(ofp, " Writes Queued:    %'8lu, %'8LuKiB\n", ios->qwrites,ios->qwrite_kb);
1051
1052         fprintf(ofp, " Read Dispatches: %'8lu, %'8LuKiB\t", ios->ireads, ios->iread_kb);
1053         fprintf(ofp, " Write Dispatches: %'8lu, %'8LuKiB\n", ios->iwrites,ios->iwrite_kb);
1054         fprintf(ofp, " Reads Completed: %'8lu, %'8LuKiB\t", ios->creads, ios->cread_kb);
1055         fprintf(ofp, " Writes Completed: %'8lu, %'8LuKiB\n", ios->cwrites,ios->cwrite_kb);
1056         fprintf(ofp, " Read Merges:     %'8lu%8c\t", ios->mreads, ' ');
1057         fprintf(ofp, " Write Merges:     %'8lu\n", ios->mwrites);
1058         fprintf(ofp, " IO unplugs:      %'8lu%8c\t", ios->io_unplugs, ' ');
1059         fprintf(ofp, " Timer unplugs:    %'8lu\n", ios->timer_unplugs);
1060 }
1061
1062 static void dump_wait_stats(struct per_process_info *ppi)
1063 {
1064         unsigned long rawait = ppi->longest_allocation_wait[0] / 1000;
1065         unsigned long rdwait = ppi->longest_dispatch_wait[0] / 1000;
1066         unsigned long rcwait = ppi->longest_completion_wait[0] / 1000;
1067         unsigned long wawait = ppi->longest_allocation_wait[1] / 1000;
1068         unsigned long wdwait = ppi->longest_dispatch_wait[1] / 1000;
1069         unsigned long wcwait = ppi->longest_completion_wait[1] / 1000;
1070
1071         fprintf(ofp, " Allocation wait: %'8lu%8c\t", rawait, ' ');
1072         fprintf(ofp, " Allocation wait:  %'8lu\n", wawait);
1073         fprintf(ofp, " Dispatch wait:   %'8lu%8c\t", rdwait, ' ');
1074         fprintf(ofp, " Dispatch wait:    %'8lu\n", wdwait);
1075         fprintf(ofp, " Completion wait: %'8lu%8c\t", rcwait, ' ');
1076         fprintf(ofp, " Completion wait:  %'8lu\n", wcwait);
1077 }
1078
1079 static int ppi_name_compare(const void *p1, const void *p2)
1080 {
1081         struct per_process_info *ppi1 = *((struct per_process_info **) p1);
1082         struct per_process_info *ppi2 = *((struct per_process_info **) p2);
1083         int res;
1084
1085         res = strverscmp(ppi1->name, ppi2->name);
1086         if (!res)
1087                 res = ppi1->pid > ppi2->pid;
1088
1089         return res;
1090 }
1091
1092 static void sort_process_list(void)
1093 {
1094         struct per_process_info **ppis;
1095         struct per_process_info *ppi;
1096         int i = 0;
1097
1098         ppis = malloc(ppi_list_entries * sizeof(struct per_process_info *));
1099
1100         ppi = ppi_list;
1101         while (ppi) {
1102                 ppis[i++] = ppi;
1103                 ppi = ppi->list_next;
1104         }
1105
1106         qsort(ppis, ppi_list_entries, sizeof(ppi), ppi_name_compare);
1107
1108         i = ppi_list_entries - 1;
1109         ppi_list = NULL;
1110         while (i >= 0) {
1111                 ppi = ppis[i];
1112
1113                 ppi->list_next = ppi_list;
1114                 ppi_list = ppi;
1115                 i--;
1116         }
1117
1118         free(ppis);
1119 }
1120
1121 static void show_process_stats(void)
1122 {
1123         struct per_process_info *ppi;
1124
1125         sort_process_list();
1126
1127         ppi = ppi_list;
1128         while (ppi) {
1129                 char name[64];
1130
1131                 if (ppi->more_than_one)
1132                         sprintf(name, "%s (%u, ...)", ppi->name, ppi->pid);
1133                 else
1134                         sprintf(name, "%s (%u)", ppi->name, ppi->pid);
1135
1136                 dump_io_stats(&ppi->io_stats, name);
1137                 dump_wait_stats(ppi);
1138                 ppi = ppi->list_next;
1139         }
1140
1141         fprintf(ofp, "\n");
1142 }
1143
1144 static void show_device_and_cpu_stats(void)
1145 {
1146         struct per_dev_info *pdi;
1147         struct per_cpu_info *pci;
1148         struct io_stats total, *ios;
1149         int i, j, pci_events;
1150         char line[3 + 8/*cpu*/ + 2 + 32/*dev*/ + 3];
1151         char name[32];
1152
1153         for (pdi = devices, i = 0; i < ndevices; i++, pdi++) {
1154
1155                 memset(&total, 0, sizeof(total));
1156                 pci_events = 0;
1157
1158                 if (i > 0)
1159                         fprintf(ofp, "\n");
1160
1161                 for (pci = pdi->cpus, j = 0; j < pdi->ncpus; j++, pci++) {
1162                         if (!pci->nelems)
1163                                 continue;
1164
1165                         ios = &pci->io_stats;
1166                         total.qreads += ios->qreads;
1167                         total.qwrites += ios->qwrites;
1168                         total.creads += ios->creads;
1169                         total.cwrites += ios->cwrites;
1170                         total.mreads += ios->mreads;
1171                         total.mwrites += ios->mwrites;
1172                         total.ireads += ios->ireads;
1173                         total.iwrites += ios->iwrites;
1174                         total.qread_kb += ios->qread_kb;
1175                         total.qwrite_kb += ios->qwrite_kb;
1176                         total.cread_kb += ios->cread_kb;
1177                         total.cwrite_kb += ios->cwrite_kb;
1178                         total.iread_kb += ios->iread_kb;
1179                         total.iwrite_kb += ios->iwrite_kb;
1180                         total.timer_unplugs += ios->timer_unplugs;
1181                         total.io_unplugs += ios->io_unplugs;
1182
1183                         snprintf(line, sizeof(line) - 1, "CPU%d (%s):",
1184                                  j, get_dev_name(pdi, name, sizeof(name)));
1185                         dump_io_stats(ios, line);
1186                         pci_events++;
1187                 }
1188
1189                 if (pci_events > 1) {
1190                         fprintf(ofp, "\n");
1191                         snprintf(line, sizeof(line) - 1, "Total (%s):",
1192                                  get_dev_name(pdi, name, sizeof(name)));
1193                         dump_io_stats(&total, line);
1194                 }
1195
1196                 fprintf(ofp, "\nEvents (%s): %'Lu entries, %'lu skips\n",
1197                         get_dev_name(pdi, line, sizeof(line)), pdi->events,
1198                         pdi->skips);
1199         }
1200 }
1201
1202 /*
1203  * struct trace and blktrace allocation cache, we do potentially
1204  * millions of mallocs for these structures while only using at most
1205  * a few thousand at the time
1206  */
1207 static inline void t_free(struct trace *t)
1208 {
1209         if (t_alloc_cache < 1024) {
1210                 t->next = t_alloc_list;
1211                 t_alloc_list = t;
1212                 t_alloc_cache++;
1213         } else
1214                 free(t);
1215 }
1216
1217 static inline struct trace *t_alloc(void)
1218 {
1219         struct trace *t = t_alloc_list;
1220
1221         if (t) {
1222                 t_alloc_list = t->next;
1223                 t_alloc_cache--;
1224                 return t;
1225         }
1226
1227         return malloc(sizeof(*t));
1228 }
1229
1230 static inline void bit_free(struct blk_io_trace *bit)
1231 {
1232         if (bit_alloc_cache < 1024) {
1233                 /*
1234                  * abuse a 64-bit field for a next pointer for the free item
1235                  */
1236                 bit->time = (__u64) (unsigned long) bit_alloc_list;
1237                 bit_alloc_list = (struct blk_io_trace *) bit;
1238                 bit_alloc_cache++;
1239         } else
1240                 free(bit);
1241 }
1242
1243 static inline struct blk_io_trace *bit_alloc(void)
1244 {
1245         struct blk_io_trace *bit = bit_alloc_list;
1246
1247         if (bit) {
1248                 bit_alloc_list = (struct blk_io_trace *) (unsigned long) \
1249                                  bit->time;
1250                 bit_alloc_cache--;
1251                 return bit;
1252         }
1253
1254         return malloc(sizeof(*bit));
1255 }
1256
1257 static void find_genesis(void)
1258 {
1259         struct trace *t = trace_list;
1260
1261         genesis_time = -1ULL;
1262         while (t != NULL) {
1263                 if (t->bit->time < genesis_time)
1264                         genesis_time = t->bit->time;
1265
1266                 t = t->next;
1267         }
1268 }
1269
1270 static inline int check_stopwatch(struct blk_io_trace *bit)
1271 {
1272         if (bit->time < stopwatch_end &&
1273             bit->time >= stopwatch_start)
1274                 return 0;
1275
1276         return 1;
1277 }
1278
1279 /*
1280  * return youngest entry read
1281  */
1282 static int sort_entries(unsigned long long *youngest)
1283 {
1284         struct trace *t;
1285
1286         if (!genesis_time)
1287                 find_genesis();
1288
1289         *youngest = 0;
1290         while ((t = trace_list) != NULL) {
1291                 struct blk_io_trace *bit = t->bit;
1292
1293                 trace_list = t->next;
1294
1295                 bit->time -= genesis_time;
1296
1297                 if (bit->time < *youngest || !*youngest)
1298                         *youngest = bit->time;
1299
1300                 if (check_stopwatch(bit)) {
1301                         bit_free(bit);
1302                         t_free(t);
1303                         continue;
1304                 }
1305
1306                 if (trace_rb_insert_sort(t))
1307                         return -1;
1308
1309                 if (bit->sequence < smallest_seq_read)
1310                         smallest_seq_read = bit->sequence;
1311         }
1312
1313         return 0;
1314 }
1315
1316 static inline void __put_trace_last(struct per_dev_info *pdi, struct trace *t)
1317 {
1318         rb_erase(&t->rb_node, &pdi->rb_last);
1319         pdi->rb_last_entries--;
1320
1321         bit_free(t->bit);
1322         t_free(t);
1323 }
1324
1325 static void put_trace(struct per_dev_info *pdi, struct trace *t)
1326 {
1327         rb_erase(&t->rb_node, &rb_sort_root);
1328         rb_sort_entries--;
1329
1330         trace_rb_insert_last(pdi, t);
1331
1332         if (pdi->rb_last_entries > rb_batch * pdi->nfiles) {
1333                 struct rb_node *n = rb_first(&pdi->rb_last);
1334
1335                 t = rb_entry(n, struct trace, rb_node);
1336                 __put_trace_last(pdi, t);
1337         }
1338 }
1339
1340 static int check_sequence(struct per_dev_info *pdi, struct trace *t, int force)
1341 {
1342         unsigned long expected_sequence = pdi->last_sequence + 1;
1343         struct blk_io_trace *bit = t->bit;
1344         struct trace *__t;
1345         
1346         /*
1347          * first entry, always ok
1348          */
1349         if (!expected_sequence)
1350                 return 0;
1351
1352         if (bit->sequence == expected_sequence)
1353                 return 0;
1354
1355         /*
1356          * we may not have seen that sequence yet. if we are not doing
1357          * the final run, break and wait for more entries.
1358          */
1359         if (expected_sequence < smallest_seq_read) {
1360                 __t = trace_rb_find_last(pdi, expected_sequence);
1361                 if (!__t)
1362                         goto skip;
1363
1364                 __put_trace_last(pdi, __t);
1365                 return 0;
1366         } else if (!force) {
1367                 return 1;
1368         } else {
1369 skip:
1370                 if (print_missing) {
1371                         fprintf(stderr, "(%d,%d): skipping %lu -> %u\n",
1372                                 MAJOR(pdi->dev), MINOR(pdi->dev),
1373                                 pdi->last_sequence, bit->sequence);
1374                 }
1375                 pdi->skips++;
1376                 return 0;
1377         }
1378 }
1379
1380 static void show_entries_rb(int force)
1381 {
1382         struct per_dev_info *pdi = NULL;
1383         struct per_cpu_info *pci = NULL;
1384         struct blk_io_trace *bit;
1385         struct rb_node *n;
1386         struct trace *t;
1387
1388         while ((n = rb_first(&rb_sort_root)) != NULL) {
1389                 if (is_done() && !force && !pipeline)
1390                         break;
1391
1392                 t = rb_entry(n, struct trace, rb_node);
1393                 bit = t->bit;
1394
1395                 if (!pdi || pdi->dev != bit->device)
1396                         pdi = get_dev_info(bit->device);
1397
1398                 if (!pdi) {
1399                         fprintf(stderr, "Unknown device ID? (%d,%d)\n",
1400                                 MAJOR(bit->device), MINOR(bit->device));
1401                         break;
1402                 }
1403
1404                 if (check_sequence(pdi, t, force))
1405                         break;
1406
1407                 if (!force && bit->time > last_allowed_time)
1408                         break;
1409
1410                 pdi->last_sequence = bit->sequence;
1411
1412                 check_time(pdi, bit);
1413
1414                 if (!pci || pci->cpu != bit->cpu)
1415                         pci = get_cpu_info(pdi, bit->cpu);
1416
1417                 if (bit->action & (act_mask << BLK_TC_SHIFT)) 
1418                         dump_trace(bit, pci, pdi);
1419
1420                 put_trace(pdi, t);
1421         }
1422 }
1423
1424 static int read_data(int fd, void *buffer, int bytes, int block)
1425 {
1426         int ret, bytes_left, fl;
1427         void *p;
1428
1429         fl = fcntl(fd, F_GETFL);
1430
1431         if (!block)
1432                 fcntl(fd, F_SETFL, fl | O_NONBLOCK);
1433         else
1434                 fcntl(fd, F_SETFL, fl & ~O_NONBLOCK);
1435
1436         bytes_left = bytes;
1437         p = buffer;
1438         while (bytes_left > 0) {
1439                 ret = read(fd, p, bytes_left);
1440                 if (!ret)
1441                         return 1;
1442                 else if (ret < 0) {
1443                         if (errno != EAGAIN)
1444                                 perror("read");
1445
1446                         return -1;
1447                 } else {
1448                         p += ret;
1449                         bytes_left -= ret;
1450                 }
1451         }
1452
1453         return 0;
1454 }
1455
1456 static int read_events(int fd, int always_block)
1457 {
1458         struct per_dev_info *pdi = NULL;
1459         unsigned int events = 0;
1460
1461         while (!is_done() && events < rb_batch) {
1462                 struct blk_io_trace *bit;
1463                 struct trace *t;
1464                 int pdu_len;
1465                 __u32 magic;
1466
1467                 bit = bit_alloc();
1468
1469                 if (read_data(fd, bit, sizeof(*bit), !events || always_block))
1470                         break;
1471
1472                 magic = be32_to_cpu(bit->magic);
1473                 if ((magic & 0xffffff00) != BLK_IO_TRACE_MAGIC) {
1474                         fprintf(stderr, "Bad magic %x\n", magic);
1475                         break;
1476                 }
1477
1478                 pdu_len = be16_to_cpu(bit->pdu_len);
1479                 if (pdu_len) {
1480                         void *ptr = realloc(bit, sizeof(*bit) + pdu_len);
1481
1482                         if (read_data(fd, ptr + sizeof(*bit), pdu_len, 1))
1483                                 break;
1484
1485                         bit = ptr;
1486                 }
1487
1488                 trace_to_cpu(bit);
1489
1490                 if (verify_trace(bit)) {
1491                         bit_free(bit);
1492                         continue;
1493                 }
1494
1495                 t = t_alloc();
1496                 memset(t, 0, sizeof(*t));
1497                 t->bit = bit;
1498
1499                 t->next = trace_list;
1500                 trace_list = t;
1501
1502                 if (!pdi || pdi->dev != bit->device)
1503                         pdi = get_dev_info(bit->device);
1504
1505                 if (bit->time > pdi->last_read_time)
1506                         pdi->last_read_time = bit->time;
1507
1508                 events++;
1509         }
1510
1511         return events;
1512 }
1513
1514 static int do_file(void)
1515 {
1516         struct per_cpu_info *pci;
1517         struct per_dev_info *pdi;
1518         int i, j, events, events_added;
1519
1520         /*
1521          * first prepare all files for reading
1522          */
1523         for (i = 0; i < ndevices; i++) {
1524                 pdi = &devices[i];
1525                 pdi->nfiles = 0;
1526                 pdi->last_sequence = -1;
1527
1528                 for (j = 0;; j++) {
1529                         struct stat st;
1530                         int len = 0;
1531
1532                         pci = get_cpu_info(pdi, j);
1533                         pci->cpu = j;
1534                         pci->fd = -1;
1535
1536                         if (input_dir)
1537                                 len = sprintf(pci->fname, "%s/", input_dir);
1538
1539                         snprintf(pci->fname + len, sizeof(pci->fname)-1-len,
1540                                  "%s.blktrace.%d", pdi->name, pci->cpu);
1541                         if (stat(pci->fname, &st) < 0)
1542                                 break;
1543                         if (st.st_size) {
1544                                 pci->fd = open(pci->fname, O_RDONLY);
1545                                 if (pci->fd < 0) {
1546                                         perror(pci->fname);
1547                                         continue;
1548                                 }
1549                         }
1550
1551                         printf("Input file %s added\n", pci->fname);
1552                         pdi->nfiles++;
1553                 }
1554         }
1555
1556         /*
1557          * now loop over the files reading in the data
1558          */
1559         do {
1560                 unsigned long long youngest;
1561
1562                 events_added = 0;
1563                 last_allowed_time = -1ULL;
1564                 smallest_seq_read = -1U;
1565
1566                 for (i = 0; i < ndevices; i++) {
1567                         pdi = &devices[i];
1568
1569                         for (j = 0; j < pdi->nfiles; j++) {
1570
1571                                 pci = get_cpu_info(pdi, j);
1572
1573                                 if (pci->fd == -1)
1574                                         continue;
1575
1576                                 events = read_events(pci->fd, 1);
1577                                 if (!events) {
1578                                         close(pci->fd);
1579                                         pci->fd = -1;
1580                                         continue;
1581                                 }
1582
1583                                 if (pdi->last_read_time < last_allowed_time)
1584                                         last_allowed_time = pdi->last_read_time;
1585
1586                                 events_added += events;
1587                         }
1588                 }
1589
1590                 if (sort_entries(&youngest))
1591                         break;
1592
1593                 if (youngest > stopwatch_end)
1594                         break;
1595
1596                 show_entries_rb(0);
1597
1598         } while (events_added);
1599
1600         if (rb_sort_entries)
1601                 show_entries_rb(1);
1602
1603         return 0;
1604 }
1605
1606 static int do_stdin(void)
1607 {
1608         unsigned long long youngest;
1609         int fd, events, loops;
1610
1611         last_allowed_time = -1ULL;
1612         fd = dup(STDIN_FILENO);
1613         if (fd == -1) {
1614                 perror("dup stdin");
1615                 return -1;
1616         }
1617
1618         loops = 0;
1619         while ((events = read_events(fd, 0)) != 0) {
1620         
1621                 smallest_seq_read = -1U;
1622
1623                 if (sort_entries(&youngest))
1624                         break;
1625
1626                 if (youngest > stopwatch_end)
1627                         break;
1628
1629                 if (loops++ & 1)
1630                         show_entries_rb(0);
1631         }
1632
1633         if (rb_sort_entries)
1634                 show_entries_rb(1);
1635
1636         close(fd);
1637         return 0;
1638 }
1639
1640 static void flush_output(void)
1641 {
1642         fflush(ofp);
1643 }
1644
1645 static void handle_sigint(__attribute__((__unused__)) int sig)
1646 {
1647         done = 1;
1648         flush_output();
1649 }
1650
1651 /*
1652  * Extract start and duration times from a string, allowing
1653  * us to specify a time interval of interest within a trace.
1654  * Format: "duration" (start is zero) or "start:duration".
1655  */
1656 static int find_stopwatch_interval(char *string)
1657 {
1658         double value;
1659         char *sp;
1660
1661         value = strtod(string, &sp);
1662         if (sp == string) {
1663                 fprintf(stderr,"Invalid stopwatch timer: %s\n", string);
1664                 return 1;
1665         }
1666         if (*sp == ':') {
1667                 stopwatch_start = DOUBLE_TO_NANO_ULL(value);
1668                 string = sp + 1;
1669                 value = strtod(string, &sp);
1670                 if (sp == string || *sp != '\0') {
1671                         fprintf(stderr,"Invalid stopwatch duration time: %s\n",
1672                                 string);
1673                         return 1;
1674                 }
1675         } else if (*sp != '\0') {
1676                 fprintf(stderr,"Invalid stopwatch start timer: %s\n", string);
1677                 return 1;
1678         }
1679         stopwatch_end = DOUBLE_TO_NANO_ULL(value);
1680         if (stopwatch_end <= stopwatch_start) {
1681                 fprintf(stderr, "Invalid stopwatch interval: %Lu -> %Lu\n",
1682                         stopwatch_start, stopwatch_end);
1683                 return 1;
1684         }
1685
1686         return 0;
1687 }
1688
1689 static char usage_str[] = \
1690         "[ -i <input name> ] [-o <output name> [ -s ] [ -t ] [ -q ]\n" \
1691         "[ -w start:stop ] [ -f output format ] [ -F format spec ] [ -v] \n\n" \
1692         "\t-i Input file containing trace data, or '-' for stdin\n" \
1693         "\t-D Directory to prepend to input file names\n" \
1694         "\t-o Output file. If not given, output is stdout\n" \
1695         "\t-b stdin read batching\n" \
1696         "\t-s Show per-program io statistics\n" \
1697         "\t-n Hash processes by name, not pid\n" \
1698         "\t-t Track individual ios. Will tell you the time a request took\n" \
1699         "\t   to get queued, to get dispatched, and to get completed\n" \
1700         "\t-q Quiet. Don't display any stats at the end of the trace\n" \
1701         "\t-w Only parse data between the given time interval in seconds.\n" \
1702         "\t   If 'start' isn't given, blkparse defaults the start time to 0\n" \
1703         "\t -f Output format. Customize the output format. The format field\n" \
1704         "\t    identifies can be found in the documentation\n" \
1705         "\t-F Format specification. Can be found in the documentation\n" \
1706         "\t-m Print missing entries\n" \
1707         "\t-v Print program version info\n\n";
1708
1709 static void usage(char *prog)
1710 {
1711         fprintf(stderr, "Usage: %s %s %s", prog, blkparse_version, usage_str);
1712 }
1713
1714 int main(int argc, char *argv[])
1715 {
1716         char *ofp_buffer;
1717         int i, c, ret, mode;
1718         int per_device_and_cpu_stats = 1;
1719         int act_mask_tmp = 0;
1720
1721         while ((c = getopt_long(argc, argv, S_OPTS, l_opts, NULL)) != -1) {
1722                 switch (c) {
1723                 case 'a':
1724                         i = find_mask_map(optarg);
1725                         if (i < 0) {
1726                                 fprintf(stderr,"Invalid action mask %s\n",
1727                                         optarg);
1728                                 return 1;
1729                         }
1730                         act_mask_tmp |= i;
1731                         break;
1732
1733                 case 'A':
1734                         if ((sscanf(optarg, "%x", &i) != 1) || 
1735                                                         !valid_act_opt(i)) {
1736                                 fprintf(stderr,
1737                                         "Invalid set action mask %s/0x%x\n",
1738                                         optarg, i);
1739                                 return 1;
1740                         }
1741                         act_mask_tmp = i;
1742                         break;
1743                 case 'i':
1744                         if (!strcmp(optarg, "-") && !pipeline)
1745                                 pipeline = 1;
1746                         else if (resize_devices(optarg) != 0)
1747                                 return 1;
1748                         break;
1749                 case 'D':
1750                         input_dir = optarg;
1751                         break;
1752                 case 'o':
1753                         output_name = optarg;
1754                         break;
1755                 case 'b':
1756                         rb_batch = atoi(optarg);
1757                         if (rb_batch <= 0)
1758                                 rb_batch = RB_BATCH_DEFAULT;
1759                         break;
1760                 case 's':
1761                         per_process_stats = 1;
1762                         break;
1763                 case 't':
1764                         track_ios = 1;
1765                         break;
1766                 case 'q':
1767                         per_device_and_cpu_stats = 0;
1768                         break;
1769                 case 'w':
1770                         if (find_stopwatch_interval(optarg) != 0)
1771                                 return 1;
1772                         break;
1773                 case 'f':
1774                         set_all_format_specs(optarg);
1775                         break;
1776                 case 'F':
1777                         if (add_format_spec(optarg) != 0)
1778                                 return 1;
1779                         break;
1780                 case 'n':
1781                         ppi_hash_by_pid = 0;
1782                         break;
1783                 case 'm':
1784                         print_missing = 1;
1785                         break;
1786                 case 'v':
1787                         printf("%s version %s\n", argv[0], blkparse_version);
1788                         return 0;
1789                 default:
1790                         usage(argv[0]);
1791                         return 1;
1792                 }
1793         }
1794
1795         while (optind < argc) {
1796                 if (!strcmp(argv[optind], "-") && !pipeline)
1797                         pipeline = 1;
1798                 else if (resize_devices(argv[optind]) != 0)
1799                         return 1;
1800                 optind++;
1801         }
1802
1803         if (!pipeline && !ndevices) {
1804                 usage(argv[0]);
1805                 return 1;
1806         }
1807
1808         if (act_mask_tmp != 0)
1809                 act_mask = act_mask_tmp;
1810
1811         memset(&rb_sort_root, 0, sizeof(rb_sort_root));
1812
1813         signal(SIGINT, handle_sigint);
1814         signal(SIGHUP, handle_sigint);
1815         signal(SIGTERM, handle_sigint);
1816
1817         setlocale(LC_NUMERIC, "en_US");
1818
1819         if (!output_name) {
1820                 ofp = fdopen(STDOUT_FILENO, "w");
1821                 mode = _IOLBF;
1822         } else {
1823                 char ofname[128];
1824
1825                 snprintf(ofname, sizeof(ofname) - 1, "%s", output_name);
1826                 ofp = fopen(ofname, "w");
1827                 mode = _IOFBF;
1828         }
1829
1830         if (!ofp) {
1831                 perror("fopen");
1832                 return 1;
1833         }
1834
1835         ofp_buffer = malloc(4096);      
1836         if (setvbuf(ofp, ofp_buffer, mode, 4096)) {
1837                 perror("setvbuf");
1838                 return 1;
1839         }
1840
1841         if (pipeline)
1842                 ret = do_stdin();
1843         else
1844                 ret = do_file();
1845
1846         if (per_process_stats)
1847                 show_process_stats();
1848
1849         if (per_device_and_cpu_stats)
1850                 show_device_and_cpu_stats();
1851
1852         flush_output();
1853         return ret;
1854 }