Replace random constant with the symbolic name (GR prime)
[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>
ebac4655
JA
31#include <sys/stat.h>
32#include <sys/wait.h>
33#include <sys/ipc.h>
34#include <sys/shm.h>
ebac4655
JA
35#include <sys/mman.h>
36
37#include "fio.h"
210f43b3 38#include "hash.h"
ebac4655 39
cfc99db7
JA
40unsigned long page_mask;
41unsigned long page_size;
29d610e1
JA
42#define ALIGN(buf) \
43 (char *) (((unsigned long) (buf) + page_mask) & ~page_mask)
ebac4655
JA
44
45int groupid = 0;
46int thread_number = 0;
9cedf167
JA
47int nr_process = 0;
48int nr_thread = 0;
ebac4655 49int shm_id = 0;
53cdc686 50int temp_stall_ts;
ebac4655 51
07739b57 52static struct fio_sem *startup_sem;
6ce15a32 53static volatile int fio_abort;
437c9b71 54static int exit_value;
ebac4655 55
bb3884d8
JA
56struct io_log *agg_io_log[2];
57
ebac4655 58#define TERMINATE_ALL (-1)
75154845 59#define JOB_START_TIMEOUT (5 * 1000)
ebac4655 60
6ce15a32
JA
61static inline void td_set_runstate(struct thread_data *td, int runstate)
62{
63 td->runstate = runstate;
64}
65
390c40e2 66static void terminate_threads(int group_id)
ebac4655 67{
34572e28 68 struct thread_data *td;
ebac4655
JA
69 int i;
70
34572e28 71 for_each_td(td, i) {
ebac4655 72 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
ef5fffa5 73 if (td->runstate <= TD_RUNNING)
c1302d44 74 kill(td->pid, SIGQUIT);
ebac4655 75 td->terminate = 1;
2dc1bbeb 76 td->o.start_delay = 0;
ebac4655
JA
77 }
78 }
79}
80
81static void sig_handler(int sig)
82{
83 switch (sig) {
84 case SIGALRM:
85 update_io_ticks();
86 disk_util_timer_arm();
87 print_thread_status();
88 break;
89 default:
6ce15a32 90 printf("\nfio: terminating on signal %d\n", sig);
ebac4655 91 fflush(stdout);
390c40e2 92 terminate_threads(TERMINATE_ALL);
ebac4655
JA
93 break;
94 }
95}
96
906c8d75
JA
97/*
98 * Check if we are above the minimum rate given.
99 */
ebac4655
JA
100static int check_min_rate(struct thread_data *td, struct timeval *now)
101{
0904200b 102 unsigned long long bytes = 0;
4e991c23 103 unsigned long iops = 0;
ebac4655
JA
104 unsigned long spent;
105 unsigned long rate;
ebac4655 106
780bf1a1
JA
107 /*
108 * No minimum rate set, always ok
109 */
2dc1bbeb 110 if (!td->o.ratemin && !td->o.rate_iops_min)
780bf1a1
JA
111 return 0;
112
ebac4655
JA
113 /*
114 * allow a 2 second settle period in the beginning
115 */
116 if (mtime_since(&td->start, now) < 2000)
117 return 0;
118
4e991c23
JA
119 if (td_read(td)) {
120 iops += td->io_blocks[DDIR_READ];
0904200b 121 bytes += td->this_io_bytes[DDIR_READ];
4e991c23
JA
122 }
123 if (td_write(td)) {
124 iops += td->io_blocks[DDIR_WRITE];
0904200b 125 bytes += td->this_io_bytes[DDIR_WRITE];
4e991c23 126 }
0904200b 127
ebac4655
JA
128 /*
129 * if rate blocks is set, sample is running
130 */
4e991c23 131 if (td->rate_bytes || td->rate_blocks) {
ebac4655 132 spent = mtime_since(&td->lastrate, now);
2dc1bbeb 133 if (spent < td->o.ratecycle)
ebac4655
JA
134 return 0;
135
2dc1bbeb 136 if (td->o.rate) {
4e991c23
JA
137 /*
138 * check bandwidth specified rate
139 */
140 if (bytes < td->rate_bytes) {
2dc1bbeb 141 log_err("%s: min rate %u not met\n", td->o.name, td->o.ratemin);
4e991c23
JA
142 return 1;
143 } else {
144 rate = (bytes - td->rate_bytes) / spent;
2dc1bbeb
JA
145 if (rate < td->o.ratemin || bytes < td->rate_bytes) {
146 log_err("%s: min rate %u not met, got %luKiB/sec\n", td->o.name, td->o.ratemin, rate);
4e991c23
JA
147 return 1;
148 }
149 }
413dd459 150 } else {
4e991c23
JA
151 /*
152 * checks iops specified rate
153 */
2dc1bbeb
JA
154 if (iops < td->o.rate_iops) {
155 log_err("%s: min iops rate %u not met\n", td->o.name, td->o.rate_iops);
413dd459 156 return 1;
4e991c23
JA
157 } else {
158 rate = (iops - td->rate_blocks) / spent;
2dc1bbeb
JA
159 if (rate < td->o.rate_iops_min || iops < td->rate_blocks) {
160 log_err("%s: min iops rate %u not met, got %lu\n", td->o.name, td->o.rate_iops_min, rate);
4e991c23 161 }
413dd459 162 }
ebac4655
JA
163 }
164 }
165
0904200b 166 td->rate_bytes = bytes;
4e991c23 167 td->rate_blocks = iops;
ebac4655
JA
168 memcpy(&td->lastrate, now, sizeof(*now));
169 return 0;
170}
171
172static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
173{
2dc1bbeb 174 if (!td->o.timeout)
ebac4655 175 return 0;
2dc1bbeb 176 if (mtime_since(&td->epoch, t) >= td->o.timeout * 1000)
ebac4655
JA
177 return 1;
178
179 return 0;
180}
181
906c8d75
JA
182/*
183 * When job exits, we can cancel the in-flight IO if we are using async
184 * io. Attempt to do so.
185 */
ebac4655
JA
186static void cleanup_pending_aio(struct thread_data *td)
187{
ebac4655 188 struct list_head *entry, *n;
ebac4655
JA
189 struct io_u *io_u;
190 int r;
191
192 /*
193 * get immediately available events, if any
194 */
d7762cf8 195 r = io_u_queued_complete(td, 0);
b2fdda43
JA
196 if (r < 0)
197 return;
ebac4655
JA
198
199 /*
200 * now cancel remaining active events
201 */
2866c82d 202 if (td->io_ops->cancel) {
ebac4655
JA
203 list_for_each_safe(entry, n, &td->io_u_busylist) {
204 io_u = list_entry(entry, struct io_u, list);
205
0c6e7517
JA
206 /*
207 * if the io_u isn't in flight, then that generally
208 * means someone leaked an io_u. complain but fix
209 * it up, so we don't stall here.
210 */
211 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
212 log_err("fio: non-busy IO on busy list\n");
ebac4655 213 put_io_u(td, io_u);
0c6e7517
JA
214 } else {
215 r = td->io_ops->cancel(td, io_u);
216 if (!r)
217 put_io_u(td, io_u);
218 }
ebac4655
JA
219 }
220 }
221
97601024 222 if (td->cur_depth)
d7762cf8 223 r = io_u_queued_complete(td, td->cur_depth);
ebac4655
JA
224}
225
858a3d47
JA
226/*
227 * Helper to handle the final sync of a file. Works just like the normal
228 * io path, just does everything sync.
229 */
230static int fio_io_sync(struct thread_data *td, struct fio_file *f)
231{
232 struct io_u *io_u = __get_io_u(td);
858a3d47
JA
233 int ret;
234
235 if (!io_u)
236 return 1;
237
238 io_u->ddir = DDIR_SYNC;
239 io_u->file = f;
240
241 if (td_io_prep(td, io_u)) {
242 put_io_u(td, io_u);
243 return 1;
244 }
245
755200a3 246requeue:
858a3d47 247 ret = td_io_queue(td, io_u);
36167d82 248 if (ret < 0) {
e1161c32 249 td_verror(td, io_u->error, "td_io_queue");
858a3d47 250 put_io_u(td, io_u);
858a3d47 251 return 1;
36167d82 252 } else if (ret == FIO_Q_QUEUED) {
d7762cf8 253 if (io_u_queued_complete(td, 1) < 0)
36167d82 254 return 1;
36167d82
JA
255 } else if (ret == FIO_Q_COMPLETED) {
256 if (io_u->error) {
e1161c32 257 td_verror(td, io_u->error, "td_io_queue");
36167d82
JA
258 return 1;
259 }
858a3d47 260
d7762cf8 261 if (io_u_sync_complete(td, io_u) < 0)
b2fdda43 262 return 1;
755200a3
JA
263 } else if (ret == FIO_Q_BUSY) {
264 if (td_io_commit(td))
265 return 1;
266 goto requeue;
858a3d47
JA
267 }
268
269 return 0;
270}
271
906c8d75 272/*
34403fb1 273 * The main verify engine. Runs over the writes we previously submitted,
906c8d75
JA
274 * reads the blocks back in, and checks the crc/md5 of the data.
275 */
1e97cce9 276static void do_verify(struct thread_data *td)
ebac4655 277{
53cdc686 278 struct fio_file *f;
36167d82 279 struct io_u *io_u;
af52b345
JA
280 int ret, min_events;
281 unsigned int i;
e5b401d4
JA
282
283 /*
284 * sync io first and invalidate cache, to make sure we really
285 * read from disk.
286 */
287 for_each_file(td, f, i) {
3d7b485f
JA
288 if (!(f->flags & FIO_FILE_OPEN))
289 continue;
b2fdda43
JA
290 if (fio_io_sync(td, f))
291 break;
292 if (file_invalidate_cache(td, f))
293 break;
e5b401d4 294 }
ebac4655 295
b2fdda43
JA
296 if (td->error)
297 return;
298
ebac4655
JA
299 td_set_runstate(td, TD_VERIFYING);
300
36167d82
JA
301 io_u = NULL;
302 while (!td->terminate) {
5451792e
JA
303 int ret2;
304
ebac4655
JA
305 io_u = __get_io_u(td);
306 if (!io_u)
307 break;
308
069c2918
JA
309 if (runtime_exceeded(td, &io_u->start_time)) {
310 put_io_u(td, io_u);
02bcaa8c 311 break;
069c2918 312 }
02bcaa8c 313
069c2918
JA
314 if (get_next_verify(td, io_u)) {
315 put_io_u(td, io_u);
ebac4655 316 break;
069c2918 317 }
ebac4655 318
069c2918
JA
319 if (td_io_prep(td, io_u)) {
320 put_io_u(td, io_u);
53cdc686 321 break;
069c2918 322 }
d7762cf8
JA
323
324 io_u->end_io = verify_io_u;
53cdc686 325
11786802 326 ret = td_io_queue(td, io_u);
36167d82
JA
327 switch (ret) {
328 case FIO_Q_COMPLETED:
329 if (io_u->error)
22819ec2 330 ret = -io_u->error;
9e9d164e 331 else if (io_u->resid) {
36167d82 332 int bytes = io_u->xfer_buflen - io_u->resid;
d460eb31 333 struct fio_file *f = io_u->file;
ebac4655 334
9e9d164e
JA
335 /*
336 * zero read, fail
337 */
338 if (!bytes) {
339 td_verror(td, ENODATA, "full resid");
340 put_io_u(td, io_u);
341 break;
342 }
8400d9b2 343
36167d82
JA
344 io_u->xfer_buflen = io_u->resid;
345 io_u->xfer_buf += bytes;
8400d9b2 346 io_u->offset += bytes;
d460eb31 347 f->last_completed_pos = io_u->offset;
8400d9b2 348
30061b97
JA
349 td->ts.short_io_u[io_u->ddir]++;
350
d460eb31 351 if (io_u->offset == f->real_file_size)
8400d9b2
JA
352 goto sync_done;
353
11786802
JA
354 requeue_io_u(td, &io_u);
355 } else {
8400d9b2 356sync_done:
11786802
JA
357 ret = io_u_sync_complete(td, io_u);
358 if (ret < 0)
359 break;
36167d82 360 }
36167d82
JA
361 continue;
362 case FIO_Q_QUEUED:
363 break;
755200a3
JA
364 case FIO_Q_BUSY:
365 requeue_io_u(td, &io_u);
5451792e
JA
366 ret2 = td_io_commit(td);
367 if (ret2 < 0)
368 ret = ret2;
755200a3 369 break;
36167d82
JA
370 default:
371 assert(ret < 0);
e1161c32 372 td_verror(td, -ret, "td_io_queue");
ebac4655
JA
373 break;
374 }
375
99784632 376 if (ret < 0 || td->error)
3af6ef39
JA
377 break;
378
ebac4655 379 /*
3af6ef39
JA
380 * if we can queue more, do so. but check if there are
381 * completed io_u's first.
ebac4655 382 */
97601024 383 min_events = 0;
e916b390 384 if (queue_full(td) || ret == FIO_Q_BUSY) {
3af6ef39 385 min_events = 1;
3af6ef39 386
2dc1bbeb
JA
387 if (td->cur_depth > td->o.iodepth_low)
388 min_events = td->cur_depth - td->o.iodepth_low;
e916b390
JA
389 }
390
3af6ef39
JA
391 /*
392 * Reap required number of io units, if any, and do the
393 * verification on them through the callback handler
394 */
d7762cf8 395 if (io_u_queued_complete(td, min_events) < 0)
ebac4655 396 break;
36167d82 397 }
ebac4655 398
c01c0395
JA
399 if (!td->error) {
400 min_events = td->cur_depth;
401
402 if (min_events)
403 ret = io_u_queued_complete(td, min_events);
404 } else
ebac4655
JA
405 cleanup_pending_aio(td);
406
407 td_set_runstate(td, TD_RUNNING);
408}
409
32cd46a0 410/*
906c8d75 411 * Main IO worker function. It retrieves io_u's to process and queues
32cd46a0
JA
412 * and reaps them, checking for rate and errors along the way.
413 */
ebac4655
JA
414static void do_io(struct thread_data *td)
415{
02bcaa8c 416 struct timeval s;
ebac4655 417 unsigned long usec;
af52b345
JA
418 unsigned int i;
419 int ret = 0;
ebac4655 420
5853e5a8
JA
421 td_set_runstate(td, TD_RUNNING);
422
7bb48f84 423 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->o.size) {
97601024
JA
424 struct timeval comp_time;
425 long bytes_done = 0;
84585003 426 int min_evts = 0;
ebac4655 427 struct io_u *io_u;
5451792e 428 int ret2;
ebac4655
JA
429
430 if (td->terminate)
431 break;
432
3d7c391d 433 io_u = get_io_u(td);
ebac4655
JA
434 if (!io_u)
435 break;
436
437 memcpy(&s, &io_u->start_time, sizeof(s));
97601024
JA
438
439 if (runtime_exceeded(td, &s)) {
440 put_io_u(td, io_u);
441 break;
442 }
36167d82 443
11786802 444 ret = td_io_queue(td, io_u);
36167d82
JA
445 switch (ret) {
446 case FIO_Q_COMPLETED:
5451792e
JA
447 if (io_u->error)
448 ret = -io_u->error;
9e9d164e 449 else if (io_u->resid) {
36167d82 450 int bytes = io_u->xfer_buflen - io_u->resid;
d460eb31 451 struct fio_file *f = io_u->file;
36167d82 452
9e9d164e
JA
453 /*
454 * zero read, fail
455 */
456 if (!bytes) {
457 td_verror(td, ENODATA, "full resid");
458 put_io_u(td, io_u);
459 break;
460 }
461
cec6b55d 462 io_u->xfer_buflen = io_u->resid;
36167d82 463 io_u->xfer_buf += bytes;
5a7c5680 464 io_u->offset += bytes;
d460eb31 465 f->last_completed_pos = io_u->offset;
5a7c5680 466
30061b97
JA
467 td->ts.short_io_u[io_u->ddir]++;
468
d460eb31 469 if (io_u->offset == f->real_file_size)
5a7c5680
JA
470 goto sync_done;
471
11786802
JA
472 requeue_io_u(td, &io_u);
473 } else {
5a7c5680 474sync_done:
11786802
JA
475 fio_gettime(&comp_time, NULL);
476 bytes_done = io_u_sync_complete(td, io_u);
477 if (bytes_done < 0)
478 ret = bytes_done;
cec6b55d 479 }
36167d82
JA
480 break;
481 case FIO_Q_QUEUED:
7e77dd02
JA
482 /*
483 * if the engine doesn't have a commit hook,
484 * the io_u is really queued. if it does have such
485 * a hook, it has to call io_u_queued() itself.
486 */
487 if (td->io_ops->commit == NULL)
488 io_u_queued(td, io_u);
36167d82 489 break;
755200a3
JA
490 case FIO_Q_BUSY:
491 requeue_io_u(td, &io_u);
5451792e
JA
492 ret2 = td_io_commit(td);
493 if (ret2 < 0)
494 ret = ret2;
755200a3 495 break;
36167d82
JA
496 default:
497 assert(ret < 0);
498 put_io_u(td, io_u);
499 break;
ebac4655
JA
500 }
501
99784632 502 if (ret < 0 || td->error)
36167d82
JA
503 break;
504
97601024
JA
505 /*
506 * See if we need to complete some commands
507 */
755200a3 508 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
97601024 509 min_evts = 0;
e916b390 510 if (queue_full(td) || ret == FIO_Q_BUSY) {
36167d82 511 min_evts = 1;
ebac4655 512
2dc1bbeb
JA
513 if (td->cur_depth > td->o.iodepth_low)
514 min_evts = td->cur_depth - td->o.iodepth_low;
e916b390
JA
515 }
516
97601024 517 fio_gettime(&comp_time, NULL);
d7762cf8 518 bytes_done = io_u_queued_complete(td, min_evts);
97601024 519 if (bytes_done < 0)
36167d82 520 break;
ebac4655
JA
521 }
522
97601024
JA
523 if (!bytes_done)
524 continue;
525
ebac4655
JA
526 /*
527 * the rate is batched for now, it should work for batches
528 * of completions except the very first one which may look
529 * a little bursty
530 */
97601024 531 usec = utime_since(&s, &comp_time);
ebac4655 532
413dd459 533 rate_throttle(td, usec, bytes_done);
ebac4655 534
97601024 535 if (check_min_rate(td, &comp_time)) {
98aa62d8 536 if (exitall_on_terminate)
390c40e2 537 terminate_threads(td->groupid);
e1161c32 538 td_verror(td, ENODATA, "check_min_rate");
ebac4655
JA
539 break;
540 }
541
2dc1bbeb 542 if (td->o.thinktime) {
9c1f7434
JA
543 unsigned long long b;
544
545 b = td->io_blocks[0] + td->io_blocks[1];
2dc1bbeb 546 if (!(b % td->o.thinktime_blocks)) {
48097d5c
JA
547 int left;
548
2dc1bbeb
JA
549 if (td->o.thinktime_spin)
550 __usec_sleep(td->o.thinktime_spin);
48097d5c 551
2dc1bbeb 552 left = td->o.thinktime - td->o.thinktime_spin;
48097d5c
JA
553 if (left)
554 usec_sleep(td, left);
555 }
9c1f7434 556 }
ebac4655
JA
557 }
558
4d2413c6 559 if (!td->error) {
3d7c391d
JA
560 struct fio_file *f;
561
c01c0395
JA
562 i = td->cur_depth;
563 if (i)
564 ret = io_u_queued_complete(td, i);
ebac4655 565
2dc1bbeb 566 if (should_fsync(td) && td->o.end_fsync) {
84585003 567 td_set_runstate(td, TD_FSYNCING);
3d7b485f
JA
568
569 for_each_file(td, f, i) {
570 if (!(f->flags & FIO_FILE_OPEN))
571 continue;
858a3d47 572 fio_io_sync(td, f);
3d7b485f 573 }
84585003 574 }
c01c0395
JA
575 } else
576 cleanup_pending_aio(td);
ebac4655
JA
577}
578
ebac4655
JA
579static void cleanup_io_u(struct thread_data *td)
580{
581 struct list_head *entry, *n;
582 struct io_u *io_u;
583
584 list_for_each_safe(entry, n, &td->io_u_freelist) {
585 io_u = list_entry(entry, struct io_u, list);
586
587 list_del(&io_u->list);
588 free(io_u);
589 }
590
2f9ade3c 591 free_io_mem(td);
ebac4655
JA
592}
593
6b9cea23
JA
594/*
595 * "randomly" fill the buffer contents
596 */
e9459e5a 597static void fill_io_buf(struct thread_data *td, struct io_u *io_u, int max_bs)
6b9cea23 598{
210f43b3 599 long *ptr = io_u->buf;
6b9cea23 600
e9459e5a
JA
601 if (!td->o.zero_buffers) {
602 while ((void *) ptr - io_u->buf < max_bs) {
210f43b3 603 *ptr = rand() * GOLDEN_RATIO_PRIME;
e9459e5a
JA
604 ptr++;
605 }
606 } else
607 memset(ptr, 0, max_bs);
6b9cea23
JA
608}
609
ebac4655
JA
610static int init_io_u(struct thread_data *td)
611{
2b4ce34f 612 unsigned long long buf_size;
ebac4655 613 struct io_u *io_u;
a00735e6 614 unsigned int max_bs;
ebac4655
JA
615 int i, max_units;
616 char *p;
617
2866c82d 618 if (td->io_ops->flags & FIO_SYNCIO)
ebac4655
JA
619 max_units = 1;
620 else
2dc1bbeb 621 max_units = td->o.iodepth;
ebac4655 622
2dc1bbeb 623 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
2b4ce34f
JA
624 buf_size = (unsigned long long) max_bs * (unsigned long long) max_units;
625 buf_size += page_mask;
626 if (buf_size != (size_t) buf_size) {
627 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
628 return 1;
629 }
630
631 td->orig_buffer_size = buf_size;
74b025b0 632
2dc1bbeb
JA
633 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE)
634 td->orig_buffer_size = (td->orig_buffer_size + td->o.hugepage_size - 1) & ~(td->o.hugepage_size - 1);
4afbf66f
JA
635 else if (td->orig_buffer_size & page_mask)
636 td->orig_buffer_size = (td->orig_buffer_size + page_mask) & ~page_mask;
ebac4655 637
2f9ade3c
JA
638 if (allocate_io_mem(td))
639 return 1;
ebac4655 640
ebac4655
JA
641 p = ALIGN(td->orig_buffer);
642 for (i = 0; i < max_units; i++) {
643 io_u = malloc(sizeof(*io_u));
644 memset(io_u, 0, sizeof(*io_u));
645 INIT_LIST_HEAD(&io_u->list);
646
a00735e6 647 io_u->buf = p + max_bs * i;
e9459e5a 648
660a1cb5 649 if (td_write(td))
e9459e5a 650 fill_io_buf(td, io_u, max_bs);
6b9cea23 651
b1ff3403 652 io_u->index = i;
0c6e7517 653 io_u->flags = IO_U_F_FREE;
ebac4655
JA
654 list_add(&io_u->list, &td->io_u_freelist);
655 }
656
433afcb4
JA
657 io_u_init_timeout();
658
ebac4655
JA
659 return 0;
660}
661
da86774e
JA
662static int switch_ioscheduler(struct thread_data *td)
663{
664 char tmp[256], tmp2[128];
665 FILE *f;
666 int ret;
667
ba0fbe10 668 if (td->io_ops->flags & FIO_DISKLESSIO)
f48b467c
JA
669 return 0;
670
da86774e
JA
671 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
672
673 f = fopen(tmp, "r+");
674 if (!f) {
cbf5c1d7
JA
675 if (errno == ENOENT) {
676 log_err("fio: os or kernel doesn't support IO scheduler switching\n");
677 return 0;
678 }
679 td_verror(td, errno, "fopen iosched");
da86774e
JA
680 return 1;
681 }
682
683 /*
684 * Set io scheduler.
685 */
2dc1bbeb 686 ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
da86774e 687 if (ferror(f) || ret != 1) {
e1161c32 688 td_verror(td, errno, "fwrite");
da86774e
JA
689 fclose(f);
690 return 1;
691 }
692
693 rewind(f);
694
695 /*
696 * Read back and check that the selected scheduler is now the default.
697 */
698 ret = fread(tmp, 1, sizeof(tmp), f);
699 if (ferror(f) || ret < 0) {
e1161c32 700 td_verror(td, errno, "fread");
da86774e
JA
701 fclose(f);
702 return 1;
703 }
704
2dc1bbeb 705 sprintf(tmp2, "[%s]", td->o.ioscheduler);
da86774e 706 if (!strstr(tmp, tmp2)) {
2dc1bbeb 707 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
e1161c32 708 td_verror(td, EINVAL, "iosched_switch");
da86774e
JA
709 fclose(f);
710 return 1;
711 }
712
713 fclose(f);
714 return 0;
715}
716
a978ba68 717static int clear_io_state(struct thread_data *td)
ebac4655 718{
53cdc686 719 struct fio_file *f;
af52b345
JA
720 unsigned int i;
721 int ret;
ebac4655 722
756867bd 723 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
ebac4655 724 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
20dc95c4 725 td->zone_bytes = 0;
d7d3b49b 726 td->rate_bytes = 0;
4e991c23 727 td->rate_blocks = 0;
38d77cae 728 td->rw_end_set[0] = td->rw_end_set[1] = 0;
ebac4655 729
c1324df1
JA
730 td->last_was_sync = 0;
731
a978ba68
JA
732 for_each_file(td, f, i)
733 td_io_close_file(td, f);
53cdc686 734
a978ba68
JA
735 ret = 0;
736 for_each_file(td, f, i) {
737 ret = td_io_open_file(td, f);
738 if (ret)
739 break;
53cdc686 740 }
a978ba68
JA
741
742 return ret;
ebac4655
JA
743}
744
906c8d75
JA
745/*
746 * Entry point for the thread based jobs. The process based jobs end up
747 * here as well, after a little setup.
748 */
ebac4655
JA
749static void *thread_main(void *data)
750{
69008999 751 unsigned long long runtime[2];
ebac4655 752 struct thread_data *td = data;
38d77cae 753 unsigned long elapsed;
a978ba68 754 int clear_state;
ebac4655 755
2dc1bbeb 756 if (!td->o.use_thread)
ebac4655
JA
757 setsid();
758
759 td->pid = getpid();
760
aea47d44
JA
761 INIT_LIST_HEAD(&td->io_u_freelist);
762 INIT_LIST_HEAD(&td->io_u_busylist);
755200a3 763 INIT_LIST_HEAD(&td->io_u_requeues);
aea47d44 764 INIT_LIST_HEAD(&td->io_log_list);
8de8f047 765 INIT_LIST_HEAD(&td->io_hist_list);
bb5d7d0b 766 td->io_hist_tree = RB_ROOT;
aea47d44 767
ebac4655 768 if (init_io_u(td))
bda4fd9e 769 goto err_sem;
ebac4655
JA
770
771 if (fio_setaffinity(td) == -1) {
e1161c32 772 td_verror(td, errno, "cpu_set_affinity");
bda4fd9e 773 goto err_sem;
ebac4655
JA
774 }
775
aea47d44 776 if (init_iolog(td))
bda4fd9e 777 goto err_sem;
aea47d44 778
ebac4655
JA
779 if (td->ioprio) {
780 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
e1161c32 781 td_verror(td, errno, "ioprio_set");
bda4fd9e 782 goto err_sem;
ebac4655
JA
783 }
784 }
785
2dc1bbeb 786 if (nice(td->o.nice) == -1) {
e1161c32 787 td_verror(td, errno, "nice");
bda4fd9e 788 goto err_sem;
b6f4d880
JA
789 }
790
2dc1bbeb 791 if (td->o.ioscheduler && switch_ioscheduler(td))
bda4fd9e 792 goto err_sem;
da86774e 793
75154845 794 td_set_runstate(td, TD_INITIALIZED);
07739b57
JA
795 fio_sem_up(startup_sem);
796 fio_sem_down(td->mutex);
ebac4655 797
37f56873
JA
798 /*
799 * the ->mutex semaphore is now no longer used, close it to avoid
800 * eating a file descriptor
801 */
802 fio_sem_remove(td->mutex);
803
2dc1bbeb 804 if (!td->o.create_serialize && setup_files(td))
ebac4655
JA
805 goto err;
806
7d6c5283
JA
807 if (td_io_init(td))
808 goto err;
809
b5af8293
JA
810 if (open_files(td))
811 goto err;
812
68727076
JA
813 if (init_random_map(td))
814 goto err;
815
2dc1bbeb
JA
816 if (td->o.exec_prerun) {
817 if (system(td->o.exec_prerun) < 0)
69cfd7e0
JA
818 goto err;
819 }
4e0ba8af 820
69008999 821 fio_gettime(&td->epoch, NULL);
433afcb4 822 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
756867bd 823 getrusage(RUSAGE_SELF, &td->ts.ru_start);
69008999
JA
824
825 runtime[0] = runtime[1] = 0;
a978ba68 826 clear_state = 0;
2dc1bbeb 827 while (td->o.loops--) {
02bcaa8c 828 fio_gettime(&td->start, NULL);
756867bd 829 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
ebac4655 830
2dc1bbeb 831 if (td->o.ratemin)
756867bd 832 memcpy(&td->lastrate, &td->ts.stat_sample_time, sizeof(td->lastrate));
ebac4655 833
a978ba68
JA
834 if (clear_state && clear_io_state(td))
835 break;
836
ebac4655
JA
837 prune_io_piece_log(td);
838
ba0fbe10 839 do_io(td);
ebac4655 840
a978ba68
JA
841 clear_state = 1;
842
38d77cae
JA
843 if (td_read(td) && td->io_bytes[DDIR_READ]) {
844 if (td->rw_end_set[DDIR_READ])
845 elapsed = utime_since(&td->start, &td->rw_end[DDIR_READ]);
846 else
847 elapsed = utime_since_now(&td->start);
848
849 runtime[DDIR_READ] += elapsed;
850 }
851 if (td_write(td) && td->io_bytes[DDIR_WRITE]) {
852 if (td->rw_end_set[DDIR_WRITE])
853 elapsed = utime_since(&td->start, &td->rw_end[DDIR_WRITE]);
854 else
855 elapsed = utime_since_now(&td->start);
856
857 runtime[DDIR_WRITE] += elapsed;
858 }
413dd459 859
ebac4655
JA
860 if (td->error || td->terminate)
861 break;
862
2dc1bbeb 863 if (td->o.verify == VERIFY_NONE)
ebac4655
JA
864 continue;
865
a978ba68
JA
866 if (clear_io_state(td))
867 break;
868
02bcaa8c 869 fio_gettime(&td->start, NULL);
ebac4655
JA
870
871 do_verify(td);
872
69008999 873 runtime[DDIR_READ] += utime_since_now(&td->start);
ebac4655
JA
874
875 if (td->error || td->terminate)
876 break;
877 }
878
36dff966 879 update_rusage_stat(td);
756867bd
JA
880 td->ts.runtime[0] = runtime[0] / 1000;
881 td->ts.runtime[1] = runtime[1] / 1000;
882 td->ts.total_run_time = mtime_since_now(&td->epoch);
883 td->ts.io_bytes[0] = td->io_bytes[0];
884 td->ts.io_bytes[1] = td->io_bytes[1];
885
886 if (td->ts.bw_log)
887 finish_log(td, td->ts.bw_log, "bw");
888 if (td->ts.slat_log)
889 finish_log(td, td->ts.slat_log, "slat");
890 if (td->ts.clat_log)
891 finish_log(td, td->ts.clat_log, "clat");
2dc1bbeb 892 if (td->o.write_iolog_file)
843a7413 893 write_iolog_close(td);
2dc1bbeb
JA
894 if (td->o.exec_postrun) {
895 if (system(td->o.exec_postrun) < 0)
896 log_err("fio: postrun %s failed\n", td->o.exec_postrun);
69cfd7e0 897 }
ebac4655
JA
898
899 if (exitall_on_terminate)
390c40e2 900 terminate_threads(td->groupid);
ebac4655
JA
901
902err:
5bf13a5a
JA
903 if (td->error)
904 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
53cdc686 905 close_files(td);
2866c82d 906 close_ioengine(td);
ebac4655 907 cleanup_io_u(td);
d23bb327 908 options_mem_free(td);
ebac4655 909 td_set_runstate(td, TD_EXITED);
43d76807 910 return (void *) (unsigned long) td->error;
bda4fd9e
JA
911err_sem:
912 fio_sem_up(startup_sem);
913 goto err;
ebac4655
JA
914}
915
906c8d75
JA
916/*
917 * We cannot pass the td data into a forked process, so attach the td and
918 * pass it to the thread worker.
919 */
a6418147 920static int fork_main(int shmid, int offset)
ebac4655
JA
921{
922 struct thread_data *td;
a6418147 923 void *data, *ret;
ebac4655
JA
924
925 data = shmat(shmid, NULL, 0);
926 if (data == (void *) -1) {
a6418147
JA
927 int __err = errno;
928
ebac4655 929 perror("shmat");
a6418147 930 return __err;
ebac4655
JA
931 }
932
933 td = data + offset * sizeof(struct thread_data);
a6418147 934 ret = thread_main(td);
ebac4655 935 shmdt(data);
43d76807 936 return (int) (unsigned long) ret;
ebac4655
JA
937}
938
906c8d75
JA
939/*
940 * Run over the job map and reap the threads that have exited, if any.
941 */
ebac4655
JA
942static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
943{
34572e28 944 struct thread_data *td;
fab6aa71 945 int i, cputhreads, pending, status, ret;
ebac4655
JA
946
947 /*
948 * reap exited threads (TD_EXITED -> TD_REAPED)
949 */
4d2413c6 950 pending = cputhreads = 0;
34572e28 951 for_each_td(td, i) {
3707f45b 952 int flags = 0;
a2f77c9f 953
84585003
JA
954 /*
955 * ->io_ops is NULL for a thread that has closed its
956 * io engine
957 */
ba0fbe10 958 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
b990b5c0
JA
959 cputhreads++;
960
a2f77c9f
JA
961 if (!td->pid || td->runstate == TD_REAPED)
962 continue;
2dc1bbeb 963 if (td->o.use_thread) {
3707f45b
JA
964 if (td->runstate == TD_EXITED) {
965 td_set_runstate(td, TD_REAPED);
966 goto reaped;
967 }
968 continue;
969 }
a2f77c9f
JA
970
971 flags = WNOHANG;
972 if (td->runstate == TD_EXITED)
973 flags = 0;
974
975 /*
976 * check if someone quit or got killed in an unusual way
977 */
978 ret = waitpid(td->pid, &status, flags);
3707f45b 979 if (ret < 0) {
a2f77c9f
JA
980 if (errno == ECHILD) {
981 log_err("fio: pid=%d disappeared %d\n", td->pid, td->runstate);
982 td_set_runstate(td, TD_REAPED);
983 goto reaped;
984 }
985 perror("waitpid");
986 } else if (ret == td->pid) {
987 if (WIFSIGNALED(status)) {
fab6aa71
JA
988 int sig = WTERMSIG(status);
989
d9244941
JA
990 if (sig != SIGQUIT)
991 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
fab6aa71
JA
992 td_set_runstate(td, TD_REAPED);
993 goto reaped;
994 }
a2f77c9f
JA
995 if (WIFEXITED(status)) {
996 if (WEXITSTATUS(status) && !td->error)
997 td->error = WEXITSTATUS(status);
a2f77c9f 998
a2f77c9f
JA
999 td_set_runstate(td, TD_REAPED);
1000 goto reaped;
a6418147
JA
1001 }
1002 }
ebac4655 1003
a2f77c9f
JA
1004 /*
1005 * thread is not dead, continue
1006 */
e48676ba 1007 pending++;
a2f77c9f 1008 continue;
fab6aa71 1009reaped:
2dc1bbeb 1010 if (td->o.use_thread) {
3707f45b
JA
1011 long ret;
1012
1013 if (pthread_join(td->thread, (void *) &ret))
1014 perror("pthread_join");
1015 }
1016
ebac4655 1017 (*nr_running)--;
2dc1bbeb
JA
1018 (*m_rate) -= td->o.ratemin;
1019 (*t_rate) -= td->o.rate;
e48676ba 1020 pending--;
a2f77c9f
JA
1021
1022 if (td->error)
1023 exit_value++;
ebac4655 1024 }
b990b5c0 1025
4d2413c6 1026 if (*nr_running == cputhreads && !pending)
390c40e2 1027 terminate_threads(TERMINATE_ALL);
ebac4655
JA
1028}
1029
906c8d75
JA
1030/*
1031 * Main function for kicking off and reaping jobs, as needed.
1032 */
ebac4655
JA
1033static void run_threads(void)
1034{
ebac4655
JA
1035 struct thread_data *td;
1036 unsigned long spent;
1037 int i, todo, nr_running, m_rate, t_rate, nr_started;
fcb6ade2 1038
2f9ade3c
JA
1039 if (fio_pin_memory())
1040 return;
ebac4655 1041
c6ae0a5b 1042 if (!terse_output) {
9cedf167
JA
1043 printf("Starting ");
1044 if (nr_thread)
1045 printf("%d thread%s", nr_thread, nr_thread > 1 ? "s" : "");
1046 if (nr_process) {
1047 if (nr_thread)
1048 printf(" and ");
1049 printf("%d process%s", nr_process, nr_process > 1 ? "es" : "");
1050 }
1051 printf("\n");
c6ae0a5b
JA
1052 fflush(stdout);
1053 }
c04f7ec3 1054
4efa970e
JA
1055 signal(SIGINT, sig_handler);
1056 signal(SIGALRM, sig_handler);
1057
ebac4655
JA
1058 todo = thread_number;
1059 nr_running = 0;
1060 nr_started = 0;
1061 m_rate = t_rate = 0;
1062
34572e28 1063 for_each_td(td, i) {
263e529f 1064 print_status_init(td->thread_number - 1);
ebac4655 1065
2dc1bbeb 1066 if (!td->o.create_serialize) {
380cf265 1067 init_disk_util(td);
ebac4655 1068 continue;
380cf265 1069 }
ebac4655
JA
1070
1071 /*
1072 * do file setup here so it happens sequentially,
1073 * we don't want X number of threads getting their
1074 * client data interspersed on disk
1075 */
53cdc686 1076 if (setup_files(td)) {
5bf13a5a
JA
1077 exit_value++;
1078 if (td->error)
1079 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
ebac4655
JA
1080 td_set_runstate(td, TD_REAPED);
1081 todo--;
1082 }
380cf265
JA
1083
1084 init_disk_util(td);
ebac4655
JA
1085 }
1086
a2f77c9f
JA
1087 set_genesis_time();
1088
ebac4655 1089 while (todo) {
75154845
JA
1090 struct thread_data *map[MAX_JOBS];
1091 struct timeval this_start;
1092 int this_jobs = 0, left;
1093
ebac4655
JA
1094 /*
1095 * create threads (TD_NOT_CREATED -> TD_CREATED)
1096 */
34572e28 1097 for_each_td(td, i) {
ebac4655
JA
1098 if (td->runstate != TD_NOT_CREATED)
1099 continue;
1100
1101 /*
1102 * never got a chance to start, killed by other
1103 * thread for some reason
1104 */
1105 if (td->terminate) {
1106 todo--;
1107 continue;
1108 }
1109
2dc1bbeb 1110 if (td->o.start_delay) {
263e529f 1111 spent = mtime_since_genesis();
ebac4655 1112
2dc1bbeb 1113 if (td->o.start_delay * 1000 > spent)
ebac4655
JA
1114 continue;
1115 }
1116
2dc1bbeb 1117 if (td->o.stonewall && (nr_started || nr_running))
ebac4655
JA
1118 break;
1119
75154845
JA
1120 /*
1121 * Set state to created. Thread will transition
1122 * to TD_INITIALIZED when it's done setting up.
1123 */
ebac4655 1124 td_set_runstate(td, TD_CREATED);
75154845 1125 map[this_jobs++] = td;
ebac4655
JA
1126 nr_started++;
1127
2dc1bbeb 1128 if (td->o.use_thread) {
ebac4655
JA
1129 if (pthread_create(&td->thread, NULL, thread_main, td)) {
1130 perror("thread_create");
1131 nr_started--;
c8bb6faf 1132 break;
ebac4655
JA
1133 }
1134 } else {
07739b57 1135 if (!fork()) {
a6418147
JA
1136 int ret = fork_main(shm_id, i);
1137
1138 exit(ret);
ebac4655
JA
1139 }
1140 }
07739b57 1141 fio_sem_down(startup_sem);
ebac4655
JA
1142 }
1143
1144 /*
75154845
JA
1145 * Wait for the started threads to transition to
1146 * TD_INITIALIZED.
ebac4655 1147 */
02bcaa8c 1148 fio_gettime(&this_start, NULL);
75154845 1149 left = this_jobs;
6ce15a32 1150 while (left && !fio_abort) {
75154845
JA
1151 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1152 break;
1153
1154 usleep(100000);
1155
1156 for (i = 0; i < this_jobs; i++) {
1157 td = map[i];
1158 if (!td)
1159 continue;
b6f4d880 1160 if (td->runstate == TD_INITIALIZED) {
75154845
JA
1161 map[i] = NULL;
1162 left--;
b6f4d880
JA
1163 } else if (td->runstate >= TD_EXITED) {
1164 map[i] = NULL;
1165 left--;
1166 todo--;
1167 nr_running++; /* work-around... */
75154845
JA
1168 }
1169 }
1170 }
1171
1172 if (left) {
3b70d7e5 1173 log_err("fio: %d jobs failed to start\n", left);
75154845
JA
1174 for (i = 0; i < this_jobs; i++) {
1175 td = map[i];
1176 if (!td)
1177 continue;
1178 kill(td->pid, SIGTERM);
1179 }
1180 break;
1181 }
1182
1183 /*
b6f4d880 1184 * start created threads (TD_INITIALIZED -> TD_RUNNING).
75154845 1185 */
34572e28 1186 for_each_td(td, i) {
75154845 1187 if (td->runstate != TD_INITIALIZED)
ebac4655
JA
1188 continue;
1189
1190 td_set_runstate(td, TD_RUNNING);
1191 nr_running++;
1192 nr_started--;
2dc1bbeb
JA
1193 m_rate += td->o.ratemin;
1194 t_rate += td->o.rate;
75154845 1195 todo--;
07739b57 1196 fio_sem_up(td->mutex);
ebac4655
JA
1197 }
1198
1199 reap_threads(&nr_running, &t_rate, &m_rate);
1200
1201 if (todo)
1202 usleep(100000);
1203 }
1204
1205 while (nr_running) {
1206 reap_threads(&nr_running, &t_rate, &m_rate);
1207 usleep(10000);
1208 }
1209
1210 update_io_ticks();
2f9ade3c 1211 fio_unpin_memory();
ebac4655
JA
1212}
1213
ebac4655
JA
1214int main(int argc, char *argv[])
1215{
29d610e1
JA
1216 long ps;
1217
dbe1125e
JA
1218 /*
1219 * We need locale for number printing, if it isn't set then just
1220 * go with the US format.
1221 */
1222 if (!getenv("LC_NUMERIC"))
1223 setlocale(LC_NUMERIC, "en_US");
1224
ebac4655
JA
1225 if (parse_options(argc, argv))
1226 return 1;
1227
4b472fa3
JA
1228 if (!thread_number)
1229 return 0;
ebac4655 1230
29d610e1
JA
1231 ps = sysconf(_SC_PAGESIZE);
1232 if (ps < 0) {
1233 log_err("Failed to get page size\n");
1234 return 1;
1235 }
1236
cfc99db7 1237 page_size = ps;
29d610e1
JA
1238 page_mask = ps - 1;
1239
bb3884d8
JA
1240 if (write_bw_log) {
1241 setup_log(&agg_io_log[DDIR_READ]);
1242 setup_log(&agg_io_log[DDIR_WRITE]);
1243 }
1244
07739b57
JA
1245 startup_sem = fio_sem_init(0);
1246
a2f77c9f
JA
1247 set_genesis_time();
1248
ebac4655
JA
1249 disk_util_timer_arm();
1250
1251 run_threads();
6ce15a32 1252
bb3884d8 1253 if (!fio_abort) {
6ce15a32 1254 show_run_stats();
bb3884d8
JA
1255 if (write_bw_log) {
1256 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1257 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1258 }
1259 }
ebac4655 1260
07739b57 1261 fio_sem_remove(startup_sem);
437c9b71 1262 return exit_value;
ebac4655 1263}