blob: c0ce4312088aae2abcce9b1b8d385d84b9e8c161 [file] [log] [blame]
Jens Axboe906c8d72006-06-13 09:37:56 +02001/*
Jens Axboecb2c86f2006-10-26 13:48:34 +02002 * This file contains job initialization and setup functions.
Jens Axboe906c8d72006-06-13 09:37:56 +02003 */
Jens Axboeebac4652005-12-08 15:25:21 +01004#include <stdio.h>
5#include <stdlib.h>
6#include <unistd.h>
7#include <fcntl.h>
8#include <ctype.h>
9#include <string.h>
10#include <errno.h>
Jens Axboeb4692822006-10-27 13:43:22 +020011#include <getopt.h>
Jens Axboeebac4652005-12-08 15:25:21 +010012#include <sys/ipc.h>
13#include <sys/shm.h>
14#include <sys/types.h>
15#include <sys/stat.h>
16
17#include "fio.h"
Jens Axboecb2c86f2006-10-26 13:48:34 +020018#include "parse.h"
Jens Axboe2e5cdb12008-03-01 18:52:49 +010019#include "smalloc.h"
Jens Axboe380065a2008-03-01 18:56:24 +010020#include "filehash.h"
Jens Axboe4f5af7b2009-06-03 08:45:40 +020021#include "verify.h"
Jens Axboe79d16312010-03-04 12:43:20 +010022#include "profile.h"
Jens Axboeebac4652005-12-08 15:25:21 +010023
Jens Axboed3e829b2010-02-22 19:58:41 +010024static char fio_version_string[] = "fio 1.37";
Jens Axboe214e1ec2007-03-15 10:48:13 +010025
Jens Axboeee738492007-01-10 11:23:16 +010026#define FIO_RANDSEED (0xb1899bedUL)
Jens Axboeebac4652005-12-08 15:25:21 +010027
Jens Axboe214e1ec2007-03-15 10:48:13 +010028static char **ini_file;
29static int max_jobs = MAX_JOBS;
Jens Axboecca73aa2007-04-04 11:09:19 +020030static int dump_cmdline;
Jens Axboee1f36502006-10-27 10:54:08 +020031
Jens Axboebe4ecfd2008-12-08 14:10:52 +010032static struct thread_data def_thread;
Jens Axboe214e1ec2007-03-15 10:48:13 +010033struct thread_data *threads = NULL;
Jens Axboee1f36502006-10-27 10:54:08 +020034
Jens Axboe214e1ec2007-03-15 10:48:13 +010035int exitall_on_terminate = 0;
36int terse_output = 0;
Aaron Carrolle592a062007-09-14 09:49:41 +020037int eta_print;
Jens Axboe214e1ec2007-03-15 10:48:13 +010038unsigned long long mlock_size = 0;
39FILE *f_out = NULL;
40FILE *f_err = NULL;
Jens Axboe01f06b62008-02-18 20:53:47 +010041char *job_section = NULL;
Jens Axboeee738492007-01-10 11:23:16 +010042
Jens Axboe214e1ec2007-03-15 10:48:13 +010043int write_bw_log = 0;
Jens Axboe4241ea82007-09-12 08:18:36 +020044int read_only = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020045
Jens Axboe5ec10ea2008-03-06 15:42:00 +010046static int def_timeout;
47static int write_lat_log;
Jens Axboe214e1ec2007-03-15 10:48:13 +010048
49static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020050
Jens Axboeee56ad52008-02-01 10:30:20 +010051unsigned long fio_debug = 0;
Jens Axboe5e1d3062008-05-23 11:55:53 +020052unsigned int fio_debug_jobno = -1;
53unsigned int *fio_debug_jobp = NULL;
Jens Axboeee56ad52008-02-01 10:30:20 +010054
Jens Axboeb4692822006-10-27 13:43:22 +020055/*
56 * Command line options. These will contain the above, plus a few
57 * extra that only pertain to fio itself and not jobs.
58 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +010059static struct option l_opts[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020060 {
61 .name = "output",
62 .has_arg = required_argument,
63 .val = 'o',
64 },
65 {
66 .name = "timeout",
67 .has_arg = required_argument,
68 .val = 't',
69 },
70 {
71 .name = "latency-log",
72 .has_arg = required_argument,
73 .val = 'l',
74 },
75 {
76 .name = "bandwidth-log",
77 .has_arg = required_argument,
78 .val = 'b',
79 },
80 {
81 .name = "minimal",
82 .has_arg = optional_argument,
83 .val = 'm',
84 },
85 {
86 .name = "version",
87 .has_arg = no_argument,
88 .val = 'v',
89 },
90 {
Jens Axboefd28ca42007-01-09 21:20:13 +010091 .name = "help",
92 .has_arg = no_argument,
93 .val = 'h',
94 },
95 {
96 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +010097 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +010098 .val = 'c',
99 },
100 {
Jens Axboecca73aa2007-04-04 11:09:19 +0200101 .name = "showcmd",
102 .has_arg = no_argument,
Jens Axboe724e4432007-09-11 20:02:05 +0200103 .val = 's',
104 },
105 {
106 .name = "readonly",
107 .has_arg = no_argument,
108 .val = 'r',
Jens Axboecca73aa2007-04-04 11:09:19 +0200109 },
110 {
Aaron Carrolle592a062007-09-14 09:49:41 +0200111 .name = "eta",
112 .has_arg = required_argument,
113 .val = 'e',
114 },
115 {
Jens Axboeee56ad52008-02-01 10:30:20 +0100116 .name = "debug",
117 .has_arg = required_argument,
118 .val = 'd',
119 },
120 {
Jens Axboe01f06b62008-02-18 20:53:47 +0100121 .name = "section",
122 .has_arg = required_argument,
123 .val = 'x',
124 },
125 {
Jens Axboe2b386d22008-03-26 10:32:57 +0100126 .name = "alloc-size",
127 .has_arg = required_argument,
128 .val = 'a',
129 },
130 {
Jens Axboe9ac8a792009-11-13 21:23:07 +0100131 .name = "profile",
132 .has_arg = required_argument,
133 .val = 'p',
134 },
135 {
Jens Axboeb4692822006-10-27 13:43:22 +0200136 .name = NULL,
137 },
138};
139
Joel Becker9728ce32007-03-01 08:24:39 +0100140FILE *get_f_out()
141{
142 return f_out;
143}
144
145FILE *get_f_err()
146{
147 return f_err;
148}
149
Jens Axboe906c8d72006-06-13 09:37:56 +0200150/*
151 * Return a free job structure.
152 */
Jens Axboeebac4652005-12-08 15:25:21 +0100153static struct thread_data *get_new_job(int global, struct thread_data *parent)
154{
155 struct thread_data *td;
156
157 if (global)
158 return &def_thread;
159 if (thread_number >= max_jobs)
160 return NULL;
161
162 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200163 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100164
Jens Axboee0b0d892009-12-08 10:10:14 +0100165 td->o.uid = td->o.gid = -1U;
166
Jens Axboecade3ef2007-03-23 15:29:45 +0100167 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100168 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100169
Jens Axboeebac4652005-12-08 15:25:21 +0100170 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100171 return td;
172}
173
174static void put_job(struct thread_data *td)
175{
Jens Axboe549577a2006-10-30 12:23:41 +0100176 if (td == &def_thread)
177 return;
178
Jens Axboe16edf252007-02-10 14:59:22 +0100179 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100180 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100181
Jens Axboeebac4652005-12-08 15:25:21 +0100182 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
183 thread_number--;
184}
185
Jens Axboe581e7142009-06-09 12:47:16 +0200186static int __setup_rate(struct thread_data *td, enum fio_ddir ddir)
Jens Axboe127f6862007-03-15 12:09:57 +0100187{
Jens Axboe581e7142009-06-09 12:47:16 +0200188 unsigned int bs = td->o.min_bs[ddir];
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100189 unsigned long long bytes_per_sec;
Jens Axboe127f6862007-03-15 12:09:57 +0100190
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100191 if (td->o.rate[ddir])
192 bytes_per_sec = td->o.rate[ddir];
193 else
194 bytes_per_sec = td->o.rate_iops[ddir] * bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100195
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100196 if (!bytes_per_sec) {
Jens Axboe127f6862007-03-15 12:09:57 +0100197 log_err("rate lower than supported\n");
198 return -1;
199 }
200
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100201 td->rate_nsec_cycle[ddir] = 1000000000ULL / bytes_per_sec;
Jens Axboe581e7142009-06-09 12:47:16 +0200202 td->rate_pending_usleep[ddir] = 0;
Jens Axboe127f6862007-03-15 12:09:57 +0100203 return 0;
204}
205
Jens Axboe581e7142009-06-09 12:47:16 +0200206static int setup_rate(struct thread_data *td)
207{
208 int ret = 0;
209
210 if (td->o.rate[DDIR_READ] || td->o.rate_iops[DDIR_READ])
211 ret = __setup_rate(td, DDIR_READ);
212 if (td->o.rate[DDIR_WRITE] || td->o.rate_iops[DDIR_WRITE])
213 ret |= __setup_rate(td, DDIR_WRITE);
214
215 return ret;
216}
217
Jens Axboe83472392009-02-19 21:32:12 +0100218static int fixed_block_size(struct thread_options *o)
219{
220 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
221 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
222 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE];
223}
224
Jens Axboedad915e2006-10-27 11:10:18 +0200225/*
226 * Lazy way of fixing up options that depend on each other. We could also
227 * define option callback handlers, but this is easier.
228 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100229static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200230{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100231 struct thread_options *o = &td->o;
Jens Axboedad915e2006-10-27 11:10:18 +0200232
Jens Axboef356d012009-01-05 09:56:29 +0100233#ifndef FIO_HAVE_PSHARED_MUTEX
234 if (!td->o.use_thread) {
235 log_info("fio: this platform does not support process shared"
236 " mutexes, forcing use of threads. Use the 'thread'"
237 " option to get rid of this warning.\n");
238 td->o.use_thread = 1;
239 }
240#endif
241
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100242 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200243 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100244 free(o->write_iolog_file);
245 o->write_iolog_file = NULL;
Jens Axboe076efc72006-10-27 11:24:25 +0200246 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100247
Jens Axboe16b462a2006-10-30 12:35:18 +0100248 /*
249 * only really works for sequential io for now, and with 1 file
250 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100251 if (o->zone_size && td_random(td) && o->open_files == 1)
252 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100253
254 /*
255 * Reads can do overwrites, we always need to pre-create the file
256 */
257 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100258 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100259
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100260 if (!o->min_bs[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100261 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100262 if (!o->max_bs[DDIR_READ])
263 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
264 if (!o->min_bs[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100265 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100266 if (!o->max_bs[DDIR_WRITE])
267 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100268
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100269 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100270
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100271 /*
272 * For random IO, allow blockalign offset other than min_bs.
273 */
274 if (!o->ba[DDIR_READ] || !td_random(td))
275 o->ba[DDIR_READ] = o->min_bs[DDIR_READ];
276 if (!o->ba[DDIR_WRITE] || !td_random(td))
277 o->ba[DDIR_WRITE] = o->min_bs[DDIR_WRITE];
278
279 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
280 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE]) &&
281 !td->o.norandommap) {
282 log_err("fio: Any use of blockalign= turns off randommap\n");
283 td->o.norandommap = 1;
284 }
285
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100286 if (!o->file_size_high)
287 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100288
Jens Axboe83472392009-02-19 21:32:12 +0100289 if (o->norandommap && o->verify != VERIFY_NONE
290 && !fixed_block_size(o)) {
291 log_err("fio: norandommap given for variable block sizes, "
292 "verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100293 o->verify = VERIFY_NONE;
Jens Axboebb8895e2006-10-30 15:14:48 +0100294 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100295 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100296 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100297
298 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100299 * thinktime_spin must be less than thinktime
300 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100301 if (o->thinktime_spin > o->thinktime)
302 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100303
304 /*
305 * The low water mark cannot be bigger than the iodepth
306 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100307 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100308 /*
309 * syslet work around - if the workload is sequential,
310 * we want to let the queue drain all the way down to
311 * avoid seeking between async threads
312 */
313 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100314 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100315 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100316 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100317 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100318
319 /*
320 * If batch number isn't set, default to the same as iodepth
321 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100322 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
323 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100324
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100325 if (o->nr_files > td->files_index)
326 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100327
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100328 if (o->open_files > o->nr_files || !o->open_files)
329 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100330
Jens Axboe581e7142009-06-09 12:47:16 +0200331 if (((o->rate[0] + o->rate[1]) && (o->rate_iops[0] + o->rate_iops[1]))||
332 ((o->ratemin[0] + o->ratemin[1]) && (o->rate_iops_min[0] +
333 o->rate_iops_min[1]))) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100334 log_err("fio: rate and rate_iops are mutually exclusive\n");
335 return 1;
336 }
Jens Axboe581e7142009-06-09 12:47:16 +0200337 if ((o->rate[0] < o->ratemin[0]) || (o->rate[1] < o->ratemin[1]) ||
338 (o->rate_iops[0] < o->rate_iops_min[0]) ||
339 (o->rate_iops[1] < o->rate_iops_min[1])) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100340 log_err("fio: minimum rate exceeds rate\n");
341 return 1;
342 }
343
Jens Axboecf4464c2007-04-17 20:14:42 +0200344 if (!o->timeout && o->time_based) {
345 log_err("fio: time_based requires a runtime/timeout setting\n");
346 o->time_based = 0;
347 }
348
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100349 if (o->fill_device && !o->size)
Jens Axboe5921e802008-05-30 15:02:38 +0200350 o->size = -1ULL;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100351
Jens Axboe79713142008-02-06 14:40:14 +0100352 if (td_rw(td) && td->o.verify != VERIFY_NONE)
353 log_info("fio: mixed read/write workload with verify. May not "
354 "work as expected, unless you pre-populated the file\n");
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100355
Jens Axboe41ccd842008-05-22 09:17:33 +0200356 if (td->o.verify != VERIFY_NONE)
357 td->o.refill_buffers = 1;
358
Jens Axboe9c0d2242009-07-01 12:26:28 +0200359 if (td->o.pre_read) {
Jens Axboe34f1c042009-06-02 14:19:25 +0200360 td->o.invalidate_cache = 0;
Jens Axboe9c0d2242009-07-01 12:26:28 +0200361 if (td->io_ops->flags & FIO_PIPEIO)
362 log_info("fio: cannot pre-read files with an IO engine"
363 " that isn't seekable. Pre-read disabled.\n");
364 }
Jens Axboe34f1c042009-06-02 14:19:25 +0200365
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700366#ifndef FIO_HAVE_FDATASYNC
367 if (td->o.fdatasync_blocks) {
368 log_info("fio: this platform does not support fdatasync()"
369 " falling back to using fsync(). Use the 'fsync'"
370 " option instead of 'fdatasync' to get rid of"
371 " this warning\n");
372 td->o.fsync_blocks = td->o.fdatasync_blocks;
373 td->o.fdatasync_blocks = 0;
374 }
375#endif
376
Jens Axboe4e991c22007-03-15 11:41:11 +0100377 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200378}
379
Jens Axboe906c8d72006-06-13 09:37:56 +0200380/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100381 * This function leaks the buffer
382 */
383static char *to_kmg(unsigned int val)
384{
385 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100386 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100387 char *p = post;
388
Jens Axboe245142f2006-11-08 12:49:21 +0100389 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100390 if (val & 1023)
391 break;
392
393 val >>= 10;
394 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100395 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100396
397 snprintf(buf, 31, "%u%c", val, *p);
398 return buf;
399}
400
Jens Axboe09629a92007-03-09 09:00:06 +0100401/* External engines are specified by "external:name.o") */
402static const char *get_engine_name(const char *str)
403{
404 char *p = strstr(str, ":");
405
406 if (!p)
407 return str;
408
409 p++;
410 strip_blank_front(&p);
411 strip_blank_end(p);
412 return p;
413}
414
Jens Axboee132cba2007-03-14 14:23:54 +0100415static int exists_and_not_file(const char *filename)
416{
417 struct stat sb;
418
419 if (lstat(filename, &sb) == -1)
420 return 0;
421
422 if (S_ISREG(sb.st_mode))
423 return 0;
424
425 return 1;
426}
427
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200428void td_fill_rand_seeds(struct thread_data *td)
429{
430 os_random_seed(td->rand_seeds[0], &td->bsrange_state);
431 os_random_seed(td->rand_seeds[1], &td->verify_state);
432 os_random_seed(td->rand_seeds[2], &td->rwmix_state);
433
434 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
435 os_random_seed(td->rand_seeds[3], &td->next_file_state);
436
437 os_random_seed(td->rand_seeds[5], &td->file_size_state);
438
439 if (!td_random(td))
440 return;
441
442 if (td->o.rand_repeatable)
443 td->rand_seeds[4] = FIO_RANDSEED * td->thread_number;
444
445 os_random_seed(td->rand_seeds[4], &td->random_state);
446}
447
Jens Axboef8977ee2006-11-06 14:03:03 +0100448/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100449 * Initialize the various random states we need (random io, block size ranges,
450 * read/write mix, etc).
451 */
452static int init_random_state(struct thread_data *td)
453{
Jens Axboe68727072007-03-15 20:49:25 +0100454 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100455
456 fd = open("/dev/urandom", O_RDONLY);
457 if (fd == -1) {
458 td_verror(td, errno, "open");
459 return 1;
460 }
461
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200462 if (read(fd, td->rand_seeds, sizeof(td->rand_seeds)) <
463 (int) sizeof(td->rand_seeds)) {
Jens Axboe9c60ce62007-03-15 09:14:47 +0100464 td_verror(td, EIO, "read");
465 close(fd);
466 return 1;
467 }
468
469 close(fd);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200470 td_fill_rand_seeds(td);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100471 return 0;
472}
473
Jens Axboe9c60ce62007-03-15 09:14:47 +0100474/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200475 * Adds a job to the list of things todo. Sanitizes the various options
476 * to make sure we don't have conflicts, and initializes various
477 * members of td.
478 */
Jens Axboe75154842006-06-01 13:56:09 +0200479static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100480{
Jens Axboe413dd452007-02-23 09:26:09 +0100481 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
482 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100483 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100484 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100485 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100486 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100487
Jens Axboeebac4652005-12-08 15:25:21 +0100488 /*
489 * the def_thread is just for options, it's not a real job
490 */
491 if (td == &def_thread)
492 return 0;
493
Jens Axboecca73aa2007-04-04 11:09:19 +0200494 /*
495 * if we are just dumping the output command line, don't add the job
496 */
497 if (dump_cmdline) {
498 put_job(td);
499 return 0;
500 }
501
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100502 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100503 td->io_ops = load_ioengine(td, engine);
504 if (!td->io_ops) {
505 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100506 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100507 }
Jens Axboedf641192006-10-12 07:55:41 +0200508
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100509 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100510 nr_thread++;
511 else
512 nr_process++;
513
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100514 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100515 td->io_ops->flags |= FIO_RAWIO;
516
Jens Axboee132cba2007-03-14 14:23:54 +0100517 file_alloced = 0;
Jens Axboe691c8fb2008-03-07 14:26:26 +0100518 if (!td->o.filename && !td->files_index && !td->o.read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +0100519 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100520
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100521 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100522 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100523 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100524 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100525 sprintf(fname, "%s.%d.%d", jobname,
526 td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100527 add_file(td, fname);
528 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100529 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100530 }
Jens Axboeebac4652005-12-08 15:25:21 +0100531
Jens Axboe4e991c22007-03-15 11:41:11 +0100532 if (fixup_options(td))
533 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100534
Jens Axboe07eb79d2007-04-12 13:02:38 +0200535 if (td->io_ops->flags & FIO_DISKLESSIO) {
536 struct fio_file *f;
537
538 for_each_file(td, f, i)
539 f->real_file_size = -1ULL;
540 }
541
Jens Axboecdd18ad2008-02-27 18:58:00 +0100542 td->mutex = fio_mutex_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100543
Jens Axboe756867b2007-03-06 15:19:24 +0100544 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
545 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
546 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboe1e3d53a2007-03-22 19:01:48 +0100547 td->ddir_nr = td->o.ddir_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100548
Jens Axboe755c3182009-08-25 22:14:29 +0200549 if ((td->o.stonewall || td->o.new_group) && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100550 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100551 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100552 }
Jens Axboeebac4652005-12-08 15:25:21 +0100553
554 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100555 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100556
Jens Axboe9c60ce62007-03-15 09:14:47 +0100557 if (init_random_state(td))
558 goto err;
559
Jens Axboeebac4652005-12-08 15:25:21 +0100560 if (setup_rate(td))
561 goto err;
562
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100563 if (td->o.write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100564 setup_log(&td->ts.slat_log);
565 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100566 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100567 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100568 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100569
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100570 if (!td->o.name)
571 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200572
Jens Axboec6ae0a52006-06-12 11:04:44 +0200573 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200574 if (!job_add_num) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100575 if (!strcmp(td->io_ops->name, "cpuio")) {
576 log_info("%s: ioengine=cpu, cpuload=%u,"
577 " cpucycle=%u\n", td->o.name,
578 td->o.cpuload,
579 td->o.cpucycle);
580 } else {
Jens Axboef8977ee2006-11-06 14:03:03 +0100581 char *c1, *c2, *c3, *c4;
582
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100583 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
584 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
585 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
586 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100587
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100588 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s,"
589 " ioengine=%s, iodepth=%u\n",
590 td->o.name, td->groupid,
591 ddir_str[td->o.td_ddir],
592 c1, c2, c3, c4,
593 td->io_ops->name,
594 td->o.iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100595
596 free(c1);
597 free(c2);
598 free(c3);
599 free(c4);
600 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200601 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100602 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200603 }
Jens Axboeebac4652005-12-08 15:25:21 +0100604
605 /*
606 * recurse add identical jobs, clear numjobs and stonewall options
607 * as they don't apply to sub-jobs
608 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100609 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100610 while (--numjobs) {
611 struct thread_data *td_new = get_new_job(0, td);
612
613 if (!td_new)
614 goto err;
615
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100616 td_new->o.numjobs = 1;
617 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200618 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100619
620 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100621 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100622 td_new->files_index = 0;
Jens Axboe4e6ea2f2009-03-04 20:17:22 +0100623 td_new->files_size = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100624 td_new->files = NULL;
625 }
626
Jens Axboe75154842006-06-01 13:56:09 +0200627 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100628
Jens Axboe75154842006-06-01 13:56:09 +0200629 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100630 goto err;
631 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100632
Jens Axboeebac4652005-12-08 15:25:21 +0100633 return 0;
634err:
635 put_job(td);
636 return -1;
637}
638
Jens Axboe79d16312010-03-04 12:43:20 +0100639/*
640 * Parse as if 'o' was a command line
641 */
642void add_job_opts(const char **o)
643{
644 struct thread_data *td, *td_parent;
645 int i, in_global = 1;
646 char jobname[32];
647
648 i = 0;
649 td_parent = td = NULL;
650 while (o[i]) {
651 if (!strncmp(o[i], "name", 4)) {
652 in_global = 0;
653 if (td)
654 add_job(td, jobname, 0);
655 td = NULL;
656 sprintf(jobname, "%s", o[i] + 5);
657 }
658 if (in_global && !td_parent)
659 td_parent = get_new_job(1, &def_thread);
660 else if (!in_global && !td) {
661 if (!td_parent)
662 td_parent = &def_thread;
663 td = get_new_job(0, td_parent);
664 }
665 if (in_global)
666 fio_options_parse(td_parent, (char **) &o[i], 1);
667 else
668 fio_options_parse(td, (char **) &o[i], 1);
669 i++;
670 }
671
672 if (td)
673 add_job(td, jobname, 0);
674}
675
Jens Axboe01f06b62008-02-18 20:53:47 +0100676static int skip_this_section(const char *name)
677{
678 if (!job_section)
679 return 0;
680 if (!strncmp(name, "global", 6))
681 return 0;
682
Jens Axboeb36beb62009-03-05 21:14:21 +0100683 return strcmp(job_section, name);
Jens Axboe01f06b62008-02-18 20:53:47 +0100684}
685
Jens Axboeebac4652005-12-08 15:25:21 +0100686static int is_empty_or_comment(char *line)
687{
688 unsigned int i;
689
690 for (i = 0; i < strlen(line); i++) {
691 if (line[i] == ';')
692 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100693 if (line[i] == '#')
694 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100695 if (!isspace(line[i]) && !iscntrl(line[i]))
696 return 0;
697 }
698
699 return 1;
700}
701
Jens Axboe313cb202006-12-21 09:50:00 +0100702/*
Jens Axboe07261982006-06-07 10:51:12 +0200703 * This is our [ini] type file parser.
704 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100705static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100706{
Jens Axboee1f36502006-10-27 10:54:08 +0200707 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100708 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100709 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100710 FILE *f;
711 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200712 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200713 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +0200714 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +0100715 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200716 char **opts;
717 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +0100718
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200719 if (!strcmp(file, "-"))
720 f = stdin;
721 else
722 f = fopen(file, "r");
723
Jens Axboeebac4652005-12-08 15:25:21 +0100724 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200725 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100726 return 1;
727 }
728
729 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200730
731 /*
732 * it's really 256 + small bit, 280 should suffice
733 */
734 name = malloc(280);
735 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100736
Jens Axboe3b8b7132008-06-10 19:46:23 +0200737 alloc_opts = 8;
738 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +0200739 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200740
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200741 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100742 do {
Jens Axboeccf8f122007-09-27 10:48:55 +0200743 /*
744 * if skip_fgets is set, we already have loaded a line we
745 * haven't handled.
746 */
747 if (!skip_fgets) {
748 p = fgets(string, 4095, f);
749 if (!p)
750 break;
751 }
gurudas paicdc7f192007-03-29 10:10:56 +0200752
Jens Axboeccf8f122007-09-27 10:48:55 +0200753 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +0200754 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800755 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200756
Jens Axboeebac4652005-12-08 15:25:21 +0100757 if (is_empty_or_comment(p))
758 continue;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800759 if (sscanf(p, "[%255s]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +0100760 if (inside_skip)
761 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100762 log_err("fio: option <%s> outside of [] job section\n",
763 p);
Jens Axboe088b4202007-07-19 14:53:01 +0200764 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800765 }
Jens Axboeebac4652005-12-08 15:25:21 +0100766
Jens Axboe01f06b62008-02-18 20:53:47 +0100767 if (skip_this_section(name)) {
768 inside_skip = 1;
769 continue;
770 } else
771 inside_skip = 0;
772
Jens Axboeebac4652005-12-08 15:25:21 +0100773 global = !strncmp(name, "global", 6);
774
775 name[strlen(name) - 1] = '\0';
776
Jens Axboecca73aa2007-04-04 11:09:19 +0200777 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200778 if (first_sect)
779 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200780 if (!global)
781 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200782 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200783 }
784
Jens Axboeebac4652005-12-08 15:25:21 +0100785 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200786 if (!td) {
787 ret = 1;
788 break;
789 }
Jens Axboeebac4652005-12-08 15:25:21 +0100790
Jens Axboe972cfd22006-06-09 11:08:56 +0200791 /*
792 * Seperate multiple job files by a stonewall
793 */
Jens Axboef9481912006-06-09 11:37:28 +0200794 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100795 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200796 stonewall = 0;
797 }
798
Jens Axboe3b8b7132008-06-10 19:46:23 +0200799 num_opts = 0;
800 memset(opts, 0, alloc_opts * sizeof(char *));
801
Jens Axboeebac4652005-12-08 15:25:21 +0100802 while ((p = fgets(string, 4096, f)) != NULL) {
803 if (is_empty_or_comment(p))
804 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200805
Jens Axboeb6754f92006-05-30 14:29:32 +0200806 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100807
Jens Axboeccf8f122007-09-27 10:48:55 +0200808 /*
809 * new section, break out and make sure we don't
810 * fgets() a new line at the top.
811 */
812 if (p[0] == '[') {
813 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100814 break;
Jens Axboeccf8f122007-09-27 10:48:55 +0200815 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100816
Jens Axboe4ae3f762006-05-30 13:35:14 +0200817 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200818
Jens Axboe3b8b7132008-06-10 19:46:23 +0200819 if (num_opts == alloc_opts) {
820 alloc_opts <<= 1;
821 opts = realloc(opts,
822 alloc_opts * sizeof(char *));
823 }
824
825 opts[num_opts] = strdup(p);
826 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +0100827 }
Jens Axboeebac4652005-12-08 15:25:21 +0100828
Jens Axboe3b8b7132008-06-10 19:46:23 +0200829 ret = fio_options_parse(td, opts, num_opts);
830 if (!ret) {
831 if (dump_cmdline)
832 for (i = 0; i < num_opts; i++)
833 log_info("--%s ", opts[i]);
834
Jens Axboe45410ac2006-06-07 11:10:39 +0200835 ret = add_job(td, name, 0);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200836 } else {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100837 log_err("fio: job %s dropped\n", name);
838 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200839 }
Jens Axboe3b8b7132008-06-10 19:46:23 +0200840
841 for (i = 0; i < num_opts; i++)
842 free(opts[i]);
843 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100844 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100845
Jens Axboecca73aa2007-04-04 11:09:19 +0200846 if (dump_cmdline)
847 log_info("\n");
848
Jens Axboe3b8b7132008-06-10 19:46:23 +0200849 for (i = 0; i < num_opts; i++)
850 free(opts[i]);
851
Jens Axboeebac4652005-12-08 15:25:21 +0100852 free(string);
853 free(name);
Jens Axboe25775942008-06-10 20:26:06 +0200854 free(opts);
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200855 if (f != stdin)
856 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200857 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100858}
859
860static int fill_def_thread(void)
861{
862 memset(&def_thread, 0, sizeof(def_thread));
863
Jens Axboe375b2692007-05-22 09:13:02 +0200864 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100865
866 /*
Jens Axboeee738492007-01-10 11:23:16 +0100867 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100868 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100869 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100870
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100871 def_thread.o.timeout = def_timeout;
872 def_thread.o.write_bw_log = write_bw_log;
873 def_thread.o.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +0100874
Jens Axboeebac4652005-12-08 15:25:21 +0100875 return 0;
876}
877
Jens Axboeebac4652005-12-08 15:25:21 +0100878static void free_shm(void)
879{
880 struct shmid_ds sbuf;
881
882 if (threads) {
Jens Axboe5e1d3062008-05-23 11:55:53 +0200883 void *tp = threads;
884
Jens Axboeebac4652005-12-08 15:25:21 +0100885 threads = NULL;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200886 file_hash_exit();
887 fio_debug_jobp = NULL;
888 shmdt(tp);
Jens Axboeebac4652005-12-08 15:25:21 +0100889 shmctl(shm_id, IPC_RMID, &sbuf);
890 }
Jens Axboe2e5cdb12008-03-01 18:52:49 +0100891
892 scleanup();
Jens Axboeebac4652005-12-08 15:25:21 +0100893}
894
Jens Axboe906c8d72006-06-13 09:37:56 +0200895/*
896 * The thread area is shared between the main process and the job
897 * threads/processes. So setup a shared memory segment that will hold
Jens Axboe380065a2008-03-01 18:56:24 +0100898 * all the job info. We use the end of the region for keeping track of
899 * open files across jobs, for file sharing.
Jens Axboe906c8d72006-06-13 09:37:56 +0200900 */
Jens Axboeebac4652005-12-08 15:25:21 +0100901static int setup_thread_area(void)
902{
Jens Axboe380065a2008-03-01 18:56:24 +0100903 void *hash;
904
Jens Axboeebac4652005-12-08 15:25:21 +0100905 /*
906 * 1024 is too much on some machines, scale max_jobs if
907 * we get a failure that looks like too large a shm segment
908 */
909 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200910 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100911
Jens Axboe380065a2008-03-01 18:56:24 +0100912 size += file_hash_size;
Jens Axboe5e1d3062008-05-23 11:55:53 +0200913 size += sizeof(unsigned int);
Jens Axboe380065a2008-03-01 18:56:24 +0100914
Jens Axboe906c8d72006-06-13 09:37:56 +0200915 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100916 if (shm_id != -1)
917 break;
918 if (errno != EINVAL) {
919 perror("shmget");
920 break;
921 }
922
923 max_jobs >>= 1;
924 } while (max_jobs);
925
926 if (shm_id == -1)
927 return 1;
928
929 threads = shmat(shm_id, NULL, 0);
930 if (threads == (void *) -1) {
931 perror("shmat");
932 return 1;
933 }
934
Jens Axboe1f809d12007-10-25 18:34:02 +0200935 memset(threads, 0, max_jobs * sizeof(struct thread_data));
Jens Axboe380065a2008-03-01 18:56:24 +0100936 hash = (void *) threads + max_jobs * sizeof(struct thread_data);
Jens Axboe5e1d3062008-05-23 11:55:53 +0200937 fio_debug_jobp = (void *) hash + file_hash_size;
938 *fio_debug_jobp = -1;
Jens Axboe380065a2008-03-01 18:56:24 +0100939 file_hash_init(hash);
Jens Axboeebac4652005-12-08 15:25:21 +0100940 atexit(free_shm);
941 return 0;
942}
943
Jens Axboe45378b32007-12-19 13:54:38 +0100944static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +0200945{
Jens Axboe214e1ec2007-03-15 10:48:13 +0100946 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +0100947 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboeee56ad52008-02-01 10:30:20 +0100948 printf("\t--debug=options\tEnable debug logging\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100949 printf("\t--output\tWrite output to file\n");
950 printf("\t--timeout\tRuntime in seconds\n");
951 printf("\t--latency-log\tGenerate per-job latency logs\n");
952 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
953 printf("\t--minimal\tMinimal (terse) output\n");
954 printf("\t--version\tPrint version info and exit\n");
955 printf("\t--help\t\tPrint this page\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100956 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of"
957 " them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +0200958 printf("\t--showcmd\tTurn a job file into command line options\n");
Aaron Carrolle592a062007-09-14 09:49:41 +0200959 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
960 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100961 printf("\t--readonly\tTurn on safety read-only checks, preventing"
962 " writes\n");
Jens Axboe01f06b62008-02-18 20:53:47 +0100963 printf("\t--section=name\tOnly run specified section in job file\n");
Jens Axboe2b386d22008-03-26 10:32:57 +0100964 printf("\t--alloc-size=kb\tSet smalloc pool to this size in kb"
965 " (def 1024)\n");
Jens Axboefd4442b2009-06-15 23:29:54 +0200966 printf("\nFio was written by Jens Axboe <jens.axboe@oracle.com>\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200967}
968
Jens Axboe79e48f72008-02-01 20:37:09 +0100969#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +0100970struct debug_level debug_levels[] = {
Jens Axboebd6f78b2008-02-01 20:27:52 +0100971 { .name = "process", .shift = FD_PROCESS, },
972 { .name = "file", .shift = FD_FILE, },
973 { .name = "io", .shift = FD_IO, },
974 { .name = "mem", .shift = FD_MEM, },
975 { .name = "blktrace", .shift = FD_BLKTRACE },
976 { .name = "verify", .shift = FD_VERIFY },
Jens Axboe84422ac2008-02-19 20:10:26 +0100977 { .name = "random", .shift = FD_RANDOM },
Jens Axboea3d741f2008-02-27 18:32:33 +0100978 { .name = "parse", .shift = FD_PARSE },
Jens Axboecd991b92008-03-07 13:19:35 +0100979 { .name = "diskutil", .shift = FD_DISKUTIL },
Jens Axboe5e1d3062008-05-23 11:55:53 +0200980 { .name = "job", .shift = FD_JOB },
Jens Axboe29adda32009-01-05 19:06:39 +0100981 { .name = "mutex", .shift = FD_MUTEX },
Jens Axboe79d16312010-03-04 12:43:20 +0100982 { .name = "profile", .shift = FD_PROFILE },
Jens Axboe02444ad2008-10-07 11:33:00 +0200983 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +0100984};
985
Jens Axboec09823a2008-02-19 20:16:57 +0100986static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +0100987{
988 struct debug_level *dl;
989 char *p = (char *) string;
990 char *opt;
991 int i;
992
993 if (!strcmp(string, "?") || !strcmp(string, "help")) {
994 int i;
995
996 log_info("fio: dumping debug options:");
997 for (i = 0; debug_levels[i].name; i++) {
998 dl = &debug_levels[i];
999 log_info("%s,", dl->name);
1000 }
Jens Axboebd6f78b2008-02-01 20:27:52 +01001001 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001002 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +01001003 }
1004
1005 while ((opt = strsep(&p, ",")) != NULL) {
1006 int found = 0;
1007
Jens Axboe5e1d3062008-05-23 11:55:53 +02001008 if (!strncmp(opt, "all", 3)) {
1009 log_info("fio: set all debug options\n");
1010 fio_debug = ~0UL;
1011 continue;
1012 }
1013
Jens Axboeee56ad52008-02-01 10:30:20 +01001014 for (i = 0; debug_levels[i].name; i++) {
1015 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +02001016 found = !strncmp(opt, dl->name, strlen(dl->name));
1017 if (!found)
1018 continue;
1019
1020 if (dl->shift == FD_JOB) {
1021 opt = strchr(opt, ':');
1022 if (!opt) {
1023 log_err("fio: missing job number\n");
1024 break;
1025 }
1026 opt++;
1027 fio_debug_jobno = atoi(opt);
1028 log_info("fio: set debug jobno %d\n",
1029 fio_debug_jobno);
1030 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001031 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001032 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +01001033 }
Jens Axboe5e1d3062008-05-23 11:55:53 +02001034 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001035 }
1036
1037 if (!found)
1038 log_err("fio: debug mask %s not found\n", opt);
1039 }
Jens Axboec09823a2008-02-19 20:16:57 +01001040 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +01001041}
Jens Axboe79e48f72008-02-01 20:37:09 +01001042#else
Jens Axboe69b98d42008-05-30 22:25:32 +02001043static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +01001044{
1045 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001046 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +01001047}
1048#endif
Jens Axboeee56ad52008-02-01 10:30:20 +01001049
Jens Axboe214e1ec2007-03-15 10:48:13 +01001050static int parse_cmd_line(int argc, char *argv[])
1051{
1052 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +01001053 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001054
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001055 while ((c = getopt_long_only(argc, argv, "", l_opts, &lidx)) != -1) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001056 switch (c) {
Jens Axboe2b386d22008-03-26 10:32:57 +01001057 case 'a':
1058 smalloc_pool_size = atoi(optarg);
1059 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001060 case 't':
1061 def_timeout = atoi(optarg);
1062 break;
1063 case 'l':
1064 write_lat_log = 1;
1065 break;
1066 case 'w':
1067 write_bw_log = 1;
1068 break;
1069 case 'o':
1070 f_out = fopen(optarg, "w+");
1071 if (!f_out) {
1072 perror("fopen output");
1073 exit(1);
1074 }
1075 f_err = f_out;
1076 break;
1077 case 'm':
1078 terse_output = 1;
1079 break;
1080 case 'h':
Jens Axboe45378b32007-12-19 13:54:38 +01001081 usage(argv[0]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001082 exit(0);
1083 case 'c':
1084 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +02001085 case 's':
1086 dump_cmdline = 1;
1087 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001088 case 'r':
1089 read_only = 1;
1090 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001091 case 'v':
1092 printf("%s\n", fio_version_string);
1093 exit(0);
Aaron Carrolle592a062007-09-14 09:49:41 +02001094 case 'e':
1095 if (!strcmp("always", optarg))
1096 eta_print = FIO_ETA_ALWAYS;
1097 else if (!strcmp("never", optarg))
1098 eta_print = FIO_ETA_NEVER;
1099 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001100 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001101 if (set_debug(optarg))
1102 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001103 break;
Jens Axboe01f06b62008-02-18 20:53:47 +01001104 case 'x':
1105 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001106 log_err("fio: can't use global as only "
1107 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001108 do_exit++;
1109 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001110 break;
1111 }
1112 if (job_section)
1113 free(job_section);
1114 job_section = strdup(optarg);
1115 break;
Jens Axboe9ac8a792009-11-13 21:23:07 +01001116 case 'p':
1117 if (load_profile(optarg))
1118 do_exit++;
1119 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001120 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001121 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001122 char *val = optarg;
1123
1124 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001125 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001126 if (ret) {
1127 put_job(td);
1128 return 0;
1129 }
1130 td = NULL;
1131 }
1132 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001133 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001134 int global = 0;
1135
Jens Axboe01f06b62008-02-18 20:53:47 +01001136 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001137 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001138
Jens Axboe01f06b62008-02-18 20:53:47 +01001139 if (is_section && skip_this_section(val))
1140 continue;
1141
Jens Axboe214e1ec2007-03-15 10:48:13 +01001142 td = get_new_job(global, &def_thread);
1143 if (!td)
1144 return 0;
1145 }
1146
1147 ret = fio_cmd_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001148 break;
1149 }
1150 default:
Jens Axboec09823a2008-02-19 20:16:57 +01001151 do_exit++;
1152 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001153 break;
1154 }
1155 }
1156
Jens Axboec09823a2008-02-19 20:16:57 +01001157 if (do_exit)
1158 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01001159
Jens Axboe214e1ec2007-03-15 10:48:13 +01001160 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +01001161 if (!ret)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001162 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe7d6a8902008-02-18 20:59:18 +01001163 if (ret)
1164 put_job(td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001165 }
1166
1167 while (optind < argc) {
1168 ini_idx++;
1169 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1170 ini_file[ini_idx - 1] = strdup(argv[optind]);
1171 optind++;
1172 }
1173
1174 return ini_idx;
1175}
1176
Jens Axboeebac4652005-12-08 15:25:21 +01001177int parse_options(int argc, char *argv[])
1178{
Jens Axboe972cfd22006-06-09 11:08:56 +02001179 int job_files, i;
1180
Jens Axboeb4692822006-10-27 13:43:22 +02001181 f_out = stdout;
1182 f_err = stderr;
1183
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001184 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02001185
Jens Axboeebac4652005-12-08 15:25:21 +01001186 if (setup_thread_area())
1187 return 1;
1188 if (fill_def_thread())
1189 return 1;
1190
Jens Axboe972cfd22006-06-09 11:08:56 +02001191 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001192
Jens Axboe972cfd22006-06-09 11:08:56 +02001193 for (i = 0; i < job_files; i++) {
1194 if (fill_def_thread())
1195 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001196 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001197 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001198 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001199 }
Jens Axboeebac4652005-12-08 15:25:21 +01001200
Jens Axboe88c6ed82006-06-09 11:28:10 +02001201 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +01001202 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001203
1204 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001205 if (dump_cmdline)
1206 return 0;
1207
Jens Axboefd4442b2009-06-15 23:29:54 +02001208 log_err("No jobs defined(s)\n\n");
Jens Axboe45378b32007-12-19 13:54:38 +01001209 usage(argv[0]);
Jens Axboeb4692822006-10-27 13:43:22 +02001210 return 1;
1211 }
1212
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001213 if (def_thread.o.gtod_offload) {
1214 fio_gtod_init();
1215 fio_gtod_offload = 1;
1216 fio_gtod_cpu = def_thread.o.gtod_cpu;
1217 }
1218
Jens Axboeebac4652005-12-08 15:25:21 +01001219 return 0;
1220}