iolog: get rid of one section of CONFIG_ZLIB ifdef
[fio.git] / iolog.c
1 /*
2  * Code related to writing an iolog of what a thread is doing, and to
3  * later read that back and replay
4  */
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <libgen.h>
8 #include <assert.h>
9 #include <sys/types.h>
10 #include <sys/stat.h>
11 #include <unistd.h>
12 #ifdef CONFIG_ZLIB
13 #include <zlib.h>
14 #endif
15
16 #include "flist.h"
17 #include "fio.h"
18 #include "verify.h"
19 #include "trim.h"
20 #include "filelock.h"
21 #include "lib/tp.h"
22
23 static const char iolog_ver2[] = "fio version 2 iolog";
24
25 void queue_io_piece(struct thread_data *td, struct io_piece *ipo)
26 {
27         flist_add_tail(&ipo->list, &td->io_log_list);
28         td->total_io_size += ipo->len;
29 }
30
31 void log_io_u(struct thread_data *td, struct io_u *io_u)
32 {
33         const char *act[] = { "read", "write", "sync", "datasync",
34                                 "sync_file_range", "wait", "trim" };
35
36         assert(io_u->ddir <= 6);
37
38         if (!td->o.write_iolog_file)
39                 return;
40
41         fprintf(td->iolog_f, "%s %s %llu %lu\n", io_u->file->file_name,
42                                                 act[io_u->ddir], io_u->offset,
43                                                 io_u->buflen);
44 }
45
46 void log_file(struct thread_data *td, struct fio_file *f,
47               enum file_log_act what)
48 {
49         const char *act[] = { "add", "open", "close" };
50
51         assert(what < 3);
52
53         if (!td->o.write_iolog_file)
54                 return;
55
56
57         /*
58          * this happens on the pre-open/close done before the job starts
59          */
60         if (!td->iolog_f)
61                 return;
62
63         fprintf(td->iolog_f, "%s %s\n", f->file_name, act[what]);
64 }
65
66 static void iolog_delay(struct thread_data *td, unsigned long delay)
67 {
68         unsigned long usec = utime_since_now(&td->last_issue);
69         unsigned long this_delay;
70
71         if (delay < usec)
72                 return;
73
74         delay -= usec;
75
76         /*
77          * less than 100 usec delay, just regard it as noise
78          */
79         if (delay < 100)
80                 return;
81
82         while (delay && !td->terminate) {
83                 this_delay = delay;
84                 if (this_delay > 500000)
85                         this_delay = 500000;
86
87                 usec_sleep(td, this_delay);
88                 delay -= this_delay;
89         }
90 }
91
92 static int ipo_special(struct thread_data *td, struct io_piece *ipo)
93 {
94         struct fio_file *f;
95         int ret;
96
97         /*
98          * Not a special ipo
99          */
100         if (ipo->ddir != DDIR_INVAL)
101                 return 0;
102
103         f = td->files[ipo->fileno];
104
105         switch (ipo->file_action) {
106         case FIO_LOG_OPEN_FILE:
107                 ret = td_io_open_file(td, f);
108                 if (!ret)
109                         break;
110                 td_verror(td, ret, "iolog open file");
111                 return -1;
112         case FIO_LOG_CLOSE_FILE:
113                 td_io_close_file(td, f);
114                 break;
115         case FIO_LOG_UNLINK_FILE:
116                 unlink(f->file_name);
117                 break;
118         default:
119                 log_err("fio: bad file action %d\n", ipo->file_action);
120                 break;
121         }
122
123         return 1;
124 }
125
126 int read_iolog_get(struct thread_data *td, struct io_u *io_u)
127 {
128         struct io_piece *ipo;
129         unsigned long elapsed;
130
131         while (!flist_empty(&td->io_log_list)) {
132                 int ret;
133
134                 ipo = flist_entry(td->io_log_list.next, struct io_piece, list);
135                 flist_del(&ipo->list);
136                 remove_trim_entry(td, ipo);
137
138                 ret = ipo_special(td, ipo);
139                 if (ret < 0) {
140                         free(ipo);
141                         break;
142                 } else if (ret > 0) {
143                         free(ipo);
144                         continue;
145                 }
146
147                 io_u->ddir = ipo->ddir;
148                 if (ipo->ddir != DDIR_WAIT) {
149                         io_u->offset = ipo->offset;
150                         io_u->buflen = ipo->len;
151                         io_u->file = td->files[ipo->fileno];
152                         get_file(io_u->file);
153                         dprint(FD_IO, "iolog: get %llu/%lu/%s\n", io_u->offset,
154                                                 io_u->buflen, io_u->file->file_name);
155                         if (ipo->delay)
156                                 iolog_delay(td, ipo->delay);
157                 } else {
158                         elapsed = mtime_since_genesis();
159                         if (ipo->delay > elapsed)
160                                 usec_sleep(td, (ipo->delay - elapsed) * 1000);
161                 }
162
163                 free(ipo);
164
165                 if (io_u->ddir != DDIR_WAIT)
166                         return 0;
167         }
168
169         td->done = 1;
170         return 1;
171 }
172
173 void prune_io_piece_log(struct thread_data *td)
174 {
175         struct io_piece *ipo;
176         struct rb_node *n;
177
178         while ((n = rb_first(&td->io_hist_tree)) != NULL) {
179                 ipo = rb_entry(n, struct io_piece, rb_node);
180                 rb_erase(n, &td->io_hist_tree);
181                 remove_trim_entry(td, ipo);
182                 td->io_hist_len--;
183                 free(ipo);
184         }
185
186         while (!flist_empty(&td->io_hist_list)) {
187                 ipo = flist_entry(td->io_hist_list.next, struct io_piece, list);
188                 flist_del(&ipo->list);
189                 remove_trim_entry(td, ipo);
190                 td->io_hist_len--;
191                 free(ipo);
192         }
193 }
194
195 /*
196  * log a successful write, so we can unwind the log for verify
197  */
198 void log_io_piece(struct thread_data *td, struct io_u *io_u)
199 {
200         struct rb_node **p, *parent;
201         struct io_piece *ipo, *__ipo;
202
203         ipo = malloc(sizeof(struct io_piece));
204         init_ipo(ipo);
205         ipo->file = io_u->file;
206         ipo->offset = io_u->offset;
207         ipo->len = io_u->buflen;
208         ipo->numberio = io_u->numberio;
209         ipo->flags = IP_F_IN_FLIGHT;
210
211         io_u->ipo = ipo;
212
213         if (io_u_should_trim(td, io_u)) {
214                 flist_add_tail(&ipo->trim_list, &td->trim_list);
215                 td->trim_entries++;
216         }
217
218         /*
219          * We don't need to sort the entries, if:
220          *
221          *      Sequential writes, or
222          *      Random writes that lay out the file as it goes along
223          *
224          * For both these cases, just reading back data in the order we
225          * wrote it out is the fastest.
226          *
227          * One exception is if we don't have a random map AND we are doing
228          * verifies, in that case we need to check for duplicate blocks and
229          * drop the old one, which we rely on the rb insert/lookup for
230          * handling.
231          */
232         if (((!td->o.verifysort) || !td_random(td) || !td->o.overwrite) &&
233               (file_randommap(td, ipo->file) || td->o.verify == VERIFY_NONE)) {
234                 INIT_FLIST_HEAD(&ipo->list);
235                 flist_add_tail(&ipo->list, &td->io_hist_list);
236                 ipo->flags |= IP_F_ONLIST;
237                 td->io_hist_len++;
238                 return;
239         }
240
241         RB_CLEAR_NODE(&ipo->rb_node);
242
243         /*
244          * Sort the entry into the verification list
245          */
246 restart:
247         p = &td->io_hist_tree.rb_node;
248         parent = NULL;
249         while (*p) {
250                 parent = *p;
251
252                 __ipo = rb_entry(parent, struct io_piece, rb_node);
253                 if (ipo->file < __ipo->file)
254                         p = &(*p)->rb_left;
255                 else if (ipo->file > __ipo->file)
256                         p = &(*p)->rb_right;
257                 else if (ipo->offset < __ipo->offset)
258                         p = &(*p)->rb_left;
259                 else if (ipo->offset > __ipo->offset)
260                         p = &(*p)->rb_right;
261                 else {
262                         dprint(FD_IO, "iolog: overlap %llu/%lu, %llu/%lu",
263                                 __ipo->offset, __ipo->len,
264                                 ipo->offset, ipo->len);
265                         td->io_hist_len--;
266                         rb_erase(parent, &td->io_hist_tree);
267                         remove_trim_entry(td, __ipo);
268                         free(__ipo);
269                         goto restart;
270                 }
271         }
272
273         rb_link_node(&ipo->rb_node, parent, p);
274         rb_insert_color(&ipo->rb_node, &td->io_hist_tree);
275         ipo->flags |= IP_F_ONRB;
276         td->io_hist_len++;
277 }
278
279 void unlog_io_piece(struct thread_data *td, struct io_u *io_u)
280 {
281         struct io_piece *ipo = io_u->ipo;
282
283         if (!ipo)
284                 return;
285
286         if (ipo->flags & IP_F_ONRB)
287                 rb_erase(&ipo->rb_node, &td->io_hist_tree);
288         else if (ipo->flags & IP_F_ONLIST)
289                 flist_del(&ipo->list);
290
291         free(ipo);
292         io_u->ipo = NULL;
293         td->io_hist_len--;
294 }
295
296 void trim_io_piece(struct thread_data *td, struct io_u *io_u)
297 {
298         struct io_piece *ipo = io_u->ipo;
299
300         if (!ipo)
301                 return;
302
303         ipo->len = io_u->xfer_buflen - io_u->resid;
304 }
305
306 void write_iolog_close(struct thread_data *td)
307 {
308         fflush(td->iolog_f);
309         fclose(td->iolog_f);
310         free(td->iolog_buf);
311         td->iolog_f = NULL;
312         td->iolog_buf = NULL;
313 }
314
315 /*
316  * Read version 2 iolog data. It is enhanced to include per-file logging,
317  * syncs, etc.
318  */
319 static int read_iolog2(struct thread_data *td, FILE *f)
320 {
321         unsigned long long offset;
322         unsigned int bytes;
323         int reads, writes, waits, fileno = 0, file_action = 0; /* stupid gcc */
324         char *fname, *act;
325         char *str, *p;
326         enum fio_ddir rw;
327
328         free_release_files(td);
329
330         /*
331          * Read in the read iolog and store it, reuse the infrastructure
332          * for doing verifications.
333          */
334         str = malloc(4096);
335         fname = malloc(256+16);
336         act = malloc(256+16);
337
338         reads = writes = waits = 0;
339         while ((p = fgets(str, 4096, f)) != NULL) {
340                 struct io_piece *ipo;
341                 int r;
342
343                 r = sscanf(p, "%256s %256s %llu %u", fname, act, &offset,
344                                                                         &bytes);
345                 if (r == 4) {
346                         /*
347                          * Check action first
348                          */
349                         if (!strcmp(act, "wait"))
350                                 rw = DDIR_WAIT;
351                         else if (!strcmp(act, "read"))
352                                 rw = DDIR_READ;
353                         else if (!strcmp(act, "write"))
354                                 rw = DDIR_WRITE;
355                         else if (!strcmp(act, "sync"))
356                                 rw = DDIR_SYNC;
357                         else if (!strcmp(act, "datasync"))
358                                 rw = DDIR_DATASYNC;
359                         else if (!strcmp(act, "trim"))
360                                 rw = DDIR_TRIM;
361                         else {
362                                 log_err("fio: bad iolog file action: %s\n",
363                                                                         act);
364                                 continue;
365                         }
366                         fileno = get_fileno(td, fname);
367                 } else if (r == 2) {
368                         rw = DDIR_INVAL;
369                         if (!strcmp(act, "add")) {
370                                 fileno = add_file(td, fname, 0, 1);
371                                 file_action = FIO_LOG_ADD_FILE;
372                                 continue;
373                         } else if (!strcmp(act, "open")) {
374                                 fileno = get_fileno(td, fname);
375                                 file_action = FIO_LOG_OPEN_FILE;
376                         } else if (!strcmp(act, "close")) {
377                                 fileno = get_fileno(td, fname);
378                                 file_action = FIO_LOG_CLOSE_FILE;
379                         } else {
380                                 log_err("fio: bad iolog file action: %s\n",
381                                                                         act);
382                                 continue;
383                         }
384                 } else {
385                         log_err("bad iolog2: %s", p);
386                         continue;
387                 }
388
389                 if (rw == DDIR_READ)
390                         reads++;
391                 else if (rw == DDIR_WRITE) {
392                         /*
393                          * Don't add a write for ro mode
394                          */
395                         if (read_only)
396                                 continue;
397                         writes++;
398                 } else if (rw == DDIR_WAIT) {
399                         waits++;
400                 } else if (rw == DDIR_INVAL) {
401                 } else if (!ddir_sync(rw)) {
402                         log_err("bad ddir: %d\n", rw);
403                         continue;
404                 }
405
406                 /*
407                  * Make note of file
408                  */
409                 ipo = malloc(sizeof(*ipo));
410                 init_ipo(ipo);
411                 ipo->ddir = rw;
412                 if (rw == DDIR_WAIT) {
413                         ipo->delay = offset;
414                 } else {
415                         ipo->offset = offset;
416                         ipo->len = bytes;
417                         if (rw != DDIR_INVAL && bytes > td->o.max_bs[rw])
418                                 td->o.max_bs[rw] = bytes;
419                         ipo->fileno = fileno;
420                         ipo->file_action = file_action;
421                         td->o.size += bytes;
422                 }
423
424                 queue_io_piece(td, ipo);
425         }
426
427         free(str);
428         free(act);
429         free(fname);
430
431         if (writes && read_only) {
432                 log_err("fio: <%s> skips replay of %d writes due to"
433                         " read-only\n", td->o.name, writes);
434                 writes = 0;
435         }
436
437         if (!reads && !writes && !waits)
438                 return 1;
439         else if (reads && !writes)
440                 td->o.td_ddir = TD_DDIR_READ;
441         else if (!reads && writes)
442                 td->o.td_ddir = TD_DDIR_WRITE;
443         else
444                 td->o.td_ddir = TD_DDIR_RW;
445
446         return 0;
447 }
448
449 /*
450  * open iolog, check version, and call appropriate parser
451  */
452 static int init_iolog_read(struct thread_data *td)
453 {
454         char buffer[256], *p;
455         FILE *f;
456         int ret;
457
458         f = fopen(td->o.read_iolog_file, "r");
459         if (!f) {
460                 perror("fopen read iolog");
461                 return 1;
462         }
463
464         p = fgets(buffer, sizeof(buffer), f);
465         if (!p) {
466                 td_verror(td, errno, "iolog read");
467                 log_err("fio: unable to read iolog\n");
468                 fclose(f);
469                 return 1;
470         }
471
472         /*
473          * version 2 of the iolog stores a specific string as the
474          * first line, check for that
475          */
476         if (!strncmp(iolog_ver2, buffer, strlen(iolog_ver2)))
477                 ret = read_iolog2(td, f);
478         else {
479                 log_err("fio: iolog version 1 is no longer supported\n");
480                 ret = 1;
481         }
482
483         fclose(f);
484         return ret;
485 }
486
487 /*
488  * Set up a log for storing io patterns.
489  */
490 static int init_iolog_write(struct thread_data *td)
491 {
492         struct fio_file *ff;
493         FILE *f;
494         unsigned int i;
495
496         f = fopen(td->o.write_iolog_file, "a");
497         if (!f) {
498                 perror("fopen write iolog");
499                 return 1;
500         }
501
502         /*
503          * That's it for writing, setup a log buffer and we're done.
504           */
505         td->iolog_f = f;
506         td->iolog_buf = malloc(8192);
507         setvbuf(f, td->iolog_buf, _IOFBF, 8192);
508
509         /*
510          * write our version line
511          */
512         if (fprintf(f, "%s\n", iolog_ver2) < 0) {
513                 perror("iolog init\n");
514                 return 1;
515         }
516
517         /*
518          * add all known files
519          */
520         for_each_file(td, ff, i)
521                 log_file(td, ff, FIO_LOG_ADD_FILE);
522
523         return 0;
524 }
525
526 int init_iolog(struct thread_data *td)
527 {
528         int ret = 0;
529
530         if (td->o.read_iolog_file) {
531                 int need_swap;
532
533                 /*
534                  * Check if it's a blktrace file and load that if possible.
535                  * Otherwise assume it's a normal log file and load that.
536                  */
537                 if (is_blktrace(td->o.read_iolog_file, &need_swap))
538                         ret = load_blktrace(td, td->o.read_iolog_file, need_swap);
539                 else
540                         ret = init_iolog_read(td);
541         } else if (td->o.write_iolog_file)
542                 ret = init_iolog_write(td);
543
544         if (ret)
545                 td_verror(td, EINVAL, "failed initializing iolog");
546
547         return ret;
548 }
549
550 void setup_log(struct io_log **log, struct log_params *p,
551                const char *filename)
552 {
553         struct io_log *l = malloc(sizeof(*l));
554
555         memset(l, 0, sizeof(*l));
556         l->nr_samples = 0;
557         l->max_samples = 1024;
558         l->log_type = p->log_type;
559         l->log_offset = p->log_offset;
560         l->log_gz = p->log_gz;
561         l->log_gz_store = p->log_gz_store;
562         l->log = malloc(l->max_samples * log_entry_sz(l));
563         l->avg_msec = p->avg_msec;
564         l->filename = strdup(filename);
565         l->td = p->td;
566
567         if (l->log_offset)
568                 l->log_ddir_mask = 0x80000000;
569
570         INIT_FLIST_HEAD(&l->chunk_list);
571
572         if (l->log_gz && !p->td)
573                 l->log_gz = 0;
574         else if (l->log_gz) {
575                 pthread_mutex_init(&l->chunk_lock, NULL);
576                 p->td->flags |= TD_F_COMPRESS_LOG;
577         }
578
579         *log = l;
580 }
581
582 #ifdef CONFIG_SETVBUF
583 static void *set_file_buffer(FILE *f)
584 {
585         size_t size = 1048576;
586         void *buf;
587
588         buf = malloc(size);
589         setvbuf(f, buf, _IOFBF, size);
590         return buf;
591 }
592
593 static void clear_file_buffer(void *buf)
594 {
595         free(buf);
596 }
597 #else
598 static void *set_file_buffer(FILE *f)
599 {
600         return NULL;
601 }
602
603 static void clear_file_buffer(void *buf)
604 {
605 }
606 #endif
607
608 void free_log(struct io_log *log)
609 {
610         free(log->log);
611         free(log->filename);
612         free(log);
613 }
614
615 static void flush_samples(FILE *f, void *samples, uint64_t sample_size)
616 {
617         struct io_sample *s;
618         int log_offset;
619         uint64_t i, nr_samples;
620
621         if (!sample_size)
622                 return;
623
624         s = __get_sample(samples, 0, 0);
625         if (s->__ddir & 0x80000000)
626                 log_offset = 1;
627         else
628                 log_offset = 0;
629
630         nr_samples = sample_size / __log_entry_sz(log_offset);
631
632         for (i = 0; i < nr_samples; i++) {
633                 s = __get_sample(samples, log_offset, i);
634
635                 if (!log_offset) {
636                         fprintf(f, "%lu, %lu, %u, %u\n",
637                                         (unsigned long) s->time,
638                                         (unsigned long) s->val,
639                                         io_sample_ddir(s), s->bs);
640                 } else {
641                         struct io_sample_offset *so = (void *) s;
642
643                         fprintf(f, "%lu, %lu, %u, %u, %llu\n",
644                                         (unsigned long) s->time,
645                                         (unsigned long) s->val,
646                                         io_sample_ddir(s), s->bs,
647                                         (unsigned long long) so->offset);
648                 }
649         }
650 }
651
652 #ifdef CONFIG_ZLIB
653
654 struct iolog_flush_data {
655         struct tp_work work;
656         struct io_log *log;
657         void *samples;
658         uint64_t nr_samples;
659 };
660
661 struct iolog_compress {
662         struct flist_head list;
663         void *buf;
664         size_t len;
665         unsigned int seq;
666         int nofree;
667 };
668
669 #define GZ_CHUNK        131072
670
671 static struct iolog_compress *get_new_chunk(unsigned int seq)
672 {
673         struct iolog_compress *c;
674
675         c = malloc(sizeof(*c));
676         INIT_FLIST_HEAD(&c->list);
677         c->buf = malloc(GZ_CHUNK);
678         c->len = 0;
679         c->seq = seq;
680         c->nofree = 0;
681         return c;
682 }
683
684 static void free_chunk(struct iolog_compress *ic)
685 {
686         if (!ic->nofree) {
687                 free(ic->buf);
688                 free(ic);
689         }
690 }
691
692 static int z_stream_init(z_stream *stream, int gz_hdr)
693 {
694         int wbits = 15;
695
696         stream->zalloc = Z_NULL;
697         stream->zfree = Z_NULL;
698         stream->opaque = Z_NULL;
699         stream->next_in = Z_NULL;
700
701         if (gz_hdr)
702                 wbits += 32;
703
704         if (inflateInit2(stream, wbits) != Z_OK)
705                 return 1;
706
707         return 0;
708 }
709
710 struct flush_chunk_iter {
711         unsigned int seq;
712         void *buf;
713         size_t buf_size;
714         size_t buf_used;
715         size_t chunk_sz;
716 };
717
718 static void finish_chunk(z_stream *stream, FILE *f,
719                          struct flush_chunk_iter *iter)
720 {
721         int ret;
722
723         ret = inflateEnd(stream);
724         if (ret != Z_OK)
725                 log_err("fio: failed to end log inflation (%d)\n", ret);
726
727         flush_samples(f, iter->buf, iter->buf_used);
728         free(iter->buf);
729         iter->buf = NULL;
730         iter->buf_size = iter->buf_used = 0;
731 }
732
733 static int flush_chunk(struct iolog_compress *ic, int gz_hdr, FILE *f,
734                        z_stream *stream, struct flush_chunk_iter *iter)
735 {
736         if (ic->seq != iter->seq) {
737                 if (iter->seq)
738                         finish_chunk(stream, f, iter);
739
740                 z_stream_init(stream, gz_hdr);
741                 iter->seq = ic->seq;
742         }
743
744         stream->avail_in = ic->len;
745         stream->next_in = ic->buf;
746
747         if (!iter->buf_size) {
748                 iter->buf_size = iter->chunk_sz;
749                 iter->buf = malloc(iter->buf_size);
750         }
751
752         while (stream->avail_in) {
753                 size_t this_out = iter->buf_size - iter->buf_used;
754                 int err;
755
756                 stream->avail_out = this_out;
757                 stream->next_out = iter->buf + iter->buf_used;
758
759                 err = inflate(stream, Z_NO_FLUSH);
760                 if (err < 0) {
761                         log_err("fio: failed inflating log: %d\n", err);
762                         break;
763                 }
764
765                 iter->buf_used += this_out - stream->avail_out;
766
767                 if (!stream->avail_out) {
768                         iter->buf_size += iter->chunk_sz;
769                         iter->buf = realloc(iter->buf, iter->buf_size);
770                         continue;
771                 }
772
773                 if (err == Z_STREAM_END)
774                         break;
775         }
776
777         free_chunk(ic);
778         return 0;
779 }
780
781 static void flush_gz_chunks(struct io_log *log, FILE *f)
782 {
783         struct flush_chunk_iter iter = { .chunk_sz = log->log_gz, };
784         struct flist_head *node;
785         z_stream stream;
786
787         while (!flist_empty(&log->chunk_list)) {
788                 struct iolog_compress *ic;
789
790                 node = log->chunk_list.next;
791                 ic = flist_entry(node, struct iolog_compress, list);
792                 flist_del(&ic->list);
793
794                 if (log->log_gz_store) {
795                         fwrite(ic->buf, ic->len, 1, f);
796                         free_chunk(ic);
797                 } else
798                         flush_chunk(ic, log->log_gz_store, f, &stream, &iter);
799         }
800
801         if (iter.seq) {
802                 finish_chunk(&stream, f, &iter);
803                 free(iter.buf);
804         }
805 }
806
807 int iolog_file_inflate(const char *file)
808 {
809         struct flush_chunk_iter iter = { .chunk_sz = 64 * 1024 * 1024, };
810         struct iolog_compress ic;
811         z_stream stream;
812         struct stat sb;
813         ssize_t ret;
814         FILE *f;
815
816         f = fopen(file, "r");
817         if (!f) {
818                 perror("fopen");
819                 return 1;
820         }
821
822         if (stat(file, &sb) < 0) {
823                 fclose(f);
824                 perror("stat");
825                 return 1;
826         }
827
828         ic.buf = malloc(sb.st_size);
829         ic.len = sb.st_size;
830         ic.nofree = 1;
831         ic.seq = 1;
832
833         ret = fread(ic.buf, ic.len, 1, f);
834         if (ret < 0) {
835                 perror("fread");
836                 fclose(f);
837                 return 1;
838         } else if (ret != 1) {
839                 log_err("fio: short read on reading log\n");
840                 fclose(f);
841                 return 1;
842         }
843
844         fclose(f);
845
846         flush_chunk(&ic,  1, stdout, &stream, &iter);
847
848         if (iter.seq) {
849                 finish_chunk(&stream, stdout, &iter);
850                 free(iter.buf);
851         }
852
853         free(ic.buf);
854         return 0;
855 }
856
857 #else
858
859 static void flush_gz_chunks(struct io_log *log, FILE *f)
860 {
861 }
862
863 #endif
864
865 void flush_log(struct io_log *log)
866 {
867         void *buf;
868         FILE *f;
869
870         f = fopen(log->filename, "w");
871         if (!f) {
872                 perror("fopen log");
873                 return;
874         }
875
876         buf = set_file_buffer(f);
877
878         flush_gz_chunks(log, f);
879
880         flush_samples(f, log->log, log->nr_samples * log_entry_sz(log));
881
882         fclose(f);
883         clear_file_buffer(buf);
884 }
885
886 static int finish_log(struct thread_data *td, struct io_log *log, int trylock)
887 {
888         if (td->tp_data)
889                 iolog_flush(log, 1);
890
891         if (trylock) {
892                 if (fio_trylock_file(log->filename))
893                         return 1;
894         } else
895                 fio_lock_file(log->filename);
896
897         if (td->client_type == FIO_CLIENT_TYPE_GUI)
898                 fio_send_iolog(td, log, log->filename);
899         else
900                 flush_log(log);
901
902         fio_unlock_file(log->filename);
903         free_log(log);
904         return 0;
905 }
906
907 #ifdef CONFIG_ZLIB
908
909 static int gz_work(struct tp_work *work)
910 {
911         struct iolog_flush_data *data;
912         struct iolog_compress *c;
913         struct flist_head list;
914         unsigned int seq;
915         z_stream stream;
916         size_t total = 0;
917         int ret;
918
919         INIT_FLIST_HEAD(&list);
920
921         data = container_of(work, struct iolog_flush_data, work);
922
923         stream.zalloc = Z_NULL;
924         stream.zfree = Z_NULL;
925         stream.opaque = Z_NULL;
926
927         ret = deflateInit(&stream, Z_DEFAULT_COMPRESSION);
928         if (ret != Z_OK) {
929                 log_err("fio: failed to init gz stream\n");
930                 return 0;
931         }
932
933         seq = ++data->log->chunk_seq;
934
935         stream.next_in = (void *) data->samples;
936         stream.avail_in = data->nr_samples * log_entry_sz(data->log);
937
938         do {
939                 c = get_new_chunk(seq);
940                 stream.avail_out = GZ_CHUNK;
941                 stream.next_out = c->buf;
942                 ret = deflate(&stream, Z_NO_FLUSH);
943                 if (ret < 0) {
944                         log_err("fio: deflate log (%d)\n", ret);
945                         break;
946                 }
947
948                 c->len = GZ_CHUNK - stream.avail_out;
949                 flist_add_tail(&c->list, &list);
950                 total += c->len;
951         } while (stream.avail_in);
952
953         stream.next_out = c->buf + c->len;
954         stream.avail_out = GZ_CHUNK - c->len;
955
956         ret = deflate(&stream, Z_FINISH);
957         if (ret == Z_STREAM_END)
958                 c->len = GZ_CHUNK - stream.avail_out;
959         else {
960                 do {
961                         c = get_new_chunk(seq);
962                         stream.avail_out = GZ_CHUNK;
963                         stream.next_out = c->buf;
964                         ret = deflate(&stream, Z_FINISH);
965                         c->len = GZ_CHUNK - stream.avail_out;
966                         flist_add_tail(&c->list, &list);
967                 } while (ret != Z_STREAM_END);
968         }
969
970         ret = deflateEnd(&stream);
971         if (ret != Z_OK)
972                 log_err("fio: deflateEnd %d\n", ret);
973
974         free(data->samples);
975
976         if (!flist_empty(&list)) {
977                 pthread_mutex_lock(&data->log->chunk_lock);
978                 flist_splice_tail(&list, &data->log->chunk_list);
979                 pthread_mutex_unlock(&data->log->chunk_lock);
980         }
981
982         if (work->wait) {
983                 work->done = 1;
984                 pthread_cond_signal(&work->cv);
985         } else
986                 free(data);
987
988         return 0;
989 }
990
991 int iolog_flush(struct io_log *log, int wait)
992 {
993         struct tp_data *tdat = log->td->tp_data;
994         struct iolog_flush_data *data;
995         size_t sample_size;
996
997         data = malloc(sizeof(*data));
998         if (!data)
999                 return 1;
1000
1001         data->log = log;
1002
1003         sample_size = log->nr_samples * log_entry_sz(log);
1004         data->samples = malloc(sample_size);
1005         if (!data->samples) {
1006                 free(data);
1007                 return 1;
1008         }
1009
1010         memcpy(data->samples, log->log, sample_size);
1011         data->nr_samples = log->nr_samples;
1012         data->work.fn = gz_work;
1013         log->nr_samples = 0;
1014
1015         if (wait) {
1016                 pthread_mutex_init(&data->work.lock, NULL);
1017                 pthread_cond_init(&data->work.cv, NULL);
1018                 data->work.wait = 1;
1019         } else
1020                 data->work.wait = 0;
1021
1022         tp_queue_work(tdat, &data->work);
1023
1024         if (wait) {
1025                 pthread_mutex_lock(&data->work.lock);
1026                 while (!data->work.done)
1027                         pthread_cond_wait(&data->work.cv, &data->work.lock);
1028                 pthread_mutex_unlock(&data->work.lock);
1029                 free(data);
1030         }
1031
1032         return 0;
1033 }
1034
1035 #else
1036
1037 int iolog_flush(struct io_log *log, int wait)
1038 {
1039         return 1;
1040 }
1041
1042 #endif
1043
1044 static int write_iops_log(struct thread_data *td, int try)
1045 {
1046         struct io_log *log = td->iops_log;
1047
1048         if (!log)
1049                 return 0;
1050
1051         return finish_log(td, log, try);
1052 }
1053
1054 static int write_slat_log(struct thread_data *td, int try)
1055 {
1056         struct io_log *log = td->slat_log;
1057
1058         if (!log)
1059                 return 0;
1060
1061         return finish_log(td, log, try);
1062 }
1063
1064 static int write_clat_log(struct thread_data *td, int try)
1065 {
1066         struct io_log *log = td->clat_log;
1067
1068         if (!log)
1069                 return 0;
1070
1071         return finish_log(td, log, try);
1072 }
1073
1074 static int write_lat_log(struct thread_data *td, int try)
1075 {
1076         struct io_log *log = td->lat_log;
1077
1078         if (!log)
1079                 return 0;
1080
1081         return finish_log(td, log, try);
1082 }
1083
1084 static int write_bandw_log(struct thread_data *td, int try)
1085 {
1086         struct io_log *log = td->bw_log;
1087
1088         if (!log)
1089                 return 0;
1090
1091         return finish_log(td, log, try);
1092 }
1093
1094 enum {
1095         BW_LOG_MASK     = 1,
1096         LAT_LOG_MASK    = 2,
1097         SLAT_LOG_MASK   = 4,
1098         CLAT_LOG_MASK   = 8,
1099         IOPS_LOG_MASK   = 16,
1100
1101         ALL_LOG_NR      = 5,
1102 };
1103
1104 struct log_type {
1105         unsigned int mask;
1106         int (*fn)(struct thread_data *, int);
1107 };
1108
1109 static struct log_type log_types[] = {
1110         {
1111                 .mask   = BW_LOG_MASK,
1112                 .fn     = write_bandw_log,
1113         },
1114         {
1115                 .mask   = LAT_LOG_MASK,
1116                 .fn     = write_lat_log,
1117         },
1118         {
1119                 .mask   = SLAT_LOG_MASK,
1120                 .fn     = write_slat_log,
1121         },
1122         {
1123                 .mask   = CLAT_LOG_MASK,
1124                 .fn     = write_clat_log,
1125         },
1126         {
1127                 .mask   = IOPS_LOG_MASK,
1128                 .fn     = write_iops_log,
1129         },
1130 };
1131
1132 void fio_writeout_logs(struct thread_data *td)
1133 {
1134         unsigned int log_mask = 0;
1135         unsigned int log_left = ALL_LOG_NR;
1136         int old_state, i;
1137
1138         old_state = td_bump_runstate(td, TD_FINISHING);
1139
1140         finalize_logs(td);
1141
1142         while (log_left) {
1143                 int prev_log_left = log_left;
1144
1145                 for (i = 0; i < ALL_LOG_NR && log_left; i++) {
1146                         struct log_type *lt = &log_types[i];
1147                         int ret;
1148
1149                         if (!(log_mask & lt->mask)) {
1150                                 ret = lt->fn(td, log_left != 1);
1151                                 if (!ret) {
1152                                         log_left--;
1153                                         log_mask |= lt->mask;
1154                                 }
1155                         }
1156                 }
1157
1158                 if (prev_log_left == log_left)
1159                         usleep(5000);
1160         }
1161
1162         td_restore_runstate(td, old_state);
1163 }