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