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