blob: dd52626469a0358cdbacc062d02058b19f148825 [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 Axboeebac4652005-12-08 15:25:21 +010029#include <assert.h>
Jens Axboeebac4652005-12-08 15:25:21 +010030#include <sys/stat.h>
31#include <sys/wait.h>
32#include <sys/ipc.h>
33#include <sys/shm.h>
34#include <sys/ioctl.h>
35#include <sys/mman.h>
36
37#include "fio.h"
38#include "os.h"
39
40#define MASK (4095)
41
42#define ALIGN(buf) (char *) (((unsigned long) (buf) + MASK) & ~(MASK))
43
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 Axboeebac4652005-12-08 15:25:21 +010050
51#define TERMINATE_ALL (-1)
Jens Axboe75154842006-06-01 13:56:09 +020052#define JOB_START_TIMEOUT (5 * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +010053
54static void terminate_threads(int group_id)
55{
Jens Axboe34572e22006-10-20 09:33:18 +020056 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010057 int i;
58
Jens Axboe34572e22006-10-20 09:33:18 +020059 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010060 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
61 td->terminate = 1;
62 td->start_delay = 0;
63 }
64 }
65}
66
67static void sig_handler(int sig)
68{
69 switch (sig) {
70 case SIGALRM:
71 update_io_ticks();
72 disk_util_timer_arm();
73 print_thread_status();
74 break;
75 default:
76 printf("\nfio: terminating on signal\n");
77 fflush(stdout);
78 terminate_threads(TERMINATE_ALL);
79 break;
80 }
81}
82
Jens Axboe906c8d72006-06-13 09:37:56 +020083/*
Jens Axboe906c8d72006-06-13 09:37:56 +020084 * Check if we are above the minimum rate given.
85 */
Jens Axboeebac4652005-12-08 15:25:21 +010086static int check_min_rate(struct thread_data *td, struct timeval *now)
87{
88 unsigned long spent;
89 unsigned long rate;
90 int ddir = td->ddir;
91
92 /*
93 * allow a 2 second settle period in the beginning
94 */
95 if (mtime_since(&td->start, now) < 2000)
96 return 0;
97
98 /*
99 * if rate blocks is set, sample is running
100 */
101 if (td->rate_bytes) {
102 spent = mtime_since(&td->lastrate, now);
103 if (spent < td->ratecycle)
104 return 0;
105
106 rate = (td->this_io_bytes[ddir] - td->rate_bytes) / spent;
107 if (rate < td->ratemin) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100108 fprintf(f_out, "%s: min rate %u not met, got %luKiB/sec\n", td->name, td->ratemin, rate);
Jens Axboeebac4652005-12-08 15:25:21 +0100109 return 1;
110 }
111 }
112
113 td->rate_bytes = td->this_io_bytes[ddir];
114 memcpy(&td->lastrate, now, sizeof(*now));
115 return 0;
116}
117
118static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
119{
120 if (!td->timeout)
121 return 0;
122 if (mtime_since(&td->epoch, t) >= td->timeout * 1000)
123 return 1;
124
125 return 0;
126}
127
Jens Axboeebac4652005-12-08 15:25:21 +0100128static inline void td_set_runstate(struct thread_data *td, int runstate)
129{
Jens Axboeebac4652005-12-08 15:25:21 +0100130 td->runstate = runstate;
131}
132
Jens Axboe53cdc682006-10-18 11:50:58 +0200133static struct fio_file *get_next_file(struct thread_data *td)
134{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200135 unsigned int old_next_file = td->next_file;
Jens Axboeb2a15192006-10-18 14:10:42 +0200136 struct fio_file *f;
Jens Axboe53cdc682006-10-18 11:50:58 +0200137
Jens Axboeb2a15192006-10-18 14:10:42 +0200138 do {
139 f = &td->files[td->next_file];
140
141 td->next_file++;
142 if (td->next_file >= td->nr_files)
143 td->next_file = 0;
144
145 if (f->fd != -1)
146 break;
147
148 f = NULL;
149 } while (td->next_file != old_next_file);
Jens Axboe53cdc682006-10-18 11:50:58 +0200150
151 return f;
152}
153
Jens Axboe906c8d72006-06-13 09:37:56 +0200154/*
155 * When job exits, we can cancel the in-flight IO if we are using async
156 * io. Attempt to do so.
157 */
Jens Axboeebac4652005-12-08 15:25:21 +0100158static void cleanup_pending_aio(struct thread_data *td)
159{
160 struct timespec ts = { .tv_sec = 0, .tv_nsec = 0};
161 struct list_head *entry, *n;
162 struct io_completion_data icd;
163 struct io_u *io_u;
164 int r;
165
166 /*
167 * get immediately available events, if any
168 */
Jens Axboe45bee282006-10-18 15:26:44 +0200169 r = td_io_getevents(td, 0, td->cur_depth, &ts);
Jens Axboeebac4652005-12-08 15:25:21 +0100170 if (r > 0) {
171 icd.nr = r;
172 ios_completed(td, &icd);
173 }
174
175 /*
176 * now cancel remaining active events
177 */
Jens Axboe2866c822006-10-09 15:57:48 +0200178 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100179 list_for_each_safe(entry, n, &td->io_u_busylist) {
180 io_u = list_entry(entry, struct io_u, list);
181
Jens Axboe2866c822006-10-09 15:57:48 +0200182 r = td->io_ops->cancel(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100183 if (!r)
184 put_io_u(td, io_u);
185 }
186 }
187
188 if (td->cur_depth) {
Jens Axboe45bee282006-10-18 15:26:44 +0200189 r = td_io_getevents(td, td->cur_depth, td->cur_depth, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100190 if (r > 0) {
191 icd.nr = r;
192 ios_completed(td, &icd);
193 }
194 }
195}
196
Jens Axboe906c8d72006-06-13 09:37:56 +0200197/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200198 * Helper to handle the final sync of a file. Works just like the normal
199 * io path, just does everything sync.
200 */
201static int fio_io_sync(struct thread_data *td, struct fio_file *f)
202{
203 struct io_u *io_u = __get_io_u(td);
204 struct io_completion_data icd;
205 int ret;
206
207 if (!io_u)
208 return 1;
209
210 io_u->ddir = DDIR_SYNC;
211 io_u->file = f;
212
213 if (td_io_prep(td, io_u)) {
214 put_io_u(td, io_u);
215 return 1;
216 }
217
218 ret = td_io_queue(td, io_u);
219 if (ret) {
Jens Axboe353a7e02006-10-25 09:16:07 +0200220 td_verror(td, io_u->error);
Jens Axboe858a3d42006-10-24 14:54:44 +0200221 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200222 return 1;
223 }
224
225 ret = td_io_getevents(td, 1, td->cur_depth, NULL);
226 if (ret < 0) {
Jens Axboe353a7e02006-10-25 09:16:07 +0200227 td_verror(td, ret);
Jens Axboe858a3d42006-10-24 14:54:44 +0200228 return 1;
229 }
230
231 icd.nr = ret;
232 ios_completed(td, &icd);
233 if (icd.error) {
234 td_verror(td, icd.error);
235 return 1;
236 }
237
238 return 0;
239}
240
241/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200242 * The main verify engine. Runs over the writes we previusly submitted,
243 * reads the blocks back in, and checks the crc/md5 of the data.
244 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100245static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100246{
Jens Axboeebac4652005-12-08 15:25:21 +0100247 struct io_u *io_u, *v_io_u = NULL;
248 struct io_completion_data icd;
Jens Axboe53cdc682006-10-18 11:50:58 +0200249 struct fio_file *f;
Jens Axboee5b401d2006-10-18 16:03:40 +0200250 int ret, i;
251
252 /*
253 * sync io first and invalidate cache, to make sure we really
254 * read from disk.
255 */
256 for_each_file(td, f, i) {
Jens Axboe858a3d42006-10-24 14:54:44 +0200257 fio_io_sync(td, f);
Jens Axboee5b401d2006-10-18 16:03:40 +0200258 file_invalidate_cache(td, f);
259 }
Jens Axboeebac4652005-12-08 15:25:21 +0100260
261 td_set_runstate(td, TD_VERIFYING);
262
263 do {
264 if (td->terminate)
265 break;
266
Jens Axboeebac4652005-12-08 15:25:21 +0100267 io_u = __get_io_u(td);
268 if (!io_u)
269 break;
270
Jens Axboe02bcaa82006-11-24 10:42:00 +0100271 if (runtime_exceeded(td, &io_u->start_time)) {
272 put_io_u(td, io_u);
273 break;
274 }
275
Jens Axboeaea47d42006-05-26 19:27:29 +0200276 if (get_next_verify(td, io_u)) {
Jens Axboeebac4652005-12-08 15:25:21 +0100277 put_io_u(td, io_u);
278 break;
279 }
280
Jens Axboe53cdc682006-10-18 11:50:58 +0200281 f = get_next_file(td);
282 if (!f)
283 break;
284
285 io_u->file = f;
286
Jens Axboeaea47d42006-05-26 19:27:29 +0200287 if (td_io_prep(td, io_u)) {
Jens Axboeebac4652005-12-08 15:25:21 +0100288 put_io_u(td, io_u);
289 break;
290 }
291
Jens Axboe45bee282006-10-18 15:26:44 +0200292 ret = td_io_queue(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100293 if (ret) {
Jens Axboe353a7e02006-10-25 09:16:07 +0200294 td_verror(td, io_u->error);
Jens Axboeebac4652005-12-08 15:25:21 +0100295 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100296 break;
297 }
298
299 /*
300 * we have one pending to verify, do that while
301 * we are doing io on the next one
302 */
303 if (do_io_u_verify(td, &v_io_u))
304 break;
305
Jens Axboe45bee282006-10-18 15:26:44 +0200306 ret = td_io_getevents(td, 1, 1, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100307 if (ret != 1) {
308 if (ret < 0)
309 td_verror(td, ret);
310 break;
311 }
312
Jens Axboe2866c822006-10-09 15:57:48 +0200313 v_io_u = td->io_ops->event(td, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100314 icd.nr = 1;
315 icd.error = 0;
Jens Axboe02bcaa82006-11-24 10:42:00 +0100316 fio_gettime(&icd.time, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100317 io_completed(td, v_io_u, &icd);
318
319 if (icd.error) {
320 td_verror(td, icd.error);
321 put_io_u(td, v_io_u);
322 v_io_u = NULL;
323 break;
324 }
325
Jens Axboeebac4652005-12-08 15:25:21 +0100326 /*
327 * if we can't submit more io, we need to verify now
328 */
329 if (queue_full(td) && do_io_u_verify(td, &v_io_u))
330 break;
331
332 } while (1);
333
334 do_io_u_verify(td, &v_io_u);
335
336 if (td->cur_depth)
337 cleanup_pending_aio(td);
338
339 td_set_runstate(td, TD_RUNNING);
340}
341
Jens Axboe32cd46a2006-06-07 13:40:40 +0200342/*
Jens Axboeb990b5c2006-09-14 09:48:22 +0200343 * Not really an io thread, all it does is burn CPU cycles in the specified
344 * manner.
345 */
346static void do_cpuio(struct thread_data *td)
347{
348 struct timeval e;
349 int split = 100 / td->cpuload;
350 int i = 0;
351
352 while (!td->terminate) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100353 fio_gettime(&e, NULL);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200354
355 if (runtime_exceeded(td, &e))
356 break;
357
358 if (!(i % split))
359 __usec_sleep(10000);
360 else
361 usec_sleep(td, 10000);
362
363 i++;
364 }
365}
366
367/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200368 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200369 * and reaps them, checking for rate and errors along the way.
370 */
Jens Axboeebac4652005-12-08 15:25:21 +0100371static void do_io(struct thread_data *td)
372{
373 struct io_completion_data icd;
Jens Axboe02bcaa82006-11-24 10:42:00 +0100374 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100375 unsigned long usec;
Jens Axboe53cdc682006-10-18 11:50:58 +0200376 struct fio_file *f;
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 Axboeebac4652005-12-08 15:25:21 +0100381 while (td->this_io_bytes[td->ddir] < td->io_size) {
Jens Axboeebac4652005-12-08 15:25:21 +0100382 struct timespec *timeout;
Jens Axboe84585002006-10-19 20:26:22 +0200383 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100384 struct io_u *io_u;
385
386 if (td->terminate)
387 break;
388
Jens Axboe53cdc682006-10-18 11:50:58 +0200389 f = get_next_file(td);
390 if (!f)
391 break;
392
393 io_u = get_io_u(td, f);
Jens Axboeebac4652005-12-08 15:25:21 +0100394 if (!io_u)
395 break;
396
397 memcpy(&s, &io_u->start_time, sizeof(s));
398
Jens Axboe45bee282006-10-18 15:26:44 +0200399 ret = td_io_queue(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100400 if (ret) {
Jens Axboe353a7e02006-10-25 09:16:07 +0200401 td_verror(td, io_u->error);
Jens Axboeebac4652005-12-08 15:25:21 +0100402 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100403 break;
404 }
405
406 add_slat_sample(td, io_u->ddir, mtime_since(&io_u->start_time, &io_u->issue_time));
407
408 if (td->cur_depth < td->iodepth) {
Jens Axboe8d7ad8d2007-01-09 21:22:18 +0100409 struct timespec ts = { .tv_sec = 0, .tv_nsec = 0};
410
Jens Axboeebac4652005-12-08 15:25:21 +0100411 timeout = &ts;
412 min_evts = 0;
413 } else {
414 timeout = NULL;
415 min_evts = 1;
416 }
417
Jens Axboe45bee282006-10-18 15:26:44 +0200418 ret = td_io_getevents(td, min_evts, td->cur_depth, timeout);
Jens Axboeebac4652005-12-08 15:25:21 +0100419 if (ret < 0) {
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200420 td_verror(td, ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100421 break;
422 } else if (!ret)
423 continue;
424
425 icd.nr = ret;
426 ios_completed(td, &icd);
427 if (icd.error) {
428 td_verror(td, icd.error);
429 break;
430 }
431
432 /*
433 * the rate is batched for now, it should work for batches
434 * of completions except the very first one which may look
435 * a little bursty
436 */
Jens Axboe02bcaa82006-11-24 10:42:00 +0100437 usec = utime_since(&s, &icd.time);
Jens Axboeebac4652005-12-08 15:25:21 +0100438
Jens Axboea00735e2006-11-03 08:58:08 +0100439 rate_throttle(td, usec, icd.bytes_done[td->ddir], td->ddir);
Jens Axboeebac4652005-12-08 15:25:21 +0100440
Jens Axboe02bcaa82006-11-24 10:42:00 +0100441 if (check_min_rate(td, &icd.time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100442 if (exitall_on_terminate)
Jens Axboe2f9ade32006-10-20 11:25:52 +0200443 terminate_threads(td->groupid);
Jens Axboeebac4652005-12-08 15:25:21 +0100444 td_verror(td, ENOMEM);
445 break;
446 }
447
Jens Axboe02bcaa82006-11-24 10:42:00 +0100448 if (runtime_exceeded(td, &icd.time))
Jens Axboeebac4652005-12-08 15:25:21 +0100449 break;
450
Jens Axboe9c1f7432007-01-03 20:43:19 +0100451 if (td->thinktime) {
452 unsigned long long b;
453
454 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe25309a32007-01-10 11:33:14 +0100455 if (!(b % td->thinktime_blocks))
Jens Axboe9c1f7432007-01-03 20:43:19 +0100456 usec_sleep(td, td->thinktime);
457 }
Jens Axboeebac4652005-12-08 15:25:21 +0100458 }
459
Jens Axboe4d2413c2006-11-23 11:58:59 +0100460 if (!td->error) {
Jens Axboe84585002006-10-19 20:26:22 +0200461 if (td->cur_depth)
462 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100463
Jens Axboe84585002006-10-19 20:26:22 +0200464 if (should_fsync(td) && td->end_fsync) {
465 td_set_runstate(td, TD_FSYNCING);
466 for_each_file(td, f, i)
Jens Axboe858a3d42006-10-24 14:54:44 +0200467 fio_io_sync(td, f);
Jens Axboe84585002006-10-19 20:26:22 +0200468 }
Jens Axboe5853e5a2006-06-08 14:41:05 +0200469 }
Jens Axboeebac4652005-12-08 15:25:21 +0100470}
471
Jens Axboeebac4652005-12-08 15:25:21 +0100472static void cleanup_io_u(struct thread_data *td)
473{
474 struct list_head *entry, *n;
475 struct io_u *io_u;
476
477 list_for_each_safe(entry, n, &td->io_u_freelist) {
478 io_u = list_entry(entry, struct io_u, list);
479
480 list_del(&io_u->list);
481 free(io_u);
482 }
483
Jens Axboe2f9ade32006-10-20 11:25:52 +0200484 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100485}
486
Jens Axboe6b9cea22006-10-30 17:00:24 +0100487/*
488 * "randomly" fill the buffer contents
489 */
Jens Axboe66eeb292006-11-01 08:35:44 +0100490static void fill_rand_buf(struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100491{
Jens Axboe66eeb292006-11-01 08:35:44 +0100492 int *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100493
494 while ((void *) ptr - io_u->buf < max_bs) {
495 *ptr = rand() * 0x9e370001;
496 ptr++;
497 }
498}
499
Jens Axboeebac4652005-12-08 15:25:21 +0100500static int init_io_u(struct thread_data *td)
501{
502 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100503 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100504 int i, max_units;
505 char *p;
506
Jens Axboe2866c822006-10-09 15:57:48 +0200507 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200508 return 0;
509
Jens Axboe2866c822006-10-09 15:57:48 +0200510 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100511 max_units = 1;
512 else
513 max_units = td->iodepth;
514
Jens Axboea00735e2006-11-03 08:58:08 +0100515 max_bs = max(td->max_bs[DDIR_READ], td->max_bs[DDIR_WRITE]);
Jens Axboe74b025b2006-12-19 15:18:14 +0100516 td->orig_buffer_size = max_bs * max_units;
517
Jens Axboed0bdaf42006-12-20 14:40:44 +0100518 if (td->mem_type == MEM_SHMHUGE || td->mem_type == MEM_MMAPHUGE)
Jens Axboe56bb17f2006-12-20 20:27:36 +0100519 td->orig_buffer_size = (td->orig_buffer_size + td->hugepage_size - 1) & ~(td->hugepage_size - 1);
Jens Axboe74b025b2006-12-19 15:18:14 +0100520 else
521 td->orig_buffer_size += MASK;
Jens Axboeebac4652005-12-08 15:25:21 +0100522
Jens Axboe2f9ade32006-10-20 11:25:52 +0200523 if (allocate_io_mem(td))
524 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100525
Jens Axboeebac4652005-12-08 15:25:21 +0100526 p = ALIGN(td->orig_buffer);
527 for (i = 0; i < max_units; i++) {
528 io_u = malloc(sizeof(*io_u));
529 memset(io_u, 0, sizeof(*io_u));
530 INIT_LIST_HEAD(&io_u->list);
531
Jens Axboea00735e2006-11-03 08:58:08 +0100532 io_u->buf = p + max_bs * i;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100533 if (td_write(td) || td_rw(td))
Jens Axboea00735e2006-11-03 08:58:08 +0100534 fill_rand_buf(io_u, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100535
Jens Axboeb1ff3402006-02-17 11:35:58 +0100536 io_u->index = i;
Jens Axboeebac4652005-12-08 15:25:21 +0100537 list_add(&io_u->list, &td->io_u_freelist);
538 }
539
540 return 0;
541}
542
Jens Axboeda867742006-06-06 10:39:10 -0700543static int switch_ioscheduler(struct thread_data *td)
544{
545 char tmp[256], tmp2[128];
546 FILE *f;
547 int ret;
548
Jens Axboef48b4672006-10-27 11:30:07 +0200549 if (td->io_ops->flags & FIO_CPUIO)
550 return 0;
551
Jens Axboeda867742006-06-06 10:39:10 -0700552 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
553
554 f = fopen(tmp, "r+");
555 if (!f) {
556 td_verror(td, errno);
557 return 1;
558 }
559
560 /*
561 * Set io scheduler.
562 */
563 ret = fwrite(td->ioscheduler, strlen(td->ioscheduler), 1, f);
564 if (ferror(f) || ret != 1) {
565 td_verror(td, errno);
566 fclose(f);
567 return 1;
568 }
569
570 rewind(f);
571
572 /*
573 * Read back and check that the selected scheduler is now the default.
574 */
575 ret = fread(tmp, 1, sizeof(tmp), f);
576 if (ferror(f) || ret < 0) {
577 td_verror(td, errno);
578 fclose(f);
579 return 1;
580 }
581
582 sprintf(tmp2, "[%s]", td->ioscheduler);
583 if (!strstr(tmp, tmp2)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200584 log_err("fio: io scheduler %s not found\n", td->ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700585 td_verror(td, EINVAL);
586 fclose(f);
587 return 1;
588 }
589
590 fclose(f);
591 return 0;
592}
593
Jens Axboeebac4652005-12-08 15:25:21 +0100594static void clear_io_state(struct thread_data *td)
595{
Jens Axboe53cdc682006-10-18 11:50:58 +0200596 struct fio_file *f;
597 int i;
Jens Axboeebac4652005-12-08 15:25:21 +0100598
Jens Axboeebac4652005-12-08 15:25:21 +0100599 td->stat_io_bytes[0] = td->stat_io_bytes[1] = 0;
600 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100601 td->zone_bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100602
Jens Axboe53cdc682006-10-18 11:50:58 +0200603 for_each_file(td, f, i) {
604 f->last_pos = 0;
605 if (td->io_ops->flags & FIO_SYNCIO)
606 lseek(f->fd, SEEK_SET, 0);
607
608 if (f->file_map)
609 memset(f->file_map, 0, f->num_maps * sizeof(long));
610 }
Jens Axboeebac4652005-12-08 15:25:21 +0100611}
612
Jens Axboe906c8d72006-06-13 09:37:56 +0200613/*
614 * Entry point for the thread based jobs. The process based jobs end up
615 * here as well, after a little setup.
616 */
Jens Axboeebac4652005-12-08 15:25:21 +0100617static void *thread_main(void *data)
618{
Jens Axboe69008992006-11-24 13:12:56 +0100619 unsigned long long runtime[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100620 struct thread_data *td = data;
Jens Axboeebac4652005-12-08 15:25:21 +0100621
622 if (!td->use_thread)
623 setsid();
624
625 td->pid = getpid();
626
Jens Axboeaea47d42006-05-26 19:27:29 +0200627 INIT_LIST_HEAD(&td->io_u_freelist);
628 INIT_LIST_HEAD(&td->io_u_busylist);
629 INIT_LIST_HEAD(&td->io_hist_list);
630 INIT_LIST_HEAD(&td->io_log_list);
631
Jens Axboeebac4652005-12-08 15:25:21 +0100632 if (init_io_u(td))
633 goto err;
634
635 if (fio_setaffinity(td) == -1) {
636 td_verror(td, errno);
637 goto err;
638 }
639
Jens Axboe45bee282006-10-18 15:26:44 +0200640 if (td_io_init(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100641 goto err;
642
Jens Axboeaea47d42006-05-26 19:27:29 +0200643 if (init_iolog(td))
644 goto err;
645
Jens Axboeebac4652005-12-08 15:25:21 +0100646 if (td->ioprio) {
647 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
648 td_verror(td, errno);
649 goto err;
650 }
651 }
652
Jens Axboe1056eaa2006-07-13 10:33:45 -0700653 if (nice(td->nice) == -1) {
Jens Axboeb6f4d882006-06-02 10:32:51 +0200654 td_verror(td, errno);
655 goto err;
656 }
657
Jens Axboe75154842006-06-01 13:56:09 +0200658 if (init_random_state(td))
659 goto err;
660
Jens Axboe56f94982006-10-24 09:33:42 +0200661 if (td->ioscheduler && switch_ioscheduler(td))
662 goto err;
Jens Axboeda867742006-06-06 10:39:10 -0700663
Jens Axboe75154842006-06-01 13:56:09 +0200664 td_set_runstate(td, TD_INITIALIZED);
Jens Axboebbfd6b02006-06-07 19:42:54 +0200665 fio_sem_up(&startup_sem);
666 fio_sem_down(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100667
Jens Axboe53cdc682006-10-18 11:50:58 +0200668 if (!td->create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100669 goto err;
Jens Axboe21972cd2006-11-23 12:39:16 +0100670 if (open_files(td))
671 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100672
Jens Axboe56f94982006-10-24 09:33:42 +0200673 if (td->exec_prerun)
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200674 system(td->exec_prerun);
675
Jens Axboe69008992006-11-24 13:12:56 +0100676 fio_gettime(&td->epoch, NULL);
Jens Axboe36dff962006-11-24 13:29:20 +0100677 getrusage(RUSAGE_SELF, &td->ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100678
679 runtime[0] = runtime[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100680 while (td->loops--) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100681 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100682 memcpy(&td->stat_sample_time, &td->start, sizeof(td->start));
683
684 if (td->ratemin)
685 memcpy(&td->lastrate, &td->stat_sample_time, sizeof(td->lastrate));
686
687 clear_io_state(td);
688 prune_io_piece_log(td);
689
Jens Axboe2866c822006-10-09 15:57:48 +0200690 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200691 do_cpuio(td);
692 else
693 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100694
Jens Axboe69008992006-11-24 13:12:56 +0100695 runtime[td->ddir] += utime_since_now(&td->start);
Jens Axboeaea47d42006-05-26 19:27:29 +0200696 if (td_rw(td) && td->io_bytes[td->ddir ^ 1])
Jens Axboe69008992006-11-24 13:12:56 +0100697 runtime[td->ddir ^ 1] = runtime[td->ddir];
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200698
Jens Axboeebac4652005-12-08 15:25:21 +0100699 if (td->error || td->terminate)
700 break;
701
702 if (td->verify == VERIFY_NONE)
703 continue;
704
705 clear_io_state(td);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100706 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100707
708 do_verify(td);
709
Jens Axboe69008992006-11-24 13:12:56 +0100710 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100711
712 if (td->error || td->terminate)
713 break;
714 }
715
Jens Axboe36dff962006-11-24 13:29:20 +0100716 update_rusage_stat(td);
Jens Axboe69008992006-11-24 13:12:56 +0100717 fio_gettime(&td->end_time, NULL);
718 td->runtime[0] = runtime[0] / 1000;
719 td->runtime[1] = runtime[1] / 1000;
720
Jens Axboeebac4652005-12-08 15:25:21 +0100721 if (td->bw_log)
722 finish_log(td, td->bw_log, "bw");
723 if (td->slat_log)
724 finish_log(td, td->slat_log, "slat");
725 if (td->clat_log)
726 finish_log(td, td->clat_log, "clat");
Jens Axboe076efc72006-10-27 11:24:25 +0200727 if (td->write_iolog_file)
Jens Axboe843a7412006-06-01 21:14:21 -0700728 write_iolog_close(td);
Jens Axboe56f94982006-10-24 09:33:42 +0200729 if (td->exec_postrun)
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200730 system(td->exec_postrun);
Jens Axboeebac4652005-12-08 15:25:21 +0100731
732 if (exitall_on_terminate)
733 terminate_threads(td->groupid);
734
735err:
Jens Axboe53cdc682006-10-18 11:50:58 +0200736 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200737 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100738 cleanup_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100739 td_set_runstate(td, TD_EXITED);
740 return NULL;
741
742}
743
Jens Axboe906c8d72006-06-13 09:37:56 +0200744/*
745 * We cannot pass the td data into a forked process, so attach the td and
746 * pass it to the thread worker.
747 */
Jens Axboeebac4652005-12-08 15:25:21 +0100748static void *fork_main(int shmid, int offset)
749{
750 struct thread_data *td;
751 void *data;
752
753 data = shmat(shmid, NULL, 0);
754 if (data == (void *) -1) {
755 perror("shmat");
756 return NULL;
757 }
758
759 td = data + offset * sizeof(struct thread_data);
760 thread_main(td);
761 shmdt(data);
762 return NULL;
763}
764
Jens Axboe906c8d72006-06-13 09:37:56 +0200765/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200766 * Run over the job map and reap the threads that have exited, if any.
767 */
Jens Axboeebac4652005-12-08 15:25:21 +0100768static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
769{
Jens Axboe34572e22006-10-20 09:33:18 +0200770 struct thread_data *td;
Jens Axboe4d2413c2006-11-23 11:58:59 +0100771 int i, cputhreads, pending;
Jens Axboeebac4652005-12-08 15:25:21 +0100772
773 /*
774 * reap exited threads (TD_EXITED -> TD_REAPED)
775 */
Jens Axboe4d2413c2006-11-23 11:58:59 +0100776 pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200777 for_each_td(td, i) {
Jens Axboe84585002006-10-19 20:26:22 +0200778 /*
779 * ->io_ops is NULL for a thread that has closed its
780 * io engine
781 */
782 if (td->io_ops && td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200783 cputhreads++;
784
Jens Axboe4d2413c2006-11-23 11:58:59 +0100785 if (td->runstate != TD_EXITED) {
786 if (td->runstate < TD_RUNNING)
787 pending++;
788
Jens Axboeebac4652005-12-08 15:25:21 +0100789 continue;
Jens Axboe4d2413c2006-11-23 11:58:59 +0100790 }
Jens Axboeebac4652005-12-08 15:25:21 +0100791
792 td_set_runstate(td, TD_REAPED);
793
794 if (td->use_thread) {
795 long ret;
796
797 if (pthread_join(td->thread, (void *) &ret))
798 perror("thread_join");
799 } else
800 waitpid(td->pid, NULL, 0);
801
802 (*nr_running)--;
803 (*m_rate) -= td->ratemin;
804 (*t_rate) -= td->rate;
805 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200806
Jens Axboe4d2413c2006-11-23 11:58:59 +0100807 if (*nr_running == cputhreads && !pending)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200808 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +0100809}
810
Jens Axboe906c8d72006-06-13 09:37:56 +0200811/*
812 * Main function for kicking off and reaping jobs, as needed.
813 */
Jens Axboeebac4652005-12-08 15:25:21 +0100814static void run_threads(void)
815{
Jens Axboeebac4652005-12-08 15:25:21 +0100816 struct thread_data *td;
817 unsigned long spent;
818 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +0200819
Jens Axboe2f9ade32006-10-20 11:25:52 +0200820 if (fio_pin_memory())
821 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100822
Jens Axboec6ae0a52006-06-12 11:04:44 +0200823 if (!terse_output) {
824 printf("Starting %d thread%s\n", thread_number, thread_number > 1 ? "s" : "");
825 fflush(stdout);
826 }
Jens Axboec04f7ec2006-05-31 10:13:16 +0200827
Jens Axboe4efa9702006-05-31 11:56:49 +0200828 signal(SIGINT, sig_handler);
829 signal(SIGALRM, sig_handler);
830
Jens Axboeebac4652005-12-08 15:25:21 +0100831 todo = thread_number;
832 nr_running = 0;
833 nr_started = 0;
834 m_rate = t_rate = 0;
835
Jens Axboe34572e22006-10-20 09:33:18 +0200836 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +0200837 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100838
839 init_disk_util(td);
840
841 if (!td->create_serialize)
842 continue;
843
844 /*
845 * do file setup here so it happens sequentially,
846 * we don't want X number of threads getting their
847 * client data interspersed on disk
848 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200849 if (setup_files(td)) {
Jens Axboeebac4652005-12-08 15:25:21 +0100850 td_set_runstate(td, TD_REAPED);
851 todo--;
852 }
853 }
854
Jens Axboeebac4652005-12-08 15:25:21 +0100855 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +0200856 struct thread_data *map[MAX_JOBS];
857 struct timeval this_start;
858 int this_jobs = 0, left;
859
Jens Axboeebac4652005-12-08 15:25:21 +0100860 /*
861 * create threads (TD_NOT_CREATED -> TD_CREATED)
862 */
Jens Axboe34572e22006-10-20 09:33:18 +0200863 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +0100864 if (td->runstate != TD_NOT_CREATED)
865 continue;
866
867 /*
868 * never got a chance to start, killed by other
869 * thread for some reason
870 */
871 if (td->terminate) {
872 todo--;
873 continue;
874 }
875
876 if (td->start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +0200877 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +0100878
879 if (td->start_delay * 1000 > spent)
880 continue;
881 }
882
883 if (td->stonewall && (nr_started || nr_running))
884 break;
885
Jens Axboe75154842006-06-01 13:56:09 +0200886 /*
887 * Set state to created. Thread will transition
888 * to TD_INITIALIZED when it's done setting up.
889 */
Jens Axboeebac4652005-12-08 15:25:21 +0100890 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +0200891 map[this_jobs++] = td;
Jens Axboebbfd6b02006-06-07 19:42:54 +0200892 fio_sem_init(&startup_sem, 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100893 nr_started++;
894
895 if (td->use_thread) {
896 if (pthread_create(&td->thread, NULL, thread_main, td)) {
897 perror("thread_create");
898 nr_started--;
899 }
900 } else {
901 if (fork())
Jens Axboebbfd6b02006-06-07 19:42:54 +0200902 fio_sem_down(&startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +0100903 else {
904 fork_main(shm_id, i);
905 exit(0);
906 }
907 }
908 }
909
910 /*
Jens Axboe75154842006-06-01 13:56:09 +0200911 * Wait for the started threads to transition to
912 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +0100913 */
Jens Axboe02bcaa82006-11-24 10:42:00 +0100914 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +0200915 left = this_jobs;
916 while (left) {
917 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
918 break;
919
920 usleep(100000);
921
922 for (i = 0; i < this_jobs; i++) {
923 td = map[i];
924 if (!td)
925 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200926 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +0200927 map[i] = NULL;
928 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200929 } else if (td->runstate >= TD_EXITED) {
930 map[i] = NULL;
931 left--;
932 todo--;
933 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +0200934 }
935 }
936 }
937
938 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200939 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +0200940 for (i = 0; i < this_jobs; i++) {
941 td = map[i];
942 if (!td)
943 continue;
944 kill(td->pid, SIGTERM);
945 }
946 break;
947 }
948
949 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +0200950 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +0200951 */
Jens Axboe34572e22006-10-20 09:33:18 +0200952 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +0200953 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +0100954 continue;
955
956 td_set_runstate(td, TD_RUNNING);
957 nr_running++;
958 nr_started--;
959 m_rate += td->ratemin;
960 t_rate += td->rate;
Jens Axboe75154842006-06-01 13:56:09 +0200961 todo--;
Jens Axboebbfd6b02006-06-07 19:42:54 +0200962 fio_sem_up(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100963 }
964
965 reap_threads(&nr_running, &t_rate, &m_rate);
966
967 if (todo)
968 usleep(100000);
969 }
970
971 while (nr_running) {
972 reap_threads(&nr_running, &t_rate, &m_rate);
973 usleep(10000);
974 }
975
976 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +0200977 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +0100978}
979
Jens Axboeebac4652005-12-08 15:25:21 +0100980int main(int argc, char *argv[])
981{
982 if (parse_options(argc, argv))
983 return 1;
984
985 if (!thread_number) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200986 log_err("Nothing to do\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100987 return 1;
988 }
989
990 disk_util_timer_arm();
991
992 run_threads();
993 show_run_stats();
994
995 return 0;
996}