blob: 80c329d3e454428a99a88046c4e605c47b75f9fb [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 Axboe4f5af7b2009-06-03 08:45:40 +020021#include "verify.h"
Jens Axboeebac4652005-12-08 15:25:21 +010022
Jens Axboee9f98a72009-06-03 11:36:29 +020023static char fio_version_string[] = "fio 1.27";
Jens Axboe214e1ec2007-03-15 10:48:13 +010024
Jens Axboeee738492007-01-10 11:23:16 +010025#define FIO_RANDSEED (0xb1899bedUL)
Jens Axboeebac4652005-12-08 15:25:21 +010026
Jens Axboe214e1ec2007-03-15 10:48:13 +010027static char **ini_file;
28static int max_jobs = MAX_JOBS;
Jens Axboecca73aa2007-04-04 11:09:19 +020029static int dump_cmdline;
Jens Axboee1f36502006-10-27 10:54:08 +020030
Jens Axboebe4ecfd2008-12-08 14:10:52 +010031static struct thread_data def_thread;
Jens Axboe214e1ec2007-03-15 10:48:13 +010032struct thread_data *threads = NULL;
Jens Axboee1f36502006-10-27 10:54:08 +020033
Jens Axboe214e1ec2007-03-15 10:48:13 +010034int exitall_on_terminate = 0;
35int terse_output = 0;
Aaron Carrolle592a062007-09-14 09:49:41 +020036int eta_print;
Jens Axboe214e1ec2007-03-15 10:48:13 +010037unsigned long long mlock_size = 0;
38FILE *f_out = NULL;
39FILE *f_err = NULL;
Jens Axboe01f06b62008-02-18 20:53:47 +010040char *job_section = NULL;
Jens Axboeee738492007-01-10 11:23:16 +010041
Jens Axboe214e1ec2007-03-15 10:48:13 +010042int write_bw_log = 0;
Jens Axboe4241ea82007-09-12 08:18:36 +020043int read_only = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020044
Jens Axboe5ec10ea2008-03-06 15:42:00 +010045static int def_timeout;
46static int write_lat_log;
Jens Axboe214e1ec2007-03-15 10:48:13 +010047
48static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020049
Jens Axboeee56ad52008-02-01 10:30:20 +010050unsigned long fio_debug = 0;
Jens Axboe5e1d3062008-05-23 11:55:53 +020051unsigned int fio_debug_jobno = -1;
52unsigned int *fio_debug_jobp = NULL;
Jens Axboeee56ad52008-02-01 10:30:20 +010053
Jens Axboeb4692822006-10-27 13:43:22 +020054/*
55 * Command line options. These will contain the above, plus a few
56 * extra that only pertain to fio itself and not jobs.
57 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +010058static struct option l_opts[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020059 {
60 .name = "output",
61 .has_arg = required_argument,
62 .val = 'o',
63 },
64 {
65 .name = "timeout",
66 .has_arg = required_argument,
67 .val = 't',
68 },
69 {
70 .name = "latency-log",
71 .has_arg = required_argument,
72 .val = 'l',
73 },
74 {
75 .name = "bandwidth-log",
76 .has_arg = required_argument,
77 .val = 'b',
78 },
79 {
80 .name = "minimal",
81 .has_arg = optional_argument,
82 .val = 'm',
83 },
84 {
85 .name = "version",
86 .has_arg = no_argument,
87 .val = 'v',
88 },
89 {
Jens Axboefd28ca42007-01-09 21:20:13 +010090 .name = "help",
91 .has_arg = no_argument,
92 .val = 'h',
93 },
94 {
95 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +010096 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +010097 .val = 'c',
98 },
99 {
Jens Axboecca73aa2007-04-04 11:09:19 +0200100 .name = "showcmd",
101 .has_arg = no_argument,
Jens Axboe724e4432007-09-11 20:02:05 +0200102 .val = 's',
103 },
104 {
105 .name = "readonly",
106 .has_arg = no_argument,
107 .val = 'r',
Jens Axboecca73aa2007-04-04 11:09:19 +0200108 },
109 {
Aaron Carrolle592a062007-09-14 09:49:41 +0200110 .name = "eta",
111 .has_arg = required_argument,
112 .val = 'e',
113 },
114 {
Jens Axboeee56ad52008-02-01 10:30:20 +0100115 .name = "debug",
116 .has_arg = required_argument,
117 .val = 'd',
118 },
119 {
Jens Axboe01f06b62008-02-18 20:53:47 +0100120 .name = "section",
121 .has_arg = required_argument,
122 .val = 'x',
123 },
124 {
Jens Axboe2b386d22008-03-26 10:32:57 +0100125 .name = "alloc-size",
126 .has_arg = required_argument,
127 .val = 'a',
128 },
129 {
Jens Axboeb4692822006-10-27 13:43:22 +0200130 .name = NULL,
131 },
132};
133
Joel Becker9728ce32007-03-01 08:24:39 +0100134FILE *get_f_out()
135{
136 return f_out;
137}
138
139FILE *get_f_err()
140{
141 return f_err;
142}
143
Jens Axboe906c8d72006-06-13 09:37:56 +0200144/*
145 * Return a free job structure.
146 */
Jens Axboeebac4652005-12-08 15:25:21 +0100147static struct thread_data *get_new_job(int global, struct thread_data *parent)
148{
149 struct thread_data *td;
150
151 if (global)
152 return &def_thread;
153 if (thread_number >= max_jobs)
154 return NULL;
155
156 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200157 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100158
Jens Axboecade3ef2007-03-23 15:29:45 +0100159 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100160 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100161
Jens Axboeebac4652005-12-08 15:25:21 +0100162 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100163 return td;
164}
165
166static void put_job(struct thread_data *td)
167{
Jens Axboe549577a2006-10-30 12:23:41 +0100168 if (td == &def_thread)
169 return;
170
Jens Axboe16edf252007-02-10 14:59:22 +0100171 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100172 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100173
Jens Axboeebac4652005-12-08 15:25:21 +0100174 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
175 thread_number--;
176}
177
Jens Axboe581e7142009-06-09 12:47:16 +0200178static int __setup_rate(struct thread_data *td, enum fio_ddir ddir)
Jens Axboe127f6862007-03-15 12:09:57 +0100179{
Jens Axboe581e7142009-06-09 12:47:16 +0200180 unsigned int bs = td->o.min_bs[ddir];
Jens Axboe127f6862007-03-15 12:09:57 +0100181 unsigned long long rate;
Jens Axboe581e7142009-06-09 12:47:16 +0200182 unsigned long ios_per_msec;
Jens Axboe127f6862007-03-15 12:09:57 +0100183
Jens Axboe581e7142009-06-09 12:47:16 +0200184 if (td->o.rate[ddir]) {
185 rate = td->o.rate[ddir];
186 ios_per_msec = (rate * 1000LL) / bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100187 } else
Jens Axboe581e7142009-06-09 12:47:16 +0200188 ios_per_msec = td->o.rate_iops[ddir] * 1000UL;
Jens Axboe127f6862007-03-15 12:09:57 +0100189
Jens Axboe581e7142009-06-09 12:47:16 +0200190 if (!ios_per_msec) {
Jens Axboe127f6862007-03-15 12:09:57 +0100191 log_err("rate lower than supported\n");
192 return -1;
193 }
194
Jens Axboe581e7142009-06-09 12:47:16 +0200195 td->rate_usec_cycle[ddir] = 1000000000ULL / ios_per_msec;
196 td->rate_pending_usleep[ddir] = 0;
Jens Axboe127f6862007-03-15 12:09:57 +0100197 return 0;
198}
199
Jens Axboe581e7142009-06-09 12:47:16 +0200200static int setup_rate(struct thread_data *td)
201{
202 int ret = 0;
203
204 if (td->o.rate[DDIR_READ] || td->o.rate_iops[DDIR_READ])
205 ret = __setup_rate(td, DDIR_READ);
206 if (td->o.rate[DDIR_WRITE] || td->o.rate_iops[DDIR_WRITE])
207 ret |= __setup_rate(td, DDIR_WRITE);
208
209 return ret;
210}
211
Jens Axboe83472392009-02-19 21:32:12 +0100212static int fixed_block_size(struct thread_options *o)
213{
214 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
215 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
216 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE];
217}
218
Jens Axboedad915e2006-10-27 11:10:18 +0200219/*
220 * Lazy way of fixing up options that depend on each other. We could also
221 * define option callback handlers, but this is easier.
222 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100223static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200224{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100225 struct thread_options *o = &td->o;
Jens Axboedad915e2006-10-27 11:10:18 +0200226
Jens Axboef356d012009-01-05 09:56:29 +0100227#ifndef FIO_HAVE_PSHARED_MUTEX
228 if (!td->o.use_thread) {
229 log_info("fio: this platform does not support process shared"
230 " mutexes, forcing use of threads. Use the 'thread'"
231 " option to get rid of this warning.\n");
232 td->o.use_thread = 1;
233 }
234#endif
235
Jens Axboebe4ecfd2008-12-08 14:10:52 +0100236#ifndef FIO_HAVE_CPU_AFFINITY
237 if (td->o.gtod_cpu) {
238 log_err("fio: platform must support CPU affinity for"
239 "gettimeofday() offloading\n");
240 return 1;
241 }
242#endif
243
Jens Axboe724e4432007-09-11 20:02:05 +0200244 if (read_only && td_write(td)) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100245 log_err("fio: job <%s> has write bit set, but fio is in"
246 " read-only mode\n", td->o.name);
Jens Axboe724e4432007-09-11 20:02:05 +0200247 return 1;
248 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100249
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100250 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200251 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100252 free(o->write_iolog_file);
253 o->write_iolog_file = NULL;
Jens Axboe076efc72006-10-27 11:24:25 +0200254 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100255
Jens Axboe16b462a2006-10-30 12:35:18 +0100256 /*
257 * only really works for sequential io for now, and with 1 file
258 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100259 if (o->zone_size && td_random(td) && o->open_files == 1)
260 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100261
262 /*
263 * Reads can do overwrites, we always need to pre-create the file
264 */
265 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100266 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100267
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100268 if (!o->min_bs[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100269 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100270 if (!o->max_bs[DDIR_READ])
271 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
272 if (!o->min_bs[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100273 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100274 if (!o->max_bs[DDIR_WRITE])
275 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100276
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100277 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100278
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100279 /*
280 * For random IO, allow blockalign offset other than min_bs.
281 */
282 if (!o->ba[DDIR_READ] || !td_random(td))
283 o->ba[DDIR_READ] = o->min_bs[DDIR_READ];
284 if (!o->ba[DDIR_WRITE] || !td_random(td))
285 o->ba[DDIR_WRITE] = o->min_bs[DDIR_WRITE];
286
287 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
288 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE]) &&
289 !td->o.norandommap) {
290 log_err("fio: Any use of blockalign= turns off randommap\n");
291 td->o.norandommap = 1;
292 }
293
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100294 if (!o->file_size_high)
295 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100296
Jens Axboe83472392009-02-19 21:32:12 +0100297 if (o->norandommap && o->verify != VERIFY_NONE
298 && !fixed_block_size(o)) {
299 log_err("fio: norandommap given for variable block sizes, "
300 "verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100301 o->verify = VERIFY_NONE;
Jens Axboebb8895e2006-10-30 15:14:48 +0100302 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100303 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100304 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100305
306 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100307 * thinktime_spin must be less than thinktime
308 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100309 if (o->thinktime_spin > o->thinktime)
310 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100311
312 /*
313 * The low water mark cannot be bigger than the iodepth
314 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100315 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100316 /*
317 * syslet work around - if the workload is sequential,
318 * we want to let the queue drain all the way down to
319 * avoid seeking between async threads
320 */
321 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100322 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100323 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100324 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100325 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100326
327 /*
328 * If batch number isn't set, default to the same as iodepth
329 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100330 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
331 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100332
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100333 if (o->nr_files > td->files_index)
334 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100335
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100336 if (o->open_files > o->nr_files || !o->open_files)
337 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100338
Jens Axboe581e7142009-06-09 12:47:16 +0200339 if (((o->rate[0] + o->rate[1]) && (o->rate_iops[0] + o->rate_iops[1]))||
340 ((o->ratemin[0] + o->ratemin[1]) && (o->rate_iops_min[0] +
341 o->rate_iops_min[1]))) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100342 log_err("fio: rate and rate_iops are mutually exclusive\n");
343 return 1;
344 }
Jens Axboe581e7142009-06-09 12:47:16 +0200345 if ((o->rate[0] < o->ratemin[0]) || (o->rate[1] < o->ratemin[1]) ||
346 (o->rate_iops[0] < o->rate_iops_min[0]) ||
347 (o->rate_iops[1] < o->rate_iops_min[1])) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100348 log_err("fio: minimum rate exceeds rate\n");
349 return 1;
350 }
351
Jens Axboecf4464c2007-04-17 20:14:42 +0200352 if (!o->timeout && o->time_based) {
353 log_err("fio: time_based requires a runtime/timeout setting\n");
354 o->time_based = 0;
355 }
356
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100357 if (o->fill_device && !o->size)
Jens Axboe5921e802008-05-30 15:02:38 +0200358 o->size = -1ULL;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100359
Jens Axboe79713142008-02-06 14:40:14 +0100360 if (td_rw(td) && td->o.verify != VERIFY_NONE)
361 log_info("fio: mixed read/write workload with verify. May not "
362 "work as expected, unless you pre-populated the file\n");
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100363
Jens Axboe41ccd842008-05-22 09:17:33 +0200364 if (td->o.verify != VERIFY_NONE)
365 td->o.refill_buffers = 1;
366
Jens Axboe34f1c042009-06-02 14:19:25 +0200367 if (td->o.pre_read)
368 td->o.invalidate_cache = 0;
369
Jens Axboe4e991c22007-03-15 11:41:11 +0100370 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200371}
372
Jens Axboe906c8d72006-06-13 09:37:56 +0200373/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100374 * This function leaks the buffer
375 */
376static char *to_kmg(unsigned int val)
377{
378 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100379 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100380 char *p = post;
381
Jens Axboe245142f2006-11-08 12:49:21 +0100382 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100383 if (val & 1023)
384 break;
385
386 val >>= 10;
387 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100388 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100389
390 snprintf(buf, 31, "%u%c", val, *p);
391 return buf;
392}
393
Jens Axboe09629a92007-03-09 09:00:06 +0100394/* External engines are specified by "external:name.o") */
395static const char *get_engine_name(const char *str)
396{
397 char *p = strstr(str, ":");
398
399 if (!p)
400 return str;
401
402 p++;
403 strip_blank_front(&p);
404 strip_blank_end(p);
405 return p;
406}
407
Jens Axboee132cba2007-03-14 14:23:54 +0100408static int exists_and_not_file(const char *filename)
409{
410 struct stat sb;
411
412 if (lstat(filename, &sb) == -1)
413 return 0;
414
415 if (S_ISREG(sb.st_mode))
416 return 0;
417
418 return 1;
419}
420
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200421void td_fill_rand_seeds(struct thread_data *td)
422{
423 os_random_seed(td->rand_seeds[0], &td->bsrange_state);
424 os_random_seed(td->rand_seeds[1], &td->verify_state);
425 os_random_seed(td->rand_seeds[2], &td->rwmix_state);
426
427 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
428 os_random_seed(td->rand_seeds[3], &td->next_file_state);
429
430 os_random_seed(td->rand_seeds[5], &td->file_size_state);
431
432 if (!td_random(td))
433 return;
434
435 if (td->o.rand_repeatable)
436 td->rand_seeds[4] = FIO_RANDSEED * td->thread_number;
437
438 os_random_seed(td->rand_seeds[4], &td->random_state);
439}
440
Jens Axboef8977ee2006-11-06 14:03:03 +0100441/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100442 * Initialize the various random states we need (random io, block size ranges,
443 * read/write mix, etc).
444 */
445static int init_random_state(struct thread_data *td)
446{
Jens Axboe68727072007-03-15 20:49:25 +0100447 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100448
449 fd = open("/dev/urandom", O_RDONLY);
450 if (fd == -1) {
451 td_verror(td, errno, "open");
452 return 1;
453 }
454
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200455 if (read(fd, td->rand_seeds, sizeof(td->rand_seeds)) <
456 (int) sizeof(td->rand_seeds)) {
Jens Axboe9c60ce62007-03-15 09:14:47 +0100457 td_verror(td, EIO, "read");
458 close(fd);
459 return 1;
460 }
461
462 close(fd);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200463 td_fill_rand_seeds(td);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100464 return 0;
465}
466
Jens Axboe9c60ce62007-03-15 09:14:47 +0100467/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200468 * Adds a job to the list of things todo. Sanitizes the various options
469 * to make sure we don't have conflicts, and initializes various
470 * members of td.
471 */
Jens Axboe75154842006-06-01 13:56:09 +0200472static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100473{
Jens Axboe413dd452007-02-23 09:26:09 +0100474 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
475 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100476 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100477 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100478 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100479 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100480
Jens Axboeebac4652005-12-08 15:25:21 +0100481 /*
482 * the def_thread is just for options, it's not a real job
483 */
484 if (td == &def_thread)
485 return 0;
486
Jens Axboecca73aa2007-04-04 11:09:19 +0200487 /*
488 * if we are just dumping the output command line, don't add the job
489 */
490 if (dump_cmdline) {
491 put_job(td);
492 return 0;
493 }
494
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100495 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100496 td->io_ops = load_ioengine(td, engine);
497 if (!td->io_ops) {
498 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100499 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100500 }
Jens Axboedf641192006-10-12 07:55:41 +0200501
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100502 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100503 nr_thread++;
504 else
505 nr_process++;
506
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100507 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100508 td->io_ops->flags |= FIO_RAWIO;
509
Jens Axboee132cba2007-03-14 14:23:54 +0100510 file_alloced = 0;
Jens Axboe691c8fb2008-03-07 14:26:26 +0100511 if (!td->o.filename && !td->files_index && !td->o.read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +0100512 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100513
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100514 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100515 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100516 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100517 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100518 sprintf(fname, "%s.%d.%d", jobname,
519 td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100520 add_file(td, fname);
521 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100522 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100523 }
Jens Axboeebac4652005-12-08 15:25:21 +0100524
Jens Axboe4e991c22007-03-15 11:41:11 +0100525 if (fixup_options(td))
526 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100527
Jens Axboe07eb79d2007-04-12 13:02:38 +0200528 if (td->io_ops->flags & FIO_DISKLESSIO) {
529 struct fio_file *f;
530
531 for_each_file(td, f, i)
532 f->real_file_size = -1ULL;
533 }
534
Jens Axboecdd18ad2008-02-27 18:58:00 +0100535 td->mutex = fio_mutex_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100536
Jens Axboe756867b2007-03-06 15:19:24 +0100537 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
538 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
539 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboe1e3d53a2007-03-22 19:01:48 +0100540 td->ddir_nr = td->o.ddir_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100541
Jens Axboeb3d62a72007-03-20 14:23:26 +0100542 if ((td->o.stonewall || td->o.numjobs > 1 || td->o.new_group)
543 && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100544 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100545 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100546 }
Jens Axboeebac4652005-12-08 15:25:21 +0100547
548 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100549 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100550
Jens Axboe9c60ce62007-03-15 09:14:47 +0100551 if (init_random_state(td))
552 goto err;
553
Jens Axboeebac4652005-12-08 15:25:21 +0100554 if (setup_rate(td))
555 goto err;
556
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100557 if (td->o.write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100558 setup_log(&td->ts.slat_log);
559 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100560 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100561 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100562 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100563
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100564 if (!td->o.name)
565 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200566
Jens Axboec6ae0a52006-06-12 11:04:44 +0200567 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200568 if (!job_add_num) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100569 if (!strcmp(td->io_ops->name, "cpuio")) {
570 log_info("%s: ioengine=cpu, cpuload=%u,"
571 " cpucycle=%u\n", td->o.name,
572 td->o.cpuload,
573 td->o.cpucycle);
574 } else {
Jens Axboef8977ee2006-11-06 14:03:03 +0100575 char *c1, *c2, *c3, *c4;
576
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100577 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
578 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
579 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
580 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100581
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100582 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s,"
583 " ioengine=%s, iodepth=%u\n",
584 td->o.name, td->groupid,
585 ddir_str[td->o.td_ddir],
586 c1, c2, c3, c4,
587 td->io_ops->name,
588 td->o.iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100589
590 free(c1);
591 free(c2);
592 free(c3);
593 free(c4);
594 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200595 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100596 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200597 }
Jens Axboeebac4652005-12-08 15:25:21 +0100598
599 /*
600 * recurse add identical jobs, clear numjobs and stonewall options
601 * as they don't apply to sub-jobs
602 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100603 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100604 while (--numjobs) {
605 struct thread_data *td_new = get_new_job(0, td);
606
607 if (!td_new)
608 goto err;
609
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100610 td_new->o.numjobs = 1;
611 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200612 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100613
614 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100615 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100616 td_new->files_index = 0;
Jens Axboe4e6ea2f2009-03-04 20:17:22 +0100617 td_new->files_size = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100618 td_new->files = NULL;
619 }
620
Jens Axboe75154842006-06-01 13:56:09 +0200621 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100622
Jens Axboe75154842006-06-01 13:56:09 +0200623 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100624 goto err;
625 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100626
Jens Axboeebac4652005-12-08 15:25:21 +0100627 return 0;
628err:
629 put_job(td);
630 return -1;
631}
632
Jens Axboe01f06b62008-02-18 20:53:47 +0100633static int skip_this_section(const char *name)
634{
635 if (!job_section)
636 return 0;
637 if (!strncmp(name, "global", 6))
638 return 0;
639
Jens Axboeb36beb62009-03-05 21:14:21 +0100640 return strcmp(job_section, name);
Jens Axboe01f06b62008-02-18 20:53:47 +0100641}
642
Jens Axboeebac4652005-12-08 15:25:21 +0100643static int is_empty_or_comment(char *line)
644{
645 unsigned int i;
646
647 for (i = 0; i < strlen(line); i++) {
648 if (line[i] == ';')
649 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100650 if (line[i] == '#')
651 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100652 if (!isspace(line[i]) && !iscntrl(line[i]))
653 return 0;
654 }
655
656 return 1;
657}
658
Jens Axboe313cb202006-12-21 09:50:00 +0100659/*
Jens Axboe07261982006-06-07 10:51:12 +0200660 * This is our [ini] type file parser.
661 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100662static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100663{
Jens Axboee1f36502006-10-27 10:54:08 +0200664 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100665 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100666 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100667 FILE *f;
668 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200669 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200670 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +0200671 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +0100672 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200673 char **opts;
674 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +0100675
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200676 if (!strcmp(file, "-"))
677 f = stdin;
678 else
679 f = fopen(file, "r");
680
Jens Axboeebac4652005-12-08 15:25:21 +0100681 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200682 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100683 return 1;
684 }
685
686 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200687
688 /*
689 * it's really 256 + small bit, 280 should suffice
690 */
691 name = malloc(280);
692 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100693
Jens Axboe3b8b7132008-06-10 19:46:23 +0200694 alloc_opts = 8;
695 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +0200696 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200697
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200698 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100699 do {
Jens Axboeccf8f122007-09-27 10:48:55 +0200700 /*
701 * if skip_fgets is set, we already have loaded a line we
702 * haven't handled.
703 */
704 if (!skip_fgets) {
705 p = fgets(string, 4095, f);
706 if (!p)
707 break;
708 }
gurudas paicdc7f192007-03-29 10:10:56 +0200709
Jens Axboeccf8f122007-09-27 10:48:55 +0200710 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +0200711 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800712 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200713
Jens Axboeebac4652005-12-08 15:25:21 +0100714 if (is_empty_or_comment(p))
715 continue;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800716 if (sscanf(p, "[%255s]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100717 if (inside_skip)
718 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100719 log_err("fio: option <%s> outside of [] job section\n",
720 p);
Jens Axboe088b4202007-07-19 14:53:01 +0200721 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800722 }
Jens Axboeebac4652005-12-08 15:25:21 +0100723
Jens Axboe01f06b62008-02-18 20:53:47 +0100724 if (skip_this_section(name)) {
725 inside_skip = 1;
726 continue;
727 } else
728 inside_skip = 0;
729
Jens Axboeebac4652005-12-08 15:25:21 +0100730 global = !strncmp(name, "global", 6);
731
732 name[strlen(name) - 1] = '\0';
733
Jens Axboecca73aa2007-04-04 11:09:19 +0200734 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200735 if (first_sect)
736 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200737 if (!global)
738 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200739 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200740 }
741
Jens Axboeebac4652005-12-08 15:25:21 +0100742 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200743 if (!td) {
744 ret = 1;
745 break;
746 }
Jens Axboeebac4652005-12-08 15:25:21 +0100747
Jens Axboe972cfd22006-06-09 11:08:56 +0200748 /*
749 * Seperate multiple job files by a stonewall
750 */
Jens Axboef9481912006-06-09 11:37:28 +0200751 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100752 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200753 stonewall = 0;
754 }
755
Jens Axboe3b8b7132008-06-10 19:46:23 +0200756 num_opts = 0;
757 memset(opts, 0, alloc_opts * sizeof(char *));
758
Jens Axboeebac4652005-12-08 15:25:21 +0100759 while ((p = fgets(string, 4096, f)) != NULL) {
760 if (is_empty_or_comment(p))
761 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200762
Jens Axboeb6754f92006-05-30 14:29:32 +0200763 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100764
Jens Axboeccf8f122007-09-27 10:48:55 +0200765 /*
766 * new section, break out and make sure we don't
767 * fgets() a new line at the top.
768 */
769 if (p[0] == '[') {
770 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100771 break;
Jens Axboeccf8f122007-09-27 10:48:55 +0200772 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100773
Jens Axboe4ae3f762006-05-30 13:35:14 +0200774 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200775
Jens Axboe3b8b7132008-06-10 19:46:23 +0200776 if (num_opts == alloc_opts) {
777 alloc_opts <<= 1;
778 opts = realloc(opts,
779 alloc_opts * sizeof(char *));
780 }
781
782 opts[num_opts] = strdup(p);
783 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +0100784 }
Jens Axboeebac4652005-12-08 15:25:21 +0100785
Jens Axboe3b8b7132008-06-10 19:46:23 +0200786 ret = fio_options_parse(td, opts, num_opts);
787 if (!ret) {
788 if (dump_cmdline)
789 for (i = 0; i < num_opts; i++)
790 log_info("--%s ", opts[i]);
791
Jens Axboe45410ac2006-06-07 11:10:39 +0200792 ret = add_job(td, name, 0);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200793 } else {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100794 log_err("fio: job %s dropped\n", name);
795 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200796 }
Jens Axboe3b8b7132008-06-10 19:46:23 +0200797
798 for (i = 0; i < num_opts; i++)
799 free(opts[i]);
800 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100801 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100802
Jens Axboecca73aa2007-04-04 11:09:19 +0200803 if (dump_cmdline)
804 log_info("\n");
805
Jens Axboe3b8b7132008-06-10 19:46:23 +0200806 for (i = 0; i < num_opts; i++)
807 free(opts[i]);
808
Jens Axboeebac4652005-12-08 15:25:21 +0100809 free(string);
810 free(name);
Jens Axboe25775942008-06-10 20:26:06 +0200811 free(opts);
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200812 if (f != stdin)
813 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200814 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100815}
816
817static int fill_def_thread(void)
818{
819 memset(&def_thread, 0, sizeof(def_thread));
820
Jens Axboe375b2692007-05-22 09:13:02 +0200821 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100822
823 /*
Jens Axboeee738492007-01-10 11:23:16 +0100824 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100825 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100826 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100827
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100828 def_thread.o.timeout = def_timeout;
829 def_thread.o.write_bw_log = write_bw_log;
830 def_thread.o.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +0100831
Jens Axboeebac4652005-12-08 15:25:21 +0100832 return 0;
833}
834
Jens Axboeebac4652005-12-08 15:25:21 +0100835static void free_shm(void)
836{
837 struct shmid_ds sbuf;
838
839 if (threads) {
Jens Axboe5e1d3062008-05-23 11:55:53 +0200840 void *tp = threads;
841
Jens Axboeebac4652005-12-08 15:25:21 +0100842 threads = NULL;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200843 file_hash_exit();
844 fio_debug_jobp = NULL;
845 shmdt(tp);
Jens Axboeebac4652005-12-08 15:25:21 +0100846 shmctl(shm_id, IPC_RMID, &sbuf);
847 }
Jens Axboe2e5cdb12008-03-01 18:52:49 +0100848
849 scleanup();
Jens Axboeebac4652005-12-08 15:25:21 +0100850}
851
Jens Axboe906c8d72006-06-13 09:37:56 +0200852/*
853 * The thread area is shared between the main process and the job
854 * threads/processes. So setup a shared memory segment that will hold
Jens Axboe380065a2008-03-01 18:56:24 +0100855 * all the job info. We use the end of the region for keeping track of
856 * open files across jobs, for file sharing.
Jens Axboe906c8d72006-06-13 09:37:56 +0200857 */
Jens Axboeebac4652005-12-08 15:25:21 +0100858static int setup_thread_area(void)
859{
Jens Axboe380065a2008-03-01 18:56:24 +0100860 void *hash;
861
Jens Axboeebac4652005-12-08 15:25:21 +0100862 /*
863 * 1024 is too much on some machines, scale max_jobs if
864 * we get a failure that looks like too large a shm segment
865 */
866 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200867 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100868
Jens Axboe380065a2008-03-01 18:56:24 +0100869 size += file_hash_size;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200870 size += sizeof(unsigned int);
Jens Axboe380065a2008-03-01 18:56:24 +0100871
Jens Axboe906c8d72006-06-13 09:37:56 +0200872 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100873 if (shm_id != -1)
874 break;
875 if (errno != EINVAL) {
876 perror("shmget");
877 break;
878 }
879
880 max_jobs >>= 1;
881 } while (max_jobs);
882
883 if (shm_id == -1)
884 return 1;
885
886 threads = shmat(shm_id, NULL, 0);
887 if (threads == (void *) -1) {
888 perror("shmat");
889 return 1;
890 }
891
Jens Axboe1f809d12007-10-25 18:34:02 +0200892 memset(threads, 0, max_jobs * sizeof(struct thread_data));
Jens Axboe380065a2008-03-01 18:56:24 +0100893 hash = (void *) threads + max_jobs * sizeof(struct thread_data);
Jens Axboe5e1d3062008-05-23 11:55:53 +0200894 fio_debug_jobp = (void *) hash + file_hash_size;
895 *fio_debug_jobp = -1;
Jens Axboe380065a2008-03-01 18:56:24 +0100896 file_hash_init(hash);
Jens Axboeebac4652005-12-08 15:25:21 +0100897 atexit(free_shm);
898 return 0;
899}
900
Jens Axboe45378b32007-12-19 13:54:38 +0100901static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +0200902{
Jens Axboe214e1ec2007-03-15 10:48:13 +0100903 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +0100904 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboeee56ad52008-02-01 10:30:20 +0100905 printf("\t--debug=options\tEnable debug logging\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100906 printf("\t--output\tWrite output to file\n");
907 printf("\t--timeout\tRuntime in seconds\n");
908 printf("\t--latency-log\tGenerate per-job latency logs\n");
909 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
910 printf("\t--minimal\tMinimal (terse) output\n");
911 printf("\t--version\tPrint version info and exit\n");
912 printf("\t--help\t\tPrint this page\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100913 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of"
914 " them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +0200915 printf("\t--showcmd\tTurn a job file into command line options\n");
Aaron Carrolle592a062007-09-14 09:49:41 +0200916 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
917 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100918 printf("\t--readonly\tTurn on safety read-only checks, preventing"
919 " writes\n");
Jens Axboe01f06b62008-02-18 20:53:47 +0100920 printf("\t--section=name\tOnly run specified section in job file\n");
Jens Axboe2b386d22008-03-26 10:32:57 +0100921 printf("\t--alloc-size=kb\tSet smalloc pool to this size in kb"
922 " (def 1024)\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200923}
924
Jens Axboe79e48f72008-02-01 20:37:09 +0100925#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +0100926struct debug_level debug_levels[] = {
Jens Axboebd6f78b2008-02-01 20:27:52 +0100927 { .name = "process", .shift = FD_PROCESS, },
928 { .name = "file", .shift = FD_FILE, },
929 { .name = "io", .shift = FD_IO, },
930 { .name = "mem", .shift = FD_MEM, },
931 { .name = "blktrace", .shift = FD_BLKTRACE },
932 { .name = "verify", .shift = FD_VERIFY },
Jens Axboe84422ac2008-02-19 20:10:26 +0100933 { .name = "random", .shift = FD_RANDOM },
Jens Axboea3d741f2008-02-27 18:32:33 +0100934 { .name = "parse", .shift = FD_PARSE },
Jens Axboecd991b92008-03-07 13:19:35 +0100935 { .name = "diskutil", .shift = FD_DISKUTIL },
Jens Axboe5e1d3062008-05-23 11:55:53 +0200936 { .name = "job", .shift = FD_JOB },
Jens Axboe29adda32009-01-05 19:06:39 +0100937 { .name = "mutex", .shift = FD_MUTEX },
Jens Axboe02444ad2008-10-07 11:33:00 +0200938 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +0100939};
940
Jens Axboec09823a2008-02-19 20:16:57 +0100941static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +0100942{
943 struct debug_level *dl;
944 char *p = (char *) string;
945 char *opt;
946 int i;
947
948 if (!strcmp(string, "?") || !strcmp(string, "help")) {
949 int i;
950
951 log_info("fio: dumping debug options:");
952 for (i = 0; debug_levels[i].name; i++) {
953 dl = &debug_levels[i];
954 log_info("%s,", dl->name);
955 }
Jens Axboebd6f78b2008-02-01 20:27:52 +0100956 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +0100957 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +0100958 }
959
960 while ((opt = strsep(&p, ",")) != NULL) {
961 int found = 0;
962
Jens Axboe5e1d3062008-05-23 11:55:53 +0200963 if (!strncmp(opt, "all", 3)) {
964 log_info("fio: set all debug options\n");
965 fio_debug = ~0UL;
966 continue;
967 }
968
Jens Axboeee56ad52008-02-01 10:30:20 +0100969 for (i = 0; debug_levels[i].name; i++) {
970 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +0200971 found = !strncmp(opt, dl->name, strlen(dl->name));
972 if (!found)
973 continue;
974
975 if (dl->shift == FD_JOB) {
976 opt = strchr(opt, ':');
977 if (!opt) {
978 log_err("fio: missing job number\n");
979 break;
980 }
981 opt++;
982 fio_debug_jobno = atoi(opt);
983 log_info("fio: set debug jobno %d\n",
984 fio_debug_jobno);
985 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +0100986 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100987 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +0100988 }
Jens Axboe5e1d3062008-05-23 11:55:53 +0200989 break;
Jens Axboeee56ad52008-02-01 10:30:20 +0100990 }
991
992 if (!found)
993 log_err("fio: debug mask %s not found\n", opt);
994 }
Jens Axboec09823a2008-02-19 20:16:57 +0100995 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +0100996}
Jens Axboe79e48f72008-02-01 20:37:09 +0100997#else
Jens Axboe69b98d42008-05-30 22:25:32 +0200998static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +0100999{
1000 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001001 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +01001002}
1003#endif
Jens Axboeee56ad52008-02-01 10:30:20 +01001004
Jens Axboe214e1ec2007-03-15 10:48:13 +01001005static int parse_cmd_line(int argc, char *argv[])
1006{
1007 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +01001008 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001009
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001010 while ((c = getopt_long_only(argc, argv, "", l_opts, &lidx)) != -1) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001011 switch (c) {
Jens Axboe2b386d22008-03-26 10:32:57 +01001012 case 'a':
1013 smalloc_pool_size = atoi(optarg);
1014 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001015 case 't':
1016 def_timeout = atoi(optarg);
1017 break;
1018 case 'l':
1019 write_lat_log = 1;
1020 break;
1021 case 'w':
1022 write_bw_log = 1;
1023 break;
1024 case 'o':
1025 f_out = fopen(optarg, "w+");
1026 if (!f_out) {
1027 perror("fopen output");
1028 exit(1);
1029 }
1030 f_err = f_out;
1031 break;
1032 case 'm':
1033 terse_output = 1;
1034 break;
1035 case 'h':
Jens Axboe45378b32007-12-19 13:54:38 +01001036 usage(argv[0]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001037 exit(0);
1038 case 'c':
1039 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +02001040 case 's':
1041 dump_cmdline = 1;
1042 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001043 case 'r':
1044 read_only = 1;
1045 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001046 case 'v':
1047 printf("%s\n", fio_version_string);
1048 exit(0);
Aaron Carrolle592a062007-09-14 09:49:41 +02001049 case 'e':
1050 if (!strcmp("always", optarg))
1051 eta_print = FIO_ETA_ALWAYS;
1052 else if (!strcmp("never", optarg))
1053 eta_print = FIO_ETA_NEVER;
1054 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001055 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001056 if (set_debug(optarg))
1057 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001058 break;
Jens Axboe01f06b62008-02-18 20:53:47 +01001059 case 'x':
1060 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001061 log_err("fio: can't use global as only "
1062 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001063 do_exit++;
1064 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001065 break;
1066 }
1067 if (job_section)
1068 free(job_section);
1069 job_section = strdup(optarg);
1070 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001071 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001072 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001073 char *val = optarg;
1074
1075 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001076 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001077 if (ret) {
1078 put_job(td);
1079 return 0;
1080 }
1081 td = NULL;
1082 }
1083 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001084 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001085 int global = 0;
1086
Jens Axboe01f06b62008-02-18 20:53:47 +01001087 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001088 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001089
Jens Axboe01f06b62008-02-18 20:53:47 +01001090 if (is_section && skip_this_section(val))
1091 continue;
1092
Jens Axboe214e1ec2007-03-15 10:48:13 +01001093 td = get_new_job(global, &def_thread);
1094 if (!td)
1095 return 0;
1096 }
1097
1098 ret = fio_cmd_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001099 break;
1100 }
1101 default:
Jens Axboec09823a2008-02-19 20:16:57 +01001102 do_exit++;
1103 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001104 break;
1105 }
1106 }
1107
Jens Axboec09823a2008-02-19 20:16:57 +01001108 if (do_exit)
1109 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01001110
Jens Axboe214e1ec2007-03-15 10:48:13 +01001111 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +01001112 if (!ret)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001113 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe7d6a8902008-02-18 20:59:18 +01001114 if (ret)
1115 put_job(td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001116 }
1117
1118 while (optind < argc) {
1119 ini_idx++;
1120 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1121 ini_file[ini_idx - 1] = strdup(argv[optind]);
1122 optind++;
1123 }
1124
1125 return ini_idx;
1126}
1127
Jens Axboeebac4652005-12-08 15:25:21 +01001128int parse_options(int argc, char *argv[])
1129{
Jens Axboe972cfd22006-06-09 11:08:56 +02001130 int job_files, i;
1131
Jens Axboeb4692822006-10-27 13:43:22 +02001132 f_out = stdout;
1133 f_err = stderr;
1134
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001135 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02001136
Jens Axboeebac4652005-12-08 15:25:21 +01001137 if (setup_thread_area())
1138 return 1;
1139 if (fill_def_thread())
1140 return 1;
1141
Jens Axboe972cfd22006-06-09 11:08:56 +02001142 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001143
Jens Axboe972cfd22006-06-09 11:08:56 +02001144 for (i = 0; i < job_files; i++) {
1145 if (fill_def_thread())
1146 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001147 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001148 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001149 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001150 }
Jens Axboeebac4652005-12-08 15:25:21 +01001151
Jens Axboe88c6ed82006-06-09 11:28:10 +02001152 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +01001153 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001154
1155 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001156 if (dump_cmdline)
1157 return 0;
1158
Jens Axboeb4692822006-10-27 13:43:22 +02001159 log_err("No jobs defined(s)\n");
Jens Axboe45378b32007-12-19 13:54:38 +01001160 usage(argv[0]);
Jens Axboeb4692822006-10-27 13:43:22 +02001161 return 1;
1162 }
1163
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001164 if (def_thread.o.gtod_offload) {
1165 fio_gtod_init();
1166 fio_gtod_offload = 1;
1167 fio_gtod_cpu = def_thread.o.gtod_cpu;
1168 }
1169
Jens Axboeebac4652005-12-08 15:25:21 +01001170 return 0;
1171}