blob: b0afdcc85f303303b2513194b20bfc7212651c83 [file] [log] [blame]
Jens Axboeebac4652005-12-08 15:25:21 +01001/*
2 * fio - the flexible io tester
3 *
4 * Copyright (C) 2005 Jens Axboe <axboe@suse.de>
Jens Axboeaae22ca2006-09-05 10:46:22 +02005 * Copyright (C) 2006 Jens Axboe <axboe@kernel.dk>
Jens Axboeebac4652005-12-08 15:25:21 +01006 *
Jens Axboe8e9fe632006-10-24 15:11:09 +02007 * The license below covers all files distributed with fio unless otherwise
8 * noted in the file itself.
9 *
Jens Axboeebac4652005-12-08 15:25:21 +010010 * This program is free software; you can redistribute it and/or modify
Jens Axboe8e9fe632006-10-24 15:11:09 +020011 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
Jens Axboeebac4652005-12-08 15:25:21 +010013 *
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 */
Jens Axboeebac4652005-12-08 15:25:21 +010024#include <unistd.h>
25#include <fcntl.h>
26#include <string.h>
Jens Axboeebac4652005-12-08 15:25:21 +010027#include <signal.h>
28#include <time.h>
Jens Axboedbe11252007-02-11 00:19:51 +010029#include <locale.h>
Jens Axboe36167d82007-02-18 05:41:31 +010030#include <assert.h>
Jens Axboeebac4652005-12-08 15:25:21 +010031#include <sys/stat.h>
32#include <sys/wait.h>
33#include <sys/ipc.h>
34#include <sys/shm.h>
Jens Axboeebac4652005-12-08 15:25:21 +010035#include <sys/mman.h>
36
37#include "fio.h"
38#include "os.h"
39
Jens Axboe29d610e2007-02-06 13:25:33 +010040static unsigned long page_mask;
41#define ALIGN(buf) \
42 (char *) (((unsigned long) (buf) + page_mask) & ~page_mask)
Jens Axboeebac4652005-12-08 15:25:21 +010043
44int groupid = 0;
45int thread_number = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010046int shm_id = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +020047int temp_stall_ts;
Jens Axboeebac4652005-12-08 15:25:21 +010048
Jens Axboe07739b52007-03-08 20:25:46 +010049static struct fio_sem *startup_sem;
Jens Axboe6ce15a32007-01-12 09:04:41 +010050static volatile int fio_abort;
Jens Axboe437c9b72007-02-13 18:20:37 +010051static int exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +010052
Jens Axboebb3884d2007-01-17 17:23:11 +110053struct io_log *agg_io_log[2];
54
Jens Axboeebac4652005-12-08 15:25:21 +010055#define TERMINATE_ALL (-1)
Jens Axboe75154842006-06-01 13:56:09 +020056#define JOB_START_TIMEOUT (5 * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +010057
Jens Axboe6ce15a32007-01-12 09:04:41 +010058static inline void td_set_runstate(struct thread_data *td, int runstate)
59{
60 td->runstate = runstate;
61}
62
Jens Axboe390c40e2007-03-05 12:35:29 +010063static void terminate_threads(int group_id)
Jens Axboeebac4652005-12-08 15:25:21 +010064{
Jens Axboe34572e22006-10-20 09:33:18 +020065 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010066 int i;
67
Jens Axboe34572e22006-10-20 09:33:18 +020068 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010069 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
Jens Axboec1302d42007-03-05 20:18:31 +010070 /*
71 * if the thread is running, just let it exit
72 */
73 if (td->runstate < TD_RUNNING)
74 kill(td->pid, SIGQUIT);
Jens Axboeebac4652005-12-08 15:25:21 +010075 td->terminate = 1;
76 td->start_delay = 0;
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:
Jens Axboe6ce15a32007-01-12 09:04:41 +010090 printf("\nfio: terminating on signal %d\n", sig);
Jens Axboeebac4652005-12-08 15:25:21 +010091 fflush(stdout);
Jens Axboe390c40e2007-03-05 12:35:29 +010092 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +010093 break;
94 }
95}
96
Jens Axboe906c8d72006-06-13 09:37:56 +020097/*
Jens Axboe906c8d72006-06-13 09:37:56 +020098 * Check if we are above the minimum rate given.
99 */
Jens Axboeebac4652005-12-08 15:25:21 +0100100static int check_min_rate(struct thread_data *td, struct timeval *now)
101{
Jens Axboe09042002007-02-23 10:56:22 +0100102 unsigned long long bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100103 unsigned long spent;
104 unsigned long rate;
Jens Axboeebac4652005-12-08 15:25:21 +0100105
106 /*
Jens Axboe780bf1a2007-02-28 11:13:49 +0100107 * No minimum rate set, always ok
108 */
109 if (!td->ratemin)
110 return 0;
111
112 /*
Jens Axboeebac4652005-12-08 15:25:21 +0100113 * allow a 2 second settle period in the beginning
114 */
115 if (mtime_since(&td->start, now) < 2000)
116 return 0;
117
Jens Axboe09042002007-02-23 10:56:22 +0100118 if (td_read(td))
119 bytes += td->this_io_bytes[DDIR_READ];
120 if (td_write(td))
121 bytes += td->this_io_bytes[DDIR_WRITE];
122
Jens Axboeebac4652005-12-08 15:25:21 +0100123 /*
124 * if rate blocks is set, sample is running
125 */
126 if (td->rate_bytes) {
127 spent = mtime_since(&td->lastrate, now);
128 if (spent < td->ratecycle)
129 return 0;
130
Jens Axboe413dd452007-02-23 09:26:09 +0100131 if (bytes < td->rate_bytes) {
132 fprintf(f_out, "%s: min rate %u not met\n", td->name, td->ratemin);
Jens Axboeebac4652005-12-08 15:25:21 +0100133 return 1;
Jens Axboe413dd452007-02-23 09:26:09 +0100134 } else {
135 rate = (bytes - td->rate_bytes) / spent;
136 if (rate < td->ratemin || bytes < td->rate_bytes) {
137 fprintf(f_out, "%s: min rate %u not met, got %luKiB/sec\n", td->name, td->ratemin, rate);
138 return 1;
139 }
Jens Axboeebac4652005-12-08 15:25:21 +0100140 }
141 }
142
Jens Axboe09042002007-02-23 10:56:22 +0100143 td->rate_bytes = bytes;
Jens Axboeebac4652005-12-08 15:25:21 +0100144 memcpy(&td->lastrate, now, sizeof(*now));
145 return 0;
146}
147
148static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
149{
150 if (!td->timeout)
151 return 0;
152 if (mtime_since(&td->epoch, t) >= td->timeout * 1000)
153 return 1;
154
155 return 0;
156}
157
Jens Axboe906c8d72006-06-13 09:37:56 +0200158/*
159 * When job exits, we can cancel the in-flight IO if we are using async
160 * io. Attempt to do so.
161 */
Jens Axboeebac4652005-12-08 15:25:21 +0100162static void cleanup_pending_aio(struct thread_data *td)
163{
Jens Axboeebac4652005-12-08 15:25:21 +0100164 struct list_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100165 struct io_u *io_u;
166 int r;
167
168 /*
169 * get immediately available events, if any
170 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100171 r = io_u_queued_complete(td, 0);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100172 if (r < 0)
173 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100174
175 /*
176 * now cancel remaining active events
177 */
Jens Axboe2866c822006-10-09 15:57:48 +0200178 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100179 list_for_each_safe(entry, n, &td->io_u_busylist) {
180 io_u = list_entry(entry, struct io_u, list);
181
Jens Axboe0c6e7512007-02-22 11:19:39 +0100182 /*
183 * if the io_u isn't in flight, then that generally
184 * means someone leaked an io_u. complain but fix
185 * it up, so we don't stall here.
186 */
187 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
188 log_err("fio: non-busy IO on busy list\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100189 put_io_u(td, io_u);
Jens Axboe0c6e7512007-02-22 11:19:39 +0100190 } else {
191 r = td->io_ops->cancel(td, io_u);
192 if (!r)
193 put_io_u(td, io_u);
194 }
Jens Axboeebac4652005-12-08 15:25:21 +0100195 }
196 }
197
Jens Axboe97601022007-02-18 12:47:29 +0100198 if (td->cur_depth)
Jens Axboed7762cf2007-02-23 12:34:57 +0100199 r = io_u_queued_complete(td, td->cur_depth);
Jens Axboeebac4652005-12-08 15:25:21 +0100200}
201
Jens Axboe906c8d72006-06-13 09:37:56 +0200202/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200203 * Helper to handle the final sync of a file. Works just like the normal
204 * io path, just does everything sync.
205 */
206static int fio_io_sync(struct thread_data *td, struct fio_file *f)
207{
208 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200209 int ret;
210
211 if (!io_u)
212 return 1;
213
214 io_u->ddir = DDIR_SYNC;
215 io_u->file = f;
216
217 if (td_io_prep(td, io_u)) {
218 put_io_u(td, io_u);
219 return 1;
220 }
221
Jens Axboe755200a2007-02-19 13:08:12 +0100222requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200223 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100224 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100225 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe858a3d42006-10-24 14:54:44 +0200226 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200227 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100228 } else if (ret == FIO_Q_QUEUED) {
Jens Axboed7762cf2007-02-23 12:34:57 +0100229 if (io_u_queued_complete(td, 1) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100230 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100231 } else if (ret == FIO_Q_COMPLETED) {
232 if (io_u->error) {
Jens Axboee1161c32007-02-22 19:36:48 +0100233 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe36167d82007-02-18 05:41:31 +0100234 return 1;
235 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200236
Jens Axboed7762cf2007-02-23 12:34:57 +0100237 if (io_u_sync_complete(td, io_u) < 0)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100238 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100239 } else if (ret == FIO_Q_BUSY) {
240 if (td_io_commit(td))
241 return 1;
242 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200243 }
244
245 return 0;
246}
247
248/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100249 * The main verify engine. Runs over the writes we previously submitted,
Jens Axboe906c8d72006-06-13 09:37:56 +0200250 * reads the blocks back in, and checks the crc/md5 of the data.
251 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100252static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100253{
Jens Axboe53cdc682006-10-18 11:50:58 +0200254 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100255 struct io_u *io_u;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100256 int ret, i, min_events;
Jens Axboee5b401d2006-10-18 16:03:40 +0200257
258 /*
259 * sync io first and invalidate cache, to make sure we really
260 * read from disk.
261 */
262 for_each_file(td, f, i) {
Jens Axboeb2fdda42007-02-20 20:52:51 +0100263 if (fio_io_sync(td, f))
264 break;
265 if (file_invalidate_cache(td, f))
266 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200267 }
Jens Axboeebac4652005-12-08 15:25:21 +0100268
Jens Axboeb2fdda42007-02-20 20:52:51 +0100269 if (td->error)
270 return;
271
Jens Axboeebac4652005-12-08 15:25:21 +0100272 td_set_runstate(td, TD_VERIFYING);
273
Jens Axboe36167d82007-02-18 05:41:31 +0100274 io_u = NULL;
275 while (!td->terminate) {
Jens Axboe54517922007-03-05 10:06:06 +0100276 int ret2;
277
Jens Axboeebac4652005-12-08 15:25:21 +0100278 io_u = __get_io_u(td);
279 if (!io_u)
280 break;
281
Jens Axboe069c2912007-02-21 23:02:39 +0100282 if (runtime_exceeded(td, &io_u->start_time)) {
283 put_io_u(td, io_u);
Jens Axboe53cdc682006-10-18 11:50:58 +0200284 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100285 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200286
Jens Axboe069c2912007-02-21 23:02:39 +0100287 if (get_next_verify(td, io_u)) {
288 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100289 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100290 }
Jens Axboeebac4652005-12-08 15:25:21 +0100291
Jens Axboe069c2912007-02-21 23:02:39 +0100292 if (td_io_prep(td, io_u)) {
293 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100294 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100295 }
Jens Axboed7762cf2007-02-23 12:34:57 +0100296
297 io_u->end_io = verify_io_u;
Jens Axboe36167d82007-02-18 05:41:31 +0100298
Jens Axboe11786802007-03-05 18:33:22 +0100299 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100300 switch (ret) {
301 case FIO_Q_COMPLETED:
302 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100303 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100304 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100305 int bytes = io_u->xfer_buflen - io_u->resid;
306
Jens Axboe9e9d1642007-03-12 09:37:46 +0100307 /*
308 * zero read, fail
309 */
310 if (!bytes) {
311 td_verror(td, ENODATA, "full resid");
312 put_io_u(td, io_u);
313 break;
314 }
Jens Axboe36167d82007-02-18 05:41:31 +0100315 io_u->xfer_buflen = io_u->resid;
316 io_u->xfer_buf += bytes;
Jens Axboe11786802007-03-05 18:33:22 +0100317 requeue_io_u(td, &io_u);
318 } else {
319 ret = io_u_sync_complete(td, io_u);
320 if (ret < 0)
321 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100322 }
Jens Axboe36167d82007-02-18 05:41:31 +0100323 continue;
324 case FIO_Q_QUEUED:
325 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100326 case FIO_Q_BUSY:
327 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100328 ret2 = td_io_commit(td);
329 if (ret2 < 0)
330 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100331 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100332 default:
333 assert(ret < 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100334 td_verror(td, -ret, "td_io_queue");
Jens Axboeebac4652005-12-08 15:25:21 +0100335 break;
336 }
337
Jens Axboe99784632007-02-19 10:06:17 +0100338 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100339 break;
340
Jens Axboe3af6ef32007-02-18 06:57:43 +0100341 /*
342 * if we can queue more, do so. but check if there are
343 * completed io_u's first.
344 */
Jens Axboe97601022007-02-18 12:47:29 +0100345 min_events = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100346 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe3af6ef32007-02-18 06:57:43 +0100347 min_events = 1;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100348
Jens Axboee916b392007-02-20 14:37:26 +0100349 if (td->cur_depth > td->iodepth_low)
350 min_events = td->cur_depth - td->iodepth_low;
351 }
352
Jens Axboe3af6ef32007-02-18 06:57:43 +0100353 /*
354 * Reap required number of io units, if any, and do the
355 * verification on them through the callback handler
356 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100357 if (io_u_queued_complete(td, min_events) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100358 break;
359 }
360
Jens Axboec01c0392007-02-26 12:43:42 +0100361 if (!td->error) {
362 min_events = td->cur_depth;
363
364 if (min_events)
365 ret = io_u_queued_complete(td, min_events);
366 } else
Jens Axboeebac4652005-12-08 15:25:21 +0100367 cleanup_pending_aio(td);
368
369 td_set_runstate(td, TD_RUNNING);
370}
371
Jens Axboe32cd46a2006-06-07 13:40:40 +0200372/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200373 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200374 * and reaps them, checking for rate and errors along the way.
375 */
Jens Axboeebac4652005-12-08 15:25:21 +0100376static void do_io(struct thread_data *td)
377{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100378 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100379 unsigned long usec;
Jens Axboe84585002006-10-19 20:26:22 +0200380 int i, ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100381
Jens Axboe5853e5a2006-06-08 14:41:05 +0200382 td_set_runstate(td, TD_RUNNING);
383
Jens Axboe39514142007-02-12 18:49:58 +0100384 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->io_size) {
Jens Axboe97601022007-02-18 12:47:29 +0100385 struct timeval comp_time;
386 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200387 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100388 struct io_u *io_u;
Jens Axboe54517922007-03-05 10:06:06 +0100389 int ret2;
Jens Axboeebac4652005-12-08 15:25:21 +0100390
391 if (td->terminate)
392 break;
393
Jens Axboe3d7c3912007-02-19 13:16:12 +0100394 io_u = get_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100395 if (!io_u)
396 break;
397
398 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100399
400 if (runtime_exceeded(td, &s)) {
401 put_io_u(td, io_u);
402 break;
403 }
Jens Axboe36167d82007-02-18 05:41:31 +0100404
Jens Axboe11786802007-03-05 18:33:22 +0100405 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100406 switch (ret) {
407 case FIO_Q_COMPLETED:
Jens Axboe54517922007-03-05 10:06:06 +0100408 if (io_u->error)
409 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100410 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100411 int bytes = io_u->xfer_buflen - io_u->resid;
412
Jens Axboe9e9d1642007-03-12 09:37:46 +0100413 /*
414 * zero read, fail
415 */
416 if (!bytes) {
417 td_verror(td, ENODATA, "full resid");
418 put_io_u(td, io_u);
419 break;
420 }
421
Jens Axboe36167d82007-02-18 05:41:31 +0100422 io_u->xfer_buflen = io_u->resid;
423 io_u->xfer_buf += bytes;
Jens Axboe11786802007-03-05 18:33:22 +0100424 requeue_io_u(td, &io_u);
425 } else {
426 fio_gettime(&comp_time, NULL);
427 bytes_done = io_u_sync_complete(td, io_u);
428 if (bytes_done < 0)
429 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100430 }
Jens Axboe36167d82007-02-18 05:41:31 +0100431 break;
432 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100433 /*
434 * if the engine doesn't have a commit hook,
435 * the io_u is really queued. if it does have such
436 * a hook, it has to call io_u_queued() itself.
437 */
438 if (td->io_ops->commit == NULL)
439 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100440 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100441 case FIO_Q_BUSY:
442 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100443 ret2 = td_io_commit(td);
444 if (ret2 < 0)
445 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100446 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100447 default:
448 assert(ret < 0);
449 put_io_u(td, io_u);
450 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100451 }
452
Jens Axboe99784632007-02-19 10:06:17 +0100453 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100454 break;
455
Jens Axboe97601022007-02-18 12:47:29 +0100456 /*
457 * See if we need to complete some commands
458 */
Jens Axboe755200a2007-02-19 13:08:12 +0100459 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100460 min_evts = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100461 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe36167d82007-02-18 05:41:31 +0100462 min_evts = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100463
Jens Axboee916b392007-02-20 14:37:26 +0100464 if (td->cur_depth > td->iodepth_low)
465 min_evts = td->cur_depth - td->iodepth_low;
466 }
467
Jens Axboe97601022007-02-18 12:47:29 +0100468 fio_gettime(&comp_time, NULL);
Jens Axboed7762cf2007-02-23 12:34:57 +0100469 bytes_done = io_u_queued_complete(td, min_evts);
Jens Axboe97601022007-02-18 12:47:29 +0100470 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100471 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100472 }
473
Jens Axboe97601022007-02-18 12:47:29 +0100474 if (!bytes_done)
475 continue;
476
Jens Axboeebac4652005-12-08 15:25:21 +0100477 /*
478 * the rate is batched for now, it should work for batches
479 * of completions except the very first one which may look
480 * a little bursty
481 */
Jens Axboe97601022007-02-18 12:47:29 +0100482 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100483
Jens Axboe413dd452007-02-23 09:26:09 +0100484 rate_throttle(td, usec, bytes_done);
Jens Axboeebac4652005-12-08 15:25:21 +0100485
Jens Axboe97601022007-02-18 12:47:29 +0100486 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100487 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100488 terminate_threads(td->groupid);
Jens Axboee1161c32007-02-22 19:36:48 +0100489 td_verror(td, ENODATA, "check_min_rate");
Jens Axboeebac4652005-12-08 15:25:21 +0100490 break;
491 }
492
Jens Axboe9c1f7432007-01-03 20:43:19 +0100493 if (td->thinktime) {
494 unsigned long long b;
495
496 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe48097d52007-02-17 06:30:44 +0100497 if (!(b % td->thinktime_blocks)) {
498 int left;
499
500 if (td->thinktime_spin)
501 __usec_sleep(td->thinktime_spin);
502
503 left = td->thinktime - td->thinktime_spin;
504 if (left)
505 usec_sleep(td, left);
506 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100507 }
Jens Axboeebac4652005-12-08 15:25:21 +0100508 }
509
Jens Axboe4d2413c2006-11-23 11:58:59 +0100510 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100511 struct fio_file *f;
512
Jens Axboec01c0392007-02-26 12:43:42 +0100513 i = td->cur_depth;
514 if (i)
515 ret = io_u_queued_complete(td, i);
Jens Axboeebac4652005-12-08 15:25:21 +0100516
Jens Axboe84585002006-10-19 20:26:22 +0200517 if (should_fsync(td) && td->end_fsync) {
518 td_set_runstate(td, TD_FSYNCING);
519 for_each_file(td, f, i)
Jens Axboe858a3d42006-10-24 14:54:44 +0200520 fio_io_sync(td, f);
Jens Axboe84585002006-10-19 20:26:22 +0200521 }
Jens Axboec01c0392007-02-26 12:43:42 +0100522 } else
523 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100524}
525
Jens Axboeebac4652005-12-08 15:25:21 +0100526static void cleanup_io_u(struct thread_data *td)
527{
528 struct list_head *entry, *n;
529 struct io_u *io_u;
530
531 list_for_each_safe(entry, n, &td->io_u_freelist) {
532 io_u = list_entry(entry, struct io_u, list);
533
534 list_del(&io_u->list);
535 free(io_u);
536 }
537
Jens Axboe2f9ade32006-10-20 11:25:52 +0200538 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100539}
540
Jens Axboe6b9cea22006-10-30 17:00:24 +0100541/*
542 * "randomly" fill the buffer contents
543 */
Jens Axboe66eeb292006-11-01 08:35:44 +0100544static void fill_rand_buf(struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100545{
Jens Axboe66eeb292006-11-01 08:35:44 +0100546 int *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100547
548 while ((void *) ptr - io_u->buf < max_bs) {
549 *ptr = rand() * 0x9e370001;
550 ptr++;
551 }
552}
553
Jens Axboeebac4652005-12-08 15:25:21 +0100554static int init_io_u(struct thread_data *td)
555{
556 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100557 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100558 int i, max_units;
559 char *p;
560
Jens Axboe2866c822006-10-09 15:57:48 +0200561 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100562 max_units = 1;
563 else
564 max_units = td->iodepth;
565
Jens Axboea00735e2006-11-03 08:58:08 +0100566 max_bs = max(td->max_bs[DDIR_READ], td->max_bs[DDIR_WRITE]);
Jens Axboe74b025b2006-12-19 15:18:14 +0100567 td->orig_buffer_size = max_bs * max_units;
568
Jens Axboed0bdaf42006-12-20 14:40:44 +0100569 if (td->mem_type == MEM_SHMHUGE || td->mem_type == MEM_MMAPHUGE)
Jens Axboe56bb17f2006-12-20 20:27:36 +0100570 td->orig_buffer_size = (td->orig_buffer_size + td->hugepage_size - 1) & ~(td->hugepage_size - 1);
Jens Axboe74b025b2006-12-19 15:18:14 +0100571 else
Jens Axboe29d610e2007-02-06 13:25:33 +0100572 td->orig_buffer_size += page_mask;
Jens Axboeebac4652005-12-08 15:25:21 +0100573
Jens Axboe2f9ade32006-10-20 11:25:52 +0200574 if (allocate_io_mem(td))
575 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100576
Jens Axboeebac4652005-12-08 15:25:21 +0100577 p = ALIGN(td->orig_buffer);
578 for (i = 0; i < max_units; i++) {
579 io_u = malloc(sizeof(*io_u));
580 memset(io_u, 0, sizeof(*io_u));
581 INIT_LIST_HEAD(&io_u->list);
582
Jens Axboea00735e2006-11-03 08:58:08 +0100583 io_u->buf = p + max_bs * i;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100584 if (td_write(td) || td_rw(td))
Jens Axboea00735e2006-11-03 08:58:08 +0100585 fill_rand_buf(io_u, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100586
Jens Axboeb1ff3402006-02-17 11:35:58 +0100587 io_u->index = i;
Jens Axboe0c6e7512007-02-22 11:19:39 +0100588 io_u->flags = IO_U_F_FREE;
Jens Axboeebac4652005-12-08 15:25:21 +0100589 list_add(&io_u->list, &td->io_u_freelist);
590 }
591
Jens Axboe433afcb2007-02-22 10:39:01 +0100592 io_u_init_timeout();
593
Jens Axboeebac4652005-12-08 15:25:21 +0100594 return 0;
595}
596
Jens Axboeda867742006-06-06 10:39:10 -0700597static int switch_ioscheduler(struct thread_data *td)
598{
599 char tmp[256], tmp2[128];
600 FILE *f;
601 int ret;
602
Jens Axboeba0fbe12007-03-09 14:34:23 +0100603 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200604 return 0;
605
Jens Axboeda867742006-06-06 10:39:10 -0700606 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
607
608 f = fopen(tmp, "r+");
609 if (!f) {
Jens Axboee1161c32007-02-22 19:36:48 +0100610 td_verror(td, errno, "fopen");
Jens Axboeda867742006-06-06 10:39:10 -0700611 return 1;
612 }
613
614 /*
615 * Set io scheduler.
616 */
617 ret = fwrite(td->ioscheduler, strlen(td->ioscheduler), 1, f);
618 if (ferror(f) || ret != 1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100619 td_verror(td, errno, "fwrite");
Jens Axboeda867742006-06-06 10:39:10 -0700620 fclose(f);
621 return 1;
622 }
623
624 rewind(f);
625
626 /*
627 * Read back and check that the selected scheduler is now the default.
628 */
629 ret = fread(tmp, 1, sizeof(tmp), f);
630 if (ferror(f) || ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100631 td_verror(td, errno, "fread");
Jens Axboeda867742006-06-06 10:39:10 -0700632 fclose(f);
633 return 1;
634 }
635
636 sprintf(tmp2, "[%s]", td->ioscheduler);
637 if (!strstr(tmp, tmp2)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200638 log_err("fio: io scheduler %s not found\n", td->ioscheduler);
Jens Axboee1161c32007-02-22 19:36:48 +0100639 td_verror(td, EINVAL, "iosched_switch");
Jens Axboeda867742006-06-06 10:39:10 -0700640 fclose(f);
641 return 1;
642 }
643
644 fclose(f);
645 return 0;
646}
647
Jens Axboea978ba62007-03-08 14:29:03 +0100648static int clear_io_state(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100649{
Jens Axboe53cdc682006-10-18 11:50:58 +0200650 struct fio_file *f;
Jens Axboea978ba62007-03-08 14:29:03 +0100651 int i, ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100652
Jens Axboe756867b2007-03-06 15:19:24 +0100653 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100654 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100655 td->zone_bytes = 0;
Jens Axboed7d3b492007-03-12 08:02:10 +0100656 td->rate_bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100657
Jens Axboec1324df2007-02-19 19:06:41 +0100658 td->last_was_sync = 0;
659
Jens Axboea978ba62007-03-08 14:29:03 +0100660 for_each_file(td, f, i)
661 td_io_close_file(td, f);
662
663 ret = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200664 for_each_file(td, f, i) {
Jens Axboea978ba62007-03-08 14:29:03 +0100665 ret = td_io_open_file(td, f);
666 if (ret)
667 break;
Jens Axboe53cdc682006-10-18 11:50:58 +0200668 }
Jens Axboea978ba62007-03-08 14:29:03 +0100669
670 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100671}
672
Jens Axboe906c8d72006-06-13 09:37:56 +0200673/*
674 * Entry point for the thread based jobs. The process based jobs end up
675 * here as well, after a little setup.
676 */
Jens Axboeebac4652005-12-08 15:25:21 +0100677static void *thread_main(void *data)
678{
Jens Axboe69008992006-11-24 13:12:56 +0100679 unsigned long long runtime[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100680 struct thread_data *td = data;
Jens Axboea978ba62007-03-08 14:29:03 +0100681 int clear_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100682
683 if (!td->use_thread)
684 setsid();
685
686 td->pid = getpid();
687
Jens Axboeaea47d42006-05-26 19:27:29 +0200688 INIT_LIST_HEAD(&td->io_u_freelist);
689 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100690 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200691 INIT_LIST_HEAD(&td->io_hist_list);
692 INIT_LIST_HEAD(&td->io_log_list);
693
Jens Axboeebac4652005-12-08 15:25:21 +0100694 if (init_io_u(td))
695 goto err;
696
697 if (fio_setaffinity(td) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100698 td_verror(td, errno, "cpu_set_affinity");
Jens Axboeebac4652005-12-08 15:25:21 +0100699 goto err;
700 }
701
Jens Axboeaea47d42006-05-26 19:27:29 +0200702 if (init_iolog(td))
703 goto err;
704
Jens Axboeebac4652005-12-08 15:25:21 +0100705 if (td->ioprio) {
706 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100707 td_verror(td, errno, "ioprio_set");
Jens Axboeebac4652005-12-08 15:25:21 +0100708 goto err;
709 }
710 }
711
Jens Axboe1056eaa2006-07-13 10:33:45 -0700712 if (nice(td->nice) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100713 td_verror(td, errno, "nice");
Jens Axboeb6f4d882006-06-02 10:32:51 +0200714 goto err;
715 }
716
Jens Axboe75154842006-06-01 13:56:09 +0200717 if (init_random_state(td))
718 goto err;
719
Jens Axboe56f94982006-10-24 09:33:42 +0200720 if (td->ioscheduler && switch_ioscheduler(td))
721 goto err;
Jens Axboeda867742006-06-06 10:39:10 -0700722
Jens Axboe75154842006-06-01 13:56:09 +0200723 td_set_runstate(td, TD_INITIALIZED);
Jens Axboe07739b52007-03-08 20:25:46 +0100724 fio_sem_up(startup_sem);
725 fio_sem_down(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100726
Jens Axboe37f56872007-03-09 12:42:35 +0100727 /*
728 * the ->mutex semaphore is now no longer used, close it to avoid
729 * eating a file descriptor
730 */
731 fio_sem_remove(td->mutex);
732
Jens Axboe53cdc682006-10-18 11:50:58 +0200733 if (!td->create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100734 goto err;
Jens Axboeb5af8292007-03-08 12:43:13 +0100735
736 if (td_io_init(td))
Jens Axboe21972cd2006-11-23 12:39:16 +0100737 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100738
Jens Axboeb5af8292007-03-08 12:43:13 +0100739 if (open_files(td))
Jens Axboe7d6c5282007-02-05 10:52:10 +0100740 goto err;
741
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100742 if (td->exec_prerun) {
743 if (system(td->exec_prerun) < 0)
744 goto err;
745 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200746
Jens Axboe69008992006-11-24 13:12:56 +0100747 fio_gettime(&td->epoch, NULL);
Jens Axboe433afcb2007-02-22 10:39:01 +0100748 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
Jens Axboe756867b2007-03-06 15:19:24 +0100749 getrusage(RUSAGE_SELF, &td->ts.ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100750
751 runtime[0] = runtime[1] = 0;
Jens Axboea978ba62007-03-08 14:29:03 +0100752 clear_state = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100753 while (td->loops--) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100754 fio_gettime(&td->start, NULL);
Jens Axboe756867b2007-03-06 15:19:24 +0100755 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +0100756
757 if (td->ratemin)
Jens Axboe756867b2007-03-06 15:19:24 +0100758 memcpy(&td->lastrate, &td->ts.stat_sample_time, sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +0100759
Jens Axboea978ba62007-03-08 14:29:03 +0100760 if (clear_state && clear_io_state(td))
761 break;
762
Jens Axboeebac4652005-12-08 15:25:21 +0100763 prune_io_piece_log(td);
764
Jens Axboeba0fbe12007-03-09 14:34:23 +0100765 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100766
Jens Axboea978ba62007-03-08 14:29:03 +0100767 clear_state = 1;
768
Jens Axboe413dd452007-02-23 09:26:09 +0100769 if (td_read(td) && td->io_bytes[DDIR_READ])
770 runtime[DDIR_READ] += utime_since_now(&td->start);
771 if (td_write(td) && td->io_bytes[DDIR_WRITE])
772 runtime[DDIR_WRITE] += utime_since_now(&td->start);
773
Jens Axboeebac4652005-12-08 15:25:21 +0100774 if (td->error || td->terminate)
775 break;
776
777 if (td->verify == VERIFY_NONE)
778 continue;
779
Jens Axboea978ba62007-03-08 14:29:03 +0100780 if (clear_io_state(td))
781 break;
782
Jens Axboe02bcaa82006-11-24 10:42:00 +0100783 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100784
785 do_verify(td);
786
Jens Axboe69008992006-11-24 13:12:56 +0100787 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100788
789 if (td->error || td->terminate)
790 break;
791 }
792
Jens Axboe36dff962006-11-24 13:29:20 +0100793 update_rusage_stat(td);
Jens Axboe756867b2007-03-06 15:19:24 +0100794 td->ts.runtime[0] = runtime[0] / 1000;
795 td->ts.runtime[1] = runtime[1] / 1000;
796 td->ts.total_run_time = mtime_since_now(&td->epoch);
797 td->ts.io_bytes[0] = td->io_bytes[0];
798 td->ts.io_bytes[1] = td->io_bytes[1];
Jens Axboe69008992006-11-24 13:12:56 +0100799
Jens Axboe756867b2007-03-06 15:19:24 +0100800 if (td->ts.bw_log)
801 finish_log(td, td->ts.bw_log, "bw");
802 if (td->ts.slat_log)
803 finish_log(td, td->ts.slat_log, "slat");
804 if (td->ts.clat_log)
805 finish_log(td, td->ts.clat_log, "clat");
Jens Axboe076efc72006-10-27 11:24:25 +0200806 if (td->write_iolog_file)
Jens Axboe843a7412006-06-01 21:14:21 -0700807 write_iolog_close(td);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100808 if (td->exec_postrun) {
809 if (system(td->exec_postrun) < 0)
810 log_err("fio: postrun %s failed\n", td->exec_postrun);
811 }
Jens Axboeebac4652005-12-08 15:25:21 +0100812
813 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100814 terminate_threads(td->groupid);
Jens Axboeebac4652005-12-08 15:25:21 +0100815
816err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100817 if (td->error)
818 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200819 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200820 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100821 cleanup_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100822 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +0100823 return (void *) (unsigned long) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +0100824}
825
Jens Axboe906c8d72006-06-13 09:37:56 +0200826/*
827 * We cannot pass the td data into a forked process, so attach the td and
828 * pass it to the thread worker.
829 */
Jens Axboea6418142007-02-17 04:47:18 +0100830static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100831{
832 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100833 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100834
835 data = shmat(shmid, NULL, 0);
836 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100837 int __err = errno;
838
Jens Axboeebac4652005-12-08 15:25:21 +0100839 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100840 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100841 }
842
843 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100844 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100845 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +0100846 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100847}
848
Jens Axboe906c8d72006-06-13 09:37:56 +0200849/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200850 * Run over the job map and reap the threads that have exited, if any.
851 */
Jens Axboeebac4652005-12-08 15:25:21 +0100852static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
853{
Jens Axboe34572e22006-10-20 09:33:18 +0200854 struct thread_data *td;
Jens Axboefab6aa72007-02-17 06:19:24 +0100855 int i, cputhreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100856
857 /*
858 * reap exited threads (TD_EXITED -> TD_REAPED)
859 */
Jens Axboe4d2413c2006-11-23 11:58:59 +0100860 pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200861 for_each_td(td, i) {
Jens Axboe3707f452007-02-22 12:26:57 +0100862 int flags = 0;
Jens Axboea2f77c92007-02-22 11:53:00 +0100863
Jens Axboe84585002006-10-19 20:26:22 +0200864 /*
865 * ->io_ops is NULL for a thread that has closed its
866 * io engine
867 */
Jens Axboeba0fbe12007-03-09 14:34:23 +0100868 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
Jens Axboeb990b5c2006-09-14 09:48:22 +0200869 cputhreads++;
870
Jens Axboea2f77c92007-02-22 11:53:00 +0100871 if (!td->pid || td->runstate == TD_REAPED)
872 continue;
Jens Axboe3707f452007-02-22 12:26:57 +0100873 if (td->use_thread) {
874 if (td->runstate == TD_EXITED) {
875 td_set_runstate(td, TD_REAPED);
876 goto reaped;
877 }
878 continue;
879 }
Jens Axboea2f77c92007-02-22 11:53:00 +0100880
881 flags = WNOHANG;
882 if (td->runstate == TD_EXITED)
883 flags = 0;
884
885 /*
886 * check if someone quit or got killed in an unusual way
887 */
888 ret = waitpid(td->pid, &status, flags);
Jens Axboe3707f452007-02-22 12:26:57 +0100889 if (ret < 0) {
Jens Axboea2f77c92007-02-22 11:53:00 +0100890 if (errno == ECHILD) {
891 log_err("fio: pid=%d disappeared %d\n", td->pid, td->runstate);
892 td_set_runstate(td, TD_REAPED);
893 goto reaped;
894 }
895 perror("waitpid");
896 } else if (ret == td->pid) {
897 if (WIFSIGNALED(status)) {
Jens Axboefab6aa72007-02-17 06:19:24 +0100898 int sig = WTERMSIG(status);
899
Jens Axboed9244942007-03-05 12:32:32 +0100900 if (sig != SIGQUIT)
901 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
Jens Axboefab6aa72007-02-17 06:19:24 +0100902 td_set_runstate(td, TD_REAPED);
903 goto reaped;
904 }
Jens Axboea2f77c92007-02-22 11:53:00 +0100905 if (WIFEXITED(status)) {
906 if (WEXITSTATUS(status) && !td->error)
907 td->error = WEXITSTATUS(status);
Jens Axboefab6aa72007-02-17 06:19:24 +0100908
Jens Axboea2f77c92007-02-22 11:53:00 +0100909 td_set_runstate(td, TD_REAPED);
910 goto reaped;
Jens Axboea6418142007-02-17 04:47:18 +0100911 }
912 }
Jens Axboeebac4652005-12-08 15:25:21 +0100913
Jens Axboea2f77c92007-02-22 11:53:00 +0100914 /*
915 * thread is not dead, continue
916 */
917 continue;
Jens Axboefab6aa72007-02-17 06:19:24 +0100918reaped:
Jens Axboe3707f452007-02-22 12:26:57 +0100919 if (td->use_thread) {
920 long ret;
921
922 if (pthread_join(td->thread, (void *) &ret))
923 perror("pthread_join");
924 }
925
Jens Axboeebac4652005-12-08 15:25:21 +0100926 (*nr_running)--;
927 (*m_rate) -= td->ratemin;
928 (*t_rate) -= td->rate;
Jens Axboea2f77c92007-02-22 11:53:00 +0100929
930 if (td->error)
931 exit_value++;
Jens Axboeebac4652005-12-08 15:25:21 +0100932 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200933
Jens Axboe4d2413c2006-11-23 11:58:59 +0100934 if (*nr_running == cputhreads && !pending)
Jens Axboe390c40e2007-03-05 12:35:29 +0100935 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +0100936}
937
Jens Axboe906c8d72006-06-13 09:37:56 +0200938/*
939 * Main function for kicking off and reaping jobs, as needed.
940 */
Jens Axboeebac4652005-12-08 15:25:21 +0100941static void run_threads(void)
942{
Jens Axboeebac4652005-12-08 15:25:21 +0100943 struct thread_data *td;
944 unsigned long spent;
945 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +0200946
Jens Axboe2f9ade32006-10-20 11:25:52 +0200947 if (fio_pin_memory())
948 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100949
Jens Axboec6ae0a52006-06-12 11:04:44 +0200950 if (!terse_output) {
951 printf("Starting %d thread%s\n", thread_number, thread_number > 1 ? "s" : "");
952 fflush(stdout);
953 }
Jens Axboec04f7ec2006-05-31 10:13:16 +0200954
Jens Axboe4efa9702006-05-31 11:56:49 +0200955 signal(SIGINT, sig_handler);
956 signal(SIGALRM, sig_handler);
957
Jens Axboeebac4652005-12-08 15:25:21 +0100958 todo = thread_number;
959 nr_running = 0;
960 nr_started = 0;
961 m_rate = t_rate = 0;
962
Jens Axboe34572e22006-10-20 09:33:18 +0200963 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +0200964 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100965
Jens Axboe380cf262007-01-11 14:01:27 +0100966 if (!td->create_serialize) {
967 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100968 continue;
Jens Axboe380cf262007-01-11 14:01:27 +0100969 }
Jens Axboeebac4652005-12-08 15:25:21 +0100970
971 /*
972 * do file setup here so it happens sequentially,
973 * we don't want X number of threads getting their
974 * client data interspersed on disk
975 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200976 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +0100977 exit_value++;
978 if (td->error)
979 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +0100980 td_set_runstate(td, TD_REAPED);
981 todo--;
982 }
Jens Axboe380cf262007-01-11 14:01:27 +0100983
984 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100985 }
986
Jens Axboea2f77c92007-02-22 11:53:00 +0100987 set_genesis_time();
988
Jens Axboeebac4652005-12-08 15:25:21 +0100989 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +0200990 struct thread_data *map[MAX_JOBS];
991 struct timeval this_start;
992 int this_jobs = 0, left;
993
Jens Axboeebac4652005-12-08 15:25:21 +0100994 /*
995 * create threads (TD_NOT_CREATED -> TD_CREATED)
996 */
Jens Axboe34572e22006-10-20 09:33:18 +0200997 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +0100998 if (td->runstate != TD_NOT_CREATED)
999 continue;
1000
1001 /*
1002 * never got a chance to start, killed by other
1003 * thread for some reason
1004 */
1005 if (td->terminate) {
1006 todo--;
1007 continue;
1008 }
1009
1010 if (td->start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +02001011 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +01001012
1013 if (td->start_delay * 1000 > spent)
1014 continue;
1015 }
1016
1017 if (td->stonewall && (nr_started || nr_running))
1018 break;
1019
Jens Axboe75154842006-06-01 13:56:09 +02001020 /*
1021 * Set state to created. Thread will transition
1022 * to TD_INITIALIZED when it's done setting up.
1023 */
Jens Axboeebac4652005-12-08 15:25:21 +01001024 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +02001025 map[this_jobs++] = td;
Jens Axboeebac4652005-12-08 15:25:21 +01001026 nr_started++;
1027
1028 if (td->use_thread) {
1029 if (pthread_create(&td->thread, NULL, thread_main, td)) {
1030 perror("thread_create");
1031 nr_started--;
Jens Axboec8bb6fa2007-03-12 11:03:04 +01001032 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001033 }
1034 } else {
Jens Axboe07739b52007-03-08 20:25:46 +01001035 if (!fork()) {
Jens Axboea6418142007-02-17 04:47:18 +01001036 int ret = fork_main(shm_id, i);
1037
1038 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001039 }
1040 }
Jens Axboe07739b52007-03-08 20:25:46 +01001041 fio_sem_down(startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +01001042 }
1043
1044 /*
Jens Axboe75154842006-06-01 13:56:09 +02001045 * Wait for the started threads to transition to
1046 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +01001047 */
Jens Axboe02bcaa82006-11-24 10:42:00 +01001048 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +02001049 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +01001050 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001051 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1052 break;
1053
1054 usleep(100000);
1055
1056 for (i = 0; i < this_jobs; i++) {
1057 td = map[i];
1058 if (!td)
1059 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001060 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001061 map[i] = NULL;
1062 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001063 } else if (td->runstate >= TD_EXITED) {
1064 map[i] = NULL;
1065 left--;
1066 todo--;
1067 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001068 }
1069 }
1070 }
1071
1072 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001073 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001074 for (i = 0; i < this_jobs; i++) {
1075 td = map[i];
1076 if (!td)
1077 continue;
1078 kill(td->pid, SIGTERM);
1079 }
1080 break;
1081 }
1082
1083 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001084 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001085 */
Jens Axboe34572e22006-10-20 09:33:18 +02001086 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001087 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001088 continue;
1089
1090 td_set_runstate(td, TD_RUNNING);
1091 nr_running++;
1092 nr_started--;
1093 m_rate += td->ratemin;
1094 t_rate += td->rate;
Jens Axboe75154842006-06-01 13:56:09 +02001095 todo--;
Jens Axboe07739b52007-03-08 20:25:46 +01001096 fio_sem_up(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001097 }
1098
1099 reap_threads(&nr_running, &t_rate, &m_rate);
1100
1101 if (todo)
1102 usleep(100000);
1103 }
1104
1105 while (nr_running) {
1106 reap_threads(&nr_running, &t_rate, &m_rate);
1107 usleep(10000);
1108 }
1109
1110 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001111 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001112}
1113
Jens Axboeebac4652005-12-08 15:25:21 +01001114int main(int argc, char *argv[])
1115{
Jens Axboe29d610e2007-02-06 13:25:33 +01001116 long ps;
1117
Jens Axboedbe11252007-02-11 00:19:51 +01001118 /*
1119 * We need locale for number printing, if it isn't set then just
1120 * go with the US format.
1121 */
1122 if (!getenv("LC_NUMERIC"))
1123 setlocale(LC_NUMERIC, "en_US");
1124
Jens Axboeebac4652005-12-08 15:25:21 +01001125 if (parse_options(argc, argv))
1126 return 1;
1127
1128 if (!thread_number) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001129 log_err("Nothing to do\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001130 return 1;
1131 }
1132
Jens Axboe29d610e2007-02-06 13:25:33 +01001133 ps = sysconf(_SC_PAGESIZE);
1134 if (ps < 0) {
1135 log_err("Failed to get page size\n");
1136 return 1;
1137 }
1138
1139 page_mask = ps - 1;
1140
Jens Axboebb3884d2007-01-17 17:23:11 +11001141 if (write_bw_log) {
1142 setup_log(&agg_io_log[DDIR_READ]);
1143 setup_log(&agg_io_log[DDIR_WRITE]);
1144 }
1145
Jens Axboe07739b52007-03-08 20:25:46 +01001146 startup_sem = fio_sem_init(0);
1147
Jens Axboea2f77c92007-02-22 11:53:00 +01001148 set_genesis_time();
1149
Jens Axboeebac4652005-12-08 15:25:21 +01001150 disk_util_timer_arm();
1151
1152 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001153
Jens Axboebb3884d2007-01-17 17:23:11 +11001154 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001155 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001156 if (write_bw_log) {
1157 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1158 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1159 }
1160 }
Jens Axboeebac4652005-12-08 15:25:21 +01001161
Jens Axboe07739b52007-03-08 20:25:46 +01001162 fio_sem_remove(startup_sem);
Jens Axboe437c9b72007-02-13 18:20:37 +01001163 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001164}