d39968519fe3680a8ab0fe87716087eb61ad1d6e
[fio.git] / backend.c
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>
33 #include <inttypes.h>
34 #include <sys/stat.h>
35 #include <sys/wait.h>
36 #include <sys/ipc.h>
37 #include <sys/mman.h>
38 #include <math.h>
39
40 #include "fio.h"
41 #ifndef FIO_NO_HAVE_SHM_H
42 #include <sys/shm.h>
43 #endif
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"
52 #include "lib/memalign.h"
53 #include "server.h"
54 #include "lib/getrusage.h"
55 #include "idletime.h"
56 #include "err.h"
57 #include "workqueue.h"
58 #include "lib/mountcheck.h"
59 #include "rate-submit.h"
60
61 static pthread_t helper_thread;
62 static pthread_mutex_t helper_lock;
63 pthread_cond_t helper_cond;
64 int helper_do_stat = 0;
65
66 static struct fio_mutex *startup_mutex;
67 static struct flist_head *cgroup_list;
68 static char *cgroup_mnt;
69 static int exit_value;
70 static volatile int fio_abort;
71 static unsigned int nr_process = 0;
72 static unsigned int nr_thread = 0;
73
74 struct io_log *agg_io_log[DDIR_RWDIR_CNT];
75
76 int groupid = 0;
77 unsigned int thread_number = 0;
78 unsigned int stat_number = 0;
79 int shm_id = 0;
80 int temp_stall_ts;
81 unsigned long done_secs = 0;
82 volatile int helper_exit = 0;
83
84 #define PAGE_ALIGN(buf) \
85         (char *) (((uintptr_t) (buf) + page_mask) & ~page_mask)
86
87 #define JOB_START_TIMEOUT       (5 * 1000)
88
89 static 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);
96                         log_info_flush();
97                         exit_value = 128;
98                 }
99
100                 fio_terminate_threads(TERMINATE_ALL);
101         }
102 }
103
104 void sig_show_status(int sig)
105 {
106         show_running_run_stats();
107 }
108
109 static 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
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
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
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  */
147 static bool __check_min_rate(struct thread_data *td, struct timeval *now,
148                              enum fio_ddir ddir)
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])
161                 return false;
162
163         /*
164          * allow a 2 second settle period in the beginning
165          */
166         if (mtime_since(&td->start, now) < 2000)
167                 return false;
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)
181                         return false;
182
183                 if (td->o.rate[ddir] || td->o.ratemin[ddir]) {
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);
190                                 return true;
191                         } else {
192                                 if (spent)
193                                         rate = ((bytes - td->rate_bytes[ddir]) * 1000) / spent;
194                                 else
195                                         rate = 0;
196
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);
202                                         return true;
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);
212                                 return true;
213                         } else {
214                                 if (spent)
215                                         rate = ((iops - td->rate_blocks[ddir]) * 1000) / spent;
216                                 else
217                                         rate = 0;
218
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);
224                                         return true;
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));
233         return false;
234 }
235
236 static bool check_min_rate(struct thread_data *td, struct timeval *now)
237 {
238         bool ret = false;
239
240         if (td->bytes_done[DDIR_READ])
241                 ret |= __check_min_rate(td, now, DDIR_READ);
242         if (td->bytes_done[DDIR_WRITE])
243                 ret |= __check_min_rate(td, now, DDIR_WRITE);
244         if (td->bytes_done[DDIR_TRIM])
245                 ret |= __check_min_rate(td, now, DDIR_TRIM);
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  */
254 static void cleanup_pending_aio(struct thread_data *td)
255 {
256         int r;
257
258         /*
259          * get immediately available events, if any
260          */
261         r = io_u_queued_complete(td, 0);
262         if (r < 0)
263                 return;
264
265         /*
266          * now cancel remaining active events
267          */
268         if (td->io_ops->cancel) {
269                 struct io_u *io_u;
270                 int i;
271
272                 io_u_qiter(&td->io_u_all, io_u, i) {
273                         if (io_u->flags & IO_U_F_FLIGHT) {
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)
282                 r = io_u_queued_complete(td, td->cur_depth);
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  */
289 static bool fio_io_sync(struct thread_data *td, struct fio_file *f)
290 {
291         struct io_u *io_u = __get_io_u(td);
292         int ret;
293
294         if (!io_u)
295                 return true;
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);
302                 return true;
303         }
304
305 requeue:
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);
310                 return true;
311         } else if (ret == FIO_Q_QUEUED) {
312                 if (io_u_queued_complete(td, 1) < 0)
313                         return true;
314         } else if (ret == FIO_Q_COMPLETED) {
315                 if (io_u->error) {
316                         td_verror(td, io_u->error, "td_io_queue");
317                         return true;
318                 }
319
320                 if (io_u_sync_complete(td, io_u) < 0)
321                         return true;
322         } else if (ret == FIO_Q_BUSY) {
323                 if (td_io_commit(td))
324                         return true;
325                 goto requeue;
326         }
327
328         return false;
329 }
330
331 static 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
346 static inline void __update_tv_cache(struct thread_data *td)
347 {
348         fio_gettime(&td->tv_cache, NULL);
349 }
350
351 static 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
357 static inline bool runtime_exceeded(struct thread_data *td, struct timeval *t)
358 {
359         if (in_ramp_time(td))
360                 return false;
361         if (!td->o.timeout)
362                 return false;
363         if (utime_since(&td->epoch, t) >= td->o.timeout)
364                 return true;
365
366         return false;
367 }
368
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  */
374 static inline void update_runtime(struct thread_data *td,
375                                   unsigned long long *elapsed_us,
376                                   const enum fio_ddir ddir)
377 {
378         if (ddir == DDIR_WRITE && td_write(td) && td->o.verify_only)
379                 return;
380
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
386 static bool break_on_this_error(struct thread_data *td, enum fio_ddir ddir,
387                                 int *retptr)
388 {
389         int ret = *retptr;
390
391         if (ret < 0 || td->error) {
392                 int err = td->error;
393                 enum error_type_bit eb;
394
395                 if (ret < 0)
396                         err = -ret;
397
398                 eb = td_error_type(ddir, err);
399                 if (!(td->o.continue_on_error & (1 << eb)))
400                         return true;
401
402                 if (td_non_fatal_error(td, eb, err)) {
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;
410                         return false;
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);
417                         fio_mark_td_terminate(td);
418                         return true;
419                 } else {
420                         /*
421                          * Stop the I/O in case of a fatal
422                          * error.
423                          */
424                         update_error_count(td, err);
425                         return true;
426                 }
427         }
428
429         return false;
430 }
431
432 static 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
441 static int wait_for_completions(struct thread_data *td, struct timeval *time)
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          */
450         min_evts = min(td->o.iodepth_batch_complete_min, td->cur_depth);
451         if ((full && !min_evts) || !td->o.iodepth_batch_complete_min)
452                 min_evts = 1;
453
454         if (time && (__should_check_rate(td, DDIR_READ) ||
455             __should_check_rate(td, DDIR_WRITE) ||
456             __should_check_rate(td, DDIR_TRIM)))
457                 fio_gettime(time, NULL);
458
459         do {
460                 ret = io_u_queued_complete(td, min_evts);
461                 if (ret < 0)
462                         break;
463         } while (full && (td->cur_depth > td->o.iodepth_low));
464
465         return ret;
466 }
467
468 int 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 {
513 sync_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:
544                 assert(*ret < 0);
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
555 static inline bool io_in_polling(struct thread_data *td)
556 {
557         return !td->o.iodepth_batch_complete_min &&
558                    !td->o.iodepth_batch_complete_max;
559 }
560
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  */
565 static void do_verify(struct thread_data *td, uint64_t verify_bytes)
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
587         check_update_rusage(td);
588
589         if (td->error)
590                 return;
591
592         td_set_runstate(td, TD_VERIFYING);
593
594         io_u = NULL;
595         while (!td->terminate) {
596                 enum fio_ddir ddir;
597                 int full;
598
599                 update_tv_cache(td);
600                 check_update_rusage(td);
601
602                 if (runtime_exceeded(td, &td->tv_cache)) {
603                         __update_tv_cache(td);
604                         if (runtime_exceeded(td, &td->tv_cache)) {
605                                 fio_mark_td_terminate(td);
606                                 break;
607                         }
608                 }
609
610                 if (flow_threshold_exceeded(td))
611                         continue;
612
613                 if (!td->o.experimental_verify) {
614                         io_u = __get_io_u(td);
615                         if (!io_u)
616                                 break;
617
618                         if (get_next_verify(td, io_u)) {
619                                 put_io_u(td, io_u);
620                                 break;
621                         }
622
623                         if (td_io_prep(td, io_u)) {
624                                 put_io_u(td, io_u);
625                                 break;
626                         }
627                 } else {
628                         if (ddir_rw_sum(td->bytes_done) + td->o.rw_min_bs > verify_bytes)
629                                 break;
630
631                         while ((io_u = get_io_u(td)) != NULL) {
632                                 if (IS_ERR(io_u)) {
633                                         io_u = NULL;
634                                         ret = FIO_Q_BUSY;
635                                         goto reap;
636                                 }
637
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;
653                                         io_u_set(io_u, IO_U_F_TRIMMED);
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                         }
663
664                         if (!io_u)
665                                 break;
666                 }
667
668                 if (verify_state_should_stop(td, io_u)) {
669                         put_io_u(td, io_u);
670                         break;
671                 }
672
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
678                 ddir = io_u->ddir;
679                 if (!td->o.disable_slat)
680                         fio_gettime(&io_u->start_time, NULL);
681
682                 ret = td_io_queue(td, io_u);
683
684                 if (io_queue_event(td, io_u, &ret, ddir, NULL, 1, NULL))
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                  */
692 reap:
693                 full = queue_full(td) || (ret == FIO_Q_BUSY && td->cur_depth);
694                 if (full || io_in_polling(td))
695                         ret = wait_for_completions(td, NULL);
696
697                 if (ret < 0)
698                         break;
699         }
700
701         check_update_rusage(td);
702
703         if (!td->error) {
704                 min_events = td->cur_depth;
705
706                 if (min_events)
707                         ret = io_u_queued_complete(td, min_events);
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
716 static bool exceeds_number_ios(struct thread_data *td)
717 {
718         unsigned long long number_ios;
719
720         if (!td->o.number_ios)
721                 return false;
722
723         number_ios = ddir_rw_sum(td->io_blocks);
724         number_ios += td->io_u_queued + td->io_u_in_flight;
725
726         return number_ios >= (td->o.number_ios * td->loops);
727 }
728
729 static bool io_issue_bytes_exceeded(struct thread_data *td)
730 {
731         unsigned long long bytes, limit;
732
733         if (td_rw(td))
734                 bytes = td->io_issue_bytes[DDIR_READ] + td->io_issue_bytes[DDIR_WRITE];
735         else if (td_write(td))
736                 bytes = td->io_issue_bytes[DDIR_WRITE];
737         else if (td_read(td))
738                 bytes = td->io_issue_bytes[DDIR_READ];
739         else
740                 bytes = td->io_issue_bytes[DDIR_TRIM];
741
742         if (td->o.io_limit)
743                 limit = td->o.io_limit;
744         else
745                 limit = td->o.size;
746
747         limit *= td->loops;
748         return bytes >= limit || exceeds_number_ios(td);
749 }
750
751 static bool io_complete_bytes_exceeded(struct thread_data *td)
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
769         limit *= td->loops;
770         return bytes >= limit || exceeds_number_ios(td);
771 }
772
773 /*
774  * used to calculate the next io time for rate control
775  *
776  */
777 static long long usec_for_io(struct thread_data *td, enum fio_ddir ddir)
778 {
779         uint64_t secs, remainder, bps, bytes, iops;
780
781         assert(!(td->flags & TD_F_CHILD));
782         bytes = td->rate_io_issue_bytes[ddir];
783         bps = td->rate_bps[ddir];
784
785         if (td->o.rate_process == RATE_PROCESS_POISSON) {
786                 uint64_t val;
787                 iops = bps / td->o.bs[ddir];
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;
795                 return td->last_usec;
796         } else if (bps) {
797                 secs = bytes / bps;
798                 remainder = bytes % bps;
799                 return remainder * 1000000 / bps + secs * 1000000;
800         }
801
802         return 0;
803 }
804
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.
808  *
809  * Returns number of bytes written and trimmed.
810  */
811 static uint64_t do_io(struct thread_data *td)
812 {
813         unsigned int i;
814         int ret = 0;
815         uint64_t total_bytes, bytes_issued = 0;
816
817         if (in_ramp_time(td))
818                 td_set_runstate(td, TD_RAMP);
819         else
820                 td_set_runstate(td, TD_RUNNING);
821
822         lat_target_init(td);
823
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);
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          */
836         if (td->o.verify != VERIFY_NONE &&
837            (td_write(td) && td->o.verify_backlog))
838                 total_bytes += td->o.size;
839
840         /* In trimwrite mode, each byte is trimmed and then written, so
841          * allow total_bytes to be twice as big */
842         if (td_trimwrite(td))
843                 total_bytes += td->total_io_size;
844
845         while ((td->o.read_iolog_file && !flist_empty(&td->io_log_list)) ||
846                 (!flist_empty(&td->trim_list)) || !io_issue_bytes_exceeded(td) ||
847                 td->o.time_based) {
848                 struct timeval comp_time;
849                 struct io_u *io_u;
850                 int full;
851                 enum fio_ddir ddir;
852
853                 check_update_rusage(td);
854
855                 if (td->terminate || td->done)
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)) {
863                                 fio_mark_td_terminate(td);
864                                 break;
865                         }
866                 }
867
868                 if (flow_threshold_exceeded(td))
869                         continue;
870
871                 if (!td->o.time_based && bytes_issued >= total_bytes)
872                         break;
873
874                 io_u = get_io_u(td);
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                         }
883                         if (td->o.latency_target)
884                                 goto reap;
885                         break;
886                 }
887
888                 ddir = io_u->ddir;
889
890                 /*
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)
894                  */
895                 if (td->o.verify != VERIFY_NONE && io_u->ddir == DDIR_READ &&
896                     ((io_u->flags & IO_U_F_VER_LIST) || !td_rw(td))) {
897
898                         if (!td->o.verify_pattern_bytes) {
899                                 io_u->rand_seed = __rand(&td->verify_state);
900                                 if (sizeof(int) != sizeof(long *))
901                                         io_u->rand_seed *= __rand(&td->verify_state);
902                         }
903
904                         if (verify_state_should_stop(td, io_u)) {
905                                 put_io_u(td, io_u);
906                                 break;
907                         }
908
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
919                 /*
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.
923                  */
924                 if (td_write(td) && io_u->ddir == DDIR_WRITE &&
925                     td->o.do_verify &&
926                     td->o.verify != VERIFY_NONE &&
927                     !td->o.experimental_verify)
928                         log_io_piece(td, io_u);
929
930                 if (td->o.io_submit_mode == IO_MODE_OFFLOAD) {
931                         const unsigned long blen = io_u->xfer_buflen;
932                         const enum fio_ddir ddir = acct_ddir(io_u);
933
934                         if (td->error)
935                                 break;
936
937                         workqueue_enqueue(&td->io_wq, &io_u->work);
938                         ret = FIO_Q_QUEUED;
939
940                         if (ddir_rw(ddir)) {
941                                 td->io_issues[ddir]++;
942                                 td->io_issue_bytes[ddir] += blen;
943                                 td->rate_io_issue_bytes[ddir] += blen;
944                         }
945
946                         if (should_check_rate(td))
947                                 td->rate_next_io_time[ddir] = usec_for_io(td, ddir);
948
949                 } else {
950                         ret = td_io_queue(td, io_u);
951
952                         if (should_check_rate(td))
953                                 td->rate_next_io_time[ddir] = usec_for_io(td, ddir);
954
955                         if (io_queue_event(td, io_u, &ret, ddir, &bytes_issued, 0, &comp_time))
956                                 break;
957
958                         /*
959                          * See if we need to complete some commands. Note that
960                          * we can get BUSY even without IO queued, if the
961                          * system is resource starved.
962                          */
963 reap:
964                         full = queue_full(td) ||
965                                 (ret == FIO_Q_BUSY && td->cur_depth);
966                         if (full || io_in_polling(td))
967                                 ret = wait_for_completions(td, &comp_time);
968                 }
969                 if (ret < 0)
970                         break;
971                 if (!ddir_rw_sum(td->bytes_done) &&
972                     !(td->io_ops->flags & FIO_NOIO))
973                         continue;
974
975                 if (!in_ramp_time(td) && should_check_rate(td)) {
976                         if (check_min_rate(td, &comp_time)) {
977                                 if (exitall_on_terminate)
978                                         fio_terminate_threads(td->groupid);
979                                 td_verror(td, EIO, "check_min_rate");
980                                 break;
981                         }
982                 }
983                 if (!in_ramp_time(td) && td->o.latency_target)
984                         lat_target_check(td);
985
986                 if (td->o.thinktime) {
987                         unsigned long long b;
988
989                         b = ddir_rw_sum(td->io_blocks);
990                         if (!(b % td->o.thinktime_blocks)) {
991                                 int left;
992
993                                 io_u_quiesce(td);
994
995                                 if (td->o.thinktime_spin)
996                                         usec_spin(td->o.thinktime_spin);
997
998                                 left = td->o.thinktime - td->o.thinktime_spin;
999                                 if (left)
1000                                         usec_sleep(td, left);
1001                         }
1002                 }
1003         }
1004
1005         check_update_rusage(td);
1006
1007         if (td->trim_entries)
1008                 log_err("fio: %lu trim entries leaked?\n", td->trim_entries);
1009
1010         if (td->o.fill_device && td->error == ENOSPC) {
1011                 td->error = 0;
1012                 fio_mark_td_terminate(td);
1013         }
1014         if (!td->error) {
1015                 struct fio_file *f;
1016
1017                 if (td->o.io_submit_mode == IO_MODE_OFFLOAD) {
1018                         workqueue_flush(&td->io_wq);
1019                         i = 0;
1020                 } else
1021                         i = td->cur_depth;
1022
1023                 if (i) {
1024                         ret = io_u_queued_complete(td, i);
1025                         if (td->o.fill_device && td->error == ENOSPC)
1026                                 td->error = 0;
1027                 }
1028
1029                 if (should_fsync(td) && td->o.end_fsync) {
1030                         td_set_runstate(td, TD_FSYNCING);
1031
1032                         for_each_file(td, f, i) {
1033                                 if (!fio_file_fsync(td, f))
1034                                         continue;
1035
1036                                 log_err("fio: end_fsync failed for file %s\n",
1037                                                                 f->file_name);
1038                         }
1039                 }
1040         } else
1041                 cleanup_pending_aio(td);
1042
1043         /*
1044          * stop job if we failed doing any IO
1045          */
1046         if (!ddir_rw_sum(td->this_io_bytes))
1047                 td->done = 1;
1048
1049         return td->bytes_done[DDIR_WRITE] + td->bytes_done[DDIR_TRIM];
1050 }
1051
1052 static void cleanup_io_u(struct thread_data *td)
1053 {
1054         struct io_u *io_u;
1055
1056         while ((io_u = io_u_qpop(&td->io_u_freelist)) != NULL) {
1057
1058                 if (td->io_ops->io_u_free)
1059                         td->io_ops->io_u_free(td, io_u);
1060
1061                 fio_memfree(io_u, sizeof(*io_u));
1062         }
1063
1064         free_io_mem(td);
1065
1066         io_u_rexit(&td->io_u_requeues);
1067         io_u_qexit(&td->io_u_freelist);
1068         io_u_qexit(&td->io_u_all);
1069
1070         if (td->last_write_comp)
1071                 sfree(td->last_write_comp);
1072 }
1073
1074 static int init_io_u(struct thread_data *td)
1075 {
1076         struct io_u *io_u;
1077         unsigned int max_bs, min_write;
1078         int cl_align, i, max_units;
1079         int data_xfer = 1, err;
1080         char *p;
1081
1082         max_units = td->o.iodepth;
1083         max_bs = td_max_bs(td);
1084         min_write = td->o.min_bs[DDIR_WRITE];
1085         td->orig_buffer_size = (unsigned long long) max_bs
1086                                         * (unsigned long long) max_units;
1087
1088         if ((td->io_ops->flags & FIO_NOIO) || !(td_read(td) || td_write(td)))
1089                 data_xfer = 0;
1090
1091         err = 0;
1092         err += io_u_rinit(&td->io_u_requeues, td->o.iodepth);
1093         err += io_u_qinit(&td->io_u_freelist, td->o.iodepth);
1094         err += io_u_qinit(&td->io_u_all, td->o.iodepth);
1095
1096         if (err) {
1097                 log_err("fio: failed setting up IO queues\n");
1098                 return 1;
1099         }
1100
1101         /*
1102          * if we may later need to do address alignment, then add any
1103          * possible adjustment here so that we don't cause a buffer
1104          * overflow later. this adjustment may be too much if we get
1105          * lucky and the allocator gives us an aligned address.
1106          */
1107         if (td->o.odirect || td->o.mem_align || td->o.oatomic ||
1108             (td->io_ops->flags & FIO_RAWIO))
1109                 td->orig_buffer_size += page_mask + td->o.mem_align;
1110
1111         if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE) {
1112                 unsigned long bs;
1113
1114                 bs = td->orig_buffer_size + td->o.hugepage_size - 1;
1115                 td->orig_buffer_size = bs & ~(td->o.hugepage_size - 1);
1116         }
1117
1118         if (td->orig_buffer_size != (size_t) td->orig_buffer_size) {
1119                 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
1120                 return 1;
1121         }
1122
1123         if (data_xfer && allocate_io_mem(td))
1124                 return 1;
1125
1126         if (td->o.odirect || td->o.mem_align || td->o.oatomic ||
1127             (td->io_ops->flags & FIO_RAWIO))
1128                 p = PAGE_ALIGN(td->orig_buffer) + td->o.mem_align;
1129         else
1130                 p = td->orig_buffer;
1131
1132         cl_align = os_cache_line_size();
1133
1134         for (i = 0; i < max_units; i++) {
1135                 void *ptr;
1136
1137                 if (td->terminate)
1138                         return 1;
1139
1140                 ptr = fio_memalign(cl_align, sizeof(*io_u));
1141                 if (!ptr) {
1142                         log_err("fio: unable to allocate aligned memory\n");
1143                         break;
1144                 }
1145
1146                 io_u = ptr;
1147                 memset(io_u, 0, sizeof(*io_u));
1148                 INIT_FLIST_HEAD(&io_u->verify_list);
1149                 dprint(FD_MEM, "io_u alloc %p, index %u\n", io_u, i);
1150
1151                 if (data_xfer) {
1152                         io_u->buf = p;
1153                         dprint(FD_MEM, "io_u %p, mem %p\n", io_u, io_u->buf);
1154
1155                         if (td_write(td))
1156                                 io_u_fill_buffer(td, io_u, min_write, max_bs);
1157                         if (td_write(td) && td->o.verify_pattern_bytes) {
1158                                 /*
1159                                  * Fill the buffer with the pattern if we are
1160                                  * going to be doing writes.
1161                                  */
1162                                 fill_verify_pattern(td, io_u->buf, max_bs, io_u, 0, 0);
1163                         }
1164                 }
1165
1166                 io_u->index = i;
1167                 io_u->flags = IO_U_F_FREE;
1168                 io_u_qpush(&td->io_u_freelist, io_u);
1169
1170                 /*
1171                  * io_u never leaves this stack, used for iteration of all
1172                  * io_u buffers.
1173                  */
1174                 io_u_qpush(&td->io_u_all, io_u);
1175
1176                 if (td->io_ops->io_u_init) {
1177                         int ret = td->io_ops->io_u_init(td, io_u);
1178
1179                         if (ret) {
1180                                 log_err("fio: failed to init engine data: %d\n", ret);
1181                                 return 1;
1182                         }
1183                 }
1184
1185                 p += max_bs;
1186         }
1187
1188         if (td->o.verify != VERIFY_NONE) {
1189                 td->last_write_comp = scalloc(max_units, sizeof(uint64_t));
1190                 if (!td->last_write_comp) {
1191                         log_err("fio: failed to alloc write comp data\n");
1192                         return 1;
1193                 }
1194         }
1195
1196         return 0;
1197 }
1198
1199 static int switch_ioscheduler(struct thread_data *td)
1200 {
1201         char tmp[256], tmp2[128];
1202         FILE *f;
1203         int ret;
1204
1205         if (td->io_ops->flags & FIO_DISKLESSIO)
1206                 return 0;
1207
1208         sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
1209
1210         f = fopen(tmp, "r+");
1211         if (!f) {
1212                 if (errno == ENOENT) {
1213                         log_err("fio: os or kernel doesn't support IO scheduler"
1214                                 " switching\n");
1215                         return 0;
1216                 }
1217                 td_verror(td, errno, "fopen iosched");
1218                 return 1;
1219         }
1220
1221         /*
1222          * Set io scheduler.
1223          */
1224         ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
1225         if (ferror(f) || ret != 1) {
1226                 td_verror(td, errno, "fwrite");
1227                 fclose(f);
1228                 return 1;
1229         }
1230
1231         rewind(f);
1232
1233         /*
1234          * Read back and check that the selected scheduler is now the default.
1235          */
1236         memset(tmp, 0, sizeof(tmp));
1237         ret = fread(tmp, sizeof(tmp), 1, f);
1238         if (ferror(f) || ret < 0) {
1239                 td_verror(td, errno, "fread");
1240                 fclose(f);
1241                 return 1;
1242         }
1243         /*
1244          * either a list of io schedulers or "none\n" is expected.
1245          */
1246         tmp[strlen(tmp) - 1] = '\0';
1247
1248
1249         sprintf(tmp2, "[%s]", td->o.ioscheduler);
1250         if (!strstr(tmp, tmp2)) {
1251                 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
1252                 td_verror(td, EINVAL, "iosched_switch");
1253                 fclose(f);
1254                 return 1;
1255         }
1256
1257         fclose(f);
1258         return 0;
1259 }
1260
1261 static bool keep_running(struct thread_data *td)
1262 {
1263         unsigned long long limit;
1264
1265         if (td->done)
1266                 return false;
1267         if (td->o.time_based)
1268                 return true;
1269         if (td->o.loops) {
1270                 td->o.loops--;
1271                 return true;
1272         }
1273         if (exceeds_number_ios(td))
1274                 return false;
1275
1276         if (td->o.io_limit)
1277                 limit = td->o.io_limit;
1278         else
1279                 limit = td->o.size;
1280
1281         if (limit != -1ULL && ddir_rw_sum(td->io_bytes) < limit) {
1282                 uint64_t diff;
1283
1284                 /*
1285                  * If the difference is less than the minimum IO size, we
1286                  * are done.
1287                  */
1288                 diff = limit - ddir_rw_sum(td->io_bytes);
1289                 if (diff < td_max_bs(td))
1290                         return false;
1291
1292                 if (fio_files_done(td))
1293                         return false;
1294
1295                 return true;
1296         }
1297
1298         return false;
1299 }
1300
1301 static int exec_string(struct thread_options *o, const char *string, const char *mode)
1302 {
1303         size_t newlen = strlen(string) + strlen(o->name) + strlen(mode) + 9 + 1;
1304         int ret;
1305         char *str;
1306
1307         str = malloc(newlen);
1308         sprintf(str, "%s &> %s.%s.txt", string, o->name, mode);
1309
1310         log_info("%s : Saving output of %s in %s.%s.txt\n",o->name, mode, o->name, mode);
1311         ret = system(str);
1312         if (ret == -1)
1313                 log_err("fio: exec of cmd <%s> failed\n", str);
1314
1315         free(str);
1316         return ret;
1317 }
1318
1319 /*
1320  * Dry run to compute correct state of numberio for verification.
1321  */
1322 static uint64_t do_dry_run(struct thread_data *td)
1323 {
1324         td_set_runstate(td, TD_RUNNING);
1325
1326         while ((td->o.read_iolog_file && !flist_empty(&td->io_log_list)) ||
1327                 (!flist_empty(&td->trim_list)) || !io_complete_bytes_exceeded(td)) {
1328                 struct io_u *io_u;
1329                 int ret;
1330
1331                 if (td->terminate || td->done)
1332                         break;
1333
1334                 io_u = get_io_u(td);
1335                 if (!io_u)
1336                         break;
1337
1338                 io_u_set(io_u, IO_U_F_FLIGHT);
1339                 io_u->error = 0;
1340                 io_u->resid = 0;
1341                 if (ddir_rw(acct_ddir(io_u)))
1342                         td->io_issues[acct_ddir(io_u)]++;
1343                 if (ddir_rw(io_u->ddir)) {
1344                         io_u_mark_depth(td, 1);
1345                         td->ts.total_io_u[io_u->ddir]++;
1346                 }
1347
1348                 if (td_write(td) && io_u->ddir == DDIR_WRITE &&
1349                     td->o.do_verify &&
1350                     td->o.verify != VERIFY_NONE &&
1351                     !td->o.experimental_verify)
1352                         log_io_piece(td, io_u);
1353
1354                 ret = io_u_sync_complete(td, io_u);
1355                 (void) ret;
1356         }
1357
1358         return td->bytes_done[DDIR_WRITE] + td->bytes_done[DDIR_TRIM];
1359 }
1360
1361 /*
1362  * Entry point for the thread based jobs. The process based jobs end up
1363  * here as well, after a little setup.
1364  */
1365 static void *thread_main(void *data)
1366 {
1367         unsigned long long elapsed_us[DDIR_RWDIR_CNT] = { 0, };
1368         struct thread_data *td = data;
1369         struct thread_options *o = &td->o;
1370         pthread_condattr_t attr;
1371         int clear_state;
1372         int ret;
1373
1374         if (!o->use_thread) {
1375                 setsid();
1376                 td->pid = getpid();
1377         } else
1378                 td->pid = gettid();
1379
1380         fio_local_clock_init(o->use_thread);
1381
1382         dprint(FD_PROCESS, "jobs pid=%d started\n", (int) td->pid);
1383
1384         if (is_backend)
1385                 fio_server_send_start(td);
1386
1387         INIT_FLIST_HEAD(&td->io_log_list);
1388         INIT_FLIST_HEAD(&td->io_hist_list);
1389         INIT_FLIST_HEAD(&td->verify_list);
1390         INIT_FLIST_HEAD(&td->trim_list);
1391         INIT_FLIST_HEAD(&td->next_rand_list);
1392         pthread_mutex_init(&td->io_u_lock, NULL);
1393         td->io_hist_tree = RB_ROOT;
1394
1395         pthread_condattr_init(&attr);
1396         pthread_cond_init(&td->verify_cond, &attr);
1397         pthread_cond_init(&td->free_cond, &attr);
1398
1399         td_set_runstate(td, TD_INITIALIZED);
1400         dprint(FD_MUTEX, "up startup_mutex\n");
1401         fio_mutex_up(startup_mutex);
1402         dprint(FD_MUTEX, "wait on td->mutex\n");
1403         fio_mutex_down(td->mutex);
1404         dprint(FD_MUTEX, "done waiting on td->mutex\n");
1405
1406         /*
1407          * A new gid requires privilege, so we need to do this before setting
1408          * the uid.
1409          */
1410         if (o->gid != -1U && setgid(o->gid)) {
1411                 td_verror(td, errno, "setgid");
1412                 goto err;
1413         }
1414         if (o->uid != -1U && setuid(o->uid)) {
1415                 td_verror(td, errno, "setuid");
1416                 goto err;
1417         }
1418
1419         /*
1420          * If we have a gettimeofday() thread, make sure we exclude that
1421          * thread from this job
1422          */
1423         if (o->gtod_cpu)
1424                 fio_cpu_clear(&o->cpumask, o->gtod_cpu);
1425
1426         /*
1427          * Set affinity first, in case it has an impact on the memory
1428          * allocations.
1429          */
1430         if (fio_option_is_set(o, cpumask)) {
1431                 if (o->cpus_allowed_policy == FIO_CPUS_SPLIT) {
1432                         ret = fio_cpus_split(&o->cpumask, td->thread_number - 1);
1433                         if (!ret) {
1434                                 log_err("fio: no CPUs set\n");
1435                                 log_err("fio: Try increasing number of available CPUs\n");
1436                                 td_verror(td, EINVAL, "cpus_split");
1437                                 goto err;
1438                         }
1439                 }
1440                 ret = fio_setaffinity(td->pid, o->cpumask);
1441                 if (ret == -1) {
1442                         td_verror(td, errno, "cpu_set_affinity");
1443                         goto err;
1444                 }
1445         }
1446
1447 #ifdef CONFIG_LIBNUMA
1448         /* numa node setup */
1449         if (fio_option_is_set(o, numa_cpunodes) ||
1450             fio_option_is_set(o, numa_memnodes)) {
1451                 struct bitmask *mask;
1452
1453                 if (numa_available() < 0) {
1454                         td_verror(td, errno, "Does not support NUMA API\n");
1455                         goto err;
1456                 }
1457
1458                 if (fio_option_is_set(o, numa_cpunodes)) {
1459                         mask = numa_parse_nodestring(o->numa_cpunodes);
1460                         ret = numa_run_on_node_mask(mask);
1461                         numa_free_nodemask(mask);
1462                         if (ret == -1) {
1463                                 td_verror(td, errno, \
1464                                         "numa_run_on_node_mask failed\n");
1465                                 goto err;
1466                         }
1467                 }
1468
1469                 if (fio_option_is_set(o, numa_memnodes)) {
1470                         mask = NULL;
1471                         if (o->numa_memnodes)
1472                                 mask = numa_parse_nodestring(o->numa_memnodes);
1473
1474                         switch (o->numa_mem_mode) {
1475                         case MPOL_INTERLEAVE:
1476                                 numa_set_interleave_mask(mask);
1477                                 break;
1478                         case MPOL_BIND:
1479                                 numa_set_membind(mask);
1480                                 break;
1481                         case MPOL_LOCAL:
1482                                 numa_set_localalloc();
1483                                 break;
1484                         case MPOL_PREFERRED:
1485                                 numa_set_preferred(o->numa_mem_prefer_node);
1486                                 break;
1487                         case MPOL_DEFAULT:
1488                         default:
1489                                 break;
1490                         }
1491
1492                         if (mask)
1493                                 numa_free_nodemask(mask);
1494
1495                 }
1496         }
1497 #endif
1498
1499         if (fio_pin_memory(td))
1500                 goto err;
1501
1502         /*
1503          * May alter parameters that init_io_u() will use, so we need to
1504          * do this first.
1505          */
1506         if (init_iolog(td))
1507                 goto err;
1508
1509         if (init_io_u(td))
1510                 goto err;
1511
1512         if (o->verify_async && verify_async_init(td))
1513                 goto err;
1514
1515         if (fio_option_is_set(o, ioprio) ||
1516             fio_option_is_set(o, ioprio_class)) {
1517                 ret = ioprio_set(IOPRIO_WHO_PROCESS, 0, o->ioprio_class, o->ioprio);
1518                 if (ret == -1) {
1519                         td_verror(td, errno, "ioprio_set");
1520                         goto err;
1521                 }
1522         }
1523
1524         if (o->cgroup && cgroup_setup(td, cgroup_list, &cgroup_mnt))
1525                 goto err;
1526
1527         errno = 0;
1528         if (nice(o->nice) == -1 && errno != 0) {
1529                 td_verror(td, errno, "nice");
1530                 goto err;
1531         }
1532
1533         if (o->ioscheduler && switch_ioscheduler(td))
1534                 goto err;
1535
1536         if (!o->create_serialize && setup_files(td))
1537                 goto err;
1538
1539         if (td_io_init(td))
1540                 goto err;
1541
1542         if (init_random_map(td))
1543                 goto err;
1544
1545         if (o->exec_prerun && exec_string(o, o->exec_prerun, (const char *)"prerun"))
1546                 goto err;
1547
1548         if (o->pre_read) {
1549                 if (pre_read_files(td) < 0)
1550                         goto err;
1551         }
1552
1553         if (iolog_compress_init(td))
1554                 goto err;
1555
1556         fio_verify_init(td);
1557
1558         if ((o->io_submit_mode == IO_MODE_OFFLOAD) &&
1559             workqueue_init(td, &td->io_wq, &rated_wq_ops, td->o.iodepth))
1560                 goto err;
1561
1562         fio_gettime(&td->epoch, NULL);
1563         fio_getrusage(&td->ru_start);
1564         memcpy(&td->bw_sample_time, &td->epoch, sizeof(td->epoch));
1565         memcpy(&td->iops_sample_time, &td->epoch, sizeof(td->epoch));
1566
1567         if (o->ratemin[DDIR_READ] || o->ratemin[DDIR_WRITE] ||
1568                         o->ratemin[DDIR_TRIM]) {
1569                 memcpy(&td->lastrate[DDIR_READ], &td->bw_sample_time,
1570                                         sizeof(td->bw_sample_time));
1571                 memcpy(&td->lastrate[DDIR_WRITE], &td->bw_sample_time,
1572                                         sizeof(td->bw_sample_time));
1573                 memcpy(&td->lastrate[DDIR_TRIM], &td->bw_sample_time,
1574                                         sizeof(td->bw_sample_time));
1575         }
1576
1577         clear_state = 0;
1578         while (keep_running(td)) {
1579                 uint64_t verify_bytes;
1580
1581                 fio_gettime(&td->start, NULL);
1582                 memcpy(&td->tv_cache, &td->start, sizeof(td->start));
1583
1584                 if (clear_state)
1585                         clear_io_state(td, 0);
1586
1587                 prune_io_piece_log(td);
1588
1589                 if (td->o.verify_only && (td_write(td) || td_rw(td)))
1590                         verify_bytes = do_dry_run(td);
1591                 else
1592                         verify_bytes = do_io(td);
1593
1594                 clear_state = 1;
1595
1596                 /*
1597                  * Make sure we've successfully updated the rusage stats
1598                  * before waiting on the stat mutex. Otherwise we could have
1599                  * the stat thread holding stat mutex and waiting for
1600                  * the rusage_sem, which would never get upped because
1601                  * this thread is waiting for the stat mutex.
1602                  */
1603                 check_update_rusage(td);
1604
1605                 fio_mutex_down(stat_mutex);
1606                 if (td_read(td) && td->io_bytes[DDIR_READ])
1607                         update_runtime(td, elapsed_us, DDIR_READ);
1608                 if (td_write(td) && td->io_bytes[DDIR_WRITE])
1609                         update_runtime(td, elapsed_us, DDIR_WRITE);
1610                 if (td_trim(td) && td->io_bytes[DDIR_TRIM])
1611                         update_runtime(td, elapsed_us, DDIR_TRIM);
1612                 fio_gettime(&td->start, NULL);
1613                 fio_mutex_up(stat_mutex);
1614
1615                 if (td->error || td->terminate)
1616                         break;
1617
1618                 if (!o->do_verify ||
1619                     o->verify == VERIFY_NONE ||
1620                     (td->io_ops->flags & FIO_UNIDIR))
1621                         continue;
1622
1623                 clear_io_state(td, 0);
1624
1625                 fio_gettime(&td->start, NULL);
1626
1627                 do_verify(td, verify_bytes);
1628
1629                 /*
1630                  * See comment further up for why this is done here.
1631                  */
1632                 check_update_rusage(td);
1633
1634                 fio_mutex_down(stat_mutex);
1635                 update_runtime(td, elapsed_us, DDIR_READ);
1636                 fio_gettime(&td->start, NULL);
1637                 fio_mutex_up(stat_mutex);
1638
1639                 if (td->error || td->terminate)
1640                         break;
1641         }
1642
1643         update_rusage_stat(td);
1644         td->ts.total_run_time = mtime_since_now(&td->epoch);
1645         td->ts.io_bytes[DDIR_READ] = td->io_bytes[DDIR_READ];
1646         td->ts.io_bytes[DDIR_WRITE] = td->io_bytes[DDIR_WRITE];
1647         td->ts.io_bytes[DDIR_TRIM] = td->io_bytes[DDIR_TRIM];
1648
1649         if (td->o.verify_state_save && !(td->flags & TD_F_VSTATE_SAVED) &&
1650             (td->o.verify != VERIFY_NONE && td_write(td)))
1651                 verify_save_state(td->thread_number);
1652
1653         fio_unpin_memory(td);
1654
1655         fio_writeout_logs(td);
1656
1657         if (o->io_submit_mode == IO_MODE_OFFLOAD)
1658                 workqueue_exit(&td->io_wq);
1659
1660         iolog_compress_exit(td);
1661
1662         if (o->exec_postrun)
1663                 exec_string(o, o->exec_postrun, (const char *)"postrun");
1664
1665         if (exitall_on_terminate)
1666                 fio_terminate_threads(td->groupid);
1667
1668 err:
1669         if (td->error)
1670                 log_info("fio: pid=%d, err=%d/%s\n", (int) td->pid, td->error,
1671                                                         td->verror);
1672
1673         if (o->verify_async)
1674                 verify_async_exit(td);
1675
1676         close_and_free_files(td);
1677         cleanup_io_u(td);
1678         close_ioengine(td);
1679         cgroup_shutdown(td, &cgroup_mnt);
1680         verify_free_state(td);
1681
1682         if (fio_option_is_set(o, cpumask)) {
1683                 ret = fio_cpuset_exit(&o->cpumask);
1684                 if (ret)
1685                         td_verror(td, ret, "fio_cpuset_exit");
1686         }
1687
1688         /*
1689          * do this very late, it will log file closing as well
1690          */
1691         if (o->write_iolog_file)
1692                 write_iolog_close(td);
1693
1694         fio_mutex_remove(td->mutex);
1695         td->mutex = NULL;
1696
1697         td_set_runstate(td, TD_EXITED);
1698
1699         /*
1700          * Do this last after setting our runstate to exited, so we
1701          * know that the stat thread is signaled.
1702          */
1703         check_update_rusage(td);
1704
1705         return (void *) (uintptr_t) td->error;
1706 }
1707
1708
1709 /*
1710  * We cannot pass the td data into a forked process, so attach the td and
1711  * pass it to the thread worker.
1712  */
1713 static int fork_main(int shmid, int offset)
1714 {
1715         struct thread_data *td;
1716         void *data, *ret;
1717
1718 #if !defined(__hpux) && !defined(CONFIG_NO_SHM)
1719         data = shmat(shmid, NULL, 0);
1720         if (data == (void *) -1) {
1721                 int __err = errno;
1722
1723                 perror("shmat");
1724                 return __err;
1725         }
1726 #else
1727         /*
1728          * HP-UX inherits shm mappings?
1729          */
1730         data = threads;
1731 #endif
1732
1733         td = data + offset * sizeof(struct thread_data);
1734         ret = thread_main(td);
1735         shmdt(data);
1736         return (int) (uintptr_t) ret;
1737 }
1738
1739 static void dump_td_info(struct thread_data *td)
1740 {
1741         log_err("fio: job '%s' hasn't exited in %lu seconds, it appears to "
1742                 "be stuck. Doing forceful exit of this job.\n", td->o.name,
1743                         (unsigned long) time_since_now(&td->terminate_time));
1744 }
1745
1746 /*
1747  * Run over the job map and reap the threads that have exited, if any.
1748  */
1749 static void reap_threads(unsigned int *nr_running, unsigned int *t_rate,
1750                          unsigned int *m_rate)
1751 {
1752         struct thread_data *td;
1753         unsigned int cputhreads, realthreads, pending;
1754         int i, status, ret;
1755
1756         /*
1757          * reap exited threads (TD_EXITED -> TD_REAPED)
1758          */
1759         realthreads = pending = cputhreads = 0;
1760         for_each_td(td, i) {
1761                 int flags = 0;
1762
1763                 /*
1764                  * ->io_ops is NULL for a thread that has closed its
1765                  * io engine
1766                  */
1767                 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
1768                         cputhreads++;
1769                 else
1770                         realthreads++;
1771
1772                 if (!td->pid) {
1773                         pending++;
1774                         continue;
1775                 }
1776                 if (td->runstate == TD_REAPED)
1777                         continue;
1778                 if (td->o.use_thread) {
1779                         if (td->runstate == TD_EXITED) {
1780                                 td_set_runstate(td, TD_REAPED);
1781                                 goto reaped;
1782                         }
1783                         continue;
1784                 }
1785
1786                 flags = WNOHANG;
1787                 if (td->runstate == TD_EXITED)
1788                         flags = 0;
1789
1790                 /*
1791                  * check if someone quit or got killed in an unusual way
1792                  */
1793                 ret = waitpid(td->pid, &status, flags);
1794                 if (ret < 0) {
1795                         if (errno == ECHILD) {
1796                                 log_err("fio: pid=%d disappeared %d\n",
1797                                                 (int) td->pid, td->runstate);
1798                                 td->sig = ECHILD;
1799                                 td_set_runstate(td, TD_REAPED);
1800                                 goto reaped;
1801                         }
1802                         perror("waitpid");
1803                 } else if (ret == td->pid) {
1804                         if (WIFSIGNALED(status)) {
1805                                 int sig = WTERMSIG(status);
1806
1807                                 if (sig != SIGTERM && sig != SIGUSR2)
1808                                         log_err("fio: pid=%d, got signal=%d\n",
1809                                                         (int) td->pid, sig);
1810                                 td->sig = sig;
1811                                 td_set_runstate(td, TD_REAPED);
1812                                 goto reaped;
1813                         }
1814                         if (WIFEXITED(status)) {
1815                                 if (WEXITSTATUS(status) && !td->error)
1816                                         td->error = WEXITSTATUS(status);
1817
1818                                 td_set_runstate(td, TD_REAPED);
1819                                 goto reaped;
1820                         }
1821                 }
1822
1823                 /*
1824                  * If the job is stuck, do a forceful timeout of it and
1825                  * move on.
1826                  */
1827                 if (td->terminate &&
1828                     time_since_now(&td->terminate_time) >= FIO_REAP_TIMEOUT) {
1829                         dump_td_info(td);
1830                         td_set_runstate(td, TD_REAPED);
1831                         goto reaped;
1832                 }
1833
1834                 /*
1835                  * thread is not dead, continue
1836                  */
1837                 pending++;
1838                 continue;
1839 reaped:
1840                 (*nr_running)--;
1841                 (*m_rate) -= ddir_rw_sum(td->o.ratemin);
1842                 (*t_rate) -= ddir_rw_sum(td->o.rate);
1843                 if (!td->pid)
1844                         pending--;
1845
1846                 if (td->error)
1847                         exit_value++;
1848
1849                 done_secs += mtime_since_now(&td->epoch) / 1000;
1850                 profile_td_exit(td);
1851         }
1852
1853         if (*nr_running == cputhreads && !pending && realthreads)
1854                 fio_terminate_threads(TERMINATE_ALL);
1855 }
1856
1857 static bool __check_trigger_file(void)
1858 {
1859         struct stat sb;
1860
1861         if (!trigger_file)
1862                 return false;
1863
1864         if (stat(trigger_file, &sb))
1865                 return false;
1866
1867         if (unlink(trigger_file) < 0)
1868                 log_err("fio: failed to unlink %s: %s\n", trigger_file,
1869                                                         strerror(errno));
1870
1871         return true;
1872 }
1873
1874 static bool trigger_timedout(void)
1875 {
1876         if (trigger_timeout)
1877                 return time_since_genesis() >= trigger_timeout;
1878
1879         return false;
1880 }
1881
1882 void exec_trigger(const char *cmd)
1883 {
1884         int ret;
1885
1886         if (!cmd)
1887                 return;
1888
1889         ret = system(cmd);
1890         if (ret == -1)
1891                 log_err("fio: failed executing %s trigger\n", cmd);
1892 }
1893
1894 void check_trigger_file(void)
1895 {
1896         if (__check_trigger_file() || trigger_timedout()) {
1897                 if (nr_clients)
1898                         fio_clients_send_trigger(trigger_remote_cmd);
1899                 else {
1900                         verify_save_state(IO_LIST_ALL);
1901                         fio_terminate_threads(TERMINATE_ALL);
1902                         exec_trigger(trigger_cmd);
1903                 }
1904         }
1905 }
1906
1907 static int fio_verify_load_state(struct thread_data *td)
1908 {
1909         int ret;
1910
1911         if (!td->o.verify_state)
1912                 return 0;
1913
1914         if (is_backend) {
1915                 void *data;
1916                 int ver;
1917
1918                 ret = fio_server_get_verify_state(td->o.name,
1919                                         td->thread_number - 1, &data, &ver);
1920                 if (!ret)
1921                         verify_convert_assign_state(td, data, ver);
1922         } else
1923                 ret = verify_load_state(td, "local");
1924
1925         return ret;
1926 }
1927
1928 static void do_usleep(unsigned int usecs)
1929 {
1930         check_for_running_stats();
1931         check_trigger_file();
1932         usleep(usecs);
1933 }
1934
1935 static bool check_mount_writes(struct thread_data *td)
1936 {
1937         struct fio_file *f;
1938         unsigned int i;
1939
1940         if (!td_write(td) || td->o.allow_mounted_write)
1941                 return false;
1942
1943         for_each_file(td, f, i) {
1944                 if (f->filetype != FIO_TYPE_BD)
1945                         continue;
1946                 if (device_is_mounted(f->file_name))
1947                         goto mounted;
1948         }
1949
1950         return false;
1951 mounted:
1952         log_err("fio: %s appears mounted, and 'allow_mounted_write' isn't set. Aborting.", f->file_name);
1953         return true;
1954 }
1955
1956 /*
1957  * Main function for kicking off and reaping jobs, as needed.
1958  */
1959 static void run_threads(void)
1960 {
1961         struct thread_data *td;
1962         unsigned int i, todo, nr_running, m_rate, t_rate, nr_started;
1963         uint64_t spent;
1964
1965         if (fio_gtod_offload && fio_start_gtod_thread())
1966                 return;
1967
1968         fio_idle_prof_init();
1969
1970         set_sig_handlers();
1971
1972         nr_thread = nr_process = 0;
1973         for_each_td(td, i) {
1974                 if (check_mount_writes(td))
1975                         return;
1976                 if (td->o.use_thread)
1977                         nr_thread++;
1978                 else
1979                         nr_process++;
1980         }
1981
1982         if (output_format & FIO_OUTPUT_NORMAL) {
1983                 log_info("Starting ");
1984                 if (nr_thread)
1985                         log_info("%d thread%s", nr_thread,
1986                                                 nr_thread > 1 ? "s" : "");
1987                 if (nr_process) {
1988                         if (nr_thread)
1989                                 log_info(" and ");
1990                         log_info("%d process%s", nr_process,
1991                                                 nr_process > 1 ? "es" : "");
1992                 }
1993                 log_info("\n");
1994                 log_info_flush();
1995         }
1996
1997         todo = thread_number;
1998         nr_running = 0;
1999         nr_started = 0;
2000         m_rate = t_rate = 0;
2001
2002         for_each_td(td, i) {
2003                 print_status_init(td->thread_number - 1);
2004
2005                 if (!td->o.create_serialize)
2006                         continue;
2007
2008                 if (fio_verify_load_state(td))
2009                         goto reap;
2010
2011                 /*
2012                  * do file setup here so it happens sequentially,
2013                  * we don't want X number of threads getting their
2014                  * client data interspersed on disk
2015                  */
2016                 if (setup_files(td)) {
2017 reap:
2018                         exit_value++;
2019                         if (td->error)
2020                                 log_err("fio: pid=%d, err=%d/%s\n",
2021                                         (int) td->pid, td->error, td->verror);
2022                         td_set_runstate(td, TD_REAPED);
2023                         todo--;
2024                 } else {
2025                         struct fio_file *f;
2026                         unsigned int j;
2027
2028                         /*
2029                          * for sharing to work, each job must always open
2030                          * its own files. so close them, if we opened them
2031                          * for creation
2032                          */
2033                         for_each_file(td, f, j) {
2034                                 if (fio_file_open(f))
2035                                         td_io_close_file(td, f);
2036                         }
2037                 }
2038         }
2039
2040         /* start idle threads before io threads start to run */
2041         fio_idle_prof_start();
2042
2043         set_genesis_time();
2044
2045         while (todo) {
2046                 struct thread_data *map[REAL_MAX_JOBS];
2047                 struct timeval this_start;
2048                 int this_jobs = 0, left;
2049
2050                 /*
2051                  * create threads (TD_NOT_CREATED -> TD_CREATED)
2052                  */
2053                 for_each_td(td, i) {
2054                         if (td->runstate != TD_NOT_CREATED)
2055                                 continue;
2056
2057                         /*
2058                          * never got a chance to start, killed by other
2059                          * thread for some reason
2060                          */
2061                         if (td->terminate) {
2062                                 todo--;
2063                                 continue;
2064                         }
2065
2066                         if (td->o.start_delay) {
2067                                 spent = utime_since_genesis();
2068
2069                                 if (td->o.start_delay > spent)
2070                                         continue;
2071                         }
2072
2073                         if (td->o.stonewall && (nr_started || nr_running)) {
2074                                 dprint(FD_PROCESS, "%s: stonewall wait\n",
2075                                                         td->o.name);
2076                                 break;
2077                         }
2078
2079                         init_disk_util(td);
2080
2081                         td->rusage_sem = fio_mutex_init(FIO_MUTEX_LOCKED);
2082                         td->update_rusage = 0;
2083
2084                         /*
2085                          * Set state to created. Thread will transition
2086                          * to TD_INITIALIZED when it's done setting up.
2087                          */
2088                         td_set_runstate(td, TD_CREATED);
2089                         map[this_jobs++] = td;
2090                         nr_started++;
2091
2092                         if (td->o.use_thread) {
2093                                 int ret;
2094
2095                                 dprint(FD_PROCESS, "will pthread_create\n");
2096                                 ret = pthread_create(&td->thread, NULL,
2097                                                         thread_main, td);
2098                                 if (ret) {
2099                                         log_err("pthread_create: %s\n",
2100                                                         strerror(ret));
2101                                         nr_started--;
2102                                         break;
2103                                 }
2104                                 ret = pthread_detach(td->thread);
2105                                 if (ret)
2106                                         log_err("pthread_detach: %s",
2107                                                         strerror(ret));
2108                         } else {
2109                                 pid_t pid;
2110                                 dprint(FD_PROCESS, "will fork\n");
2111                                 pid = fork();
2112                                 if (!pid) {
2113                                         int ret = fork_main(shm_id, i);
2114
2115                                         _exit(ret);
2116                                 } else if (i == fio_debug_jobno)
2117                                         *fio_debug_jobp = pid;
2118                         }
2119                         dprint(FD_MUTEX, "wait on startup_mutex\n");
2120                         if (fio_mutex_down_timeout(startup_mutex, 10)) {
2121                                 log_err("fio: job startup hung? exiting.\n");
2122                                 fio_terminate_threads(TERMINATE_ALL);
2123                                 fio_abort = 1;
2124                                 nr_started--;
2125                                 break;
2126                         }
2127                         dprint(FD_MUTEX, "done waiting on startup_mutex\n");
2128                 }
2129
2130                 /*
2131                  * Wait for the started threads to transition to
2132                  * TD_INITIALIZED.
2133                  */
2134                 fio_gettime(&this_start, NULL);
2135                 left = this_jobs;
2136                 while (left && !fio_abort) {
2137                         if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
2138                                 break;
2139
2140                         do_usleep(100000);
2141
2142                         for (i = 0; i < this_jobs; i++) {
2143                                 td = map[i];
2144                                 if (!td)
2145                                         continue;
2146                                 if (td->runstate == TD_INITIALIZED) {
2147                                         map[i] = NULL;
2148                                         left--;
2149                                 } else if (td->runstate >= TD_EXITED) {
2150                                         map[i] = NULL;
2151                                         left--;
2152                                         todo--;
2153                                         nr_running++; /* work-around... */
2154                                 }
2155                         }
2156                 }
2157
2158                 if (left) {
2159                         log_err("fio: %d job%s failed to start\n", left,
2160                                         left > 1 ? "s" : "");
2161                         for (i = 0; i < this_jobs; i++) {
2162                                 td = map[i];
2163                                 if (!td)
2164                                         continue;
2165                                 kill(td->pid, SIGTERM);
2166                         }
2167                         break;
2168                 }
2169
2170                 /*
2171                  * start created threads (TD_INITIALIZED -> TD_RUNNING).
2172                  */
2173                 for_each_td(td, i) {
2174                         if (td->runstate != TD_INITIALIZED)
2175                                 continue;
2176
2177                         if (in_ramp_time(td))
2178                                 td_set_runstate(td, TD_RAMP);
2179                         else
2180                                 td_set_runstate(td, TD_RUNNING);
2181                         nr_running++;
2182                         nr_started--;
2183                         m_rate += ddir_rw_sum(td->o.ratemin);
2184                         t_rate += ddir_rw_sum(td->o.rate);
2185                         todo--;
2186                         fio_mutex_up(td->mutex);
2187                 }
2188
2189                 reap_threads(&nr_running, &t_rate, &m_rate);
2190
2191                 if (todo)
2192                         do_usleep(100000);
2193         }
2194
2195         while (nr_running) {
2196                 reap_threads(&nr_running, &t_rate, &m_rate);
2197                 do_usleep(10000);
2198         }
2199
2200         fio_idle_prof_stop();
2201
2202         update_io_ticks();
2203 }
2204
2205 static void wait_for_helper_thread_exit(void)
2206 {
2207         void *ret;
2208
2209         helper_exit = 1;
2210         pthread_cond_signal(&helper_cond);
2211         pthread_join(helper_thread, &ret);
2212 }
2213
2214 static void free_disk_util(void)
2215 {
2216         disk_util_prune_entries();
2217
2218         pthread_cond_destroy(&helper_cond);
2219 }
2220
2221 static void *helper_thread_main(void *data)
2222 {
2223         int ret = 0;
2224
2225         fio_mutex_up(startup_mutex);
2226
2227         while (!ret) {
2228                 uint64_t sec = DISK_UTIL_MSEC / 1000;
2229                 uint64_t nsec = (DISK_UTIL_MSEC % 1000) * 1000000;
2230                 struct timespec ts;
2231                 struct timeval tv;
2232
2233                 gettimeofday(&tv, NULL);
2234                 ts.tv_sec = tv.tv_sec + sec;
2235                 ts.tv_nsec = (tv.tv_usec * 1000) + nsec;
2236
2237                 if (ts.tv_nsec >= 1000000000ULL) {
2238                         ts.tv_nsec -= 1000000000ULL;
2239                         ts.tv_sec++;
2240                 }
2241
2242                 pthread_cond_timedwait(&helper_cond, &helper_lock, &ts);
2243
2244                 ret = update_io_ticks();
2245
2246                 if (helper_do_stat) {
2247                         helper_do_stat = 0;
2248                         __show_running_run_stats();
2249                 }
2250
2251                 if (!is_backend)
2252                         print_thread_status();
2253         }
2254
2255         return NULL;
2256 }
2257
2258 static int create_helper_thread(void)
2259 {
2260         int ret;
2261
2262         setup_disk_util();
2263
2264         pthread_cond_init(&helper_cond, NULL);
2265         pthread_mutex_init(&helper_lock, NULL);
2266
2267         ret = pthread_create(&helper_thread, NULL, helper_thread_main, NULL);
2268         if (ret) {
2269                 log_err("Can't create helper thread: %s\n", strerror(ret));
2270                 return 1;
2271         }
2272
2273         dprint(FD_MUTEX, "wait on startup_mutex\n");
2274         fio_mutex_down(startup_mutex);
2275         dprint(FD_MUTEX, "done waiting on startup_mutex\n");
2276         return 0;
2277 }
2278
2279 int fio_backend(void)
2280 {
2281         struct thread_data *td;
2282         int i;
2283
2284         if (exec_profile) {
2285                 if (load_profile(exec_profile))
2286                         return 1;
2287                 free(exec_profile);
2288                 exec_profile = NULL;
2289         }
2290         if (!thread_number)
2291                 return 0;
2292
2293         if (write_bw_log) {
2294                 struct log_params p = {
2295                         .log_type = IO_LOG_TYPE_BW,
2296                 };
2297
2298                 setup_log(&agg_io_log[DDIR_READ], &p, "agg-read_bw.log");
2299                 setup_log(&agg_io_log[DDIR_WRITE], &p, "agg-write_bw.log");
2300                 setup_log(&agg_io_log[DDIR_TRIM], &p, "agg-trim_bw.log");
2301         }
2302
2303         startup_mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
2304         if (startup_mutex == NULL)
2305                 return 1;
2306
2307         set_genesis_time();
2308         stat_init();
2309         create_helper_thread();
2310
2311         cgroup_list = smalloc(sizeof(*cgroup_list));
2312         INIT_FLIST_HEAD(cgroup_list);
2313
2314         run_threads();
2315
2316         wait_for_helper_thread_exit();
2317
2318         if (!fio_abort) {
2319                 __show_run_stats();
2320                 if (write_bw_log) {
2321                         for (i = 0; i < DDIR_RWDIR_CNT; i++) {
2322                                 struct io_log *log = agg_io_log[i];
2323
2324                                 flush_log(log, 0);
2325                                 free_log(log);
2326                         }
2327                 }
2328         }
2329
2330         for_each_td(td, i) {
2331                 fio_options_free(td);
2332                 if (td->rusage_sem) {
2333                         fio_mutex_remove(td->rusage_sem);
2334                         td->rusage_sem = NULL;
2335                 }
2336         }
2337
2338         free_disk_util();
2339         cgroup_kill(cgroup_list);
2340         sfree(cgroup_list);
2341         sfree(cgroup_mnt);
2342
2343         fio_mutex_remove(startup_mutex);
2344         stat_exit();
2345         return exit_value;
2346 }