blob: c56a3c0bb50a095588f0d09696f8e5d8e02a1005 [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 Axboe64d04e42007-10-30 15:45:12 +010020static char fio_version_string[] = "fio 1.17.2";
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;
Aaron Carrolle592a062007-09-14 09:49:41 +020033int eta_print;
Jens Axboe214e1ec2007-03-15 10:48:13 +010034unsigned long long mlock_size = 0;
35FILE *f_out = NULL;
36FILE *f_err = NULL;
Jens Axboeee738492007-01-10 11:23:16 +010037
Jens Axboe214e1ec2007-03-15 10:48:13 +010038int write_bw_log = 0;
Jens Axboe4241ea82007-09-12 08:18:36 +020039int read_only = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020040
Jens Axboe214e1ec2007-03-15 10:48:13 +010041static int def_timeout = 0;
42static int write_lat_log = 0;
43
44static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020045
46/*
47 * Command line options. These will contain the above, plus a few
48 * extra that only pertain to fio itself and not jobs.
49 */
Jens Axboe214e1ec2007-03-15 10:48:13 +010050static struct option long_options[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020051 {
52 .name = "output",
53 .has_arg = required_argument,
54 .val = 'o',
55 },
56 {
57 .name = "timeout",
58 .has_arg = required_argument,
59 .val = 't',
60 },
61 {
62 .name = "latency-log",
63 .has_arg = required_argument,
64 .val = 'l',
65 },
66 {
67 .name = "bandwidth-log",
68 .has_arg = required_argument,
69 .val = 'b',
70 },
71 {
72 .name = "minimal",
73 .has_arg = optional_argument,
74 .val = 'm',
75 },
76 {
77 .name = "version",
78 .has_arg = no_argument,
79 .val = 'v',
80 },
81 {
Jens Axboefd28ca42007-01-09 21:20:13 +010082 .name = "help",
83 .has_arg = no_argument,
84 .val = 'h',
85 },
86 {
87 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +010088 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +010089 .val = 'c',
90 },
91 {
Jens Axboecca73aa2007-04-04 11:09:19 +020092 .name = "showcmd",
93 .has_arg = no_argument,
Jens Axboe724e4432007-09-11 20:02:05 +020094 .val = 's',
95 },
96 {
97 .name = "readonly",
98 .has_arg = no_argument,
99 .val = 'r',
Jens Axboecca73aa2007-04-04 11:09:19 +0200100 },
101 {
Aaron Carrolle592a062007-09-14 09:49:41 +0200102 .name = "eta",
103 .has_arg = required_argument,
104 .val = 'e',
105 },
106 {
Jens Axboeb4692822006-10-27 13:43:22 +0200107 .name = NULL,
108 },
109};
110
Joel Becker9728ce32007-03-01 08:24:39 +0100111FILE *get_f_out()
112{
113 return f_out;
114}
115
116FILE *get_f_err()
117{
118 return f_err;
119}
120
Jens Axboe906c8d72006-06-13 09:37:56 +0200121/*
122 * Return a free job structure.
123 */
Jens Axboeebac4652005-12-08 15:25:21 +0100124static struct thread_data *get_new_job(int global, struct thread_data *parent)
125{
126 struct thread_data *td;
127
128 if (global)
129 return &def_thread;
130 if (thread_number >= max_jobs)
131 return NULL;
132
133 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200134 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100135
Jens Axboecade3ef2007-03-23 15:29:45 +0100136 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100137 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100138
Jens Axboeebac4652005-12-08 15:25:21 +0100139 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100140 return td;
141}
142
143static void put_job(struct thread_data *td)
144{
Jens Axboe549577a2006-10-30 12:23:41 +0100145 if (td == &def_thread)
146 return;
147
Jens Axboe16edf252007-02-10 14:59:22 +0100148 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100149 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100150
Jens Axboeebac4652005-12-08 15:25:21 +0100151 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
152 thread_number--;
153}
154
Jens Axboe127f6862007-03-15 12:09:57 +0100155static int setup_rate(struct thread_data *td)
156{
157 unsigned long nr_reads_per_msec;
158 unsigned long long rate;
159 unsigned int bs;
160
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100161 if (!td->o.rate && !td->o.rate_iops)
Jens Axboe127f6862007-03-15 12:09:57 +0100162 return 0;
163
164 if (td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100165 bs = td->o.rw_min_bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100166 else if (td_read(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100167 bs = td->o.min_bs[DDIR_READ];
Jens Axboe127f6862007-03-15 12:09:57 +0100168 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100169 bs = td->o.min_bs[DDIR_WRITE];
Jens Axboe127f6862007-03-15 12:09:57 +0100170
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100171 if (td->o.rate) {
172 rate = td->o.rate;
Jens Axboe127f6862007-03-15 12:09:57 +0100173 nr_reads_per_msec = (rate * 1024 * 1000LL) / bs;
174 } else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100175 nr_reads_per_msec = td->o.rate_iops * 1000UL;
Jens Axboe127f6862007-03-15 12:09:57 +0100176
177 if (!nr_reads_per_msec) {
178 log_err("rate lower than supported\n");
179 return -1;
180 }
181
182 td->rate_usec_cycle = 1000000000ULL / nr_reads_per_msec;
183 td->rate_pending_usleep = 0;
184 return 0;
185}
186
Jens Axboedad915e2006-10-27 11:10:18 +0200187/*
188 * Lazy way of fixing up options that depend on each other. We could also
189 * define option callback handlers, but this is easier.
190 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100191static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200192{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100193 struct thread_options *o = &td->o;
Jens Axboedad915e2006-10-27 11:10:18 +0200194
Jens Axboe724e4432007-09-11 20:02:05 +0200195 if (read_only && td_write(td)) {
196 log_err("fio: job <%s> has write bit set, but fio is in read-only mode\n", td->o.name);
197 return 1;
198 }
199
Jens Axboee47f7992007-03-21 14:05:39 +0100200 if (o->rwmix[DDIR_READ] + o->rwmix[DDIR_WRITE] > 100)
201 o->rwmix[DDIR_WRITE] = 100 - o->rwmix[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100202
203 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200204 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100205 free(o->write_iolog_file);
206 o->write_iolog_file = NULL;
Jens Axboe076efc72006-10-27 11:24:25 +0200207 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100208
209 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100210 o->iodepth = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100211 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100212 if (!o->iodepth)
213 o->iodepth = o->open_files;
Jens Axboe16b462a2006-10-30 12:35:18 +0100214 }
215
216 /*
217 * only really works for sequential io for now, and with 1 file
218 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100219 if (o->zone_size && td_random(td) && o->open_files == 1)
220 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100221
222 /*
223 * Reads can do overwrites, we always need to pre-create the file
224 */
225 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100226 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100227
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100228 if (!o->min_bs[DDIR_READ])
229 o->min_bs[DDIR_READ]= o->bs[DDIR_READ];
230 if (!o->max_bs[DDIR_READ])
231 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
232 if (!o->min_bs[DDIR_WRITE])
233 o->min_bs[DDIR_WRITE]= o->bs[DDIR_WRITE];
234 if (!o->max_bs[DDIR_WRITE])
235 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100236
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100237 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100238
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100239 if (!o->file_size_high)
240 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100241
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100242 if (o->norandommap && o->verify != VERIFY_NONE) {
Jens Axboebb8895e2006-10-30 15:14:48 +0100243 log_err("fio: norandommap given, verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100244 o->verify = VERIFY_NONE;
Jens Axboebb8895e2006-10-30 15:14:48 +0100245 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100246 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100247 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100248
249 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100250 * thinktime_spin must be less than thinktime
251 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100252 if (o->thinktime_spin > o->thinktime)
253 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100254
255 /*
256 * The low water mark cannot be bigger than the iodepth
257 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100258 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100259 /*
260 * syslet work around - if the workload is sequential,
261 * we want to let the queue drain all the way down to
262 * avoid seeking between async threads
263 */
264 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100265 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100266 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100267 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100268 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100269
270 /*
271 * If batch number isn't set, default to the same as iodepth
272 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100273 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
274 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100275
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100276 if (o->nr_files > td->files_index)
277 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100278
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100279 if (o->open_files > o->nr_files || !o->open_files)
280 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100281
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100282 if ((o->rate && o->rate_iops) || (o->ratemin && o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100283 log_err("fio: rate and rate_iops are mutually exclusive\n");
284 return 1;
285 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100286 if ((o->rate < o->ratemin) || (o->rate_iops < o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100287 log_err("fio: minimum rate exceeds rate\n");
288 return 1;
289 }
290
Jens Axboecf4464c2007-04-17 20:14:42 +0200291 if (!o->timeout && o->time_based) {
292 log_err("fio: time_based requires a runtime/timeout setting\n");
293 o->time_based = 0;
294 }
295
Jens Axboe4e991c22007-03-15 11:41:11 +0100296 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200297}
298
Jens Axboe906c8d72006-06-13 09:37:56 +0200299/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100300 * This function leaks the buffer
301 */
302static char *to_kmg(unsigned int val)
303{
304 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100305 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100306 char *p = post;
307
Jens Axboe245142f2006-11-08 12:49:21 +0100308 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100309 if (val & 1023)
310 break;
311
312 val >>= 10;
313 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100314 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100315
316 snprintf(buf, 31, "%u%c", val, *p);
317 return buf;
318}
319
Jens Axboe09629a92007-03-09 09:00:06 +0100320/* External engines are specified by "external:name.o") */
321static const char *get_engine_name(const char *str)
322{
323 char *p = strstr(str, ":");
324
325 if (!p)
326 return str;
327
328 p++;
329 strip_blank_front(&p);
330 strip_blank_end(p);
331 return p;
332}
333
Jens Axboee132cba2007-03-14 14:23:54 +0100334static int exists_and_not_file(const char *filename)
335{
336 struct stat sb;
337
338 if (lstat(filename, &sb) == -1)
339 return 0;
340
341 if (S_ISREG(sb.st_mode))
342 return 0;
343
344 return 1;
345}
346
Jens Axboef8977ee2006-11-06 14:03:03 +0100347/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100348 * Initialize the various random states we need (random io, block size ranges,
349 * read/write mix, etc).
350 */
351static int init_random_state(struct thread_data *td)
352{
353 unsigned long seeds[6];
Jens Axboe68727072007-03-15 20:49:25 +0100354 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100355
356 fd = open("/dev/urandom", O_RDONLY);
357 if (fd == -1) {
358 td_verror(td, errno, "open");
359 return 1;
360 }
361
362 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
363 td_verror(td, EIO, "read");
364 close(fd);
365 return 1;
366 }
367
368 close(fd);
369
370 os_random_seed(seeds[0], &td->bsrange_state);
371 os_random_seed(seeds[1], &td->verify_state);
372 os_random_seed(seeds[2], &td->rwmix_state);
373
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100374 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100375 os_random_seed(seeds[3], &td->next_file_state);
376
377 os_random_seed(seeds[5], &td->file_size_state);
378
379 if (!td_random(td))
380 return 0;
381
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100382 if (td->o.rand_repeatable)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100383 seeds[4] = FIO_RANDSEED * td->thread_number;
384
Jens Axboe9c60ce62007-03-15 09:14:47 +0100385 os_random_seed(seeds[4], &td->random_state);
386 return 0;
387}
388
Jens Axboe9c60ce62007-03-15 09:14:47 +0100389/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200390 * Adds a job to the list of things todo. Sanitizes the various options
391 * to make sure we don't have conflicts, and initializes various
392 * members of td.
393 */
Jens Axboe75154842006-06-01 13:56:09 +0200394static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100395{
Jens Axboe413dd452007-02-23 09:26:09 +0100396 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
397 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100398 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100399 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100400 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100401 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100402
Jens Axboeebac4652005-12-08 15:25:21 +0100403 /*
404 * the def_thread is just for options, it's not a real job
405 */
406 if (td == &def_thread)
407 return 0;
408
Jens Axboecca73aa2007-04-04 11:09:19 +0200409 /*
410 * if we are just dumping the output command line, don't add the job
411 */
412 if (dump_cmdline) {
413 put_job(td);
414 return 0;
415 }
416
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100417 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100418 td->io_ops = load_ioengine(td, engine);
419 if (!td->io_ops) {
420 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100421 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100422 }
Jens Axboedf641192006-10-12 07:55:41 +0200423
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100424 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100425 nr_thread++;
426 else
427 nr_process++;
428
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100429 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100430 td->io_ops->flags |= FIO_RAWIO;
431
Jens Axboee132cba2007-03-14 14:23:54 +0100432 file_alloced = 0;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100433 if (!td->o.filename && !td->files_index) {
Jens Axboee132cba2007-03-14 14:23:54 +0100434 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100435
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100436 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100437 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100438 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100439 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboee132cba2007-03-14 14:23:54 +0100440 sprintf(fname, "%s.%d.%d", jobname, td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100441 add_file(td, fname);
442 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100443 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100444 }
Jens Axboeebac4652005-12-08 15:25:21 +0100445
Jens Axboe4e991c22007-03-15 11:41:11 +0100446 if (fixup_options(td))
447 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100448
Jens Axboe07eb79d2007-04-12 13:02:38 +0200449 if (td->io_ops->flags & FIO_DISKLESSIO) {
450 struct fio_file *f;
451
452 for_each_file(td, f, i)
453 f->real_file_size = -1ULL;
454 }
455
Jens Axboe07739b52007-03-08 20:25:46 +0100456 td->mutex = fio_sem_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100457
Jens Axboe756867b2007-03-06 15:19:24 +0100458 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
459 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
460 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboe1e3d53a2007-03-22 19:01:48 +0100461 td->ddir_nr = td->o.ddir_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100462
Jens Axboeb3d62a72007-03-20 14:23:26 +0100463 if ((td->o.stonewall || td->o.numjobs > 1 || td->o.new_group)
464 && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100465 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100466 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100467 }
Jens Axboeebac4652005-12-08 15:25:21 +0100468
469 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100470 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100471
Jens Axboe9c60ce62007-03-15 09:14:47 +0100472 if (init_random_state(td))
473 goto err;
474
Jens Axboeebac4652005-12-08 15:25:21 +0100475 if (setup_rate(td))
476 goto err;
477
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100478 if (td->o.write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100479 setup_log(&td->ts.slat_log);
480 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100481 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100482 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100483 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100484
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100485 if (!td->o.name)
486 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200487
Jens Axboec6ae0a52006-06-12 11:04:44 +0200488 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200489 if (!job_add_num) {
Jens Axboeba0fbe12007-03-09 14:34:23 +0100490 if (!strcmp(td->io_ops->name, "cpuio"))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100491 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 +0100492 else {
493 char *c1, *c2, *c3, *c4;
494
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100495 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
496 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
497 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
498 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100499
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100500 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 +0100501
502 free(c1);
503 free(c2);
504 free(c3);
505 free(c4);
506 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200507 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100508 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200509 }
Jens Axboeebac4652005-12-08 15:25:21 +0100510
511 /*
512 * recurse add identical jobs, clear numjobs and stonewall options
513 * as they don't apply to sub-jobs
514 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100515 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100516 while (--numjobs) {
517 struct thread_data *td_new = get_new_job(0, td);
518
519 if (!td_new)
520 goto err;
521
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100522 td_new->o.numjobs = 1;
523 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200524 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100525
526 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100527 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100528 td_new->files_index = 0;
529 td_new->files = NULL;
530 }
531
Jens Axboe75154842006-06-01 13:56:09 +0200532 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100533
Jens Axboe75154842006-06-01 13:56:09 +0200534 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100535 goto err;
536 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100537
Jens Axboeebac4652005-12-08 15:25:21 +0100538 return 0;
539err:
540 put_job(td);
541 return -1;
542}
543
Jens Axboeebac4652005-12-08 15:25:21 +0100544static int is_empty_or_comment(char *line)
545{
546 unsigned int i;
547
548 for (i = 0; i < strlen(line); i++) {
549 if (line[i] == ';')
550 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100551 if (line[i] == '#')
552 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100553 if (!isspace(line[i]) && !iscntrl(line[i]))
554 return 0;
555 }
556
557 return 1;
558}
559
Jens Axboe313cb202006-12-21 09:50:00 +0100560/*
Jens Axboe07261982006-06-07 10:51:12 +0200561 * This is our [ini] type file parser.
562 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100563static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100564{
Jens Axboee1f36502006-10-27 10:54:08 +0200565 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100566 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100567 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100568 FILE *f;
569 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200570 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200571 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +0200572 int skip_fgets = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100573
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200574 if (!strcmp(file, "-"))
575 f = stdin;
576 else
577 f = fopen(file, "r");
578
Jens Axboeebac4652005-12-08 15:25:21 +0100579 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200580 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100581 return 1;
582 }
583
584 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200585
586 /*
587 * it's really 256 + small bit, 280 should suffice
588 */
589 name = malloc(280);
590 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100591
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200592 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100593 do {
Jens Axboeccf8f122007-09-27 10:48:55 +0200594 /*
595 * if skip_fgets is set, we already have loaded a line we
596 * haven't handled.
597 */
598 if (!skip_fgets) {
599 p = fgets(string, 4095, f);
600 if (!p)
601 break;
602 }
gurudas paicdc7f192007-03-29 10:10:56 +0200603
Jens Axboeccf8f122007-09-27 10:48:55 +0200604 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +0200605 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800606 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200607
Jens Axboeebac4652005-12-08 15:25:21 +0100608 if (is_empty_or_comment(p))
609 continue;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800610 if (sscanf(p, "[%255s]", name) != 1) {
Jens Axboe088b4202007-07-19 14:53:01 +0200611 log_err("fio: option <%s> outside of [] job section\n", p);
612 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800613 }
Jens Axboeebac4652005-12-08 15:25:21 +0100614
615 global = !strncmp(name, "global", 6);
616
617 name[strlen(name) - 1] = '\0';
618
Jens Axboecca73aa2007-04-04 11:09:19 +0200619 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200620 if (first_sect)
621 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200622 if (!global)
623 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200624 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200625 }
626
Jens Axboeebac4652005-12-08 15:25:21 +0100627 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200628 if (!td) {
629 ret = 1;
630 break;
631 }
Jens Axboeebac4652005-12-08 15:25:21 +0100632
Jens Axboe972cfd22006-06-09 11:08:56 +0200633 /*
634 * Seperate multiple job files by a stonewall
635 */
Jens Axboef9481912006-06-09 11:37:28 +0200636 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100637 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200638 stonewall = 0;
639 }
640
Jens Axboeebac4652005-12-08 15:25:21 +0100641 while ((p = fgets(string, 4096, f)) != NULL) {
642 if (is_empty_or_comment(p))
643 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200644
Jens Axboeb6754f92006-05-30 14:29:32 +0200645 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100646
Jens Axboeccf8f122007-09-27 10:48:55 +0200647 /*
648 * new section, break out and make sure we don't
649 * fgets() a new line at the top.
650 */
651 if (p[0] == '[') {
652 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100653 break;
Jens Axboeccf8f122007-09-27 10:48:55 +0200654 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100655
Jens Axboe4ae3f762006-05-30 13:35:14 +0200656 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200657
Jens Axboe45410ac2006-06-07 11:10:39 +0200658 /*
659 * Don't break here, continue parsing options so we
660 * dump all the bad ones. Makes trial/error fixups
661 * easier on the user.
662 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100663 ret |= fio_option_parse(td, p);
Jens Axboecca73aa2007-04-04 11:09:19 +0200664 if (!ret && dump_cmdline)
665 log_info("--%s ", p);
Jens Axboeebac4652005-12-08 15:25:21 +0100666 }
Jens Axboeebac4652005-12-08 15:25:21 +0100667
Jens Axboeccf8f122007-09-27 10:48:55 +0200668 if (!ret)
Jens Axboe45410ac2006-06-07 11:10:39 +0200669 ret = add_job(td, name, 0);
Jens Axboeccf8f122007-09-27 10:48:55 +0200670 else {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100671 log_err("fio: job %s dropped\n", name);
672 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200673 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100674 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100675
Jens Axboecca73aa2007-04-04 11:09:19 +0200676 if (dump_cmdline)
677 log_info("\n");
678
Jens Axboeebac4652005-12-08 15:25:21 +0100679 free(string);
680 free(name);
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200681 if (f != stdin)
682 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200683 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100684}
685
686static int fill_def_thread(void)
687{
688 memset(&def_thread, 0, sizeof(def_thread));
689
Jens Axboe375b2692007-05-22 09:13:02 +0200690 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100691
692 /*
Jens Axboeee738492007-01-10 11:23:16 +0100693 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100694 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100695 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100696
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100697 def_thread.o.timeout = def_timeout;
698 def_thread.o.write_bw_log = write_bw_log;
699 def_thread.o.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +0100700
Jens Axboeebac4652005-12-08 15:25:21 +0100701 return 0;
702}
703
Jens Axboeebac4652005-12-08 15:25:21 +0100704static void free_shm(void)
705{
706 struct shmid_ds sbuf;
707
708 if (threads) {
Jens Axboe2c0ecd22006-06-08 13:25:41 +0200709 shmdt((void *) threads);
Jens Axboeebac4652005-12-08 15:25:21 +0100710 threads = NULL;
711 shmctl(shm_id, IPC_RMID, &sbuf);
712 }
713}
714
Jens Axboe906c8d72006-06-13 09:37:56 +0200715/*
716 * The thread area is shared between the main process and the job
717 * threads/processes. So setup a shared memory segment that will hold
718 * all the job info.
719 */
Jens Axboeebac4652005-12-08 15:25:21 +0100720static int setup_thread_area(void)
721{
722 /*
723 * 1024 is too much on some machines, scale max_jobs if
724 * we get a failure that looks like too large a shm segment
725 */
726 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200727 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100728
Jens Axboe906c8d72006-06-13 09:37:56 +0200729 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100730 if (shm_id != -1)
731 break;
732 if (errno != EINVAL) {
733 perror("shmget");
734 break;
735 }
736
737 max_jobs >>= 1;
738 } while (max_jobs);
739
740 if (shm_id == -1)
741 return 1;
742
743 threads = shmat(shm_id, NULL, 0);
744 if (threads == (void *) -1) {
745 perror("shmat");
746 return 1;
747 }
748
Jens Axboe1f809d12007-10-25 18:34:02 +0200749 memset(threads, 0, max_jobs * sizeof(struct thread_data));
Jens Axboeebac4652005-12-08 15:25:21 +0100750 atexit(free_shm);
751 return 0;
752}
753
Jens Axboe214e1ec2007-03-15 10:48:13 +0100754static void usage(void)
Jens Axboeb4692822006-10-27 13:43:22 +0200755{
Jens Axboe214e1ec2007-03-15 10:48:13 +0100756 printf("%s\n", fio_version_string);
757 printf("\t--output\tWrite output to file\n");
758 printf("\t--timeout\tRuntime in seconds\n");
759 printf("\t--latency-log\tGenerate per-job latency logs\n");
760 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
761 printf("\t--minimal\tMinimal (terse) output\n");
762 printf("\t--version\tPrint version info and exit\n");
763 printf("\t--help\t\tPrint this page\n");
764 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +0200765 printf("\t--showcmd\tTurn a job file into command line options\n");
Aaron Carrolle592a062007-09-14 09:49:41 +0200766 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
767 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200768}
769
Jens Axboe214e1ec2007-03-15 10:48:13 +0100770static int parse_cmd_line(int argc, char *argv[])
771{
772 struct thread_data *td = NULL;
773 int c, ini_idx = 0, lidx, ret, dont_add_job = 0;
774
775 while ((c = getopt_long_only(argc, argv, "", long_options, &lidx)) != -1) {
776 switch (c) {
777 case 't':
778 def_timeout = atoi(optarg);
779 break;
780 case 'l':
781 write_lat_log = 1;
782 break;
783 case 'w':
784 write_bw_log = 1;
785 break;
786 case 'o':
787 f_out = fopen(optarg, "w+");
788 if (!f_out) {
789 perror("fopen output");
790 exit(1);
791 }
792 f_err = f_out;
793 break;
794 case 'm':
795 terse_output = 1;
796 break;
797 case 'h':
798 usage();
799 exit(0);
800 case 'c':
801 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +0200802 case 's':
803 dump_cmdline = 1;
804 break;
Jens Axboe724e4432007-09-11 20:02:05 +0200805 case 'r':
806 read_only = 1;
807 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100808 case 'v':
809 printf("%s\n", fio_version_string);
810 exit(0);
Aaron Carrolle592a062007-09-14 09:49:41 +0200811 case 'e':
812 if (!strcmp("always", optarg))
813 eta_print = FIO_ETA_ALWAYS;
814 else if (!strcmp("never", optarg))
815 eta_print = FIO_ETA_NEVER;
816 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100817 case FIO_GETOPT_JOB: {
818 const char *opt = long_options[lidx].name;
819 char *val = optarg;
820
821 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100822 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100823 if (ret) {
824 put_job(td);
825 return 0;
826 }
827 td = NULL;
828 }
829 if (!td) {
Jens Axboe3106f222007-04-19 09:53:28 +0200830 int global = 0;
831
832 if (strncmp(opt, "name", 4) ||
833 !strncmp(val, "global", 6))
834 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100835
836 td = get_new_job(global, &def_thread);
837 if (!td)
838 return 0;
839 }
840
841 ret = fio_cmd_option_parse(td, opt, val);
842 if (ret)
843 dont_add_job = 1;
844 break;
845 }
846 default:
847 break;
848 }
849 }
850
851 if (td) {
852 if (dont_add_job)
853 put_job(td);
854 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100855 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100856 if (ret)
857 put_job(td);
858 }
859 }
860
861 while (optind < argc) {
862 ini_idx++;
863 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
864 ini_file[ini_idx - 1] = strdup(argv[optind]);
865 optind++;
866 }
867
868 return ini_idx;
869}
870
871
Jens Axboeebac4652005-12-08 15:25:21 +0100872int parse_options(int argc, char *argv[])
873{
Jens Axboe972cfd22006-06-09 11:08:56 +0200874 int job_files, i;
875
Jens Axboeb4692822006-10-27 13:43:22 +0200876 f_out = stdout;
877 f_err = stderr;
878
Jens Axboe214e1ec2007-03-15 10:48:13 +0100879 fio_options_dup_and_init(long_options);
Jens Axboeb4692822006-10-27 13:43:22 +0200880
Jens Axboeebac4652005-12-08 15:25:21 +0100881 if (setup_thread_area())
882 return 1;
883 if (fill_def_thread())
884 return 1;
885
Jens Axboe972cfd22006-06-09 11:08:56 +0200886 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +0100887
Jens Axboe972cfd22006-06-09 11:08:56 +0200888 for (i = 0; i < job_files; i++) {
889 if (fill_def_thread())
890 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200891 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +0200892 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +0200893 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +0200894 }
Jens Axboeebac4652005-12-08 15:25:21 +0100895
Jens Axboe88c6ed82006-06-09 11:28:10 +0200896 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +0100897 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +0200898
899 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +0200900 if (dump_cmdline)
901 return 0;
902
Jens Axboeb4692822006-10-27 13:43:22 +0200903 log_err("No jobs defined(s)\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200904 return 1;
905 }
906
Jens Axboeebac4652005-12-08 15:25:21 +0100907 return 0;
908}