blob: 85eb22be94207c518ac71ef3dec59ffb955d9956 [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 Axboe9cedf162007-03-12 11:29:30 +010046int nr_process = 0;
47int nr_thread = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010048int shm_id = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +020049int temp_stall_ts;
Jens Axboeebac4652005-12-08 15:25:21 +010050
Jens Axboe07739b52007-03-08 20:25:46 +010051static struct fio_sem *startup_sem;
Jens Axboe6ce15a32007-01-12 09:04:41 +010052static volatile int fio_abort;
Jens Axboe437c9b72007-02-13 18:20:37 +010053static int exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +010054
Jens Axboebb3884d2007-01-17 17:23:11 +110055struct io_log *agg_io_log[2];
56
Jens Axboeebac4652005-12-08 15:25:21 +010057#define TERMINATE_ALL (-1)
Jens Axboe75154842006-06-01 13:56:09 +020058#define JOB_START_TIMEOUT (5 * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +010059
Jens Axboe6ce15a32007-01-12 09:04:41 +010060static inline void td_set_runstate(struct thread_data *td, int runstate)
61{
62 td->runstate = runstate;
63}
64
Jens Axboe390c40e2007-03-05 12:35:29 +010065static void terminate_threads(int group_id)
Jens Axboeebac4652005-12-08 15:25:21 +010066{
Jens Axboe34572e22006-10-20 09:33:18 +020067 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010068 int i;
69
Jens Axboe34572e22006-10-20 09:33:18 +020070 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010071 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
Jens Axboec1302d42007-03-05 20:18:31 +010072 /*
73 * if the thread is running, just let it exit
74 */
75 if (td->runstate < TD_RUNNING)
76 kill(td->pid, SIGQUIT);
Jens Axboeebac4652005-12-08 15:25:21 +010077 td->terminate = 1;
78 td->start_delay = 0;
79 }
80 }
81}
82
83static void sig_handler(int sig)
84{
85 switch (sig) {
86 case SIGALRM:
87 update_io_ticks();
88 disk_util_timer_arm();
89 print_thread_status();
90 break;
91 default:
Jens Axboe6ce15a32007-01-12 09:04:41 +010092 printf("\nfio: terminating on signal %d\n", sig);
Jens Axboeebac4652005-12-08 15:25:21 +010093 fflush(stdout);
Jens Axboe390c40e2007-03-05 12:35:29 +010094 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +010095 break;
96 }
97}
98
Jens Axboe906c8d72006-06-13 09:37:56 +020099/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200100 * Check if we are above the minimum rate given.
101 */
Jens Axboeebac4652005-12-08 15:25:21 +0100102static int check_min_rate(struct thread_data *td, struct timeval *now)
103{
Jens Axboe09042002007-02-23 10:56:22 +0100104 unsigned long long bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100105 unsigned long spent;
106 unsigned long rate;
Jens Axboeebac4652005-12-08 15:25:21 +0100107
108 /*
Jens Axboe780bf1a2007-02-28 11:13:49 +0100109 * No minimum rate set, always ok
110 */
111 if (!td->ratemin)
112 return 0;
113
114 /*
Jens Axboeebac4652005-12-08 15:25:21 +0100115 * allow a 2 second settle period in the beginning
116 */
117 if (mtime_since(&td->start, now) < 2000)
118 return 0;
119
Jens Axboe09042002007-02-23 10:56:22 +0100120 if (td_read(td))
121 bytes += td->this_io_bytes[DDIR_READ];
122 if (td_write(td))
123 bytes += td->this_io_bytes[DDIR_WRITE];
124
Jens Axboeebac4652005-12-08 15:25:21 +0100125 /*
126 * if rate blocks is set, sample is running
127 */
128 if (td->rate_bytes) {
129 spent = mtime_since(&td->lastrate, now);
130 if (spent < td->ratecycle)
131 return 0;
132
Jens Axboe413dd452007-02-23 09:26:09 +0100133 if (bytes < td->rate_bytes) {
134 fprintf(f_out, "%s: min rate %u not met\n", td->name, td->ratemin);
Jens Axboeebac4652005-12-08 15:25:21 +0100135 return 1;
Jens Axboe413dd452007-02-23 09:26:09 +0100136 } else {
137 rate = (bytes - td->rate_bytes) / spent;
138 if (rate < td->ratemin || bytes < td->rate_bytes) {
139 fprintf(f_out, "%s: min rate %u not met, got %luKiB/sec\n", td->name, td->ratemin, rate);
140 return 1;
141 }
Jens Axboeebac4652005-12-08 15:25:21 +0100142 }
143 }
144
Jens Axboe09042002007-02-23 10:56:22 +0100145 td->rate_bytes = bytes;
Jens Axboeebac4652005-12-08 15:25:21 +0100146 memcpy(&td->lastrate, now, sizeof(*now));
147 return 0;
148}
149
150static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
151{
152 if (!td->timeout)
153 return 0;
154 if (mtime_since(&td->epoch, t) >= td->timeout * 1000)
155 return 1;
156
157 return 0;
158}
159
Jens Axboe906c8d72006-06-13 09:37:56 +0200160/*
161 * When job exits, we can cancel the in-flight IO if we are using async
162 * io. Attempt to do so.
163 */
Jens Axboeebac4652005-12-08 15:25:21 +0100164static void cleanup_pending_aio(struct thread_data *td)
165{
Jens Axboeebac4652005-12-08 15:25:21 +0100166 struct list_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100167 struct io_u *io_u;
168 int r;
169
170 /*
171 * get immediately available events, if any
172 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100173 r = io_u_queued_complete(td, 0);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100174 if (r < 0)
175 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100176
177 /*
178 * now cancel remaining active events
179 */
Jens Axboe2866c822006-10-09 15:57:48 +0200180 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100181 list_for_each_safe(entry, n, &td->io_u_busylist) {
182 io_u = list_entry(entry, struct io_u, list);
183
Jens Axboe0c6e7512007-02-22 11:19:39 +0100184 /*
185 * if the io_u isn't in flight, then that generally
186 * means someone leaked an io_u. complain but fix
187 * it up, so we don't stall here.
188 */
189 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
190 log_err("fio: non-busy IO on busy list\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100191 put_io_u(td, io_u);
Jens Axboe0c6e7512007-02-22 11:19:39 +0100192 } else {
193 r = td->io_ops->cancel(td, io_u);
194 if (!r)
195 put_io_u(td, io_u);
196 }
Jens Axboeebac4652005-12-08 15:25:21 +0100197 }
198 }
199
Jens Axboe97601022007-02-18 12:47:29 +0100200 if (td->cur_depth)
Jens Axboed7762cf2007-02-23 12:34:57 +0100201 r = io_u_queued_complete(td, td->cur_depth);
Jens Axboeebac4652005-12-08 15:25:21 +0100202}
203
Jens Axboe906c8d72006-06-13 09:37:56 +0200204/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200205 * Helper to handle the final sync of a file. Works just like the normal
206 * io path, just does everything sync.
207 */
208static int fio_io_sync(struct thread_data *td, struct fio_file *f)
209{
210 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200211 int ret;
212
213 if (!io_u)
214 return 1;
215
216 io_u->ddir = DDIR_SYNC;
217 io_u->file = f;
218
219 if (td_io_prep(td, io_u)) {
220 put_io_u(td, io_u);
221 return 1;
222 }
223
Jens Axboe755200a2007-02-19 13:08:12 +0100224requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200225 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100226 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100227 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe858a3d42006-10-24 14:54:44 +0200228 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200229 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100230 } else if (ret == FIO_Q_QUEUED) {
Jens Axboed7762cf2007-02-23 12:34:57 +0100231 if (io_u_queued_complete(td, 1) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100232 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100233 } else if (ret == FIO_Q_COMPLETED) {
234 if (io_u->error) {
Jens Axboee1161c32007-02-22 19:36:48 +0100235 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe36167d82007-02-18 05:41:31 +0100236 return 1;
237 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200238
Jens Axboed7762cf2007-02-23 12:34:57 +0100239 if (io_u_sync_complete(td, io_u) < 0)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100240 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100241 } else if (ret == FIO_Q_BUSY) {
242 if (td_io_commit(td))
243 return 1;
244 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200245 }
246
247 return 0;
248}
249
250/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100251 * The main verify engine. Runs over the writes we previously submitted,
Jens Axboe906c8d72006-06-13 09:37:56 +0200252 * reads the blocks back in, and checks the crc/md5 of the data.
253 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100254static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100255{
Jens Axboe53cdc682006-10-18 11:50:58 +0200256 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100257 struct io_u *io_u;
Jens Axboeaf52b342007-03-13 10:07:47 +0100258 int ret, min_events;
259 unsigned int i;
Jens Axboee5b401d2006-10-18 16:03:40 +0200260
261 /*
262 * sync io first and invalidate cache, to make sure we really
263 * read from disk.
264 */
265 for_each_file(td, f, i) {
Jens Axboe3d7b4852007-03-13 14:50:28 +0100266 if (!(f->flags & FIO_FILE_OPEN))
267 continue;
Jens Axboeb2fdda42007-02-20 20:52:51 +0100268 if (fio_io_sync(td, f))
269 break;
270 if (file_invalidate_cache(td, f))
271 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200272 }
Jens Axboeebac4652005-12-08 15:25:21 +0100273
Jens Axboeb2fdda42007-02-20 20:52:51 +0100274 if (td->error)
275 return;
276
Jens Axboeebac4652005-12-08 15:25:21 +0100277 td_set_runstate(td, TD_VERIFYING);
278
Jens Axboe36167d82007-02-18 05:41:31 +0100279 io_u = NULL;
280 while (!td->terminate) {
Jens Axboe54517922007-03-05 10:06:06 +0100281 int ret2;
282
Jens Axboeebac4652005-12-08 15:25:21 +0100283 io_u = __get_io_u(td);
284 if (!io_u)
285 break;
286
Jens Axboe069c2912007-02-21 23:02:39 +0100287 if (runtime_exceeded(td, &io_u->start_time)) {
288 put_io_u(td, io_u);
Jens Axboe53cdc682006-10-18 11:50:58 +0200289 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100290 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200291
Jens Axboe069c2912007-02-21 23:02:39 +0100292 if (get_next_verify(td, io_u)) {
293 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100294 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100295 }
Jens Axboeebac4652005-12-08 15:25:21 +0100296
Jens Axboe069c2912007-02-21 23:02:39 +0100297 if (td_io_prep(td, io_u)) {
298 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100299 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100300 }
Jens Axboed7762cf2007-02-23 12:34:57 +0100301
302 io_u->end_io = verify_io_u;
Jens Axboe36167d82007-02-18 05:41:31 +0100303
Jens Axboe11786802007-03-05 18:33:22 +0100304 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100305 switch (ret) {
306 case FIO_Q_COMPLETED:
307 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100308 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100309 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100310 int bytes = io_u->xfer_buflen - io_u->resid;
311
Jens Axboe9e9d1642007-03-12 09:37:46 +0100312 /*
313 * zero read, fail
314 */
315 if (!bytes) {
316 td_verror(td, ENODATA, "full resid");
317 put_io_u(td, io_u);
318 break;
319 }
Jens Axboe36167d82007-02-18 05:41:31 +0100320 io_u->xfer_buflen = io_u->resid;
321 io_u->xfer_buf += bytes;
Jens Axboe11786802007-03-05 18:33:22 +0100322 requeue_io_u(td, &io_u);
323 } else {
324 ret = io_u_sync_complete(td, io_u);
325 if (ret < 0)
326 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100327 }
Jens Axboe36167d82007-02-18 05:41:31 +0100328 continue;
329 case FIO_Q_QUEUED:
330 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100331 case FIO_Q_BUSY:
332 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100333 ret2 = td_io_commit(td);
334 if (ret2 < 0)
335 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100336 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100337 default:
338 assert(ret < 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100339 td_verror(td, -ret, "td_io_queue");
Jens Axboeebac4652005-12-08 15:25:21 +0100340 break;
341 }
342
Jens Axboe99784632007-02-19 10:06:17 +0100343 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100344 break;
345
Jens Axboe3af6ef32007-02-18 06:57:43 +0100346 /*
347 * if we can queue more, do so. but check if there are
348 * completed io_u's first.
349 */
Jens Axboe97601022007-02-18 12:47:29 +0100350 min_events = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100351 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe3af6ef32007-02-18 06:57:43 +0100352 min_events = 1;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100353
Jens Axboee916b392007-02-20 14:37:26 +0100354 if (td->cur_depth > td->iodepth_low)
355 min_events = td->cur_depth - td->iodepth_low;
356 }
357
Jens Axboe3af6ef32007-02-18 06:57:43 +0100358 /*
359 * Reap required number of io units, if any, and do the
360 * verification on them through the callback handler
361 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100362 if (io_u_queued_complete(td, min_events) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100363 break;
364 }
365
Jens Axboec01c0392007-02-26 12:43:42 +0100366 if (!td->error) {
367 min_events = td->cur_depth;
368
369 if (min_events)
370 ret = io_u_queued_complete(td, min_events);
371 } else
Jens Axboeebac4652005-12-08 15:25:21 +0100372 cleanup_pending_aio(td);
373
374 td_set_runstate(td, TD_RUNNING);
375}
376
Jens Axboe32cd46a2006-06-07 13:40:40 +0200377/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200378 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200379 * and reaps them, checking for rate and errors along the way.
380 */
Jens Axboeebac4652005-12-08 15:25:21 +0100381static void do_io(struct thread_data *td)
382{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100383 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100384 unsigned long usec;
Jens Axboeaf52b342007-03-13 10:07:47 +0100385 unsigned int i;
386 int ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100387
Jens Axboe5853e5a2006-06-08 14:41:05 +0200388 td_set_runstate(td, TD_RUNNING);
389
Jens Axboe39514142007-02-12 18:49:58 +0100390 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->io_size) {
Jens Axboe97601022007-02-18 12:47:29 +0100391 struct timeval comp_time;
392 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200393 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100394 struct io_u *io_u;
Jens Axboe54517922007-03-05 10:06:06 +0100395 int ret2;
Jens Axboeebac4652005-12-08 15:25:21 +0100396
397 if (td->terminate)
398 break;
399
Jens Axboe3d7c3912007-02-19 13:16:12 +0100400 io_u = get_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100401 if (!io_u)
402 break;
403
404 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100405
406 if (runtime_exceeded(td, &s)) {
407 put_io_u(td, io_u);
408 break;
409 }
Jens Axboe36167d82007-02-18 05:41:31 +0100410
Jens Axboe11786802007-03-05 18:33:22 +0100411 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100412 switch (ret) {
413 case FIO_Q_COMPLETED:
Jens Axboe54517922007-03-05 10:06:06 +0100414 if (io_u->error)
415 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100416 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100417 int bytes = io_u->xfer_buflen - io_u->resid;
418
Jens Axboe9e9d1642007-03-12 09:37:46 +0100419 /*
420 * zero read, fail
421 */
422 if (!bytes) {
423 td_verror(td, ENODATA, "full resid");
424 put_io_u(td, io_u);
425 break;
426 }
427
Jens Axboe36167d82007-02-18 05:41:31 +0100428 io_u->xfer_buflen = io_u->resid;
429 io_u->xfer_buf += bytes;
Jens Axboe11786802007-03-05 18:33:22 +0100430 requeue_io_u(td, &io_u);
431 } else {
432 fio_gettime(&comp_time, NULL);
433 bytes_done = io_u_sync_complete(td, io_u);
434 if (bytes_done < 0)
435 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100436 }
Jens Axboe36167d82007-02-18 05:41:31 +0100437 break;
438 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100439 /*
440 * if the engine doesn't have a commit hook,
441 * the io_u is really queued. if it does have such
442 * a hook, it has to call io_u_queued() itself.
443 */
444 if (td->io_ops->commit == NULL)
445 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100446 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100447 case FIO_Q_BUSY:
448 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100449 ret2 = td_io_commit(td);
450 if (ret2 < 0)
451 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100452 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100453 default:
454 assert(ret < 0);
455 put_io_u(td, io_u);
456 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100457 }
458
Jens Axboe99784632007-02-19 10:06:17 +0100459 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100460 break;
461
Jens Axboe97601022007-02-18 12:47:29 +0100462 /*
463 * See if we need to complete some commands
464 */
Jens Axboe755200a2007-02-19 13:08:12 +0100465 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100466 min_evts = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100467 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe36167d82007-02-18 05:41:31 +0100468 min_evts = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100469
Jens Axboee916b392007-02-20 14:37:26 +0100470 if (td->cur_depth > td->iodepth_low)
471 min_evts = td->cur_depth - td->iodepth_low;
472 }
473
Jens Axboe97601022007-02-18 12:47:29 +0100474 fio_gettime(&comp_time, NULL);
Jens Axboed7762cf2007-02-23 12:34:57 +0100475 bytes_done = io_u_queued_complete(td, min_evts);
Jens Axboe97601022007-02-18 12:47:29 +0100476 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100477 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100478 }
479
Jens Axboe97601022007-02-18 12:47:29 +0100480 if (!bytes_done)
481 continue;
482
Jens Axboeebac4652005-12-08 15:25:21 +0100483 /*
484 * the rate is batched for now, it should work for batches
485 * of completions except the very first one which may look
486 * a little bursty
487 */
Jens Axboe97601022007-02-18 12:47:29 +0100488 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100489
Jens Axboe413dd452007-02-23 09:26:09 +0100490 rate_throttle(td, usec, bytes_done);
Jens Axboeebac4652005-12-08 15:25:21 +0100491
Jens Axboe97601022007-02-18 12:47:29 +0100492 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100493 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100494 terminate_threads(td->groupid);
Jens Axboee1161c32007-02-22 19:36:48 +0100495 td_verror(td, ENODATA, "check_min_rate");
Jens Axboeebac4652005-12-08 15:25:21 +0100496 break;
497 }
498
Jens Axboe9c1f7432007-01-03 20:43:19 +0100499 if (td->thinktime) {
500 unsigned long long b;
501
502 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe48097d52007-02-17 06:30:44 +0100503 if (!(b % td->thinktime_blocks)) {
504 int left;
505
506 if (td->thinktime_spin)
507 __usec_sleep(td->thinktime_spin);
508
509 left = td->thinktime - td->thinktime_spin;
510 if (left)
511 usec_sleep(td, left);
512 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100513 }
Jens Axboeebac4652005-12-08 15:25:21 +0100514 }
515
Jens Axboe4d2413c2006-11-23 11:58:59 +0100516 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100517 struct fio_file *f;
518
Jens Axboec01c0392007-02-26 12:43:42 +0100519 i = td->cur_depth;
520 if (i)
521 ret = io_u_queued_complete(td, i);
Jens Axboeebac4652005-12-08 15:25:21 +0100522
Jens Axboe84585002006-10-19 20:26:22 +0200523 if (should_fsync(td) && td->end_fsync) {
524 td_set_runstate(td, TD_FSYNCING);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100525
526 for_each_file(td, f, i) {
527 if (!(f->flags & FIO_FILE_OPEN))
528 continue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200529 fio_io_sync(td, f);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100530 }
Jens Axboe84585002006-10-19 20:26:22 +0200531 }
Jens Axboec01c0392007-02-26 12:43:42 +0100532 } else
533 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100534}
535
Jens Axboeebac4652005-12-08 15:25:21 +0100536static void cleanup_io_u(struct thread_data *td)
537{
538 struct list_head *entry, *n;
539 struct io_u *io_u;
540
541 list_for_each_safe(entry, n, &td->io_u_freelist) {
542 io_u = list_entry(entry, struct io_u, list);
543
544 list_del(&io_u->list);
545 free(io_u);
546 }
547
Jens Axboe2f9ade32006-10-20 11:25:52 +0200548 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100549}
550
Jens Axboe6b9cea22006-10-30 17:00:24 +0100551/*
552 * "randomly" fill the buffer contents
553 */
Jens Axboe66eeb292006-11-01 08:35:44 +0100554static void fill_rand_buf(struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100555{
Jens Axboe66eeb292006-11-01 08:35:44 +0100556 int *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100557
558 while ((void *) ptr - io_u->buf < max_bs) {
559 *ptr = rand() * 0x9e370001;
560 ptr++;
561 }
562}
563
Jens Axboeebac4652005-12-08 15:25:21 +0100564static int init_io_u(struct thread_data *td)
565{
566 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100567 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100568 int i, max_units;
569 char *p;
570
Jens Axboe2866c822006-10-09 15:57:48 +0200571 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100572 max_units = 1;
573 else
574 max_units = td->iodepth;
575
Jens Axboea00735e2006-11-03 08:58:08 +0100576 max_bs = max(td->max_bs[DDIR_READ], td->max_bs[DDIR_WRITE]);
Jens Axboe74b025b2006-12-19 15:18:14 +0100577 td->orig_buffer_size = max_bs * max_units;
578
Jens Axboed0bdaf42006-12-20 14:40:44 +0100579 if (td->mem_type == MEM_SHMHUGE || td->mem_type == MEM_MMAPHUGE)
Jens Axboe56bb17f2006-12-20 20:27:36 +0100580 td->orig_buffer_size = (td->orig_buffer_size + td->hugepage_size - 1) & ~(td->hugepage_size - 1);
Jens Axboe74b025b2006-12-19 15:18:14 +0100581 else
Jens Axboe29d610e2007-02-06 13:25:33 +0100582 td->orig_buffer_size += page_mask;
Jens Axboeebac4652005-12-08 15:25:21 +0100583
Jens Axboe2f9ade32006-10-20 11:25:52 +0200584 if (allocate_io_mem(td))
585 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100586
Jens Axboeebac4652005-12-08 15:25:21 +0100587 p = ALIGN(td->orig_buffer);
588 for (i = 0; i < max_units; i++) {
589 io_u = malloc(sizeof(*io_u));
590 memset(io_u, 0, sizeof(*io_u));
591 INIT_LIST_HEAD(&io_u->list);
592
Jens Axboea00735e2006-11-03 08:58:08 +0100593 io_u->buf = p + max_bs * i;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100594 if (td_write(td) || td_rw(td))
Jens Axboea00735e2006-11-03 08:58:08 +0100595 fill_rand_buf(io_u, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100596
Jens Axboeb1ff3402006-02-17 11:35:58 +0100597 io_u->index = i;
Jens Axboe0c6e7512007-02-22 11:19:39 +0100598 io_u->flags = IO_U_F_FREE;
Jens Axboeebac4652005-12-08 15:25:21 +0100599 list_add(&io_u->list, &td->io_u_freelist);
600 }
601
Jens Axboe433afcb2007-02-22 10:39:01 +0100602 io_u_init_timeout();
603
Jens Axboeebac4652005-12-08 15:25:21 +0100604 return 0;
605}
606
Jens Axboeda867742006-06-06 10:39:10 -0700607static int switch_ioscheduler(struct thread_data *td)
608{
609 char tmp[256], tmp2[128];
610 FILE *f;
611 int ret;
612
Jens Axboeba0fbe12007-03-09 14:34:23 +0100613 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200614 return 0;
615
Jens Axboeda867742006-06-06 10:39:10 -0700616 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
617
618 f = fopen(tmp, "r+");
619 if (!f) {
Jens Axboee1161c32007-02-22 19:36:48 +0100620 td_verror(td, errno, "fopen");
Jens Axboeda867742006-06-06 10:39:10 -0700621 return 1;
622 }
623
624 /*
625 * Set io scheduler.
626 */
627 ret = fwrite(td->ioscheduler, strlen(td->ioscheduler), 1, f);
628 if (ferror(f) || ret != 1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100629 td_verror(td, errno, "fwrite");
Jens Axboeda867742006-06-06 10:39:10 -0700630 fclose(f);
631 return 1;
632 }
633
634 rewind(f);
635
636 /*
637 * Read back and check that the selected scheduler is now the default.
638 */
639 ret = fread(tmp, 1, sizeof(tmp), f);
640 if (ferror(f) || ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100641 td_verror(td, errno, "fread");
Jens Axboeda867742006-06-06 10:39:10 -0700642 fclose(f);
643 return 1;
644 }
645
646 sprintf(tmp2, "[%s]", td->ioscheduler);
647 if (!strstr(tmp, tmp2)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200648 log_err("fio: io scheduler %s not found\n", td->ioscheduler);
Jens Axboee1161c32007-02-22 19:36:48 +0100649 td_verror(td, EINVAL, "iosched_switch");
Jens Axboeda867742006-06-06 10:39:10 -0700650 fclose(f);
651 return 1;
652 }
653
654 fclose(f);
655 return 0;
656}
657
Jens Axboea978ba62007-03-08 14:29:03 +0100658static int clear_io_state(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100659{
Jens Axboe53cdc682006-10-18 11:50:58 +0200660 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100661 unsigned int i;
662 int ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100663
Jens Axboe756867b2007-03-06 15:19:24 +0100664 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100665 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100666 td->zone_bytes = 0;
Jens Axboed7d3b492007-03-12 08:02:10 +0100667 td->rate_bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100668
Jens Axboec1324df2007-02-19 19:06:41 +0100669 td->last_was_sync = 0;
670
Jens Axboea978ba62007-03-08 14:29:03 +0100671 for_each_file(td, f, i)
672 td_io_close_file(td, f);
673
674 ret = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200675 for_each_file(td, f, i) {
Jens Axboea978ba62007-03-08 14:29:03 +0100676 ret = td_io_open_file(td, f);
677 if (ret)
678 break;
Jens Axboe53cdc682006-10-18 11:50:58 +0200679 }
Jens Axboea978ba62007-03-08 14:29:03 +0100680
681 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100682}
683
Jens Axboe906c8d72006-06-13 09:37:56 +0200684/*
685 * Entry point for the thread based jobs. The process based jobs end up
686 * here as well, after a little setup.
687 */
Jens Axboeebac4652005-12-08 15:25:21 +0100688static void *thread_main(void *data)
689{
Jens Axboe69008992006-11-24 13:12:56 +0100690 unsigned long long runtime[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100691 struct thread_data *td = data;
Jens Axboea978ba62007-03-08 14:29:03 +0100692 int clear_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100693
694 if (!td->use_thread)
695 setsid();
696
697 td->pid = getpid();
698
Jens Axboeaea47d42006-05-26 19:27:29 +0200699 INIT_LIST_HEAD(&td->io_u_freelist);
700 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100701 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200702 INIT_LIST_HEAD(&td->io_hist_list);
703 INIT_LIST_HEAD(&td->io_log_list);
704
Jens Axboeebac4652005-12-08 15:25:21 +0100705 if (init_io_u(td))
Jens Axboebda4fd92007-03-12 11:21:48 +0100706 goto err_sem;
Jens Axboeebac4652005-12-08 15:25:21 +0100707
708 if (fio_setaffinity(td) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100709 td_verror(td, errno, "cpu_set_affinity");
Jens Axboebda4fd92007-03-12 11:21:48 +0100710 goto err_sem;
Jens Axboeebac4652005-12-08 15:25:21 +0100711 }
712
Jens Axboeaea47d42006-05-26 19:27:29 +0200713 if (init_iolog(td))
Jens Axboebda4fd92007-03-12 11:21:48 +0100714 goto err_sem;
Jens Axboeaea47d42006-05-26 19:27:29 +0200715
Jens Axboeebac4652005-12-08 15:25:21 +0100716 if (td->ioprio) {
717 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100718 td_verror(td, errno, "ioprio_set");
Jens Axboebda4fd92007-03-12 11:21:48 +0100719 goto err_sem;
Jens Axboeebac4652005-12-08 15:25:21 +0100720 }
721 }
722
Jens Axboe1056eaa2006-07-13 10:33:45 -0700723 if (nice(td->nice) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100724 td_verror(td, errno, "nice");
Jens Axboebda4fd92007-03-12 11:21:48 +0100725 goto err_sem;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200726 }
727
Jens Axboe75154842006-06-01 13:56:09 +0200728 if (init_random_state(td))
Jens Axboebda4fd92007-03-12 11:21:48 +0100729 goto err_sem;
Jens Axboe75154842006-06-01 13:56:09 +0200730
Jens Axboe56f94982006-10-24 09:33:42 +0200731 if (td->ioscheduler && switch_ioscheduler(td))
Jens Axboebda4fd92007-03-12 11:21:48 +0100732 goto err_sem;
Jens Axboeda867742006-06-06 10:39:10 -0700733
Jens Axboe75154842006-06-01 13:56:09 +0200734 td_set_runstate(td, TD_INITIALIZED);
Jens Axboe07739b52007-03-08 20:25:46 +0100735 fio_sem_up(startup_sem);
736 fio_sem_down(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100737
Jens Axboe37f56872007-03-09 12:42:35 +0100738 /*
739 * the ->mutex semaphore is now no longer used, close it to avoid
740 * eating a file descriptor
741 */
742 fio_sem_remove(td->mutex);
743
Jens Axboe53cdc682006-10-18 11:50:58 +0200744 if (!td->create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100745 goto err;
Jens Axboeb5af8292007-03-08 12:43:13 +0100746
747 if (td_io_init(td))
Jens Axboe21972cd2006-11-23 12:39:16 +0100748 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100749
Jens Axboeb5af8292007-03-08 12:43:13 +0100750 if (open_files(td))
Jens Axboe7d6c5282007-02-05 10:52:10 +0100751 goto err;
752
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100753 if (td->exec_prerun) {
754 if (system(td->exec_prerun) < 0)
755 goto err;
756 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200757
Jens Axboe69008992006-11-24 13:12:56 +0100758 fio_gettime(&td->epoch, NULL);
Jens Axboe433afcb2007-02-22 10:39:01 +0100759 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
Jens Axboe756867b2007-03-06 15:19:24 +0100760 getrusage(RUSAGE_SELF, &td->ts.ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100761
762 runtime[0] = runtime[1] = 0;
Jens Axboea978ba62007-03-08 14:29:03 +0100763 clear_state = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100764 while (td->loops--) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100765 fio_gettime(&td->start, NULL);
Jens Axboe756867b2007-03-06 15:19:24 +0100766 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +0100767
768 if (td->ratemin)
Jens Axboe756867b2007-03-06 15:19:24 +0100769 memcpy(&td->lastrate, &td->ts.stat_sample_time, sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +0100770
Jens Axboea978ba62007-03-08 14:29:03 +0100771 if (clear_state && clear_io_state(td))
772 break;
773
Jens Axboeebac4652005-12-08 15:25:21 +0100774 prune_io_piece_log(td);
775
Jens Axboeba0fbe12007-03-09 14:34:23 +0100776 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100777
Jens Axboea978ba62007-03-08 14:29:03 +0100778 clear_state = 1;
779
Jens Axboe413dd452007-02-23 09:26:09 +0100780 if (td_read(td) && td->io_bytes[DDIR_READ])
781 runtime[DDIR_READ] += utime_since_now(&td->start);
782 if (td_write(td) && td->io_bytes[DDIR_WRITE])
783 runtime[DDIR_WRITE] += utime_since_now(&td->start);
784
Jens Axboeebac4652005-12-08 15:25:21 +0100785 if (td->error || td->terminate)
786 break;
787
788 if (td->verify == VERIFY_NONE)
789 continue;
790
Jens Axboea978ba62007-03-08 14:29:03 +0100791 if (clear_io_state(td))
792 break;
793
Jens Axboe02bcaa82006-11-24 10:42:00 +0100794 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100795
796 do_verify(td);
797
Jens Axboe69008992006-11-24 13:12:56 +0100798 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100799
800 if (td->error || td->terminate)
801 break;
802 }
803
Jens Axboe36dff962006-11-24 13:29:20 +0100804 update_rusage_stat(td);
Jens Axboe756867b2007-03-06 15:19:24 +0100805 td->ts.runtime[0] = runtime[0] / 1000;
806 td->ts.runtime[1] = runtime[1] / 1000;
807 td->ts.total_run_time = mtime_since_now(&td->epoch);
808 td->ts.io_bytes[0] = td->io_bytes[0];
809 td->ts.io_bytes[1] = td->io_bytes[1];
Jens Axboe69008992006-11-24 13:12:56 +0100810
Jens Axboe756867b2007-03-06 15:19:24 +0100811 if (td->ts.bw_log)
812 finish_log(td, td->ts.bw_log, "bw");
813 if (td->ts.slat_log)
814 finish_log(td, td->ts.slat_log, "slat");
815 if (td->ts.clat_log)
816 finish_log(td, td->ts.clat_log, "clat");
Jens Axboe076efc72006-10-27 11:24:25 +0200817 if (td->write_iolog_file)
Jens Axboe843a7412006-06-01 21:14:21 -0700818 write_iolog_close(td);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100819 if (td->exec_postrun) {
820 if (system(td->exec_postrun) < 0)
821 log_err("fio: postrun %s failed\n", td->exec_postrun);
822 }
Jens Axboeebac4652005-12-08 15:25:21 +0100823
824 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100825 terminate_threads(td->groupid);
Jens Axboeebac4652005-12-08 15:25:21 +0100826
827err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100828 if (td->error)
829 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200830 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200831 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100832 cleanup_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100833 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +0100834 return (void *) (unsigned long) td->error;
Jens Axboebda4fd92007-03-12 11:21:48 +0100835err_sem:
836 fio_sem_up(startup_sem);
837 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100838}
839
Jens Axboe906c8d72006-06-13 09:37:56 +0200840/*
841 * We cannot pass the td data into a forked process, so attach the td and
842 * pass it to the thread worker.
843 */
Jens Axboea6418142007-02-17 04:47:18 +0100844static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100845{
846 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100847 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100848
849 data = shmat(shmid, NULL, 0);
850 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100851 int __err = errno;
852
Jens Axboeebac4652005-12-08 15:25:21 +0100853 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100854 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100855 }
856
857 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100858 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100859 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +0100860 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100861}
862
Jens Axboe906c8d72006-06-13 09:37:56 +0200863/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200864 * Run over the job map and reap the threads that have exited, if any.
865 */
Jens Axboeebac4652005-12-08 15:25:21 +0100866static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
867{
Jens Axboe34572e22006-10-20 09:33:18 +0200868 struct thread_data *td;
Jens Axboefab6aa72007-02-17 06:19:24 +0100869 int i, cputhreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100870
871 /*
872 * reap exited threads (TD_EXITED -> TD_REAPED)
873 */
Jens Axboe4d2413c2006-11-23 11:58:59 +0100874 pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200875 for_each_td(td, i) {
Jens Axboe3707f452007-02-22 12:26:57 +0100876 int flags = 0;
Jens Axboea2f77c92007-02-22 11:53:00 +0100877
Jens Axboe84585002006-10-19 20:26:22 +0200878 /*
879 * ->io_ops is NULL for a thread that has closed its
880 * io engine
881 */
Jens Axboeba0fbe12007-03-09 14:34:23 +0100882 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
Jens Axboeb990b5c2006-09-14 09:48:22 +0200883 cputhreads++;
884
Jens Axboea2f77c92007-02-22 11:53:00 +0100885 if (!td->pid || td->runstate == TD_REAPED)
886 continue;
Jens Axboe3707f452007-02-22 12:26:57 +0100887 if (td->use_thread) {
888 if (td->runstate == TD_EXITED) {
889 td_set_runstate(td, TD_REAPED);
890 goto reaped;
891 }
892 continue;
893 }
Jens Axboea2f77c92007-02-22 11:53:00 +0100894
895 flags = WNOHANG;
896 if (td->runstate == TD_EXITED)
897 flags = 0;
898
899 /*
900 * check if someone quit or got killed in an unusual way
901 */
902 ret = waitpid(td->pid, &status, flags);
Jens Axboe3707f452007-02-22 12:26:57 +0100903 if (ret < 0) {
Jens Axboea2f77c92007-02-22 11:53:00 +0100904 if (errno == ECHILD) {
905 log_err("fio: pid=%d disappeared %d\n", td->pid, td->runstate);
906 td_set_runstate(td, TD_REAPED);
907 goto reaped;
908 }
909 perror("waitpid");
910 } else if (ret == td->pid) {
911 if (WIFSIGNALED(status)) {
Jens Axboefab6aa72007-02-17 06:19:24 +0100912 int sig = WTERMSIG(status);
913
Jens Axboed9244942007-03-05 12:32:32 +0100914 if (sig != SIGQUIT)
915 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
Jens Axboefab6aa72007-02-17 06:19:24 +0100916 td_set_runstate(td, TD_REAPED);
917 goto reaped;
918 }
Jens Axboea2f77c92007-02-22 11:53:00 +0100919 if (WIFEXITED(status)) {
920 if (WEXITSTATUS(status) && !td->error)
921 td->error = WEXITSTATUS(status);
Jens Axboefab6aa72007-02-17 06:19:24 +0100922
Jens Axboea2f77c92007-02-22 11:53:00 +0100923 td_set_runstate(td, TD_REAPED);
924 goto reaped;
Jens Axboea6418142007-02-17 04:47:18 +0100925 }
926 }
Jens Axboeebac4652005-12-08 15:25:21 +0100927
Jens Axboea2f77c92007-02-22 11:53:00 +0100928 /*
929 * thread is not dead, continue
930 */
931 continue;
Jens Axboefab6aa72007-02-17 06:19:24 +0100932reaped:
Jens Axboe3707f452007-02-22 12:26:57 +0100933 if (td->use_thread) {
934 long ret;
935
936 if (pthread_join(td->thread, (void *) &ret))
937 perror("pthread_join");
938 }
939
Jens Axboeebac4652005-12-08 15:25:21 +0100940 (*nr_running)--;
941 (*m_rate) -= td->ratemin;
942 (*t_rate) -= td->rate;
Jens Axboea2f77c92007-02-22 11:53:00 +0100943
944 if (td->error)
945 exit_value++;
Jens Axboeebac4652005-12-08 15:25:21 +0100946 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200947
Jens Axboe4d2413c2006-11-23 11:58:59 +0100948 if (*nr_running == cputhreads && !pending)
Jens Axboe390c40e2007-03-05 12:35:29 +0100949 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +0100950}
951
Jens Axboe906c8d72006-06-13 09:37:56 +0200952/*
953 * Main function for kicking off and reaping jobs, as needed.
954 */
Jens Axboeebac4652005-12-08 15:25:21 +0100955static void run_threads(void)
956{
Jens Axboeebac4652005-12-08 15:25:21 +0100957 struct thread_data *td;
958 unsigned long spent;
959 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +0200960
Jens Axboe2f9ade32006-10-20 11:25:52 +0200961 if (fio_pin_memory())
962 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100963
Jens Axboec6ae0a52006-06-12 11:04:44 +0200964 if (!terse_output) {
Jens Axboe9cedf162007-03-12 11:29:30 +0100965 printf("Starting ");
966 if (nr_thread)
967 printf("%d thread%s", nr_thread, nr_thread > 1 ? "s" : "");
968 if (nr_process) {
969 if (nr_thread)
970 printf(" and ");
971 printf("%d process%s", nr_process, nr_process > 1 ? "es" : "");
972 }
973 printf("\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200974 fflush(stdout);
975 }
Jens Axboec04f7ec2006-05-31 10:13:16 +0200976
Jens Axboe4efa9702006-05-31 11:56:49 +0200977 signal(SIGINT, sig_handler);
978 signal(SIGALRM, sig_handler);
979
Jens Axboeebac4652005-12-08 15:25:21 +0100980 todo = thread_number;
981 nr_running = 0;
982 nr_started = 0;
983 m_rate = t_rate = 0;
984
Jens Axboe34572e22006-10-20 09:33:18 +0200985 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +0200986 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100987
Jens Axboe380cf262007-01-11 14:01:27 +0100988 if (!td->create_serialize) {
989 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100990 continue;
Jens Axboe380cf262007-01-11 14:01:27 +0100991 }
Jens Axboeebac4652005-12-08 15:25:21 +0100992
993 /*
994 * do file setup here so it happens sequentially,
995 * we don't want X number of threads getting their
996 * client data interspersed on disk
997 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200998 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +0100999 exit_value++;
1000 if (td->error)
1001 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +01001002 td_set_runstate(td, TD_REAPED);
1003 todo--;
1004 }
Jens Axboe380cf262007-01-11 14:01:27 +01001005
1006 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001007 }
1008
Jens Axboea2f77c92007-02-22 11:53:00 +01001009 set_genesis_time();
1010
Jens Axboeebac4652005-12-08 15:25:21 +01001011 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +02001012 struct thread_data *map[MAX_JOBS];
1013 struct timeval this_start;
1014 int this_jobs = 0, left;
1015
Jens Axboeebac4652005-12-08 15:25:21 +01001016 /*
1017 * create threads (TD_NOT_CREATED -> TD_CREATED)
1018 */
Jens Axboe34572e22006-10-20 09:33:18 +02001019 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +01001020 if (td->runstate != TD_NOT_CREATED)
1021 continue;
1022
1023 /*
1024 * never got a chance to start, killed by other
1025 * thread for some reason
1026 */
1027 if (td->terminate) {
1028 todo--;
1029 continue;
1030 }
1031
1032 if (td->start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +02001033 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +01001034
1035 if (td->start_delay * 1000 > spent)
1036 continue;
1037 }
1038
1039 if (td->stonewall && (nr_started || nr_running))
1040 break;
1041
Jens Axboe75154842006-06-01 13:56:09 +02001042 /*
1043 * Set state to created. Thread will transition
1044 * to TD_INITIALIZED when it's done setting up.
1045 */
Jens Axboeebac4652005-12-08 15:25:21 +01001046 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +02001047 map[this_jobs++] = td;
Jens Axboeebac4652005-12-08 15:25:21 +01001048 nr_started++;
1049
1050 if (td->use_thread) {
1051 if (pthread_create(&td->thread, NULL, thread_main, td)) {
1052 perror("thread_create");
1053 nr_started--;
Jens Axboec8bb6fa2007-03-12 11:03:04 +01001054 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001055 }
1056 } else {
Jens Axboe07739b52007-03-08 20:25:46 +01001057 if (!fork()) {
Jens Axboea6418142007-02-17 04:47:18 +01001058 int ret = fork_main(shm_id, i);
1059
1060 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001061 }
1062 }
Jens Axboe07739b52007-03-08 20:25:46 +01001063 fio_sem_down(startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +01001064 }
1065
1066 /*
Jens Axboe75154842006-06-01 13:56:09 +02001067 * Wait for the started threads to transition to
1068 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +01001069 */
Jens Axboe02bcaa82006-11-24 10:42:00 +01001070 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +02001071 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +01001072 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001073 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1074 break;
1075
1076 usleep(100000);
1077
1078 for (i = 0; i < this_jobs; i++) {
1079 td = map[i];
1080 if (!td)
1081 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001082 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001083 map[i] = NULL;
1084 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001085 } else if (td->runstate >= TD_EXITED) {
1086 map[i] = NULL;
1087 left--;
1088 todo--;
1089 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001090 }
1091 }
1092 }
1093
1094 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001095 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001096 for (i = 0; i < this_jobs; i++) {
1097 td = map[i];
1098 if (!td)
1099 continue;
1100 kill(td->pid, SIGTERM);
1101 }
1102 break;
1103 }
1104
1105 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001106 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001107 */
Jens Axboe34572e22006-10-20 09:33:18 +02001108 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001109 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001110 continue;
1111
1112 td_set_runstate(td, TD_RUNNING);
1113 nr_running++;
1114 nr_started--;
1115 m_rate += td->ratemin;
1116 t_rate += td->rate;
Jens Axboe75154842006-06-01 13:56:09 +02001117 todo--;
Jens Axboe07739b52007-03-08 20:25:46 +01001118 fio_sem_up(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001119 }
1120
1121 reap_threads(&nr_running, &t_rate, &m_rate);
1122
1123 if (todo)
1124 usleep(100000);
1125 }
1126
1127 while (nr_running) {
1128 reap_threads(&nr_running, &t_rate, &m_rate);
1129 usleep(10000);
1130 }
1131
1132 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001133 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001134}
1135
Jens Axboeebac4652005-12-08 15:25:21 +01001136int main(int argc, char *argv[])
1137{
Jens Axboe29d610e2007-02-06 13:25:33 +01001138 long ps;
1139
Jens Axboedbe11252007-02-11 00:19:51 +01001140 /*
1141 * We need locale for number printing, if it isn't set then just
1142 * go with the US format.
1143 */
1144 if (!getenv("LC_NUMERIC"))
1145 setlocale(LC_NUMERIC, "en_US");
1146
Jens Axboeebac4652005-12-08 15:25:21 +01001147 if (parse_options(argc, argv))
1148 return 1;
1149
1150 if (!thread_number) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001151 log_err("Nothing to do\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001152 return 1;
1153 }
1154
Jens Axboe29d610e2007-02-06 13:25:33 +01001155 ps = sysconf(_SC_PAGESIZE);
1156 if (ps < 0) {
1157 log_err("Failed to get page size\n");
1158 return 1;
1159 }
1160
1161 page_mask = ps - 1;
1162
Jens Axboebb3884d2007-01-17 17:23:11 +11001163 if (write_bw_log) {
1164 setup_log(&agg_io_log[DDIR_READ]);
1165 setup_log(&agg_io_log[DDIR_WRITE]);
1166 }
1167
Jens Axboe07739b52007-03-08 20:25:46 +01001168 startup_sem = fio_sem_init(0);
1169
Jens Axboea2f77c92007-02-22 11:53:00 +01001170 set_genesis_time();
1171
Jens Axboeebac4652005-12-08 15:25:21 +01001172 disk_util_timer_arm();
1173
1174 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001175
Jens Axboebb3884d2007-01-17 17:23:11 +11001176 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001177 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001178 if (write_bw_log) {
1179 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1180 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1181 }
1182 }
Jens Axboeebac4652005-12-08 15:25:21 +01001183
Jens Axboe07739b52007-03-08 20:25:46 +01001184 fio_sem_remove(startup_sem);
Jens Axboe437c9b72007-02-13 18:20:37 +01001185 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001186}