blob: 611aa9f9aa11e68bfe80c8f00d3b2c245de67636 [file] [log] [blame]
Jens Axboef29b25a2007-07-23 08:56:43 +02001/*
2 * Code related to writing an iolog of what a thread is doing, and to
3 * later read that back and replay
4 */
Jens Axboe3c39a372006-06-06 20:56:12 +02005#include <stdio.h>
6#include <stdlib.h>
Jens Axboe5921e802008-05-30 15:02:38 +02007#include <libgen.h>
Jens Axboef29b25a2007-07-23 08:56:43 +02008#include <assert.h>
Jens Axboe01743ee2008-06-02 12:19:19 +02009#include "flist.h"
Jens Axboe3c39a372006-06-06 20:56:12 +020010#include "fio.h"
11
Jens Axboef29b25a2007-07-23 08:56:43 +020012static const char iolog_ver2[] = "fio version 2 iolog";
13
Jens Axboe691c8fb2008-03-07 14:26:26 +010014void queue_io_piece(struct thread_data *td, struct io_piece *ipo)
15{
Jens Axboe01743ee2008-06-02 12:19:19 +020016 flist_add_tail(&ipo->list, &td->io_log_list);
Jens Axboe691c8fb2008-03-07 14:26:26 +010017 td->total_io_size += ipo->len;
18}
19
Jens Axboef29b25a2007-07-23 08:56:43 +020020void log_io_u(struct thread_data *td, struct io_u *io_u)
Jens Axboe3c39a372006-06-06 20:56:12 +020021{
Jens Axboef29b25a2007-07-23 08:56:43 +020022 const char *act[] = { "read", "write", "sync" };
23
24 assert(io_u->ddir < 3);
25
26 if (!td->o.write_iolog_file)
27 return;
28
Jens Axboe5ec10ea2008-03-06 15:42:00 +010029 fprintf(td->iolog_f, "%s %s %llu %lu\n", io_u->file->file_name,
30 act[io_u->ddir], io_u->offset,
31 io_u->buflen);
Jens Axboef29b25a2007-07-23 08:56:43 +020032}
33
34void log_file(struct thread_data *td, struct fio_file *f,
35 enum file_log_act what)
36{
37 const char *act[] = { "add", "open", "close" };
38
39 assert(what < 3);
40
41 if (!td->o.write_iolog_file)
42 return;
43
Jens Axboe393ca7e2008-05-15 09:17:42 +020044
45 /*
46 * this happens on the pre-open/close done before the job starts
47 */
48 if (!td->iolog_f)
49 return;
50
Jens Axboef29b25a2007-07-23 08:56:43 +020051 fprintf(td->iolog_f, "%s %s\n", f->file_name, act[what]);
Jens Axboe3c39a372006-06-06 20:56:12 +020052}
53
Jens Axboea61edde2007-05-15 14:29:58 +020054static void iolog_delay(struct thread_data *td, unsigned long delay)
55{
56 unsigned long usec = utime_since_now(&td->last_issue);
57
58 if (delay < usec)
59 return;
60
61 delay -= usec;
62
63 /*
64 * less than 100 usec delay, just regard it as noise
65 */
66 if (delay < 100)
67 return;
68
69 usec_sleep(td, delay);
70}
71
Jens Axboef7182732008-03-10 13:57:58 +010072static int ipo_special(struct thread_data *td, struct io_piece *ipo)
73{
74 struct fio_file *f;
75 int ret;
76
77 /*
78 * Not a special ipo
79 */
80 if (ipo->ddir != DDIR_INVAL)
81 return 0;
82
83 f = td->files[ipo->fileno];
84
85 switch (ipo->file_action) {
86 case FIO_LOG_OPEN_FILE:
87 ret = td_io_open_file(td, f);
88 if (!ret) {
89 free(ipo);
90 break;
91 }
92 td_verror(td, ret, "iolog open file");
93 return -1;
94 case FIO_LOG_CLOSE_FILE:
95 td_io_close_file(td, f);
96 break;
97 case FIO_LOG_UNLINK_FILE:
98 unlink(f->file_name);
99 break;
100 default:
101 log_err("fio: bad file action %d\n", ipo->file_action);
102 break;
103 }
104
105 return 1;
106}
107
Jens Axboe3c39a372006-06-06 20:56:12 +0200108int read_iolog_get(struct thread_data *td, struct io_u *io_u)
109{
110 struct io_piece *ipo;
111
Jens Axboe01743ee2008-06-02 12:19:19 +0200112 while (!flist_empty(&td->io_log_list)) {
Jens Axboef7182732008-03-10 13:57:58 +0100113 int ret;
114
Jens Axboe01743ee2008-06-02 12:19:19 +0200115 ipo = flist_entry(td->io_log_list.next, struct io_piece, list);
116 flist_del(&ipo->list);
Jens Axboea61edde2007-05-15 14:29:58 +0200117
Jens Axboef7182732008-03-10 13:57:58 +0100118 ret = ipo_special(td, ipo);
119 if (ret < 0) {
120 free(ipo);
121 break;
122 } else if (ret > 0) {
123 free(ipo);
124 continue;
Jens Axboef29b25a2007-07-23 08:56:43 +0200125 }
126
Jens Axboe429f6672007-07-23 10:38:43 +0200127 io_u->offset = ipo->offset;
128 io_u->buflen = ipo->len;
129 io_u->ddir = ipo->ddir;
Jens Axboe126d65c2008-03-01 18:04:31 +0100130 io_u->file = td->files[ipo->fileno];
Jens Axboe429f6672007-07-23 10:38:43 +0200131 get_file(io_u->file);
132
Jens Axboeee56ad52008-02-01 10:30:20 +0100133 dprint(FD_IO, "iolog: get %llu/%lu/%s\n", io_u->offset,
134 io_u->buflen, io_u->file->file_name);
135
Jens Axboea61edde2007-05-15 14:29:58 +0200136 if (ipo->delay)
137 iolog_delay(td, ipo->delay);
138
Jens Axboe3c39a372006-06-06 20:56:12 +0200139 free(ipo);
140 return 0;
141 }
142
Jens Axboe20e354e2007-07-23 14:36:16 +0200143 td->done = 1;
Jens Axboe3c39a372006-06-06 20:56:12 +0200144 return 1;
145}
146
147void prune_io_piece_log(struct thread_data *td)
148{
149 struct io_piece *ipo;
Jens Axboe4b878982007-03-26 09:32:22 +0200150 struct rb_node *n;
Jens Axboe3c39a372006-06-06 20:56:12 +0200151
Jens Axboe4b878982007-03-26 09:32:22 +0200152 while ((n = rb_first(&td->io_hist_tree)) != NULL) {
153 ipo = rb_entry(n, struct io_piece, rb_node);
154 rb_erase(n, &td->io_hist_tree);
Jens Axboe3c39a372006-06-06 20:56:12 +0200155 free(ipo);
156 }
Jens Axboe8ce9cd32008-02-21 09:52:35 +0100157
Jens Axboe01743ee2008-06-02 12:19:19 +0200158 while (!flist_empty(&td->io_hist_list)) {
159 ipo = flist_entry(td->io_hist_list.next, struct io_piece, list);
160 flist_del(&ipo->list);
Jens Axboe8ce9cd32008-02-21 09:52:35 +0100161 free(ipo);
162 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200163}
164
165/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100166 * log a successful write, so we can unwind the log for verify
Jens Axboe3c39a372006-06-06 20:56:12 +0200167 */
168void log_io_piece(struct thread_data *td, struct io_u *io_u)
169{
Jens Axboe8de8f042007-03-27 10:36:12 +0200170 struct rb_node **p, *parent;
Jens Axboe4b878982007-03-26 09:32:22 +0200171 struct io_piece *ipo, *__ipo;
Jens Axboe3c39a372006-06-06 20:56:12 +0200172
Jens Axboe4b878982007-03-26 09:32:22 +0200173 ipo = malloc(sizeof(struct io_piece));
Jens Axboe53cdc682006-10-18 11:50:58 +0200174 ipo->file = io_u->file;
Jens Axboe3c39a372006-06-06 20:56:12 +0200175 ipo->offset = io_u->offset;
176 ipo->len = io_u->buflen;
177
178 /*
Jens Axboe8de8f042007-03-27 10:36:12 +0200179 * We don't need to sort the entries, if:
180 *
181 * Sequential writes, or
182 * Random writes that lay out the file as it goes along
183 *
184 * For both these cases, just reading back data in the order we
185 * wrote it out is the fastest.
186 */
Jens Axboe9b23c9f2008-02-21 09:51:32 +0100187 if (!td_random(td) || !td->o.overwrite) {
Jens Axboe01743ee2008-06-02 12:19:19 +0200188 INIT_FLIST_HEAD(&ipo->list);
189 flist_add_tail(&ipo->list, &td->io_hist_list);
Jens Axboe8de8f042007-03-27 10:36:12 +0200190 return;
191 }
192
193 RB_CLEAR_NODE(&ipo->rb_node);
194 p = &td->io_hist_tree.rb_node;
195 parent = NULL;
196
197 /*
Jens Axboe4b878982007-03-26 09:32:22 +0200198 * Sort the entry into the verification list
Jens Axboe3c39a372006-06-06 20:56:12 +0200199 */
Jens Axboe4b878982007-03-26 09:32:22 +0200200 while (*p) {
201 parent = *p;
Jens Axboe3c39a372006-06-06 20:56:12 +0200202
Jens Axboe4b878982007-03-26 09:32:22 +0200203 __ipo = rb_entry(parent, struct io_piece, rb_node);
Jens Axboebb5d7d02007-03-27 10:21:25 +0200204 if (ipo->offset <= __ipo->offset)
Jens Axboe4b878982007-03-26 09:32:22 +0200205 p = &(*p)->rb_left;
Jens Axboe4b878982007-03-26 09:32:22 +0200206 else
Jens Axboebb5d7d02007-03-27 10:21:25 +0200207 p = &(*p)->rb_right;
Jens Axboe3c39a372006-06-06 20:56:12 +0200208 }
209
Jens Axboe4b878982007-03-26 09:32:22 +0200210 rb_link_node(&ipo->rb_node, parent, p);
211 rb_insert_color(&ipo->rb_node, &td->io_hist_tree);
Jens Axboe3c39a372006-06-06 20:56:12 +0200212}
213
214void write_iolog_close(struct thread_data *td)
215{
216 fflush(td->iolog_f);
217 fclose(td->iolog_f);
218 free(td->iolog_buf);
Jens Axboef29b25a2007-07-23 08:56:43 +0200219 td->iolog_f = NULL;
220 td->iolog_buf = NULL;
Jens Axboe3c39a372006-06-06 20:56:12 +0200221}
222
Jens Axboefb71fbd2006-10-20 09:15:46 +0200223/*
Jens Axboef29b25a2007-07-23 08:56:43 +0200224 * Read version 2 iolog data. It is enhanced to include per-file logging,
225 * syncs, etc.
Jens Axboefb71fbd2006-10-20 09:15:46 +0200226 */
Jens Axboef29b25a2007-07-23 08:56:43 +0200227static int read_iolog2(struct thread_data *td, FILE *f)
228{
229 unsigned long long offset;
230 unsigned int bytes;
Jens Axboe53fa9b62007-07-23 11:25:39 +0200231 int reads, writes, fileno = 0, file_action = 0; /* stupid gcc */
Jens Axboef29b25a2007-07-23 08:56:43 +0200232 char *fname, *act;
233 char *str, *p;
Jens Axboe53fa9b62007-07-23 11:25:39 +0200234 enum fio_ddir rw;
Jens Axboef29b25a2007-07-23 08:56:43 +0200235
236 free_release_files(td);
237
238 /*
239 * Read in the read iolog and store it, reuse the infrastructure
240 * for doing verifications.
241 */
242 str = malloc(4096);
243 fname = malloc(256+16);
244 act = malloc(256+16);
245
246 reads = writes = 0;
247 while ((p = fgets(str, 4096, f)) != NULL) {
248 struct io_piece *ipo;
249 int r;
250
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100251 r = sscanf(p, "%256s %256s %llu %u", fname, act, &offset,
252 &bytes);
Jens Axboef29b25a2007-07-23 08:56:43 +0200253 if (r == 4) {
254 /*
255 * Check action first
256 */
257 if (!strcmp(act, "read"))
258 rw = DDIR_READ;
259 else if (!strcmp(act, "write"))
260 rw = DDIR_WRITE;
261 else if (!strcmp(act, "sync"))
262 rw = DDIR_SYNC;
263 else {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100264 log_err("fio: bad iolog file action: %s\n",
265 act);
Jens Axboef29b25a2007-07-23 08:56:43 +0200266 continue;
267 }
268 } else if (r == 2) {
269 rw = DDIR_INVAL;
270 if (!strcmp(act, "add")) {
271 td->o.nr_files++;
272 fileno = add_file(td, fname);
273 file_action = FIO_LOG_ADD_FILE;
274 continue;
275 } else if (!strcmp(act, "open")) {
276 fileno = get_fileno(td, fname);
277 file_action = FIO_LOG_OPEN_FILE;
278 } else if (!strcmp(act, "close")) {
279 fileno = get_fileno(td, fname);
280 file_action = FIO_LOG_CLOSE_FILE;
281 } else {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100282 log_err("fio: bad iolog file action: %s\n",
283 act);
Jens Axboef29b25a2007-07-23 08:56:43 +0200284 continue;
285 }
286 } else {
287 log_err("bad iolog2: %s", p);
288 continue;
289 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100290
Jens Axboef29b25a2007-07-23 08:56:43 +0200291 if (rw == DDIR_READ)
292 reads++;
Jens Axboe4241ea82007-09-12 08:18:36 +0200293 else if (rw == DDIR_WRITE) {
Jens Axboe4241ea82007-09-12 08:18:36 +0200294 /*
295 * Don't add a write for ro mode
296 */
297 if (read_only)
298 continue;
Jens Axboeed4aa702008-03-07 13:39:59 +0100299 writes++;
Jens Axboe4241ea82007-09-12 08:18:36 +0200300 } else if (rw != DDIR_SYNC && rw != DDIR_INVAL) {
Jens Axboef29b25a2007-07-23 08:56:43 +0200301 log_err("bad ddir: %d\n", rw);
302 continue;
303 }
304
305 /*
306 * Make note of file
307 */
308 ipo = malloc(sizeof(*ipo));
309 memset(ipo, 0, sizeof(*ipo));
Jens Axboe01743ee2008-06-02 12:19:19 +0200310 INIT_FLIST_HEAD(&ipo->list);
Jens Axboef29b25a2007-07-23 08:56:43 +0200311 ipo->offset = offset;
312 ipo->len = bytes;
Jens Axboe53fa9b62007-07-23 11:25:39 +0200313 ipo->ddir = rw;
Jens Axboef29b25a2007-07-23 08:56:43 +0200314 if (bytes > td->o.max_bs[rw])
315 td->o.max_bs[rw] = bytes;
316 if (rw == DDIR_INVAL) {
317 ipo->fileno = fileno;
318 ipo->file_action = file_action;
319 }
Jens Axboe691c8fb2008-03-07 14:26:26 +0100320 queue_io_piece(td, ipo);
Jens Axboef29b25a2007-07-23 08:56:43 +0200321 }
322
323 free(str);
324 free(act);
325 free(fname);
326
Jens Axboe4241ea82007-09-12 08:18:36 +0200327 if (writes && read_only) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100328 log_err("fio: <%s> skips replay of %d writes due to"
329 " read-only\n", td->o.name, writes);
Jens Axboe4241ea82007-09-12 08:18:36 +0200330 writes = 0;
331 }
332
Jens Axboef29b25a2007-07-23 08:56:43 +0200333 if (!reads && !writes)
334 return 1;
335 else if (reads && !writes)
336 td->o.td_ddir = TD_DDIR_READ;
337 else if (!reads && writes)
338 td->o.td_ddir = TD_DDIR_WRITE;
339 else
340 td->o.td_ddir = TD_DDIR_RW;
341
342 return 0;
343}
344
345/*
Jens Axboef29b25a2007-07-23 08:56:43 +0200346 * open iolog, check version, and call appropriate parser
347 */
348static int init_iolog_read(struct thread_data *td)
349{
350 char buffer[256], *p;
351 FILE *f;
352 int ret;
353
354 f = fopen(td->o.read_iolog_file, "r");
355 if (!f) {
356 perror("fopen read iolog");
357 return 1;
358 }
359
360 p = fgets(buffer, sizeof(buffer), f);
361 if (!p) {
362 td_verror(td, errno, "iolog read");
363 log_err("fio: unable to read iolog\n");
364 return 1;
365 }
366
367 /*
368 * version 2 of the iolog stores a specific string as the
369 * first line, check for that
370 */
371 if (!strncmp(iolog_ver2, buffer, strlen(iolog_ver2)))
372 ret = read_iolog2(td, f);
373 else {
Jens Axboeaec2de22008-04-24 12:44:42 +0200374 log_err("fio: iolog version 1 is no longer supported\n");
375 ret = 1;
Jens Axboef29b25a2007-07-23 08:56:43 +0200376 }
377
378 fclose(f);
379 return ret;
380}
381
382/*
Jens Axboefb71fbd2006-10-20 09:15:46 +0200383 * Setup a log for storing io patterns.
384 */
385static int init_iolog_write(struct thread_data *td)
386{
Jens Axboef29b25a2007-07-23 08:56:43 +0200387 struct fio_file *ff;
Jens Axboe076efc72006-10-27 11:24:25 +0200388 FILE *f;
Jens Axboef29b25a2007-07-23 08:56:43 +0200389 unsigned int i;
Jens Axboe733ed592007-04-25 14:24:12 +0200390
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100391 f = fopen(td->o.write_iolog_file, "w+");
Jens Axboefb71fbd2006-10-20 09:15:46 +0200392 if (!f) {
393 perror("fopen write iolog");
394 return 1;
395 }
396
397 /*
398 * That's it for writing, setup a log buffer and we're done.
399 */
400 td->iolog_f = f;
401 td->iolog_buf = malloc(8192);
402 setvbuf(f, td->iolog_buf, _IOFBF, 8192);
Jens Axboef29b25a2007-07-23 08:56:43 +0200403
404 /*
405 * write our version line
406 */
407 if (fprintf(f, "%s\n", iolog_ver2) < 0) {
408 perror("iolog init\n");
409 return 1;
410 }
411
412 /*
413 * add all known files
414 */
415 for_each_file(td, ff, i)
416 log_file(td, ff, FIO_LOG_ADD_FILE);
417
Jens Axboefb71fbd2006-10-20 09:15:46 +0200418 return 0;
419}
420
421int init_iolog(struct thread_data *td)
422{
Jens Axboeb4a6a592006-10-20 13:54:47 +0200423 int ret = 0;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200424
Jens Axboeba0fbe12007-03-09 14:34:23 +0100425 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200426 return 0;
427
Jens Axboefb7b71a2007-05-15 08:44:04 +0200428 if (td->o.read_iolog_file) {
429 /*
430 * Check if it's a blktrace file and load that if possible.
431 * Otherwise assume it's a normal log file and load that.
432 */
433 if (is_blktrace(td->o.read_iolog_file))
434 ret = load_blktrace(td, td->o.read_iolog_file);
435 else
436 ret = init_iolog_read(td);
437 } else if (td->o.write_iolog_file)
Jens Axboeb4a6a592006-10-20 13:54:47 +0200438 ret = init_iolog_write(td);
439
Jens Axboe1e97cce2006-12-05 11:44:16 +0100440 return ret;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200441}
442
Jens Axboe8914a9d2006-06-07 11:14:56 +0200443void setup_log(struct io_log **log)
444{
445 struct io_log *l = malloc(sizeof(*l));
446
447 l->nr_samples = 0;
448 l->max_samples = 1024;
449 l->log = malloc(l->max_samples * sizeof(struct io_sample));
450 *log = l;
451}
452
Jens Axboebb3884d2007-01-17 17:23:11 +1100453void __finish_log(struct io_log *log, const char *name)
Jens Axboe8914a9d2006-06-07 11:14:56 +0200454{
Jens Axboe8914a9d2006-06-07 11:14:56 +0200455 unsigned int i;
Jens Axboebb3884d2007-01-17 17:23:11 +1100456 FILE *f;
Jens Axboe8914a9d2006-06-07 11:14:56 +0200457
Jens Axboebb3884d2007-01-17 17:23:11 +1100458 f = fopen(name, "w");
Jens Axboe8914a9d2006-06-07 11:14:56 +0200459 if (!f) {
460 perror("fopen log");
461 return;
462 }
463
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100464 for (i = 0; i < log->nr_samples; i++) {
465 fprintf(f, "%lu, %lu, %u\n", log->log[i].time, log->log[i].val,
466 log->log[i].ddir);
467 }
Jens Axboe8914a9d2006-06-07 11:14:56 +0200468
469 fclose(f);
470 free(log->log);
471 free(log);
472}
Jens Axboebb3884d2007-01-17 17:23:11 +1100473
Jens Axboee3cedca2008-11-19 19:57:52 +0100474void finish_log_named(struct thread_data *td, struct io_log *log,
475 const char *prefix, const char *postfix)
Jens Axboebb3884d2007-01-17 17:23:11 +1100476{
Jens Axboe748b23a2008-05-07 14:28:22 +0200477 char file_name[256], *p;
Jens Axboebb3884d2007-01-17 17:23:11 +1100478
Jens Axboee3cedca2008-11-19 19:57:52 +0100479 snprintf(file_name, 200, "%s_%s.log", prefix, postfix);
Jens Axboe748b23a2008-05-07 14:28:22 +0200480 p = basename(file_name);
481 __finish_log(log, p);
Jens Axboebb3884d2007-01-17 17:23:11 +1100482}
Jens Axboee3cedca2008-11-19 19:57:52 +0100483
484void finish_log(struct thread_data *td, struct io_log *log, const char *name)
485{
486 finish_log_named(td, log, td->o.name, name);
487}