blob: dbea661d961ca5b911b0a35161510c238d6f0b2a [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 Axboebbfd6b02006-06-07 19:42:54 +020049static volatile int 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
63static void terminate_threads(int group_id, int forced_kill)
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) {
70 td->terminate = 1;
71 td->start_delay = 0;
Jens Axboe6ce15a32007-01-12 09:04:41 +010072 if (forced_kill)
73 td_set_runstate(td, TD_EXITED);
Jens Axboeebac4652005-12-08 15:25:21 +010074 }
75 }
76}
77
78static void sig_handler(int sig)
79{
80 switch (sig) {
81 case SIGALRM:
82 update_io_ticks();
83 disk_util_timer_arm();
84 print_thread_status();
85 break;
86 default:
Jens Axboe6ce15a32007-01-12 09:04:41 +010087 printf("\nfio: terminating on signal %d\n", sig);
Jens Axboeebac4652005-12-08 15:25:21 +010088 fflush(stdout);
Jens Axboe6ce15a32007-01-12 09:04:41 +010089 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +010090 break;
91 }
92}
93
Jens Axboe906c8d72006-06-13 09:37:56 +020094/*
Jens Axboe906c8d72006-06-13 09:37:56 +020095 * Check if we are above the minimum rate given.
96 */
Jens Axboeebac4652005-12-08 15:25:21 +010097static int check_min_rate(struct thread_data *td, struct timeval *now)
98{
Jens Axboe09042002007-02-23 10:56:22 +010099 unsigned long long bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100100 unsigned long spent;
101 unsigned long rate;
Jens Axboeebac4652005-12-08 15:25:21 +0100102
103 /*
104 * allow a 2 second settle period in the beginning
105 */
106 if (mtime_since(&td->start, now) < 2000)
107 return 0;
108
Jens Axboe09042002007-02-23 10:56:22 +0100109 if (td_read(td))
110 bytes += td->this_io_bytes[DDIR_READ];
111 if (td_write(td))
112 bytes += td->this_io_bytes[DDIR_WRITE];
113
Jens Axboeebac4652005-12-08 15:25:21 +0100114 /*
115 * if rate blocks is set, sample is running
116 */
117 if (td->rate_bytes) {
118 spent = mtime_since(&td->lastrate, now);
119 if (spent < td->ratecycle)
120 return 0;
121
Jens Axboe413dd452007-02-23 09:26:09 +0100122 if (bytes < td->rate_bytes) {
123 fprintf(f_out, "%s: min rate %u not met\n", td->name, td->ratemin);
Jens Axboeebac4652005-12-08 15:25:21 +0100124 return 1;
Jens Axboe413dd452007-02-23 09:26:09 +0100125 } else {
126 rate = (bytes - td->rate_bytes) / spent;
127 if (rate < td->ratemin || bytes < td->rate_bytes) {
128 fprintf(f_out, "%s: min rate %u not met, got %luKiB/sec\n", td->name, td->ratemin, rate);
129 return 1;
130 }
Jens Axboeebac4652005-12-08 15:25:21 +0100131 }
132 }
133
Jens Axboe09042002007-02-23 10:56:22 +0100134 td->rate_bytes = bytes;
Jens Axboeebac4652005-12-08 15:25:21 +0100135 memcpy(&td->lastrate, now, sizeof(*now));
136 return 0;
137}
138
139static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
140{
141 if (!td->timeout)
142 return 0;
143 if (mtime_since(&td->epoch, t) >= td->timeout * 1000)
144 return 1;
145
146 return 0;
147}
148
Jens Axboe906c8d72006-06-13 09:37:56 +0200149/*
150 * When job exits, we can cancel the in-flight IO if we are using async
151 * io. Attempt to do so.
152 */
Jens Axboeebac4652005-12-08 15:25:21 +0100153static void cleanup_pending_aio(struct thread_data *td)
154{
Jens Axboeebac4652005-12-08 15:25:21 +0100155 struct list_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100156 struct io_u *io_u;
157 int r;
158
159 /*
160 * get immediately available events, if any
161 */
Jens Axboeb2fdda42007-02-20 20:52:51 +0100162 r = io_u_queued_complete(td, 0, NULL);
163 if (r < 0)
164 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100165
166 /*
167 * now cancel remaining active events
168 */
Jens Axboe2866c822006-10-09 15:57:48 +0200169 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100170 list_for_each_safe(entry, n, &td->io_u_busylist) {
171 io_u = list_entry(entry, struct io_u, list);
172
Jens Axboe0c6e7512007-02-22 11:19:39 +0100173 /*
174 * if the io_u isn't in flight, then that generally
175 * means someone leaked an io_u. complain but fix
176 * it up, so we don't stall here.
177 */
178 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
179 log_err("fio: non-busy IO on busy list\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100180 put_io_u(td, io_u);
Jens Axboe0c6e7512007-02-22 11:19:39 +0100181 } else {
182 r = td->io_ops->cancel(td, io_u);
183 if (!r)
184 put_io_u(td, io_u);
185 }
Jens Axboeebac4652005-12-08 15:25:21 +0100186 }
187 }
188
Jens Axboe97601022007-02-18 12:47:29 +0100189 if (td->cur_depth)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100190 r = io_u_queued_complete(td, td->cur_depth, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100191}
192
Jens Axboe906c8d72006-06-13 09:37:56 +0200193/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200194 * Helper to handle the final sync of a file. Works just like the normal
195 * io path, just does everything sync.
196 */
197static int fio_io_sync(struct thread_data *td, struct fio_file *f)
198{
199 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200200 int ret;
201
202 if (!io_u)
203 return 1;
204
205 io_u->ddir = DDIR_SYNC;
206 io_u->file = f;
207
208 if (td_io_prep(td, io_u)) {
209 put_io_u(td, io_u);
210 return 1;
211 }
212
Jens Axboe755200a2007-02-19 13:08:12 +0100213requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200214 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100215 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100216 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe858a3d42006-10-24 14:54:44 +0200217 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200218 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100219 } else if (ret == FIO_Q_QUEUED) {
Jens Axboe49db69a2007-02-21 20:28:14 +0100220 if (io_u_queued_complete(td, 1, NULL) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100221 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100222 } else if (ret == FIO_Q_COMPLETED) {
223 if (io_u->error) {
Jens Axboee1161c32007-02-22 19:36:48 +0100224 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe36167d82007-02-18 05:41:31 +0100225 return 1;
226 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200227
Jens Axboeb2fdda42007-02-20 20:52:51 +0100228 if (io_u_sync_complete(td, io_u, NULL) < 0)
229 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100230 } else if (ret == FIO_Q_BUSY) {
231 if (td_io_commit(td))
232 return 1;
233 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200234 }
235
236 return 0;
237}
238
239/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200240 * The main verify engine. Runs over the writes we previusly submitted,
241 * reads the blocks back in, and checks the crc/md5 of the data.
242 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100243static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100244{
Jens Axboe53cdc682006-10-18 11:50:58 +0200245 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100246 struct io_u *io_u;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100247 int ret, i, min_events;
Jens Axboee5b401d2006-10-18 16:03:40 +0200248
249 /*
250 * sync io first and invalidate cache, to make sure we really
251 * read from disk.
252 */
253 for_each_file(td, f, i) {
Jens Axboeb2fdda42007-02-20 20:52:51 +0100254 if (fio_io_sync(td, f))
255 break;
256 if (file_invalidate_cache(td, f))
257 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200258 }
Jens Axboeebac4652005-12-08 15:25:21 +0100259
Jens Axboeb2fdda42007-02-20 20:52:51 +0100260 if (td->error)
261 return;
262
Jens Axboeebac4652005-12-08 15:25:21 +0100263 td_set_runstate(td, TD_VERIFYING);
264
Jens Axboe36167d82007-02-18 05:41:31 +0100265 io_u = NULL;
266 while (!td->terminate) {
Jens Axboeebac4652005-12-08 15:25:21 +0100267 io_u = __get_io_u(td);
268 if (!io_u)
269 break;
270
Jens Axboe069c2912007-02-21 23:02:39 +0100271 if (runtime_exceeded(td, &io_u->start_time)) {
272 put_io_u(td, io_u);
Jens Axboe53cdc682006-10-18 11:50:58 +0200273 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100274 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200275
Jens Axboe069c2912007-02-21 23:02:39 +0100276 if (get_next_verify(td, io_u)) {
277 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100278 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100279 }
Jens Axboeebac4652005-12-08 15:25:21 +0100280
Jens Axboe069c2912007-02-21 23:02:39 +0100281 if (td_io_prep(td, io_u)) {
282 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100283 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100284 }
Jens Axboe36167d82007-02-18 05:41:31 +0100285requeue:
Jens Axboe45bee282006-10-18 15:26:44 +0200286 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100287
288 switch (ret) {
289 case FIO_Q_COMPLETED:
290 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100291 ret = -io_u->error;
Jens Axboe36167d82007-02-18 05:41:31 +0100292 if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
293 int bytes = io_u->xfer_buflen - io_u->resid;
294
295 io_u->xfer_buflen = io_u->resid;
296 io_u->xfer_buf += bytes;
297 goto requeue;
298 }
Jens Axboe99784632007-02-19 10:06:17 +0100299 ret = io_u_sync_complete(td, io_u, verify_io_u);
Jens Axboe49db69a2007-02-21 20:28:14 +0100300 if (ret < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100301 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100302 continue;
303 case FIO_Q_QUEUED:
304 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100305 case FIO_Q_BUSY:
306 requeue_io_u(td, &io_u);
307 ret = td_io_commit(td);
308 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100309 default:
310 assert(ret < 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100311 td_verror(td, -ret, "td_io_queue");
Jens Axboeebac4652005-12-08 15:25:21 +0100312 break;
313 }
314
Jens Axboe99784632007-02-19 10:06:17 +0100315 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100316 break;
317
Jens Axboe3af6ef32007-02-18 06:57:43 +0100318 /*
319 * if we can queue more, do so. but check if there are
320 * completed io_u's first.
321 */
Jens Axboe97601022007-02-18 12:47:29 +0100322 min_events = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100323 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe3af6ef32007-02-18 06:57:43 +0100324 min_events = 1;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100325
Jens Axboee916b392007-02-20 14:37:26 +0100326 if (td->cur_depth > td->iodepth_low)
327 min_events = td->cur_depth - td->iodepth_low;
328 }
329
Jens Axboe3af6ef32007-02-18 06:57:43 +0100330 /*
331 * Reap required number of io units, if any, and do the
332 * verification on them through the callback handler
333 */
Jens Axboe49db69a2007-02-21 20:28:14 +0100334 if (io_u_queued_complete(td, min_events, verify_io_u) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100335 break;
336 }
337
Jens Axboeebac4652005-12-08 15:25:21 +0100338 if (td->cur_depth)
339 cleanup_pending_aio(td);
340
341 td_set_runstate(td, TD_RUNNING);
342}
343
Jens Axboe32cd46a2006-06-07 13:40:40 +0200344/*
Jens Axboeb990b5c2006-09-14 09:48:22 +0200345 * Not really an io thread, all it does is burn CPU cycles in the specified
346 * manner.
347 */
348static void do_cpuio(struct thread_data *td)
349{
350 struct timeval e;
351 int split = 100 / td->cpuload;
352 int i = 0;
353
354 while (!td->terminate) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100355 fio_gettime(&e, NULL);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200356
357 if (runtime_exceeded(td, &e))
358 break;
359
360 if (!(i % split))
361 __usec_sleep(10000);
362 else
363 usec_sleep(td, 10000);
364
365 i++;
366 }
367}
368
369/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200370 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200371 * and reaps them, checking for rate and errors along the way.
372 */
Jens Axboeebac4652005-12-08 15:25:21 +0100373static void do_io(struct thread_data *td)
374{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100375 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100376 unsigned long usec;
Jens Axboe84585002006-10-19 20:26:22 +0200377 int i, ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100378
Jens Axboe5853e5a2006-06-08 14:41:05 +0200379 td_set_runstate(td, TD_RUNNING);
380
Jens Axboe39514142007-02-12 18:49:58 +0100381 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->io_size) {
Jens Axboe97601022007-02-18 12:47:29 +0100382 struct timeval comp_time;
383 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200384 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100385 struct io_u *io_u;
386
387 if (td->terminate)
388 break;
389
Jens Axboe3d7c3912007-02-19 13:16:12 +0100390 io_u = get_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100391 if (!io_u)
392 break;
393
394 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100395
396 if (runtime_exceeded(td, &s)) {
397 put_io_u(td, io_u);
398 break;
399 }
Jens Axboecec6b552007-02-06 20:15:38 +0100400requeue:
Jens Axboe45bee282006-10-18 15:26:44 +0200401 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100402
403 switch (ret) {
404 case FIO_Q_COMPLETED:
405 if (io_u->error) {
406 ret = io_u->error;
Jens Axboecec6b552007-02-06 20:15:38 +0100407 break;
408 }
Jens Axboe36167d82007-02-18 05:41:31 +0100409 if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
410 int bytes = io_u->xfer_buflen - io_u->resid;
411
412 io_u->xfer_buflen = io_u->resid;
413 io_u->xfer_buf += bytes;
414 goto requeue;
415 }
Jens Axboe97601022007-02-18 12:47:29 +0100416 fio_gettime(&comp_time, NULL);
417 bytes_done = io_u_sync_complete(td, io_u, NULL);
Jens Axboe99784632007-02-19 10:06:17 +0100418 if (bytes_done < 0)
419 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100420 break;
421 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100422 /*
423 * if the engine doesn't have a commit hook,
424 * the io_u is really queued. if it does have such
425 * a hook, it has to call io_u_queued() itself.
426 */
427 if (td->io_ops->commit == NULL)
428 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100429 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100430 case FIO_Q_BUSY:
431 requeue_io_u(td, &io_u);
432 ret = td_io_commit(td);
433 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100434 default:
435 assert(ret < 0);
436 put_io_u(td, io_u);
437 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100438 }
439
Jens Axboe99784632007-02-19 10:06:17 +0100440 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100441 break;
442
Jens Axboe97601022007-02-18 12:47:29 +0100443 /*
444 * See if we need to complete some commands
445 */
Jens Axboe755200a2007-02-19 13:08:12 +0100446 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100447 min_evts = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100448 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe36167d82007-02-18 05:41:31 +0100449 min_evts = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100450
Jens Axboee916b392007-02-20 14:37:26 +0100451 if (td->cur_depth > td->iodepth_low)
452 min_evts = td->cur_depth - td->iodepth_low;
453 }
454
Jens Axboe97601022007-02-18 12:47:29 +0100455 fio_gettime(&comp_time, NULL);
456 bytes_done = io_u_queued_complete(td, min_evts, NULL);
457 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100458 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100459 }
460
Jens Axboe97601022007-02-18 12:47:29 +0100461 if (!bytes_done)
462 continue;
463
Jens Axboeebac4652005-12-08 15:25:21 +0100464 /*
465 * the rate is batched for now, it should work for batches
466 * of completions except the very first one which may look
467 * a little bursty
468 */
Jens Axboe97601022007-02-18 12:47:29 +0100469 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100470
Jens Axboe413dd452007-02-23 09:26:09 +0100471 rate_throttle(td, usec, bytes_done);
Jens Axboeebac4652005-12-08 15:25:21 +0100472
Jens Axboe97601022007-02-18 12:47:29 +0100473 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100474 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100475 terminate_threads(td->groupid, 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100476 td_verror(td, ENODATA, "check_min_rate");
Jens Axboeebac4652005-12-08 15:25:21 +0100477 break;
478 }
479
Jens Axboe9c1f7432007-01-03 20:43:19 +0100480 if (td->thinktime) {
481 unsigned long long b;
482
483 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe48097d52007-02-17 06:30:44 +0100484 if (!(b % td->thinktime_blocks)) {
485 int left;
486
487 if (td->thinktime_spin)
488 __usec_sleep(td->thinktime_spin);
489
490 left = td->thinktime - td->thinktime_spin;
491 if (left)
492 usec_sleep(td, left);
493 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100494 }
Jens Axboeebac4652005-12-08 15:25:21 +0100495 }
496
Jens Axboe4d2413c2006-11-23 11:58:59 +0100497 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100498 struct fio_file *f;
499
Jens Axboe84585002006-10-19 20:26:22 +0200500 if (td->cur_depth)
501 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100502
Jens Axboe84585002006-10-19 20:26:22 +0200503 if (should_fsync(td) && td->end_fsync) {
504 td_set_runstate(td, TD_FSYNCING);
505 for_each_file(td, f, i)
Jens Axboe858a3d42006-10-24 14:54:44 +0200506 fio_io_sync(td, f);
Jens Axboe84585002006-10-19 20:26:22 +0200507 }
Jens Axboe5853e5a2006-06-08 14:41:05 +0200508 }
Jens Axboeebac4652005-12-08 15:25:21 +0100509}
510
Jens Axboeebac4652005-12-08 15:25:21 +0100511static void cleanup_io_u(struct thread_data *td)
512{
513 struct list_head *entry, *n;
514 struct io_u *io_u;
515
516 list_for_each_safe(entry, n, &td->io_u_freelist) {
517 io_u = list_entry(entry, struct io_u, list);
518
519 list_del(&io_u->list);
520 free(io_u);
521 }
522
Jens Axboe2f9ade32006-10-20 11:25:52 +0200523 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100524}
525
Jens Axboe6b9cea22006-10-30 17:00:24 +0100526/*
527 * "randomly" fill the buffer contents
528 */
Jens Axboe66eeb292006-11-01 08:35:44 +0100529static void fill_rand_buf(struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100530{
Jens Axboe66eeb292006-11-01 08:35:44 +0100531 int *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100532
533 while ((void *) ptr - io_u->buf < max_bs) {
534 *ptr = rand() * 0x9e370001;
535 ptr++;
536 }
537}
538
Jens Axboeebac4652005-12-08 15:25:21 +0100539static int init_io_u(struct thread_data *td)
540{
541 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100542 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100543 int i, max_units;
544 char *p;
545
Jens Axboe2866c822006-10-09 15:57:48 +0200546 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200547 return 0;
548
Jens Axboe2866c822006-10-09 15:57:48 +0200549 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100550 max_units = 1;
551 else
552 max_units = td->iodepth;
553
Jens Axboea00735e2006-11-03 08:58:08 +0100554 max_bs = max(td->max_bs[DDIR_READ], td->max_bs[DDIR_WRITE]);
Jens Axboe74b025b2006-12-19 15:18:14 +0100555 td->orig_buffer_size = max_bs * max_units;
556
Jens Axboed0bdaf42006-12-20 14:40:44 +0100557 if (td->mem_type == MEM_SHMHUGE || td->mem_type == MEM_MMAPHUGE)
Jens Axboe56bb17f2006-12-20 20:27:36 +0100558 td->orig_buffer_size = (td->orig_buffer_size + td->hugepage_size - 1) & ~(td->hugepage_size - 1);
Jens Axboe74b025b2006-12-19 15:18:14 +0100559 else
Jens Axboe29d610e2007-02-06 13:25:33 +0100560 td->orig_buffer_size += page_mask;
Jens Axboeebac4652005-12-08 15:25:21 +0100561
Jens Axboe2f9ade32006-10-20 11:25:52 +0200562 if (allocate_io_mem(td))
563 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100564
Jens Axboeebac4652005-12-08 15:25:21 +0100565 p = ALIGN(td->orig_buffer);
566 for (i = 0; i < max_units; i++) {
567 io_u = malloc(sizeof(*io_u));
568 memset(io_u, 0, sizeof(*io_u));
569 INIT_LIST_HEAD(&io_u->list);
570
Jens Axboea00735e2006-11-03 08:58:08 +0100571 io_u->buf = p + max_bs * i;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100572 if (td_write(td) || td_rw(td))
Jens Axboea00735e2006-11-03 08:58:08 +0100573 fill_rand_buf(io_u, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100574
Jens Axboeb1ff3402006-02-17 11:35:58 +0100575 io_u->index = i;
Jens Axboe0c6e7512007-02-22 11:19:39 +0100576 io_u->flags = IO_U_F_FREE;
Jens Axboeebac4652005-12-08 15:25:21 +0100577 list_add(&io_u->list, &td->io_u_freelist);
578 }
579
Jens Axboe433afcb2007-02-22 10:39:01 +0100580 io_u_init_timeout();
581
Jens Axboeebac4652005-12-08 15:25:21 +0100582 return 0;
583}
584
Jens Axboeda867742006-06-06 10:39:10 -0700585static int switch_ioscheduler(struct thread_data *td)
586{
587 char tmp[256], tmp2[128];
588 FILE *f;
589 int ret;
590
Jens Axboef48b4672006-10-27 11:30:07 +0200591 if (td->io_ops->flags & FIO_CPUIO)
592 return 0;
593
Jens Axboeda867742006-06-06 10:39:10 -0700594 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
595
596 f = fopen(tmp, "r+");
597 if (!f) {
Jens Axboee1161c32007-02-22 19:36:48 +0100598 td_verror(td, errno, "fopen");
Jens Axboeda867742006-06-06 10:39:10 -0700599 return 1;
600 }
601
602 /*
603 * Set io scheduler.
604 */
605 ret = fwrite(td->ioscheduler, strlen(td->ioscheduler), 1, f);
606 if (ferror(f) || ret != 1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100607 td_verror(td, errno, "fwrite");
Jens Axboeda867742006-06-06 10:39:10 -0700608 fclose(f);
609 return 1;
610 }
611
612 rewind(f);
613
614 /*
615 * Read back and check that the selected scheduler is now the default.
616 */
617 ret = fread(tmp, 1, sizeof(tmp), f);
618 if (ferror(f) || ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100619 td_verror(td, errno, "fread");
Jens Axboeda867742006-06-06 10:39:10 -0700620 fclose(f);
621 return 1;
622 }
623
624 sprintf(tmp2, "[%s]", td->ioscheduler);
625 if (!strstr(tmp, tmp2)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200626 log_err("fio: io scheduler %s not found\n", td->ioscheduler);
Jens Axboee1161c32007-02-22 19:36:48 +0100627 td_verror(td, EINVAL, "iosched_switch");
Jens Axboeda867742006-06-06 10:39:10 -0700628 fclose(f);
629 return 1;
630 }
631
632 fclose(f);
633 return 0;
634}
635
Jens Axboeebac4652005-12-08 15:25:21 +0100636static void clear_io_state(struct thread_data *td)
637{
Jens Axboe53cdc682006-10-18 11:50:58 +0200638 struct fio_file *f;
639 int i;
Jens Axboeebac4652005-12-08 15:25:21 +0100640
Jens Axboe079ad092007-02-20 13:58:20 +0100641 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100642 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100643 td->zone_bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100644
Jens Axboec1324df2007-02-19 19:06:41 +0100645 td->last_was_sync = 0;
646
Jens Axboe53cdc682006-10-18 11:50:58 +0200647 for_each_file(td, f, i) {
Jens Axboec1324df2007-02-19 19:06:41 +0100648 f->last_completed_pos = 0;
649
Jens Axboe53cdc682006-10-18 11:50:58 +0200650 f->last_pos = 0;
651 if (td->io_ops->flags & FIO_SYNCIO)
652 lseek(f->fd, SEEK_SET, 0);
653
654 if (f->file_map)
655 memset(f->file_map, 0, f->num_maps * sizeof(long));
656 }
Jens Axboeebac4652005-12-08 15:25:21 +0100657}
658
Jens Axboe906c8d72006-06-13 09:37:56 +0200659/*
660 * Entry point for the thread based jobs. The process based jobs end up
661 * here as well, after a little setup.
662 */
Jens Axboeebac4652005-12-08 15:25:21 +0100663static void *thread_main(void *data)
664{
Jens Axboe69008992006-11-24 13:12:56 +0100665 unsigned long long runtime[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100666 struct thread_data *td = data;
Jens Axboeebac4652005-12-08 15:25:21 +0100667
668 if (!td->use_thread)
669 setsid();
670
671 td->pid = getpid();
672
Jens Axboeaea47d42006-05-26 19:27:29 +0200673 INIT_LIST_HEAD(&td->io_u_freelist);
674 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100675 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200676 INIT_LIST_HEAD(&td->io_hist_list);
677 INIT_LIST_HEAD(&td->io_log_list);
678
Jens Axboeebac4652005-12-08 15:25:21 +0100679 if (init_io_u(td))
680 goto err;
681
682 if (fio_setaffinity(td) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100683 td_verror(td, errno, "cpu_set_affinity");
Jens Axboeebac4652005-12-08 15:25:21 +0100684 goto err;
685 }
686
Jens Axboeaea47d42006-05-26 19:27:29 +0200687 if (init_iolog(td))
688 goto err;
689
Jens Axboeebac4652005-12-08 15:25:21 +0100690 if (td->ioprio) {
691 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100692 td_verror(td, errno, "ioprio_set");
Jens Axboeebac4652005-12-08 15:25:21 +0100693 goto err;
694 }
695 }
696
Jens Axboe1056eaa2006-07-13 10:33:45 -0700697 if (nice(td->nice) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100698 td_verror(td, errno, "nice");
Jens Axboeb6f4d882006-06-02 10:32:51 +0200699 goto err;
700 }
701
Jens Axboe75154842006-06-01 13:56:09 +0200702 if (init_random_state(td))
703 goto err;
704
Jens Axboe56f94982006-10-24 09:33:42 +0200705 if (td->ioscheduler && switch_ioscheduler(td))
706 goto err;
Jens Axboeda867742006-06-06 10:39:10 -0700707
Jens Axboe75154842006-06-01 13:56:09 +0200708 td_set_runstate(td, TD_INITIALIZED);
Jens Axboebbfd6b02006-06-07 19:42:54 +0200709 fio_sem_up(&startup_sem);
710 fio_sem_down(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100711
Jens Axboe53cdc682006-10-18 11:50:58 +0200712 if (!td->create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100713 goto err;
Jens Axboe21972cd2006-11-23 12:39:16 +0100714 if (open_files(td))
715 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100716
Jens Axboe7d6c5282007-02-05 10:52:10 +0100717 /*
718 * Do this late, as some IO engines would like to have the
719 * files setup prior to initializing structures.
720 */
721 if (td_io_init(td))
722 goto err;
723
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100724 if (td->exec_prerun) {
725 if (system(td->exec_prerun) < 0)
726 goto err;
727 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200728
Jens Axboe69008992006-11-24 13:12:56 +0100729 fio_gettime(&td->epoch, NULL);
Jens Axboe433afcb2007-02-22 10:39:01 +0100730 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
Jens Axboe079ad092007-02-20 13:58:20 +0100731 getrusage(RUSAGE_SELF, &td->ts.ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100732
733 runtime[0] = runtime[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100734 while (td->loops--) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100735 fio_gettime(&td->start, NULL);
Jens Axboe079ad092007-02-20 13:58:20 +0100736 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +0100737
738 if (td->ratemin)
Jens Axboe079ad092007-02-20 13:58:20 +0100739 memcpy(&td->lastrate, &td->ts.stat_sample_time, sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +0100740
741 clear_io_state(td);
742 prune_io_piece_log(td);
743
Jens Axboe2866c822006-10-09 15:57:48 +0200744 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200745 do_cpuio(td);
746 else
747 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100748
Jens Axboe413dd452007-02-23 09:26:09 +0100749 if (td_read(td) && td->io_bytes[DDIR_READ])
750 runtime[DDIR_READ] += utime_since_now(&td->start);
751 if (td_write(td) && td->io_bytes[DDIR_WRITE])
752 runtime[DDIR_WRITE] += utime_since_now(&td->start);
753
Jens Axboeebac4652005-12-08 15:25:21 +0100754 if (td->error || td->terminate)
755 break;
756
757 if (td->verify == VERIFY_NONE)
758 continue;
759
760 clear_io_state(td);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100761 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100762
763 do_verify(td);
764
Jens Axboe69008992006-11-24 13:12:56 +0100765 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100766
767 if (td->error || td->terminate)
768 break;
769 }
770
Jens Axboe36dff962006-11-24 13:29:20 +0100771 update_rusage_stat(td);
Jens Axboe69008992006-11-24 13:12:56 +0100772 fio_gettime(&td->end_time, NULL);
773 td->runtime[0] = runtime[0] / 1000;
774 td->runtime[1] = runtime[1] / 1000;
775
Jens Axboe079ad092007-02-20 13:58:20 +0100776 if (td->ts.bw_log)
777 finish_log(td, td->ts.bw_log, "bw");
778 if (td->ts.slat_log)
779 finish_log(td, td->ts.slat_log, "slat");
780 if (td->ts.clat_log)
781 finish_log(td, td->ts.clat_log, "clat");
Jens Axboe076efc72006-10-27 11:24:25 +0200782 if (td->write_iolog_file)
Jens Axboe843a7412006-06-01 21:14:21 -0700783 write_iolog_close(td);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100784 if (td->exec_postrun) {
785 if (system(td->exec_postrun) < 0)
786 log_err("fio: postrun %s failed\n", td->exec_postrun);
787 }
Jens Axboeebac4652005-12-08 15:25:21 +0100788
789 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100790 terminate_threads(td->groupid, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100791
792err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100793 if (td->error)
794 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200795 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200796 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100797 cleanup_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100798 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +0100799 return (void *) (unsigned long) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +0100800}
801
Jens Axboe906c8d72006-06-13 09:37:56 +0200802/*
803 * We cannot pass the td data into a forked process, so attach the td and
804 * pass it to the thread worker.
805 */
Jens Axboea6418142007-02-17 04:47:18 +0100806static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100807{
808 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100809 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100810
811 data = shmat(shmid, NULL, 0);
812 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100813 int __err = errno;
814
Jens Axboeebac4652005-12-08 15:25:21 +0100815 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100816 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100817 }
818
819 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100820 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100821 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +0100822 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100823}
824
Jens Axboe906c8d72006-06-13 09:37:56 +0200825/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200826 * Run over the job map and reap the threads that have exited, if any.
827 */
Jens Axboeebac4652005-12-08 15:25:21 +0100828static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
829{
Jens Axboe34572e22006-10-20 09:33:18 +0200830 struct thread_data *td;
Jens Axboefab6aa72007-02-17 06:19:24 +0100831 int i, cputhreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100832
833 /*
834 * reap exited threads (TD_EXITED -> TD_REAPED)
835 */
Jens Axboe4d2413c2006-11-23 11:58:59 +0100836 pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200837 for_each_td(td, i) {
Jens Axboe3707f452007-02-22 12:26:57 +0100838 int flags = 0;
Jens Axboea2f77c92007-02-22 11:53:00 +0100839
Jens Axboe84585002006-10-19 20:26:22 +0200840 /*
841 * ->io_ops is NULL for a thread that has closed its
842 * io engine
843 */
844 if (td->io_ops && td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200845 cputhreads++;
846
Jens Axboea2f77c92007-02-22 11:53:00 +0100847 if (!td->pid || td->runstate == TD_REAPED)
848 continue;
Jens Axboe3707f452007-02-22 12:26:57 +0100849 if (td->use_thread) {
850 if (td->runstate == TD_EXITED) {
851 td_set_runstate(td, TD_REAPED);
852 goto reaped;
853 }
854 continue;
855 }
Jens Axboea2f77c92007-02-22 11:53:00 +0100856
857 flags = WNOHANG;
858 if (td->runstate == TD_EXITED)
859 flags = 0;
860
861 /*
862 * check if someone quit or got killed in an unusual way
863 */
864 ret = waitpid(td->pid, &status, flags);
Jens Axboe3707f452007-02-22 12:26:57 +0100865 if (ret < 0) {
Jens Axboea2f77c92007-02-22 11:53:00 +0100866 if (errno == ECHILD) {
867 log_err("fio: pid=%d disappeared %d\n", td->pid, td->runstate);
868 td_set_runstate(td, TD_REAPED);
869 goto reaped;
870 }
871 perror("waitpid");
872 } else if (ret == td->pid) {
873 if (WIFSIGNALED(status)) {
Jens Axboefab6aa72007-02-17 06:19:24 +0100874 int sig = WTERMSIG(status);
875
876 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
877 td_set_runstate(td, TD_REAPED);
878 goto reaped;
879 }
Jens Axboea2f77c92007-02-22 11:53:00 +0100880 if (WIFEXITED(status)) {
881 if (WEXITSTATUS(status) && !td->error)
882 td->error = WEXITSTATUS(status);
Jens Axboefab6aa72007-02-17 06:19:24 +0100883
Jens Axboea2f77c92007-02-22 11:53:00 +0100884 td_set_runstate(td, TD_REAPED);
885 goto reaped;
Jens Axboea6418142007-02-17 04:47:18 +0100886 }
887 }
Jens Axboeebac4652005-12-08 15:25:21 +0100888
Jens Axboea2f77c92007-02-22 11:53:00 +0100889 /*
890 * thread is not dead, continue
891 */
892 continue;
Jens Axboefab6aa72007-02-17 06:19:24 +0100893reaped:
Jens Axboe3707f452007-02-22 12:26:57 +0100894 if (td->use_thread) {
895 long ret;
896
897 if (pthread_join(td->thread, (void *) &ret))
898 perror("pthread_join");
899 }
900
Jens Axboeebac4652005-12-08 15:25:21 +0100901 (*nr_running)--;
902 (*m_rate) -= td->ratemin;
903 (*t_rate) -= td->rate;
Jens Axboea2f77c92007-02-22 11:53:00 +0100904
905 if (td->error)
906 exit_value++;
Jens Axboeebac4652005-12-08 15:25:21 +0100907 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200908
Jens Axboe4d2413c2006-11-23 11:58:59 +0100909 if (*nr_running == cputhreads && !pending)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100910 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100911}
912
Jens Axboe906c8d72006-06-13 09:37:56 +0200913/*
914 * Main function for kicking off and reaping jobs, as needed.
915 */
Jens Axboeebac4652005-12-08 15:25:21 +0100916static void run_threads(void)
917{
Jens Axboeebac4652005-12-08 15:25:21 +0100918 struct thread_data *td;
919 unsigned long spent;
920 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +0200921
Jens Axboe2f9ade32006-10-20 11:25:52 +0200922 if (fio_pin_memory())
923 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100924
Jens Axboec6ae0a52006-06-12 11:04:44 +0200925 if (!terse_output) {
926 printf("Starting %d thread%s\n", thread_number, thread_number > 1 ? "s" : "");
927 fflush(stdout);
928 }
Jens Axboec04f7ec2006-05-31 10:13:16 +0200929
Jens Axboe4efa9702006-05-31 11:56:49 +0200930 signal(SIGINT, sig_handler);
931 signal(SIGALRM, sig_handler);
932
Jens Axboeebac4652005-12-08 15:25:21 +0100933 todo = thread_number;
934 nr_running = 0;
935 nr_started = 0;
936 m_rate = t_rate = 0;
937
Jens Axboe34572e22006-10-20 09:33:18 +0200938 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +0200939 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100940
Jens Axboe380cf262007-01-11 14:01:27 +0100941 if (!td->create_serialize) {
942 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100943 continue;
Jens Axboe380cf262007-01-11 14:01:27 +0100944 }
Jens Axboeebac4652005-12-08 15:25:21 +0100945
946 /*
947 * do file setup here so it happens sequentially,
948 * we don't want X number of threads getting their
949 * client data interspersed on disk
950 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200951 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +0100952 exit_value++;
953 if (td->error)
954 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +0100955 td_set_runstate(td, TD_REAPED);
956 todo--;
957 }
Jens Axboe380cf262007-01-11 14:01:27 +0100958
959 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100960 }
961
Jens Axboea2f77c92007-02-22 11:53:00 +0100962 set_genesis_time();
963
Jens Axboeebac4652005-12-08 15:25:21 +0100964 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +0200965 struct thread_data *map[MAX_JOBS];
966 struct timeval this_start;
967 int this_jobs = 0, left;
968
Jens Axboeebac4652005-12-08 15:25:21 +0100969 /*
970 * create threads (TD_NOT_CREATED -> TD_CREATED)
971 */
Jens Axboe34572e22006-10-20 09:33:18 +0200972 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +0100973 if (td->runstate != TD_NOT_CREATED)
974 continue;
975
976 /*
977 * never got a chance to start, killed by other
978 * thread for some reason
979 */
980 if (td->terminate) {
981 todo--;
982 continue;
983 }
984
985 if (td->start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +0200986 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +0100987
988 if (td->start_delay * 1000 > spent)
989 continue;
990 }
991
992 if (td->stonewall && (nr_started || nr_running))
993 break;
994
Jens Axboe75154842006-06-01 13:56:09 +0200995 /*
996 * Set state to created. Thread will transition
997 * to TD_INITIALIZED when it's done setting up.
998 */
Jens Axboeebac4652005-12-08 15:25:21 +0100999 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +02001000 map[this_jobs++] = td;
Jens Axboebbfd6b02006-06-07 19:42:54 +02001001 fio_sem_init(&startup_sem, 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001002 nr_started++;
1003
1004 if (td->use_thread) {
1005 if (pthread_create(&td->thread, NULL, thread_main, td)) {
1006 perror("thread_create");
1007 nr_started--;
1008 }
1009 } else {
1010 if (fork())
Jens Axboebbfd6b02006-06-07 19:42:54 +02001011 fio_sem_down(&startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +01001012 else {
Jens Axboea6418142007-02-17 04:47:18 +01001013 int ret = fork_main(shm_id, i);
1014
1015 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001016 }
1017 }
1018 }
1019
1020 /*
Jens Axboe75154842006-06-01 13:56:09 +02001021 * Wait for the started threads to transition to
1022 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +01001023 */
Jens Axboe02bcaa82006-11-24 10:42:00 +01001024 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +02001025 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +01001026 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001027 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1028 break;
1029
1030 usleep(100000);
1031
1032 for (i = 0; i < this_jobs; i++) {
1033 td = map[i];
1034 if (!td)
1035 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001036 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001037 map[i] = NULL;
1038 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001039 } else if (td->runstate >= TD_EXITED) {
1040 map[i] = NULL;
1041 left--;
1042 todo--;
1043 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001044 }
1045 }
1046 }
1047
1048 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001049 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001050 for (i = 0; i < this_jobs; i++) {
1051 td = map[i];
1052 if (!td)
1053 continue;
1054 kill(td->pid, SIGTERM);
1055 }
1056 break;
1057 }
1058
1059 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001060 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001061 */
Jens Axboe34572e22006-10-20 09:33:18 +02001062 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001063 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001064 continue;
1065
1066 td_set_runstate(td, TD_RUNNING);
1067 nr_running++;
1068 nr_started--;
1069 m_rate += td->ratemin;
1070 t_rate += td->rate;
Jens Axboe75154842006-06-01 13:56:09 +02001071 todo--;
Jens Axboebbfd6b02006-06-07 19:42:54 +02001072 fio_sem_up(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001073 }
1074
1075 reap_threads(&nr_running, &t_rate, &m_rate);
1076
1077 if (todo)
1078 usleep(100000);
1079 }
1080
1081 while (nr_running) {
1082 reap_threads(&nr_running, &t_rate, &m_rate);
1083 usleep(10000);
1084 }
1085
1086 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001087 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001088}
1089
Jens Axboeebac4652005-12-08 15:25:21 +01001090int main(int argc, char *argv[])
1091{
Jens Axboe29d610e2007-02-06 13:25:33 +01001092 long ps;
1093
Jens Axboedbe11252007-02-11 00:19:51 +01001094 /*
1095 * We need locale for number printing, if it isn't set then just
1096 * go with the US format.
1097 */
1098 if (!getenv("LC_NUMERIC"))
1099 setlocale(LC_NUMERIC, "en_US");
1100
Jens Axboeebac4652005-12-08 15:25:21 +01001101 if (parse_options(argc, argv))
1102 return 1;
1103
1104 if (!thread_number) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001105 log_err("Nothing to do\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001106 return 1;
1107 }
1108
Jens Axboe29d610e2007-02-06 13:25:33 +01001109 ps = sysconf(_SC_PAGESIZE);
1110 if (ps < 0) {
1111 log_err("Failed to get page size\n");
1112 return 1;
1113 }
1114
1115 page_mask = ps - 1;
1116
Jens Axboebb3884d2007-01-17 17:23:11 +11001117 if (write_bw_log) {
1118 setup_log(&agg_io_log[DDIR_READ]);
1119 setup_log(&agg_io_log[DDIR_WRITE]);
1120 }
1121
Jens Axboea2f77c92007-02-22 11:53:00 +01001122 set_genesis_time();
1123
Jens Axboeebac4652005-12-08 15:25:21 +01001124 disk_util_timer_arm();
1125
1126 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001127
Jens Axboebb3884d2007-01-17 17:23:11 +11001128 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001129 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001130 if (write_bw_log) {
1131 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1132 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1133 }
1134 }
Jens Axboeebac4652005-12-08 15:25:21 +01001135
Jens Axboe437c9b72007-02-13 18:20:37 +01001136 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001137}