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