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