blob: f55e5d71b3abcdfd6c03a3a0d0ff5bffdab62cc3 [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 Axboef57a9c52011-09-09 21:01:37 +020046int terse_version = 2;
Jens Axboeee738492007-01-10 11:23:16 +010047
Jens Axboe214e1ec2007-03-15 10:48:13 +010048int write_bw_log = 0;
Jens Axboe4241ea82007-09-12 08:18:36 +020049int read_only = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020050
Jens Axboe5ec10ea2008-03-06 15:42:00 +010051static int write_lat_log;
Jens Axboe214e1ec2007-03-15 10:48:13 +010052
53static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020054
Jens Axboeee56ad52008-02-01 10:30:20 +010055unsigned long fio_debug = 0;
Jens Axboe5e1d3062008-05-23 11:55:53 +020056unsigned int fio_debug_jobno = -1;
57unsigned int *fio_debug_jobp = NULL;
Jens Axboeee56ad52008-02-01 10:30:20 +010058
Jens Axboe4c6107f2011-01-18 05:22:22 -070059static char cmd_optstr[256];
60
Jens Axboeb4692822006-10-27 13:43:22 +020061/*
62 * Command line options. These will contain the above, plus a few
63 * extra that only pertain to fio itself and not jobs.
64 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +010065static struct option l_opts[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020066 {
Jens Axboe08d2a192011-05-11 13:28:30 +020067 .name = (char *) "output",
Jens Axboeb4692822006-10-27 13:43:22 +020068 .has_arg = required_argument,
69 .val = 'o',
70 },
71 {
Jens Axboe08d2a192011-05-11 13:28:30 +020072 .name = (char *) "timeout",
Jens Axboeb4692822006-10-27 13:43:22 +020073 .has_arg = required_argument,
74 .val = 't',
75 },
76 {
Jens Axboe08d2a192011-05-11 13:28:30 +020077 .name = (char *) "latency-log",
Jens Axboeb4692822006-10-27 13:43:22 +020078 .has_arg = required_argument,
79 .val = 'l',
80 },
81 {
Jens Axboe08d2a192011-05-11 13:28:30 +020082 .name = (char *) "bandwidth-log",
Jens Axboeb4692822006-10-27 13:43:22 +020083 .has_arg = required_argument,
84 .val = 'b',
85 },
86 {
Jens Axboe08d2a192011-05-11 13:28:30 +020087 .name = (char *) "minimal",
Jens Axboeb4692822006-10-27 13:43:22 +020088 .has_arg = optional_argument,
89 .val = 'm',
90 },
91 {
Jens Axboe08d2a192011-05-11 13:28:30 +020092 .name = (char *) "version",
Jens Axboeb4692822006-10-27 13:43:22 +020093 .has_arg = no_argument,
94 .val = 'v',
95 },
96 {
Jens Axboe08d2a192011-05-11 13:28:30 +020097 .name = (char *) "help",
Jens Axboefd28ca42007-01-09 21:20:13 +010098 .has_arg = no_argument,
99 .val = 'h',
100 },
101 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200102 .name = (char *) "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +0100103 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +0100104 .val = 'c',
105 },
106 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200107 .name = (char *) "showcmd",
Jens Axboecca73aa2007-04-04 11:09:19 +0200108 .has_arg = no_argument,
Jens Axboe724e4432007-09-11 20:02:05 +0200109 .val = 's',
110 },
111 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200112 .name = (char *) "readonly",
Jens Axboe724e4432007-09-11 20:02:05 +0200113 .has_arg = no_argument,
114 .val = 'r',
Jens Axboecca73aa2007-04-04 11:09:19 +0200115 },
116 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200117 .name = (char *) "eta",
Aaron Carrolle592a062007-09-14 09:49:41 +0200118 .has_arg = required_argument,
119 .val = 'e',
120 },
121 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200122 .name = (char *) "debug",
Jens Axboeee56ad52008-02-01 10:30:20 +0100123 .has_arg = required_argument,
124 .val = 'd',
125 },
126 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200127 .name = (char *) "section",
Jens Axboe01f06b62008-02-18 20:53:47 +0100128 .has_arg = required_argument,
129 .val = 'x',
130 },
131 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200132 .name = (char *) "alloc-size",
Jens Axboe2b386d22008-03-26 10:32:57 +0100133 .has_arg = required_argument,
134 .val = 'a',
135 },
136 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200137 .name = (char *) "profile",
Jens Axboe9ac8a792009-11-13 21:23:07 +0100138 .has_arg = required_argument,
139 .val = 'p',
140 },
141 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200142 .name = (char *) "warnings-fatal",
Jens Axboea9523c62011-01-17 16:49:54 -0700143 .has_arg = no_argument,
144 .val = 'w',
145 },
146 {
Jens Axboefca70352011-07-06 20:12:54 +0200147 .name = (char *) "max-jobs",
148 .has_arg = required_argument,
149 .val = 'j',
150 },
151 {
Jens Axboef57a9c52011-09-09 21:01:37 +0200152 .name = (char *) "terse-version",
153 .has_arg = required_argument,
154 .val = 'V',
155 },
156 {
Jens Axboeb4692822006-10-27 13:43:22 +0200157 .name = NULL,
158 },
159};
160
Joel Becker9728ce32007-03-01 08:24:39 +0100161FILE *get_f_out()
162{
163 return f_out;
164}
165
166FILE *get_f_err()
167{
168 return f_err;
169}
170
Jens Axboe906c8d72006-06-13 09:37:56 +0200171/*
172 * Return a free job structure.
173 */
Jens Axboeebac4652005-12-08 15:25:21 +0100174static struct thread_data *get_new_job(int global, struct thread_data *parent)
175{
176 struct thread_data *td;
177
178 if (global)
179 return &def_thread;
Bruce Crane61f1ec2011-01-14 18:30:26 +0100180 if (thread_number >= max_jobs) {
181 log_err("error: maximum number of jobs (%d) reached.\n",
182 max_jobs);
Jens Axboeebac4652005-12-08 15:25:21 +0100183 return NULL;
Bruce Crane61f1ec2011-01-14 18:30:26 +0100184 }
Jens Axboeebac4652005-12-08 15:25:21 +0100185
186 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200187 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100188
Jens Axboee0b0d892009-12-08 10:10:14 +0100189 td->o.uid = td->o.gid = -1U;
190
Jens Axboecade3ef2007-03-23 15:29:45 +0100191 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100192 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100193
Jens Axboe15dc1932010-03-05 10:59:06 +0100194 profile_add_hooks(td);
195
Jens Axboeebac4652005-12-08 15:25:21 +0100196 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100197 return td;
198}
199
200static void put_job(struct thread_data *td)
201{
Jens Axboe549577a2006-10-30 12:23:41 +0100202 if (td == &def_thread)
203 return;
Bruce Cran84dd1882011-05-05 08:14:09 -0600204
Jens Axboe58c55ba2010-03-09 12:20:08 +0100205 profile_td_exit(td);
Jens Axboe549577a2006-10-30 12:23:41 +0100206
Jens Axboe16edf252007-02-10 14:59:22 +0100207 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100208 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100209
Jens Axboeebac4652005-12-08 15:25:21 +0100210 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
211 thread_number--;
212}
213
Jens Axboe581e7142009-06-09 12:47:16 +0200214static int __setup_rate(struct thread_data *td, enum fio_ddir ddir)
Jens Axboe127f6862007-03-15 12:09:57 +0100215{
Jens Axboe581e7142009-06-09 12:47:16 +0200216 unsigned int bs = td->o.min_bs[ddir];
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100217 unsigned long long bytes_per_sec;
Jens Axboe127f6862007-03-15 12:09:57 +0100218
Jens Axboeff58fce2010-08-25 12:02:08 +0200219 assert(ddir_rw(ddir));
220
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100221 if (td->o.rate[ddir])
222 bytes_per_sec = td->o.rate[ddir];
223 else
224 bytes_per_sec = td->o.rate_iops[ddir] * bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100225
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100226 if (!bytes_per_sec) {
Jens Axboe127f6862007-03-15 12:09:57 +0100227 log_err("rate lower than supported\n");
228 return -1;
229 }
230
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100231 td->rate_nsec_cycle[ddir] = 1000000000ULL / bytes_per_sec;
Jens Axboe581e7142009-06-09 12:47:16 +0200232 td->rate_pending_usleep[ddir] = 0;
Jens Axboe127f6862007-03-15 12:09:57 +0100233 return 0;
234}
235
Jens Axboe581e7142009-06-09 12:47:16 +0200236static int setup_rate(struct thread_data *td)
237{
238 int ret = 0;
239
240 if (td->o.rate[DDIR_READ] || td->o.rate_iops[DDIR_READ])
241 ret = __setup_rate(td, DDIR_READ);
242 if (td->o.rate[DDIR_WRITE] || td->o.rate_iops[DDIR_WRITE])
243 ret |= __setup_rate(td, DDIR_WRITE);
244
245 return ret;
246}
247
Jens Axboe83472392009-02-19 21:32:12 +0100248static int fixed_block_size(struct thread_options *o)
249{
250 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
251 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
252 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE];
253}
254
Jens Axboedad915e2006-10-27 11:10:18 +0200255/*
256 * Lazy way of fixing up options that depend on each other. We could also
257 * define option callback handlers, but this is easier.
258 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100259static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200260{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100261 struct thread_options *o = &td->o;
Jens Axboeff217452011-01-18 22:33:02 -0700262 int ret = 0;
Jens Axboedad915e2006-10-27 11:10:18 +0200263
Jens Axboef356d012009-01-05 09:56:29 +0100264#ifndef FIO_HAVE_PSHARED_MUTEX
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100265 if (!o->use_thread) {
Jens Axboef356d012009-01-05 09:56:29 +0100266 log_info("fio: this platform does not support process shared"
267 " mutexes, forcing use of threads. Use the 'thread'"
268 " option to get rid of this warning.\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100269 o->use_thread = 1;
Jens Axboea9523c62011-01-17 16:49:54 -0700270 ret = warnings_fatal;
Jens Axboef356d012009-01-05 09:56:29 +0100271 }
272#endif
273
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100274 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200275 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100276 free(o->write_iolog_file);
277 o->write_iolog_file = NULL;
Jens Axboea9523c62011-01-17 16:49:54 -0700278 ret = warnings_fatal;
Jens Axboe076efc72006-10-27 11:24:25 +0200279 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100280
Jens Axboe16b462a2006-10-30 12:35:18 +0100281 /*
282 * only really works for sequential io for now, and with 1 file
283 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100284 if (o->zone_size && td_random(td) && o->open_files == 1)
285 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100286
287 /*
288 * Reads can do overwrites, we always need to pre-create the file
289 */
290 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100291 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100292
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100293 if (!o->min_bs[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100294 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100295 if (!o->max_bs[DDIR_READ])
296 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
297 if (!o->min_bs[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100298 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100299 if (!o->max_bs[DDIR_WRITE])
300 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100301
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100302 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100303
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100304 /*
305 * For random IO, allow blockalign offset other than min_bs.
306 */
307 if (!o->ba[DDIR_READ] || !td_random(td))
308 o->ba[DDIR_READ] = o->min_bs[DDIR_READ];
309 if (!o->ba[DDIR_WRITE] || !td_random(td))
310 o->ba[DDIR_WRITE] = o->min_bs[DDIR_WRITE];
311
312 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
313 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE]) &&
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100314 !o->norandommap) {
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100315 log_err("fio: Any use of blockalign= turns off randommap\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100316 o->norandommap = 1;
Jens Axboea9523c62011-01-17 16:49:54 -0700317 ret = warnings_fatal;
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100318 }
319
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100320 if (!o->file_size_high)
321 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100322
Jens Axboe83472392009-02-19 21:32:12 +0100323 if (o->norandommap && o->verify != VERIFY_NONE
324 && !fixed_block_size(o)) {
325 log_err("fio: norandommap given for variable block sizes, "
326 "verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100327 o->verify = VERIFY_NONE;
Jens Axboea9523c62011-01-17 16:49:54 -0700328 ret = warnings_fatal;
Jens Axboebb8895e2006-10-30 15:14:48 +0100329 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100330 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100331 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100332
333 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100334 * thinktime_spin must be less than thinktime
335 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100336 if (o->thinktime_spin > o->thinktime)
337 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100338
339 /*
340 * The low water mark cannot be bigger than the iodepth
341 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100342 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100343 /*
344 * syslet work around - if the workload is sequential,
345 * we want to let the queue drain all the way down to
346 * avoid seeking between async threads
347 */
348 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100349 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100350 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100351 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100352 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100353
354 /*
355 * If batch number isn't set, default to the same as iodepth
356 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100357 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
358 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100359
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100360 if (o->nr_files > td->files_index)
361 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100362
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100363 if (o->open_files > o->nr_files || !o->open_files)
364 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100365
Jens Axboe581e7142009-06-09 12:47:16 +0200366 if (((o->rate[0] + o->rate[1]) && (o->rate_iops[0] + o->rate_iops[1]))||
367 ((o->ratemin[0] + o->ratemin[1]) && (o->rate_iops_min[0] +
368 o->rate_iops_min[1]))) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100369 log_err("fio: rate and rate_iops are mutually exclusive\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700370 ret = 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100371 }
Jens Axboe581e7142009-06-09 12:47:16 +0200372 if ((o->rate[0] < o->ratemin[0]) || (o->rate[1] < o->ratemin[1]) ||
373 (o->rate_iops[0] < o->rate_iops_min[0]) ||
374 (o->rate_iops[1] < o->rate_iops_min[1])) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100375 log_err("fio: minimum rate exceeds rate\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700376 ret = 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100377 }
378
Jens Axboecf4464c2007-04-17 20:14:42 +0200379 if (!o->timeout && o->time_based) {
380 log_err("fio: time_based requires a runtime/timeout setting\n");
381 o->time_based = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700382 ret = warnings_fatal;
Jens Axboecf4464c2007-04-17 20:14:42 +0200383 }
384
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100385 if (o->fill_device && !o->size)
Jens Axboe5921e802008-05-30 15:02:38 +0200386 o->size = -1ULL;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100387
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100388 if (o->verify != VERIFY_NONE) {
Jens Axboe996936f2011-01-18 05:41:39 -0700389 if (td_write(td) && o->do_verify && o->numjobs > 1) {
Jens Axboea9523c62011-01-17 16:49:54 -0700390 log_info("Multiple writers may overwrite blocks that "
391 "belong to other jobs. This can cause "
392 "verification failures.\n");
393 ret = warnings_fatal;
394 }
395
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100396 o->refill_buffers = 1;
Jens Axboe2f1b8e82010-06-18 09:22:56 +0200397 if (o->max_bs[DDIR_WRITE] != o->min_bs[DDIR_WRITE] &&
398 !o->verify_interval)
399 o->verify_interval = o->min_bs[DDIR_WRITE];
Jens Axboed9905882010-03-18 20:43:00 +0100400 }
Jens Axboe41ccd842008-05-22 09:17:33 +0200401
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100402 if (o->pre_read) {
403 o->invalidate_cache = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700404 if (td->io_ops->flags & FIO_PIPEIO) {
Jens Axboe9c0d2242009-07-01 12:26:28 +0200405 log_info("fio: cannot pre-read files with an IO engine"
406 " that isn't seekable. Pre-read disabled.\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700407 ret = warnings_fatal;
408 }
Jens Axboe9c0d2242009-07-01 12:26:28 +0200409 }
Jens Axboe34f1c042009-06-02 14:19:25 +0200410
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700411#ifndef FIO_HAVE_FDATASYNC
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100412 if (o->fdatasync_blocks) {
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700413 log_info("fio: this platform does not support fdatasync()"
414 " falling back to using fsync(). Use the 'fsync'"
415 " option instead of 'fdatasync' to get rid of"
416 " this warning\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100417 o->fsync_blocks = o->fdatasync_blocks;
418 o->fdatasync_blocks = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700419 ret = warnings_fatal;
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700420 }
421#endif
422
Jens Axboea9523c62011-01-17 16:49:54 -0700423 return ret;
Jens Axboee1f36502006-10-27 10:54:08 +0200424}
425
Jens Axboe906c8d72006-06-13 09:37:56 +0200426/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100427 * This function leaks the buffer
428 */
429static char *to_kmg(unsigned int val)
430{
431 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100432 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100433 char *p = post;
434
Jens Axboe245142f2006-11-08 12:49:21 +0100435 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100436 if (val & 1023)
437 break;
438
439 val >>= 10;
440 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100441 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100442
443 snprintf(buf, 31, "%u%c", val, *p);
444 return buf;
445}
446
Jens Axboe09629a92007-03-09 09:00:06 +0100447/* External engines are specified by "external:name.o") */
448static const char *get_engine_name(const char *str)
449{
450 char *p = strstr(str, ":");
451
452 if (!p)
453 return str;
454
455 p++;
456 strip_blank_front(&p);
457 strip_blank_end(p);
458 return p;
459}
460
Jens Axboee132cba2007-03-14 14:23:54 +0100461static int exists_and_not_file(const char *filename)
462{
463 struct stat sb;
464
465 if (lstat(filename, &sb) == -1)
466 return 0;
467
Bruce Cranecc314b2011-01-04 10:59:30 +0100468 /* \\.\ is the device namespace in Windows, where every file
469 * is a device node */
470 if (S_ISREG(sb.st_mode) && strncmp(filename, "\\\\.\\", 4) != 0)
Jens Axboee132cba2007-03-14 14:23:54 +0100471 return 0;
472
473 return 1;
474}
475
Jens Axboe4c07ad82011-03-28 09:51:09 +0200476static void td_fill_rand_seeds_os(struct thread_data *td)
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200477{
478 os_random_seed(td->rand_seeds[0], &td->bsrange_state);
479 os_random_seed(td->rand_seeds[1], &td->verify_state);
480 os_random_seed(td->rand_seeds[2], &td->rwmix_state);
481
482 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
483 os_random_seed(td->rand_seeds[3], &td->next_file_state);
484
485 os_random_seed(td->rand_seeds[5], &td->file_size_state);
Jens Axboe0d29de82010-09-01 13:54:15 +0200486 os_random_seed(td->rand_seeds[6], &td->trim_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200487
488 if (!td_random(td))
489 return;
490
491 if (td->o.rand_repeatable)
492 td->rand_seeds[4] = FIO_RANDSEED * td->thread_number;
493
494 os_random_seed(td->rand_seeds[4], &td->random_state);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200495}
496
497static void td_fill_rand_seeds_internal(struct thread_data *td)
498{
499 init_rand_seed(&td->__bsrange_state, td->rand_seeds[0]);
500 init_rand_seed(&td->__verify_state, td->rand_seeds[1]);
501 init_rand_seed(&td->__rwmix_state, td->rand_seeds[2]);
502
503 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
504 init_rand_seed(&td->__next_file_state, td->rand_seeds[3]);
505
506 init_rand_seed(&td->__file_size_state, td->rand_seeds[5]);
507 init_rand_seed(&td->__trim_state, td->rand_seeds[6]);
508
509 if (!td_random(td))
510 return;
511
512 if (td->o.rand_repeatable)
513 td->rand_seeds[4] = FIO_RANDSEED * td->thread_number;
514
Jens Axboe2615cc42011-03-28 09:35:09 +0200515 init_rand_seed(&td->__random_state, td->rand_seeds[4]);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200516}
517
Jens Axboe4c07ad82011-03-28 09:51:09 +0200518void td_fill_rand_seeds(struct thread_data *td)
519{
520 if (td->o.use_os_rand)
521 td_fill_rand_seeds_os(td);
522 else
523 td_fill_rand_seeds_internal(td);
Jens Axboe3545a102011-08-31 15:20:15 -0600524
525 init_rand_seed(&td->buf_state, td->rand_seeds[7]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200526}
527
Jens Axboef8977ee2006-11-06 14:03:03 +0100528/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100529 * Initialize the various random states we need (random io, block size ranges,
530 * read/write mix, etc).
531 */
532static int init_random_state(struct thread_data *td)
533{
Jens Axboe68727072007-03-15 20:49:25 +0100534 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100535
536 fd = open("/dev/urandom", O_RDONLY);
537 if (fd == -1) {
538 td_verror(td, errno, "open");
539 return 1;
540 }
541
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200542 if (read(fd, td->rand_seeds, sizeof(td->rand_seeds)) <
543 (int) sizeof(td->rand_seeds)) {
Jens Axboe9c60ce62007-03-15 09:14:47 +0100544 td_verror(td, EIO, "read");
545 close(fd);
546 return 1;
547 }
548
549 close(fd);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200550 td_fill_rand_seeds(td);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100551 return 0;
552}
553
Jens Axboe9c60ce62007-03-15 09:14:47 +0100554/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200555 * Adds a job to the list of things todo. Sanitizes the various options
556 * to make sure we don't have conflicts, and initializes various
557 * members of td.
558 */
Jens Axboe75154842006-06-01 13:56:09 +0200559static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100560{
Jens Axboe413dd452007-02-23 09:26:09 +0100561 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
562 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100563 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100564 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100565 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100566 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100567
Jens Axboeebac4652005-12-08 15:25:21 +0100568 /*
569 * the def_thread is just for options, it's not a real job
570 */
571 if (td == &def_thread)
572 return 0;
573
Jens Axboecca73aa2007-04-04 11:09:19 +0200574 /*
575 * if we are just dumping the output command line, don't add the job
576 */
577 if (dump_cmdline) {
578 put_job(td);
579 return 0;
580 }
581
Jens Axboe58c55ba2010-03-09 12:20:08 +0100582 if (profile_td_init(td))
Jens Axboe66251552011-05-12 10:14:57 +0200583 goto err;
Jens Axboe58c55ba2010-03-09 12:20:08 +0100584
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100585 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100586 td->io_ops = load_ioengine(td, engine);
587 if (!td->io_ops) {
588 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100589 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100590 }
Jens Axboedf641192006-10-12 07:55:41 +0200591
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100592 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100593 nr_thread++;
594 else
595 nr_process++;
596
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100597 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100598 td->io_ops->flags |= FIO_RAWIO;
599
Jens Axboee132cba2007-03-14 14:23:54 +0100600 file_alloced = 0;
Jens Axboe691c8fb2008-03-07 14:26:26 +0100601 if (!td->o.filename && !td->files_index && !td->o.read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +0100602 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100603
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100604 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100605 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100606 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100607 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100608 sprintf(fname, "%s.%d.%d", jobname,
609 td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100610 add_file(td, fname);
611 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100612 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100613 }
Jens Axboeebac4652005-12-08 15:25:21 +0100614
Jens Axboe4e991c22007-03-15 11:41:11 +0100615 if (fixup_options(td))
616 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100617
Jens Axboe07eb79d2007-04-12 13:02:38 +0200618 if (td->io_ops->flags & FIO_DISKLESSIO) {
619 struct fio_file *f;
620
621 for_each_file(td, f, i)
622 f->real_file_size = -1ULL;
623 }
624
Jens Axboecdd18ad2008-02-27 18:58:00 +0100625 td->mutex = fio_mutex_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100626
Yu-ju Hong83349192011-08-13 00:53:44 +0200627 td->ts.clat_percentiles = td->o.clat_percentiles;
628 if (td->o.overwrite_plist)
629 td->ts.percentile_list = td->o.percentile_list;
630 else
631 td->ts.percentile_list = NULL;
632
Jens Axboe756867b2007-03-06 15:19:24 +0100633 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
634 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
Jens Axboe02af0982010-06-24 09:59:34 +0200635 td->ts.lat_stat[0].min_val = td->ts.lat_stat[1].min_val = ULONG_MAX;
Jens Axboe756867b2007-03-06 15:19:24 +0100636 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Adam DeBellinscdd54112010-09-28 13:22:55 +0900637 td->ddir_seq_nr = td->o.ddir_seq_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100638
Jens Axboe755c3182009-08-25 22:14:29 +0200639 if ((td->o.stonewall || td->o.new_group) && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100640 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100641 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100642 }
Jens Axboeebac4652005-12-08 15:25:21 +0100643
644 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100645 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100646
Jens Axboe9c60ce62007-03-15 09:14:47 +0100647 if (init_random_state(td))
648 goto err;
649
Jens Axboeebac4652005-12-08 15:25:21 +0100650 if (setup_rate(td))
651 goto err;
652
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100653 if (td->o.write_lat_log) {
Jens Axboe02af0982010-06-24 09:59:34 +0200654 setup_log(&td->ts.lat_log);
Jens Axboe756867b2007-03-06 15:19:24 +0100655 setup_log(&td->ts.slat_log);
656 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100657 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100658 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100659 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100660
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100661 if (!td->o.name)
662 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200663
Jens Axboec6ae0a52006-06-12 11:04:44 +0200664 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200665 if (!job_add_num) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100666 if (!strcmp(td->io_ops->name, "cpuio")) {
667 log_info("%s: ioengine=cpu, cpuload=%u,"
668 " cpucycle=%u\n", td->o.name,
669 td->o.cpuload,
670 td->o.cpucycle);
671 } else {
Jens Axboef8977ee2006-11-06 14:03:03 +0100672 char *c1, *c2, *c3, *c4;
673
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100674 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
675 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
676 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
677 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100678
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100679 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s,"
680 " ioengine=%s, iodepth=%u\n",
681 td->o.name, td->groupid,
682 ddir_str[td->o.td_ddir],
683 c1, c2, c3, c4,
684 td->io_ops->name,
685 td->o.iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100686
687 free(c1);
688 free(c2);
689 free(c3);
690 free(c4);
691 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200692 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100693 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200694 }
Jens Axboeebac4652005-12-08 15:25:21 +0100695
696 /*
697 * recurse add identical jobs, clear numjobs and stonewall options
698 * as they don't apply to sub-jobs
699 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100700 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100701 while (--numjobs) {
702 struct thread_data *td_new = get_new_job(0, td);
703
704 if (!td_new)
705 goto err;
706
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100707 td_new->o.numjobs = 1;
708 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200709 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100710
711 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100712 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100713 td_new->files_index = 0;
Jens Axboe4e6ea2f2009-03-04 20:17:22 +0100714 td_new->files_size = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100715 td_new->files = NULL;
716 }
717
Jens Axboe75154842006-06-01 13:56:09 +0200718 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100719
Jens Axboe75154842006-06-01 13:56:09 +0200720 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100721 goto err;
722 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100723
Jens Axboeebac4652005-12-08 15:25:21 +0100724 return 0;
725err:
726 put_job(td);
727 return -1;
728}
729
Jens Axboe79d16312010-03-04 12:43:20 +0100730/*
731 * Parse as if 'o' was a command line
732 */
733void add_job_opts(const char **o)
734{
735 struct thread_data *td, *td_parent;
736 int i, in_global = 1;
737 char jobname[32];
738
739 i = 0;
740 td_parent = td = NULL;
741 while (o[i]) {
742 if (!strncmp(o[i], "name", 4)) {
743 in_global = 0;
744 if (td)
745 add_job(td, jobname, 0);
746 td = NULL;
747 sprintf(jobname, "%s", o[i] + 5);
748 }
749 if (in_global && !td_parent)
750 td_parent = get_new_job(1, &def_thread);
751 else if (!in_global && !td) {
752 if (!td_parent)
753 td_parent = &def_thread;
754 td = get_new_job(0, td_parent);
755 }
756 if (in_global)
757 fio_options_parse(td_parent, (char **) &o[i], 1);
758 else
759 fio_options_parse(td, (char **) &o[i], 1);
760 i++;
761 }
762
763 if (td)
764 add_job(td, jobname, 0);
765}
766
Jens Axboe01f06b62008-02-18 20:53:47 +0100767static int skip_this_section(const char *name)
768{
Jens Axboead0a2732011-03-11 10:16:17 +0100769 int i;
770
771 if (!nr_job_sections)
Jens Axboe01f06b62008-02-18 20:53:47 +0100772 return 0;
773 if (!strncmp(name, "global", 6))
774 return 0;
775
Jens Axboead0a2732011-03-11 10:16:17 +0100776 for (i = 0; i < nr_job_sections; i++)
777 if (!strcmp(job_sections[i], name))
778 return 0;
779
780 return 1;
Jens Axboe01f06b62008-02-18 20:53:47 +0100781}
782
Jens Axboeebac4652005-12-08 15:25:21 +0100783static int is_empty_or_comment(char *line)
784{
785 unsigned int i;
786
787 for (i = 0; i < strlen(line); i++) {
788 if (line[i] == ';')
789 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100790 if (line[i] == '#')
791 return 1;
Jens Axboe76cd9372011-07-08 21:14:57 +0200792 if (!isspace((int) line[i]) && !iscntrl((int) line[i]))
Jens Axboeebac4652005-12-08 15:25:21 +0100793 return 0;
794 }
795
796 return 1;
797}
798
Jens Axboe313cb202006-12-21 09:50:00 +0100799/*
Jens Axboe07261982006-06-07 10:51:12 +0200800 * This is our [ini] type file parser.
801 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100802static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100803{
Jens Axboee1f36502006-10-27 10:54:08 +0200804 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100805 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100806 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100807 FILE *f;
808 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200809 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200810 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +0200811 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +0100812 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200813 char **opts;
814 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +0100815
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200816 if (!strcmp(file, "-"))
817 f = stdin;
818 else
819 f = fopen(file, "r");
820
Jens Axboeebac4652005-12-08 15:25:21 +0100821 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200822 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100823 return 1;
824 }
825
826 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200827
828 /*
829 * it's really 256 + small bit, 280 should suffice
830 */
831 name = malloc(280);
832 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100833
Jens Axboe3b8b7132008-06-10 19:46:23 +0200834 alloc_opts = 8;
835 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +0200836 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200837
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200838 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100839 do {
Jens Axboeccf8f122007-09-27 10:48:55 +0200840 /*
841 * if skip_fgets is set, we already have loaded a line we
842 * haven't handled.
843 */
844 if (!skip_fgets) {
845 p = fgets(string, 4095, f);
846 if (!p)
847 break;
848 }
gurudas paicdc7f192007-03-29 10:10:56 +0200849
Jens Axboeccf8f122007-09-27 10:48:55 +0200850 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +0200851 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800852 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200853
Jens Axboeebac4652005-12-08 15:25:21 +0100854 if (is_empty_or_comment(p))
855 continue;
Bruce Cran84dd1882011-05-05 08:14:09 -0600856 if (sscanf(p, "[%255[^\n]]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100857 if (inside_skip)
858 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100859 log_err("fio: option <%s> outside of [] job section\n",
860 p);
Jens Axboe088b4202007-07-19 14:53:01 +0200861 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800862 }
Jens Axboeebac4652005-12-08 15:25:21 +0100863
Jens Axboe7a4b80a2010-05-22 20:43:11 +0200864 name[strlen(name) - 1] = '\0';
865
Jens Axboe01f06b62008-02-18 20:53:47 +0100866 if (skip_this_section(name)) {
867 inside_skip = 1;
868 continue;
869 } else
870 inside_skip = 0;
871
Jens Axboeebac4652005-12-08 15:25:21 +0100872 global = !strncmp(name, "global", 6);
873
Jens Axboecca73aa2007-04-04 11:09:19 +0200874 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200875 if (first_sect)
876 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200877 if (!global)
878 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200879 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200880 }
881
Jens Axboeebac4652005-12-08 15:25:21 +0100882 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200883 if (!td) {
884 ret = 1;
885 break;
886 }
Jens Axboeebac4652005-12-08 15:25:21 +0100887
Jens Axboe972cfd22006-06-09 11:08:56 +0200888 /*
889 * Seperate multiple job files by a stonewall
890 */
Jens Axboef9481912006-06-09 11:37:28 +0200891 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100892 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200893 stonewall = 0;
894 }
895
Jens Axboe3b8b7132008-06-10 19:46:23 +0200896 num_opts = 0;
897 memset(opts, 0, alloc_opts * sizeof(char *));
898
Jens Axboeebac4652005-12-08 15:25:21 +0100899 while ((p = fgets(string, 4096, f)) != NULL) {
900 if (is_empty_or_comment(p))
901 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200902
Jens Axboeb6754f92006-05-30 14:29:32 +0200903 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100904
Jens Axboeccf8f122007-09-27 10:48:55 +0200905 /*
906 * new section, break out and make sure we don't
907 * fgets() a new line at the top.
908 */
909 if (p[0] == '[') {
910 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100911 break;
Jens Axboeccf8f122007-09-27 10:48:55 +0200912 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100913
Jens Axboe4ae3f762006-05-30 13:35:14 +0200914 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200915
Jens Axboe3b8b7132008-06-10 19:46:23 +0200916 if (num_opts == alloc_opts) {
917 alloc_opts <<= 1;
918 opts = realloc(opts,
919 alloc_opts * sizeof(char *));
920 }
921
922 opts[num_opts] = strdup(p);
923 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +0100924 }
Jens Axboeebac4652005-12-08 15:25:21 +0100925
Jens Axboe3b8b7132008-06-10 19:46:23 +0200926 ret = fio_options_parse(td, opts, num_opts);
927 if (!ret) {
928 if (dump_cmdline)
929 for (i = 0; i < num_opts; i++)
930 log_info("--%s ", opts[i]);
931
Jens Axboe45410ac2006-06-07 11:10:39 +0200932 ret = add_job(td, name, 0);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200933 } else {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100934 log_err("fio: job %s dropped\n", name);
935 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200936 }
Jens Axboe3b8b7132008-06-10 19:46:23 +0200937
938 for (i = 0; i < num_opts; i++)
939 free(opts[i]);
940 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100941 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100942
Jens Axboecca73aa2007-04-04 11:09:19 +0200943 if (dump_cmdline)
944 log_info("\n");
945
Jens Axboe3b8b7132008-06-10 19:46:23 +0200946 for (i = 0; i < num_opts; i++)
947 free(opts[i]);
948
Jens Axboeebac4652005-12-08 15:25:21 +0100949 free(string);
950 free(name);
Jens Axboe25775942008-06-10 20:26:06 +0200951 free(opts);
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200952 if (f != stdin)
953 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200954 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100955}
956
957static int fill_def_thread(void)
958{
959 memset(&def_thread, 0, sizeof(def_thread));
960
Jens Axboe375b2692007-05-22 09:13:02 +0200961 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100962
963 /*
Jens Axboeee738492007-01-10 11:23:16 +0100964 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100965 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100966 fio_fill_default_options(&def_thread);
Jens Axboeebac4652005-12-08 15:25:21 +0100967 return 0;
968}
969
Jens Axboeebac4652005-12-08 15:25:21 +0100970static void free_shm(void)
971{
972 struct shmid_ds sbuf;
973
974 if (threads) {
Jens Axboe5e1d3062008-05-23 11:55:53 +0200975 void *tp = threads;
976
Jens Axboeebac4652005-12-08 15:25:21 +0100977 threads = NULL;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200978 file_hash_exit();
979 fio_debug_jobp = NULL;
980 shmdt(tp);
Jens Axboeebac4652005-12-08 15:25:21 +0100981 shmctl(shm_id, IPC_RMID, &sbuf);
982 }
Jens Axboe2e5cdb12008-03-01 18:52:49 +0100983
984 scleanup();
Jens Axboeebac4652005-12-08 15:25:21 +0100985}
986
Jens Axboe906c8d72006-06-13 09:37:56 +0200987/*
988 * The thread area is shared between the main process and the job
989 * threads/processes. So setup a shared memory segment that will hold
Jens Axboe380065a2008-03-01 18:56:24 +0100990 * all the job info. We use the end of the region for keeping track of
991 * open files across jobs, for file sharing.
Jens Axboe906c8d72006-06-13 09:37:56 +0200992 */
Jens Axboeebac4652005-12-08 15:25:21 +0100993static int setup_thread_area(void)
994{
Jens Axboe380065a2008-03-01 18:56:24 +0100995 void *hash;
996
Jens Axboeebac4652005-12-08 15:25:21 +0100997 /*
998 * 1024 is too much on some machines, scale max_jobs if
999 * we get a failure that looks like too large a shm segment
1000 */
1001 do {
Jens Axboe906c8d72006-06-13 09:37:56 +02001002 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +01001003
Jens Axboe380065a2008-03-01 18:56:24 +01001004 size += file_hash_size;
Jens Axboe5e1d3062008-05-23 11:55:53 +02001005 size += sizeof(unsigned int);
Jens Axboe380065a2008-03-01 18:56:24 +01001006
Jens Axboe906c8d72006-06-13 09:37:56 +02001007 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +01001008 if (shm_id != -1)
1009 break;
1010 if (errno != EINVAL) {
1011 perror("shmget");
1012 break;
1013 }
1014
1015 max_jobs >>= 1;
1016 } while (max_jobs);
1017
1018 if (shm_id == -1)
1019 return 1;
1020
1021 threads = shmat(shm_id, NULL, 0);
1022 if (threads == (void *) -1) {
1023 perror("shmat");
1024 return 1;
1025 }
1026
Jens Axboe1f809d12007-10-25 18:34:02 +02001027 memset(threads, 0, max_jobs * sizeof(struct thread_data));
Jens Axboe380065a2008-03-01 18:56:24 +01001028 hash = (void *) threads + max_jobs * sizeof(struct thread_data);
Jens Axboe5e1d3062008-05-23 11:55:53 +02001029 fio_debug_jobp = (void *) hash + file_hash_size;
1030 *fio_debug_jobp = -1;
Jens Axboe380065a2008-03-01 18:56:24 +01001031 file_hash_init(hash);
Jens Axboeebac4652005-12-08 15:25:21 +01001032 atexit(free_shm);
1033 return 0;
1034}
1035
Jens Axboe45378b32007-12-19 13:54:38 +01001036static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +02001037{
Bruce Cran43617622011-07-30 12:55:52 +02001038 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +01001039 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboeee56ad52008-02-01 10:30:20 +01001040 printf("\t--debug=options\tEnable debug logging\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +01001041 printf("\t--output\tWrite output to file\n");
1042 printf("\t--timeout\tRuntime in seconds\n");
1043 printf("\t--latency-log\tGenerate per-job latency logs\n");
1044 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
1045 printf("\t--minimal\tMinimal (terse) output\n");
1046 printf("\t--version\tPrint version info and exit\n");
Jens Axboef57a9c52011-09-09 21:01:37 +02001047 printf("\t--terse-version=x Terse version output format\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +01001048 printf("\t--help\t\tPrint this page\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001049 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of"
1050 " them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +02001051 printf("\t--showcmd\tTurn a job file into command line options\n");
Aaron Carrolle592a062007-09-14 09:49:41 +02001052 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
1053 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001054 printf("\t--readonly\tTurn on safety read-only checks, preventing"
1055 " writes\n");
Jens Axboe01f06b62008-02-18 20:53:47 +01001056 printf("\t--section=name\tOnly run specified section in job file\n");
Jens Axboe2b386d22008-03-26 10:32:57 +01001057 printf("\t--alloc-size=kb\tSet smalloc pool to this size in kb"
1058 " (def 1024)\n");
Jens Axboea9523c62011-01-17 16:49:54 -07001059 printf("\t--warnings-fatal Fio parser warnings are fatal\n");
Jens Axboefca70352011-07-06 20:12:54 +02001060 printf("\t--max-jobs\tMaximum number of threads/processes to support\n");
Jens Axboeaa58d252010-06-09 09:49:38 +02001061 printf("\nFio was written by Jens Axboe <jens.axboe@oracle.com>");
1062 printf("\n Jens Axboe <jaxboe@fusionio.com>\n");
Jens Axboeb4692822006-10-27 13:43:22 +02001063}
1064
Jens Axboe79e48f72008-02-01 20:37:09 +01001065#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +01001066struct debug_level debug_levels[] = {
Jens Axboebd6f78b2008-02-01 20:27:52 +01001067 { .name = "process", .shift = FD_PROCESS, },
1068 { .name = "file", .shift = FD_FILE, },
1069 { .name = "io", .shift = FD_IO, },
1070 { .name = "mem", .shift = FD_MEM, },
1071 { .name = "blktrace", .shift = FD_BLKTRACE },
1072 { .name = "verify", .shift = FD_VERIFY },
Jens Axboe84422ac2008-02-19 20:10:26 +01001073 { .name = "random", .shift = FD_RANDOM },
Jens Axboea3d741f2008-02-27 18:32:33 +01001074 { .name = "parse", .shift = FD_PARSE },
Jens Axboecd991b92008-03-07 13:19:35 +01001075 { .name = "diskutil", .shift = FD_DISKUTIL },
Jens Axboe5e1d3062008-05-23 11:55:53 +02001076 { .name = "job", .shift = FD_JOB },
Jens Axboe29adda32009-01-05 19:06:39 +01001077 { .name = "mutex", .shift = FD_MUTEX },
Jens Axboe79d16312010-03-04 12:43:20 +01001078 { .name = "profile", .shift = FD_PROFILE },
Jens Axboec223da82010-03-24 13:23:53 +01001079 { .name = "time", .shift = FD_TIME },
Jens Axboe02444ad2008-10-07 11:33:00 +02001080 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +01001081};
1082
Jens Axboec09823a2008-02-19 20:16:57 +01001083static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +01001084{
1085 struct debug_level *dl;
1086 char *p = (char *) string;
1087 char *opt;
1088 int i;
1089
1090 if (!strcmp(string, "?") || !strcmp(string, "help")) {
Jens Axboeee56ad52008-02-01 10:30:20 +01001091 log_info("fio: dumping debug options:");
1092 for (i = 0; debug_levels[i].name; i++) {
1093 dl = &debug_levels[i];
1094 log_info("%s,", dl->name);
1095 }
Jens Axboebd6f78b2008-02-01 20:27:52 +01001096 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001097 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +01001098 }
1099
1100 while ((opt = strsep(&p, ",")) != NULL) {
1101 int found = 0;
1102
Jens Axboe5e1d3062008-05-23 11:55:53 +02001103 if (!strncmp(opt, "all", 3)) {
1104 log_info("fio: set all debug options\n");
1105 fio_debug = ~0UL;
1106 continue;
1107 }
1108
Jens Axboeee56ad52008-02-01 10:30:20 +01001109 for (i = 0; debug_levels[i].name; i++) {
1110 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +02001111 found = !strncmp(opt, dl->name, strlen(dl->name));
1112 if (!found)
1113 continue;
1114
1115 if (dl->shift == FD_JOB) {
1116 opt = strchr(opt, ':');
1117 if (!opt) {
1118 log_err("fio: missing job number\n");
1119 break;
1120 }
1121 opt++;
1122 fio_debug_jobno = atoi(opt);
1123 log_info("fio: set debug jobno %d\n",
1124 fio_debug_jobno);
1125 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001126 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001127 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +01001128 }
Jens Axboe5e1d3062008-05-23 11:55:53 +02001129 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001130 }
1131
1132 if (!found)
1133 log_err("fio: debug mask %s not found\n", opt);
1134 }
Jens Axboec09823a2008-02-19 20:16:57 +01001135 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +01001136}
Jens Axboe79e48f72008-02-01 20:37:09 +01001137#else
Jens Axboe69b98d42008-05-30 22:25:32 +02001138static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +01001139{
1140 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001141 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +01001142}
1143#endif
Jens Axboeee56ad52008-02-01 10:30:20 +01001144
Jens Axboe4c6107f2011-01-18 05:22:22 -07001145static void fio_options_fill_optstring(void)
1146{
1147 char *ostr = cmd_optstr;
1148 int i, c;
1149
1150 c = i = 0;
1151 while (l_opts[i].name) {
1152 ostr[c++] = l_opts[i].val;
1153 if (l_opts[i].has_arg == required_argument)
1154 ostr[c++] = ':';
1155 else if (l_opts[i].has_arg == optional_argument) {
1156 ostr[c++] = ':';
1157 ostr[c++] = ':';
1158 }
1159 i++;
1160 }
1161 ostr[c] = '\0';
1162}
1163
Jens Axboe214e1ec2007-03-15 10:48:13 +01001164static int parse_cmd_line(int argc, char *argv[])
1165{
1166 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +01001167 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe4c6107f2011-01-18 05:22:22 -07001168 char *ostr = cmd_optstr;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001169
Jens Axboe4c6107f2011-01-18 05:22:22 -07001170 while ((c = getopt_long_only(argc, argv, ostr, l_opts, &lidx)) != -1) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001171 switch (c) {
Jens Axboe2b386d22008-03-26 10:32:57 +01001172 case 'a':
1173 smalloc_pool_size = atoi(optarg);
1174 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001175 case 't':
Jens Axboeab2cabd2011-07-23 13:43:13 +02001176 def_thread.o.timeout = atoi(optarg);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001177 break;
1178 case 'l':
1179 write_lat_log = 1;
1180 break;
Jens Axboe3d73e5a2010-03-25 10:38:07 +01001181 case 'b':
Jens Axboe214e1ec2007-03-15 10:48:13 +01001182 write_bw_log = 1;
1183 break;
1184 case 'o':
1185 f_out = fopen(optarg, "w+");
1186 if (!f_out) {
1187 perror("fopen output");
1188 exit(1);
1189 }
1190 f_err = f_out;
1191 break;
1192 case 'm':
1193 terse_output = 1;
1194 break;
1195 case 'h':
Jens Axboe45378b32007-12-19 13:54:38 +01001196 usage(argv[0]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001197 exit(0);
1198 case 'c':
1199 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +02001200 case 's':
1201 dump_cmdline = 1;
1202 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001203 case 'r':
1204 read_only = 1;
1205 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001206 case 'v':
Jens Axboeca740f42011-01-25 13:06:16 +01001207 log_info("%s\n", fio_version_string);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001208 exit(0);
Jens Axboef57a9c52011-09-09 21:01:37 +02001209 case 'V':
1210 terse_version = atoi(optarg);
1211 if (terse_version != 2) {
1212 log_err("fio: bad terse version format\n");
1213 exit_val = 1;
1214 do_exit++;
1215 }
1216 break;
Aaron Carrolle592a062007-09-14 09:49:41 +02001217 case 'e':
1218 if (!strcmp("always", optarg))
1219 eta_print = FIO_ETA_ALWAYS;
1220 else if (!strcmp("never", optarg))
1221 eta_print = FIO_ETA_NEVER;
1222 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001223 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001224 if (set_debug(optarg))
1225 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001226 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001227 case 'x': {
1228 size_t new_size;
1229
Jens Axboe01f06b62008-02-18 20:53:47 +01001230 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001231 log_err("fio: can't use global as only "
1232 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001233 do_exit++;
1234 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001235 break;
1236 }
Jens Axboead0a2732011-03-11 10:16:17 +01001237 new_size = (nr_job_sections + 1) * sizeof(char *);
1238 job_sections = realloc(job_sections, new_size);
1239 job_sections[nr_job_sections] = strdup(optarg);
1240 nr_job_sections++;
Jens Axboe01f06b62008-02-18 20:53:47 +01001241 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001242 }
Jens Axboe9ac8a792009-11-13 21:23:07 +01001243 case 'p':
Jens Axboe07b32322010-03-05 09:48:44 +01001244 exec_profile = strdup(optarg);
Jens Axboe9ac8a792009-11-13 21:23:07 +01001245 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001246 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001247 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001248 char *val = optarg;
1249
1250 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001251 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe66251552011-05-12 10:14:57 +02001252 if (ret)
Jens Axboe214e1ec2007-03-15 10:48:13 +01001253 return 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001254 td = NULL;
1255 }
1256 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001257 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001258 int global = 0;
1259
Jens Axboe01f06b62008-02-18 20:53:47 +01001260 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001261 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001262
Jens Axboe01f06b62008-02-18 20:53:47 +01001263 if (is_section && skip_this_section(val))
1264 continue;
1265
Jens Axboe214e1ec2007-03-15 10:48:13 +01001266 td = get_new_job(global, &def_thread);
1267 if (!td)
1268 return 0;
1269 }
1270
1271 ret = fio_cmd_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001272 break;
1273 }
Jens Axboea9523c62011-01-17 16:49:54 -07001274 case 'w':
1275 warnings_fatal = 1;
1276 break;
Jens Axboefca70352011-07-06 20:12:54 +02001277 case 'j':
1278 max_jobs = atoi(optarg);
1279 if (!max_jobs || max_jobs > REAL_MAX_JOBS) {
1280 log_err("fio: invalid max jobs: %d\n", max_jobs);
1281 do_exit++;
1282 exit_val = 1;
1283 }
1284 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001285 default:
Jens Axboec09823a2008-02-19 20:16:57 +01001286 do_exit++;
1287 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001288 break;
1289 }
1290 }
1291
Jens Axboec09823a2008-02-19 20:16:57 +01001292 if (do_exit)
1293 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01001294
Jens Axboe214e1ec2007-03-15 10:48:13 +01001295 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +01001296 if (!ret)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001297 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001298 }
1299
1300 while (optind < argc) {
1301 ini_idx++;
1302 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1303 ini_file[ini_idx - 1] = strdup(argv[optind]);
1304 optind++;
1305 }
1306
1307 return ini_idx;
1308}
1309
Jens Axboeebac4652005-12-08 15:25:21 +01001310int parse_options(int argc, char *argv[])
1311{
Jens Axboe972cfd22006-06-09 11:08:56 +02001312 int job_files, i;
1313
Jens Axboeb4692822006-10-27 13:43:22 +02001314 f_out = stdout;
1315 f_err = stderr;
1316
Jens Axboe4c6107f2011-01-18 05:22:22 -07001317 fio_options_fill_optstring();
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001318 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02001319
Jens Axboeebac4652005-12-08 15:25:21 +01001320 if (setup_thread_area())
1321 return 1;
1322 if (fill_def_thread())
1323 return 1;
1324
Jens Axboe972cfd22006-06-09 11:08:56 +02001325 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001326
Jens Axboe972cfd22006-06-09 11:08:56 +02001327 for (i = 0; i < job_files; i++) {
1328 if (fill_def_thread())
1329 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001330 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001331 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001332 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001333 }
Jens Axboeebac4652005-12-08 15:25:21 +01001334
Jens Axboe88c6ed82006-06-09 11:28:10 +02001335 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +01001336 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001337
1338 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001339 if (dump_cmdline)
1340 return 0;
Jens Axboe07b32322010-03-05 09:48:44 +01001341 if (exec_profile)
1342 return 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02001343
Bruce Cran03e20d62011-01-02 20:14:54 +01001344 log_err("No jobs(s) defined\n\n");
Jens Axboe45378b32007-12-19 13:54:38 +01001345 usage(argv[0]);
Jens Axboeb4692822006-10-27 13:43:22 +02001346 return 1;
1347 }
1348
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001349 if (def_thread.o.gtod_offload) {
1350 fio_gtod_init();
1351 fio_gtod_offload = 1;
1352 fio_gtod_cpu = def_thread.o.gtod_cpu;
1353 }
1354
Jens Axboeca740f42011-01-25 13:06:16 +01001355 log_info("%s\n", fio_version_string);
Jens Axboeebac4652005-12-08 15:25:21 +01001356 return 0;
1357}