thread cpu resource statistics bug fix
[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
61 struct io_log *agg_io_log[DDIR_RWDIR_CNT];
62
63 int groupid = 0;
64 unsigned int thread_number = 0;
65 unsigned int nr_process = 0;
66 unsigned int nr_thread = 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         pthread_condattr_t attr;
989         int clear_state;
990
991         if (!td->o.use_thread) {
992                 setsid();
993                 td->pid = getpid();
994         } else
995                 td->pid = gettid();
996
997         dprint(FD_PROCESS, "jobs pid=%d started\n", (int) td->pid);
998
999         INIT_FLIST_HEAD(&td->io_u_freelist);
1000         INIT_FLIST_HEAD(&td->io_u_busylist);
1001         INIT_FLIST_HEAD(&td->io_u_requeues);
1002         INIT_FLIST_HEAD(&td->io_log_list);
1003         INIT_FLIST_HEAD(&td->io_hist_list);
1004         INIT_FLIST_HEAD(&td->verify_list);
1005         INIT_FLIST_HEAD(&td->trim_list);
1006         pthread_mutex_init(&td->io_u_lock, NULL);
1007         td->io_hist_tree = RB_ROOT;
1008
1009         pthread_condattr_init(&attr);
1010         pthread_cond_init(&td->verify_cond, &attr);
1011         pthread_cond_init(&td->free_cond, &attr);
1012
1013         td_set_runstate(td, TD_INITIALIZED);
1014         dprint(FD_MUTEX, "up startup_mutex\n");
1015         fio_mutex_up(startup_mutex);
1016         dprint(FD_MUTEX, "wait on td->mutex\n");
1017         fio_mutex_down(td->mutex);
1018         dprint(FD_MUTEX, "done waiting on td->mutex\n");
1019
1020         /*
1021          * the ->mutex mutex is now no longer used, close it to avoid
1022          * eating a file descriptor
1023          */
1024         fio_mutex_remove(td->mutex);
1025
1026         /*
1027          * A new gid requires privilege, so we need to do this before setting
1028          * the uid.
1029          */
1030         if (td->o.gid != -1U && setgid(td->o.gid)) {
1031                 td_verror(td, errno, "setgid");
1032                 goto err;
1033         }
1034         if (td->o.uid != -1U && setuid(td->o.uid)) {
1035                 td_verror(td, errno, "setuid");
1036                 goto err;
1037         }
1038
1039         /*
1040          * If we have a gettimeofday() thread, make sure we exclude that
1041          * thread from this job
1042          */
1043         if (td->o.gtod_cpu)
1044                 fio_cpu_clear(&td->o.cpumask, td->o.gtod_cpu);
1045
1046         /*
1047          * Set affinity first, in case it has an impact on the memory
1048          * allocations.
1049          */
1050         if (td->o.cpumask_set && fio_setaffinity(td->pid, td->o.cpumask) == -1) {
1051                 td_verror(td, errno, "cpu_set_affinity");
1052                 goto err;
1053         }
1054
1055         /*
1056          * May alter parameters that init_io_u() will use, so we need to
1057          * do this first.
1058          */
1059         if (init_iolog(td))
1060                 goto err;
1061
1062         if (init_io_u(td))
1063                 goto err;
1064
1065         if (td->o.verify_async && verify_async_init(td))
1066                 goto err;
1067
1068         if (td->ioprio_set) {
1069                 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
1070                         td_verror(td, errno, "ioprio_set");
1071                         goto err;
1072                 }
1073         }
1074
1075         if (td->o.cgroup && cgroup_setup(td, cgroup_list, &cgroup_mnt))
1076                 goto err;
1077
1078         errno = 0;
1079         if (nice(td->o.nice) == -1 && errno != 0) {
1080                 td_verror(td, errno, "nice");
1081                 goto err;
1082         }
1083
1084         if (td->o.ioscheduler && switch_ioscheduler(td))
1085                 goto err;
1086
1087         if (!td->o.create_serialize && setup_files(td))
1088                 goto err;
1089
1090         if (td_io_init(td))
1091                 goto err;
1092
1093         if (init_random_map(td))
1094                 goto err;
1095
1096         if (td->o.exec_prerun) {
1097                 if (exec_string(td->o.exec_prerun))
1098                         goto err;
1099         }
1100
1101         if (td->o.pre_read) {
1102                 if (pre_read_files(td) < 0)
1103                         goto err;
1104         }
1105
1106         fio_gettime(&td->epoch, NULL);
1107         getrusage(RUSAGE_SELF, &td->ru_start);
1108
1109         clear_state = 0;
1110         while (keep_running(td)) {
1111                 fio_gettime(&td->start, NULL);
1112                 memcpy(&td->bw_sample_time, &td->start, sizeof(td->start));
1113                 memcpy(&td->iops_sample_time, &td->start, sizeof(td->start));
1114                 memcpy(&td->tv_cache, &td->start, sizeof(td->start));
1115
1116                 if (td->o.ratemin[DDIR_READ] || td->o.ratemin[DDIR_WRITE] ||
1117                                 td->o.ratemin[DDIR_TRIM]) {
1118                         memcpy(&td->lastrate[DDIR_READ], &td->bw_sample_time,
1119                                                 sizeof(td->bw_sample_time));
1120                         memcpy(&td->lastrate[DDIR_WRITE], &td->bw_sample_time,
1121                                                 sizeof(td->bw_sample_time));
1122                         memcpy(&td->lastrate[DDIR_TRIM], &td->bw_sample_time,
1123                                                 sizeof(td->bw_sample_time));
1124                 }
1125
1126                 if (clear_state)
1127                         clear_io_state(td);
1128
1129                 prune_io_piece_log(td);
1130
1131                 do_io(td);
1132
1133                 clear_state = 1;
1134
1135                 if (td_read(td) && td->io_bytes[DDIR_READ]) {
1136                         elapsed = utime_since_now(&td->start);
1137                         td->ts.runtime[DDIR_READ] += elapsed;
1138                 }
1139                 if (td_write(td) && td->io_bytes[DDIR_WRITE]) {
1140                         elapsed = utime_since_now(&td->start);
1141                         td->ts.runtime[DDIR_WRITE] += elapsed;
1142                 }
1143                 if (td_trim(td) && td->io_bytes[DDIR_TRIM]) {
1144                         elapsed = utime_since_now(&td->start);
1145                         td->ts.runtime[DDIR_TRIM] += elapsed;
1146                 }
1147
1148                 if (td->error || td->terminate)
1149                         break;
1150
1151                 if (!td->o.do_verify ||
1152                     td->o.verify == VERIFY_NONE ||
1153                     (td->io_ops->flags & FIO_UNIDIR))
1154                         continue;
1155
1156                 clear_io_state(td);
1157
1158                 fio_gettime(&td->start, NULL);
1159
1160                 do_verify(td);
1161
1162                 td->ts.runtime[DDIR_READ] += utime_since_now(&td->start);
1163
1164                 if (td->error || td->terminate)
1165                         break;
1166         }
1167
1168         update_rusage_stat(td);
1169         td->ts.runtime[DDIR_READ] = (td->ts.runtime[DDIR_READ] + 999) / 1000;
1170         td->ts.runtime[DDIR_WRITE] = (td->ts.runtime[DDIR_WRITE] + 999) / 1000;
1171         td->ts.runtime[DDIR_TRIM] = (td->ts.runtime[DDIR_TRIM] + 999) / 1000;
1172         td->ts.total_run_time = mtime_since_now(&td->epoch);
1173         td->ts.io_bytes[DDIR_READ] = td->io_bytes[DDIR_READ];
1174         td->ts.io_bytes[DDIR_WRITE] = td->io_bytes[DDIR_WRITE];
1175         td->ts.io_bytes[DDIR_TRIM] = td->io_bytes[DDIR_TRIM];
1176
1177         fio_mutex_down(writeout_mutex);
1178         if (td->bw_log) {
1179                 if (td->o.bw_log_file) {
1180                         finish_log_named(td, td->bw_log,
1181                                                 td->o.bw_log_file, "bw");
1182                 } else
1183                         finish_log(td, td->bw_log, "bw");
1184         }
1185         if (td->lat_log) {
1186                 if (td->o.lat_log_file) {
1187                         finish_log_named(td, td->lat_log,
1188                                                 td->o.lat_log_file, "lat");
1189                 } else
1190                         finish_log(td, td->lat_log, "lat");
1191         }
1192         if (td->slat_log) {
1193                 if (td->o.lat_log_file) {
1194                         finish_log_named(td, td->slat_log,
1195                                                 td->o.lat_log_file, "slat");
1196                 } else
1197                         finish_log(td, td->slat_log, "slat");
1198         }
1199         if (td->clat_log) {
1200                 if (td->o.lat_log_file) {
1201                         finish_log_named(td, td->clat_log,
1202                                                 td->o.lat_log_file, "clat");
1203                 } else
1204                         finish_log(td, td->clat_log, "clat");
1205         }
1206         if (td->iops_log) {
1207                 if (td->o.iops_log_file) {
1208                         finish_log_named(td, td->iops_log,
1209                                                 td->o.iops_log_file, "iops");
1210                 } else
1211                         finish_log(td, td->iops_log, "iops");
1212         }
1213
1214         fio_mutex_up(writeout_mutex);
1215         if (td->o.exec_postrun)
1216                 exec_string(td->o.exec_postrun);
1217
1218         if (exitall_on_terminate)
1219                 fio_terminate_threads(td->groupid);
1220
1221 err:
1222         if (td->error)
1223                 log_info("fio: pid=%d, err=%d/%s\n", (int) td->pid, td->error,
1224                                                         td->verror);
1225
1226         if (td->o.verify_async)
1227                 verify_async_exit(td);
1228
1229         close_and_free_files(td);
1230         close_ioengine(td);
1231         cleanup_io_u(td);
1232         cgroup_shutdown(td, &cgroup_mnt);
1233
1234         if (td->o.cpumask_set) {
1235                 int ret = fio_cpuset_exit(&td->o.cpumask);
1236
1237                 td_verror(td, ret, "fio_cpuset_exit");
1238         }
1239
1240         /*
1241          * do this very late, it will log file closing as well
1242          */
1243         if (td->o.write_iolog_file)
1244                 write_iolog_close(td);
1245
1246         td_set_runstate(td, TD_EXITED);
1247         return (void *) (uintptr_t) td->error;
1248 }
1249
1250
1251 /*
1252  * We cannot pass the td data into a forked process, so attach the td and
1253  * pass it to the thread worker.
1254  */
1255 static int fork_main(int shmid, int offset)
1256 {
1257         struct thread_data *td;
1258         void *data, *ret;
1259
1260 #ifndef __hpux
1261         data = shmat(shmid, NULL, 0);
1262         if (data == (void *) -1) {
1263                 int __err = errno;
1264
1265                 perror("shmat");
1266                 return __err;
1267         }
1268 #else
1269         /*
1270          * HP-UX inherits shm mappings?
1271          */
1272         data = threads;
1273 #endif
1274
1275         td = data + offset * sizeof(struct thread_data);
1276         ret = thread_main(td);
1277         shmdt(data);
1278         return (int) (uintptr_t) ret;
1279 }
1280
1281 /*
1282  * Run over the job map and reap the threads that have exited, if any.
1283  */
1284 static void reap_threads(unsigned int *nr_running, unsigned int *t_rate,
1285                          unsigned int *m_rate)
1286 {
1287         struct thread_data *td;
1288         unsigned int cputhreads, realthreads, pending;
1289         int i, status, ret;
1290
1291         /*
1292          * reap exited threads (TD_EXITED -> TD_REAPED)
1293          */
1294         realthreads = pending = cputhreads = 0;
1295         for_each_td(td, i) {
1296                 int flags = 0;
1297
1298                 /*
1299                  * ->io_ops is NULL for a thread that has closed its
1300                  * io engine
1301                  */
1302                 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
1303                         cputhreads++;
1304                 else
1305                         realthreads++;
1306
1307                 if (!td->pid) {
1308                         pending++;
1309                         continue;
1310                 }
1311                 if (td->runstate == TD_REAPED)
1312                         continue;
1313                 if (td->o.use_thread) {
1314                         if (td->runstate == TD_EXITED) {
1315                                 td_set_runstate(td, TD_REAPED);
1316                                 goto reaped;
1317                         }
1318                         continue;
1319                 }
1320
1321                 flags = WNOHANG;
1322                 if (td->runstate == TD_EXITED)
1323                         flags = 0;
1324
1325                 /*
1326                  * check if someone quit or got killed in an unusual way
1327                  */
1328                 ret = waitpid(td->pid, &status, flags);
1329                 if (ret < 0) {
1330                         if (errno == ECHILD) {
1331                                 log_err("fio: pid=%d disappeared %d\n",
1332                                                 (int) td->pid, td->runstate);
1333                                 td->sig = ECHILD;
1334                                 td_set_runstate(td, TD_REAPED);
1335                                 goto reaped;
1336                         }
1337                         perror("waitpid");
1338                 } else if (ret == td->pid) {
1339                         if (WIFSIGNALED(status)) {
1340                                 int sig = WTERMSIG(status);
1341
1342                                 if (sig != SIGTERM)
1343                                         log_err("fio: pid=%d, got signal=%d\n",
1344                                                         (int) td->pid, sig);
1345                                 td->sig = sig;
1346                                 td_set_runstate(td, TD_REAPED);
1347                                 goto reaped;
1348                         }
1349                         if (WIFEXITED(status)) {
1350                                 if (WEXITSTATUS(status) && !td->error)
1351                                         td->error = WEXITSTATUS(status);
1352
1353                                 td_set_runstate(td, TD_REAPED);
1354                                 goto reaped;
1355                         }
1356                 }
1357
1358                 /*
1359                  * thread is not dead, continue
1360                  */
1361                 pending++;
1362                 continue;
1363 reaped:
1364                 (*nr_running)--;
1365                 (*m_rate) -= ddir_rw_sum(td->o.ratemin);
1366                 (*t_rate) -= ddir_rw_sum(td->o.rate);
1367                 if (!td->pid)
1368                         pending--;
1369
1370                 if (td->error)
1371                         exit_value++;
1372
1373                 done_secs += mtime_since_now(&td->epoch) / 1000;
1374         }
1375
1376         if (*nr_running == cputhreads && !pending && realthreads)
1377                 fio_terminate_threads(TERMINATE_ALL);
1378 }
1379
1380 /*
1381  * Main function for kicking off and reaping jobs, as needed.
1382  */
1383 static void run_threads(void)
1384 {
1385         struct thread_data *td;
1386         unsigned long spent;
1387         unsigned int i, todo, nr_running, m_rate, t_rate, nr_started;
1388
1389         if (fio_pin_memory())
1390                 return;
1391
1392         if (fio_gtod_offload && fio_start_gtod_thread())
1393                 return;
1394
1395         set_sig_handlers();
1396
1397         if (output_format == FIO_OUTPUT_NORMAL) {
1398                 log_info("Starting ");
1399                 if (nr_thread)
1400                         log_info("%d thread%s", nr_thread,
1401                                                 nr_thread > 1 ? "s" : "");
1402                 if (nr_process) {
1403                         if (nr_thread)
1404                                 log_info(" and ");
1405                         log_info("%d process%s", nr_process,
1406                                                 nr_process > 1 ? "es" : "");
1407                 }
1408                 log_info("\n");
1409                 fflush(stdout);
1410         }
1411
1412         todo = thread_number;
1413         nr_running = 0;
1414         nr_started = 0;
1415         m_rate = t_rate = 0;
1416
1417         for_each_td(td, i) {
1418                 print_status_init(td->thread_number - 1);
1419
1420                 if (!td->o.create_serialize)
1421                         continue;
1422
1423                 /*
1424                  * do file setup here so it happens sequentially,
1425                  * we don't want X number of threads getting their
1426                  * client data interspersed on disk
1427                  */
1428                 if (setup_files(td)) {
1429                         exit_value++;
1430                         if (td->error)
1431                                 log_err("fio: pid=%d, err=%d/%s\n",
1432                                         (int) td->pid, td->error, td->verror);
1433                         td_set_runstate(td, TD_REAPED);
1434                         todo--;
1435                 } else {
1436                         struct fio_file *f;
1437                         unsigned int j;
1438
1439                         /*
1440                          * for sharing to work, each job must always open
1441                          * its own files. so close them, if we opened them
1442                          * for creation
1443                          */
1444                         for_each_file(td, f, j) {
1445                                 if (fio_file_open(f))
1446                                         td_io_close_file(td, f);
1447                         }
1448                 }
1449         }
1450
1451         set_genesis_time();
1452
1453         while (todo) {
1454                 struct thread_data *map[REAL_MAX_JOBS];
1455                 struct timeval this_start;
1456                 int this_jobs = 0, left;
1457
1458                 /*
1459                  * create threads (TD_NOT_CREATED -> TD_CREATED)
1460                  */
1461                 for_each_td(td, i) {
1462                         if (td->runstate != TD_NOT_CREATED)
1463                                 continue;
1464
1465                         /*
1466                          * never got a chance to start, killed by other
1467                          * thread for some reason
1468                          */
1469                         if (td->terminate) {
1470                                 todo--;
1471                                 continue;
1472                         }
1473
1474                         if (td->o.start_delay) {
1475                                 spent = mtime_since_genesis();
1476
1477                                 if (td->o.start_delay * 1000 > spent)
1478                                         continue;
1479                         }
1480
1481                         if (td->o.stonewall && (nr_started || nr_running)) {
1482                                 dprint(FD_PROCESS, "%s: stonewall wait\n",
1483                                                         td->o.name);
1484                                 break;
1485                         }
1486
1487                         init_disk_util(td);
1488
1489                         /*
1490                          * Set state to created. Thread will transition
1491                          * to TD_INITIALIZED when it's done setting up.
1492                          */
1493                         td_set_runstate(td, TD_CREATED);
1494                         map[this_jobs++] = td;
1495                         nr_started++;
1496
1497                         if (td->o.use_thread) {
1498                                 int ret;
1499
1500                                 dprint(FD_PROCESS, "will pthread_create\n");
1501                                 ret = pthread_create(&td->thread, NULL,
1502                                                         thread_main, td);
1503                                 if (ret) {
1504                                         log_err("pthread_create: %s\n",
1505                                                         strerror(ret));
1506                                         nr_started--;
1507                                         break;
1508                                 }
1509                                 ret = pthread_detach(td->thread);
1510                                 if (ret)
1511                                         log_err("pthread_detach: %s",
1512                                                         strerror(ret));
1513                         } else {
1514                                 pid_t pid;
1515                                 dprint(FD_PROCESS, "will fork\n");
1516                                 pid = fork();
1517                                 if (!pid) {
1518                                         int ret = fork_main(shm_id, i);
1519
1520                                         _exit(ret);
1521                                 } else if (i == fio_debug_jobno)
1522                                         *fio_debug_jobp = pid;
1523                         }
1524                         dprint(FD_MUTEX, "wait on startup_mutex\n");
1525                         if (fio_mutex_down_timeout(startup_mutex, 10)) {
1526                                 log_err("fio: job startup hung? exiting.\n");
1527                                 fio_terminate_threads(TERMINATE_ALL);
1528                                 fio_abort = 1;
1529                                 nr_started--;
1530                                 break;
1531                         }
1532                         dprint(FD_MUTEX, "done waiting on startup_mutex\n");
1533                 }
1534
1535                 /*
1536                  * Wait for the started threads to transition to
1537                  * TD_INITIALIZED.
1538                  */
1539                 fio_gettime(&this_start, NULL);
1540                 left = this_jobs;
1541                 while (left && !fio_abort) {
1542                         if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1543                                 break;
1544
1545                         usleep(100000);
1546
1547                         for (i = 0; i < this_jobs; i++) {
1548                                 td = map[i];
1549                                 if (!td)
1550                                         continue;
1551                                 if (td->runstate == TD_INITIALIZED) {
1552                                         map[i] = NULL;
1553                                         left--;
1554                                 } else if (td->runstate >= TD_EXITED) {
1555                                         map[i] = NULL;
1556                                         left--;
1557                                         todo--;
1558                                         nr_running++; /* work-around... */
1559                                 }
1560                         }
1561                 }
1562
1563                 if (left) {
1564                         log_err("fio: %d job%s failed to start\n", left,
1565                                         left > 1 ? "s" : "");
1566                         for (i = 0; i < this_jobs; i++) {
1567                                 td = map[i];
1568                                 if (!td)
1569                                         continue;
1570                                 kill(td->pid, SIGTERM);
1571                         }
1572                         break;
1573                 }
1574
1575                 /*
1576                  * start created threads (TD_INITIALIZED -> TD_RUNNING).
1577                  */
1578                 for_each_td(td, i) {
1579                         if (td->runstate != TD_INITIALIZED)
1580                                 continue;
1581
1582                         if (in_ramp_time(td))
1583                                 td_set_runstate(td, TD_RAMP);
1584                         else
1585                                 td_set_runstate(td, TD_RUNNING);
1586                         nr_running++;
1587                         nr_started--;
1588                         m_rate += ddir_rw_sum(td->o.ratemin);
1589                         t_rate += ddir_rw_sum(td->o.rate);
1590                         todo--;
1591                         fio_mutex_up(td->mutex);
1592                 }
1593
1594                 reap_threads(&nr_running, &t_rate, &m_rate);
1595
1596                 if (todo) {
1597                         if (is_backend)
1598                                 fio_server_idle_loop();
1599                         else
1600                                 usleep(100000);
1601                 }
1602         }
1603
1604         while (nr_running) {
1605                 reap_threads(&nr_running, &t_rate, &m_rate);
1606
1607                 if (is_backend)
1608                         fio_server_idle_loop();
1609                 else
1610                         usleep(10000);
1611         }
1612
1613         update_io_ticks();
1614         fio_unpin_memory();
1615 }
1616
1617 void wait_for_disk_thread_exit(void)
1618 {
1619         fio_mutex_down(disk_thread_mutex);
1620 }
1621
1622 static void free_disk_util(void)
1623 {
1624         disk_util_start_exit();
1625         wait_for_disk_thread_exit();
1626         disk_util_prune_entries();
1627 }
1628
1629 static void *disk_thread_main(void *data)
1630 {
1631         int ret = 0;
1632
1633         fio_mutex_up(startup_mutex);
1634
1635         while (threads && !ret) {
1636                 usleep(DISK_UTIL_MSEC * 1000);
1637                 if (!threads)
1638                         break;
1639                 ret = update_io_ticks();
1640
1641                 if (!is_backend)
1642                         print_thread_status();
1643         }
1644
1645         fio_mutex_up(disk_thread_mutex);
1646         return NULL;
1647 }
1648
1649 static int create_disk_util_thread(void)
1650 {
1651         int ret;
1652
1653         setup_disk_util();
1654
1655         disk_thread_mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
1656
1657         ret = pthread_create(&disk_util_thread, NULL, disk_thread_main, NULL);
1658         if (ret) {
1659                 fio_mutex_remove(disk_thread_mutex);
1660                 log_err("Can't create disk util thread: %s\n", strerror(ret));
1661                 return 1;
1662         }
1663
1664         ret = pthread_detach(disk_util_thread);
1665         if (ret) {
1666                 fio_mutex_remove(disk_thread_mutex);
1667                 log_err("Can't detatch disk util thread: %s\n", strerror(ret));
1668                 return 1;
1669         }
1670
1671         dprint(FD_MUTEX, "wait on startup_mutex\n");
1672         fio_mutex_down(startup_mutex);
1673         dprint(FD_MUTEX, "done waiting on startup_mutex\n");
1674         return 0;
1675 }
1676
1677 int fio_backend(void)
1678 {
1679         struct thread_data *td;
1680         int i;
1681
1682         if (exec_profile) {
1683                 if (load_profile(exec_profile))
1684                         return 1;
1685                 free(exec_profile);
1686                 exec_profile = NULL;
1687         }
1688         if (!thread_number)
1689                 return 0;
1690
1691         if (write_bw_log) {
1692                 setup_log(&agg_io_log[DDIR_READ], 0);
1693                 setup_log(&agg_io_log[DDIR_WRITE], 0);
1694                 setup_log(&agg_io_log[DDIR_TRIM], 0);
1695         }
1696
1697         startup_mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
1698         if (startup_mutex == NULL)
1699                 return 1;
1700         writeout_mutex = fio_mutex_init(FIO_MUTEX_UNLOCKED);
1701         if (writeout_mutex == NULL)
1702                 return 1;
1703
1704         set_genesis_time();
1705         create_disk_util_thread();
1706
1707         cgroup_list = smalloc(sizeof(*cgroup_list));
1708         INIT_FLIST_HEAD(cgroup_list);
1709
1710         run_threads();
1711
1712         if (!fio_abort) {
1713                 show_run_stats();
1714                 if (write_bw_log) {
1715                         __finish_log(agg_io_log[DDIR_READ], "agg-read_bw.log");
1716                         __finish_log(agg_io_log[DDIR_WRITE],
1717                                         "agg-write_bw.log");
1718                         __finish_log(agg_io_log[DDIR_TRIM],
1719                                         "agg-write_bw.log");
1720                 }
1721         }
1722
1723         for_each_td(td, i)
1724                 fio_options_free(td);
1725
1726         free_disk_util();
1727         cgroup_kill(cgroup_list);
1728         sfree(cgroup_list);
1729         sfree(cgroup_mnt);
1730
1731         fio_mutex_remove(startup_mutex);
1732         fio_mutex_remove(writeout_mutex);
1733         fio_mutex_remove(disk_thread_mutex);
1734         return exit_value;
1735 }