blob: 6fdd2116601191ff08297cd7759a809a86c03fb8 [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 Axboe112b52d2009-02-06 14:12:03 +010022static char fio_version_string[] = "fio 1.24";
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 Axboebe4ecfd2008-12-08 14:10:52 +010030static struct thread_data def_thread;
Jens Axboe214e1ec2007-03-15 10:48:13 +010031struct 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;
Jens Axboe5e1d3062008-05-23 11:55:53 +020050unsigned int fio_debug_jobno = -1;
51unsigned int *fio_debug_jobp = NULL;
Jens Axboeee56ad52008-02-01 10:30:20 +010052
Jens Axboeb4692822006-10-27 13:43:22 +020053/*
54 * Command line options. These will contain the above, plus a few
55 * extra that only pertain to fio itself and not jobs.
56 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +010057static struct option l_opts[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020058 {
59 .name = "output",
60 .has_arg = required_argument,
61 .val = 'o',
62 },
63 {
64 .name = "timeout",
65 .has_arg = required_argument,
66 .val = 't',
67 },
68 {
69 .name = "latency-log",
70 .has_arg = required_argument,
71 .val = 'l',
72 },
73 {
74 .name = "bandwidth-log",
75 .has_arg = required_argument,
76 .val = 'b',
77 },
78 {
79 .name = "minimal",
80 .has_arg = optional_argument,
81 .val = 'm',
82 },
83 {
84 .name = "version",
85 .has_arg = no_argument,
86 .val = 'v',
87 },
88 {
Jens Axboefd28ca42007-01-09 21:20:13 +010089 .name = "help",
90 .has_arg = no_argument,
91 .val = 'h',
92 },
93 {
94 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +010095 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +010096 .val = 'c',
97 },
98 {
Jens Axboecca73aa2007-04-04 11:09:19 +020099 .name = "showcmd",
100 .has_arg = no_argument,
Jens Axboe724e4432007-09-11 20:02:05 +0200101 .val = 's',
102 },
103 {
104 .name = "readonly",
105 .has_arg = no_argument,
106 .val = 'r',
Jens Axboecca73aa2007-04-04 11:09:19 +0200107 },
108 {
Aaron Carrolle592a062007-09-14 09:49:41 +0200109 .name = "eta",
110 .has_arg = required_argument,
111 .val = 'e',
112 },
113 {
Jens Axboeee56ad52008-02-01 10:30:20 +0100114 .name = "debug",
115 .has_arg = required_argument,
116 .val = 'd',
117 },
118 {
Jens Axboe01f06b62008-02-18 20:53:47 +0100119 .name = "section",
120 .has_arg = required_argument,
121 .val = 'x',
122 },
123 {
Jens Axboe2b386d22008-03-26 10:32:57 +0100124 .name = "alloc-size",
125 .has_arg = required_argument,
126 .val = 'a',
127 },
128 {
Jens Axboeb4692822006-10-27 13:43:22 +0200129 .name = NULL,
130 },
131};
132
Joel Becker9728ce32007-03-01 08:24:39 +0100133FILE *get_f_out()
134{
135 return f_out;
136}
137
138FILE *get_f_err()
139{
140 return f_err;
141}
142
Jens Axboe906c8d72006-06-13 09:37:56 +0200143/*
144 * Return a free job structure.
145 */
Jens Axboeebac4652005-12-08 15:25:21 +0100146static struct thread_data *get_new_job(int global, struct thread_data *parent)
147{
148 struct thread_data *td;
149
150 if (global)
151 return &def_thread;
152 if (thread_number >= max_jobs)
153 return NULL;
154
155 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200156 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100157
Jens Axboecade3ef2007-03-23 15:29:45 +0100158 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100159 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100160
Jens Axboeebac4652005-12-08 15:25:21 +0100161 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100162 return td;
163}
164
165static void put_job(struct thread_data *td)
166{
Jens Axboe549577a2006-10-30 12:23:41 +0100167 if (td == &def_thread)
168 return;
169
Jens Axboe16edf252007-02-10 14:59:22 +0100170 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100171 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100172
Jens Axboeebac4652005-12-08 15:25:21 +0100173 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
174 thread_number--;
175}
176
Jens Axboe127f6862007-03-15 12:09:57 +0100177static int setup_rate(struct thread_data *td)
178{
179 unsigned long nr_reads_per_msec;
180 unsigned long long rate;
181 unsigned int bs;
182
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100183 if (!td->o.rate && !td->o.rate_iops)
Jens Axboe127f6862007-03-15 12:09:57 +0100184 return 0;
185
186 if (td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100187 bs = td->o.rw_min_bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100188 else if (td_read(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100189 bs = td->o.min_bs[DDIR_READ];
Jens Axboe127f6862007-03-15 12:09:57 +0100190 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100191 bs = td->o.min_bs[DDIR_WRITE];
Jens Axboe127f6862007-03-15 12:09:57 +0100192
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100193 if (td->o.rate) {
194 rate = td->o.rate;
Jens Axboe127f6862007-03-15 12:09:57 +0100195 nr_reads_per_msec = (rate * 1024 * 1000LL) / bs;
196 } else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100197 nr_reads_per_msec = td->o.rate_iops * 1000UL;
Jens Axboe127f6862007-03-15 12:09:57 +0100198
199 if (!nr_reads_per_msec) {
200 log_err("rate lower than supported\n");
201 return -1;
202 }
203
204 td->rate_usec_cycle = 1000000000ULL / nr_reads_per_msec;
205 td->rate_pending_usleep = 0;
206 return 0;
207}
208
Jens Axboe83472392009-02-19 21:32:12 +0100209static int fixed_block_size(struct thread_options *o)
210{
211 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
212 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
213 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE];
214}
215
Jens Axboedad915e2006-10-27 11:10:18 +0200216/*
217 * Lazy way of fixing up options that depend on each other. We could also
218 * define option callback handlers, but this is easier.
219 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100220static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200221{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100222 struct thread_options *o = &td->o;
Jens Axboedad915e2006-10-27 11:10:18 +0200223
Jens Axboef356d012009-01-05 09:56:29 +0100224#ifndef FIO_HAVE_PSHARED_MUTEX
225 if (!td->o.use_thread) {
226 log_info("fio: this platform does not support process shared"
227 " mutexes, forcing use of threads. Use the 'thread'"
228 " option to get rid of this warning.\n");
229 td->o.use_thread = 1;
230 }
231#endif
232
Jens Axboebe4ecfd2008-12-08 14:10:52 +0100233#ifndef FIO_HAVE_CPU_AFFINITY
234 if (td->o.gtod_cpu) {
235 log_err("fio: platform must support CPU affinity for"
236 "gettimeofday() offloading\n");
237 return 1;
238 }
239#endif
240
Jens Axboe724e4432007-09-11 20:02:05 +0200241 if (read_only && td_write(td)) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100242 log_err("fio: job <%s> has write bit set, but fio is in"
243 " read-only mode\n", td->o.name);
Jens Axboe724e4432007-09-11 20:02:05 +0200244 return 1;
245 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100246
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100247 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200248 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100249 free(o->write_iolog_file);
250 o->write_iolog_file = NULL;
Jens Axboe076efc72006-10-27 11:24:25 +0200251 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100252
Jens Axboe16b462a2006-10-30 12:35:18 +0100253 /*
254 * only really works for sequential io for now, and with 1 file
255 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100256 if (o->zone_size && td_random(td) && o->open_files == 1)
257 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100258
259 /*
260 * Reads can do overwrites, we always need to pre-create the file
261 */
262 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100263 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100264
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100265 if (!o->min_bs[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100266 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100267 if (!o->max_bs[DDIR_READ])
268 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
269 if (!o->min_bs[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100270 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100271 if (!o->max_bs[DDIR_WRITE])
272 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100273
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100274 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100275
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100276 if (!o->file_size_high)
277 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100278
Jens Axboe83472392009-02-19 21:32:12 +0100279 if (o->norandommap && o->verify != VERIFY_NONE
280 && !fixed_block_size(o)) {
281 log_err("fio: norandommap given for variable block sizes, "
282 "verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100283 o->verify = VERIFY_NONE;
Jens Axboebb8895e2006-10-30 15:14:48 +0100284 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100285 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100286 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100287
288 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100289 * thinktime_spin must be less than thinktime
290 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100291 if (o->thinktime_spin > o->thinktime)
292 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100293
294 /*
295 * The low water mark cannot be bigger than the iodepth
296 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100297 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100298 /*
299 * syslet work around - if the workload is sequential,
300 * we want to let the queue drain all the way down to
301 * avoid seeking between async threads
302 */
303 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100304 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100305 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100306 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100307 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100308
309 /*
310 * If batch number isn't set, default to the same as iodepth
311 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100312 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
313 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100314
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100315 if (o->nr_files > td->files_index)
316 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100317
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100318 if (o->open_files > o->nr_files || !o->open_files)
319 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100320
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100321 if ((o->rate && o->rate_iops) || (o->ratemin && o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100322 log_err("fio: rate and rate_iops are mutually exclusive\n");
323 return 1;
324 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100325 if ((o->rate < o->ratemin) || (o->rate_iops < o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100326 log_err("fio: minimum rate exceeds rate\n");
327 return 1;
328 }
329
Jens Axboecf4464c2007-04-17 20:14:42 +0200330 if (!o->timeout && o->time_based) {
331 log_err("fio: time_based requires a runtime/timeout setting\n");
332 o->time_based = 0;
333 }
334
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100335 if (o->fill_device && !o->size)
Jens Axboe5921e802008-05-30 15:02:38 +0200336 o->size = -1ULL;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100337
Jens Axboe79713142008-02-06 14:40:14 +0100338 if (td_rw(td) && td->o.verify != VERIFY_NONE)
339 log_info("fio: mixed read/write workload with verify. May not "
340 "work as expected, unless you pre-populated the file\n");
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100341
Jens Axboe41ccd842008-05-22 09:17:33 +0200342 if (td->o.verify != VERIFY_NONE)
343 td->o.refill_buffers = 1;
344
Jens Axboe4e991c22007-03-15 11:41:11 +0100345 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200346}
347
Jens Axboe906c8d72006-06-13 09:37:56 +0200348/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100349 * This function leaks the buffer
350 */
351static char *to_kmg(unsigned int val)
352{
353 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100354 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100355 char *p = post;
356
Jens Axboe245142f2006-11-08 12:49:21 +0100357 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100358 if (val & 1023)
359 break;
360
361 val >>= 10;
362 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100363 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100364
365 snprintf(buf, 31, "%u%c", val, *p);
366 return buf;
367}
368
Jens Axboe09629a92007-03-09 09:00:06 +0100369/* External engines are specified by "external:name.o") */
370static const char *get_engine_name(const char *str)
371{
372 char *p = strstr(str, ":");
373
374 if (!p)
375 return str;
376
377 p++;
378 strip_blank_front(&p);
379 strip_blank_end(p);
380 return p;
381}
382
Jens Axboee132cba2007-03-14 14:23:54 +0100383static int exists_and_not_file(const char *filename)
384{
385 struct stat sb;
386
387 if (lstat(filename, &sb) == -1)
388 return 0;
389
390 if (S_ISREG(sb.st_mode))
391 return 0;
392
393 return 1;
394}
395
Jens Axboef8977ee2006-11-06 14:03:03 +0100396/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100397 * Initialize the various random states we need (random io, block size ranges,
398 * read/write mix, etc).
399 */
400static int init_random_state(struct thread_data *td)
401{
402 unsigned long seeds[6];
Jens Axboe68727072007-03-15 20:49:25 +0100403 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100404
405 fd = open("/dev/urandom", O_RDONLY);
406 if (fd == -1) {
407 td_verror(td, errno, "open");
408 return 1;
409 }
410
411 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
412 td_verror(td, EIO, "read");
413 close(fd);
414 return 1;
415 }
416
417 close(fd);
418
419 os_random_seed(seeds[0], &td->bsrange_state);
420 os_random_seed(seeds[1], &td->verify_state);
421 os_random_seed(seeds[2], &td->rwmix_state);
422
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100423 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100424 os_random_seed(seeds[3], &td->next_file_state);
425
426 os_random_seed(seeds[5], &td->file_size_state);
427
428 if (!td_random(td))
429 return 0;
430
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100431 if (td->o.rand_repeatable)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100432 seeds[4] = FIO_RANDSEED * td->thread_number;
433
Jens Axboe9c60ce62007-03-15 09:14:47 +0100434 os_random_seed(seeds[4], &td->random_state);
435 return 0;
436}
437
Jens Axboe9c60ce62007-03-15 09:14:47 +0100438/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200439 * Adds a job to the list of things todo. Sanitizes the various options
440 * to make sure we don't have conflicts, and initializes various
441 * members of td.
442 */
Jens Axboe75154842006-06-01 13:56:09 +0200443static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100444{
Jens Axboe413dd452007-02-23 09:26:09 +0100445 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
446 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100447 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100448 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100449 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100450 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100451
Jens Axboeebac4652005-12-08 15:25:21 +0100452 /*
453 * the def_thread is just for options, it's not a real job
454 */
455 if (td == &def_thread)
456 return 0;
457
Jens Axboecca73aa2007-04-04 11:09:19 +0200458 /*
459 * if we are just dumping the output command line, don't add the job
460 */
461 if (dump_cmdline) {
462 put_job(td);
463 return 0;
464 }
465
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100466 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100467 td->io_ops = load_ioengine(td, engine);
468 if (!td->io_ops) {
469 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100470 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100471 }
Jens Axboedf641192006-10-12 07:55:41 +0200472
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100473 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100474 nr_thread++;
475 else
476 nr_process++;
477
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100478 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100479 td->io_ops->flags |= FIO_RAWIO;
480
Jens Axboee132cba2007-03-14 14:23:54 +0100481 file_alloced = 0;
Jens Axboe691c8fb2008-03-07 14:26:26 +0100482 if (!td->o.filename && !td->files_index && !td->o.read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +0100483 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100484
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100485 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100486 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100487 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100488 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100489 sprintf(fname, "%s.%d.%d", jobname,
490 td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100491 add_file(td, fname);
492 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100493 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100494 }
Jens Axboeebac4652005-12-08 15:25:21 +0100495
Jens Axboe4e991c22007-03-15 11:41:11 +0100496 if (fixup_options(td))
497 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100498
Jens Axboe07eb79d2007-04-12 13:02:38 +0200499 if (td->io_ops->flags & FIO_DISKLESSIO) {
500 struct fio_file *f;
501
502 for_each_file(td, f, i)
503 f->real_file_size = -1ULL;
504 }
505
Jens Axboecdd18ad2008-02-27 18:58:00 +0100506 td->mutex = fio_mutex_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100507
Jens Axboe756867b2007-03-06 15:19:24 +0100508 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
509 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
510 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboe1e3d53a2007-03-22 19:01:48 +0100511 td->ddir_nr = td->o.ddir_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100512
Jens Axboeb3d62a72007-03-20 14:23:26 +0100513 if ((td->o.stonewall || td->o.numjobs > 1 || td->o.new_group)
514 && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100515 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100516 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100517 }
Jens Axboeebac4652005-12-08 15:25:21 +0100518
519 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100520 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100521
Jens Axboe9c60ce62007-03-15 09:14:47 +0100522 if (init_random_state(td))
523 goto err;
524
Jens Axboeebac4652005-12-08 15:25:21 +0100525 if (setup_rate(td))
526 goto err;
527
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100528 if (td->o.write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100529 setup_log(&td->ts.slat_log);
530 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100531 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100532 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100533 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100534
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100535 if (!td->o.name)
536 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200537
Jens Axboec6ae0a52006-06-12 11:04:44 +0200538 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200539 if (!job_add_num) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100540 if (!strcmp(td->io_ops->name, "cpuio")) {
541 log_info("%s: ioengine=cpu, cpuload=%u,"
542 " cpucycle=%u\n", td->o.name,
543 td->o.cpuload,
544 td->o.cpucycle);
545 } else {
Jens Axboef8977ee2006-11-06 14:03:03 +0100546 char *c1, *c2, *c3, *c4;
547
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100548 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
549 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
550 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
551 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100552
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100553 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s,"
554 " ioengine=%s, iodepth=%u\n",
555 td->o.name, td->groupid,
556 ddir_str[td->o.td_ddir],
557 c1, c2, c3, c4,
558 td->io_ops->name,
559 td->o.iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100560
561 free(c1);
562 free(c2);
563 free(c3);
564 free(c4);
565 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200566 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100567 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200568 }
Jens Axboeebac4652005-12-08 15:25:21 +0100569
570 /*
571 * recurse add identical jobs, clear numjobs and stonewall options
572 * as they don't apply to sub-jobs
573 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100574 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100575 while (--numjobs) {
576 struct thread_data *td_new = get_new_job(0, td);
577
578 if (!td_new)
579 goto err;
580
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100581 td_new->o.numjobs = 1;
582 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200583 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100584
585 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100586 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100587 td_new->files_index = 0;
Jens Axboe4e6ea2f2009-03-04 20:17:22 +0100588 td_new->files_size = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100589 td_new->files = NULL;
590 }
591
Jens Axboe75154842006-06-01 13:56:09 +0200592 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100593
Jens Axboe75154842006-06-01 13:56:09 +0200594 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100595 goto err;
596 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100597
Jens Axboeebac4652005-12-08 15:25:21 +0100598 return 0;
599err:
600 put_job(td);
601 return -1;
602}
603
Jens Axboe01f06b62008-02-18 20:53:47 +0100604static int skip_this_section(const char *name)
605{
606 if (!job_section)
607 return 0;
608 if (!strncmp(name, "global", 6))
609 return 0;
610
611 return strncmp(job_section, name, strlen(job_section));
612}
613
Jens Axboeebac4652005-12-08 15:25:21 +0100614static int is_empty_or_comment(char *line)
615{
616 unsigned int i;
617
618 for (i = 0; i < strlen(line); i++) {
619 if (line[i] == ';')
620 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100621 if (line[i] == '#')
622 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100623 if (!isspace(line[i]) && !iscntrl(line[i]))
624 return 0;
625 }
626
627 return 1;
628}
629
Jens Axboe313cb202006-12-21 09:50:00 +0100630/*
Jens Axboe07261982006-06-07 10:51:12 +0200631 * This is our [ini] type file parser.
632 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100633static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100634{
Jens Axboee1f36502006-10-27 10:54:08 +0200635 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100636 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100637 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100638 FILE *f;
639 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200640 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200641 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +0200642 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +0100643 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200644 char **opts;
645 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +0100646
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200647 if (!strcmp(file, "-"))
648 f = stdin;
649 else
650 f = fopen(file, "r");
651
Jens Axboeebac4652005-12-08 15:25:21 +0100652 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200653 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100654 return 1;
655 }
656
657 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200658
659 /*
660 * it's really 256 + small bit, 280 should suffice
661 */
662 name = malloc(280);
663 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100664
Jens Axboe3b8b7132008-06-10 19:46:23 +0200665 alloc_opts = 8;
666 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +0200667 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200668
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200669 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100670 do {
Jens Axboeccf8f122007-09-27 10:48:55 +0200671 /*
672 * if skip_fgets is set, we already have loaded a line we
673 * haven't handled.
674 */
675 if (!skip_fgets) {
676 p = fgets(string, 4095, f);
677 if (!p)
678 break;
679 }
gurudas paicdc7f192007-03-29 10:10:56 +0200680
Jens Axboeccf8f122007-09-27 10:48:55 +0200681 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +0200682 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800683 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200684
Jens Axboeebac4652005-12-08 15:25:21 +0100685 if (is_empty_or_comment(p))
686 continue;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800687 if (sscanf(p, "[%255s]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100688 if (inside_skip)
689 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100690 log_err("fio: option <%s> outside of [] job section\n",
691 p);
Jens Axboe088b4202007-07-19 14:53:01 +0200692 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800693 }
Jens Axboeebac4652005-12-08 15:25:21 +0100694
Jens Axboe01f06b62008-02-18 20:53:47 +0100695 if (skip_this_section(name)) {
696 inside_skip = 1;
697 continue;
698 } else
699 inside_skip = 0;
700
Jens Axboeebac4652005-12-08 15:25:21 +0100701 global = !strncmp(name, "global", 6);
702
703 name[strlen(name) - 1] = '\0';
704
Jens Axboecca73aa2007-04-04 11:09:19 +0200705 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200706 if (first_sect)
707 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200708 if (!global)
709 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200710 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200711 }
712
Jens Axboeebac4652005-12-08 15:25:21 +0100713 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200714 if (!td) {
715 ret = 1;
716 break;
717 }
Jens Axboeebac4652005-12-08 15:25:21 +0100718
Jens Axboe972cfd22006-06-09 11:08:56 +0200719 /*
720 * Seperate multiple job files by a stonewall
721 */
Jens Axboef9481912006-06-09 11:37:28 +0200722 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100723 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200724 stonewall = 0;
725 }
726
Jens Axboe3b8b7132008-06-10 19:46:23 +0200727 num_opts = 0;
728 memset(opts, 0, alloc_opts * sizeof(char *));
729
Jens Axboeebac4652005-12-08 15:25:21 +0100730 while ((p = fgets(string, 4096, f)) != NULL) {
731 if (is_empty_or_comment(p))
732 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200733
Jens Axboeb6754f92006-05-30 14:29:32 +0200734 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100735
Jens Axboeccf8f122007-09-27 10:48:55 +0200736 /*
737 * new section, break out and make sure we don't
738 * fgets() a new line at the top.
739 */
740 if (p[0] == '[') {
741 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100742 break;
Jens Axboeccf8f122007-09-27 10:48:55 +0200743 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100744
Jens Axboe4ae3f762006-05-30 13:35:14 +0200745 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200746
Jens Axboe3b8b7132008-06-10 19:46:23 +0200747 if (num_opts == alloc_opts) {
748 alloc_opts <<= 1;
749 opts = realloc(opts,
750 alloc_opts * sizeof(char *));
751 }
752
753 opts[num_opts] = strdup(p);
754 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +0100755 }
Jens Axboeebac4652005-12-08 15:25:21 +0100756
Jens Axboe3b8b7132008-06-10 19:46:23 +0200757 ret = fio_options_parse(td, opts, num_opts);
758 if (!ret) {
759 if (dump_cmdline)
760 for (i = 0; i < num_opts; i++)
761 log_info("--%s ", opts[i]);
762
Jens Axboe45410ac2006-06-07 11:10:39 +0200763 ret = add_job(td, name, 0);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200764 } else {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100765 log_err("fio: job %s dropped\n", name);
766 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200767 }
Jens Axboe3b8b7132008-06-10 19:46:23 +0200768
769 for (i = 0; i < num_opts; i++)
770 free(opts[i]);
771 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100772 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100773
Jens Axboecca73aa2007-04-04 11:09:19 +0200774 if (dump_cmdline)
775 log_info("\n");
776
Jens Axboe3b8b7132008-06-10 19:46:23 +0200777 for (i = 0; i < num_opts; i++)
778 free(opts[i]);
779
Jens Axboeebac4652005-12-08 15:25:21 +0100780 free(string);
781 free(name);
Jens Axboe25775942008-06-10 20:26:06 +0200782 free(opts);
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200783 if (f != stdin)
784 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200785 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100786}
787
788static int fill_def_thread(void)
789{
790 memset(&def_thread, 0, sizeof(def_thread));
791
Jens Axboe375b2692007-05-22 09:13:02 +0200792 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100793
794 /*
Jens Axboeee738492007-01-10 11:23:16 +0100795 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100796 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100797 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100798
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100799 def_thread.o.timeout = def_timeout;
800 def_thread.o.write_bw_log = write_bw_log;
801 def_thread.o.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +0100802
Jens Axboeebac4652005-12-08 15:25:21 +0100803 return 0;
804}
805
Jens Axboeebac4652005-12-08 15:25:21 +0100806static void free_shm(void)
807{
808 struct shmid_ds sbuf;
809
810 if (threads) {
Jens Axboe5e1d3062008-05-23 11:55:53 +0200811 void *tp = threads;
812
Jens Axboeebac4652005-12-08 15:25:21 +0100813 threads = NULL;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200814 file_hash_exit();
815 fio_debug_jobp = NULL;
816 shmdt(tp);
Jens Axboeebac4652005-12-08 15:25:21 +0100817 shmctl(shm_id, IPC_RMID, &sbuf);
818 }
Jens Axboe2e5cdb12008-03-01 18:52:49 +0100819
820 scleanup();
Jens Axboeebac4652005-12-08 15:25:21 +0100821}
822
Jens Axboe906c8d72006-06-13 09:37:56 +0200823/*
824 * The thread area is shared between the main process and the job
825 * threads/processes. So setup a shared memory segment that will hold
Jens Axboe380065a2008-03-01 18:56:24 +0100826 * all the job info. We use the end of the region for keeping track of
827 * open files across jobs, for file sharing.
Jens Axboe906c8d72006-06-13 09:37:56 +0200828 */
Jens Axboeebac4652005-12-08 15:25:21 +0100829static int setup_thread_area(void)
830{
Jens Axboe380065a2008-03-01 18:56:24 +0100831 void *hash;
832
Jens Axboeebac4652005-12-08 15:25:21 +0100833 /*
834 * 1024 is too much on some machines, scale max_jobs if
835 * we get a failure that looks like too large a shm segment
836 */
837 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200838 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100839
Jens Axboe380065a2008-03-01 18:56:24 +0100840 size += file_hash_size;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200841 size += sizeof(unsigned int);
Jens Axboe380065a2008-03-01 18:56:24 +0100842
Jens Axboe906c8d72006-06-13 09:37:56 +0200843 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100844 if (shm_id != -1)
845 break;
846 if (errno != EINVAL) {
847 perror("shmget");
848 break;
849 }
850
851 max_jobs >>= 1;
852 } while (max_jobs);
853
854 if (shm_id == -1)
855 return 1;
856
857 threads = shmat(shm_id, NULL, 0);
858 if (threads == (void *) -1) {
859 perror("shmat");
860 return 1;
861 }
862
Jens Axboe1f809d12007-10-25 18:34:02 +0200863 memset(threads, 0, max_jobs * sizeof(struct thread_data));
Jens Axboe380065a2008-03-01 18:56:24 +0100864 hash = (void *) threads + max_jobs * sizeof(struct thread_data);
Jens Axboe5e1d3062008-05-23 11:55:53 +0200865 fio_debug_jobp = (void *) hash + file_hash_size;
866 *fio_debug_jobp = -1;
Jens Axboe380065a2008-03-01 18:56:24 +0100867 file_hash_init(hash);
Jens Axboeebac4652005-12-08 15:25:21 +0100868 atexit(free_shm);
869 return 0;
870}
871
Jens Axboe45378b32007-12-19 13:54:38 +0100872static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +0200873{
Jens Axboe214e1ec2007-03-15 10:48:13 +0100874 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +0100875 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboeee56ad52008-02-01 10:30:20 +0100876 printf("\t--debug=options\tEnable debug logging\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100877 printf("\t--output\tWrite output to file\n");
878 printf("\t--timeout\tRuntime in seconds\n");
879 printf("\t--latency-log\tGenerate per-job latency logs\n");
880 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
881 printf("\t--minimal\tMinimal (terse) output\n");
882 printf("\t--version\tPrint version info and exit\n");
883 printf("\t--help\t\tPrint this page\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100884 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of"
885 " them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +0200886 printf("\t--showcmd\tTurn a job file into command line options\n");
Aaron Carrolle592a062007-09-14 09:49:41 +0200887 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
888 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100889 printf("\t--readonly\tTurn on safety read-only checks, preventing"
890 " writes\n");
Jens Axboe01f06b62008-02-18 20:53:47 +0100891 printf("\t--section=name\tOnly run specified section in job file\n");
Jens Axboe2b386d22008-03-26 10:32:57 +0100892 printf("\t--alloc-size=kb\tSet smalloc pool to this size in kb"
893 " (def 1024)\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200894}
895
Jens Axboe79e48f72008-02-01 20:37:09 +0100896#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +0100897struct debug_level debug_levels[] = {
Jens Axboebd6f78b2008-02-01 20:27:52 +0100898 { .name = "process", .shift = FD_PROCESS, },
899 { .name = "file", .shift = FD_FILE, },
900 { .name = "io", .shift = FD_IO, },
901 { .name = "mem", .shift = FD_MEM, },
902 { .name = "blktrace", .shift = FD_BLKTRACE },
903 { .name = "verify", .shift = FD_VERIFY },
Jens Axboe84422ac2008-02-19 20:10:26 +0100904 { .name = "random", .shift = FD_RANDOM },
Jens Axboea3d741f2008-02-27 18:32:33 +0100905 { .name = "parse", .shift = FD_PARSE },
Jens Axboecd991b92008-03-07 13:19:35 +0100906 { .name = "diskutil", .shift = FD_DISKUTIL },
Jens Axboe5e1d3062008-05-23 11:55:53 +0200907 { .name = "job", .shift = FD_JOB },
Jens Axboe29adda32009-01-05 19:06:39 +0100908 { .name = "mutex", .shift = FD_MUTEX },
Jens Axboe02444ad2008-10-07 11:33:00 +0200909 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +0100910};
911
Jens Axboec09823a2008-02-19 20:16:57 +0100912static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +0100913{
914 struct debug_level *dl;
915 char *p = (char *) string;
916 char *opt;
917 int i;
918
919 if (!strcmp(string, "?") || !strcmp(string, "help")) {
920 int i;
921
922 log_info("fio: dumping debug options:");
923 for (i = 0; debug_levels[i].name; i++) {
924 dl = &debug_levels[i];
925 log_info("%s,", dl->name);
926 }
Jens Axboebd6f78b2008-02-01 20:27:52 +0100927 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +0100928 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +0100929 }
930
931 while ((opt = strsep(&p, ",")) != NULL) {
932 int found = 0;
933
Jens Axboe5e1d3062008-05-23 11:55:53 +0200934 if (!strncmp(opt, "all", 3)) {
935 log_info("fio: set all debug options\n");
936 fio_debug = ~0UL;
937 continue;
938 }
939
Jens Axboeee56ad52008-02-01 10:30:20 +0100940 for (i = 0; debug_levels[i].name; i++) {
941 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +0200942 found = !strncmp(opt, dl->name, strlen(dl->name));
943 if (!found)
944 continue;
945
946 if (dl->shift == FD_JOB) {
947 opt = strchr(opt, ':');
948 if (!opt) {
949 log_err("fio: missing job number\n");
950 break;
951 }
952 opt++;
953 fio_debug_jobno = atoi(opt);
954 log_info("fio: set debug jobno %d\n",
955 fio_debug_jobno);
956 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +0100957 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100958 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +0100959 }
Jens Axboe5e1d3062008-05-23 11:55:53 +0200960 break;
Jens Axboeee56ad52008-02-01 10:30:20 +0100961 }
962
963 if (!found)
964 log_err("fio: debug mask %s not found\n", opt);
965 }
Jens Axboec09823a2008-02-19 20:16:57 +0100966 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +0100967}
Jens Axboe79e48f72008-02-01 20:37:09 +0100968#else
Jens Axboe69b98d42008-05-30 22:25:32 +0200969static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +0100970{
971 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +0100972 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +0100973}
974#endif
Jens Axboeee56ad52008-02-01 10:30:20 +0100975
Jens Axboe214e1ec2007-03-15 10:48:13 +0100976static int parse_cmd_line(int argc, char *argv[])
977{
978 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +0100979 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100980
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100981 while ((c = getopt_long_only(argc, argv, "", l_opts, &lidx)) != -1) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100982 switch (c) {
Jens Axboe2b386d22008-03-26 10:32:57 +0100983 case 'a':
984 smalloc_pool_size = atoi(optarg);
985 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100986 case 't':
987 def_timeout = atoi(optarg);
988 break;
989 case 'l':
990 write_lat_log = 1;
991 break;
992 case 'w':
993 write_bw_log = 1;
994 break;
995 case 'o':
996 f_out = fopen(optarg, "w+");
997 if (!f_out) {
998 perror("fopen output");
999 exit(1);
1000 }
1001 f_err = f_out;
1002 break;
1003 case 'm':
1004 terse_output = 1;
1005 break;
1006 case 'h':
Jens Axboe45378b32007-12-19 13:54:38 +01001007 usage(argv[0]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001008 exit(0);
1009 case 'c':
1010 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +02001011 case 's':
1012 dump_cmdline = 1;
1013 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001014 case 'r':
1015 read_only = 1;
1016 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001017 case 'v':
1018 printf("%s\n", fio_version_string);
1019 exit(0);
Aaron Carrolle592a062007-09-14 09:49:41 +02001020 case 'e':
1021 if (!strcmp("always", optarg))
1022 eta_print = FIO_ETA_ALWAYS;
1023 else if (!strcmp("never", optarg))
1024 eta_print = FIO_ETA_NEVER;
1025 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001026 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001027 if (set_debug(optarg))
1028 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001029 break;
Jens Axboe01f06b62008-02-18 20:53:47 +01001030 case 'x':
1031 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001032 log_err("fio: can't use global as only "
1033 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001034 do_exit++;
1035 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001036 break;
1037 }
1038 if (job_section)
1039 free(job_section);
1040 job_section = strdup(optarg);
1041 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001042 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001043 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001044 char *val = optarg;
1045
1046 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001047 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001048 if (ret) {
1049 put_job(td);
1050 return 0;
1051 }
1052 td = NULL;
1053 }
1054 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001055 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001056 int global = 0;
1057
Jens Axboe01f06b62008-02-18 20:53:47 +01001058 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001059 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001060
Jens Axboe01f06b62008-02-18 20:53:47 +01001061 if (is_section && skip_this_section(val))
1062 continue;
1063
Jens Axboe214e1ec2007-03-15 10:48:13 +01001064 td = get_new_job(global, &def_thread);
1065 if (!td)
1066 return 0;
1067 }
1068
1069 ret = fio_cmd_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001070 break;
1071 }
1072 default:
Jens Axboec09823a2008-02-19 20:16:57 +01001073 do_exit++;
1074 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001075 break;
1076 }
1077 }
1078
Jens Axboec09823a2008-02-19 20:16:57 +01001079 if (do_exit)
1080 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01001081
Jens Axboe214e1ec2007-03-15 10:48:13 +01001082 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +01001083 if (!ret)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001084 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe7d6a8902008-02-18 20:59:18 +01001085 if (ret)
1086 put_job(td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001087 }
1088
1089 while (optind < argc) {
1090 ini_idx++;
1091 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1092 ini_file[ini_idx - 1] = strdup(argv[optind]);
1093 optind++;
1094 }
1095
1096 return ini_idx;
1097}
1098
Jens Axboeebac4652005-12-08 15:25:21 +01001099int parse_options(int argc, char *argv[])
1100{
Jens Axboe972cfd22006-06-09 11:08:56 +02001101 int job_files, i;
1102
Jens Axboeb4692822006-10-27 13:43:22 +02001103 f_out = stdout;
1104 f_err = stderr;
1105
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001106 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02001107
Jens Axboeebac4652005-12-08 15:25:21 +01001108 if (setup_thread_area())
1109 return 1;
1110 if (fill_def_thread())
1111 return 1;
1112
Jens Axboe972cfd22006-06-09 11:08:56 +02001113 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001114
Jens Axboe972cfd22006-06-09 11:08:56 +02001115 for (i = 0; i < job_files; i++) {
1116 if (fill_def_thread())
1117 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001118 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001119 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001120 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001121 }
Jens Axboeebac4652005-12-08 15:25:21 +01001122
Jens Axboe88c6ed82006-06-09 11:28:10 +02001123 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +01001124 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001125
1126 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001127 if (dump_cmdline)
1128 return 0;
1129
Jens Axboeb4692822006-10-27 13:43:22 +02001130 log_err("No jobs defined(s)\n");
Jens Axboe45378b32007-12-19 13:54:38 +01001131 usage(argv[0]);
Jens Axboeb4692822006-10-27 13:43:22 +02001132 return 1;
1133 }
1134
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001135 if (def_thread.o.gtod_offload) {
1136 fio_gtod_init();
1137 fio_gtod_offload = 1;
1138 fio_gtod_cpu = def_thread.o.gtod_cpu;
1139 }
1140
Jens Axboeebac4652005-12-08 15:25:21 +01001141 return 0;
1142}