blob: 19c6340e2fa7d4e9a5b1e224d5f03c6651473e01 [file] [log] [blame]
Jens Axboe906c8d72006-06-13 09:37:56 +02001/*
Jens Axboecb2c86f2006-10-26 13:48:34 +02002 * This file contains job initialization and setup functions.
Jens Axboe906c8d72006-06-13 09:37:56 +02003 */
Jens Axboeebac4652005-12-08 15:25:21 +01004#include <stdio.h>
5#include <stdlib.h>
6#include <unistd.h>
7#include <fcntl.h>
8#include <ctype.h>
9#include <string.h>
10#include <errno.h>
Jens Axboeb4692822006-10-27 13:43:22 +020011#include <getopt.h>
Jens Axboeebac4652005-12-08 15:25:21 +010012#include <sys/ipc.h>
13#include <sys/shm.h>
14#include <sys/types.h>
15#include <sys/stat.h>
16
17#include "fio.h"
Jens Axboecb2c86f2006-10-26 13:48:34 +020018#include "parse.h"
Jens Axboe2e5cdb12008-03-01 18:52:49 +010019#include "smalloc.h"
Jens Axboe380065a2008-03-01 18:56:24 +010020#include "filehash.h"
Jens Axboe4f5af7b2009-06-03 08:45:40 +020021#include "verify.h"
Jens Axboeebac4652005-12-08 15:25:21 +010022
Jens Axboed3e829b2010-02-22 19:58:41 +010023static char fio_version_string[] = "fio 1.37";
Jens Axboe214e1ec2007-03-15 10:48:13 +010024
Jens Axboeee738492007-01-10 11:23:16 +010025#define FIO_RANDSEED (0xb1899bedUL)
Jens Axboeebac4652005-12-08 15:25:21 +010026
Jens Axboe214e1ec2007-03-15 10:48:13 +010027static char **ini_file;
28static int max_jobs = MAX_JOBS;
Jens Axboecca73aa2007-04-04 11:09:19 +020029static int dump_cmdline;
Jens Axboee1f36502006-10-27 10:54:08 +020030
Jens Axboebe4ecfd2008-12-08 14:10:52 +010031static struct thread_data def_thread;
Jens Axboe214e1ec2007-03-15 10:48:13 +010032struct thread_data *threads = NULL;
Jens Axboee1f36502006-10-27 10:54:08 +020033
Jens Axboe214e1ec2007-03-15 10:48:13 +010034int exitall_on_terminate = 0;
35int terse_output = 0;
Aaron Carrolle592a062007-09-14 09:49:41 +020036int eta_print;
Jens Axboe214e1ec2007-03-15 10:48:13 +010037unsigned long long mlock_size = 0;
38FILE *f_out = NULL;
39FILE *f_err = NULL;
Jens Axboe01f06b62008-02-18 20:53:47 +010040char *job_section = NULL;
Jens Axboeee738492007-01-10 11:23:16 +010041
Jens Axboe214e1ec2007-03-15 10:48:13 +010042int write_bw_log = 0;
Jens Axboe4241ea82007-09-12 08:18:36 +020043int read_only = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020044
Jens Axboe5ec10ea2008-03-06 15:42:00 +010045static int def_timeout;
46static int write_lat_log;
Jens Axboe214e1ec2007-03-15 10:48:13 +010047
48static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020049
Jens Axboeee56ad52008-02-01 10:30:20 +010050unsigned long fio_debug = 0;
Jens Axboe5e1d3062008-05-23 11:55:53 +020051unsigned int fio_debug_jobno = -1;
52unsigned int *fio_debug_jobp = NULL;
Jens Axboeee56ad52008-02-01 10:30:20 +010053
Jens Axboeb4692822006-10-27 13:43:22 +020054/*
55 * Command line options. These will contain the above, plus a few
56 * extra that only pertain to fio itself and not jobs.
57 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +010058static struct option l_opts[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020059 {
60 .name = "output",
61 .has_arg = required_argument,
62 .val = 'o',
63 },
64 {
65 .name = "timeout",
66 .has_arg = required_argument,
67 .val = 't',
68 },
69 {
70 .name = "latency-log",
71 .has_arg = required_argument,
72 .val = 'l',
73 },
74 {
75 .name = "bandwidth-log",
76 .has_arg = required_argument,
77 .val = 'b',
78 },
79 {
80 .name = "minimal",
81 .has_arg = optional_argument,
82 .val = 'm',
83 },
84 {
85 .name = "version",
86 .has_arg = no_argument,
87 .val = 'v',
88 },
89 {
Jens Axboefd28ca42007-01-09 21:20:13 +010090 .name = "help",
91 .has_arg = no_argument,
92 .val = 'h',
93 },
94 {
95 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +010096 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +010097 .val = 'c',
98 },
99 {
Jens Axboecca73aa2007-04-04 11:09:19 +0200100 .name = "showcmd",
101 .has_arg = no_argument,
Jens Axboe724e4432007-09-11 20:02:05 +0200102 .val = 's',
103 },
104 {
105 .name = "readonly",
106 .has_arg = no_argument,
107 .val = 'r',
Jens Axboecca73aa2007-04-04 11:09:19 +0200108 },
109 {
Aaron Carrolle592a062007-09-14 09:49:41 +0200110 .name = "eta",
111 .has_arg = required_argument,
112 .val = 'e',
113 },
114 {
Jens Axboeee56ad52008-02-01 10:30:20 +0100115 .name = "debug",
116 .has_arg = required_argument,
117 .val = 'd',
118 },
119 {
Jens Axboe01f06b62008-02-18 20:53:47 +0100120 .name = "section",
121 .has_arg = required_argument,
122 .val = 'x',
123 },
124 {
Jens Axboe2b386d22008-03-26 10:32:57 +0100125 .name = "alloc-size",
126 .has_arg = required_argument,
127 .val = 'a',
128 },
129 {
Jens Axboe9ac8a792009-11-13 21:23:07 +0100130 .name = "profile",
131 .has_arg = required_argument,
132 .val = 'p',
133 },
134 {
Jens Axboeb4692822006-10-27 13:43:22 +0200135 .name = NULL,
136 },
137};
138
Jens Axboe9ac8a792009-11-13 21:23:07 +0100139static const char *tiobench_opts[] = {
Jens Axboe3f5bf572009-11-13 21:25:03 +0100140 "buffered=0", "size=4*1024*$mb_memory", "bs=4k", "timeout=600",
Jens Axboe9ac8a792009-11-13 21:23:07 +0100141 "numjobs=4", "group_reporting", "thread", "overwrite=1",
142 "filename=.fio.tio.1:.fio.tio.2:.fio.tio.3:.fio.tio.4",
143 "name=seqwrite", "rw=write", "end_fsync=1",
144 "name=randwrite", "stonewall", "rw=randwrite", "end_fsync=1",
145 "name=seqread", "stonewall", "rw=read",
146 "name=randread", "stonewall", "rw=randread", NULL,
147};
148
149static const char **fio_prof_strings[PROFILE_END] = {
150 NULL,
151 tiobench_opts,
152};
153
154static const char *profiles[PROFILE_END] = {
155 "none",
156 "tiobench",
157};
158
Joel Becker9728ce32007-03-01 08:24:39 +0100159FILE *get_f_out()
160{
161 return f_out;
162}
163
164FILE *get_f_err()
165{
166 return f_err;
167}
168
Jens Axboe906c8d72006-06-13 09:37:56 +0200169/*
170 * Return a free job structure.
171 */
Jens Axboeebac4652005-12-08 15:25:21 +0100172static struct thread_data *get_new_job(int global, struct thread_data *parent)
173{
174 struct thread_data *td;
175
176 if (global)
177 return &def_thread;
178 if (thread_number >= max_jobs)
179 return NULL;
180
181 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200182 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100183
Jens Axboee0b0d892009-12-08 10:10:14 +0100184 td->o.uid = td->o.gid = -1U;
185
Jens Axboecade3ef2007-03-23 15:29:45 +0100186 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100187 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100188
Jens Axboeebac4652005-12-08 15:25:21 +0100189 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100190 return td;
191}
192
193static void put_job(struct thread_data *td)
194{
Jens Axboe549577a2006-10-30 12:23:41 +0100195 if (td == &def_thread)
196 return;
197
Jens Axboe16edf252007-02-10 14:59:22 +0100198 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100199 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100200
Jens Axboeebac4652005-12-08 15:25:21 +0100201 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
202 thread_number--;
203}
204
Jens Axboe581e7142009-06-09 12:47:16 +0200205static int __setup_rate(struct thread_data *td, enum fio_ddir ddir)
Jens Axboe127f6862007-03-15 12:09:57 +0100206{
Jens Axboe581e7142009-06-09 12:47:16 +0200207 unsigned int bs = td->o.min_bs[ddir];
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100208 unsigned long long bytes_per_sec;
Jens Axboe127f6862007-03-15 12:09:57 +0100209
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100210 if (td->o.rate[ddir])
211 bytes_per_sec = td->o.rate[ddir];
212 else
213 bytes_per_sec = td->o.rate_iops[ddir] * bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100214
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100215 if (!bytes_per_sec) {
Jens Axboe127f6862007-03-15 12:09:57 +0100216 log_err("rate lower than supported\n");
217 return -1;
218 }
219
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100220 td->rate_nsec_cycle[ddir] = 1000000000ULL / bytes_per_sec;
Jens Axboe581e7142009-06-09 12:47:16 +0200221 td->rate_pending_usleep[ddir] = 0;
Jens Axboe127f6862007-03-15 12:09:57 +0100222 return 0;
223}
224
Jens Axboe581e7142009-06-09 12:47:16 +0200225static int setup_rate(struct thread_data *td)
226{
227 int ret = 0;
228
229 if (td->o.rate[DDIR_READ] || td->o.rate_iops[DDIR_READ])
230 ret = __setup_rate(td, DDIR_READ);
231 if (td->o.rate[DDIR_WRITE] || td->o.rate_iops[DDIR_WRITE])
232 ret |= __setup_rate(td, DDIR_WRITE);
233
234 return ret;
235}
236
Jens Axboe83472392009-02-19 21:32:12 +0100237static int fixed_block_size(struct thread_options *o)
238{
239 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
240 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
241 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE];
242}
243
Jens Axboedad915e2006-10-27 11:10:18 +0200244/*
245 * Lazy way of fixing up options that depend on each other. We could also
246 * define option callback handlers, but this is easier.
247 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100248static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200249{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100250 struct thread_options *o = &td->o;
Jens Axboedad915e2006-10-27 11:10:18 +0200251
Jens Axboef356d012009-01-05 09:56:29 +0100252#ifndef FIO_HAVE_PSHARED_MUTEX
253 if (!td->o.use_thread) {
254 log_info("fio: this platform does not support process shared"
255 " mutexes, forcing use of threads. Use the 'thread'"
256 " option to get rid of this warning.\n");
257 td->o.use_thread = 1;
258 }
259#endif
260
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100261 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200262 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100263 free(o->write_iolog_file);
264 o->write_iolog_file = NULL;
Jens Axboe076efc72006-10-27 11:24:25 +0200265 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100266
Jens Axboe16b462a2006-10-30 12:35:18 +0100267 /*
268 * only really works for sequential io for now, and with 1 file
269 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100270 if (o->zone_size && td_random(td) && o->open_files == 1)
271 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100272
273 /*
274 * Reads can do overwrites, we always need to pre-create the file
275 */
276 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100277 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100278
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100279 if (!o->min_bs[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100280 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100281 if (!o->max_bs[DDIR_READ])
282 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
283 if (!o->min_bs[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100284 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100285 if (!o->max_bs[DDIR_WRITE])
286 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100287
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100288 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100289
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100290 /*
291 * For random IO, allow blockalign offset other than min_bs.
292 */
293 if (!o->ba[DDIR_READ] || !td_random(td))
294 o->ba[DDIR_READ] = o->min_bs[DDIR_READ];
295 if (!o->ba[DDIR_WRITE] || !td_random(td))
296 o->ba[DDIR_WRITE] = o->min_bs[DDIR_WRITE];
297
298 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
299 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE]) &&
300 !td->o.norandommap) {
301 log_err("fio: Any use of blockalign= turns off randommap\n");
302 td->o.norandommap = 1;
303 }
304
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100305 if (!o->file_size_high)
306 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100307
Jens Axboe83472392009-02-19 21:32:12 +0100308 if (o->norandommap && o->verify != VERIFY_NONE
309 && !fixed_block_size(o)) {
310 log_err("fio: norandommap given for variable block sizes, "
311 "verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100312 o->verify = VERIFY_NONE;
Jens Axboebb8895e2006-10-30 15:14:48 +0100313 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100314 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100315 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100316
317 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100318 * thinktime_spin must be less than thinktime
319 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100320 if (o->thinktime_spin > o->thinktime)
321 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100322
323 /*
324 * The low water mark cannot be bigger than the iodepth
325 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100326 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100327 /*
328 * syslet work around - if the workload is sequential,
329 * we want to let the queue drain all the way down to
330 * avoid seeking between async threads
331 */
332 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100333 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100334 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100335 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100336 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100337
338 /*
339 * If batch number isn't set, default to the same as iodepth
340 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100341 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
342 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100343
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100344 if (o->nr_files > td->files_index)
345 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100346
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100347 if (o->open_files > o->nr_files || !o->open_files)
348 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100349
Jens Axboe581e7142009-06-09 12:47:16 +0200350 if (((o->rate[0] + o->rate[1]) && (o->rate_iops[0] + o->rate_iops[1]))||
351 ((o->ratemin[0] + o->ratemin[1]) && (o->rate_iops_min[0] +
352 o->rate_iops_min[1]))) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100353 log_err("fio: rate and rate_iops are mutually exclusive\n");
354 return 1;
355 }
Jens Axboe581e7142009-06-09 12:47:16 +0200356 if ((o->rate[0] < o->ratemin[0]) || (o->rate[1] < o->ratemin[1]) ||
357 (o->rate_iops[0] < o->rate_iops_min[0]) ||
358 (o->rate_iops[1] < o->rate_iops_min[1])) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100359 log_err("fio: minimum rate exceeds rate\n");
360 return 1;
361 }
362
Jens Axboecf4464c2007-04-17 20:14:42 +0200363 if (!o->timeout && o->time_based) {
364 log_err("fio: time_based requires a runtime/timeout setting\n");
365 o->time_based = 0;
366 }
367
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100368 if (o->fill_device && !o->size)
Jens Axboe5921e802008-05-30 15:02:38 +0200369 o->size = -1ULL;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100370
Jens Axboe79713142008-02-06 14:40:14 +0100371 if (td_rw(td) && td->o.verify != VERIFY_NONE)
372 log_info("fio: mixed read/write workload with verify. May not "
373 "work as expected, unless you pre-populated the file\n");
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100374
Jens Axboe41ccd842008-05-22 09:17:33 +0200375 if (td->o.verify != VERIFY_NONE)
376 td->o.refill_buffers = 1;
377
Jens Axboe9c0d2242009-07-01 12:26:28 +0200378 if (td->o.pre_read) {
Jens Axboe34f1c042009-06-02 14:19:25 +0200379 td->o.invalidate_cache = 0;
Jens Axboe9c0d2242009-07-01 12:26:28 +0200380 if (td->io_ops->flags & FIO_PIPEIO)
381 log_info("fio: cannot pre-read files with an IO engine"
382 " that isn't seekable. Pre-read disabled.\n");
383 }
Jens Axboe34f1c042009-06-02 14:19:25 +0200384
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700385#ifndef FIO_HAVE_FDATASYNC
386 if (td->o.fdatasync_blocks) {
387 log_info("fio: this platform does not support fdatasync()"
388 " falling back to using fsync(). Use the 'fsync'"
389 " option instead of 'fdatasync' to get rid of"
390 " this warning\n");
391 td->o.fsync_blocks = td->o.fdatasync_blocks;
392 td->o.fdatasync_blocks = 0;
393 }
394#endif
395
Jens Axboe4e991c22007-03-15 11:41:11 +0100396 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200397}
398
Jens Axboe906c8d72006-06-13 09:37:56 +0200399/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100400 * This function leaks the buffer
401 */
402static char *to_kmg(unsigned int val)
403{
404 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100405 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100406 char *p = post;
407
Jens Axboe245142f2006-11-08 12:49:21 +0100408 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100409 if (val & 1023)
410 break;
411
412 val >>= 10;
413 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100414 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100415
416 snprintf(buf, 31, "%u%c", val, *p);
417 return buf;
418}
419
Jens Axboe09629a92007-03-09 09:00:06 +0100420/* External engines are specified by "external:name.o") */
421static const char *get_engine_name(const char *str)
422{
423 char *p = strstr(str, ":");
424
425 if (!p)
426 return str;
427
428 p++;
429 strip_blank_front(&p);
430 strip_blank_end(p);
431 return p;
432}
433
Jens Axboee132cba2007-03-14 14:23:54 +0100434static int exists_and_not_file(const char *filename)
435{
436 struct stat sb;
437
438 if (lstat(filename, &sb) == -1)
439 return 0;
440
441 if (S_ISREG(sb.st_mode))
442 return 0;
443
444 return 1;
445}
446
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200447void td_fill_rand_seeds(struct thread_data *td)
448{
449 os_random_seed(td->rand_seeds[0], &td->bsrange_state);
450 os_random_seed(td->rand_seeds[1], &td->verify_state);
451 os_random_seed(td->rand_seeds[2], &td->rwmix_state);
452
453 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
454 os_random_seed(td->rand_seeds[3], &td->next_file_state);
455
456 os_random_seed(td->rand_seeds[5], &td->file_size_state);
457
458 if (!td_random(td))
459 return;
460
461 if (td->o.rand_repeatable)
462 td->rand_seeds[4] = FIO_RANDSEED * td->thread_number;
463
464 os_random_seed(td->rand_seeds[4], &td->random_state);
465}
466
Jens Axboef8977ee2006-11-06 14:03:03 +0100467/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100468 * Initialize the various random states we need (random io, block size ranges,
469 * read/write mix, etc).
470 */
471static int init_random_state(struct thread_data *td)
472{
Jens Axboe68727072007-03-15 20:49:25 +0100473 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100474
475 fd = open("/dev/urandom", O_RDONLY);
476 if (fd == -1) {
477 td_verror(td, errno, "open");
478 return 1;
479 }
480
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200481 if (read(fd, td->rand_seeds, sizeof(td->rand_seeds)) <
482 (int) sizeof(td->rand_seeds)) {
Jens Axboe9c60ce62007-03-15 09:14:47 +0100483 td_verror(td, EIO, "read");
484 close(fd);
485 return 1;
486 }
487
488 close(fd);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200489 td_fill_rand_seeds(td);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100490 return 0;
491}
492
Jens Axboe9c60ce62007-03-15 09:14:47 +0100493/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200494 * Adds a job to the list of things todo. Sanitizes the various options
495 * to make sure we don't have conflicts, and initializes various
496 * members of td.
497 */
Jens Axboe75154842006-06-01 13:56:09 +0200498static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100499{
Jens Axboe413dd452007-02-23 09:26:09 +0100500 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
501 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100502 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100503 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100504 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100505 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100506
Jens Axboeebac4652005-12-08 15:25:21 +0100507 /*
508 * the def_thread is just for options, it's not a real job
509 */
510 if (td == &def_thread)
511 return 0;
512
Jens Axboecca73aa2007-04-04 11:09:19 +0200513 /*
514 * if we are just dumping the output command line, don't add the job
515 */
516 if (dump_cmdline) {
517 put_job(td);
518 return 0;
519 }
520
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100521 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100522 td->io_ops = load_ioengine(td, engine);
523 if (!td->io_ops) {
524 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100525 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100526 }
Jens Axboedf641192006-10-12 07:55:41 +0200527
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100528 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100529 nr_thread++;
530 else
531 nr_process++;
532
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100533 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100534 td->io_ops->flags |= FIO_RAWIO;
535
Jens Axboee132cba2007-03-14 14:23:54 +0100536 file_alloced = 0;
Jens Axboe691c8fb2008-03-07 14:26:26 +0100537 if (!td->o.filename && !td->files_index && !td->o.read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +0100538 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100539
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100540 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100541 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100542 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100543 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100544 sprintf(fname, "%s.%d.%d", jobname,
545 td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100546 add_file(td, fname);
547 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100548 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100549 }
Jens Axboeebac4652005-12-08 15:25:21 +0100550
Jens Axboe4e991c22007-03-15 11:41:11 +0100551 if (fixup_options(td))
552 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100553
Jens Axboe07eb79d2007-04-12 13:02:38 +0200554 if (td->io_ops->flags & FIO_DISKLESSIO) {
555 struct fio_file *f;
556
557 for_each_file(td, f, i)
558 f->real_file_size = -1ULL;
559 }
560
Jens Axboecdd18ad2008-02-27 18:58:00 +0100561 td->mutex = fio_mutex_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100562
Jens Axboe756867b2007-03-06 15:19:24 +0100563 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
564 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
565 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboe1e3d53a2007-03-22 19:01:48 +0100566 td->ddir_nr = td->o.ddir_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100567
Jens Axboe755c3182009-08-25 22:14:29 +0200568 if ((td->o.stonewall || td->o.new_group) && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100569 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100570 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100571 }
Jens Axboeebac4652005-12-08 15:25:21 +0100572
573 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100574 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100575
Jens Axboe9c60ce62007-03-15 09:14:47 +0100576 if (init_random_state(td))
577 goto err;
578
Jens Axboeebac4652005-12-08 15:25:21 +0100579 if (setup_rate(td))
580 goto err;
581
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100582 if (td->o.write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100583 setup_log(&td->ts.slat_log);
584 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100585 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100586 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100587 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100588
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100589 if (!td->o.name)
590 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200591
Jens Axboec6ae0a52006-06-12 11:04:44 +0200592 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200593 if (!job_add_num) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100594 if (!strcmp(td->io_ops->name, "cpuio")) {
595 log_info("%s: ioengine=cpu, cpuload=%u,"
596 " cpucycle=%u\n", td->o.name,
597 td->o.cpuload,
598 td->o.cpucycle);
599 } else {
Jens Axboef8977ee2006-11-06 14:03:03 +0100600 char *c1, *c2, *c3, *c4;
601
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100602 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
603 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
604 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
605 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100606
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100607 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s,"
608 " ioengine=%s, iodepth=%u\n",
609 td->o.name, td->groupid,
610 ddir_str[td->o.td_ddir],
611 c1, c2, c3, c4,
612 td->io_ops->name,
613 td->o.iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100614
615 free(c1);
616 free(c2);
617 free(c3);
618 free(c4);
619 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200620 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100621 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200622 }
Jens Axboeebac4652005-12-08 15:25:21 +0100623
624 /*
625 * recurse add identical jobs, clear numjobs and stonewall options
626 * as they don't apply to sub-jobs
627 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100628 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100629 while (--numjobs) {
630 struct thread_data *td_new = get_new_job(0, td);
631
632 if (!td_new)
633 goto err;
634
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100635 td_new->o.numjobs = 1;
636 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200637 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100638
639 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100640 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100641 td_new->files_index = 0;
Jens Axboe4e6ea2f2009-03-04 20:17:22 +0100642 td_new->files_size = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100643 td_new->files = NULL;
644 }
645
Jens Axboe75154842006-06-01 13:56:09 +0200646 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100647
Jens Axboe75154842006-06-01 13:56:09 +0200648 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100649 goto err;
650 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100651
Jens Axboeebac4652005-12-08 15:25:21 +0100652 return 0;
653err:
654 put_job(td);
655 return -1;
656}
657
Jens Axboe01f06b62008-02-18 20:53:47 +0100658static int skip_this_section(const char *name)
659{
660 if (!job_section)
661 return 0;
662 if (!strncmp(name, "global", 6))
663 return 0;
664
Jens Axboeb36beb62009-03-05 21:14:21 +0100665 return strcmp(job_section, name);
Jens Axboe01f06b62008-02-18 20:53:47 +0100666}
667
Jens Axboeebac4652005-12-08 15:25:21 +0100668static int is_empty_or_comment(char *line)
669{
670 unsigned int i;
671
672 for (i = 0; i < strlen(line); i++) {
673 if (line[i] == ';')
674 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100675 if (line[i] == '#')
676 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100677 if (!isspace(line[i]) && !iscntrl(line[i]))
678 return 0;
679 }
680
681 return 1;
682}
683
Jens Axboe313cb202006-12-21 09:50:00 +0100684/*
Jens Axboe07261982006-06-07 10:51:12 +0200685 * This is our [ini] type file parser.
686 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100687static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100688{
Jens Axboee1f36502006-10-27 10:54:08 +0200689 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100690 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100691 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100692 FILE *f;
693 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200694 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200695 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +0200696 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +0100697 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200698 char **opts;
699 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +0100700
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200701 if (!strcmp(file, "-"))
702 f = stdin;
703 else
704 f = fopen(file, "r");
705
Jens Axboeebac4652005-12-08 15:25:21 +0100706 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200707 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100708 return 1;
709 }
710
711 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200712
713 /*
714 * it's really 256 + small bit, 280 should suffice
715 */
716 name = malloc(280);
717 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100718
Jens Axboe3b8b7132008-06-10 19:46:23 +0200719 alloc_opts = 8;
720 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +0200721 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200722
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200723 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100724 do {
Jens Axboeccf8f122007-09-27 10:48:55 +0200725 /*
726 * if skip_fgets is set, we already have loaded a line we
727 * haven't handled.
728 */
729 if (!skip_fgets) {
730 p = fgets(string, 4095, f);
731 if (!p)
732 break;
733 }
gurudas paicdc7f192007-03-29 10:10:56 +0200734
Jens Axboeccf8f122007-09-27 10:48:55 +0200735 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +0200736 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800737 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200738
Jens Axboeebac4652005-12-08 15:25:21 +0100739 if (is_empty_or_comment(p))
740 continue;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800741 if (sscanf(p, "[%255s]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100742 if (inside_skip)
743 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100744 log_err("fio: option <%s> outside of [] job section\n",
745 p);
Jens Axboe088b4202007-07-19 14:53:01 +0200746 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800747 }
Jens Axboeebac4652005-12-08 15:25:21 +0100748
Jens Axboe01f06b62008-02-18 20:53:47 +0100749 if (skip_this_section(name)) {
750 inside_skip = 1;
751 continue;
752 } else
753 inside_skip = 0;
754
Jens Axboeebac4652005-12-08 15:25:21 +0100755 global = !strncmp(name, "global", 6);
756
757 name[strlen(name) - 1] = '\0';
758
Jens Axboecca73aa2007-04-04 11:09:19 +0200759 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200760 if (first_sect)
761 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200762 if (!global)
763 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200764 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200765 }
766
Jens Axboeebac4652005-12-08 15:25:21 +0100767 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200768 if (!td) {
769 ret = 1;
770 break;
771 }
Jens Axboeebac4652005-12-08 15:25:21 +0100772
Jens Axboe972cfd22006-06-09 11:08:56 +0200773 /*
774 * Seperate multiple job files by a stonewall
775 */
Jens Axboef9481912006-06-09 11:37:28 +0200776 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100777 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200778 stonewall = 0;
779 }
780
Jens Axboe3b8b7132008-06-10 19:46:23 +0200781 num_opts = 0;
782 memset(opts, 0, alloc_opts * sizeof(char *));
783
Jens Axboeebac4652005-12-08 15:25:21 +0100784 while ((p = fgets(string, 4096, f)) != NULL) {
785 if (is_empty_or_comment(p))
786 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200787
Jens Axboeb6754f92006-05-30 14:29:32 +0200788 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100789
Jens Axboeccf8f122007-09-27 10:48:55 +0200790 /*
791 * new section, break out and make sure we don't
792 * fgets() a new line at the top.
793 */
794 if (p[0] == '[') {
795 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100796 break;
Jens Axboeccf8f122007-09-27 10:48:55 +0200797 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100798
Jens Axboe4ae3f762006-05-30 13:35:14 +0200799 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200800
Jens Axboe3b8b7132008-06-10 19:46:23 +0200801 if (num_opts == alloc_opts) {
802 alloc_opts <<= 1;
803 opts = realloc(opts,
804 alloc_opts * sizeof(char *));
805 }
806
807 opts[num_opts] = strdup(p);
808 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +0100809 }
Jens Axboeebac4652005-12-08 15:25:21 +0100810
Jens Axboe3b8b7132008-06-10 19:46:23 +0200811 ret = fio_options_parse(td, opts, num_opts);
812 if (!ret) {
813 if (dump_cmdline)
814 for (i = 0; i < num_opts; i++)
815 log_info("--%s ", opts[i]);
816
Jens Axboe45410ac2006-06-07 11:10:39 +0200817 ret = add_job(td, name, 0);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200818 } else {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100819 log_err("fio: job %s dropped\n", name);
820 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200821 }
Jens Axboe3b8b7132008-06-10 19:46:23 +0200822
823 for (i = 0; i < num_opts; i++)
824 free(opts[i]);
825 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100826 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100827
Jens Axboecca73aa2007-04-04 11:09:19 +0200828 if (dump_cmdline)
829 log_info("\n");
830
Jens Axboe3b8b7132008-06-10 19:46:23 +0200831 for (i = 0; i < num_opts; i++)
832 free(opts[i]);
833
Jens Axboeebac4652005-12-08 15:25:21 +0100834 free(string);
835 free(name);
Jens Axboe25775942008-06-10 20:26:06 +0200836 free(opts);
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200837 if (f != stdin)
838 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200839 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100840}
841
842static int fill_def_thread(void)
843{
844 memset(&def_thread, 0, sizeof(def_thread));
845
Jens Axboe375b2692007-05-22 09:13:02 +0200846 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100847
848 /*
Jens Axboeee738492007-01-10 11:23:16 +0100849 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100850 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100851 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100852
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100853 def_thread.o.timeout = def_timeout;
854 def_thread.o.write_bw_log = write_bw_log;
855 def_thread.o.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +0100856
Jens Axboeebac4652005-12-08 15:25:21 +0100857 return 0;
858}
859
Jens Axboeebac4652005-12-08 15:25:21 +0100860static void free_shm(void)
861{
862 struct shmid_ds sbuf;
863
864 if (threads) {
Jens Axboe5e1d3062008-05-23 11:55:53 +0200865 void *tp = threads;
866
Jens Axboeebac4652005-12-08 15:25:21 +0100867 threads = NULL;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200868 file_hash_exit();
869 fio_debug_jobp = NULL;
870 shmdt(tp);
Jens Axboeebac4652005-12-08 15:25:21 +0100871 shmctl(shm_id, IPC_RMID, &sbuf);
872 }
Jens Axboe2e5cdb12008-03-01 18:52:49 +0100873
874 scleanup();
Jens Axboeebac4652005-12-08 15:25:21 +0100875}
876
Jens Axboe906c8d72006-06-13 09:37:56 +0200877/*
878 * The thread area is shared between the main process and the job
879 * threads/processes. So setup a shared memory segment that will hold
Jens Axboe380065a2008-03-01 18:56:24 +0100880 * all the job info. We use the end of the region for keeping track of
881 * open files across jobs, for file sharing.
Jens Axboe906c8d72006-06-13 09:37:56 +0200882 */
Jens Axboeebac4652005-12-08 15:25:21 +0100883static int setup_thread_area(void)
884{
Jens Axboe380065a2008-03-01 18:56:24 +0100885 void *hash;
886
Jens Axboeebac4652005-12-08 15:25:21 +0100887 /*
888 * 1024 is too much on some machines, scale max_jobs if
889 * we get a failure that looks like too large a shm segment
890 */
891 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200892 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100893
Jens Axboe380065a2008-03-01 18:56:24 +0100894 size += file_hash_size;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200895 size += sizeof(unsigned int);
Jens Axboe380065a2008-03-01 18:56:24 +0100896
Jens Axboe906c8d72006-06-13 09:37:56 +0200897 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100898 if (shm_id != -1)
899 break;
900 if (errno != EINVAL) {
901 perror("shmget");
902 break;
903 }
904
905 max_jobs >>= 1;
906 } while (max_jobs);
907
908 if (shm_id == -1)
909 return 1;
910
911 threads = shmat(shm_id, NULL, 0);
912 if (threads == (void *) -1) {
913 perror("shmat");
914 return 1;
915 }
916
Jens Axboe1f809d12007-10-25 18:34:02 +0200917 memset(threads, 0, max_jobs * sizeof(struct thread_data));
Jens Axboe380065a2008-03-01 18:56:24 +0100918 hash = (void *) threads + max_jobs * sizeof(struct thread_data);
Jens Axboe5e1d3062008-05-23 11:55:53 +0200919 fio_debug_jobp = (void *) hash + file_hash_size;
920 *fio_debug_jobp = -1;
Jens Axboe380065a2008-03-01 18:56:24 +0100921 file_hash_init(hash);
Jens Axboeebac4652005-12-08 15:25:21 +0100922 atexit(free_shm);
923 return 0;
924}
925
Jens Axboe45378b32007-12-19 13:54:38 +0100926static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +0200927{
Jens Axboe214e1ec2007-03-15 10:48:13 +0100928 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +0100929 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboeee56ad52008-02-01 10:30:20 +0100930 printf("\t--debug=options\tEnable debug logging\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100931 printf("\t--output\tWrite output to file\n");
932 printf("\t--timeout\tRuntime in seconds\n");
933 printf("\t--latency-log\tGenerate per-job latency logs\n");
934 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
935 printf("\t--minimal\tMinimal (terse) output\n");
936 printf("\t--version\tPrint version info and exit\n");
937 printf("\t--help\t\tPrint this page\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100938 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of"
939 " them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +0200940 printf("\t--showcmd\tTurn a job file into command line options\n");
Aaron Carrolle592a062007-09-14 09:49:41 +0200941 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
942 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100943 printf("\t--readonly\tTurn on safety read-only checks, preventing"
944 " writes\n");
Jens Axboe01f06b62008-02-18 20:53:47 +0100945 printf("\t--section=name\tOnly run specified section in job file\n");
Jens Axboe2b386d22008-03-26 10:32:57 +0100946 printf("\t--alloc-size=kb\tSet smalloc pool to this size in kb"
947 " (def 1024)\n");
Jens Axboefd4442b2009-06-15 23:29:54 +0200948 printf("\nFio was written by Jens Axboe <jens.axboe@oracle.com>\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200949}
950
Jens Axboe79e48f72008-02-01 20:37:09 +0100951#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +0100952struct debug_level debug_levels[] = {
Jens Axboebd6f78b2008-02-01 20:27:52 +0100953 { .name = "process", .shift = FD_PROCESS, },
954 { .name = "file", .shift = FD_FILE, },
955 { .name = "io", .shift = FD_IO, },
956 { .name = "mem", .shift = FD_MEM, },
957 { .name = "blktrace", .shift = FD_BLKTRACE },
958 { .name = "verify", .shift = FD_VERIFY },
Jens Axboe84422ac2008-02-19 20:10:26 +0100959 { .name = "random", .shift = FD_RANDOM },
Jens Axboea3d741f2008-02-27 18:32:33 +0100960 { .name = "parse", .shift = FD_PARSE },
Jens Axboecd991b92008-03-07 13:19:35 +0100961 { .name = "diskutil", .shift = FD_DISKUTIL },
Jens Axboe5e1d3062008-05-23 11:55:53 +0200962 { .name = "job", .shift = FD_JOB },
Jens Axboe29adda32009-01-05 19:06:39 +0100963 { .name = "mutex", .shift = FD_MUTEX },
Jens Axboe02444ad2008-10-07 11:33:00 +0200964 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +0100965};
966
Jens Axboec09823a2008-02-19 20:16:57 +0100967static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +0100968{
969 struct debug_level *dl;
970 char *p = (char *) string;
971 char *opt;
972 int i;
973
974 if (!strcmp(string, "?") || !strcmp(string, "help")) {
975 int i;
976
977 log_info("fio: dumping debug options:");
978 for (i = 0; debug_levels[i].name; i++) {
979 dl = &debug_levels[i];
980 log_info("%s,", dl->name);
981 }
Jens Axboebd6f78b2008-02-01 20:27:52 +0100982 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +0100983 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +0100984 }
985
986 while ((opt = strsep(&p, ",")) != NULL) {
987 int found = 0;
988
Jens Axboe5e1d3062008-05-23 11:55:53 +0200989 if (!strncmp(opt, "all", 3)) {
990 log_info("fio: set all debug options\n");
991 fio_debug = ~0UL;
992 continue;
993 }
994
Jens Axboeee56ad52008-02-01 10:30:20 +0100995 for (i = 0; debug_levels[i].name; i++) {
996 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +0200997 found = !strncmp(opt, dl->name, strlen(dl->name));
998 if (!found)
999 continue;
1000
1001 if (dl->shift == FD_JOB) {
1002 opt = strchr(opt, ':');
1003 if (!opt) {
1004 log_err("fio: missing job number\n");
1005 break;
1006 }
1007 opt++;
1008 fio_debug_jobno = atoi(opt);
1009 log_info("fio: set debug jobno %d\n",
1010 fio_debug_jobno);
1011 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001012 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001013 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +01001014 }
Jens Axboe5e1d3062008-05-23 11:55:53 +02001015 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001016 }
1017
1018 if (!found)
1019 log_err("fio: debug mask %s not found\n", opt);
1020 }
Jens Axboec09823a2008-02-19 20:16:57 +01001021 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +01001022}
Jens Axboe79e48f72008-02-01 20:37:09 +01001023#else
Jens Axboe69b98d42008-05-30 22:25:32 +02001024static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +01001025{
1026 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001027 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +01001028}
1029#endif
Jens Axboeee56ad52008-02-01 10:30:20 +01001030
Jens Axboe9ac8a792009-11-13 21:23:07 +01001031static int load_profile(const char *profile)
1032{
1033 struct thread_data *td, *td_parent;
1034 const char **o;
1035 int i, in_global = 1;
1036 char jobname[32];
1037
1038 dprint(FD_PARSE, "loading profile %s\n", profile);
1039
1040 for (i = 0; i < PROFILE_END; i++) {
1041 if (!strcmp(profile, profiles[i]))
1042 break;
1043 }
1044
1045 if (i == PROFILE_END) {
1046 log_err("fio: unknown profile %s\n", profile);
1047 return 1;
1048 }
1049
1050 o = fio_prof_strings[i];
1051 if (!o)
1052 return 0;
1053
1054 i = 0;
1055 td_parent = td = NULL;
1056 while (o[i]) {
1057 if (!strncmp(o[i], "name", 4)) {
1058 in_global = 0;
1059 if (td)
1060 add_job(td, jobname, 0);
1061 td = NULL;
1062 sprintf(jobname, "%s", o[i] + 5);
1063 }
1064 if (in_global && !td_parent)
1065 td_parent = get_new_job(1, &def_thread);
1066 else if (!in_global && !td) {
1067 if (!td_parent)
1068 td_parent = &def_thread;
1069 td = get_new_job(0, td_parent);
1070 }
1071 if (in_global)
1072 fio_options_parse(td_parent, (char **) &o[i], 1);
1073 else
1074 fio_options_parse(td, (char **) &o[i], 1);
1075 i++;
1076 }
1077 if (td)
1078 add_job(td, jobname, 0);
1079 return 0;
1080}
1081
Jens Axboe214e1ec2007-03-15 10:48:13 +01001082static int parse_cmd_line(int argc, char *argv[])
1083{
1084 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +01001085 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001086
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001087 while ((c = getopt_long_only(argc, argv, "", l_opts, &lidx)) != -1) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001088 switch (c) {
Jens Axboe2b386d22008-03-26 10:32:57 +01001089 case 'a':
1090 smalloc_pool_size = atoi(optarg);
1091 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001092 case 't':
1093 def_timeout = atoi(optarg);
1094 break;
1095 case 'l':
1096 write_lat_log = 1;
1097 break;
1098 case 'w':
1099 write_bw_log = 1;
1100 break;
1101 case 'o':
1102 f_out = fopen(optarg, "w+");
1103 if (!f_out) {
1104 perror("fopen output");
1105 exit(1);
1106 }
1107 f_err = f_out;
1108 break;
1109 case 'm':
1110 terse_output = 1;
1111 break;
1112 case 'h':
Jens Axboe45378b32007-12-19 13:54:38 +01001113 usage(argv[0]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001114 exit(0);
1115 case 'c':
1116 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +02001117 case 's':
1118 dump_cmdline = 1;
1119 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001120 case 'r':
1121 read_only = 1;
1122 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001123 case 'v':
1124 printf("%s\n", fio_version_string);
1125 exit(0);
Aaron Carrolle592a062007-09-14 09:49:41 +02001126 case 'e':
1127 if (!strcmp("always", optarg))
1128 eta_print = FIO_ETA_ALWAYS;
1129 else if (!strcmp("never", optarg))
1130 eta_print = FIO_ETA_NEVER;
1131 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001132 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001133 if (set_debug(optarg))
1134 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001135 break;
Jens Axboe01f06b62008-02-18 20:53:47 +01001136 case 'x':
1137 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001138 log_err("fio: can't use global as only "
1139 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001140 do_exit++;
1141 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001142 break;
1143 }
1144 if (job_section)
1145 free(job_section);
1146 job_section = strdup(optarg);
1147 break;
Jens Axboe9ac8a792009-11-13 21:23:07 +01001148 case 'p':
1149 if (load_profile(optarg))
1150 do_exit++;
1151 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001152 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001153 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001154 char *val = optarg;
1155
1156 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001157 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001158 if (ret) {
1159 put_job(td);
1160 return 0;
1161 }
1162 td = NULL;
1163 }
1164 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001165 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001166 int global = 0;
1167
Jens Axboe01f06b62008-02-18 20:53:47 +01001168 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001169 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001170
Jens Axboe01f06b62008-02-18 20:53:47 +01001171 if (is_section && skip_this_section(val))
1172 continue;
1173
Jens Axboe214e1ec2007-03-15 10:48:13 +01001174 td = get_new_job(global, &def_thread);
1175 if (!td)
1176 return 0;
1177 }
1178
1179 ret = fio_cmd_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001180 break;
1181 }
1182 default:
Jens Axboec09823a2008-02-19 20:16:57 +01001183 do_exit++;
1184 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001185 break;
1186 }
1187 }
1188
Jens Axboec09823a2008-02-19 20:16:57 +01001189 if (do_exit)
1190 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01001191
Jens Axboe214e1ec2007-03-15 10:48:13 +01001192 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +01001193 if (!ret)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001194 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe7d6a8902008-02-18 20:59:18 +01001195 if (ret)
1196 put_job(td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001197 }
1198
1199 while (optind < argc) {
1200 ini_idx++;
1201 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1202 ini_file[ini_idx - 1] = strdup(argv[optind]);
1203 optind++;
1204 }
1205
1206 return ini_idx;
1207}
1208
Jens Axboeebac4652005-12-08 15:25:21 +01001209int parse_options(int argc, char *argv[])
1210{
Jens Axboe972cfd22006-06-09 11:08:56 +02001211 int job_files, i;
1212
Jens Axboeb4692822006-10-27 13:43:22 +02001213 f_out = stdout;
1214 f_err = stderr;
1215
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001216 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02001217
Jens Axboeebac4652005-12-08 15:25:21 +01001218 if (setup_thread_area())
1219 return 1;
1220 if (fill_def_thread())
1221 return 1;
1222
Jens Axboe972cfd22006-06-09 11:08:56 +02001223 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001224
Jens Axboe972cfd22006-06-09 11:08:56 +02001225 for (i = 0; i < job_files; i++) {
1226 if (fill_def_thread())
1227 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001228 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001229 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001230 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001231 }
Jens Axboeebac4652005-12-08 15:25:21 +01001232
Jens Axboe88c6ed82006-06-09 11:28:10 +02001233 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +01001234 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001235
1236 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001237 if (dump_cmdline)
1238 return 0;
1239
Jens Axboefd4442b2009-06-15 23:29:54 +02001240 log_err("No jobs defined(s)\n\n");
Jens Axboe45378b32007-12-19 13:54:38 +01001241 usage(argv[0]);
Jens Axboeb4692822006-10-27 13:43:22 +02001242 return 1;
1243 }
1244
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001245 if (def_thread.o.gtod_offload) {
1246 fio_gtod_init();
1247 fio_gtod_offload = 1;
1248 fio_gtod_cpu = def_thread.o.gtod_cpu;
1249 }
1250
Jens Axboeebac4652005-12-08 15:25:21 +01001251 return 0;
1252}