blob: a7b0b6554b8f4d58ab3f6882bbffe2ebfbf3e951 [file] [log] [blame]
Jens Axboe906c8d72006-06-13 09:37:56 +02001/*
Jens Axboecb2c86f2006-10-26 13:48:34 +02002 * This file contains job initialization and setup functions.
Jens Axboe906c8d72006-06-13 09:37:56 +02003 */
Jens Axboeebac4652005-12-08 15:25:21 +01004#include <stdio.h>
5#include <stdlib.h>
6#include <unistd.h>
7#include <fcntl.h>
8#include <ctype.h>
9#include <string.h>
10#include <errno.h>
Jens Axboeb4692822006-10-27 13:43:22 +020011#include <getopt.h>
Jens Axboeebac4652005-12-08 15:25:21 +010012#include <sys/ipc.h>
13#include <sys/shm.h>
14#include <sys/types.h>
15#include <sys/stat.h>
16
17#include "fio.h"
Jens Axboecb2c86f2006-10-26 13:48:34 +020018#include "parse.h"
Jens Axboeebac4652005-12-08 15:25:21 +010019
Jens Axboe19e82572008-02-18 20:00:08 +010020static char fio_version_string[] = "fio 1.18.1";
Jens Axboe214e1ec2007-03-15 10:48:13 +010021
Jens Axboeee738492007-01-10 11:23:16 +010022#define FIO_RANDSEED (0xb1899bedUL)
Jens Axboeebac4652005-12-08 15:25:21 +010023
Jens Axboe214e1ec2007-03-15 10:48:13 +010024static char **ini_file;
25static int max_jobs = MAX_JOBS;
Jens Axboecca73aa2007-04-04 11:09:19 +020026static int dump_cmdline;
Jens Axboee1f36502006-10-27 10:54:08 +020027
Jens Axboe214e1ec2007-03-15 10:48:13 +010028struct thread_data def_thread;
29struct thread_data *threads = NULL;
Jens Axboee1f36502006-10-27 10:54:08 +020030
Jens Axboe214e1ec2007-03-15 10:48:13 +010031int exitall_on_terminate = 0;
32int terse_output = 0;
Aaron Carrolle592a062007-09-14 09:49:41 +020033int eta_print;
Jens Axboe214e1ec2007-03-15 10:48:13 +010034unsigned long long mlock_size = 0;
35FILE *f_out = NULL;
36FILE *f_err = NULL;
Jens Axboe01f06b62008-02-18 20:53:47 +010037char *job_section = NULL;
Jens Axboeee738492007-01-10 11:23:16 +010038
Jens Axboe214e1ec2007-03-15 10:48:13 +010039int write_bw_log = 0;
Jens Axboe4241ea82007-09-12 08:18:36 +020040int read_only = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020041
Jens Axboe214e1ec2007-03-15 10:48:13 +010042static int def_timeout = 0;
43static int write_lat_log = 0;
44
45static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020046
Jens Axboeee56ad52008-02-01 10:30:20 +010047unsigned long fio_debug = 0;
48
Jens Axboeb4692822006-10-27 13:43:22 +020049/*
50 * Command line options. These will contain the above, plus a few
51 * extra that only pertain to fio itself and not jobs.
52 */
Jens Axboe214e1ec2007-03-15 10:48:13 +010053static struct option long_options[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020054 {
55 .name = "output",
56 .has_arg = required_argument,
57 .val = 'o',
58 },
59 {
60 .name = "timeout",
61 .has_arg = required_argument,
62 .val = 't',
63 },
64 {
65 .name = "latency-log",
66 .has_arg = required_argument,
67 .val = 'l',
68 },
69 {
70 .name = "bandwidth-log",
71 .has_arg = required_argument,
72 .val = 'b',
73 },
74 {
75 .name = "minimal",
76 .has_arg = optional_argument,
77 .val = 'm',
78 },
79 {
80 .name = "version",
81 .has_arg = no_argument,
82 .val = 'v',
83 },
84 {
Jens Axboefd28ca42007-01-09 21:20:13 +010085 .name = "help",
86 .has_arg = no_argument,
87 .val = 'h',
88 },
89 {
90 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +010091 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +010092 .val = 'c',
93 },
94 {
Jens Axboecca73aa2007-04-04 11:09:19 +020095 .name = "showcmd",
96 .has_arg = no_argument,
Jens Axboe724e4432007-09-11 20:02:05 +020097 .val = 's',
98 },
99 {
100 .name = "readonly",
101 .has_arg = no_argument,
102 .val = 'r',
Jens Axboecca73aa2007-04-04 11:09:19 +0200103 },
104 {
Aaron Carrolle592a062007-09-14 09:49:41 +0200105 .name = "eta",
106 .has_arg = required_argument,
107 .val = 'e',
108 },
109 {
Jens Axboeee56ad52008-02-01 10:30:20 +0100110 .name = "debug",
111 .has_arg = required_argument,
112 .val = 'd',
113 },
114 {
Jens Axboe01f06b62008-02-18 20:53:47 +0100115 .name = "section",
116 .has_arg = required_argument,
117 .val = 'x',
118 },
119 {
Jens Axboeb4692822006-10-27 13:43:22 +0200120 .name = NULL,
121 },
122};
123
Joel Becker9728ce32007-03-01 08:24:39 +0100124FILE *get_f_out()
125{
126 return f_out;
127}
128
129FILE *get_f_err()
130{
131 return f_err;
132}
133
Jens Axboe906c8d72006-06-13 09:37:56 +0200134/*
135 * Return a free job structure.
136 */
Jens Axboeebac4652005-12-08 15:25:21 +0100137static struct thread_data *get_new_job(int global, struct thread_data *parent)
138{
139 struct thread_data *td;
140
141 if (global)
142 return &def_thread;
143 if (thread_number >= max_jobs)
144 return NULL;
145
146 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200147 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100148
Jens Axboecade3ef2007-03-23 15:29:45 +0100149 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100150 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100151
Jens Axboeebac4652005-12-08 15:25:21 +0100152 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100153 return td;
154}
155
156static void put_job(struct thread_data *td)
157{
Jens Axboe549577a2006-10-30 12:23:41 +0100158 if (td == &def_thread)
159 return;
160
Jens Axboe16edf252007-02-10 14:59:22 +0100161 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100162 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100163
Jens Axboeebac4652005-12-08 15:25:21 +0100164 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
165 thread_number--;
166}
167
Jens Axboe127f6862007-03-15 12:09:57 +0100168static int setup_rate(struct thread_data *td)
169{
170 unsigned long nr_reads_per_msec;
171 unsigned long long rate;
172 unsigned int bs;
173
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100174 if (!td->o.rate && !td->o.rate_iops)
Jens Axboe127f6862007-03-15 12:09:57 +0100175 return 0;
176
177 if (td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100178 bs = td->o.rw_min_bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100179 else if (td_read(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100180 bs = td->o.min_bs[DDIR_READ];
Jens Axboe127f6862007-03-15 12:09:57 +0100181 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100182 bs = td->o.min_bs[DDIR_WRITE];
Jens Axboe127f6862007-03-15 12:09:57 +0100183
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100184 if (td->o.rate) {
185 rate = td->o.rate;
Jens Axboe127f6862007-03-15 12:09:57 +0100186 nr_reads_per_msec = (rate * 1024 * 1000LL) / bs;
187 } else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100188 nr_reads_per_msec = td->o.rate_iops * 1000UL;
Jens Axboe127f6862007-03-15 12:09:57 +0100189
190 if (!nr_reads_per_msec) {
191 log_err("rate lower than supported\n");
192 return -1;
193 }
194
195 td->rate_usec_cycle = 1000000000ULL / nr_reads_per_msec;
196 td->rate_pending_usleep = 0;
197 return 0;
198}
199
Jens Axboedad915e2006-10-27 11:10:18 +0200200/*
201 * Lazy way of fixing up options that depend on each other. We could also
202 * define option callback handlers, but this is easier.
203 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100204static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200205{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100206 struct thread_options *o = &td->o;
Jens Axboedad915e2006-10-27 11:10:18 +0200207
Jens Axboe724e4432007-09-11 20:02:05 +0200208 if (read_only && td_write(td)) {
209 log_err("fio: job <%s> has write bit set, but fio is in read-only mode\n", td->o.name);
210 return 1;
211 }
212
Jens Axboee47f7992007-03-21 14:05:39 +0100213 if (o->rwmix[DDIR_READ] + o->rwmix[DDIR_WRITE] > 100)
214 o->rwmix[DDIR_WRITE] = 100 - o->rwmix[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100215
216 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200217 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100218 free(o->write_iolog_file);
219 o->write_iolog_file = NULL;
Jens Axboe076efc72006-10-27 11:24:25 +0200220 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100221
Jens Axboe16b462a2006-10-30 12:35:18 +0100222 /*
223 * only really works for sequential io for now, and with 1 file
224 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100225 if (o->zone_size && td_random(td) && o->open_files == 1)
226 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100227
228 /*
229 * Reads can do overwrites, we always need to pre-create the file
230 */
231 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100232 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100233
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100234 if (!o->min_bs[DDIR_READ])
235 o->min_bs[DDIR_READ]= o->bs[DDIR_READ];
236 if (!o->max_bs[DDIR_READ])
237 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
238 if (!o->min_bs[DDIR_WRITE])
239 o->min_bs[DDIR_WRITE]= o->bs[DDIR_WRITE];
240 if (!o->max_bs[DDIR_WRITE])
241 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100242
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100243 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100244
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100245 if (!o->file_size_high)
246 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100247
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100248 if (o->norandommap && o->verify != VERIFY_NONE) {
Jens Axboebb8895e2006-10-30 15:14:48 +0100249 log_err("fio: norandommap given, verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100250 o->verify = VERIFY_NONE;
Jens Axboebb8895e2006-10-30 15:14:48 +0100251 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100252 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100253 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100254
255 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100256 * thinktime_spin must be less than thinktime
257 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100258 if (o->thinktime_spin > o->thinktime)
259 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100260
261 /*
262 * The low water mark cannot be bigger than the iodepth
263 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100264 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100265 /*
266 * syslet work around - if the workload is sequential,
267 * we want to let the queue drain all the way down to
268 * avoid seeking between async threads
269 */
270 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100271 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100272 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100273 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100274 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100275
276 /*
277 * If batch number isn't set, default to the same as iodepth
278 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100279 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
280 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100281
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100282 if (o->nr_files > td->files_index)
283 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100284
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100285 if (o->open_files > o->nr_files || !o->open_files)
286 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100287
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100288 if ((o->rate && o->rate_iops) || (o->ratemin && o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100289 log_err("fio: rate and rate_iops are mutually exclusive\n");
290 return 1;
291 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100292 if ((o->rate < o->ratemin) || (o->rate_iops < o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100293 log_err("fio: minimum rate exceeds rate\n");
294 return 1;
295 }
296
Jens Axboecf4464c2007-04-17 20:14:42 +0200297 if (!o->timeout && o->time_based) {
298 log_err("fio: time_based requires a runtime/timeout setting\n");
299 o->time_based = 0;
300 }
301
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100302 if (o->fill_device && !o->size)
303 o->size = ULONG_LONG_MAX;
Jens Axboe79713142008-02-06 14:40:14 +0100304
305 if (td_rw(td) && td->o.verify != VERIFY_NONE)
306 log_info("fio: mixed read/write workload with verify. May not "
307 "work as expected, unless you pre-populated the file\n");
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100308
Jens Axboe4e991c22007-03-15 11:41:11 +0100309 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200310}
311
Jens Axboe906c8d72006-06-13 09:37:56 +0200312/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100313 * This function leaks the buffer
314 */
315static char *to_kmg(unsigned int val)
316{
317 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100318 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100319 char *p = post;
320
Jens Axboe245142f2006-11-08 12:49:21 +0100321 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100322 if (val & 1023)
323 break;
324
325 val >>= 10;
326 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100327 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100328
329 snprintf(buf, 31, "%u%c", val, *p);
330 return buf;
331}
332
Jens Axboe09629a92007-03-09 09:00:06 +0100333/* External engines are specified by "external:name.o") */
334static const char *get_engine_name(const char *str)
335{
336 char *p = strstr(str, ":");
337
338 if (!p)
339 return str;
340
341 p++;
342 strip_blank_front(&p);
343 strip_blank_end(p);
344 return p;
345}
346
Jens Axboee132cba2007-03-14 14:23:54 +0100347static int exists_and_not_file(const char *filename)
348{
349 struct stat sb;
350
351 if (lstat(filename, &sb) == -1)
352 return 0;
353
354 if (S_ISREG(sb.st_mode))
355 return 0;
356
357 return 1;
358}
359
Jens Axboef8977ee2006-11-06 14:03:03 +0100360/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100361 * Initialize the various random states we need (random io, block size ranges,
362 * read/write mix, etc).
363 */
364static int init_random_state(struct thread_data *td)
365{
366 unsigned long seeds[6];
Jens Axboe68727072007-03-15 20:49:25 +0100367 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100368
369 fd = open("/dev/urandom", O_RDONLY);
370 if (fd == -1) {
371 td_verror(td, errno, "open");
372 return 1;
373 }
374
375 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
376 td_verror(td, EIO, "read");
377 close(fd);
378 return 1;
379 }
380
381 close(fd);
382
383 os_random_seed(seeds[0], &td->bsrange_state);
384 os_random_seed(seeds[1], &td->verify_state);
385 os_random_seed(seeds[2], &td->rwmix_state);
386
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100387 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100388 os_random_seed(seeds[3], &td->next_file_state);
389
390 os_random_seed(seeds[5], &td->file_size_state);
391
392 if (!td_random(td))
393 return 0;
394
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100395 if (td->o.rand_repeatable)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100396 seeds[4] = FIO_RANDSEED * td->thread_number;
397
Jens Axboe9c60ce62007-03-15 09:14:47 +0100398 os_random_seed(seeds[4], &td->random_state);
399 return 0;
400}
401
Jens Axboe9c60ce62007-03-15 09:14:47 +0100402/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200403 * Adds a job to the list of things todo. Sanitizes the various options
404 * to make sure we don't have conflicts, and initializes various
405 * members of td.
406 */
Jens Axboe75154842006-06-01 13:56:09 +0200407static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100408{
Jens Axboe413dd452007-02-23 09:26:09 +0100409 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
410 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100411 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100412 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100413 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100414 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100415
Jens Axboeebac4652005-12-08 15:25:21 +0100416 /*
417 * the def_thread is just for options, it's not a real job
418 */
419 if (td == &def_thread)
420 return 0;
421
Jens Axboecca73aa2007-04-04 11:09:19 +0200422 /*
423 * if we are just dumping the output command line, don't add the job
424 */
425 if (dump_cmdline) {
426 put_job(td);
427 return 0;
428 }
429
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100430 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100431 td->io_ops = load_ioengine(td, engine);
432 if (!td->io_ops) {
433 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100434 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100435 }
Jens Axboedf641192006-10-12 07:55:41 +0200436
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100437 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100438 nr_thread++;
439 else
440 nr_process++;
441
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100442 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100443 td->io_ops->flags |= FIO_RAWIO;
444
Jens Axboee132cba2007-03-14 14:23:54 +0100445 file_alloced = 0;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100446 if (!td->o.filename && !td->files_index) {
Jens Axboee132cba2007-03-14 14:23:54 +0100447 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100448
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100449 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100450 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100451 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100452 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboee132cba2007-03-14 14:23:54 +0100453 sprintf(fname, "%s.%d.%d", jobname, td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100454 add_file(td, fname);
455 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100456 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100457 }
Jens Axboeebac4652005-12-08 15:25:21 +0100458
Jens Axboe4e991c22007-03-15 11:41:11 +0100459 if (fixup_options(td))
460 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100461
Jens Axboe07eb79d2007-04-12 13:02:38 +0200462 if (td->io_ops->flags & FIO_DISKLESSIO) {
463 struct fio_file *f;
464
465 for_each_file(td, f, i)
466 f->real_file_size = -1ULL;
467 }
468
Jens Axboe07739b52007-03-08 20:25:46 +0100469 td->mutex = fio_sem_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100470
Jens Axboe756867b2007-03-06 15:19:24 +0100471 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
472 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
473 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboe1e3d53a2007-03-22 19:01:48 +0100474 td->ddir_nr = td->o.ddir_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100475
Jens Axboeb3d62a72007-03-20 14:23:26 +0100476 if ((td->o.stonewall || td->o.numjobs > 1 || td->o.new_group)
477 && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100478 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100479 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100480 }
Jens Axboeebac4652005-12-08 15:25:21 +0100481
482 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100483 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100484
Jens Axboe9c60ce62007-03-15 09:14:47 +0100485 if (init_random_state(td))
486 goto err;
487
Jens Axboeebac4652005-12-08 15:25:21 +0100488 if (setup_rate(td))
489 goto err;
490
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100491 if (td->o.write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100492 setup_log(&td->ts.slat_log);
493 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100494 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100495 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100496 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100497
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100498 if (!td->o.name)
499 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200500
Jens Axboec6ae0a52006-06-12 11:04:44 +0200501 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200502 if (!job_add_num) {
Jens Axboeba0fbe12007-03-09 14:34:23 +0100503 if (!strcmp(td->io_ops->name, "cpuio"))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100504 log_info("%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->o.name, td->o.cpuload, td->o.cpucycle);
Jens Axboef8977ee2006-11-06 14:03:03 +0100505 else {
506 char *c1, *c2, *c3, *c4;
507
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100508 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
509 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
510 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
511 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100512
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100513 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s, ioengine=%s, iodepth=%u\n", td->o.name, td->groupid, ddir_str[td->o.td_ddir], c1, c2, c3, c4, td->io_ops->name, td->o.iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100514
515 free(c1);
516 free(c2);
517 free(c3);
518 free(c4);
519 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200520 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100521 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200522 }
Jens Axboeebac4652005-12-08 15:25:21 +0100523
524 /*
525 * recurse add identical jobs, clear numjobs and stonewall options
526 * as they don't apply to sub-jobs
527 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100528 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100529 while (--numjobs) {
530 struct thread_data *td_new = get_new_job(0, td);
531
532 if (!td_new)
533 goto err;
534
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100535 td_new->o.numjobs = 1;
536 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200537 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100538
539 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100540 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100541 td_new->files_index = 0;
542 td_new->files = NULL;
543 }
544
Jens Axboe75154842006-06-01 13:56:09 +0200545 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100546
Jens Axboe75154842006-06-01 13:56:09 +0200547 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100548 goto err;
549 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100550
Jens Axboeebac4652005-12-08 15:25:21 +0100551 return 0;
552err:
553 put_job(td);
554 return -1;
555}
556
Jens Axboe01f06b62008-02-18 20:53:47 +0100557static int skip_this_section(const char *name)
558{
559 if (!job_section)
560 return 0;
561 if (!strncmp(name, "global", 6))
562 return 0;
563
564 return strncmp(job_section, name, strlen(job_section));
565}
566
Jens Axboeebac4652005-12-08 15:25:21 +0100567static int is_empty_or_comment(char *line)
568{
569 unsigned int i;
570
571 for (i = 0; i < strlen(line); i++) {
572 if (line[i] == ';')
573 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100574 if (line[i] == '#')
575 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100576 if (!isspace(line[i]) && !iscntrl(line[i]))
577 return 0;
578 }
579
580 return 1;
581}
582
Jens Axboe313cb202006-12-21 09:50:00 +0100583/*
Jens Axboe07261982006-06-07 10:51:12 +0200584 * This is our [ini] type file parser.
585 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100586static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100587{
Jens Axboee1f36502006-10-27 10:54:08 +0200588 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100589 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100590 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100591 FILE *f;
592 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200593 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200594 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +0200595 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +0100596 int inside_skip = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100597
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200598 if (!strcmp(file, "-"))
599 f = stdin;
600 else
601 f = fopen(file, "r");
602
Jens Axboeebac4652005-12-08 15:25:21 +0100603 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200604 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100605 return 1;
606 }
607
608 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200609
610 /*
611 * it's really 256 + small bit, 280 should suffice
612 */
613 name = malloc(280);
614 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100615
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200616 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100617 do {
Jens Axboeccf8f122007-09-27 10:48:55 +0200618 /*
619 * if skip_fgets is set, we already have loaded a line we
620 * haven't handled.
621 */
622 if (!skip_fgets) {
623 p = fgets(string, 4095, f);
624 if (!p)
625 break;
626 }
gurudas paicdc7f192007-03-29 10:10:56 +0200627
Jens Axboeccf8f122007-09-27 10:48:55 +0200628 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +0200629 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800630 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200631
Jens Axboeebac4652005-12-08 15:25:21 +0100632 if (is_empty_or_comment(p))
633 continue;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800634 if (sscanf(p, "[%255s]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100635 if (inside_skip)
636 continue;
Jens Axboe088b4202007-07-19 14:53:01 +0200637 log_err("fio: option <%s> outside of [] job section\n", p);
638 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800639 }
Jens Axboeebac4652005-12-08 15:25:21 +0100640
Jens Axboe01f06b62008-02-18 20:53:47 +0100641 if (skip_this_section(name)) {
642 inside_skip = 1;
643 continue;
644 } else
645 inside_skip = 0;
646
Jens Axboeebac4652005-12-08 15:25:21 +0100647 global = !strncmp(name, "global", 6);
648
649 name[strlen(name) - 1] = '\0';
650
Jens Axboecca73aa2007-04-04 11:09:19 +0200651 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200652 if (first_sect)
653 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200654 if (!global)
655 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200656 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200657 }
658
Jens Axboeebac4652005-12-08 15:25:21 +0100659 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200660 if (!td) {
661 ret = 1;
662 break;
663 }
Jens Axboeebac4652005-12-08 15:25:21 +0100664
Jens Axboe972cfd22006-06-09 11:08:56 +0200665 /*
666 * Seperate multiple job files by a stonewall
667 */
Jens Axboef9481912006-06-09 11:37:28 +0200668 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100669 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200670 stonewall = 0;
671 }
672
Jens Axboeebac4652005-12-08 15:25:21 +0100673 while ((p = fgets(string, 4096, f)) != NULL) {
674 if (is_empty_or_comment(p))
675 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200676
Jens Axboeb6754f92006-05-30 14:29:32 +0200677 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100678
Jens Axboeccf8f122007-09-27 10:48:55 +0200679 /*
680 * new section, break out and make sure we don't
681 * fgets() a new line at the top.
682 */
683 if (p[0] == '[') {
684 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100685 break;
Jens Axboeccf8f122007-09-27 10:48:55 +0200686 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100687
Jens Axboe4ae3f762006-05-30 13:35:14 +0200688 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200689
Jens Axboe45410ac2006-06-07 11:10:39 +0200690 /*
691 * Don't break here, continue parsing options so we
692 * dump all the bad ones. Makes trial/error fixups
693 * easier on the user.
694 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100695 ret |= fio_option_parse(td, p);
Jens Axboecca73aa2007-04-04 11:09:19 +0200696 if (!ret && dump_cmdline)
697 log_info("--%s ", p);
Jens Axboeebac4652005-12-08 15:25:21 +0100698 }
Jens Axboeebac4652005-12-08 15:25:21 +0100699
Jens Axboeccf8f122007-09-27 10:48:55 +0200700 if (!ret)
Jens Axboe45410ac2006-06-07 11:10:39 +0200701 ret = add_job(td, name, 0);
Jens Axboeccf8f122007-09-27 10:48:55 +0200702 else {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100703 log_err("fio: job %s dropped\n", name);
704 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200705 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100706 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100707
Jens Axboecca73aa2007-04-04 11:09:19 +0200708 if (dump_cmdline)
709 log_info("\n");
710
Jens Axboeebac4652005-12-08 15:25:21 +0100711 free(string);
712 free(name);
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200713 if (f != stdin)
714 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200715 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100716}
717
718static int fill_def_thread(void)
719{
720 memset(&def_thread, 0, sizeof(def_thread));
721
Jens Axboe375b2692007-05-22 09:13:02 +0200722 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100723
724 /*
Jens Axboeee738492007-01-10 11:23:16 +0100725 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100726 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100727 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100728
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100729 def_thread.o.timeout = def_timeout;
730 def_thread.o.write_bw_log = write_bw_log;
731 def_thread.o.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +0100732
Jens Axboeebac4652005-12-08 15:25:21 +0100733 return 0;
734}
735
Jens Axboeebac4652005-12-08 15:25:21 +0100736static void free_shm(void)
737{
738 struct shmid_ds sbuf;
739
740 if (threads) {
Jens Axboe2c0ecd22006-06-08 13:25:41 +0200741 shmdt((void *) threads);
Jens Axboeebac4652005-12-08 15:25:21 +0100742 threads = NULL;
743 shmctl(shm_id, IPC_RMID, &sbuf);
744 }
745}
746
Jens Axboe906c8d72006-06-13 09:37:56 +0200747/*
748 * The thread area is shared between the main process and the job
749 * threads/processes. So setup a shared memory segment that will hold
750 * all the job info.
751 */
Jens Axboeebac4652005-12-08 15:25:21 +0100752static int setup_thread_area(void)
753{
754 /*
755 * 1024 is too much on some machines, scale max_jobs if
756 * we get a failure that looks like too large a shm segment
757 */
758 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200759 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100760
Jens Axboe906c8d72006-06-13 09:37:56 +0200761 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100762 if (shm_id != -1)
763 break;
764 if (errno != EINVAL) {
765 perror("shmget");
766 break;
767 }
768
769 max_jobs >>= 1;
770 } while (max_jobs);
771
772 if (shm_id == -1)
773 return 1;
774
775 threads = shmat(shm_id, NULL, 0);
776 if (threads == (void *) -1) {
777 perror("shmat");
778 return 1;
779 }
780
Jens Axboe1f809d12007-10-25 18:34:02 +0200781 memset(threads, 0, max_jobs * sizeof(struct thread_data));
Jens Axboeebac4652005-12-08 15:25:21 +0100782 atexit(free_shm);
783 return 0;
784}
785
Jens Axboe45378b32007-12-19 13:54:38 +0100786static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +0200787{
Jens Axboe214e1ec2007-03-15 10:48:13 +0100788 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +0100789 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboeee56ad52008-02-01 10:30:20 +0100790 printf("\t--debug=options\tEnable debug logging\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100791 printf("\t--output\tWrite output to file\n");
792 printf("\t--timeout\tRuntime in seconds\n");
793 printf("\t--latency-log\tGenerate per-job latency logs\n");
794 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
795 printf("\t--minimal\tMinimal (terse) output\n");
796 printf("\t--version\tPrint version info and exit\n");
797 printf("\t--help\t\tPrint this page\n");
798 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +0200799 printf("\t--showcmd\tTurn a job file into command line options\n");
Aaron Carrolle592a062007-09-14 09:49:41 +0200800 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
801 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboe062c6022008-02-18 20:15:03 +0100802 printf("\t--readonly\tTurn on safety read-only checks, preventing writes\n");
Jens Axboe01f06b62008-02-18 20:53:47 +0100803 printf("\t--section=name\tOnly run specified section in job file\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200804}
805
Jens Axboe79e48f72008-02-01 20:37:09 +0100806#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +0100807struct debug_level debug_levels[] = {
Jens Axboebd6f78b2008-02-01 20:27:52 +0100808 { .name = "process", .shift = FD_PROCESS, },
809 { .name = "file", .shift = FD_FILE, },
810 { .name = "io", .shift = FD_IO, },
811 { .name = "mem", .shift = FD_MEM, },
812 { .name = "blktrace", .shift = FD_BLKTRACE },
813 { .name = "verify", .shift = FD_VERIFY },
Jens Axboe84422ac2008-02-19 20:10:26 +0100814 { .name = "random", .shift = FD_RANDOM },
Jens Axboeee56ad52008-02-01 10:30:20 +0100815 { },
816};
817
Jens Axboec09823a2008-02-19 20:16:57 +0100818static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +0100819{
820 struct debug_level *dl;
821 char *p = (char *) string;
822 char *opt;
823 int i;
824
825 if (!strcmp(string, "?") || !strcmp(string, "help")) {
826 int i;
827
828 log_info("fio: dumping debug options:");
829 for (i = 0; debug_levels[i].name; i++) {
830 dl = &debug_levels[i];
831 log_info("%s,", dl->name);
832 }
Jens Axboebd6f78b2008-02-01 20:27:52 +0100833 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +0100834 return 1;
Jens Axboebd6f78b2008-02-01 20:27:52 +0100835 } else if (!strcmp(string, "all")) {
836 fio_debug = ~0UL;
Jens Axboec09823a2008-02-19 20:16:57 +0100837 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +0100838 }
839
840 while ((opt = strsep(&p, ",")) != NULL) {
841 int found = 0;
842
843 for (i = 0; debug_levels[i].name; i++) {
844 dl = &debug_levels[i];
845 if (!strncmp(opt, dl->name, strlen(opt))) {
846 log_info("fio: set debug option %s\n", opt);
847 found = 1;
Jens Axboebd6f78b2008-02-01 20:27:52 +0100848 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +0100849 break;
850 }
851 }
852
853 if (!found)
854 log_err("fio: debug mask %s not found\n", opt);
855 }
Jens Axboec09823a2008-02-19 20:16:57 +0100856 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +0100857}
Jens Axboe79e48f72008-02-01 20:37:09 +0100858#else
859static void set_debug(const char *string)
860{
861 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +0100862 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +0100863}
864#endif
Jens Axboeee56ad52008-02-01 10:30:20 +0100865
Jens Axboe214e1ec2007-03-15 10:48:13 +0100866static int parse_cmd_line(int argc, char *argv[])
867{
868 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +0100869 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100870
871 while ((c = getopt_long_only(argc, argv, "", long_options, &lidx)) != -1) {
872 switch (c) {
873 case 't':
874 def_timeout = atoi(optarg);
875 break;
876 case 'l':
877 write_lat_log = 1;
878 break;
879 case 'w':
880 write_bw_log = 1;
881 break;
882 case 'o':
883 f_out = fopen(optarg, "w+");
884 if (!f_out) {
885 perror("fopen output");
886 exit(1);
887 }
888 f_err = f_out;
889 break;
890 case 'm':
891 terse_output = 1;
892 break;
893 case 'h':
Jens Axboe45378b32007-12-19 13:54:38 +0100894 usage(argv[0]);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100895 exit(0);
896 case 'c':
897 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +0200898 case 's':
899 dump_cmdline = 1;
900 break;
Jens Axboe724e4432007-09-11 20:02:05 +0200901 case 'r':
902 read_only = 1;
903 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100904 case 'v':
905 printf("%s\n", fio_version_string);
906 exit(0);
Aaron Carrolle592a062007-09-14 09:49:41 +0200907 case 'e':
908 if (!strcmp("always", optarg))
909 eta_print = FIO_ETA_ALWAYS;
910 else if (!strcmp("never", optarg))
911 eta_print = FIO_ETA_NEVER;
912 break;
Jens Axboeee56ad52008-02-01 10:30:20 +0100913 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +0100914 if (set_debug(optarg))
915 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +0100916 break;
Jens Axboe01f06b62008-02-18 20:53:47 +0100917 case 'x':
918 if (!strcmp(optarg, "global")) {
919 log_err("fio: can't use global as only section\n");
Jens Axboec09823a2008-02-19 20:16:57 +0100920 do_exit++;
921 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +0100922 break;
923 }
924 if (job_section)
925 free(job_section);
926 job_section = strdup(optarg);
927 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100928 case FIO_GETOPT_JOB: {
929 const char *opt = long_options[lidx].name;
930 char *val = optarg;
931
932 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100933 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100934 if (ret) {
935 put_job(td);
936 return 0;
937 }
938 td = NULL;
939 }
940 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100941 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +0200942 int global = 0;
943
Jens Axboe01f06b62008-02-18 20:53:47 +0100944 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +0200945 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100946
Jens Axboe01f06b62008-02-18 20:53:47 +0100947 if (is_section && skip_this_section(val))
948 continue;
949
Jens Axboe214e1ec2007-03-15 10:48:13 +0100950 td = get_new_job(global, &def_thread);
951 if (!td)
952 return 0;
953 }
954
955 ret = fio_cmd_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100956 break;
957 }
958 default:
Jens Axboec09823a2008-02-19 20:16:57 +0100959 do_exit++;
960 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100961 break;
962 }
963 }
964
Jens Axboec09823a2008-02-19 20:16:57 +0100965 if (do_exit)
966 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +0100967
Jens Axboe214e1ec2007-03-15 10:48:13 +0100968 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +0100969 if (!ret)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100970 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe7d6a8902008-02-18 20:59:18 +0100971 if (ret)
972 put_job(td);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100973 }
974
975 while (optind < argc) {
976 ini_idx++;
977 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
978 ini_file[ini_idx - 1] = strdup(argv[optind]);
979 optind++;
980 }
981
982 return ini_idx;
983}
984
Jens Axboeebac4652005-12-08 15:25:21 +0100985int parse_options(int argc, char *argv[])
986{
Jens Axboe972cfd22006-06-09 11:08:56 +0200987 int job_files, i;
988
Jens Axboeb4692822006-10-27 13:43:22 +0200989 f_out = stdout;
990 f_err = stderr;
991
Jens Axboe214e1ec2007-03-15 10:48:13 +0100992 fio_options_dup_and_init(long_options);
Jens Axboeb4692822006-10-27 13:43:22 +0200993
Jens Axboeebac4652005-12-08 15:25:21 +0100994 if (setup_thread_area())
995 return 1;
996 if (fill_def_thread())
997 return 1;
998
Jens Axboe972cfd22006-06-09 11:08:56 +0200999 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001000
Jens Axboe972cfd22006-06-09 11:08:56 +02001001 for (i = 0; i < job_files; i++) {
1002 if (fill_def_thread())
1003 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001004 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001005 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001006 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001007 }
Jens Axboeebac4652005-12-08 15:25:21 +01001008
Jens Axboe88c6ed82006-06-09 11:28:10 +02001009 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +01001010 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001011
1012 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001013 if (dump_cmdline)
1014 return 0;
1015
Jens Axboeb4692822006-10-27 13:43:22 +02001016 log_err("No jobs defined(s)\n");
Jens Axboe45378b32007-12-19 13:54:38 +01001017 usage(argv[0]);
Jens Axboeb4692822006-10-27 13:43:22 +02001018 return 1;
1019 }
1020
Jens Axboeebac4652005-12-08 15:25:21 +01001021 return 0;
1022}