blob: 89c66afa0e1b8b439ce5a534f76e5d83183431ce [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 Axboee6203e92007-09-03 10:26:54 +020020static char fio_version_string[] = "fio 1.17.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 Axboe4241ea82007-09-12 08:18:36 +020038int read_only = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020039
Jens Axboe214e1ec2007-03-15 10:48:13 +010040static int def_timeout = 0;
41static int write_lat_log = 0;
42
43static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020044
45/*
46 * Command line options. These will contain the above, plus a few
47 * extra that only pertain to fio itself and not jobs.
48 */
Jens Axboe214e1ec2007-03-15 10:48:13 +010049static struct option long_options[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020050 {
51 .name = "output",
52 .has_arg = required_argument,
53 .val = 'o',
54 },
55 {
56 .name = "timeout",
57 .has_arg = required_argument,
58 .val = 't',
59 },
60 {
61 .name = "latency-log",
62 .has_arg = required_argument,
63 .val = 'l',
64 },
65 {
66 .name = "bandwidth-log",
67 .has_arg = required_argument,
68 .val = 'b',
69 },
70 {
71 .name = "minimal",
72 .has_arg = optional_argument,
73 .val = 'm',
74 },
75 {
76 .name = "version",
77 .has_arg = no_argument,
78 .val = 'v',
79 },
80 {
Jens Axboefd28ca42007-01-09 21:20:13 +010081 .name = "help",
82 .has_arg = no_argument,
83 .val = 'h',
84 },
85 {
86 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +010087 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +010088 .val = 'c',
89 },
90 {
Jens Axboecca73aa2007-04-04 11:09:19 +020091 .name = "showcmd",
92 .has_arg = no_argument,
Jens Axboe724e4432007-09-11 20:02:05 +020093 .val = 's',
94 },
95 {
96 .name = "readonly",
97 .has_arg = no_argument,
98 .val = 'r',
Jens Axboecca73aa2007-04-04 11:09:19 +020099 },
100 {
Jens Axboeb4692822006-10-27 13:43:22 +0200101 .name = NULL,
102 },
103};
104
Joel Becker9728ce32007-03-01 08:24:39 +0100105FILE *get_f_out()
106{
107 return f_out;
108}
109
110FILE *get_f_err()
111{
112 return f_err;
113}
114
Jens Axboe906c8d72006-06-13 09:37:56 +0200115/*
116 * Return a free job structure.
117 */
Jens Axboeebac4652005-12-08 15:25:21 +0100118static struct thread_data *get_new_job(int global, struct thread_data *parent)
119{
120 struct thread_data *td;
121
122 if (global)
123 return &def_thread;
124 if (thread_number >= max_jobs)
125 return NULL;
126
127 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200128 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100129
Jens Axboecade3ef2007-03-23 15:29:45 +0100130 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100131 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100132
Jens Axboeebac4652005-12-08 15:25:21 +0100133 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100134 return td;
135}
136
137static void put_job(struct thread_data *td)
138{
Jens Axboe549577a2006-10-30 12:23:41 +0100139 if (td == &def_thread)
140 return;
141
Jens Axboe16edf252007-02-10 14:59:22 +0100142 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100143 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100144
Jens Axboeebac4652005-12-08 15:25:21 +0100145 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
146 thread_number--;
147}
148
Jens Axboe127f6862007-03-15 12:09:57 +0100149static int setup_rate(struct thread_data *td)
150{
151 unsigned long nr_reads_per_msec;
152 unsigned long long rate;
153 unsigned int bs;
154
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100155 if (!td->o.rate && !td->o.rate_iops)
Jens Axboe127f6862007-03-15 12:09:57 +0100156 return 0;
157
158 if (td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100159 bs = td->o.rw_min_bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100160 else if (td_read(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100161 bs = td->o.min_bs[DDIR_READ];
Jens Axboe127f6862007-03-15 12:09:57 +0100162 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100163 bs = td->o.min_bs[DDIR_WRITE];
Jens Axboe127f6862007-03-15 12:09:57 +0100164
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100165 if (td->o.rate) {
166 rate = td->o.rate;
Jens Axboe127f6862007-03-15 12:09:57 +0100167 nr_reads_per_msec = (rate * 1024 * 1000LL) / bs;
168 } else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100169 nr_reads_per_msec = td->o.rate_iops * 1000UL;
Jens Axboe127f6862007-03-15 12:09:57 +0100170
171 if (!nr_reads_per_msec) {
172 log_err("rate lower than supported\n");
173 return -1;
174 }
175
176 td->rate_usec_cycle = 1000000000ULL / nr_reads_per_msec;
177 td->rate_pending_usleep = 0;
178 return 0;
179}
180
Jens Axboedad915e2006-10-27 11:10:18 +0200181/*
182 * Lazy way of fixing up options that depend on each other. We could also
183 * define option callback handlers, but this is easier.
184 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100185static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200186{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100187 struct thread_options *o = &td->o;
Jens Axboedad915e2006-10-27 11:10:18 +0200188
Jens Axboe724e4432007-09-11 20:02:05 +0200189 if (read_only && td_write(td)) {
190 log_err("fio: job <%s> has write bit set, but fio is in read-only mode\n", td->o.name);
191 return 1;
192 }
193
Jens Axboee47f7992007-03-21 14:05:39 +0100194 if (o->rwmix[DDIR_READ] + o->rwmix[DDIR_WRITE] > 100)
195 o->rwmix[DDIR_WRITE] = 100 - o->rwmix[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100196
197 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200198 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100199 free(o->write_iolog_file);
200 o->write_iolog_file = NULL;
Jens Axboe076efc72006-10-27 11:24:25 +0200201 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100202
203 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100204 o->iodepth = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100205 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100206 if (!o->iodepth)
207 o->iodepth = o->open_files;
Jens Axboe16b462a2006-10-30 12:35:18 +0100208 }
209
210 /*
211 * only really works for sequential io for now, and with 1 file
212 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100213 if (o->zone_size && td_random(td) && o->open_files == 1)
214 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100215
216 /*
217 * Reads can do overwrites, we always need to pre-create the file
218 */
219 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100220 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100221
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100222 if (!o->min_bs[DDIR_READ])
223 o->min_bs[DDIR_READ]= o->bs[DDIR_READ];
224 if (!o->max_bs[DDIR_READ])
225 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
226 if (!o->min_bs[DDIR_WRITE])
227 o->min_bs[DDIR_WRITE]= o->bs[DDIR_WRITE];
228 if (!o->max_bs[DDIR_WRITE])
229 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100230
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100231 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100232
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100233 if (!o->file_size_high)
234 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100235
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100236 if (o->norandommap && o->verify != VERIFY_NONE) {
Jens Axboebb8895e2006-10-30 15:14:48 +0100237 log_err("fio: norandommap given, verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100238 o->verify = VERIFY_NONE;
Jens Axboebb8895e2006-10-30 15:14:48 +0100239 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100240 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100241 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100242
243 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100244 * thinktime_spin must be less than thinktime
245 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100246 if (o->thinktime_spin > o->thinktime)
247 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100248
249 /*
250 * The low water mark cannot be bigger than the iodepth
251 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100252 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100253 /*
254 * syslet work around - if the workload is sequential,
255 * we want to let the queue drain all the way down to
256 * avoid seeking between async threads
257 */
258 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100259 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100260 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100261 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100262 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100263
264 /*
265 * If batch number isn't set, default to the same as iodepth
266 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100267 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
268 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100269
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100270 if (o->nr_files > td->files_index)
271 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100272
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100273 if (o->open_files > o->nr_files || !o->open_files)
274 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100275
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100276 if ((o->rate && o->rate_iops) || (o->ratemin && o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100277 log_err("fio: rate and rate_iops are mutually exclusive\n");
278 return 1;
279 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100280 if ((o->rate < o->ratemin) || (o->rate_iops < o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100281 log_err("fio: minimum rate exceeds rate\n");
282 return 1;
283 }
284
Jens Axboecf4464c2007-04-17 20:14:42 +0200285 if (!o->timeout && o->time_based) {
286 log_err("fio: time_based requires a runtime/timeout setting\n");
287 o->time_based = 0;
288 }
289
Jens Axboe4e991c22007-03-15 11:41:11 +0100290 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200291}
292
Jens Axboe906c8d72006-06-13 09:37:56 +0200293/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100294 * This function leaks the buffer
295 */
296static char *to_kmg(unsigned int val)
297{
298 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100299 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100300 char *p = post;
301
Jens Axboe245142f2006-11-08 12:49:21 +0100302 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100303 if (val & 1023)
304 break;
305
306 val >>= 10;
307 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100308 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100309
310 snprintf(buf, 31, "%u%c", val, *p);
311 return buf;
312}
313
Jens Axboe09629a92007-03-09 09:00:06 +0100314/* External engines are specified by "external:name.o") */
315static const char *get_engine_name(const char *str)
316{
317 char *p = strstr(str, ":");
318
319 if (!p)
320 return str;
321
322 p++;
323 strip_blank_front(&p);
324 strip_blank_end(p);
325 return p;
326}
327
Jens Axboee132cba2007-03-14 14:23:54 +0100328static int exists_and_not_file(const char *filename)
329{
330 struct stat sb;
331
332 if (lstat(filename, &sb) == -1)
333 return 0;
334
335 if (S_ISREG(sb.st_mode))
336 return 0;
337
338 return 1;
339}
340
Jens Axboef8977ee2006-11-06 14:03:03 +0100341/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100342 * Initialize the various random states we need (random io, block size ranges,
343 * read/write mix, etc).
344 */
345static int init_random_state(struct thread_data *td)
346{
347 unsigned long seeds[6];
Jens Axboe68727072007-03-15 20:49:25 +0100348 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100349
350 fd = open("/dev/urandom", O_RDONLY);
351 if (fd == -1) {
352 td_verror(td, errno, "open");
353 return 1;
354 }
355
356 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
357 td_verror(td, EIO, "read");
358 close(fd);
359 return 1;
360 }
361
362 close(fd);
363
364 os_random_seed(seeds[0], &td->bsrange_state);
365 os_random_seed(seeds[1], &td->verify_state);
366 os_random_seed(seeds[2], &td->rwmix_state);
367
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100368 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100369 os_random_seed(seeds[3], &td->next_file_state);
370
371 os_random_seed(seeds[5], &td->file_size_state);
372
373 if (!td_random(td))
374 return 0;
375
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100376 if (td->o.rand_repeatable)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100377 seeds[4] = FIO_RANDSEED * td->thread_number;
378
Jens Axboe9c60ce62007-03-15 09:14:47 +0100379 os_random_seed(seeds[4], &td->random_state);
380 return 0;
381}
382
Jens Axboe9c60ce62007-03-15 09:14:47 +0100383/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200384 * Adds a job to the list of things todo. Sanitizes the various options
385 * to make sure we don't have conflicts, and initializes various
386 * members of td.
387 */
Jens Axboe75154842006-06-01 13:56:09 +0200388static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100389{
Jens Axboe413dd452007-02-23 09:26:09 +0100390 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
391 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100392 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100393 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100394 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100395 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100396
Jens Axboeebac4652005-12-08 15:25:21 +0100397 /*
398 * the def_thread is just for options, it's not a real job
399 */
400 if (td == &def_thread)
401 return 0;
402
Jens Axboecca73aa2007-04-04 11:09:19 +0200403 /*
404 * if we are just dumping the output command line, don't add the job
405 */
406 if (dump_cmdline) {
407 put_job(td);
408 return 0;
409 }
410
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100411 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100412 td->io_ops = load_ioengine(td, engine);
413 if (!td->io_ops) {
414 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100415 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100416 }
Jens Axboedf641192006-10-12 07:55:41 +0200417
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100418 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100419 nr_thread++;
420 else
421 nr_process++;
422
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100423 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100424 td->io_ops->flags |= FIO_RAWIO;
425
Jens Axboee132cba2007-03-14 14:23:54 +0100426 file_alloced = 0;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100427 if (!td->o.filename && !td->files_index) {
Jens Axboee132cba2007-03-14 14:23:54 +0100428 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100429
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100430 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100431 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100432 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100433 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboee132cba2007-03-14 14:23:54 +0100434 sprintf(fname, "%s.%d.%d", jobname, td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100435 add_file(td, fname);
436 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100437 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100438 }
Jens Axboeebac4652005-12-08 15:25:21 +0100439
Jens Axboe4e991c22007-03-15 11:41:11 +0100440 if (fixup_options(td))
441 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100442
Jens Axboe07eb79d2007-04-12 13:02:38 +0200443 if (td->io_ops->flags & FIO_DISKLESSIO) {
444 struct fio_file *f;
445
446 for_each_file(td, f, i)
447 f->real_file_size = -1ULL;
448 }
449
Jens Axboe07739b52007-03-08 20:25:46 +0100450 td->mutex = fio_sem_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100451
Jens Axboe756867b2007-03-06 15:19:24 +0100452 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
453 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
454 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboe1e3d53a2007-03-22 19:01:48 +0100455 td->ddir_nr = td->o.ddir_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100456
Jens Axboeb3d62a72007-03-20 14:23:26 +0100457 if ((td->o.stonewall || td->o.numjobs > 1 || td->o.new_group)
458 && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100459 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100460 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100461 }
Jens Axboeebac4652005-12-08 15:25:21 +0100462
463 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100464 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100465
Jens Axboe9c60ce62007-03-15 09:14:47 +0100466 if (init_random_state(td))
467 goto err;
468
Jens Axboeebac4652005-12-08 15:25:21 +0100469 if (setup_rate(td))
470 goto err;
471
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100472 if (td->o.write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100473 setup_log(&td->ts.slat_log);
474 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100475 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100476 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100477 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100478
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100479 if (!td->o.name)
480 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200481
Jens Axboec6ae0a52006-06-12 11:04:44 +0200482 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200483 if (!job_add_num) {
Jens Axboeba0fbe12007-03-09 14:34:23 +0100484 if (!strcmp(td->io_ops->name, "cpuio"))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100485 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 +0100486 else {
487 char *c1, *c2, *c3, *c4;
488
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100489 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
490 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
491 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
492 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100493
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100494 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 +0100495
496 free(c1);
497 free(c2);
498 free(c3);
499 free(c4);
500 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200501 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100502 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200503 }
Jens Axboeebac4652005-12-08 15:25:21 +0100504
505 /*
506 * recurse add identical jobs, clear numjobs and stonewall options
507 * as they don't apply to sub-jobs
508 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100509 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100510 while (--numjobs) {
511 struct thread_data *td_new = get_new_job(0, td);
512
513 if (!td_new)
514 goto err;
515
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100516 td_new->o.numjobs = 1;
517 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200518 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100519
520 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100521 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100522 td_new->files_index = 0;
523 td_new->files = NULL;
524 }
525
Jens Axboe75154842006-06-01 13:56:09 +0200526 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100527
Jens Axboe75154842006-06-01 13:56:09 +0200528 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100529 goto err;
530 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100531
Jens Axboeebac4652005-12-08 15:25:21 +0100532 return 0;
533err:
534 put_job(td);
535 return -1;
536}
537
Jens Axboeebac4652005-12-08 15:25:21 +0100538static int is_empty_or_comment(char *line)
539{
540 unsigned int i;
541
542 for (i = 0; i < strlen(line); i++) {
543 if (line[i] == ';')
544 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100545 if (line[i] == '#')
546 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100547 if (!isspace(line[i]) && !iscntrl(line[i]))
548 return 0;
549 }
550
551 return 1;
552}
553
Jens Axboe313cb202006-12-21 09:50:00 +0100554/*
Jens Axboe07261982006-06-07 10:51:12 +0200555 * This is our [ini] type file parser.
556 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100557static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100558{
Jens Axboee1f36502006-10-27 10:54:08 +0200559 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100560 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100561 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100562 fpos_t off;
563 FILE *f;
564 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200565 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200566 int first_sect = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100567
568 f = fopen(file, "r");
569 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200570 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100571 return 1;
572 }
573
574 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200575
576 /*
577 * it's really 256 + small bit, 280 should suffice
578 */
579 name = malloc(280);
580 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100581
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200582 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100583 do {
584 p = fgets(string, 4095, f);
585 if (!p)
Jens Axboe45410ac2006-06-07 11:10:39 +0200586 break;
gurudas paicdc7f192007-03-29 10:10:56 +0200587
588 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800589 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200590
Jens Axboeebac4652005-12-08 15:25:21 +0100591 if (is_empty_or_comment(p))
592 continue;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800593 if (sscanf(p, "[%255s]", name) != 1) {
Jens Axboe088b4202007-07-19 14:53:01 +0200594 log_err("fio: option <%s> outside of [] job section\n", p);
595 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800596 }
Jens Axboeebac4652005-12-08 15:25:21 +0100597
598 global = !strncmp(name, "global", 6);
599
600 name[strlen(name) - 1] = '\0';
601
Jens Axboecca73aa2007-04-04 11:09:19 +0200602 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200603 if (first_sect)
604 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200605 if (!global)
606 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200607 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200608 }
609
Jens Axboeebac4652005-12-08 15:25:21 +0100610 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200611 if (!td) {
612 ret = 1;
613 break;
614 }
Jens Axboeebac4652005-12-08 15:25:21 +0100615
Jens Axboe972cfd22006-06-09 11:08:56 +0200616 /*
617 * Seperate multiple job files by a stonewall
618 */
Jens Axboef9481912006-06-09 11:37:28 +0200619 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100620 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200621 stonewall = 0;
622 }
623
Jens Axboeebac4652005-12-08 15:25:21 +0100624 fgetpos(f, &off);
625 while ((p = fgets(string, 4096, f)) != NULL) {
626 if (is_empty_or_comment(p))
627 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200628
Jens Axboeb6754f92006-05-30 14:29:32 +0200629 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100630
631 if (p[0] == '[')
632 break;
633
Jens Axboe4ae3f762006-05-30 13:35:14 +0200634 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200635
Jens Axboee1f36502006-10-27 10:54:08 +0200636 fgetpos(f, &off);
Jens Axboeebac4652005-12-08 15:25:21 +0100637
Jens Axboe45410ac2006-06-07 11:10:39 +0200638 /*
639 * Don't break here, continue parsing options so we
640 * dump all the bad ones. Makes trial/error fixups
641 * easier on the user.
642 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100643 ret |= fio_option_parse(td, p);
Jens Axboecca73aa2007-04-04 11:09:19 +0200644 if (!ret && dump_cmdline)
645 log_info("--%s ", p);
Jens Axboeebac4652005-12-08 15:25:21 +0100646 }
Jens Axboeebac4652005-12-08 15:25:21 +0100647
Jens Axboe45410ac2006-06-07 11:10:39 +0200648 if (!ret) {
649 fsetpos(f, &off);
650 ret = add_job(td, name, 0);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100651 } else {
652 log_err("fio: job %s dropped\n", name);
653 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200654 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100655 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100656
Jens Axboecca73aa2007-04-04 11:09:19 +0200657 if (dump_cmdline)
658 log_info("\n");
659
Jens Axboeebac4652005-12-08 15:25:21 +0100660 free(string);
661 free(name);
662 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200663 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100664}
665
666static int fill_def_thread(void)
667{
668 memset(&def_thread, 0, sizeof(def_thread));
669
Jens Axboe375b2692007-05-22 09:13:02 +0200670 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100671
672 /*
Jens Axboeee738492007-01-10 11:23:16 +0100673 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100674 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100675 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100676
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100677 def_thread.o.timeout = def_timeout;
678 def_thread.o.write_bw_log = write_bw_log;
679 def_thread.o.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +0100680
Jens Axboeebac4652005-12-08 15:25:21 +0100681 return 0;
682}
683
Jens Axboeebac4652005-12-08 15:25:21 +0100684static void free_shm(void)
685{
686 struct shmid_ds sbuf;
687
688 if (threads) {
Jens Axboe2c0ecd22006-06-08 13:25:41 +0200689 shmdt((void *) threads);
Jens Axboeebac4652005-12-08 15:25:21 +0100690 threads = NULL;
691 shmctl(shm_id, IPC_RMID, &sbuf);
692 }
693}
694
Jens Axboe906c8d72006-06-13 09:37:56 +0200695/*
696 * The thread area is shared between the main process and the job
697 * threads/processes. So setup a shared memory segment that will hold
698 * all the job info.
699 */
Jens Axboeebac4652005-12-08 15:25:21 +0100700static int setup_thread_area(void)
701{
702 /*
703 * 1024 is too much on some machines, scale max_jobs if
704 * we get a failure that looks like too large a shm segment
705 */
706 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200707 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100708
Jens Axboe906c8d72006-06-13 09:37:56 +0200709 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100710 if (shm_id != -1)
711 break;
712 if (errno != EINVAL) {
713 perror("shmget");
714 break;
715 }
716
717 max_jobs >>= 1;
718 } while (max_jobs);
719
720 if (shm_id == -1)
721 return 1;
722
723 threads = shmat(shm_id, NULL, 0);
724 if (threads == (void *) -1) {
725 perror("shmat");
726 return 1;
727 }
728
729 atexit(free_shm);
730 return 0;
731}
732
Jens Axboe214e1ec2007-03-15 10:48:13 +0100733static void usage(void)
Jens Axboeb4692822006-10-27 13:43:22 +0200734{
Jens Axboe214e1ec2007-03-15 10:48:13 +0100735 printf("%s\n", fio_version_string);
736 printf("\t--output\tWrite output to file\n");
737 printf("\t--timeout\tRuntime in seconds\n");
738 printf("\t--latency-log\tGenerate per-job latency logs\n");
739 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
740 printf("\t--minimal\tMinimal (terse) output\n");
741 printf("\t--version\tPrint version info and exit\n");
742 printf("\t--help\t\tPrint this page\n");
743 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +0200744 printf("\t--showcmd\tTurn a job file into command line options\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200745}
746
Jens Axboe214e1ec2007-03-15 10:48:13 +0100747static int parse_cmd_line(int argc, char *argv[])
748{
749 struct thread_data *td = NULL;
750 int c, ini_idx = 0, lidx, ret, dont_add_job = 0;
751
752 while ((c = getopt_long_only(argc, argv, "", long_options, &lidx)) != -1) {
753 switch (c) {
754 case 't':
755 def_timeout = atoi(optarg);
756 break;
757 case 'l':
758 write_lat_log = 1;
759 break;
760 case 'w':
761 write_bw_log = 1;
762 break;
763 case 'o':
764 f_out = fopen(optarg, "w+");
765 if (!f_out) {
766 perror("fopen output");
767 exit(1);
768 }
769 f_err = f_out;
770 break;
771 case 'm':
772 terse_output = 1;
773 break;
774 case 'h':
775 usage();
776 exit(0);
777 case 'c':
778 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +0200779 case 's':
780 dump_cmdline = 1;
781 break;
Jens Axboe724e4432007-09-11 20:02:05 +0200782 case 'r':
783 read_only = 1;
784 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100785 case 'v':
786 printf("%s\n", fio_version_string);
787 exit(0);
788 case FIO_GETOPT_JOB: {
789 const char *opt = long_options[lidx].name;
790 char *val = optarg;
791
792 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100793 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100794 if (ret) {
795 put_job(td);
796 return 0;
797 }
798 td = NULL;
799 }
800 if (!td) {
Jens Axboe3106f222007-04-19 09:53:28 +0200801 int global = 0;
802
803 if (strncmp(opt, "name", 4) ||
804 !strncmp(val, "global", 6))
805 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100806
807 td = get_new_job(global, &def_thread);
808 if (!td)
809 return 0;
810 }
811
812 ret = fio_cmd_option_parse(td, opt, val);
813 if (ret)
814 dont_add_job = 1;
815 break;
816 }
817 default:
818 break;
819 }
820 }
821
822 if (td) {
823 if (dont_add_job)
824 put_job(td);
825 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100826 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100827 if (ret)
828 put_job(td);
829 }
830 }
831
832 while (optind < argc) {
833 ini_idx++;
834 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
835 ini_file[ini_idx - 1] = strdup(argv[optind]);
836 optind++;
837 }
838
839 return ini_idx;
840}
841
842
Jens Axboeebac4652005-12-08 15:25:21 +0100843int parse_options(int argc, char *argv[])
844{
Jens Axboe972cfd22006-06-09 11:08:56 +0200845 int job_files, i;
846
Jens Axboeb4692822006-10-27 13:43:22 +0200847 f_out = stdout;
848 f_err = stderr;
849
Jens Axboe214e1ec2007-03-15 10:48:13 +0100850 fio_options_dup_and_init(long_options);
Jens Axboeb4692822006-10-27 13:43:22 +0200851
Jens Axboeebac4652005-12-08 15:25:21 +0100852 if (setup_thread_area())
853 return 1;
854 if (fill_def_thread())
855 return 1;
856
Jens Axboe972cfd22006-06-09 11:08:56 +0200857 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +0100858
Jens Axboe972cfd22006-06-09 11:08:56 +0200859 for (i = 0; i < job_files; i++) {
860 if (fill_def_thread())
861 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200862 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +0200863 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +0200864 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +0200865 }
Jens Axboeebac4652005-12-08 15:25:21 +0100866
Jens Axboe88c6ed82006-06-09 11:28:10 +0200867 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +0100868 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +0200869
870 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +0200871 if (dump_cmdline)
872 return 0;
873
Jens Axboeb4692822006-10-27 13:43:22 +0200874 log_err("No jobs defined(s)\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200875 return 1;
876 }
877
Jens Axboeebac4652005-12-08 15:25:21 +0100878 return 0;
879}