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