blob: e53f103f65bf1f8f6659fe51a2b9d97d1cda72c4 [file] [log] [blame]
Jens Axboe906c8d72006-06-13 09:37:56 +02001/*
Jens Axboecb2c86f2006-10-26 13:48:34 +02002 * This file contains job initialization and setup functions.
Jens Axboe906c8d72006-06-13 09:37:56 +02003 */
Jens Axboeebac4652005-12-08 15:25:21 +01004#include <stdio.h>
5#include <stdlib.h>
6#include <unistd.h>
7#include <fcntl.h>
8#include <ctype.h>
9#include <string.h>
10#include <errno.h>
Jens Axboeb4692822006-10-27 13:43:22 +020011#include <getopt.h>
Jens Axboeebac4652005-12-08 15:25:21 +010012#include <sys/ipc.h>
13#include <sys/shm.h>
14#include <sys/types.h>
15#include <sys/stat.h>
16
17#include "fio.h"
Jens Axboecb2c86f2006-10-26 13:48:34 +020018#include "parse.h"
Jens Axboe2e5cdb12008-03-01 18:52:49 +010019#include "smalloc.h"
Jens Axboeebac4652005-12-08 15:25:21 +010020
Jens Axboe509df2b2008-02-19 20:24:10 +010021static char fio_version_string[] = "fio 1.19";
Jens Axboe214e1ec2007-03-15 10:48:13 +010022
Jens Axboeee738492007-01-10 11:23:16 +010023#define FIO_RANDSEED (0xb1899bedUL)
Jens Axboeebac4652005-12-08 15:25:21 +010024
Jens Axboe214e1ec2007-03-15 10:48:13 +010025static char **ini_file;
26static int max_jobs = MAX_JOBS;
Jens Axboecca73aa2007-04-04 11:09:19 +020027static int dump_cmdline;
Jens Axboee1f36502006-10-27 10:54:08 +020028
Jens Axboe214e1ec2007-03-15 10:48:13 +010029struct thread_data def_thread;
30struct thread_data *threads = NULL;
Jens Axboee1f36502006-10-27 10:54:08 +020031
Jens Axboe214e1ec2007-03-15 10:48:13 +010032int exitall_on_terminate = 0;
33int terse_output = 0;
Aaron Carrolle592a062007-09-14 09:49:41 +020034int eta_print;
Jens Axboe214e1ec2007-03-15 10:48:13 +010035unsigned long long mlock_size = 0;
36FILE *f_out = NULL;
37FILE *f_err = NULL;
Jens Axboe01f06b62008-02-18 20:53:47 +010038char *job_section = NULL;
Jens Axboeee738492007-01-10 11:23:16 +010039
Jens Axboe214e1ec2007-03-15 10:48:13 +010040int write_bw_log = 0;
Jens Axboe4241ea82007-09-12 08:18:36 +020041int read_only = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020042
Jens Axboe214e1ec2007-03-15 10:48:13 +010043static int def_timeout = 0;
44static int write_lat_log = 0;
45
46static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020047
Jens Axboeee56ad52008-02-01 10:30:20 +010048unsigned long fio_debug = 0;
49
Jens Axboeb4692822006-10-27 13:43:22 +020050/*
51 * Command line options. These will contain the above, plus a few
52 * extra that only pertain to fio itself and not jobs.
53 */
Jens Axboe214e1ec2007-03-15 10:48:13 +010054static struct option long_options[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020055 {
56 .name = "output",
57 .has_arg = required_argument,
58 .val = 'o',
59 },
60 {
61 .name = "timeout",
62 .has_arg = required_argument,
63 .val = 't',
64 },
65 {
66 .name = "latency-log",
67 .has_arg = required_argument,
68 .val = 'l',
69 },
70 {
71 .name = "bandwidth-log",
72 .has_arg = required_argument,
73 .val = 'b',
74 },
75 {
76 .name = "minimal",
77 .has_arg = optional_argument,
78 .val = 'm',
79 },
80 {
81 .name = "version",
82 .has_arg = no_argument,
83 .val = 'v',
84 },
85 {
Jens Axboefd28ca42007-01-09 21:20:13 +010086 .name = "help",
87 .has_arg = no_argument,
88 .val = 'h',
89 },
90 {
91 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +010092 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +010093 .val = 'c',
94 },
95 {
Jens Axboecca73aa2007-04-04 11:09:19 +020096 .name = "showcmd",
97 .has_arg = no_argument,
Jens Axboe724e4432007-09-11 20:02:05 +020098 .val = 's',
99 },
100 {
101 .name = "readonly",
102 .has_arg = no_argument,
103 .val = 'r',
Jens Axboecca73aa2007-04-04 11:09:19 +0200104 },
105 {
Aaron Carrolle592a062007-09-14 09:49:41 +0200106 .name = "eta",
107 .has_arg = required_argument,
108 .val = 'e',
109 },
110 {
Jens Axboeee56ad52008-02-01 10:30:20 +0100111 .name = "debug",
112 .has_arg = required_argument,
113 .val = 'd',
114 },
115 {
Jens Axboe01f06b62008-02-18 20:53:47 +0100116 .name = "section",
117 .has_arg = required_argument,
118 .val = 'x',
119 },
120 {
Jens Axboeb4692822006-10-27 13:43:22 +0200121 .name = NULL,
122 },
123};
124
Joel Becker9728ce32007-03-01 08:24:39 +0100125FILE *get_f_out()
126{
127 return f_out;
128}
129
130FILE *get_f_err()
131{
132 return f_err;
133}
134
Jens Axboe906c8d72006-06-13 09:37:56 +0200135/*
136 * Return a free job structure.
137 */
Jens Axboeebac4652005-12-08 15:25:21 +0100138static struct thread_data *get_new_job(int global, struct thread_data *parent)
139{
140 struct thread_data *td;
141
142 if (global)
143 return &def_thread;
144 if (thread_number >= max_jobs)
145 return NULL;
146
147 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200148 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100149
Jens Axboecade3ef2007-03-23 15:29:45 +0100150 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100151 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100152
Jens Axboeebac4652005-12-08 15:25:21 +0100153 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100154 return td;
155}
156
157static void put_job(struct thread_data *td)
158{
Jens Axboe549577a2006-10-30 12:23:41 +0100159 if (td == &def_thread)
160 return;
161
Jens Axboe16edf252007-02-10 14:59:22 +0100162 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100163 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100164
Jens Axboeebac4652005-12-08 15:25:21 +0100165 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
166 thread_number--;
167}
168
Jens Axboe127f6862007-03-15 12:09:57 +0100169static int setup_rate(struct thread_data *td)
170{
171 unsigned long nr_reads_per_msec;
172 unsigned long long rate;
173 unsigned int bs;
174
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100175 if (!td->o.rate && !td->o.rate_iops)
Jens Axboe127f6862007-03-15 12:09:57 +0100176 return 0;
177
178 if (td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100179 bs = td->o.rw_min_bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100180 else if (td_read(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100181 bs = td->o.min_bs[DDIR_READ];
Jens Axboe127f6862007-03-15 12:09:57 +0100182 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100183 bs = td->o.min_bs[DDIR_WRITE];
Jens Axboe127f6862007-03-15 12:09:57 +0100184
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100185 if (td->o.rate) {
186 rate = td->o.rate;
Jens Axboe127f6862007-03-15 12:09:57 +0100187 nr_reads_per_msec = (rate * 1024 * 1000LL) / bs;
188 } else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100189 nr_reads_per_msec = td->o.rate_iops * 1000UL;
Jens Axboe127f6862007-03-15 12:09:57 +0100190
191 if (!nr_reads_per_msec) {
192 log_err("rate lower than supported\n");
193 return -1;
194 }
195
196 td->rate_usec_cycle = 1000000000ULL / nr_reads_per_msec;
197 td->rate_pending_usleep = 0;
198 return 0;
199}
200
Jens Axboedad915e2006-10-27 11:10:18 +0200201/*
202 * Lazy way of fixing up options that depend on each other. We could also
203 * define option callback handlers, but this is easier.
204 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100205static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200206{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100207 struct thread_options *o = &td->o;
Jens Axboedad915e2006-10-27 11:10:18 +0200208
Jens Axboe724e4432007-09-11 20:02:05 +0200209 if (read_only && td_write(td)) {
210 log_err("fio: job <%s> has write bit set, but fio is in read-only mode\n", td->o.name);
211 return 1;
212 }
213
Jens Axboee47f7992007-03-21 14:05:39 +0100214 if (o->rwmix[DDIR_READ] + o->rwmix[DDIR_WRITE] > 100)
215 o->rwmix[DDIR_WRITE] = 100 - o->rwmix[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100216
217 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200218 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100219 free(o->write_iolog_file);
220 o->write_iolog_file = NULL;
Jens Axboe076efc72006-10-27 11:24:25 +0200221 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100222
Jens Axboe16b462a2006-10-30 12:35:18 +0100223 /*
224 * only really works for sequential io for now, and with 1 file
225 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100226 if (o->zone_size && td_random(td) && o->open_files == 1)
227 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100228
229 /*
230 * Reads can do overwrites, we always need to pre-create the file
231 */
232 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100233 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100234
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100235 if (!o->min_bs[DDIR_READ])
236 o->min_bs[DDIR_READ]= o->bs[DDIR_READ];
237 if (!o->max_bs[DDIR_READ])
238 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
239 if (!o->min_bs[DDIR_WRITE])
240 o->min_bs[DDIR_WRITE]= o->bs[DDIR_WRITE];
241 if (!o->max_bs[DDIR_WRITE])
242 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100243
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100244 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100245
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100246 if (!o->file_size_high)
247 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100248
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100249 if (o->norandommap && o->verify != VERIFY_NONE) {
Jens Axboebb8895e2006-10-30 15:14:48 +0100250 log_err("fio: norandommap given, verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100251 o->verify = VERIFY_NONE;
Jens Axboebb8895e2006-10-30 15:14:48 +0100252 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100253 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100254 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100255
256 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100257 * thinktime_spin must be less than thinktime
258 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100259 if (o->thinktime_spin > o->thinktime)
260 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100261
262 /*
263 * The low water mark cannot be bigger than the iodepth
264 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100265 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100266 /*
267 * syslet work around - if the workload is sequential,
268 * we want to let the queue drain all the way down to
269 * avoid seeking between async threads
270 */
271 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100272 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100273 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100274 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100275 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100276
277 /*
278 * If batch number isn't set, default to the same as iodepth
279 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100280 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
281 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100282
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100283 if (o->nr_files > td->files_index)
284 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100285
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100286 if (o->open_files > o->nr_files || !o->open_files)
287 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100288
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100289 if ((o->rate && o->rate_iops) || (o->ratemin && o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100290 log_err("fio: rate and rate_iops are mutually exclusive\n");
291 return 1;
292 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100293 if ((o->rate < o->ratemin) || (o->rate_iops < o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100294 log_err("fio: minimum rate exceeds rate\n");
295 return 1;
296 }
297
Jens Axboecf4464c2007-04-17 20:14:42 +0200298 if (!o->timeout && o->time_based) {
299 log_err("fio: time_based requires a runtime/timeout setting\n");
300 o->time_based = 0;
301 }
302
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100303 if (o->fill_device && !o->size)
304 o->size = ULONG_LONG_MAX;
Jens Axboe79713142008-02-06 14:40:14 +0100305
306 if (td_rw(td) && td->o.verify != VERIFY_NONE)
307 log_info("fio: mixed read/write workload with verify. May not "
308 "work as expected, unless you pre-populated the file\n");
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100309
Jens Axboe4e991c22007-03-15 11:41:11 +0100310 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200311}
312
Jens Axboe906c8d72006-06-13 09:37:56 +0200313/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100314 * This function leaks the buffer
315 */
316static char *to_kmg(unsigned int val)
317{
318 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100319 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100320 char *p = post;
321
Jens Axboe245142f2006-11-08 12:49:21 +0100322 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100323 if (val & 1023)
324 break;
325
326 val >>= 10;
327 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100328 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100329
330 snprintf(buf, 31, "%u%c", val, *p);
331 return buf;
332}
333
Jens Axboe09629a92007-03-09 09:00:06 +0100334/* External engines are specified by "external:name.o") */
335static const char *get_engine_name(const char *str)
336{
337 char *p = strstr(str, ":");
338
339 if (!p)
340 return str;
341
342 p++;
343 strip_blank_front(&p);
344 strip_blank_end(p);
345 return p;
346}
347
Jens Axboee132cba2007-03-14 14:23:54 +0100348static int exists_and_not_file(const char *filename)
349{
350 struct stat sb;
351
352 if (lstat(filename, &sb) == -1)
353 return 0;
354
355 if (S_ISREG(sb.st_mode))
356 return 0;
357
358 return 1;
359}
360
Jens Axboef8977ee2006-11-06 14:03:03 +0100361/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100362 * Initialize the various random states we need (random io, block size ranges,
363 * read/write mix, etc).
364 */
365static int init_random_state(struct thread_data *td)
366{
367 unsigned long seeds[6];
Jens Axboe68727072007-03-15 20:49:25 +0100368 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100369
370 fd = open("/dev/urandom", O_RDONLY);
371 if (fd == -1) {
372 td_verror(td, errno, "open");
373 return 1;
374 }
375
376 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
377 td_verror(td, EIO, "read");
378 close(fd);
379 return 1;
380 }
381
382 close(fd);
383
384 os_random_seed(seeds[0], &td->bsrange_state);
385 os_random_seed(seeds[1], &td->verify_state);
386 os_random_seed(seeds[2], &td->rwmix_state);
387
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100388 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100389 os_random_seed(seeds[3], &td->next_file_state);
390
391 os_random_seed(seeds[5], &td->file_size_state);
392
393 if (!td_random(td))
394 return 0;
395
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100396 if (td->o.rand_repeatable)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100397 seeds[4] = FIO_RANDSEED * td->thread_number;
398
Jens Axboe9c60ce62007-03-15 09:14:47 +0100399 os_random_seed(seeds[4], &td->random_state);
400 return 0;
401}
402
Jens Axboe9c60ce62007-03-15 09:14:47 +0100403/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200404 * Adds a job to the list of things todo. Sanitizes the various options
405 * to make sure we don't have conflicts, and initializes various
406 * members of td.
407 */
Jens Axboe75154842006-06-01 13:56:09 +0200408static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100409{
Jens Axboe413dd452007-02-23 09:26:09 +0100410 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
411 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100412 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100413 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100414 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100415 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100416
Jens Axboeebac4652005-12-08 15:25:21 +0100417 /*
418 * the def_thread is just for options, it's not a real job
419 */
420 if (td == &def_thread)
421 return 0;
422
Jens Axboecca73aa2007-04-04 11:09:19 +0200423 /*
424 * if we are just dumping the output command line, don't add the job
425 */
426 if (dump_cmdline) {
427 put_job(td);
428 return 0;
429 }
430
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100431 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100432 td->io_ops = load_ioengine(td, engine);
433 if (!td->io_ops) {
434 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100435 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100436 }
Jens Axboedf641192006-10-12 07:55:41 +0200437
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100438 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100439 nr_thread++;
440 else
441 nr_process++;
442
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100443 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100444 td->io_ops->flags |= FIO_RAWIO;
445
Jens Axboee132cba2007-03-14 14:23:54 +0100446 file_alloced = 0;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100447 if (!td->o.filename && !td->files_index) {
Jens Axboee132cba2007-03-14 14:23:54 +0100448 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100449
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100450 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100451 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100452 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100453 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboee132cba2007-03-14 14:23:54 +0100454 sprintf(fname, "%s.%d.%d", jobname, td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100455 add_file(td, fname);
456 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100457 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100458 }
Jens Axboeebac4652005-12-08 15:25:21 +0100459
Jens Axboe4e991c22007-03-15 11:41:11 +0100460 if (fixup_options(td))
461 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100462
Jens Axboe07eb79d2007-04-12 13:02:38 +0200463 if (td->io_ops->flags & FIO_DISKLESSIO) {
464 struct fio_file *f;
465
466 for_each_file(td, f, i)
467 f->real_file_size = -1ULL;
468 }
469
Jens Axboecdd18ad2008-02-27 18:58:00 +0100470 td->mutex = fio_mutex_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100471
Jens Axboe756867b2007-03-06 15:19:24 +0100472 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
473 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
474 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboe1e3d53a2007-03-22 19:01:48 +0100475 td->ddir_nr = td->o.ddir_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100476
Jens Axboeb3d62a72007-03-20 14:23:26 +0100477 if ((td->o.stonewall || td->o.numjobs > 1 || td->o.new_group)
478 && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100479 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100480 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100481 }
Jens Axboeebac4652005-12-08 15:25:21 +0100482
483 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100484 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100485
Jens Axboe9c60ce62007-03-15 09:14:47 +0100486 if (init_random_state(td))
487 goto err;
488
Jens Axboeebac4652005-12-08 15:25:21 +0100489 if (setup_rate(td))
490 goto err;
491
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100492 if (td->o.write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100493 setup_log(&td->ts.slat_log);
494 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100495 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100496 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100497 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100498
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100499 if (!td->o.name)
500 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200501
Jens Axboec6ae0a52006-06-12 11:04:44 +0200502 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200503 if (!job_add_num) {
Jens Axboeba0fbe12007-03-09 14:34:23 +0100504 if (!strcmp(td->io_ops->name, "cpuio"))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100505 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 +0100506 else {
507 char *c1, *c2, *c3, *c4;
508
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100509 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
510 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
511 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
512 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100513
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100514 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 +0100515
516 free(c1);
517 free(c2);
518 free(c3);
519 free(c4);
520 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200521 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100522 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200523 }
Jens Axboeebac4652005-12-08 15:25:21 +0100524
525 /*
526 * recurse add identical jobs, clear numjobs and stonewall options
527 * as they don't apply to sub-jobs
528 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100529 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100530 while (--numjobs) {
531 struct thread_data *td_new = get_new_job(0, td);
532
533 if (!td_new)
534 goto err;
535
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100536 td_new->o.numjobs = 1;
537 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200538 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100539
540 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100541 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100542 td_new->files_index = 0;
543 td_new->files = NULL;
544 }
545
Jens Axboe75154842006-06-01 13:56:09 +0200546 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100547
Jens Axboe75154842006-06-01 13:56:09 +0200548 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100549 goto err;
550 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100551
Jens Axboeebac4652005-12-08 15:25:21 +0100552 return 0;
553err:
554 put_job(td);
555 return -1;
556}
557
Jens Axboe01f06b62008-02-18 20:53:47 +0100558static int skip_this_section(const char *name)
559{
560 if (!job_section)
561 return 0;
562 if (!strncmp(name, "global", 6))
563 return 0;
564
565 return strncmp(job_section, name, strlen(job_section));
566}
567
Jens Axboeebac4652005-12-08 15:25:21 +0100568static int is_empty_or_comment(char *line)
569{
570 unsigned int i;
571
572 for (i = 0; i < strlen(line); i++) {
573 if (line[i] == ';')
574 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100575 if (line[i] == '#')
576 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100577 if (!isspace(line[i]) && !iscntrl(line[i]))
578 return 0;
579 }
580
581 return 1;
582}
583
Jens Axboe313cb202006-12-21 09:50:00 +0100584/*
Jens Axboe07261982006-06-07 10:51:12 +0200585 * This is our [ini] type file parser.
586 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100587static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100588{
Jens Axboee1f36502006-10-27 10:54:08 +0200589 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100590 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100591 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100592 FILE *f;
593 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200594 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200595 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +0200596 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +0100597 int inside_skip = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100598
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200599 if (!strcmp(file, "-"))
600 f = stdin;
601 else
602 f = fopen(file, "r");
603
Jens Axboeebac4652005-12-08 15:25:21 +0100604 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200605 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100606 return 1;
607 }
608
609 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200610
611 /*
612 * it's really 256 + small bit, 280 should suffice
613 */
614 name = malloc(280);
615 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100616
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200617 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100618 do {
Jens Axboeccf8f122007-09-27 10:48:55 +0200619 /*
620 * if skip_fgets is set, we already have loaded a line we
621 * haven't handled.
622 */
623 if (!skip_fgets) {
624 p = fgets(string, 4095, f);
625 if (!p)
626 break;
627 }
gurudas paicdc7f192007-03-29 10:10:56 +0200628
Jens Axboeccf8f122007-09-27 10:48:55 +0200629 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +0200630 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800631 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200632
Jens Axboeebac4652005-12-08 15:25:21 +0100633 if (is_empty_or_comment(p))
634 continue;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800635 if (sscanf(p, "[%255s]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100636 if (inside_skip)
637 continue;
Jens Axboe088b4202007-07-19 14:53:01 +0200638 log_err("fio: option <%s> outside of [] job section\n", p);
639 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800640 }
Jens Axboeebac4652005-12-08 15:25:21 +0100641
Jens Axboe01f06b62008-02-18 20:53:47 +0100642 if (skip_this_section(name)) {
643 inside_skip = 1;
644 continue;
645 } else
646 inside_skip = 0;
647
Jens Axboeebac4652005-12-08 15:25:21 +0100648 global = !strncmp(name, "global", 6);
649
650 name[strlen(name) - 1] = '\0';
651
Jens Axboecca73aa2007-04-04 11:09:19 +0200652 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200653 if (first_sect)
654 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200655 if (!global)
656 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200657 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200658 }
659
Jens Axboeebac4652005-12-08 15:25:21 +0100660 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200661 if (!td) {
662 ret = 1;
663 break;
664 }
Jens Axboeebac4652005-12-08 15:25:21 +0100665
Jens Axboe972cfd22006-06-09 11:08:56 +0200666 /*
667 * Seperate multiple job files by a stonewall
668 */
Jens Axboef9481912006-06-09 11:37:28 +0200669 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100670 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200671 stonewall = 0;
672 }
673
Jens Axboeebac4652005-12-08 15:25:21 +0100674 while ((p = fgets(string, 4096, f)) != NULL) {
675 if (is_empty_or_comment(p))
676 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200677
Jens Axboeb6754f92006-05-30 14:29:32 +0200678 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100679
Jens Axboeccf8f122007-09-27 10:48:55 +0200680 /*
681 * new section, break out and make sure we don't
682 * fgets() a new line at the top.
683 */
684 if (p[0] == '[') {
685 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100686 break;
Jens Axboeccf8f122007-09-27 10:48:55 +0200687 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100688
Jens Axboe4ae3f762006-05-30 13:35:14 +0200689 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200690
Jens Axboe45410ac2006-06-07 11:10:39 +0200691 /*
692 * Don't break here, continue parsing options so we
693 * dump all the bad ones. Makes trial/error fixups
694 * easier on the user.
695 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100696 ret |= fio_option_parse(td, p);
Jens Axboecca73aa2007-04-04 11:09:19 +0200697 if (!ret && dump_cmdline)
698 log_info("--%s ", p);
Jens Axboeebac4652005-12-08 15:25:21 +0100699 }
Jens Axboeebac4652005-12-08 15:25:21 +0100700
Jens Axboeccf8f122007-09-27 10:48:55 +0200701 if (!ret)
Jens Axboe45410ac2006-06-07 11:10:39 +0200702 ret = add_job(td, name, 0);
Jens Axboeccf8f122007-09-27 10:48:55 +0200703 else {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100704 log_err("fio: job %s dropped\n", name);
705 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200706 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100707 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100708
Jens Axboecca73aa2007-04-04 11:09:19 +0200709 if (dump_cmdline)
710 log_info("\n");
711
Jens Axboeebac4652005-12-08 15:25:21 +0100712 free(string);
713 free(name);
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200714 if (f != stdin)
715 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200716 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100717}
718
719static int fill_def_thread(void)
720{
721 memset(&def_thread, 0, sizeof(def_thread));
722
Jens Axboe375b2692007-05-22 09:13:02 +0200723 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100724
725 /*
Jens Axboeee738492007-01-10 11:23:16 +0100726 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100727 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100728 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100729
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100730 def_thread.o.timeout = def_timeout;
731 def_thread.o.write_bw_log = write_bw_log;
732 def_thread.o.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +0100733
Jens Axboeebac4652005-12-08 15:25:21 +0100734 return 0;
735}
736
Jens Axboeebac4652005-12-08 15:25:21 +0100737static void free_shm(void)
738{
739 struct shmid_ds sbuf;
740
741 if (threads) {
Jens Axboe2c0ecd22006-06-08 13:25:41 +0200742 shmdt((void *) threads);
Jens Axboeebac4652005-12-08 15:25:21 +0100743 threads = NULL;
744 shmctl(shm_id, IPC_RMID, &sbuf);
745 }
Jens Axboe2e5cdb12008-03-01 18:52:49 +0100746
747 scleanup();
Jens Axboeebac4652005-12-08 15:25:21 +0100748}
749
Jens Axboe906c8d72006-06-13 09:37:56 +0200750/*
751 * The thread area is shared between the main process and the job
752 * threads/processes. So setup a shared memory segment that will hold
753 * all the job info.
754 */
Jens Axboeebac4652005-12-08 15:25:21 +0100755static int setup_thread_area(void)
756{
757 /*
758 * 1024 is too much on some machines, scale max_jobs if
759 * we get a failure that looks like too large a shm segment
760 */
761 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200762 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100763
Jens Axboe906c8d72006-06-13 09:37:56 +0200764 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100765 if (shm_id != -1)
766 break;
767 if (errno != EINVAL) {
768 perror("shmget");
769 break;
770 }
771
772 max_jobs >>= 1;
773 } while (max_jobs);
774
775 if (shm_id == -1)
776 return 1;
777
778 threads = shmat(shm_id, NULL, 0);
779 if (threads == (void *) -1) {
780 perror("shmat");
781 return 1;
782 }
783
Jens Axboe1f809d12007-10-25 18:34:02 +0200784 memset(threads, 0, max_jobs * sizeof(struct thread_data));
Jens Axboeebac4652005-12-08 15:25:21 +0100785 atexit(free_shm);
786 return 0;
787}
788
Jens Axboe45378b32007-12-19 13:54:38 +0100789static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +0200790{
Jens Axboe214e1ec2007-03-15 10:48:13 +0100791 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +0100792 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboeee56ad52008-02-01 10:30:20 +0100793 printf("\t--debug=options\tEnable debug logging\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100794 printf("\t--output\tWrite output to file\n");
795 printf("\t--timeout\tRuntime in seconds\n");
796 printf("\t--latency-log\tGenerate per-job latency logs\n");
797 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
798 printf("\t--minimal\tMinimal (terse) output\n");
799 printf("\t--version\tPrint version info and exit\n");
800 printf("\t--help\t\tPrint this page\n");
801 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +0200802 printf("\t--showcmd\tTurn a job file into command line options\n");
Aaron Carrolle592a062007-09-14 09:49:41 +0200803 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
804 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboe062c6022008-02-18 20:15:03 +0100805 printf("\t--readonly\tTurn on safety read-only checks, preventing writes\n");
Jens Axboe01f06b62008-02-18 20:53:47 +0100806 printf("\t--section=name\tOnly run specified section in job file\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200807}
808
Jens Axboe79e48f72008-02-01 20:37:09 +0100809#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +0100810struct debug_level debug_levels[] = {
Jens Axboebd6f78b2008-02-01 20:27:52 +0100811 { .name = "process", .shift = FD_PROCESS, },
812 { .name = "file", .shift = FD_FILE, },
813 { .name = "io", .shift = FD_IO, },
814 { .name = "mem", .shift = FD_MEM, },
815 { .name = "blktrace", .shift = FD_BLKTRACE },
816 { .name = "verify", .shift = FD_VERIFY },
Jens Axboe84422ac2008-02-19 20:10:26 +0100817 { .name = "random", .shift = FD_RANDOM },
Jens Axboea3d741f2008-02-27 18:32:33 +0100818 { .name = "parse", .shift = FD_PARSE },
Jens Axboeee56ad52008-02-01 10:30:20 +0100819 { },
820};
821
Jens Axboec09823a2008-02-19 20:16:57 +0100822static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +0100823{
824 struct debug_level *dl;
825 char *p = (char *) string;
826 char *opt;
827 int i;
828
829 if (!strcmp(string, "?") || !strcmp(string, "help")) {
830 int i;
831
832 log_info("fio: dumping debug options:");
833 for (i = 0; debug_levels[i].name; i++) {
834 dl = &debug_levels[i];
835 log_info("%s,", dl->name);
836 }
Jens Axboebd6f78b2008-02-01 20:27:52 +0100837 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +0100838 return 1;
Jens Axboebd6f78b2008-02-01 20:27:52 +0100839 } else if (!strcmp(string, "all")) {
840 fio_debug = ~0UL;
Jens Axboec09823a2008-02-19 20:16:57 +0100841 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +0100842 }
843
844 while ((opt = strsep(&p, ",")) != NULL) {
845 int found = 0;
846
847 for (i = 0; debug_levels[i].name; i++) {
848 dl = &debug_levels[i];
849 if (!strncmp(opt, dl->name, strlen(opt))) {
850 log_info("fio: set debug option %s\n", opt);
851 found = 1;
Jens Axboebd6f78b2008-02-01 20:27:52 +0100852 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +0100853 break;
854 }
855 }
856
857 if (!found)
858 log_err("fio: debug mask %s not found\n", opt);
859 }
Jens Axboec09823a2008-02-19 20:16:57 +0100860 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +0100861}
Jens Axboe79e48f72008-02-01 20:37:09 +0100862#else
863static void set_debug(const char *string)
864{
865 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +0100866 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +0100867}
868#endif
Jens Axboeee56ad52008-02-01 10:30:20 +0100869
Jens Axboe214e1ec2007-03-15 10:48:13 +0100870static int parse_cmd_line(int argc, char *argv[])
871{
872 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +0100873 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100874
875 while ((c = getopt_long_only(argc, argv, "", long_options, &lidx)) != -1) {
876 switch (c) {
877 case 't':
878 def_timeout = atoi(optarg);
879 break;
880 case 'l':
881 write_lat_log = 1;
882 break;
883 case 'w':
884 write_bw_log = 1;
885 break;
886 case 'o':
887 f_out = fopen(optarg, "w+");
888 if (!f_out) {
889 perror("fopen output");
890 exit(1);
891 }
892 f_err = f_out;
893 break;
894 case 'm':
895 terse_output = 1;
896 break;
897 case 'h':
Jens Axboe45378b32007-12-19 13:54:38 +0100898 usage(argv[0]);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100899 exit(0);
900 case 'c':
901 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +0200902 case 's':
903 dump_cmdline = 1;
904 break;
Jens Axboe724e4432007-09-11 20:02:05 +0200905 case 'r':
906 read_only = 1;
907 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100908 case 'v':
909 printf("%s\n", fio_version_string);
910 exit(0);
Aaron Carrolle592a062007-09-14 09:49:41 +0200911 case 'e':
912 if (!strcmp("always", optarg))
913 eta_print = FIO_ETA_ALWAYS;
914 else if (!strcmp("never", optarg))
915 eta_print = FIO_ETA_NEVER;
916 break;
Jens Axboeee56ad52008-02-01 10:30:20 +0100917 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +0100918 if (set_debug(optarg))
919 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +0100920 break;
Jens Axboe01f06b62008-02-18 20:53:47 +0100921 case 'x':
922 if (!strcmp(optarg, "global")) {
923 log_err("fio: can't use global as only section\n");
Jens Axboec09823a2008-02-19 20:16:57 +0100924 do_exit++;
925 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +0100926 break;
927 }
928 if (job_section)
929 free(job_section);
930 job_section = strdup(optarg);
931 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100932 case FIO_GETOPT_JOB: {
933 const char *opt = long_options[lidx].name;
934 char *val = optarg;
935
936 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100937 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100938 if (ret) {
939 put_job(td);
940 return 0;
941 }
942 td = NULL;
943 }
944 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100945 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +0200946 int global = 0;
947
Jens Axboe01f06b62008-02-18 20:53:47 +0100948 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +0200949 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100950
Jens Axboe01f06b62008-02-18 20:53:47 +0100951 if (is_section && skip_this_section(val))
952 continue;
953
Jens Axboe214e1ec2007-03-15 10:48:13 +0100954 td = get_new_job(global, &def_thread);
955 if (!td)
956 return 0;
957 }
958
959 ret = fio_cmd_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100960 break;
961 }
962 default:
Jens Axboec09823a2008-02-19 20:16:57 +0100963 do_exit++;
964 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100965 break;
966 }
967 }
968
Jens Axboec09823a2008-02-19 20:16:57 +0100969 if (do_exit)
970 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +0100971
Jens Axboe214e1ec2007-03-15 10:48:13 +0100972 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +0100973 if (!ret)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100974 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe7d6a8902008-02-18 20:59:18 +0100975 if (ret)
976 put_job(td);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100977 }
978
979 while (optind < argc) {
980 ini_idx++;
981 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
982 ini_file[ini_idx - 1] = strdup(argv[optind]);
983 optind++;
984 }
985
986 return ini_idx;
987}
988
Jens Axboeebac4652005-12-08 15:25:21 +0100989int parse_options(int argc, char *argv[])
990{
Jens Axboe972cfd22006-06-09 11:08:56 +0200991 int job_files, i;
992
Jens Axboeb4692822006-10-27 13:43:22 +0200993 f_out = stdout;
994 f_err = stderr;
995
Jens Axboe214e1ec2007-03-15 10:48:13 +0100996 fio_options_dup_and_init(long_options);
Jens Axboeb4692822006-10-27 13:43:22 +0200997
Jens Axboeebac4652005-12-08 15:25:21 +0100998 if (setup_thread_area())
999 return 1;
1000 if (fill_def_thread())
1001 return 1;
1002
Jens Axboe972cfd22006-06-09 11:08:56 +02001003 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001004
Jens Axboe972cfd22006-06-09 11:08:56 +02001005 for (i = 0; i < job_files; i++) {
1006 if (fill_def_thread())
1007 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001008 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001009 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001010 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001011 }
Jens Axboeebac4652005-12-08 15:25:21 +01001012
Jens Axboe88c6ed82006-06-09 11:28:10 +02001013 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +01001014 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001015
1016 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001017 if (dump_cmdline)
1018 return 0;
1019
Jens Axboeb4692822006-10-27 13:43:22 +02001020 log_err("No jobs defined(s)\n");
Jens Axboe45378b32007-12-19 13:54:38 +01001021 usage(argv[0]);
Jens Axboeb4692822006-10-27 13:43:22 +02001022 return 1;
1023 }
1024
Jens Axboeebac4652005-12-08 15:25:21 +01001025 return 0;
1026}