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