blob: a920c6ed87e71e8b0399708fcb12ac0d6361c88a [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>
11#include <sys/ipc.h>
12#include <sys/shm.h>
13#include <sys/types.h>
14#include <sys/stat.h>
15
16#include "fio.h"
Jens Axboecb2c86f2006-10-26 13:48:34 +020017#include "parse.h"
Jens Axboe2e5cdb12008-03-01 18:52:49 +010018#include "smalloc.h"
Jens Axboe380065a2008-03-01 18:56:24 +010019#include "filehash.h"
Jens Axboe4f5af7b2009-06-03 08:45:40 +020020#include "verify.h"
Jens Axboe79d16312010-03-04 12:43:20 +010021#include "profile.h"
Jens Axboeebac4652005-12-08 15:25:21 +010022
Cigy Cyriacbf2e8212010-08-10 19:51:11 -040023#include "lib/getopt.h"
24
Jens Axboe173dbaa2011-07-14 20:20:25 +020025static char fio_version_string[] = "fio 1.57";
Jens Axboe214e1ec2007-03-15 10:48:13 +010026
Jens Axboeee738492007-01-10 11:23:16 +010027#define FIO_RANDSEED (0xb1899bedUL)
Jens Axboeebac4652005-12-08 15:25:21 +010028
Jens Axboe214e1ec2007-03-15 10:48:13 +010029static char **ini_file;
Jens Axboefca70352011-07-06 20:12:54 +020030static int max_jobs = FIO_MAX_JOBS;
Jens Axboecca73aa2007-04-04 11:09:19 +020031static int dump_cmdline;
Jens Axboee1f36502006-10-27 10:54:08 +020032
Jens Axboebe4ecfd2008-12-08 14:10:52 +010033static struct thread_data def_thread;
Jens Axboe214e1ec2007-03-15 10:48:13 +010034struct thread_data *threads = NULL;
Jens Axboee1f36502006-10-27 10:54:08 +020035
Jens Axboe214e1ec2007-03-15 10:48:13 +010036int exitall_on_terminate = 0;
37int terse_output = 0;
Aaron Carrolle592a062007-09-14 09:49:41 +020038int eta_print;
Jens Axboe214e1ec2007-03-15 10:48:13 +010039unsigned long long mlock_size = 0;
40FILE *f_out = NULL;
41FILE *f_err = NULL;
Jens Axboead0a2732011-03-11 10:16:17 +010042char **job_sections = NULL;
43int nr_job_sections = 0;
Jens Axboe07b32322010-03-05 09:48:44 +010044char *exec_profile = NULL;
Jens Axboea9523c62011-01-17 16:49:54 -070045int warnings_fatal = 0;
Jens Axboeee738492007-01-10 11:23:16 +010046
Jens Axboe214e1ec2007-03-15 10:48:13 +010047int write_bw_log = 0;
Jens Axboe4241ea82007-09-12 08:18:36 +020048int read_only = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020049
Jens Axboe5ec10ea2008-03-06 15:42:00 +010050static int write_lat_log;
Jens Axboe214e1ec2007-03-15 10:48:13 +010051
52static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020053
Jens Axboeee56ad52008-02-01 10:30:20 +010054unsigned long fio_debug = 0;
Jens Axboe5e1d3062008-05-23 11:55:53 +020055unsigned int fio_debug_jobno = -1;
56unsigned int *fio_debug_jobp = NULL;
Jens Axboeee56ad52008-02-01 10:30:20 +010057
Jens Axboe4c6107f2011-01-18 05:22:22 -070058static char cmd_optstr[256];
59
Jens Axboeb4692822006-10-27 13:43:22 +020060/*
61 * Command line options. These will contain the above, plus a few
62 * extra that only pertain to fio itself and not jobs.
63 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +010064static struct option l_opts[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020065 {
Jens Axboe08d2a192011-05-11 13:28:30 +020066 .name = (char *) "output",
Jens Axboeb4692822006-10-27 13:43:22 +020067 .has_arg = required_argument,
68 .val = 'o',
69 },
70 {
Jens Axboe08d2a192011-05-11 13:28:30 +020071 .name = (char *) "timeout",
Jens Axboeb4692822006-10-27 13:43:22 +020072 .has_arg = required_argument,
73 .val = 't',
74 },
75 {
Jens Axboe08d2a192011-05-11 13:28:30 +020076 .name = (char *) "latency-log",
Jens Axboeb4692822006-10-27 13:43:22 +020077 .has_arg = required_argument,
78 .val = 'l',
79 },
80 {
Jens Axboe08d2a192011-05-11 13:28:30 +020081 .name = (char *) "bandwidth-log",
Jens Axboeb4692822006-10-27 13:43:22 +020082 .has_arg = required_argument,
83 .val = 'b',
84 },
85 {
Jens Axboe08d2a192011-05-11 13:28:30 +020086 .name = (char *) "minimal",
Jens Axboeb4692822006-10-27 13:43:22 +020087 .has_arg = optional_argument,
88 .val = 'm',
89 },
90 {
Jens Axboe08d2a192011-05-11 13:28:30 +020091 .name = (char *) "version",
Jens Axboeb4692822006-10-27 13:43:22 +020092 .has_arg = no_argument,
93 .val = 'v',
94 },
95 {
Jens Axboe08d2a192011-05-11 13:28:30 +020096 .name = (char *) "help",
Jens Axboefd28ca42007-01-09 21:20:13 +010097 .has_arg = no_argument,
98 .val = 'h',
99 },
100 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200101 .name = (char *) "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +0100102 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +0100103 .val = 'c',
104 },
105 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200106 .name = (char *) "showcmd",
Jens Axboecca73aa2007-04-04 11:09:19 +0200107 .has_arg = no_argument,
Jens Axboe724e4432007-09-11 20:02:05 +0200108 .val = 's',
109 },
110 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200111 .name = (char *) "readonly",
Jens Axboe724e4432007-09-11 20:02:05 +0200112 .has_arg = no_argument,
113 .val = 'r',
Jens Axboecca73aa2007-04-04 11:09:19 +0200114 },
115 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200116 .name = (char *) "eta",
Aaron Carrolle592a062007-09-14 09:49:41 +0200117 .has_arg = required_argument,
118 .val = 'e',
119 },
120 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200121 .name = (char *) "debug",
Jens Axboeee56ad52008-02-01 10:30:20 +0100122 .has_arg = required_argument,
123 .val = 'd',
124 },
125 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200126 .name = (char *) "section",
Jens Axboe01f06b62008-02-18 20:53:47 +0100127 .has_arg = required_argument,
128 .val = 'x',
129 },
130 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200131 .name = (char *) "alloc-size",
Jens Axboe2b386d22008-03-26 10:32:57 +0100132 .has_arg = required_argument,
133 .val = 'a',
134 },
135 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200136 .name = (char *) "profile",
Jens Axboe9ac8a792009-11-13 21:23:07 +0100137 .has_arg = required_argument,
138 .val = 'p',
139 },
140 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200141 .name = (char *) "warnings-fatal",
Jens Axboea9523c62011-01-17 16:49:54 -0700142 .has_arg = no_argument,
143 .val = 'w',
144 },
145 {
Jens Axboefca70352011-07-06 20:12:54 +0200146 .name = (char *) "max-jobs",
147 .has_arg = required_argument,
148 .val = 'j',
149 },
150 {
Jens Axboeb4692822006-10-27 13:43:22 +0200151 .name = NULL,
152 },
153};
154
Joel Becker9728ce32007-03-01 08:24:39 +0100155FILE *get_f_out()
156{
157 return f_out;
158}
159
160FILE *get_f_err()
161{
162 return f_err;
163}
164
Jens Axboe906c8d72006-06-13 09:37:56 +0200165/*
166 * Return a free job structure.
167 */
Jens Axboeebac4652005-12-08 15:25:21 +0100168static struct thread_data *get_new_job(int global, struct thread_data *parent)
169{
170 struct thread_data *td;
171
172 if (global)
173 return &def_thread;
Bruce Crane61f1ec2011-01-14 18:30:26 +0100174 if (thread_number >= max_jobs) {
175 log_err("error: maximum number of jobs (%d) reached.\n",
176 max_jobs);
Jens Axboeebac4652005-12-08 15:25:21 +0100177 return NULL;
Bruce Crane61f1ec2011-01-14 18:30:26 +0100178 }
Jens Axboeebac4652005-12-08 15:25:21 +0100179
180 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200181 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100182
Jens Axboee0b0d892009-12-08 10:10:14 +0100183 td->o.uid = td->o.gid = -1U;
184
Jens Axboecade3ef2007-03-23 15:29:45 +0100185 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100186 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100187
Jens Axboe15dc1932010-03-05 10:59:06 +0100188 profile_add_hooks(td);
189
Jens Axboeebac4652005-12-08 15:25:21 +0100190 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100191 return td;
192}
193
194static void put_job(struct thread_data *td)
195{
Jens Axboe549577a2006-10-30 12:23:41 +0100196 if (td == &def_thread)
197 return;
Bruce Cran84dd1882011-05-05 08:14:09 -0600198
Jens Axboe58c55ba2010-03-09 12:20:08 +0100199 profile_td_exit(td);
Jens Axboe549577a2006-10-30 12:23:41 +0100200
Jens Axboe16edf252007-02-10 14:59:22 +0100201 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100202 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100203
Jens Axboeebac4652005-12-08 15:25:21 +0100204 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
205 thread_number--;
206}
207
Jens Axboe581e7142009-06-09 12:47:16 +0200208static int __setup_rate(struct thread_data *td, enum fio_ddir ddir)
Jens Axboe127f6862007-03-15 12:09:57 +0100209{
Jens Axboe581e7142009-06-09 12:47:16 +0200210 unsigned int bs = td->o.min_bs[ddir];
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100211 unsigned long long bytes_per_sec;
Jens Axboe127f6862007-03-15 12:09:57 +0100212
Jens Axboeff58fce2010-08-25 12:02:08 +0200213 assert(ddir_rw(ddir));
214
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100215 if (td->o.rate[ddir])
216 bytes_per_sec = td->o.rate[ddir];
217 else
218 bytes_per_sec = td->o.rate_iops[ddir] * bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100219
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100220 if (!bytes_per_sec) {
Jens Axboe127f6862007-03-15 12:09:57 +0100221 log_err("rate lower than supported\n");
222 return -1;
223 }
224
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100225 td->rate_nsec_cycle[ddir] = 1000000000ULL / bytes_per_sec;
Jens Axboe581e7142009-06-09 12:47:16 +0200226 td->rate_pending_usleep[ddir] = 0;
Jens Axboe127f6862007-03-15 12:09:57 +0100227 return 0;
228}
229
Jens Axboe581e7142009-06-09 12:47:16 +0200230static int setup_rate(struct thread_data *td)
231{
232 int ret = 0;
233
234 if (td->o.rate[DDIR_READ] || td->o.rate_iops[DDIR_READ])
235 ret = __setup_rate(td, DDIR_READ);
236 if (td->o.rate[DDIR_WRITE] || td->o.rate_iops[DDIR_WRITE])
237 ret |= __setup_rate(td, DDIR_WRITE);
238
239 return ret;
240}
241
Jens Axboe83472392009-02-19 21:32:12 +0100242static int fixed_block_size(struct thread_options *o)
243{
244 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
245 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
246 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE];
247}
248
Jens Axboedad915e2006-10-27 11:10:18 +0200249/*
250 * Lazy way of fixing up options that depend on each other. We could also
251 * define option callback handlers, but this is easier.
252 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100253static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200254{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100255 struct thread_options *o = &td->o;
Jens Axboeff217452011-01-18 22:33:02 -0700256 int ret = 0;
Jens Axboedad915e2006-10-27 11:10:18 +0200257
Jens Axboef356d012009-01-05 09:56:29 +0100258#ifndef FIO_HAVE_PSHARED_MUTEX
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100259 if (!o->use_thread) {
Jens Axboef356d012009-01-05 09:56:29 +0100260 log_info("fio: this platform does not support process shared"
261 " mutexes, forcing use of threads. Use the 'thread'"
262 " option to get rid of this warning.\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100263 o->use_thread = 1;
Jens Axboea9523c62011-01-17 16:49:54 -0700264 ret = warnings_fatal;
Jens Axboef356d012009-01-05 09:56:29 +0100265 }
266#endif
267
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100268 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200269 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100270 free(o->write_iolog_file);
271 o->write_iolog_file = NULL;
Jens Axboea9523c62011-01-17 16:49:54 -0700272 ret = warnings_fatal;
Jens Axboe076efc72006-10-27 11:24:25 +0200273 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100274
Jens Axboe16b462a2006-10-30 12:35:18 +0100275 /*
276 * only really works for sequential io for now, and with 1 file
277 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100278 if (o->zone_size && td_random(td) && o->open_files == 1)
279 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100280
281 /*
282 * Reads can do overwrites, we always need to pre-create the file
283 */
284 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100285 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100286
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100287 if (!o->min_bs[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100288 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100289 if (!o->max_bs[DDIR_READ])
290 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
291 if (!o->min_bs[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100292 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100293 if (!o->max_bs[DDIR_WRITE])
294 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100295
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100296 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100297
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100298 /*
299 * For random IO, allow blockalign offset other than min_bs.
300 */
301 if (!o->ba[DDIR_READ] || !td_random(td))
302 o->ba[DDIR_READ] = o->min_bs[DDIR_READ];
303 if (!o->ba[DDIR_WRITE] || !td_random(td))
304 o->ba[DDIR_WRITE] = o->min_bs[DDIR_WRITE];
305
306 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
307 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE]) &&
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100308 !o->norandommap) {
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100309 log_err("fio: Any use of blockalign= turns off randommap\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100310 o->norandommap = 1;
Jens Axboea9523c62011-01-17 16:49:54 -0700311 ret = warnings_fatal;
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100312 }
313
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100314 if (!o->file_size_high)
315 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100316
Jens Axboe83472392009-02-19 21:32:12 +0100317 if (o->norandommap && o->verify != VERIFY_NONE
318 && !fixed_block_size(o)) {
319 log_err("fio: norandommap given for variable block sizes, "
320 "verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100321 o->verify = VERIFY_NONE;
Jens Axboea9523c62011-01-17 16:49:54 -0700322 ret = warnings_fatal;
Jens Axboebb8895e2006-10-30 15:14:48 +0100323 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100324 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100325 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100326
327 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100328 * thinktime_spin must be less than thinktime
329 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100330 if (o->thinktime_spin > o->thinktime)
331 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100332
333 /*
334 * The low water mark cannot be bigger than the iodepth
335 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100336 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100337 /*
338 * syslet work around - if the workload is sequential,
339 * we want to let the queue drain all the way down to
340 * avoid seeking between async threads
341 */
342 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100343 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100344 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100345 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100346 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100347
348 /*
349 * If batch number isn't set, default to the same as iodepth
350 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100351 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
352 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100353
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100354 if (o->nr_files > td->files_index)
355 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100356
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100357 if (o->open_files > o->nr_files || !o->open_files)
358 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100359
Jens Axboe581e7142009-06-09 12:47:16 +0200360 if (((o->rate[0] + o->rate[1]) && (o->rate_iops[0] + o->rate_iops[1]))||
361 ((o->ratemin[0] + o->ratemin[1]) && (o->rate_iops_min[0] +
362 o->rate_iops_min[1]))) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100363 log_err("fio: rate and rate_iops are mutually exclusive\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700364 ret = 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100365 }
Jens Axboe581e7142009-06-09 12:47:16 +0200366 if ((o->rate[0] < o->ratemin[0]) || (o->rate[1] < o->ratemin[1]) ||
367 (o->rate_iops[0] < o->rate_iops_min[0]) ||
368 (o->rate_iops[1] < o->rate_iops_min[1])) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100369 log_err("fio: minimum rate exceeds rate\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700370 ret = 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100371 }
372
Jens Axboecf4464c2007-04-17 20:14:42 +0200373 if (!o->timeout && o->time_based) {
374 log_err("fio: time_based requires a runtime/timeout setting\n");
375 o->time_based = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700376 ret = warnings_fatal;
Jens Axboecf4464c2007-04-17 20:14:42 +0200377 }
378
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100379 if (o->fill_device && !o->size)
Jens Axboe5921e802008-05-30 15:02:38 +0200380 o->size = -1ULL;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100381
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100382 if (o->verify != VERIFY_NONE) {
Jens Axboe996936f2011-01-18 05:41:39 -0700383 if (td_write(td) && o->do_verify && o->numjobs > 1) {
Jens Axboea9523c62011-01-17 16:49:54 -0700384 log_info("Multiple writers may overwrite blocks that "
385 "belong to other jobs. This can cause "
386 "verification failures.\n");
387 ret = warnings_fatal;
388 }
389
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100390 o->refill_buffers = 1;
Jens Axboe2f1b8e82010-06-18 09:22:56 +0200391 if (o->max_bs[DDIR_WRITE] != o->min_bs[DDIR_WRITE] &&
392 !o->verify_interval)
393 o->verify_interval = o->min_bs[DDIR_WRITE];
Jens Axboed9905882010-03-18 20:43:00 +0100394 }
Jens Axboe41ccd842008-05-22 09:17:33 +0200395
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100396 if (o->pre_read) {
397 o->invalidate_cache = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700398 if (td->io_ops->flags & FIO_PIPEIO) {
Jens Axboe9c0d2242009-07-01 12:26:28 +0200399 log_info("fio: cannot pre-read files with an IO engine"
400 " that isn't seekable. Pre-read disabled.\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700401 ret = warnings_fatal;
402 }
Jens Axboe9c0d2242009-07-01 12:26:28 +0200403 }
Jens Axboe34f1c042009-06-02 14:19:25 +0200404
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700405#ifndef FIO_HAVE_FDATASYNC
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100406 if (o->fdatasync_blocks) {
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700407 log_info("fio: this platform does not support fdatasync()"
408 " falling back to using fsync(). Use the 'fsync'"
409 " option instead of 'fdatasync' to get rid of"
410 " this warning\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100411 o->fsync_blocks = o->fdatasync_blocks;
412 o->fdatasync_blocks = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700413 ret = warnings_fatal;
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700414 }
415#endif
416
Jens Axboea9523c62011-01-17 16:49:54 -0700417 return ret;
Jens Axboee1f36502006-10-27 10:54:08 +0200418}
419
Jens Axboe906c8d72006-06-13 09:37:56 +0200420/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100421 * This function leaks the buffer
422 */
423static char *to_kmg(unsigned int val)
424{
425 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100426 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100427 char *p = post;
428
Jens Axboe245142f2006-11-08 12:49:21 +0100429 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100430 if (val & 1023)
431 break;
432
433 val >>= 10;
434 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100435 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100436
437 snprintf(buf, 31, "%u%c", val, *p);
438 return buf;
439}
440
Jens Axboe09629a92007-03-09 09:00:06 +0100441/* External engines are specified by "external:name.o") */
442static const char *get_engine_name(const char *str)
443{
444 char *p = strstr(str, ":");
445
446 if (!p)
447 return str;
448
449 p++;
450 strip_blank_front(&p);
451 strip_blank_end(p);
452 return p;
453}
454
Jens Axboee132cba2007-03-14 14:23:54 +0100455static int exists_and_not_file(const char *filename)
456{
457 struct stat sb;
458
459 if (lstat(filename, &sb) == -1)
460 return 0;
461
Bruce Cranecc314b2011-01-04 10:59:30 +0100462 /* \\.\ is the device namespace in Windows, where every file
463 * is a device node */
464 if (S_ISREG(sb.st_mode) && strncmp(filename, "\\\\.\\", 4) != 0)
Jens Axboee132cba2007-03-14 14:23:54 +0100465 return 0;
466
467 return 1;
468}
469
Jens Axboe4c07ad82011-03-28 09:51:09 +0200470static void td_fill_rand_seeds_os(struct thread_data *td)
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200471{
472 os_random_seed(td->rand_seeds[0], &td->bsrange_state);
473 os_random_seed(td->rand_seeds[1], &td->verify_state);
474 os_random_seed(td->rand_seeds[2], &td->rwmix_state);
475
476 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
477 os_random_seed(td->rand_seeds[3], &td->next_file_state);
478
479 os_random_seed(td->rand_seeds[5], &td->file_size_state);
Jens Axboe0d29de82010-09-01 13:54:15 +0200480 os_random_seed(td->rand_seeds[6], &td->trim_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200481
482 if (!td_random(td))
483 return;
484
485 if (td->o.rand_repeatable)
486 td->rand_seeds[4] = FIO_RANDSEED * td->thread_number;
487
488 os_random_seed(td->rand_seeds[4], &td->random_state);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200489}
490
491static void td_fill_rand_seeds_internal(struct thread_data *td)
492{
493 init_rand_seed(&td->__bsrange_state, td->rand_seeds[0]);
494 init_rand_seed(&td->__verify_state, td->rand_seeds[1]);
495 init_rand_seed(&td->__rwmix_state, td->rand_seeds[2]);
496
497 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
498 init_rand_seed(&td->__next_file_state, td->rand_seeds[3]);
499
500 init_rand_seed(&td->__file_size_state, td->rand_seeds[5]);
501 init_rand_seed(&td->__trim_state, td->rand_seeds[6]);
502
503 if (!td_random(td))
504 return;
505
506 if (td->o.rand_repeatable)
507 td->rand_seeds[4] = FIO_RANDSEED * td->thread_number;
508
Jens Axboe2615cc42011-03-28 09:35:09 +0200509 init_rand_seed(&td->__random_state, td->rand_seeds[4]);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200510}
511
Jens Axboe4c07ad82011-03-28 09:51:09 +0200512void td_fill_rand_seeds(struct thread_data *td)
513{
514 if (td->o.use_os_rand)
515 td_fill_rand_seeds_os(td);
516 else
517 td_fill_rand_seeds_internal(td);
518}
519
Jens Axboef8977ee2006-11-06 14:03:03 +0100520/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100521 * Initialize the various random states we need (random io, block size ranges,
522 * read/write mix, etc).
523 */
524static int init_random_state(struct thread_data *td)
525{
Jens Axboe68727072007-03-15 20:49:25 +0100526 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100527
528 fd = open("/dev/urandom", O_RDONLY);
529 if (fd == -1) {
530 td_verror(td, errno, "open");
531 return 1;
532 }
533
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200534 if (read(fd, td->rand_seeds, sizeof(td->rand_seeds)) <
535 (int) sizeof(td->rand_seeds)) {
Jens Axboe9c60ce62007-03-15 09:14:47 +0100536 td_verror(td, EIO, "read");
537 close(fd);
538 return 1;
539 }
540
541 close(fd);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200542 td_fill_rand_seeds(td);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100543 return 0;
544}
545
Jens Axboe9c60ce62007-03-15 09:14:47 +0100546/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200547 * Adds a job to the list of things todo. Sanitizes the various options
548 * to make sure we don't have conflicts, and initializes various
549 * members of td.
550 */
Jens Axboe75154842006-06-01 13:56:09 +0200551static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100552{
Jens Axboe413dd452007-02-23 09:26:09 +0100553 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
554 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100555 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100556 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100557 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100558 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100559
Jens Axboeebac4652005-12-08 15:25:21 +0100560 /*
561 * the def_thread is just for options, it's not a real job
562 */
563 if (td == &def_thread)
564 return 0;
565
Jens Axboecca73aa2007-04-04 11:09:19 +0200566 /*
567 * if we are just dumping the output command line, don't add the job
568 */
569 if (dump_cmdline) {
570 put_job(td);
571 return 0;
572 }
573
Jens Axboe58c55ba2010-03-09 12:20:08 +0100574 if (profile_td_init(td))
Jens Axboe66251552011-05-12 10:14:57 +0200575 goto err;
Jens Axboe58c55ba2010-03-09 12:20:08 +0100576
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100577 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100578 td->io_ops = load_ioengine(td, engine);
579 if (!td->io_ops) {
580 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100581 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100582 }
Jens Axboedf641192006-10-12 07:55:41 +0200583
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100584 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100585 nr_thread++;
586 else
587 nr_process++;
588
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100589 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100590 td->io_ops->flags |= FIO_RAWIO;
591
Jens Axboee132cba2007-03-14 14:23:54 +0100592 file_alloced = 0;
Jens Axboe691c8fb2008-03-07 14:26:26 +0100593 if (!td->o.filename && !td->files_index && !td->o.read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +0100594 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100595
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100596 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100597 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100598 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100599 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100600 sprintf(fname, "%s.%d.%d", jobname,
601 td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100602 add_file(td, fname);
603 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100604 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100605 }
Jens Axboeebac4652005-12-08 15:25:21 +0100606
Jens Axboe4e991c22007-03-15 11:41:11 +0100607 if (fixup_options(td))
608 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100609
Jens Axboe07eb79d2007-04-12 13:02:38 +0200610 if (td->io_ops->flags & FIO_DISKLESSIO) {
611 struct fio_file *f;
612
613 for_each_file(td, f, i)
614 f->real_file_size = -1ULL;
615 }
616
Jens Axboecdd18ad2008-02-27 18:58:00 +0100617 td->mutex = fio_mutex_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100618
Yu-ju Hong83349192011-08-13 00:53:44 +0200619 td->ts.clat_percentiles = td->o.clat_percentiles;
620 if (td->o.overwrite_plist)
621 td->ts.percentile_list = td->o.percentile_list;
622 else
623 td->ts.percentile_list = NULL;
624
Jens Axboe756867b2007-03-06 15:19:24 +0100625 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
626 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
Jens Axboe02af0982010-06-24 09:59:34 +0200627 td->ts.lat_stat[0].min_val = td->ts.lat_stat[1].min_val = ULONG_MAX;
Jens Axboe756867b2007-03-06 15:19:24 +0100628 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Adam DeBellinscdd54112010-09-28 13:22:55 +0900629 td->ddir_seq_nr = td->o.ddir_seq_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100630
Jens Axboe755c3182009-08-25 22:14:29 +0200631 if ((td->o.stonewall || td->o.new_group) && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100632 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100633 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100634 }
Jens Axboeebac4652005-12-08 15:25:21 +0100635
636 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100637 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100638
Jens Axboe9c60ce62007-03-15 09:14:47 +0100639 if (init_random_state(td))
640 goto err;
641
Jens Axboeebac4652005-12-08 15:25:21 +0100642 if (setup_rate(td))
643 goto err;
644
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100645 if (td->o.write_lat_log) {
Jens Axboe02af0982010-06-24 09:59:34 +0200646 setup_log(&td->ts.lat_log);
Jens Axboe756867b2007-03-06 15:19:24 +0100647 setup_log(&td->ts.slat_log);
648 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100649 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100650 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100651 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100652
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100653 if (!td->o.name)
654 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200655
Jens Axboec6ae0a52006-06-12 11:04:44 +0200656 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200657 if (!job_add_num) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100658 if (!strcmp(td->io_ops->name, "cpuio")) {
659 log_info("%s: ioengine=cpu, cpuload=%u,"
660 " cpucycle=%u\n", td->o.name,
661 td->o.cpuload,
662 td->o.cpucycle);
663 } else {
Jens Axboef8977ee2006-11-06 14:03:03 +0100664 char *c1, *c2, *c3, *c4;
665
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100666 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
667 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
668 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
669 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100670
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100671 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s,"
672 " ioengine=%s, iodepth=%u\n",
673 td->o.name, td->groupid,
674 ddir_str[td->o.td_ddir],
675 c1, c2, c3, c4,
676 td->io_ops->name,
677 td->o.iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100678
679 free(c1);
680 free(c2);
681 free(c3);
682 free(c4);
683 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200684 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100685 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200686 }
Jens Axboeebac4652005-12-08 15:25:21 +0100687
688 /*
689 * recurse add identical jobs, clear numjobs and stonewall options
690 * as they don't apply to sub-jobs
691 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100692 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100693 while (--numjobs) {
694 struct thread_data *td_new = get_new_job(0, td);
695
696 if (!td_new)
697 goto err;
698
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100699 td_new->o.numjobs = 1;
700 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200701 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100702
703 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100704 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100705 td_new->files_index = 0;
Jens Axboe4e6ea2f2009-03-04 20:17:22 +0100706 td_new->files_size = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100707 td_new->files = NULL;
708 }
709
Jens Axboe75154842006-06-01 13:56:09 +0200710 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100711
Jens Axboe75154842006-06-01 13:56:09 +0200712 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100713 goto err;
714 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100715
Jens Axboeebac4652005-12-08 15:25:21 +0100716 return 0;
717err:
718 put_job(td);
719 return -1;
720}
721
Jens Axboe79d16312010-03-04 12:43:20 +0100722/*
723 * Parse as if 'o' was a command line
724 */
725void add_job_opts(const char **o)
726{
727 struct thread_data *td, *td_parent;
728 int i, in_global = 1;
729 char jobname[32];
730
731 i = 0;
732 td_parent = td = NULL;
733 while (o[i]) {
734 if (!strncmp(o[i], "name", 4)) {
735 in_global = 0;
736 if (td)
737 add_job(td, jobname, 0);
738 td = NULL;
739 sprintf(jobname, "%s", o[i] + 5);
740 }
741 if (in_global && !td_parent)
742 td_parent = get_new_job(1, &def_thread);
743 else if (!in_global && !td) {
744 if (!td_parent)
745 td_parent = &def_thread;
746 td = get_new_job(0, td_parent);
747 }
748 if (in_global)
749 fio_options_parse(td_parent, (char **) &o[i], 1);
750 else
751 fio_options_parse(td, (char **) &o[i], 1);
752 i++;
753 }
754
755 if (td)
756 add_job(td, jobname, 0);
757}
758
Jens Axboe01f06b62008-02-18 20:53:47 +0100759static int skip_this_section(const char *name)
760{
Jens Axboead0a2732011-03-11 10:16:17 +0100761 int i;
762
763 if (!nr_job_sections)
Jens Axboe01f06b62008-02-18 20:53:47 +0100764 return 0;
765 if (!strncmp(name, "global", 6))
766 return 0;
767
Jens Axboead0a2732011-03-11 10:16:17 +0100768 for (i = 0; i < nr_job_sections; i++)
769 if (!strcmp(job_sections[i], name))
770 return 0;
771
772 return 1;
Jens Axboe01f06b62008-02-18 20:53:47 +0100773}
774
Jens Axboeebac4652005-12-08 15:25:21 +0100775static int is_empty_or_comment(char *line)
776{
777 unsigned int i;
778
779 for (i = 0; i < strlen(line); i++) {
780 if (line[i] == ';')
781 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100782 if (line[i] == '#')
783 return 1;
Jens Axboe76cd9372011-07-08 21:14:57 +0200784 if (!isspace((int) line[i]) && !iscntrl((int) line[i]))
Jens Axboeebac4652005-12-08 15:25:21 +0100785 return 0;
786 }
787
788 return 1;
789}
790
Jens Axboe313cb202006-12-21 09:50:00 +0100791/*
Jens Axboe07261982006-06-07 10:51:12 +0200792 * This is our [ini] type file parser.
793 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100794static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100795{
Jens Axboee1f36502006-10-27 10:54:08 +0200796 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100797 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100798 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100799 FILE *f;
800 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200801 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200802 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +0200803 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +0100804 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200805 char **opts;
806 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +0100807
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200808 if (!strcmp(file, "-"))
809 f = stdin;
810 else
811 f = fopen(file, "r");
812
Jens Axboeebac4652005-12-08 15:25:21 +0100813 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200814 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100815 return 1;
816 }
817
818 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200819
820 /*
821 * it's really 256 + small bit, 280 should suffice
822 */
823 name = malloc(280);
824 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100825
Jens Axboe3b8b7132008-06-10 19:46:23 +0200826 alloc_opts = 8;
827 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +0200828 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200829
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200830 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100831 do {
Jens Axboeccf8f122007-09-27 10:48:55 +0200832 /*
833 * if skip_fgets is set, we already have loaded a line we
834 * haven't handled.
835 */
836 if (!skip_fgets) {
837 p = fgets(string, 4095, f);
838 if (!p)
839 break;
840 }
gurudas paicdc7f192007-03-29 10:10:56 +0200841
Jens Axboeccf8f122007-09-27 10:48:55 +0200842 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +0200843 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800844 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200845
Jens Axboeebac4652005-12-08 15:25:21 +0100846 if (is_empty_or_comment(p))
847 continue;
Bruce Cran84dd1882011-05-05 08:14:09 -0600848 if (sscanf(p, "[%255[^\n]]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100849 if (inside_skip)
850 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100851 log_err("fio: option <%s> outside of [] job section\n",
852 p);
Jens Axboe088b4202007-07-19 14:53:01 +0200853 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800854 }
Jens Axboeebac4652005-12-08 15:25:21 +0100855
Jens Axboe7a4b80a2010-05-22 20:43:11 +0200856 name[strlen(name) - 1] = '\0';
857
Jens Axboe01f06b62008-02-18 20:53:47 +0100858 if (skip_this_section(name)) {
859 inside_skip = 1;
860 continue;
861 } else
862 inside_skip = 0;
863
Jens Axboeebac4652005-12-08 15:25:21 +0100864 global = !strncmp(name, "global", 6);
865
Jens Axboecca73aa2007-04-04 11:09:19 +0200866 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200867 if (first_sect)
868 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200869 if (!global)
870 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200871 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200872 }
873
Jens Axboeebac4652005-12-08 15:25:21 +0100874 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200875 if (!td) {
876 ret = 1;
877 break;
878 }
Jens Axboeebac4652005-12-08 15:25:21 +0100879
Jens Axboe972cfd22006-06-09 11:08:56 +0200880 /*
881 * Seperate multiple job files by a stonewall
882 */
Jens Axboef9481912006-06-09 11:37:28 +0200883 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100884 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200885 stonewall = 0;
886 }
887
Jens Axboe3b8b7132008-06-10 19:46:23 +0200888 num_opts = 0;
889 memset(opts, 0, alloc_opts * sizeof(char *));
890
Jens Axboeebac4652005-12-08 15:25:21 +0100891 while ((p = fgets(string, 4096, f)) != NULL) {
892 if (is_empty_or_comment(p))
893 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200894
Jens Axboeb6754f92006-05-30 14:29:32 +0200895 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100896
Jens Axboeccf8f122007-09-27 10:48:55 +0200897 /*
898 * new section, break out and make sure we don't
899 * fgets() a new line at the top.
900 */
901 if (p[0] == '[') {
902 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100903 break;
Jens Axboeccf8f122007-09-27 10:48:55 +0200904 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100905
Jens Axboe4ae3f762006-05-30 13:35:14 +0200906 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200907
Jens Axboe3b8b7132008-06-10 19:46:23 +0200908 if (num_opts == alloc_opts) {
909 alloc_opts <<= 1;
910 opts = realloc(opts,
911 alloc_opts * sizeof(char *));
912 }
913
914 opts[num_opts] = strdup(p);
915 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +0100916 }
Jens Axboeebac4652005-12-08 15:25:21 +0100917
Jens Axboe3b8b7132008-06-10 19:46:23 +0200918 ret = fio_options_parse(td, opts, num_opts);
919 if (!ret) {
920 if (dump_cmdline)
921 for (i = 0; i < num_opts; i++)
922 log_info("--%s ", opts[i]);
923
Jens Axboe45410ac2006-06-07 11:10:39 +0200924 ret = add_job(td, name, 0);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200925 } else {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100926 log_err("fio: job %s dropped\n", name);
927 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200928 }
Jens Axboe3b8b7132008-06-10 19:46:23 +0200929
930 for (i = 0; i < num_opts; i++)
931 free(opts[i]);
932 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100933 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100934
Jens Axboecca73aa2007-04-04 11:09:19 +0200935 if (dump_cmdline)
936 log_info("\n");
937
Jens Axboe3b8b7132008-06-10 19:46:23 +0200938 for (i = 0; i < num_opts; i++)
939 free(opts[i]);
940
Jens Axboeebac4652005-12-08 15:25:21 +0100941 free(string);
942 free(name);
Jens Axboe25775942008-06-10 20:26:06 +0200943 free(opts);
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200944 if (f != stdin)
945 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200946 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100947}
948
949static int fill_def_thread(void)
950{
951 memset(&def_thread, 0, sizeof(def_thread));
952
Jens Axboe375b2692007-05-22 09:13:02 +0200953 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100954
955 /*
Jens Axboeee738492007-01-10 11:23:16 +0100956 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100957 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100958 fio_fill_default_options(&def_thread);
Jens Axboeebac4652005-12-08 15:25:21 +0100959 return 0;
960}
961
Jens Axboeebac4652005-12-08 15:25:21 +0100962static void free_shm(void)
963{
964 struct shmid_ds sbuf;
965
966 if (threads) {
Jens Axboe5e1d3062008-05-23 11:55:53 +0200967 void *tp = threads;
968
Jens Axboeebac4652005-12-08 15:25:21 +0100969 threads = NULL;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200970 file_hash_exit();
971 fio_debug_jobp = NULL;
972 shmdt(tp);
Jens Axboeebac4652005-12-08 15:25:21 +0100973 shmctl(shm_id, IPC_RMID, &sbuf);
974 }
Jens Axboe2e5cdb12008-03-01 18:52:49 +0100975
976 scleanup();
Jens Axboeebac4652005-12-08 15:25:21 +0100977}
978
Jens Axboe906c8d72006-06-13 09:37:56 +0200979/*
980 * The thread area is shared between the main process and the job
981 * threads/processes. So setup a shared memory segment that will hold
Jens Axboe380065a2008-03-01 18:56:24 +0100982 * all the job info. We use the end of the region for keeping track of
983 * open files across jobs, for file sharing.
Jens Axboe906c8d72006-06-13 09:37:56 +0200984 */
Jens Axboeebac4652005-12-08 15:25:21 +0100985static int setup_thread_area(void)
986{
Jens Axboe380065a2008-03-01 18:56:24 +0100987 void *hash;
988
Jens Axboeebac4652005-12-08 15:25:21 +0100989 /*
990 * 1024 is too much on some machines, scale max_jobs if
991 * we get a failure that looks like too large a shm segment
992 */
993 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200994 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100995
Jens Axboe380065a2008-03-01 18:56:24 +0100996 size += file_hash_size;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200997 size += sizeof(unsigned int);
Jens Axboe380065a2008-03-01 18:56:24 +0100998
Jens Axboe906c8d72006-06-13 09:37:56 +0200999 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +01001000 if (shm_id != -1)
1001 break;
1002 if (errno != EINVAL) {
1003 perror("shmget");
1004 break;
1005 }
1006
1007 max_jobs >>= 1;
1008 } while (max_jobs);
1009
1010 if (shm_id == -1)
1011 return 1;
1012
1013 threads = shmat(shm_id, NULL, 0);
1014 if (threads == (void *) -1) {
1015 perror("shmat");
1016 return 1;
1017 }
1018
Jens Axboe1f809d12007-10-25 18:34:02 +02001019 memset(threads, 0, max_jobs * sizeof(struct thread_data));
Jens Axboe380065a2008-03-01 18:56:24 +01001020 hash = (void *) threads + max_jobs * sizeof(struct thread_data);
Jens Axboe5e1d3062008-05-23 11:55:53 +02001021 fio_debug_jobp = (void *) hash + file_hash_size;
1022 *fio_debug_jobp = -1;
Jens Axboe380065a2008-03-01 18:56:24 +01001023 file_hash_init(hash);
Jens Axboeebac4652005-12-08 15:25:21 +01001024 atexit(free_shm);
1025 return 0;
1026}
1027
Jens Axboe45378b32007-12-19 13:54:38 +01001028static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +02001029{
Bruce Cran43617622011-07-30 12:55:52 +02001030 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +01001031 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboeee56ad52008-02-01 10:30:20 +01001032 printf("\t--debug=options\tEnable debug logging\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +01001033 printf("\t--output\tWrite output to file\n");
1034 printf("\t--timeout\tRuntime in seconds\n");
1035 printf("\t--latency-log\tGenerate per-job latency logs\n");
1036 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
1037 printf("\t--minimal\tMinimal (terse) output\n");
1038 printf("\t--version\tPrint version info and exit\n");
1039 printf("\t--help\t\tPrint this page\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001040 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of"
1041 " them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +02001042 printf("\t--showcmd\tTurn a job file into command line options\n");
Aaron Carrolle592a062007-09-14 09:49:41 +02001043 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
1044 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001045 printf("\t--readonly\tTurn on safety read-only checks, preventing"
1046 " writes\n");
Jens Axboe01f06b62008-02-18 20:53:47 +01001047 printf("\t--section=name\tOnly run specified section in job file\n");
Jens Axboe2b386d22008-03-26 10:32:57 +01001048 printf("\t--alloc-size=kb\tSet smalloc pool to this size in kb"
1049 " (def 1024)\n");
Jens Axboea9523c62011-01-17 16:49:54 -07001050 printf("\t--warnings-fatal Fio parser warnings are fatal\n");
Jens Axboefca70352011-07-06 20:12:54 +02001051 printf("\t--max-jobs\tMaximum number of threads/processes to support\n");
Jens Axboeaa58d252010-06-09 09:49:38 +02001052 printf("\nFio was written by Jens Axboe <jens.axboe@oracle.com>");
1053 printf("\n Jens Axboe <jaxboe@fusionio.com>\n");
Jens Axboeb4692822006-10-27 13:43:22 +02001054}
1055
Jens Axboe79e48f72008-02-01 20:37:09 +01001056#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +01001057struct debug_level debug_levels[] = {
Jens Axboebd6f78b2008-02-01 20:27:52 +01001058 { .name = "process", .shift = FD_PROCESS, },
1059 { .name = "file", .shift = FD_FILE, },
1060 { .name = "io", .shift = FD_IO, },
1061 { .name = "mem", .shift = FD_MEM, },
1062 { .name = "blktrace", .shift = FD_BLKTRACE },
1063 { .name = "verify", .shift = FD_VERIFY },
Jens Axboe84422ac2008-02-19 20:10:26 +01001064 { .name = "random", .shift = FD_RANDOM },
Jens Axboea3d741f2008-02-27 18:32:33 +01001065 { .name = "parse", .shift = FD_PARSE },
Jens Axboecd991b92008-03-07 13:19:35 +01001066 { .name = "diskutil", .shift = FD_DISKUTIL },
Jens Axboe5e1d3062008-05-23 11:55:53 +02001067 { .name = "job", .shift = FD_JOB },
Jens Axboe29adda32009-01-05 19:06:39 +01001068 { .name = "mutex", .shift = FD_MUTEX },
Jens Axboe79d16312010-03-04 12:43:20 +01001069 { .name = "profile", .shift = FD_PROFILE },
Jens Axboec223da82010-03-24 13:23:53 +01001070 { .name = "time", .shift = FD_TIME },
Jens Axboe02444ad2008-10-07 11:33:00 +02001071 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +01001072};
1073
Jens Axboec09823a2008-02-19 20:16:57 +01001074static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +01001075{
1076 struct debug_level *dl;
1077 char *p = (char *) string;
1078 char *opt;
1079 int i;
1080
1081 if (!strcmp(string, "?") || !strcmp(string, "help")) {
Jens Axboeee56ad52008-02-01 10:30:20 +01001082 log_info("fio: dumping debug options:");
1083 for (i = 0; debug_levels[i].name; i++) {
1084 dl = &debug_levels[i];
1085 log_info("%s,", dl->name);
1086 }
Jens Axboebd6f78b2008-02-01 20:27:52 +01001087 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001088 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +01001089 }
1090
1091 while ((opt = strsep(&p, ",")) != NULL) {
1092 int found = 0;
1093
Jens Axboe5e1d3062008-05-23 11:55:53 +02001094 if (!strncmp(opt, "all", 3)) {
1095 log_info("fio: set all debug options\n");
1096 fio_debug = ~0UL;
1097 continue;
1098 }
1099
Jens Axboeee56ad52008-02-01 10:30:20 +01001100 for (i = 0; debug_levels[i].name; i++) {
1101 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +02001102 found = !strncmp(opt, dl->name, strlen(dl->name));
1103 if (!found)
1104 continue;
1105
1106 if (dl->shift == FD_JOB) {
1107 opt = strchr(opt, ':');
1108 if (!opt) {
1109 log_err("fio: missing job number\n");
1110 break;
1111 }
1112 opt++;
1113 fio_debug_jobno = atoi(opt);
1114 log_info("fio: set debug jobno %d\n",
1115 fio_debug_jobno);
1116 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001117 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001118 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +01001119 }
Jens Axboe5e1d3062008-05-23 11:55:53 +02001120 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001121 }
1122
1123 if (!found)
1124 log_err("fio: debug mask %s not found\n", opt);
1125 }
Jens Axboec09823a2008-02-19 20:16:57 +01001126 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +01001127}
Jens Axboe79e48f72008-02-01 20:37:09 +01001128#else
Jens Axboe69b98d42008-05-30 22:25:32 +02001129static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +01001130{
1131 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001132 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +01001133}
1134#endif
Jens Axboeee56ad52008-02-01 10:30:20 +01001135
Jens Axboe4c6107f2011-01-18 05:22:22 -07001136static void fio_options_fill_optstring(void)
1137{
1138 char *ostr = cmd_optstr;
1139 int i, c;
1140
1141 c = i = 0;
1142 while (l_opts[i].name) {
1143 ostr[c++] = l_opts[i].val;
1144 if (l_opts[i].has_arg == required_argument)
1145 ostr[c++] = ':';
1146 else if (l_opts[i].has_arg == optional_argument) {
1147 ostr[c++] = ':';
1148 ostr[c++] = ':';
1149 }
1150 i++;
1151 }
1152 ostr[c] = '\0';
1153}
1154
Jens Axboe214e1ec2007-03-15 10:48:13 +01001155static int parse_cmd_line(int argc, char *argv[])
1156{
1157 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +01001158 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe4c6107f2011-01-18 05:22:22 -07001159 char *ostr = cmd_optstr;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001160
Jens Axboe4c6107f2011-01-18 05:22:22 -07001161 while ((c = getopt_long_only(argc, argv, ostr, l_opts, &lidx)) != -1) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001162 switch (c) {
Jens Axboe2b386d22008-03-26 10:32:57 +01001163 case 'a':
1164 smalloc_pool_size = atoi(optarg);
1165 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001166 case 't':
Jens Axboeab2cabd2011-07-23 13:43:13 +02001167 def_thread.o.timeout = atoi(optarg);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001168 break;
1169 case 'l':
1170 write_lat_log = 1;
1171 break;
Jens Axboe3d73e5a2010-03-25 10:38:07 +01001172 case 'b':
Jens Axboe214e1ec2007-03-15 10:48:13 +01001173 write_bw_log = 1;
1174 break;
1175 case 'o':
1176 f_out = fopen(optarg, "w+");
1177 if (!f_out) {
1178 perror("fopen output");
1179 exit(1);
1180 }
1181 f_err = f_out;
1182 break;
1183 case 'm':
1184 terse_output = 1;
1185 break;
1186 case 'h':
Jens Axboe45378b32007-12-19 13:54:38 +01001187 usage(argv[0]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001188 exit(0);
1189 case 'c':
1190 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +02001191 case 's':
1192 dump_cmdline = 1;
1193 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001194 case 'r':
1195 read_only = 1;
1196 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001197 case 'v':
Jens Axboeca740f42011-01-25 13:06:16 +01001198 log_info("%s\n", fio_version_string);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001199 exit(0);
Aaron Carrolle592a062007-09-14 09:49:41 +02001200 case 'e':
1201 if (!strcmp("always", optarg))
1202 eta_print = FIO_ETA_ALWAYS;
1203 else if (!strcmp("never", optarg))
1204 eta_print = FIO_ETA_NEVER;
1205 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001206 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001207 if (set_debug(optarg))
1208 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001209 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001210 case 'x': {
1211 size_t new_size;
1212
Jens Axboe01f06b62008-02-18 20:53:47 +01001213 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001214 log_err("fio: can't use global as only "
1215 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001216 do_exit++;
1217 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001218 break;
1219 }
Jens Axboead0a2732011-03-11 10:16:17 +01001220 new_size = (nr_job_sections + 1) * sizeof(char *);
1221 job_sections = realloc(job_sections, new_size);
1222 job_sections[nr_job_sections] = strdup(optarg);
1223 nr_job_sections++;
Jens Axboe01f06b62008-02-18 20:53:47 +01001224 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001225 }
Jens Axboe9ac8a792009-11-13 21:23:07 +01001226 case 'p':
Jens Axboe07b32322010-03-05 09:48:44 +01001227 exec_profile = strdup(optarg);
Jens Axboe9ac8a792009-11-13 21:23:07 +01001228 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001229 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001230 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001231 char *val = optarg;
1232
1233 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001234 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe66251552011-05-12 10:14:57 +02001235 if (ret)
Jens Axboe214e1ec2007-03-15 10:48:13 +01001236 return 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001237 td = NULL;
1238 }
1239 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001240 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001241 int global = 0;
1242
Jens Axboe01f06b62008-02-18 20:53:47 +01001243 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001244 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001245
Jens Axboe01f06b62008-02-18 20:53:47 +01001246 if (is_section && skip_this_section(val))
1247 continue;
1248
Jens Axboe214e1ec2007-03-15 10:48:13 +01001249 td = get_new_job(global, &def_thread);
1250 if (!td)
1251 return 0;
1252 }
1253
1254 ret = fio_cmd_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001255 break;
1256 }
Jens Axboea9523c62011-01-17 16:49:54 -07001257 case 'w':
1258 warnings_fatal = 1;
1259 break;
Jens Axboefca70352011-07-06 20:12:54 +02001260 case 'j':
1261 max_jobs = atoi(optarg);
1262 if (!max_jobs || max_jobs > REAL_MAX_JOBS) {
1263 log_err("fio: invalid max jobs: %d\n", max_jobs);
1264 do_exit++;
1265 exit_val = 1;
1266 }
1267 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001268 default:
Jens Axboec09823a2008-02-19 20:16:57 +01001269 do_exit++;
1270 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001271 break;
1272 }
1273 }
1274
Jens Axboec09823a2008-02-19 20:16:57 +01001275 if (do_exit)
1276 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01001277
Jens Axboe214e1ec2007-03-15 10:48:13 +01001278 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +01001279 if (!ret)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001280 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001281 }
1282
1283 while (optind < argc) {
1284 ini_idx++;
1285 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1286 ini_file[ini_idx - 1] = strdup(argv[optind]);
1287 optind++;
1288 }
1289
1290 return ini_idx;
1291}
1292
Jens Axboeebac4652005-12-08 15:25:21 +01001293int parse_options(int argc, char *argv[])
1294{
Jens Axboe972cfd22006-06-09 11:08:56 +02001295 int job_files, i;
1296
Jens Axboeb4692822006-10-27 13:43:22 +02001297 f_out = stdout;
1298 f_err = stderr;
1299
Jens Axboe4c6107f2011-01-18 05:22:22 -07001300 fio_options_fill_optstring();
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001301 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02001302
Jens Axboeebac4652005-12-08 15:25:21 +01001303 if (setup_thread_area())
1304 return 1;
1305 if (fill_def_thread())
1306 return 1;
1307
Jens Axboe972cfd22006-06-09 11:08:56 +02001308 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001309
Jens Axboe972cfd22006-06-09 11:08:56 +02001310 for (i = 0; i < job_files; i++) {
1311 if (fill_def_thread())
1312 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001313 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001314 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001315 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001316 }
Jens Axboeebac4652005-12-08 15:25:21 +01001317
Jens Axboe88c6ed82006-06-09 11:28:10 +02001318 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +01001319 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001320
1321 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001322 if (dump_cmdline)
1323 return 0;
Jens Axboe07b32322010-03-05 09:48:44 +01001324 if (exec_profile)
1325 return 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02001326
Bruce Cran03e20d62011-01-02 20:14:54 +01001327 log_err("No jobs(s) defined\n\n");
Jens Axboe45378b32007-12-19 13:54:38 +01001328 usage(argv[0]);
Jens Axboeb4692822006-10-27 13:43:22 +02001329 return 1;
1330 }
1331
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001332 if (def_thread.o.gtod_offload) {
1333 fio_gtod_init();
1334 fio_gtod_offload = 1;
1335 fio_gtod_cpu = def_thread.o.gtod_cpu;
1336 }
1337
Jens Axboeca740f42011-01-25 13:06:16 +01001338 log_info("%s\n", fio_version_string);
Jens Axboeebac4652005-12-08 15:25:21 +01001339 return 0;
1340}