blob: 7681102bd506353e05257442e5279c64b43f9bcc [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 Axboe55093ac2009-05-20 11:53:04 +020022static char fio_version_string[] = "fio 1.26.4";
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 Axboe2b7a01d2009-03-11 11:00:13 +0100276 /*
277 * For random IO, allow blockalign offset other than min_bs.
278 */
279 if (!o->ba[DDIR_READ] || !td_random(td))
280 o->ba[DDIR_READ] = o->min_bs[DDIR_READ];
281 if (!o->ba[DDIR_WRITE] || !td_random(td))
282 o->ba[DDIR_WRITE] = o->min_bs[DDIR_WRITE];
283
284 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
285 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE]) &&
286 !td->o.norandommap) {
287 log_err("fio: Any use of blockalign= turns off randommap\n");
288 td->o.norandommap = 1;
289 }
290
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100291 if (!o->file_size_high)
292 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100293
Jens Axboe83472392009-02-19 21:32:12 +0100294 if (o->norandommap && o->verify != VERIFY_NONE
295 && !fixed_block_size(o)) {
296 log_err("fio: norandommap given for variable block sizes, "
297 "verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100298 o->verify = VERIFY_NONE;
Jens Axboebb8895e2006-10-30 15:14:48 +0100299 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100300 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100301 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100302
303 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100304 * thinktime_spin must be less than thinktime
305 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100306 if (o->thinktime_spin > o->thinktime)
307 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100308
309 /*
310 * The low water mark cannot be bigger than the iodepth
311 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100312 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100313 /*
314 * syslet work around - if the workload is sequential,
315 * we want to let the queue drain all the way down to
316 * avoid seeking between async threads
317 */
318 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100319 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100320 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100321 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100322 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100323
324 /*
325 * If batch number isn't set, default to the same as iodepth
326 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100327 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
328 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100329
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100330 if (o->nr_files > td->files_index)
331 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100332
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100333 if (o->open_files > o->nr_files || !o->open_files)
334 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100335
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100336 if ((o->rate && o->rate_iops) || (o->ratemin && o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100337 log_err("fio: rate and rate_iops are mutually exclusive\n");
338 return 1;
339 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100340 if ((o->rate < o->ratemin) || (o->rate_iops < o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100341 log_err("fio: minimum rate exceeds rate\n");
342 return 1;
343 }
344
Jens Axboecf4464c2007-04-17 20:14:42 +0200345 if (!o->timeout && o->time_based) {
346 log_err("fio: time_based requires a runtime/timeout setting\n");
347 o->time_based = 0;
348 }
349
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100350 if (o->fill_device && !o->size)
Jens Axboe5921e802008-05-30 15:02:38 +0200351 o->size = -1ULL;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100352
Jens Axboe79713142008-02-06 14:40:14 +0100353 if (td_rw(td) && td->o.verify != VERIFY_NONE)
354 log_info("fio: mixed read/write workload with verify. May not "
355 "work as expected, unless you pre-populated the file\n");
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100356
Jens Axboe41ccd842008-05-22 09:17:33 +0200357 if (td->o.verify != VERIFY_NONE)
358 td->o.refill_buffers = 1;
359
Jens Axboe34f1c042009-06-02 14:19:25 +0200360 if (td->o.pre_read)
361 td->o.invalidate_cache = 0;
362
Jens Axboe4e991c22007-03-15 11:41:11 +0100363 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200364}
365
Jens Axboe906c8d72006-06-13 09:37:56 +0200366/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100367 * This function leaks the buffer
368 */
369static char *to_kmg(unsigned int val)
370{
371 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100372 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100373 char *p = post;
374
Jens Axboe245142f2006-11-08 12:49:21 +0100375 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100376 if (val & 1023)
377 break;
378
379 val >>= 10;
380 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100381 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100382
383 snprintf(buf, 31, "%u%c", val, *p);
384 return buf;
385}
386
Jens Axboe09629a92007-03-09 09:00:06 +0100387/* External engines are specified by "external:name.o") */
388static const char *get_engine_name(const char *str)
389{
390 char *p = strstr(str, ":");
391
392 if (!p)
393 return str;
394
395 p++;
396 strip_blank_front(&p);
397 strip_blank_end(p);
398 return p;
399}
400
Jens Axboee132cba2007-03-14 14:23:54 +0100401static int exists_and_not_file(const char *filename)
402{
403 struct stat sb;
404
405 if (lstat(filename, &sb) == -1)
406 return 0;
407
408 if (S_ISREG(sb.st_mode))
409 return 0;
410
411 return 1;
412}
413
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200414void td_fill_rand_seeds(struct thread_data *td)
415{
416 os_random_seed(td->rand_seeds[0], &td->bsrange_state);
417 os_random_seed(td->rand_seeds[1], &td->verify_state);
418 os_random_seed(td->rand_seeds[2], &td->rwmix_state);
419
420 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
421 os_random_seed(td->rand_seeds[3], &td->next_file_state);
422
423 os_random_seed(td->rand_seeds[5], &td->file_size_state);
424
425 if (!td_random(td))
426 return;
427
428 if (td->o.rand_repeatable)
429 td->rand_seeds[4] = FIO_RANDSEED * td->thread_number;
430
431 os_random_seed(td->rand_seeds[4], &td->random_state);
432}
433
Jens Axboef8977ee2006-11-06 14:03:03 +0100434/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100435 * Initialize the various random states we need (random io, block size ranges,
436 * read/write mix, etc).
437 */
438static int init_random_state(struct thread_data *td)
439{
Jens Axboe68727072007-03-15 20:49:25 +0100440 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100441
442 fd = open("/dev/urandom", O_RDONLY);
443 if (fd == -1) {
444 td_verror(td, errno, "open");
445 return 1;
446 }
447
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200448 if (read(fd, td->rand_seeds, sizeof(td->rand_seeds)) <
449 (int) sizeof(td->rand_seeds)) {
Jens Axboe9c60ce62007-03-15 09:14:47 +0100450 td_verror(td, EIO, "read");
451 close(fd);
452 return 1;
453 }
454
455 close(fd);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200456 td_fill_rand_seeds(td);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100457 return 0;
458}
459
Jens Axboe9c60ce62007-03-15 09:14:47 +0100460/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200461 * Adds a job to the list of things todo. Sanitizes the various options
462 * to make sure we don't have conflicts, and initializes various
463 * members of td.
464 */
Jens Axboe75154842006-06-01 13:56:09 +0200465static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100466{
Jens Axboe413dd452007-02-23 09:26:09 +0100467 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
468 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100469 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100470 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100471 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100472 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100473
Jens Axboeebac4652005-12-08 15:25:21 +0100474 /*
475 * the def_thread is just for options, it's not a real job
476 */
477 if (td == &def_thread)
478 return 0;
479
Jens Axboecca73aa2007-04-04 11:09:19 +0200480 /*
481 * if we are just dumping the output command line, don't add the job
482 */
483 if (dump_cmdline) {
484 put_job(td);
485 return 0;
486 }
487
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100488 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100489 td->io_ops = load_ioengine(td, engine);
490 if (!td->io_ops) {
491 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100492 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100493 }
Jens Axboedf641192006-10-12 07:55:41 +0200494
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100495 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100496 nr_thread++;
497 else
498 nr_process++;
499
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100500 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100501 td->io_ops->flags |= FIO_RAWIO;
502
Jens Axboee132cba2007-03-14 14:23:54 +0100503 file_alloced = 0;
Jens Axboe691c8fb2008-03-07 14:26:26 +0100504 if (!td->o.filename && !td->files_index && !td->o.read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +0100505 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100506
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100507 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100508 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100509 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100510 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100511 sprintf(fname, "%s.%d.%d", jobname,
512 td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100513 add_file(td, fname);
514 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100515 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100516 }
Jens Axboeebac4652005-12-08 15:25:21 +0100517
Jens Axboe4e991c22007-03-15 11:41:11 +0100518 if (fixup_options(td))
519 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100520
Jens Axboe07eb79d2007-04-12 13:02:38 +0200521 if (td->io_ops->flags & FIO_DISKLESSIO) {
522 struct fio_file *f;
523
524 for_each_file(td, f, i)
525 f->real_file_size = -1ULL;
526 }
527
Jens Axboecdd18ad2008-02-27 18:58:00 +0100528 td->mutex = fio_mutex_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100529
Jens Axboe756867b2007-03-06 15:19:24 +0100530 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
531 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
532 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboe1e3d53a2007-03-22 19:01:48 +0100533 td->ddir_nr = td->o.ddir_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100534
Jens Axboeb3d62a72007-03-20 14:23:26 +0100535 if ((td->o.stonewall || td->o.numjobs > 1 || td->o.new_group)
536 && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100537 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100538 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100539 }
Jens Axboeebac4652005-12-08 15:25:21 +0100540
541 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100542 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100543
Jens Axboe9c60ce62007-03-15 09:14:47 +0100544 if (init_random_state(td))
545 goto err;
546
Jens Axboeebac4652005-12-08 15:25:21 +0100547 if (setup_rate(td))
548 goto err;
549
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100550 if (td->o.write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100551 setup_log(&td->ts.slat_log);
552 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100553 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100554 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100555 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100556
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100557 if (!td->o.name)
558 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200559
Jens Axboec6ae0a52006-06-12 11:04:44 +0200560 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200561 if (!job_add_num) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100562 if (!strcmp(td->io_ops->name, "cpuio")) {
563 log_info("%s: ioengine=cpu, cpuload=%u,"
564 " cpucycle=%u\n", td->o.name,
565 td->o.cpuload,
566 td->o.cpucycle);
567 } else {
Jens Axboef8977ee2006-11-06 14:03:03 +0100568 char *c1, *c2, *c3, *c4;
569
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100570 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
571 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
572 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
573 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100574
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100575 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s,"
576 " ioengine=%s, iodepth=%u\n",
577 td->o.name, td->groupid,
578 ddir_str[td->o.td_ddir],
579 c1, c2, c3, c4,
580 td->io_ops->name,
581 td->o.iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100582
583 free(c1);
584 free(c2);
585 free(c3);
586 free(c4);
587 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200588 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100589 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200590 }
Jens Axboeebac4652005-12-08 15:25:21 +0100591
592 /*
593 * recurse add identical jobs, clear numjobs and stonewall options
594 * as they don't apply to sub-jobs
595 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100596 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100597 while (--numjobs) {
598 struct thread_data *td_new = get_new_job(0, td);
599
600 if (!td_new)
601 goto err;
602
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100603 td_new->o.numjobs = 1;
604 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200605 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100606
607 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100608 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100609 td_new->files_index = 0;
Jens Axboe4e6ea2f2009-03-04 20:17:22 +0100610 td_new->files_size = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100611 td_new->files = NULL;
612 }
613
Jens Axboe75154842006-06-01 13:56:09 +0200614 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100615
Jens Axboe75154842006-06-01 13:56:09 +0200616 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100617 goto err;
618 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100619
Jens Axboeebac4652005-12-08 15:25:21 +0100620 return 0;
621err:
622 put_job(td);
623 return -1;
624}
625
Jens Axboe01f06b62008-02-18 20:53:47 +0100626static int skip_this_section(const char *name)
627{
628 if (!job_section)
629 return 0;
630 if (!strncmp(name, "global", 6))
631 return 0;
632
Jens Axboeb36beb62009-03-05 21:14:21 +0100633 return strcmp(job_section, name);
Jens Axboe01f06b62008-02-18 20:53:47 +0100634}
635
Jens Axboeebac4652005-12-08 15:25:21 +0100636static int is_empty_or_comment(char *line)
637{
638 unsigned int i;
639
640 for (i = 0; i < strlen(line); i++) {
641 if (line[i] == ';')
642 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100643 if (line[i] == '#')
644 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100645 if (!isspace(line[i]) && !iscntrl(line[i]))
646 return 0;
647 }
648
649 return 1;
650}
651
Jens Axboe313cb202006-12-21 09:50:00 +0100652/*
Jens Axboe07261982006-06-07 10:51:12 +0200653 * This is our [ini] type file parser.
654 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100655static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100656{
Jens Axboee1f36502006-10-27 10:54:08 +0200657 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100658 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100659 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100660 FILE *f;
661 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200662 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200663 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +0200664 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +0100665 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200666 char **opts;
667 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +0100668
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200669 if (!strcmp(file, "-"))
670 f = stdin;
671 else
672 f = fopen(file, "r");
673
Jens Axboeebac4652005-12-08 15:25:21 +0100674 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200675 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100676 return 1;
677 }
678
679 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200680
681 /*
682 * it's really 256 + small bit, 280 should suffice
683 */
684 name = malloc(280);
685 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100686
Jens Axboe3b8b7132008-06-10 19:46:23 +0200687 alloc_opts = 8;
688 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +0200689 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200690
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200691 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100692 do {
Jens Axboeccf8f122007-09-27 10:48:55 +0200693 /*
694 * if skip_fgets is set, we already have loaded a line we
695 * haven't handled.
696 */
697 if (!skip_fgets) {
698 p = fgets(string, 4095, f);
699 if (!p)
700 break;
701 }
gurudas paicdc7f192007-03-29 10:10:56 +0200702
Jens Axboeccf8f122007-09-27 10:48:55 +0200703 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +0200704 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800705 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200706
Jens Axboeebac4652005-12-08 15:25:21 +0100707 if (is_empty_or_comment(p))
708 continue;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800709 if (sscanf(p, "[%255s]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100710 if (inside_skip)
711 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100712 log_err("fio: option <%s> outside of [] job section\n",
713 p);
Jens Axboe088b4202007-07-19 14:53:01 +0200714 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800715 }
Jens Axboeebac4652005-12-08 15:25:21 +0100716
Jens Axboe01f06b62008-02-18 20:53:47 +0100717 if (skip_this_section(name)) {
718 inside_skip = 1;
719 continue;
720 } else
721 inside_skip = 0;
722
Jens Axboeebac4652005-12-08 15:25:21 +0100723 global = !strncmp(name, "global", 6);
724
725 name[strlen(name) - 1] = '\0';
726
Jens Axboecca73aa2007-04-04 11:09:19 +0200727 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200728 if (first_sect)
729 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200730 if (!global)
731 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200732 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200733 }
734
Jens Axboeebac4652005-12-08 15:25:21 +0100735 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200736 if (!td) {
737 ret = 1;
738 break;
739 }
Jens Axboeebac4652005-12-08 15:25:21 +0100740
Jens Axboe972cfd22006-06-09 11:08:56 +0200741 /*
742 * Seperate multiple job files by a stonewall
743 */
Jens Axboef9481912006-06-09 11:37:28 +0200744 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100745 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200746 stonewall = 0;
747 }
748
Jens Axboe3b8b7132008-06-10 19:46:23 +0200749 num_opts = 0;
750 memset(opts, 0, alloc_opts * sizeof(char *));
751
Jens Axboeebac4652005-12-08 15:25:21 +0100752 while ((p = fgets(string, 4096, f)) != NULL) {
753 if (is_empty_or_comment(p))
754 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200755
Jens Axboeb6754f92006-05-30 14:29:32 +0200756 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100757
Jens Axboeccf8f122007-09-27 10:48:55 +0200758 /*
759 * new section, break out and make sure we don't
760 * fgets() a new line at the top.
761 */
762 if (p[0] == '[') {
763 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100764 break;
Jens Axboeccf8f122007-09-27 10:48:55 +0200765 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100766
Jens Axboe4ae3f762006-05-30 13:35:14 +0200767 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200768
Jens Axboe3b8b7132008-06-10 19:46:23 +0200769 if (num_opts == alloc_opts) {
770 alloc_opts <<= 1;
771 opts = realloc(opts,
772 alloc_opts * sizeof(char *));
773 }
774
775 opts[num_opts] = strdup(p);
776 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +0100777 }
Jens Axboeebac4652005-12-08 15:25:21 +0100778
Jens Axboe3b8b7132008-06-10 19:46:23 +0200779 ret = fio_options_parse(td, opts, num_opts);
780 if (!ret) {
781 if (dump_cmdline)
782 for (i = 0; i < num_opts; i++)
783 log_info("--%s ", opts[i]);
784
Jens Axboe45410ac2006-06-07 11:10:39 +0200785 ret = add_job(td, name, 0);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200786 } else {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100787 log_err("fio: job %s dropped\n", name);
788 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200789 }
Jens Axboe3b8b7132008-06-10 19:46:23 +0200790
791 for (i = 0; i < num_opts; i++)
792 free(opts[i]);
793 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100794 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100795
Jens Axboecca73aa2007-04-04 11:09:19 +0200796 if (dump_cmdline)
797 log_info("\n");
798
Jens Axboe3b8b7132008-06-10 19:46:23 +0200799 for (i = 0; i < num_opts; i++)
800 free(opts[i]);
801
Jens Axboeebac4652005-12-08 15:25:21 +0100802 free(string);
803 free(name);
Jens Axboe25775942008-06-10 20:26:06 +0200804 free(opts);
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200805 if (f != stdin)
806 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200807 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100808}
809
810static int fill_def_thread(void)
811{
812 memset(&def_thread, 0, sizeof(def_thread));
813
Jens Axboe375b2692007-05-22 09:13:02 +0200814 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100815
816 /*
Jens Axboeee738492007-01-10 11:23:16 +0100817 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100818 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100819 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100820
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100821 def_thread.o.timeout = def_timeout;
822 def_thread.o.write_bw_log = write_bw_log;
823 def_thread.o.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +0100824
Jens Axboeebac4652005-12-08 15:25:21 +0100825 return 0;
826}
827
Jens Axboeebac4652005-12-08 15:25:21 +0100828static void free_shm(void)
829{
830 struct shmid_ds sbuf;
831
832 if (threads) {
Jens Axboe5e1d3062008-05-23 11:55:53 +0200833 void *tp = threads;
834
Jens Axboeebac4652005-12-08 15:25:21 +0100835 threads = NULL;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200836 file_hash_exit();
837 fio_debug_jobp = NULL;
838 shmdt(tp);
Jens Axboeebac4652005-12-08 15:25:21 +0100839 shmctl(shm_id, IPC_RMID, &sbuf);
840 }
Jens Axboe2e5cdb12008-03-01 18:52:49 +0100841
842 scleanup();
Jens Axboeebac4652005-12-08 15:25:21 +0100843}
844
Jens Axboe906c8d72006-06-13 09:37:56 +0200845/*
846 * The thread area is shared between the main process and the job
847 * threads/processes. So setup a shared memory segment that will hold
Jens Axboe380065a2008-03-01 18:56:24 +0100848 * all the job info. We use the end of the region for keeping track of
849 * open files across jobs, for file sharing.
Jens Axboe906c8d72006-06-13 09:37:56 +0200850 */
Jens Axboeebac4652005-12-08 15:25:21 +0100851static int setup_thread_area(void)
852{
Jens Axboe380065a2008-03-01 18:56:24 +0100853 void *hash;
854
Jens Axboeebac4652005-12-08 15:25:21 +0100855 /*
856 * 1024 is too much on some machines, scale max_jobs if
857 * we get a failure that looks like too large a shm segment
858 */
859 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200860 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100861
Jens Axboe380065a2008-03-01 18:56:24 +0100862 size += file_hash_size;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200863 size += sizeof(unsigned int);
Jens Axboe380065a2008-03-01 18:56:24 +0100864
Jens Axboe906c8d72006-06-13 09:37:56 +0200865 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100866 if (shm_id != -1)
867 break;
868 if (errno != EINVAL) {
869 perror("shmget");
870 break;
871 }
872
873 max_jobs >>= 1;
874 } while (max_jobs);
875
876 if (shm_id == -1)
877 return 1;
878
879 threads = shmat(shm_id, NULL, 0);
880 if (threads == (void *) -1) {
881 perror("shmat");
882 return 1;
883 }
884
Jens Axboe1f809d12007-10-25 18:34:02 +0200885 memset(threads, 0, max_jobs * sizeof(struct thread_data));
Jens Axboe380065a2008-03-01 18:56:24 +0100886 hash = (void *) threads + max_jobs * sizeof(struct thread_data);
Jens Axboe5e1d3062008-05-23 11:55:53 +0200887 fio_debug_jobp = (void *) hash + file_hash_size;
888 *fio_debug_jobp = -1;
Jens Axboe380065a2008-03-01 18:56:24 +0100889 file_hash_init(hash);
Jens Axboeebac4652005-12-08 15:25:21 +0100890 atexit(free_shm);
891 return 0;
892}
893
Jens Axboe45378b32007-12-19 13:54:38 +0100894static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +0200895{
Jens Axboe214e1ec2007-03-15 10:48:13 +0100896 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +0100897 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboeee56ad52008-02-01 10:30:20 +0100898 printf("\t--debug=options\tEnable debug logging\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100899 printf("\t--output\tWrite output to file\n");
900 printf("\t--timeout\tRuntime in seconds\n");
901 printf("\t--latency-log\tGenerate per-job latency logs\n");
902 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
903 printf("\t--minimal\tMinimal (terse) output\n");
904 printf("\t--version\tPrint version info and exit\n");
905 printf("\t--help\t\tPrint this page\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100906 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of"
907 " them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +0200908 printf("\t--showcmd\tTurn a job file into command line options\n");
Aaron Carrolle592a062007-09-14 09:49:41 +0200909 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
910 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100911 printf("\t--readonly\tTurn on safety read-only checks, preventing"
912 " writes\n");
Jens Axboe01f06b62008-02-18 20:53:47 +0100913 printf("\t--section=name\tOnly run specified section in job file\n");
Jens Axboe2b386d22008-03-26 10:32:57 +0100914 printf("\t--alloc-size=kb\tSet smalloc pool to this size in kb"
915 " (def 1024)\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200916}
917
Jens Axboe79e48f72008-02-01 20:37:09 +0100918#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +0100919struct debug_level debug_levels[] = {
Jens Axboebd6f78b2008-02-01 20:27:52 +0100920 { .name = "process", .shift = FD_PROCESS, },
921 { .name = "file", .shift = FD_FILE, },
922 { .name = "io", .shift = FD_IO, },
923 { .name = "mem", .shift = FD_MEM, },
924 { .name = "blktrace", .shift = FD_BLKTRACE },
925 { .name = "verify", .shift = FD_VERIFY },
Jens Axboe84422ac2008-02-19 20:10:26 +0100926 { .name = "random", .shift = FD_RANDOM },
Jens Axboea3d741f2008-02-27 18:32:33 +0100927 { .name = "parse", .shift = FD_PARSE },
Jens Axboecd991b92008-03-07 13:19:35 +0100928 { .name = "diskutil", .shift = FD_DISKUTIL },
Jens Axboe5e1d3062008-05-23 11:55:53 +0200929 { .name = "job", .shift = FD_JOB },
Jens Axboe29adda32009-01-05 19:06:39 +0100930 { .name = "mutex", .shift = FD_MUTEX },
Jens Axboe02444ad2008-10-07 11:33:00 +0200931 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +0100932};
933
Jens Axboec09823a2008-02-19 20:16:57 +0100934static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +0100935{
936 struct debug_level *dl;
937 char *p = (char *) string;
938 char *opt;
939 int i;
940
941 if (!strcmp(string, "?") || !strcmp(string, "help")) {
942 int i;
943
944 log_info("fio: dumping debug options:");
945 for (i = 0; debug_levels[i].name; i++) {
946 dl = &debug_levels[i];
947 log_info("%s,", dl->name);
948 }
Jens Axboebd6f78b2008-02-01 20:27:52 +0100949 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +0100950 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +0100951 }
952
953 while ((opt = strsep(&p, ",")) != NULL) {
954 int found = 0;
955
Jens Axboe5e1d3062008-05-23 11:55:53 +0200956 if (!strncmp(opt, "all", 3)) {
957 log_info("fio: set all debug options\n");
958 fio_debug = ~0UL;
959 continue;
960 }
961
Jens Axboeee56ad52008-02-01 10:30:20 +0100962 for (i = 0; debug_levels[i].name; i++) {
963 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +0200964 found = !strncmp(opt, dl->name, strlen(dl->name));
965 if (!found)
966 continue;
967
968 if (dl->shift == FD_JOB) {
969 opt = strchr(opt, ':');
970 if (!opt) {
971 log_err("fio: missing job number\n");
972 break;
973 }
974 opt++;
975 fio_debug_jobno = atoi(opt);
976 log_info("fio: set debug jobno %d\n",
977 fio_debug_jobno);
978 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +0100979 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100980 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +0100981 }
Jens Axboe5e1d3062008-05-23 11:55:53 +0200982 break;
Jens Axboeee56ad52008-02-01 10:30:20 +0100983 }
984
985 if (!found)
986 log_err("fio: debug mask %s not found\n", opt);
987 }
Jens Axboec09823a2008-02-19 20:16:57 +0100988 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +0100989}
Jens Axboe79e48f72008-02-01 20:37:09 +0100990#else
Jens Axboe69b98d42008-05-30 22:25:32 +0200991static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +0100992{
993 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +0100994 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +0100995}
996#endif
Jens Axboeee56ad52008-02-01 10:30:20 +0100997
Jens Axboe214e1ec2007-03-15 10:48:13 +0100998static int parse_cmd_line(int argc, char *argv[])
999{
1000 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +01001001 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001002
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001003 while ((c = getopt_long_only(argc, argv, "", l_opts, &lidx)) != -1) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001004 switch (c) {
Jens Axboe2b386d22008-03-26 10:32:57 +01001005 case 'a':
1006 smalloc_pool_size = atoi(optarg);
1007 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001008 case 't':
1009 def_timeout = atoi(optarg);
1010 break;
1011 case 'l':
1012 write_lat_log = 1;
1013 break;
1014 case 'w':
1015 write_bw_log = 1;
1016 break;
1017 case 'o':
1018 f_out = fopen(optarg, "w+");
1019 if (!f_out) {
1020 perror("fopen output");
1021 exit(1);
1022 }
1023 f_err = f_out;
1024 break;
1025 case 'm':
1026 terse_output = 1;
1027 break;
1028 case 'h':
Jens Axboe45378b32007-12-19 13:54:38 +01001029 usage(argv[0]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001030 exit(0);
1031 case 'c':
1032 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +02001033 case 's':
1034 dump_cmdline = 1;
1035 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001036 case 'r':
1037 read_only = 1;
1038 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001039 case 'v':
1040 printf("%s\n", fio_version_string);
1041 exit(0);
Aaron Carrolle592a062007-09-14 09:49:41 +02001042 case 'e':
1043 if (!strcmp("always", optarg))
1044 eta_print = FIO_ETA_ALWAYS;
1045 else if (!strcmp("never", optarg))
1046 eta_print = FIO_ETA_NEVER;
1047 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001048 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001049 if (set_debug(optarg))
1050 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001051 break;
Jens Axboe01f06b62008-02-18 20:53:47 +01001052 case 'x':
1053 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001054 log_err("fio: can't use global as only "
1055 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001056 do_exit++;
1057 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001058 break;
1059 }
1060 if (job_section)
1061 free(job_section);
1062 job_section = strdup(optarg);
1063 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001064 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001065 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001066 char *val = optarg;
1067
1068 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001069 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001070 if (ret) {
1071 put_job(td);
1072 return 0;
1073 }
1074 td = NULL;
1075 }
1076 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001077 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001078 int global = 0;
1079
Jens Axboe01f06b62008-02-18 20:53:47 +01001080 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001081 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001082
Jens Axboe01f06b62008-02-18 20:53:47 +01001083 if (is_section && skip_this_section(val))
1084 continue;
1085
Jens Axboe214e1ec2007-03-15 10:48:13 +01001086 td = get_new_job(global, &def_thread);
1087 if (!td)
1088 return 0;
1089 }
1090
1091 ret = fio_cmd_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001092 break;
1093 }
1094 default:
Jens Axboec09823a2008-02-19 20:16:57 +01001095 do_exit++;
1096 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001097 break;
1098 }
1099 }
1100
Jens Axboec09823a2008-02-19 20:16:57 +01001101 if (do_exit)
1102 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01001103
Jens Axboe214e1ec2007-03-15 10:48:13 +01001104 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +01001105 if (!ret)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001106 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe7d6a8902008-02-18 20:59:18 +01001107 if (ret)
1108 put_job(td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001109 }
1110
1111 while (optind < argc) {
1112 ini_idx++;
1113 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1114 ini_file[ini_idx - 1] = strdup(argv[optind]);
1115 optind++;
1116 }
1117
1118 return ini_idx;
1119}
1120
Jens Axboeebac4652005-12-08 15:25:21 +01001121int parse_options(int argc, char *argv[])
1122{
Jens Axboe972cfd22006-06-09 11:08:56 +02001123 int job_files, i;
1124
Jens Axboeb4692822006-10-27 13:43:22 +02001125 f_out = stdout;
1126 f_err = stderr;
1127
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001128 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02001129
Jens Axboeebac4652005-12-08 15:25:21 +01001130 if (setup_thread_area())
1131 return 1;
1132 if (fill_def_thread())
1133 return 1;
1134
Jens Axboe972cfd22006-06-09 11:08:56 +02001135 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001136
Jens Axboe972cfd22006-06-09 11:08:56 +02001137 for (i = 0; i < job_files; i++) {
1138 if (fill_def_thread())
1139 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001140 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001141 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001142 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001143 }
Jens Axboeebac4652005-12-08 15:25:21 +01001144
Jens Axboe88c6ed82006-06-09 11:28:10 +02001145 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +01001146 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001147
1148 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001149 if (dump_cmdline)
1150 return 0;
1151
Jens Axboeb4692822006-10-27 13:43:22 +02001152 log_err("No jobs defined(s)\n");
Jens Axboe45378b32007-12-19 13:54:38 +01001153 usage(argv[0]);
Jens Axboeb4692822006-10-27 13:43:22 +02001154 return 1;
1155 }
1156
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001157 if (def_thread.o.gtod_offload) {
1158 fio_gtod_init();
1159 fio_gtod_offload = 1;
1160 fio_gtod_cpu = def_thread.o.gtod_cpu;
1161 }
1162
Jens Axboeebac4652005-12-08 15:25:21 +01001163 return 0;
1164}