Avoid opening files until they are used
[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"
210f43b3 38#include "hash.h"
2e5cdb11 39#include "smalloc.h"
ebac4655 40
cfc99db7
JA
41unsigned long page_mask;
42unsigned long page_size;
29d610e1
JA
43#define ALIGN(buf) \
44 (char *) (((unsigned long) (buf) + page_mask) & ~page_mask)
ebac4655
JA
45
46int groupid = 0;
47int thread_number = 0;
9cedf167
JA
48int nr_process = 0;
49int nr_thread = 0;
ebac4655 50int shm_id = 0;
53cdc686 51int temp_stall_ts;
d3eeeabc 52unsigned long done_secs = 0;
ebac4655 53
cdd18ad8 54static struct fio_mutex *startup_mutex;
6ce15a32 55static volatile int fio_abort;
437c9b71 56static int exit_value;
ccb0fa24 57static struct itimerval itimer;
be4ecfdf 58static pthread_t gtod_thread;
ebac4655 59
bb3884d8
JA
60struct io_log *agg_io_log[2];
61
ebac4655 62#define TERMINATE_ALL (-1)
75154845 63#define JOB_START_TIMEOUT (5 * 1000)
ebac4655 64
b29ee5b3 65void td_set_runstate(struct thread_data *td, int runstate)
6ce15a32 66{
d8fab1b6
JA
67 if (td->runstate == runstate)
68 return;
69
5921e80c
JA
70 dprint(FD_PROCESS, "pid=%d: runstate %d -> %d\n", (int) td->pid,
71 td->runstate, runstate);
6ce15a32
JA
72 td->runstate = runstate;
73}
74
390c40e2 75static void terminate_threads(int group_id)
ebac4655 76{
34572e28 77 struct thread_data *td;
ebac4655
JA
78 int i;
79
6f88bcb0
JA
80 dprint(FD_PROCESS, "terminate group_id=%d\n", group_id);
81
34572e28 82 for_each_td(td, i) {
ebac4655 83 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
6f88bcb0 84 dprint(FD_PROCESS, "setting terminate on %s/%d\n",
5921e80c 85 td->o.name, (int) td->pid);
ad830ed7
JA
86 td->terminate = 1;
87 td->o.start_delay = 0;
88
7a93ab19
JA
89 /*
90 * if the thread is running, just let it exit
91 */
92 if (td->runstate < TD_RUNNING)
c1302d44 93 kill(td->pid, SIGQUIT);
f63f7f3b
JA
94 else {
95 struct ioengine_ops *ops = td->io_ops;
96
97 if (ops && (ops->flags & FIO_SIGQUIT))
98 kill(td->pid, SIGQUIT);
99 }
ebac4655
JA
100 }
101 }
102}
103
ccb0fa24
JA
104static void status_timer_arm(void)
105{
106 itimer.it_value.tv_sec = 0;
107 itimer.it_value.tv_usec = DISK_UTIL_MSEC * 1000;
108 setitimer(ITIMER_REAL, &itimer, NULL);
109}
110
02444ad1 111static void sig_alrm(int fio_unused sig)
ebac4655 112{
697a606c 113 if (threads) {
5ec10eaa 114 update_io_ticks();
5ec10eaa 115 print_thread_status();
ccb0fa24 116 status_timer_arm();
697a606c
JA
117 }
118}
119
5f8f9726
JA
120/*
121 * Happens on thread runs with ctrl-c, ignore our own SIGQUIT
122 */
123static void sig_quit(int sig)
124{
125}
126
697a606c
JA
127static void sig_int(int sig)
128{
129 if (threads) {
5ec10eaa
JA
130 printf("\nfio: terminating on signal %d\n", sig);
131 fflush(stdout);
132 terminate_threads(TERMINATE_ALL);
ebac4655
JA
133 }
134}
135
02444ad1 136static void sig_ill(int fio_unused sig)
de79c915
JA
137{
138 if (!threads)
139 return;
140
141 log_err("fio: illegal instruction. your cpu does not support "
142 "the sse4.2 instruction for crc32c\n");
143 terminate_threads(TERMINATE_ALL);
144 exit(4);
145}
146
697a606c
JA
147static void set_sig_handlers(void)
148{
149 struct sigaction act;
150
151 memset(&act, 0, sizeof(act));
152 act.sa_handler = sig_alrm;
153 act.sa_flags = SA_RESTART;
154 sigaction(SIGALRM, &act, NULL);
155
156 memset(&act, 0, sizeof(act));
157 act.sa_handler = sig_int;
158 act.sa_flags = SA_RESTART;
159 sigaction(SIGINT, &act, NULL);
de79c915
JA
160
161 memset(&act, 0, sizeof(act));
162 act.sa_handler = sig_ill;
163 act.sa_flags = SA_RESTART;
164 sigaction(SIGILL, &act, NULL);
5f8f9726
JA
165
166 memset(&act, 0, sizeof(act));
167 act.sa_handler = sig_quit;
168 act.sa_flags = SA_RESTART;
169 sigaction(SIGQUIT, &act, NULL);
697a606c
JA
170}
171
993bf48b
JA
172static inline int should_check_rate(struct thread_data *td)
173{
e235d5f8
JA
174 struct thread_options *o = &td->o;
175
993bf48b 176 /*
e235d5f8 177 * If some rate setting was given, we need to check it
993bf48b 178 */
e235d5f8
JA
179 if (o->rate || o->ratemin || o->rate_iops || o->rate_iops_min)
180 return 1;
993bf48b 181
e235d5f8 182 return 0;
993bf48b
JA
183}
184
906c8d75
JA
185/*
186 * Check if we are above the minimum rate given.
187 */
ebac4655
JA
188static int check_min_rate(struct thread_data *td, struct timeval *now)
189{
0904200b 190 unsigned long long bytes = 0;
4e991c23 191 unsigned long iops = 0;
ebac4655
JA
192 unsigned long spent;
193 unsigned long rate;
ebac4655
JA
194
195 /*
196 * allow a 2 second settle period in the beginning
197 */
198 if (mtime_since(&td->start, now) < 2000)
199 return 0;
200
4e991c23
JA
201 if (td_read(td)) {
202 iops += td->io_blocks[DDIR_READ];
0904200b 203 bytes += td->this_io_bytes[DDIR_READ];
4e991c23
JA
204 }
205 if (td_write(td)) {
206 iops += td->io_blocks[DDIR_WRITE];
0904200b 207 bytes += td->this_io_bytes[DDIR_WRITE];
4e991c23 208 }
0904200b 209
ebac4655
JA
210 /*
211 * if rate blocks is set, sample is running
212 */
4e991c23 213 if (td->rate_bytes || td->rate_blocks) {
ebac4655 214 spent = mtime_since(&td->lastrate, now);
2dc1bbeb 215 if (spent < td->o.ratecycle)
ebac4655
JA
216 return 0;
217
2dc1bbeb 218 if (td->o.rate) {
4e991c23
JA
219 /*
220 * check bandwidth specified rate
221 */
222 if (bytes < td->rate_bytes) {
5ec10eaa
JA
223 log_err("%s: min rate %u not met\n", td->o.name,
224 td->o.ratemin);
4e991c23
JA
225 return 1;
226 } else {
227 rate = (bytes - td->rate_bytes) / spent;
5ec10eaa
JA
228 if (rate < td->o.ratemin ||
229 bytes < td->rate_bytes) {
230 log_err("%s: min rate %u not met, got"
231 " %luKiB/sec\n", td->o.name,
232 td->o.ratemin, rate);
4e991c23
JA
233 return 1;
234 }
235 }
413dd459 236 } else {
4e991c23
JA
237 /*
238 * checks iops specified rate
239 */
2dc1bbeb 240 if (iops < td->o.rate_iops) {
5ec10eaa
JA
241 log_err("%s: min iops rate %u not met\n",
242 td->o.name, td->o.rate_iops);
413dd459 243 return 1;
4e991c23
JA
244 } else {
245 rate = (iops - td->rate_blocks) / spent;
5ec10eaa
JA
246 if (rate < td->o.rate_iops_min ||
247 iops < td->rate_blocks) {
248 log_err("%s: min iops rate %u not met,"
249 " got %lu\n", td->o.name,
250 td->o.rate_iops_min,
251 rate);
4e991c23 252 }
413dd459 253 }
ebac4655
JA
254 }
255 }
256
0904200b 257 td->rate_bytes = bytes;
4e991c23 258 td->rate_blocks = iops;
ebac4655
JA
259 memcpy(&td->lastrate, now, sizeof(*now));
260 return 0;
261}
262
263static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
264{
2dc1bbeb 265 if (!td->o.timeout)
ebac4655 266 return 0;
2dc1bbeb 267 if (mtime_since(&td->epoch, t) >= td->o.timeout * 1000)
ebac4655
JA
268 return 1;
269
270 return 0;
271}
272
906c8d75
JA
273/*
274 * When job exits, we can cancel the in-flight IO if we are using async
275 * io. Attempt to do so.
276 */
ebac4655
JA
277static void cleanup_pending_aio(struct thread_data *td)
278{
01743ee1 279 struct flist_head *entry, *n;
ebac4655
JA
280 struct io_u *io_u;
281 int r;
282
283 /*
284 * get immediately available events, if any
285 */
d7762cf8 286 r = io_u_queued_complete(td, 0);
b2fdda43
JA
287 if (r < 0)
288 return;
ebac4655
JA
289
290 /*
291 * now cancel remaining active events
292 */
2866c82d 293 if (td->io_ops->cancel) {
01743ee1
JA
294 flist_for_each_safe(entry, n, &td->io_u_busylist) {
295 io_u = flist_entry(entry, struct io_u, list);
ebac4655 296
0c6e7517
JA
297 /*
298 * if the io_u isn't in flight, then that generally
299 * means someone leaked an io_u. complain but fix
300 * it up, so we don't stall here.
301 */
302 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
303 log_err("fio: non-busy IO on busy list\n");
ebac4655 304 put_io_u(td, io_u);
0c6e7517
JA
305 } else {
306 r = td->io_ops->cancel(td, io_u);
307 if (!r)
308 put_io_u(td, io_u);
309 }
ebac4655
JA
310 }
311 }
312
97601024 313 if (td->cur_depth)
d7762cf8 314 r = io_u_queued_complete(td, td->cur_depth);
ebac4655
JA
315}
316
858a3d47
JA
317/*
318 * Helper to handle the final sync of a file. Works just like the normal
319 * io path, just does everything sync.
320 */
321static int fio_io_sync(struct thread_data *td, struct fio_file *f)
322{
323 struct io_u *io_u = __get_io_u(td);
858a3d47
JA
324 int ret;
325
326 if (!io_u)
327 return 1;
328
329 io_u->ddir = DDIR_SYNC;
330 io_u->file = f;
331
332 if (td_io_prep(td, io_u)) {
333 put_io_u(td, io_u);
334 return 1;
335 }
336
755200a3 337requeue:
858a3d47 338 ret = td_io_queue(td, io_u);
36167d82 339 if (ret < 0) {
e1161c32 340 td_verror(td, io_u->error, "td_io_queue");
858a3d47 341 put_io_u(td, io_u);
858a3d47 342 return 1;
36167d82 343 } else if (ret == FIO_Q_QUEUED) {
d7762cf8 344 if (io_u_queued_complete(td, 1) < 0)
36167d82 345 return 1;
36167d82
JA
346 } else if (ret == FIO_Q_COMPLETED) {
347 if (io_u->error) {
e1161c32 348 td_verror(td, io_u->error, "td_io_queue");
36167d82
JA
349 return 1;
350 }
858a3d47 351
d7762cf8 352 if (io_u_sync_complete(td, io_u) < 0)
b2fdda43 353 return 1;
755200a3
JA
354 } else if (ret == FIO_Q_BUSY) {
355 if (td_io_commit(td))
356 return 1;
357 goto requeue;
858a3d47
JA
358 }
359
360 return 0;
361}
362
993bf48b
JA
363static inline void update_tv_cache(struct thread_data *td)
364{
365 if ((++td->tv_cache_nr & td->tv_cache_mask) == td->tv_cache_mask)
366 fio_gettime(&td->tv_cache, NULL);
367}
368
906c8d75 369/*
34403fb1 370 * The main verify engine. Runs over the writes we previously submitted,
906c8d75
JA
371 * reads the blocks back in, and checks the crc/md5 of the data.
372 */
1e97cce9 373static void do_verify(struct thread_data *td)
ebac4655 374{
53cdc686 375 struct fio_file *f;
36167d82 376 struct io_u *io_u;
af52b345
JA
377 int ret, min_events;
378 unsigned int i;
e5b401d4
JA
379
380 /*
381 * sync io first and invalidate cache, to make sure we really
382 * read from disk.
383 */
384 for_each_file(td, f, i) {
3d7b485f
JA
385 if (!(f->flags & FIO_FILE_OPEN))
386 continue;
b2fdda43
JA
387 if (fio_io_sync(td, f))
388 break;
389 if (file_invalidate_cache(td, f))
390 break;
e5b401d4 391 }
ebac4655 392
b2fdda43
JA
393 if (td->error)
394 return;
395
ebac4655
JA
396 td_set_runstate(td, TD_VERIFYING);
397
36167d82
JA
398 io_u = NULL;
399 while (!td->terminate) {
4950421a 400 int ret2, full;
5451792e 401
ebac4655
JA
402 io_u = __get_io_u(td);
403 if (!io_u)
404 break;
405
993bf48b
JA
406 update_tv_cache(td);
407
408 if (runtime_exceeded(td, &td->tv_cache)) {
069c2918 409 put_io_u(td, io_u);
90a87d4b 410 td->terminate = 1;
02bcaa8c 411 break;
069c2918 412 }
02bcaa8c 413
069c2918
JA
414 if (get_next_verify(td, io_u)) {
415 put_io_u(td, io_u);
ebac4655 416 break;
069c2918 417 }
ebac4655 418
069c2918
JA
419 if (td_io_prep(td, io_u)) {
420 put_io_u(td, io_u);
53cdc686 421 break;
069c2918 422 }
d7762cf8
JA
423
424 io_u->end_io = verify_io_u;
53cdc686 425
11786802 426 ret = td_io_queue(td, io_u);
36167d82
JA
427 switch (ret) {
428 case FIO_Q_COMPLETED:
429 if (io_u->error)
22819ec2 430 ret = -io_u->error;
9e9d164e 431 else if (io_u->resid) {
36167d82 432 int bytes = io_u->xfer_buflen - io_u->resid;
d460eb31 433 struct fio_file *f = io_u->file;
ebac4655 434
9e9d164e
JA
435 /*
436 * zero read, fail
437 */
438 if (!bytes) {
41d9f0fd 439 td_verror(td, EIO, "full resid");
9e9d164e
JA
440 put_io_u(td, io_u);
441 break;
442 }
8400d9b2 443
36167d82
JA
444 io_u->xfer_buflen = io_u->resid;
445 io_u->xfer_buf += bytes;
8400d9b2
JA
446 io_u->offset += bytes;
447
30061b97
JA
448 td->ts.short_io_u[io_u->ddir]++;
449
d460eb31 450 if (io_u->offset == f->real_file_size)
8400d9b2
JA
451 goto sync_done;
452
11786802
JA
453 requeue_io_u(td, &io_u);
454 } else {
8400d9b2 455sync_done:
11786802
JA
456 ret = io_u_sync_complete(td, io_u);
457 if (ret < 0)
458 break;
36167d82 459 }
36167d82
JA
460 continue;
461 case FIO_Q_QUEUED:
462 break;
755200a3
JA
463 case FIO_Q_BUSY:
464 requeue_io_u(td, &io_u);
5451792e
JA
465 ret2 = td_io_commit(td);
466 if (ret2 < 0)
467 ret = ret2;
755200a3 468 break;
36167d82
JA
469 default:
470 assert(ret < 0);
e1161c32 471 td_verror(td, -ret, "td_io_queue");
ebac4655
JA
472 break;
473 }
474
99784632 475 if (ret < 0 || td->error)
3af6ef39
JA
476 break;
477
ebac4655 478 /*
3af6ef39
JA
479 * if we can queue more, do so. but check if there are
480 * completed io_u's first.
ebac4655 481 */
4950421a
JA
482 full = queue_full(td) || ret == FIO_Q_BUSY;
483 if (full || !td->o.iodepth_batch_complete) {
484 min_events = td->o.iodepth_batch_complete;
485 if (full && !min_events)
838bc709 486 min_events = 1;
e916b390 487
4950421a
JA
488 do {
489 /*
490 * Reap required number of io units, if any,
491 * and do the verification on them through
492 * the callback handler
493 */
494 if (io_u_queued_complete(td, min_events) < 0) {
495 ret = -1;
496 break;
497 }
498 } while (full && (td->cur_depth > td->o.iodepth_low));
499 }
500 if (ret < 0)
ebac4655 501 break;
36167d82 502 }
ebac4655 503
c01c0395
JA
504 if (!td->error) {
505 min_events = td->cur_depth;
506
507 if (min_events)
508 ret = io_u_queued_complete(td, min_events);
509 } else
ebac4655
JA
510 cleanup_pending_aio(td);
511
512 td_set_runstate(td, TD_RUNNING);
513}
514
32cd46a0 515/*
906c8d75 516 * Main IO worker function. It retrieves io_u's to process and queues
32cd46a0
JA
517 * and reaps them, checking for rate and errors along the way.
518 */
ebac4655
JA
519static void do_io(struct thread_data *td)
520{
ebac4655 521 unsigned long usec;
af52b345
JA
522 unsigned int i;
523 int ret = 0;
ebac4655 524
b29ee5b3
JA
525 if (in_ramp_time(td))
526 td_set_runstate(td, TD_RAMP);
527 else
528 td_set_runstate(td, TD_RUNNING);
5853e5a8 529
7bb48f84 530 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->o.size) {
97601024
JA
531 struct timeval comp_time;
532 long bytes_done = 0;
84585003 533 int min_evts = 0;
ebac4655 534 struct io_u *io_u;
4950421a 535 int ret2, full;
ebac4655
JA
536
537 if (td->terminate)
538 break;
539
3d7c391d 540 io_u = get_io_u(td);
ebac4655
JA
541 if (!io_u)
542 break;
543
993bf48b 544 update_tv_cache(td);
97601024 545
993bf48b 546 if (runtime_exceeded(td, &td->tv_cache)) {
97601024 547 put_io_u(td, io_u);
90a87d4b 548 td->terminate = 1;
97601024
JA
549 break;
550 }
36167d82 551
b67740d3
JA
552 /*
553 * Add verification end_io handler, if asked to verify
554 * a previously written file.
555 */
cc3fc855 556 if (td->o.verify != VERIFY_NONE && io_u->ddir == DDIR_READ) {
b67740d3 557 io_u->end_io = verify_io_u;
d8fab1b6 558 td_set_runstate(td, TD_VERIFYING);
b29ee5b3
JA
559 } else if (in_ramp_time(td))
560 td_set_runstate(td, TD_RAMP);
561 else
d8fab1b6 562 td_set_runstate(td, TD_RUNNING);
b67740d3 563
11786802 564 ret = td_io_queue(td, io_u);
36167d82
JA
565 switch (ret) {
566 case FIO_Q_COMPLETED:
5451792e
JA
567 if (io_u->error)
568 ret = -io_u->error;
9e9d164e 569 else if (io_u->resid) {
36167d82 570 int bytes = io_u->xfer_buflen - io_u->resid;
d460eb31 571 struct fio_file *f = io_u->file;
36167d82 572
9e9d164e
JA
573 /*
574 * zero read, fail
575 */
576 if (!bytes) {
41d9f0fd 577 td_verror(td, EIO, "full resid");
9e9d164e
JA
578 put_io_u(td, io_u);
579 break;
580 }
581
cec6b55d 582 io_u->xfer_buflen = io_u->resid;
36167d82 583 io_u->xfer_buf += bytes;
5a7c5680
JA
584 io_u->offset += bytes;
585
30061b97
JA
586 td->ts.short_io_u[io_u->ddir]++;
587
d460eb31 588 if (io_u->offset == f->real_file_size)
5a7c5680
JA
589 goto sync_done;
590
11786802
JA
591 requeue_io_u(td, &io_u);
592 } else {
5a7c5680 593sync_done:
993bf48b
JA
594 if (should_check_rate(td))
595 fio_gettime(&comp_time, NULL);
596
11786802
JA
597 bytes_done = io_u_sync_complete(td, io_u);
598 if (bytes_done < 0)
599 ret = bytes_done;
cec6b55d 600 }
36167d82
JA
601 break;
602 case FIO_Q_QUEUED:
7e77dd02
JA
603 /*
604 * if the engine doesn't have a commit hook,
605 * the io_u is really queued. if it does have such
606 * a hook, it has to call io_u_queued() itself.
607 */
608 if (td->io_ops->commit == NULL)
609 io_u_queued(td, io_u);
36167d82 610 break;
755200a3
JA
611 case FIO_Q_BUSY:
612 requeue_io_u(td, &io_u);
5451792e
JA
613 ret2 = td_io_commit(td);
614 if (ret2 < 0)
615 ret = ret2;
755200a3 616 break;
36167d82
JA
617 default:
618 assert(ret < 0);
619 put_io_u(td, io_u);
620 break;
ebac4655
JA
621 }
622
99784632 623 if (ret < 0 || td->error)
36167d82
JA
624 break;
625
97601024
JA
626 /*
627 * See if we need to complete some commands
628 */
4950421a
JA
629 full = queue_full(td) || ret == FIO_Q_BUSY;
630 if (full || !td->o.iodepth_batch_complete) {
631 min_evts = td->o.iodepth_batch_complete;
632 if (full && !min_evts)
36167d82 633 min_evts = 1;
4950421a 634
993bf48b
JA
635 if (should_check_rate(td))
636 fio_gettime(&comp_time, NULL);
4950421a
JA
637
638 do {
639 ret = io_u_queued_complete(td, min_evts);
640 if (ret <= 0)
641 break;
642
643 bytes_done += ret;
644 } while (full && (td->cur_depth > td->o.iodepth_low));
ebac4655
JA
645 }
646
4950421a
JA
647 if (ret < 0)
648 break;
97601024
JA
649 if (!bytes_done)
650 continue;
651
ebac4655
JA
652 /*
653 * the rate is batched for now, it should work for batches
654 * of completions except the very first one which may look
655 * a little bursty
656 */
993bf48b
JA
657 if (!in_ramp_time(td) && should_check_rate(td)) {
658 usec = utime_since(&td->tv_cache, &comp_time);
ebac4655 659
721938ae 660 rate_throttle(td, usec, bytes_done);
ebac4655 661
721938ae
JA
662 if (check_min_rate(td, &comp_time)) {
663 if (exitall_on_terminate)
664 terminate_threads(td->groupid);
665 td_verror(td, EIO, "check_min_rate");
666 break;
667 }
ebac4655
JA
668 }
669
2dc1bbeb 670 if (td->o.thinktime) {
9c1f7434
JA
671 unsigned long long b;
672
673 b = td->io_blocks[0] + td->io_blocks[1];
2dc1bbeb 674 if (!(b % td->o.thinktime_blocks)) {
48097d5c
JA
675 int left;
676
2dc1bbeb 677 if (td->o.thinktime_spin)
6dd6f2cd 678 usec_spin(td->o.thinktime_spin);
48097d5c 679
2dc1bbeb 680 left = td->o.thinktime - td->o.thinktime_spin;
48097d5c
JA
681 if (left)
682 usec_sleep(td, left);
683 }
9c1f7434 684 }
ebac4655
JA
685 }
686
aa31f1f1
SL
687 if (td->o.fill_device && td->error == ENOSPC) {
688 td->error = 0;
689 td->terminate = 1;
690 }
4d2413c6 691 if (!td->error) {
3d7c391d
JA
692 struct fio_file *f;
693
c01c0395
JA
694 i = td->cur_depth;
695 if (i)
696 ret = io_u_queued_complete(td, i);
ebac4655 697
2dc1bbeb 698 if (should_fsync(td) && td->o.end_fsync) {
84585003 699 td_set_runstate(td, TD_FSYNCING);
3d7b485f
JA
700
701 for_each_file(td, f, i) {
702 if (!(f->flags & FIO_FILE_OPEN))
703 continue;
858a3d47 704 fio_io_sync(td, f);
3d7b485f 705 }
84585003 706 }
c01c0395
JA
707 } else
708 cleanup_pending_aio(td);
2ba1c290
JA
709
710 /*
711 * stop job if we failed doing any IO
712 */
713 if ((td->this_io_bytes[0] + td->this_io_bytes[1]) == 0)
714 td->done = 1;
ebac4655
JA
715}
716
ebac4655
JA
717static void cleanup_io_u(struct thread_data *td)
718{
01743ee1 719 struct flist_head *entry, *n;
ebac4655
JA
720 struct io_u *io_u;
721
01743ee1
JA
722 flist_for_each_safe(entry, n, &td->io_u_freelist) {
723 io_u = flist_entry(entry, struct io_u, list);
ebac4655 724
01743ee1 725 flist_del(&io_u->list);
ebac4655
JA
726 free(io_u);
727 }
728
2f9ade3c 729 free_io_mem(td);
ebac4655
JA
730}
731
732static int init_io_u(struct thread_data *td)
733{
734 struct io_u *io_u;
a00735e6 735 unsigned int max_bs;
ebac4655
JA
736 int i, max_units;
737 char *p;
738
1e3c09af 739 max_units = td->o.iodepth;
2dc1bbeb 740 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
5ec10eaa
JA
741 td->orig_buffer_size = (unsigned long long) max_bs
742 * (unsigned long long) max_units;
743
744 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE) {
745 unsigned long bs;
74b025b0 746
5ec10eaa
JA
747 bs = td->orig_buffer_size + td->o.hugepage_size - 1;
748 td->orig_buffer_size = bs & ~(td->o.hugepage_size - 1);
749 }
ebac4655 750
c3990645
JA
751 if (td->orig_buffer_size != (size_t) td->orig_buffer_size) {
752 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
753 return 1;
754 }
755
2f9ade3c
JA
756 if (allocate_io_mem(td))
757 return 1;
ebac4655 758
b3f378e9
JA
759 if (td->o.odirect)
760 p = ALIGN(td->orig_buffer);
761 else
762 p = td->orig_buffer;
763
ebac4655 764 for (i = 0; i < max_units; i++) {
db1cd90b
JA
765 if (td->terminate)
766 return 1;
ebac4655
JA
767 io_u = malloc(sizeof(*io_u));
768 memset(io_u, 0, sizeof(*io_u));
01743ee1 769 INIT_FLIST_HEAD(&io_u->list);
ebac4655 770
b4c5e1ac
JA
771 if (!(td->io_ops->flags & FIO_NOIO)) {
772 io_u->buf = p + max_bs * i;
e9459e5a 773
5973cafb
JA
774 if (td_write(td) && !td->o.refill_buffers)
775 io_u_fill_buffer(td, io_u, max_bs);
b4c5e1ac 776 }
6b9cea23 777
b1ff3403 778 io_u->index = i;
0c6e7517 779 io_u->flags = IO_U_F_FREE;
01743ee1 780 flist_add(&io_u->list, &td->io_u_freelist);
ebac4655
JA
781 }
782
783 return 0;
784}
785
da86774e
JA
786static int switch_ioscheduler(struct thread_data *td)
787{
788 char tmp[256], tmp2[128];
789 FILE *f;
790 int ret;
791
ba0fbe10 792 if (td->io_ops->flags & FIO_DISKLESSIO)
f48b467c
JA
793 return 0;
794
da86774e
JA
795 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
796
797 f = fopen(tmp, "r+");
798 if (!f) {
cbf5c1d7 799 if (errno == ENOENT) {
5ec10eaa
JA
800 log_err("fio: os or kernel doesn't support IO scheduler"
801 " switching\n");
cbf5c1d7
JA
802 return 0;
803 }
804 td_verror(td, errno, "fopen iosched");
da86774e
JA
805 return 1;
806 }
807
808 /*
809 * Set io scheduler.
810 */
2dc1bbeb 811 ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
da86774e 812 if (ferror(f) || ret != 1) {
e1161c32 813 td_verror(td, errno, "fwrite");
da86774e
JA
814 fclose(f);
815 return 1;
816 }
817
818 rewind(f);
819
820 /*
821 * Read back and check that the selected scheduler is now the default.
822 */
823 ret = fread(tmp, 1, sizeof(tmp), f);
824 if (ferror(f) || ret < 0) {
e1161c32 825 td_verror(td, errno, "fread");
da86774e
JA
826 fclose(f);
827 return 1;
828 }
829
2dc1bbeb 830 sprintf(tmp2, "[%s]", td->o.ioscheduler);
da86774e 831 if (!strstr(tmp, tmp2)) {
2dc1bbeb 832 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
e1161c32 833 td_verror(td, EINVAL, "iosched_switch");
da86774e
JA
834 fclose(f);
835 return 1;
836 }
837
838 fclose(f);
839 return 0;
840}
841
492158cf
JA
842static int keep_running(struct thread_data *td)
843{
844 unsigned long long io_done;
845
20e354ef
JA
846 if (td->done)
847 return 0;
492158cf
JA
848 if (td->o.time_based)
849 return 1;
850 if (td->o.loops) {
851 td->o.loops--;
852 return 1;
853 }
854
5ec10eaa
JA
855 io_done = td->io_bytes[DDIR_READ] + td->io_bytes[DDIR_WRITE]
856 + td->io_skip_bytes;
492158cf
JA
857 if (io_done < td->o.size)
858 return 1;
859
860 return 0;
861}
862
b29ee5b3 863static void reset_io_counters(struct thread_data *td)
ebac4655 864{
756867bd 865 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
ebac4655 866 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
20dc95c4 867 td->zone_bytes = 0;
d7d3b49b 868 td->rate_bytes = 0;
4e991c23 869 td->rate_blocks = 0;
38d77cae 870 td->rw_end_set[0] = td->rw_end_set[1] = 0;
ebac4655 871
c1324df1
JA
872 td->last_was_sync = 0;
873
2ba1c290
JA
874 /*
875 * reset file done count if we are to start over
876 */
877 if (td->o.time_based || td->o.loops)
48f5abd3 878 td->nr_done_files = 0;
b29ee5b3
JA
879}
880
881void reset_all_stats(struct thread_data *td)
882{
883 struct timeval tv;
884 int i;
885
886 reset_io_counters(td);
887
888 for (i = 0; i < 2; i++) {
889 td->io_bytes[i] = 0;
890 td->io_blocks[i] = 0;
891 td->io_issues[i] = 0;
892 td->ts.total_io_u[i] = 0;
893 }
894
895 fio_gettime(&tv, NULL);
896 memcpy(&td->epoch, &tv, sizeof(tv));
897 memcpy(&td->start, &tv, sizeof(tv));
898}
899
df9c26b1 900static void clear_io_state(struct thread_data *td)
b29ee5b3
JA
901{
902 struct fio_file *f;
903 unsigned int i;
b29ee5b3
JA
904
905 reset_io_counters(td);
281f9b63 906
24ffd2c2 907 close_files(td);
df9c26b1 908 for_each_file(td, f, i)
281f9b63 909 f->flags &= ~FIO_FILE_DONE;
ebac4655
JA
910}
911
906c8d75
JA
912/*
913 * Entry point for the thread based jobs. The process based jobs end up
914 * here as well, after a little setup.
915 */
ebac4655
JA
916static void *thread_main(void *data)
917{
10927316 918 unsigned long long runtime[2], elapsed;
ebac4655 919 struct thread_data *td = data;
a978ba68 920 int clear_state;
ebac4655 921
2dc1bbeb 922 if (!td->o.use_thread)
ebac4655
JA
923 setsid();
924
925 td->pid = getpid();
926
5921e80c 927 dprint(FD_PROCESS, "jobs pid=%d started\n", (int) td->pid);
ee56ad50 928
01743ee1
JA
929 INIT_FLIST_HEAD(&td->io_u_freelist);
930 INIT_FLIST_HEAD(&td->io_u_busylist);
931 INIT_FLIST_HEAD(&td->io_u_requeues);
932 INIT_FLIST_HEAD(&td->io_log_list);
933 INIT_FLIST_HEAD(&td->io_hist_list);
bb5d7d0b 934 td->io_hist_tree = RB_ROOT;
aea47d44 935
db1cd90b 936 td_set_runstate(td, TD_INITIALIZED);
29adda3c 937 dprint(FD_MUTEX, "up startup_mutex\n");
cdd18ad8 938 fio_mutex_up(startup_mutex);
29adda3c 939 dprint(FD_MUTEX, "wait on td->mutex\n");
cdd18ad8 940 fio_mutex_down(td->mutex);
29adda3c 941 dprint(FD_MUTEX, "done waiting on td->mutex\n");
db1cd90b
JA
942
943 /*
cdd18ad8 944 * the ->mutex mutex is now no longer used, close it to avoid
db1cd90b
JA
945 * eating a file descriptor
946 */
cdd18ad8 947 fio_mutex_remove(td->mutex);
db1cd90b 948
d84f8d49
JA
949 /*
950 * May alter parameters that init_io_u() will use, so we need to
951 * do this first.
952 */
953 if (init_iolog(td))
954 goto err;
955
ebac4655 956 if (init_io_u(td))
db1cd90b 957 goto err;
ebac4655 958
375b2695 959 if (td->o.cpumask_set && fio_setaffinity(td) == -1) {
e1161c32 960 td_verror(td, errno, "cpu_set_affinity");
db1cd90b 961 goto err;
ebac4655
JA
962 }
963
f484470b
JA
964 /*
965 * If we have a gettimeofday() thread, make sure we exclude that
966 * thread from this job
967 */
be4ecfdf 968 if (td->o.gtod_cpu) {
be4ecfdf
JA
969 fio_cpu_clear(&td->o.cpumask, td->o.gtod_cpu);
970 if (fio_setaffinity(td) == -1) {
971 td_verror(td, errno, "cpu_set_affinity");
972 goto err;
973 }
974 }
975
ac684785 976 if (td->ioprio_set) {
ebac4655 977 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
e1161c32 978 td_verror(td, errno, "ioprio_set");
db1cd90b 979 goto err;
ebac4655
JA
980 }
981 }
982
2dc1bbeb 983 if (nice(td->o.nice) == -1) {
e1161c32 984 td_verror(td, errno, "nice");
db1cd90b 985 goto err;
b6f4d880
JA
986 }
987
2dc1bbeb 988 if (td->o.ioscheduler && switch_ioscheduler(td))
db1cd90b 989 goto err;
37f56873 990
2dc1bbeb 991 if (!td->o.create_serialize && setup_files(td))
ebac4655
JA
992 goto err;
993
7d6c5283
JA
994 if (td_io_init(td))
995 goto err;
996
68727076
JA
997 if (init_random_map(td))
998 goto err;
999
2dc1bbeb
JA
1000 if (td->o.exec_prerun) {
1001 if (system(td->o.exec_prerun) < 0)
69cfd7e0
JA
1002 goto err;
1003 }
4e0ba8af 1004
69008999 1005 fio_gettime(&td->epoch, NULL);
756867bd 1006 getrusage(RUSAGE_SELF, &td->ts.ru_start);
69008999
JA
1007
1008 runtime[0] = runtime[1] = 0;
a978ba68 1009 clear_state = 0;
492158cf 1010 while (keep_running(td)) {
02bcaa8c 1011 fio_gettime(&td->start, NULL);
756867bd 1012 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
993bf48b 1013 memcpy(&td->tv_cache, &td->start, sizeof(td->start));
ebac4655 1014
2dc1bbeb 1015 if (td->o.ratemin)
5ec10eaa
JA
1016 memcpy(&td->lastrate, &td->ts.stat_sample_time,
1017 sizeof(td->lastrate));
ebac4655 1018
df9c26b1
JA
1019 if (clear_state)
1020 clear_io_state(td);
a978ba68 1021
ebac4655
JA
1022 prune_io_piece_log(td);
1023
ba0fbe10 1024 do_io(td);
ebac4655 1025
a978ba68
JA
1026 clear_state = 1;
1027
38d77cae
JA
1028 if (td_read(td) && td->io_bytes[DDIR_READ]) {
1029 if (td->rw_end_set[DDIR_READ])
5ec10eaa
JA
1030 elapsed = utime_since(&td->start,
1031 &td->rw_end[DDIR_READ]);
38d77cae
JA
1032 else
1033 elapsed = utime_since_now(&td->start);
1034
1035 runtime[DDIR_READ] += elapsed;
1036 }
1037 if (td_write(td) && td->io_bytes[DDIR_WRITE]) {
1038 if (td->rw_end_set[DDIR_WRITE])
5ec10eaa
JA
1039 elapsed = utime_since(&td->start,
1040 &td->rw_end[DDIR_WRITE]);
38d77cae
JA
1041 else
1042 elapsed = utime_since_now(&td->start);
1043
1044 runtime[DDIR_WRITE] += elapsed;
1045 }
5ec10eaa 1046
ebac4655
JA
1047 if (td->error || td->terminate)
1048 break;
1049
e84c73a8
SL
1050 if (!td->o.do_verify ||
1051 td->o.verify == VERIFY_NONE ||
b67740d3 1052 (td->io_ops->flags & FIO_UNIDIR))
ebac4655
JA
1053 continue;
1054
df9c26b1 1055 clear_io_state(td);
a978ba68 1056
02bcaa8c 1057 fio_gettime(&td->start, NULL);
ebac4655
JA
1058
1059 do_verify(td);
1060
69008999 1061 runtime[DDIR_READ] += utime_since_now(&td->start);
ebac4655
JA
1062
1063 if (td->error || td->terminate)
1064 break;
1065 }
1066
36dff966 1067 update_rusage_stat(td);
47f0cc48
YHJT
1068 td->ts.runtime[0] = (runtime[0] + 999) / 1000;
1069 td->ts.runtime[1] = (runtime[1] + 999) / 1000;
756867bd
JA
1070 td->ts.total_run_time = mtime_since_now(&td->epoch);
1071 td->ts.io_bytes[0] = td->io_bytes[0];
1072 td->ts.io_bytes[1] = td->io_bytes[1];
1073
e3cedca7 1074 if (td->ts.bw_log) {
f484470b
JA
1075 if (td->o.bw_log_file) {
1076 finish_log_named(td, td->ts.bw_log,
1077 td->o.bw_log_file, "bw");
1078 } else
e3cedca7
JA
1079 finish_log(td, td->ts.bw_log, "bw");
1080 }
1081 if (td->ts.slat_log) {
f484470b
JA
1082 if (td->o.lat_log_file) {
1083 finish_log_named(td, td->ts.slat_log,
1084 td->o.lat_log_file, "clat");
1085 } else
e3cedca7
JA
1086 finish_log(td, td->ts.slat_log, "slat");
1087 }
1088 if (td->ts.clat_log) {
f484470b
JA
1089 if (td->o.lat_log_file) {
1090 finish_log_named(td, td->ts.clat_log,
1091 td->o.lat_log_file, "clat");
1092 } else
e3cedca7
JA
1093 finish_log(td, td->ts.clat_log, "clat");
1094 }
2dc1bbeb
JA
1095 if (td->o.exec_postrun) {
1096 if (system(td->o.exec_postrun) < 0)
1097 log_err("fio: postrun %s failed\n", td->o.exec_postrun);
69cfd7e0 1098 }
ebac4655
JA
1099
1100 if (exitall_on_terminate)
390c40e2 1101 terminate_threads(td->groupid);
ebac4655
JA
1102
1103err:
5bf13a5a 1104 if (td->error)
5921e80c 1105 printf("fio: pid=%d, err=%d/%s\n", (int) td->pid, td->error,
5ec10eaa 1106 td->verror);
24ffd2c2 1107 close_and_free_files(td);
2866c82d 1108 close_ioengine(td);
ebac4655 1109 cleanup_io_u(td);
f29b25a3 1110
d2ce18b5
JA
1111 if (td->o.cpumask_set) {
1112 int ret = fio_cpuset_exit(&td->o.cpumask);
1113
1114 td_verror(td, ret, "fio_cpuset_exit");
1115 }
4e78e405 1116
f29b25a3
JA
1117 /*
1118 * do this very late, it will log file closing as well
1119 */
1120 if (td->o.write_iolog_file)
1121 write_iolog_close(td);
1122
d23bb327 1123 options_mem_free(td);
ebac4655 1124 td_set_runstate(td, TD_EXITED);
43d76807 1125 return (void *) (unsigned long) td->error;
ebac4655
JA
1126}
1127
906c8d75
JA
1128/*
1129 * We cannot pass the td data into a forked process, so attach the td and
1130 * pass it to the thread worker.
1131 */
a6418147 1132static int fork_main(int shmid, int offset)
ebac4655
JA
1133{
1134 struct thread_data *td;
a6418147 1135 void *data, *ret;
ebac4655
JA
1136
1137 data = shmat(shmid, NULL, 0);
1138 if (data == (void *) -1) {
a6418147
JA
1139 int __err = errno;
1140
ebac4655 1141 perror("shmat");
a6418147 1142 return __err;
ebac4655
JA
1143 }
1144
1145 td = data + offset * sizeof(struct thread_data);
a6418147 1146 ret = thread_main(td);
ebac4655 1147 shmdt(data);
43d76807 1148 return (int) (unsigned long) ret;
ebac4655
JA
1149}
1150
906c8d75
JA
1151/*
1152 * Run over the job map and reap the threads that have exited, if any.
1153 */
ebac4655
JA
1154static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
1155{
34572e28 1156 struct thread_data *td;
1f809d15 1157 int i, cputhreads, realthreads, pending, status, ret;
ebac4655
JA
1158
1159 /*
1160 * reap exited threads (TD_EXITED -> TD_REAPED)
1161 */
1f809d15 1162 realthreads = pending = cputhreads = 0;
34572e28 1163 for_each_td(td, i) {
3707f45b 1164 int flags = 0;
a2f77c9f 1165
84585003
JA
1166 /*
1167 * ->io_ops is NULL for a thread that has closed its
1168 * io engine
1169 */
ba0fbe10 1170 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
b990b5c0 1171 cputhreads++;
1f809d15
JA
1172 else
1173 realthreads++;
b990b5c0 1174
a1dedc1f
AC
1175 if (!td->pid) {
1176 pending++;
1177 continue;
1178 }
1179 if (td->runstate == TD_REAPED)
a2f77c9f 1180 continue;
2dc1bbeb 1181 if (td->o.use_thread) {
3707f45b
JA
1182 if (td->runstate == TD_EXITED) {
1183 td_set_runstate(td, TD_REAPED);
1184 goto reaped;
1185 }
1186 continue;
1187 }
a2f77c9f
JA
1188
1189 flags = WNOHANG;
1190 if (td->runstate == TD_EXITED)
1191 flags = 0;
1192
1193 /*
1194 * check if someone quit or got killed in an unusual way
1195 */
1196 ret = waitpid(td->pid, &status, flags);
3707f45b 1197 if (ret < 0) {
a2f77c9f 1198 if (errno == ECHILD) {
5921e80c
JA
1199 log_err("fio: pid=%d disappeared %d\n",
1200 (int) td->pid, td->runstate);
a2f77c9f
JA
1201 td_set_runstate(td, TD_REAPED);
1202 goto reaped;
1203 }
1204 perror("waitpid");
1205 } else if (ret == td->pid) {
1206 if (WIFSIGNALED(status)) {
fab6aa71
JA
1207 int sig = WTERMSIG(status);
1208
d9244941 1209 if (sig != SIGQUIT)
5ec10eaa 1210 log_err("fio: pid=%d, got signal=%d\n",
5921e80c 1211 (int) td->pid, sig);
fab6aa71
JA
1212 td_set_runstate(td, TD_REAPED);
1213 goto reaped;
1214 }
a2f77c9f
JA
1215 if (WIFEXITED(status)) {
1216 if (WEXITSTATUS(status) && !td->error)
1217 td->error = WEXITSTATUS(status);
a2f77c9f 1218
a2f77c9f
JA
1219 td_set_runstate(td, TD_REAPED);
1220 goto reaped;
a6418147
JA
1221 }
1222 }
ebac4655 1223
a2f77c9f
JA
1224 /*
1225 * thread is not dead, continue
1226 */
e48676ba 1227 pending++;
a2f77c9f 1228 continue;
fab6aa71 1229reaped:
ebac4655 1230 (*nr_running)--;
2dc1bbeb
JA
1231 (*m_rate) -= td->o.ratemin;
1232 (*t_rate) -= td->o.rate;
6f88bcb0
JA
1233 if (!td->pid)
1234 pending--;
a2f77c9f
JA
1235
1236 if (td->error)
1237 exit_value++;
d3eeeabc
JA
1238
1239 done_secs += mtime_since_now(&td->epoch) / 1000;
ebac4655 1240 }
b990b5c0 1241
1f809d15 1242 if (*nr_running == cputhreads && !pending && realthreads)
390c40e2 1243 terminate_threads(TERMINATE_ALL);
ebac4655
JA
1244}
1245
be4ecfdf
JA
1246static void *gtod_thread_main(void *data)
1247{
1248 fio_mutex_up(startup_mutex);
1249
1250 /*
1251 * As long as we have jobs around, update the clock. It would be nice
1252 * to have some way of NOT hammering that CPU with gettimeofday(),
1253 * but I'm not sure what to use outside of a simple CPU nop to relax
1254 * it - we don't want to lose precision.
1255 */
1256 while (threads) {
1257 fio_gtod_update();
1258 nop;
1259 }
1260
1261 return NULL;
1262}
1263
1264static int fio_start_gtod_thread(void)
1265{
f42c153d
JA
1266 int ret;
1267
1268 ret = pthread_create(&gtod_thread, NULL, gtod_thread_main, NULL);
1269 if (ret) {
1270 log_err("Can't create gtod thread: %s\n", strerror(ret));
be4ecfdf
JA
1271 return 1;
1272 }
f42c153d
JA
1273
1274 ret = pthread_detach(gtod_thread);
1275 if (ret) {
1276 log_err("Can't detatch gtod thread: %s\n", strerror(ret));
be4ecfdf
JA
1277 return 1;
1278 }
1279
29adda3c 1280 dprint(FD_MUTEX, "wait on startup_mutex\n");
be4ecfdf 1281 fio_mutex_down(startup_mutex);
29adda3c 1282 dprint(FD_MUTEX, "done waiting on startup_mutex\n");
be4ecfdf
JA
1283 return 0;
1284}
1285
906c8d75
JA
1286/*
1287 * Main function for kicking off and reaping jobs, as needed.
1288 */
ebac4655
JA
1289static void run_threads(void)
1290{
ebac4655
JA
1291 struct thread_data *td;
1292 unsigned long spent;
1293 int i, todo, nr_running, m_rate, t_rate, nr_started;
fcb6ade2 1294
2f9ade3c
JA
1295 if (fio_pin_memory())
1296 return;
ebac4655 1297
be4ecfdf
JA
1298 if (fio_gtod_offload && fio_start_gtod_thread())
1299 return;
1300
c6ae0a5b 1301 if (!terse_output) {
9cedf167
JA
1302 printf("Starting ");
1303 if (nr_thread)
5ec10eaa
JA
1304 printf("%d thread%s", nr_thread,
1305 nr_thread > 1 ? "s" : "");
9cedf167
JA
1306 if (nr_process) {
1307 if (nr_thread)
1308 printf(" and ");
5ec10eaa
JA
1309 printf("%d process%s", nr_process,
1310 nr_process > 1 ? "es" : "");
9cedf167
JA
1311 }
1312 printf("\n");
c6ae0a5b
JA
1313 fflush(stdout);
1314 }
c04f7ec3 1315
697a606c 1316 set_sig_handlers();
4efa970e 1317
ebac4655
JA
1318 todo = thread_number;
1319 nr_running = 0;
1320 nr_started = 0;
1321 m_rate = t_rate = 0;
1322
34572e28 1323 for_each_td(td, i) {
263e529f 1324 print_status_init(td->thread_number - 1);
ebac4655 1325
2dc1bbeb 1326 if (!td->o.create_serialize) {
380cf265 1327 init_disk_util(td);
ebac4655 1328 continue;
380cf265 1329 }
ebac4655
JA
1330
1331 /*
1332 * do file setup here so it happens sequentially,
1333 * we don't want X number of threads getting their
1334 * client data interspersed on disk
1335 */
53cdc686 1336 if (setup_files(td)) {
5bf13a5a
JA
1337 exit_value++;
1338 if (td->error)
5921e80c
JA
1339 log_err("fio: pid=%d, err=%d/%s\n",
1340 (int) td->pid, td->error, td->verror);
ebac4655
JA
1341 td_set_runstate(td, TD_REAPED);
1342 todo--;
c69e8875
JA
1343 } else {
1344 struct fio_file *f;
1345 unsigned int i;
1346
1347 /*
1348 * for sharing to work, each job must always open
1349 * its own files. so close them, if we opened them
1350 * for creation
1351 */
1352 for_each_file(td, f, i)
1353 td_io_close_file(td, f);
5ec10eaa 1354 }
380cf265
JA
1355
1356 init_disk_util(td);
ebac4655
JA
1357 }
1358
a2f77c9f
JA
1359 set_genesis_time();
1360
ebac4655 1361 while (todo) {
75154845
JA
1362 struct thread_data *map[MAX_JOBS];
1363 struct timeval this_start;
1364 int this_jobs = 0, left;
1365
ebac4655
JA
1366 /*
1367 * create threads (TD_NOT_CREATED -> TD_CREATED)
1368 */
34572e28 1369 for_each_td(td, i) {
ebac4655
JA
1370 if (td->runstate != TD_NOT_CREATED)
1371 continue;
1372
1373 /*
1374 * never got a chance to start, killed by other
1375 * thread for some reason
1376 */
1377 if (td->terminate) {
1378 todo--;
1379 continue;
1380 }
1381
2dc1bbeb 1382 if (td->o.start_delay) {
263e529f 1383 spent = mtime_since_genesis();
ebac4655 1384
2dc1bbeb 1385 if (td->o.start_delay * 1000 > spent)
ebac4655
JA
1386 continue;
1387 }
1388
6f88bcb0
JA
1389 if (td->o.stonewall && (nr_started || nr_running)) {
1390 dprint(FD_PROCESS, "%s: stonewall wait\n",
1391 td->o.name);
ebac4655 1392 break;
6f88bcb0 1393 }
ebac4655 1394
75154845
JA
1395 /*
1396 * Set state to created. Thread will transition
1397 * to TD_INITIALIZED when it's done setting up.
1398 */
ebac4655 1399 td_set_runstate(td, TD_CREATED);
75154845 1400 map[this_jobs++] = td;
ebac4655
JA
1401 nr_started++;
1402
2dc1bbeb 1403 if (td->o.use_thread) {
f42c153d
JA
1404 int ret;
1405
ee56ad50 1406 dprint(FD_PROCESS, "will pthread_create\n");
f42c153d
JA
1407 ret = pthread_create(&td->thread, NULL,
1408 thread_main, td);
1409 if (ret) {
1410 log_err("pthread_create: %s\n",
1411 strerror(ret));
ebac4655 1412 nr_started--;
c8bb6faf 1413 break;
ebac4655 1414 }
f42c153d
JA
1415 ret = pthread_detach(td->thread);
1416 if (ret)
1417 log_err("pthread_detach: %s",
1418 strerror(ret));
ebac4655 1419 } else {
5e1d306e 1420 pid_t pid;
ee56ad50 1421 dprint(FD_PROCESS, "will fork\n");
5e1d306e
JA
1422 pid = fork();
1423 if (!pid) {
a6418147
JA
1424 int ret = fork_main(shm_id, i);
1425
5e1d306e
JA
1426 _exit(ret);
1427 } else if (i == fio_debug_jobno)
1428 *fio_debug_jobp = pid;
ebac4655 1429 }
29adda3c 1430 dprint(FD_MUTEX, "wait on startup_mutex\n");
cdd18ad8 1431 fio_mutex_down(startup_mutex);
29adda3c 1432 dprint(FD_MUTEX, "done waiting on startup_mutex\n");
ebac4655
JA
1433 }
1434
1435 /*
75154845
JA
1436 * Wait for the started threads to transition to
1437 * TD_INITIALIZED.
ebac4655 1438 */
02bcaa8c 1439 fio_gettime(&this_start, NULL);
75154845 1440 left = this_jobs;
6ce15a32 1441 while (left && !fio_abort) {
75154845
JA
1442 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1443 break;
1444
1445 usleep(100000);
1446
1447 for (i = 0; i < this_jobs; i++) {
1448 td = map[i];
1449 if (!td)
1450 continue;
b6f4d880 1451 if (td->runstate == TD_INITIALIZED) {
75154845
JA
1452 map[i] = NULL;
1453 left--;
b6f4d880
JA
1454 } else if (td->runstate >= TD_EXITED) {
1455 map[i] = NULL;
1456 left--;
1457 todo--;
1458 nr_running++; /* work-around... */
75154845
JA
1459 }
1460 }
1461 }
1462
1463 if (left) {
3b70d7e5 1464 log_err("fio: %d jobs failed to start\n", left);
75154845
JA
1465 for (i = 0; i < this_jobs; i++) {
1466 td = map[i];
1467 if (!td)
1468 continue;
1469 kill(td->pid, SIGTERM);
1470 }
1471 break;
1472 }
1473
1474 /*
b6f4d880 1475 * start created threads (TD_INITIALIZED -> TD_RUNNING).
75154845 1476 */
34572e28 1477 for_each_td(td, i) {
75154845 1478 if (td->runstate != TD_INITIALIZED)
ebac4655
JA
1479 continue;
1480
b29ee5b3
JA
1481 if (in_ramp_time(td))
1482 td_set_runstate(td, TD_RAMP);
1483 else
1484 td_set_runstate(td, TD_RUNNING);
ebac4655
JA
1485 nr_running++;
1486 nr_started--;
2dc1bbeb
JA
1487 m_rate += td->o.ratemin;
1488 t_rate += td->o.rate;
75154845 1489 todo--;
cdd18ad8 1490 fio_mutex_up(td->mutex);
ebac4655
JA
1491 }
1492
1493 reap_threads(&nr_running, &t_rate, &m_rate);
1494
1495 if (todo)
1496 usleep(100000);
1497 }
1498
1499 while (nr_running) {
1500 reap_threads(&nr_running, &t_rate, &m_rate);
1501 usleep(10000);
1502 }
1503
1504 update_io_ticks();
2f9ade3c 1505 fio_unpin_memory();
ebac4655
JA
1506}
1507
ebac4655
JA
1508int main(int argc, char *argv[])
1509{
29d610e1
JA
1510 long ps;
1511
2e5cdb11
JA
1512 sinit();
1513
dbe1125e
JA
1514 /*
1515 * We need locale for number printing, if it isn't set then just
1516 * go with the US format.
1517 */
1518 if (!getenv("LC_NUMERIC"))
1519 setlocale(LC_NUMERIC, "en_US");
1520
ebac4655
JA
1521 if (parse_options(argc, argv))
1522 return 1;
1523
4b472fa3
JA
1524 if (!thread_number)
1525 return 0;
ebac4655 1526
29d610e1
JA
1527 ps = sysconf(_SC_PAGESIZE);
1528 if (ps < 0) {
1529 log_err("Failed to get page size\n");
1530 return 1;
1531 }
1532
cfc99db7 1533 page_size = ps;
29d610e1
JA
1534 page_mask = ps - 1;
1535
bb3884d8
JA
1536 if (write_bw_log) {
1537 setup_log(&agg_io_log[DDIR_READ]);
1538 setup_log(&agg_io_log[DDIR_WRITE]);
1539 }
1540
cdd18ad8 1541 startup_mutex = fio_mutex_init(0);
07739b57 1542
a2f77c9f
JA
1543 set_genesis_time();
1544
ccb0fa24 1545 status_timer_arm();
ebac4655
JA
1546
1547 run_threads();
6ce15a32 1548
bb3884d8 1549 if (!fio_abort) {
6ce15a32 1550 show_run_stats();
bb3884d8 1551 if (write_bw_log) {
5ec10eaa
JA
1552 __finish_log(agg_io_log[DDIR_READ], "agg-read_bw.log");
1553 __finish_log(agg_io_log[DDIR_WRITE],
1554 "agg-write_bw.log");
bb3884d8
JA
1555 }
1556 }
ebac4655 1557
cdd18ad8 1558 fio_mutex_remove(startup_mutex);
437c9b71 1559 return exit_value;
ebac4655 1560}