[PATCH] fio: prepare to make it more cross platform
[disktools.git] / fio.c
CommitLineData
abe4da87
JA
1/*
2 * fio - the flexible io tester
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 */
892199bd
JA
21#include <stdio.h>
22#include <stdlib.h>
23#include <unistd.h>
24#include <fcntl.h>
25#include <string.h>
26#include <errno.h>
27#include <signal.h>
28#include <time.h>
e128065d 29#include <math.h>
49d2caab 30#include <assert.h>
189873de 31#include <pthread.h>
debf703a
JA
32#include <dirent.h>
33#include <libgen.h>
892199bd
JA
34#include <sys/types.h>
35#include <sys/stat.h>
36#include <sys/wait.h>
892199bd
JA
37#include <sys/ipc.h>
38#include <sys/shm.h>
c94deb1c 39#include <sys/ioctl.h>
6e2c38cc 40#include <sys/mman.h>
892199bd
JA
41#include <asm/unistd.h>
42
27c32a38 43#include "fio.h"
fa78facd 44#include "os.h"
892199bd 45
892199bd
JA
46#define MASK (4095)
47
4240cfa1 48#define ALIGN(buf) (char *) (((unsigned long) (buf) + MASK) & ~(MASK))
892199bd 49
27c32a38
JA
50int groupid = 0;
51int thread_number = 0;
52char run_str[MAX_JOBS + 1];
53int shm_id = 0;
6f75d67c 54static LIST_HEAD(disk_list);
892199bd 55
8882f4e9
JA
56static void update_io_ticks(void);
57static void disk_util_timer_arm(void);
58
02bdd9ba
JA
59/*
60 * thread life cycle
61 */
62enum {
63 TD_NOT_CREATED = 0,
64 TD_CREATED,
e8457004
JA
65 TD_RUNNING,
66 TD_VERIFYING,
02bdd9ba
JA
67 TD_EXITED,
68 TD_REAPED,
69};
70
2c83567e
JA
71/*
72 * The io unit
73 */
74struct io_u {
75 struct iocb iocb;
57d753e3 76 struct timeval start_time;
2c83567e
JA
77 struct timeval issue_time;
78
2c83567e
JA
79 char *buf;
80 unsigned int buflen;
4ac89145 81 unsigned long long offset;
2c83567e
JA
82
83 struct list_head list;
84};
85
62bb4285 86#define should_fsync(td) (td_write(td) && !(td)->odirect)
02983297 87
892199bd
JA
88static sem_t startup_sem;
89
27c32a38
JA
90#define TERMINATE_ALL (-1)
91
40e7bf80 92static void terminate_threads(int group_id)
892199bd
JA
93{
94 int i;
95
213b446c
JA
96 for (i = 0; i < thread_number; i++) {
97 struct thread_data *td = &threads[i];
98
40e7bf80 99 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
27c32a38
JA
100 td->terminate = 1;
101 td->start_delay = 0;
102 }
213b446c 103 }
02bdd9ba
JA
104}
105
27c32a38 106static void sig_handler(int sig)
946d8870 107{
8882f4e9
JA
108 switch (sig) {
109 case SIGALRM:
110 update_io_ticks();
111 disk_util_timer_arm();
112 break;
113 default:
eaa7586c
JA
114 printf("\nfio: terminating on signal\n");
115 fflush(stdout);
8882f4e9
JA
116 terminate_threads(TERMINATE_ALL);
117 break;
118 }
892199bd
JA
119}
120
5c24b2c4 121static unsigned long utime_since(struct timeval *s, struct timeval *e)
892199bd
JA
122{
123 double sec, usec;
124
125 sec = e->tv_sec - s->tv_sec;
126 usec = e->tv_usec - s->tv_usec;
127 if (sec > 0 && usec < 0) {
128 sec--;
129 usec += 1000000;
130 }
131
132 sec *= (double) 1000000;
133
134 return sec + usec;
135}
136
fd11d7af
JA
137static unsigned long utime_since_now(struct timeval *s)
138{
139 struct timeval t;
140
141 gettimeofday(&t, NULL);
142 return utime_since(s, &t);
143}
144
5c24b2c4 145static unsigned long mtime_since(struct timeval *s, struct timeval *e)
892199bd
JA
146{
147 double sec, usec;
148
149 sec = e->tv_sec - s->tv_sec;
150 usec = e->tv_usec - s->tv_usec;
151 if (sec > 0 && usec < 0) {
152 sec--;
153 usec += 1000000;
154 }
155
156 sec *= (double) 1000;
157 usec /= (double) 1000;
158
159 return sec + usec;
160}
161
be33abe4
JA
162static unsigned long mtime_since_now(struct timeval *s)
163{
164 struct timeval t;
165
166 gettimeofday(&t, NULL);
167 return mtime_since(s, &t);
168}
169
98168d55
JA
170static inline unsigned long msec_now(struct timeval *s)
171{
172 return s->tv_sec * 1000 + s->tv_usec / 1000;
173}
174
49d2caab
JA
175static int random_map_free(struct thread_data *td, unsigned long long block)
176{
75b2ab2c
JA
177 unsigned int idx = RAND_MAP_IDX(td, block);
178 unsigned int bit = RAND_MAP_BIT(td, block);
49d2caab
JA
179
180 return (td->file_map[idx] & (1UL << bit)) == 0;
181}
182
183static int get_next_free_block(struct thread_data *td, unsigned long long *b)
892199bd 184{
49d2caab
JA
185 int i;
186
187 *b = 0;
188 i = 0;
189 while ((*b) * td->min_bs < td->io_size) {
190 if (td->file_map[i] != -1UL) {
191 *b += ffz(td->file_map[i]);
192 return 0;
193 }
194
195 *b += BLOCKS_PER_MAP;
196 i++;
197 }
198
199 return 1;
200}
201
202static void mark_random_map(struct thread_data *td, struct io_u *io_u)
203{
204 unsigned long block = io_u->offset / td->min_bs;
205 unsigned int blocks = 0;
206
207 while (blocks < (io_u->buflen / td->min_bs)) {
e79c9259 208 unsigned int idx, bit;
49d2caab
JA
209
210 if (!random_map_free(td, block))
211 break;
212
75b2ab2c
JA
213 idx = RAND_MAP_IDX(td, block);
214 bit = RAND_MAP_BIT(td, block);
49d2caab
JA
215
216 assert(idx < td->num_maps);
217
218 td->file_map[idx] |= (1UL << bit);
219 block++;
220 blocks++;
221 }
222
223 if ((blocks * td->min_bs) < io_u->buflen)
224 io_u->buflen = blocks * td->min_bs;
225}
226
227static int get_next_offset(struct thread_data *td, unsigned long long *offset)
228{
75b2ab2c 229 unsigned long long b, rb;
d32d9284 230 long r;
892199bd
JA
231
232 if (!td->sequential) {
49d2caab
JA
233 unsigned long max_blocks = td->io_size / td->min_bs;
234 int loops = 50;
235
236 do {
237 lrand48_r(&td->random_state, &r);
238 b = ((max_blocks - 1) * r / (RAND_MAX+1.0));
75b2ab2c 239 rb = b + (td->file_offset / td->min_bs);
49d2caab 240 loops--;
75b2ab2c 241 } while (!random_map_free(td, rb) && loops);
49d2caab
JA
242
243 if (!loops) {
244 if (get_next_free_block(td, &b))
245 return 1;
246 }
7889f07b 247 } else
49d2caab 248 b = td->last_bytes / td->min_bs;
7889f07b 249
49d2caab 250 *offset = (b * td->min_bs) + td->file_offset;
75b2ab2c
JA
251 if (*offset > td->file_size)
252 return 1;
253
49d2caab 254 return 0;
7889f07b
JA
255}
256
257static unsigned int get_next_buflen(struct thread_data *td)
258{
259 unsigned int buflen;
d32d9284 260 long r;
7889f07b
JA
261
262 if (td->min_bs == td->max_bs)
263 buflen = td->min_bs;
264 else {
d32d9284 265 lrand48_r(&td->bsrange_state, &r);
7889f07b
JA
266 buflen = (1 + (double) (td->max_bs - 1) * r / (RAND_MAX + 1.0));
267 buflen = (buflen + td->min_bs - 1) & ~(td->min_bs - 1);
892199bd
JA
268 }
269
49d2caab
JA
270 if (buflen > td->io_size - td->this_io_bytes)
271 buflen = td->io_size - td->this_io_bytes;
7889f07b 272
7889f07b 273 return buflen;
892199bd
JA
274}
275
e79c9259 276static inline void add_stat_sample(struct io_stat *is, unsigned long val)
892199bd 277{
57d753e3
JA
278 if (val > is->max_val)
279 is->max_val = val;
280 if (val < is->min_val)
281 is->min_val = val;
282
283 is->val += val;
284 is->val_sq += val * val;
285 is->samples++;
286}
fd1ae4c9 287
40e7bf80 288static void add_log_sample(struct thread_data *td, struct io_log *iolog,
a0a9b35b
JA
289 unsigned long val)
290{
40e7bf80
JA
291 if (iolog->nr_samples == iolog->max_samples) {
292 int new_size = sizeof(struct io_sample) * iolog->max_samples*2;
a0a9b35b 293
40e7bf80
JA
294 iolog->log = realloc(iolog->log, new_size);
295 iolog->max_samples <<= 1;
a0a9b35b
JA
296 }
297
40e7bf80
JA
298 iolog->log[iolog->nr_samples].val = val;
299 iolog->log[iolog->nr_samples].time = mtime_since_now(&td->start);
300 iolog->nr_samples++;
a0a9b35b
JA
301}
302
57d753e3
JA
303static void add_clat_sample(struct thread_data *td, unsigned long msec)
304{
e79c9259 305 add_stat_sample(&td->clat_stat, msec);
a0a9b35b
JA
306
307 if (td->lat_log)
308 add_log_sample(td, td->lat_log, msec);
57d753e3 309}
fd1ae4c9 310
57d753e3
JA
311static void add_slat_sample(struct thread_data *td, unsigned long msec)
312{
e79c9259 313 add_stat_sample(&td->slat_stat, msec);
57d753e3 314}
fd1ae4c9 315
645785e5 316static void add_bw_sample(struct thread_data *td)
57d753e3
JA
317{
318 unsigned long spent = mtime_since_now(&td->stat_sample_time);
319 unsigned long rate;
320
1d035750 321 if (spent < td->bw_avg_time)
57d753e3
JA
322 return;
323
49d2caab 324 rate = (td->this_io_bytes - td->stat_io_bytes) / spent;
e79c9259 325 add_stat_sample(&td->bw_stat, rate);
57d753e3 326
a0a9b35b
JA
327 if (td->bw_log)
328 add_log_sample(td, td->bw_log, rate);
329
57d753e3 330 gettimeofday(&td->stat_sample_time, NULL);
49d2caab 331 td->stat_io_bytes = td->this_io_bytes;
892199bd
JA
332}
333
fd11d7af
JA
334/*
335 * busy looping version for the last few usec
336 */
e79c9259 337static void __usec_sleep(unsigned int usec)
fd11d7af
JA
338{
339 struct timeval start;
340
341 gettimeofday(&start, NULL);
342 while (utime_since_now(&start) < usec)
3782a8cd 343 nop;
fd11d7af
JA
344}
345
d15c5195 346static void usec_sleep(struct thread_data *td, unsigned long usec)
892199bd 347{
d15c5195
JA
348 struct timespec req, rem;
349
350 req.tv_sec = usec / 1000000;
351 req.tv_nsec = usec * 1000 - req.tv_sec * 1000000;
892199bd
JA
352
353 do {
fd11d7af
JA
354 if (usec < 5000) {
355 __usec_sleep(usec);
356 break;
357 }
d15c5195 358
86184d14 359 rem.tv_sec = rem.tv_nsec = 0;
d15c5195
JA
360 if (nanosleep(&req, &rem) < 0)
361 break;
362
363 if ((rem.tv_sec + rem.tv_nsec) == 0)
892199bd 364 break;
86184d14
JA
365
366 req.tv_nsec = rem.tv_nsec;
d15c5195
JA
367 req.tv_sec = rem.tv_sec;
368
369 usec = rem.tv_sec * 1000000 + rem.tv_nsec / 1000;
370 } while (!td->terminate);
892199bd
JA
371}
372
9e850933
JA
373static void rate_throttle(struct thread_data *td, unsigned long time_spent,
374 unsigned int bytes)
86184d14 375{
9e850933
JA
376 unsigned long usec_cycle;
377
4240cfa1
JA
378 if (!td->rate)
379 return;
380
9e850933
JA
381 usec_cycle = td->rate_usec_cycle * (bytes / td->min_bs);
382
383 if (time_spent < usec_cycle) {
384 unsigned long s = usec_cycle - time_spent;
86184d14
JA
385
386 td->rate_pending_usleep += s;
fad86e6a 387 if (td->rate_pending_usleep >= 100000) {
d15c5195 388 usec_sleep(td, td->rate_pending_usleep);
86184d14
JA
389 td->rate_pending_usleep = 0;
390 }
4240cfa1 391 } else {
9e850933 392 long overtime = time_spent - usec_cycle;
42b2b9fe 393
4240cfa1
JA
394 td->rate_pending_usleep -= overtime;
395 }
396}
397
5c24b2c4 398static int check_min_rate(struct thread_data *td, struct timeval *now)
4240cfa1 399{
7607bc6b 400 unsigned long spent;
4240cfa1
JA
401 unsigned long rate;
402
403 /*
404 * allow a 2 second settle period in the beginning
405 */
7607bc6b 406 if (mtime_since(&td->start, now) < 2000)
4240cfa1
JA
407 return 0;
408
409 /*
410 * if rate blocks is set, sample is running
411 */
49d2caab 412 if (td->rate_bytes) {
4240cfa1
JA
413 spent = mtime_since(&td->lastrate, now);
414 if (spent < td->ratecycle)
415 return 0;
416
49d2caab 417 rate = (td->this_io_bytes - td->rate_bytes) / spent;
4240cfa1
JA
418 if (rate < td->ratemin) {
419 printf("Client%d: min rate %d not met, got %ldKiB/sec\n", td->thread_number, td->ratemin, rate);
02bdd9ba 420 if (rate_quit)
27c32a38 421 terminate_threads(td->groupid);
4240cfa1
JA
422 return 1;
423 }
86184d14 424 }
4240cfa1 425
49d2caab 426 td->rate_bytes = td->this_io_bytes;
4240cfa1
JA
427 memcpy(&td->lastrate, now, sizeof(*now));
428 return 0;
86184d14
JA
429}
430
67903a2e
JA
431static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
432{
01f79976
JA
433 if (!td->timeout)
434 return 0;
91e6eb54 435 if (mtime_since(&td->epoch, t) >= td->timeout * 1000)
67903a2e
JA
436 return 1;
437
438 return 0;
439}
440
e8457004
JA
441static void fill_random_bytes(struct thread_data *td,
442 unsigned char *p, unsigned int len)
443{
645785e5 444 unsigned int todo;
40ef7f64 445 double r;
e8457004
JA
446
447 while (len) {
40ef7f64 448 drand48_r(&td->verify_state, &r);
e8457004 449
40ef7f64
JA
450 /*
451 * lrand48_r seems to be broken and only fill the bottom
452 * 32-bits, even on 64-bit archs with 64-bit longs
453 */
454 todo = sizeof(r);
e8457004
JA
455 if (todo > len)
456 todo = len;
457
458 memcpy(p, &r, todo);
459
460 len -= todo;
461 p += todo;
462 }
463}
464
9d0c6ca2
JA
465static void hexdump(void *buffer, int len)
466{
467 unsigned char *p = buffer;
468 int i;
469
470 for (i = 0; i < len; i++)
471 printf("%02x", p[i]);
472 printf("\n");
473}
474
7f46ef08
JA
475static int verify_io_u_crc32(struct verify_header *hdr, struct io_u *io_u)
476{
477 unsigned char *p = (unsigned char *) io_u->buf;
478 unsigned long c;
479
480 p += sizeof(*hdr);
481 c = crc32(p, hdr->len - sizeof(*hdr));
482
483 return c != hdr->crc32;
484}
485
486static int verify_io_u_md5(struct verify_header *hdr, struct io_u *io_u)
e8457004 487{
e8457004
JA
488 unsigned char *p = (unsigned char *) io_u->buf;
489 struct md5_ctx md5_ctx;
9d0c6ca2 490 int ret;
e8457004 491
e8457004
JA
492 memset(&md5_ctx, 0, sizeof(md5_ctx));
493 p += sizeof(*hdr);
494 md5_update(&md5_ctx, p, hdr->len - sizeof(*hdr));
495
9d0c6ca2
JA
496 ret = memcmp(hdr->md5_digest, md5_ctx.hash, sizeof(md5_ctx.hash));
497 if (ret) {
498 hexdump(hdr->md5_digest, sizeof(hdr->md5_digest));
499 hexdump(md5_ctx.hash, sizeof(md5_ctx.hash));
500 }
501
502 return ret;
e8457004
JA
503}
504
7f46ef08
JA
505static int verify_io_u(struct io_u *io_u)
506{
507 struct verify_header *hdr = (struct verify_header *) io_u->buf;
508 int ret;
509
510 if (hdr->fio_magic != FIO_HDR_MAGIC)
511 return 1;
512
513 if (hdr->verify_type == VERIFY_MD5)
514 ret = verify_io_u_md5(hdr, io_u);
515 else if (hdr->verify_type == VERIFY_CRC32)
516 ret = verify_io_u_crc32(hdr, io_u);
517 else {
518 fprintf(stderr, "Bad verify type %d\n", hdr->verify_type);
519 ret = 1;
520 }
521
522 return ret;
523}
524
525static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
526{
527 hdr->crc32 = crc32(p, len);
528}
529
530static void fill_md5(struct verify_header *hdr, void *p, unsigned int len)
531{
532 struct md5_ctx md5_ctx;
533
534 memset(&md5_ctx, 0, sizeof(md5_ctx));
535 md5_update(&md5_ctx, p, len);
536 memcpy(hdr->md5_digest, md5_ctx.hash, sizeof(md5_ctx.hash));
537}
538
cfc702bd
JA
539/*
540 * fill body of io_u->buf with random data and add a header with the
541 * (eg) sha1sum of that data.
542 */
e8457004 543static void populate_io_u(struct thread_data *td, struct io_u *io_u)
cfc702bd 544{
e8457004 545 unsigned char *p = (unsigned char *) io_u->buf;
7f46ef08 546 struct verify_header hdr;
e8457004
JA
547
548 hdr.fio_magic = FIO_HDR_MAGIC;
549 hdr.len = io_u->buflen;
550 p += sizeof(hdr);
551 fill_random_bytes(td, p, io_u->buflen - sizeof(hdr));
552
7f46ef08
JA
553 if (td->verify == VERIFY_MD5) {
554 fill_md5(&hdr, p, io_u->buflen - sizeof(hdr));
555 hdr.verify_type = VERIFY_MD5;
556 } else {
557 fill_crc32(&hdr, p, io_u->buflen - sizeof(hdr));
558 hdr.verify_type = VERIFY_CRC32;
559 }
560
e8457004 561 memcpy(io_u->buf, &hdr, sizeof(hdr));
cfc702bd
JA
562}
563
2c83567e
JA
564static void put_io_u(struct thread_data *td, struct io_u *io_u)
565{
566 list_del(&io_u->list);
567 list_add(&io_u->list, &td->io_u_freelist);
568 td->cur_depth--;
569}
570
f0f3411b
JA
571#define queue_full(td) (list_empty(&(td)->io_u_freelist))
572
e8457004
JA
573static struct io_u *__get_io_u(struct thread_data *td)
574{
575 struct io_u *io_u;
576
f0f3411b 577 if (queue_full(td))
e8457004
JA
578 return NULL;
579
580 io_u = list_entry(td->io_u_freelist.next, struct io_u, list);
581 list_del(&io_u->list);
582 list_add(&io_u->list, &td->io_u_busylist);
f4bb2243 583 td->cur_depth++;
e8457004
JA
584 return io_u;
585}
586
2c83567e
JA
587static struct io_u *get_io_u(struct thread_data *td)
588{
589 struct io_u *io_u;
590
e8457004
JA
591 io_u = __get_io_u(td);
592 if (!io_u)
2c83567e
JA
593 return NULL;
594
406e7b7c
JA
595 if (get_next_offset(td, &io_u->offset)) {
596 put_io_u(td, io_u);
49d2caab 597 return NULL;
406e7b7c 598 }
49d2caab 599
b2a369fb
JA
600 io_u->buflen = get_next_buflen(td);
601 if (!io_u->buflen) {
e8457004 602 put_io_u(td, io_u);
7889f07b 603 return NULL;
e8457004 604 }
2c83567e 605
75b2ab2c
JA
606 if (io_u->buflen + io_u->offset > td->file_size)
607 io_u->buflen = td->file_size - io_u->offset;
49d2caab
JA
608
609 if (!td->sequential)
610 mark_random_map(td, io_u);
611
612 td->last_bytes += io_u->buflen;
613
7f46ef08 614 if (td->verify != VERIFY_NONE)
e8457004 615 populate_io_u(td, io_u);
cfc702bd 616
2c83567e
JA
617 if (td->use_aio) {
618 if (td_read(td))
619 io_prep_pread(&io_u->iocb, td->fd, io_u->buf, io_u->buflen, io_u->offset);
620 else
621 io_prep_pwrite(&io_u->iocb, td->fd, io_u->buf, io_u->buflen, io_u->offset);
622 }
623
57d753e3 624 gettimeofday(&io_u->start_time, NULL);
2c83567e
JA
625 return io_u;
626}
627
40ef7f64
JA
628static inline void td_set_runstate(struct thread_data *td, int runstate)
629{
630 td->old_runstate = td->runstate;
631 td->runstate = runstate;
632}
633
645785e5
JA
634static int get_next_verify(struct thread_data *td,
635 unsigned long long *offset, unsigned int *len)
636{
637 struct io_piece *ipo;
638
639 if (list_empty(&td->io_hist_list))
640 return 1;
641
642 ipo = list_entry(td->io_hist_list.next, struct io_piece, list);
643 list_del(&ipo->list);
644
645 *offset = ipo->offset;
646 *len = ipo->len;
647 free(ipo);
648 return 0;
649}
650
9d0c6ca2
JA
651static void prune_io_piece_log(struct thread_data *td)
652{
653 struct io_piece *ipo;
654
655 while (!list_empty(&td->io_hist_list)) {
656 ipo = list_entry(td->io_hist_list.next, struct io_piece, list);
657
658 list_del(&ipo->list);
659 free(ipo);
660 }
661}
662
9d0c6ca2
JA
663/*
664 * log a succesful write, so we can unwind the log for verify
665 */
666static void log_io_piece(struct thread_data *td, struct io_u *io_u)
667{
49d2caab 668 struct io_piece *ipo = malloc(sizeof(struct io_piece));
9d0c6ca2
JA
669 struct list_head *entry;
670
671 INIT_LIST_HEAD(&ipo->list);
672 ipo->offset = io_u->offset;
673 ipo->len = io_u->buflen;
674
49d2caab
JA
675 /*
676 * for random io where the writes extend the file, it will typically
677 * be laid out with the block scattered as written. it's faster to
678 * read them in in that order again, so don't sort
679 */
680 if (td->sequential || !td->overwrite) {
9d0c6ca2
JA
681 list_add_tail(&ipo->list, &td->io_hist_list);
682 return;
683 }
684
685 /*
686 * for random io, sort the list so verify will run faster
687 */
688 entry = &td->io_hist_list;
689 while ((entry = entry->prev) != &td->io_hist_list) {
690 struct io_piece *__ipo = list_entry(entry, struct io_piece, list);
691
9d0c6ca2
JA
692 if (__ipo->offset < ipo->offset)
693 break;
694 }
695
696 list_add(&ipo->list, entry);
697}
698
91fc5dc9 699static void do_sync_verify(struct thread_data *td)
cfc702bd 700{
40ef7f64 701 struct timeval t;
e8457004 702 struct io_u *io_u = NULL;
645785e5 703 int ret;
e8457004 704
40ef7f64 705 td_set_runstate(td, TD_VERIFYING);
e8457004
JA
706
707 io_u = __get_io_u(td);
708
40ef7f64 709 if (!td->odirect) {
6e2c38cc
JA
710 if (!td->use_mmap) {
711 if (fadvise(td->fd, td->file_offset, td->io_size, POSIX_FADV_DONTNEED) < 0) {
b5a4be48 712 td_verror(td, errno);
6e2c38cc
JA
713 goto out;
714 }
715 } else {
716 if (madvise(td->mmap, td->io_size, MADV_DONTNEED)) {
b5a4be48 717 td_verror(td, errno);
6e2c38cc
JA
718 goto out;
719 }
40ef7f64
JA
720 }
721 }
722
e8457004
JA
723 do {
724 if (td->terminate)
725 break;
40ef7f64
JA
726
727 gettimeofday(&t, NULL);
728 if (runtime_exceeded(td, &t))
729 break;
730
645785e5
JA
731 if (get_next_verify(td, &io_u->offset, &io_u->buflen))
732 break;
733
734 if (td->cur_off != io_u->offset) {
735 if (lseek(td->fd, io_u->offset, SEEK_SET) == -1) {
b5a4be48 736 td_verror(td, errno);
645785e5
JA
737 break;
738 }
739 }
e8457004
JA
740
741 ret = read(td->fd, io_u->buf, io_u->buflen);
742 if (ret < (int) io_u->buflen) {
743 if (ret == -1) {
b5a4be48 744 td_verror(td, errno);
e8457004
JA
745 break;
746 } else if (!ret)
747 break;
748 else
749 io_u->buflen = ret;
750 }
751
645785e5 752 if (verify_io_u(io_u))
e8457004
JA
753 break;
754
645785e5 755 td->cur_off = io_u->offset + io_u->buflen;
e8457004
JA
756 } while (1);
757
758out:
40ef7f64 759 td_set_runstate(td, TD_RUNNING);
e8457004 760 put_io_u(td, io_u);
cfc702bd
JA
761}
762
6e2c38cc
JA
763static int __do_sync_mmap(struct thread_data *td, struct io_u *io_u)
764{
765 unsigned long long real_off = io_u->offset - td->file_offset;
766
767 if (td_read(td))
768 memcpy(io_u->buf, td->mmap + real_off, io_u->buflen);
769 else
770 memcpy(td->mmap + real_off, io_u->buf, io_u->buflen);
c009cdac
JA
771
772 /*
773 * not really direct, but should drop the pages from the cache
774 */
775 if (td->odirect) {
776 msync(td->mmap + real_off, io_u->buflen, MS_SYNC);
777 madvise(td->mmap + real_off, io_u->buflen, MADV_DONTNEED);
778 }
6e2c38cc
JA
779
780 return io_u->buflen;
781}
782
783static int __do_sync_rw(struct thread_data *td, struct io_u *io_u)
784{
785 if (td->cur_off != io_u->offset) {
786 if (lseek(td->fd, io_u->offset, SEEK_SET) == -1) {
b5a4be48 787 td_verror(td, errno);
6e2c38cc
JA
788 return 1;
789 }
790 }
791
792 if (td_read(td))
793 return read(td->fd, io_u->buf, io_u->buflen);
794 else
795 return write(td->fd, io_u->buf, io_u->buflen);
796}
797
798static void sync_td(struct thread_data *td)
799{
800 if (!td->use_mmap)
801 fsync(td->fd);
802 else
803 msync(td->mmap, td->file_size, MS_SYNC);
804}
805
43000118 806static void do_sync_io(struct thread_data *td)
892199bd 807{
7889f07b 808 unsigned long msec, usec;
e8457004 809 struct io_u *io_u = NULL;
2c83567e 810 struct timeval e;
892199bd 811
49d2caab 812 while (td->this_io_bytes < td->io_size) {
892199bd
JA
813 int ret;
814
815 if (td->terminate)
816 break;
817
2c83567e 818 io_u = get_io_u(td);
7889f07b
JA
819 if (!io_u)
820 break;
2c83567e 821
6e2c38cc
JA
822 if (!td->use_mmap)
823 ret = __do_sync_rw(td, io_u);
892199bd 824 else
6e2c38cc 825 ret = __do_sync_mmap(td, io_u);
892199bd 826
2c83567e 827 if (ret < (int) io_u->buflen) {
892199bd 828 if (ret == -1)
b5a4be48 829 td_verror(td, errno);
892199bd
JA
830 break;
831 }
832
62bb4285 833 if (td_write(td))
645785e5
JA
834 log_io_piece(td, io_u);
835
4240cfa1 836 td->io_blocks++;
49d2caab
JA
837 td->io_bytes += io_u->buflen;
838 td->this_io_bytes += io_u->buflen;
63a09e51 839 td->cur_off = io_u->offset + io_u->buflen;
4240cfa1 840
86184d14
JA
841 gettimeofday(&e, NULL);
842
57d753e3 843 usec = utime_since(&io_u->start_time, &e);
86184d14 844
9e850933 845 rate_throttle(td, usec, io_u->buflen);
892199bd 846
4240cfa1 847 if (check_min_rate(td, &e)) {
b5a4be48 848 td_verror(td, ENODATA);
4240cfa1
JA
849 break;
850 }
892199bd 851
4240cfa1 852 msec = usec / 1000;
57d753e3 853 add_clat_sample(td, msec);
645785e5 854 add_bw_sample(td);
67903a2e
JA
855
856 if (runtime_exceeded(td, &e))
857 break;
2c83567e 858
cdf92433 859 put_io_u(td, io_u);
e8457004 860 io_u = NULL;
cdf92433 861
e97712ed 862 if (td->thinktime)
d15c5195 863 usec_sleep(td, td->thinktime);
e97712ed 864
cdf92433
JA
865 if (should_fsync(td) && td->fsync_blocks &&
866 (td->io_blocks % td->fsync_blocks) == 0)
6e2c38cc 867 sync_td(td);
892199bd
JA
868 }
869
e8457004
JA
870 if (io_u)
871 put_io_u(td, io_u);
872
4240cfa1 873 if (should_fsync(td))
6e2c38cc 874 sync_td(td);
892199bd 875}
43000118 876
1ad72b11
JA
877static int io_u_getevents(struct thread_data *td, int min, int max,
878 struct timespec *t)
879{
880 int r;
881
882 do {
883 r = io_getevents(td->aio_ctx, min, max, td->aio_events, t);
884 if (r != -EAGAIN && r != -EINTR)
885 break;
886 } while (1);
887
888 return r;
889}
890
2c83567e 891static int io_u_queue(struct thread_data *td, struct io_u *io_u)
56b0eff0 892{
2c83567e 893 struct iocb *iocb = &io_u->iocb;
56b0eff0
JA
894 int ret;
895
896 do {
254605cd 897 ret = io_submit(td->aio_ctx, 1, &iocb);
56b0eff0
JA
898 if (ret == 1)
899 return 0;
406e7b7c 900 else if (ret == -EAGAIN)
56b0eff0 901 usleep(100);
406e7b7c 902 else if (ret == -EINTR)
a592bd33 903 continue;
56b0eff0
JA
904 else
905 break;
906 } while (1);
907
a592bd33 908 return ret;
56b0eff0
JA
909}
910
98168d55 911#define iocb_time(iocb) ((unsigned long) (iocb)->data)
2c83567e
JA
912#define ev_to_iou(ev) (struct io_u *) ((unsigned long) (ev)->obj)
913
f0f3411b 914static int ios_completed(struct thread_data *td, int nr)
2c83567e
JA
915{
916 unsigned long msec;
917 struct io_u *io_u;
918 struct timeval e;
9e850933 919 int i, bytes_done;
2c83567e 920
f0f3411b 921 gettimeofday(&e, NULL);
2c83567e 922
9e850933 923 for (i = 0, bytes_done = 0; i < nr; i++) {
2c83567e
JA
924 io_u = ev_to_iou(td->aio_events + i);
925
f0f3411b 926 td->io_blocks++;
49d2caab
JA
927 td->io_bytes += io_u->buflen;
928 td->this_io_bytes += io_u->buflen;
8c033f93 929
f0f3411b 930 msec = mtime_since(&io_u->issue_time, &e);
2c83567e 931
f0f3411b 932 add_clat_sample(td, msec);
645785e5
JA
933 add_bw_sample(td);
934
62bb4285 935 if (td_write(td))
645785e5 936 log_io_piece(td, io_u);
2c83567e 937
f4bb2243 938 bytes_done += io_u->buflen;
2c83567e
JA
939 put_io_u(td, io_u);
940 }
9e850933
JA
941
942 return bytes_done;
2c83567e
JA
943}
944
945static void cleanup_pending_aio(struct thread_data *td)
946{
947 struct timespec ts = { .tv_sec = 0, .tv_nsec = 0};
948 struct list_head *entry, *n;
949 struct io_u *io_u;
950 int r;
951
952 /*
953 * get immediately available events, if any
954 */
1ad72b11 955 r = io_u_getevents(td, 0, td->cur_depth, &ts);
2c83567e 956 if (r > 0)
f0f3411b 957 ios_completed(td, r);
2c83567e
JA
958
959 /*
960 * now cancel remaining active events
961 */
962 list_for_each_safe(entry, n, &td->io_u_busylist) {
963 io_u = list_entry(entry, struct io_u, list);
964
965 r = io_cancel(td->aio_ctx, &io_u->iocb, td->aio_events);
966 if (!r)
967 put_io_u(td, io_u);
968 }
969
970 if (td->cur_depth) {
1ad72b11 971 r = io_u_getevents(td, td->cur_depth, td->cur_depth, NULL);
2c83567e 972 if (r > 0)
f0f3411b 973 ios_completed(td, r);
2c83567e
JA
974 }
975}
98168d55 976
d32d9284
JA
977static int async_do_verify(struct thread_data *td, struct io_u **io_u)
978{
979 struct io_u *v_io_u = *io_u;
980 int ret = 0;
981
982 if (v_io_u) {
645785e5 983 ret = verify_io_u(v_io_u);
d32d9284
JA
984 put_io_u(td, v_io_u);
985 *io_u = NULL;
986 }
987
988 return ret;
989}
990
91fc5dc9 991static void do_async_verify(struct thread_data *td)
cfc702bd 992{
f4bb2243 993 struct timeval t;
d32d9284 994 struct io_u *io_u, *v_io_u = NULL;
645785e5 995 int ret;
f4bb2243
JA
996
997 td_set_runstate(td, TD_VERIFYING);
998
f4bb2243
JA
999 do {
1000 if (td->terminate)
1001 break;
1002
1003 gettimeofday(&t, NULL);
1004 if (runtime_exceeded(td, &t))
1005 break;
1006
1007 io_u = __get_io_u(td);
1008 if (!io_u)
1009 break;
1010
645785e5
JA
1011 if (get_next_verify(td, &io_u->offset, &io_u->buflen)) {
1012 put_io_u(td, io_u);
1013 break;
f4bb2243
JA
1014 }
1015
1016 io_prep_pread(&io_u->iocb, td->fd, io_u->buf, io_u->buflen, io_u->offset);
1017 ret = io_u_queue(td, io_u);
1018 if (ret) {
1019 put_io_u(td, io_u);
b5a4be48 1020 td_verror(td, ret);
f4bb2243
JA
1021 break;
1022 }
1023
f0f3411b
JA
1024 /*
1025 * we have one pending to verify, do that while the next
1026 * we are doing io on the next one
1027 */
d32d9284
JA
1028 if (async_do_verify(td, &v_io_u))
1029 break;
f0f3411b 1030
1ad72b11 1031 ret = io_u_getevents(td, 1, 1, NULL);
f0f3411b
JA
1032 if (ret != 1) {
1033 if (ret < 0)
b5a4be48 1034 td_verror(td, ret);
f4bb2243
JA
1035 break;
1036 }
1037
f0f3411b 1038 v_io_u = ev_to_iou(td->aio_events);
f4bb2243 1039
645785e5 1040 td->cur_off = v_io_u->offset + v_io_u->buflen;
f0f3411b
JA
1041
1042 /*
d32d9284 1043 * if we can't submit more io, we need to verify now
f0f3411b 1044 */
d32d9284
JA
1045 if (queue_full(td) && async_do_verify(td, &v_io_u))
1046 break;
1047
f4bb2243
JA
1048 } while (1);
1049
d32d9284 1050 async_do_verify(td, &v_io_u);
f0f3411b 1051
f4bb2243
JA
1052 if (td->cur_depth)
1053 cleanup_pending_aio(td);
1054
1055 td_set_runstate(td, TD_RUNNING);
cfc702bd
JA
1056}
1057
43000118
JA
1058static void do_async_io(struct thread_data *td)
1059{
1060 struct timeval s, e;
7889f07b 1061 unsigned long usec;
43000118 1062
49d2caab 1063 while (td->this_io_bytes < td->io_size) {
43000118
JA
1064 struct timespec ts = { .tv_sec = 0, .tv_nsec = 0};
1065 struct timespec *timeout;
2c83567e
JA
1066 int ret, min_evts = 0;
1067 struct io_u *io_u;
9e850933 1068 unsigned int bytes_done;
43000118
JA
1069
1070 if (td->terminate)
1071 break;
1072
2c83567e 1073 io_u = get_io_u(td);
7889f07b
JA
1074 if (!io_u)
1075 break;
43000118 1076
57d753e3 1077 memcpy(&s, &io_u->start_time, sizeof(s));
8baf1bcc 1078
2c83567e 1079 ret = io_u_queue(td, io_u);
56b0eff0 1080 if (ret) {
a3fdb993 1081 put_io_u(td, io_u);
b5a4be48 1082 td_verror(td, ret);
43000118
JA
1083 break;
1084 }
1085
57d753e3
JA
1086 gettimeofday(&io_u->issue_time, NULL);
1087 add_slat_sample(td, mtime_since(&io_u->start_time, &io_u->issue_time));
2c83567e 1088 if (td->cur_depth < td->aio_depth) {
43000118
JA
1089 timeout = &ts;
1090 min_evts = 0;
1091 } else {
1092 timeout = NULL;
1093 min_evts = 1;
1094 }
1095
1ad72b11 1096 ret = io_u_getevents(td, min_evts, td->cur_depth, timeout);
43000118 1097 if (ret < 0) {
b5a4be48 1098 td_verror(td, ret);
43000118
JA
1099 break;
1100 } else if (!ret)
1101 continue;
1102
f0f3411b 1103 bytes_done = ios_completed(td, ret);
43000118 1104
98168d55
JA
1105 /*
1106 * the rate is batched for now, it should work for batches
1107 * of completions except the very first one which may look
1108 * a little bursty
1109 */
2c83567e 1110 gettimeofday(&e, NULL);
43000118
JA
1111 usec = utime_since(&s, &e);
1112
9e850933 1113 rate_throttle(td, usec, bytes_done);
43000118
JA
1114
1115 if (check_min_rate(td, &e)) {
b5a4be48 1116 td_verror(td, ENODATA);
43000118
JA
1117 break;
1118 }
67903a2e
JA
1119
1120 if (runtime_exceeded(td, &e))
1121 break;
765d9223
JA
1122
1123 if (td->thinktime)
d15c5195 1124 usec_sleep(td, td->thinktime);
cdf92433
JA
1125
1126 if (should_fsync(td) && td->fsync_blocks &&
1127 (td->io_blocks % td->fsync_blocks) == 0)
1128 fsync(td->fd);
43000118 1129 }
56b0eff0 1130
2c83567e
JA
1131 if (td->cur_depth)
1132 cleanup_pending_aio(td);
4ac89145
JA
1133
1134 if (should_fsync(td))
1135 fsync(td->fd);
56b0eff0
JA
1136}
1137
1138static void cleanup_aio(struct thread_data *td)
1139{
254605cd
JA
1140 io_destroy(td->aio_ctx);
1141
43000118
JA
1142 if (td->aio_events)
1143 free(td->aio_events);
43000118
JA
1144}
1145
1146static int init_aio(struct thread_data *td)
1147{
254605cd 1148 if (io_queue_init(td->aio_depth, &td->aio_ctx)) {
b5a4be48 1149 td_verror(td, errno);
43000118
JA
1150 return 1;
1151 }
1152
43000118 1153 td->aio_events = malloc(td->aio_depth * sizeof(struct io_event));
43000118
JA
1154 return 0;
1155}
1156
2c83567e
JA
1157static void cleanup_io_u(struct thread_data *td)
1158{
1159 struct list_head *entry, *n;
1160 struct io_u *io_u;
1161
1162 list_for_each_safe(entry, n, &td->io_u_freelist) {
1163 io_u = list_entry(entry, struct io_u, list);
1164
1165 list_del(&io_u->list);
2c83567e
JA
1166 free(io_u);
1167 }
6b71c826 1168
99c6704f
JA
1169 if (td->mem_type == MEM_MALLOC)
1170 free(td->orig_buffer);
1171 else if (td->mem_type == MEM_SHM) {
1172 struct shmid_ds sbuf;
1173
1174 shmdt(td->orig_buffer);
1175 shmctl(td->shm_id, IPC_RMID, &sbuf);
891e70f8
JA
1176 } else if (td->mem_type == MEM_MMAP)
1177 munmap(td->orig_buffer, td->orig_buffer_size);
1178 else
1179 fprintf(stderr, "Bad memory type %d\n", td->mem_type);
1180
1181 td->orig_buffer = NULL;
2c83567e
JA
1182}
1183
99c6704f 1184static int init_io_u(struct thread_data *td)
2c83567e
JA
1185{
1186 struct io_u *io_u;
891e70f8 1187 int i, max_units;
6b71c826 1188 char *p;
2c83567e
JA
1189
1190 if (!td->use_aio)
1191 max_units = 1;
1192 else
1193 max_units = td->aio_depth;
1194
891e70f8 1195 td->orig_buffer_size = td->max_bs * max_units + MASK;
99c6704f
JA
1196
1197 if (td->mem_type == MEM_MALLOC)
891e70f8 1198 td->orig_buffer = malloc(td->orig_buffer_size);
99c6704f 1199 else if (td->mem_type == MEM_SHM) {
891e70f8 1200 td->shm_id = shmget(IPC_PRIVATE, td->orig_buffer_size, IPC_CREAT | 0600);
99c6704f 1201 if (td->shm_id < 0) {
b5a4be48 1202 td_verror(td, errno);
99c6704f
JA
1203 perror("shmget");
1204 return 1;
1205 }
1206
1207 td->orig_buffer = shmat(td->shm_id, NULL, 0);
1208 if (td->orig_buffer == (void *) -1) {
b5a4be48 1209 td_verror(td, errno);
99c6704f 1210 perror("shmat");
891e70f8
JA
1211 td->orig_buffer = NULL;
1212 return 1;
1213 }
1214 } else if (td->mem_type == MEM_MMAP) {
1215 td->orig_buffer = mmap(NULL, td->orig_buffer_size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, 0, 0);
1216 if (td->orig_buffer == MAP_FAILED) {
b5a4be48 1217 td_verror(td, errno);
891e70f8
JA
1218 perror("mmap");
1219 td->orig_buffer = NULL;
99c6704f
JA
1220 return 1;
1221 }
1222 }
6b71c826 1223
2c83567e
JA
1224 INIT_LIST_HEAD(&td->io_u_freelist);
1225 INIT_LIST_HEAD(&td->io_u_busylist);
645785e5 1226 INIT_LIST_HEAD(&td->io_hist_list);
2c83567e 1227
99c6704f 1228 p = ALIGN(td->orig_buffer);
2c83567e
JA
1229 for (i = 0; i < max_units; i++) {
1230 io_u = malloc(sizeof(*io_u));
1231 memset(io_u, 0, sizeof(*io_u));
1232 INIT_LIST_HEAD(&io_u->list);
1233
7889f07b 1234 io_u->buf = p + td->max_bs * i;
2c83567e
JA
1235 list_add(&io_u->list, &td->io_u_freelist);
1236 }
99c6704f
JA
1237
1238 return 0;
2c83567e
JA
1239}
1240
ea6b64b1
JA
1241static int create_file(struct thread_data *td, unsigned long long size,
1242 int extend)
02983297 1243{
7889f07b 1244 unsigned long long left;
645785e5 1245 unsigned int bs;
ea6b64b1 1246 int r, oflags;
02983297
JA
1247 char *b;
1248
02983297
JA
1249 /*
1250 * unless specifically asked for overwrite, let normal io extend it
1251 */
62bb4285 1252 if (td_write(td) && !td->overwrite)
02983297
JA
1253 return 0;
1254
ea6b64b1 1255 if (!size) {
57d753e3 1256 fprintf(stderr, "Need size for create\n");
b5a4be48 1257 td_verror(td, EINVAL);
57d753e3
JA
1258 return 1;
1259 }
1260
ea6b64b1
JA
1261 if (!extend) {
1262 oflags = O_CREAT | O_TRUNC;
1263 printf("Client%d: Laying out IO file (%LuMiB)\n", td->thread_number, size >> 20);
1264 } else {
1265 oflags = O_APPEND;
1266 printf("Client%d: Extending IO file (%Lu -> %LuMiB)\n", td->thread_number, (td->file_size - size) >> 20, td->file_size >> 20);
1267 }
42fd89a7 1268
ea6b64b1 1269 td->fd = open(td->file_name, O_WRONLY | oflags, 0644);
02983297 1270 if (td->fd < 0) {
b5a4be48 1271 td_verror(td, errno);
02983297
JA
1272 return 1;
1273 }
1274
ea6b64b1 1275 if (!extend && ftruncate(td->fd, td->file_size) == -1) {
b5a4be48 1276 td_verror(td, errno);
c94deb1c
JA
1277 return 1;
1278 }
1279
49d2caab 1280 td->io_size = td->file_size;
7889f07b
JA
1281 b = malloc(td->max_bs);
1282 memset(b, 0, td->max_bs);
1283
ea6b64b1 1284 left = size;
b31d826c 1285 while (left && !td->terminate) {
7889f07b
JA
1286 bs = td->max_bs;
1287 if (bs > left)
1288 bs = left;
02983297 1289
7889f07b 1290 r = write(td->fd, b, bs);
02983297 1291
645785e5 1292 if (r == (int) bs) {
7889f07b 1293 left -= bs;
02983297 1294 continue;
7889f07b 1295 } else {
02983297 1296 if (r < 0)
b5a4be48 1297 td_verror(td, errno);
02983297 1298 else
b5a4be48 1299 td_verror(td, EIO);
02983297
JA
1300
1301 break;
1302 }
1303 }
1304
b31d826c
JA
1305 if (td->terminate)
1306 unlink(td->file_name);
1307 else if (td->create_fsync)
fc097bfe
JA
1308 fsync(td->fd);
1309
02983297
JA
1310 close(td->fd);
1311 td->fd = -1;
1312 free(b);
1313 return 0;
1314}
1315
c4c8f7b3 1316static int file_size(struct thread_data *td)
02983297
JA
1317{
1318 struct stat st;
c94deb1c
JA
1319
1320 if (fstat(td->fd, &st) == -1) {
b5a4be48 1321 td_verror(td, errno);
c94deb1c
JA
1322 return 1;
1323 }
1324
c6ea46a7
JA
1325 if (!td->file_size)
1326 td->file_size = st.st_size;
c4c8f7b3
JA
1327
1328 return 0;
1329}
1330
1331static int bdev_size(struct thread_data *td)
1332{
1333 size_t bytes;
c94deb1c 1334
c4c8f7b3 1335 if (ioctl(td->fd, BLKGETSIZE64, &bytes) < 0) {
b5a4be48 1336 td_verror(td, errno);
c4c8f7b3 1337 return 1;
c94deb1c
JA
1338 }
1339
c6ea46a7
JA
1340 /*
1341 * no extend possibilities, so limit size to device size if too large
1342 */
1343 if (!td->file_size || td->file_size > bytes)
c4c8f7b3
JA
1344 td->file_size = bytes;
1345
1346 return 0;
1347}
1348
1349static int get_file_size(struct thread_data *td)
1350{
1351 int ret;
1352
1353 if (td->filetype == FIO_TYPE_FILE)
1354 ret = file_size(td);
1355 else
1356 ret = bdev_size(td);
1357
1358 if (ret)
1359 return ret;
1360
1361 if (td->file_offset > td->file_size) {
091d845a 1362 fprintf(stderr, "Client%d: offset larger than length (%Lu > %Lu)\n", td->thread_number, td->file_offset, td->file_size);
c94deb1c
JA
1363 return 1;
1364 }
1365
c4c8f7b3 1366 td->io_size = td->file_size - td->file_offset;
c94deb1c
JA
1367 if (td->io_size == 0) {
1368 fprintf(stderr, "Client%d: no io blocks\n", td->thread_number);
b5a4be48 1369 td_verror(td, EINVAL);
c94deb1c
JA
1370 return 1;
1371 }
1372
1373 return 0;
1374}
1375
6e2c38cc
JA
1376static int setup_file_mmap(struct thread_data *td)
1377{
1378 int flags;
1379
1380 if (td_read(td))
1381 flags = PROT_READ;
1382 else {
1383 flags = PROT_WRITE;
1384
7f46ef08 1385 if (td->verify != VERIFY_NONE)
6e2c38cc
JA
1386 flags |= PROT_READ;
1387 }
1388
1389 td->mmap = mmap(NULL, td->file_size, flags, MAP_SHARED, td->fd, td->file_offset);
1390 if (td->mmap == MAP_FAILED) {
1391 td->mmap = NULL;
b5a4be48 1392 td_verror(td, errno);
6e2c38cc
JA
1393 return 1;
1394 }
1395
1396 if (td->invalidate_cache) {
1397 if (madvise(td->mmap, td->file_size, MADV_DONTNEED) < 0) {
b5a4be48 1398 td_verror(td, errno);
6e2c38cc
JA
1399 return 1;
1400 }
1401 }
1402
1403 if (td->sequential) {
1404 if (madvise(td->mmap, td->file_size, MADV_SEQUENTIAL) < 0) {
b5a4be48 1405 td_verror(td, errno);
6e2c38cc
JA
1406 return 1;
1407 }
1408 } else {
1409 if (madvise(td->mmap, td->file_size, MADV_RANDOM) < 0) {
b5a4be48 1410 td_verror(td, errno);
6e2c38cc
JA
1411 return 1;
1412 }
1413 }
1414
1415 return 0;
1416}
1417
1418static int setup_file_plain(struct thread_data *td)
1419{
1420 if (td->invalidate_cache) {
1421 if (fadvise(td->fd, td->file_offset, td->file_size, POSIX_FADV_DONTNEED) < 0) {
b5a4be48 1422 td_verror(td, errno);
6e2c38cc
JA
1423 return 1;
1424 }
1425 }
1426
1427 if (td->sequential) {
1428 if (fadvise(td->fd, td->file_offset, td->file_size, POSIX_FADV_SEQUENTIAL) < 0) {
b5a4be48 1429 td_verror(td, errno);
6e2c38cc
JA
1430 return 1;
1431 }
1432 } else {
1433 if (fadvise(td->fd, td->file_offset, td->file_size, POSIX_FADV_RANDOM) < 0) {
b5a4be48 1434 td_verror(td, errno);
6e2c38cc
JA
1435 return 1;
1436 }
1437 }
1438
1439 return 0;
1440}
1441
c94deb1c
JA
1442static int setup_file(struct thread_data *td)
1443{
ea6b64b1 1444 struct stat st;
02983297
JA
1445 int flags = 0;
1446
ea6b64b1
JA
1447 if (stat(td->file_name, &st) == -1) {
1448 if (errno != ENOENT) {
b5a4be48 1449 td_verror(td, errno);
ea6b64b1
JA
1450 return 1;
1451 }
02983297 1452 if (!td->create_file) {
b5a4be48 1453 td_verror(td, ENOENT);
02983297
JA
1454 return 1;
1455 }
ea6b64b1
JA
1456 if (create_file(td, td->file_size, 0))
1457 return 1;
c6ea46a7
JA
1458 } else if (td->filetype == FIO_TYPE_FILE) {
1459 if (st.st_size < td->file_size) {
1460 if (create_file(td, td->file_size - st.st_size, 1))
1461 return 1;
1462 }
02983297
JA
1463 }
1464
1465 if (td->odirect)
1466 flags |= O_DIRECT;
1467
1468 if (td_read(td))
1469 td->fd = open(td->file_name, flags | O_RDONLY);
1470 else {
c6ea46a7
JA
1471 if (td->filetype == FIO_TYPE_FILE) {
1472 if (!td->overwrite)
1473 flags |= O_TRUNC;
1474
1475 flags |= O_CREAT;
1476 }
74b4b5fb
JA
1477 if (td->sync_io)
1478 flags |= O_SYNC;
6e2c38cc
JA
1479
1480 flags |= O_RDWR;
02983297 1481
c6ea46a7 1482 td->fd = open(td->file_name, flags, 0600);
02983297
JA
1483 }
1484
1485 if (td->fd == -1) {
b5a4be48 1486 td_verror(td, errno);
02983297
JA
1487 return 1;
1488 }
1489
c94deb1c 1490 if (get_file_size(td))
49d2caab 1491 return 1;
49d2caab 1492
6e2c38cc
JA
1493 if (!td->use_mmap)
1494 return setup_file_plain(td);
1495 else
1496 return setup_file_mmap(td);
02983297
JA
1497}
1498
debf703a
JA
1499static int check_dev_match(dev_t dev, char *path)
1500{
e79c9259 1501 unsigned int major, minor;
debf703a
JA
1502 char line[256], *p;
1503 FILE *f;
1504
1505 f = fopen(path, "r");
1506 if (!f) {
1507 perror("open path");
1508 return 1;
1509 }
1510
1511 p = fgets(line, sizeof(line), f);
1512 if (!p) {
1513 fclose(f);
1514 return 1;
1515 }
1516
1517 if (sscanf(p, "%u:%u", &major, &minor) != 2) {
1518 fclose(f);
1519 return 1;
1520 }
1521
1522 if (((major << 8) | minor) == dev) {
1523 fclose(f);
1524 return 0;
1525 }
1526
1527 fclose(f);
1528 return 1;
1529}
1530
1531static char *find_block_dir(dev_t dev, char *path)
1532{
1533 struct dirent *dir;
1534 char *found = NULL;
1535 struct stat st;
1536 DIR *D;
1537
1538 D = opendir(path);
1539 if (!D)
1540 return NULL;
1541
1542 while ((dir = readdir(D)) != NULL) {
1543 char full_path[256];
1544
1545 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
1546 continue;
1547 if (!strcmp(dir->d_name, "device"))
1548 continue;
1549
1550 sprintf(full_path, "%s/%s", path, dir->d_name);
1551
1552 if (!strcmp(dir->d_name, "dev")) {
1553 if (!check_dev_match(dev, full_path)) {
1554 found = path;
1555 break;
1556 }
1557 }
1558
1559 if (stat(full_path, &st) == -1) {
1560 perror("stat");
1561 break;
1562 }
1563
1564 if (!S_ISDIR(st.st_mode) || S_ISLNK(st.st_mode))
1565 continue;
1566
1567 if ((found = find_block_dir(dev, full_path)) != NULL)
1568 break;
1569 }
1570
1571 closedir(D);
1572 return found;
1573}
1574
0b100202 1575static int get_io_ticks(struct disk_util *du, struct disk_util_stat *dus)
debf703a 1576{
0b100202 1577 unsigned in_flight;
debf703a
JA
1578 char line[256];
1579 FILE *f;
1580 char *p;
1581
6f75d67c 1582 f = fopen(du->path, "r");
debf703a 1583 if (!f)
0b100202 1584 return 1;
debf703a
JA
1585
1586 p = fgets(line, sizeof(line), f);
1587 if (!p) {
1588 fclose(f);
0b100202 1589 return 1;
debf703a
JA
1590 }
1591
8550ac6b 1592 if (sscanf(p, "%u %u %llu %u %u %u %llu %u %u %u %u\n", &dus->ios[0], &dus->merges[0], &dus->sectors[0], &dus->ticks[0], &dus->ios[1], &dus->merges[1], &dus->sectors[1], &dus->ticks[1], &in_flight, &dus->io_ticks, &dus->time_in_queue) != 11) {
debf703a 1593 fclose(f);
0b100202 1594 return 1;
debf703a
JA
1595 }
1596
1597 fclose(f);
0b100202 1598 return 0;
debf703a
JA
1599}
1600
6f75d67c 1601static void update_io_tick_disk(struct disk_util *du)
debf703a 1602{
0b100202 1603 struct disk_util_stat __dus, *dus, *ldus;
6f75d67c
JA
1604 struct timeval t;
1605
0b100202
JA
1606 if (get_io_ticks(du, &__dus))
1607 return;
1608
1609 dus = &du->dus;
1610 ldus = &du->last_dus;
1611
1612 dus->sectors[0] += (__dus.sectors[0] - ldus->sectors[0]);
1613 dus->sectors[1] += (__dus.sectors[1] - ldus->sectors[1]);
1614 dus->ios[0] += (__dus.ios[0] - ldus->ios[0]);
1615 dus->ios[1] += (__dus.ios[1] - ldus->ios[1]);
1616 dus->merges[0] += (__dus.merges[0] - ldus->merges[0]);
1617 dus->merges[1] += (__dus.merges[1] - ldus->merges[1]);
1618 dus->ticks[0] += (__dus.ticks[0] - ldus->ticks[0]);
1619 dus->ticks[1] += (__dus.ticks[1] - ldus->ticks[1]);
1620 dus->io_ticks += (__dus.io_ticks - ldus->io_ticks);
1621 dus->time_in_queue += (__dus.time_in_queue - ldus->time_in_queue);
1622
6f75d67c
JA
1623 gettimeofday(&t, NULL);
1624 du->msec += mtime_since(&du->time, &t);
1625 memcpy(&du->time, &t, sizeof(t));
0b100202 1626 memcpy(ldus, &__dus, sizeof(__dus));
6f75d67c
JA
1627}
1628
1629static void update_io_ticks(void)
1630{
1631 struct list_head *entry;
1632 struct disk_util *du;
1633
1634 list_for_each(entry, &disk_list) {
1635 du = list_entry(entry, struct disk_util, list);
1636 update_io_tick_disk(du);
1637 }
1638}
1639
1640static int disk_util_exists(dev_t dev)
1641{
1642 struct list_head *entry;
1643 struct disk_util *du;
1644
1645 list_for_each(entry, &disk_list) {
1646 du = list_entry(entry, struct disk_util, list);
1647
1648 if (du->dev == dev)
1649 return 1;
1650 }
debf703a 1651
6f75d67c 1652 return 0;
debf703a
JA
1653}
1654
6f75d67c
JA
1655static void disk_util_add(dev_t dev, char *path)
1656{
1657 struct disk_util *du = malloc(sizeof(*du));
1658
1659 memset(du, 0, sizeof(*du));
1660 INIT_LIST_HEAD(&du->list);
1661 sprintf(du->path, "%s/stat", path);
4aa2ff86 1662 du->name = strdup(basename(path));
6f75d67c
JA
1663 du->dev = dev;
1664
1665 gettimeofday(&du->time, NULL);
0b100202 1666 get_io_ticks(du, &du->last_dus);
6f75d67c
JA
1667
1668 list_add_tail(&du->list, &disk_list);
1669}
1670
1671static void init_disk_util(struct thread_data *td)
debf703a
JA
1672{
1673 struct stat st;
1674 char foo[256], tmp[256];
1675 dev_t dev;
1676 char *p, *dir;
1677
6f75d67c
JA
1678 if (!stat(td->file_name, &st)) {
1679 if (S_ISBLK(st.st_mode))
1680 dev = st.st_rdev;
1681 else
1682 dev = st.st_dev;
1683 } else {
1684 /*
1685 * must be a file, open "." in that path
1686 */
8cf48a05
JA
1687 strcpy(foo, td->file_name);
1688 p = dirname(foo);
6f75d67c
JA
1689 if (stat(p, &st)) {
1690 perror("disk util stat");
1691 return;
1692 }
debf703a 1693
debf703a 1694 dev = st.st_dev;
6f75d67c
JA
1695 }
1696
1697 if (disk_util_exists(dev))
1698 return;
debf703a
JA
1699
1700 sprintf(foo, "/sys/block");
1701 dir = find_block_dir(dev, foo);
1702 if (!dir)
6f75d67c 1703 return;
debf703a
JA
1704
1705 /*
1706 * if this is inside a partition dir, jump back to parent
1707 */
1708 sprintf(tmp, "%s/queue", dir);
1709 if (stat(tmp, &st)) {
1710 p = dirname(dir);
1711 sprintf(tmp, "%s/queue", p);
1712 if (stat(tmp, &st)) {
1713 fprintf(stderr, "unknown sysfs layout\n");
6f75d67c 1714 return;
debf703a 1715 }
6f75d67c 1716 sprintf(foo, "%s", p);
debf703a
JA
1717 }
1718
6f75d67c
JA
1719 disk_util_add(dev, foo);
1720}
1721
1722static void disk_util_timer_arm(void)
1723{
1724 struct itimerval itimer;
1725
1726 itimer.it_value.tv_sec = 0;
1727 itimer.it_value.tv_usec = DISK_UTIL_MSEC * 1000;
1728 setitimer(ITIMER_REAL, &itimer, NULL);
1729}
1730
d32d9284
JA
1731static void clear_io_state(struct thread_data *td)
1732{
9d0c6ca2
JA
1733 if (!td->use_aio)
1734 lseek(td->fd, SEEK_SET, 0);
1735
d32d9284 1736 td->cur_off = 0;
49d2caab
JA
1737 td->last_bytes = 0;
1738 td->stat_io_bytes = 0;
1739 td->this_io_bytes = 0;
1740
1741 if (td->file_map)
1742 memset(td->file_map, 0, td->num_maps * sizeof(long));
d32d9284
JA
1743}
1744
f6dcd824
JA
1745static void update_rusage_stat(struct thread_data *td)
1746{
1747 if (!td->runtime)
1748 return;
1749
1750 getrusage(RUSAGE_SELF, &td->ru_end);
1751
1752 td->usr_time += mtime_since(&td->ru_start.ru_utime, &td->ru_end.ru_utime);
1753 td->sys_time += mtime_since(&td->ru_start.ru_stime, &td->ru_end.ru_stime);
1754 td->ctx += td->ru_end.ru_nvcsw + td->ru_end.ru_nivcsw - (td->ru_start.ru_nvcsw + td->ru_start.ru_nivcsw);
1755
1756
1757 memcpy(&td->ru_start, &td->ru_end, sizeof(td->ru_end));
1758}
1759
189873de 1760static void *thread_main(void *data)
892199bd 1761{
189873de 1762 struct thread_data *td = data;
02983297 1763 int ret = 1;
892199bd 1764
7292613b 1765 setsid();
892199bd
JA
1766 td->pid = getpid();
1767
99c6704f
JA
1768 if (init_io_u(td))
1769 goto err;
2c83567e 1770
18e0b78c 1771 if (sched_setaffinity(td->pid, sizeof(td->cpumask), &td->cpumask) == -1) {
b5a4be48 1772 td_verror(td, errno);
18e0b78c
JA
1773 goto err;
1774 }
1775
43000118
JA
1776 if (td->use_aio && init_aio(td))
1777 goto err;
1778
f737299d 1779 if (td->ioprio) {
892199bd 1780 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
b5a4be48 1781 td_verror(td, errno);
599002b3 1782 goto err;
892199bd
JA
1783 }
1784 }
1785
1786 sem_post(&startup_sem);
1787 sem_wait(&td->mutex);
43000118 1788
fc097bfe
JA
1789 if (!td->create_serialize && setup_file(td))
1790 goto err;
1791
49d2caab
JA
1792 if (init_random_state(td))
1793 goto err;
1794
91e6eb54
JA
1795 gettimeofday(&td->epoch, NULL);
1796
293753bb 1797 while (td->loops--) {
f6dcd824
JA
1798 getrusage(RUSAGE_SELF, &td->ru_start);
1799 gettimeofday(&td->start, NULL);
1800 memcpy(&td->stat_sample_time, &td->start, sizeof(td->start));
293753bb
JA
1801
1802 if (td->ratemin)
1803 memcpy(&td->lastrate, &td->stat_sample_time, sizeof(td->lastrate));
7292613b 1804
d32d9284 1805 clear_io_state(td);
9d0c6ca2 1806 prune_io_piece_log(td);
fd1ae4c9 1807
b2de0ed2 1808 if (!td->use_aio)
b6794fbf 1809 do_sync_io(td);
b2de0ed2
JA
1810 else
1811 do_async_io(td);
1812
91e6eb54 1813 if (td->error || td->terminate)
91fc5dc9
JA
1814 break;
1815
f6dcd824
JA
1816 td->runtime += mtime_since_now(&td->start);
1817 update_rusage_stat(td);
1818
7f46ef08 1819 if (td->verify == VERIFY_NONE)
b2de0ed2 1820 continue;
cfc702bd 1821
b2de0ed2 1822 clear_io_state(td);
d32d9284 1823
91fc5dc9
JA
1824 if (!td->use_aio)
1825 do_sync_verify(td);
1826 else
1827 do_async_verify(td);
1828
91e6eb54 1829 if (td->error || td->terminate)
91fc5dc9 1830 break;
b6794fbf 1831 }
7292613b 1832
892199bd 1833 ret = 0;
a0a9b35b
JA
1834
1835 if (td->bw_log)
1836 finish_log(td, td->bw_log, "bw");
1837 if (td->lat_log)
1838 finish_log(td, td->lat_log, "lat");
4ac89145 1839
98dd52d6 1840 if (exitall_on_terminate)
27c32a38 1841 terminate_threads(td->groupid);
98dd52d6 1842
892199bd 1843err:
7292613b
JA
1844 if (td->fd != -1) {
1845 close(td->fd);
1846 td->fd = -1;
1847 }
6e2c38cc
JA
1848 if (td->mmap)
1849 munmap(td->mmap, td->file_size);
4ac89145
JA
1850 if (td->use_aio)
1851 cleanup_aio(td);
2c83567e 1852 cleanup_io_u(td);
599002b3 1853 if (ret) {
892199bd 1854 sem_post(&startup_sem);
599002b3
JA
1855 sem_wait(&td->mutex);
1856 }
40ef7f64 1857 td_set_runstate(td, TD_EXITED);
189873de
JA
1858 return NULL;
1859
1860}
1861
40e7bf80 1862static void *fork_main(int shmid, int offset)
189873de
JA
1863{
1864 struct thread_data *td;
1865 void *data;
1866
40e7bf80 1867 data = shmat(shmid, NULL, 0);
189873de
JA
1868 if (data == (void *) -1) {
1869 perror("shmat");
1870 return NULL;
1871 }
1872
1873 td = data + offset * sizeof(struct thread_data);
1874 thread_main(td);
4240cfa1 1875 shmdt(data);
892199bd
JA
1876 return NULL;
1877}
1878
57d753e3
JA
1879static int calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max,
1880 double *mean, double *dev)
1881{
1882 double n;
1883
1884 if (is->samples == 0)
1885 return 0;
1886
1887 *min = is->min_val;
1888 *max = is->max_val;
1889
1890 n = (double) is->samples;
1891 *mean = (double) is->val / n;
1892 *dev = sqrt(((double) is->val_sq - (*mean * *mean) / n) / (n - 1));
1893 return 1;
1894}
1895
557e4102
JA
1896static void show_thread_status(struct thread_data *td,
1897 struct group_run_stats *rs)
892199bd
JA
1898{
1899 int prio, prio_class;
f6dcd824 1900 unsigned long min, max, bw = 0;
92b229ed 1901 double mean, dev, usr_cpu, sys_cpu;
892199bd 1902
49d2caab 1903 if (!td->io_bytes && !td->error)
213b446c
JA
1904 return;
1905
892199bd 1906 if (td->runtime)
49d2caab 1907 bw = td->io_bytes / td->runtime;
892199bd
JA
1908
1909 prio = td->ioprio & 0xff;
1910 prio_class = td->ioprio >> IOPRIO_CLASS_SHIFT;
1911
f6dcd824 1912 printf("Client%d (g=%d): err=%2d, io=%6luMiB, bw=%6luKiB/s, runt=%6lumsec\n", td->thread_number, td->groupid, td->error, td->io_bytes >> 20, bw, td->runtime);
fd1ae4c9 1913
57d753e3
JA
1914 if (calc_lat(&td->slat_stat, &min, &max, &mean, &dev))
1915 printf(" slat (msec): min=%5lu, max=%5lu, avg=%5.02f, dev=%5.02f\n", min, max, mean, dev);
1916 if (calc_lat(&td->clat_stat, &min, &max, &mean, &dev))
1917 printf(" clat (msec): min=%5lu, max=%5lu, avg=%5.02f, dev=%5.02f\n", min, max, mean, dev);
557e4102
JA
1918 if (calc_lat(&td->bw_stat, &min, &max, &mean, &dev)) {
1919 double p_of_agg;
1920
1921 p_of_agg = mean * 100 / (double) rs->agg[td->ddir];
1922 printf(" bw (KiB/s) : min=%5lu, max=%5lu, per=%3.2f%%, avg=%5.02f, dev=%5.02f\n", min, max, p_of_agg, mean, dev);
1923 }
92b229ed
JA
1924
1925 if (td->runtime) {
f6dcd824
JA
1926 usr_cpu = (double) td->usr_time * 100 / (double) td->runtime;
1927 sys_cpu = (double) td->sys_time * 100 / (double) td->runtime;
92b229ed
JA
1928 } else {
1929 usr_cpu = 0;
1930 sys_cpu = 0;
1931 }
1932
f6dcd824 1933 printf(" cpu : usr=%3.2f%%, sys=%3.2f%%, ctx=%lu\n", usr_cpu, sys_cpu, td->ctx);
892199bd
JA
1934}
1935
e79c9259 1936static void print_thread_status(int nr_running, int t_rate, int m_rate)
3f39453a 1937{
3f39453a
JA
1938 printf("Threads now running: %d", nr_running);
1939 if (m_rate || t_rate)
1940 printf(", commitrate %d/%dKiB/sec", t_rate, m_rate);
8dbff0b1
JA
1941 printf(" : [%s]\r", run_str);
1942 fflush(stdout);
3f39453a
JA
1943}
1944
40ef7f64
JA
1945static void check_str_update(struct thread_data *td, int n, int t, int m)
1946{
1947 char c = run_str[td->thread_number - 1];
1948
1949 if (td->runstate == td->old_runstate)
1950 return;
1951
1952 switch (td->runstate) {
1953 case TD_REAPED:
1954 c = '_';
1955 break;
f4bb2243
JA
1956 case TD_EXITED:
1957 c = 'E';
1958 break;
40ef7f64 1959 case TD_RUNNING:
af678352
JA
1960 if (td_read(td)) {
1961 if (td->sequential)
1962 c = 'R';
1963 else
1964 c = 'r';
1965 } else {
1966 if (td->sequential)
1967 c = 'W';
1968 else
1969 c = 'w';
1970 }
40ef7f64
JA
1971 break;
1972 case TD_VERIFYING:
1973 c = 'V';
1974 break;
1975 case TD_CREATED:
1976 c = 'C';
1977 break;
1978 case TD_NOT_CREATED:
1979 c = 'P';
1980 break;
1981 default:
1982 printf("state %d\n", td->runstate);
1983 }
1984
1985 run_str[td->thread_number - 1] = c;
e79c9259 1986 print_thread_status(n, t, m);
40ef7f64
JA
1987 td->old_runstate = td->runstate;
1988}
1989
213b446c 1990static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
02bdd9ba 1991{
213b446c 1992 int i;
02bdd9ba 1993
3f39453a
JA
1994 /*
1995 * reap exited threads (TD_EXITED -> TD_REAPED)
1996 */
02bdd9ba
JA
1997 for (i = 0; i < thread_number; i++) {
1998 struct thread_data *td = &threads[i];
1999
40ef7f64
JA
2000 check_str_update(td, *nr_running, *t_rate, *m_rate);
2001
213b446c
JA
2002 if (td->runstate != TD_EXITED)
2003 continue;
02bdd9ba 2004
40ef7f64 2005 td_set_runstate(td, TD_REAPED);
189873de
JA
2006
2007 if (td->use_thread) {
2008 long ret;
2009
2010 if (pthread_join(td->thread, (void *) &ret))
2011 perror("thread_join");
2012 } else
2013 waitpid(td->pid, NULL, 0);
2014
213b446c
JA
2015 (*nr_running)--;
2016 (*m_rate) -= td->ratemin;
2017 (*t_rate) -= td->rate;
40ef7f64 2018 check_str_update(td, *nr_running, *t_rate, *m_rate);
213b446c 2019 }
02bdd9ba
JA
2020}
2021
e79c9259 2022static void run_threads(void)
fc24389f 2023{
be33abe4 2024 struct timeval genesis;
fc24389f
JA
2025 struct thread_data *td;
2026 unsigned long spent;
2a81240d 2027 int i, todo, nr_running, m_rate, t_rate, nr_started;
fc24389f 2028
fc24389f
JA
2029 printf("Starting %d threads\n", thread_number);
2030 fflush(stdout);
2031
7292613b 2032 signal(SIGINT, sig_handler);
8882f4e9 2033 signal(SIGALRM, sig_handler);
7292613b 2034
fc24389f 2035 todo = thread_number;
02bdd9ba 2036 nr_running = 0;
2a81240d 2037 nr_started = 0;
213b446c 2038 m_rate = t_rate = 0;
fc24389f 2039
8bdcfab5
JA
2040 for (i = 0; i < thread_number; i++) {
2041 td = &threads[i];
2042
6f75d67c
JA
2043 init_disk_util(td);
2044
fc097bfe
JA
2045 if (!td->create_serialize)
2046 continue;
2047
8bdcfab5
JA
2048 /*
2049 * do file setup here so it happens sequentially,
2050 * we don't want X number of threads getting their
2051 * client data interspersed on disk
2052 */
2053 if (setup_file(td)) {
40ef7f64 2054 td_set_runstate(td, TD_REAPED);
8bdcfab5
JA
2055 todo--;
2056 }
2057 }
2058
2059 gettimeofday(&genesis, NULL);
2060
213b446c 2061 while (todo) {
3f39453a
JA
2062 /*
2063 * create threads (TD_NOT_CREATED -> TD_CREATED)
2064 */
fc24389f
JA
2065 for (i = 0; i < thread_number; i++) {
2066 td = &threads[i];
2067
02bdd9ba 2068 if (td->runstate != TD_NOT_CREATED)
fc24389f
JA
2069 continue;
2070
213b446c
JA
2071 /*
2072 * never got a chance to start, killed by other
2073 * thread for some reason
2074 */
2075 if (td->terminate) {
2076 todo--;
2077 continue;
2078 }
2079
fc24389f 2080 if (td->start_delay) {
be33abe4 2081 spent = mtime_since_now(&genesis);
fc24389f
JA
2082
2083 if (td->start_delay * 1000 > spent)
2084 continue;
2085 }
2086
2a81240d 2087 if (td->stonewall && (nr_started || nr_running))
ea6f96a2 2088 break;
2a81240d 2089
40ef7f64
JA
2090 td_set_runstate(td, TD_CREATED);
2091 check_str_update(td, nr_running, t_rate, m_rate);
fc24389f
JA
2092 sem_init(&startup_sem, 1, 1);
2093 todo--;
2a81240d 2094 nr_started++;
fc24389f 2095
189873de
JA
2096 if (td->use_thread) {
2097 if (pthread_create(&td->thread, NULL, thread_main, td)) {
2098 perror("thread_create");
2099 nr_started--;
2100 }
2101 } else {
2102 if (fork())
2103 sem_wait(&startup_sem);
2104 else {
2105 fork_main(shm_id, i);
2106 exit(0);
2107 }
fc24389f
JA
2108 }
2109 }
2110
3f39453a 2111 /*
e8457004 2112 * start created threads (TD_CREATED -> TD_RUNNING)
3f39453a 2113 */
fc24389f 2114 for (i = 0; i < thread_number; i++) {
40e7bf80 2115 td = &threads[i];
fc24389f 2116
3f39453a
JA
2117 if (td->runstate != TD_CREATED)
2118 continue;
2119
40ef7f64 2120 td_set_runstate(td, TD_RUNNING);
3f39453a 2121 nr_running++;
2a81240d 2122 nr_started--;
3f39453a
JA
2123 m_rate += td->ratemin;
2124 t_rate += td->rate;
40ef7f64 2125 check_str_update(td, nr_running, t_rate, m_rate);
3f39453a 2126 sem_post(&td->mutex);
fc24389f
JA
2127 }
2128
e8457004 2129 for (i = 0; i < thread_number; i++) {
40e7bf80 2130 td = &threads[i];
e8457004 2131
b48889bb
JA
2132 if (td->runstate != TD_RUNNING &&
2133 td->runstate != TD_VERIFYING)
e8457004
JA
2134 continue;
2135
40ef7f64 2136 check_str_update(td, nr_running, t_rate, m_rate);
e8457004
JA
2137 }
2138
213b446c 2139 reap_threads(&nr_running, &t_rate, &m_rate);
02bdd9ba 2140
fc24389f
JA
2141 if (todo)
2142 usleep(100000);
2143 }
02bdd9ba
JA
2144
2145 while (nr_running) {
213b446c 2146 reap_threads(&nr_running, &t_rate, &m_rate);
02bdd9ba
JA
2147 usleep(10000);
2148 }
6f75d67c
JA
2149
2150 update_io_ticks();
fc24389f
JA
2151}
2152
0d80f40d 2153static void show_group_stats(struct group_run_stats *rs, int id)
8867c0a8 2154{
0d80f40d
JA
2155 printf("\nRun status group %d:\n", id);
2156
2157 if (rs->max_run[DDIR_READ])
2158 printf(" READ: io=%luMiB, aggrb=%lu, minb=%lu, maxb=%lu, mint=%lumsec, maxt=%lumsec\n", rs->io_mb[0], rs->agg[0], rs->min_bw[0], rs->max_bw[0], rs->min_run[0], rs->max_run[0]);
2159 if (rs->max_run[DDIR_WRITE])
2160 printf(" WRITE: io=%luMiB, aggrb=%lu, minb=%lu, maxb=%lu, mint=%lumsec, maxt=%lumsec\n", rs->io_mb[1], rs->agg[1], rs->min_bw[1], rs->max_bw[1], rs->min_run[1], rs->max_run[1]);
2161}
2162
6f75d67c
JA
2163static void show_disk_util(void)
2164{
0b100202 2165 struct disk_util_stat *dus;
6f75d67c
JA
2166 struct list_head *entry;
2167 struct disk_util *du;
2168 double util;
2169
4aa2ff86 2170 printf("\nDisk stats (read/write):\n");
6f75d67c
JA
2171
2172 list_for_each(entry, &disk_list) {
2173 du = list_entry(entry, struct disk_util, list);
0b100202 2174 dus = &du->dus;
6f75d67c 2175
0b100202 2176 util = (double) 100 * du->dus.io_ticks / (double) du->msec;
6f75d67c
JA
2177 if (util > 100.0)
2178 util = 100.0;
2179
0b100202 2180 printf(" %s: ios=%u/%u, merge=%u/%u, ticks=%u/%u, in_queue=%u, util=%3.2f%%\n", du->name, dus->ios[0], dus->ios[1], dus->merges[0], dus->merges[1], dus->ticks[0], dus->ticks[1], dus->time_in_queue, util);
6f75d67c
JA
2181 }
2182}
2183
0d80f40d
JA
2184static void show_run_stats(void)
2185{
2186 struct group_run_stats *runstats, *rs;
557e4102 2187 struct thread_data *td;
8867c0a8
JA
2188 int i;
2189
0d80f40d
JA
2190 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
2191
2192 for (i = 0; i < groupid + 1; i++) {
2193 rs = &runstats[i];
2194
f6dcd824 2195 memset(rs, 0, sizeof(*rs));
0d80f40d
JA
2196 rs->min_bw[0] = rs->min_run[0] = ~0UL;
2197 rs->min_bw[1] = rs->min_run[1] = ~0UL;
0d80f40d
JA
2198 }
2199
2200 for (i = 0; i < thread_number; i++) {
0d80f40d
JA
2201 unsigned long bw = 0;
2202
557e4102
JA
2203 td = &threads[i];
2204
b5a4be48
JA
2205 if (td->error) {
2206 printf("Client%d: %s\n", td->thread_number, td->verror);
557e4102 2207 continue;
b5a4be48 2208 }
557e4102 2209
0d80f40d
JA
2210 rs = &runstats[td->groupid];
2211
557e4102
JA
2212 if (td->runtime < rs->min_run[td->ddir])
2213 rs->min_run[td->ddir] = td->runtime;
2214 if (td->runtime > rs->max_run[td->ddir])
2215 rs->max_run[td->ddir] = td->runtime;
0d80f40d 2216
557e4102
JA
2217 if (td->runtime)
2218 bw = td->io_bytes / td->runtime;
2219 if (bw < rs->min_bw[td->ddir])
2220 rs->min_bw[td->ddir] = bw;
2221 if (bw > rs->max_bw[td->ddir])
2222 rs->max_bw[td->ddir] = bw;
0d80f40d 2223
557e4102 2224 rs->io_mb[td->ddir] += td->io_bytes >> 20;
0d80f40d 2225 }
9d489c62 2226
0d80f40d
JA
2227 for (i = 0; i < groupid + 1; i++) {
2228 rs = &runstats[i];
2229
2230 if (rs->max_run[0])
2231 rs->agg[0] = (rs->io_mb[0]*1024*1000) / rs->max_run[0];
2232 if (rs->max_run[1])
2233 rs->agg[1] = (rs->io_mb[1]*1024*1000) / rs->max_run[1];
0d80f40d 2234 }
557e4102
JA
2235
2236 for (i = 0; i < thread_number; i++) {
2237 td = &threads[i];
2238 rs = &runstats[td->groupid];
2239
c4c8f7b3 2240 show_thread_status(td, rs);
557e4102 2241 }
9d489c62
JA
2242
2243 for (i = 0; i < groupid + 1; i++)
2244 show_group_stats(&runstats[i], i);
6f75d67c
JA
2245
2246 show_disk_util();
0d80f40d
JA
2247}
2248
2249int main(int argc, char *argv[])
2250{
27c32a38 2251 memset(run_str, 0, sizeof(run_str));
5961d92c 2252
27c32a38 2253 if (parse_options(argc, argv))
5961d92c 2254 return 1;
7dd1389e 2255
4240cfa1
JA
2256 if (!thread_number) {
2257 printf("Nothing to do\n");
2258 return 1;
2259 }
7dd1389e 2260
8882f4e9 2261 disk_util_timer_arm();
6f75d67c 2262
e79c9259 2263 run_threads();
0d80f40d 2264 show_run_stats();
fc24389f 2265
892199bd
JA
2266 return 0;
2267}