blob: c3fe88f6986f256d61374f9f0f434cbff3f2d1be [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 Axboef86aaa72010-07-14 17:39:52 -060025static char fio_version_string[] = "fio 1.42";
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;
161 if (thread_number >= max_jobs)
162 return NULL;
163
164 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200165 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100166
Jens Axboee0b0d892009-12-08 10:10:14 +0100167 td->o.uid = td->o.gid = -1U;
168
Jens Axboecade3ef2007-03-23 15:29:45 +0100169 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100170 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100171
Jens Axboe15dc1932010-03-05 10:59:06 +0100172 profile_add_hooks(td);
173
Jens Axboeebac4652005-12-08 15:25:21 +0100174 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100175 return td;
176}
177
178static void put_job(struct thread_data *td)
179{
Jens Axboe549577a2006-10-30 12:23:41 +0100180 if (td == &def_thread)
181 return;
Jens Axboe58c55ba2010-03-09 12:20:08 +0100182
183 profile_td_exit(td);
Jens Axboe549577a2006-10-30 12:23:41 +0100184
Jens Axboe16edf252007-02-10 14:59:22 +0100185 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100186 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100187
Jens Axboeebac4652005-12-08 15:25:21 +0100188 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
189 thread_number--;
190}
191
Jens Axboe581e7142009-06-09 12:47:16 +0200192static int __setup_rate(struct thread_data *td, enum fio_ddir ddir)
Jens Axboe127f6862007-03-15 12:09:57 +0100193{
Jens Axboe581e7142009-06-09 12:47:16 +0200194 unsigned int bs = td->o.min_bs[ddir];
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100195 unsigned long long bytes_per_sec;
Jens Axboe127f6862007-03-15 12:09:57 +0100196
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100197 if (td->o.rate[ddir])
198 bytes_per_sec = td->o.rate[ddir];
199 else
200 bytes_per_sec = td->o.rate_iops[ddir] * bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100201
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100202 if (!bytes_per_sec) {
Jens Axboe127f6862007-03-15 12:09:57 +0100203 log_err("rate lower than supported\n");
204 return -1;
205 }
206
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100207 td->rate_nsec_cycle[ddir] = 1000000000ULL / bytes_per_sec;
Jens Axboe581e7142009-06-09 12:47:16 +0200208 td->rate_pending_usleep[ddir] = 0;
Jens Axboe127f6862007-03-15 12:09:57 +0100209 return 0;
210}
211
Jens Axboe581e7142009-06-09 12:47:16 +0200212static int setup_rate(struct thread_data *td)
213{
214 int ret = 0;
215
216 if (td->o.rate[DDIR_READ] || td->o.rate_iops[DDIR_READ])
217 ret = __setup_rate(td, DDIR_READ);
218 if (td->o.rate[DDIR_WRITE] || td->o.rate_iops[DDIR_WRITE])
219 ret |= __setup_rate(td, DDIR_WRITE);
220
221 return ret;
222}
223
Jens Axboe83472392009-02-19 21:32:12 +0100224static int fixed_block_size(struct thread_options *o)
225{
226 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
227 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
228 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE];
229}
230
Jens Axboedad915e2006-10-27 11:10:18 +0200231/*
232 * Lazy way of fixing up options that depend on each other. We could also
233 * define option callback handlers, but this is easier.
234 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100235static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200236{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100237 struct thread_options *o = &td->o;
Jens Axboedad915e2006-10-27 11:10:18 +0200238
Jens Axboef356d012009-01-05 09:56:29 +0100239#ifndef FIO_HAVE_PSHARED_MUTEX
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100240 if (!o->use_thread) {
Jens Axboef356d012009-01-05 09:56:29 +0100241 log_info("fio: this platform does not support process shared"
242 " mutexes, forcing use of threads. Use the 'thread'"
243 " option to get rid of this warning.\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100244 o->use_thread = 1;
Jens Axboef356d012009-01-05 09:56:29 +0100245 }
246#endif
247
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100248 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200249 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100250 free(o->write_iolog_file);
251 o->write_iolog_file = NULL;
Jens Axboe076efc72006-10-27 11:24:25 +0200252 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100253
Jens Axboe16b462a2006-10-30 12:35:18 +0100254 /*
255 * only really works for sequential io for now, and with 1 file
256 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100257 if (o->zone_size && td_random(td) && o->open_files == 1)
258 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100259
260 /*
261 * Reads can do overwrites, we always need to pre-create the file
262 */
263 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100264 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100265
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100266 if (!o->min_bs[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100267 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100268 if (!o->max_bs[DDIR_READ])
269 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
270 if (!o->min_bs[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100271 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100272 if (!o->max_bs[DDIR_WRITE])
273 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100274
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100275 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100276
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100277 /*
278 * For random IO, allow blockalign offset other than min_bs.
279 */
280 if (!o->ba[DDIR_READ] || !td_random(td))
281 o->ba[DDIR_READ] = o->min_bs[DDIR_READ];
282 if (!o->ba[DDIR_WRITE] || !td_random(td))
283 o->ba[DDIR_WRITE] = o->min_bs[DDIR_WRITE];
284
285 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
286 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE]) &&
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100287 !o->norandommap) {
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100288 log_err("fio: Any use of blockalign= turns off randommap\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100289 o->norandommap = 1;
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100290 }
291
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100292 if (!o->file_size_high)
293 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100294
Jens Axboe83472392009-02-19 21:32:12 +0100295 if (o->norandommap && o->verify != VERIFY_NONE
296 && !fixed_block_size(o)) {
297 log_err("fio: norandommap given for variable block sizes, "
298 "verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100299 o->verify = VERIFY_NONE;
Jens Axboebb8895e2006-10-30 15:14:48 +0100300 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100301 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100302 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100303
304 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100305 * thinktime_spin must be less than thinktime
306 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100307 if (o->thinktime_spin > o->thinktime)
308 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100309
310 /*
311 * The low water mark cannot be bigger than the iodepth
312 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100313 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100314 /*
315 * syslet work around - if the workload is sequential,
316 * we want to let the queue drain all the way down to
317 * avoid seeking between async threads
318 */
319 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100320 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100321 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100322 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100323 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100324
325 /*
326 * If batch number isn't set, default to the same as iodepth
327 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100328 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
329 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100330
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100331 if (o->nr_files > td->files_index)
332 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100333
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100334 if (o->open_files > o->nr_files || !o->open_files)
335 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100336
Jens Axboe581e7142009-06-09 12:47:16 +0200337 if (((o->rate[0] + o->rate[1]) && (o->rate_iops[0] + o->rate_iops[1]))||
338 ((o->ratemin[0] + o->ratemin[1]) && (o->rate_iops_min[0] +
339 o->rate_iops_min[1]))) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100340 log_err("fio: rate and rate_iops are mutually exclusive\n");
341 return 1;
342 }
Jens Axboe581e7142009-06-09 12:47:16 +0200343 if ((o->rate[0] < o->ratemin[0]) || (o->rate[1] < o->ratemin[1]) ||
344 (o->rate_iops[0] < o->rate_iops_min[0]) ||
345 (o->rate_iops[1] < o->rate_iops_min[1])) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100346 log_err("fio: minimum rate exceeds rate\n");
347 return 1;
348 }
349
Jens Axboecf4464c2007-04-17 20:14:42 +0200350 if (!o->timeout && o->time_based) {
351 log_err("fio: time_based requires a runtime/timeout setting\n");
352 o->time_based = 0;
353 }
354
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100355 if (o->fill_device && !o->size)
Jens Axboe5921e802008-05-30 15:02:38 +0200356 o->size = -1ULL;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100357
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100358 if (td_rw(td) && o->verify != VERIFY_NONE)
Jens Axboe79713142008-02-06 14:40:14 +0100359 log_info("fio: mixed read/write workload with verify. May not "
360 "work as expected, unless you pre-populated the file\n");
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100361
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100362 if (o->verify != VERIFY_NONE) {
363 o->refill_buffers = 1;
Jens Axboe2f1b8e82010-06-18 09:22:56 +0200364 if (o->max_bs[DDIR_WRITE] != o->min_bs[DDIR_WRITE] &&
365 !o->verify_interval)
366 o->verify_interval = o->min_bs[DDIR_WRITE];
Jens Axboed9905882010-03-18 20:43:00 +0100367 }
Jens Axboe41ccd842008-05-22 09:17:33 +0200368
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100369 if (o->pre_read) {
370 o->invalidate_cache = 0;
Jens Axboe9c0d2242009-07-01 12:26:28 +0200371 if (td->io_ops->flags & FIO_PIPEIO)
372 log_info("fio: cannot pre-read files with an IO engine"
373 " that isn't seekable. Pre-read disabled.\n");
374 }
Jens Axboe34f1c042009-06-02 14:19:25 +0200375
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700376#ifndef FIO_HAVE_FDATASYNC
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100377 if (o->fdatasync_blocks) {
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700378 log_info("fio: this platform does not support fdatasync()"
379 " falling back to using fsync(). Use the 'fsync'"
380 " option instead of 'fdatasync' to get rid of"
381 " this warning\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100382 o->fsync_blocks = o->fdatasync_blocks;
383 o->fdatasync_blocks = 0;
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700384 }
385#endif
386
Jens Axboe4e991c22007-03-15 11:41:11 +0100387 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200388}
389
Jens Axboe906c8d72006-06-13 09:37:56 +0200390/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100391 * This function leaks the buffer
392 */
393static char *to_kmg(unsigned int val)
394{
395 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100396 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100397 char *p = post;
398
Jens Axboe245142f2006-11-08 12:49:21 +0100399 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100400 if (val & 1023)
401 break;
402
403 val >>= 10;
404 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100405 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100406
407 snprintf(buf, 31, "%u%c", val, *p);
408 return buf;
409}
410
Jens Axboe09629a92007-03-09 09:00:06 +0100411/* External engines are specified by "external:name.o") */
412static const char *get_engine_name(const char *str)
413{
414 char *p = strstr(str, ":");
415
416 if (!p)
417 return str;
418
419 p++;
420 strip_blank_front(&p);
421 strip_blank_end(p);
422 return p;
423}
424
Jens Axboee132cba2007-03-14 14:23:54 +0100425static int exists_and_not_file(const char *filename)
426{
427 struct stat sb;
428
429 if (lstat(filename, &sb) == -1)
430 return 0;
431
432 if (S_ISREG(sb.st_mode))
433 return 0;
434
435 return 1;
436}
437
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200438void td_fill_rand_seeds(struct thread_data *td)
439{
440 os_random_seed(td->rand_seeds[0], &td->bsrange_state);
441 os_random_seed(td->rand_seeds[1], &td->verify_state);
442 os_random_seed(td->rand_seeds[2], &td->rwmix_state);
443
444 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
445 os_random_seed(td->rand_seeds[3], &td->next_file_state);
446
447 os_random_seed(td->rand_seeds[5], &td->file_size_state);
448
449 if (!td_random(td))
450 return;
451
452 if (td->o.rand_repeatable)
453 td->rand_seeds[4] = FIO_RANDSEED * td->thread_number;
454
455 os_random_seed(td->rand_seeds[4], &td->random_state);
456}
457
Jens Axboef8977ee2006-11-06 14:03:03 +0100458/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100459 * Initialize the various random states we need (random io, block size ranges,
460 * read/write mix, etc).
461 */
462static int init_random_state(struct thread_data *td)
463{
Jens Axboe68727072007-03-15 20:49:25 +0100464 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100465
466 fd = open("/dev/urandom", O_RDONLY);
467 if (fd == -1) {
468 td_verror(td, errno, "open");
469 return 1;
470 }
471
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200472 if (read(fd, td->rand_seeds, sizeof(td->rand_seeds)) <
473 (int) sizeof(td->rand_seeds)) {
Jens Axboe9c60ce62007-03-15 09:14:47 +0100474 td_verror(td, EIO, "read");
475 close(fd);
476 return 1;
477 }
478
479 close(fd);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200480 td_fill_rand_seeds(td);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100481 return 0;
482}
483
Jens Axboe9c60ce62007-03-15 09:14:47 +0100484/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200485 * Adds a job to the list of things todo. Sanitizes the various options
486 * to make sure we don't have conflicts, and initializes various
487 * members of td.
488 */
Jens Axboe75154842006-06-01 13:56:09 +0200489static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100490{
Jens Axboe413dd452007-02-23 09:26:09 +0100491 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
492 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100493 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100494 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100495 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100496 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100497
Jens Axboeebac4652005-12-08 15:25:21 +0100498 /*
499 * the def_thread is just for options, it's not a real job
500 */
501 if (td == &def_thread)
502 return 0;
503
Jens Axboecca73aa2007-04-04 11:09:19 +0200504 /*
505 * if we are just dumping the output command line, don't add the job
506 */
507 if (dump_cmdline) {
508 put_job(td);
509 return 0;
510 }
511
Jens Axboe58c55ba2010-03-09 12:20:08 +0100512 if (profile_td_init(td))
513 return 1;
514
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100515 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100516 td->io_ops = load_ioengine(td, engine);
517 if (!td->io_ops) {
518 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100519 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100520 }
Jens Axboedf641192006-10-12 07:55:41 +0200521
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100522 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100523 nr_thread++;
524 else
525 nr_process++;
526
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100527 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100528 td->io_ops->flags |= FIO_RAWIO;
529
Jens Axboee132cba2007-03-14 14:23:54 +0100530 file_alloced = 0;
Jens Axboe691c8fb2008-03-07 14:26:26 +0100531 if (!td->o.filename && !td->files_index && !td->o.read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +0100532 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100533
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100534 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100535 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100536 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100537 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100538 sprintf(fname, "%s.%d.%d", jobname,
539 td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100540 add_file(td, fname);
541 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100542 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100543 }
Jens Axboeebac4652005-12-08 15:25:21 +0100544
Jens Axboe4e991c22007-03-15 11:41:11 +0100545 if (fixup_options(td))
546 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100547
Jens Axboe07eb79d2007-04-12 13:02:38 +0200548 if (td->io_ops->flags & FIO_DISKLESSIO) {
549 struct fio_file *f;
550
551 for_each_file(td, f, i)
552 f->real_file_size = -1ULL;
553 }
554
Jens Axboecdd18ad2008-02-27 18:58:00 +0100555 td->mutex = fio_mutex_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100556
Jens Axboe756867b2007-03-06 15:19:24 +0100557 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
558 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
Jens Axboe02af0982010-06-24 09:59:34 +0200559 td->ts.lat_stat[0].min_val = td->ts.lat_stat[1].min_val = ULONG_MAX;
Jens Axboe756867b2007-03-06 15:19:24 +0100560 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboe38dad622010-07-20 14:46:00 -0600561 td->ddir_seq_nr = td->o.ddir_seq_nr + 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100562
Jens Axboe755c3182009-08-25 22:14:29 +0200563 if ((td->o.stonewall || td->o.new_group) && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100564 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100565 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100566 }
Jens Axboeebac4652005-12-08 15:25:21 +0100567
568 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100569 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100570
Jens Axboe9c60ce62007-03-15 09:14:47 +0100571 if (init_random_state(td))
572 goto err;
573
Jens Axboeebac4652005-12-08 15:25:21 +0100574 if (setup_rate(td))
575 goto err;
576
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100577 if (td->o.write_lat_log) {
Jens Axboe02af0982010-06-24 09:59:34 +0200578 setup_log(&td->ts.lat_log);
Jens Axboe756867b2007-03-06 15:19:24 +0100579 setup_log(&td->ts.slat_log);
580 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100581 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100582 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100583 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100584
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100585 if (!td->o.name)
586 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200587
Jens Axboec6ae0a52006-06-12 11:04:44 +0200588 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200589 if (!job_add_num) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100590 if (!strcmp(td->io_ops->name, "cpuio")) {
591 log_info("%s: ioengine=cpu, cpuload=%u,"
592 " cpucycle=%u\n", td->o.name,
593 td->o.cpuload,
594 td->o.cpucycle);
595 } else {
Jens Axboef8977ee2006-11-06 14:03:03 +0100596 char *c1, *c2, *c3, *c4;
597
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100598 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
599 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
600 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
601 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100602
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100603 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s,"
604 " ioengine=%s, iodepth=%u\n",
605 td->o.name, td->groupid,
606 ddir_str[td->o.td_ddir],
607 c1, c2, c3, c4,
608 td->io_ops->name,
609 td->o.iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100610
611 free(c1);
612 free(c2);
613 free(c3);
614 free(c4);
615 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200616 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100617 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200618 }
Jens Axboeebac4652005-12-08 15:25:21 +0100619
620 /*
621 * recurse add identical jobs, clear numjobs and stonewall options
622 * as they don't apply to sub-jobs
623 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100624 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100625 while (--numjobs) {
626 struct thread_data *td_new = get_new_job(0, td);
627
628 if (!td_new)
629 goto err;
630
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100631 td_new->o.numjobs = 1;
632 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200633 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100634
635 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100636 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100637 td_new->files_index = 0;
Jens Axboe4e6ea2f2009-03-04 20:17:22 +0100638 td_new->files_size = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100639 td_new->files = NULL;
640 }
641
Jens Axboe75154842006-06-01 13:56:09 +0200642 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100643
Jens Axboe75154842006-06-01 13:56:09 +0200644 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100645 goto err;
646 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100647
Jens Axboeebac4652005-12-08 15:25:21 +0100648 return 0;
649err:
650 put_job(td);
651 return -1;
652}
653
Jens Axboe79d16312010-03-04 12:43:20 +0100654/*
655 * Parse as if 'o' was a command line
656 */
657void add_job_opts(const char **o)
658{
659 struct thread_data *td, *td_parent;
660 int i, in_global = 1;
661 char jobname[32];
662
663 i = 0;
664 td_parent = td = NULL;
665 while (o[i]) {
666 if (!strncmp(o[i], "name", 4)) {
667 in_global = 0;
668 if (td)
669 add_job(td, jobname, 0);
670 td = NULL;
671 sprintf(jobname, "%s", o[i] + 5);
672 }
673 if (in_global && !td_parent)
674 td_parent = get_new_job(1, &def_thread);
675 else if (!in_global && !td) {
676 if (!td_parent)
677 td_parent = &def_thread;
678 td = get_new_job(0, td_parent);
679 }
680 if (in_global)
681 fio_options_parse(td_parent, (char **) &o[i], 1);
682 else
683 fio_options_parse(td, (char **) &o[i], 1);
684 i++;
685 }
686
687 if (td)
688 add_job(td, jobname, 0);
689}
690
Jens Axboe01f06b62008-02-18 20:53:47 +0100691static int skip_this_section(const char *name)
692{
693 if (!job_section)
694 return 0;
695 if (!strncmp(name, "global", 6))
696 return 0;
697
Jens Axboeb36beb62009-03-05 21:14:21 +0100698 return strcmp(job_section, name);
Jens Axboe01f06b62008-02-18 20:53:47 +0100699}
700
Jens Axboeebac4652005-12-08 15:25:21 +0100701static int is_empty_or_comment(char *line)
702{
703 unsigned int i;
704
705 for (i = 0; i < strlen(line); i++) {
706 if (line[i] == ';')
707 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100708 if (line[i] == '#')
709 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100710 if (!isspace(line[i]) && !iscntrl(line[i]))
711 return 0;
712 }
713
714 return 1;
715}
716
Jens Axboe313cb202006-12-21 09:50:00 +0100717/*
Jens Axboe07261982006-06-07 10:51:12 +0200718 * This is our [ini] type file parser.
719 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100720static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100721{
Jens Axboee1f36502006-10-27 10:54:08 +0200722 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100723 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100724 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100725 FILE *f;
726 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200727 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200728 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +0200729 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +0100730 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200731 char **opts;
732 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +0100733
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200734 if (!strcmp(file, "-"))
735 f = stdin;
736 else
737 f = fopen(file, "r");
738
Jens Axboeebac4652005-12-08 15:25:21 +0100739 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200740 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100741 return 1;
742 }
743
744 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200745
746 /*
747 * it's really 256 + small bit, 280 should suffice
748 */
749 name = malloc(280);
750 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100751
Jens Axboe3b8b7132008-06-10 19:46:23 +0200752 alloc_opts = 8;
753 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +0200754 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200755
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200756 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100757 do {
Jens Axboeccf8f122007-09-27 10:48:55 +0200758 /*
759 * if skip_fgets is set, we already have loaded a line we
760 * haven't handled.
761 */
762 if (!skip_fgets) {
763 p = fgets(string, 4095, f);
764 if (!p)
765 break;
766 }
gurudas paicdc7f192007-03-29 10:10:56 +0200767
Jens Axboeccf8f122007-09-27 10:48:55 +0200768 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +0200769 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800770 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200771
Jens Axboeebac4652005-12-08 15:25:21 +0100772 if (is_empty_or_comment(p))
773 continue;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800774 if (sscanf(p, "[%255s]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100775 if (inside_skip)
776 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100777 log_err("fio: option <%s> outside of [] job section\n",
778 p);
Jens Axboe088b4202007-07-19 14:53:01 +0200779 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800780 }
Jens Axboeebac4652005-12-08 15:25:21 +0100781
Jens Axboe7a4b80a2010-05-22 20:43:11 +0200782 name[strlen(name) - 1] = '\0';
783
Jens Axboe01f06b62008-02-18 20:53:47 +0100784 if (skip_this_section(name)) {
785 inside_skip = 1;
786 continue;
787 } else
788 inside_skip = 0;
789
Jens Axboeebac4652005-12-08 15:25:21 +0100790 global = !strncmp(name, "global", 6);
791
Jens Axboecca73aa2007-04-04 11:09:19 +0200792 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200793 if (first_sect)
794 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200795 if (!global)
796 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200797 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200798 }
799
Jens Axboeebac4652005-12-08 15:25:21 +0100800 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200801 if (!td) {
802 ret = 1;
803 break;
804 }
Jens Axboeebac4652005-12-08 15:25:21 +0100805
Jens Axboe972cfd22006-06-09 11:08:56 +0200806 /*
807 * Seperate multiple job files by a stonewall
808 */
Jens Axboef9481912006-06-09 11:37:28 +0200809 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100810 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200811 stonewall = 0;
812 }
813
Jens Axboe3b8b7132008-06-10 19:46:23 +0200814 num_opts = 0;
815 memset(opts, 0, alloc_opts * sizeof(char *));
816
Jens Axboeebac4652005-12-08 15:25:21 +0100817 while ((p = fgets(string, 4096, f)) != NULL) {
818 if (is_empty_or_comment(p))
819 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200820
Jens Axboeb6754f92006-05-30 14:29:32 +0200821 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100822
Jens Axboeccf8f122007-09-27 10:48:55 +0200823 /*
824 * new section, break out and make sure we don't
825 * fgets() a new line at the top.
826 */
827 if (p[0] == '[') {
828 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100829 break;
Jens Axboeccf8f122007-09-27 10:48:55 +0200830 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100831
Jens Axboe4ae3f762006-05-30 13:35:14 +0200832 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200833
Jens Axboe3b8b7132008-06-10 19:46:23 +0200834 if (num_opts == alloc_opts) {
835 alloc_opts <<= 1;
836 opts = realloc(opts,
837 alloc_opts * sizeof(char *));
838 }
839
840 opts[num_opts] = strdup(p);
841 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +0100842 }
Jens Axboeebac4652005-12-08 15:25:21 +0100843
Jens Axboe3b8b7132008-06-10 19:46:23 +0200844 ret = fio_options_parse(td, opts, num_opts);
845 if (!ret) {
846 if (dump_cmdline)
847 for (i = 0; i < num_opts; i++)
848 log_info("--%s ", opts[i]);
849
Jens Axboe45410ac2006-06-07 11:10:39 +0200850 ret = add_job(td, name, 0);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200851 } else {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100852 log_err("fio: job %s dropped\n", name);
853 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200854 }
Jens Axboe3b8b7132008-06-10 19:46:23 +0200855
856 for (i = 0; i < num_opts; i++)
857 free(opts[i]);
858 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100859 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100860
Jens Axboecca73aa2007-04-04 11:09:19 +0200861 if (dump_cmdline)
862 log_info("\n");
863
Jens Axboe3b8b7132008-06-10 19:46:23 +0200864 for (i = 0; i < num_opts; i++)
865 free(opts[i]);
866
Jens Axboeebac4652005-12-08 15:25:21 +0100867 free(string);
868 free(name);
Jens Axboe25775942008-06-10 20:26:06 +0200869 free(opts);
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200870 if (f != stdin)
871 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200872 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100873}
874
875static int fill_def_thread(void)
876{
877 memset(&def_thread, 0, sizeof(def_thread));
878
Jens Axboe375b2692007-05-22 09:13:02 +0200879 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100880
881 /*
Jens Axboeee738492007-01-10 11:23:16 +0100882 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100883 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100884 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100885
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100886 def_thread.o.timeout = def_timeout;
Jens Axboeebac4652005-12-08 15:25:21 +0100887 return 0;
888}
889
Jens Axboeebac4652005-12-08 15:25:21 +0100890static void free_shm(void)
891{
892 struct shmid_ds sbuf;
893
894 if (threads) {
Jens Axboe5e1d3062008-05-23 11:55:53 +0200895 void *tp = threads;
896
Jens Axboeebac4652005-12-08 15:25:21 +0100897 threads = NULL;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200898 file_hash_exit();
899 fio_debug_jobp = NULL;
900 shmdt(tp);
Jens Axboeebac4652005-12-08 15:25:21 +0100901 shmctl(shm_id, IPC_RMID, &sbuf);
902 }
Jens Axboe2e5cdb12008-03-01 18:52:49 +0100903
904 scleanup();
Jens Axboeebac4652005-12-08 15:25:21 +0100905}
906
Jens Axboe906c8d72006-06-13 09:37:56 +0200907/*
908 * The thread area is shared between the main process and the job
909 * threads/processes. So setup a shared memory segment that will hold
Jens Axboe380065a2008-03-01 18:56:24 +0100910 * all the job info. We use the end of the region for keeping track of
911 * open files across jobs, for file sharing.
Jens Axboe906c8d72006-06-13 09:37:56 +0200912 */
Jens Axboeebac4652005-12-08 15:25:21 +0100913static int setup_thread_area(void)
914{
Jens Axboe380065a2008-03-01 18:56:24 +0100915 void *hash;
916
Jens Axboeebac4652005-12-08 15:25:21 +0100917 /*
918 * 1024 is too much on some machines, scale max_jobs if
919 * we get a failure that looks like too large a shm segment
920 */
921 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200922 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100923
Jens Axboe380065a2008-03-01 18:56:24 +0100924 size += file_hash_size;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200925 size += sizeof(unsigned int);
Jens Axboe380065a2008-03-01 18:56:24 +0100926
Jens Axboe906c8d72006-06-13 09:37:56 +0200927 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100928 if (shm_id != -1)
929 break;
930 if (errno != EINVAL) {
931 perror("shmget");
932 break;
933 }
934
935 max_jobs >>= 1;
936 } while (max_jobs);
937
938 if (shm_id == -1)
939 return 1;
940
941 threads = shmat(shm_id, NULL, 0);
942 if (threads == (void *) -1) {
943 perror("shmat");
944 return 1;
945 }
946
Jens Axboe1f809d12007-10-25 18:34:02 +0200947 memset(threads, 0, max_jobs * sizeof(struct thread_data));
Jens Axboe380065a2008-03-01 18:56:24 +0100948 hash = (void *) threads + max_jobs * sizeof(struct thread_data);
Jens Axboe5e1d3062008-05-23 11:55:53 +0200949 fio_debug_jobp = (void *) hash + file_hash_size;
950 *fio_debug_jobp = -1;
Jens Axboe380065a2008-03-01 18:56:24 +0100951 file_hash_init(hash);
Jens Axboeebac4652005-12-08 15:25:21 +0100952 atexit(free_shm);
953 return 0;
954}
955
Jens Axboe45378b32007-12-19 13:54:38 +0100956static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +0200957{
Jens Axboe214e1ec2007-03-15 10:48:13 +0100958 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +0100959 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboeee56ad52008-02-01 10:30:20 +0100960 printf("\t--debug=options\tEnable debug logging\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100961 printf("\t--output\tWrite output to file\n");
962 printf("\t--timeout\tRuntime in seconds\n");
963 printf("\t--latency-log\tGenerate per-job latency logs\n");
964 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
965 printf("\t--minimal\tMinimal (terse) output\n");
966 printf("\t--version\tPrint version info and exit\n");
967 printf("\t--help\t\tPrint this page\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100968 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of"
969 " them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +0200970 printf("\t--showcmd\tTurn a job file into command line options\n");
Aaron Carrolle592a062007-09-14 09:49:41 +0200971 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
972 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100973 printf("\t--readonly\tTurn on safety read-only checks, preventing"
974 " writes\n");
Jens Axboe01f06b62008-02-18 20:53:47 +0100975 printf("\t--section=name\tOnly run specified section in job file\n");
Jens Axboe2b386d22008-03-26 10:32:57 +0100976 printf("\t--alloc-size=kb\tSet smalloc pool to this size in kb"
977 " (def 1024)\n");
Jens Axboeaa58d252010-06-09 09:49:38 +0200978 printf("\nFio was written by Jens Axboe <jens.axboe@oracle.com>");
979 printf("\n Jens Axboe <jaxboe@fusionio.com>\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200980}
981
Jens Axboe79e48f72008-02-01 20:37:09 +0100982#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +0100983struct debug_level debug_levels[] = {
Jens Axboebd6f78b2008-02-01 20:27:52 +0100984 { .name = "process", .shift = FD_PROCESS, },
985 { .name = "file", .shift = FD_FILE, },
986 { .name = "io", .shift = FD_IO, },
987 { .name = "mem", .shift = FD_MEM, },
988 { .name = "blktrace", .shift = FD_BLKTRACE },
989 { .name = "verify", .shift = FD_VERIFY },
Jens Axboe84422ac2008-02-19 20:10:26 +0100990 { .name = "random", .shift = FD_RANDOM },
Jens Axboea3d741f2008-02-27 18:32:33 +0100991 { .name = "parse", .shift = FD_PARSE },
Jens Axboecd991b92008-03-07 13:19:35 +0100992 { .name = "diskutil", .shift = FD_DISKUTIL },
Jens Axboe5e1d3062008-05-23 11:55:53 +0200993 { .name = "job", .shift = FD_JOB },
Jens Axboe29adda32009-01-05 19:06:39 +0100994 { .name = "mutex", .shift = FD_MUTEX },
Jens Axboe79d16312010-03-04 12:43:20 +0100995 { .name = "profile", .shift = FD_PROFILE },
Jens Axboec223da82010-03-24 13:23:53 +0100996 { .name = "time", .shift = FD_TIME },
Jens Axboe02444ad2008-10-07 11:33:00 +0200997 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +0100998};
999
Jens Axboec09823a2008-02-19 20:16:57 +01001000static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +01001001{
1002 struct debug_level *dl;
1003 char *p = (char *) string;
1004 char *opt;
1005 int i;
1006
1007 if (!strcmp(string, "?") || !strcmp(string, "help")) {
1008 int i;
1009
1010 log_info("fio: dumping debug options:");
1011 for (i = 0; debug_levels[i].name; i++) {
1012 dl = &debug_levels[i];
1013 log_info("%s,", dl->name);
1014 }
Jens Axboebd6f78b2008-02-01 20:27:52 +01001015 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001016 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +01001017 }
1018
1019 while ((opt = strsep(&p, ",")) != NULL) {
1020 int found = 0;
1021
Jens Axboe5e1d3062008-05-23 11:55:53 +02001022 if (!strncmp(opt, "all", 3)) {
1023 log_info("fio: set all debug options\n");
1024 fio_debug = ~0UL;
1025 continue;
1026 }
1027
Jens Axboeee56ad52008-02-01 10:30:20 +01001028 for (i = 0; debug_levels[i].name; i++) {
1029 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +02001030 found = !strncmp(opt, dl->name, strlen(dl->name));
1031 if (!found)
1032 continue;
1033
1034 if (dl->shift == FD_JOB) {
1035 opt = strchr(opt, ':');
1036 if (!opt) {
1037 log_err("fio: missing job number\n");
1038 break;
1039 }
1040 opt++;
1041 fio_debug_jobno = atoi(opt);
1042 log_info("fio: set debug jobno %d\n",
1043 fio_debug_jobno);
1044 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001045 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001046 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +01001047 }
Jens Axboe5e1d3062008-05-23 11:55:53 +02001048 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001049 }
1050
1051 if (!found)
1052 log_err("fio: debug mask %s not found\n", opt);
1053 }
Jens Axboec09823a2008-02-19 20:16:57 +01001054 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +01001055}
Jens Axboe79e48f72008-02-01 20:37:09 +01001056#else
Jens Axboe69b98d42008-05-30 22:25:32 +02001057static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +01001058{
1059 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001060 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +01001061}
1062#endif
Jens Axboeee56ad52008-02-01 10:30:20 +01001063
Jens Axboe214e1ec2007-03-15 10:48:13 +01001064static int parse_cmd_line(int argc, char *argv[])
1065{
1066 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +01001067 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001068
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001069 while ((c = getopt_long_only(argc, argv, "", l_opts, &lidx)) != -1) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001070 switch (c) {
Jens Axboe2b386d22008-03-26 10:32:57 +01001071 case 'a':
1072 smalloc_pool_size = atoi(optarg);
1073 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001074 case 't':
1075 def_timeout = atoi(optarg);
1076 break;
1077 case 'l':
1078 write_lat_log = 1;
1079 break;
Jens Axboe3d73e5a2010-03-25 10:38:07 +01001080 case 'b':
Jens Axboe214e1ec2007-03-15 10:48:13 +01001081 write_bw_log = 1;
1082 break;
1083 case 'o':
1084 f_out = fopen(optarg, "w+");
1085 if (!f_out) {
1086 perror("fopen output");
1087 exit(1);
1088 }
1089 f_err = f_out;
1090 break;
1091 case 'm':
1092 terse_output = 1;
1093 break;
1094 case 'h':
Jens Axboe45378b32007-12-19 13:54:38 +01001095 usage(argv[0]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001096 exit(0);
1097 case 'c':
1098 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +02001099 case 's':
1100 dump_cmdline = 1;
1101 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001102 case 'r':
1103 read_only = 1;
1104 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001105 case 'v':
1106 printf("%s\n", fio_version_string);
1107 exit(0);
Aaron Carrolle592a062007-09-14 09:49:41 +02001108 case 'e':
1109 if (!strcmp("always", optarg))
1110 eta_print = FIO_ETA_ALWAYS;
1111 else if (!strcmp("never", optarg))
1112 eta_print = FIO_ETA_NEVER;
1113 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001114 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001115 if (set_debug(optarg))
1116 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001117 break;
Jens Axboe01f06b62008-02-18 20:53:47 +01001118 case 'x':
1119 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001120 log_err("fio: can't use global as only "
1121 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001122 do_exit++;
1123 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001124 break;
1125 }
1126 if (job_section)
1127 free(job_section);
1128 job_section = strdup(optarg);
1129 break;
Jens Axboe9ac8a792009-11-13 21:23:07 +01001130 case 'p':
Jens Axboe07b32322010-03-05 09:48:44 +01001131 exec_profile = strdup(optarg);
Jens Axboe9ac8a792009-11-13 21:23:07 +01001132 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001133 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001134 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001135 char *val = optarg;
1136
1137 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001138 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001139 if (ret) {
1140 put_job(td);
1141 return 0;
1142 }
1143 td = NULL;
1144 }
1145 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001146 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001147 int global = 0;
1148
Jens Axboe01f06b62008-02-18 20:53:47 +01001149 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001150 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001151
Jens Axboe01f06b62008-02-18 20:53:47 +01001152 if (is_section && skip_this_section(val))
1153 continue;
1154
Jens Axboe214e1ec2007-03-15 10:48:13 +01001155 td = get_new_job(global, &def_thread);
1156 if (!td)
1157 return 0;
1158 }
1159
1160 ret = fio_cmd_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001161 break;
1162 }
1163 default:
Jens Axboec09823a2008-02-19 20:16:57 +01001164 do_exit++;
1165 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001166 break;
1167 }
1168 }
1169
Jens Axboec09823a2008-02-19 20:16:57 +01001170 if (do_exit)
1171 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01001172
Jens Axboe214e1ec2007-03-15 10:48:13 +01001173 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +01001174 if (!ret)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001175 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe7d6a8902008-02-18 20:59:18 +01001176 if (ret)
1177 put_job(td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001178 }
1179
1180 while (optind < argc) {
1181 ini_idx++;
1182 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1183 ini_file[ini_idx - 1] = strdup(argv[optind]);
1184 optind++;
1185 }
1186
1187 return ini_idx;
1188}
1189
Jens Axboeebac4652005-12-08 15:25:21 +01001190int parse_options(int argc, char *argv[])
1191{
Jens Axboe972cfd22006-06-09 11:08:56 +02001192 int job_files, i;
1193
Jens Axboeb4692822006-10-27 13:43:22 +02001194 f_out = stdout;
1195 f_err = stderr;
1196
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001197 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02001198
Jens Axboeebac4652005-12-08 15:25:21 +01001199 if (setup_thread_area())
1200 return 1;
1201 if (fill_def_thread())
1202 return 1;
1203
Jens Axboe972cfd22006-06-09 11:08:56 +02001204 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001205
Jens Axboe972cfd22006-06-09 11:08:56 +02001206 for (i = 0; i < job_files; i++) {
1207 if (fill_def_thread())
1208 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001209 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001210 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001211 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001212 }
Jens Axboeebac4652005-12-08 15:25:21 +01001213
Jens Axboe88c6ed82006-06-09 11:28:10 +02001214 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +01001215 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001216
1217 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001218 if (dump_cmdline)
1219 return 0;
Jens Axboe07b32322010-03-05 09:48:44 +01001220 if (exec_profile)
1221 return 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02001222
Jens Axboefd4442b2009-06-15 23:29:54 +02001223 log_err("No jobs defined(s)\n\n");
Jens Axboe45378b32007-12-19 13:54:38 +01001224 usage(argv[0]);
Jens Axboeb4692822006-10-27 13:43:22 +02001225 return 1;
1226 }
1227
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001228 if (def_thread.o.gtod_offload) {
1229 fio_gtod_init();
1230 fio_gtod_offload = 1;
1231 fio_gtod_cpu = def_thread.o.gtod_cpu;
1232 }
1233
Jens Axboeebac4652005-12-08 15:25:21 +01001234 return 0;
1235}