blob: a2aba3338c38a7c68477988d7a5b93cf2bdb8581 [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 Axboe380065a2008-03-01 18:56:24 +010020#include "filehash.h"
Jens Axboeebac4652005-12-08 15:25:21 +010021
Jens Axboe4aae5152008-03-06 15:47:03 +010022static char fio_version_string[] = "fio 1.20-rc2";
Jens Axboe214e1ec2007-03-15 10:48:13 +010023
Jens Axboeee738492007-01-10 11:23:16 +010024#define FIO_RANDSEED (0xb1899bedUL)
Jens Axboeebac4652005-12-08 15:25:21 +010025
Jens Axboe214e1ec2007-03-15 10:48:13 +010026static char **ini_file;
27static int max_jobs = MAX_JOBS;
Jens Axboecca73aa2007-04-04 11:09:19 +020028static int dump_cmdline;
Jens Axboee1f36502006-10-27 10:54:08 +020029
Jens Axboe214e1ec2007-03-15 10:48:13 +010030struct thread_data def_thread;
31struct thread_data *threads = NULL;
Jens Axboee1f36502006-10-27 10:54:08 +020032
Jens Axboe214e1ec2007-03-15 10:48:13 +010033int exitall_on_terminate = 0;
34int terse_output = 0;
Aaron Carrolle592a062007-09-14 09:49:41 +020035int eta_print;
Jens Axboe214e1ec2007-03-15 10:48:13 +010036unsigned long long mlock_size = 0;
37FILE *f_out = NULL;
38FILE *f_err = NULL;
Jens Axboe01f06b62008-02-18 20:53:47 +010039char *job_section = NULL;
Jens Axboeee738492007-01-10 11:23:16 +010040
Jens Axboe214e1ec2007-03-15 10:48:13 +010041int write_bw_log = 0;
Jens Axboe4241ea82007-09-12 08:18:36 +020042int read_only = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020043
Jens Axboe5ec10ea2008-03-06 15:42:00 +010044static int def_timeout;
45static int write_lat_log;
Jens Axboe214e1ec2007-03-15 10:48:13 +010046
47static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020048
Jens Axboeee56ad52008-02-01 10:30:20 +010049unsigned long fio_debug = 0;
50
Jens Axboeb4692822006-10-27 13:43:22 +020051/*
52 * Command line options. These will contain the above, plus a few
53 * extra that only pertain to fio itself and not jobs.
54 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +010055static struct option l_opts[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020056 {
57 .name = "output",
58 .has_arg = required_argument,
59 .val = 'o',
60 },
61 {
62 .name = "timeout",
63 .has_arg = required_argument,
64 .val = 't',
65 },
66 {
67 .name = "latency-log",
68 .has_arg = required_argument,
69 .val = 'l',
70 },
71 {
72 .name = "bandwidth-log",
73 .has_arg = required_argument,
74 .val = 'b',
75 },
76 {
77 .name = "minimal",
78 .has_arg = optional_argument,
79 .val = 'm',
80 },
81 {
82 .name = "version",
83 .has_arg = no_argument,
84 .val = 'v',
85 },
86 {
Jens Axboefd28ca42007-01-09 21:20:13 +010087 .name = "help",
88 .has_arg = no_argument,
89 .val = 'h',
90 },
91 {
92 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +010093 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +010094 .val = 'c',
95 },
96 {
Jens Axboecca73aa2007-04-04 11:09:19 +020097 .name = "showcmd",
98 .has_arg = no_argument,
Jens Axboe724e4432007-09-11 20:02:05 +020099 .val = 's',
100 },
101 {
102 .name = "readonly",
103 .has_arg = no_argument,
104 .val = 'r',
Jens Axboecca73aa2007-04-04 11:09:19 +0200105 },
106 {
Aaron Carrolle592a062007-09-14 09:49:41 +0200107 .name = "eta",
108 .has_arg = required_argument,
109 .val = 'e',
110 },
111 {
Jens Axboeee56ad52008-02-01 10:30:20 +0100112 .name = "debug",
113 .has_arg = required_argument,
114 .val = 'd',
115 },
116 {
Jens Axboe01f06b62008-02-18 20:53:47 +0100117 .name = "section",
118 .has_arg = required_argument,
119 .val = 'x',
120 },
121 {
Jens Axboeb4692822006-10-27 13:43:22 +0200122 .name = NULL,
123 },
124};
125
Joel Becker9728ce32007-03-01 08:24:39 +0100126FILE *get_f_out()
127{
128 return f_out;
129}
130
131FILE *get_f_err()
132{
133 return f_err;
134}
135
Jens Axboe906c8d72006-06-13 09:37:56 +0200136/*
137 * Return a free job structure.
138 */
Jens Axboeebac4652005-12-08 15:25:21 +0100139static struct thread_data *get_new_job(int global, struct thread_data *parent)
140{
141 struct thread_data *td;
142
143 if (global)
144 return &def_thread;
145 if (thread_number >= max_jobs)
146 return NULL;
147
148 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200149 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100150
Jens Axboecade3ef2007-03-23 15:29:45 +0100151 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100152 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100153
Jens Axboeebac4652005-12-08 15:25:21 +0100154 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100155 return td;
156}
157
158static void put_job(struct thread_data *td)
159{
Jens Axboe549577a2006-10-30 12:23:41 +0100160 if (td == &def_thread)
161 return;
162
Jens Axboe16edf252007-02-10 14:59:22 +0100163 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100164 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100165
Jens Axboeebac4652005-12-08 15:25:21 +0100166 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
167 thread_number--;
168}
169
Jens Axboe127f6862007-03-15 12:09:57 +0100170static int setup_rate(struct thread_data *td)
171{
172 unsigned long nr_reads_per_msec;
173 unsigned long long rate;
174 unsigned int bs;
175
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100176 if (!td->o.rate && !td->o.rate_iops)
Jens Axboe127f6862007-03-15 12:09:57 +0100177 return 0;
178
179 if (td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100180 bs = td->o.rw_min_bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100181 else if (td_read(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100182 bs = td->o.min_bs[DDIR_READ];
Jens Axboe127f6862007-03-15 12:09:57 +0100183 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100184 bs = td->o.min_bs[DDIR_WRITE];
Jens Axboe127f6862007-03-15 12:09:57 +0100185
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100186 if (td->o.rate) {
187 rate = td->o.rate;
Jens Axboe127f6862007-03-15 12:09:57 +0100188 nr_reads_per_msec = (rate * 1024 * 1000LL) / bs;
189 } else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100190 nr_reads_per_msec = td->o.rate_iops * 1000UL;
Jens Axboe127f6862007-03-15 12:09:57 +0100191
192 if (!nr_reads_per_msec) {
193 log_err("rate lower than supported\n");
194 return -1;
195 }
196
197 td->rate_usec_cycle = 1000000000ULL / nr_reads_per_msec;
198 td->rate_pending_usleep = 0;
199 return 0;
200}
201
Jens Axboedad915e2006-10-27 11:10:18 +0200202/*
203 * Lazy way of fixing up options that depend on each other. We could also
204 * define option callback handlers, but this is easier.
205 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100206static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200207{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100208 struct thread_options *o = &td->o;
Jens Axboedad915e2006-10-27 11:10:18 +0200209
Jens Axboe724e4432007-09-11 20:02:05 +0200210 if (read_only && td_write(td)) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100211 log_err("fio: job <%s> has write bit set, but fio is in"
212 " read-only mode\n", td->o.name);
Jens Axboe724e4432007-09-11 20:02:05 +0200213 return 1;
214 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100215
Jens Axboee47f7992007-03-21 14:05:39 +0100216 if (o->rwmix[DDIR_READ] + o->rwmix[DDIR_WRITE] > 100)
217 o->rwmix[DDIR_WRITE] = 100 - o->rwmix[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100218
219 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200220 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100221 free(o->write_iolog_file);
222 o->write_iolog_file = NULL;
Jens Axboe076efc72006-10-27 11:24:25 +0200223 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100224
Jens Axboe16b462a2006-10-30 12:35:18 +0100225 /*
226 * only really works for sequential io for now, and with 1 file
227 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100228 if (o->zone_size && td_random(td) && o->open_files == 1)
229 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100230
231 /*
232 * Reads can do overwrites, we always need to pre-create the file
233 */
234 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100235 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100236
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100237 if (!o->min_bs[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100238 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100239 if (!o->max_bs[DDIR_READ])
240 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
241 if (!o->min_bs[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100242 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100243 if (!o->max_bs[DDIR_WRITE])
244 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100245
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100246 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100247
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100248 if (!o->file_size_high)
249 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100250
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100251 if (o->norandommap && o->verify != VERIFY_NONE) {
Jens Axboebb8895e2006-10-30 15:14:48 +0100252 log_err("fio: norandommap given, verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100253 o->verify = VERIFY_NONE;
Jens Axboebb8895e2006-10-30 15:14:48 +0100254 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100255 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100256 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100257
258 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100259 * thinktime_spin must be less than thinktime
260 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100261 if (o->thinktime_spin > o->thinktime)
262 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100263
264 /*
265 * The low water mark cannot be bigger than the iodepth
266 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100267 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100268 /*
269 * syslet work around - if the workload is sequential,
270 * we want to let the queue drain all the way down to
271 * avoid seeking between async threads
272 */
273 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100274 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100275 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100276 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100277 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100278
279 /*
280 * If batch number isn't set, default to the same as iodepth
281 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100282 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
283 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100284
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100285 if (o->nr_files > td->files_index)
286 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100287
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100288 if (o->open_files > o->nr_files || !o->open_files)
289 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100290
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100291 if ((o->rate && o->rate_iops) || (o->ratemin && o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100292 log_err("fio: rate and rate_iops are mutually exclusive\n");
293 return 1;
294 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100295 if ((o->rate < o->ratemin) || (o->rate_iops < o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100296 log_err("fio: minimum rate exceeds rate\n");
297 return 1;
298 }
299
Jens Axboecf4464c2007-04-17 20:14:42 +0200300 if (!o->timeout && o->time_based) {
301 log_err("fio: time_based requires a runtime/timeout setting\n");
302 o->time_based = 0;
303 }
304
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100305 if (o->fill_device && !o->size)
306 o->size = ULONG_LONG_MAX;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100307
Jens Axboe79713142008-02-06 14:40:14 +0100308 if (td_rw(td) && td->o.verify != VERIFY_NONE)
309 log_info("fio: mixed read/write workload with verify. May not "
310 "work as expected, unless you pre-populated the file\n");
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100311
Jens Axboe4e991c22007-03-15 11:41:11 +0100312 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200313}
314
Jens Axboe906c8d72006-06-13 09:37:56 +0200315/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100316 * This function leaks the buffer
317 */
318static char *to_kmg(unsigned int val)
319{
320 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100321 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100322 char *p = post;
323
Jens Axboe245142f2006-11-08 12:49:21 +0100324 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100325 if (val & 1023)
326 break;
327
328 val >>= 10;
329 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100330 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100331
332 snprintf(buf, 31, "%u%c", val, *p);
333 return buf;
334}
335
Jens Axboe09629a92007-03-09 09:00:06 +0100336/* External engines are specified by "external:name.o") */
337static const char *get_engine_name(const char *str)
338{
339 char *p = strstr(str, ":");
340
341 if (!p)
342 return str;
343
344 p++;
345 strip_blank_front(&p);
346 strip_blank_end(p);
347 return p;
348}
349
Jens Axboee132cba2007-03-14 14:23:54 +0100350static int exists_and_not_file(const char *filename)
351{
352 struct stat sb;
353
354 if (lstat(filename, &sb) == -1)
355 return 0;
356
357 if (S_ISREG(sb.st_mode))
358 return 0;
359
360 return 1;
361}
362
Jens Axboef8977ee2006-11-06 14:03:03 +0100363/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100364 * Initialize the various random states we need (random io, block size ranges,
365 * read/write mix, etc).
366 */
367static int init_random_state(struct thread_data *td)
368{
369 unsigned long seeds[6];
Jens Axboe68727072007-03-15 20:49:25 +0100370 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100371
372 fd = open("/dev/urandom", O_RDONLY);
373 if (fd == -1) {
374 td_verror(td, errno, "open");
375 return 1;
376 }
377
378 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
379 td_verror(td, EIO, "read");
380 close(fd);
381 return 1;
382 }
383
384 close(fd);
385
386 os_random_seed(seeds[0], &td->bsrange_state);
387 os_random_seed(seeds[1], &td->verify_state);
388 os_random_seed(seeds[2], &td->rwmix_state);
389
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100390 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100391 os_random_seed(seeds[3], &td->next_file_state);
392
393 os_random_seed(seeds[5], &td->file_size_state);
394
395 if (!td_random(td))
396 return 0;
397
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100398 if (td->o.rand_repeatable)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100399 seeds[4] = FIO_RANDSEED * td->thread_number;
400
Jens Axboe9c60ce62007-03-15 09:14:47 +0100401 os_random_seed(seeds[4], &td->random_state);
402 return 0;
403}
404
Jens Axboe9c60ce62007-03-15 09:14:47 +0100405/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200406 * Adds a job to the list of things todo. Sanitizes the various options
407 * to make sure we don't have conflicts, and initializes various
408 * members of td.
409 */
Jens Axboe75154842006-06-01 13:56:09 +0200410static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100411{
Jens Axboe413dd452007-02-23 09:26:09 +0100412 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
413 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100414 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100415 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100416 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100417 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100418
Jens Axboeebac4652005-12-08 15:25:21 +0100419 /*
420 * the def_thread is just for options, it's not a real job
421 */
422 if (td == &def_thread)
423 return 0;
424
Jens Axboecca73aa2007-04-04 11:09:19 +0200425 /*
426 * if we are just dumping the output command line, don't add the job
427 */
428 if (dump_cmdline) {
429 put_job(td);
430 return 0;
431 }
432
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100433 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100434 td->io_ops = load_ioengine(td, engine);
435 if (!td->io_ops) {
436 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100437 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100438 }
Jens Axboedf641192006-10-12 07:55:41 +0200439
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100440 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100441 nr_thread++;
442 else
443 nr_process++;
444
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100445 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100446 td->io_ops->flags |= FIO_RAWIO;
447
Jens Axboee132cba2007-03-14 14:23:54 +0100448 file_alloced = 0;
Jens Axboe691c8fb2008-03-07 14:26:26 +0100449 if (!td->o.filename && !td->files_index && !td->o.read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +0100450 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100451
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100452 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100453 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100454 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100455 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100456 sprintf(fname, "%s.%d.%d", jobname,
457 td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100458 add_file(td, fname);
459 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100460 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100461 }
Jens Axboeebac4652005-12-08 15:25:21 +0100462
Jens Axboe4e991c22007-03-15 11:41:11 +0100463 if (fixup_options(td))
464 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100465
Jens Axboe07eb79d2007-04-12 13:02:38 +0200466 if (td->io_ops->flags & FIO_DISKLESSIO) {
467 struct fio_file *f;
468
469 for_each_file(td, f, i)
470 f->real_file_size = -1ULL;
471 }
472
Jens Axboecdd18ad2008-02-27 18:58:00 +0100473 td->mutex = fio_mutex_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100474
Jens Axboe756867b2007-03-06 15:19:24 +0100475 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
476 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
477 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboe1e3d53a2007-03-22 19:01:48 +0100478 td->ddir_nr = td->o.ddir_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100479
Jens Axboeb3d62a72007-03-20 14:23:26 +0100480 if ((td->o.stonewall || td->o.numjobs > 1 || td->o.new_group)
481 && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100482 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100483 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100484 }
Jens Axboeebac4652005-12-08 15:25:21 +0100485
486 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100487 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100488
Jens Axboe9c60ce62007-03-15 09:14:47 +0100489 if (init_random_state(td))
490 goto err;
491
Jens Axboeebac4652005-12-08 15:25:21 +0100492 if (setup_rate(td))
493 goto err;
494
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100495 if (td->o.write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100496 setup_log(&td->ts.slat_log);
497 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100498 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100499 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100500 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100501
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100502 if (!td->o.name)
503 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200504
Jens Axboec6ae0a52006-06-12 11:04:44 +0200505 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200506 if (!job_add_num) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100507 if (!strcmp(td->io_ops->name, "cpuio")) {
508 log_info("%s: ioengine=cpu, cpuload=%u,"
509 " cpucycle=%u\n", td->o.name,
510 td->o.cpuload,
511 td->o.cpucycle);
512 } else {
Jens Axboef8977ee2006-11-06 14:03:03 +0100513 char *c1, *c2, *c3, *c4;
514
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100515 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
516 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
517 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
518 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100519
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100520 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s,"
521 " ioengine=%s, iodepth=%u\n",
522 td->o.name, td->groupid,
523 ddir_str[td->o.td_ddir],
524 c1, c2, c3, c4,
525 td->io_ops->name,
526 td->o.iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100527
528 free(c1);
529 free(c2);
530 free(c3);
531 free(c4);
532 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200533 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100534 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200535 }
Jens Axboeebac4652005-12-08 15:25:21 +0100536
537 /*
538 * recurse add identical jobs, clear numjobs and stonewall options
539 * as they don't apply to sub-jobs
540 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100541 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100542 while (--numjobs) {
543 struct thread_data *td_new = get_new_job(0, td);
544
545 if (!td_new)
546 goto err;
547
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100548 td_new->o.numjobs = 1;
549 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200550 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100551
552 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100553 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100554 td_new->files_index = 0;
555 td_new->files = NULL;
556 }
557
Jens Axboe75154842006-06-01 13:56:09 +0200558 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100559
Jens Axboe75154842006-06-01 13:56:09 +0200560 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100561 goto err;
562 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100563
Jens Axboeebac4652005-12-08 15:25:21 +0100564 return 0;
565err:
566 put_job(td);
567 return -1;
568}
569
Jens Axboe01f06b62008-02-18 20:53:47 +0100570static int skip_this_section(const char *name)
571{
572 if (!job_section)
573 return 0;
574 if (!strncmp(name, "global", 6))
575 return 0;
576
577 return strncmp(job_section, name, strlen(job_section));
578}
579
Jens Axboeebac4652005-12-08 15:25:21 +0100580static int is_empty_or_comment(char *line)
581{
582 unsigned int i;
583
584 for (i = 0; i < strlen(line); i++) {
585 if (line[i] == ';')
586 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100587 if (line[i] == '#')
588 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100589 if (!isspace(line[i]) && !iscntrl(line[i]))
590 return 0;
591 }
592
593 return 1;
594}
595
Jens Axboe313cb202006-12-21 09:50:00 +0100596/*
Jens Axboe07261982006-06-07 10:51:12 +0200597 * This is our [ini] type file parser.
598 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100599static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100600{
Jens Axboee1f36502006-10-27 10:54:08 +0200601 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100602 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100603 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100604 FILE *f;
605 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200606 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200607 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +0200608 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +0100609 int inside_skip = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100610
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200611 if (!strcmp(file, "-"))
612 f = stdin;
613 else
614 f = fopen(file, "r");
615
Jens Axboeebac4652005-12-08 15:25:21 +0100616 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200617 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100618 return 1;
619 }
620
621 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200622
623 /*
624 * it's really 256 + small bit, 280 should suffice
625 */
626 name = malloc(280);
627 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100628
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200629 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100630 do {
Jens Axboeccf8f122007-09-27 10:48:55 +0200631 /*
632 * if skip_fgets is set, we already have loaded a line we
633 * haven't handled.
634 */
635 if (!skip_fgets) {
636 p = fgets(string, 4095, f);
637 if (!p)
638 break;
639 }
gurudas paicdc7f192007-03-29 10:10:56 +0200640
Jens Axboeccf8f122007-09-27 10:48:55 +0200641 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +0200642 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800643 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200644
Jens Axboeebac4652005-12-08 15:25:21 +0100645 if (is_empty_or_comment(p))
646 continue;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800647 if (sscanf(p, "[%255s]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100648 if (inside_skip)
649 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100650 log_err("fio: option <%s> outside of [] job section\n",
651 p);
Jens Axboe088b4202007-07-19 14:53:01 +0200652 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800653 }
Jens Axboeebac4652005-12-08 15:25:21 +0100654
Jens Axboe01f06b62008-02-18 20:53:47 +0100655 if (skip_this_section(name)) {
656 inside_skip = 1;
657 continue;
658 } else
659 inside_skip = 0;
660
Jens Axboeebac4652005-12-08 15:25:21 +0100661 global = !strncmp(name, "global", 6);
662
663 name[strlen(name) - 1] = '\0';
664
Jens Axboecca73aa2007-04-04 11:09:19 +0200665 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200666 if (first_sect)
667 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200668 if (!global)
669 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200670 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200671 }
672
Jens Axboeebac4652005-12-08 15:25:21 +0100673 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200674 if (!td) {
675 ret = 1;
676 break;
677 }
Jens Axboeebac4652005-12-08 15:25:21 +0100678
Jens Axboe972cfd22006-06-09 11:08:56 +0200679 /*
680 * Seperate multiple job files by a stonewall
681 */
Jens Axboef9481912006-06-09 11:37:28 +0200682 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100683 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200684 stonewall = 0;
685 }
686
Jens Axboeebac4652005-12-08 15:25:21 +0100687 while ((p = fgets(string, 4096, f)) != NULL) {
688 if (is_empty_or_comment(p))
689 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200690
Jens Axboeb6754f92006-05-30 14:29:32 +0200691 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100692
Jens Axboeccf8f122007-09-27 10:48:55 +0200693 /*
694 * new section, break out and make sure we don't
695 * fgets() a new line at the top.
696 */
697 if (p[0] == '[') {
698 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100699 break;
Jens Axboeccf8f122007-09-27 10:48:55 +0200700 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100701
Jens Axboe4ae3f762006-05-30 13:35:14 +0200702 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200703
Jens Axboe45410ac2006-06-07 11:10:39 +0200704 /*
705 * Don't break here, continue parsing options so we
706 * dump all the bad ones. Makes trial/error fixups
707 * easier on the user.
708 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100709 ret |= fio_option_parse(td, p);
Jens Axboecca73aa2007-04-04 11:09:19 +0200710 if (!ret && dump_cmdline)
711 log_info("--%s ", p);
Jens Axboeebac4652005-12-08 15:25:21 +0100712 }
Jens Axboeebac4652005-12-08 15:25:21 +0100713
Jens Axboeccf8f122007-09-27 10:48:55 +0200714 if (!ret)
Jens Axboe45410ac2006-06-07 11:10:39 +0200715 ret = add_job(td, name, 0);
Jens Axboeccf8f122007-09-27 10:48:55 +0200716 else {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100717 log_err("fio: job %s dropped\n", name);
718 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200719 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100720 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100721
Jens Axboecca73aa2007-04-04 11:09:19 +0200722 if (dump_cmdline)
723 log_info("\n");
724
Jens Axboeebac4652005-12-08 15:25:21 +0100725 free(string);
726 free(name);
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200727 if (f != stdin)
728 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200729 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100730}
731
732static int fill_def_thread(void)
733{
734 memset(&def_thread, 0, sizeof(def_thread));
735
Jens Axboe375b2692007-05-22 09:13:02 +0200736 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100737
738 /*
Jens Axboeee738492007-01-10 11:23:16 +0100739 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100740 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100741 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100742
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100743 def_thread.o.timeout = def_timeout;
744 def_thread.o.write_bw_log = write_bw_log;
745 def_thread.o.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +0100746
Jens Axboeebac4652005-12-08 15:25:21 +0100747 return 0;
748}
749
Jens Axboeebac4652005-12-08 15:25:21 +0100750static void free_shm(void)
751{
752 struct shmid_ds sbuf;
753
754 if (threads) {
Jens Axboe2c0ecd22006-06-08 13:25:41 +0200755 shmdt((void *) threads);
Jens Axboeebac4652005-12-08 15:25:21 +0100756 threads = NULL;
757 shmctl(shm_id, IPC_RMID, &sbuf);
758 }
Jens Axboe2e5cdb12008-03-01 18:52:49 +0100759
760 scleanup();
Jens Axboeebac4652005-12-08 15:25:21 +0100761}
762
Jens Axboe906c8d72006-06-13 09:37:56 +0200763/*
764 * The thread area is shared between the main process and the job
765 * threads/processes. So setup a shared memory segment that will hold
Jens Axboe380065a2008-03-01 18:56:24 +0100766 * all the job info. We use the end of the region for keeping track of
767 * open files across jobs, for file sharing.
Jens Axboe906c8d72006-06-13 09:37:56 +0200768 */
Jens Axboeebac4652005-12-08 15:25:21 +0100769static int setup_thread_area(void)
770{
Jens Axboe380065a2008-03-01 18:56:24 +0100771 void *hash;
772
Jens Axboeebac4652005-12-08 15:25:21 +0100773 /*
774 * 1024 is too much on some machines, scale max_jobs if
775 * we get a failure that looks like too large a shm segment
776 */
777 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200778 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100779
Jens Axboe380065a2008-03-01 18:56:24 +0100780 size += file_hash_size;
781
Jens Axboe906c8d72006-06-13 09:37:56 +0200782 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100783 if (shm_id != -1)
784 break;
785 if (errno != EINVAL) {
786 perror("shmget");
787 break;
788 }
789
790 max_jobs >>= 1;
791 } while (max_jobs);
792
793 if (shm_id == -1)
794 return 1;
795
796 threads = shmat(shm_id, NULL, 0);
797 if (threads == (void *) -1) {
798 perror("shmat");
799 return 1;
800 }
801
Jens Axboe1f809d12007-10-25 18:34:02 +0200802 memset(threads, 0, max_jobs * sizeof(struct thread_data));
Jens Axboe380065a2008-03-01 18:56:24 +0100803 hash = (void *) threads + max_jobs * sizeof(struct thread_data);
804 file_hash_init(hash);
Jens Axboeebac4652005-12-08 15:25:21 +0100805 atexit(free_shm);
806 return 0;
807}
808
Jens Axboe45378b32007-12-19 13:54:38 +0100809static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +0200810{
Jens Axboe214e1ec2007-03-15 10:48:13 +0100811 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +0100812 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboeee56ad52008-02-01 10:30:20 +0100813 printf("\t--debug=options\tEnable debug logging\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100814 printf("\t--output\tWrite output to file\n");
815 printf("\t--timeout\tRuntime in seconds\n");
816 printf("\t--latency-log\tGenerate per-job latency logs\n");
817 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
818 printf("\t--minimal\tMinimal (terse) output\n");
819 printf("\t--version\tPrint version info and exit\n");
820 printf("\t--help\t\tPrint this page\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100821 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of"
822 " them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +0200823 printf("\t--showcmd\tTurn a job file into command line options\n");
Aaron Carrolle592a062007-09-14 09:49:41 +0200824 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
825 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100826 printf("\t--readonly\tTurn on safety read-only checks, preventing"
827 " writes\n");
Jens Axboe01f06b62008-02-18 20:53:47 +0100828 printf("\t--section=name\tOnly run specified section in job file\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200829}
830
Jens Axboe79e48f72008-02-01 20:37:09 +0100831#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +0100832struct debug_level debug_levels[] = {
Jens Axboebd6f78b2008-02-01 20:27:52 +0100833 { .name = "process", .shift = FD_PROCESS, },
834 { .name = "file", .shift = FD_FILE, },
835 { .name = "io", .shift = FD_IO, },
836 { .name = "mem", .shift = FD_MEM, },
837 { .name = "blktrace", .shift = FD_BLKTRACE },
838 { .name = "verify", .shift = FD_VERIFY },
Jens Axboe84422ac2008-02-19 20:10:26 +0100839 { .name = "random", .shift = FD_RANDOM },
Jens Axboea3d741f2008-02-27 18:32:33 +0100840 { .name = "parse", .shift = FD_PARSE },
Jens Axboecd991b92008-03-07 13:19:35 +0100841 { .name = "diskutil", .shift = FD_DISKUTIL },
Jens Axboeee56ad52008-02-01 10:30:20 +0100842 { },
843};
844
Jens Axboec09823a2008-02-19 20:16:57 +0100845static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +0100846{
847 struct debug_level *dl;
848 char *p = (char *) string;
849 char *opt;
850 int i;
851
852 if (!strcmp(string, "?") || !strcmp(string, "help")) {
853 int i;
854
855 log_info("fio: dumping debug options:");
856 for (i = 0; debug_levels[i].name; i++) {
857 dl = &debug_levels[i];
858 log_info("%s,", dl->name);
859 }
Jens Axboebd6f78b2008-02-01 20:27:52 +0100860 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +0100861 return 1;
Jens Axboebd6f78b2008-02-01 20:27:52 +0100862 } else if (!strcmp(string, "all")) {
863 fio_debug = ~0UL;
Jens Axboec09823a2008-02-19 20:16:57 +0100864 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +0100865 }
866
867 while ((opt = strsep(&p, ",")) != NULL) {
868 int found = 0;
869
870 for (i = 0; debug_levels[i].name; i++) {
871 dl = &debug_levels[i];
872 if (!strncmp(opt, dl->name, strlen(opt))) {
873 log_info("fio: set debug option %s\n", opt);
874 found = 1;
Jens Axboebd6f78b2008-02-01 20:27:52 +0100875 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +0100876 break;
877 }
878 }
879
880 if (!found)
881 log_err("fio: debug mask %s not found\n", opt);
882 }
Jens Axboec09823a2008-02-19 20:16:57 +0100883 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +0100884}
Jens Axboe79e48f72008-02-01 20:37:09 +0100885#else
886static void set_debug(const char *string)
887{
888 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +0100889 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +0100890}
891#endif
Jens Axboeee56ad52008-02-01 10:30:20 +0100892
Jens Axboe214e1ec2007-03-15 10:48:13 +0100893static int parse_cmd_line(int argc, char *argv[])
894{
895 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +0100896 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100897
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100898 while ((c = getopt_long_only(argc, argv, "", l_opts, &lidx)) != -1) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100899 switch (c) {
900 case 't':
901 def_timeout = atoi(optarg);
902 break;
903 case 'l':
904 write_lat_log = 1;
905 break;
906 case 'w':
907 write_bw_log = 1;
908 break;
909 case 'o':
910 f_out = fopen(optarg, "w+");
911 if (!f_out) {
912 perror("fopen output");
913 exit(1);
914 }
915 f_err = f_out;
916 break;
917 case 'm':
918 terse_output = 1;
919 break;
920 case 'h':
Jens Axboe45378b32007-12-19 13:54:38 +0100921 usage(argv[0]);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100922 exit(0);
923 case 'c':
924 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +0200925 case 's':
926 dump_cmdline = 1;
927 break;
Jens Axboe724e4432007-09-11 20:02:05 +0200928 case 'r':
929 read_only = 1;
930 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100931 case 'v':
932 printf("%s\n", fio_version_string);
933 exit(0);
Aaron Carrolle592a062007-09-14 09:49:41 +0200934 case 'e':
935 if (!strcmp("always", optarg))
936 eta_print = FIO_ETA_ALWAYS;
937 else if (!strcmp("never", optarg))
938 eta_print = FIO_ETA_NEVER;
939 break;
Jens Axboeee56ad52008-02-01 10:30:20 +0100940 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +0100941 if (set_debug(optarg))
942 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +0100943 break;
Jens Axboe01f06b62008-02-18 20:53:47 +0100944 case 'x':
945 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100946 log_err("fio: can't use global as only "
947 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +0100948 do_exit++;
949 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +0100950 break;
951 }
952 if (job_section)
953 free(job_section);
954 job_section = strdup(optarg);
955 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100956 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100957 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100958 char *val = optarg;
959
960 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100961 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100962 if (ret) {
963 put_job(td);
964 return 0;
965 }
966 td = NULL;
967 }
968 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100969 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +0200970 int global = 0;
971
Jens Axboe01f06b62008-02-18 20:53:47 +0100972 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +0200973 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100974
Jens Axboe01f06b62008-02-18 20:53:47 +0100975 if (is_section && skip_this_section(val))
976 continue;
977
Jens Axboe214e1ec2007-03-15 10:48:13 +0100978 td = get_new_job(global, &def_thread);
979 if (!td)
980 return 0;
981 }
982
983 ret = fio_cmd_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100984 break;
985 }
986 default:
Jens Axboec09823a2008-02-19 20:16:57 +0100987 do_exit++;
988 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100989 break;
990 }
991 }
992
Jens Axboec09823a2008-02-19 20:16:57 +0100993 if (do_exit)
994 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +0100995
Jens Axboe214e1ec2007-03-15 10:48:13 +0100996 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +0100997 if (!ret)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100998 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe7d6a8902008-02-18 20:59:18 +0100999 if (ret)
1000 put_job(td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001001 }
1002
1003 while (optind < argc) {
1004 ini_idx++;
1005 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1006 ini_file[ini_idx - 1] = strdup(argv[optind]);
1007 optind++;
1008 }
1009
1010 return ini_idx;
1011}
1012
Jens Axboeebac4652005-12-08 15:25:21 +01001013int parse_options(int argc, char *argv[])
1014{
Jens Axboe972cfd22006-06-09 11:08:56 +02001015 int job_files, i;
1016
Jens Axboeb4692822006-10-27 13:43:22 +02001017 f_out = stdout;
1018 f_err = stderr;
1019
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001020 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02001021
Jens Axboeebac4652005-12-08 15:25:21 +01001022 if (setup_thread_area())
1023 return 1;
1024 if (fill_def_thread())
1025 return 1;
1026
Jens Axboe972cfd22006-06-09 11:08:56 +02001027 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001028
Jens Axboe972cfd22006-06-09 11:08:56 +02001029 for (i = 0; i < job_files; i++) {
1030 if (fill_def_thread())
1031 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001032 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001033 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001034 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001035 }
Jens Axboeebac4652005-12-08 15:25:21 +01001036
Jens Axboe88c6ed82006-06-09 11:28:10 +02001037 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +01001038 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001039
1040 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001041 if (dump_cmdline)
1042 return 0;
1043
Jens Axboeb4692822006-10-27 13:43:22 +02001044 log_err("No jobs defined(s)\n");
Jens Axboe45378b32007-12-19 13:54:38 +01001045 usage(argv[0]);
Jens Axboeb4692822006-10-27 13:43:22 +02001046 return 1;
1047 }
1048
Jens Axboeebac4652005-12-08 15:25:21 +01001049 return 0;
1050}