blob: 355de88ffa4db9cdc65e6c3d53103fd4618064c4 [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 Axboeebac4652005-12-08 15:25:21 +010019
Jens Axboe019b18e2007-04-26 10:22:16 +020020static char fio_version_string[] = "fio 1.16.1";
Jens Axboe214e1ec2007-03-15 10:48:13 +010021
Jens Axboeee738492007-01-10 11:23:16 +010022#define FIO_RANDSEED (0xb1899bedUL)
Jens Axboeebac4652005-12-08 15:25:21 +010023
Jens Axboe214e1ec2007-03-15 10:48:13 +010024static char **ini_file;
25static int max_jobs = MAX_JOBS;
Jens Axboecca73aa2007-04-04 11:09:19 +020026static int dump_cmdline;
Jens Axboee1f36502006-10-27 10:54:08 +020027
Jens Axboe214e1ec2007-03-15 10:48:13 +010028struct thread_data def_thread;
29struct thread_data *threads = NULL;
Jens Axboee1f36502006-10-27 10:54:08 +020030
Jens Axboe214e1ec2007-03-15 10:48:13 +010031int exitall_on_terminate = 0;
32int terse_output = 0;
33unsigned long long mlock_size = 0;
34FILE *f_out = NULL;
35FILE *f_err = NULL;
Jens Axboeee738492007-01-10 11:23:16 +010036
Jens Axboe214e1ec2007-03-15 10:48:13 +010037int write_bw_log = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020038
Jens Axboe214e1ec2007-03-15 10:48:13 +010039static int def_timeout = 0;
40static int write_lat_log = 0;
41
42static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020043
44/*
45 * Command line options. These will contain the above, plus a few
46 * extra that only pertain to fio itself and not jobs.
47 */
Jens Axboe214e1ec2007-03-15 10:48:13 +010048static struct option long_options[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020049 {
50 .name = "output",
51 .has_arg = required_argument,
52 .val = 'o',
53 },
54 {
55 .name = "timeout",
56 .has_arg = required_argument,
57 .val = 't',
58 },
59 {
60 .name = "latency-log",
61 .has_arg = required_argument,
62 .val = 'l',
63 },
64 {
65 .name = "bandwidth-log",
66 .has_arg = required_argument,
67 .val = 'b',
68 },
69 {
70 .name = "minimal",
71 .has_arg = optional_argument,
72 .val = 'm',
73 },
74 {
75 .name = "version",
76 .has_arg = no_argument,
77 .val = 'v',
78 },
79 {
Jens Axboefd28ca42007-01-09 21:20:13 +010080 .name = "help",
81 .has_arg = no_argument,
82 .val = 'h',
83 },
84 {
85 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +010086 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +010087 .val = 'c',
88 },
89 {
Jens Axboecca73aa2007-04-04 11:09:19 +020090 .name = "showcmd",
91 .has_arg = no_argument,
92 .val = 's'
93 },
94 {
Jens Axboeb4692822006-10-27 13:43:22 +020095 .name = NULL,
96 },
97};
98
Joel Becker9728ce32007-03-01 08:24:39 +010099FILE *get_f_out()
100{
101 return f_out;
102}
103
104FILE *get_f_err()
105{
106 return f_err;
107}
108
Jens Axboe906c8d72006-06-13 09:37:56 +0200109/*
110 * Return a free job structure.
111 */
Jens Axboeebac4652005-12-08 15:25:21 +0100112static struct thread_data *get_new_job(int global, struct thread_data *parent)
113{
114 struct thread_data *td;
115
116 if (global)
117 return &def_thread;
118 if (thread_number >= max_jobs)
119 return NULL;
120
121 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200122 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100123
Jens Axboecade3ef2007-03-23 15:29:45 +0100124 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100125 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100126
Jens Axboeebac4652005-12-08 15:25:21 +0100127 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100128 return td;
129}
130
131static void put_job(struct thread_data *td)
132{
Jens Axboe549577a2006-10-30 12:23:41 +0100133 if (td == &def_thread)
134 return;
135
Jens Axboe16edf252007-02-10 14:59:22 +0100136 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100137 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100138
Jens Axboeebac4652005-12-08 15:25:21 +0100139 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
140 thread_number--;
141}
142
Jens Axboe127f6862007-03-15 12:09:57 +0100143static int setup_rate(struct thread_data *td)
144{
145 unsigned long nr_reads_per_msec;
146 unsigned long long rate;
147 unsigned int bs;
148
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100149 if (!td->o.rate && !td->o.rate_iops)
Jens Axboe127f6862007-03-15 12:09:57 +0100150 return 0;
151
152 if (td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100153 bs = td->o.rw_min_bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100154 else if (td_read(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100155 bs = td->o.min_bs[DDIR_READ];
Jens Axboe127f6862007-03-15 12:09:57 +0100156 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100157 bs = td->o.min_bs[DDIR_WRITE];
Jens Axboe127f6862007-03-15 12:09:57 +0100158
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100159 if (td->o.rate) {
160 rate = td->o.rate;
Jens Axboe127f6862007-03-15 12:09:57 +0100161 nr_reads_per_msec = (rate * 1024 * 1000LL) / bs;
162 } else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100163 nr_reads_per_msec = td->o.rate_iops * 1000UL;
Jens Axboe127f6862007-03-15 12:09:57 +0100164
165 if (!nr_reads_per_msec) {
166 log_err("rate lower than supported\n");
167 return -1;
168 }
169
170 td->rate_usec_cycle = 1000000000ULL / nr_reads_per_msec;
171 td->rate_pending_usleep = 0;
172 return 0;
173}
174
Jens Axboedad915e2006-10-27 11:10:18 +0200175/*
176 * Lazy way of fixing up options that depend on each other. We could also
177 * define option callback handlers, but this is easier.
178 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100179static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200180{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100181 struct thread_options *o = &td->o;
Jens Axboedad915e2006-10-27 11:10:18 +0200182
Jens Axboee47f7992007-03-21 14:05:39 +0100183 if (o->rwmix[DDIR_READ] + o->rwmix[DDIR_WRITE] > 100)
184 o->rwmix[DDIR_WRITE] = 100 - o->rwmix[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100185
186 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200187 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100188 free(o->write_iolog_file);
189 o->write_iolog_file = NULL;
Jens Axboe076efc72006-10-27 11:24:25 +0200190 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100191
192 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100193 o->iodepth = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100194 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100195 if (!o->iodepth)
196 o->iodepth = o->open_files;
Jens Axboe16b462a2006-10-30 12:35:18 +0100197 }
198
199 /*
200 * only really works for sequential io for now, and with 1 file
201 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100202 if (o->zone_size && td_random(td) && o->open_files == 1)
203 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100204
205 /*
206 * Reads can do overwrites, we always need to pre-create the file
207 */
208 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100209 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100210
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100211 if (!o->min_bs[DDIR_READ])
212 o->min_bs[DDIR_READ]= o->bs[DDIR_READ];
213 if (!o->max_bs[DDIR_READ])
214 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
215 if (!o->min_bs[DDIR_WRITE])
216 o->min_bs[DDIR_WRITE]= o->bs[DDIR_WRITE];
217 if (!o->max_bs[DDIR_WRITE])
218 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100219
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100220 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100221
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100222 if (!o->file_size_high)
223 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100224
Jens Axboe16b462a2006-10-30 12:35:18 +0100225 if (td_read(td) && !td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100226 o->verify = 0;
Jens Axboebb8895e2006-10-30 15:14:48 +0100227
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100228 if (o->norandommap && o->verify != VERIFY_NONE) {
Jens Axboebb8895e2006-10-30 15:14:48 +0100229 log_err("fio: norandommap given, verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100230 o->verify = VERIFY_NONE;
Jens Axboebb8895e2006-10-30 15:14:48 +0100231 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100232 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100233 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100234
235 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100236 * thinktime_spin must be less than thinktime
237 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100238 if (o->thinktime_spin > o->thinktime)
239 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100240
241 /*
242 * The low water mark cannot be bigger than the iodepth
243 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100244 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100245 /*
246 * syslet work around - if the workload is sequential,
247 * we want to let the queue drain all the way down to
248 * avoid seeking between async threads
249 */
250 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100251 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100252 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100253 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100254 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100255
256 /*
257 * If batch number isn't set, default to the same as iodepth
258 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100259 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
260 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100261
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100262 if (o->nr_files > td->files_index)
263 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100264
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100265 if (o->open_files > o->nr_files || !o->open_files)
266 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100267
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100268 if ((o->rate && o->rate_iops) || (o->ratemin && o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100269 log_err("fio: rate and rate_iops are mutually exclusive\n");
270 return 1;
271 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100272 if ((o->rate < o->ratemin) || (o->rate_iops < o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100273 log_err("fio: minimum rate exceeds rate\n");
274 return 1;
275 }
276
Jens Axboecf4464c2007-04-17 20:14:42 +0200277 if (!o->timeout && o->time_based) {
278 log_err("fio: time_based requires a runtime/timeout setting\n");
279 o->time_based = 0;
280 }
281
Jens Axboe4e991c22007-03-15 11:41:11 +0100282 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200283}
284
Jens Axboe906c8d72006-06-13 09:37:56 +0200285/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100286 * This function leaks the buffer
287 */
288static char *to_kmg(unsigned int val)
289{
290 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100291 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100292 char *p = post;
293
Jens Axboe245142f2006-11-08 12:49:21 +0100294 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100295 if (val & 1023)
296 break;
297
298 val >>= 10;
299 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100300 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100301
302 snprintf(buf, 31, "%u%c", val, *p);
303 return buf;
304}
305
Jens Axboe09629a92007-03-09 09:00:06 +0100306/* External engines are specified by "external:name.o") */
307static const char *get_engine_name(const char *str)
308{
309 char *p = strstr(str, ":");
310
311 if (!p)
312 return str;
313
314 p++;
315 strip_blank_front(&p);
316 strip_blank_end(p);
317 return p;
318}
319
Jens Axboee132cba2007-03-14 14:23:54 +0100320static int exists_and_not_file(const char *filename)
321{
322 struct stat sb;
323
324 if (lstat(filename, &sb) == -1)
325 return 0;
326
327 if (S_ISREG(sb.st_mode))
328 return 0;
329
330 return 1;
331}
332
Jens Axboef8977ee2006-11-06 14:03:03 +0100333/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100334 * Initialize the various random states we need (random io, block size ranges,
335 * read/write mix, etc).
336 */
337static int init_random_state(struct thread_data *td)
338{
339 unsigned long seeds[6];
Jens Axboe68727072007-03-15 20:49:25 +0100340 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100341
342 fd = open("/dev/urandom", O_RDONLY);
343 if (fd == -1) {
344 td_verror(td, errno, "open");
345 return 1;
346 }
347
348 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
349 td_verror(td, EIO, "read");
350 close(fd);
351 return 1;
352 }
353
354 close(fd);
355
356 os_random_seed(seeds[0], &td->bsrange_state);
357 os_random_seed(seeds[1], &td->verify_state);
358 os_random_seed(seeds[2], &td->rwmix_state);
359
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100360 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100361 os_random_seed(seeds[3], &td->next_file_state);
362
363 os_random_seed(seeds[5], &td->file_size_state);
364
365 if (!td_random(td))
366 return 0;
367
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100368 if (td->o.rand_repeatable)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100369 seeds[4] = FIO_RANDSEED * td->thread_number;
370
Jens Axboe9c60ce62007-03-15 09:14:47 +0100371 os_random_seed(seeds[4], &td->random_state);
372 return 0;
373}
374
Jens Axboe9c60ce62007-03-15 09:14:47 +0100375/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200376 * Adds a job to the list of things todo. Sanitizes the various options
377 * to make sure we don't have conflicts, and initializes various
378 * members of td.
379 */
Jens Axboe75154842006-06-01 13:56:09 +0200380static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100381{
Jens Axboe413dd452007-02-23 09:26:09 +0100382 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
383 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100384 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100385 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100386 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100387 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100388
Jens Axboeebac4652005-12-08 15:25:21 +0100389 /*
390 * the def_thread is just for options, it's not a real job
391 */
392 if (td == &def_thread)
393 return 0;
394
Jens Axboecca73aa2007-04-04 11:09:19 +0200395 /*
396 * if we are just dumping the output command line, don't add the job
397 */
398 if (dump_cmdline) {
399 put_job(td);
400 return 0;
401 }
402
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100403 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100404 td->io_ops = load_ioengine(td, engine);
405 if (!td->io_ops) {
406 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100407 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100408 }
Jens Axboedf641192006-10-12 07:55:41 +0200409
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100410 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100411 nr_thread++;
412 else
413 nr_process++;
414
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100415 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100416 td->io_ops->flags |= FIO_RAWIO;
417
Jens Axboee132cba2007-03-14 14:23:54 +0100418 file_alloced = 0;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100419 if (!td->o.filename && !td->files_index) {
Jens Axboee132cba2007-03-14 14:23:54 +0100420 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100421
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100422 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100423 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100424 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100425 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboee132cba2007-03-14 14:23:54 +0100426 sprintf(fname, "%s.%d.%d", jobname, td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100427 add_file(td, fname);
428 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100429 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100430 }
Jens Axboeebac4652005-12-08 15:25:21 +0100431
Jens Axboe4e991c22007-03-15 11:41:11 +0100432 if (fixup_options(td))
433 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100434
Jens Axboe07eb79d2007-04-12 13:02:38 +0200435 if (td->io_ops->flags & FIO_DISKLESSIO) {
436 struct fio_file *f;
437
438 for_each_file(td, f, i)
439 f->real_file_size = -1ULL;
440 }
441
Jens Axboe07739b52007-03-08 20:25:46 +0100442 td->mutex = fio_sem_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100443
Jens Axboe756867b2007-03-06 15:19:24 +0100444 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
445 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
446 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboe1e3d53a2007-03-22 19:01:48 +0100447 td->ddir_nr = td->o.ddir_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100448
Jens Axboeb3d62a72007-03-20 14:23:26 +0100449 if ((td->o.stonewall || td->o.numjobs > 1 || td->o.new_group)
450 && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100451 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100452 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100453 }
Jens Axboeebac4652005-12-08 15:25:21 +0100454
455 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100456 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100457
Jens Axboe9c60ce62007-03-15 09:14:47 +0100458 if (init_random_state(td))
459 goto err;
460
Jens Axboeebac4652005-12-08 15:25:21 +0100461 if (setup_rate(td))
462 goto err;
463
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100464 if (td->o.write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100465 setup_log(&td->ts.slat_log);
466 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100467 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100468 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100469 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100470
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100471 if (!td->o.name)
472 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200473
Jens Axboec6ae0a52006-06-12 11:04:44 +0200474 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200475 if (!job_add_num) {
Jens Axboeba0fbe12007-03-09 14:34:23 +0100476 if (!strcmp(td->io_ops->name, "cpuio"))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100477 log_info("%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->o.name, td->o.cpuload, td->o.cpucycle);
Jens Axboef8977ee2006-11-06 14:03:03 +0100478 else {
479 char *c1, *c2, *c3, *c4;
480
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100481 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
482 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
483 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
484 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100485
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100486 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s, ioengine=%s, iodepth=%u\n", td->o.name, td->groupid, ddir_str[td->o.td_ddir], c1, c2, c3, c4, td->io_ops->name, td->o.iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100487
488 free(c1);
489 free(c2);
490 free(c3);
491 free(c4);
492 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200493 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100494 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200495 }
Jens Axboeebac4652005-12-08 15:25:21 +0100496
497 /*
498 * recurse add identical jobs, clear numjobs and stonewall options
499 * as they don't apply to sub-jobs
500 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100501 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100502 while (--numjobs) {
503 struct thread_data *td_new = get_new_job(0, td);
504
505 if (!td_new)
506 goto err;
507
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100508 td_new->o.numjobs = 1;
509 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200510 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100511
512 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100513 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100514 td_new->files_index = 0;
515 td_new->files = NULL;
516 }
517
Jens Axboe75154842006-06-01 13:56:09 +0200518 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100519
Jens Axboe75154842006-06-01 13:56:09 +0200520 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100521 goto err;
522 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100523
Jens Axboeebac4652005-12-08 15:25:21 +0100524 return 0;
525err:
526 put_job(td);
527 return -1;
528}
529
Jens Axboeebac4652005-12-08 15:25:21 +0100530static int is_empty_or_comment(char *line)
531{
532 unsigned int i;
533
534 for (i = 0; i < strlen(line); i++) {
535 if (line[i] == ';')
536 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100537 if (line[i] == '#')
538 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100539 if (!isspace(line[i]) && !iscntrl(line[i]))
540 return 0;
541 }
542
543 return 1;
544}
545
Jens Axboe313cb202006-12-21 09:50:00 +0100546/*
Jens Axboe07261982006-06-07 10:51:12 +0200547 * This is our [ini] type file parser.
548 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100549static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100550{
Jens Axboee1f36502006-10-27 10:54:08 +0200551 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100552 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100553 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100554 fpos_t off;
555 FILE *f;
556 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200557 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200558 int first_sect = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100559
560 f = fopen(file, "r");
561 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200562 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100563 return 1;
564 }
565
566 string = malloc(4096);
567 name = malloc(256);
Jens Axboefee3bb42006-10-30 13:32:08 +0100568 memset(name, 0, 256);
Jens Axboeebac4652005-12-08 15:25:21 +0100569
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200570 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100571 do {
572 p = fgets(string, 4095, f);
573 if (!p)
Jens Axboe45410ac2006-06-07 11:10:39 +0200574 break;
gurudas paicdc7f192007-03-29 10:10:56 +0200575
576 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800577 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200578
Jens Axboeebac4652005-12-08 15:25:21 +0100579 if (is_empty_or_comment(p))
580 continue;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800581 if (sscanf(p, "[%255s]", name) != 1) {
582 log_err("fio: option <%s> outside of job section\n", p);
Jens Axboeebac4652005-12-08 15:25:21 +0100583 continue;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800584 }
Jens Axboeebac4652005-12-08 15:25:21 +0100585
586 global = !strncmp(name, "global", 6);
587
588 name[strlen(name) - 1] = '\0';
589
Jens Axboecca73aa2007-04-04 11:09:19 +0200590 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200591 if (first_sect)
592 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200593 if (!global)
594 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200595 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200596 }
597
Jens Axboeebac4652005-12-08 15:25:21 +0100598 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200599 if (!td) {
600 ret = 1;
601 break;
602 }
Jens Axboeebac4652005-12-08 15:25:21 +0100603
Jens Axboe972cfd22006-06-09 11:08:56 +0200604 /*
605 * Seperate multiple job files by a stonewall
606 */
Jens Axboef9481912006-06-09 11:37:28 +0200607 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100608 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200609 stonewall = 0;
610 }
611
Jens Axboeebac4652005-12-08 15:25:21 +0100612 fgetpos(f, &off);
613 while ((p = fgets(string, 4096, f)) != NULL) {
614 if (is_empty_or_comment(p))
615 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200616
Jens Axboeb6754f92006-05-30 14:29:32 +0200617 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100618
619 if (p[0] == '[')
620 break;
621
Jens Axboe4ae3f762006-05-30 13:35:14 +0200622 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200623
Jens Axboee1f36502006-10-27 10:54:08 +0200624 fgetpos(f, &off);
Jens Axboeebac4652005-12-08 15:25:21 +0100625
Jens Axboe45410ac2006-06-07 11:10:39 +0200626 /*
627 * Don't break here, continue parsing options so we
628 * dump all the bad ones. Makes trial/error fixups
629 * easier on the user.
630 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100631 ret |= fio_option_parse(td, p);
Jens Axboecca73aa2007-04-04 11:09:19 +0200632 if (!ret && dump_cmdline)
633 log_info("--%s ", p);
Jens Axboeebac4652005-12-08 15:25:21 +0100634 }
Jens Axboeebac4652005-12-08 15:25:21 +0100635
Jens Axboe45410ac2006-06-07 11:10:39 +0200636 if (!ret) {
637 fsetpos(f, &off);
638 ret = add_job(td, name, 0);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100639 } else {
640 log_err("fio: job %s dropped\n", name);
641 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200642 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100643 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100644
Jens Axboecca73aa2007-04-04 11:09:19 +0200645 if (dump_cmdline)
646 log_info("\n");
647
Jens Axboeebac4652005-12-08 15:25:21 +0100648 free(string);
649 free(name);
650 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200651 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100652}
653
654static int fill_def_thread(void)
655{
656 memset(&def_thread, 0, sizeof(def_thread));
657
Jens Axboe375b2692007-05-22 09:13:02 +0200658 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100659
660 /*
Jens Axboeee738492007-01-10 11:23:16 +0100661 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100662 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100663 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100664
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100665 def_thread.o.timeout = def_timeout;
666 def_thread.o.write_bw_log = write_bw_log;
667 def_thread.o.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +0100668
Jens Axboeebac4652005-12-08 15:25:21 +0100669 return 0;
670}
671
Jens Axboeebac4652005-12-08 15:25:21 +0100672static void free_shm(void)
673{
674 struct shmid_ds sbuf;
675
676 if (threads) {
Jens Axboe2c0ecd22006-06-08 13:25:41 +0200677 shmdt((void *) threads);
Jens Axboeebac4652005-12-08 15:25:21 +0100678 threads = NULL;
679 shmctl(shm_id, IPC_RMID, &sbuf);
680 }
681}
682
Jens Axboe906c8d72006-06-13 09:37:56 +0200683/*
684 * The thread area is shared between the main process and the job
685 * threads/processes. So setup a shared memory segment that will hold
686 * all the job info.
687 */
Jens Axboeebac4652005-12-08 15:25:21 +0100688static int setup_thread_area(void)
689{
690 /*
691 * 1024 is too much on some machines, scale max_jobs if
692 * we get a failure that looks like too large a shm segment
693 */
694 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200695 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100696
Jens Axboe906c8d72006-06-13 09:37:56 +0200697 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100698 if (shm_id != -1)
699 break;
700 if (errno != EINVAL) {
701 perror("shmget");
702 break;
703 }
704
705 max_jobs >>= 1;
706 } while (max_jobs);
707
708 if (shm_id == -1)
709 return 1;
710
711 threads = shmat(shm_id, NULL, 0);
712 if (threads == (void *) -1) {
713 perror("shmat");
714 return 1;
715 }
716
717 atexit(free_shm);
718 return 0;
719}
720
Jens Axboe214e1ec2007-03-15 10:48:13 +0100721static void usage(void)
Jens Axboeb4692822006-10-27 13:43:22 +0200722{
Jens Axboe214e1ec2007-03-15 10:48:13 +0100723 printf("%s\n", fio_version_string);
724 printf("\t--output\tWrite output to file\n");
725 printf("\t--timeout\tRuntime in seconds\n");
726 printf("\t--latency-log\tGenerate per-job latency logs\n");
727 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
728 printf("\t--minimal\tMinimal (terse) output\n");
729 printf("\t--version\tPrint version info and exit\n");
730 printf("\t--help\t\tPrint this page\n");
731 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +0200732 printf("\t--showcmd\tTurn a job file into command line options\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200733}
734
Jens Axboe214e1ec2007-03-15 10:48:13 +0100735static int parse_cmd_line(int argc, char *argv[])
736{
737 struct thread_data *td = NULL;
738 int c, ini_idx = 0, lidx, ret, dont_add_job = 0;
739
740 while ((c = getopt_long_only(argc, argv, "", long_options, &lidx)) != -1) {
741 switch (c) {
742 case 't':
743 def_timeout = atoi(optarg);
744 break;
745 case 'l':
746 write_lat_log = 1;
747 break;
748 case 'w':
749 write_bw_log = 1;
750 break;
751 case 'o':
752 f_out = fopen(optarg, "w+");
753 if (!f_out) {
754 perror("fopen output");
755 exit(1);
756 }
757 f_err = f_out;
758 break;
759 case 'm':
760 terse_output = 1;
761 break;
762 case 'h':
763 usage();
764 exit(0);
765 case 'c':
766 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +0200767 case 's':
768 dump_cmdline = 1;
769 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100770 case 'v':
771 printf("%s\n", fio_version_string);
772 exit(0);
773 case FIO_GETOPT_JOB: {
774 const char *opt = long_options[lidx].name;
775 char *val = optarg;
776
777 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100778 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100779 if (ret) {
780 put_job(td);
781 return 0;
782 }
783 td = NULL;
784 }
785 if (!td) {
Jens Axboe3106f222007-04-19 09:53:28 +0200786 int global = 0;
787
788 if (strncmp(opt, "name", 4) ||
789 !strncmp(val, "global", 6))
790 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100791
792 td = get_new_job(global, &def_thread);
793 if (!td)
794 return 0;
795 }
796
797 ret = fio_cmd_option_parse(td, opt, val);
798 if (ret)
799 dont_add_job = 1;
800 break;
801 }
802 default:
803 break;
804 }
805 }
806
807 if (td) {
808 if (dont_add_job)
809 put_job(td);
810 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100811 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100812 if (ret)
813 put_job(td);
814 }
815 }
816
817 while (optind < argc) {
818 ini_idx++;
819 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
820 ini_file[ini_idx - 1] = strdup(argv[optind]);
821 optind++;
822 }
823
824 return ini_idx;
825}
826
827
Jens Axboeebac4652005-12-08 15:25:21 +0100828int parse_options(int argc, char *argv[])
829{
Jens Axboe972cfd22006-06-09 11:08:56 +0200830 int job_files, i;
831
Jens Axboeb4692822006-10-27 13:43:22 +0200832 f_out = stdout;
833 f_err = stderr;
834
Jens Axboe214e1ec2007-03-15 10:48:13 +0100835 fio_options_dup_and_init(long_options);
Jens Axboeb4692822006-10-27 13:43:22 +0200836
Jens Axboeebac4652005-12-08 15:25:21 +0100837 if (setup_thread_area())
838 return 1;
839 if (fill_def_thread())
840 return 1;
841
Jens Axboe972cfd22006-06-09 11:08:56 +0200842 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +0100843
Jens Axboe972cfd22006-06-09 11:08:56 +0200844 for (i = 0; i < job_files; i++) {
845 if (fill_def_thread())
846 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200847 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +0200848 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +0200849 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +0200850 }
Jens Axboeebac4652005-12-08 15:25:21 +0100851
Jens Axboe88c6ed82006-06-09 11:28:10 +0200852 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +0100853 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +0200854
855 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +0200856 if (dump_cmdline)
857 return 0;
858
Jens Axboeb4692822006-10-27 13:43:22 +0200859 log_err("No jobs defined(s)\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200860 return 1;
861 }
862
Jens Axboeebac4652005-12-08 15:25:21 +0100863 return 0;
864}