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