blob: c51956e53c0d37d32b7236f9ffe6af902b2684e8 [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>
11#include <sys/ipc.h>
12#include <sys/shm.h>
13#include <sys/types.h>
14#include <sys/stat.h>
15
16#include "fio.h"
Jens Axboecb2c86f2006-10-26 13:48:34 +020017#include "parse.h"
Jens Axboe2e5cdb12008-03-01 18:52:49 +010018#include "smalloc.h"
Jens Axboe380065a2008-03-01 18:56:24 +010019#include "filehash.h"
Jens Axboe4f5af7b2009-06-03 08:45:40 +020020#include "verify.h"
Jens Axboe79d16312010-03-04 12:43:20 +010021#include "profile.h"
Jens Axboeebac4652005-12-08 15:25:21 +010022
Cigy Cyriacbf2e8212010-08-10 19:51:11 -040023#include "lib/getopt.h"
24
Jens Axboe2f2e98e2011-01-12 09:07:44 +010025static char fio_version_string[] = "fio 1.50-rc2";
Jens Axboe214e1ec2007-03-15 10:48:13 +010026
Jens Axboeee738492007-01-10 11:23:16 +010027#define FIO_RANDSEED (0xb1899bedUL)
Jens Axboeebac4652005-12-08 15:25:21 +010028
Jens Axboe214e1ec2007-03-15 10:48:13 +010029static char **ini_file;
30static int max_jobs = MAX_JOBS;
Jens Axboecca73aa2007-04-04 11:09:19 +020031static int dump_cmdline;
Jens Axboee1f36502006-10-27 10:54:08 +020032
Jens Axboebe4ecfd2008-12-08 14:10:52 +010033static struct thread_data def_thread;
Jens Axboe214e1ec2007-03-15 10:48:13 +010034struct thread_data *threads = NULL;
Jens Axboee1f36502006-10-27 10:54:08 +020035
Jens Axboe214e1ec2007-03-15 10:48:13 +010036int exitall_on_terminate = 0;
37int terse_output = 0;
Aaron Carrolle592a062007-09-14 09:49:41 +020038int eta_print;
Jens Axboe214e1ec2007-03-15 10:48:13 +010039unsigned long long mlock_size = 0;
40FILE *f_out = NULL;
41FILE *f_err = NULL;
Jens Axboe01f06b62008-02-18 20:53:47 +010042char *job_section = NULL;
Jens Axboe07b32322010-03-05 09:48:44 +010043char *exec_profile = NULL;
Jens Axboeee738492007-01-10 11:23:16 +010044
Jens Axboe214e1ec2007-03-15 10:48:13 +010045int write_bw_log = 0;
Jens Axboe4241ea82007-09-12 08:18:36 +020046int read_only = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020047
Jens Axboe5ec10ea2008-03-06 15:42:00 +010048static int def_timeout;
49static int write_lat_log;
Jens Axboe214e1ec2007-03-15 10:48:13 +010050
51static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020052
Jens Axboeee56ad52008-02-01 10:30:20 +010053unsigned long fio_debug = 0;
Jens Axboe5e1d3062008-05-23 11:55:53 +020054unsigned int fio_debug_jobno = -1;
55unsigned int *fio_debug_jobp = NULL;
Jens Axboeee56ad52008-02-01 10:30:20 +010056
Jens Axboeb4692822006-10-27 13:43:22 +020057/*
58 * Command line options. These will contain the above, plus a few
59 * extra that only pertain to fio itself and not jobs.
60 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +010061static struct option l_opts[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020062 {
63 .name = "output",
64 .has_arg = required_argument,
65 .val = 'o',
66 },
67 {
68 .name = "timeout",
69 .has_arg = required_argument,
70 .val = 't',
71 },
72 {
73 .name = "latency-log",
74 .has_arg = required_argument,
75 .val = 'l',
76 },
77 {
78 .name = "bandwidth-log",
79 .has_arg = required_argument,
80 .val = 'b',
81 },
82 {
83 .name = "minimal",
84 .has_arg = optional_argument,
85 .val = 'm',
86 },
87 {
88 .name = "version",
89 .has_arg = no_argument,
90 .val = 'v',
91 },
92 {
Jens Axboefd28ca42007-01-09 21:20:13 +010093 .name = "help",
94 .has_arg = no_argument,
95 .val = 'h',
96 },
97 {
98 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +010099 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +0100100 .val = 'c',
101 },
102 {
Jens Axboecca73aa2007-04-04 11:09:19 +0200103 .name = "showcmd",
104 .has_arg = no_argument,
Jens Axboe724e4432007-09-11 20:02:05 +0200105 .val = 's',
106 },
107 {
108 .name = "readonly",
109 .has_arg = no_argument,
110 .val = 'r',
Jens Axboecca73aa2007-04-04 11:09:19 +0200111 },
112 {
Aaron Carrolle592a062007-09-14 09:49:41 +0200113 .name = "eta",
114 .has_arg = required_argument,
115 .val = 'e',
116 },
117 {
Jens Axboeee56ad52008-02-01 10:30:20 +0100118 .name = "debug",
119 .has_arg = required_argument,
120 .val = 'd',
121 },
122 {
Jens Axboe01f06b62008-02-18 20:53:47 +0100123 .name = "section",
124 .has_arg = required_argument,
125 .val = 'x',
126 },
127 {
Jens Axboe2b386d22008-03-26 10:32:57 +0100128 .name = "alloc-size",
129 .has_arg = required_argument,
130 .val = 'a',
131 },
132 {
Jens Axboe9ac8a792009-11-13 21:23:07 +0100133 .name = "profile",
134 .has_arg = required_argument,
135 .val = 'p',
136 },
137 {
Jens Axboeb4692822006-10-27 13:43:22 +0200138 .name = NULL,
139 },
140};
141
Joel Becker9728ce32007-03-01 08:24:39 +0100142FILE *get_f_out()
143{
144 return f_out;
145}
146
147FILE *get_f_err()
148{
149 return f_err;
150}
151
Jens Axboe906c8d72006-06-13 09:37:56 +0200152/*
153 * Return a free job structure.
154 */
Jens Axboeebac4652005-12-08 15:25:21 +0100155static struct thread_data *get_new_job(int global, struct thread_data *parent)
156{
157 struct thread_data *td;
158
159 if (global)
160 return &def_thread;
Bruce Crane61f1ec2011-01-14 18:30:26 +0100161 if (thread_number >= max_jobs) {
162 log_err("error: maximum number of jobs (%d) reached.\n",
163 max_jobs);
Jens Axboeebac4652005-12-08 15:25:21 +0100164 return NULL;
Bruce Crane61f1ec2011-01-14 18:30:26 +0100165 }
Jens Axboeebac4652005-12-08 15:25:21 +0100166
167 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200168 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100169
Jens Axboee0b0d892009-12-08 10:10:14 +0100170 td->o.uid = td->o.gid = -1U;
171
Jens Axboecade3ef2007-03-23 15:29:45 +0100172 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100173 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100174
Jens Axboe15dc1932010-03-05 10:59:06 +0100175 profile_add_hooks(td);
176
Jens Axboeebac4652005-12-08 15:25:21 +0100177 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100178 return td;
179}
180
181static void put_job(struct thread_data *td)
182{
Jens Axboe549577a2006-10-30 12:23:41 +0100183 if (td == &def_thread)
184 return;
Jens Axboe58c55ba2010-03-09 12:20:08 +0100185
186 profile_td_exit(td);
Jens Axboe549577a2006-10-30 12:23:41 +0100187
Jens Axboe16edf252007-02-10 14:59:22 +0100188 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100189 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100190
Jens Axboeebac4652005-12-08 15:25:21 +0100191 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
192 thread_number--;
193}
194
Jens Axboe581e7142009-06-09 12:47:16 +0200195static int __setup_rate(struct thread_data *td, enum fio_ddir ddir)
Jens Axboe127f6862007-03-15 12:09:57 +0100196{
Jens Axboe581e7142009-06-09 12:47:16 +0200197 unsigned int bs = td->o.min_bs[ddir];
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100198 unsigned long long bytes_per_sec;
Jens Axboe127f6862007-03-15 12:09:57 +0100199
Jens Axboeff58fce2010-08-25 12:02:08 +0200200 assert(ddir_rw(ddir));
201
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100202 if (td->o.rate[ddir])
203 bytes_per_sec = td->o.rate[ddir];
204 else
205 bytes_per_sec = td->o.rate_iops[ddir] * bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100206
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100207 if (!bytes_per_sec) {
Jens Axboe127f6862007-03-15 12:09:57 +0100208 log_err("rate lower than supported\n");
209 return -1;
210 }
211
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100212 td->rate_nsec_cycle[ddir] = 1000000000ULL / bytes_per_sec;
Jens Axboe581e7142009-06-09 12:47:16 +0200213 td->rate_pending_usleep[ddir] = 0;
Jens Axboe127f6862007-03-15 12:09:57 +0100214 return 0;
215}
216
Jens Axboe581e7142009-06-09 12:47:16 +0200217static int setup_rate(struct thread_data *td)
218{
219 int ret = 0;
220
221 if (td->o.rate[DDIR_READ] || td->o.rate_iops[DDIR_READ])
222 ret = __setup_rate(td, DDIR_READ);
223 if (td->o.rate[DDIR_WRITE] || td->o.rate_iops[DDIR_WRITE])
224 ret |= __setup_rate(td, DDIR_WRITE);
225
226 return ret;
227}
228
Jens Axboe83472392009-02-19 21:32:12 +0100229static int fixed_block_size(struct thread_options *o)
230{
231 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
232 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
233 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE];
234}
235
Jens Axboedad915e2006-10-27 11:10:18 +0200236/*
237 * Lazy way of fixing up options that depend on each other. We could also
238 * define option callback handlers, but this is easier.
239 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100240static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200241{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100242 struct thread_options *o = &td->o;
Jens Axboedad915e2006-10-27 11:10:18 +0200243
Jens Axboef356d012009-01-05 09:56:29 +0100244#ifndef FIO_HAVE_PSHARED_MUTEX
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100245 if (!o->use_thread) {
Jens Axboef356d012009-01-05 09:56:29 +0100246 log_info("fio: this platform does not support process shared"
247 " mutexes, forcing use of threads. Use the 'thread'"
248 " option to get rid of this warning.\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100249 o->use_thread = 1;
Jens Axboef356d012009-01-05 09:56:29 +0100250 }
251#endif
252
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100253 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200254 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100255 free(o->write_iolog_file);
256 o->write_iolog_file = NULL;
Jens Axboe076efc72006-10-27 11:24:25 +0200257 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100258
Jens Axboe16b462a2006-10-30 12:35:18 +0100259 /*
260 * only really works for sequential io for now, and with 1 file
261 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100262 if (o->zone_size && td_random(td) && o->open_files == 1)
263 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100264
265 /*
266 * Reads can do overwrites, we always need to pre-create the file
267 */
268 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100269 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100270
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100271 if (!o->min_bs[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100272 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100273 if (!o->max_bs[DDIR_READ])
274 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
275 if (!o->min_bs[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100276 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100277 if (!o->max_bs[DDIR_WRITE])
278 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100279
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100280 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100281
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100282 /*
283 * For random IO, allow blockalign offset other than min_bs.
284 */
285 if (!o->ba[DDIR_READ] || !td_random(td))
286 o->ba[DDIR_READ] = o->min_bs[DDIR_READ];
287 if (!o->ba[DDIR_WRITE] || !td_random(td))
288 o->ba[DDIR_WRITE] = o->min_bs[DDIR_WRITE];
289
290 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
291 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE]) &&
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100292 !o->norandommap) {
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100293 log_err("fio: Any use of blockalign= turns off randommap\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100294 o->norandommap = 1;
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100295 }
296
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100297 if (!o->file_size_high)
298 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100299
Jens Axboe83472392009-02-19 21:32:12 +0100300 if (o->norandommap && o->verify != VERIFY_NONE
301 && !fixed_block_size(o)) {
302 log_err("fio: norandommap given for variable block sizes, "
303 "verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100304 o->verify = VERIFY_NONE;
Jens Axboebb8895e2006-10-30 15:14:48 +0100305 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100306 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100307 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100308
309 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100310 * thinktime_spin must be less than thinktime
311 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100312 if (o->thinktime_spin > o->thinktime)
313 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100314
315 /*
316 * The low water mark cannot be bigger than the iodepth
317 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100318 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100319 /*
320 * syslet work around - if the workload is sequential,
321 * we want to let the queue drain all the way down to
322 * avoid seeking between async threads
323 */
324 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100325 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100326 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100327 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100328 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100329
330 /*
331 * If batch number isn't set, default to the same as iodepth
332 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100333 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
334 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100335
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100336 if (o->nr_files > td->files_index)
337 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100338
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100339 if (o->open_files > o->nr_files || !o->open_files)
340 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100341
Jens Axboe581e7142009-06-09 12:47:16 +0200342 if (((o->rate[0] + o->rate[1]) && (o->rate_iops[0] + o->rate_iops[1]))||
343 ((o->ratemin[0] + o->ratemin[1]) && (o->rate_iops_min[0] +
344 o->rate_iops_min[1]))) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100345 log_err("fio: rate and rate_iops are mutually exclusive\n");
346 return 1;
347 }
Jens Axboe581e7142009-06-09 12:47:16 +0200348 if ((o->rate[0] < o->ratemin[0]) || (o->rate[1] < o->ratemin[1]) ||
349 (o->rate_iops[0] < o->rate_iops_min[0]) ||
350 (o->rate_iops[1] < o->rate_iops_min[1])) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100351 log_err("fio: minimum rate exceeds rate\n");
352 return 1;
353 }
354
Jens Axboecf4464c2007-04-17 20:14:42 +0200355 if (!o->timeout && o->time_based) {
356 log_err("fio: time_based requires a runtime/timeout setting\n");
357 o->time_based = 0;
358 }
359
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100360 if (o->fill_device && !o->size)
Jens Axboe5921e802008-05-30 15:02:38 +0200361 o->size = -1ULL;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100362
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100363 if (td_rw(td) && o->verify != VERIFY_NONE)
Jens Axboe79713142008-02-06 14:40:14 +0100364 log_info("fio: mixed read/write workload with verify. May not "
365 "work as expected, unless you pre-populated the file\n");
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100366
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100367 if (o->verify != VERIFY_NONE) {
368 o->refill_buffers = 1;
Jens Axboe2f1b8e82010-06-18 09:22:56 +0200369 if (o->max_bs[DDIR_WRITE] != o->min_bs[DDIR_WRITE] &&
370 !o->verify_interval)
371 o->verify_interval = o->min_bs[DDIR_WRITE];
Jens Axboed9905882010-03-18 20:43:00 +0100372 }
Jens Axboe41ccd842008-05-22 09:17:33 +0200373
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100374 if (o->pre_read) {
375 o->invalidate_cache = 0;
Jens Axboe9c0d2242009-07-01 12:26:28 +0200376 if (td->io_ops->flags & FIO_PIPEIO)
377 log_info("fio: cannot pre-read files with an IO engine"
378 " that isn't seekable. Pre-read disabled.\n");
379 }
Jens Axboe34f1c042009-06-02 14:19:25 +0200380
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700381#ifndef FIO_HAVE_FDATASYNC
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100382 if (o->fdatasync_blocks) {
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700383 log_info("fio: this platform does not support fdatasync()"
384 " falling back to using fsync(). Use the 'fsync'"
385 " option instead of 'fdatasync' to get rid of"
386 " this warning\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100387 o->fsync_blocks = o->fdatasync_blocks;
388 o->fdatasync_blocks = 0;
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700389 }
390#endif
391
Jens Axboe4e991c22007-03-15 11:41:11 +0100392 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200393}
394
Jens Axboe906c8d72006-06-13 09:37:56 +0200395/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100396 * This function leaks the buffer
397 */
398static char *to_kmg(unsigned int val)
399{
400 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100401 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100402 char *p = post;
403
Jens Axboe245142f2006-11-08 12:49:21 +0100404 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100405 if (val & 1023)
406 break;
407
408 val >>= 10;
409 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100410 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100411
412 snprintf(buf, 31, "%u%c", val, *p);
413 return buf;
414}
415
Jens Axboe09629a92007-03-09 09:00:06 +0100416/* External engines are specified by "external:name.o") */
417static const char *get_engine_name(const char *str)
418{
419 char *p = strstr(str, ":");
420
421 if (!p)
422 return str;
423
424 p++;
425 strip_blank_front(&p);
426 strip_blank_end(p);
427 return p;
428}
429
Jens Axboee132cba2007-03-14 14:23:54 +0100430static int exists_and_not_file(const char *filename)
431{
432 struct stat sb;
433
434 if (lstat(filename, &sb) == -1)
435 return 0;
436
Bruce Cranecc314b2011-01-04 10:59:30 +0100437 /* \\.\ is the device namespace in Windows, where every file
438 * is a device node */
439 if (S_ISREG(sb.st_mode) && strncmp(filename, "\\\\.\\", 4) != 0)
Jens Axboee132cba2007-03-14 14:23:54 +0100440 return 0;
441
442 return 1;
443}
444
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200445void td_fill_rand_seeds(struct thread_data *td)
446{
447 os_random_seed(td->rand_seeds[0], &td->bsrange_state);
448 os_random_seed(td->rand_seeds[1], &td->verify_state);
449 os_random_seed(td->rand_seeds[2], &td->rwmix_state);
450
451 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
452 os_random_seed(td->rand_seeds[3], &td->next_file_state);
453
454 os_random_seed(td->rand_seeds[5], &td->file_size_state);
Jens Axboe0d29de82010-09-01 13:54:15 +0200455 os_random_seed(td->rand_seeds[6], &td->trim_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200456
457 if (!td_random(td))
458 return;
459
460 if (td->o.rand_repeatable)
461 td->rand_seeds[4] = FIO_RANDSEED * td->thread_number;
462
463 os_random_seed(td->rand_seeds[4], &td->random_state);
464}
465
Jens Axboef8977ee2006-11-06 14:03:03 +0100466/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100467 * Initialize the various random states we need (random io, block size ranges,
468 * read/write mix, etc).
469 */
470static int init_random_state(struct thread_data *td)
471{
Jens Axboe68727072007-03-15 20:49:25 +0100472 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100473
474 fd = open("/dev/urandom", O_RDONLY);
475 if (fd == -1) {
476 td_verror(td, errno, "open");
477 return 1;
478 }
479
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200480 if (read(fd, td->rand_seeds, sizeof(td->rand_seeds)) <
481 (int) sizeof(td->rand_seeds)) {
Jens Axboe9c60ce62007-03-15 09:14:47 +0100482 td_verror(td, EIO, "read");
483 close(fd);
484 return 1;
485 }
486
487 close(fd);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200488 td_fill_rand_seeds(td);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100489 return 0;
490}
491
Jens Axboe9c60ce62007-03-15 09:14:47 +0100492/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200493 * Adds a job to the list of things todo. Sanitizes the various options
494 * to make sure we don't have conflicts, and initializes various
495 * members of td.
496 */
Jens Axboe75154842006-06-01 13:56:09 +0200497static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100498{
Jens Axboe413dd452007-02-23 09:26:09 +0100499 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
500 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100501 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100502 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100503 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100504 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100505
Jens Axboeebac4652005-12-08 15:25:21 +0100506 /*
507 * the def_thread is just for options, it's not a real job
508 */
509 if (td == &def_thread)
510 return 0;
511
Jens Axboecca73aa2007-04-04 11:09:19 +0200512 /*
513 * if we are just dumping the output command line, don't add the job
514 */
515 if (dump_cmdline) {
516 put_job(td);
517 return 0;
518 }
519
Jens Axboe58c55ba2010-03-09 12:20:08 +0100520 if (profile_td_init(td))
521 return 1;
522
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100523 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100524 td->io_ops = load_ioengine(td, engine);
525 if (!td->io_ops) {
526 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100527 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100528 }
Jens Axboedf641192006-10-12 07:55:41 +0200529
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100530 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100531 nr_thread++;
532 else
533 nr_process++;
534
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100535 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100536 td->io_ops->flags |= FIO_RAWIO;
537
Jens Axboee132cba2007-03-14 14:23:54 +0100538 file_alloced = 0;
Jens Axboe691c8fb2008-03-07 14:26:26 +0100539 if (!td->o.filename && !td->files_index && !td->o.read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +0100540 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100541
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100542 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100543 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100544 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100545 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100546 sprintf(fname, "%s.%d.%d", jobname,
547 td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100548 add_file(td, fname);
549 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100550 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100551 }
Jens Axboeebac4652005-12-08 15:25:21 +0100552
Jens Axboe4e991c22007-03-15 11:41:11 +0100553 if (fixup_options(td))
554 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100555
Jens Axboe07eb79d2007-04-12 13:02:38 +0200556 if (td->io_ops->flags & FIO_DISKLESSIO) {
557 struct fio_file *f;
558
559 for_each_file(td, f, i)
560 f->real_file_size = -1ULL;
561 }
562
Jens Axboecdd18ad2008-02-27 18:58:00 +0100563 td->mutex = fio_mutex_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100564
Jens Axboe756867b2007-03-06 15:19:24 +0100565 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
566 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
Jens Axboe02af0982010-06-24 09:59:34 +0200567 td->ts.lat_stat[0].min_val = td->ts.lat_stat[1].min_val = ULONG_MAX;
Jens Axboe756867b2007-03-06 15:19:24 +0100568 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Adam DeBellinscdd54112010-09-28 13:22:55 +0900569 td->ddir_seq_nr = td->o.ddir_seq_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100570
Jens Axboe755c3182009-08-25 22:14:29 +0200571 if ((td->o.stonewall || td->o.new_group) && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100572 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100573 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100574 }
Jens Axboeebac4652005-12-08 15:25:21 +0100575
576 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100577 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100578
Jens Axboe9c60ce62007-03-15 09:14:47 +0100579 if (init_random_state(td))
580 goto err;
581
Jens Axboeebac4652005-12-08 15:25:21 +0100582 if (setup_rate(td))
583 goto err;
584
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100585 if (td->o.write_lat_log) {
Jens Axboe02af0982010-06-24 09:59:34 +0200586 setup_log(&td->ts.lat_log);
Jens Axboe756867b2007-03-06 15:19:24 +0100587 setup_log(&td->ts.slat_log);
588 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100589 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100590 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100591 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100592
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100593 if (!td->o.name)
594 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200595
Jens Axboec6ae0a52006-06-12 11:04:44 +0200596 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200597 if (!job_add_num) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100598 if (!strcmp(td->io_ops->name, "cpuio")) {
599 log_info("%s: ioengine=cpu, cpuload=%u,"
600 " cpucycle=%u\n", td->o.name,
601 td->o.cpuload,
602 td->o.cpucycle);
603 } else {
Jens Axboef8977ee2006-11-06 14:03:03 +0100604 char *c1, *c2, *c3, *c4;
605
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100606 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
607 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
608 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
609 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100610
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100611 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s,"
612 " ioengine=%s, iodepth=%u\n",
613 td->o.name, td->groupid,
614 ddir_str[td->o.td_ddir],
615 c1, c2, c3, c4,
616 td->io_ops->name,
617 td->o.iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100618
619 free(c1);
620 free(c2);
621 free(c3);
622 free(c4);
623 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200624 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100625 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200626 }
Jens Axboeebac4652005-12-08 15:25:21 +0100627
628 /*
629 * recurse add identical jobs, clear numjobs and stonewall options
630 * as they don't apply to sub-jobs
631 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100632 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100633 while (--numjobs) {
634 struct thread_data *td_new = get_new_job(0, td);
635
636 if (!td_new)
637 goto err;
638
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100639 td_new->o.numjobs = 1;
640 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200641 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100642
643 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100644 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100645 td_new->files_index = 0;
Jens Axboe4e6ea2f2009-03-04 20:17:22 +0100646 td_new->files_size = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100647 td_new->files = NULL;
648 }
649
Jens Axboe75154842006-06-01 13:56:09 +0200650 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100651
Jens Axboe75154842006-06-01 13:56:09 +0200652 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100653 goto err;
654 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100655
Jens Axboeebac4652005-12-08 15:25:21 +0100656 return 0;
657err:
658 put_job(td);
659 return -1;
660}
661
Jens Axboe79d16312010-03-04 12:43:20 +0100662/*
663 * Parse as if 'o' was a command line
664 */
665void add_job_opts(const char **o)
666{
667 struct thread_data *td, *td_parent;
668 int i, in_global = 1;
669 char jobname[32];
670
671 i = 0;
672 td_parent = td = NULL;
673 while (o[i]) {
674 if (!strncmp(o[i], "name", 4)) {
675 in_global = 0;
676 if (td)
677 add_job(td, jobname, 0);
678 td = NULL;
679 sprintf(jobname, "%s", o[i] + 5);
680 }
681 if (in_global && !td_parent)
682 td_parent = get_new_job(1, &def_thread);
683 else if (!in_global && !td) {
684 if (!td_parent)
685 td_parent = &def_thread;
686 td = get_new_job(0, td_parent);
687 }
688 if (in_global)
689 fio_options_parse(td_parent, (char **) &o[i], 1);
690 else
691 fio_options_parse(td, (char **) &o[i], 1);
692 i++;
693 }
694
695 if (td)
696 add_job(td, jobname, 0);
697}
698
Jens Axboe01f06b62008-02-18 20:53:47 +0100699static int skip_this_section(const char *name)
700{
701 if (!job_section)
702 return 0;
703 if (!strncmp(name, "global", 6))
704 return 0;
705
Jens Axboeb36beb62009-03-05 21:14:21 +0100706 return strcmp(job_section, name);
Jens Axboe01f06b62008-02-18 20:53:47 +0100707}
708
Jens Axboeebac4652005-12-08 15:25:21 +0100709static int is_empty_or_comment(char *line)
710{
711 unsigned int i;
712
713 for (i = 0; i < strlen(line); i++) {
714 if (line[i] == ';')
715 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100716 if (line[i] == '#')
717 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100718 if (!isspace(line[i]) && !iscntrl(line[i]))
719 return 0;
720 }
721
722 return 1;
723}
724
Jens Axboe313cb202006-12-21 09:50:00 +0100725/*
Jens Axboe07261982006-06-07 10:51:12 +0200726 * This is our [ini] type file parser.
727 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100728static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100729{
Jens Axboee1f36502006-10-27 10:54:08 +0200730 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100731 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100732 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100733 FILE *f;
734 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200735 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200736 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +0200737 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +0100738 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200739 char **opts;
740 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +0100741
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200742 if (!strcmp(file, "-"))
743 f = stdin;
744 else
745 f = fopen(file, "r");
746
Jens Axboeebac4652005-12-08 15:25:21 +0100747 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200748 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100749 return 1;
750 }
751
752 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200753
754 /*
755 * it's really 256 + small bit, 280 should suffice
756 */
757 name = malloc(280);
758 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100759
Jens Axboe3b8b7132008-06-10 19:46:23 +0200760 alloc_opts = 8;
761 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +0200762 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200763
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200764 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100765 do {
Jens Axboeccf8f122007-09-27 10:48:55 +0200766 /*
767 * if skip_fgets is set, we already have loaded a line we
768 * haven't handled.
769 */
770 if (!skip_fgets) {
771 p = fgets(string, 4095, f);
772 if (!p)
773 break;
774 }
gurudas paicdc7f192007-03-29 10:10:56 +0200775
Jens Axboeccf8f122007-09-27 10:48:55 +0200776 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +0200777 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800778 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200779
Jens Axboeebac4652005-12-08 15:25:21 +0100780 if (is_empty_or_comment(p))
781 continue;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800782 if (sscanf(p, "[%255s]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100783 if (inside_skip)
784 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100785 log_err("fio: option <%s> outside of [] job section\n",
786 p);
Jens Axboe088b4202007-07-19 14:53:01 +0200787 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800788 }
Jens Axboeebac4652005-12-08 15:25:21 +0100789
Jens Axboe7a4b80a2010-05-22 20:43:11 +0200790 name[strlen(name) - 1] = '\0';
791
Jens Axboe01f06b62008-02-18 20:53:47 +0100792 if (skip_this_section(name)) {
793 inside_skip = 1;
794 continue;
795 } else
796 inside_skip = 0;
797
Jens Axboeebac4652005-12-08 15:25:21 +0100798 global = !strncmp(name, "global", 6);
799
Jens Axboecca73aa2007-04-04 11:09:19 +0200800 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200801 if (first_sect)
802 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200803 if (!global)
804 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200805 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200806 }
807
Jens Axboeebac4652005-12-08 15:25:21 +0100808 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200809 if (!td) {
810 ret = 1;
811 break;
812 }
Jens Axboeebac4652005-12-08 15:25:21 +0100813
Jens Axboe972cfd22006-06-09 11:08:56 +0200814 /*
815 * Seperate multiple job files by a stonewall
816 */
Jens Axboef9481912006-06-09 11:37:28 +0200817 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100818 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200819 stonewall = 0;
820 }
821
Jens Axboe3b8b7132008-06-10 19:46:23 +0200822 num_opts = 0;
823 memset(opts, 0, alloc_opts * sizeof(char *));
824
Jens Axboeebac4652005-12-08 15:25:21 +0100825 while ((p = fgets(string, 4096, f)) != NULL) {
826 if (is_empty_or_comment(p))
827 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200828
Jens Axboeb6754f92006-05-30 14:29:32 +0200829 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100830
Jens Axboeccf8f122007-09-27 10:48:55 +0200831 /*
832 * new section, break out and make sure we don't
833 * fgets() a new line at the top.
834 */
835 if (p[0] == '[') {
836 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100837 break;
Jens Axboeccf8f122007-09-27 10:48:55 +0200838 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100839
Jens Axboe4ae3f762006-05-30 13:35:14 +0200840 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200841
Jens Axboe3b8b7132008-06-10 19:46:23 +0200842 if (num_opts == alloc_opts) {
843 alloc_opts <<= 1;
844 opts = realloc(opts,
845 alloc_opts * sizeof(char *));
846 }
847
848 opts[num_opts] = strdup(p);
849 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +0100850 }
Jens Axboeebac4652005-12-08 15:25:21 +0100851
Jens Axboe3b8b7132008-06-10 19:46:23 +0200852 ret = fio_options_parse(td, opts, num_opts);
853 if (!ret) {
854 if (dump_cmdline)
855 for (i = 0; i < num_opts; i++)
856 log_info("--%s ", opts[i]);
857
Jens Axboe45410ac2006-06-07 11:10:39 +0200858 ret = add_job(td, name, 0);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200859 } else {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100860 log_err("fio: job %s dropped\n", name);
861 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200862 }
Jens Axboe3b8b7132008-06-10 19:46:23 +0200863
864 for (i = 0; i < num_opts; i++)
865 free(opts[i]);
866 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100867 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100868
Jens Axboecca73aa2007-04-04 11:09:19 +0200869 if (dump_cmdline)
870 log_info("\n");
871
Jens Axboe3b8b7132008-06-10 19:46:23 +0200872 for (i = 0; i < num_opts; i++)
873 free(opts[i]);
874
Jens Axboeebac4652005-12-08 15:25:21 +0100875 free(string);
876 free(name);
Jens Axboe25775942008-06-10 20:26:06 +0200877 free(opts);
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200878 if (f != stdin)
879 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200880 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100881}
882
883static int fill_def_thread(void)
884{
885 memset(&def_thread, 0, sizeof(def_thread));
886
Jens Axboe375b2692007-05-22 09:13:02 +0200887 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100888
889 /*
Jens Axboeee738492007-01-10 11:23:16 +0100890 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100891 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100892 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100893
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100894 def_thread.o.timeout = def_timeout;
Jens Axboeebac4652005-12-08 15:25:21 +0100895 return 0;
896}
897
Jens Axboeebac4652005-12-08 15:25:21 +0100898static void free_shm(void)
899{
900 struct shmid_ds sbuf;
901
902 if (threads) {
Jens Axboe5e1d3062008-05-23 11:55:53 +0200903 void *tp = threads;
904
Jens Axboeebac4652005-12-08 15:25:21 +0100905 threads = NULL;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200906 file_hash_exit();
907 fio_debug_jobp = NULL;
908 shmdt(tp);
Jens Axboeebac4652005-12-08 15:25:21 +0100909 shmctl(shm_id, IPC_RMID, &sbuf);
910 }
Jens Axboe2e5cdb12008-03-01 18:52:49 +0100911
912 scleanup();
Jens Axboeebac4652005-12-08 15:25:21 +0100913}
914
Jens Axboe906c8d72006-06-13 09:37:56 +0200915/*
916 * The thread area is shared between the main process and the job
917 * threads/processes. So setup a shared memory segment that will hold
Jens Axboe380065a2008-03-01 18:56:24 +0100918 * all the job info. We use the end of the region for keeping track of
919 * open files across jobs, for file sharing.
Jens Axboe906c8d72006-06-13 09:37:56 +0200920 */
Jens Axboeebac4652005-12-08 15:25:21 +0100921static int setup_thread_area(void)
922{
Jens Axboe380065a2008-03-01 18:56:24 +0100923 void *hash;
924
Jens Axboeebac4652005-12-08 15:25:21 +0100925 /*
926 * 1024 is too much on some machines, scale max_jobs if
927 * we get a failure that looks like too large a shm segment
928 */
929 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200930 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100931
Jens Axboe380065a2008-03-01 18:56:24 +0100932 size += file_hash_size;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200933 size += sizeof(unsigned int);
Jens Axboe380065a2008-03-01 18:56:24 +0100934
Jens Axboe906c8d72006-06-13 09:37:56 +0200935 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100936 if (shm_id != -1)
937 break;
938 if (errno != EINVAL) {
939 perror("shmget");
940 break;
941 }
942
943 max_jobs >>= 1;
944 } while (max_jobs);
945
946 if (shm_id == -1)
947 return 1;
948
949 threads = shmat(shm_id, NULL, 0);
950 if (threads == (void *) -1) {
951 perror("shmat");
952 return 1;
953 }
954
Jens Axboe1f809d12007-10-25 18:34:02 +0200955 memset(threads, 0, max_jobs * sizeof(struct thread_data));
Jens Axboe380065a2008-03-01 18:56:24 +0100956 hash = (void *) threads + max_jobs * sizeof(struct thread_data);
Jens Axboe5e1d3062008-05-23 11:55:53 +0200957 fio_debug_jobp = (void *) hash + file_hash_size;
958 *fio_debug_jobp = -1;
Jens Axboe380065a2008-03-01 18:56:24 +0100959 file_hash_init(hash);
Jens Axboeebac4652005-12-08 15:25:21 +0100960 atexit(free_shm);
961 return 0;
962}
963
Jens Axboe45378b32007-12-19 13:54:38 +0100964static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +0200965{
Jens Axboe45378b32007-12-19 13:54:38 +0100966 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboeee56ad52008-02-01 10:30:20 +0100967 printf("\t--debug=options\tEnable debug logging\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100968 printf("\t--output\tWrite output to file\n");
969 printf("\t--timeout\tRuntime in seconds\n");
970 printf("\t--latency-log\tGenerate per-job latency logs\n");
971 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
972 printf("\t--minimal\tMinimal (terse) output\n");
973 printf("\t--version\tPrint version info and exit\n");
974 printf("\t--help\t\tPrint this page\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100975 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of"
976 " them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +0200977 printf("\t--showcmd\tTurn a job file into command line options\n");
Aaron Carrolle592a062007-09-14 09:49:41 +0200978 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
979 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100980 printf("\t--readonly\tTurn on safety read-only checks, preventing"
981 " writes\n");
Jens Axboe01f06b62008-02-18 20:53:47 +0100982 printf("\t--section=name\tOnly run specified section in job file\n");
Jens Axboe2b386d22008-03-26 10:32:57 +0100983 printf("\t--alloc-size=kb\tSet smalloc pool to this size in kb"
984 " (def 1024)\n");
Jens Axboeaa58d252010-06-09 09:49:38 +0200985 printf("\nFio was written by Jens Axboe <jens.axboe@oracle.com>");
986 printf("\n Jens Axboe <jaxboe@fusionio.com>\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200987}
988
Jens Axboe79e48f72008-02-01 20:37:09 +0100989#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +0100990struct debug_level debug_levels[] = {
Jens Axboebd6f78b2008-02-01 20:27:52 +0100991 { .name = "process", .shift = FD_PROCESS, },
992 { .name = "file", .shift = FD_FILE, },
993 { .name = "io", .shift = FD_IO, },
994 { .name = "mem", .shift = FD_MEM, },
995 { .name = "blktrace", .shift = FD_BLKTRACE },
996 { .name = "verify", .shift = FD_VERIFY },
Jens Axboe84422ac2008-02-19 20:10:26 +0100997 { .name = "random", .shift = FD_RANDOM },
Jens Axboea3d741f2008-02-27 18:32:33 +0100998 { .name = "parse", .shift = FD_PARSE },
Jens Axboecd991b92008-03-07 13:19:35 +0100999 { .name = "diskutil", .shift = FD_DISKUTIL },
Jens Axboe5e1d3062008-05-23 11:55:53 +02001000 { .name = "job", .shift = FD_JOB },
Jens Axboe29adda32009-01-05 19:06:39 +01001001 { .name = "mutex", .shift = FD_MUTEX },
Jens Axboe79d16312010-03-04 12:43:20 +01001002 { .name = "profile", .shift = FD_PROFILE },
Jens Axboec223da82010-03-24 13:23:53 +01001003 { .name = "time", .shift = FD_TIME },
Jens Axboe02444ad2008-10-07 11:33:00 +02001004 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +01001005};
1006
Jens Axboec09823a2008-02-19 20:16:57 +01001007static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +01001008{
1009 struct debug_level *dl;
1010 char *p = (char *) string;
1011 char *opt;
1012 int i;
1013
1014 if (!strcmp(string, "?") || !strcmp(string, "help")) {
1015 int i;
1016
1017 log_info("fio: dumping debug options:");
1018 for (i = 0; debug_levels[i].name; i++) {
1019 dl = &debug_levels[i];
1020 log_info("%s,", dl->name);
1021 }
Jens Axboebd6f78b2008-02-01 20:27:52 +01001022 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001023 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +01001024 }
1025
1026 while ((opt = strsep(&p, ",")) != NULL) {
1027 int found = 0;
1028
Jens Axboe5e1d3062008-05-23 11:55:53 +02001029 if (!strncmp(opt, "all", 3)) {
1030 log_info("fio: set all debug options\n");
1031 fio_debug = ~0UL;
1032 continue;
1033 }
1034
Jens Axboeee56ad52008-02-01 10:30:20 +01001035 for (i = 0; debug_levels[i].name; i++) {
1036 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +02001037 found = !strncmp(opt, dl->name, strlen(dl->name));
1038 if (!found)
1039 continue;
1040
1041 if (dl->shift == FD_JOB) {
1042 opt = strchr(opt, ':');
1043 if (!opt) {
1044 log_err("fio: missing job number\n");
1045 break;
1046 }
1047 opt++;
1048 fio_debug_jobno = atoi(opt);
1049 log_info("fio: set debug jobno %d\n",
1050 fio_debug_jobno);
1051 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001052 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001053 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +01001054 }
Jens Axboe5e1d3062008-05-23 11:55:53 +02001055 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001056 }
1057
1058 if (!found)
1059 log_err("fio: debug mask %s not found\n", opt);
1060 }
Jens Axboec09823a2008-02-19 20:16:57 +01001061 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +01001062}
Jens Axboe79e48f72008-02-01 20:37:09 +01001063#else
Jens Axboe69b98d42008-05-30 22:25:32 +02001064static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +01001065{
1066 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001067 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +01001068}
1069#endif
Jens Axboeee56ad52008-02-01 10:30:20 +01001070
Jens Axboe214e1ec2007-03-15 10:48:13 +01001071static int parse_cmd_line(int argc, char *argv[])
1072{
1073 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +01001074 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001075
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001076 while ((c = getopt_long_only(argc, argv, "", l_opts, &lidx)) != -1) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001077 switch (c) {
Jens Axboe2b386d22008-03-26 10:32:57 +01001078 case 'a':
1079 smalloc_pool_size = atoi(optarg);
1080 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001081 case 't':
1082 def_timeout = atoi(optarg);
1083 break;
1084 case 'l':
1085 write_lat_log = 1;
1086 break;
Jens Axboe3d73e5a2010-03-25 10:38:07 +01001087 case 'b':
Jens Axboe214e1ec2007-03-15 10:48:13 +01001088 write_bw_log = 1;
1089 break;
1090 case 'o':
1091 f_out = fopen(optarg, "w+");
1092 if (!f_out) {
1093 perror("fopen output");
1094 exit(1);
1095 }
1096 f_err = f_out;
1097 break;
1098 case 'm':
1099 terse_output = 1;
1100 break;
1101 case 'h':
Jens Axboe45378b32007-12-19 13:54:38 +01001102 usage(argv[0]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001103 exit(0);
1104 case 'c':
1105 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +02001106 case 's':
1107 dump_cmdline = 1;
1108 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001109 case 'r':
1110 read_only = 1;
1111 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001112 case 'v':
Jens Axboebce964a2011-01-12 09:07:15 +01001113 /* already being printed, just quit */
Jens Axboe214e1ec2007-03-15 10:48:13 +01001114 exit(0);
Aaron Carrolle592a062007-09-14 09:49:41 +02001115 case 'e':
1116 if (!strcmp("always", optarg))
1117 eta_print = FIO_ETA_ALWAYS;
1118 else if (!strcmp("never", optarg))
1119 eta_print = FIO_ETA_NEVER;
1120 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001121 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001122 if (set_debug(optarg))
1123 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001124 break;
Jens Axboe01f06b62008-02-18 20:53:47 +01001125 case 'x':
1126 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001127 log_err("fio: can't use global as only "
1128 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001129 do_exit++;
1130 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001131 break;
1132 }
1133 if (job_section)
1134 free(job_section);
1135 job_section = strdup(optarg);
1136 break;
Jens Axboe9ac8a792009-11-13 21:23:07 +01001137 case 'p':
Jens Axboe07b32322010-03-05 09:48:44 +01001138 exec_profile = strdup(optarg);
Jens Axboe9ac8a792009-11-13 21:23:07 +01001139 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001140 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001141 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001142 char *val = optarg;
1143
1144 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001145 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001146 if (ret) {
1147 put_job(td);
1148 return 0;
1149 }
1150 td = NULL;
1151 }
1152 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001153 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001154 int global = 0;
1155
Jens Axboe01f06b62008-02-18 20:53:47 +01001156 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001157 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001158
Jens Axboe01f06b62008-02-18 20:53:47 +01001159 if (is_section && skip_this_section(val))
1160 continue;
1161
Jens Axboe214e1ec2007-03-15 10:48:13 +01001162 td = get_new_job(global, &def_thread);
1163 if (!td)
1164 return 0;
1165 }
1166
1167 ret = fio_cmd_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001168 break;
1169 }
1170 default:
Jens Axboec09823a2008-02-19 20:16:57 +01001171 do_exit++;
1172 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001173 break;
1174 }
1175 }
1176
Jens Axboec09823a2008-02-19 20:16:57 +01001177 if (do_exit)
1178 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01001179
Jens Axboe214e1ec2007-03-15 10:48:13 +01001180 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +01001181 if (!ret)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001182 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe7d6a8902008-02-18 20:59:18 +01001183 if (ret)
1184 put_job(td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001185 }
1186
1187 while (optind < argc) {
1188 ini_idx++;
1189 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1190 ini_file[ini_idx - 1] = strdup(argv[optind]);
1191 optind++;
1192 }
1193
1194 return ini_idx;
1195}
1196
Jens Axboeebac4652005-12-08 15:25:21 +01001197int parse_options(int argc, char *argv[])
1198{
Jens Axboe972cfd22006-06-09 11:08:56 +02001199 int job_files, i;
1200
Jens Axboeb4692822006-10-27 13:43:22 +02001201 f_out = stdout;
1202 f_err = stderr;
1203
Jens Axboe2d7760d2010-12-28 09:23:06 +01001204 log_info("%s\n", fio_version_string);
1205
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001206 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02001207
Jens Axboeebac4652005-12-08 15:25:21 +01001208 if (setup_thread_area())
1209 return 1;
1210 if (fill_def_thread())
1211 return 1;
1212
Jens Axboe972cfd22006-06-09 11:08:56 +02001213 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001214
Jens Axboe972cfd22006-06-09 11:08:56 +02001215 for (i = 0; i < job_files; i++) {
1216 if (fill_def_thread())
1217 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001218 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001219 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001220 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001221 }
Jens Axboeebac4652005-12-08 15:25:21 +01001222
Jens Axboe88c6ed82006-06-09 11:28:10 +02001223 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +01001224 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001225
1226 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001227 if (dump_cmdline)
1228 return 0;
Jens Axboe07b32322010-03-05 09:48:44 +01001229 if (exec_profile)
1230 return 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02001231
Bruce Cran03e20d62011-01-02 20:14:54 +01001232 log_err("No jobs(s) defined\n\n");
Jens Axboe45378b32007-12-19 13:54:38 +01001233 usage(argv[0]);
Jens Axboeb4692822006-10-27 13:43:22 +02001234 return 1;
1235 }
1236
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001237 if (def_thread.o.gtod_offload) {
1238 fio_gtod_init();
1239 fio_gtod_offload = 1;
1240 fio_gtod_cpu = def_thread.o.gtod_cpu;
1241 }
1242
Jens Axboeebac4652005-12-08 15:25:21 +01001243 return 0;
1244}