Merge branch 'master' of ssh://brick.kernel.dk/data/git/fio
[fio.git] / fio.c
CommitLineData
ebac4655
JA
1/*
2 * fio - the flexible io tester
3 *
4 * Copyright (C) 2005 Jens Axboe <axboe@suse.de>
aae22ca7 5 * Copyright (C) 2006 Jens Axboe <axboe@kernel.dk>
ebac4655 6 *
8e9fe637
JA
7 * The license below covers all files distributed with fio unless otherwise
8 * noted in the file itself.
9 *
ebac4655 10 * This program is free software; you can redistribute it and/or modify
8e9fe637
JA
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
ebac4655
JA
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
ebac4655
JA
24#include <unistd.h>
25#include <fcntl.h>
26#include <string.h>
ebac4655
JA
27#include <signal.h>
28#include <time.h>
dbe1125e 29#include <locale.h>
36167d82 30#include <assert.h>
ebac4655
JA
31#include <sys/stat.h>
32#include <sys/wait.h>
33#include <sys/ipc.h>
34#include <sys/shm.h>
ebac4655
JA
35#include <sys/mman.h>
36
37#include "fio.h"
38#include "os.h"
39
29d610e1
JA
40static unsigned long page_mask;
41#define ALIGN(buf) \
42 (char *) (((unsigned long) (buf) + page_mask) & ~page_mask)
ebac4655
JA
43
44int groupid = 0;
45int thread_number = 0;
ebac4655 46int shm_id = 0;
53cdc686 47int temp_stall_ts;
ebac4655 48
bbfd6b00 49static volatile int startup_sem;
6ce15a32 50static volatile int fio_abort;
437c9b71 51static int exit_value;
ebac4655 52
bb3884d8
JA
53struct io_log *agg_io_log[2];
54
ebac4655 55#define TERMINATE_ALL (-1)
75154845 56#define JOB_START_TIMEOUT (5 * 1000)
ebac4655 57
6ce15a32
JA
58static inline void td_set_runstate(struct thread_data *td, int runstate)
59{
60 td->runstate = runstate;
61}
62
63static void terminate_threads(int group_id, int forced_kill)
ebac4655 64{
34572e28 65 struct thread_data *td;
ebac4655
JA
66 int i;
67
34572e28 68 for_each_td(td, i) {
ebac4655
JA
69 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
70 td->terminate = 1;
71 td->start_delay = 0;
6ce15a32
JA
72 if (forced_kill)
73 td_set_runstate(td, TD_EXITED);
ebac4655
JA
74 }
75 }
76}
77
78static void sig_handler(int sig)
79{
80 switch (sig) {
81 case SIGALRM:
82 update_io_ticks();
83 disk_util_timer_arm();
84 print_thread_status();
85 break;
86 default:
6ce15a32 87 printf("\nfio: terminating on signal %d\n", sig);
ebac4655 88 fflush(stdout);
6ce15a32 89 terminate_threads(TERMINATE_ALL, 0);
ebac4655
JA
90 break;
91 }
92}
93
906c8d75
JA
94/*
95 * Check if we are above the minimum rate given.
96 */
ebac4655
JA
97static int check_min_rate(struct thread_data *td, struct timeval *now)
98{
0904200b 99 unsigned long long bytes = 0;
ebac4655
JA
100 unsigned long spent;
101 unsigned long rate;
ebac4655
JA
102
103 /*
104 * allow a 2 second settle period in the beginning
105 */
106 if (mtime_since(&td->start, now) < 2000)
107 return 0;
108
0904200b
JA
109 if (td_read(td))
110 bytes += td->this_io_bytes[DDIR_READ];
111 if (td_write(td))
112 bytes += td->this_io_bytes[DDIR_WRITE];
113
ebac4655
JA
114 /*
115 * if rate blocks is set, sample is running
116 */
117 if (td->rate_bytes) {
118 spent = mtime_since(&td->lastrate, now);
119 if (spent < td->ratecycle)
120 return 0;
121
413dd459
JA
122 if (bytes < td->rate_bytes) {
123 fprintf(f_out, "%s: min rate %u not met\n", td->name, td->ratemin);
ebac4655 124 return 1;
413dd459
JA
125 } else {
126 rate = (bytes - td->rate_bytes) / spent;
127 if (rate < td->ratemin || bytes < td->rate_bytes) {
128 fprintf(f_out, "%s: min rate %u not met, got %luKiB/sec\n", td->name, td->ratemin, rate);
129 return 1;
130 }
ebac4655
JA
131 }
132 }
133
0904200b 134 td->rate_bytes = bytes;
ebac4655
JA
135 memcpy(&td->lastrate, now, sizeof(*now));
136 return 0;
137}
138
139static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
140{
141 if (!td->timeout)
142 return 0;
143 if (mtime_since(&td->epoch, t) >= td->timeout * 1000)
144 return 1;
145
146 return 0;
147}
148
906c8d75
JA
149/*
150 * When job exits, we can cancel the in-flight IO if we are using async
151 * io. Attempt to do so.
152 */
ebac4655
JA
153static void cleanup_pending_aio(struct thread_data *td)
154{
ebac4655 155 struct list_head *entry, *n;
ebac4655
JA
156 struct io_u *io_u;
157 int r;
158
159 /*
160 * get immediately available events, if any
161 */
d7762cf8 162 r = io_u_queued_complete(td, 0);
b2fdda43
JA
163 if (r < 0)
164 return;
ebac4655
JA
165
166 /*
167 * now cancel remaining active events
168 */
2866c82d 169 if (td->io_ops->cancel) {
ebac4655
JA
170 list_for_each_safe(entry, n, &td->io_u_busylist) {
171 io_u = list_entry(entry, struct io_u, list);
172
0c6e7517
JA
173 /*
174 * if the io_u isn't in flight, then that generally
175 * means someone leaked an io_u. complain but fix
176 * it up, so we don't stall here.
177 */
178 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
179 log_err("fio: non-busy IO on busy list\n");
ebac4655 180 put_io_u(td, io_u);
0c6e7517
JA
181 } else {
182 r = td->io_ops->cancel(td, io_u);
183 if (!r)
184 put_io_u(td, io_u);
185 }
ebac4655
JA
186 }
187 }
188
97601024 189 if (td->cur_depth)
d7762cf8 190 r = io_u_queued_complete(td, td->cur_depth);
ebac4655
JA
191}
192
858a3d47
JA
193/*
194 * Helper to handle the final sync of a file. Works just like the normal
195 * io path, just does everything sync.
196 */
197static int fio_io_sync(struct thread_data *td, struct fio_file *f)
198{
199 struct io_u *io_u = __get_io_u(td);
858a3d47
JA
200 int ret;
201
202 if (!io_u)
203 return 1;
204
205 io_u->ddir = DDIR_SYNC;
206 io_u->file = f;
207
208 if (td_io_prep(td, io_u)) {
209 put_io_u(td, io_u);
210 return 1;
211 }
212
755200a3 213requeue:
858a3d47 214 ret = td_io_queue(td, io_u);
36167d82 215 if (ret < 0) {
e1161c32 216 td_verror(td, io_u->error, "td_io_queue");
858a3d47 217 put_io_u(td, io_u);
858a3d47 218 return 1;
36167d82 219 } else if (ret == FIO_Q_QUEUED) {
d7762cf8 220 if (io_u_queued_complete(td, 1) < 0)
36167d82 221 return 1;
36167d82
JA
222 } else if (ret == FIO_Q_COMPLETED) {
223 if (io_u->error) {
e1161c32 224 td_verror(td, io_u->error, "td_io_queue");
36167d82
JA
225 return 1;
226 }
858a3d47 227
d7762cf8 228 if (io_u_sync_complete(td, io_u) < 0)
b2fdda43 229 return 1;
755200a3
JA
230 } else if (ret == FIO_Q_BUSY) {
231 if (td_io_commit(td))
232 return 1;
233 goto requeue;
858a3d47
JA
234 }
235
236 return 0;
237}
238
906c8d75
JA
239/*
240 * The main verify engine. Runs over the writes we previusly submitted,
241 * reads the blocks back in, and checks the crc/md5 of the data.
242 */
1e97cce9 243static void do_verify(struct thread_data *td)
ebac4655 244{
53cdc686 245 struct fio_file *f;
36167d82 246 struct io_u *io_u;
3af6ef39 247 int ret, i, min_events;
e5b401d4
JA
248
249 /*
250 * sync io first and invalidate cache, to make sure we really
251 * read from disk.
252 */
253 for_each_file(td, f, i) {
b2fdda43
JA
254 if (fio_io_sync(td, f))
255 break;
256 if (file_invalidate_cache(td, f))
257 break;
e5b401d4 258 }
ebac4655 259
b2fdda43
JA
260 if (td->error)
261 return;
262
ebac4655
JA
263 td_set_runstate(td, TD_VERIFYING);
264
36167d82
JA
265 io_u = NULL;
266 while (!td->terminate) {
ebac4655
JA
267 io_u = __get_io_u(td);
268 if (!io_u)
269 break;
270
069c2918
JA
271 if (runtime_exceeded(td, &io_u->start_time)) {
272 put_io_u(td, io_u);
02bcaa8c 273 break;
069c2918 274 }
02bcaa8c 275
069c2918
JA
276 if (get_next_verify(td, io_u)) {
277 put_io_u(td, io_u);
ebac4655 278 break;
069c2918 279 }
ebac4655 280
069c2918
JA
281 if (td_io_prep(td, io_u)) {
282 put_io_u(td, io_u);
53cdc686 283 break;
069c2918 284 }
d7762cf8
JA
285
286 io_u->end_io = verify_io_u;
36167d82
JA
287requeue:
288 ret = td_io_queue(td, io_u);
53cdc686 289
36167d82
JA
290 switch (ret) {
291 case FIO_Q_COMPLETED:
292 if (io_u->error)
22819ec2 293 ret = -io_u->error;
36167d82
JA
294 if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
295 int bytes = io_u->xfer_buflen - io_u->resid;
ebac4655 296
36167d82
JA
297 io_u->xfer_buflen = io_u->resid;
298 io_u->xfer_buf += bytes;
299 goto requeue;
300 }
d7762cf8 301 ret = io_u_sync_complete(td, io_u);
49db69aa 302 if (ret < 0)
36167d82 303 break;
36167d82
JA
304 continue;
305 case FIO_Q_QUEUED:
306 break;
755200a3
JA
307 case FIO_Q_BUSY:
308 requeue_io_u(td, &io_u);
309 ret = td_io_commit(td);
310 break;
36167d82
JA
311 default:
312 assert(ret < 0);
e1161c32 313 td_verror(td, -ret, "td_io_queue");
ebac4655
JA
314 break;
315 }
316
99784632 317 if (ret < 0 || td->error)
3af6ef39
JA
318 break;
319
ebac4655 320 /*
3af6ef39
JA
321 * if we can queue more, do so. but check if there are
322 * completed io_u's first.
ebac4655 323 */
97601024 324 min_events = 0;
e916b390 325 if (queue_full(td) || ret == FIO_Q_BUSY) {
3af6ef39 326 min_events = 1;
3af6ef39 327
e916b390
JA
328 if (td->cur_depth > td->iodepth_low)
329 min_events = td->cur_depth - td->iodepth_low;
330 }
331
3af6ef39
JA
332 /*
333 * Reap required number of io units, if any, and do the
334 * verification on them through the callback handler
335 */
d7762cf8 336 if (io_u_queued_complete(td, min_events) < 0)
ebac4655 337 break;
36167d82 338 }
ebac4655 339
c01c0395
JA
340 if (!td->error) {
341 min_events = td->cur_depth;
342
343 if (min_events)
344 ret = io_u_queued_complete(td, min_events);
345 } else
ebac4655
JA
346 cleanup_pending_aio(td);
347
348 td_set_runstate(td, TD_RUNNING);
349}
350
b990b5c0
JA
351/*
352 * Not really an io thread, all it does is burn CPU cycles in the specified
353 * manner.
354 */
355static void do_cpuio(struct thread_data *td)
356{
357 struct timeval e;
358 int split = 100 / td->cpuload;
359 int i = 0;
360
361 while (!td->terminate) {
02bcaa8c 362 fio_gettime(&e, NULL);
b990b5c0
JA
363
364 if (runtime_exceeded(td, &e))
365 break;
366
367 if (!(i % split))
368 __usec_sleep(10000);
369 else
370 usec_sleep(td, 10000);
371
372 i++;
373 }
374}
375
32cd46a0 376/*
906c8d75 377 * Main IO worker function. It retrieves io_u's to process and queues
32cd46a0
JA
378 * and reaps them, checking for rate and errors along the way.
379 */
ebac4655
JA
380static void do_io(struct thread_data *td)
381{
02bcaa8c 382 struct timeval s;
ebac4655 383 unsigned long usec;
84585003 384 int i, ret = 0;
ebac4655 385
5853e5a8
JA
386 td_set_runstate(td, TD_RUNNING);
387
3951414d 388 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->io_size) {
97601024
JA
389 struct timeval comp_time;
390 long bytes_done = 0;
84585003 391 int min_evts = 0;
ebac4655
JA
392 struct io_u *io_u;
393
394 if (td->terminate)
395 break;
396
3d7c391d 397 io_u = get_io_u(td);
ebac4655
JA
398 if (!io_u)
399 break;
400
401 memcpy(&s, &io_u->start_time, sizeof(s));
97601024
JA
402
403 if (runtime_exceeded(td, &s)) {
404 put_io_u(td, io_u);
405 break;
406 }
cec6b55d 407requeue:
45bee283 408 ret = td_io_queue(td, io_u);
36167d82
JA
409
410 switch (ret) {
411 case FIO_Q_COMPLETED:
412 if (io_u->error) {
413 ret = io_u->error;
414 break;
415 }
416 if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
417 int bytes = io_u->xfer_buflen - io_u->resid;
418
cec6b55d 419 io_u->xfer_buflen = io_u->resid;
36167d82 420 io_u->xfer_buf += bytes;
cec6b55d 421 goto requeue;
cec6b55d 422 }
97601024 423 fio_gettime(&comp_time, NULL);
d7762cf8 424 bytes_done = io_u_sync_complete(td, io_u);
99784632
JA
425 if (bytes_done < 0)
426 ret = bytes_done;
36167d82
JA
427 break;
428 case FIO_Q_QUEUED:
7e77dd02
JA
429 /*
430 * if the engine doesn't have a commit hook,
431 * the io_u is really queued. if it does have such
432 * a hook, it has to call io_u_queued() itself.
433 */
434 if (td->io_ops->commit == NULL)
435 io_u_queued(td, io_u);
cb5ab512
JA
436 else if (td->io_u_queued >= td->iodepth_batch)
437 ret = td_io_commit(td);
36167d82 438 break;
755200a3
JA
439 case FIO_Q_BUSY:
440 requeue_io_u(td, &io_u);
441 ret = td_io_commit(td);
442 break;
36167d82
JA
443 default:
444 assert(ret < 0);
445 put_io_u(td, io_u);
446 break;
ebac4655
JA
447 }
448
99784632 449 if (ret < 0 || td->error)
36167d82
JA
450 break;
451
97601024
JA
452 /*
453 * See if we need to complete some commands
454 */
755200a3 455 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
97601024 456 min_evts = 0;
e916b390 457 if (queue_full(td) || ret == FIO_Q_BUSY) {
36167d82 458 min_evts = 1;
ebac4655 459
e916b390
JA
460 if (td->cur_depth > td->iodepth_low)
461 min_evts = td->cur_depth - td->iodepth_low;
462 }
463
97601024 464 fio_gettime(&comp_time, NULL);
d7762cf8 465 bytes_done = io_u_queued_complete(td, min_evts);
97601024 466 if (bytes_done < 0)
36167d82 467 break;
ebac4655
JA
468 }
469
97601024
JA
470 if (!bytes_done)
471 continue;
472
ebac4655
JA
473 /*
474 * the rate is batched for now, it should work for batches
475 * of completions except the very first one which may look
476 * a little bursty
477 */
97601024 478 usec = utime_since(&s, &comp_time);
ebac4655 479
413dd459 480 rate_throttle(td, usec, bytes_done);
ebac4655 481
97601024 482 if (check_min_rate(td, &comp_time)) {
98aa62d8 483 if (exitall_on_terminate)
6ce15a32 484 terminate_threads(td->groupid, 0);
e1161c32 485 td_verror(td, ENODATA, "check_min_rate");
ebac4655
JA
486 break;
487 }
488
9c1f7434
JA
489 if (td->thinktime) {
490 unsigned long long b;
491
492 b = td->io_blocks[0] + td->io_blocks[1];
48097d5c
JA
493 if (!(b % td->thinktime_blocks)) {
494 int left;
495
496 if (td->thinktime_spin)
497 __usec_sleep(td->thinktime_spin);
498
499 left = td->thinktime - td->thinktime_spin;
500 if (left)
501 usec_sleep(td, left);
502 }
9c1f7434 503 }
ebac4655
JA
504 }
505
4d2413c6 506 if (!td->error) {
3d7c391d
JA
507 struct fio_file *f;
508
c01c0395
JA
509 i = td->cur_depth;
510 if (i)
511 ret = io_u_queued_complete(td, i);
ebac4655 512
84585003
JA
513 if (should_fsync(td) && td->end_fsync) {
514 td_set_runstate(td, TD_FSYNCING);
515 for_each_file(td, f, i)
858a3d47 516 fio_io_sync(td, f);
84585003 517 }
c01c0395
JA
518 } else
519 cleanup_pending_aio(td);
ebac4655
JA
520}
521
ebac4655
JA
522static void cleanup_io_u(struct thread_data *td)
523{
524 struct list_head *entry, *n;
525 struct io_u *io_u;
526
527 list_for_each_safe(entry, n, &td->io_u_freelist) {
528 io_u = list_entry(entry, struct io_u, list);
529
530 list_del(&io_u->list);
531 free(io_u);
532 }
533
2f9ade3c 534 free_io_mem(td);
ebac4655
JA
535}
536
6b9cea23
JA
537/*
538 * "randomly" fill the buffer contents
539 */
66eeb296 540static void fill_rand_buf(struct io_u *io_u, int max_bs)
6b9cea23 541{
66eeb296 542 int *ptr = io_u->buf;
6b9cea23
JA
543
544 while ((void *) ptr - io_u->buf < max_bs) {
545 *ptr = rand() * 0x9e370001;
546 ptr++;
547 }
548}
549
ebac4655
JA
550static int init_io_u(struct thread_data *td)
551{
552 struct io_u *io_u;
a00735e6 553 unsigned int max_bs;
ebac4655
JA
554 int i, max_units;
555 char *p;
556
2866c82d 557 if (td->io_ops->flags & FIO_CPUIO)
b990b5c0
JA
558 return 0;
559
2866c82d 560 if (td->io_ops->flags & FIO_SYNCIO)
ebac4655
JA
561 max_units = 1;
562 else
563 max_units = td->iodepth;
564
a00735e6 565 max_bs = max(td->max_bs[DDIR_READ], td->max_bs[DDIR_WRITE]);
74b025b0
JA
566 td->orig_buffer_size = max_bs * max_units;
567
d0bdaf49 568 if (td->mem_type == MEM_SHMHUGE || td->mem_type == MEM_MMAPHUGE)
56bb17f2 569 td->orig_buffer_size = (td->orig_buffer_size + td->hugepage_size - 1) & ~(td->hugepage_size - 1);
74b025b0 570 else
29d610e1 571 td->orig_buffer_size += page_mask;
ebac4655 572
2f9ade3c
JA
573 if (allocate_io_mem(td))
574 return 1;
ebac4655 575
ebac4655
JA
576 p = ALIGN(td->orig_buffer);
577 for (i = 0; i < max_units; i++) {
578 io_u = malloc(sizeof(*io_u));
579 memset(io_u, 0, sizeof(*io_u));
580 INIT_LIST_HEAD(&io_u->list);
581
a00735e6 582 io_u->buf = p + max_bs * i;
6b9cea23 583 if (td_write(td) || td_rw(td))
a00735e6 584 fill_rand_buf(io_u, max_bs);
6b9cea23 585
b1ff3403 586 io_u->index = i;
0c6e7517 587 io_u->flags = IO_U_F_FREE;
ebac4655
JA
588 list_add(&io_u->list, &td->io_u_freelist);
589 }
590
433afcb4
JA
591 io_u_init_timeout();
592
ebac4655
JA
593 return 0;
594}
595
da86774e
JA
596static int switch_ioscheduler(struct thread_data *td)
597{
598 char tmp[256], tmp2[128];
599 FILE *f;
600 int ret;
601
f48b467c
JA
602 if (td->io_ops->flags & FIO_CPUIO)
603 return 0;
604
da86774e
JA
605 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
606
607 f = fopen(tmp, "r+");
608 if (!f) {
e1161c32 609 td_verror(td, errno, "fopen");
da86774e
JA
610 return 1;
611 }
612
613 /*
614 * Set io scheduler.
615 */
616 ret = fwrite(td->ioscheduler, strlen(td->ioscheduler), 1, f);
617 if (ferror(f) || ret != 1) {
e1161c32 618 td_verror(td, errno, "fwrite");
da86774e
JA
619 fclose(f);
620 return 1;
621 }
622
623 rewind(f);
624
625 /*
626 * Read back and check that the selected scheduler is now the default.
627 */
628 ret = fread(tmp, 1, sizeof(tmp), f);
629 if (ferror(f) || ret < 0) {
e1161c32 630 td_verror(td, errno, "fread");
da86774e
JA
631 fclose(f);
632 return 1;
633 }
634
635 sprintf(tmp2, "[%s]", td->ioscheduler);
636 if (!strstr(tmp, tmp2)) {
3b70d7e5 637 log_err("fio: io scheduler %s not found\n", td->ioscheduler);
e1161c32 638 td_verror(td, EINVAL, "iosched_switch");
da86774e
JA
639 fclose(f);
640 return 1;
641 }
642
643 fclose(f);
644 return 0;
645}
646
ebac4655
JA
647static void clear_io_state(struct thread_data *td)
648{
53cdc686
JA
649 struct fio_file *f;
650 int i;
ebac4655 651
079ad09b 652 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
ebac4655 653 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
20dc95c4 654 td->zone_bytes = 0;
ebac4655 655
c1324df1
JA
656 td->last_was_sync = 0;
657
53cdc686 658 for_each_file(td, f, i) {
c1324df1
JA
659 f->last_completed_pos = 0;
660
53cdc686
JA
661 f->last_pos = 0;
662 if (td->io_ops->flags & FIO_SYNCIO)
663 lseek(f->fd, SEEK_SET, 0);
664
665 if (f->file_map)
666 memset(f->file_map, 0, f->num_maps * sizeof(long));
667 }
ebac4655
JA
668}
669
906c8d75
JA
670/*
671 * Entry point for the thread based jobs. The process based jobs end up
672 * here as well, after a little setup.
673 */
ebac4655
JA
674static void *thread_main(void *data)
675{
69008999 676 unsigned long long runtime[2];
ebac4655 677 struct thread_data *td = data;
ebac4655
JA
678
679 if (!td->use_thread)
680 setsid();
681
682 td->pid = getpid();
683
aea47d44
JA
684 INIT_LIST_HEAD(&td->io_u_freelist);
685 INIT_LIST_HEAD(&td->io_u_busylist);
755200a3 686 INIT_LIST_HEAD(&td->io_u_requeues);
aea47d44
JA
687 INIT_LIST_HEAD(&td->io_hist_list);
688 INIT_LIST_HEAD(&td->io_log_list);
689
ebac4655
JA
690 if (init_io_u(td))
691 goto err;
692
693 if (fio_setaffinity(td) == -1) {
e1161c32 694 td_verror(td, errno, "cpu_set_affinity");
ebac4655
JA
695 goto err;
696 }
697
aea47d44
JA
698 if (init_iolog(td))
699 goto err;
700
ebac4655
JA
701 if (td->ioprio) {
702 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
e1161c32 703 td_verror(td, errno, "ioprio_set");
ebac4655
JA
704 goto err;
705 }
706 }
707
1056eaad 708 if (nice(td->nice) == -1) {
e1161c32 709 td_verror(td, errno, "nice");
b6f4d880
JA
710 goto err;
711 }
712
75154845
JA
713 if (init_random_state(td))
714 goto err;
715
56f9498d
JA
716 if (td->ioscheduler && switch_ioscheduler(td))
717 goto err;
da86774e 718
75154845 719 td_set_runstate(td, TD_INITIALIZED);
bbfd6b00
JA
720 fio_sem_up(&startup_sem);
721 fio_sem_down(&td->mutex);
ebac4655 722
53cdc686 723 if (!td->create_serialize && setup_files(td))
ebac4655 724 goto err;
21972cde
JA
725 if (open_files(td))
726 goto err;
ebac4655 727
7d6c5283
JA
728 /*
729 * Do this late, as some IO engines would like to have the
730 * files setup prior to initializing structures.
731 */
732 if (td_io_init(td))
733 goto err;
734
69cfd7e0
JA
735 if (td->exec_prerun) {
736 if (system(td->exec_prerun) < 0)
737 goto err;
738 }
4e0ba8af 739
69008999 740 fio_gettime(&td->epoch, NULL);
433afcb4 741 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
079ad09b 742 getrusage(RUSAGE_SELF, &td->ts.ru_start);
69008999
JA
743
744 runtime[0] = runtime[1] = 0;
ebac4655 745 while (td->loops--) {
02bcaa8c 746 fio_gettime(&td->start, NULL);
079ad09b 747 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
ebac4655
JA
748
749 if (td->ratemin)
079ad09b 750 memcpy(&td->lastrate, &td->ts.stat_sample_time, sizeof(td->lastrate));
ebac4655
JA
751
752 clear_io_state(td);
753 prune_io_piece_log(td);
754
2866c82d 755 if (td->io_ops->flags & FIO_CPUIO)
b990b5c0
JA
756 do_cpuio(td);
757 else
758 do_io(td);
ebac4655 759
413dd459
JA
760 if (td_read(td) && td->io_bytes[DDIR_READ])
761 runtime[DDIR_READ] += utime_since_now(&td->start);
762 if (td_write(td) && td->io_bytes[DDIR_WRITE])
763 runtime[DDIR_WRITE] += utime_since_now(&td->start);
764
ebac4655
JA
765 if (td->error || td->terminate)
766 break;
767
768 if (td->verify == VERIFY_NONE)
769 continue;
770
771 clear_io_state(td);
02bcaa8c 772 fio_gettime(&td->start, NULL);
ebac4655
JA
773
774 do_verify(td);
775
69008999 776 runtime[DDIR_READ] += utime_since_now(&td->start);
ebac4655
JA
777
778 if (td->error || td->terminate)
779 break;
780 }
781
36dff966 782 update_rusage_stat(td);
69008999
JA
783 fio_gettime(&td->end_time, NULL);
784 td->runtime[0] = runtime[0] / 1000;
785 td->runtime[1] = runtime[1] / 1000;
786
079ad09b
JA
787 if (td->ts.bw_log)
788 finish_log(td, td->ts.bw_log, "bw");
789 if (td->ts.slat_log)
790 finish_log(td, td->ts.slat_log, "slat");
791 if (td->ts.clat_log)
792 finish_log(td, td->ts.clat_log, "clat");
076efc7c 793 if (td->write_iolog_file)
843a7413 794 write_iolog_close(td);
69cfd7e0
JA
795 if (td->exec_postrun) {
796 if (system(td->exec_postrun) < 0)
797 log_err("fio: postrun %s failed\n", td->exec_postrun);
798 }
ebac4655
JA
799
800 if (exitall_on_terminate)
6ce15a32 801 terminate_threads(td->groupid, 0);
ebac4655
JA
802
803err:
5bf13a5a
JA
804 if (td->error)
805 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
53cdc686 806 close_files(td);
2866c82d 807 close_ioengine(td);
ebac4655 808 cleanup_io_u(td);
ebac4655 809 td_set_runstate(td, TD_EXITED);
43d76807 810 return (void *) (unsigned long) td->error;
ebac4655
JA
811}
812
906c8d75
JA
813/*
814 * We cannot pass the td data into a forked process, so attach the td and
815 * pass it to the thread worker.
816 */
a6418147 817static int fork_main(int shmid, int offset)
ebac4655
JA
818{
819 struct thread_data *td;
a6418147 820 void *data, *ret;
ebac4655
JA
821
822 data = shmat(shmid, NULL, 0);
823 if (data == (void *) -1) {
a6418147
JA
824 int __err = errno;
825
ebac4655 826 perror("shmat");
a6418147 827 return __err;
ebac4655
JA
828 }
829
830 td = data + offset * sizeof(struct thread_data);
a6418147 831 ret = thread_main(td);
ebac4655 832 shmdt(data);
43d76807 833 return (int) (unsigned long) ret;
ebac4655
JA
834}
835
906c8d75
JA
836/*
837 * Run over the job map and reap the threads that have exited, if any.
838 */
ebac4655
JA
839static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
840{
34572e28 841 struct thread_data *td;
fab6aa71 842 int i, cputhreads, pending, status, ret;
ebac4655
JA
843
844 /*
845 * reap exited threads (TD_EXITED -> TD_REAPED)
846 */
4d2413c6 847 pending = cputhreads = 0;
34572e28 848 for_each_td(td, i) {
3707f45b 849 int flags = 0;
a2f77c9f 850
84585003
JA
851 /*
852 * ->io_ops is NULL for a thread that has closed its
853 * io engine
854 */
855 if (td->io_ops && td->io_ops->flags & FIO_CPUIO)
b990b5c0
JA
856 cputhreads++;
857
a2f77c9f
JA
858 if (!td->pid || td->runstate == TD_REAPED)
859 continue;
3707f45b
JA
860 if (td->use_thread) {
861 if (td->runstate == TD_EXITED) {
862 td_set_runstate(td, TD_REAPED);
863 goto reaped;
864 }
865 continue;
866 }
a2f77c9f
JA
867
868 flags = WNOHANG;
869 if (td->runstate == TD_EXITED)
870 flags = 0;
871
872 /*
873 * check if someone quit or got killed in an unusual way
874 */
875 ret = waitpid(td->pid, &status, flags);
3707f45b 876 if (ret < 0) {
a2f77c9f
JA
877 if (errno == ECHILD) {
878 log_err("fio: pid=%d disappeared %d\n", td->pid, td->runstate);
879 td_set_runstate(td, TD_REAPED);
880 goto reaped;
881 }
882 perror("waitpid");
883 } else if (ret == td->pid) {
884 if (WIFSIGNALED(status)) {
fab6aa71
JA
885 int sig = WTERMSIG(status);
886
887 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
888 td_set_runstate(td, TD_REAPED);
889 goto reaped;
890 }
a2f77c9f
JA
891 if (WIFEXITED(status)) {
892 if (WEXITSTATUS(status) && !td->error)
893 td->error = WEXITSTATUS(status);
a2f77c9f 894
a2f77c9f
JA
895 td_set_runstate(td, TD_REAPED);
896 goto reaped;
a6418147
JA
897 }
898 }
ebac4655 899
a2f77c9f
JA
900 /*
901 * thread is not dead, continue
902 */
903 continue;
fab6aa71 904reaped:
3707f45b
JA
905 if (td->use_thread) {
906 long ret;
907
908 if (pthread_join(td->thread, (void *) &ret))
909 perror("pthread_join");
910 }
911
ebac4655
JA
912 (*nr_running)--;
913 (*m_rate) -= td->ratemin;
914 (*t_rate) -= td->rate;
a2f77c9f
JA
915
916 if (td->error)
917 exit_value++;
ebac4655 918 }
b990b5c0 919
4d2413c6 920 if (*nr_running == cputhreads && !pending)
6ce15a32 921 terminate_threads(TERMINATE_ALL, 0);
ebac4655
JA
922}
923
906c8d75
JA
924/*
925 * Main function for kicking off and reaping jobs, as needed.
926 */
ebac4655
JA
927static void run_threads(void)
928{
ebac4655
JA
929 struct thread_data *td;
930 unsigned long spent;
931 int i, todo, nr_running, m_rate, t_rate, nr_started;
fcb6ade2 932
2f9ade3c
JA
933 if (fio_pin_memory())
934 return;
ebac4655 935
c6ae0a5b
JA
936 if (!terse_output) {
937 printf("Starting %d thread%s\n", thread_number, thread_number > 1 ? "s" : "");
938 fflush(stdout);
939 }
c04f7ec3 940
4efa970e
JA
941 signal(SIGINT, sig_handler);
942 signal(SIGALRM, sig_handler);
943
ebac4655
JA
944 todo = thread_number;
945 nr_running = 0;
946 nr_started = 0;
947 m_rate = t_rate = 0;
948
34572e28 949 for_each_td(td, i) {
263e529f 950 print_status_init(td->thread_number - 1);
ebac4655 951
380cf265
JA
952 if (!td->create_serialize) {
953 init_disk_util(td);
ebac4655 954 continue;
380cf265 955 }
ebac4655
JA
956
957 /*
958 * do file setup here so it happens sequentially,
959 * we don't want X number of threads getting their
960 * client data interspersed on disk
961 */
53cdc686 962 if (setup_files(td)) {
5bf13a5a
JA
963 exit_value++;
964 if (td->error)
965 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
ebac4655
JA
966 td_set_runstate(td, TD_REAPED);
967 todo--;
968 }
380cf265
JA
969
970 init_disk_util(td);
ebac4655
JA
971 }
972
a2f77c9f
JA
973 set_genesis_time();
974
ebac4655 975 while (todo) {
75154845
JA
976 struct thread_data *map[MAX_JOBS];
977 struct timeval this_start;
978 int this_jobs = 0, left;
979
ebac4655
JA
980 /*
981 * create threads (TD_NOT_CREATED -> TD_CREATED)
982 */
34572e28 983 for_each_td(td, i) {
ebac4655
JA
984 if (td->runstate != TD_NOT_CREATED)
985 continue;
986
987 /*
988 * never got a chance to start, killed by other
989 * thread for some reason
990 */
991 if (td->terminate) {
992 todo--;
993 continue;
994 }
995
996 if (td->start_delay) {
263e529f 997 spent = mtime_since_genesis();
ebac4655
JA
998
999 if (td->start_delay * 1000 > spent)
1000 continue;
1001 }
1002
1003 if (td->stonewall && (nr_started || nr_running))
1004 break;
1005
75154845
JA
1006 /*
1007 * Set state to created. Thread will transition
1008 * to TD_INITIALIZED when it's done setting up.
1009 */
ebac4655 1010 td_set_runstate(td, TD_CREATED);
75154845 1011 map[this_jobs++] = td;
bbfd6b00 1012 fio_sem_init(&startup_sem, 1);
ebac4655
JA
1013 nr_started++;
1014
1015 if (td->use_thread) {
1016 if (pthread_create(&td->thread, NULL, thread_main, td)) {
1017 perror("thread_create");
1018 nr_started--;
1019 }
1020 } else {
1021 if (fork())
bbfd6b00 1022 fio_sem_down(&startup_sem);
ebac4655 1023 else {
a6418147
JA
1024 int ret = fork_main(shm_id, i);
1025
1026 exit(ret);
ebac4655
JA
1027 }
1028 }
1029 }
1030
1031 /*
75154845
JA
1032 * Wait for the started threads to transition to
1033 * TD_INITIALIZED.
ebac4655 1034 */
02bcaa8c 1035 fio_gettime(&this_start, NULL);
75154845 1036 left = this_jobs;
6ce15a32 1037 while (left && !fio_abort) {
75154845
JA
1038 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1039 break;
1040
1041 usleep(100000);
1042
1043 for (i = 0; i < this_jobs; i++) {
1044 td = map[i];
1045 if (!td)
1046 continue;
b6f4d880 1047 if (td->runstate == TD_INITIALIZED) {
75154845
JA
1048 map[i] = NULL;
1049 left--;
b6f4d880
JA
1050 } else if (td->runstate >= TD_EXITED) {
1051 map[i] = NULL;
1052 left--;
1053 todo--;
1054 nr_running++; /* work-around... */
75154845
JA
1055 }
1056 }
1057 }
1058
1059 if (left) {
3b70d7e5 1060 log_err("fio: %d jobs failed to start\n", left);
75154845
JA
1061 for (i = 0; i < this_jobs; i++) {
1062 td = map[i];
1063 if (!td)
1064 continue;
1065 kill(td->pid, SIGTERM);
1066 }
1067 break;
1068 }
1069
1070 /*
b6f4d880 1071 * start created threads (TD_INITIALIZED -> TD_RUNNING).
75154845 1072 */
34572e28 1073 for_each_td(td, i) {
75154845 1074 if (td->runstate != TD_INITIALIZED)
ebac4655
JA
1075 continue;
1076
1077 td_set_runstate(td, TD_RUNNING);
1078 nr_running++;
1079 nr_started--;
1080 m_rate += td->ratemin;
1081 t_rate += td->rate;
75154845 1082 todo--;
bbfd6b00 1083 fio_sem_up(&td->mutex);
ebac4655
JA
1084 }
1085
1086 reap_threads(&nr_running, &t_rate, &m_rate);
1087
1088 if (todo)
1089 usleep(100000);
1090 }
1091
1092 while (nr_running) {
1093 reap_threads(&nr_running, &t_rate, &m_rate);
1094 usleep(10000);
1095 }
1096
1097 update_io_ticks();
2f9ade3c 1098 fio_unpin_memory();
ebac4655
JA
1099}
1100
ebac4655
JA
1101int main(int argc, char *argv[])
1102{
29d610e1
JA
1103 long ps;
1104
dbe1125e
JA
1105 /*
1106 * We need locale for number printing, if it isn't set then just
1107 * go with the US format.
1108 */
1109 if (!getenv("LC_NUMERIC"))
1110 setlocale(LC_NUMERIC, "en_US");
1111
ebac4655
JA
1112 if (parse_options(argc, argv))
1113 return 1;
1114
1115 if (!thread_number) {
3b70d7e5 1116 log_err("Nothing to do\n");
ebac4655
JA
1117 return 1;
1118 }
1119
29d610e1
JA
1120 ps = sysconf(_SC_PAGESIZE);
1121 if (ps < 0) {
1122 log_err("Failed to get page size\n");
1123 return 1;
1124 }
1125
1126 page_mask = ps - 1;
1127
bb3884d8
JA
1128 if (write_bw_log) {
1129 setup_log(&agg_io_log[DDIR_READ]);
1130 setup_log(&agg_io_log[DDIR_WRITE]);
1131 }
1132
a2f77c9f
JA
1133 set_genesis_time();
1134
ebac4655
JA
1135 disk_util_timer_arm();
1136
1137 run_threads();
6ce15a32 1138
bb3884d8 1139 if (!fio_abort) {
6ce15a32 1140 show_run_stats();
bb3884d8
JA
1141 if (write_bw_log) {
1142 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1143 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1144 }
1145 }
ebac4655 1146
437c9b71 1147 return exit_value;
ebac4655 1148}