act: add slice support and pass/fail end criteria
[fio.git] / backend.c
CommitLineData
2e1df07d
JA
1/*
2 * fio - the flexible io tester
3 *
4 * Copyright (C) 2005 Jens Axboe <axboe@suse.de>
5 * Copyright (C) 2006-2012 Jens Axboe <axboe@kernel.dk>
6 *
7 * The license below covers all files distributed with fio unless otherwise
8 * noted in the file itself.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
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 */
24#include <unistd.h>
25#include <fcntl.h>
26#include <string.h>
27#include <limits.h>
28#include <signal.h>
29#include <time.h>
30#include <locale.h>
31#include <assert.h>
32#include <time.h>
e43606c2 33#include <inttypes.h>
2e1df07d
JA
34#include <sys/stat.h>
35#include <sys/wait.h>
36#include <sys/ipc.h>
2e1df07d
JA
37#include <sys/mman.h>
38
39#include "fio.h"
a5e0ee11
O
40#ifndef FIO_NO_HAVE_SHM_H
41#include <sys/shm.h>
42#endif
2e1df07d
JA
43#include "hash.h"
44#include "smalloc.h"
45#include "verify.h"
46#include "trim.h"
47#include "diskutil.h"
48#include "cgroup.h"
49#include "profile.h"
50#include "lib/rand.h"
51#include "memalign.h"
52#include "server.h"
44404c5a 53#include "lib/getrusage.h"
f2a2ce0e 54#include "idletime.h"
2e1df07d
JA
55
56static pthread_t disk_util_thread;
9ec7779f 57static struct fio_mutex *disk_thread_mutex;
2e1df07d
JA
58static struct fio_mutex *startup_mutex;
59static struct fio_mutex *writeout_mutex;
60static struct flist_head *cgroup_list;
61static char *cgroup_mnt;
62static int exit_value;
63static volatile int fio_abort;
3a5f6bde
JA
64static unsigned int nr_process = 0;
65static unsigned int nr_thread = 0;
2e1df07d 66
6eaf09d6 67struct io_log *agg_io_log[DDIR_RWDIR_CNT];
2e1df07d 68
a3efc919
JA
69int groupid = 0;
70unsigned int thread_number = 0;
108fea77 71unsigned int stat_number = 0;
a3efc919
JA
72int shm_id = 0;
73int temp_stall_ts;
74unsigned long done_secs = 0;
27357187 75volatile int disk_util_exit = 0;
a3efc919 76
2e1df07d 77#define PAGE_ALIGN(buf) \
e43606c2 78 (char *) (((uintptr_t) (buf) + page_mask) & ~page_mask)
2e1df07d
JA
79
80#define JOB_START_TIMEOUT (5 * 1000)
81
82static void sig_int(int sig)
83{
84 if (threads) {
85 if (is_backend)
86 fio_server_got_signal(sig);
87 else {
88 log_info("\nfio: terminating on signal %d\n", sig);
89 fflush(stdout);
90 exit_value = 128;
91 }
92
93 fio_terminate_threads(TERMINATE_ALL);
94 }
95}
96
4c6d91e8
JA
97static void sig_show_status(int sig)
98{
99 show_running_run_stats();
100}
101
2e1df07d
JA
102static void set_sig_handlers(void)
103{
104 struct sigaction act;
105
106 memset(&act, 0, sizeof(act));
107 act.sa_handler = sig_int;
108 act.sa_flags = SA_RESTART;
109 sigaction(SIGINT, &act, NULL);
110
111 memset(&act, 0, sizeof(act));
112 act.sa_handler = sig_int;
113 act.sa_flags = SA_RESTART;
114 sigaction(SIGTERM, &act, NULL);
115
2f694507
BC
116/* Windows uses SIGBREAK as a quit signal from other applications */
117#ifdef WIN32
118 memset(&act, 0, sizeof(act));
119 act.sa_handler = sig_int;
120 act.sa_flags = SA_RESTART;
121 sigaction(SIGBREAK, &act, NULL);
122#endif
123
4c6d91e8
JA
124 memset(&act, 0, sizeof(act));
125 act.sa_handler = sig_show_status;
126 act.sa_flags = SA_RESTART;
127 sigaction(SIGUSR1, &act, NULL);
128
2e1df07d
JA
129 if (is_backend) {
130 memset(&act, 0, sizeof(act));
131 act.sa_handler = sig_int;
132 act.sa_flags = SA_RESTART;
133 sigaction(SIGPIPE, &act, NULL);
134 }
135}
136
137/*
138 * Check if we are above the minimum rate given.
139 */
140static int __check_min_rate(struct thread_data *td, struct timeval *now,
141 enum fio_ddir ddir)
142{
143 unsigned long long bytes = 0;
144 unsigned long iops = 0;
145 unsigned long spent;
146 unsigned long rate;
147 unsigned int ratemin = 0;
148 unsigned int rate_iops = 0;
149 unsigned int rate_iops_min = 0;
150
151 assert(ddir_rw(ddir));
152
153 if (!td->o.ratemin[ddir] && !td->o.rate_iops_min[ddir])
154 return 0;
155
156 /*
157 * allow a 2 second settle period in the beginning
158 */
159 if (mtime_since(&td->start, now) < 2000)
160 return 0;
161
162 iops += td->this_io_blocks[ddir];
163 bytes += td->this_io_bytes[ddir];
164 ratemin += td->o.ratemin[ddir];
165 rate_iops += td->o.rate_iops[ddir];
166 rate_iops_min += td->o.rate_iops_min[ddir];
167
168 /*
169 * if rate blocks is set, sample is running
170 */
171 if (td->rate_bytes[ddir] || td->rate_blocks[ddir]) {
172 spent = mtime_since(&td->lastrate[ddir], now);
173 if (spent < td->o.ratecycle)
174 return 0;
175
176 if (td->o.rate[ddir]) {
177 /*
178 * check bandwidth specified rate
179 */
180 if (bytes < td->rate_bytes[ddir]) {
181 log_err("%s: min rate %u not met\n", td->o.name,
182 ratemin);
183 return 1;
184 } else {
185 rate = ((bytes - td->rate_bytes[ddir]) * 1000) / spent;
186 if (rate < ratemin ||
187 bytes < td->rate_bytes[ddir]) {
188 log_err("%s: min rate %u not met, got"
189 " %luKB/sec\n", td->o.name,
190 ratemin, rate);
191 return 1;
192 }
193 }
194 } else {
195 /*
196 * checks iops specified rate
197 */
198 if (iops < rate_iops) {
199 log_err("%s: min iops rate %u not met\n",
200 td->o.name, rate_iops);
201 return 1;
202 } else {
203 rate = ((iops - td->rate_blocks[ddir]) * 1000) / spent;
204 if (rate < rate_iops_min ||
205 iops < td->rate_blocks[ddir]) {
206 log_err("%s: min iops rate %u not met,"
207 " got %lu\n", td->o.name,
208 rate_iops_min, rate);
209 }
210 }
211 }
212 }
213
214 td->rate_bytes[ddir] = bytes;
215 td->rate_blocks[ddir] = iops;
216 memcpy(&td->lastrate[ddir], now, sizeof(*now));
217 return 0;
218}
219
220static int check_min_rate(struct thread_data *td, struct timeval *now,
100f49f1 221 uint64_t *bytes_done)
2e1df07d
JA
222{
223 int ret = 0;
224
6eaf09d6
SL
225 if (bytes_done[DDIR_READ])
226 ret |= __check_min_rate(td, now, DDIR_READ);
227 if (bytes_done[DDIR_WRITE])
228 ret |= __check_min_rate(td, now, DDIR_WRITE);
229 if (bytes_done[DDIR_TRIM])
230 ret |= __check_min_rate(td, now, DDIR_TRIM);
2e1df07d
JA
231
232 return ret;
233}
234
235/*
236 * When job exits, we can cancel the in-flight IO if we are using async
237 * io. Attempt to do so.
238 */
239static void cleanup_pending_aio(struct thread_data *td)
240{
241 struct flist_head *entry, *n;
242 struct io_u *io_u;
243 int r;
244
245 /*
246 * get immediately available events, if any
247 */
248 r = io_u_queued_complete(td, 0, NULL);
249 if (r < 0)
250 return;
251
252 /*
253 * now cancel remaining active events
254 */
255 if (td->io_ops->cancel) {
256 flist_for_each_safe(entry, n, &td->io_u_busylist) {
257 io_u = flist_entry(entry, struct io_u, list);
258
259 /*
260 * if the io_u isn't in flight, then that generally
261 * means someone leaked an io_u. complain but fix
262 * it up, so we don't stall here.
263 */
264 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
265 log_err("fio: non-busy IO on busy list\n");
266 put_io_u(td, io_u);
267 } else {
268 r = td->io_ops->cancel(td, io_u);
269 if (!r)
270 put_io_u(td, io_u);
271 }
272 }
273 }
274
275 if (td->cur_depth)
276 r = io_u_queued_complete(td, td->cur_depth, NULL);
277}
278
279/*
280 * Helper to handle the final sync of a file. Works just like the normal
281 * io path, just does everything sync.
282 */
283static int fio_io_sync(struct thread_data *td, struct fio_file *f)
284{
285 struct io_u *io_u = __get_io_u(td);
286 int ret;
287
288 if (!io_u)
289 return 1;
290
291 io_u->ddir = DDIR_SYNC;
292 io_u->file = f;
293
294 if (td_io_prep(td, io_u)) {
295 put_io_u(td, io_u);
296 return 1;
297 }
298
299requeue:
300 ret = td_io_queue(td, io_u);
301 if (ret < 0) {
302 td_verror(td, io_u->error, "td_io_queue");
303 put_io_u(td, io_u);
304 return 1;
305 } else if (ret == FIO_Q_QUEUED) {
306 if (io_u_queued_complete(td, 1, NULL) < 0)
307 return 1;
308 } else if (ret == FIO_Q_COMPLETED) {
309 if (io_u->error) {
310 td_verror(td, io_u->error, "td_io_queue");
311 return 1;
312 }
313
314 if (io_u_sync_complete(td, io_u, NULL) < 0)
315 return 1;
316 } else if (ret == FIO_Q_BUSY) {
317 if (td_io_commit(td))
318 return 1;
319 goto requeue;
320 }
321
322 return 0;
323}
a3efc919 324
61ee0f86
JA
325static int fio_file_fsync(struct thread_data *td, struct fio_file *f)
326{
327 int ret;
328
329 if (fio_file_open(f))
330 return fio_io_sync(td, f);
331
332 if (td_io_open_file(td, f))
333 return 1;
334
335 ret = fio_io_sync(td, f);
336 td_io_close_file(td, f);
337 return ret;
338}
339
2e1df07d
JA
340static inline void __update_tv_cache(struct thread_data *td)
341{
342 fio_gettime(&td->tv_cache, NULL);
343}
344
345static inline void update_tv_cache(struct thread_data *td)
346{
347 if ((++td->tv_cache_nr & td->tv_cache_mask) == td->tv_cache_mask)
348 __update_tv_cache(td);
349}
350
351static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
352{
353 if (in_ramp_time(td))
354 return 0;
355 if (!td->o.timeout)
356 return 0;
357 if (mtime_since(&td->epoch, t) >= td->o.timeout * 1000)
358 return 1;
359
360 return 0;
361}
362
363static int break_on_this_error(struct thread_data *td, enum fio_ddir ddir,
364 int *retptr)
365{
366 int ret = *retptr;
367
368 if (ret < 0 || td->error) {
8b28bd41
DM
369 int err = td->error;
370 enum error_type_bit eb;
2e1df07d
JA
371
372 if (ret < 0)
373 err = -ret;
2e1df07d 374
8b28bd41
DM
375 eb = td_error_type(ddir, err);
376 if (!(td->o.continue_on_error & (1 << eb)))
2e1df07d
JA
377 return 1;
378
8b28bd41 379 if (td_non_fatal_error(td, eb, err)) {
2e1df07d
JA
380 /*
381 * Continue with the I/Os in case of
382 * a non fatal error.
383 */
384 update_error_count(td, err);
385 td_clear_error(td);
386 *retptr = 0;
387 return 0;
388 } else if (td->o.fill_device && err == ENOSPC) {
389 /*
390 * We expect to hit this error if
391 * fill_device option is set.
392 */
393 td_clear_error(td);
394 td->terminate = 1;
395 return 1;
396 } else {
397 /*
398 * Stop the I/O in case of a fatal
399 * error.
400 */
401 update_error_count(td, err);
402 return 1;
403 }
404 }
405
406 return 0;
407}
408
c97f1ad6
JA
409static void check_update_rusage(struct thread_data *td)
410{
411 if (td->update_rusage) {
412 td->update_rusage = 0;
413 update_rusage_stat(td);
414 fio_mutex_up(td->rusage_sem);
415 }
416}
417
2e1df07d
JA
418/*
419 * The main verify engine. Runs over the writes we previously submitted,
420 * reads the blocks back in, and checks the crc/md5 of the data.
421 */
100f49f1 422static void do_verify(struct thread_data *td, uint64_t verify_bytes)
2e1df07d 423{
100f49f1 424 uint64_t bytes_done[DDIR_RWDIR_CNT] = { 0, 0, 0 };
2e1df07d
JA
425 struct fio_file *f;
426 struct io_u *io_u;
427 int ret, min_events;
428 unsigned int i;
429
430 dprint(FD_VERIFY, "starting loop\n");
431
432 /*
433 * sync io first and invalidate cache, to make sure we really
434 * read from disk.
435 */
436 for_each_file(td, f, i) {
437 if (!fio_file_open(f))
438 continue;
439 if (fio_io_sync(td, f))
440 break;
441 if (file_invalidate_cache(td, f))
442 break;
443 }
444
c97f1ad6
JA
445 check_update_rusage(td);
446
2e1df07d
JA
447 if (td->error)
448 return;
449
450 td_set_runstate(td, TD_VERIFYING);
451
452 io_u = NULL;
453 while (!td->terminate) {
fbccf46c 454 enum fio_ddir ddir;
2e1df07d
JA
455 int ret2, full;
456
457 update_tv_cache(td);
c97f1ad6 458 check_update_rusage(td);
2e1df07d
JA
459
460 if (runtime_exceeded(td, &td->tv_cache)) {
461 __update_tv_cache(td);
462 if (runtime_exceeded(td, &td->tv_cache)) {
463 td->terminate = 1;
464 break;
465 }
466 }
467
9e684a49
DE
468 if (flow_threshold_exceeded(td))
469 continue;
470
44cbc6da
JA
471 if (!td->o.experimental_verify) {
472 io_u = __get_io_u(td);
473 if (!io_u)
474 break;
2e1df07d 475
44cbc6da
JA
476 if (get_next_verify(td, io_u)) {
477 put_io_u(td, io_u);
478 break;
479 }
2e1df07d 480
44cbc6da
JA
481 if (td_io_prep(td, io_u)) {
482 put_io_u(td, io_u);
483 break;
484 }
485 } else {
100f49f1
JA
486 if (ddir_rw_sum(bytes_done) + td->o.rw_min_bs > verify_bytes)
487 break;
488
bcd5abfa
JA
489 while ((io_u = get_io_u(td)) != NULL) {
490 /*
491 * We are only interested in the places where
492 * we wrote or trimmed IOs. Turn those into
493 * reads for verification purposes.
494 */
495 if (io_u->ddir == DDIR_READ) {
496 /*
497 * Pretend we issued it for rwmix
498 * accounting
499 */
500 td->io_issues[DDIR_READ]++;
501 put_io_u(td, io_u);
502 continue;
503 } else if (io_u->ddir == DDIR_TRIM) {
504 io_u->ddir = DDIR_READ;
505 io_u->flags |= IO_U_F_TRIMMED;
506 break;
507 } else if (io_u->ddir == DDIR_WRITE) {
508 io_u->ddir = DDIR_READ;
509 break;
510 } else {
511 put_io_u(td, io_u);
512 continue;
513 }
514 }
44cbc6da 515
bcd5abfa 516 if (!io_u)
44cbc6da 517 break;
2e1df07d
JA
518 }
519
520 if (td->o.verify_async)
521 io_u->end_io = verify_io_u_async;
522 else
523 io_u->end_io = verify_io_u;
524
fbccf46c
JA
525 ddir = io_u->ddir;
526
2e1df07d
JA
527 ret = td_io_queue(td, io_u);
528 switch (ret) {
529 case FIO_Q_COMPLETED:
530 if (io_u->error) {
531 ret = -io_u->error;
532 clear_io_u(td, io_u);
533 } else if (io_u->resid) {
534 int bytes = io_u->xfer_buflen - io_u->resid;
535
536 /*
537 * zero read, fail
538 */
539 if (!bytes) {
540 td_verror(td, EIO, "full resid");
541 put_io_u(td, io_u);
542 break;
543 }
544
545 io_u->xfer_buflen = io_u->resid;
546 io_u->xfer_buf += bytes;
547 io_u->offset += bytes;
548
549 if (ddir_rw(io_u->ddir))
550 td->ts.short_io_u[io_u->ddir]++;
551
552 f = io_u->file;
553 if (io_u->offset == f->real_file_size)
554 goto sync_done;
555
556 requeue_io_u(td, &io_u);
557 } else {
558sync_done:
100f49f1 559 ret = io_u_sync_complete(td, io_u, bytes_done);
2e1df07d
JA
560 if (ret < 0)
561 break;
562 }
563 continue;
564 case FIO_Q_QUEUED:
565 break;
566 case FIO_Q_BUSY:
567 requeue_io_u(td, &io_u);
568 ret2 = td_io_commit(td);
569 if (ret2 < 0)
570 ret = ret2;
571 break;
572 default:
573 assert(ret < 0);
574 td_verror(td, -ret, "td_io_queue");
575 break;
576 }
577
fbccf46c 578 if (break_on_this_error(td, ddir, &ret))
2e1df07d
JA
579 break;
580
581 /*
582 * if we can queue more, do so. but check if there are
583 * completed io_u's first. Note that we can get BUSY even
584 * without IO queued, if the system is resource starved.
585 */
586 full = queue_full(td) || (ret == FIO_Q_BUSY && td->cur_depth);
587 if (full || !td->o.iodepth_batch_complete) {
588 min_events = min(td->o.iodepth_batch_complete,
589 td->cur_depth);
8a74b56d
JA
590 /*
591 * if the queue is full, we MUST reap at least 1 event
592 */
593 if (full && !min_events)
2e1df07d
JA
594 min_events = 1;
595
596 do {
597 /*
598 * Reap required number of io units, if any,
599 * and do the verification on them through
600 * the callback handler
601 */
100f49f1 602 if (io_u_queued_complete(td, min_events, bytes_done) < 0) {
2e1df07d
JA
603 ret = -1;
604 break;
605 }
606 } while (full && (td->cur_depth > td->o.iodepth_low));
607 }
608 if (ret < 0)
609 break;
610 }
611
c97f1ad6
JA
612 check_update_rusage(td);
613
2e1df07d
JA
614 if (!td->error) {
615 min_events = td->cur_depth;
616
617 if (min_events)
618 ret = io_u_queued_complete(td, min_events, NULL);
619 } else
620 cleanup_pending_aio(td);
621
622 td_set_runstate(td, TD_RUNNING);
623
624 dprint(FD_VERIFY, "exiting loop\n");
625}
626
f7078f7b
JA
627static int io_bytes_exceeded(struct thread_data *td)
628{
629 unsigned long long bytes;
630
631 if (td_rw(td))
6eaf09d6 632 bytes = td->this_io_bytes[DDIR_READ] + td->this_io_bytes[DDIR_WRITE];
f7078f7b 633 else if (td_write(td))
6eaf09d6
SL
634 bytes = td->this_io_bytes[DDIR_WRITE];
635 else if (td_read(td))
636 bytes = td->this_io_bytes[DDIR_READ];
f7078f7b 637 else
6eaf09d6 638 bytes = td->this_io_bytes[DDIR_TRIM];
f7078f7b
JA
639
640 return bytes >= td->o.size;
641}
642
2e1df07d
JA
643/*
644 * Main IO worker function. It retrieves io_u's to process and queues
645 * and reaps them, checking for rate and errors along the way.
100f49f1
JA
646 *
647 * Returns number of bytes written and trimmed.
2e1df07d 648 */
100f49f1 649static uint64_t do_io(struct thread_data *td)
2e1df07d 650{
100f49f1 651 uint64_t bytes_done[DDIR_RWDIR_CNT] = { 0, 0, 0 };
2e1df07d
JA
652 unsigned int i;
653 int ret = 0;
654
655 if (in_ramp_time(td))
656 td_set_runstate(td, TD_RAMP);
657 else
658 td_set_runstate(td, TD_RUNNING);
659
f7078f7b 660 while ((td->o.read_iolog_file && !flist_empty(&td->io_log_list)) ||
c04e4661
DE
661 (!flist_empty(&td->trim_list)) || !io_bytes_exceeded(td) ||
662 td->o.time_based) {
2e1df07d 663 struct timeval comp_time;
2e1df07d
JA
664 int min_evts = 0;
665 struct io_u *io_u;
666 int ret2, full;
667 enum fio_ddir ddir;
668
c97f1ad6
JA
669 check_update_rusage(td);
670
7d7803fa 671 if (td->terminate || td->done)
2e1df07d
JA
672 break;
673
674 update_tv_cache(td);
675
676 if (runtime_exceeded(td, &td->tv_cache)) {
677 __update_tv_cache(td);
678 if (runtime_exceeded(td, &td->tv_cache)) {
679 td->terminate = 1;
680 break;
681 }
682 }
683
9e684a49
DE
684 if (flow_threshold_exceeded(td))
685 continue;
686
2e1df07d
JA
687 io_u = get_io_u(td);
688 if (!io_u)
689 break;
690
691 ddir = io_u->ddir;
692
693 /*
82af2a7c
JA
694 * Add verification end_io handler if:
695 * - Asked to verify (!td_rw(td))
696 * - Or the io_u is from our verify list (mixed write/ver)
2e1df07d
JA
697 */
698 if (td->o.verify != VERIFY_NONE && io_u->ddir == DDIR_READ &&
82af2a7c 699 ((io_u->flags & IO_U_F_VER_LIST) || !td_rw(td))) {
2e1df07d
JA
700 if (td->o.verify_async)
701 io_u->end_io = verify_io_u_async;
702 else
703 io_u->end_io = verify_io_u;
704 td_set_runstate(td, TD_VERIFYING);
705 } else if (in_ramp_time(td))
706 td_set_runstate(td, TD_RAMP);
707 else
708 td_set_runstate(td, TD_RUNNING);
709
710 ret = td_io_queue(td, io_u);
711 switch (ret) {
712 case FIO_Q_COMPLETED:
713 if (io_u->error) {
714 ret = -io_u->error;
715 clear_io_u(td, io_u);
716 } else if (io_u->resid) {
717 int bytes = io_u->xfer_buflen - io_u->resid;
718 struct fio_file *f = io_u->file;
719
720 /*
721 * zero read, fail
722 */
723 if (!bytes) {
724 td_verror(td, EIO, "full resid");
725 put_io_u(td, io_u);
726 break;
727 }
728
729 io_u->xfer_buflen = io_u->resid;
730 io_u->xfer_buf += bytes;
731 io_u->offset += bytes;
732
733 if (ddir_rw(io_u->ddir))
734 td->ts.short_io_u[io_u->ddir]++;
735
736 if (io_u->offset == f->real_file_size)
737 goto sync_done;
738
739 requeue_io_u(td, &io_u);
740 } else {
741sync_done:
6eaf09d6
SL
742 if (__should_check_rate(td, DDIR_READ) ||
743 __should_check_rate(td, DDIR_WRITE) ||
744 __should_check_rate(td, DDIR_TRIM))
2e1df07d
JA
745 fio_gettime(&comp_time, NULL);
746
747 ret = io_u_sync_complete(td, io_u, bytes_done);
748 if (ret < 0)
749 break;
750 }
751 break;
752 case FIO_Q_QUEUED:
753 /*
754 * if the engine doesn't have a commit hook,
755 * the io_u is really queued. if it does have such
756 * a hook, it has to call io_u_queued() itself.
757 */
758 if (td->io_ops->commit == NULL)
759 io_u_queued(td, io_u);
760 break;
761 case FIO_Q_BUSY:
762 requeue_io_u(td, &io_u);
763 ret2 = td_io_commit(td);
764 if (ret2 < 0)
765 ret = ret2;
766 break;
767 default:
768 assert(ret < 0);
769 put_io_u(td, io_u);
770 break;
771 }
772
773 if (break_on_this_error(td, ddir, &ret))
774 break;
775
776 /*
777 * See if we need to complete some commands. Note that we
778 * can get BUSY even without IO queued, if the system is
779 * resource starved.
780 */
781 full = queue_full(td) || (ret == FIO_Q_BUSY && td->cur_depth);
782 if (full || !td->o.iodepth_batch_complete) {
783 min_evts = min(td->o.iodepth_batch_complete,
784 td->cur_depth);
8a74b56d
JA
785 /*
786 * if the queue is full, we MUST reap at least 1 event
787 */
788 if (full && !min_evts)
2e1df07d
JA
789 min_evts = 1;
790
6eaf09d6
SL
791 if (__should_check_rate(td, DDIR_READ) ||
792 __should_check_rate(td, DDIR_WRITE) ||
793 __should_check_rate(td, DDIR_TRIM))
2e1df07d
JA
794 fio_gettime(&comp_time, NULL);
795
796 do {
797 ret = io_u_queued_complete(td, min_evts, bytes_done);
798 if (ret < 0)
799 break;
800
801 } while (full && (td->cur_depth > td->o.iodepth_low));
802 }
803
804 if (ret < 0)
805 break;
d5abee06 806 if (!ddir_rw_sum(bytes_done) && !(td->io_ops->flags & FIO_NOIO))
2e1df07d
JA
807 continue;
808
809 if (!in_ramp_time(td) && should_check_rate(td, bytes_done)) {
810 if (check_min_rate(td, &comp_time, bytes_done)) {
811 if (exitall_on_terminate)
812 fio_terminate_threads(td->groupid);
813 td_verror(td, EIO, "check_min_rate");
814 break;
815 }
816 }
817
818 if (td->o.thinktime) {
819 unsigned long long b;
820
342f4be4 821 b = ddir_rw_sum(td->io_blocks);
2e1df07d
JA
822 if (!(b % td->o.thinktime_blocks)) {
823 int left;
824
002e7183
JA
825 io_u_quiesce(td);
826
2e1df07d
JA
827 if (td->o.thinktime_spin)
828 usec_spin(td->o.thinktime_spin);
829
830 left = td->o.thinktime - td->o.thinktime_spin;
831 if (left)
832 usec_sleep(td, left);
833 }
834 }
835 }
836
c97f1ad6
JA
837 check_update_rusage(td);
838
2e1df07d 839 if (td->trim_entries)
4e0a8fa2 840 log_err("fio: %lu trim entries leaked?\n", td->trim_entries);
2e1df07d
JA
841
842 if (td->o.fill_device && td->error == ENOSPC) {
843 td->error = 0;
844 td->terminate = 1;
845 }
846 if (!td->error) {
847 struct fio_file *f;
848
849 i = td->cur_depth;
850 if (i) {
5bd5f71a 851 ret = io_u_queued_complete(td, i, bytes_done);
2e1df07d
JA
852 if (td->o.fill_device && td->error == ENOSPC)
853 td->error = 0;
854 }
855
856 if (should_fsync(td) && td->o.end_fsync) {
857 td_set_runstate(td, TD_FSYNCING);
858
859 for_each_file(td, f, i) {
61ee0f86 860 if (!fio_file_fsync(td, f))
2e1df07d 861 continue;
61ee0f86
JA
862
863 log_err("fio: end_fsync failed for file %s\n",
864 f->file_name);
2e1df07d
JA
865 }
866 }
867 } else
868 cleanup_pending_aio(td);
869
870 /*
871 * stop job if we failed doing any IO
872 */
342f4be4 873 if (!ddir_rw_sum(td->this_io_bytes))
2e1df07d 874 td->done = 1;
100f49f1
JA
875
876 return bytes_done[DDIR_WRITE] + bytes_done[DDIR_TRIM];
2e1df07d
JA
877}
878
879static void cleanup_io_u(struct thread_data *td)
880{
881 struct flist_head *entry, *n;
882 struct io_u *io_u;
883
884 flist_for_each_safe(entry, n, &td->io_u_freelist) {
885 io_u = flist_entry(entry, struct io_u, list);
886
887 flist_del(&io_u->list);
c73ed246
JA
888
889 if (td->io_ops->io_u_free)
890 td->io_ops->io_u_free(td, io_u);
891
2e1df07d
JA
892 fio_memfree(io_u, sizeof(*io_u));
893 }
894
895 free_io_mem(td);
896}
897
898static int init_io_u(struct thread_data *td)
899{
900 struct io_u *io_u;
9c42684e 901 unsigned int max_bs, min_write;
2e1df07d 902 int cl_align, i, max_units;
59d8d0f5 903 int data_xfer = 1;
2e1df07d
JA
904 char *p;
905
906 max_units = td->o.iodepth;
74f4b020 907 max_bs = td_max_bs(td);
9c42684e 908 min_write = td->o.min_bs[DDIR_WRITE];
2e1df07d
JA
909 td->orig_buffer_size = (unsigned long long) max_bs
910 * (unsigned long long) max_units;
911
88045e04 912 if ((td->io_ops->flags & FIO_NOIO) || !(td_read(td) || td_write(td)))
59d8d0f5
JA
913 data_xfer = 0;
914
fd8a09b8 915 /*
916 * if we may later need to do address alignment, then add any
917 * possible adjustment here so that we don't cause a buffer
918 * overflow later. this adjustment may be too much if we get
919 * lucky and the allocator gives us an aligned address.
920 */
921 if (td->o.odirect || td->o.mem_align || (td->io_ops->flags & FIO_RAWIO))
922 td->orig_buffer_size += page_mask + td->o.mem_align;
923
2e1df07d
JA
924 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE) {
925 unsigned long bs;
926
927 bs = td->orig_buffer_size + td->o.hugepage_size - 1;
928 td->orig_buffer_size = bs & ~(td->o.hugepage_size - 1);
929 }
930
931 if (td->orig_buffer_size != (size_t) td->orig_buffer_size) {
932 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
933 return 1;
934 }
935
59d8d0f5 936 if (data_xfer && allocate_io_mem(td))
2e1df07d
JA
937 return 1;
938
939 if (td->o.odirect || td->o.mem_align ||
940 (td->io_ops->flags & FIO_RAWIO))
941 p = PAGE_ALIGN(td->orig_buffer) + td->o.mem_align;
942 else
943 p = td->orig_buffer;
944
945 cl_align = os_cache_line_size();
946
947 for (i = 0; i < max_units; i++) {
948 void *ptr;
949
950 if (td->terminate)
951 return 1;
952
953 ptr = fio_memalign(cl_align, sizeof(*io_u));
954 if (!ptr) {
955 log_err("fio: unable to allocate aligned memory\n");
956 break;
957 }
958
959 io_u = ptr;
960 memset(io_u, 0, sizeof(*io_u));
961 INIT_FLIST_HEAD(&io_u->list);
962 dprint(FD_MEM, "io_u alloc %p, index %u\n", io_u, i);
963
59d8d0f5 964 if (data_xfer) {
2e1df07d
JA
965 io_u->buf = p;
966 dprint(FD_MEM, "io_u %p, mem %p\n", io_u, io_u->buf);
967
968 if (td_write(td))
9c42684e 969 io_u_fill_buffer(td, io_u, min_write, max_bs);
2e1df07d
JA
970 if (td_write(td) && td->o.verify_pattern_bytes) {
971 /*
972 * Fill the buffer with the pattern if we are
973 * going to be doing writes.
974 */
975 fill_pattern(td, io_u->buf, max_bs, io_u, 0, 0);
976 }
977 }
978
979 io_u->index = i;
980 io_u->flags = IO_U_F_FREE;
981 flist_add(&io_u->list, &td->io_u_freelist);
c73ed246
JA
982
983 if (td->io_ops->io_u_init) {
984 int ret = td->io_ops->io_u_init(td, io_u);
985
986 if (ret) {
987 log_err("fio: failed to init engine data: %d\n", ret);
988 return 1;
989 }
990 }
991
2e1df07d
JA
992 p += max_bs;
993 }
994
995 return 0;
996}
997
998static int switch_ioscheduler(struct thread_data *td)
999{
1000 char tmp[256], tmp2[128];
1001 FILE *f;
1002 int ret;
1003
1004 if (td->io_ops->flags & FIO_DISKLESSIO)
1005 return 0;
1006
1007 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
1008
1009 f = fopen(tmp, "r+");
1010 if (!f) {
1011 if (errno == ENOENT) {
1012 log_err("fio: os or kernel doesn't support IO scheduler"
1013 " switching\n");
1014 return 0;
1015 }
1016 td_verror(td, errno, "fopen iosched");
1017 return 1;
1018 }
1019
1020 /*
1021 * Set io scheduler.
1022 */
1023 ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
1024 if (ferror(f) || ret != 1) {
1025 td_verror(td, errno, "fwrite");
1026 fclose(f);
1027 return 1;
1028 }
1029
1030 rewind(f);
1031
1032 /*
1033 * Read back and check that the selected scheduler is now the default.
1034 */
1035 ret = fread(tmp, 1, sizeof(tmp), f);
1036 if (ferror(f) || ret < 0) {
1037 td_verror(td, errno, "fread");
1038 fclose(f);
1039 return 1;
1040 }
1041
1042 sprintf(tmp2, "[%s]", td->o.ioscheduler);
1043 if (!strstr(tmp, tmp2)) {
1044 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
1045 td_verror(td, EINVAL, "iosched_switch");
1046 fclose(f);
1047 return 1;
1048 }
1049
1050 fclose(f);
1051 return 0;
1052}
1053
1054static int keep_running(struct thread_data *td)
1055{
2e1df07d
JA
1056 if (td->done)
1057 return 0;
1058 if (td->o.time_based)
1059 return 1;
1060 if (td->o.loops) {
1061 td->o.loops--;
1062 return 1;
1063 }
1064
ee98e234 1065 if (td->o.size != -1ULL && ddir_rw_sum(td->io_bytes) < td->o.size) {
5bd5f71a
JA
1066 uint64_t diff;
1067
1068 /*
1069 * If the difference is less than the minimum IO size, we
1070 * are done.
1071 */
1072 diff = td->o.size - ddir_rw_sum(td->io_bytes);
74f4b020 1073 if (diff < td_max_bs(td))
5bd5f71a
JA
1074 return 0;
1075
2e1df07d 1076 return 1;
5bd5f71a 1077 }
2e1df07d
JA
1078
1079 return 0;
1080}
1081
1082static int exec_string(const char *string)
1083{
1084 int ret, newlen = strlen(string) + 1 + 8;
1085 char *str;
1086
1087 str = malloc(newlen);
1088 sprintf(str, "sh -c %s", string);
1089
1090 ret = system(str);
1091 if (ret == -1)
1092 log_err("fio: exec of cmd <%s> failed\n", str);
1093
1094 free(str);
1095 return ret;
1096}
1097
1098/*
1099 * Entry point for the thread based jobs. The process based jobs end up
1100 * here as well, after a little setup.
1101 */
1102static void *thread_main(void *data)
1103{
1104 unsigned long long elapsed;
1105 struct thread_data *td = data;
4896473e 1106 struct thread_options *o = &td->o;
2e1df07d
JA
1107 pthread_condattr_t attr;
1108 int clear_state;
28727df7 1109 int ret;
2e1df07d 1110
4896473e 1111 if (!o->use_thread) {
2e1df07d
JA
1112 setsid();
1113 td->pid = getpid();
1114 } else
1115 td->pid = gettid();
1116
4896473e 1117 fio_local_clock_init(o->use_thread);
5d879392 1118
2e1df07d
JA
1119 dprint(FD_PROCESS, "jobs pid=%d started\n", (int) td->pid);
1120
122c7725
JA
1121 if (is_backend)
1122 fio_server_send_start(td);
1123
2e1df07d
JA
1124 INIT_FLIST_HEAD(&td->io_u_freelist);
1125 INIT_FLIST_HEAD(&td->io_u_busylist);
1126 INIT_FLIST_HEAD(&td->io_u_requeues);
1127 INIT_FLIST_HEAD(&td->io_log_list);
1128 INIT_FLIST_HEAD(&td->io_hist_list);
1129 INIT_FLIST_HEAD(&td->verify_list);
1130 INIT_FLIST_HEAD(&td->trim_list);
1ae83d45 1131 INIT_FLIST_HEAD(&td->next_rand_list);
2e1df07d
JA
1132 pthread_mutex_init(&td->io_u_lock, NULL);
1133 td->io_hist_tree = RB_ROOT;
1134
1135 pthread_condattr_init(&attr);
1136 pthread_cond_init(&td->verify_cond, &attr);
1137 pthread_cond_init(&td->free_cond, &attr);
1138
1139 td_set_runstate(td, TD_INITIALIZED);
1140 dprint(FD_MUTEX, "up startup_mutex\n");
1141 fio_mutex_up(startup_mutex);
1142 dprint(FD_MUTEX, "wait on td->mutex\n");
1143 fio_mutex_down(td->mutex);
1144 dprint(FD_MUTEX, "done waiting on td->mutex\n");
1145
1146 /*
1147 * the ->mutex mutex is now no longer used, close it to avoid
1148 * eating a file descriptor
1149 */
1150 fio_mutex_remove(td->mutex);
812409e9 1151 td->mutex = NULL;
2e1df07d
JA
1152
1153 /*
1154 * A new gid requires privilege, so we need to do this before setting
1155 * the uid.
1156 */
4896473e 1157 if (o->gid != -1U && setgid(o->gid)) {
2e1df07d
JA
1158 td_verror(td, errno, "setgid");
1159 goto err;
1160 }
4896473e 1161 if (o->uid != -1U && setuid(o->uid)) {
2e1df07d
JA
1162 td_verror(td, errno, "setuid");
1163 goto err;
1164 }
1165
1166 /*
1167 * If we have a gettimeofday() thread, make sure we exclude that
1168 * thread from this job
1169 */
4896473e
JA
1170 if (o->gtod_cpu)
1171 fio_cpu_clear(&o->cpumask, o->gtod_cpu);
2e1df07d
JA
1172
1173 /*
1174 * Set affinity first, in case it has an impact on the memory
1175 * allocations.
1176 */
4896473e 1177 if (o->cpumask_set) {
28727df7
JA
1178 ret = fio_setaffinity(td->pid, o->cpumask);
1179 if (ret == -1) {
4896473e
JA
1180 td_verror(td, errno, "cpu_set_affinity");
1181 goto err;
1182 }
2e1df07d
JA
1183 }
1184
67bf9823 1185#ifdef CONFIG_LIBNUMA
d0b937ed 1186 /* numa node setup */
4896473e 1187 if (o->numa_cpumask_set || o->numa_memmask_set) {
d0b937ed
YR
1188 int ret;
1189
1190 if (numa_available() < 0) {
1191 td_verror(td, errno, "Does not support NUMA API\n");
1192 goto err;
1193 }
1194
4896473e
JA
1195 if (o->numa_cpumask_set) {
1196 ret = numa_run_on_node_mask(o->numa_cpunodesmask);
d0b937ed
YR
1197 if (ret == -1) {
1198 td_verror(td, errno, \
1199 "numa_run_on_node_mask failed\n");
1200 goto err;
1201 }
1202 }
1203
4896473e 1204 if (o->numa_memmask_set) {
d0b937ed 1205
4896473e 1206 switch (o->numa_mem_mode) {
d0b937ed 1207 case MPOL_INTERLEAVE:
4896473e 1208 numa_set_interleave_mask(o->numa_memnodesmask);
d0b937ed
YR
1209 break;
1210 case MPOL_BIND:
4896473e 1211 numa_set_membind(o->numa_memnodesmask);
d0b937ed
YR
1212 break;
1213 case MPOL_LOCAL:
1214 numa_set_localalloc();
1215 break;
1216 case MPOL_PREFERRED:
4896473e 1217 numa_set_preferred(o->numa_mem_prefer_node);
d0b937ed
YR
1218 break;
1219 case MPOL_DEFAULT:
1220 default:
1221 break;
1222 }
1223
1224 }
1225 }
1226#endif
1227
9a3f1100
JA
1228 if (fio_pin_memory(td))
1229 goto err;
1230
2e1df07d
JA
1231 /*
1232 * May alter parameters that init_io_u() will use, so we need to
1233 * do this first.
1234 */
1235 if (init_iolog(td))
1236 goto err;
1237
1238 if (init_io_u(td))
1239 goto err;
1240
4896473e 1241 if (o->verify_async && verify_async_init(td))
2e1df07d
JA
1242 goto err;
1243
28727df7
JA
1244 if (o->ioprio) {
1245 ret = ioprio_set(IOPRIO_WHO_PROCESS, 0, o->ioprio_class, o->ioprio);
1246 if (ret == -1) {
2e1df07d
JA
1247 td_verror(td, errno, "ioprio_set");
1248 goto err;
1249 }
1250 }
1251
4896473e 1252 if (o->cgroup && cgroup_setup(td, cgroup_list, &cgroup_mnt))
2e1df07d
JA
1253 goto err;
1254
649c10c5 1255 errno = 0;
4896473e 1256 if (nice(o->nice) == -1 && errno != 0) {
2e1df07d
JA
1257 td_verror(td, errno, "nice");
1258 goto err;
1259 }
1260
4896473e 1261 if (o->ioscheduler && switch_ioscheduler(td))
2e1df07d
JA
1262 goto err;
1263
4896473e 1264 if (!o->create_serialize && setup_files(td))
2e1df07d
JA
1265 goto err;
1266
1267 if (td_io_init(td))
1268 goto err;
1269
1270 if (init_random_map(td))
1271 goto err;
1272
4896473e
JA
1273 if (o->exec_prerun && exec_string(o->exec_prerun))
1274 goto err;
2e1df07d 1275
4896473e 1276 if (o->pre_read) {
2e1df07d
JA
1277 if (pre_read_files(td) < 0)
1278 goto err;
1279 }
1280
dc5bfbb2
JA
1281 fio_verify_init(td);
1282
2e1df07d 1283 fio_gettime(&td->epoch, NULL);
44404c5a 1284 fio_getrusage(&td->ru_start);
2e1df07d
JA
1285 clear_state = 0;
1286 while (keep_running(td)) {
100f49f1
JA
1287 uint64_t verify_bytes;
1288
2e1df07d
JA
1289 fio_gettime(&td->start, NULL);
1290 memcpy(&td->bw_sample_time, &td->start, sizeof(td->start));
1291 memcpy(&td->iops_sample_time, &td->start, sizeof(td->start));
1292 memcpy(&td->tv_cache, &td->start, sizeof(td->start));
1293
4896473e
JA
1294 if (o->ratemin[DDIR_READ] || o->ratemin[DDIR_WRITE] ||
1295 o->ratemin[DDIR_TRIM]) {
6eaf09d6 1296 memcpy(&td->lastrate[DDIR_READ], &td->bw_sample_time,
2e1df07d 1297 sizeof(td->bw_sample_time));
6eaf09d6
SL
1298 memcpy(&td->lastrate[DDIR_WRITE], &td->bw_sample_time,
1299 sizeof(td->bw_sample_time));
1300 memcpy(&td->lastrate[DDIR_TRIM], &td->bw_sample_time,
2e1df07d
JA
1301 sizeof(td->bw_sample_time));
1302 }
1303
1304 if (clear_state)
1305 clear_io_state(td);
1306
1307 prune_io_piece_log(td);
1308
100f49f1 1309 verify_bytes = do_io(td);
2e1df07d
JA
1310
1311 clear_state = 1;
1312
1313 if (td_read(td) && td->io_bytes[DDIR_READ]) {
1314 elapsed = utime_since_now(&td->start);
1315 td->ts.runtime[DDIR_READ] += elapsed;
1316 }
1317 if (td_write(td) && td->io_bytes[DDIR_WRITE]) {
1318 elapsed = utime_since_now(&td->start);
1319 td->ts.runtime[DDIR_WRITE] += elapsed;
1320 }
6eaf09d6
SL
1321 if (td_trim(td) && td->io_bytes[DDIR_TRIM]) {
1322 elapsed = utime_since_now(&td->start);
1323 td->ts.runtime[DDIR_TRIM] += elapsed;
1324 }
2e1df07d
JA
1325
1326 if (td->error || td->terminate)
1327 break;
1328
4896473e
JA
1329 if (!o->do_verify ||
1330 o->verify == VERIFY_NONE ||
2e1df07d
JA
1331 (td->io_ops->flags & FIO_UNIDIR))
1332 continue;
1333
1334 clear_io_state(td);
1335
1336 fio_gettime(&td->start, NULL);
1337
100f49f1 1338 do_verify(td, verify_bytes);
2e1df07d
JA
1339
1340 td->ts.runtime[DDIR_READ] += utime_since_now(&td->start);
1341
1342 if (td->error || td->terminate)
1343 break;
1344 }
1345
1346 update_rusage_stat(td);
6eaf09d6
SL
1347 td->ts.runtime[DDIR_READ] = (td->ts.runtime[DDIR_READ] + 999) / 1000;
1348 td->ts.runtime[DDIR_WRITE] = (td->ts.runtime[DDIR_WRITE] + 999) / 1000;
1349 td->ts.runtime[DDIR_TRIM] = (td->ts.runtime[DDIR_TRIM] + 999) / 1000;
2e1df07d 1350 td->ts.total_run_time = mtime_since_now(&td->epoch);
6eaf09d6
SL
1351 td->ts.io_bytes[DDIR_READ] = td->io_bytes[DDIR_READ];
1352 td->ts.io_bytes[DDIR_WRITE] = td->io_bytes[DDIR_WRITE];
1353 td->ts.io_bytes[DDIR_TRIM] = td->io_bytes[DDIR_TRIM];
2e1df07d 1354
9a3f1100
JA
1355 fio_unpin_memory(td);
1356
2e1df07d
JA
1357 fio_mutex_down(writeout_mutex);
1358 if (td->bw_log) {
4896473e 1359 if (o->bw_log_file) {
2e1df07d 1360 finish_log_named(td, td->bw_log,
4896473e 1361 o->bw_log_file, "bw");
2e1df07d
JA
1362 } else
1363 finish_log(td, td->bw_log, "bw");
1364 }
1365 if (td->lat_log) {
4896473e 1366 if (o->lat_log_file) {
2e1df07d 1367 finish_log_named(td, td->lat_log,
4896473e 1368 o->lat_log_file, "lat");
2e1df07d
JA
1369 } else
1370 finish_log(td, td->lat_log, "lat");
1371 }
1372 if (td->slat_log) {
4896473e 1373 if (o->lat_log_file) {
2e1df07d 1374 finish_log_named(td, td->slat_log,
4896473e 1375 o->lat_log_file, "slat");
2e1df07d
JA
1376 } else
1377 finish_log(td, td->slat_log, "slat");
1378 }
1379 if (td->clat_log) {
4896473e 1380 if (o->lat_log_file) {
2e1df07d 1381 finish_log_named(td, td->clat_log,
4896473e 1382 o->lat_log_file, "clat");
2e1df07d
JA
1383 } else
1384 finish_log(td, td->clat_log, "clat");
1385 }
1386 if (td->iops_log) {
4896473e 1387 if (o->iops_log_file) {
2e1df07d 1388 finish_log_named(td, td->iops_log,
4896473e 1389 o->iops_log_file, "iops");
2e1df07d
JA
1390 } else
1391 finish_log(td, td->iops_log, "iops");
1392 }
1393
1394 fio_mutex_up(writeout_mutex);
4896473e
JA
1395 if (o->exec_postrun)
1396 exec_string(o->exec_postrun);
2e1df07d
JA
1397
1398 if (exitall_on_terminate)
1399 fio_terminate_threads(td->groupid);
1400
1401err:
1402 if (td->error)
1403 log_info("fio: pid=%d, err=%d/%s\n", (int) td->pid, td->error,
1404 td->verror);
1405
4896473e 1406 if (o->verify_async)
2e1df07d
JA
1407 verify_async_exit(td);
1408
1409 close_and_free_files(td);
2e1df07d 1410 cleanup_io_u(td);
32dbca2c 1411 close_ioengine(td);
2e1df07d
JA
1412 cgroup_shutdown(td, &cgroup_mnt);
1413
4896473e
JA
1414 if (o->cpumask_set) {
1415 int ret = fio_cpuset_exit(&o->cpumask);
2e1df07d
JA
1416
1417 td_verror(td, ret, "fio_cpuset_exit");
1418 }
1419
1420 /*
1421 * do this very late, it will log file closing as well
1422 */
4896473e 1423 if (o->write_iolog_file)
2e1df07d
JA
1424 write_iolog_close(td);
1425
c97f1ad6
JA
1426 fio_mutex_remove(td->rusage_sem);
1427 td->rusage_sem = NULL;
1428
2e1df07d 1429 td_set_runstate(td, TD_EXITED);
e43606c2 1430 return (void *) (uintptr_t) td->error;
2e1df07d
JA
1431}
1432
1433
1434/*
1435 * We cannot pass the td data into a forked process, so attach the td and
1436 * pass it to the thread worker.
1437 */
1438static int fork_main(int shmid, int offset)
1439{
1440 struct thread_data *td;
1441 void *data, *ret;
1442
1443#ifndef __hpux
1444 data = shmat(shmid, NULL, 0);
1445 if (data == (void *) -1) {
1446 int __err = errno;
1447
1448 perror("shmat");
1449 return __err;
1450 }
1451#else
1452 /*
1453 * HP-UX inherits shm mappings?
1454 */
1455 data = threads;
1456#endif
1457
1458 td = data + offset * sizeof(struct thread_data);
1459 ret = thread_main(td);
1460 shmdt(data);
e43606c2 1461 return (int) (uintptr_t) ret;
2e1df07d
JA
1462}
1463
1464/*
1465 * Run over the job map and reap the threads that have exited, if any.
1466 */
1467static void reap_threads(unsigned int *nr_running, unsigned int *t_rate,
1468 unsigned int *m_rate)
1469{
1470 struct thread_data *td;
1471 unsigned int cputhreads, realthreads, pending;
1472 int i, status, ret;
1473
1474 /*
1475 * reap exited threads (TD_EXITED -> TD_REAPED)
1476 */
1477 realthreads = pending = cputhreads = 0;
1478 for_each_td(td, i) {
1479 int flags = 0;
1480
1481 /*
1482 * ->io_ops is NULL for a thread that has closed its
1483 * io engine
1484 */
1485 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
1486 cputhreads++;
1487 else
1488 realthreads++;
1489
1490 if (!td->pid) {
1491 pending++;
1492 continue;
1493 }
1494 if (td->runstate == TD_REAPED)
1495 continue;
1496 if (td->o.use_thread) {
1497 if (td->runstate == TD_EXITED) {
1498 td_set_runstate(td, TD_REAPED);
1499 goto reaped;
1500 }
1501 continue;
1502 }
1503
1504 flags = WNOHANG;
1505 if (td->runstate == TD_EXITED)
1506 flags = 0;
1507
1508 /*
1509 * check if someone quit or got killed in an unusual way
1510 */
1511 ret = waitpid(td->pid, &status, flags);
1512 if (ret < 0) {
1513 if (errno == ECHILD) {
1514 log_err("fio: pid=%d disappeared %d\n",
1515 (int) td->pid, td->runstate);
a5e371a6 1516 td->sig = ECHILD;
2e1df07d
JA
1517 td_set_runstate(td, TD_REAPED);
1518 goto reaped;
1519 }
1520 perror("waitpid");
1521 } else if (ret == td->pid) {
1522 if (WIFSIGNALED(status)) {
1523 int sig = WTERMSIG(status);
1524
36d80bc7 1525 if (sig != SIGTERM && sig != SIGUSR2)
2e1df07d
JA
1526 log_err("fio: pid=%d, got signal=%d\n",
1527 (int) td->pid, sig);
a5e371a6 1528 td->sig = sig;
2e1df07d
JA
1529 td_set_runstate(td, TD_REAPED);
1530 goto reaped;
1531 }
1532 if (WIFEXITED(status)) {
1533 if (WEXITSTATUS(status) && !td->error)
1534 td->error = WEXITSTATUS(status);
1535
1536 td_set_runstate(td, TD_REAPED);
1537 goto reaped;
1538 }
1539 }
1540
1541 /*
1542 * thread is not dead, continue
1543 */
1544 pending++;
1545 continue;
1546reaped:
1547 (*nr_running)--;
342f4be4
JA
1548 (*m_rate) -= ddir_rw_sum(td->o.ratemin);
1549 (*t_rate) -= ddir_rw_sum(td->o.rate);
2e1df07d
JA
1550 if (!td->pid)
1551 pending--;
1552
1553 if (td->error)
1554 exit_value++;
1555
1556 done_secs += mtime_since_now(&td->epoch) / 1000;
4a88752a 1557 profile_td_exit(td);
2e1df07d
JA
1558 }
1559
1560 if (*nr_running == cputhreads && !pending && realthreads)
1561 fio_terminate_threads(TERMINATE_ALL);
1562}
1563
06464907
JA
1564static void do_usleep(unsigned int usecs)
1565{
1566 check_for_running_stats();
1567 usleep(usecs);
1568}
1569
2e1df07d
JA
1570/*
1571 * Main function for kicking off and reaping jobs, as needed.
1572 */
1573static void run_threads(void)
1574{
1575 struct thread_data *td;
1576 unsigned long spent;
1577 unsigned int i, todo, nr_running, m_rate, t_rate, nr_started;
1578
2e1df07d
JA
1579 if (fio_gtod_offload && fio_start_gtod_thread())
1580 return;
f2a2ce0e
HL
1581
1582 fio_idle_prof_init();
2e1df07d
JA
1583
1584 set_sig_handlers();
1585
3a5f6bde
JA
1586 nr_thread = nr_process = 0;
1587 for_each_td(td, i) {
1588 if (td->o.use_thread)
1589 nr_thread++;
1590 else
1591 nr_process++;
1592 }
1593
f3afa57e 1594 if (output_format == FIO_OUTPUT_NORMAL) {
2e1df07d
JA
1595 log_info("Starting ");
1596 if (nr_thread)
1597 log_info("%d thread%s", nr_thread,
1598 nr_thread > 1 ? "s" : "");
1599 if (nr_process) {
1600 if (nr_thread)
1601 log_info(" and ");
1602 log_info("%d process%s", nr_process,
1603 nr_process > 1 ? "es" : "");
1604 }
1605 log_info("\n");
1606 fflush(stdout);
1607 }
1608
1609 todo = thread_number;
1610 nr_running = 0;
1611 nr_started = 0;
1612 m_rate = t_rate = 0;
1613
1614 for_each_td(td, i) {
1615 print_status_init(td->thread_number - 1);
1616
1617 if (!td->o.create_serialize)
1618 continue;
1619
1620 /*
1621 * do file setup here so it happens sequentially,
1622 * we don't want X number of threads getting their
1623 * client data interspersed on disk
1624 */
1625 if (setup_files(td)) {
1626 exit_value++;
1627 if (td->error)
1628 log_err("fio: pid=%d, err=%d/%s\n",
1629 (int) td->pid, td->error, td->verror);
1630 td_set_runstate(td, TD_REAPED);
1631 todo--;
1632 } else {
1633 struct fio_file *f;
1634 unsigned int j;
1635
1636 /*
1637 * for sharing to work, each job must always open
1638 * its own files. so close them, if we opened them
1639 * for creation
1640 */
1641 for_each_file(td, f, j) {
1642 if (fio_file_open(f))
1643 td_io_close_file(td, f);
1644 }
1645 }
1646 }
1647
f2a2ce0e
HL
1648 /* start idle threads before io threads start to run */
1649 fio_idle_prof_start();
1650
2e1df07d
JA
1651 set_genesis_time();
1652
1653 while (todo) {
1654 struct thread_data *map[REAL_MAX_JOBS];
1655 struct timeval this_start;
1656 int this_jobs = 0, left;
1657
1658 /*
1659 * create threads (TD_NOT_CREATED -> TD_CREATED)
1660 */
1661 for_each_td(td, i) {
1662 if (td->runstate != TD_NOT_CREATED)
1663 continue;
1664
1665 /*
1666 * never got a chance to start, killed by other
1667 * thread for some reason
1668 */
1669 if (td->terminate) {
1670 todo--;
1671 continue;
1672 }
1673
1674 if (td->o.start_delay) {
1675 spent = mtime_since_genesis();
1676
1677 if (td->o.start_delay * 1000 > spent)
1678 continue;
1679 }
1680
1681 if (td->o.stonewall && (nr_started || nr_running)) {
1682 dprint(FD_PROCESS, "%s: stonewall wait\n",
1683 td->o.name);
1684 break;
1685 }
1686
1687 init_disk_util(td);
1688
c97f1ad6
JA
1689 td->rusage_sem = fio_mutex_init(FIO_MUTEX_LOCKED);
1690 td->update_rusage = 0;
1691
2e1df07d
JA
1692 /*
1693 * Set state to created. Thread will transition
1694 * to TD_INITIALIZED when it's done setting up.
1695 */
1696 td_set_runstate(td, TD_CREATED);
1697 map[this_jobs++] = td;
1698 nr_started++;
1699
1700 if (td->o.use_thread) {
1701 int ret;
1702
1703 dprint(FD_PROCESS, "will pthread_create\n");
1704 ret = pthread_create(&td->thread, NULL,
1705 thread_main, td);
1706 if (ret) {
1707 log_err("pthread_create: %s\n",
1708 strerror(ret));
1709 nr_started--;
1710 break;
1711 }
1712 ret = pthread_detach(td->thread);
1713 if (ret)
1714 log_err("pthread_detach: %s",
1715 strerror(ret));
1716 } else {
1717 pid_t pid;
1718 dprint(FD_PROCESS, "will fork\n");
1719 pid = fork();
1720 if (!pid) {
1721 int ret = fork_main(shm_id, i);
1722
1723 _exit(ret);
1724 } else if (i == fio_debug_jobno)
1725 *fio_debug_jobp = pid;
1726 }
1727 dprint(FD_MUTEX, "wait on startup_mutex\n");
1728 if (fio_mutex_down_timeout(startup_mutex, 10)) {
1729 log_err("fio: job startup hung? exiting.\n");
1730 fio_terminate_threads(TERMINATE_ALL);
1731 fio_abort = 1;
1732 nr_started--;
1733 break;
1734 }
1735 dprint(FD_MUTEX, "done waiting on startup_mutex\n");
1736 }
1737
1738 /*
1739 * Wait for the started threads to transition to
1740 * TD_INITIALIZED.
1741 */
1742 fio_gettime(&this_start, NULL);
1743 left = this_jobs;
1744 while (left && !fio_abort) {
1745 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1746 break;
1747
06464907 1748 do_usleep(100000);
2e1df07d
JA
1749
1750 for (i = 0; i < this_jobs; i++) {
1751 td = map[i];
1752 if (!td)
1753 continue;
1754 if (td->runstate == TD_INITIALIZED) {
1755 map[i] = NULL;
1756 left--;
1757 } else if (td->runstate >= TD_EXITED) {
1758 map[i] = NULL;
1759 left--;
1760 todo--;
1761 nr_running++; /* work-around... */
1762 }
1763 }
1764 }
1765
1766 if (left) {
4e87c37a
JA
1767 log_err("fio: %d job%s failed to start\n", left,
1768 left > 1 ? "s" : "");
2e1df07d
JA
1769 for (i = 0; i < this_jobs; i++) {
1770 td = map[i];
1771 if (!td)
1772 continue;
1773 kill(td->pid, SIGTERM);
1774 }
1775 break;
1776 }
1777
1778 /*
1779 * start created threads (TD_INITIALIZED -> TD_RUNNING).
1780 */
1781 for_each_td(td, i) {
1782 if (td->runstate != TD_INITIALIZED)
1783 continue;
1784
1785 if (in_ramp_time(td))
1786 td_set_runstate(td, TD_RAMP);
1787 else
1788 td_set_runstate(td, TD_RUNNING);
1789 nr_running++;
1790 nr_started--;
342f4be4
JA
1791 m_rate += ddir_rw_sum(td->o.ratemin);
1792 t_rate += ddir_rw_sum(td->o.rate);
2e1df07d
JA
1793 todo--;
1794 fio_mutex_up(td->mutex);
1795 }
1796
1797 reap_threads(&nr_running, &t_rate, &m_rate);
1798
122c7725 1799 if (todo)
06464907 1800 do_usleep(100000);
2e1df07d
JA
1801 }
1802
1803 while (nr_running) {
1804 reap_threads(&nr_running, &t_rate, &m_rate);
06464907 1805 do_usleep(10000);
2e1df07d
JA
1806 }
1807
f2a2ce0e
HL
1808 fio_idle_prof_stop();
1809
2e1df07d 1810 update_io_ticks();
2e1df07d
JA
1811}
1812
9ec7779f
JA
1813void wait_for_disk_thread_exit(void)
1814{
1815 fio_mutex_down(disk_thread_mutex);
1816}
1817
27357187
JA
1818static void free_disk_util(void)
1819{
1820 disk_util_start_exit();
1821 wait_for_disk_thread_exit();
1822 disk_util_prune_entries();
1823}
1824
2e1df07d
JA
1825static void *disk_thread_main(void *data)
1826{
9ec7779f
JA
1827 int ret = 0;
1828
2e1df07d
JA
1829 fio_mutex_up(startup_mutex);
1830
9ec7779f 1831 while (threads && !ret) {
2e1df07d
JA
1832 usleep(DISK_UTIL_MSEC * 1000);
1833 if (!threads)
1834 break;
9ec7779f 1835 ret = update_io_ticks();
2e1df07d
JA
1836
1837 if (!is_backend)
1838 print_thread_status();
1839 }
1840
9ec7779f 1841 fio_mutex_up(disk_thread_mutex);
2e1df07d
JA
1842 return NULL;
1843}
1844
1845static int create_disk_util_thread(void)
1846{
1847 int ret;
1848
9ec7779f
JA
1849 setup_disk_util();
1850
521da527 1851 disk_thread_mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
9ec7779f 1852
2e1df07d
JA
1853 ret = pthread_create(&disk_util_thread, NULL, disk_thread_main, NULL);
1854 if (ret) {
9ec7779f 1855 fio_mutex_remove(disk_thread_mutex);
2e1df07d
JA
1856 log_err("Can't create disk util thread: %s\n", strerror(ret));
1857 return 1;
1858 }
1859
1860 ret = pthread_detach(disk_util_thread);
1861 if (ret) {
9ec7779f 1862 fio_mutex_remove(disk_thread_mutex);
2e1df07d
JA
1863 log_err("Can't detatch disk util thread: %s\n", strerror(ret));
1864 return 1;
1865 }
1866
1867 dprint(FD_MUTEX, "wait on startup_mutex\n");
1868 fio_mutex_down(startup_mutex);
1869 dprint(FD_MUTEX, "done waiting on startup_mutex\n");
1870 return 0;
1871}
1872
2e1df07d
JA
1873int fio_backend(void)
1874{
1875 struct thread_data *td;
1876 int i;
1877
1878 if (exec_profile) {
1879 if (load_profile(exec_profile))
1880 return 1;
1881 free(exec_profile);
1882 exec_profile = NULL;
1883 }
1884 if (!thread_number)
1885 return 0;
1886
1887 if (write_bw_log) {
5a812f9b
JA
1888 setup_log(&agg_io_log[DDIR_READ], 0, IO_LOG_TYPE_BW);
1889 setup_log(&agg_io_log[DDIR_WRITE], 0, IO_LOG_TYPE_BW);
1890 setup_log(&agg_io_log[DDIR_TRIM], 0, IO_LOG_TYPE_BW);
2e1df07d
JA
1891 }
1892
521da527 1893 startup_mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
2e1df07d
JA
1894 if (startup_mutex == NULL)
1895 return 1;
521da527 1896 writeout_mutex = fio_mutex_init(FIO_MUTEX_UNLOCKED);
2e1df07d
JA
1897 if (writeout_mutex == NULL)
1898 return 1;
1899
1900 set_genesis_time();
cef9175e 1901 stat_init();
2e1df07d
JA
1902 create_disk_util_thread();
1903
1904 cgroup_list = smalloc(sizeof(*cgroup_list));
1905 INIT_FLIST_HEAD(cgroup_list);
1906
1907 run_threads();
1908
1909 if (!fio_abort) {
1910 show_run_stats();
1911 if (write_bw_log) {
1912 __finish_log(agg_io_log[DDIR_READ], "agg-read_bw.log");
1913 __finish_log(agg_io_log[DDIR_WRITE],
1914 "agg-write_bw.log");
6eaf09d6
SL
1915 __finish_log(agg_io_log[DDIR_TRIM],
1916 "agg-write_bw.log");
2e1df07d
JA
1917 }
1918 }
1919
1920 for_each_td(td, i)
1921 fio_options_free(td);
1922
a462baef 1923 free_disk_util();
2e1df07d
JA
1924 cgroup_kill(cgroup_list);
1925 sfree(cgroup_list);
1926 sfree(cgroup_mnt);
1927
1928 fio_mutex_remove(startup_mutex);
1929 fio_mutex_remove(writeout_mutex);
9ec7779f 1930 fio_mutex_remove(disk_thread_mutex);
cef9175e 1931 stat_exit();
2e1df07d
JA
1932 return exit_value;
1933}