blob: e7320ef82086c1d039a9ef1169d8cc744f5fc6ed [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 Axboef29b25a2007-07-23 08:56:43 +02007#include <assert.h>
Jens Axboe3c39a372006-06-06 20:56:12 +02008#include "list.h"
9#include "fio.h"
10
Jens Axboef29b25a2007-07-23 08:56:43 +020011static const char iolog_ver2[] = "fio version 2 iolog";
12
13void log_io_u(struct thread_data *td, struct io_u *io_u)
Jens Axboe3c39a372006-06-06 20:56:12 +020014{
Jens Axboef29b25a2007-07-23 08:56:43 +020015 const char *act[] = { "read", "write", "sync" };
16
17 assert(io_u->ddir < 3);
18
19 if (!td->o.write_iolog_file)
20 return;
21
22 fprintf(td->iolog_f, "%s %s %llu %lu\n", io_u->file->file_name, act[io_u->ddir], io_u->offset, io_u->buflen);
23}
24
25void log_file(struct thread_data *td, struct fio_file *f,
26 enum file_log_act what)
27{
28 const char *act[] = { "add", "open", "close" };
29
30 assert(what < 3);
31
32 if (!td->o.write_iolog_file)
33 return;
34
35 fprintf(td->iolog_f, "%s %s\n", f->file_name, act[what]);
Jens Axboe3c39a372006-06-06 20:56:12 +020036}
37
Jens Axboea61edde2007-05-15 14:29:58 +020038static void iolog_delay(struct thread_data *td, unsigned long delay)
39{
40 unsigned long usec = utime_since_now(&td->last_issue);
41
42 if (delay < usec)
43 return;
44
45 delay -= usec;
46
47 /*
48 * less than 100 usec delay, just regard it as noise
49 */
50 if (delay < 100)
51 return;
52
53 usec_sleep(td, delay);
54}
55
Jens Axboe3c39a372006-06-06 20:56:12 +020056int read_iolog_get(struct thread_data *td, struct io_u *io_u)
57{
58 struct io_piece *ipo;
59
Jens Axboeb3f4b4f2007-07-23 11:23:26 +020060 while (!list_empty(&td->io_log_list)) {
Jens Axboe3c39a372006-06-06 20:56:12 +020061 ipo = list_entry(td->io_log_list.next, struct io_piece, list);
62 list_del(&ipo->list);
Jens Axboea61edde2007-05-15 14:29:58 +020063
Jens Axboef29b25a2007-07-23 08:56:43 +020064 /*
65 * invalid ddir, this is a file action
66 */
Jens Axboe429f6672007-07-23 10:38:43 +020067 if (ipo->ddir == DDIR_INVAL) {
Jens Axboef29b25a2007-07-23 08:56:43 +020068 struct fio_file *f = &td->files[ipo->fileno];
69
70 if (ipo->file_action == FIO_LOG_OPEN_FILE) {
71 assert(!td_io_open_file(td, f));
72 free(ipo);
Jens Axboeb3f4b4f2007-07-23 11:23:26 +020073 continue;
Jens Axboef29b25a2007-07-23 08:56:43 +020074 } else if (ipo->file_action == FIO_LOG_CLOSE_FILE) {
75 td_io_close_file(td, f);
76 free(ipo);
Jens Axboeb3f4b4f2007-07-23 11:23:26 +020077 continue;
Jens Axboef29b25a2007-07-23 08:56:43 +020078 }
79 }
80
Jens Axboe429f6672007-07-23 10:38:43 +020081 io_u->offset = ipo->offset;
82 io_u->buflen = ipo->len;
83 io_u->ddir = ipo->ddir;
84 io_u->file = &td->files[ipo->fileno];
85 get_file(io_u->file);
86
Jens Axboeee56ad52008-02-01 10:30:20 +010087 dprint(FD_IO, "iolog: get %llu/%lu/%s\n", io_u->offset,
88 io_u->buflen, io_u->file->file_name);
89
Jens Axboea61edde2007-05-15 14:29:58 +020090 if (ipo->delay)
91 iolog_delay(td, ipo->delay);
92
Jens Axboe3c39a372006-06-06 20:56:12 +020093 free(ipo);
94 return 0;
95 }
96
Jens Axboe20e354e2007-07-23 14:36:16 +020097 td->done = 1;
Jens Axboe3c39a372006-06-06 20:56:12 +020098 return 1;
99}
100
101void prune_io_piece_log(struct thread_data *td)
102{
103 struct io_piece *ipo;
Jens Axboe4b878982007-03-26 09:32:22 +0200104 struct rb_node *n;
Jens Axboe3c39a372006-06-06 20:56:12 +0200105
Jens Axboe4b878982007-03-26 09:32:22 +0200106 while ((n = rb_first(&td->io_hist_tree)) != NULL) {
107 ipo = rb_entry(n, struct io_piece, rb_node);
108 rb_erase(n, &td->io_hist_tree);
Jens Axboe3c39a372006-06-06 20:56:12 +0200109 free(ipo);
110 }
111}
112
113/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100114 * log a successful write, so we can unwind the log for verify
Jens Axboe3c39a372006-06-06 20:56:12 +0200115 */
116void log_io_piece(struct thread_data *td, struct io_u *io_u)
117{
Jens Axboe8de8f042007-03-27 10:36:12 +0200118 struct rb_node **p, *parent;
Jens Axboe4b878982007-03-26 09:32:22 +0200119 struct io_piece *ipo, *__ipo;
Jens Axboe3c39a372006-06-06 20:56:12 +0200120
Jens Axboe4b878982007-03-26 09:32:22 +0200121 ipo = malloc(sizeof(struct io_piece));
Jens Axboe53cdc682006-10-18 11:50:58 +0200122 ipo->file = io_u->file;
Jens Axboe3c39a372006-06-06 20:56:12 +0200123 ipo->offset = io_u->offset;
124 ipo->len = io_u->buflen;
125
126 /*
Jens Axboe8de8f042007-03-27 10:36:12 +0200127 * We don't need to sort the entries, if:
128 *
129 * Sequential writes, or
130 * Random writes that lay out the file as it goes along
131 *
132 * For both these cases, just reading back data in the order we
133 * wrote it out is the fastest.
134 */
Jens Axboe9b23c9f2008-02-21 09:51:32 +0100135 if (!td_random(td) || !td->o.overwrite) {
Jens Axboe8de8f042007-03-27 10:36:12 +0200136 INIT_LIST_HEAD(&ipo->list);
137 list_add_tail(&ipo->list, &td->io_hist_list);
138 return;
139 }
140
141 RB_CLEAR_NODE(&ipo->rb_node);
142 p = &td->io_hist_tree.rb_node;
143 parent = NULL;
144
145 /*
Jens Axboe4b878982007-03-26 09:32:22 +0200146 * Sort the entry into the verification list
Jens Axboe3c39a372006-06-06 20:56:12 +0200147 */
Jens Axboe4b878982007-03-26 09:32:22 +0200148 while (*p) {
149 parent = *p;
Jens Axboe3c39a372006-06-06 20:56:12 +0200150
Jens Axboe4b878982007-03-26 09:32:22 +0200151 __ipo = rb_entry(parent, struct io_piece, rb_node);
Jens Axboebb5d7d02007-03-27 10:21:25 +0200152 if (ipo->offset <= __ipo->offset)
Jens Axboe4b878982007-03-26 09:32:22 +0200153 p = &(*p)->rb_left;
Jens Axboe4b878982007-03-26 09:32:22 +0200154 else
Jens Axboebb5d7d02007-03-27 10:21:25 +0200155 p = &(*p)->rb_right;
Jens Axboe3c39a372006-06-06 20:56:12 +0200156 }
157
Jens Axboe4b878982007-03-26 09:32:22 +0200158 rb_link_node(&ipo->rb_node, parent, p);
159 rb_insert_color(&ipo->rb_node, &td->io_hist_tree);
Jens Axboe3c39a372006-06-06 20:56:12 +0200160}
161
162void write_iolog_close(struct thread_data *td)
163{
164 fflush(td->iolog_f);
165 fclose(td->iolog_f);
166 free(td->iolog_buf);
Jens Axboef29b25a2007-07-23 08:56:43 +0200167 td->iolog_f = NULL;
168 td->iolog_buf = NULL;
Jens Axboe3c39a372006-06-06 20:56:12 +0200169}
170
Jens Axboefb71fbd2006-10-20 09:15:46 +0200171/*
Jens Axboef29b25a2007-07-23 08:56:43 +0200172 * Read version 2 iolog data. It is enhanced to include per-file logging,
173 * syncs, etc.
Jens Axboefb71fbd2006-10-20 09:15:46 +0200174 */
Jens Axboef29b25a2007-07-23 08:56:43 +0200175static int read_iolog2(struct thread_data *td, FILE *f)
176{
177 unsigned long long offset;
178 unsigned int bytes;
Jens Axboe53fa9b62007-07-23 11:25:39 +0200179 int reads, writes, fileno = 0, file_action = 0; /* stupid gcc */
Jens Axboef29b25a2007-07-23 08:56:43 +0200180 char *fname, *act;
181 char *str, *p;
Jens Axboe53fa9b62007-07-23 11:25:39 +0200182 enum fio_ddir rw;
Jens Axboef29b25a2007-07-23 08:56:43 +0200183
184 free_release_files(td);
185
186 /*
187 * Read in the read iolog and store it, reuse the infrastructure
188 * for doing verifications.
189 */
190 str = malloc(4096);
191 fname = malloc(256+16);
192 act = malloc(256+16);
193
194 reads = writes = 0;
195 while ((p = fgets(str, 4096, f)) != NULL) {
196 struct io_piece *ipo;
197 int r;
198
199 r = sscanf(p, "%256s %256s %llu %u", fname, act, &offset, &bytes);
200 if (r == 4) {
201 /*
202 * Check action first
203 */
204 if (!strcmp(act, "read"))
205 rw = DDIR_READ;
206 else if (!strcmp(act, "write"))
207 rw = DDIR_WRITE;
208 else if (!strcmp(act, "sync"))
209 rw = DDIR_SYNC;
210 else {
211 log_err("fio: bad iolog file action: %s\n",act);
212 continue;
213 }
214 } else if (r == 2) {
215 rw = DDIR_INVAL;
216 if (!strcmp(act, "add")) {
217 td->o.nr_files++;
218 fileno = add_file(td, fname);
219 file_action = FIO_LOG_ADD_FILE;
220 continue;
221 } else if (!strcmp(act, "open")) {
222 fileno = get_fileno(td, fname);
223 file_action = FIO_LOG_OPEN_FILE;
224 } else if (!strcmp(act, "close")) {
225 fileno = get_fileno(td, fname);
226 file_action = FIO_LOG_CLOSE_FILE;
227 } else {
228 log_err("fio: bad iolog file action: %s\n",act);
229 continue;
230 }
231 } else {
232 log_err("bad iolog2: %s", p);
233 continue;
234 }
235
236 if (rw == DDIR_READ)
237 reads++;
Jens Axboe4241ea82007-09-12 08:18:36 +0200238 else if (rw == DDIR_WRITE) {
Jens Axboef29b25a2007-07-23 08:56:43 +0200239 writes++;
Jens Axboe4241ea82007-09-12 08:18:36 +0200240 /*
241 * Don't add a write for ro mode
242 */
243 if (read_only)
244 continue;
245 } else if (rw != DDIR_SYNC && rw != DDIR_INVAL) {
Jens Axboef29b25a2007-07-23 08:56:43 +0200246 log_err("bad ddir: %d\n", rw);
247 continue;
248 }
249
250 /*
251 * Make note of file
252 */
253 ipo = malloc(sizeof(*ipo));
254 memset(ipo, 0, sizeof(*ipo));
255 INIT_LIST_HEAD(&ipo->list);
256 ipo->offset = offset;
257 ipo->len = bytes;
Jens Axboe53fa9b62007-07-23 11:25:39 +0200258 ipo->ddir = rw;
Jens Axboef29b25a2007-07-23 08:56:43 +0200259 if (bytes > td->o.max_bs[rw])
260 td->o.max_bs[rw] = bytes;
261 if (rw == DDIR_INVAL) {
262 ipo->fileno = fileno;
263 ipo->file_action = file_action;
264 }
265 list_add_tail(&ipo->list, &td->io_log_list);
Jens Axboeea966f82007-09-03 10:09:37 +0200266 td->total_io_size += bytes;
Jens Axboef29b25a2007-07-23 08:56:43 +0200267 }
268
269 free(str);
270 free(act);
271 free(fname);
272
Jens Axboe4241ea82007-09-12 08:18:36 +0200273 if (writes && read_only) {
274 log_err("fio: <%s> skips replay of %d writes due to read-only\n", td->o.name, writes);
275 writes = 0;
276 }
277
Jens Axboef29b25a2007-07-23 08:56:43 +0200278 if (!reads && !writes)
279 return 1;
280 else if (reads && !writes)
281 td->o.td_ddir = TD_DDIR_READ;
282 else if (!reads && writes)
283 td->o.td_ddir = TD_DDIR_WRITE;
284 else
285 td->o.td_ddir = TD_DDIR_RW;
286
287 return 0;
288}
289
290/*
291 * Read version 1 iolog data.
292 */
293static int read_iolog(struct thread_data *td, FILE *f)
Jens Axboe3c39a372006-06-06 20:56:12 +0200294{
295 unsigned long long offset;
296 unsigned int bytes;
297 char *str, *p;
Jens Axboe21bd2982007-07-23 11:26:27 +0200298 int reads, writes;
gurudas pai59b9ddf2007-10-22 22:10:39 +0200299 int rw;
Jens Axboe3c39a372006-06-06 20:56:12 +0200300
Jens Axboe3c39a372006-06-06 20:56:12 +0200301 /*
Jens Axboe3c39a372006-06-06 20:56:12 +0200302 * Read in the read iolog and store it, reuse the infrastructure
303 * for doing verifications.
304 */
305 str = malloc(4096);
Jens Axboefb71fbd2006-10-20 09:15:46 +0200306 reads = writes = 0;
Jens Axboe3c39a372006-06-06 20:56:12 +0200307 while ((p = fgets(str, 4096, f)) != NULL) {
308 struct io_piece *ipo;
309
310 if (sscanf(p, "%d,%llu,%u", &rw, &offset, &bytes) != 3) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200311 log_err("bad iolog: %s\n", p);
Jens Axboe3c39a372006-06-06 20:56:12 +0200312 continue;
313 }
314 if (rw == DDIR_READ)
315 reads++;
Jens Axboe4241ea82007-09-12 08:18:36 +0200316 else if (rw == DDIR_WRITE) {
Jens Axboe3c39a372006-06-06 20:56:12 +0200317 writes++;
Jens Axboe4241ea82007-09-12 08:18:36 +0200318 /*
319 * Don't add a write for ro mode
320 */
321 if (read_only)
322 continue;
323 } else if (rw != DDIR_SYNC) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200324 log_err("bad ddir: %d\n", rw);
Jens Axboe3c39a372006-06-06 20:56:12 +0200325 continue;
326 }
327
328 ipo = malloc(sizeof(*ipo));
Jens Axboe733ed592007-04-25 14:24:12 +0200329 memset(ipo, 0, sizeof(*ipo));
Jens Axboe3c39a372006-06-06 20:56:12 +0200330 INIT_LIST_HEAD(&ipo->list);
331 ipo->offset = offset;
332 ipo->len = bytes;
gurudas pai59b9ddf2007-10-22 22:10:39 +0200333 ipo->ddir = (enum fio_ddir) rw;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100334 if (bytes > td->o.max_bs[rw])
335 td->o.max_bs[rw] = bytes;
Jens Axboe3c39a372006-06-06 20:56:12 +0200336 list_add_tail(&ipo->list, &td->io_log_list);
Jens Axboeea966f82007-09-03 10:09:37 +0200337 td->total_io_size += bytes;
Jens Axboe3c39a372006-06-06 20:56:12 +0200338 }
339
340 free(str);
Jens Axboe3c39a372006-06-06 20:56:12 +0200341
Jens Axboe4241ea82007-09-12 08:18:36 +0200342 if (writes && read_only) {
343 log_err("fio: <%s> skips replay of %d writes due to read-only\n", td->o.name, writes);
344 writes = 0;
345 }
346
Jens Axboefb71fbd2006-10-20 09:15:46 +0200347 if (!reads && !writes)
Jens Axboe3c39a372006-06-06 20:56:12 +0200348 return 1;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200349 else if (reads && !writes)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100350 td->o.td_ddir = TD_DDIR_READ;
Jens Axboe3c39a372006-06-06 20:56:12 +0200351 else if (!reads && writes)
Jens Axboe36361eb2007-05-15 11:12:19 +0200352 td->o.td_ddir = TD_DDIR_WRITE;
Jens Axboe3c39a372006-06-06 20:56:12 +0200353 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100354 td->o.td_ddir = TD_DDIR_RW;
Jens Axboe3c39a372006-06-06 20:56:12 +0200355
356 return 0;
357}
Jens Axboe8914a9d2006-06-07 11:14:56 +0200358
Jens Axboefb71fbd2006-10-20 09:15:46 +0200359/*
Jens Axboef29b25a2007-07-23 08:56:43 +0200360 * open iolog, check version, and call appropriate parser
361 */
362static int init_iolog_read(struct thread_data *td)
363{
364 char buffer[256], *p;
365 FILE *f;
366 int ret;
367
368 f = fopen(td->o.read_iolog_file, "r");
369 if (!f) {
370 perror("fopen read iolog");
371 return 1;
372 }
373
374 p = fgets(buffer, sizeof(buffer), f);
375 if (!p) {
376 td_verror(td, errno, "iolog read");
377 log_err("fio: unable to read iolog\n");
378 return 1;
379 }
380
381 /*
382 * version 2 of the iolog stores a specific string as the
383 * first line, check for that
384 */
385 if (!strncmp(iolog_ver2, buffer, strlen(iolog_ver2)))
386 ret = read_iolog2(td, f);
387 else {
388 /*
389 * seek back to the beginning
390 */
391 if (fseek(f, 0, SEEK_SET) < 0) {
392 td_verror(td, errno, "iolog read");
393 log_err("fio: unable to read iolog\n");
394 return 1;
395 }
396
397 ret = read_iolog(td, f);
398 }
399
400 fclose(f);
401 return ret;
402}
403
404/*
Jens Axboefb71fbd2006-10-20 09:15:46 +0200405 * Setup a log for storing io patterns.
406 */
407static int init_iolog_write(struct thread_data *td)
408{
Jens Axboef29b25a2007-07-23 08:56:43 +0200409 struct fio_file *ff;
Jens Axboe076efc72006-10-27 11:24:25 +0200410 FILE *f;
Jens Axboef29b25a2007-07-23 08:56:43 +0200411 unsigned int i;
Jens Axboe733ed592007-04-25 14:24:12 +0200412
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100413 f = fopen(td->o.write_iolog_file, "w+");
Jens Axboefb71fbd2006-10-20 09:15:46 +0200414 if (!f) {
415 perror("fopen write iolog");
416 return 1;
417 }
418
419 /*
420 * That's it for writing, setup a log buffer and we're done.
421 */
422 td->iolog_f = f;
423 td->iolog_buf = malloc(8192);
424 setvbuf(f, td->iolog_buf, _IOFBF, 8192);
Jens Axboef29b25a2007-07-23 08:56:43 +0200425
426 /*
427 * write our version line
428 */
429 if (fprintf(f, "%s\n", iolog_ver2) < 0) {
430 perror("iolog init\n");
431 return 1;
432 }
433
434 /*
435 * add all known files
436 */
437 for_each_file(td, ff, i)
438 log_file(td, ff, FIO_LOG_ADD_FILE);
439
Jens Axboefb71fbd2006-10-20 09:15:46 +0200440 return 0;
441}
442
443int init_iolog(struct thread_data *td)
444{
Jens Axboeb4a6a592006-10-20 13:54:47 +0200445 int ret = 0;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200446
Jens Axboeba0fbe12007-03-09 14:34:23 +0100447 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200448 return 0;
449
Jens Axboefb7b71a2007-05-15 08:44:04 +0200450 if (td->o.read_iolog_file) {
451 /*
452 * Check if it's a blktrace file and load that if possible.
453 * Otherwise assume it's a normal log file and load that.
454 */
455 if (is_blktrace(td->o.read_iolog_file))
456 ret = load_blktrace(td, td->o.read_iolog_file);
457 else
458 ret = init_iolog_read(td);
459 } else if (td->o.write_iolog_file)
Jens Axboeb4a6a592006-10-20 13:54:47 +0200460 ret = init_iolog_write(td);
461
Jens Axboe1e97cce2006-12-05 11:44:16 +0100462 return ret;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200463}
464
Jens Axboe8914a9d2006-06-07 11:14:56 +0200465void setup_log(struct io_log **log)
466{
467 struct io_log *l = malloc(sizeof(*l));
468
469 l->nr_samples = 0;
470 l->max_samples = 1024;
471 l->log = malloc(l->max_samples * sizeof(struct io_sample));
472 *log = l;
473}
474
Jens Axboebb3884d2007-01-17 17:23:11 +1100475void __finish_log(struct io_log *log, const char *name)
Jens Axboe8914a9d2006-06-07 11:14:56 +0200476{
Jens Axboe8914a9d2006-06-07 11:14:56 +0200477 unsigned int i;
Jens Axboebb3884d2007-01-17 17:23:11 +1100478 FILE *f;
Jens Axboe8914a9d2006-06-07 11:14:56 +0200479
Jens Axboebb3884d2007-01-17 17:23:11 +1100480 f = fopen(name, "w");
Jens Axboe8914a9d2006-06-07 11:14:56 +0200481 if (!f) {
482 perror("fopen log");
483 return;
484 }
485
486 for (i = 0; i < log->nr_samples; i++)
487 fprintf(f, "%lu, %lu, %u\n", log->log[i].time, log->log[i].val, log->log[i].ddir);
488
489 fclose(f);
490 free(log->log);
491 free(log);
492}
Jens Axboebb3884d2007-01-17 17:23:11 +1100493
494void finish_log(struct thread_data *td, struct io_log *log, const char *name)
495{
496 char file_name[256];
497
498 snprintf(file_name, 200, "client%d_%s.log", td->thread_number, name);
499 __finish_log(log, file_name);
500}