blob: bce284664c8f2e965f19e8db16dd3f813cc0d360 [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 Axboe964f5b92011-01-14 20:51:54 +010025static char fio_version_string[] = "fio 1.50-rc3";
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 Axboea9523c62011-01-17 16:49:54 -070044int warnings_fatal = 0;
Jens Axboeee738492007-01-10 11:23:16 +010045
Jens Axboe214e1ec2007-03-15 10:48:13 +010046int write_bw_log = 0;
Jens Axboe4241ea82007-09-12 08:18:36 +020047int read_only = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020048
Jens Axboe5ec10ea2008-03-06 15:42:00 +010049static int def_timeout;
50static int write_lat_log;
Jens Axboe214e1ec2007-03-15 10:48:13 +010051
52static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020053
Jens Axboeee56ad52008-02-01 10:30:20 +010054unsigned long fio_debug = 0;
Jens Axboe5e1d3062008-05-23 11:55:53 +020055unsigned int fio_debug_jobno = -1;
56unsigned int *fio_debug_jobp = NULL;
Jens Axboeee56ad52008-02-01 10:30:20 +010057
Jens Axboe4c6107f2011-01-18 05:22:22 -070058static char cmd_optstr[256];
59
Jens Axboeb4692822006-10-27 13:43:22 +020060/*
61 * Command line options. These will contain the above, plus a few
62 * extra that only pertain to fio itself and not jobs.
63 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +010064static struct option l_opts[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020065 {
66 .name = "output",
67 .has_arg = required_argument,
68 .val = 'o',
69 },
70 {
71 .name = "timeout",
72 .has_arg = required_argument,
73 .val = 't',
74 },
75 {
76 .name = "latency-log",
77 .has_arg = required_argument,
78 .val = 'l',
79 },
80 {
81 .name = "bandwidth-log",
82 .has_arg = required_argument,
83 .val = 'b',
84 },
85 {
86 .name = "minimal",
87 .has_arg = optional_argument,
88 .val = 'm',
89 },
90 {
91 .name = "version",
92 .has_arg = no_argument,
93 .val = 'v',
94 },
95 {
Jens Axboefd28ca42007-01-09 21:20:13 +010096 .name = "help",
97 .has_arg = no_argument,
98 .val = 'h',
99 },
100 {
101 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +0100102 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +0100103 .val = 'c',
104 },
105 {
Jens Axboecca73aa2007-04-04 11:09:19 +0200106 .name = "showcmd",
107 .has_arg = no_argument,
Jens Axboe724e4432007-09-11 20:02:05 +0200108 .val = 's',
109 },
110 {
111 .name = "readonly",
112 .has_arg = no_argument,
113 .val = 'r',
Jens Axboecca73aa2007-04-04 11:09:19 +0200114 },
115 {
Aaron Carrolle592a062007-09-14 09:49:41 +0200116 .name = "eta",
117 .has_arg = required_argument,
118 .val = 'e',
119 },
120 {
Jens Axboeee56ad52008-02-01 10:30:20 +0100121 .name = "debug",
122 .has_arg = required_argument,
123 .val = 'd',
124 },
125 {
Jens Axboe01f06b62008-02-18 20:53:47 +0100126 .name = "section",
127 .has_arg = required_argument,
128 .val = 'x',
129 },
130 {
Jens Axboe2b386d22008-03-26 10:32:57 +0100131 .name = "alloc-size",
132 .has_arg = required_argument,
133 .val = 'a',
134 },
135 {
Jens Axboe9ac8a792009-11-13 21:23:07 +0100136 .name = "profile",
137 .has_arg = required_argument,
138 .val = 'p',
139 },
140 {
Jens Axboea9523c62011-01-17 16:49:54 -0700141 .name = "warnings-fatal",
142 .has_arg = no_argument,
143 .val = 'w',
144 },
145 {
Jens Axboeb4692822006-10-27 13:43:22 +0200146 .name = NULL,
147 },
148};
149
Joel Becker9728ce32007-03-01 08:24:39 +0100150FILE *get_f_out()
151{
152 return f_out;
153}
154
155FILE *get_f_err()
156{
157 return f_err;
158}
159
Jens Axboe906c8d72006-06-13 09:37:56 +0200160/*
161 * Return a free job structure.
162 */
Jens Axboeebac4652005-12-08 15:25:21 +0100163static struct thread_data *get_new_job(int global, struct thread_data *parent)
164{
165 struct thread_data *td;
166
167 if (global)
168 return &def_thread;
Bruce Crane61f1ec2011-01-14 18:30:26 +0100169 if (thread_number >= max_jobs) {
170 log_err("error: maximum number of jobs (%d) reached.\n",
171 max_jobs);
Jens Axboeebac4652005-12-08 15:25:21 +0100172 return NULL;
Bruce Crane61f1ec2011-01-14 18:30:26 +0100173 }
Jens Axboeebac4652005-12-08 15:25:21 +0100174
175 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200176 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100177
Jens Axboee0b0d892009-12-08 10:10:14 +0100178 td->o.uid = td->o.gid = -1U;
179
Jens Axboecade3ef2007-03-23 15:29:45 +0100180 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100181 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100182
Jens Axboe15dc1932010-03-05 10:59:06 +0100183 profile_add_hooks(td);
184
Jens Axboeebac4652005-12-08 15:25:21 +0100185 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100186 return td;
187}
188
189static void put_job(struct thread_data *td)
190{
Jens Axboe549577a2006-10-30 12:23:41 +0100191 if (td == &def_thread)
192 return;
Jens Axboe58c55ba2010-03-09 12:20:08 +0100193
194 profile_td_exit(td);
Jens Axboe549577a2006-10-30 12:23:41 +0100195
Jens Axboe16edf252007-02-10 14:59:22 +0100196 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100197 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100198
Jens Axboeebac4652005-12-08 15:25:21 +0100199 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
200 thread_number--;
201}
202
Jens Axboe581e7142009-06-09 12:47:16 +0200203static int __setup_rate(struct thread_data *td, enum fio_ddir ddir)
Jens Axboe127f6862007-03-15 12:09:57 +0100204{
Jens Axboe581e7142009-06-09 12:47:16 +0200205 unsigned int bs = td->o.min_bs[ddir];
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100206 unsigned long long bytes_per_sec;
Jens Axboe127f6862007-03-15 12:09:57 +0100207
Jens Axboeff58fce2010-08-25 12:02:08 +0200208 assert(ddir_rw(ddir));
209
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100210 if (td->o.rate[ddir])
211 bytes_per_sec = td->o.rate[ddir];
212 else
213 bytes_per_sec = td->o.rate_iops[ddir] * bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100214
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100215 if (!bytes_per_sec) {
Jens Axboe127f6862007-03-15 12:09:57 +0100216 log_err("rate lower than supported\n");
217 return -1;
218 }
219
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100220 td->rate_nsec_cycle[ddir] = 1000000000ULL / bytes_per_sec;
Jens Axboe581e7142009-06-09 12:47:16 +0200221 td->rate_pending_usleep[ddir] = 0;
Jens Axboe127f6862007-03-15 12:09:57 +0100222 return 0;
223}
224
Jens Axboe581e7142009-06-09 12:47:16 +0200225static int setup_rate(struct thread_data *td)
226{
227 int ret = 0;
228
229 if (td->o.rate[DDIR_READ] || td->o.rate_iops[DDIR_READ])
230 ret = __setup_rate(td, DDIR_READ);
231 if (td->o.rate[DDIR_WRITE] || td->o.rate_iops[DDIR_WRITE])
232 ret |= __setup_rate(td, DDIR_WRITE);
233
234 return ret;
235}
236
Jens Axboe83472392009-02-19 21:32:12 +0100237static int fixed_block_size(struct thread_options *o)
238{
239 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
240 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
241 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE];
242}
243
Jens Axboedad915e2006-10-27 11:10:18 +0200244/*
245 * Lazy way of fixing up options that depend on each other. We could also
246 * define option callback handlers, but this is easier.
247 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100248static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200249{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100250 struct thread_options *o = &td->o;
Jens Axboea9523c62011-01-17 16:49:54 -0700251 int ret;
Jens Axboedad915e2006-10-27 11:10:18 +0200252
Jens Axboef356d012009-01-05 09:56:29 +0100253#ifndef FIO_HAVE_PSHARED_MUTEX
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100254 if (!o->use_thread) {
Jens Axboef356d012009-01-05 09:56:29 +0100255 log_info("fio: this platform does not support process shared"
256 " mutexes, forcing use of threads. Use the 'thread'"
257 " option to get rid of this warning.\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100258 o->use_thread = 1;
Jens Axboea9523c62011-01-17 16:49:54 -0700259 ret = warnings_fatal;
Jens Axboef356d012009-01-05 09:56:29 +0100260 }
261#endif
262
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100263 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200264 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100265 free(o->write_iolog_file);
266 o->write_iolog_file = NULL;
Jens Axboea9523c62011-01-17 16:49:54 -0700267 ret = warnings_fatal;
Jens Axboe076efc72006-10-27 11:24:25 +0200268 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100269
Jens Axboe16b462a2006-10-30 12:35:18 +0100270 /*
271 * only really works for sequential io for now, and with 1 file
272 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100273 if (o->zone_size && td_random(td) && o->open_files == 1)
274 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100275
276 /*
277 * Reads can do overwrites, we always need to pre-create the file
278 */
279 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100280 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100281
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100282 if (!o->min_bs[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100283 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100284 if (!o->max_bs[DDIR_READ])
285 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
286 if (!o->min_bs[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100287 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100288 if (!o->max_bs[DDIR_WRITE])
289 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100290
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100291 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100292
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100293 /*
294 * For random IO, allow blockalign offset other than min_bs.
295 */
296 if (!o->ba[DDIR_READ] || !td_random(td))
297 o->ba[DDIR_READ] = o->min_bs[DDIR_READ];
298 if (!o->ba[DDIR_WRITE] || !td_random(td))
299 o->ba[DDIR_WRITE] = o->min_bs[DDIR_WRITE];
300
301 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
302 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE]) &&
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100303 !o->norandommap) {
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100304 log_err("fio: Any use of blockalign= turns off randommap\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100305 o->norandommap = 1;
Jens Axboea9523c62011-01-17 16:49:54 -0700306 ret = warnings_fatal;
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100307 }
308
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100309 if (!o->file_size_high)
310 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100311
Jens Axboe83472392009-02-19 21:32:12 +0100312 if (o->norandommap && o->verify != VERIFY_NONE
313 && !fixed_block_size(o)) {
314 log_err("fio: norandommap given for variable block sizes, "
315 "verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100316 o->verify = VERIFY_NONE;
Jens Axboea9523c62011-01-17 16:49:54 -0700317 ret = warnings_fatal;
Jens Axboebb8895e2006-10-30 15:14:48 +0100318 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100319 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100320 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100321
322 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100323 * thinktime_spin must be less than thinktime
324 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100325 if (o->thinktime_spin > o->thinktime)
326 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100327
328 /*
329 * The low water mark cannot be bigger than the iodepth
330 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100331 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100332 /*
333 * syslet work around - if the workload is sequential,
334 * we want to let the queue drain all the way down to
335 * avoid seeking between async threads
336 */
337 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100338 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100339 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100340 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100341 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100342
343 /*
344 * If batch number isn't set, default to the same as iodepth
345 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100346 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
347 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100348
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100349 if (o->nr_files > td->files_index)
350 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100351
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100352 if (o->open_files > o->nr_files || !o->open_files)
353 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100354
Jens Axboe581e7142009-06-09 12:47:16 +0200355 if (((o->rate[0] + o->rate[1]) && (o->rate_iops[0] + o->rate_iops[1]))||
356 ((o->ratemin[0] + o->ratemin[1]) && (o->rate_iops_min[0] +
357 o->rate_iops_min[1]))) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100358 log_err("fio: rate and rate_iops are mutually exclusive\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700359 ret = 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100360 }
Jens Axboe581e7142009-06-09 12:47:16 +0200361 if ((o->rate[0] < o->ratemin[0]) || (o->rate[1] < o->ratemin[1]) ||
362 (o->rate_iops[0] < o->rate_iops_min[0]) ||
363 (o->rate_iops[1] < o->rate_iops_min[1])) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100364 log_err("fio: minimum rate exceeds rate\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700365 ret = 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100366 }
367
Jens Axboecf4464c2007-04-17 20:14:42 +0200368 if (!o->timeout && o->time_based) {
369 log_err("fio: time_based requires a runtime/timeout setting\n");
370 o->time_based = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700371 ret = warnings_fatal;
Jens Axboecf4464c2007-04-17 20:14:42 +0200372 }
373
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100374 if (o->fill_device && !o->size)
Jens Axboe5921e802008-05-30 15:02:38 +0200375 o->size = -1ULL;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100376
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100377 if (o->verify != VERIFY_NONE) {
Jens Axboea9523c62011-01-17 16:49:54 -0700378 if (td_rw(td)) {
379 log_info("fio: mixed read/write workload with verify. "
380 "May not work as expected, unless you "
381 "pre-populated the file\n");
382 ret = warnings_fatal;
383 }
Jens Axboea6294432011-01-17 16:51:46 -0700384 if (td_write(td) && o->numjobs > 1) {
Jens Axboea9523c62011-01-17 16:49:54 -0700385 log_info("Multiple writers may overwrite blocks that "
386 "belong to other jobs. This can cause "
387 "verification failures.\n");
388 ret = warnings_fatal;
389 }
390
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100391 o->refill_buffers = 1;
Jens Axboe2f1b8e82010-06-18 09:22:56 +0200392 if (o->max_bs[DDIR_WRITE] != o->min_bs[DDIR_WRITE] &&
393 !o->verify_interval)
394 o->verify_interval = o->min_bs[DDIR_WRITE];
Jens Axboed9905882010-03-18 20:43:00 +0100395 }
Jens Axboe41ccd842008-05-22 09:17:33 +0200396
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100397 if (o->pre_read) {
398 o->invalidate_cache = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700399 if (td->io_ops->flags & FIO_PIPEIO) {
Jens Axboe9c0d2242009-07-01 12:26:28 +0200400 log_info("fio: cannot pre-read files with an IO engine"
401 " that isn't seekable. Pre-read disabled.\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700402 ret = warnings_fatal;
403 }
Jens Axboe9c0d2242009-07-01 12:26:28 +0200404 }
Jens Axboe34f1c042009-06-02 14:19:25 +0200405
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700406#ifndef FIO_HAVE_FDATASYNC
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100407 if (o->fdatasync_blocks) {
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700408 log_info("fio: this platform does not support fdatasync()"
409 " falling back to using fsync(). Use the 'fsync'"
410 " option instead of 'fdatasync' to get rid of"
411 " this warning\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100412 o->fsync_blocks = o->fdatasync_blocks;
413 o->fdatasync_blocks = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700414 ret = warnings_fatal;
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700415 }
416#endif
417
Jens Axboea9523c62011-01-17 16:49:54 -0700418 return ret;
Jens Axboee1f36502006-10-27 10:54:08 +0200419}
420
Jens Axboe906c8d72006-06-13 09:37:56 +0200421/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100422 * This function leaks the buffer
423 */
424static char *to_kmg(unsigned int val)
425{
426 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100427 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100428 char *p = post;
429
Jens Axboe245142f2006-11-08 12:49:21 +0100430 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100431 if (val & 1023)
432 break;
433
434 val >>= 10;
435 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100436 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100437
438 snprintf(buf, 31, "%u%c", val, *p);
439 return buf;
440}
441
Jens Axboe09629a92007-03-09 09:00:06 +0100442/* External engines are specified by "external:name.o") */
443static const char *get_engine_name(const char *str)
444{
445 char *p = strstr(str, ":");
446
447 if (!p)
448 return str;
449
450 p++;
451 strip_blank_front(&p);
452 strip_blank_end(p);
453 return p;
454}
455
Jens Axboee132cba2007-03-14 14:23:54 +0100456static int exists_and_not_file(const char *filename)
457{
458 struct stat sb;
459
460 if (lstat(filename, &sb) == -1)
461 return 0;
462
Bruce Cranecc314b2011-01-04 10:59:30 +0100463 /* \\.\ is the device namespace in Windows, where every file
464 * is a device node */
465 if (S_ISREG(sb.st_mode) && strncmp(filename, "\\\\.\\", 4) != 0)
Jens Axboee132cba2007-03-14 14:23:54 +0100466 return 0;
467
468 return 1;
469}
470
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200471void td_fill_rand_seeds(struct thread_data *td)
472{
473 os_random_seed(td->rand_seeds[0], &td->bsrange_state);
474 os_random_seed(td->rand_seeds[1], &td->verify_state);
475 os_random_seed(td->rand_seeds[2], &td->rwmix_state);
476
477 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
478 os_random_seed(td->rand_seeds[3], &td->next_file_state);
479
480 os_random_seed(td->rand_seeds[5], &td->file_size_state);
Jens Axboe0d29de82010-09-01 13:54:15 +0200481 os_random_seed(td->rand_seeds[6], &td->trim_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200482
483 if (!td_random(td))
484 return;
485
486 if (td->o.rand_repeatable)
487 td->rand_seeds[4] = FIO_RANDSEED * td->thread_number;
488
489 os_random_seed(td->rand_seeds[4], &td->random_state);
490}
491
Jens Axboef8977ee2006-11-06 14:03:03 +0100492/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100493 * Initialize the various random states we need (random io, block size ranges,
494 * read/write mix, etc).
495 */
496static int init_random_state(struct thread_data *td)
497{
Jens Axboe68727072007-03-15 20:49:25 +0100498 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100499
500 fd = open("/dev/urandom", O_RDONLY);
501 if (fd == -1) {
502 td_verror(td, errno, "open");
503 return 1;
504 }
505
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200506 if (read(fd, td->rand_seeds, sizeof(td->rand_seeds)) <
507 (int) sizeof(td->rand_seeds)) {
Jens Axboe9c60ce62007-03-15 09:14:47 +0100508 td_verror(td, EIO, "read");
509 close(fd);
510 return 1;
511 }
512
513 close(fd);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200514 td_fill_rand_seeds(td);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100515 return 0;
516}
517
Jens Axboe9c60ce62007-03-15 09:14:47 +0100518/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200519 * Adds a job to the list of things todo. Sanitizes the various options
520 * to make sure we don't have conflicts, and initializes various
521 * members of td.
522 */
Jens Axboe75154842006-06-01 13:56:09 +0200523static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100524{
Jens Axboe413dd452007-02-23 09:26:09 +0100525 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
526 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100527 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100528 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100529 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100530 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100531
Jens Axboeebac4652005-12-08 15:25:21 +0100532 /*
533 * the def_thread is just for options, it's not a real job
534 */
535 if (td == &def_thread)
536 return 0;
537
Jens Axboecca73aa2007-04-04 11:09:19 +0200538 /*
539 * if we are just dumping the output command line, don't add the job
540 */
541 if (dump_cmdline) {
542 put_job(td);
543 return 0;
544 }
545
Jens Axboe58c55ba2010-03-09 12:20:08 +0100546 if (profile_td_init(td))
547 return 1;
548
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100549 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100550 td->io_ops = load_ioengine(td, engine);
551 if (!td->io_ops) {
552 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100553 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100554 }
Jens Axboedf641192006-10-12 07:55:41 +0200555
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100556 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100557 nr_thread++;
558 else
559 nr_process++;
560
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100561 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100562 td->io_ops->flags |= FIO_RAWIO;
563
Jens Axboee132cba2007-03-14 14:23:54 +0100564 file_alloced = 0;
Jens Axboe691c8fb2008-03-07 14:26:26 +0100565 if (!td->o.filename && !td->files_index && !td->o.read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +0100566 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100567
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100568 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100569 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100570 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100571 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100572 sprintf(fname, "%s.%d.%d", jobname,
573 td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100574 add_file(td, fname);
575 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100576 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100577 }
Jens Axboeebac4652005-12-08 15:25:21 +0100578
Jens Axboe4e991c22007-03-15 11:41:11 +0100579 if (fixup_options(td))
580 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100581
Jens Axboe07eb79d2007-04-12 13:02:38 +0200582 if (td->io_ops->flags & FIO_DISKLESSIO) {
583 struct fio_file *f;
584
585 for_each_file(td, f, i)
586 f->real_file_size = -1ULL;
587 }
588
Jens Axboecdd18ad2008-02-27 18:58:00 +0100589 td->mutex = fio_mutex_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100590
Jens Axboe756867b2007-03-06 15:19:24 +0100591 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
592 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
Jens Axboe02af0982010-06-24 09:59:34 +0200593 td->ts.lat_stat[0].min_val = td->ts.lat_stat[1].min_val = ULONG_MAX;
Jens Axboe756867b2007-03-06 15:19:24 +0100594 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Adam DeBellinscdd54112010-09-28 13:22:55 +0900595 td->ddir_seq_nr = td->o.ddir_seq_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100596
Jens Axboe755c3182009-08-25 22:14:29 +0200597 if ((td->o.stonewall || td->o.new_group) && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100598 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100599 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100600 }
Jens Axboeebac4652005-12-08 15:25:21 +0100601
602 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100603 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100604
Jens Axboe9c60ce62007-03-15 09:14:47 +0100605 if (init_random_state(td))
606 goto err;
607
Jens Axboeebac4652005-12-08 15:25:21 +0100608 if (setup_rate(td))
609 goto err;
610
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100611 if (td->o.write_lat_log) {
Jens Axboe02af0982010-06-24 09:59:34 +0200612 setup_log(&td->ts.lat_log);
Jens Axboe756867b2007-03-06 15:19:24 +0100613 setup_log(&td->ts.slat_log);
614 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100615 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100616 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100617 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100618
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100619 if (!td->o.name)
620 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200621
Jens Axboec6ae0a52006-06-12 11:04:44 +0200622 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200623 if (!job_add_num) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100624 if (!strcmp(td->io_ops->name, "cpuio")) {
625 log_info("%s: ioengine=cpu, cpuload=%u,"
626 " cpucycle=%u\n", td->o.name,
627 td->o.cpuload,
628 td->o.cpucycle);
629 } else {
Jens Axboef8977ee2006-11-06 14:03:03 +0100630 char *c1, *c2, *c3, *c4;
631
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100632 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
633 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
634 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
635 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100636
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100637 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s,"
638 " ioengine=%s, iodepth=%u\n",
639 td->o.name, td->groupid,
640 ddir_str[td->o.td_ddir],
641 c1, c2, c3, c4,
642 td->io_ops->name,
643 td->o.iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100644
645 free(c1);
646 free(c2);
647 free(c3);
648 free(c4);
649 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200650 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100651 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200652 }
Jens Axboeebac4652005-12-08 15:25:21 +0100653
654 /*
655 * recurse add identical jobs, clear numjobs and stonewall options
656 * as they don't apply to sub-jobs
657 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100658 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100659 while (--numjobs) {
660 struct thread_data *td_new = get_new_job(0, td);
661
662 if (!td_new)
663 goto err;
664
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100665 td_new->o.numjobs = 1;
666 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200667 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100668
669 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100670 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100671 td_new->files_index = 0;
Jens Axboe4e6ea2f2009-03-04 20:17:22 +0100672 td_new->files_size = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100673 td_new->files = NULL;
674 }
675
Jens Axboe75154842006-06-01 13:56:09 +0200676 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100677
Jens Axboe75154842006-06-01 13:56:09 +0200678 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100679 goto err;
680 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100681
Jens Axboeebac4652005-12-08 15:25:21 +0100682 return 0;
683err:
684 put_job(td);
685 return -1;
686}
687
Jens Axboe79d16312010-03-04 12:43:20 +0100688/*
689 * Parse as if 'o' was a command line
690 */
691void add_job_opts(const char **o)
692{
693 struct thread_data *td, *td_parent;
694 int i, in_global = 1;
695 char jobname[32];
696
697 i = 0;
698 td_parent = td = NULL;
699 while (o[i]) {
700 if (!strncmp(o[i], "name", 4)) {
701 in_global = 0;
702 if (td)
703 add_job(td, jobname, 0);
704 td = NULL;
705 sprintf(jobname, "%s", o[i] + 5);
706 }
707 if (in_global && !td_parent)
708 td_parent = get_new_job(1, &def_thread);
709 else if (!in_global && !td) {
710 if (!td_parent)
711 td_parent = &def_thread;
712 td = get_new_job(0, td_parent);
713 }
714 if (in_global)
715 fio_options_parse(td_parent, (char **) &o[i], 1);
716 else
717 fio_options_parse(td, (char **) &o[i], 1);
718 i++;
719 }
720
721 if (td)
722 add_job(td, jobname, 0);
723}
724
Jens Axboe01f06b62008-02-18 20:53:47 +0100725static int skip_this_section(const char *name)
726{
727 if (!job_section)
728 return 0;
729 if (!strncmp(name, "global", 6))
730 return 0;
731
Jens Axboeb36beb62009-03-05 21:14:21 +0100732 return strcmp(job_section, name);
Jens Axboe01f06b62008-02-18 20:53:47 +0100733}
734
Jens Axboeebac4652005-12-08 15:25:21 +0100735static int is_empty_or_comment(char *line)
736{
737 unsigned int i;
738
739 for (i = 0; i < strlen(line); i++) {
740 if (line[i] == ';')
741 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100742 if (line[i] == '#')
743 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100744 if (!isspace(line[i]) && !iscntrl(line[i]))
745 return 0;
746 }
747
748 return 1;
749}
750
Jens Axboe313cb202006-12-21 09:50:00 +0100751/*
Jens Axboe07261982006-06-07 10:51:12 +0200752 * This is our [ini] type file parser.
753 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100754static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100755{
Jens Axboee1f36502006-10-27 10:54:08 +0200756 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100757 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100758 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100759 FILE *f;
760 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200761 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200762 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +0200763 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +0100764 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200765 char **opts;
766 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +0100767
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200768 if (!strcmp(file, "-"))
769 f = stdin;
770 else
771 f = fopen(file, "r");
772
Jens Axboeebac4652005-12-08 15:25:21 +0100773 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200774 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100775 return 1;
776 }
777
778 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200779
780 /*
781 * it's really 256 + small bit, 280 should suffice
782 */
783 name = malloc(280);
784 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100785
Jens Axboe3b8b7132008-06-10 19:46:23 +0200786 alloc_opts = 8;
787 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +0200788 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200789
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200790 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100791 do {
Jens Axboeccf8f122007-09-27 10:48:55 +0200792 /*
793 * if skip_fgets is set, we already have loaded a line we
794 * haven't handled.
795 */
796 if (!skip_fgets) {
797 p = fgets(string, 4095, f);
798 if (!p)
799 break;
800 }
gurudas paicdc7f192007-03-29 10:10:56 +0200801
Jens Axboeccf8f122007-09-27 10:48:55 +0200802 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +0200803 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800804 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200805
Jens Axboeebac4652005-12-08 15:25:21 +0100806 if (is_empty_or_comment(p))
807 continue;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800808 if (sscanf(p, "[%255s]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100809 if (inside_skip)
810 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100811 log_err("fio: option <%s> outside of [] job section\n",
812 p);
Jens Axboe088b4202007-07-19 14:53:01 +0200813 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800814 }
Jens Axboeebac4652005-12-08 15:25:21 +0100815
Jens Axboe7a4b80a2010-05-22 20:43:11 +0200816 name[strlen(name) - 1] = '\0';
817
Jens Axboe01f06b62008-02-18 20:53:47 +0100818 if (skip_this_section(name)) {
819 inside_skip = 1;
820 continue;
821 } else
822 inside_skip = 0;
823
Jens Axboeebac4652005-12-08 15:25:21 +0100824 global = !strncmp(name, "global", 6);
825
Jens Axboecca73aa2007-04-04 11:09:19 +0200826 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200827 if (first_sect)
828 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200829 if (!global)
830 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200831 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200832 }
833
Jens Axboeebac4652005-12-08 15:25:21 +0100834 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200835 if (!td) {
836 ret = 1;
837 break;
838 }
Jens Axboeebac4652005-12-08 15:25:21 +0100839
Jens Axboe972cfd22006-06-09 11:08:56 +0200840 /*
841 * Seperate multiple job files by a stonewall
842 */
Jens Axboef9481912006-06-09 11:37:28 +0200843 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100844 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200845 stonewall = 0;
846 }
847
Jens Axboe3b8b7132008-06-10 19:46:23 +0200848 num_opts = 0;
849 memset(opts, 0, alloc_opts * sizeof(char *));
850
Jens Axboeebac4652005-12-08 15:25:21 +0100851 while ((p = fgets(string, 4096, f)) != NULL) {
852 if (is_empty_or_comment(p))
853 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200854
Jens Axboeb6754f92006-05-30 14:29:32 +0200855 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100856
Jens Axboeccf8f122007-09-27 10:48:55 +0200857 /*
858 * new section, break out and make sure we don't
859 * fgets() a new line at the top.
860 */
861 if (p[0] == '[') {
862 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100863 break;
Jens Axboeccf8f122007-09-27 10:48:55 +0200864 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100865
Jens Axboe4ae3f762006-05-30 13:35:14 +0200866 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200867
Jens Axboe3b8b7132008-06-10 19:46:23 +0200868 if (num_opts == alloc_opts) {
869 alloc_opts <<= 1;
870 opts = realloc(opts,
871 alloc_opts * sizeof(char *));
872 }
873
874 opts[num_opts] = strdup(p);
875 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +0100876 }
Jens Axboeebac4652005-12-08 15:25:21 +0100877
Jens Axboe3b8b7132008-06-10 19:46:23 +0200878 ret = fio_options_parse(td, opts, num_opts);
879 if (!ret) {
880 if (dump_cmdline)
881 for (i = 0; i < num_opts; i++)
882 log_info("--%s ", opts[i]);
883
Jens Axboe45410ac2006-06-07 11:10:39 +0200884 ret = add_job(td, name, 0);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200885 } else {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100886 log_err("fio: job %s dropped\n", name);
887 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200888 }
Jens Axboe3b8b7132008-06-10 19:46:23 +0200889
890 for (i = 0; i < num_opts; i++)
891 free(opts[i]);
892 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100893 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100894
Jens Axboecca73aa2007-04-04 11:09:19 +0200895 if (dump_cmdline)
896 log_info("\n");
897
Jens Axboe3b8b7132008-06-10 19:46:23 +0200898 for (i = 0; i < num_opts; i++)
899 free(opts[i]);
900
Jens Axboeebac4652005-12-08 15:25:21 +0100901 free(string);
902 free(name);
Jens Axboe25775942008-06-10 20:26:06 +0200903 free(opts);
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200904 if (f != stdin)
905 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200906 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100907}
908
909static int fill_def_thread(void)
910{
911 memset(&def_thread, 0, sizeof(def_thread));
912
Jens Axboe375b2692007-05-22 09:13:02 +0200913 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100914
915 /*
Jens Axboeee738492007-01-10 11:23:16 +0100916 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100917 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100918 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100919
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100920 def_thread.o.timeout = def_timeout;
Jens Axboeebac4652005-12-08 15:25:21 +0100921 return 0;
922}
923
Jens Axboeebac4652005-12-08 15:25:21 +0100924static void free_shm(void)
925{
926 struct shmid_ds sbuf;
927
928 if (threads) {
Jens Axboe5e1d3062008-05-23 11:55:53 +0200929 void *tp = threads;
930
Jens Axboeebac4652005-12-08 15:25:21 +0100931 threads = NULL;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200932 file_hash_exit();
933 fio_debug_jobp = NULL;
934 shmdt(tp);
Jens Axboeebac4652005-12-08 15:25:21 +0100935 shmctl(shm_id, IPC_RMID, &sbuf);
936 }
Jens Axboe2e5cdb12008-03-01 18:52:49 +0100937
938 scleanup();
Jens Axboeebac4652005-12-08 15:25:21 +0100939}
940
Jens Axboe906c8d72006-06-13 09:37:56 +0200941/*
942 * The thread area is shared between the main process and the job
943 * threads/processes. So setup a shared memory segment that will hold
Jens Axboe380065a2008-03-01 18:56:24 +0100944 * all the job info. We use the end of the region for keeping track of
945 * open files across jobs, for file sharing.
Jens Axboe906c8d72006-06-13 09:37:56 +0200946 */
Jens Axboeebac4652005-12-08 15:25:21 +0100947static int setup_thread_area(void)
948{
Jens Axboe380065a2008-03-01 18:56:24 +0100949 void *hash;
950
Jens Axboeebac4652005-12-08 15:25:21 +0100951 /*
952 * 1024 is too much on some machines, scale max_jobs if
953 * we get a failure that looks like too large a shm segment
954 */
955 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200956 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100957
Jens Axboe380065a2008-03-01 18:56:24 +0100958 size += file_hash_size;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200959 size += sizeof(unsigned int);
Jens Axboe380065a2008-03-01 18:56:24 +0100960
Jens Axboe906c8d72006-06-13 09:37:56 +0200961 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100962 if (shm_id != -1)
963 break;
964 if (errno != EINVAL) {
965 perror("shmget");
966 break;
967 }
968
969 max_jobs >>= 1;
970 } while (max_jobs);
971
972 if (shm_id == -1)
973 return 1;
974
975 threads = shmat(shm_id, NULL, 0);
976 if (threads == (void *) -1) {
977 perror("shmat");
978 return 1;
979 }
980
Jens Axboe1f809d12007-10-25 18:34:02 +0200981 memset(threads, 0, max_jobs * sizeof(struct thread_data));
Jens Axboe380065a2008-03-01 18:56:24 +0100982 hash = (void *) threads + max_jobs * sizeof(struct thread_data);
Jens Axboe5e1d3062008-05-23 11:55:53 +0200983 fio_debug_jobp = (void *) hash + file_hash_size;
984 *fio_debug_jobp = -1;
Jens Axboe380065a2008-03-01 18:56:24 +0100985 file_hash_init(hash);
Jens Axboeebac4652005-12-08 15:25:21 +0100986 atexit(free_shm);
987 return 0;
988}
989
Jens Axboe45378b32007-12-19 13:54:38 +0100990static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +0200991{
Jens Axboe45378b32007-12-19 13:54:38 +0100992 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboeee56ad52008-02-01 10:30:20 +0100993 printf("\t--debug=options\tEnable debug logging\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100994 printf("\t--output\tWrite output to file\n");
995 printf("\t--timeout\tRuntime in seconds\n");
996 printf("\t--latency-log\tGenerate per-job latency logs\n");
997 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
998 printf("\t--minimal\tMinimal (terse) output\n");
999 printf("\t--version\tPrint version info and exit\n");
1000 printf("\t--help\t\tPrint this page\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001001 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of"
1002 " them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +02001003 printf("\t--showcmd\tTurn a job file into command line options\n");
Aaron Carrolle592a062007-09-14 09:49:41 +02001004 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
1005 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001006 printf("\t--readonly\tTurn on safety read-only checks, preventing"
1007 " writes\n");
Jens Axboe01f06b62008-02-18 20:53:47 +01001008 printf("\t--section=name\tOnly run specified section in job file\n");
Jens Axboe2b386d22008-03-26 10:32:57 +01001009 printf("\t--alloc-size=kb\tSet smalloc pool to this size in kb"
1010 " (def 1024)\n");
Jens Axboea9523c62011-01-17 16:49:54 -07001011 printf("\t--warnings-fatal Fio parser warnings are fatal\n");
Jens Axboeaa58d252010-06-09 09:49:38 +02001012 printf("\nFio was written by Jens Axboe <jens.axboe@oracle.com>");
1013 printf("\n Jens Axboe <jaxboe@fusionio.com>\n");
Jens Axboeb4692822006-10-27 13:43:22 +02001014}
1015
Jens Axboe79e48f72008-02-01 20:37:09 +01001016#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +01001017struct debug_level debug_levels[] = {
Jens Axboebd6f78b2008-02-01 20:27:52 +01001018 { .name = "process", .shift = FD_PROCESS, },
1019 { .name = "file", .shift = FD_FILE, },
1020 { .name = "io", .shift = FD_IO, },
1021 { .name = "mem", .shift = FD_MEM, },
1022 { .name = "blktrace", .shift = FD_BLKTRACE },
1023 { .name = "verify", .shift = FD_VERIFY },
Jens Axboe84422ac2008-02-19 20:10:26 +01001024 { .name = "random", .shift = FD_RANDOM },
Jens Axboea3d741f2008-02-27 18:32:33 +01001025 { .name = "parse", .shift = FD_PARSE },
Jens Axboecd991b92008-03-07 13:19:35 +01001026 { .name = "diskutil", .shift = FD_DISKUTIL },
Jens Axboe5e1d3062008-05-23 11:55:53 +02001027 { .name = "job", .shift = FD_JOB },
Jens Axboe29adda32009-01-05 19:06:39 +01001028 { .name = "mutex", .shift = FD_MUTEX },
Jens Axboe79d16312010-03-04 12:43:20 +01001029 { .name = "profile", .shift = FD_PROFILE },
Jens Axboec223da82010-03-24 13:23:53 +01001030 { .name = "time", .shift = FD_TIME },
Jens Axboe02444ad2008-10-07 11:33:00 +02001031 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +01001032};
1033
Jens Axboec09823a2008-02-19 20:16:57 +01001034static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +01001035{
1036 struct debug_level *dl;
1037 char *p = (char *) string;
1038 char *opt;
1039 int i;
1040
1041 if (!strcmp(string, "?") || !strcmp(string, "help")) {
1042 int i;
1043
1044 log_info("fio: dumping debug options:");
1045 for (i = 0; debug_levels[i].name; i++) {
1046 dl = &debug_levels[i];
1047 log_info("%s,", dl->name);
1048 }
Jens Axboebd6f78b2008-02-01 20:27:52 +01001049 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001050 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +01001051 }
1052
1053 while ((opt = strsep(&p, ",")) != NULL) {
1054 int found = 0;
1055
Jens Axboe5e1d3062008-05-23 11:55:53 +02001056 if (!strncmp(opt, "all", 3)) {
1057 log_info("fio: set all debug options\n");
1058 fio_debug = ~0UL;
1059 continue;
1060 }
1061
Jens Axboeee56ad52008-02-01 10:30:20 +01001062 for (i = 0; debug_levels[i].name; i++) {
1063 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +02001064 found = !strncmp(opt, dl->name, strlen(dl->name));
1065 if (!found)
1066 continue;
1067
1068 if (dl->shift == FD_JOB) {
1069 opt = strchr(opt, ':');
1070 if (!opt) {
1071 log_err("fio: missing job number\n");
1072 break;
1073 }
1074 opt++;
1075 fio_debug_jobno = atoi(opt);
1076 log_info("fio: set debug jobno %d\n",
1077 fio_debug_jobno);
1078 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001079 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001080 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +01001081 }
Jens Axboe5e1d3062008-05-23 11:55:53 +02001082 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001083 }
1084
1085 if (!found)
1086 log_err("fio: debug mask %s not found\n", opt);
1087 }
Jens Axboec09823a2008-02-19 20:16:57 +01001088 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +01001089}
Jens Axboe79e48f72008-02-01 20:37:09 +01001090#else
Jens Axboe69b98d42008-05-30 22:25:32 +02001091static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +01001092{
1093 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001094 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +01001095}
1096#endif
Jens Axboeee56ad52008-02-01 10:30:20 +01001097
Jens Axboe4c6107f2011-01-18 05:22:22 -07001098static void fio_options_fill_optstring(void)
1099{
1100 char *ostr = cmd_optstr;
1101 int i, c;
1102
1103 c = i = 0;
1104 while (l_opts[i].name) {
1105 ostr[c++] = l_opts[i].val;
1106 if (l_opts[i].has_arg == required_argument)
1107 ostr[c++] = ':';
1108 else if (l_opts[i].has_arg == optional_argument) {
1109 ostr[c++] = ':';
1110 ostr[c++] = ':';
1111 }
1112 i++;
1113 }
1114 ostr[c] = '\0';
1115}
1116
Jens Axboe214e1ec2007-03-15 10:48:13 +01001117static int parse_cmd_line(int argc, char *argv[])
1118{
1119 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +01001120 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe4c6107f2011-01-18 05:22:22 -07001121 char *ostr = cmd_optstr;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001122
Jens Axboe4c6107f2011-01-18 05:22:22 -07001123 while ((c = getopt_long_only(argc, argv, ostr, l_opts, &lidx)) != -1) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001124 switch (c) {
Jens Axboe2b386d22008-03-26 10:32:57 +01001125 case 'a':
1126 smalloc_pool_size = atoi(optarg);
1127 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001128 case 't':
1129 def_timeout = atoi(optarg);
1130 break;
1131 case 'l':
1132 write_lat_log = 1;
1133 break;
Jens Axboe3d73e5a2010-03-25 10:38:07 +01001134 case 'b':
Jens Axboe214e1ec2007-03-15 10:48:13 +01001135 write_bw_log = 1;
1136 break;
1137 case 'o':
1138 f_out = fopen(optarg, "w+");
1139 if (!f_out) {
1140 perror("fopen output");
1141 exit(1);
1142 }
1143 f_err = f_out;
1144 break;
1145 case 'm':
1146 terse_output = 1;
1147 break;
1148 case 'h':
Jens Axboe45378b32007-12-19 13:54:38 +01001149 usage(argv[0]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001150 exit(0);
1151 case 'c':
1152 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +02001153 case 's':
1154 dump_cmdline = 1;
1155 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001156 case 'r':
1157 read_only = 1;
1158 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001159 case 'v':
Jens Axboebce964a2011-01-12 09:07:15 +01001160 /* already being printed, just quit */
Jens Axboe214e1ec2007-03-15 10:48:13 +01001161 exit(0);
Aaron Carrolle592a062007-09-14 09:49:41 +02001162 case 'e':
1163 if (!strcmp("always", optarg))
1164 eta_print = FIO_ETA_ALWAYS;
1165 else if (!strcmp("never", optarg))
1166 eta_print = FIO_ETA_NEVER;
1167 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001168 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001169 if (set_debug(optarg))
1170 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001171 break;
Jens Axboe01f06b62008-02-18 20:53:47 +01001172 case 'x':
1173 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001174 log_err("fio: can't use global as only "
1175 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001176 do_exit++;
1177 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001178 break;
1179 }
1180 if (job_section)
1181 free(job_section);
1182 job_section = strdup(optarg);
1183 break;
Jens Axboe9ac8a792009-11-13 21:23:07 +01001184 case 'p':
Jens Axboe07b32322010-03-05 09:48:44 +01001185 exec_profile = strdup(optarg);
Jens Axboe9ac8a792009-11-13 21:23:07 +01001186 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001187 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001188 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001189 char *val = optarg;
1190
1191 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001192 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001193 if (ret) {
1194 put_job(td);
1195 return 0;
1196 }
1197 td = NULL;
1198 }
1199 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001200 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001201 int global = 0;
1202
Jens Axboe01f06b62008-02-18 20:53:47 +01001203 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001204 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001205
Jens Axboe01f06b62008-02-18 20:53:47 +01001206 if (is_section && skip_this_section(val))
1207 continue;
1208
Jens Axboe214e1ec2007-03-15 10:48:13 +01001209 td = get_new_job(global, &def_thread);
1210 if (!td)
1211 return 0;
1212 }
1213
1214 ret = fio_cmd_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001215 break;
1216 }
Jens Axboea9523c62011-01-17 16:49:54 -07001217 case 'w':
1218 warnings_fatal = 1;
1219 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001220 default:
Jens Axboec09823a2008-02-19 20:16:57 +01001221 do_exit++;
1222 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001223 break;
1224 }
1225 }
1226
Jens Axboec09823a2008-02-19 20:16:57 +01001227 if (do_exit)
1228 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01001229
Jens Axboe214e1ec2007-03-15 10:48:13 +01001230 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +01001231 if (!ret)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001232 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe7d6a8902008-02-18 20:59:18 +01001233 if (ret)
1234 put_job(td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001235 }
1236
1237 while (optind < argc) {
1238 ini_idx++;
1239 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1240 ini_file[ini_idx - 1] = strdup(argv[optind]);
1241 optind++;
1242 }
1243
1244 return ini_idx;
1245}
1246
Jens Axboeebac4652005-12-08 15:25:21 +01001247int parse_options(int argc, char *argv[])
1248{
Jens Axboe972cfd22006-06-09 11:08:56 +02001249 int job_files, i;
1250
Jens Axboeb4692822006-10-27 13:43:22 +02001251 f_out = stdout;
1252 f_err = stderr;
1253
Jens Axboe2d7760d2010-12-28 09:23:06 +01001254 log_info("%s\n", fio_version_string);
1255
Jens Axboe4c6107f2011-01-18 05:22:22 -07001256 fio_options_fill_optstring();
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001257 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02001258
Jens Axboeebac4652005-12-08 15:25:21 +01001259 if (setup_thread_area())
1260 return 1;
1261 if (fill_def_thread())
1262 return 1;
1263
Jens Axboe972cfd22006-06-09 11:08:56 +02001264 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001265
Jens Axboe972cfd22006-06-09 11:08:56 +02001266 for (i = 0; i < job_files; i++) {
1267 if (fill_def_thread())
1268 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001269 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001270 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001271 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001272 }
Jens Axboeebac4652005-12-08 15:25:21 +01001273
Jens Axboe88c6ed82006-06-09 11:28:10 +02001274 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +01001275 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001276
1277 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001278 if (dump_cmdline)
1279 return 0;
Jens Axboe07b32322010-03-05 09:48:44 +01001280 if (exec_profile)
1281 return 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02001282
Bruce Cran03e20d62011-01-02 20:14:54 +01001283 log_err("No jobs(s) defined\n\n");
Jens Axboe45378b32007-12-19 13:54:38 +01001284 usage(argv[0]);
Jens Axboeb4692822006-10-27 13:43:22 +02001285 return 1;
1286 }
1287
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001288 if (def_thread.o.gtod_offload) {
1289 fio_gtod_init();
1290 fio_gtod_offload = 1;
1291 fio_gtod_cpu = def_thread.o.gtod_cpu;
1292 }
1293
Jens Axboeebac4652005-12-08 15:25:21 +01001294 return 0;
1295}