workqueue: move init worker private code to the caller
[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 37#include <sys/mman.h>
ff6bb260 38#include <math.h>
2e1df07d
JA
39
40#include "fio.h"
a5e0ee11
O
41#ifndef FIO_NO_HAVE_SHM_H
42#include <sys/shm.h>
43#endif
2e1df07d
JA
44#include "hash.h"
45#include "smalloc.h"
46#include "verify.h"
47#include "trim.h"
48#include "diskutil.h"
49#include "cgroup.h"
50#include "profile.h"
51#include "lib/rand.h"
f7690c4a 52#include "lib/memalign.h"
2e1df07d 53#include "server.h"
44404c5a 54#include "lib/getrusage.h"
f2a2ce0e 55#include "idletime.h"
002fe734 56#include "err.h"
78d55e72 57#include "lib/tp.h"
a9da8ab2 58#include "workqueue.h"
e81ecca3 59#include "lib/mountcheck.h"
2e1df07d 60
5ddc6707
JA
61static pthread_t helper_thread;
62static pthread_mutex_t helper_lock;
63pthread_cond_t helper_cond;
64int helper_do_stat = 0;
8aab824f 65
2e1df07d 66static struct fio_mutex *startup_mutex;
2e1df07d
JA
67static struct flist_head *cgroup_list;
68static char *cgroup_mnt;
69static int exit_value;
70static volatile int fio_abort;
3a5f6bde
JA
71static unsigned int nr_process = 0;
72static unsigned int nr_thread = 0;
2e1df07d 73
6eaf09d6 74struct io_log *agg_io_log[DDIR_RWDIR_CNT];
2e1df07d 75
a3efc919
JA
76int groupid = 0;
77unsigned int thread_number = 0;
108fea77 78unsigned int stat_number = 0;
a3efc919
JA
79int shm_id = 0;
80int temp_stall_ts;
81unsigned long done_secs = 0;
5ddc6707 82volatile int helper_exit = 0;
a3efc919 83
2e1df07d 84#define PAGE_ALIGN(buf) \
e43606c2 85 (char *) (((uintptr_t) (buf) + page_mask) & ~page_mask)
2e1df07d
JA
86
87#define JOB_START_TIMEOUT (5 * 1000)
88
89static void sig_int(int sig)
90{
91 if (threads) {
92 if (is_backend)
93 fio_server_got_signal(sig);
94 else {
95 log_info("\nfio: terminating on signal %d\n", sig);
e411c301 96 log_info_flush();
2e1df07d
JA
97 exit_value = 128;
98 }
99
100 fio_terminate_threads(TERMINATE_ALL);
101 }
102}
103
d2235e56 104void sig_show_status(int sig)
4c6d91e8
JA
105{
106 show_running_run_stats();
107}
108
2e1df07d
JA
109static void set_sig_handlers(void)
110{
111 struct sigaction act;
112
113 memset(&act, 0, sizeof(act));
114 act.sa_handler = sig_int;
115 act.sa_flags = SA_RESTART;
116 sigaction(SIGINT, &act, NULL);
117
118 memset(&act, 0, sizeof(act));
119 act.sa_handler = sig_int;
120 act.sa_flags = SA_RESTART;
121 sigaction(SIGTERM, &act, NULL);
122
2f694507
BC
123/* Windows uses SIGBREAK as a quit signal from other applications */
124#ifdef WIN32
125 memset(&act, 0, sizeof(act));
126 act.sa_handler = sig_int;
127 act.sa_flags = SA_RESTART;
128 sigaction(SIGBREAK, &act, NULL);
129#endif
130
4c6d91e8
JA
131 memset(&act, 0, sizeof(act));
132 act.sa_handler = sig_show_status;
133 act.sa_flags = SA_RESTART;
134 sigaction(SIGUSR1, &act, NULL);
135
2e1df07d
JA
136 if (is_backend) {
137 memset(&act, 0, sizeof(act));
138 act.sa_handler = sig_int;
139 act.sa_flags = SA_RESTART;
140 sigaction(SIGPIPE, &act, NULL);
141 }
142}
143
144/*
145 * Check if we are above the minimum rate given.
146 */
e39c0676
JA
147static bool __check_min_rate(struct thread_data *td, struct timeval *now,
148 enum fio_ddir ddir)
2e1df07d
JA
149{
150 unsigned long long bytes = 0;
151 unsigned long iops = 0;
152 unsigned long spent;
153 unsigned long rate;
154 unsigned int ratemin = 0;
155 unsigned int rate_iops = 0;
156 unsigned int rate_iops_min = 0;
157
158 assert(ddir_rw(ddir));
159
160 if (!td->o.ratemin[ddir] && !td->o.rate_iops_min[ddir])
e39c0676 161 return false;
2e1df07d
JA
162
163 /*
164 * allow a 2 second settle period in the beginning
165 */
166 if (mtime_since(&td->start, now) < 2000)
e39c0676 167 return false;
2e1df07d
JA
168
169 iops += td->this_io_blocks[ddir];
170 bytes += td->this_io_bytes[ddir];
171 ratemin += td->o.ratemin[ddir];
172 rate_iops += td->o.rate_iops[ddir];
173 rate_iops_min += td->o.rate_iops_min[ddir];
174
175 /*
176 * if rate blocks is set, sample is running
177 */
178 if (td->rate_bytes[ddir] || td->rate_blocks[ddir]) {
179 spent = mtime_since(&td->lastrate[ddir], now);
180 if (spent < td->o.ratecycle)
e39c0676 181 return false;
2e1df07d 182
20e37e4a 183 if (td->o.rate[ddir] || td->o.ratemin[ddir]) {
2e1df07d
JA
184 /*
185 * check bandwidth specified rate
186 */
187 if (bytes < td->rate_bytes[ddir]) {
188 log_err("%s: min rate %u not met\n", td->o.name,
189 ratemin);
e39c0676 190 return true;
2e1df07d 191 } else {
49cba9b3
JA
192 if (spent)
193 rate = ((bytes - td->rate_bytes[ddir]) * 1000) / spent;
194 else
195 rate = 0;
196
2e1df07d
JA
197 if (rate < ratemin ||
198 bytes < td->rate_bytes[ddir]) {
199 log_err("%s: min rate %u not met, got"
200 " %luKB/sec\n", td->o.name,
201 ratemin, rate);
e39c0676 202 return true;
2e1df07d
JA
203 }
204 }
205 } else {
206 /*
207 * checks iops specified rate
208 */
209 if (iops < rate_iops) {
210 log_err("%s: min iops rate %u not met\n",
211 td->o.name, rate_iops);
e39c0676 212 return true;
2e1df07d 213 } else {
4c707a3b
JA
214 if (spent)
215 rate = ((iops - td->rate_blocks[ddir]) * 1000) / spent;
216 else
217 rate = 0;
218
2e1df07d
JA
219 if (rate < rate_iops_min ||
220 iops < td->rate_blocks[ddir]) {
221 log_err("%s: min iops rate %u not met,"
222 " got %lu\n", td->o.name,
223 rate_iops_min, rate);
e39c0676 224 return true;
2e1df07d
JA
225 }
226 }
227 }
228 }
229
230 td->rate_bytes[ddir] = bytes;
231 td->rate_blocks[ddir] = iops;
232 memcpy(&td->lastrate[ddir], now, sizeof(*now));
e39c0676 233 return false;
2e1df07d
JA
234}
235
e39c0676 236static bool check_min_rate(struct thread_data *td, struct timeval *now)
2e1df07d 237{
e39c0676 238 bool ret = false;
2e1df07d 239
55312f9f 240 if (td->bytes_done[DDIR_READ])
6eaf09d6 241 ret |= __check_min_rate(td, now, DDIR_READ);
55312f9f 242 if (td->bytes_done[DDIR_WRITE])
6eaf09d6 243 ret |= __check_min_rate(td, now, DDIR_WRITE);
55312f9f 244 if (td->bytes_done[DDIR_TRIM])
6eaf09d6 245 ret |= __check_min_rate(td, now, DDIR_TRIM);
2e1df07d
JA
246
247 return ret;
248}
249
250/*
251 * When job exits, we can cancel the in-flight IO if we are using async
252 * io. Attempt to do so.
253 */
254static void cleanup_pending_aio(struct thread_data *td)
255{
2e1df07d
JA
256 int r;
257
258 /*
259 * get immediately available events, if any
260 */
55312f9f 261 r = io_u_queued_complete(td, 0);
2e1df07d
JA
262 if (r < 0)
263 return;
264
265 /*
266 * now cancel remaining active events
267 */
268 if (td->io_ops->cancel) {
2ae0b204
JA
269 struct io_u *io_u;
270 int i;
2e1df07d 271
2ae0b204
JA
272 io_u_qiter(&td->io_u_all, io_u, i) {
273 if (io_u->flags & IO_U_F_FLIGHT) {
2e1df07d
JA
274 r = td->io_ops->cancel(td, io_u);
275 if (!r)
276 put_io_u(td, io_u);
277 }
278 }
279 }
280
281 if (td->cur_depth)
55312f9f 282 r = io_u_queued_complete(td, td->cur_depth);
2e1df07d
JA
283}
284
285/*
286 * Helper to handle the final sync of a file. Works just like the normal
287 * io path, just does everything sync.
288 */
e39c0676 289static bool fio_io_sync(struct thread_data *td, struct fio_file *f)
2e1df07d
JA
290{
291 struct io_u *io_u = __get_io_u(td);
292 int ret;
293
294 if (!io_u)
e39c0676 295 return true;
2e1df07d
JA
296
297 io_u->ddir = DDIR_SYNC;
298 io_u->file = f;
299
300 if (td_io_prep(td, io_u)) {
301 put_io_u(td, io_u);
e39c0676 302 return true;
2e1df07d
JA
303 }
304
305requeue:
306 ret = td_io_queue(td, io_u);
307 if (ret < 0) {
308 td_verror(td, io_u->error, "td_io_queue");
309 put_io_u(td, io_u);
e39c0676 310 return true;
2e1df07d 311 } else if (ret == FIO_Q_QUEUED) {
55312f9f 312 if (io_u_queued_complete(td, 1) < 0)
e39c0676 313 return true;
2e1df07d
JA
314 } else if (ret == FIO_Q_COMPLETED) {
315 if (io_u->error) {
316 td_verror(td, io_u->error, "td_io_queue");
e39c0676 317 return true;
2e1df07d
JA
318 }
319
55312f9f 320 if (io_u_sync_complete(td, io_u) < 0)
e39c0676 321 return true;
2e1df07d
JA
322 } else if (ret == FIO_Q_BUSY) {
323 if (td_io_commit(td))
e39c0676 324 return true;
2e1df07d
JA
325 goto requeue;
326 }
327
e39c0676 328 return false;
2e1df07d 329}
a3efc919 330
61ee0f86
JA
331static int fio_file_fsync(struct thread_data *td, struct fio_file *f)
332{
333 int ret;
334
335 if (fio_file_open(f))
336 return fio_io_sync(td, f);
337
338 if (td_io_open_file(td, f))
339 return 1;
340
341 ret = fio_io_sync(td, f);
342 td_io_close_file(td, f);
343 return ret;
344}
345
2e1df07d
JA
346static inline void __update_tv_cache(struct thread_data *td)
347{
348 fio_gettime(&td->tv_cache, NULL);
349}
350
351static inline void update_tv_cache(struct thread_data *td)
352{
353 if ((++td->tv_cache_nr & td->tv_cache_mask) == td->tv_cache_mask)
354 __update_tv_cache(td);
355}
356
e39c0676 357static inline bool runtime_exceeded(struct thread_data *td, struct timeval *t)
2e1df07d
JA
358{
359 if (in_ramp_time(td))
e39c0676 360 return false;
2e1df07d 361 if (!td->o.timeout)
e39c0676 362 return false;
0de5b26f 363 if (utime_since(&td->epoch, t) >= td->o.timeout)
e39c0676 364 return true;
2e1df07d 365
e39c0676 366 return false;
2e1df07d
JA
367}
368
95603b74
BF
369/*
370 * We need to update the runtime consistently in ms, but keep a running
371 * tally of the current elapsed time in microseconds for sub millisecond
372 * updates.
373 */
374static inline void update_runtime(struct thread_data *td,
375 unsigned long long *elapsed_us,
376 const enum fio_ddir ddir)
377{
d5c8ea29
JA
378 if (ddir == DDIR_WRITE && td_write(td) && td->o.verify_only)
379 return;
380
95603b74
BF
381 td->ts.runtime[ddir] -= (elapsed_us[ddir] + 999) / 1000;
382 elapsed_us[ddir] += utime_since_now(&td->start);
383 td->ts.runtime[ddir] += (elapsed_us[ddir] + 999) / 1000;
384}
385
e39c0676
JA
386static bool break_on_this_error(struct thread_data *td, enum fio_ddir ddir,
387 int *retptr)
2e1df07d
JA
388{
389 int ret = *retptr;
390
391 if (ret < 0 || td->error) {
8b28bd41
DM
392 int err = td->error;
393 enum error_type_bit eb;
2e1df07d
JA
394
395 if (ret < 0)
396 err = -ret;
2e1df07d 397
8b28bd41
DM
398 eb = td_error_type(ddir, err);
399 if (!(td->o.continue_on_error & (1 << eb)))
e39c0676 400 return true;
2e1df07d 401
8b28bd41 402 if (td_non_fatal_error(td, eb, err)) {
2e1df07d
JA
403 /*
404 * Continue with the I/Os in case of
405 * a non fatal error.
406 */
407 update_error_count(td, err);
408 td_clear_error(td);
409 *retptr = 0;
e39c0676 410 return false;
2e1df07d
JA
411 } else if (td->o.fill_device && err == ENOSPC) {
412 /*
413 * We expect to hit this error if
414 * fill_device option is set.
415 */
416 td_clear_error(td);
ebea2133 417 fio_mark_td_terminate(td);
e39c0676 418 return true;
2e1df07d
JA
419 } else {
420 /*
421 * Stop the I/O in case of a fatal
422 * error.
423 */
424 update_error_count(td, err);
e39c0676 425 return true;
2e1df07d
JA
426 }
427 }
428
e39c0676 429 return false;
2e1df07d
JA
430}
431
c97f1ad6
JA
432static void check_update_rusage(struct thread_data *td)
433{
434 if (td->update_rusage) {
435 td->update_rusage = 0;
436 update_rusage_stat(td);
437 fio_mutex_up(td->rusage_sem);
438 }
439}
440
55312f9f 441static int wait_for_completions(struct thread_data *td, struct timeval *time)
69fea81e
JA
442{
443 const int full = queue_full(td);
444 int min_evts = 0;
445 int ret;
446
447 /*
448 * if the queue is full, we MUST reap at least 1 event
449 */
82407585 450 min_evts = min(td->o.iodepth_batch_complete_min, td->cur_depth);
4b157ac6 451 if ((full && !min_evts) || !td->o.iodepth_batch_complete_min)
69fea81e
JA
452 min_evts = 1;
453
66b6c5ef 454 if (time && (__should_check_rate(td, DDIR_READ) ||
69fea81e
JA
455 __should_check_rate(td, DDIR_WRITE) ||
456 __should_check_rate(td, DDIR_TRIM)))
457 fio_gettime(time, NULL);
458
459 do {
55312f9f 460 ret = io_u_queued_complete(td, min_evts);
69fea81e
JA
461 if (ret < 0)
462 break;
463 } while (full && (td->cur_depth > td->o.iodepth_low));
464
465 return ret;
466}
467
e9d512d8
JA
468int io_queue_event(struct thread_data *td, struct io_u *io_u, int *ret,
469 enum fio_ddir ddir, uint64_t *bytes_issued, int from_verify,
470 struct timeval *comp_time)
471{
472 int ret2;
473
474 switch (*ret) {
475 case FIO_Q_COMPLETED:
476 if (io_u->error) {
477 *ret = -io_u->error;
478 clear_io_u(td, io_u);
479 } else if (io_u->resid) {
480 int bytes = io_u->xfer_buflen - io_u->resid;
481 struct fio_file *f = io_u->file;
482
483 if (bytes_issued)
484 *bytes_issued += bytes;
485
486 if (!from_verify)
487 trim_io_piece(td, io_u);
488
489 /*
490 * zero read, fail
491 */
492 if (!bytes) {
493 if (!from_verify)
494 unlog_io_piece(td, io_u);
495 td_verror(td, EIO, "full resid");
496 put_io_u(td, io_u);
497 break;
498 }
499
500 io_u->xfer_buflen = io_u->resid;
501 io_u->xfer_buf += bytes;
502 io_u->offset += bytes;
503
504 if (ddir_rw(io_u->ddir))
505 td->ts.short_io_u[io_u->ddir]++;
506
507 f = io_u->file;
508 if (io_u->offset == f->real_file_size)
509 goto sync_done;
510
511 requeue_io_u(td, &io_u);
512 } else {
513sync_done:
514 if (comp_time && (__should_check_rate(td, DDIR_READ) ||
515 __should_check_rate(td, DDIR_WRITE) ||
516 __should_check_rate(td, DDIR_TRIM)))
517 fio_gettime(comp_time, NULL);
518
519 *ret = io_u_sync_complete(td, io_u);
520 if (*ret < 0)
521 break;
522 }
523 return 0;
524 case FIO_Q_QUEUED:
525 /*
526 * if the engine doesn't have a commit hook,
527 * the io_u is really queued. if it does have such
528 * a hook, it has to call io_u_queued() itself.
529 */
530 if (td->io_ops->commit == NULL)
531 io_u_queued(td, io_u);
532 if (bytes_issued)
533 *bytes_issued += io_u->xfer_buflen;
534 break;
535 case FIO_Q_BUSY:
536 if (!from_verify)
537 unlog_io_piece(td, io_u);
538 requeue_io_u(td, &io_u);
539 ret2 = td_io_commit(td);
540 if (ret2 < 0)
541 *ret = ret2;
542 break;
543 default:
b0775325 544 assert(*ret < 0);
e9d512d8
JA
545 td_verror(td, -(*ret), "td_io_queue");
546 break;
547 }
548
549 if (break_on_this_error(td, ddir, ret))
550 return 1;
551
552 return 0;
553}
554
e39c0676 555static inline bool io_in_polling(struct thread_data *td)
82407585
RP
556{
557 return !td->o.iodepth_batch_complete_min &&
558 !td->o.iodepth_batch_complete_max;
559}
560
2e1df07d
JA
561/*
562 * The main verify engine. Runs over the writes we previously submitted,
563 * reads the blocks back in, and checks the crc/md5 of the data.
564 */
100f49f1 565static void do_verify(struct thread_data *td, uint64_t verify_bytes)
2e1df07d
JA
566{
567 struct fio_file *f;
568 struct io_u *io_u;
569 int ret, min_events;
570 unsigned int i;
571
572 dprint(FD_VERIFY, "starting loop\n");
573
574 /*
575 * sync io first and invalidate cache, to make sure we really
576 * read from disk.
577 */
578 for_each_file(td, f, i) {
579 if (!fio_file_open(f))
580 continue;
581 if (fio_io_sync(td, f))
582 break;
583 if (file_invalidate_cache(td, f))
584 break;
585 }
586
c97f1ad6
JA
587 check_update_rusage(td);
588
2e1df07d
JA
589 if (td->error)
590 return;
591
592 td_set_runstate(td, TD_VERIFYING);
593
594 io_u = NULL;
595 while (!td->terminate) {
fbccf46c 596 enum fio_ddir ddir;
e9d512d8 597 int full;
2e1df07d
JA
598
599 update_tv_cache(td);
c97f1ad6 600 check_update_rusage(td);
2e1df07d
JA
601
602 if (runtime_exceeded(td, &td->tv_cache)) {
603 __update_tv_cache(td);
604 if (runtime_exceeded(td, &td->tv_cache)) {
ebea2133 605 fio_mark_td_terminate(td);
2e1df07d
JA
606 break;
607 }
608 }
609
9e684a49
DE
610 if (flow_threshold_exceeded(td))
611 continue;
612
44cbc6da
JA
613 if (!td->o.experimental_verify) {
614 io_u = __get_io_u(td);
615 if (!io_u)
616 break;
2e1df07d 617
44cbc6da
JA
618 if (get_next_verify(td, io_u)) {
619 put_io_u(td, io_u);
620 break;
621 }
2e1df07d 622
44cbc6da
JA
623 if (td_io_prep(td, io_u)) {
624 put_io_u(td, io_u);
625 break;
626 }
627 } else {
55312f9f 628 if (ddir_rw_sum(td->bytes_done) + td->o.rw_min_bs > verify_bytes)
100f49f1
JA
629 break;
630
bcd5abfa 631 while ((io_u = get_io_u(td)) != NULL) {
002fe734
JA
632 if (IS_ERR(io_u)) {
633 io_u = NULL;
634 ret = FIO_Q_BUSY;
635 goto reap;
636 }
637
bcd5abfa
JA
638 /*
639 * We are only interested in the places where
640 * we wrote or trimmed IOs. Turn those into
641 * reads for verification purposes.
642 */
643 if (io_u->ddir == DDIR_READ) {
644 /*
645 * Pretend we issued it for rwmix
646 * accounting
647 */
648 td->io_issues[DDIR_READ]++;
649 put_io_u(td, io_u);
650 continue;
651 } else if (io_u->ddir == DDIR_TRIM) {
652 io_u->ddir = DDIR_READ;
a9da8ab2 653 io_u_set(io_u, IO_U_F_TRIMMED);
bcd5abfa
JA
654 break;
655 } else if (io_u->ddir == DDIR_WRITE) {
656 io_u->ddir = DDIR_READ;
657 break;
658 } else {
659 put_io_u(td, io_u);
660 continue;
661 }
662 }
44cbc6da 663
bcd5abfa 664 if (!io_u)
44cbc6da 665 break;
2e1df07d
JA
666 }
667
ca09be4b
JA
668 if (verify_state_should_stop(td, io_u)) {
669 put_io_u(td, io_u);
670 break;
671 }
672
2e1df07d
JA
673 if (td->o.verify_async)
674 io_u->end_io = verify_io_u_async;
675 else
676 io_u->end_io = verify_io_u;
677
fbccf46c 678 ddir = io_u->ddir;
10adc4a7
GG
679 if (!td->o.disable_slat)
680 fio_gettime(&io_u->start_time, NULL);
fbccf46c 681
2e1df07d 682 ret = td_io_queue(td, io_u);
2e1df07d 683
e9d512d8 684 if (io_queue_event(td, io_u, &ret, ddir, NULL, 1, NULL))
2e1df07d
JA
685 break;
686
687 /*
688 * if we can queue more, do so. but check if there are
689 * completed io_u's first. Note that we can get BUSY even
690 * without IO queued, if the system is resource starved.
691 */
002fe734 692reap:
2e1df07d 693 full = queue_full(td) || (ret == FIO_Q_BUSY && td->cur_depth);
82407585 694 if (full || io_in_polling(td))
55312f9f 695 ret = wait_for_completions(td, NULL);
2e1df07d 696
2e1df07d
JA
697 if (ret < 0)
698 break;
699 }
700
c97f1ad6
JA
701 check_update_rusage(td);
702
2e1df07d
JA
703 if (!td->error) {
704 min_events = td->cur_depth;
705
706 if (min_events)
55312f9f 707 ret = io_u_queued_complete(td, min_events);
2e1df07d
JA
708 } else
709 cleanup_pending_aio(td);
710
711 td_set_runstate(td, TD_RUNNING);
712
713 dprint(FD_VERIFY, "exiting loop\n");
714}
715
e39c0676 716static bool exceeds_number_ios(struct thread_data *td)
3939fe85
JA
717{
718 unsigned long long number_ios;
719
720 if (!td->o.number_ios)
e39c0676 721 return false;
3939fe85 722
cf8a46a7 723 number_ios = ddir_rw_sum(td->io_blocks);
3939fe85
JA
724 number_ios += td->io_u_queued + td->io_u_in_flight;
725
cf8a46a7 726 return number_ios >= (td->o.number_ios * td->loops);
3939fe85
JA
727}
728
e39c0676 729static bool io_issue_bytes_exceeded(struct thread_data *td)
f7078f7b 730{
77731b29 731 unsigned long long bytes, limit;
f7078f7b
JA
732
733 if (td_rw(td))
74d6277f 734 bytes = td->io_issue_bytes[DDIR_READ] + td->io_issue_bytes[DDIR_WRITE];
f7078f7b 735 else if (td_write(td))
74d6277f 736 bytes = td->io_issue_bytes[DDIR_WRITE];
6eaf09d6 737 else if (td_read(td))
74d6277f 738 bytes = td->io_issue_bytes[DDIR_READ];
f7078f7b 739 else
74d6277f 740 bytes = td->io_issue_bytes[DDIR_TRIM];
f7078f7b 741
77731b29
JA
742 if (td->o.io_limit)
743 limit = td->o.io_limit;
744 else
745 limit = td->o.size;
746
cf8a46a7 747 limit *= td->loops;
77731b29 748 return bytes >= limit || exceeds_number_ios(td);
f7078f7b
JA
749}
750
e39c0676 751static bool io_complete_bytes_exceeded(struct thread_data *td)
e28dd2cf
JE
752{
753 unsigned long long bytes, limit;
754
755 if (td_rw(td))
756 bytes = td->this_io_bytes[DDIR_READ] + td->this_io_bytes[DDIR_WRITE];
757 else if (td_write(td))
758 bytes = td->this_io_bytes[DDIR_WRITE];
759 else if (td_read(td))
760 bytes = td->this_io_bytes[DDIR_READ];
761 else
762 bytes = td->this_io_bytes[DDIR_TRIM];
763
764 if (td->o.io_limit)
765 limit = td->o.io_limit;
766 else
767 limit = td->o.size;
768
cf8a46a7 769 limit *= td->loops;
e28dd2cf
JE
770 return bytes >= limit || exceeds_number_ios(td);
771}
772
50a8ce86
D
773/*
774 * used to calculate the next io time for rate control
775 *
776 */
777static long long usec_for_io(struct thread_data *td, enum fio_ddir ddir)
778{
ff6bb260 779 uint64_t secs, remainder, bps, bytes, iops;
50a8ce86
D
780
781 assert(!(td->flags & TD_F_CHILD));
782 bytes = td->rate_io_issue_bytes[ddir];
783 bps = td->rate_bps[ddir];
ff6bb260 784
6de65959 785 if (td->o.rate_process == RATE_PROCESS_POISSON) {
a77d139b 786 uint64_t val;
ff6bb260 787 iops = bps / td->o.bs[ddir];
a77d139b
JA
788 val = (int64_t) (1000000 / iops) *
789 -logf(__rand_0_1(&td->poisson_state));
790 if (val) {
791 dprint(FD_RATE, "poisson rate iops=%llu\n",
792 (unsigned long long) 1000000 / val);
793 }
794 td->last_usec += val;
ff6bb260
SL
795 return td->last_usec;
796 } else if (bps) {
50a8ce86
D
797 secs = bytes / bps;
798 remainder = bytes % bps;
799 return remainder * 1000000 / bps + secs * 1000000;
e7b24047
JA
800 }
801
802 return 0;
50a8ce86
D
803}
804
2e1df07d
JA
805/*
806 * Main IO worker function. It retrieves io_u's to process and queues
807 * and reaps them, checking for rate and errors along the way.
100f49f1
JA
808 *
809 * Returns number of bytes written and trimmed.
2e1df07d 810 */
100f49f1 811static uint64_t do_io(struct thread_data *td)
2e1df07d
JA
812{
813 unsigned int i;
814 int ret = 0;
c2703bf3 815 uint64_t total_bytes, bytes_issued = 0;
2e1df07d
JA
816
817 if (in_ramp_time(td))
818 td_set_runstate(td, TD_RAMP);
819 else
820 td_set_runstate(td, TD_RUNNING);
821
3e260a46
JA
822 lat_target_init(td);
823
1e564979
JE
824 total_bytes = td->o.size;
825 /*
826 * Allow random overwrite workloads to write up to io_limit
827 * before starting verification phase as 'size' doesn't apply.
828 */
829 if (td_write(td) && td_random(td) && td->o.norandommap)
830 total_bytes = max(total_bytes, (uint64_t) td->o.io_limit);
78a6469c
JA
831 /*
832 * If verify_backlog is enabled, we'll run the verify in this
833 * handler as well. For that case, we may need up to twice the
834 * amount of bytes.
835 */
78a6469c
JA
836 if (td->o.verify != VERIFY_NONE &&
837 (td_write(td) && td->o.verify_backlog))
c2703bf3
JA
838 total_bytes += td->o.size;
839
82a90686 840 /* In trimwrite mode, each byte is trimmed and then written, so
0e4dd95c 841 * allow total_bytes to be twice as big */
82a90686 842 if (td_trimwrite(td))
0e4dd95c
DE
843 total_bytes += td->total_io_size;
844
f7078f7b 845 while ((td->o.read_iolog_file && !flist_empty(&td->io_log_list)) ||
e28dd2cf 846 (!flist_empty(&td->trim_list)) || !io_issue_bytes_exceeded(td) ||
c04e4661 847 td->o.time_based) {
2e1df07d 848 struct timeval comp_time;
2e1df07d 849 struct io_u *io_u;
e9d512d8 850 int full;
2e1df07d
JA
851 enum fio_ddir ddir;
852
c97f1ad6
JA
853 check_update_rusage(td);
854
7d7803fa 855 if (td->terminate || td->done)
2e1df07d
JA
856 break;
857
858 update_tv_cache(td);
859
860 if (runtime_exceeded(td, &td->tv_cache)) {
861 __update_tv_cache(td);
862 if (runtime_exceeded(td, &td->tv_cache)) {
ebea2133 863 fio_mark_td_terminate(td);
2e1df07d
JA
864 break;
865 }
866 }
867
9e684a49
DE
868 if (flow_threshold_exceeded(td))
869 continue;
870
c82ea3d4 871 if (!td->o.time_based && bytes_issued >= total_bytes)
20876c53
JC
872 break;
873
2e1df07d 874 io_u = get_io_u(td);
002fe734
JA
875 if (IS_ERR_OR_NULL(io_u)) {
876 int err = PTR_ERR(io_u);
877
878 io_u = NULL;
879 if (err == -EBUSY) {
880 ret = FIO_Q_BUSY;
881 goto reap;
882 }
3e260a46
JA
883 if (td->o.latency_target)
884 goto reap;
2e1df07d 885 break;
3e260a46 886 }
2e1df07d
JA
887
888 ddir = io_u->ddir;
889
890 /*
82af2a7c
JA
891 * Add verification end_io handler if:
892 * - Asked to verify (!td_rw(td))
893 * - Or the io_u is from our verify list (mixed write/ver)
2e1df07d
JA
894 */
895 if (td->o.verify != VERIFY_NONE && io_u->ddir == DDIR_READ &&
82af2a7c 896 ((io_u->flags & IO_U_F_VER_LIST) || !td_rw(td))) {
c4b6117b
PV
897
898 if (!td->o.verify_pattern_bytes) {
d6b72507 899 io_u->rand_seed = __rand(&td->verify_state);
c4b6117b 900 if (sizeof(int) != sizeof(long *))
d6b72507 901 io_u->rand_seed *= __rand(&td->verify_state);
c4b6117b
PV
902 }
903
ca09be4b
JA
904 if (verify_state_should_stop(td, io_u)) {
905 put_io_u(td, io_u);
906 break;
907 }
908
2e1df07d
JA
909 if (td->o.verify_async)
910 io_u->end_io = verify_io_u_async;
911 else
912 io_u->end_io = verify_io_u;
913 td_set_runstate(td, TD_VERIFYING);
914 } else if (in_ramp_time(td))
915 td_set_runstate(td, TD_RAMP);
916 else
917 td_set_runstate(td, TD_RUNNING);
918
9a50c5c5 919 /*
f9401285
JA
920 * Always log IO before it's issued, so we know the specific
921 * order of it. The logged unit will track when the IO has
922 * completed.
9a50c5c5 923 */
c4b6117b
PV
924 if (td_write(td) && io_u->ddir == DDIR_WRITE &&
925 td->o.do_verify &&
926 td->o.verify != VERIFY_NONE &&
f9401285 927 !td->o.experimental_verify)
c4b6117b
PV
928 log_io_piece(td, io_u);
929
a9da8ab2 930 if (td->o.io_submit_mode == IO_MODE_OFFLOAD) {
0c5df5f9
JA
931 const unsigned long blen = io_u->xfer_buflen;
932 const enum fio_ddir ddir = acct_ddir(io_u);
933
a9da8ab2
JA
934 if (td->error)
935 break;
0c5df5f9 936
88271841 937 ret = workqueue_enqueue(&td->io_wq, &io_u->work);
b07f6ad1
JA
938 if (ret)
939 ret = FIO_Q_QUEUED;
940 else
941 ret = FIO_Q_BUSY;
50a8ce86 942
0c5df5f9
JA
943 if (ret == FIO_Q_QUEUED && ddir_rw(ddir)) {
944 td->io_issues[ddir]++;
945 td->io_issue_bytes[ddir] += blen;
946 td->rate_io_issue_bytes[ddir] += blen;
947 }
948
50a8ce86
D
949 if (should_check_rate(td))
950 td->rate_next_io_time[ddir] = usec_for_io(td, ddir);
951
a9da8ab2
JA
952 } else {
953 ret = td_io_queue(td, io_u);
2e1df07d 954
50a8ce86
D
955 if (should_check_rate(td))
956 td->rate_next_io_time[ddir] = usec_for_io(td, ddir);
957
fd727d9d 958 if (io_queue_event(td, io_u, &ret, ddir, &bytes_issued, 0, &comp_time))
a9da8ab2 959 break;
2e1df07d 960
a9da8ab2
JA
961 /*
962 * See if we need to complete some commands. Note that
963 * we can get BUSY even without IO queued, if the
964 * system is resource starved.
965 */
3e260a46 966reap:
a9da8ab2
JA
967 full = queue_full(td) ||
968 (ret == FIO_Q_BUSY && td->cur_depth);
82407585 969 if (full || io_in_polling(td))
a9da8ab2
JA
970 ret = wait_for_completions(td, &comp_time);
971 }
2e1df07d
JA
972 if (ret < 0)
973 break;
55312f9f
JA
974 if (!ddir_rw_sum(td->bytes_done) &&
975 !(td->io_ops->flags & FIO_NOIO))
2e1df07d
JA
976 continue;
977
55312f9f
JA
978 if (!in_ramp_time(td) && should_check_rate(td)) {
979 if (check_min_rate(td, &comp_time)) {
2e1df07d
JA
980 if (exitall_on_terminate)
981 fio_terminate_threads(td->groupid);
982 td_verror(td, EIO, "check_min_rate");
983 break;
984 }
985 }
3e260a46
JA
986 if (!in_ramp_time(td) && td->o.latency_target)
987 lat_target_check(td);
e155cb64 988
2e1df07d
JA
989 if (td->o.thinktime) {
990 unsigned long long b;
991
342f4be4 992 b = ddir_rw_sum(td->io_blocks);
2e1df07d
JA
993 if (!(b % td->o.thinktime_blocks)) {
994 int left;
995
002e7183
JA
996 io_u_quiesce(td);
997
2e1df07d
JA
998 if (td->o.thinktime_spin)
999 usec_spin(td->o.thinktime_spin);
1000
1001 left = td->o.thinktime - td->o.thinktime_spin;
1002 if (left)
1003 usec_sleep(td, left);
1004 }
1005 }
1006 }
1007
c97f1ad6
JA
1008 check_update_rusage(td);
1009
2e1df07d 1010 if (td->trim_entries)
4e0a8fa2 1011 log_err("fio: %lu trim entries leaked?\n", td->trim_entries);
2e1df07d
JA
1012
1013 if (td->o.fill_device && td->error == ENOSPC) {
1014 td->error = 0;
ebea2133 1015 fio_mark_td_terminate(td);
2e1df07d
JA
1016 }
1017 if (!td->error) {
1018 struct fio_file *f;
1019
a9da8ab2
JA
1020 if (td->o.io_submit_mode == IO_MODE_OFFLOAD) {
1021 workqueue_flush(&td->io_wq);
1022 i = 0;
1023 } else
1024 i = td->cur_depth;
1025
2e1df07d 1026 if (i) {
55312f9f 1027 ret = io_u_queued_complete(td, i);
2e1df07d
JA
1028 if (td->o.fill_device && td->error == ENOSPC)
1029 td->error = 0;
1030 }
1031
1032 if (should_fsync(td) && td->o.end_fsync) {
1033 td_set_runstate(td, TD_FSYNCING);
1034
1035 for_each_file(td, f, i) {
61ee0f86 1036 if (!fio_file_fsync(td, f))
2e1df07d 1037 continue;
61ee0f86
JA
1038
1039 log_err("fio: end_fsync failed for file %s\n",
1040 f->file_name);
2e1df07d
JA
1041 }
1042 }
1043 } else
1044 cleanup_pending_aio(td);
1045
1046 /*
1047 * stop job if we failed doing any IO
1048 */
342f4be4 1049 if (!ddir_rw_sum(td->this_io_bytes))
2e1df07d 1050 td->done = 1;
100f49f1 1051
55312f9f 1052 return td->bytes_done[DDIR_WRITE] + td->bytes_done[DDIR_TRIM];
2e1df07d
JA
1053}
1054
1055static void cleanup_io_u(struct thread_data *td)
1056{
2e1df07d
JA
1057 struct io_u *io_u;
1058
2ae0b204 1059 while ((io_u = io_u_qpop(&td->io_u_freelist)) != NULL) {
c73ed246
JA
1060
1061 if (td->io_ops->io_u_free)
1062 td->io_ops->io_u_free(td, io_u);
1063
2e1df07d
JA
1064 fio_memfree(io_u, sizeof(*io_u));
1065 }
1066
1067 free_io_mem(td);
2ae0b204
JA
1068
1069 io_u_rexit(&td->io_u_requeues);
1070 io_u_qexit(&td->io_u_freelist);
1071 io_u_qexit(&td->io_u_all);
ca09be4b
JA
1072
1073 if (td->last_write_comp)
1074 sfree(td->last_write_comp);
2e1df07d
JA
1075}
1076
1077static int init_io_u(struct thread_data *td)
1078{
1079 struct io_u *io_u;
9c42684e 1080 unsigned int max_bs, min_write;
2e1df07d 1081 int cl_align, i, max_units;
2ae0b204 1082 int data_xfer = 1, err;
2e1df07d
JA
1083 char *p;
1084
1085 max_units = td->o.iodepth;
74f4b020 1086 max_bs = td_max_bs(td);
9c42684e 1087 min_write = td->o.min_bs[DDIR_WRITE];
2e1df07d
JA
1088 td->orig_buffer_size = (unsigned long long) max_bs
1089 * (unsigned long long) max_units;
1090
88045e04 1091 if ((td->io_ops->flags & FIO_NOIO) || !(td_read(td) || td_write(td)))
59d8d0f5
JA
1092 data_xfer = 0;
1093
2ae0b204
JA
1094 err = 0;
1095 err += io_u_rinit(&td->io_u_requeues, td->o.iodepth);
1096 err += io_u_qinit(&td->io_u_freelist, td->o.iodepth);
1097 err += io_u_qinit(&td->io_u_all, td->o.iodepth);
1098
1099 if (err) {
1100 log_err("fio: failed setting up IO queues\n");
1101 return 1;
1102 }
1103
fd8a09b8 1104 /*
1105 * if we may later need to do address alignment, then add any
1106 * possible adjustment here so that we don't cause a buffer
1107 * overflow later. this adjustment may be too much if we get
1108 * lucky and the allocator gives us an aligned address.
1109 */
d01612f3
CM
1110 if (td->o.odirect || td->o.mem_align || td->o.oatomic ||
1111 (td->io_ops->flags & FIO_RAWIO))
fd8a09b8 1112 td->orig_buffer_size += page_mask + td->o.mem_align;
1113
2e1df07d
JA
1114 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE) {
1115 unsigned long bs;
1116
1117 bs = td->orig_buffer_size + td->o.hugepage_size - 1;
1118 td->orig_buffer_size = bs & ~(td->o.hugepage_size - 1);
1119 }
1120
1121 if (td->orig_buffer_size != (size_t) td->orig_buffer_size) {
1122 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
1123 return 1;
1124 }
1125
59d8d0f5 1126 if (data_xfer && allocate_io_mem(td))
2e1df07d
JA
1127 return 1;
1128
d01612f3 1129 if (td->o.odirect || td->o.mem_align || td->o.oatomic ||
2e1df07d
JA
1130 (td->io_ops->flags & FIO_RAWIO))
1131 p = PAGE_ALIGN(td->orig_buffer) + td->o.mem_align;
1132 else
1133 p = td->orig_buffer;
1134
1135 cl_align = os_cache_line_size();
1136
1137 for (i = 0; i < max_units; i++) {
1138 void *ptr;
1139
1140 if (td->terminate)
1141 return 1;
1142
1143 ptr = fio_memalign(cl_align, sizeof(*io_u));
1144 if (!ptr) {
1145 log_err("fio: unable to allocate aligned memory\n");
1146 break;
1147 }
1148
1149 io_u = ptr;
1150 memset(io_u, 0, sizeof(*io_u));
2ae0b204 1151 INIT_FLIST_HEAD(&io_u->verify_list);
2e1df07d
JA
1152 dprint(FD_MEM, "io_u alloc %p, index %u\n", io_u, i);
1153
59d8d0f5 1154 if (data_xfer) {
2e1df07d
JA
1155 io_u->buf = p;
1156 dprint(FD_MEM, "io_u %p, mem %p\n", io_u, io_u->buf);
1157
1158 if (td_write(td))
9c42684e 1159 io_u_fill_buffer(td, io_u, min_write, max_bs);
2e1df07d
JA
1160 if (td_write(td) && td->o.verify_pattern_bytes) {
1161 /*
1162 * Fill the buffer with the pattern if we are
1163 * going to be doing writes.
1164 */
ce35b1ec 1165 fill_verify_pattern(td, io_u->buf, max_bs, io_u, 0, 0);
2e1df07d
JA
1166 }
1167 }
1168
1169 io_u->index = i;
1170 io_u->flags = IO_U_F_FREE;
2ae0b204
JA
1171 io_u_qpush(&td->io_u_freelist, io_u);
1172
1173 /*
1174 * io_u never leaves this stack, used for iteration of all
1175 * io_u buffers.
1176 */
1177 io_u_qpush(&td->io_u_all, io_u);
c73ed246
JA
1178
1179 if (td->io_ops->io_u_init) {
1180 int ret = td->io_ops->io_u_init(td, io_u);
1181
1182 if (ret) {
1183 log_err("fio: failed to init engine data: %d\n", ret);
1184 return 1;
1185 }
1186 }
1187
2e1df07d
JA
1188 p += max_bs;
1189 }
1190
ca09be4b
JA
1191 if (td->o.verify != VERIFY_NONE) {
1192 td->last_write_comp = scalloc(max_units, sizeof(uint64_t));
1193 if (!td->last_write_comp) {
1194 log_err("fio: failed to alloc write comp data\n");
1195 return 1;
1196 }
1197 }
1198
2e1df07d
JA
1199 return 0;
1200}
1201
1202static int switch_ioscheduler(struct thread_data *td)
1203{
1204 char tmp[256], tmp2[128];
1205 FILE *f;
1206 int ret;
1207
1208 if (td->io_ops->flags & FIO_DISKLESSIO)
1209 return 0;
1210
1211 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
1212
1213 f = fopen(tmp, "r+");
1214 if (!f) {
1215 if (errno == ENOENT) {
1216 log_err("fio: os or kernel doesn't support IO scheduler"
1217 " switching\n");
1218 return 0;
1219 }
1220 td_verror(td, errno, "fopen iosched");
1221 return 1;
1222 }
1223
1224 /*
1225 * Set io scheduler.
1226 */
1227 ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
1228 if (ferror(f) || ret != 1) {
1229 td_verror(td, errno, "fwrite");
1230 fclose(f);
1231 return 1;
1232 }
1233
1234 rewind(f);
1235
1236 /*
1237 * Read back and check that the selected scheduler is now the default.
1238 */
b44b9e45 1239 memset(tmp, 0, sizeof(tmp));
49c6f33d 1240 ret = fread(tmp, sizeof(tmp), 1, f);
2e1df07d
JA
1241 if (ferror(f) || ret < 0) {
1242 td_verror(td, errno, "fread");
1243 fclose(f);
1244 return 1;
1245 }
b44b9e45
TK
1246 /*
1247 * either a list of io schedulers or "none\n" is expected.
1248 */
1249 tmp[strlen(tmp) - 1] = '\0';
49c6f33d 1250
2e1df07d
JA
1251
1252 sprintf(tmp2, "[%s]", td->o.ioscheduler);
1253 if (!strstr(tmp, tmp2)) {
1254 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
1255 td_verror(td, EINVAL, "iosched_switch");
1256 fclose(f);
1257 return 1;
1258 }
1259
1260 fclose(f);
1261 return 0;
1262}
1263
e39c0676 1264static bool keep_running(struct thread_data *td)
2e1df07d 1265{
77731b29
JA
1266 unsigned long long limit;
1267
2e1df07d 1268 if (td->done)
e39c0676 1269 return false;
2e1df07d 1270 if (td->o.time_based)
e39c0676 1271 return true;
2e1df07d
JA
1272 if (td->o.loops) {
1273 td->o.loops--;
e39c0676 1274 return true;
2e1df07d 1275 }
3939fe85 1276 if (exceeds_number_ios(td))
e39c0676 1277 return false;
26251d8d 1278
77731b29
JA
1279 if (td->o.io_limit)
1280 limit = td->o.io_limit;
1281 else
1282 limit = td->o.size;
1283
1284 if (limit != -1ULL && ddir_rw_sum(td->io_bytes) < limit) {
5bd5f71a
JA
1285 uint64_t diff;
1286
1287 /*
1288 * If the difference is less than the minimum IO size, we
1289 * are done.
1290 */
77731b29 1291 diff = limit - ddir_rw_sum(td->io_bytes);
74f4b020 1292 if (diff < td_max_bs(td))
e39c0676 1293 return false;
5bd5f71a 1294
002fe734 1295 if (fio_files_done(td))
e39c0676 1296 return false;
002fe734 1297
e39c0676 1298 return true;
5bd5f71a 1299 }
2e1df07d 1300
e39c0676 1301 return false;
2e1df07d
JA
1302}
1303
ce486495 1304static int exec_string(struct thread_options *o, const char *string, const char *mode)
2e1df07d 1305{
6c9ce469 1306 size_t newlen = strlen(string) + strlen(o->name) + strlen(mode) + 9 + 1;
f491a907 1307 int ret;
2e1df07d
JA
1308 char *str;
1309
1310 str = malloc(newlen);
ce486495 1311 sprintf(str, "%s &> %s.%s.txt", string, o->name, mode);
2e1df07d 1312
ce486495 1313 log_info("%s : Saving output of %s in %s.%s.txt\n",o->name, mode, o->name, mode);
2e1df07d
JA
1314 ret = system(str);
1315 if (ret == -1)
1316 log_err("fio: exec of cmd <%s> failed\n", str);
1317
1318 free(str);
1319 return ret;
1320}
1321
62167762
JC
1322/*
1323 * Dry run to compute correct state of numberio for verification.
1324 */
1325static uint64_t do_dry_run(struct thread_data *td)
1326{
62167762
JC
1327 td_set_runstate(td, TD_RUNNING);
1328
1329 while ((td->o.read_iolog_file && !flist_empty(&td->io_log_list)) ||
e28dd2cf 1330 (!flist_empty(&td->trim_list)) || !io_complete_bytes_exceeded(td)) {
62167762
JC
1331 struct io_u *io_u;
1332 int ret;
1333
1334 if (td->terminate || td->done)
1335 break;
1336
1337 io_u = get_io_u(td);
1338 if (!io_u)
1339 break;
1340
a9da8ab2 1341 io_u_set(io_u, IO_U_F_FLIGHT);
62167762
JC
1342 io_u->error = 0;
1343 io_u->resid = 0;
1344 if (ddir_rw(acct_ddir(io_u)))
1345 td->io_issues[acct_ddir(io_u)]++;
1346 if (ddir_rw(io_u->ddir)) {
1347 io_u_mark_depth(td, 1);
1348 td->ts.total_io_u[io_u->ddir]++;
1349 }
1350
2e63e96b
PV
1351 if (td_write(td) && io_u->ddir == DDIR_WRITE &&
1352 td->o.do_verify &&
1353 td->o.verify != VERIFY_NONE &&
1354 !td->o.experimental_verify)
1355 log_io_piece(td, io_u);
1356
55312f9f 1357 ret = io_u_sync_complete(td, io_u);
62167762
JC
1358 (void) ret;
1359 }
1360
55312f9f 1361 return td->bytes_done[DDIR_WRITE] + td->bytes_done[DDIR_TRIM];
62167762
JC
1362}
1363
ee2b6d6e
JA
1364static void io_workqueue_fn(struct submit_worker *sw,
1365 struct workqueue_work *work)
a9da8ab2 1366{
88271841 1367 struct io_u *io_u = container_of(work, struct io_u, work);
a9da8ab2 1368 const enum fio_ddir ddir = io_u->ddir;
ee2b6d6e 1369 struct thread_data *td = sw->private;
a9da8ab2
JA
1370 int ret;
1371
1372 dprint(FD_RATE, "io_u %p queued by %u\n", io_u, gettid());
1373
1374 io_u_set(io_u, IO_U_F_NO_FILE_PUT);
1375
1376 td->cur_depth++;
1377
40649b00
JA
1378 do {
1379 ret = td_io_queue(td, io_u);
1380 if (ret != FIO_Q_BUSY)
1381 break;
1382 ret = io_u_queued_complete(td, 1);
1383 if (ret > 0)
1384 td->cur_depth -= ret;
1385 io_u_clear(io_u, IO_U_F_FLIGHT);
1386 } while (1);
a9da8ab2
JA
1387
1388 dprint(FD_RATE, "io_u %p ret %d by %u\n", io_u, ret, gettid());
1389
1390 io_queue_event(td, io_u, &ret, ddir, NULL, 0, NULL);
1391
40649b00
JA
1392 if (ret == FIO_Q_COMPLETED)
1393 td->cur_depth--;
1394 else if (ret == FIO_Q_QUEUED) {
1395 unsigned int min_evts;
a9da8ab2 1396
40649b00
JA
1397 if (td->o.iodepth == 1)
1398 min_evts = 1;
1399 else
1400 min_evts = 0;
1401
1402 ret = io_u_queued_complete(td, min_evts);
1403 if (ret > 0)
1404 td->cur_depth -= ret;
1405 } else if (ret == FIO_Q_BUSY) {
1406 ret = io_u_queued_complete(td, td->cur_depth);
1407 if (ret > 0)
1408 td->cur_depth -= ret;
1409 }
a9da8ab2
JA
1410}
1411
ee2b6d6e 1412static bool io_workqueue_pre_sleep_flush_fn(struct submit_worker *sw)
5bb79f69 1413{
ee2b6d6e
JA
1414 struct thread_data *td = sw->private;
1415
5bb79f69
JA
1416 if (td->io_u_queued || td->cur_depth || td->io_u_in_flight)
1417 return true;
1418
1419 return false;
1420}
1421
ee2b6d6e 1422static void io_workqueue_pre_sleep_fn(struct submit_worker *sw)
5bb79f69 1423{
ee2b6d6e 1424 struct thread_data *td = sw->private;
5bb79f69
JA
1425 int ret;
1426
1427 ret = io_u_quiesce(td);
1428 if (ret > 0)
1429 td->cur_depth -= ret;
1430}
1431
ee2b6d6e
JA
1432static int io_workqueue_alloc_fn(struct submit_worker *sw)
1433{
1434 struct thread_data *td;
1435
1436 td = calloc(1, sizeof(*td));
1437 sw->private = td;
1438 return 0;
1439}
1440
1441static void io_workqueue_free_fn(struct submit_worker *sw)
1442{
1443 free(sw->private);
1444 sw->private = NULL;
1445}
1446
80ea26a8
JA
1447static int io_workqueue_init_worker_fn(struct submit_worker *sw)
1448{
1449 struct thread_data *parent = sw->wq->td;
1450 struct thread_data *td = sw->private;
1451 int fio_unused ret;
1452
1453 memcpy(&td->o, &parent->o, sizeof(td->o));
1454 memcpy(&td->ts, &parent->ts, sizeof(td->ts));
1455 td->o.uid = td->o.gid = -1U;
1456 dup_files(td, parent);
1457 td->eo = parent->eo;
1458 fio_options_mem_dupe(td);
1459
1460 if (ioengine_load(td))
1461 goto err;
1462
1463 if (td->o.odirect)
1464 td->io_ops->flags |= FIO_RAWIO;
1465
1466 td->pid = gettid();
1467
1468 INIT_FLIST_HEAD(&td->io_log_list);
1469 INIT_FLIST_HEAD(&td->io_hist_list);
1470 INIT_FLIST_HEAD(&td->verify_list);
1471 INIT_FLIST_HEAD(&td->trim_list);
1472 INIT_FLIST_HEAD(&td->next_rand_list);
1473 td->io_hist_tree = RB_ROOT;
1474
1475 td->o.iodepth = 1;
1476 if (td_io_init(td))
1477 goto err_io_init;
1478
1479 fio_gettime(&td->epoch, NULL);
1480 fio_getrusage(&td->ru_start);
1481 clear_io_state(td, 1);
1482
1483 td_set_runstate(td, TD_RUNNING);
1484 td->flags |= TD_F_CHILD;
1485 td->parent = parent;
1486 return 0;
1487
1488err_io_init:
1489 close_ioengine(td);
1490err:
1491 return 1;
1492
1493}
1494
5bb79f69
JA
1495struct workqueue_ops rated_wq_ops = {
1496 .fn = io_workqueue_fn,
1497 .pre_sleep_flush_fn = io_workqueue_pre_sleep_flush_fn,
1498 .pre_sleep_fn = io_workqueue_pre_sleep_fn,
ee2b6d6e
JA
1499 .alloc_worker_fn = io_workqueue_alloc_fn,
1500 .free_worker_fn = io_workqueue_free_fn,
80ea26a8 1501 .init_worker_fn = io_workqueue_init_worker_fn,
5bb79f69
JA
1502};
1503
2e1df07d
JA
1504/*
1505 * Entry point for the thread based jobs. The process based jobs end up
1506 * here as well, after a little setup.
1507 */
1508static void *thread_main(void *data)
1509{
95603b74 1510 unsigned long long elapsed_us[DDIR_RWDIR_CNT] = { 0, };
2e1df07d 1511 struct thread_data *td = data;
4896473e 1512 struct thread_options *o = &td->o;
2e1df07d
JA
1513 pthread_condattr_t attr;
1514 int clear_state;
28727df7 1515 int ret;
2e1df07d 1516
4896473e 1517 if (!o->use_thread) {
2e1df07d
JA
1518 setsid();
1519 td->pid = getpid();
1520 } else
1521 td->pid = gettid();
1522
4896473e 1523 fio_local_clock_init(o->use_thread);
5d879392 1524
2e1df07d
JA
1525 dprint(FD_PROCESS, "jobs pid=%d started\n", (int) td->pid);
1526
122c7725
JA
1527 if (is_backend)
1528 fio_server_send_start(td);
1529
2e1df07d
JA
1530 INIT_FLIST_HEAD(&td->io_log_list);
1531 INIT_FLIST_HEAD(&td->io_hist_list);
1532 INIT_FLIST_HEAD(&td->verify_list);
1533 INIT_FLIST_HEAD(&td->trim_list);
1ae83d45 1534 INIT_FLIST_HEAD(&td->next_rand_list);
2e1df07d
JA
1535 pthread_mutex_init(&td->io_u_lock, NULL);
1536 td->io_hist_tree = RB_ROOT;
1537
1538 pthread_condattr_init(&attr);
1539 pthread_cond_init(&td->verify_cond, &attr);
1540 pthread_cond_init(&td->free_cond, &attr);
1541
1542 td_set_runstate(td, TD_INITIALIZED);
1543 dprint(FD_MUTEX, "up startup_mutex\n");
1544 fio_mutex_up(startup_mutex);
1545 dprint(FD_MUTEX, "wait on td->mutex\n");
1546 fio_mutex_down(td->mutex);
1547 dprint(FD_MUTEX, "done waiting on td->mutex\n");
1548
2e1df07d
JA
1549 /*
1550 * A new gid requires privilege, so we need to do this before setting
1551 * the uid.
1552 */
4896473e 1553 if (o->gid != -1U && setgid(o->gid)) {
2e1df07d
JA
1554 td_verror(td, errno, "setgid");
1555 goto err;
1556 }
4896473e 1557 if (o->uid != -1U && setuid(o->uid)) {
2e1df07d
JA
1558 td_verror(td, errno, "setuid");
1559 goto err;
1560 }
1561
1562 /*
1563 * If we have a gettimeofday() thread, make sure we exclude that
1564 * thread from this job
1565 */
4896473e
JA
1566 if (o->gtod_cpu)
1567 fio_cpu_clear(&o->cpumask, o->gtod_cpu);
2e1df07d
JA
1568
1569 /*
1570 * Set affinity first, in case it has an impact on the memory
1571 * allocations.
1572 */
b2a9e649 1573 if (fio_option_is_set(o, cpumask)) {
c2acfbac 1574 if (o->cpus_allowed_policy == FIO_CPUS_SPLIT) {
30cb4c65 1575 ret = fio_cpus_split(&o->cpumask, td->thread_number - 1);
c2acfbac
JA
1576 if (!ret) {
1577 log_err("fio: no CPUs set\n");
1578 log_err("fio: Try increasing number of available CPUs\n");
1579 td_verror(td, EINVAL, "cpus_split");
1580 goto err;
1581 }
1582 }
28727df7
JA
1583 ret = fio_setaffinity(td->pid, o->cpumask);
1584 if (ret == -1) {
4896473e
JA
1585 td_verror(td, errno, "cpu_set_affinity");
1586 goto err;
1587 }
2e1df07d
JA
1588 }
1589
67bf9823 1590#ifdef CONFIG_LIBNUMA
d0b937ed 1591 /* numa node setup */
b2a9e649
JA
1592 if (fio_option_is_set(o, numa_cpunodes) ||
1593 fio_option_is_set(o, numa_memnodes)) {
43522848 1594 struct bitmask *mask;
d0b937ed
YR
1595
1596 if (numa_available() < 0) {
1597 td_verror(td, errno, "Does not support NUMA API\n");
1598 goto err;
1599 }
1600
b2a9e649 1601 if (fio_option_is_set(o, numa_cpunodes)) {
43522848
DG
1602 mask = numa_parse_nodestring(o->numa_cpunodes);
1603 ret = numa_run_on_node_mask(mask);
1604 numa_free_nodemask(mask);
d0b937ed
YR
1605 if (ret == -1) {
1606 td_verror(td, errno, \
1607 "numa_run_on_node_mask failed\n");
1608 goto err;
1609 }
1610 }
1611
b2a9e649 1612 if (fio_option_is_set(o, numa_memnodes)) {
43522848
DG
1613 mask = NULL;
1614 if (o->numa_memnodes)
1615 mask = numa_parse_nodestring(o->numa_memnodes);
1616
4896473e 1617 switch (o->numa_mem_mode) {
d0b937ed 1618 case MPOL_INTERLEAVE:
43522848 1619 numa_set_interleave_mask(mask);
d0b937ed
YR
1620 break;
1621 case MPOL_BIND:
43522848 1622 numa_set_membind(mask);
d0b937ed
YR
1623 break;
1624 case MPOL_LOCAL:
1625 numa_set_localalloc();
1626 break;
1627 case MPOL_PREFERRED:
4896473e 1628 numa_set_preferred(o->numa_mem_prefer_node);
d0b937ed
YR
1629 break;
1630 case MPOL_DEFAULT:
1631 default:
1632 break;
1633 }
1634
43522848
DG
1635 if (mask)
1636 numa_free_nodemask(mask);
1637
d0b937ed
YR
1638 }
1639 }
1640#endif
1641
9a3f1100
JA
1642 if (fio_pin_memory(td))
1643 goto err;
1644
2e1df07d
JA
1645 /*
1646 * May alter parameters that init_io_u() will use, so we need to
1647 * do this first.
1648 */
1649 if (init_iolog(td))
1650 goto err;
1651
1652 if (init_io_u(td))
1653 goto err;
1654
4896473e 1655 if (o->verify_async && verify_async_init(td))
2e1df07d
JA
1656 goto err;
1657
27d74836
JA
1658 if (fio_option_is_set(o, ioprio) ||
1659 fio_option_is_set(o, ioprio_class)) {
28727df7
JA
1660 ret = ioprio_set(IOPRIO_WHO_PROCESS, 0, o->ioprio_class, o->ioprio);
1661 if (ret == -1) {
2e1df07d
JA
1662 td_verror(td, errno, "ioprio_set");
1663 goto err;
1664 }
1665 }
1666
4896473e 1667 if (o->cgroup && cgroup_setup(td, cgroup_list, &cgroup_mnt))
2e1df07d
JA
1668 goto err;
1669
649c10c5 1670 errno = 0;
4896473e 1671 if (nice(o->nice) == -1 && errno != 0) {
2e1df07d
JA
1672 td_verror(td, errno, "nice");
1673 goto err;
1674 }
1675
4896473e 1676 if (o->ioscheduler && switch_ioscheduler(td))
2e1df07d
JA
1677 goto err;
1678
4896473e 1679 if (!o->create_serialize && setup_files(td))
2e1df07d
JA
1680 goto err;
1681
1682 if (td_io_init(td))
1683 goto err;
1684
1685 if (init_random_map(td))
1686 goto err;
1687
ce486495 1688 if (o->exec_prerun && exec_string(o, o->exec_prerun, (const char *)"prerun"))
4896473e 1689 goto err;
2e1df07d 1690
4896473e 1691 if (o->pre_read) {
2e1df07d
JA
1692 if (pre_read_files(td) < 0)
1693 goto err;
1694 }
1695
aee2ab67
JA
1696 if (td->flags & TD_F_COMPRESS_LOG)
1697 tp_init(&td->tp_data);
1698
dc5bfbb2
JA
1699 fio_verify_init(td);
1700
a9da8ab2 1701 if ((o->io_submit_mode == IO_MODE_OFFLOAD) &&
5bb79f69 1702 workqueue_init(td, &td->io_wq, &rated_wq_ops, td->o.iodepth))
a9da8ab2
JA
1703 goto err;
1704
2e1df07d 1705 fio_gettime(&td->epoch, NULL);
44404c5a 1706 fio_getrusage(&td->ru_start);
ac28d905
JA
1707 memcpy(&td->bw_sample_time, &td->epoch, sizeof(td->epoch));
1708 memcpy(&td->iops_sample_time, &td->epoch, sizeof(td->epoch));
1709
1710 if (o->ratemin[DDIR_READ] || o->ratemin[DDIR_WRITE] ||
1711 o->ratemin[DDIR_TRIM]) {
1712 memcpy(&td->lastrate[DDIR_READ], &td->bw_sample_time,
1713 sizeof(td->bw_sample_time));
1714 memcpy(&td->lastrate[DDIR_WRITE], &td->bw_sample_time,
1715 sizeof(td->bw_sample_time));
1716 memcpy(&td->lastrate[DDIR_TRIM], &td->bw_sample_time,
1717 sizeof(td->bw_sample_time));
1718 }
1719
2e1df07d
JA
1720 clear_state = 0;
1721 while (keep_running(td)) {
100f49f1
JA
1722 uint64_t verify_bytes;
1723
2e1df07d 1724 fio_gettime(&td->start, NULL);
2e1df07d
JA
1725 memcpy(&td->tv_cache, &td->start, sizeof(td->start));
1726
2e1df07d 1727 if (clear_state)
ac28d905 1728 clear_io_state(td, 0);
2e1df07d
JA
1729
1730 prune_io_piece_log(td);
1731
62167762
JC
1732 if (td->o.verify_only && (td_write(td) || td_rw(td)))
1733 verify_bytes = do_dry_run(td);
1734 else
1735 verify_bytes = do_io(td);
2e1df07d
JA
1736
1737 clear_state = 1;
1738
40c666c8
JA
1739 /*
1740 * Make sure we've successfully updated the rusage stats
1741 * before waiting on the stat mutex. Otherwise we could have
1742 * the stat thread holding stat mutex and waiting for
1743 * the rusage_sem, which would never get upped because
1744 * this thread is waiting for the stat mutex.
1745 */
1746 check_update_rusage(td);
1747
e5437a07 1748 fio_mutex_down(stat_mutex);
95603b74
BF
1749 if (td_read(td) && td->io_bytes[DDIR_READ])
1750 update_runtime(td, elapsed_us, DDIR_READ);
1751 if (td_write(td) && td->io_bytes[DDIR_WRITE])
1752 update_runtime(td, elapsed_us, DDIR_WRITE);
1753 if (td_trim(td) && td->io_bytes[DDIR_TRIM])
1754 update_runtime(td, elapsed_us, DDIR_TRIM);
e5437a07
VT
1755 fio_gettime(&td->start, NULL);
1756 fio_mutex_up(stat_mutex);
2e1df07d
JA
1757
1758 if (td->error || td->terminate)
1759 break;
1760
4896473e
JA
1761 if (!o->do_verify ||
1762 o->verify == VERIFY_NONE ||
2e1df07d
JA
1763 (td->io_ops->flags & FIO_UNIDIR))
1764 continue;
1765
ac28d905 1766 clear_io_state(td, 0);
2e1df07d
JA
1767
1768 fio_gettime(&td->start, NULL);
1769
100f49f1 1770 do_verify(td, verify_bytes);
2e1df07d 1771
40c666c8
JA
1772 /*
1773 * See comment further up for why this is done here.
1774 */
1775 check_update_rusage(td);
1776
e5437a07 1777 fio_mutex_down(stat_mutex);
95603b74 1778 update_runtime(td, elapsed_us, DDIR_READ);
e5437a07
VT
1779 fio_gettime(&td->start, NULL);
1780 fio_mutex_up(stat_mutex);
2e1df07d
JA
1781
1782 if (td->error || td->terminate)
1783 break;
1784 }
1785
1786 update_rusage_stat(td);
2e1df07d 1787 td->ts.total_run_time = mtime_since_now(&td->epoch);
6eaf09d6
SL
1788 td->ts.io_bytes[DDIR_READ] = td->io_bytes[DDIR_READ];
1789 td->ts.io_bytes[DDIR_WRITE] = td->io_bytes[DDIR_WRITE];
1790 td->ts.io_bytes[DDIR_TRIM] = td->io_bytes[DDIR_TRIM];
2e1df07d 1791
ca09be4b 1792 if (td->o.verify_state_save && !(td->flags & TD_F_VSTATE_SAVED) &&
d264264a
JA
1793 (td->o.verify != VERIFY_NONE && td_write(td)))
1794 verify_save_state(td->thread_number);
ca09be4b 1795
9a3f1100
JA
1796 fio_unpin_memory(td);
1797
905e3d4f 1798 fio_writeout_logs(td);
2e1df07d 1799
a9da8ab2
JA
1800 if (o->io_submit_mode == IO_MODE_OFFLOAD)
1801 workqueue_exit(&td->io_wq);
1802
aee2ab67
JA
1803 if (td->flags & TD_F_COMPRESS_LOG)
1804 tp_exit(&td->tp_data);
1805
4896473e 1806 if (o->exec_postrun)
ce486495 1807 exec_string(o, o->exec_postrun, (const char *)"postrun");
2e1df07d
JA
1808
1809 if (exitall_on_terminate)
1810 fio_terminate_threads(td->groupid);
1811
1812err:
1813 if (td->error)
1814 log_info("fio: pid=%d, err=%d/%s\n", (int) td->pid, td->error,
1815 td->verror);
1816
4896473e 1817 if (o->verify_async)
2e1df07d
JA
1818 verify_async_exit(td);
1819
1820 close_and_free_files(td);
2e1df07d 1821 cleanup_io_u(td);
32dbca2c 1822 close_ioengine(td);
2e1df07d 1823 cgroup_shutdown(td, &cgroup_mnt);
ca09be4b 1824 verify_free_state(td);
2e1df07d 1825
b2a9e649 1826 if (fio_option_is_set(o, cpumask)) {
8a1db9a1
JA
1827 ret = fio_cpuset_exit(&o->cpumask);
1828 if (ret)
1829 td_verror(td, ret, "fio_cpuset_exit");
2e1df07d
JA
1830 }
1831
1832 /*
1833 * do this very late, it will log file closing as well
1834 */
4896473e 1835 if (o->write_iolog_file)
2e1df07d
JA
1836 write_iolog_close(td);
1837
ea66e04f
JA
1838 fio_mutex_remove(td->mutex);
1839 td->mutex = NULL;
1840
2e1df07d 1841 td_set_runstate(td, TD_EXITED);
fda2cfac
JA
1842
1843 /*
1844 * Do this last after setting our runstate to exited, so we
1845 * know that the stat thread is signaled.
1846 */
1847 check_update_rusage(td);
1848
e43606c2 1849 return (void *) (uintptr_t) td->error;
2e1df07d
JA
1850}
1851
1852
1853/*
1854 * We cannot pass the td data into a forked process, so attach the td and
1855 * pass it to the thread worker.
1856 */
1857static int fork_main(int shmid, int offset)
1858{
1859 struct thread_data *td;
1860 void *data, *ret;
1861
c8931876 1862#if !defined(__hpux) && !defined(CONFIG_NO_SHM)
2e1df07d
JA
1863 data = shmat(shmid, NULL, 0);
1864 if (data == (void *) -1) {
1865 int __err = errno;
1866
1867 perror("shmat");
1868 return __err;
1869 }
1870#else
1871 /*
1872 * HP-UX inherits shm mappings?
1873 */
1874 data = threads;
1875#endif
1876
1877 td = data + offset * sizeof(struct thread_data);
1878 ret = thread_main(td);
1879 shmdt(data);
e43606c2 1880 return (int) (uintptr_t) ret;
2e1df07d
JA
1881}
1882
cba5460c
JA
1883static void dump_td_info(struct thread_data *td)
1884{
1885 log_err("fio: job '%s' hasn't exited in %lu seconds, it appears to "
1886 "be stuck. Doing forceful exit of this job.\n", td->o.name,
1887 (unsigned long) time_since_now(&td->terminate_time));
1888}
1889
2e1df07d
JA
1890/*
1891 * Run over the job map and reap the threads that have exited, if any.
1892 */
1893static void reap_threads(unsigned int *nr_running, unsigned int *t_rate,
1894 unsigned int *m_rate)
1895{
1896 struct thread_data *td;
1897 unsigned int cputhreads, realthreads, pending;
1898 int i, status, ret;
1899
1900 /*
1901 * reap exited threads (TD_EXITED -> TD_REAPED)
1902 */
1903 realthreads = pending = cputhreads = 0;
1904 for_each_td(td, i) {
1905 int flags = 0;
1906
1907 /*
1908 * ->io_ops is NULL for a thread that has closed its
1909 * io engine
1910 */
1911 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
1912 cputhreads++;
1913 else
1914 realthreads++;
1915
1916 if (!td->pid) {
1917 pending++;
1918 continue;
1919 }
1920 if (td->runstate == TD_REAPED)
1921 continue;
1922 if (td->o.use_thread) {
1923 if (td->runstate == TD_EXITED) {
1924 td_set_runstate(td, TD_REAPED);
1925 goto reaped;
1926 }
1927 continue;
1928 }
1929
1930 flags = WNOHANG;
1931 if (td->runstate == TD_EXITED)
1932 flags = 0;
1933
1934 /*
1935 * check if someone quit or got killed in an unusual way
1936 */
1937 ret = waitpid(td->pid, &status, flags);
1938 if (ret < 0) {
1939 if (errno == ECHILD) {
1940 log_err("fio: pid=%d disappeared %d\n",
1941 (int) td->pid, td->runstate);
a5e371a6 1942 td->sig = ECHILD;
2e1df07d
JA
1943 td_set_runstate(td, TD_REAPED);
1944 goto reaped;
1945 }
1946 perror("waitpid");
1947 } else if (ret == td->pid) {
1948 if (WIFSIGNALED(status)) {
1949 int sig = WTERMSIG(status);
1950
36d80bc7 1951 if (sig != SIGTERM && sig != SIGUSR2)
2e1df07d
JA
1952 log_err("fio: pid=%d, got signal=%d\n",
1953 (int) td->pid, sig);
a5e371a6 1954 td->sig = sig;
2e1df07d
JA
1955 td_set_runstate(td, TD_REAPED);
1956 goto reaped;
1957 }
1958 if (WIFEXITED(status)) {
1959 if (WEXITSTATUS(status) && !td->error)
1960 td->error = WEXITSTATUS(status);
1961
1962 td_set_runstate(td, TD_REAPED);
1963 goto reaped;
1964 }
1965 }
1966
cba5460c
JA
1967 /*
1968 * If the job is stuck, do a forceful timeout of it and
1969 * move on.
1970 */
1971 if (td->terminate &&
1972 time_since_now(&td->terminate_time) >= FIO_REAP_TIMEOUT) {
1973 dump_td_info(td);
1974 td_set_runstate(td, TD_REAPED);
1975 goto reaped;
1976 }
1977
2e1df07d
JA
1978 /*
1979 * thread is not dead, continue
1980 */
1981 pending++;
1982 continue;
1983reaped:
1984 (*nr_running)--;
342f4be4
JA
1985 (*m_rate) -= ddir_rw_sum(td->o.ratemin);
1986 (*t_rate) -= ddir_rw_sum(td->o.rate);
2e1df07d
JA
1987 if (!td->pid)
1988 pending--;
1989
1990 if (td->error)
1991 exit_value++;
1992
1993 done_secs += mtime_since_now(&td->epoch) / 1000;
4a88752a 1994 profile_td_exit(td);
2e1df07d
JA
1995 }
1996
1997 if (*nr_running == cputhreads && !pending && realthreads)
1998 fio_terminate_threads(TERMINATE_ALL);
1999}
2000
e39c0676 2001static bool __check_trigger_file(void)
ca09be4b
JA
2002{
2003 struct stat sb;
2004
2005 if (!trigger_file)
e39c0676 2006 return false;
ca09be4b
JA
2007
2008 if (stat(trigger_file, &sb))
e39c0676 2009 return false;
ca09be4b
JA
2010
2011 if (unlink(trigger_file) < 0)
2012 log_err("fio: failed to unlink %s: %s\n", trigger_file,
2013 strerror(errno));
2014
e39c0676 2015 return true;
ca09be4b
JA
2016}
2017
e39c0676 2018static bool trigger_timedout(void)
ca09be4b
JA
2019{
2020 if (trigger_timeout)
2021 return time_since_genesis() >= trigger_timeout;
2022
e39c0676 2023 return false;
ca09be4b
JA
2024}
2025
2026void exec_trigger(const char *cmd)
2027{
2028 int ret;
2029
2030 if (!cmd)
2031 return;
2032
2033 ret = system(cmd);
2034 if (ret == -1)
2035 log_err("fio: failed executing %s trigger\n", cmd);
2036}
2037
2038void check_trigger_file(void)
2039{
2040 if (__check_trigger_file() || trigger_timedout()) {
796fb3ce
JA
2041 if (nr_clients)
2042 fio_clients_send_trigger(trigger_remote_cmd);
2043 else {
d264264a 2044 verify_save_state(IO_LIST_ALL);
ca09be4b
JA
2045 fio_terminate_threads(TERMINATE_ALL);
2046 exec_trigger(trigger_cmd);
2047 }
2048 }
2049}
2050
2051static int fio_verify_load_state(struct thread_data *td)
2052{
2053 int ret;
2054
2055 if (!td->o.verify_state)
2056 return 0;
2057
2058 if (is_backend) {
2059 void *data;
c3546b53 2060 int ver;
ca09be4b
JA
2061
2062 ret = fio_server_get_verify_state(td->o.name,
c3546b53 2063 td->thread_number - 1, &data, &ver);
ca09be4b 2064 if (!ret)
c3546b53 2065 verify_convert_assign_state(td, data, ver);
ca09be4b
JA
2066 } else
2067 ret = verify_load_state(td, "local");
2068
2069 return ret;
2070}
2071
06464907
JA
2072static void do_usleep(unsigned int usecs)
2073{
2074 check_for_running_stats();
ca09be4b 2075 check_trigger_file();
06464907
JA
2076 usleep(usecs);
2077}
2078
e39c0676 2079static bool check_mount_writes(struct thread_data *td)
e81ecca3
JA
2080{
2081 struct fio_file *f;
2082 unsigned int i;
2083
2084 if (!td_write(td) || td->o.allow_mounted_write)
e39c0676 2085 return false;
e81ecca3
JA
2086
2087 for_each_file(td, f, i) {
2088 if (f->filetype != FIO_TYPE_BD)
2089 continue;
2090 if (device_is_mounted(f->file_name))
2091 goto mounted;
2092 }
2093
e39c0676 2094 return false;
e81ecca3
JA
2095mounted:
2096 log_err("fio: %s appears mounted, and 'allow_mounted_write' isn't set. Aborting.", f->file_name);
e39c0676 2097 return true;
e81ecca3
JA
2098}
2099
2e1df07d
JA
2100/*
2101 * Main function for kicking off and reaping jobs, as needed.
2102 */
2103static void run_threads(void)
2104{
2105 struct thread_data *td;
2e1df07d 2106 unsigned int i, todo, nr_running, m_rate, t_rate, nr_started;
0de5b26f 2107 uint64_t spent;
2e1df07d 2108
2e1df07d
JA
2109 if (fio_gtod_offload && fio_start_gtod_thread())
2110 return;
334185e9 2111
f2a2ce0e 2112 fio_idle_prof_init();
2e1df07d
JA
2113
2114 set_sig_handlers();
2115
3a5f6bde
JA
2116 nr_thread = nr_process = 0;
2117 for_each_td(td, i) {
e81ecca3
JA
2118 if (check_mount_writes(td))
2119 return;
3a5f6bde
JA
2120 if (td->o.use_thread)
2121 nr_thread++;
2122 else
2123 nr_process++;
2124 }
2125
01cfefcc 2126 if (output_format & FIO_OUTPUT_NORMAL) {
2e1df07d
JA
2127 log_info("Starting ");
2128 if (nr_thread)
2129 log_info("%d thread%s", nr_thread,
2130 nr_thread > 1 ? "s" : "");
2131 if (nr_process) {
2132 if (nr_thread)
2133 log_info(" and ");
2134 log_info("%d process%s", nr_process,
2135 nr_process > 1 ? "es" : "");
2136 }
2137 log_info("\n");
e411c301 2138 log_info_flush();
2e1df07d
JA
2139 }
2140
2141 todo = thread_number;
2142 nr_running = 0;
2143 nr_started = 0;
2144 m_rate = t_rate = 0;
2145
2146 for_each_td(td, i) {
2147 print_status_init(td->thread_number - 1);
2148
2149 if (!td->o.create_serialize)
2150 continue;
2151
ca09be4b
JA
2152 if (fio_verify_load_state(td))
2153 goto reap;
2154
2e1df07d
JA
2155 /*
2156 * do file setup here so it happens sequentially,
2157 * we don't want X number of threads getting their
2158 * client data interspersed on disk
2159 */
2160 if (setup_files(td)) {
ca09be4b 2161reap:
2e1df07d
JA
2162 exit_value++;
2163 if (td->error)
2164 log_err("fio: pid=%d, err=%d/%s\n",
2165 (int) td->pid, td->error, td->verror);
2166 td_set_runstate(td, TD_REAPED);
2167 todo--;
2168 } else {
2169 struct fio_file *f;
2170 unsigned int j;
2171
2172 /*
2173 * for sharing to work, each job must always open
2174 * its own files. so close them, if we opened them
2175 * for creation
2176 */
2177 for_each_file(td, f, j) {
2178 if (fio_file_open(f))
2179 td_io_close_file(td, f);
2180 }
2181 }
2182 }
2183
f2a2ce0e
HL
2184 /* start idle threads before io threads start to run */
2185 fio_idle_prof_start();
2186
2e1df07d
JA
2187 set_genesis_time();
2188
2189 while (todo) {
2190 struct thread_data *map[REAL_MAX_JOBS];
2191 struct timeval this_start;
2192 int this_jobs = 0, left;
2193
2194 /*
2195 * create threads (TD_NOT_CREATED -> TD_CREATED)
2196 */
2197 for_each_td(td, i) {
2198 if (td->runstate != TD_NOT_CREATED)
2199 continue;
2200
2201 /*
2202 * never got a chance to start, killed by other
2203 * thread for some reason
2204 */
2205 if (td->terminate) {
2206 todo--;
2207 continue;
2208 }
2209
2210 if (td->o.start_delay) {
0de5b26f 2211 spent = utime_since_genesis();
2e1df07d 2212
74454ce4 2213 if (td->o.start_delay > spent)
2e1df07d
JA
2214 continue;
2215 }
2216
2217 if (td->o.stonewall && (nr_started || nr_running)) {
2218 dprint(FD_PROCESS, "%s: stonewall wait\n",
2219 td->o.name);
2220 break;
2221 }
2222
2223 init_disk_util(td);
2224
c97f1ad6
JA
2225 td->rusage_sem = fio_mutex_init(FIO_MUTEX_LOCKED);
2226 td->update_rusage = 0;
2227
2e1df07d
JA
2228 /*
2229 * Set state to created. Thread will transition
2230 * to TD_INITIALIZED when it's done setting up.
2231 */
2232 td_set_runstate(td, TD_CREATED);
2233 map[this_jobs++] = td;
2234 nr_started++;
2235
2236 if (td->o.use_thread) {
2237 int ret;
2238
2239 dprint(FD_PROCESS, "will pthread_create\n");
2240 ret = pthread_create(&td->thread, NULL,
2241 thread_main, td);
2242 if (ret) {
2243 log_err("pthread_create: %s\n",
2244 strerror(ret));
2245 nr_started--;
2246 break;
2247 }
2248 ret = pthread_detach(td->thread);
2249 if (ret)
2250 log_err("pthread_detach: %s",
2251 strerror(ret));
2252 } else {
2253 pid_t pid;
2254 dprint(FD_PROCESS, "will fork\n");
2255 pid = fork();
2256 if (!pid) {
2257 int ret = fork_main(shm_id, i);
2258
2259 _exit(ret);
2260 } else if (i == fio_debug_jobno)
2261 *fio_debug_jobp = pid;
2262 }
2263 dprint(FD_MUTEX, "wait on startup_mutex\n");
2264 if (fio_mutex_down_timeout(startup_mutex, 10)) {
2265 log_err("fio: job startup hung? exiting.\n");
2266 fio_terminate_threads(TERMINATE_ALL);
2267 fio_abort = 1;
2268 nr_started--;
2269 break;
2270 }
2271 dprint(FD_MUTEX, "done waiting on startup_mutex\n");
2272 }
2273
2274 /*
2275 * Wait for the started threads to transition to
2276 * TD_INITIALIZED.
2277 */
2278 fio_gettime(&this_start, NULL);
2279 left = this_jobs;
2280 while (left && !fio_abort) {
2281 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
2282 break;
2283
06464907 2284 do_usleep(100000);
2e1df07d
JA
2285
2286 for (i = 0; i < this_jobs; i++) {
2287 td = map[i];
2288 if (!td)
2289 continue;
2290 if (td->runstate == TD_INITIALIZED) {
2291 map[i] = NULL;
2292 left--;
2293 } else if (td->runstate >= TD_EXITED) {
2294 map[i] = NULL;
2295 left--;
2296 todo--;
2297 nr_running++; /* work-around... */
2298 }
2299 }
2300 }
2301
2302 if (left) {
4e87c37a
JA
2303 log_err("fio: %d job%s failed to start\n", left,
2304 left > 1 ? "s" : "");
2e1df07d
JA
2305 for (i = 0; i < this_jobs; i++) {
2306 td = map[i];
2307 if (!td)
2308 continue;
2309 kill(td->pid, SIGTERM);
2310 }
2311 break;
2312 }
2313
2314 /*
2315 * start created threads (TD_INITIALIZED -> TD_RUNNING).
2316 */
2317 for_each_td(td, i) {
2318 if (td->runstate != TD_INITIALIZED)
2319 continue;
2320
2321 if (in_ramp_time(td))
2322 td_set_runstate(td, TD_RAMP);
2323 else
2324 td_set_runstate(td, TD_RUNNING);
2325 nr_running++;
2326 nr_started--;
342f4be4
JA
2327 m_rate += ddir_rw_sum(td->o.ratemin);
2328 t_rate += ddir_rw_sum(td->o.rate);
2e1df07d
JA
2329 todo--;
2330 fio_mutex_up(td->mutex);
2331 }
2332
2333 reap_threads(&nr_running, &t_rate, &m_rate);
2334
122c7725 2335 if (todo)
06464907 2336 do_usleep(100000);
2e1df07d
JA
2337 }
2338
2339 while (nr_running) {
2340 reap_threads(&nr_running, &t_rate, &m_rate);
06464907 2341 do_usleep(10000);
2e1df07d
JA
2342 }
2343
f2a2ce0e
HL
2344 fio_idle_prof_stop();
2345
2e1df07d 2346 update_io_ticks();
2e1df07d
JA
2347}
2348
5ddc6707 2349static void wait_for_helper_thread_exit(void)
9ec7779f 2350{
8aab824f
JA
2351 void *ret;
2352
98b4b0a2 2353 helper_exit = 1;
5ddc6707
JA
2354 pthread_cond_signal(&helper_cond);
2355 pthread_join(helper_thread, &ret);
9ec7779f
JA
2356}
2357
27357187
JA
2358static void free_disk_util(void)
2359{
27357187 2360 disk_util_prune_entries();
8aab824f 2361
5ddc6707 2362 pthread_cond_destroy(&helper_cond);
27357187
JA
2363}
2364
5ddc6707 2365static void *helper_thread_main(void *data)
2e1df07d 2366{
9ec7779f
JA
2367 int ret = 0;
2368
2e1df07d
JA
2369 fio_mutex_up(startup_mutex);
2370
8aab824f
JA
2371 while (!ret) {
2372 uint64_t sec = DISK_UTIL_MSEC / 1000;
2373 uint64_t nsec = (DISK_UTIL_MSEC % 1000) * 1000000;
2374 struct timespec ts;
2375 struct timeval tv;
2376
2377 gettimeofday(&tv, NULL);
2378 ts.tv_sec = tv.tv_sec + sec;
2379 ts.tv_nsec = (tv.tv_usec * 1000) + nsec;
f893b76d 2380
823952af 2381 if (ts.tv_nsec >= 1000000000ULL) {
8aab824f
JA
2382 ts.tv_nsec -= 1000000000ULL;
2383 ts.tv_sec++;
2384 }
2385
5ddc6707 2386 pthread_cond_timedwait(&helper_cond, &helper_lock, &ts);
8aab824f 2387
9ec7779f 2388 ret = update_io_ticks();
2e1df07d 2389
5ddc6707
JA
2390 if (helper_do_stat) {
2391 helper_do_stat = 0;
2392 __show_running_run_stats();
2393 }
2394
2e1df07d
JA
2395 if (!is_backend)
2396 print_thread_status();
2397 }
2398
2399 return NULL;
2400}
2401
5ddc6707 2402static int create_helper_thread(void)
2e1df07d
JA
2403{
2404 int ret;
2405
9ec7779f
JA
2406 setup_disk_util();
2407
5ddc6707
JA
2408 pthread_cond_init(&helper_cond, NULL);
2409 pthread_mutex_init(&helper_lock, NULL);
8aab824f 2410
5ddc6707 2411 ret = pthread_create(&helper_thread, NULL, helper_thread_main, NULL);
2e1df07d 2412 if (ret) {
5ddc6707 2413 log_err("Can't create helper thread: %s\n", strerror(ret));
2e1df07d
JA
2414 return 1;
2415 }
2416
2e1df07d
JA
2417 dprint(FD_MUTEX, "wait on startup_mutex\n");
2418 fio_mutex_down(startup_mutex);
2419 dprint(FD_MUTEX, "done waiting on startup_mutex\n");
2420 return 0;
2421}
2422
2e1df07d
JA
2423int fio_backend(void)
2424{
2425 struct thread_data *td;
2426 int i;
2427
2428 if (exec_profile) {
2429 if (load_profile(exec_profile))
2430 return 1;
2431 free(exec_profile);
2432 exec_profile = NULL;
2433 }
2434 if (!thread_number)
2435 return 0;
2436
2437 if (write_bw_log) {
aee2ab67
JA
2438 struct log_params p = {
2439 .log_type = IO_LOG_TYPE_BW,
2440 };
2441
2442 setup_log(&agg_io_log[DDIR_READ], &p, "agg-read_bw.log");
2443 setup_log(&agg_io_log[DDIR_WRITE], &p, "agg-write_bw.log");
2444 setup_log(&agg_io_log[DDIR_TRIM], &p, "agg-trim_bw.log");
2e1df07d
JA
2445 }
2446
521da527 2447 startup_mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
2e1df07d
JA
2448 if (startup_mutex == NULL)
2449 return 1;
2e1df07d
JA
2450
2451 set_genesis_time();
cef9175e 2452 stat_init();
5ddc6707 2453 create_helper_thread();
2e1df07d
JA
2454
2455 cgroup_list = smalloc(sizeof(*cgroup_list));
2456 INIT_FLIST_HEAD(cgroup_list);
2457
2458 run_threads();
2459
5ddc6707 2460 wait_for_helper_thread_exit();
8aab824f 2461
2e1df07d 2462 if (!fio_abort) {
83f7b64e 2463 __show_run_stats();
2e1df07d 2464 if (write_bw_log) {
cb7e0ace
JA
2465 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
2466 struct io_log *log = agg_io_log[i];
2467
3a5db920 2468 flush_log(log, 0);
518dac09 2469 free_log(log);
cb7e0ace 2470 }
2e1df07d
JA
2471 }
2472 }
2473
fda2cfac 2474 for_each_td(td, i) {
2e1df07d 2475 fio_options_free(td);
8049adc1
JA
2476 if (td->rusage_sem) {
2477 fio_mutex_remove(td->rusage_sem);
2478 td->rusage_sem = NULL;
2479 }
fda2cfac 2480 }
2e1df07d 2481
a462baef 2482 free_disk_util();
2e1df07d
JA
2483 cgroup_kill(cgroup_list);
2484 sfree(cgroup_list);
2485 sfree(cgroup_mnt);
2486
2487 fio_mutex_remove(startup_mutex);
cef9175e 2488 stat_exit();
2e1df07d
JA
2489 return exit_value;
2490}