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