blob: 992033c5c170a5c29e383ed2927b1b050da4d1aa [file] [log] [blame]
Jens Axboe2e1df072012-02-09 11:15:02 +01001/*
2 * fio - the flexible io tester
3 *
4 * Copyright (C) 2005 Jens Axboe <axboe@suse.de>
5 * Copyright (C) 2006-2012 Jens Axboe <axboe@kernel.dk>
6 *
7 * The license below covers all files distributed with fio unless otherwise
8 * noted in the file itself.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24#include <unistd.h>
25#include <fcntl.h>
26#include <string.h>
27#include <limits.h>
28#include <signal.h>
29#include <time.h>
30#include <locale.h>
31#include <assert.h>
32#include <time.h>
Bruce Crane43606c2012-02-20 09:34:24 +010033#include <inttypes.h>
Jens Axboe2e1df072012-02-09 11:15:02 +010034#include <sys/stat.h>
35#include <sys/wait.h>
36#include <sys/ipc.h>
Jens Axboe2e1df072012-02-09 11:15:02 +010037#include <sys/mman.h>
38
39#include "fio.h"
Olega5e0ee12013-03-12 00:06:53 -070040#ifndef FIO_NO_HAVE_SHM_H
41#include <sys/shm.h>
42#endif
Jens Axboe2e1df072012-02-09 11:15:02 +010043#include "hash.h"
44#include "smalloc.h"
45#include "verify.h"
46#include "trim.h"
47#include "diskutil.h"
48#include "cgroup.h"
49#include "profile.h"
50#include "lib/rand.h"
51#include "memalign.h"
52#include "server.h"
Jens Axboe44404c52013-01-24 14:20:09 -070053#include "lib/getrusage.h"
Huadong Liuf2a2ce02013-01-30 13:22:24 +010054#include "idletime.h"
Jens Axboe002fe732014-02-11 08:31:13 -070055#include "err.h"
Jens Axboe2e1df072012-02-09 11:15:02 +010056
57static pthread_t disk_util_thread;
Jens Axboe9ec77792012-08-02 08:27:41 +020058static struct fio_mutex *disk_thread_mutex;
Jens Axboe2e1df072012-02-09 11:15:02 +010059static struct fio_mutex *startup_mutex;
60static struct fio_mutex *writeout_mutex;
61static struct flist_head *cgroup_list;
62static char *cgroup_mnt;
63static int exit_value;
64static volatile int fio_abort;
Jens Axboe3a5f6bd2013-04-11 12:04:38 +020065static unsigned int nr_process = 0;
66static unsigned int nr_thread = 0;
Jens Axboe2e1df072012-02-09 11:15:02 +010067
Shaohua Li6eaf09d2012-09-14 08:49:43 +020068struct io_log *agg_io_log[DDIR_RWDIR_CNT];
Jens Axboe2e1df072012-02-09 11:15:02 +010069
Jens Axboea3efc912012-02-09 11:25:24 +010070int groupid = 0;
71unsigned int thread_number = 0;
Jens Axboe108fea72012-11-14 13:09:45 -070072unsigned int stat_number = 0;
Jens Axboea3efc912012-02-09 11:25:24 +010073int shm_id = 0;
74int temp_stall_ts;
75unsigned long done_secs = 0;
Jens Axboe27357182012-09-27 11:31:50 +020076volatile int disk_util_exit = 0;
Jens Axboea3efc912012-02-09 11:25:24 +010077
Jens Axboe2e1df072012-02-09 11:15:02 +010078#define PAGE_ALIGN(buf) \
Bruce Crane43606c2012-02-20 09:34:24 +010079 (char *) (((uintptr_t) (buf) + page_mask) & ~page_mask)
Jens Axboe2e1df072012-02-09 11:15:02 +010080
81#define JOB_START_TIMEOUT (5 * 1000)
82
83static void sig_int(int sig)
84{
85 if (threads) {
86 if (is_backend)
87 fio_server_got_signal(sig);
88 else {
89 log_info("\nfio: terminating on signal %d\n", sig);
90 fflush(stdout);
91 exit_value = 128;
92 }
93
94 fio_terminate_threads(TERMINATE_ALL);
95 }
96}
97
Jens Axboe4c6d91e2012-03-30 10:30:35 +020098static void sig_show_status(int sig)
99{
100 show_running_run_stats();
101}
102
Jens Axboe2e1df072012-02-09 11:15:02 +0100103static void set_sig_handlers(void)
104{
105 struct sigaction act;
106
107 memset(&act, 0, sizeof(act));
108 act.sa_handler = sig_int;
109 act.sa_flags = SA_RESTART;
110 sigaction(SIGINT, &act, NULL);
111
112 memset(&act, 0, sizeof(act));
113 act.sa_handler = sig_int;
114 act.sa_flags = SA_RESTART;
115 sigaction(SIGTERM, &act, NULL);
116
Bruce Cran2f694502012-10-10 16:34:13 +0100117/* Windows uses SIGBREAK as a quit signal from other applications */
118#ifdef WIN32
119 memset(&act, 0, sizeof(act));
120 act.sa_handler = sig_int;
121 act.sa_flags = SA_RESTART;
122 sigaction(SIGBREAK, &act, NULL);
123#endif
124
Jens Axboe4c6d91e2012-03-30 10:30:35 +0200125 memset(&act, 0, sizeof(act));
126 act.sa_handler = sig_show_status;
127 act.sa_flags = SA_RESTART;
128 sigaction(SIGUSR1, &act, NULL);
129
Jens Axboe2e1df072012-02-09 11:15:02 +0100130 if (is_backend) {
131 memset(&act, 0, sizeof(act));
132 act.sa_handler = sig_int;
133 act.sa_flags = SA_RESTART;
134 sigaction(SIGPIPE, &act, NULL);
135 }
136}
137
138/*
139 * Check if we are above the minimum rate given.
140 */
141static int __check_min_rate(struct thread_data *td, struct timeval *now,
142 enum fio_ddir ddir)
143{
144 unsigned long long bytes = 0;
145 unsigned long iops = 0;
146 unsigned long spent;
147 unsigned long rate;
148 unsigned int ratemin = 0;
149 unsigned int rate_iops = 0;
150 unsigned int rate_iops_min = 0;
151
152 assert(ddir_rw(ddir));
153
154 if (!td->o.ratemin[ddir] && !td->o.rate_iops_min[ddir])
155 return 0;
156
157 /*
158 * allow a 2 second settle period in the beginning
159 */
160 if (mtime_since(&td->start, now) < 2000)
161 return 0;
162
163 iops += td->this_io_blocks[ddir];
164 bytes += td->this_io_bytes[ddir];
165 ratemin += td->o.ratemin[ddir];
166 rate_iops += td->o.rate_iops[ddir];
167 rate_iops_min += td->o.rate_iops_min[ddir];
168
169 /*
170 * if rate blocks is set, sample is running
171 */
172 if (td->rate_bytes[ddir] || td->rate_blocks[ddir]) {
173 spent = mtime_since(&td->lastrate[ddir], now);
174 if (spent < td->o.ratecycle)
175 return 0;
176
177 if (td->o.rate[ddir]) {
178 /*
179 * check bandwidth specified rate
180 */
181 if (bytes < td->rate_bytes[ddir]) {
182 log_err("%s: min rate %u not met\n", td->o.name,
183 ratemin);
184 return 1;
185 } else {
186 rate = ((bytes - td->rate_bytes[ddir]) * 1000) / spent;
187 if (rate < ratemin ||
188 bytes < td->rate_bytes[ddir]) {
189 log_err("%s: min rate %u not met, got"
190 " %luKB/sec\n", td->o.name,
191 ratemin, rate);
192 return 1;
193 }
194 }
195 } else {
196 /*
197 * checks iops specified rate
198 */
199 if (iops < rate_iops) {
200 log_err("%s: min iops rate %u not met\n",
201 td->o.name, rate_iops);
202 return 1;
203 } else {
204 rate = ((iops - td->rate_blocks[ddir]) * 1000) / spent;
205 if (rate < rate_iops_min ||
206 iops < td->rate_blocks[ddir]) {
207 log_err("%s: min iops rate %u not met,"
208 " got %lu\n", td->o.name,
209 rate_iops_min, rate);
210 }
211 }
212 }
213 }
214
215 td->rate_bytes[ddir] = bytes;
216 td->rate_blocks[ddir] = iops;
217 memcpy(&td->lastrate[ddir], now, sizeof(*now));
218 return 0;
219}
220
221static int check_min_rate(struct thread_data *td, struct timeval *now,
Jens Axboe100f49f2013-01-23 10:15:57 -0700222 uint64_t *bytes_done)
Jens Axboe2e1df072012-02-09 11:15:02 +0100223{
224 int ret = 0;
225
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200226 if (bytes_done[DDIR_READ])
227 ret |= __check_min_rate(td, now, DDIR_READ);
228 if (bytes_done[DDIR_WRITE])
229 ret |= __check_min_rate(td, now, DDIR_WRITE);
230 if (bytes_done[DDIR_TRIM])
231 ret |= __check_min_rate(td, now, DDIR_TRIM);
Jens Axboe2e1df072012-02-09 11:15:02 +0100232
233 return ret;
234}
235
236/*
237 * When job exits, we can cancel the in-flight IO if we are using async
238 * io. Attempt to do so.
239 */
240static void cleanup_pending_aio(struct thread_data *td)
241{
Jens Axboe2e1df072012-02-09 11:15:02 +0100242 int r;
243
244 /*
245 * get immediately available events, if any
246 */
247 r = io_u_queued_complete(td, 0, NULL);
248 if (r < 0)
249 return;
250
251 /*
252 * now cancel remaining active events
253 */
254 if (td->io_ops->cancel) {
Jens Axboe2ae0b202013-05-28 14:16:55 +0200255 struct io_u *io_u;
256 int i;
Jens Axboe2e1df072012-02-09 11:15:02 +0100257
Jens Axboe2ae0b202013-05-28 14:16:55 +0200258 io_u_qiter(&td->io_u_all, io_u, i) {
259 if (io_u->flags & IO_U_F_FLIGHT) {
Jens Axboe2e1df072012-02-09 11:15:02 +0100260 r = td->io_ops->cancel(td, io_u);
261 if (!r)
262 put_io_u(td, io_u);
263 }
264 }
265 }
266
267 if (td->cur_depth)
268 r = io_u_queued_complete(td, td->cur_depth, NULL);
269}
270
271/*
272 * Helper to handle the final sync of a file. Works just like the normal
273 * io path, just does everything sync.
274 */
275static int fio_io_sync(struct thread_data *td, struct fio_file *f)
276{
277 struct io_u *io_u = __get_io_u(td);
278 int ret;
279
280 if (!io_u)
281 return 1;
282
283 io_u->ddir = DDIR_SYNC;
284 io_u->file = f;
285
286 if (td_io_prep(td, io_u)) {
287 put_io_u(td, io_u);
288 return 1;
289 }
290
291requeue:
292 ret = td_io_queue(td, io_u);
293 if (ret < 0) {
294 td_verror(td, io_u->error, "td_io_queue");
295 put_io_u(td, io_u);
296 return 1;
297 } else if (ret == FIO_Q_QUEUED) {
298 if (io_u_queued_complete(td, 1, NULL) < 0)
299 return 1;
300 } else if (ret == FIO_Q_COMPLETED) {
301 if (io_u->error) {
302 td_verror(td, io_u->error, "td_io_queue");
303 return 1;
304 }
305
306 if (io_u_sync_complete(td, io_u, NULL) < 0)
307 return 1;
308 } else if (ret == FIO_Q_BUSY) {
309 if (td_io_commit(td))
310 return 1;
311 goto requeue;
312 }
313
314 return 0;
315}
Jens Axboea3efc912012-02-09 11:25:24 +0100316
Jens Axboe61ee0f82013-02-11 11:26:55 +0100317static int fio_file_fsync(struct thread_data *td, struct fio_file *f)
318{
319 int ret;
320
321 if (fio_file_open(f))
322 return fio_io_sync(td, f);
323
324 if (td_io_open_file(td, f))
325 return 1;
326
327 ret = fio_io_sync(td, f);
328 td_io_close_file(td, f);
329 return ret;
330}
331
Jens Axboe2e1df072012-02-09 11:15:02 +0100332static inline void __update_tv_cache(struct thread_data *td)
333{
334 fio_gettime(&td->tv_cache, NULL);
335}
336
337static inline void update_tv_cache(struct thread_data *td)
338{
339 if ((++td->tv_cache_nr & td->tv_cache_mask) == td->tv_cache_mask)
340 __update_tv_cache(td);
341}
342
343static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
344{
345 if (in_ramp_time(td))
346 return 0;
347 if (!td->o.timeout)
348 return 0;
Jens Axboe0de5b262014-02-21 15:26:01 -0800349 if (utime_since(&td->epoch, t) >= td->o.timeout)
Jens Axboe2e1df072012-02-09 11:15:02 +0100350 return 1;
351
352 return 0;
353}
354
355static int break_on_this_error(struct thread_data *td, enum fio_ddir ddir,
356 int *retptr)
357{
358 int ret = *retptr;
359
360 if (ret < 0 || td->error) {
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +0400361 int err = td->error;
362 enum error_type_bit eb;
Jens Axboe2e1df072012-02-09 11:15:02 +0100363
364 if (ret < 0)
365 err = -ret;
Jens Axboe2e1df072012-02-09 11:15:02 +0100366
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +0400367 eb = td_error_type(ddir, err);
368 if (!(td->o.continue_on_error & (1 << eb)))
Jens Axboe2e1df072012-02-09 11:15:02 +0100369 return 1;
370
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +0400371 if (td_non_fatal_error(td, eb, err)) {
Jens Axboe2e1df072012-02-09 11:15:02 +0100372 /*
373 * Continue with the I/Os in case of
374 * a non fatal error.
375 */
376 update_error_count(td, err);
377 td_clear_error(td);
378 *retptr = 0;
379 return 0;
380 } else if (td->o.fill_device && err == ENOSPC) {
381 /*
382 * We expect to hit this error if
383 * fill_device option is set.
384 */
385 td_clear_error(td);
386 td->terminate = 1;
387 return 1;
388 } else {
389 /*
390 * Stop the I/O in case of a fatal
391 * error.
392 */
393 update_error_count(td, err);
394 return 1;
395 }
396 }
397
398 return 0;
399}
400
Jens Axboec97f1ad2013-03-28 15:08:49 -0600401static void check_update_rusage(struct thread_data *td)
402{
403 if (td->update_rusage) {
404 td->update_rusage = 0;
405 update_rusage_stat(td);
406 fio_mutex_up(td->rusage_sem);
407 }
408}
409
Jens Axboe2e1df072012-02-09 11:15:02 +0100410/*
411 * The main verify engine. Runs over the writes we previously submitted,
412 * reads the blocks back in, and checks the crc/md5 of the data.
413 */
Jens Axboe100f49f2013-01-23 10:15:57 -0700414static void do_verify(struct thread_data *td, uint64_t verify_bytes)
Jens Axboe2e1df072012-02-09 11:15:02 +0100415{
Jens Axboe100f49f2013-01-23 10:15:57 -0700416 uint64_t bytes_done[DDIR_RWDIR_CNT] = { 0, 0, 0 };
Jens Axboe2e1df072012-02-09 11:15:02 +0100417 struct fio_file *f;
418 struct io_u *io_u;
419 int ret, min_events;
420 unsigned int i;
421
422 dprint(FD_VERIFY, "starting loop\n");
423
424 /*
425 * sync io first and invalidate cache, to make sure we really
426 * read from disk.
427 */
428 for_each_file(td, f, i) {
429 if (!fio_file_open(f))
430 continue;
431 if (fio_io_sync(td, f))
432 break;
433 if (file_invalidate_cache(td, f))
434 break;
435 }
436
Jens Axboec97f1ad2013-03-28 15:08:49 -0600437 check_update_rusage(td);
438
Jens Axboe2e1df072012-02-09 11:15:02 +0100439 if (td->error)
440 return;
441
442 td_set_runstate(td, TD_VERIFYING);
443
444 io_u = NULL;
445 while (!td->terminate) {
Jens Axboefbccf462013-01-08 21:02:14 +0100446 enum fio_ddir ddir;
Jens Axboe2e1df072012-02-09 11:15:02 +0100447 int ret2, full;
448
449 update_tv_cache(td);
Jens Axboec97f1ad2013-03-28 15:08:49 -0600450 check_update_rusage(td);
Jens Axboe2e1df072012-02-09 11:15:02 +0100451
452 if (runtime_exceeded(td, &td->tv_cache)) {
453 __update_tv_cache(td);
454 if (runtime_exceeded(td, &td->tv_cache)) {
455 td->terminate = 1;
456 break;
457 }
458 }
459
Dan Ehrenberg9e684a42012-02-20 11:05:14 +0100460 if (flow_threshold_exceeded(td))
461 continue;
462
Jens Axboe44cbc6d2013-01-21 09:47:03 -0700463 if (!td->o.experimental_verify) {
464 io_u = __get_io_u(td);
465 if (!io_u)
466 break;
Jens Axboe2e1df072012-02-09 11:15:02 +0100467
Jens Axboe44cbc6d2013-01-21 09:47:03 -0700468 if (get_next_verify(td, io_u)) {
469 put_io_u(td, io_u);
470 break;
471 }
Jens Axboe2e1df072012-02-09 11:15:02 +0100472
Jens Axboe44cbc6d2013-01-21 09:47:03 -0700473 if (td_io_prep(td, io_u)) {
474 put_io_u(td, io_u);
475 break;
476 }
477 } else {
Jens Axboe100f49f2013-01-23 10:15:57 -0700478 if (ddir_rw_sum(bytes_done) + td->o.rw_min_bs > verify_bytes)
479 break;
480
Jens Axboebcd5abf2013-01-23 09:27:25 -0700481 while ((io_u = get_io_u(td)) != NULL) {
Jens Axboe002fe732014-02-11 08:31:13 -0700482 if (IS_ERR(io_u)) {
483 io_u = NULL;
484 ret = FIO_Q_BUSY;
485 goto reap;
486 }
487
Jens Axboebcd5abf2013-01-23 09:27:25 -0700488 /*
489 * We are only interested in the places where
490 * we wrote or trimmed IOs. Turn those into
491 * reads for verification purposes.
492 */
493 if (io_u->ddir == DDIR_READ) {
494 /*
495 * Pretend we issued it for rwmix
496 * accounting
497 */
498 td->io_issues[DDIR_READ]++;
499 put_io_u(td, io_u);
500 continue;
501 } else if (io_u->ddir == DDIR_TRIM) {
502 io_u->ddir = DDIR_READ;
503 io_u->flags |= IO_U_F_TRIMMED;
504 break;
505 } else if (io_u->ddir == DDIR_WRITE) {
506 io_u->ddir = DDIR_READ;
507 break;
508 } else {
509 put_io_u(td, io_u);
510 continue;
511 }
512 }
Jens Axboe44cbc6d2013-01-21 09:47:03 -0700513
Jens Axboebcd5abf2013-01-23 09:27:25 -0700514 if (!io_u)
Jens Axboe44cbc6d2013-01-21 09:47:03 -0700515 break;
Jens Axboe2e1df072012-02-09 11:15:02 +0100516 }
517
518 if (td->o.verify_async)
519 io_u->end_io = verify_io_u_async;
520 else
521 io_u->end_io = verify_io_u;
522
Jens Axboefbccf462013-01-08 21:02:14 +0100523 ddir = io_u->ddir;
524
Jens Axboe2e1df072012-02-09 11:15:02 +0100525 ret = td_io_queue(td, io_u);
526 switch (ret) {
527 case FIO_Q_COMPLETED:
528 if (io_u->error) {
529 ret = -io_u->error;
530 clear_io_u(td, io_u);
531 } else if (io_u->resid) {
532 int bytes = io_u->xfer_buflen - io_u->resid;
533
534 /*
535 * zero read, fail
536 */
537 if (!bytes) {
538 td_verror(td, EIO, "full resid");
539 put_io_u(td, io_u);
540 break;
541 }
542
543 io_u->xfer_buflen = io_u->resid;
544 io_u->xfer_buf += bytes;
545 io_u->offset += bytes;
546
547 if (ddir_rw(io_u->ddir))
548 td->ts.short_io_u[io_u->ddir]++;
549
550 f = io_u->file;
551 if (io_u->offset == f->real_file_size)
552 goto sync_done;
553
554 requeue_io_u(td, &io_u);
555 } else {
556sync_done:
Jens Axboe100f49f2013-01-23 10:15:57 -0700557 ret = io_u_sync_complete(td, io_u, bytes_done);
Jens Axboe2e1df072012-02-09 11:15:02 +0100558 if (ret < 0)
559 break;
560 }
561 continue;
562 case FIO_Q_QUEUED:
563 break;
564 case FIO_Q_BUSY:
565 requeue_io_u(td, &io_u);
566 ret2 = td_io_commit(td);
567 if (ret2 < 0)
568 ret = ret2;
569 break;
570 default:
571 assert(ret < 0);
572 td_verror(td, -ret, "td_io_queue");
573 break;
574 }
575
Jens Axboefbccf462013-01-08 21:02:14 +0100576 if (break_on_this_error(td, ddir, &ret))
Jens Axboe2e1df072012-02-09 11:15:02 +0100577 break;
578
579 /*
580 * if we can queue more, do so. but check if there are
581 * completed io_u's first. Note that we can get BUSY even
582 * without IO queued, if the system is resource starved.
583 */
Jens Axboe002fe732014-02-11 08:31:13 -0700584reap:
Jens Axboe2e1df072012-02-09 11:15:02 +0100585 full = queue_full(td) || (ret == FIO_Q_BUSY && td->cur_depth);
586 if (full || !td->o.iodepth_batch_complete) {
587 min_events = min(td->o.iodepth_batch_complete,
588 td->cur_depth);
Jens Axboe8a74b562012-03-16 13:55:50 +0100589 /*
590 * if the queue is full, we MUST reap at least 1 event
591 */
592 if (full && !min_events)
Jens Axboe2e1df072012-02-09 11:15:02 +0100593 min_events = 1;
594
595 do {
596 /*
597 * Reap required number of io units, if any,
598 * and do the verification on them through
599 * the callback handler
600 */
Jens Axboe100f49f2013-01-23 10:15:57 -0700601 if (io_u_queued_complete(td, min_events, bytes_done) < 0) {
Jens Axboe2e1df072012-02-09 11:15:02 +0100602 ret = -1;
603 break;
604 }
605 } while (full && (td->cur_depth > td->o.iodepth_low));
606 }
607 if (ret < 0)
608 break;
609 }
610
Jens Axboec97f1ad2013-03-28 15:08:49 -0600611 check_update_rusage(td);
612
Jens Axboe2e1df072012-02-09 11:15:02 +0100613 if (!td->error) {
614 min_events = td->cur_depth;
615
616 if (min_events)
617 ret = io_u_queued_complete(td, min_events, NULL);
618 } else
619 cleanup_pending_aio(td);
620
621 td_set_runstate(td, TD_RUNNING);
622
623 dprint(FD_VERIFY, "exiting loop\n");
624}
625
Jens Axboef7078f72012-03-07 09:24:05 +0100626static int io_bytes_exceeded(struct thread_data *td)
627{
628 unsigned long long bytes;
629
630 if (td_rw(td))
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200631 bytes = td->this_io_bytes[DDIR_READ] + td->this_io_bytes[DDIR_WRITE];
Jens Axboef7078f72012-03-07 09:24:05 +0100632 else if (td_write(td))
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200633 bytes = td->this_io_bytes[DDIR_WRITE];
634 else if (td_read(td))
635 bytes = td->this_io_bytes[DDIR_READ];
Jens Axboef7078f72012-03-07 09:24:05 +0100636 else
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200637 bytes = td->this_io_bytes[DDIR_TRIM];
Jens Axboef7078f72012-03-07 09:24:05 +0100638
639 return bytes >= td->o.size;
640}
641
Jens Axboe2e1df072012-02-09 11:15:02 +0100642/*
643 * Main IO worker function. It retrieves io_u's to process and queues
644 * and reaps them, checking for rate and errors along the way.
Jens Axboe100f49f2013-01-23 10:15:57 -0700645 *
646 * Returns number of bytes written and trimmed.
Jens Axboe2e1df072012-02-09 11:15:02 +0100647 */
Jens Axboe100f49f2013-01-23 10:15:57 -0700648static uint64_t do_io(struct thread_data *td)
Jens Axboe2e1df072012-02-09 11:15:02 +0100649{
Jens Axboe100f49f2013-01-23 10:15:57 -0700650 uint64_t bytes_done[DDIR_RWDIR_CNT] = { 0, 0, 0 };
Jens Axboe2e1df072012-02-09 11:15:02 +0100651 unsigned int i;
652 int ret = 0;
Jens Axboec2703bf2014-02-05 12:36:02 -0700653 uint64_t total_bytes, bytes_issued = 0;
Jens Axboe2e1df072012-02-09 11:15:02 +0100654
655 if (in_ramp_time(td))
656 td_set_runstate(td, TD_RAMP);
657 else
658 td_set_runstate(td, TD_RUNNING);
659
Jens Axboe3e260a42013-12-09 12:38:53 -0700660 lat_target_init(td);
661
Jens Axboe78a64692014-02-05 13:15:22 -0700662 /*
663 * If verify_backlog is enabled, we'll run the verify in this
664 * handler as well. For that case, we may need up to twice the
665 * amount of bytes.
666 */
Jens Axboec2703bf2014-02-05 12:36:02 -0700667 total_bytes = td->o.size;
Jens Axboe78a64692014-02-05 13:15:22 -0700668 if (td->o.verify != VERIFY_NONE &&
669 (td_write(td) && td->o.verify_backlog))
Jens Axboec2703bf2014-02-05 12:36:02 -0700670 total_bytes += td->o.size;
671
Jens Axboef7078f72012-03-07 09:24:05 +0100672 while ((td->o.read_iolog_file && !flist_empty(&td->io_log_list)) ||
Daniel Ehrenbergc04e4662012-03-16 18:54:15 +0100673 (!flist_empty(&td->trim_list)) || !io_bytes_exceeded(td) ||
674 td->o.time_based) {
Jens Axboe2e1df072012-02-09 11:15:02 +0100675 struct timeval comp_time;
Jens Axboe2e1df072012-02-09 11:15:02 +0100676 int min_evts = 0;
677 struct io_u *io_u;
678 int ret2, full;
679 enum fio_ddir ddir;
680
Jens Axboec97f1ad2013-03-28 15:08:49 -0600681 check_update_rusage(td);
682
Yufei Ren7d7803f2012-10-22 21:29:38 -0400683 if (td->terminate || td->done)
Jens Axboe2e1df072012-02-09 11:15:02 +0100684 break;
685
686 update_tv_cache(td);
687
688 if (runtime_exceeded(td, &td->tv_cache)) {
689 __update_tv_cache(td);
690 if (runtime_exceeded(td, &td->tv_cache)) {
691 td->terminate = 1;
692 break;
693 }
694 }
695
Dan Ehrenberg9e684a42012-02-20 11:05:14 +0100696 if (flow_threshold_exceeded(td))
697 continue;
698
Jens Axboec2703bf2014-02-05 12:36:02 -0700699 if (bytes_issued >= total_bytes)
Juan Casse20876c52013-09-16 09:22:10 -0700700 break;
701
Jens Axboe2e1df072012-02-09 11:15:02 +0100702 io_u = get_io_u(td);
Jens Axboe002fe732014-02-11 08:31:13 -0700703 if (IS_ERR_OR_NULL(io_u)) {
704 int err = PTR_ERR(io_u);
705
706 io_u = NULL;
707 if (err == -EBUSY) {
708 ret = FIO_Q_BUSY;
709 goto reap;
710 }
Jens Axboe3e260a42013-12-09 12:38:53 -0700711 if (td->o.latency_target)
712 goto reap;
Jens Axboe2e1df072012-02-09 11:15:02 +0100713 break;
Jens Axboe3e260a42013-12-09 12:38:53 -0700714 }
Jens Axboe2e1df072012-02-09 11:15:02 +0100715
716 ddir = io_u->ddir;
717
718 /*
Jens Axboe82af2a72012-03-13 13:45:58 +0100719 * Add verification end_io handler if:
720 * - Asked to verify (!td_rw(td))
721 * - Or the io_u is from our verify list (mixed write/ver)
Jens Axboe2e1df072012-02-09 11:15:02 +0100722 */
723 if (td->o.verify != VERIFY_NONE && io_u->ddir == DDIR_READ &&
Jens Axboe82af2a72012-03-13 13:45:58 +0100724 ((io_u->flags & IO_U_F_VER_LIST) || !td_rw(td))) {
Puthikorn Voravootivatc4b61172014-02-05 10:17:11 -0700725
726 if (!td->o.verify_pattern_bytes) {
727 io_u->rand_seed = __rand(&td->__verify_state);
728 if (sizeof(int) != sizeof(long *))
729 io_u->rand_seed *= __rand(&td->__verify_state);
730 }
731
Jens Axboe2e1df072012-02-09 11:15:02 +0100732 if (td->o.verify_async)
733 io_u->end_io = verify_io_u_async;
734 else
735 io_u->end_io = verify_io_u;
736 td_set_runstate(td, TD_VERIFYING);
737 } else if (in_ramp_time(td))
738 td_set_runstate(td, TD_RAMP);
739 else
740 td_set_runstate(td, TD_RUNNING);
741
Puthikorn Voravootivat9a50c5c2014-02-05 10:28:15 -0800742 /*
Jens Axboef9401282014-02-06 12:17:37 -0700743 * Always log IO before it's issued, so we know the specific
744 * order of it. The logged unit will track when the IO has
745 * completed.
Puthikorn Voravootivat9a50c5c2014-02-05 10:28:15 -0800746 */
Puthikorn Voravootivatc4b61172014-02-05 10:17:11 -0700747 if (td_write(td) && io_u->ddir == DDIR_WRITE &&
748 td->o.do_verify &&
749 td->o.verify != VERIFY_NONE &&
Jens Axboef9401282014-02-06 12:17:37 -0700750 !td->o.experimental_verify)
Puthikorn Voravootivatc4b61172014-02-05 10:17:11 -0700751 log_io_piece(td, io_u);
752
Jens Axboe2e1df072012-02-09 11:15:02 +0100753 ret = td_io_queue(td, io_u);
754 switch (ret) {
755 case FIO_Q_COMPLETED:
756 if (io_u->error) {
757 ret = -io_u->error;
758 clear_io_u(td, io_u);
759 } else if (io_u->resid) {
760 int bytes = io_u->xfer_buflen - io_u->resid;
761 struct fio_file *f = io_u->file;
762
Juan Casse20876c52013-09-16 09:22:10 -0700763 bytes_issued += bytes;
Jens Axboe2e1df072012-02-09 11:15:02 +0100764 /*
765 * zero read, fail
766 */
767 if (!bytes) {
768 td_verror(td, EIO, "full resid");
769 put_io_u(td, io_u);
770 break;
771 }
772
773 io_u->xfer_buflen = io_u->resid;
774 io_u->xfer_buf += bytes;
775 io_u->offset += bytes;
776
777 if (ddir_rw(io_u->ddir))
778 td->ts.short_io_u[io_u->ddir]++;
779
780 if (io_u->offset == f->real_file_size)
781 goto sync_done;
782
783 requeue_io_u(td, &io_u);
784 } else {
785sync_done:
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200786 if (__should_check_rate(td, DDIR_READ) ||
787 __should_check_rate(td, DDIR_WRITE) ||
788 __should_check_rate(td, DDIR_TRIM))
Jens Axboe2e1df072012-02-09 11:15:02 +0100789 fio_gettime(&comp_time, NULL);
790
791 ret = io_u_sync_complete(td, io_u, bytes_done);
792 if (ret < 0)
793 break;
Juan Casse20876c52013-09-16 09:22:10 -0700794 bytes_issued += io_u->xfer_buflen;
Jens Axboe2e1df072012-02-09 11:15:02 +0100795 }
796 break;
797 case FIO_Q_QUEUED:
798 /*
799 * if the engine doesn't have a commit hook,
800 * the io_u is really queued. if it does have such
801 * a hook, it has to call io_u_queued() itself.
802 */
803 if (td->io_ops->commit == NULL)
804 io_u_queued(td, io_u);
Juan Casse20876c52013-09-16 09:22:10 -0700805 bytes_issued += io_u->xfer_buflen;
Jens Axboe2e1df072012-02-09 11:15:02 +0100806 break;
807 case FIO_Q_BUSY:
808 requeue_io_u(td, &io_u);
809 ret2 = td_io_commit(td);
810 if (ret2 < 0)
811 ret = ret2;
812 break;
813 default:
814 assert(ret < 0);
815 put_io_u(td, io_u);
816 break;
817 }
818
819 if (break_on_this_error(td, ddir, &ret))
820 break;
821
822 /*
823 * See if we need to complete some commands. Note that we
824 * can get BUSY even without IO queued, if the system is
825 * resource starved.
826 */
Jens Axboe3e260a42013-12-09 12:38:53 -0700827reap:
Jens Axboe2e1df072012-02-09 11:15:02 +0100828 full = queue_full(td) || (ret == FIO_Q_BUSY && td->cur_depth);
829 if (full || !td->o.iodepth_batch_complete) {
830 min_evts = min(td->o.iodepth_batch_complete,
831 td->cur_depth);
Jens Axboe8a74b562012-03-16 13:55:50 +0100832 /*
833 * if the queue is full, we MUST reap at least 1 event
834 */
835 if (full && !min_evts)
Jens Axboe2e1df072012-02-09 11:15:02 +0100836 min_evts = 1;
837
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200838 if (__should_check_rate(td, DDIR_READ) ||
839 __should_check_rate(td, DDIR_WRITE) ||
840 __should_check_rate(td, DDIR_TRIM))
Jens Axboe2e1df072012-02-09 11:15:02 +0100841 fio_gettime(&comp_time, NULL);
842
843 do {
844 ret = io_u_queued_complete(td, min_evts, bytes_done);
845 if (ret < 0)
846 break;
847
848 } while (full && (td->cur_depth > td->o.iodepth_low));
849 }
850
851 if (ret < 0)
852 break;
Jens Axboed5abee02012-10-22 20:36:26 +0200853 if (!ddir_rw_sum(bytes_done) && !(td->io_ops->flags & FIO_NOIO))
Jens Axboe2e1df072012-02-09 11:15:02 +0100854 continue;
855
856 if (!in_ramp_time(td) && should_check_rate(td, bytes_done)) {
857 if (check_min_rate(td, &comp_time, bytes_done)) {
858 if (exitall_on_terminate)
859 fio_terminate_threads(td->groupid);
860 td_verror(td, EIO, "check_min_rate");
861 break;
862 }
863 }
Jens Axboe3e260a42013-12-09 12:38:53 -0700864 if (!in_ramp_time(td) && td->o.latency_target)
865 lat_target_check(td);
Jens Axboe2e1df072012-02-09 11:15:02 +0100866
867 if (td->o.thinktime) {
868 unsigned long long b;
869
Jens Axboe342f4be2012-09-14 08:59:20 +0200870 b = ddir_rw_sum(td->io_blocks);
Jens Axboe2e1df072012-02-09 11:15:02 +0100871 if (!(b % td->o.thinktime_blocks)) {
872 int left;
873
Jens Axboe002e7182013-05-17 12:39:53 +0200874 io_u_quiesce(td);
875
Jens Axboe2e1df072012-02-09 11:15:02 +0100876 if (td->o.thinktime_spin)
877 usec_spin(td->o.thinktime_spin);
878
879 left = td->o.thinktime - td->o.thinktime_spin;
880 if (left)
881 usec_sleep(td, left);
882 }
883 }
884 }
885
Jens Axboec97f1ad2013-03-28 15:08:49 -0600886 check_update_rusage(td);
887
Jens Axboe2e1df072012-02-09 11:15:02 +0100888 if (td->trim_entries)
Jens Axboe4e0a8fa2013-04-15 11:40:57 +0200889 log_err("fio: %lu trim entries leaked?\n", td->trim_entries);
Jens Axboe2e1df072012-02-09 11:15:02 +0100890
891 if (td->o.fill_device && td->error == ENOSPC) {
892 td->error = 0;
893 td->terminate = 1;
894 }
895 if (!td->error) {
896 struct fio_file *f;
897
898 i = td->cur_depth;
899 if (i) {
Jens Axboe5bd5f712013-02-03 14:20:44 +0100900 ret = io_u_queued_complete(td, i, bytes_done);
Jens Axboe2e1df072012-02-09 11:15:02 +0100901 if (td->o.fill_device && td->error == ENOSPC)
902 td->error = 0;
903 }
904
905 if (should_fsync(td) && td->o.end_fsync) {
906 td_set_runstate(td, TD_FSYNCING);
907
908 for_each_file(td, f, i) {
Jens Axboe61ee0f82013-02-11 11:26:55 +0100909 if (!fio_file_fsync(td, f))
Jens Axboe2e1df072012-02-09 11:15:02 +0100910 continue;
Jens Axboe61ee0f82013-02-11 11:26:55 +0100911
912 log_err("fio: end_fsync failed for file %s\n",
913 f->file_name);
Jens Axboe2e1df072012-02-09 11:15:02 +0100914 }
915 }
916 } else
917 cleanup_pending_aio(td);
918
919 /*
920 * stop job if we failed doing any IO
921 */
Jens Axboe342f4be2012-09-14 08:59:20 +0200922 if (!ddir_rw_sum(td->this_io_bytes))
Jens Axboe2e1df072012-02-09 11:15:02 +0100923 td->done = 1;
Jens Axboe100f49f2013-01-23 10:15:57 -0700924
925 return bytes_done[DDIR_WRITE] + bytes_done[DDIR_TRIM];
Jens Axboe2e1df072012-02-09 11:15:02 +0100926}
927
928static void cleanup_io_u(struct thread_data *td)
929{
Jens Axboe2e1df072012-02-09 11:15:02 +0100930 struct io_u *io_u;
931
Jens Axboe2ae0b202013-05-28 14:16:55 +0200932 while ((io_u = io_u_qpop(&td->io_u_freelist)) != NULL) {
Jens Axboec73ed242012-12-06 20:30:38 +0100933
934 if (td->io_ops->io_u_free)
935 td->io_ops->io_u_free(td, io_u);
936
Jens Axboe2e1df072012-02-09 11:15:02 +0100937 fio_memfree(io_u, sizeof(*io_u));
938 }
939
940 free_io_mem(td);
Jens Axboe2ae0b202013-05-28 14:16:55 +0200941
942 io_u_rexit(&td->io_u_requeues);
943 io_u_qexit(&td->io_u_freelist);
944 io_u_qexit(&td->io_u_all);
Jens Axboe2e1df072012-02-09 11:15:02 +0100945}
946
947static int init_io_u(struct thread_data *td)
948{
949 struct io_u *io_u;
Jens Axboe9c426842012-03-02 21:02:12 +0100950 unsigned int max_bs, min_write;
Jens Axboe2e1df072012-02-09 11:15:02 +0100951 int cl_align, i, max_units;
Jens Axboe2ae0b202013-05-28 14:16:55 +0200952 int data_xfer = 1, err;
Jens Axboe2e1df072012-02-09 11:15:02 +0100953 char *p;
954
955 max_units = td->o.iodepth;
Jens Axboe74f4b022013-03-22 22:56:55 -0600956 max_bs = td_max_bs(td);
Jens Axboe9c426842012-03-02 21:02:12 +0100957 min_write = td->o.min_bs[DDIR_WRITE];
Jens Axboe2e1df072012-02-09 11:15:02 +0100958 td->orig_buffer_size = (unsigned long long) max_bs
959 * (unsigned long long) max_units;
960
Dmitry Monakhov88045e02012-09-25 12:12:36 +0200961 if ((td->io_ops->flags & FIO_NOIO) || !(td_read(td) || td_write(td)))
Jens Axboe59d8d0f2012-09-24 14:25:33 +0200962 data_xfer = 0;
963
Jens Axboe2ae0b202013-05-28 14:16:55 +0200964 err = 0;
965 err += io_u_rinit(&td->io_u_requeues, td->o.iodepth);
966 err += io_u_qinit(&td->io_u_freelist, td->o.iodepth);
967 err += io_u_qinit(&td->io_u_all, td->o.iodepth);
968
969 if (err) {
970 log_err("fio: failed setting up IO queues\n");
971 return 1;
972 }
973
peter changfd8a09b2013-04-24 16:32:25 -0600974 /*
975 * if we may later need to do address alignment, then add any
976 * possible adjustment here so that we don't cause a buffer
977 * overflow later. this adjustment may be too much if we get
978 * lucky and the allocator gives us an aligned address.
979 */
Chris Masond01612f2013-11-15 15:52:58 -0700980 if (td->o.odirect || td->o.mem_align || td->o.oatomic ||
981 (td->io_ops->flags & FIO_RAWIO))
peter changfd8a09b2013-04-24 16:32:25 -0600982 td->orig_buffer_size += page_mask + td->o.mem_align;
983
Jens Axboe2e1df072012-02-09 11:15:02 +0100984 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE) {
985 unsigned long bs;
986
987 bs = td->orig_buffer_size + td->o.hugepage_size - 1;
988 td->orig_buffer_size = bs & ~(td->o.hugepage_size - 1);
989 }
990
991 if (td->orig_buffer_size != (size_t) td->orig_buffer_size) {
992 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
993 return 1;
994 }
995
Jens Axboe59d8d0f2012-09-24 14:25:33 +0200996 if (data_xfer && allocate_io_mem(td))
Jens Axboe2e1df072012-02-09 11:15:02 +0100997 return 1;
998
Chris Masond01612f2013-11-15 15:52:58 -0700999 if (td->o.odirect || td->o.mem_align || td->o.oatomic ||
Jens Axboe2e1df072012-02-09 11:15:02 +01001000 (td->io_ops->flags & FIO_RAWIO))
1001 p = PAGE_ALIGN(td->orig_buffer) + td->o.mem_align;
1002 else
1003 p = td->orig_buffer;
1004
1005 cl_align = os_cache_line_size();
1006
1007 for (i = 0; i < max_units; i++) {
1008 void *ptr;
1009
1010 if (td->terminate)
1011 return 1;
1012
1013 ptr = fio_memalign(cl_align, sizeof(*io_u));
1014 if (!ptr) {
1015 log_err("fio: unable to allocate aligned memory\n");
1016 break;
1017 }
1018
1019 io_u = ptr;
1020 memset(io_u, 0, sizeof(*io_u));
Jens Axboe2ae0b202013-05-28 14:16:55 +02001021 INIT_FLIST_HEAD(&io_u->verify_list);
Jens Axboe2e1df072012-02-09 11:15:02 +01001022 dprint(FD_MEM, "io_u alloc %p, index %u\n", io_u, i);
1023
Jens Axboe59d8d0f2012-09-24 14:25:33 +02001024 if (data_xfer) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001025 io_u->buf = p;
1026 dprint(FD_MEM, "io_u %p, mem %p\n", io_u, io_u->buf);
1027
1028 if (td_write(td))
Jens Axboe9c426842012-03-02 21:02:12 +01001029 io_u_fill_buffer(td, io_u, min_write, max_bs);
Jens Axboe2e1df072012-02-09 11:15:02 +01001030 if (td_write(td) && td->o.verify_pattern_bytes) {
1031 /*
1032 * Fill the buffer with the pattern if we are
1033 * going to be doing writes.
1034 */
Jens Axboece35b1e2014-01-14 15:35:58 -07001035 fill_verify_pattern(td, io_u->buf, max_bs, io_u, 0, 0);
Jens Axboe2e1df072012-02-09 11:15:02 +01001036 }
1037 }
1038
1039 io_u->index = i;
1040 io_u->flags = IO_U_F_FREE;
Jens Axboe2ae0b202013-05-28 14:16:55 +02001041 io_u_qpush(&td->io_u_freelist, io_u);
1042
1043 /*
1044 * io_u never leaves this stack, used for iteration of all
1045 * io_u buffers.
1046 */
1047 io_u_qpush(&td->io_u_all, io_u);
Jens Axboec73ed242012-12-06 20:30:38 +01001048
1049 if (td->io_ops->io_u_init) {
1050 int ret = td->io_ops->io_u_init(td, io_u);
1051
1052 if (ret) {
1053 log_err("fio: failed to init engine data: %d\n", ret);
1054 return 1;
1055 }
1056 }
1057
Jens Axboe2e1df072012-02-09 11:15:02 +01001058 p += max_bs;
1059 }
1060
1061 return 0;
1062}
1063
1064static int switch_ioscheduler(struct thread_data *td)
1065{
1066 char tmp[256], tmp2[128];
1067 FILE *f;
1068 int ret;
1069
1070 if (td->io_ops->flags & FIO_DISKLESSIO)
1071 return 0;
1072
1073 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
1074
1075 f = fopen(tmp, "r+");
1076 if (!f) {
1077 if (errno == ENOENT) {
1078 log_err("fio: os or kernel doesn't support IO scheduler"
1079 " switching\n");
1080 return 0;
1081 }
1082 td_verror(td, errno, "fopen iosched");
1083 return 1;
1084 }
1085
1086 /*
1087 * Set io scheduler.
1088 */
1089 ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
1090 if (ferror(f) || ret != 1) {
1091 td_verror(td, errno, "fwrite");
1092 fclose(f);
1093 return 1;
1094 }
1095
1096 rewind(f);
1097
1098 /*
1099 * Read back and check that the selected scheduler is now the default.
1100 */
1101 ret = fread(tmp, 1, sizeof(tmp), f);
1102 if (ferror(f) || ret < 0) {
1103 td_verror(td, errno, "fread");
1104 fclose(f);
1105 return 1;
1106 }
1107
1108 sprintf(tmp2, "[%s]", td->o.ioscheduler);
1109 if (!strstr(tmp, tmp2)) {
1110 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
1111 td_verror(td, EINVAL, "iosched_switch");
1112 fclose(f);
1113 return 1;
1114 }
1115
1116 fclose(f);
1117 return 0;
1118}
1119
1120static int keep_running(struct thread_data *td)
1121{
Jens Axboe2e1df072012-02-09 11:15:02 +01001122 if (td->done)
1123 return 0;
1124 if (td->o.time_based)
1125 return 1;
1126 if (td->o.loops) {
1127 td->o.loops--;
1128 return 1;
1129 }
1130
Jens Axboeee98e232013-03-19 07:49:35 -06001131 if (td->o.size != -1ULL && ddir_rw_sum(td->io_bytes) < td->o.size) {
Jens Axboe5bd5f712013-02-03 14:20:44 +01001132 uint64_t diff;
1133
1134 /*
1135 * If the difference is less than the minimum IO size, we
1136 * are done.
1137 */
1138 diff = td->o.size - ddir_rw_sum(td->io_bytes);
Jens Axboe74f4b022013-03-22 22:56:55 -06001139 if (diff < td_max_bs(td))
Jens Axboe5bd5f712013-02-03 14:20:44 +01001140 return 0;
1141
Jens Axboe002fe732014-02-11 08:31:13 -07001142 if (fio_files_done(td))
1143 return 0;
1144
Jens Axboe2e1df072012-02-09 11:15:02 +01001145 return 1;
Jens Axboe5bd5f712013-02-03 14:20:44 +01001146 }
Jens Axboe2e1df072012-02-09 11:15:02 +01001147
1148 return 0;
1149}
1150
Erwan Veluce486492013-07-17 23:04:46 +02001151static int exec_string(struct thread_options *o, const char *string, const char *mode)
Jens Axboe2e1df072012-02-09 11:15:02 +01001152{
Erwan Veluce486492013-07-17 23:04:46 +02001153 int ret, newlen = strlen(string) + strlen(o->name) + strlen(mode) + 9 + 1;
Jens Axboe2e1df072012-02-09 11:15:02 +01001154 char *str;
1155
1156 str = malloc(newlen);
Erwan Veluce486492013-07-17 23:04:46 +02001157 sprintf(str, "%s &> %s.%s.txt", string, o->name, mode);
Jens Axboe2e1df072012-02-09 11:15:02 +01001158
Erwan Veluce486492013-07-17 23:04:46 +02001159 log_info("%s : Saving output of %s in %s.%s.txt\n",o->name, mode, o->name, mode);
Jens Axboe2e1df072012-02-09 11:15:02 +01001160 ret = system(str);
1161 if (ret == -1)
1162 log_err("fio: exec of cmd <%s> failed\n", str);
1163
1164 free(str);
1165 return ret;
1166}
1167
1168/*
Juan Casse62167762013-09-17 14:06:13 -07001169 * Dry run to compute correct state of numberio for verification.
1170 */
1171static uint64_t do_dry_run(struct thread_data *td)
1172{
1173 uint64_t bytes_done[DDIR_RWDIR_CNT] = { 0, 0, 0 };
1174
1175 td_set_runstate(td, TD_RUNNING);
1176
1177 while ((td->o.read_iolog_file && !flist_empty(&td->io_log_list)) ||
1178 (!flist_empty(&td->trim_list)) || !io_bytes_exceeded(td)) {
1179 struct io_u *io_u;
1180 int ret;
1181
1182 if (td->terminate || td->done)
1183 break;
1184
1185 io_u = get_io_u(td);
1186 if (!io_u)
1187 break;
1188
1189 io_u->flags |= IO_U_F_FLIGHT;
1190 io_u->error = 0;
1191 io_u->resid = 0;
1192 if (ddir_rw(acct_ddir(io_u)))
1193 td->io_issues[acct_ddir(io_u)]++;
1194 if (ddir_rw(io_u->ddir)) {
1195 io_u_mark_depth(td, 1);
1196 td->ts.total_io_u[io_u->ddir]++;
1197 }
1198
Puthikorn Voravootivat2e63e962014-03-03 15:33:32 -08001199 if (td_write(td) && io_u->ddir == DDIR_WRITE &&
1200 td->o.do_verify &&
1201 td->o.verify != VERIFY_NONE &&
1202 !td->o.experimental_verify)
1203 log_io_piece(td, io_u);
1204
Juan Casse62167762013-09-17 14:06:13 -07001205 ret = io_u_sync_complete(td, io_u, bytes_done);
1206 (void) ret;
1207 }
1208
1209 return bytes_done[DDIR_WRITE] + bytes_done[DDIR_TRIM];
1210}
1211
1212/*
Jens Axboe2e1df072012-02-09 11:15:02 +01001213 * Entry point for the thread based jobs. The process based jobs end up
1214 * here as well, after a little setup.
1215 */
1216static void *thread_main(void *data)
1217{
1218 unsigned long long elapsed;
1219 struct thread_data *td = data;
Jens Axboe48964732013-04-11 12:01:48 +02001220 struct thread_options *o = &td->o;
Jens Axboe2e1df072012-02-09 11:15:02 +01001221 pthread_condattr_t attr;
1222 int clear_state;
Jens Axboe28727df2012-03-29 08:33:15 +02001223 int ret;
Jens Axboe2e1df072012-02-09 11:15:02 +01001224
Jens Axboe48964732013-04-11 12:01:48 +02001225 if (!o->use_thread) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001226 setsid();
1227 td->pid = getpid();
1228 } else
1229 td->pid = gettid();
1230
Bruce Cran334185e2013-11-01 12:32:40 -06001231 /*
1232 * fio_time_init() may not have been called yet if running as a server
1233 */
1234 fio_time_init();
1235
Jens Axboe48964732013-04-11 12:01:48 +02001236 fio_local_clock_init(o->use_thread);
Jens Axboe5d879392012-12-18 09:12:27 +01001237
Jens Axboe2e1df072012-02-09 11:15:02 +01001238 dprint(FD_PROCESS, "jobs pid=%d started\n", (int) td->pid);
1239
Jens Axboe122c7722012-03-19 09:13:15 +01001240 if (is_backend)
1241 fio_server_send_start(td);
1242
Jens Axboe2e1df072012-02-09 11:15:02 +01001243 INIT_FLIST_HEAD(&td->io_log_list);
1244 INIT_FLIST_HEAD(&td->io_hist_list);
1245 INIT_FLIST_HEAD(&td->verify_list);
1246 INIT_FLIST_HEAD(&td->trim_list);
Jens Axboe1ae83d42013-01-12 01:44:15 -07001247 INIT_FLIST_HEAD(&td->next_rand_list);
Jens Axboe2e1df072012-02-09 11:15:02 +01001248 pthread_mutex_init(&td->io_u_lock, NULL);
1249 td->io_hist_tree = RB_ROOT;
1250
1251 pthread_condattr_init(&attr);
1252 pthread_cond_init(&td->verify_cond, &attr);
1253 pthread_cond_init(&td->free_cond, &attr);
1254
1255 td_set_runstate(td, TD_INITIALIZED);
1256 dprint(FD_MUTEX, "up startup_mutex\n");
1257 fio_mutex_up(startup_mutex);
1258 dprint(FD_MUTEX, "wait on td->mutex\n");
1259 fio_mutex_down(td->mutex);
1260 dprint(FD_MUTEX, "done waiting on td->mutex\n");
1261
1262 /*
Jens Axboe2e1df072012-02-09 11:15:02 +01001263 * A new gid requires privilege, so we need to do this before setting
1264 * the uid.
1265 */
Jens Axboe48964732013-04-11 12:01:48 +02001266 if (o->gid != -1U && setgid(o->gid)) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001267 td_verror(td, errno, "setgid");
1268 goto err;
1269 }
Jens Axboe48964732013-04-11 12:01:48 +02001270 if (o->uid != -1U && setuid(o->uid)) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001271 td_verror(td, errno, "setuid");
1272 goto err;
1273 }
1274
1275 /*
1276 * If we have a gettimeofday() thread, make sure we exclude that
1277 * thread from this job
1278 */
Jens Axboe48964732013-04-11 12:01:48 +02001279 if (o->gtod_cpu)
1280 fio_cpu_clear(&o->cpumask, o->gtod_cpu);
Jens Axboe2e1df072012-02-09 11:15:02 +01001281
1282 /*
1283 * Set affinity first, in case it has an impact on the memory
1284 * allocations.
1285 */
Jens Axboe48964732013-04-11 12:01:48 +02001286 if (o->cpumask_set) {
Jens Axboec2acfba2014-02-27 15:52:02 -08001287 if (o->cpus_allowed_policy == FIO_CPUS_SPLIT) {
Jens Axboe30cb4c62014-02-28 08:35:40 -08001288 ret = fio_cpus_split(&o->cpumask, td->thread_number - 1);
Jens Axboec2acfba2014-02-27 15:52:02 -08001289 if (!ret) {
1290 log_err("fio: no CPUs set\n");
1291 log_err("fio: Try increasing number of available CPUs\n");
1292 td_verror(td, EINVAL, "cpus_split");
1293 goto err;
1294 }
1295 }
Jens Axboe28727df2012-03-29 08:33:15 +02001296 ret = fio_setaffinity(td->pid, o->cpumask);
1297 if (ret == -1) {
Jens Axboe48964732013-04-11 12:01:48 +02001298 td_verror(td, errno, "cpu_set_affinity");
1299 goto err;
1300 }
Jens Axboe2e1df072012-02-09 11:15:02 +01001301 }
1302
Jens Axboe67bf9822013-01-10 11:23:19 +01001303#ifdef CONFIG_LIBNUMA
Yufei Rend0b937e2012-10-19 23:11:52 -04001304 /* numa node setup */
Jens Axboe48964732013-04-11 12:01:48 +02001305 if (o->numa_cpumask_set || o->numa_memmask_set) {
Yufei Rend0b937e2012-10-19 23:11:52 -04001306 int ret;
1307
1308 if (numa_available() < 0) {
1309 td_verror(td, errno, "Does not support NUMA API\n");
1310 goto err;
1311 }
1312
Jens Axboe48964732013-04-11 12:01:48 +02001313 if (o->numa_cpumask_set) {
1314 ret = numa_run_on_node_mask(o->numa_cpunodesmask);
Yufei Rend0b937e2012-10-19 23:11:52 -04001315 if (ret == -1) {
1316 td_verror(td, errno, \
1317 "numa_run_on_node_mask failed\n");
1318 goto err;
1319 }
1320 }
1321
Jens Axboe48964732013-04-11 12:01:48 +02001322 if (o->numa_memmask_set) {
Yufei Rend0b937e2012-10-19 23:11:52 -04001323
Jens Axboe48964732013-04-11 12:01:48 +02001324 switch (o->numa_mem_mode) {
Yufei Rend0b937e2012-10-19 23:11:52 -04001325 case MPOL_INTERLEAVE:
Jens Axboe48964732013-04-11 12:01:48 +02001326 numa_set_interleave_mask(o->numa_memnodesmask);
Yufei Rend0b937e2012-10-19 23:11:52 -04001327 break;
1328 case MPOL_BIND:
Jens Axboe48964732013-04-11 12:01:48 +02001329 numa_set_membind(o->numa_memnodesmask);
Yufei Rend0b937e2012-10-19 23:11:52 -04001330 break;
1331 case MPOL_LOCAL:
1332 numa_set_localalloc();
1333 break;
1334 case MPOL_PREFERRED:
Jens Axboe48964732013-04-11 12:01:48 +02001335 numa_set_preferred(o->numa_mem_prefer_node);
Yufei Rend0b937e2012-10-19 23:11:52 -04001336 break;
1337 case MPOL_DEFAULT:
1338 default:
1339 break;
1340 }
1341
1342 }
1343 }
1344#endif
1345
Jens Axboe9a3f1102012-03-28 20:50:15 +02001346 if (fio_pin_memory(td))
1347 goto err;
1348
Jens Axboe2e1df072012-02-09 11:15:02 +01001349 /*
1350 * May alter parameters that init_io_u() will use, so we need to
1351 * do this first.
1352 */
1353 if (init_iolog(td))
1354 goto err;
1355
1356 if (init_io_u(td))
1357 goto err;
1358
Jens Axboe48964732013-04-11 12:01:48 +02001359 if (o->verify_async && verify_async_init(td))
Jens Axboe2e1df072012-02-09 11:15:02 +01001360 goto err;
1361
Jens Axboe28727df2012-03-29 08:33:15 +02001362 if (o->ioprio) {
1363 ret = ioprio_set(IOPRIO_WHO_PROCESS, 0, o->ioprio_class, o->ioprio);
1364 if (ret == -1) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001365 td_verror(td, errno, "ioprio_set");
1366 goto err;
1367 }
1368 }
1369
Jens Axboe48964732013-04-11 12:01:48 +02001370 if (o->cgroup && cgroup_setup(td, cgroup_list, &cgroup_mnt))
Jens Axboe2e1df072012-02-09 11:15:02 +01001371 goto err;
1372
Bruce Cran649c10c2012-02-20 07:59:06 +01001373 errno = 0;
Jens Axboe48964732013-04-11 12:01:48 +02001374 if (nice(o->nice) == -1 && errno != 0) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001375 td_verror(td, errno, "nice");
1376 goto err;
1377 }
1378
Jens Axboe48964732013-04-11 12:01:48 +02001379 if (o->ioscheduler && switch_ioscheduler(td))
Jens Axboe2e1df072012-02-09 11:15:02 +01001380 goto err;
1381
Jens Axboe48964732013-04-11 12:01:48 +02001382 if (!o->create_serialize && setup_files(td))
Jens Axboe2e1df072012-02-09 11:15:02 +01001383 goto err;
1384
1385 if (td_io_init(td))
1386 goto err;
1387
1388 if (init_random_map(td))
1389 goto err;
1390
Erwan Veluce486492013-07-17 23:04:46 +02001391 if (o->exec_prerun && exec_string(o, o->exec_prerun, (const char *)"prerun"))
Jens Axboe48964732013-04-11 12:01:48 +02001392 goto err;
Jens Axboe2e1df072012-02-09 11:15:02 +01001393
Jens Axboe48964732013-04-11 12:01:48 +02001394 if (o->pre_read) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001395 if (pre_read_files(td) < 0)
1396 goto err;
1397 }
1398
Jens Axboedc5bfbb2013-04-10 22:23:40 +02001399 fio_verify_init(td);
1400
Jens Axboe2e1df072012-02-09 11:15:02 +01001401 fio_gettime(&td->epoch, NULL);
Jens Axboe44404c52013-01-24 14:20:09 -07001402 fio_getrusage(&td->ru_start);
Jens Axboe2e1df072012-02-09 11:15:02 +01001403 clear_state = 0;
1404 while (keep_running(td)) {
Jens Axboe100f49f2013-01-23 10:15:57 -07001405 uint64_t verify_bytes;
1406
Jens Axboe2e1df072012-02-09 11:15:02 +01001407 fio_gettime(&td->start, NULL);
1408 memcpy(&td->bw_sample_time, &td->start, sizeof(td->start));
1409 memcpy(&td->iops_sample_time, &td->start, sizeof(td->start));
1410 memcpy(&td->tv_cache, &td->start, sizeof(td->start));
1411
Jens Axboe48964732013-04-11 12:01:48 +02001412 if (o->ratemin[DDIR_READ] || o->ratemin[DDIR_WRITE] ||
1413 o->ratemin[DDIR_TRIM]) {
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001414 memcpy(&td->lastrate[DDIR_READ], &td->bw_sample_time,
Jens Axboe2e1df072012-02-09 11:15:02 +01001415 sizeof(td->bw_sample_time));
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001416 memcpy(&td->lastrate[DDIR_WRITE], &td->bw_sample_time,
1417 sizeof(td->bw_sample_time));
1418 memcpy(&td->lastrate[DDIR_TRIM], &td->bw_sample_time,
Jens Axboe2e1df072012-02-09 11:15:02 +01001419 sizeof(td->bw_sample_time));
1420 }
1421
1422 if (clear_state)
1423 clear_io_state(td);
1424
1425 prune_io_piece_log(td);
1426
Juan Casse62167762013-09-17 14:06:13 -07001427 if (td->o.verify_only && (td_write(td) || td_rw(td)))
1428 verify_bytes = do_dry_run(td);
1429 else
1430 verify_bytes = do_io(td);
Jens Axboe2e1df072012-02-09 11:15:02 +01001431
1432 clear_state = 1;
1433
1434 if (td_read(td) && td->io_bytes[DDIR_READ]) {
1435 elapsed = utime_since_now(&td->start);
1436 td->ts.runtime[DDIR_READ] += elapsed;
1437 }
1438 if (td_write(td) && td->io_bytes[DDIR_WRITE]) {
1439 elapsed = utime_since_now(&td->start);
1440 td->ts.runtime[DDIR_WRITE] += elapsed;
1441 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001442 if (td_trim(td) && td->io_bytes[DDIR_TRIM]) {
1443 elapsed = utime_since_now(&td->start);
1444 td->ts.runtime[DDIR_TRIM] += elapsed;
1445 }
Jens Axboe2e1df072012-02-09 11:15:02 +01001446
1447 if (td->error || td->terminate)
1448 break;
1449
Jens Axboe48964732013-04-11 12:01:48 +02001450 if (!o->do_verify ||
1451 o->verify == VERIFY_NONE ||
Jens Axboe2e1df072012-02-09 11:15:02 +01001452 (td->io_ops->flags & FIO_UNIDIR))
1453 continue;
1454
1455 clear_io_state(td);
1456
1457 fio_gettime(&td->start, NULL);
1458
Jens Axboe100f49f2013-01-23 10:15:57 -07001459 do_verify(td, verify_bytes);
Jens Axboe2e1df072012-02-09 11:15:02 +01001460
1461 td->ts.runtime[DDIR_READ] += utime_since_now(&td->start);
1462
1463 if (td->error || td->terminate)
1464 break;
1465 }
1466
1467 update_rusage_stat(td);
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001468 td->ts.runtime[DDIR_READ] = (td->ts.runtime[DDIR_READ] + 999) / 1000;
1469 td->ts.runtime[DDIR_WRITE] = (td->ts.runtime[DDIR_WRITE] + 999) / 1000;
1470 td->ts.runtime[DDIR_TRIM] = (td->ts.runtime[DDIR_TRIM] + 999) / 1000;
Jens Axboe2e1df072012-02-09 11:15:02 +01001471 td->ts.total_run_time = mtime_since_now(&td->epoch);
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001472 td->ts.io_bytes[DDIR_READ] = td->io_bytes[DDIR_READ];
1473 td->ts.io_bytes[DDIR_WRITE] = td->io_bytes[DDIR_WRITE];
1474 td->ts.io_bytes[DDIR_TRIM] = td->io_bytes[DDIR_TRIM];
Jens Axboe2e1df072012-02-09 11:15:02 +01001475
Jens Axboe9a3f1102012-03-28 20:50:15 +02001476 fio_unpin_memory(td);
1477
Jens Axboe2e1df072012-02-09 11:15:02 +01001478 fio_mutex_down(writeout_mutex);
Peter Oberparleiter99007062014-02-20 14:20:05 +01001479 finalize_logs(td);
Jens Axboe2e1df072012-02-09 11:15:02 +01001480 if (td->bw_log) {
Jens Axboe48964732013-04-11 12:01:48 +02001481 if (o->bw_log_file) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001482 finish_log_named(td, td->bw_log,
Jens Axboe48964732013-04-11 12:01:48 +02001483 o->bw_log_file, "bw");
Jens Axboe2e1df072012-02-09 11:15:02 +01001484 } else
1485 finish_log(td, td->bw_log, "bw");
1486 }
1487 if (td->lat_log) {
Jens Axboe48964732013-04-11 12:01:48 +02001488 if (o->lat_log_file) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001489 finish_log_named(td, td->lat_log,
Jens Axboe48964732013-04-11 12:01:48 +02001490 o->lat_log_file, "lat");
Jens Axboe2e1df072012-02-09 11:15:02 +01001491 } else
1492 finish_log(td, td->lat_log, "lat");
1493 }
1494 if (td->slat_log) {
Jens Axboe48964732013-04-11 12:01:48 +02001495 if (o->lat_log_file) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001496 finish_log_named(td, td->slat_log,
Jens Axboe48964732013-04-11 12:01:48 +02001497 o->lat_log_file, "slat");
Jens Axboe2e1df072012-02-09 11:15:02 +01001498 } else
1499 finish_log(td, td->slat_log, "slat");
1500 }
1501 if (td->clat_log) {
Jens Axboe48964732013-04-11 12:01:48 +02001502 if (o->lat_log_file) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001503 finish_log_named(td, td->clat_log,
Jens Axboe48964732013-04-11 12:01:48 +02001504 o->lat_log_file, "clat");
Jens Axboe2e1df072012-02-09 11:15:02 +01001505 } else
1506 finish_log(td, td->clat_log, "clat");
1507 }
1508 if (td->iops_log) {
Jens Axboe48964732013-04-11 12:01:48 +02001509 if (o->iops_log_file) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001510 finish_log_named(td, td->iops_log,
Jens Axboe48964732013-04-11 12:01:48 +02001511 o->iops_log_file, "iops");
Jens Axboe2e1df072012-02-09 11:15:02 +01001512 } else
1513 finish_log(td, td->iops_log, "iops");
1514 }
1515
1516 fio_mutex_up(writeout_mutex);
Jens Axboe48964732013-04-11 12:01:48 +02001517 if (o->exec_postrun)
Erwan Veluce486492013-07-17 23:04:46 +02001518 exec_string(o, o->exec_postrun, (const char *)"postrun");
Jens Axboe2e1df072012-02-09 11:15:02 +01001519
1520 if (exitall_on_terminate)
1521 fio_terminate_threads(td->groupid);
1522
1523err:
1524 if (td->error)
1525 log_info("fio: pid=%d, err=%d/%s\n", (int) td->pid, td->error,
1526 td->verror);
1527
Jens Axboe48964732013-04-11 12:01:48 +02001528 if (o->verify_async)
Jens Axboe2e1df072012-02-09 11:15:02 +01001529 verify_async_exit(td);
1530
1531 close_and_free_files(td);
Jens Axboe2e1df072012-02-09 11:15:02 +01001532 cleanup_io_u(td);
Bruce Cran32dbca22012-12-06 20:32:40 +01001533 close_ioengine(td);
Jens Axboe2e1df072012-02-09 11:15:02 +01001534 cgroup_shutdown(td, &cgroup_mnt);
1535
Jens Axboe48964732013-04-11 12:01:48 +02001536 if (o->cpumask_set) {
1537 int ret = fio_cpuset_exit(&o->cpumask);
Jens Axboe2e1df072012-02-09 11:15:02 +01001538
1539 td_verror(td, ret, "fio_cpuset_exit");
1540 }
1541
1542 /*
1543 * do this very late, it will log file closing as well
1544 */
Jens Axboe48964732013-04-11 12:01:48 +02001545 if (o->write_iolog_file)
Jens Axboe2e1df072012-02-09 11:15:02 +01001546 write_iolog_close(td);
1547
Jens Axboec97f1ad2013-03-28 15:08:49 -06001548 fio_mutex_remove(td->rusage_sem);
1549 td->rusage_sem = NULL;
1550
Jens Axboeea66e042014-02-10 13:57:09 -07001551 fio_mutex_remove(td->mutex);
1552 td->mutex = NULL;
1553
Jens Axboe2e1df072012-02-09 11:15:02 +01001554 td_set_runstate(td, TD_EXITED);
Bruce Crane43606c2012-02-20 09:34:24 +01001555 return (void *) (uintptr_t) td->error;
Jens Axboe2e1df072012-02-09 11:15:02 +01001556}
1557
1558
1559/*
1560 * We cannot pass the td data into a forked process, so attach the td and
1561 * pass it to the thread worker.
1562 */
1563static int fork_main(int shmid, int offset)
1564{
1565 struct thread_data *td;
1566 void *data, *ret;
1567
1568#ifndef __hpux
1569 data = shmat(shmid, NULL, 0);
1570 if (data == (void *) -1) {
1571 int __err = errno;
1572
1573 perror("shmat");
1574 return __err;
1575 }
1576#else
1577 /*
1578 * HP-UX inherits shm mappings?
1579 */
1580 data = threads;
1581#endif
1582
1583 td = data + offset * sizeof(struct thread_data);
1584 ret = thread_main(td);
1585 shmdt(data);
Bruce Crane43606c2012-02-20 09:34:24 +01001586 return (int) (uintptr_t) ret;
Jens Axboe2e1df072012-02-09 11:15:02 +01001587}
1588
1589/*
1590 * Run over the job map and reap the threads that have exited, if any.
1591 */
1592static void reap_threads(unsigned int *nr_running, unsigned int *t_rate,
1593 unsigned int *m_rate)
1594{
1595 struct thread_data *td;
1596 unsigned int cputhreads, realthreads, pending;
1597 int i, status, ret;
1598
1599 /*
1600 * reap exited threads (TD_EXITED -> TD_REAPED)
1601 */
1602 realthreads = pending = cputhreads = 0;
1603 for_each_td(td, i) {
1604 int flags = 0;
1605
1606 /*
1607 * ->io_ops is NULL for a thread that has closed its
1608 * io engine
1609 */
1610 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
1611 cputhreads++;
1612 else
1613 realthreads++;
1614
1615 if (!td->pid) {
1616 pending++;
1617 continue;
1618 }
1619 if (td->runstate == TD_REAPED)
1620 continue;
1621 if (td->o.use_thread) {
1622 if (td->runstate == TD_EXITED) {
1623 td_set_runstate(td, TD_REAPED);
1624 goto reaped;
1625 }
1626 continue;
1627 }
1628
1629 flags = WNOHANG;
1630 if (td->runstate == TD_EXITED)
1631 flags = 0;
1632
1633 /*
1634 * check if someone quit or got killed in an unusual way
1635 */
1636 ret = waitpid(td->pid, &status, flags);
1637 if (ret < 0) {
1638 if (errno == ECHILD) {
1639 log_err("fio: pid=%d disappeared %d\n",
1640 (int) td->pid, td->runstate);
Jens Axboea5e371a2012-04-02 09:47:09 -07001641 td->sig = ECHILD;
Jens Axboe2e1df072012-02-09 11:15:02 +01001642 td_set_runstate(td, TD_REAPED);
1643 goto reaped;
1644 }
1645 perror("waitpid");
1646 } else if (ret == td->pid) {
1647 if (WIFSIGNALED(status)) {
1648 int sig = WTERMSIG(status);
1649
Jens Axboe36d80bc2012-11-30 21:46:06 +01001650 if (sig != SIGTERM && sig != SIGUSR2)
Jens Axboe2e1df072012-02-09 11:15:02 +01001651 log_err("fio: pid=%d, got signal=%d\n",
1652 (int) td->pid, sig);
Jens Axboea5e371a2012-04-02 09:47:09 -07001653 td->sig = sig;
Jens Axboe2e1df072012-02-09 11:15:02 +01001654 td_set_runstate(td, TD_REAPED);
1655 goto reaped;
1656 }
1657 if (WIFEXITED(status)) {
1658 if (WEXITSTATUS(status) && !td->error)
1659 td->error = WEXITSTATUS(status);
1660
1661 td_set_runstate(td, TD_REAPED);
1662 goto reaped;
1663 }
1664 }
1665
1666 /*
1667 * thread is not dead, continue
1668 */
1669 pending++;
1670 continue;
1671reaped:
1672 (*nr_running)--;
Jens Axboe342f4be2012-09-14 08:59:20 +02001673 (*m_rate) -= ddir_rw_sum(td->o.ratemin);
1674 (*t_rate) -= ddir_rw_sum(td->o.rate);
Jens Axboe2e1df072012-02-09 11:15:02 +01001675 if (!td->pid)
1676 pending--;
1677
1678 if (td->error)
1679 exit_value++;
1680
1681 done_secs += mtime_since_now(&td->epoch) / 1000;
Jens Axboe4a887522013-05-23 12:33:08 +02001682 profile_td_exit(td);
Jens Axboe2e1df072012-02-09 11:15:02 +01001683 }
1684
1685 if (*nr_running == cputhreads && !pending && realthreads)
1686 fio_terminate_threads(TERMINATE_ALL);
1687}
1688
Jens Axboe06464902013-04-24 20:38:54 -06001689static void do_usleep(unsigned int usecs)
1690{
1691 check_for_running_stats();
1692 usleep(usecs);
1693}
1694
Jens Axboe2e1df072012-02-09 11:15:02 +01001695/*
1696 * Main function for kicking off and reaping jobs, as needed.
1697 */
1698static void run_threads(void)
1699{
1700 struct thread_data *td;
Jens Axboe2e1df072012-02-09 11:15:02 +01001701 unsigned int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboe0de5b262014-02-21 15:26:01 -08001702 uint64_t spent;
Jens Axboe2e1df072012-02-09 11:15:02 +01001703
Jens Axboe2e1df072012-02-09 11:15:02 +01001704 if (fio_gtod_offload && fio_start_gtod_thread())
1705 return;
Bruce Cran334185e2013-11-01 12:32:40 -06001706
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001707 fio_idle_prof_init();
Jens Axboe2e1df072012-02-09 11:15:02 +01001708
1709 set_sig_handlers();
1710
Jens Axboe3a5f6bd2013-04-11 12:04:38 +02001711 nr_thread = nr_process = 0;
1712 for_each_td(td, i) {
1713 if (td->o.use_thread)
1714 nr_thread++;
1715 else
1716 nr_process++;
1717 }
1718
Jens Axboef3afa572012-09-17 13:34:16 +02001719 if (output_format == FIO_OUTPUT_NORMAL) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001720 log_info("Starting ");
1721 if (nr_thread)
1722 log_info("%d thread%s", nr_thread,
1723 nr_thread > 1 ? "s" : "");
1724 if (nr_process) {
1725 if (nr_thread)
1726 log_info(" and ");
1727 log_info("%d process%s", nr_process,
1728 nr_process > 1 ? "es" : "");
1729 }
1730 log_info("\n");
1731 fflush(stdout);
1732 }
1733
1734 todo = thread_number;
1735 nr_running = 0;
1736 nr_started = 0;
1737 m_rate = t_rate = 0;
1738
1739 for_each_td(td, i) {
1740 print_status_init(td->thread_number - 1);
1741
1742 if (!td->o.create_serialize)
1743 continue;
1744
1745 /*
1746 * do file setup here so it happens sequentially,
1747 * we don't want X number of threads getting their
1748 * client data interspersed on disk
1749 */
1750 if (setup_files(td)) {
1751 exit_value++;
1752 if (td->error)
1753 log_err("fio: pid=%d, err=%d/%s\n",
1754 (int) td->pid, td->error, td->verror);
1755 td_set_runstate(td, TD_REAPED);
1756 todo--;
1757 } else {
1758 struct fio_file *f;
1759 unsigned int j;
1760
1761 /*
1762 * for sharing to work, each job must always open
1763 * its own files. so close them, if we opened them
1764 * for creation
1765 */
1766 for_each_file(td, f, j) {
1767 if (fio_file_open(f))
1768 td_io_close_file(td, f);
1769 }
1770 }
1771 }
1772
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001773 /* start idle threads before io threads start to run */
1774 fio_idle_prof_start();
1775
Jens Axboe2e1df072012-02-09 11:15:02 +01001776 set_genesis_time();
1777
1778 while (todo) {
1779 struct thread_data *map[REAL_MAX_JOBS];
1780 struct timeval this_start;
1781 int this_jobs = 0, left;
1782
1783 /*
1784 * create threads (TD_NOT_CREATED -> TD_CREATED)
1785 */
1786 for_each_td(td, i) {
1787 if (td->runstate != TD_NOT_CREATED)
1788 continue;
1789
1790 /*
1791 * never got a chance to start, killed by other
1792 * thread for some reason
1793 */
1794 if (td->terminate) {
1795 todo--;
1796 continue;
1797 }
1798
1799 if (td->o.start_delay) {
Jens Axboe0de5b262014-02-21 15:26:01 -08001800 spent = utime_since_genesis();
Jens Axboe2e1df072012-02-09 11:15:02 +01001801
Christian Ehrhardt74454ce2014-02-20 14:20:01 +01001802 if (td->o.start_delay > spent)
Jens Axboe2e1df072012-02-09 11:15:02 +01001803 continue;
1804 }
1805
1806 if (td->o.stonewall && (nr_started || nr_running)) {
1807 dprint(FD_PROCESS, "%s: stonewall wait\n",
1808 td->o.name);
1809 break;
1810 }
1811
1812 init_disk_util(td);
1813
Jens Axboec97f1ad2013-03-28 15:08:49 -06001814 td->rusage_sem = fio_mutex_init(FIO_MUTEX_LOCKED);
1815 td->update_rusage = 0;
1816
Jens Axboe2e1df072012-02-09 11:15:02 +01001817 /*
1818 * Set state to created. Thread will transition
1819 * to TD_INITIALIZED when it's done setting up.
1820 */
1821 td_set_runstate(td, TD_CREATED);
1822 map[this_jobs++] = td;
1823 nr_started++;
1824
1825 if (td->o.use_thread) {
1826 int ret;
1827
1828 dprint(FD_PROCESS, "will pthread_create\n");
1829 ret = pthread_create(&td->thread, NULL,
1830 thread_main, td);
1831 if (ret) {
1832 log_err("pthread_create: %s\n",
1833 strerror(ret));
1834 nr_started--;
1835 break;
1836 }
1837 ret = pthread_detach(td->thread);
1838 if (ret)
1839 log_err("pthread_detach: %s",
1840 strerror(ret));
1841 } else {
1842 pid_t pid;
1843 dprint(FD_PROCESS, "will fork\n");
1844 pid = fork();
1845 if (!pid) {
1846 int ret = fork_main(shm_id, i);
1847
1848 _exit(ret);
1849 } else if (i == fio_debug_jobno)
1850 *fio_debug_jobp = pid;
1851 }
1852 dprint(FD_MUTEX, "wait on startup_mutex\n");
1853 if (fio_mutex_down_timeout(startup_mutex, 10)) {
1854 log_err("fio: job startup hung? exiting.\n");
1855 fio_terminate_threads(TERMINATE_ALL);
1856 fio_abort = 1;
1857 nr_started--;
1858 break;
1859 }
1860 dprint(FD_MUTEX, "done waiting on startup_mutex\n");
1861 }
1862
1863 /*
1864 * Wait for the started threads to transition to
1865 * TD_INITIALIZED.
1866 */
1867 fio_gettime(&this_start, NULL);
1868 left = this_jobs;
1869 while (left && !fio_abort) {
1870 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1871 break;
1872
Jens Axboe06464902013-04-24 20:38:54 -06001873 do_usleep(100000);
Jens Axboe2e1df072012-02-09 11:15:02 +01001874
1875 for (i = 0; i < this_jobs; i++) {
1876 td = map[i];
1877 if (!td)
1878 continue;
1879 if (td->runstate == TD_INITIALIZED) {
1880 map[i] = NULL;
1881 left--;
1882 } else if (td->runstate >= TD_EXITED) {
1883 map[i] = NULL;
1884 left--;
1885 todo--;
1886 nr_running++; /* work-around... */
1887 }
1888 }
1889 }
1890
1891 if (left) {
Jens Axboe4e87c372012-02-15 14:27:08 +01001892 log_err("fio: %d job%s failed to start\n", left,
1893 left > 1 ? "s" : "");
Jens Axboe2e1df072012-02-09 11:15:02 +01001894 for (i = 0; i < this_jobs; i++) {
1895 td = map[i];
1896 if (!td)
1897 continue;
1898 kill(td->pid, SIGTERM);
1899 }
1900 break;
1901 }
1902
1903 /*
1904 * start created threads (TD_INITIALIZED -> TD_RUNNING).
1905 */
1906 for_each_td(td, i) {
1907 if (td->runstate != TD_INITIALIZED)
1908 continue;
1909
1910 if (in_ramp_time(td))
1911 td_set_runstate(td, TD_RAMP);
1912 else
1913 td_set_runstate(td, TD_RUNNING);
1914 nr_running++;
1915 nr_started--;
Jens Axboe342f4be2012-09-14 08:59:20 +02001916 m_rate += ddir_rw_sum(td->o.ratemin);
1917 t_rate += ddir_rw_sum(td->o.rate);
Jens Axboe2e1df072012-02-09 11:15:02 +01001918 todo--;
1919 fio_mutex_up(td->mutex);
1920 }
1921
1922 reap_threads(&nr_running, &t_rate, &m_rate);
1923
Jens Axboe122c7722012-03-19 09:13:15 +01001924 if (todo)
Jens Axboe06464902013-04-24 20:38:54 -06001925 do_usleep(100000);
Jens Axboe2e1df072012-02-09 11:15:02 +01001926 }
1927
1928 while (nr_running) {
1929 reap_threads(&nr_running, &t_rate, &m_rate);
Jens Axboe06464902013-04-24 20:38:54 -06001930 do_usleep(10000);
Jens Axboe2e1df072012-02-09 11:15:02 +01001931 }
1932
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001933 fio_idle_prof_stop();
1934
Jens Axboe2e1df072012-02-09 11:15:02 +01001935 update_io_ticks();
Jens Axboe2e1df072012-02-09 11:15:02 +01001936}
1937
Jens Axboe9ec77792012-08-02 08:27:41 +02001938void wait_for_disk_thread_exit(void)
1939{
1940 fio_mutex_down(disk_thread_mutex);
1941}
1942
Jens Axboe27357182012-09-27 11:31:50 +02001943static void free_disk_util(void)
1944{
1945 disk_util_start_exit();
1946 wait_for_disk_thread_exit();
1947 disk_util_prune_entries();
1948}
1949
Jens Axboe2e1df072012-02-09 11:15:02 +01001950static void *disk_thread_main(void *data)
1951{
Jens Axboe9ec77792012-08-02 08:27:41 +02001952 int ret = 0;
1953
Jens Axboe2e1df072012-02-09 11:15:02 +01001954 fio_mutex_up(startup_mutex);
1955
Jens Axboe9ec77792012-08-02 08:27:41 +02001956 while (threads && !ret) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001957 usleep(DISK_UTIL_MSEC * 1000);
1958 if (!threads)
1959 break;
Jens Axboe9ec77792012-08-02 08:27:41 +02001960 ret = update_io_ticks();
Jens Axboe2e1df072012-02-09 11:15:02 +01001961
1962 if (!is_backend)
1963 print_thread_status();
1964 }
1965
Jens Axboe9ec77792012-08-02 08:27:41 +02001966 fio_mutex_up(disk_thread_mutex);
Jens Axboe2e1df072012-02-09 11:15:02 +01001967 return NULL;
1968}
1969
1970static int create_disk_util_thread(void)
1971{
1972 int ret;
1973
Jens Axboe9ec77792012-08-02 08:27:41 +02001974 setup_disk_util();
1975
Jens Axboe521da522012-08-02 11:21:36 +02001976 disk_thread_mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
Jens Axboe9ec77792012-08-02 08:27:41 +02001977
Jens Axboe2e1df072012-02-09 11:15:02 +01001978 ret = pthread_create(&disk_util_thread, NULL, disk_thread_main, NULL);
1979 if (ret) {
Jens Axboe9ec77792012-08-02 08:27:41 +02001980 fio_mutex_remove(disk_thread_mutex);
Jens Axboe2e1df072012-02-09 11:15:02 +01001981 log_err("Can't create disk util thread: %s\n", strerror(ret));
1982 return 1;
1983 }
1984
1985 ret = pthread_detach(disk_util_thread);
1986 if (ret) {
Jens Axboe9ec77792012-08-02 08:27:41 +02001987 fio_mutex_remove(disk_thread_mutex);
Jens Axboe2e1df072012-02-09 11:15:02 +01001988 log_err("Can't detatch disk util thread: %s\n", strerror(ret));
1989 return 1;
1990 }
1991
1992 dprint(FD_MUTEX, "wait on startup_mutex\n");
1993 fio_mutex_down(startup_mutex);
1994 dprint(FD_MUTEX, "done waiting on startup_mutex\n");
1995 return 0;
1996}
1997
Jens Axboe2e1df072012-02-09 11:15:02 +01001998int fio_backend(void)
1999{
2000 struct thread_data *td;
2001 int i;
2002
2003 if (exec_profile) {
2004 if (load_profile(exec_profile))
2005 return 1;
2006 free(exec_profile);
2007 exec_profile = NULL;
2008 }
2009 if (!thread_number)
2010 return 0;
2011
2012 if (write_bw_log) {
Jens Axboe5a812f92012-03-14 11:39:13 +01002013 setup_log(&agg_io_log[DDIR_READ], 0, IO_LOG_TYPE_BW);
2014 setup_log(&agg_io_log[DDIR_WRITE], 0, IO_LOG_TYPE_BW);
2015 setup_log(&agg_io_log[DDIR_TRIM], 0, IO_LOG_TYPE_BW);
Jens Axboe2e1df072012-02-09 11:15:02 +01002016 }
2017
Jens Axboe521da522012-08-02 11:21:36 +02002018 startup_mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
Jens Axboe2e1df072012-02-09 11:15:02 +01002019 if (startup_mutex == NULL)
2020 return 1;
Jens Axboe521da522012-08-02 11:21:36 +02002021 writeout_mutex = fio_mutex_init(FIO_MUTEX_UNLOCKED);
Jens Axboe2e1df072012-02-09 11:15:02 +01002022 if (writeout_mutex == NULL)
2023 return 1;
2024
2025 set_genesis_time();
Jens Axboecef91752013-04-26 17:05:57 -06002026 stat_init();
Jens Axboe2e1df072012-02-09 11:15:02 +01002027 create_disk_util_thread();
2028
2029 cgroup_list = smalloc(sizeof(*cgroup_list));
2030 INIT_FLIST_HEAD(cgroup_list);
2031
2032 run_threads();
2033
2034 if (!fio_abort) {
2035 show_run_stats();
2036 if (write_bw_log) {
2037 __finish_log(agg_io_log[DDIR_READ], "agg-read_bw.log");
2038 __finish_log(agg_io_log[DDIR_WRITE],
2039 "agg-write_bw.log");
Shaohua Li6eaf09d2012-09-14 08:49:43 +02002040 __finish_log(agg_io_log[DDIR_TRIM],
2041 "agg-write_bw.log");
Jens Axboe2e1df072012-02-09 11:15:02 +01002042 }
2043 }
2044
2045 for_each_td(td, i)
2046 fio_options_free(td);
2047
Jens Axboea462bae2012-03-30 08:33:27 +02002048 free_disk_util();
Jens Axboe2e1df072012-02-09 11:15:02 +01002049 cgroup_kill(cgroup_list);
2050 sfree(cgroup_list);
2051 sfree(cgroup_mnt);
2052
2053 fio_mutex_remove(startup_mutex);
2054 fio_mutex_remove(writeout_mutex);
Jens Axboe9ec77792012-08-02 08:27:41 +02002055 fio_mutex_remove(disk_thread_mutex);
Jens Axboecef91752013-04-26 17:05:57 -06002056 stat_exit();
Jens Axboe2e1df072012-02-09 11:15:02 +01002057 return exit_value;
2058}