blob: ce1645077380613fabac367f71f0dbb8962f92b7 [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 Axboe50d16972011-09-29 17:45:28 -060022#include "server.h"
Jens Axboeebac4652005-12-08 15:25:21 +010023
Cigy Cyriacbf2e8212010-08-10 19:51:11 -040024#include "lib/getopt.h"
25
Jens Axboe723cd802011-09-16 08:44:10 +020026static char fio_version_string[] = "fio 1.58";
Jens Axboe214e1ec2007-03-15 10:48:13 +010027
Jens Axboeee738492007-01-10 11:23:16 +010028#define FIO_RANDSEED (0xb1899bedUL)
Jens Axboeebac4652005-12-08 15:25:21 +010029
Jens Axboe214e1ec2007-03-15 10:48:13 +010030static char **ini_file;
Jens Axboefca70352011-07-06 20:12:54 +020031static int max_jobs = FIO_MAX_JOBS;
Jens Axboecca73aa2007-04-04 11:09:19 +020032static int dump_cmdline;
Jens Axboee1f36502006-10-27 10:54:08 +020033
Jens Axboebe4ecfd2008-12-08 14:10:52 +010034static struct thread_data def_thread;
Jens Axboe214e1ec2007-03-15 10:48:13 +010035struct thread_data *threads = NULL;
Jens Axboee1f36502006-10-27 10:54:08 +020036
Jens Axboe214e1ec2007-03-15 10:48:13 +010037int exitall_on_terminate = 0;
38int terse_output = 0;
Aaron Carrolle592a062007-09-14 09:49:41 +020039int eta_print;
Jens Axboe214e1ec2007-03-15 10:48:13 +010040unsigned long long mlock_size = 0;
41FILE *f_out = NULL;
42FILE *f_err = NULL;
Jens Axboead0a2732011-03-11 10:16:17 +010043char **job_sections = NULL;
44int nr_job_sections = 0;
Jens Axboe07b32322010-03-05 09:48:44 +010045char *exec_profile = NULL;
Jens Axboea9523c62011-01-17 16:49:54 -070046int warnings_fatal = 0;
Jens Axboef57a9c52011-09-09 21:01:37 +020047int terse_version = 2;
Jens Axboe50d16972011-09-29 17:45:28 -060048int is_backend = 0;
Jens Axboeee738492007-01-10 11:23:16 +010049
Jens Axboe214e1ec2007-03-15 10:48:13 +010050int write_bw_log = 0;
Jens Axboe4241ea82007-09-12 08:18:36 +020051int read_only = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020052
Jens Axboe5ec10ea2008-03-06 15:42:00 +010053static int write_lat_log;
Jens Axboe214e1ec2007-03-15 10:48:13 +010054
55static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020056
Jens Axboeee56ad52008-02-01 10:30:20 +010057unsigned long fio_debug = 0;
Jens Axboe5e1d3062008-05-23 11:55:53 +020058unsigned int fio_debug_jobno = -1;
59unsigned int *fio_debug_jobp = NULL;
Jens Axboeee56ad52008-02-01 10:30:20 +010060
Jens Axboe4c6107f2011-01-18 05:22:22 -070061static char cmd_optstr[256];
62
Jens Axboeb4692822006-10-27 13:43:22 +020063/*
64 * Command line options. These will contain the above, plus a few
65 * extra that only pertain to fio itself and not jobs.
66 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +010067static struct option l_opts[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020068 {
Jens Axboe08d2a192011-05-11 13:28:30 +020069 .name = (char *) "output",
Jens Axboeb4692822006-10-27 13:43:22 +020070 .has_arg = required_argument,
71 .val = 'o',
72 },
73 {
Jens Axboe08d2a192011-05-11 13:28:30 +020074 .name = (char *) "timeout",
Jens Axboeb4692822006-10-27 13:43:22 +020075 .has_arg = required_argument,
76 .val = 't',
77 },
78 {
Jens Axboe08d2a192011-05-11 13:28:30 +020079 .name = (char *) "latency-log",
Jens Axboeb4692822006-10-27 13:43:22 +020080 .has_arg = required_argument,
81 .val = 'l',
82 },
83 {
Jens Axboe08d2a192011-05-11 13:28:30 +020084 .name = (char *) "bandwidth-log",
Jens Axboeb4692822006-10-27 13:43:22 +020085 .has_arg = required_argument,
86 .val = 'b',
87 },
88 {
Jens Axboe08d2a192011-05-11 13:28:30 +020089 .name = (char *) "minimal",
Jens Axboeb4692822006-10-27 13:43:22 +020090 .has_arg = optional_argument,
91 .val = 'm',
92 },
93 {
Jens Axboe08d2a192011-05-11 13:28:30 +020094 .name = (char *) "version",
Jens Axboeb4692822006-10-27 13:43:22 +020095 .has_arg = no_argument,
96 .val = 'v',
97 },
98 {
Jens Axboe08d2a192011-05-11 13:28:30 +020099 .name = (char *) "help",
Jens Axboefd28ca42007-01-09 21:20:13 +0100100 .has_arg = no_argument,
101 .val = 'h',
102 },
103 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200104 .name = (char *) "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +0100105 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +0100106 .val = 'c',
107 },
108 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200109 .name = (char *) "showcmd",
Jens Axboecca73aa2007-04-04 11:09:19 +0200110 .has_arg = no_argument,
Jens Axboe724e4432007-09-11 20:02:05 +0200111 .val = 's',
112 },
113 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200114 .name = (char *) "readonly",
Jens Axboe724e4432007-09-11 20:02:05 +0200115 .has_arg = no_argument,
116 .val = 'r',
Jens Axboecca73aa2007-04-04 11:09:19 +0200117 },
118 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200119 .name = (char *) "eta",
Aaron Carrolle592a062007-09-14 09:49:41 +0200120 .has_arg = required_argument,
121 .val = 'e',
122 },
123 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200124 .name = (char *) "debug",
Jens Axboeee56ad52008-02-01 10:30:20 +0100125 .has_arg = required_argument,
126 .val = 'd',
127 },
128 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200129 .name = (char *) "section",
Jens Axboe01f06b62008-02-18 20:53:47 +0100130 .has_arg = required_argument,
131 .val = 'x',
132 },
133 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200134 .name = (char *) "alloc-size",
Jens Axboe2b386d22008-03-26 10:32:57 +0100135 .has_arg = required_argument,
136 .val = 'a',
137 },
138 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200139 .name = (char *) "profile",
Jens Axboe9ac8a792009-11-13 21:23:07 +0100140 .has_arg = required_argument,
141 .val = 'p',
142 },
143 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200144 .name = (char *) "warnings-fatal",
Jens Axboea9523c62011-01-17 16:49:54 -0700145 .has_arg = no_argument,
146 .val = 'w',
147 },
148 {
Jens Axboefca70352011-07-06 20:12:54 +0200149 .name = (char *) "max-jobs",
150 .has_arg = required_argument,
151 .val = 'j',
152 },
153 {
Jens Axboef57a9c52011-09-09 21:01:37 +0200154 .name = (char *) "terse-version",
155 .has_arg = required_argument,
156 .val = 'V',
157 },
158 {
Jens Axboe50d16972011-09-29 17:45:28 -0600159 .name = (char *) "server",
160 .has_arg = no_argument,
161 .val = 'S',
162 },
163 {
Jens Axboeb4692822006-10-27 13:43:22 +0200164 .name = NULL,
165 },
166};
167
Joel Becker9728ce32007-03-01 08:24:39 +0100168FILE *get_f_out()
169{
170 return f_out;
171}
172
173FILE *get_f_err()
174{
175 return f_err;
176}
177
Jens Axboe906c8d72006-06-13 09:37:56 +0200178/*
179 * Return a free job structure.
180 */
Jens Axboeebac4652005-12-08 15:25:21 +0100181static struct thread_data *get_new_job(int global, struct thread_data *parent)
182{
183 struct thread_data *td;
184
185 if (global)
186 return &def_thread;
Bruce Crane61f1ec2011-01-14 18:30:26 +0100187 if (thread_number >= max_jobs) {
188 log_err("error: maximum number of jobs (%d) reached.\n",
189 max_jobs);
Jens Axboeebac4652005-12-08 15:25:21 +0100190 return NULL;
Bruce Crane61f1ec2011-01-14 18:30:26 +0100191 }
Jens Axboeebac4652005-12-08 15:25:21 +0100192
193 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200194 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100195
Jens Axboee0b0d892009-12-08 10:10:14 +0100196 td->o.uid = td->o.gid = -1U;
197
Jens Axboecade3ef2007-03-23 15:29:45 +0100198 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100199 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100200
Jens Axboe15dc1932010-03-05 10:59:06 +0100201 profile_add_hooks(td);
202
Jens Axboeebac4652005-12-08 15:25:21 +0100203 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100204 return td;
205}
206
207static void put_job(struct thread_data *td)
208{
Jens Axboe549577a2006-10-30 12:23:41 +0100209 if (td == &def_thread)
210 return;
Bruce Cran84dd1882011-05-05 08:14:09 -0600211
Jens Axboe58c55ba2010-03-09 12:20:08 +0100212 profile_td_exit(td);
Jens Axboe549577a2006-10-30 12:23:41 +0100213
Jens Axboe16edf252007-02-10 14:59:22 +0100214 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100215 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100216
Jens Axboeebac4652005-12-08 15:25:21 +0100217 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
218 thread_number--;
219}
220
Jens Axboe581e7142009-06-09 12:47:16 +0200221static int __setup_rate(struct thread_data *td, enum fio_ddir ddir)
Jens Axboe127f6862007-03-15 12:09:57 +0100222{
Jens Axboe581e7142009-06-09 12:47:16 +0200223 unsigned int bs = td->o.min_bs[ddir];
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100224 unsigned long long bytes_per_sec;
Jens Axboe127f6862007-03-15 12:09:57 +0100225
Jens Axboeff58fce2010-08-25 12:02:08 +0200226 assert(ddir_rw(ddir));
227
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100228 if (td->o.rate[ddir])
229 bytes_per_sec = td->o.rate[ddir];
230 else
231 bytes_per_sec = td->o.rate_iops[ddir] * bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100232
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100233 if (!bytes_per_sec) {
Jens Axboe127f6862007-03-15 12:09:57 +0100234 log_err("rate lower than supported\n");
235 return -1;
236 }
237
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100238 td->rate_nsec_cycle[ddir] = 1000000000ULL / bytes_per_sec;
Jens Axboe581e7142009-06-09 12:47:16 +0200239 td->rate_pending_usleep[ddir] = 0;
Jens Axboe127f6862007-03-15 12:09:57 +0100240 return 0;
241}
242
Jens Axboe581e7142009-06-09 12:47:16 +0200243static int setup_rate(struct thread_data *td)
244{
245 int ret = 0;
246
247 if (td->o.rate[DDIR_READ] || td->o.rate_iops[DDIR_READ])
248 ret = __setup_rate(td, DDIR_READ);
249 if (td->o.rate[DDIR_WRITE] || td->o.rate_iops[DDIR_WRITE])
250 ret |= __setup_rate(td, DDIR_WRITE);
251
252 return ret;
253}
254
Jens Axboe83472392009-02-19 21:32:12 +0100255static int fixed_block_size(struct thread_options *o)
256{
257 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
258 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
259 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE];
260}
261
Jens Axboedad915e2006-10-27 11:10:18 +0200262/*
263 * Lazy way of fixing up options that depend on each other. We could also
264 * define option callback handlers, but this is easier.
265 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100266static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200267{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100268 struct thread_options *o = &td->o;
Jens Axboeff217452011-01-18 22:33:02 -0700269 int ret = 0;
Jens Axboedad915e2006-10-27 11:10:18 +0200270
Jens Axboef356d012009-01-05 09:56:29 +0100271#ifndef FIO_HAVE_PSHARED_MUTEX
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100272 if (!o->use_thread) {
Jens Axboef356d012009-01-05 09:56:29 +0100273 log_info("fio: this platform does not support process shared"
274 " mutexes, forcing use of threads. Use the 'thread'"
275 " option to get rid of this warning.\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100276 o->use_thread = 1;
Jens Axboea9523c62011-01-17 16:49:54 -0700277 ret = warnings_fatal;
Jens Axboef356d012009-01-05 09:56:29 +0100278 }
279#endif
280
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100281 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200282 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100283 free(o->write_iolog_file);
284 o->write_iolog_file = NULL;
Jens Axboea9523c62011-01-17 16:49:54 -0700285 ret = warnings_fatal;
Jens Axboe076efc72006-10-27 11:24:25 +0200286 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100287
Jens Axboe16b462a2006-10-30 12:35:18 +0100288 /*
289 * only really works for sequential io for now, and with 1 file
290 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100291 if (o->zone_size && td_random(td) && o->open_files == 1)
292 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100293
294 /*
295 * Reads can do overwrites, we always need to pre-create the file
296 */
297 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100298 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100299
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100300 if (!o->min_bs[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100301 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100302 if (!o->max_bs[DDIR_READ])
303 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
304 if (!o->min_bs[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100305 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100306 if (!o->max_bs[DDIR_WRITE])
307 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100308
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100309 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100310
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100311 /*
312 * For random IO, allow blockalign offset other than min_bs.
313 */
314 if (!o->ba[DDIR_READ] || !td_random(td))
315 o->ba[DDIR_READ] = o->min_bs[DDIR_READ];
316 if (!o->ba[DDIR_WRITE] || !td_random(td))
317 o->ba[DDIR_WRITE] = o->min_bs[DDIR_WRITE];
318
319 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
320 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE]) &&
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100321 !o->norandommap) {
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100322 log_err("fio: Any use of blockalign= turns off randommap\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100323 o->norandommap = 1;
Jens Axboea9523c62011-01-17 16:49:54 -0700324 ret = warnings_fatal;
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100325 }
326
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100327 if (!o->file_size_high)
328 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100329
Jens Axboe83472392009-02-19 21:32:12 +0100330 if (o->norandommap && o->verify != VERIFY_NONE
331 && !fixed_block_size(o)) {
332 log_err("fio: norandommap given for variable block sizes, "
333 "verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100334 o->verify = VERIFY_NONE;
Jens Axboea9523c62011-01-17 16:49:54 -0700335 ret = warnings_fatal;
Jens Axboebb8895e2006-10-30 15:14:48 +0100336 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100337 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100338 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100339
340 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100341 * thinktime_spin must be less than thinktime
342 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100343 if (o->thinktime_spin > o->thinktime)
344 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100345
346 /*
347 * The low water mark cannot be bigger than the iodepth
348 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100349 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100350 /*
351 * syslet work around - if the workload is sequential,
352 * we want to let the queue drain all the way down to
353 * avoid seeking between async threads
354 */
355 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100356 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100357 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100358 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100359 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100360
361 /*
362 * If batch number isn't set, default to the same as iodepth
363 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100364 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
365 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100366
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100367 if (o->nr_files > td->files_index)
368 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100369
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100370 if (o->open_files > o->nr_files || !o->open_files)
371 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100372
Jens Axboe581e7142009-06-09 12:47:16 +0200373 if (((o->rate[0] + o->rate[1]) && (o->rate_iops[0] + o->rate_iops[1]))||
374 ((o->ratemin[0] + o->ratemin[1]) && (o->rate_iops_min[0] +
375 o->rate_iops_min[1]))) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100376 log_err("fio: rate and rate_iops are mutually exclusive\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700377 ret = 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100378 }
Jens Axboe581e7142009-06-09 12:47:16 +0200379 if ((o->rate[0] < o->ratemin[0]) || (o->rate[1] < o->ratemin[1]) ||
380 (o->rate_iops[0] < o->rate_iops_min[0]) ||
381 (o->rate_iops[1] < o->rate_iops_min[1])) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100382 log_err("fio: minimum rate exceeds rate\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700383 ret = 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100384 }
385
Jens Axboecf4464c2007-04-17 20:14:42 +0200386 if (!o->timeout && o->time_based) {
387 log_err("fio: time_based requires a runtime/timeout setting\n");
388 o->time_based = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700389 ret = warnings_fatal;
Jens Axboecf4464c2007-04-17 20:14:42 +0200390 }
391
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100392 if (o->fill_device && !o->size)
Jens Axboe5921e802008-05-30 15:02:38 +0200393 o->size = -1ULL;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100394
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100395 if (o->verify != VERIFY_NONE) {
Jens Axboe996936f2011-01-18 05:41:39 -0700396 if (td_write(td) && o->do_verify && o->numjobs > 1) {
Jens Axboea9523c62011-01-17 16:49:54 -0700397 log_info("Multiple writers may overwrite blocks that "
398 "belong to other jobs. This can cause "
399 "verification failures.\n");
400 ret = warnings_fatal;
401 }
402
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100403 o->refill_buffers = 1;
Jens Axboe2f1b8e82010-06-18 09:22:56 +0200404 if (o->max_bs[DDIR_WRITE] != o->min_bs[DDIR_WRITE] &&
405 !o->verify_interval)
406 o->verify_interval = o->min_bs[DDIR_WRITE];
Jens Axboed9905882010-03-18 20:43:00 +0100407 }
Jens Axboe41ccd842008-05-22 09:17:33 +0200408
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100409 if (o->pre_read) {
410 o->invalidate_cache = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700411 if (td->io_ops->flags & FIO_PIPEIO) {
Jens Axboe9c0d2242009-07-01 12:26:28 +0200412 log_info("fio: cannot pre-read files with an IO engine"
413 " that isn't seekable. Pre-read disabled.\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700414 ret = warnings_fatal;
415 }
Jens Axboe9c0d2242009-07-01 12:26:28 +0200416 }
Jens Axboe34f1c042009-06-02 14:19:25 +0200417
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700418#ifndef FIO_HAVE_FDATASYNC
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100419 if (o->fdatasync_blocks) {
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700420 log_info("fio: this platform does not support fdatasync()"
421 " falling back to using fsync(). Use the 'fsync'"
422 " option instead of 'fdatasync' to get rid of"
423 " this warning\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100424 o->fsync_blocks = o->fdatasync_blocks;
425 o->fdatasync_blocks = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700426 ret = warnings_fatal;
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700427 }
428#endif
429
Jens Axboea9523c62011-01-17 16:49:54 -0700430 return ret;
Jens Axboee1f36502006-10-27 10:54:08 +0200431}
432
Jens Axboe906c8d72006-06-13 09:37:56 +0200433/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100434 * This function leaks the buffer
435 */
436static char *to_kmg(unsigned int val)
437{
438 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100439 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100440 char *p = post;
441
Jens Axboe245142f2006-11-08 12:49:21 +0100442 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100443 if (val & 1023)
444 break;
445
446 val >>= 10;
447 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100448 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100449
450 snprintf(buf, 31, "%u%c", val, *p);
451 return buf;
452}
453
Jens Axboe09629a92007-03-09 09:00:06 +0100454/* External engines are specified by "external:name.o") */
455static const char *get_engine_name(const char *str)
456{
457 char *p = strstr(str, ":");
458
459 if (!p)
460 return str;
461
462 p++;
463 strip_blank_front(&p);
464 strip_blank_end(p);
465 return p;
466}
467
Jens Axboee132cba2007-03-14 14:23:54 +0100468static int exists_and_not_file(const char *filename)
469{
470 struct stat sb;
471
472 if (lstat(filename, &sb) == -1)
473 return 0;
474
Bruce Cranecc314b2011-01-04 10:59:30 +0100475 /* \\.\ is the device namespace in Windows, where every file
476 * is a device node */
477 if (S_ISREG(sb.st_mode) && strncmp(filename, "\\\\.\\", 4) != 0)
Jens Axboee132cba2007-03-14 14:23:54 +0100478 return 0;
479
480 return 1;
481}
482
Jens Axboe4c07ad82011-03-28 09:51:09 +0200483static void td_fill_rand_seeds_os(struct thread_data *td)
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200484{
485 os_random_seed(td->rand_seeds[0], &td->bsrange_state);
486 os_random_seed(td->rand_seeds[1], &td->verify_state);
487 os_random_seed(td->rand_seeds[2], &td->rwmix_state);
488
489 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
490 os_random_seed(td->rand_seeds[3], &td->next_file_state);
491
492 os_random_seed(td->rand_seeds[5], &td->file_size_state);
Jens Axboe0d29de82010-09-01 13:54:15 +0200493 os_random_seed(td->rand_seeds[6], &td->trim_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200494
495 if (!td_random(td))
496 return;
497
498 if (td->o.rand_repeatable)
499 td->rand_seeds[4] = FIO_RANDSEED * td->thread_number;
500
501 os_random_seed(td->rand_seeds[4], &td->random_state);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200502}
503
504static void td_fill_rand_seeds_internal(struct thread_data *td)
505{
506 init_rand_seed(&td->__bsrange_state, td->rand_seeds[0]);
507 init_rand_seed(&td->__verify_state, td->rand_seeds[1]);
508 init_rand_seed(&td->__rwmix_state, td->rand_seeds[2]);
509
510 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
511 init_rand_seed(&td->__next_file_state, td->rand_seeds[3]);
512
513 init_rand_seed(&td->__file_size_state, td->rand_seeds[5]);
514 init_rand_seed(&td->__trim_state, td->rand_seeds[6]);
515
516 if (!td_random(td))
517 return;
518
519 if (td->o.rand_repeatable)
520 td->rand_seeds[4] = FIO_RANDSEED * td->thread_number;
521
Jens Axboe2615cc42011-03-28 09:35:09 +0200522 init_rand_seed(&td->__random_state, td->rand_seeds[4]);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200523}
524
Jens Axboe4c07ad82011-03-28 09:51:09 +0200525void td_fill_rand_seeds(struct thread_data *td)
526{
527 if (td->o.use_os_rand)
528 td_fill_rand_seeds_os(td);
529 else
530 td_fill_rand_seeds_internal(td);
Jens Axboe3545a102011-08-31 15:20:15 -0600531
532 init_rand_seed(&td->buf_state, td->rand_seeds[7]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200533}
534
Jens Axboef8977ee2006-11-06 14:03:03 +0100535/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100536 * Initialize the various random states we need (random io, block size ranges,
537 * read/write mix, etc).
538 */
539static int init_random_state(struct thread_data *td)
540{
Jens Axboe68727072007-03-15 20:49:25 +0100541 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100542
543 fd = open("/dev/urandom", O_RDONLY);
544 if (fd == -1) {
545 td_verror(td, errno, "open");
546 return 1;
547 }
548
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200549 if (read(fd, td->rand_seeds, sizeof(td->rand_seeds)) <
550 (int) sizeof(td->rand_seeds)) {
Jens Axboe9c60ce62007-03-15 09:14:47 +0100551 td_verror(td, EIO, "read");
552 close(fd);
553 return 1;
554 }
555
556 close(fd);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200557 td_fill_rand_seeds(td);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100558 return 0;
559}
560
Jens Axboe9c60ce62007-03-15 09:14:47 +0100561/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200562 * Adds a job to the list of things todo. Sanitizes the various options
563 * to make sure we don't have conflicts, and initializes various
564 * members of td.
565 */
Jens Axboe75154842006-06-01 13:56:09 +0200566static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100567{
Jens Axboe413dd452007-02-23 09:26:09 +0100568 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
569 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100570 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100571 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100572 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100573 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100574
Jens Axboeebac4652005-12-08 15:25:21 +0100575 /*
576 * the def_thread is just for options, it's not a real job
577 */
578 if (td == &def_thread)
579 return 0;
580
Jens Axboecca73aa2007-04-04 11:09:19 +0200581 /*
582 * if we are just dumping the output command line, don't add the job
583 */
584 if (dump_cmdline) {
585 put_job(td);
586 return 0;
587 }
588
Jens Axboe58c55ba2010-03-09 12:20:08 +0100589 if (profile_td_init(td))
Jens Axboe66251552011-05-12 10:14:57 +0200590 goto err;
Jens Axboe58c55ba2010-03-09 12:20:08 +0100591
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100592 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100593 td->io_ops = load_ioengine(td, engine);
594 if (!td->io_ops) {
595 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100596 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100597 }
Jens Axboedf641192006-10-12 07:55:41 +0200598
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100599 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100600 nr_thread++;
601 else
602 nr_process++;
603
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100604 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100605 td->io_ops->flags |= FIO_RAWIO;
606
Jens Axboee132cba2007-03-14 14:23:54 +0100607 file_alloced = 0;
Jens Axboe691c8fb2008-03-07 14:26:26 +0100608 if (!td->o.filename && !td->files_index && !td->o.read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +0100609 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100610
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100611 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100612 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100613 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100614 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100615 sprintf(fname, "%s.%d.%d", jobname,
616 td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100617 add_file(td, fname);
618 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100619 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100620 }
Jens Axboeebac4652005-12-08 15:25:21 +0100621
Jens Axboe4e991c22007-03-15 11:41:11 +0100622 if (fixup_options(td))
623 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100624
Jens Axboe07eb79d2007-04-12 13:02:38 +0200625 if (td->io_ops->flags & FIO_DISKLESSIO) {
626 struct fio_file *f;
627
628 for_each_file(td, f, i)
629 f->real_file_size = -1ULL;
630 }
631
Jens Axboecdd18ad2008-02-27 18:58:00 +0100632 td->mutex = fio_mutex_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100633
Yu-ju Hong83349192011-08-13 00:53:44 +0200634 td->ts.clat_percentiles = td->o.clat_percentiles;
635 if (td->o.overwrite_plist)
636 td->ts.percentile_list = td->o.percentile_list;
637 else
638 td->ts.percentile_list = NULL;
639
Jens Axboe756867b2007-03-06 15:19:24 +0100640 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
641 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
Jens Axboe02af0982010-06-24 09:59:34 +0200642 td->ts.lat_stat[0].min_val = td->ts.lat_stat[1].min_val = ULONG_MAX;
Jens Axboe756867b2007-03-06 15:19:24 +0100643 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Adam DeBellinscdd54112010-09-28 13:22:55 +0900644 td->ddir_seq_nr = td->o.ddir_seq_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100645
Jens Axboe755c3182009-08-25 22:14:29 +0200646 if ((td->o.stonewall || td->o.new_group) && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100647 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100648 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100649 }
Jens Axboeebac4652005-12-08 15:25:21 +0100650
651 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100652 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100653
Jens Axboe9c60ce62007-03-15 09:14:47 +0100654 if (init_random_state(td))
655 goto err;
656
Jens Axboeebac4652005-12-08 15:25:21 +0100657 if (setup_rate(td))
658 goto err;
659
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100660 if (td->o.write_lat_log) {
Jens Axboe02af0982010-06-24 09:59:34 +0200661 setup_log(&td->ts.lat_log);
Jens Axboe756867b2007-03-06 15:19:24 +0100662 setup_log(&td->ts.slat_log);
663 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100664 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100665 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100666 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100667
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100668 if (!td->o.name)
669 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200670
Jens Axboec6ae0a52006-06-12 11:04:44 +0200671 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200672 if (!job_add_num) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100673 if (!strcmp(td->io_ops->name, "cpuio")) {
674 log_info("%s: ioengine=cpu, cpuload=%u,"
675 " cpucycle=%u\n", td->o.name,
676 td->o.cpuload,
677 td->o.cpucycle);
678 } else {
Jens Axboef8977ee2006-11-06 14:03:03 +0100679 char *c1, *c2, *c3, *c4;
680
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100681 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
682 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
683 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
684 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100685
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100686 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s,"
687 " ioengine=%s, iodepth=%u\n",
688 td->o.name, td->groupid,
689 ddir_str[td->o.td_ddir],
690 c1, c2, c3, c4,
691 td->io_ops->name,
692 td->o.iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100693
694 free(c1);
695 free(c2);
696 free(c3);
697 free(c4);
698 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200699 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100700 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200701 }
Jens Axboeebac4652005-12-08 15:25:21 +0100702
703 /*
704 * recurse add identical jobs, clear numjobs and stonewall options
705 * as they don't apply to sub-jobs
706 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100707 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100708 while (--numjobs) {
709 struct thread_data *td_new = get_new_job(0, td);
710
711 if (!td_new)
712 goto err;
713
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100714 td_new->o.numjobs = 1;
715 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200716 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100717
718 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100719 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100720 td_new->files_index = 0;
Jens Axboe4e6ea2f2009-03-04 20:17:22 +0100721 td_new->files_size = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100722 td_new->files = NULL;
723 }
724
Jens Axboe75154842006-06-01 13:56:09 +0200725 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100726
Jens Axboe75154842006-06-01 13:56:09 +0200727 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100728 goto err;
729 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100730
Jens Axboeebac4652005-12-08 15:25:21 +0100731 return 0;
732err:
733 put_job(td);
734 return -1;
735}
736
Jens Axboe79d16312010-03-04 12:43:20 +0100737/*
738 * Parse as if 'o' was a command line
739 */
740void add_job_opts(const char **o)
741{
742 struct thread_data *td, *td_parent;
743 int i, in_global = 1;
744 char jobname[32];
745
746 i = 0;
747 td_parent = td = NULL;
748 while (o[i]) {
749 if (!strncmp(o[i], "name", 4)) {
750 in_global = 0;
751 if (td)
752 add_job(td, jobname, 0);
753 td = NULL;
754 sprintf(jobname, "%s", o[i] + 5);
755 }
756 if (in_global && !td_parent)
757 td_parent = get_new_job(1, &def_thread);
758 else if (!in_global && !td) {
759 if (!td_parent)
760 td_parent = &def_thread;
761 td = get_new_job(0, td_parent);
762 }
763 if (in_global)
764 fio_options_parse(td_parent, (char **) &o[i], 1);
765 else
766 fio_options_parse(td, (char **) &o[i], 1);
767 i++;
768 }
769
770 if (td)
771 add_job(td, jobname, 0);
772}
773
Jens Axboe01f06b62008-02-18 20:53:47 +0100774static int skip_this_section(const char *name)
775{
Jens Axboead0a2732011-03-11 10:16:17 +0100776 int i;
777
778 if (!nr_job_sections)
Jens Axboe01f06b62008-02-18 20:53:47 +0100779 return 0;
780 if (!strncmp(name, "global", 6))
781 return 0;
782
Jens Axboead0a2732011-03-11 10:16:17 +0100783 for (i = 0; i < nr_job_sections; i++)
784 if (!strcmp(job_sections[i], name))
785 return 0;
786
787 return 1;
Jens Axboe01f06b62008-02-18 20:53:47 +0100788}
789
Jens Axboeebac4652005-12-08 15:25:21 +0100790static int is_empty_or_comment(char *line)
791{
792 unsigned int i;
793
794 for (i = 0; i < strlen(line); i++) {
795 if (line[i] == ';')
796 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100797 if (line[i] == '#')
798 return 1;
Jens Axboe76cd9372011-07-08 21:14:57 +0200799 if (!isspace((int) line[i]) && !iscntrl((int) line[i]))
Jens Axboeebac4652005-12-08 15:25:21 +0100800 return 0;
801 }
802
803 return 1;
804}
805
Jens Axboe313cb202006-12-21 09:50:00 +0100806/*
Jens Axboe07261982006-06-07 10:51:12 +0200807 * This is our [ini] type file parser.
808 */
Jens Axboe50d16972011-09-29 17:45:28 -0600809int parse_jobs_ini(char *file, int is_buf, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100810{
Jens Axboee1f36502006-10-27 10:54:08 +0200811 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100812 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100813 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100814 FILE *f;
815 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200816 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200817 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +0200818 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +0100819 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200820 char **opts;
821 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +0100822
Jens Axboe50d16972011-09-29 17:45:28 -0600823 if (is_buf)
824 f = NULL;
825 else {
826 if (!strcmp(file, "-"))
827 f = stdin;
828 else
829 f = fopen(file, "r");
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200830
Jens Axboe50d16972011-09-29 17:45:28 -0600831 if (!f) {
832 perror("fopen job file");
833 return 1;
834 }
Jens Axboeebac4652005-12-08 15:25:21 +0100835 }
836
837 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200838
839 /*
840 * it's really 256 + small bit, 280 should suffice
841 */
842 name = malloc(280);
843 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100844
Jens Axboe3b8b7132008-06-10 19:46:23 +0200845 alloc_opts = 8;
846 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +0200847 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200848
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200849 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100850 do {
Jens Axboeccf8f122007-09-27 10:48:55 +0200851 /*
852 * if skip_fgets is set, we already have loaded a line we
853 * haven't handled.
854 */
855 if (!skip_fgets) {
Jens Axboe50d16972011-09-29 17:45:28 -0600856 if (is_buf)
857 p = strsep(&file, "\n");
858 else
859 p = fgets(string, 4095, f);
Jens Axboeccf8f122007-09-27 10:48:55 +0200860 if (!p)
861 break;
862 }
gurudas paicdc7f192007-03-29 10:10:56 +0200863
Jens Axboeccf8f122007-09-27 10:48:55 +0200864 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +0200865 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800866 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200867
Jens Axboeebac4652005-12-08 15:25:21 +0100868 if (is_empty_or_comment(p))
869 continue;
Bruce Cran84dd1882011-05-05 08:14:09 -0600870 if (sscanf(p, "[%255[^\n]]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100871 if (inside_skip)
872 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100873 log_err("fio: option <%s> outside of [] job section\n",
874 p);
Jens Axboe088b4202007-07-19 14:53:01 +0200875 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800876 }
Jens Axboeebac4652005-12-08 15:25:21 +0100877
Jens Axboe7a4b80a2010-05-22 20:43:11 +0200878 name[strlen(name) - 1] = '\0';
879
Jens Axboe01f06b62008-02-18 20:53:47 +0100880 if (skip_this_section(name)) {
881 inside_skip = 1;
882 continue;
883 } else
884 inside_skip = 0;
885
Jens Axboeebac4652005-12-08 15:25:21 +0100886 global = !strncmp(name, "global", 6);
887
Jens Axboecca73aa2007-04-04 11:09:19 +0200888 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200889 if (first_sect)
890 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200891 if (!global)
892 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200893 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200894 }
895
Jens Axboeebac4652005-12-08 15:25:21 +0100896 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200897 if (!td) {
898 ret = 1;
899 break;
900 }
Jens Axboeebac4652005-12-08 15:25:21 +0100901
Jens Axboe972cfd22006-06-09 11:08:56 +0200902 /*
903 * Seperate multiple job files by a stonewall
904 */
Jens Axboef9481912006-06-09 11:37:28 +0200905 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100906 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200907 stonewall = 0;
908 }
909
Jens Axboe3b8b7132008-06-10 19:46:23 +0200910 num_opts = 0;
911 memset(opts, 0, alloc_opts * sizeof(char *));
912
Jens Axboe50d16972011-09-29 17:45:28 -0600913 while (1) {
914 if (is_buf)
915 p = strsep(&file, "\n");
916 else
917 p = fgets(string, 4096, f);
918 if (!p)
919 break;
920
Jens Axboeebac4652005-12-08 15:25:21 +0100921 if (is_empty_or_comment(p))
922 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200923
Jens Axboeb6754f92006-05-30 14:29:32 +0200924 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100925
Jens Axboeccf8f122007-09-27 10:48:55 +0200926 /*
927 * new section, break out and make sure we don't
928 * fgets() a new line at the top.
929 */
930 if (p[0] == '[') {
931 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100932 break;
Jens Axboeccf8f122007-09-27 10:48:55 +0200933 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100934
Jens Axboe4ae3f762006-05-30 13:35:14 +0200935 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200936
Jens Axboe3b8b7132008-06-10 19:46:23 +0200937 if (num_opts == alloc_opts) {
938 alloc_opts <<= 1;
939 opts = realloc(opts,
940 alloc_opts * sizeof(char *));
941 }
942
943 opts[num_opts] = strdup(p);
944 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +0100945 }
Jens Axboeebac4652005-12-08 15:25:21 +0100946
Jens Axboe3b8b7132008-06-10 19:46:23 +0200947 ret = fio_options_parse(td, opts, num_opts);
948 if (!ret) {
949 if (dump_cmdline)
950 for (i = 0; i < num_opts; i++)
951 log_info("--%s ", opts[i]);
952
Jens Axboe45410ac2006-06-07 11:10:39 +0200953 ret = add_job(td, name, 0);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200954 } else {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100955 log_err("fio: job %s dropped\n", name);
956 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200957 }
Jens Axboe3b8b7132008-06-10 19:46:23 +0200958
959 for (i = 0; i < num_opts; i++)
960 free(opts[i]);
961 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100962 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100963
Jens Axboecca73aa2007-04-04 11:09:19 +0200964 if (dump_cmdline)
965 log_info("\n");
966
Jens Axboe3b8b7132008-06-10 19:46:23 +0200967 for (i = 0; i < num_opts; i++)
968 free(opts[i]);
969
Jens Axboeebac4652005-12-08 15:25:21 +0100970 free(string);
971 free(name);
Jens Axboe25775942008-06-10 20:26:06 +0200972 free(opts);
Jens Axboe50d16972011-09-29 17:45:28 -0600973 if (!is_buf && f != stdin)
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200974 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200975 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100976}
977
978static int fill_def_thread(void)
979{
980 memset(&def_thread, 0, sizeof(def_thread));
981
Jens Axboe375b2692007-05-22 09:13:02 +0200982 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100983
984 /*
Jens Axboeee738492007-01-10 11:23:16 +0100985 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100986 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100987 fio_fill_default_options(&def_thread);
Jens Axboeebac4652005-12-08 15:25:21 +0100988 return 0;
989}
990
Jens Axboeebac4652005-12-08 15:25:21 +0100991static void free_shm(void)
992{
993 struct shmid_ds sbuf;
994
995 if (threads) {
Jens Axboe5e1d3062008-05-23 11:55:53 +0200996 void *tp = threads;
997
Jens Axboeebac4652005-12-08 15:25:21 +0100998 threads = NULL;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200999 file_hash_exit();
1000 fio_debug_jobp = NULL;
1001 shmdt(tp);
Jens Axboeebac4652005-12-08 15:25:21 +01001002 shmctl(shm_id, IPC_RMID, &sbuf);
1003 }
Jens Axboe2e5cdb12008-03-01 18:52:49 +01001004
1005 scleanup();
Jens Axboeebac4652005-12-08 15:25:21 +01001006}
1007
Jens Axboe906c8d72006-06-13 09:37:56 +02001008/*
1009 * The thread area is shared between the main process and the job
1010 * threads/processes. So setup a shared memory segment that will hold
Jens Axboe380065a2008-03-01 18:56:24 +01001011 * all the job info. We use the end of the region for keeping track of
1012 * open files across jobs, for file sharing.
Jens Axboe906c8d72006-06-13 09:37:56 +02001013 */
Jens Axboeebac4652005-12-08 15:25:21 +01001014static int setup_thread_area(void)
1015{
Jens Axboe380065a2008-03-01 18:56:24 +01001016 void *hash;
1017
Jens Axboeebac4652005-12-08 15:25:21 +01001018 /*
1019 * 1024 is too much on some machines, scale max_jobs if
1020 * we get a failure that looks like too large a shm segment
1021 */
1022 do {
Jens Axboe906c8d72006-06-13 09:37:56 +02001023 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +01001024
Jens Axboe380065a2008-03-01 18:56:24 +01001025 size += file_hash_size;
Jens Axboe5e1d3062008-05-23 11:55:53 +02001026 size += sizeof(unsigned int);
Jens Axboe380065a2008-03-01 18:56:24 +01001027
Jens Axboe906c8d72006-06-13 09:37:56 +02001028 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +01001029 if (shm_id != -1)
1030 break;
1031 if (errno != EINVAL) {
1032 perror("shmget");
1033 break;
1034 }
1035
1036 max_jobs >>= 1;
1037 } while (max_jobs);
1038
1039 if (shm_id == -1)
1040 return 1;
1041
1042 threads = shmat(shm_id, NULL, 0);
1043 if (threads == (void *) -1) {
1044 perror("shmat");
1045 return 1;
1046 }
1047
Jens Axboe1f809d12007-10-25 18:34:02 +02001048 memset(threads, 0, max_jobs * sizeof(struct thread_data));
Jens Axboe380065a2008-03-01 18:56:24 +01001049 hash = (void *) threads + max_jobs * sizeof(struct thread_data);
Jens Axboe5e1d3062008-05-23 11:55:53 +02001050 fio_debug_jobp = (void *) hash + file_hash_size;
1051 *fio_debug_jobp = -1;
Jens Axboe380065a2008-03-01 18:56:24 +01001052 file_hash_init(hash);
Jens Axboeebac4652005-12-08 15:25:21 +01001053 atexit(free_shm);
1054 return 0;
1055}
1056
Jens Axboe45378b32007-12-19 13:54:38 +01001057static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +02001058{
Bruce Cran43617622011-07-30 12:55:52 +02001059 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +01001060 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboeee56ad52008-02-01 10:30:20 +01001061 printf("\t--debug=options\tEnable debug logging\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +01001062 printf("\t--output\tWrite output to file\n");
1063 printf("\t--timeout\tRuntime in seconds\n");
1064 printf("\t--latency-log\tGenerate per-job latency logs\n");
1065 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
1066 printf("\t--minimal\tMinimal (terse) output\n");
1067 printf("\t--version\tPrint version info and exit\n");
Jens Axboef57a9c52011-09-09 21:01:37 +02001068 printf("\t--terse-version=x Terse version output format\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +01001069 printf("\t--help\t\tPrint this page\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001070 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of"
1071 " them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +02001072 printf("\t--showcmd\tTurn a job file into command line options\n");
Aaron Carrolle592a062007-09-14 09:49:41 +02001073 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
1074 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001075 printf("\t--readonly\tTurn on safety read-only checks, preventing"
1076 " writes\n");
Jens Axboe01f06b62008-02-18 20:53:47 +01001077 printf("\t--section=name\tOnly run specified section in job file\n");
Jens Axboe2b386d22008-03-26 10:32:57 +01001078 printf("\t--alloc-size=kb\tSet smalloc pool to this size in kb"
1079 " (def 1024)\n");
Jens Axboea9523c62011-01-17 16:49:54 -07001080 printf("\t--warnings-fatal Fio parser warnings are fatal\n");
Jens Axboefca70352011-07-06 20:12:54 +02001081 printf("\t--max-jobs\tMaximum number of threads/processes to support\n");
Jens Axboeaa58d252010-06-09 09:49:38 +02001082 printf("\nFio was written by Jens Axboe <jens.axboe@oracle.com>");
1083 printf("\n Jens Axboe <jaxboe@fusionio.com>\n");
Jens Axboeb4692822006-10-27 13:43:22 +02001084}
1085
Jens Axboe79e48f72008-02-01 20:37:09 +01001086#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +01001087struct debug_level debug_levels[] = {
Jens Axboebd6f78b2008-02-01 20:27:52 +01001088 { .name = "process", .shift = FD_PROCESS, },
1089 { .name = "file", .shift = FD_FILE, },
1090 { .name = "io", .shift = FD_IO, },
1091 { .name = "mem", .shift = FD_MEM, },
1092 { .name = "blktrace", .shift = FD_BLKTRACE },
1093 { .name = "verify", .shift = FD_VERIFY },
Jens Axboe84422ac2008-02-19 20:10:26 +01001094 { .name = "random", .shift = FD_RANDOM },
Jens Axboea3d741f2008-02-27 18:32:33 +01001095 { .name = "parse", .shift = FD_PARSE },
Jens Axboecd991b92008-03-07 13:19:35 +01001096 { .name = "diskutil", .shift = FD_DISKUTIL },
Jens Axboe5e1d3062008-05-23 11:55:53 +02001097 { .name = "job", .shift = FD_JOB },
Jens Axboe29adda32009-01-05 19:06:39 +01001098 { .name = "mutex", .shift = FD_MUTEX },
Jens Axboe79d16312010-03-04 12:43:20 +01001099 { .name = "profile", .shift = FD_PROFILE },
Jens Axboec223da82010-03-24 13:23:53 +01001100 { .name = "time", .shift = FD_TIME },
Jens Axboe02444ad2008-10-07 11:33:00 +02001101 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +01001102};
1103
Jens Axboec09823a2008-02-19 20:16:57 +01001104static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +01001105{
1106 struct debug_level *dl;
1107 char *p = (char *) string;
1108 char *opt;
1109 int i;
1110
1111 if (!strcmp(string, "?") || !strcmp(string, "help")) {
Jens Axboeee56ad52008-02-01 10:30:20 +01001112 log_info("fio: dumping debug options:");
1113 for (i = 0; debug_levels[i].name; i++) {
1114 dl = &debug_levels[i];
1115 log_info("%s,", dl->name);
1116 }
Jens Axboebd6f78b2008-02-01 20:27:52 +01001117 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001118 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +01001119 }
1120
1121 while ((opt = strsep(&p, ",")) != NULL) {
1122 int found = 0;
1123
Jens Axboe5e1d3062008-05-23 11:55:53 +02001124 if (!strncmp(opt, "all", 3)) {
1125 log_info("fio: set all debug options\n");
1126 fio_debug = ~0UL;
1127 continue;
1128 }
1129
Jens Axboeee56ad52008-02-01 10:30:20 +01001130 for (i = 0; debug_levels[i].name; i++) {
1131 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +02001132 found = !strncmp(opt, dl->name, strlen(dl->name));
1133 if (!found)
1134 continue;
1135
1136 if (dl->shift == FD_JOB) {
1137 opt = strchr(opt, ':');
1138 if (!opt) {
1139 log_err("fio: missing job number\n");
1140 break;
1141 }
1142 opt++;
1143 fio_debug_jobno = atoi(opt);
1144 log_info("fio: set debug jobno %d\n",
1145 fio_debug_jobno);
1146 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001147 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001148 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +01001149 }
Jens Axboe5e1d3062008-05-23 11:55:53 +02001150 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001151 }
1152
1153 if (!found)
1154 log_err("fio: debug mask %s not found\n", opt);
1155 }
Jens Axboec09823a2008-02-19 20:16:57 +01001156 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +01001157}
Jens Axboe79e48f72008-02-01 20:37:09 +01001158#else
Jens Axboe69b98d42008-05-30 22:25:32 +02001159static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +01001160{
1161 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001162 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +01001163}
1164#endif
Jens Axboeee56ad52008-02-01 10:30:20 +01001165
Jens Axboe4c6107f2011-01-18 05:22:22 -07001166static void fio_options_fill_optstring(void)
1167{
1168 char *ostr = cmd_optstr;
1169 int i, c;
1170
1171 c = i = 0;
1172 while (l_opts[i].name) {
1173 ostr[c++] = l_opts[i].val;
1174 if (l_opts[i].has_arg == required_argument)
1175 ostr[c++] = ':';
1176 else if (l_opts[i].has_arg == optional_argument) {
1177 ostr[c++] = ':';
1178 ostr[c++] = ':';
1179 }
1180 i++;
1181 }
1182 ostr[c] = '\0';
1183}
1184
Jens Axboe214e1ec2007-03-15 10:48:13 +01001185static int parse_cmd_line(int argc, char *argv[])
1186{
1187 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +01001188 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe4c6107f2011-01-18 05:22:22 -07001189 char *ostr = cmd_optstr;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001190
Jens Axboe4c6107f2011-01-18 05:22:22 -07001191 while ((c = getopt_long_only(argc, argv, ostr, l_opts, &lidx)) != -1) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001192 switch (c) {
Jens Axboe2b386d22008-03-26 10:32:57 +01001193 case 'a':
1194 smalloc_pool_size = atoi(optarg);
1195 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001196 case 't':
Jens Axboeab2cabd2011-07-23 13:43:13 +02001197 def_thread.o.timeout = atoi(optarg);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001198 break;
1199 case 'l':
1200 write_lat_log = 1;
1201 break;
Jens Axboe3d73e5a2010-03-25 10:38:07 +01001202 case 'b':
Jens Axboe214e1ec2007-03-15 10:48:13 +01001203 write_bw_log = 1;
1204 break;
1205 case 'o':
1206 f_out = fopen(optarg, "w+");
1207 if (!f_out) {
1208 perror("fopen output");
1209 exit(1);
1210 }
1211 f_err = f_out;
1212 break;
1213 case 'm':
1214 terse_output = 1;
1215 break;
1216 case 'h':
Jens Axboe45378b32007-12-19 13:54:38 +01001217 usage(argv[0]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001218 exit(0);
1219 case 'c':
1220 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +02001221 case 's':
1222 dump_cmdline = 1;
1223 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001224 case 'r':
1225 read_only = 1;
1226 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001227 case 'v':
Jens Axboeca740f42011-01-25 13:06:16 +01001228 log_info("%s\n", fio_version_string);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001229 exit(0);
Jens Axboef57a9c52011-09-09 21:01:37 +02001230 case 'V':
1231 terse_version = atoi(optarg);
1232 if (terse_version != 2) {
1233 log_err("fio: bad terse version format\n");
1234 exit_val = 1;
1235 do_exit++;
1236 }
1237 break;
Aaron Carrolle592a062007-09-14 09:49:41 +02001238 case 'e':
1239 if (!strcmp("always", optarg))
1240 eta_print = FIO_ETA_ALWAYS;
1241 else if (!strcmp("never", optarg))
1242 eta_print = FIO_ETA_NEVER;
1243 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001244 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001245 if (set_debug(optarg))
1246 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001247 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001248 case 'x': {
1249 size_t new_size;
1250
Jens Axboe01f06b62008-02-18 20:53:47 +01001251 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001252 log_err("fio: can't use global as only "
1253 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001254 do_exit++;
1255 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001256 break;
1257 }
Jens Axboead0a2732011-03-11 10:16:17 +01001258 new_size = (nr_job_sections + 1) * sizeof(char *);
1259 job_sections = realloc(job_sections, new_size);
1260 job_sections[nr_job_sections] = strdup(optarg);
1261 nr_job_sections++;
Jens Axboe01f06b62008-02-18 20:53:47 +01001262 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001263 }
Jens Axboe9ac8a792009-11-13 21:23:07 +01001264 case 'p':
Jens Axboe07b32322010-03-05 09:48:44 +01001265 exec_profile = strdup(optarg);
Jens Axboe9ac8a792009-11-13 21:23:07 +01001266 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001267 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001268 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001269 char *val = optarg;
1270
1271 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001272 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe66251552011-05-12 10:14:57 +02001273 if (ret)
Jens Axboe214e1ec2007-03-15 10:48:13 +01001274 return 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001275 td = NULL;
1276 }
1277 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001278 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001279 int global = 0;
1280
Jens Axboe01f06b62008-02-18 20:53:47 +01001281 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001282 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001283
Jens Axboe01f06b62008-02-18 20:53:47 +01001284 if (is_section && skip_this_section(val))
1285 continue;
1286
Jens Axboe214e1ec2007-03-15 10:48:13 +01001287 td = get_new_job(global, &def_thread);
1288 if (!td)
1289 return 0;
1290 }
1291
1292 ret = fio_cmd_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001293 break;
1294 }
Jens Axboea9523c62011-01-17 16:49:54 -07001295 case 'w':
1296 warnings_fatal = 1;
1297 break;
Jens Axboefca70352011-07-06 20:12:54 +02001298 case 'j':
1299 max_jobs = atoi(optarg);
1300 if (!max_jobs || max_jobs > REAL_MAX_JOBS) {
1301 log_err("fio: invalid max jobs: %d\n", max_jobs);
1302 do_exit++;
1303 exit_val = 1;
1304 }
1305 break;
Jens Axboe50d16972011-09-29 17:45:28 -06001306 case 'S':
1307 is_backend = 1;
1308 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001309 default:
Jens Axboec09823a2008-02-19 20:16:57 +01001310 do_exit++;
1311 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001312 break;
1313 }
1314 }
1315
Jens Axboec09823a2008-02-19 20:16:57 +01001316 if (do_exit)
1317 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01001318
Jens Axboe50d16972011-09-29 17:45:28 -06001319 if (is_backend)
Jens Axboe5c341e92011-09-29 18:00:35 -06001320 return fio_server();
Jens Axboe50d16972011-09-29 17:45:28 -06001321
Jens Axboe214e1ec2007-03-15 10:48:13 +01001322 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +01001323 if (!ret)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001324 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001325 }
1326
1327 while (optind < argc) {
1328 ini_idx++;
1329 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1330 ini_file[ini_idx - 1] = strdup(argv[optind]);
1331 optind++;
1332 }
1333
1334 return ini_idx;
1335}
1336
Jens Axboeebac4652005-12-08 15:25:21 +01001337int parse_options(int argc, char *argv[])
1338{
Jens Axboe972cfd22006-06-09 11:08:56 +02001339 int job_files, i;
1340
Jens Axboeb4692822006-10-27 13:43:22 +02001341 f_out = stdout;
1342 f_err = stderr;
1343
Jens Axboe4c6107f2011-01-18 05:22:22 -07001344 fio_options_fill_optstring();
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001345 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02001346
Jens Axboeebac4652005-12-08 15:25:21 +01001347 if (setup_thread_area())
1348 return 1;
1349 if (fill_def_thread())
1350 return 1;
1351
Jens Axboe972cfd22006-06-09 11:08:56 +02001352 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001353
Jens Axboe972cfd22006-06-09 11:08:56 +02001354 for (i = 0; i < job_files; i++) {
1355 if (fill_def_thread())
1356 return 1;
Jens Axboe50d16972011-09-29 17:45:28 -06001357 if (parse_jobs_ini(ini_file[i], 0, i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001358 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001359 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001360 }
Jens Axboeebac4652005-12-08 15:25:21 +01001361
Jens Axboe88c6ed82006-06-09 11:28:10 +02001362 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +01001363 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001364
1365 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001366 if (dump_cmdline)
1367 return 0;
Jens Axboe07b32322010-03-05 09:48:44 +01001368 if (exec_profile)
1369 return 0;
Jens Axboe5c341e92011-09-29 18:00:35 -06001370 if (is_backend)
1371 return 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02001372
Bruce Cran03e20d62011-01-02 20:14:54 +01001373 log_err("No jobs(s) defined\n\n");
Jens Axboe45378b32007-12-19 13:54:38 +01001374 usage(argv[0]);
Jens Axboeb4692822006-10-27 13:43:22 +02001375 return 1;
1376 }
1377
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001378 if (def_thread.o.gtod_offload) {
1379 fio_gtod_init();
1380 fio_gtod_offload = 1;
1381 fio_gtod_cpu = def_thread.o.gtod_cpu;
1382 }
1383
Jens Axboeca740f42011-01-25 13:06:16 +01001384 log_info("%s\n", fio_version_string);
Jens Axboeebac4652005-12-08 15:25:21 +01001385 return 0;
1386}