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