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