optgroup: add check for optgroup bit numbers being within range
[fio.git] / init.c
CommitLineData
906c8d75 1/*
cb2c86fd 2 * This file contains job initialization and setup functions.
906c8d75 3 */
ebac4655
JA
4#include <stdio.h>
5#include <stdlib.h>
6#include <unistd.h>
7#include <fcntl.h>
8#include <ctype.h>
9#include <string.h>
10#include <errno.h>
11#include <sys/ipc.h>
ebac4655
JA
12#include <sys/types.h>
13#include <sys/stat.h>
3e262e2f 14#include <dlfcn.h>
4f37732a
BVA
15#ifdef CONFIG_VALGRIND_DEV
16#include <valgrind/drd.h>
17#else
18#define DRD_IGNORE_VAR(x) do { } while (0)
19#endif
ebac4655
JA
20
21#include "fio.h"
a5e0ee11
O
22#ifndef FIO_NO_HAVE_SHM_H
23#include <sys/shm.h>
24#endif
25
cb2c86fd 26#include "parse.h"
2e5cdb11 27#include "smalloc.h"
380065aa 28#include "filehash.h"
4f5af7b2 29#include "verify.h"
79d16311 30#include "profile.h"
50d16976 31#include "server.h"
f2a2ce0e 32#include "idletime.h"
243bfe19 33#include "filelock.h"
16e56d25 34#include "steadystate.h"
ebac4655 35
f87cc561 36#include "oslib/getopt.h"
984f30c9 37#include "oslib/strcasestr.h"
bf2e821a 38
10aa136b 39#include "crc/test.h"
d694a6a7 40#include "lib/pow2.h"
b76d85a4 41#include "lib/memcpy.h"
10aa136b 42
3d43382c 43const char fio_version_string[] = FIO_VERSION;
214e1eca 44
ee738499 45#define FIO_RANDSEED (0xb1899bedUL)
ebac4655 46
214e1eca 47static char **ini_file;
fca70358 48static int max_jobs = FIO_MAX_JOBS;
cca73aa7 49static int dump_cmdline;
111e032d 50static int parse_only;
e1f36503 51
be4ecfdf 52static struct thread_data def_thread;
214e1eca 53struct thread_data *threads = NULL;
10aa136b
JA
54static char **job_sections;
55static int nr_job_sections;
e1f36503 56
214e1eca 57int exitall_on_terminate = 0;
f3afa57e 58int output_format = FIO_OUTPUT_NORMAL;
5be4c944 59int eta_print = FIO_ETA_AUTO;
db37d890 60unsigned int eta_interval_msec = 1000;
e382e661 61int eta_new_line = 0;
214e1eca
JA
62FILE *f_out = NULL;
63FILE *f_err = NULL;
07b3232d 64char *exec_profile = NULL;
a9523c6f 65int warnings_fatal = 0;
4d658652 66int terse_version = 3;
50d16976 67int is_backend = 0;
a37f69b7 68int nr_clients = 0;
e46d8091 69int log_syslog = 0;
ee738499 70
214e1eca 71int write_bw_log = 0;
4241ea8f 72int read_only = 0;
06464907 73int status_interval = 0;
214e1eca 74
ca09be4b 75char *trigger_file = NULL;
ca09be4b 76long long trigger_timeout = 0;
b63efd30
JA
77char *trigger_cmd = NULL;
78char *trigger_remote_cmd = NULL;
ca09be4b 79
d264264a
JA
80char *aux_path = NULL;
81
214e1eca 82static int prev_group_jobs;
b4692828 83
ee56ad50 84unsigned long fio_debug = 0;
5e1d306e
JA
85unsigned int fio_debug_jobno = -1;
86unsigned int *fio_debug_jobp = NULL;
5ec3bc54 87unsigned int *fio_warned = NULL;
ee56ad50 88
4c6107ff 89static char cmd_optstr[256];
1201b24a 90static bool did_arg;
4c6107ff 91
7a4b8240
JA
92#define FIO_CLIENT_FLAG (1 << 16)
93
b4692828
JA
94/*
95 * Command line options. These will contain the above, plus a few
96 * extra that only pertain to fio itself and not jobs.
97 */
5ec10eaa 98static struct option l_opts[FIO_NR_OPTIONS] = {
b4692828 99 {
08d2a19c 100 .name = (char *) "output",
b4692828 101 .has_arg = required_argument,
7a4b8240 102 .val = 'o' | FIO_CLIENT_FLAG,
b4692828 103 },
b4692828 104 {
08d2a19c 105 .name = (char *) "latency-log",
b4692828 106 .has_arg = required_argument,
7a4b8240 107 .val = 'l' | FIO_CLIENT_FLAG,
b4692828
JA
108 },
109 {
08d2a19c 110 .name = (char *) "bandwidth-log",
2fd6fad5 111 .has_arg = no_argument,
7a4b8240 112 .val = 'b' | FIO_CLIENT_FLAG,
b4692828
JA
113 },
114 {
08d2a19c 115 .name = (char *) "minimal",
c4ec0a1d 116 .has_arg = no_argument,
7a4b8240 117 .val = 'm' | FIO_CLIENT_FLAG,
b4692828 118 },
cc372b17 119 {
f3afa57e 120 .name = (char *) "output-format",
d2c87a78 121 .has_arg = required_argument,
f3afa57e 122 .val = 'F' | FIO_CLIENT_FLAG,
cc372b17 123 },
f6a7df53
JA
124 {
125 .name = (char *) "append-terse",
126 .has_arg = optional_argument,
127 .val = 'f',
128 },
b4692828 129 {
08d2a19c 130 .name = (char *) "version",
b4692828 131 .has_arg = no_argument,
7a4b8240 132 .val = 'v' | FIO_CLIENT_FLAG,
b4692828 133 },
fd28ca49 134 {
08d2a19c 135 .name = (char *) "help",
fd28ca49 136 .has_arg = no_argument,
7a4b8240 137 .val = 'h' | FIO_CLIENT_FLAG,
fd28ca49
JA
138 },
139 {
08d2a19c 140 .name = (char *) "cmdhelp",
320beefe 141 .has_arg = optional_argument,
7a4b8240 142 .val = 'c' | FIO_CLIENT_FLAG,
fd28ca49 143 },
de890a1e 144 {
06464907 145 .name = (char *) "enghelp",
de890a1e 146 .has_arg = optional_argument,
06464907 147 .val = 'i' | FIO_CLIENT_FLAG,
de890a1e 148 },
cca73aa7 149 {
08d2a19c 150 .name = (char *) "showcmd",
cca73aa7 151 .has_arg = no_argument,
7a4b8240 152 .val = 's' | FIO_CLIENT_FLAG,
724e4435
JA
153 },
154 {
08d2a19c 155 .name = (char *) "readonly",
724e4435 156 .has_arg = no_argument,
7a4b8240 157 .val = 'r' | FIO_CLIENT_FLAG,
cca73aa7 158 },
e592a06b 159 {
08d2a19c 160 .name = (char *) "eta",
e592a06b 161 .has_arg = required_argument,
7a4b8240 162 .val = 'e' | FIO_CLIENT_FLAG,
e592a06b 163 },
db37d890
JA
164 {
165 .name = (char *) "eta-interval",
166 .has_arg = required_argument,
167 .val = 'O' | FIO_CLIENT_FLAG,
168 },
e382e661
JA
169 {
170 .name = (char *) "eta-newline",
171 .has_arg = required_argument,
172 .val = 'E' | FIO_CLIENT_FLAG,
173 },
ee56ad50 174 {
08d2a19c 175 .name = (char *) "debug",
ee56ad50 176 .has_arg = required_argument,
7a4b8240 177 .val = 'd' | FIO_CLIENT_FLAG,
ee56ad50 178 },
111e032d
JA
179 {
180 .name = (char *) "parse-only",
181 .has_arg = no_argument,
182 .val = 'P' | FIO_CLIENT_FLAG,
183 },
01f06b63 184 {
08d2a19c 185 .name = (char *) "section",
01f06b63 186 .has_arg = required_argument,
7a4b8240 187 .val = 'x' | FIO_CLIENT_FLAG,
01f06b63 188 },
b26317c9
JA
189#ifdef CONFIG_ZLIB
190 {
191 .name = (char *) "inflate-log",
192 .has_arg = required_argument,
193 .val = 'X' | FIO_CLIENT_FLAG,
194 },
195#endif
2b386d25 196 {
08d2a19c 197 .name = (char *) "alloc-size",
2b386d25 198 .has_arg = required_argument,
7a4b8240 199 .val = 'a' | FIO_CLIENT_FLAG,
2b386d25 200 },
9ac8a797 201 {
08d2a19c 202 .name = (char *) "profile",
9ac8a797 203 .has_arg = required_argument,
7a4b8240 204 .val = 'p' | FIO_CLIENT_FLAG,
9ac8a797 205 },
a9523c6f 206 {
08d2a19c 207 .name = (char *) "warnings-fatal",
a9523c6f 208 .has_arg = no_argument,
7a4b8240 209 .val = 'w' | FIO_CLIENT_FLAG,
a9523c6f 210 },
fca70358
JA
211 {
212 .name = (char *) "max-jobs",
213 .has_arg = required_argument,
7a4b8240 214 .val = 'j' | FIO_CLIENT_FLAG,
fca70358 215 },
f57a9c59
JA
216 {
217 .name = (char *) "terse-version",
218 .has_arg = required_argument,
7a4b8240 219 .val = 'V' | FIO_CLIENT_FLAG,
f57a9c59 220 },
50d16976
JA
221 {
222 .name = (char *) "server",
87aa8f19 223 .has_arg = optional_argument,
50d16976
JA
224 .val = 'S',
225 },
e46d8091 226 { .name = (char *) "daemonize",
402668f3 227 .has_arg = required_argument,
e46d8091
JA
228 .val = 'D',
229 },
132159a5
JA
230 {
231 .name = (char *) "client",
232 .has_arg = required_argument,
233 .val = 'C',
234 },
323255cc
JA
235 {
236 .name = (char *) "remote-config",
237 .has_arg = required_argument,
238 .val = 'R',
239 },
7d11f871
JA
240 {
241 .name = (char *) "cpuclock-test",
242 .has_arg = no_argument,
243 .val = 'T',
244 },
fec0f21c
JA
245 {
246 .name = (char *) "crctest",
247 .has_arg = optional_argument,
248 .val = 'G',
249 },
b76d85a4
JA
250 {
251 .name = (char *) "memcpytest",
252 .has_arg = optional_argument,
253 .val = 'M',
254 },
f2a2ce0e
HL
255 {
256 .name = (char *) "idle-prof",
257 .has_arg = required_argument,
258 .val = 'I',
259 },
06464907
JA
260 {
261 .name = (char *) "status-interval",
262 .has_arg = required_argument,
263 .val = 'L',
264 },
ca09be4b 265 {
b63efd30 266 .name = (char *) "trigger-file",
ca09be4b
JA
267 .has_arg = required_argument,
268 .val = 'W',
269 },
270 {
271 .name = (char *) "trigger-timeout",
272 .has_arg = required_argument,
273 .val = 'B',
274 },
b63efd30
JA
275 {
276 .name = (char *) "trigger",
277 .has_arg = required_argument,
278 .val = 'H',
279 },
280 {
281 .name = (char *) "trigger-remote",
282 .has_arg = required_argument,
283 .val = 'J',
284 },
d264264a
JA
285 {
286 .name = (char *) "aux-path",
287 .has_arg = required_argument,
288 .val = 'K',
289 },
b4692828
JA
290 {
291 .name = NULL,
292 },
293};
294
2bb3f0a7 295void free_threads_shm(void)
9d9eb2e7 296{
9d9eb2e7
JA
297 if (threads) {
298 void *tp = threads;
c8931876
JA
299#ifndef CONFIG_NO_SHM
300 struct shmid_ds sbuf;
9d9eb2e7
JA
301
302 threads = NULL;
2bb3f0a7
JA
303 shmdt(tp);
304 shmctl(shm_id, IPC_RMID, &sbuf);
305 shm_id = -1;
c8931876
JA
306#else
307 threads = NULL;
308 free(tp);
309#endif
2bb3f0a7
JA
310 }
311}
312
10aa136b 313static void free_shm(void)
2bb3f0a7
JA
314{
315 if (threads) {
9e684a49 316 flow_exit();
9d9eb2e7 317 fio_debug_jobp = NULL;
5ec3bc54 318 fio_warned = NULL;
2bb3f0a7 319 free_threads_shm();
9d9eb2e7
JA
320 }
321
b63efd30
JA
322 free(trigger_file);
323 free(trigger_cmd);
324 free(trigger_remote_cmd);
325 trigger_file = trigger_cmd = trigger_remote_cmd = NULL;
326
5e333ada 327 options_free(fio_options, &def_thread.o);
243bfe19 328 fio_filelock_exit();
d619275c 329 file_hash_exit();
9d9eb2e7
JA
330 scleanup();
331}
332
333/*
334 * The thread area is shared between the main process and the job
335 * threads/processes. So setup a shared memory segment that will hold
336 * all the job info. We use the end of the region for keeping track of
337 * open files across jobs, for file sharing.
338 */
339static int setup_thread_area(void)
340{
4f37732a
BVA
341 int i;
342
9d9eb2e7
JA
343 if (threads)
344 return 0;
345
346 /*
347 * 1024 is too much on some machines, scale max_jobs if
348 * we get a failure that looks like too large a shm segment
349 */
350 do {
351 size_t size = max_jobs * sizeof(struct thread_data);
352
5ec3bc54 353 size += 2 * sizeof(unsigned int);
9d9eb2e7 354
c8931876 355#ifndef CONFIG_NO_SHM
9d9eb2e7
JA
356 shm_id = shmget(0, size, IPC_CREAT | 0600);
357 if (shm_id != -1)
358 break;
f0c77f03 359 if (errno != EINVAL && errno != ENOMEM && errno != ENOSPC) {
9d9eb2e7
JA
360 perror("shmget");
361 break;
362 }
c8931876
JA
363#else
364 threads = malloc(size);
365 if (threads)
366 break;
367#endif
9d9eb2e7
JA
368
369 max_jobs >>= 1;
370 } while (max_jobs);
371
c8931876 372#ifndef CONFIG_NO_SHM
9d9eb2e7
JA
373 if (shm_id == -1)
374 return 1;
375
376 threads = shmat(shm_id, NULL, 0);
377 if (threads == (void *) -1) {
378 perror("shmat");
379 return 1;
380 }
0cfe2089
TK
381 if (shm_attach_to_open_removed())
382 shmctl(shm_id, IPC_RMID, NULL);
c8931876 383#endif
9d9eb2e7
JA
384
385 memset(threads, 0, max_jobs * sizeof(struct thread_data));
4f37732a
BVA
386 for (i = 0; i < max_jobs; i++)
387 DRD_IGNORE_VAR(threads[i]);
5cf985e5 388 fio_debug_jobp = (unsigned int *)(threads + max_jobs);
9d9eb2e7 389 *fio_debug_jobp = -1;
5ec3bc54
JA
390 fio_warned = fio_debug_jobp + 1;
391 *fio_warned = 0;
9e684a49
DE
392
393 flow_init();
394
9d9eb2e7
JA
395 return 0;
396}
397
c2292325
JA
398static void dump_print_option(struct print_option *p)
399{
400 const char *delim;
401
402 if (!strcmp("description", p->name))
403 delim = "\"";
404 else
405 delim = "";
406
407 log_info("--%s%s", p->name, p->value ? "" : " ");
408 if (p->value)
409 log_info("=%s%s%s ", delim, p->value, delim);
410}
411
412static void dump_opt_list(struct thread_data *td)
413{
414 struct flist_head *entry;
415 struct print_option *p;
416
417 if (flist_empty(&td->opt_list))
418 return;
419
420 flist_for_each(entry, &td->opt_list) {
421 p = flist_entry(entry, struct print_option, list);
422 dump_print_option(p);
423 }
424}
425
426static void fio_dump_options_free(struct thread_data *td)
427{
428 while (!flist_empty(&td->opt_list)) {
429 struct print_option *p;
430
431 p = flist_first_entry(&td->opt_list, struct print_option, list);
432 flist_del_init(&p->list);
433 free(p->name);
434 free(p->value);
435 free(p);
436 }
437}
438
876e1001
JA
439static void copy_opt_list(struct thread_data *dst, struct thread_data *src)
440{
441 struct flist_head *entry;
442
443 if (flist_empty(&src->opt_list))
444 return;
445
446 flist_for_each(entry, &src->opt_list) {
447 struct print_option *srcp, *dstp;
448
449 srcp = flist_entry(entry, struct print_option, list);
450 dstp = malloc(sizeof(*dstp));
451 dstp->name = strdup(srcp->name);
452 if (srcp->value)
453 dstp->value = strdup(srcp->value);
454 else
455 dstp->value = NULL;
456 flist_add_tail(&dstp->list, &dst->opt_list);
457 }
458}
459
906c8d75
JA
460/*
461 * Return a free job structure.
462 */
8983ce71
JA
463static struct thread_data *get_new_job(bool global, struct thread_data *parent,
464 bool preserve_eo, const char *jobname)
ebac4655
JA
465{
466 struct thread_data *td;
467
5bba8b3a 468 if (global)
ebac4655 469 return &def_thread;
9d9eb2e7
JA
470 if (setup_thread_area()) {
471 log_err("error: failed to setup shm segment\n");
472 return NULL;
473 }
e61f1ec8
BC
474 if (thread_number >= max_jobs) {
475 log_err("error: maximum number of jobs (%d) reached.\n",
476 max_jobs);
ebac4655 477 return NULL;
e61f1ec8 478 }
ebac4655
JA
479
480 td = &threads[thread_number++];
ddaeaa5a 481 *td = *parent;
ebac4655 482
c2292325 483 INIT_FLIST_HEAD(&td->opt_list);
876e1001
JA
484 if (parent != &def_thread)
485 copy_opt_list(td, parent);
c2292325 486
de890a1e 487 td->io_ops = NULL;
356ef1a1 488 td->io_ops_init = 0;
de890a1e
SL
489 if (!preserve_eo)
490 td->eo = NULL;
491
e0b0d892
JA
492 td->o.uid = td->o.gid = -1U;
493
cade3ef4 494 dup_files(td, parent);
de890a1e 495 fio_options_mem_dupe(td);
cade3ef4 496
15dc1934
JA
497 profile_add_hooks(td);
498
ebac4655 499 td->thread_number = thread_number;
69bdd6ba 500 td->subjob_number = 0;
108fea77 501
ef3d8e53
JA
502 if (jobname)
503 td->o.name = strdup(jobname);
504
13978e86 505 if (!parent->o.group_reporting || parent == &def_thread)
108fea77
JA
506 stat_number++;
507
ebac4655
JA
508 return td;
509}
510
511static void put_job(struct thread_data *td)
512{
549577a7
JA
513 if (td == &def_thread)
514 return;
84dd1886 515
58c55ba0 516 profile_td_exit(td);
9e684a49 517 flow_exit_job(td);
549577a7 518
16edf25d 519 if (td->error)
6d86144d 520 log_info("fio: %s\n", td->verror);
16edf25d 521
7e356b2d 522 fio_options_free(td);
c2292325 523 fio_dump_options_free(td);
de890a1e
SL
524 if (td->io_ops)
525 free_ioengine(td);
7e356b2d 526
ef3d8e53
JA
527 if (td->o.name)
528 free(td->o.name);
529
ebac4655
JA
530 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
531 thread_number--;
532}
533
581e7141 534static int __setup_rate(struct thread_data *td, enum fio_ddir ddir)
127f6865 535{
581e7141 536 unsigned int bs = td->o.min_bs[ddir];
127f6865 537
ff58fced
JA
538 assert(ddir_rw(ddir));
539
ba3e4e0c 540 if (td->o.rate[ddir])
1b8dbf25 541 td->rate_bps[ddir] = td->o.rate[ddir];
ba3e4e0c 542 else
194fffd0 543 td->rate_bps[ddir] = (uint64_t) td->o.rate_iops[ddir] * bs;
127f6865 544
1b8dbf25 545 if (!td->rate_bps[ddir]) {
127f6865
JA
546 log_err("rate lower than supported\n");
547 return -1;
548 }
549
50a8ce86 550 td->rate_next_io_time[ddir] = 0;
89cdea5e 551 td->rate_io_issue_bytes[ddir] = 0;
6c8611c7 552 td->last_usec[ddir] = 0;
127f6865
JA
553 return 0;
554}
555
581e7141
JA
556static int setup_rate(struct thread_data *td)
557{
558 int ret = 0;
559
560 if (td->o.rate[DDIR_READ] || td->o.rate_iops[DDIR_READ])
561 ret = __setup_rate(td, DDIR_READ);
562 if (td->o.rate[DDIR_WRITE] || td->o.rate_iops[DDIR_WRITE])
563 ret |= __setup_rate(td, DDIR_WRITE);
6eaf09d6
SL
564 if (td->o.rate[DDIR_TRIM] || td->o.rate_iops[DDIR_TRIM])
565 ret |= __setup_rate(td, DDIR_TRIM);
581e7141
JA
566
567 return ret;
568}
569
8347239a
JA
570static int fixed_block_size(struct thread_options *o)
571{
572 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
573 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
6eaf09d6
SL
574 o->min_bs[DDIR_TRIM] == o->max_bs[DDIR_TRIM] &&
575 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE] &&
576 o->min_bs[DDIR_READ] == o->min_bs[DDIR_TRIM];
8347239a
JA
577}
578
23ed19b0
CE
579
580static unsigned long long get_rand_start_delay(struct thread_data *td)
581{
582 unsigned long long delayrange;
c3546b53 583 uint64_t frand_max;
23ed19b0
CE
584 unsigned long r;
585
586 delayrange = td->o.start_delay_high - td->o.start_delay;
587
c3546b53 588 frand_max = rand_max(&td->delay_state);
d6b72507 589 r = __rand(&td->delay_state);
c3546b53 590 delayrange = (unsigned long long) ((double) delayrange * (r / (frand_max + 1.0)));
23ed19b0
CE
591
592 delayrange += td->o.start_delay;
593 return delayrange;
594}
595
8c4e634a
JA
596/*
597 * <3 Johannes
598 */
9258468e
JA
599static unsigned int gcd(unsigned int m, unsigned int n)
600{
8c4e634a
JA
601 if (!n)
602 return m;
9258468e 603
8c4e634a 604 return gcd(n, m % n);
9258468e
JA
605}
606
dad915e3
JA
607/*
608 * Lazy way of fixing up options that depend on each other. We could also
609 * define option callback handlers, but this is easier.
610 */
4e991c23 611static int fixup_options(struct thread_data *td)
e1f36503 612{
2dc1bbeb 613 struct thread_options *o = &td->o;
eefd98b1 614 int ret = 0;
dad915e3 615
06eac6b2 616#ifndef CONFIG_PSHARED
9bbf57cc 617 if (!o->use_thread) {
f356d01d
JA
618 log_info("fio: this platform does not support process shared"
619 " mutexes, forcing use of threads. Use the 'thread'"
620 " option to get rid of this warning.\n");
9bbf57cc 621 o->use_thread = 1;
a9523c6f 622 ret = warnings_fatal;
f356d01d
JA
623 }
624#endif
625
2dc1bbeb 626 if (o->write_iolog_file && o->read_iolog_file) {
076efc7c 627 log_err("fio: read iolog overrides write_iolog\n");
2dc1bbeb
JA
628 free(o->write_iolog_file);
629 o->write_iolog_file = NULL;
a9523c6f 630 ret = warnings_fatal;
076efc7c 631 }
16b462ae 632
16b462ae 633 /*
ed335855 634 * only really works with 1 file
16b462ae 635 */
627aa1a8 636 if (o->zone_size && o->open_files > 1)
2dc1bbeb 637 o->zone_size = 0;
16b462ae 638
ed335855
SN
639 /*
640 * If zone_range isn't specified, backward compatibility dictates it
641 * should be made equal to zone_size.
642 */
643 if (o->zone_size && !o->zone_range)
644 o->zone_range = o->zone_size;
645
16b462ae
JA
646 /*
647 * Reads can do overwrites, we always need to pre-create the file
648 */
dcf9844e 649 if (td_read(td))
2dc1bbeb 650 o->overwrite = 1;
16b462ae 651
2dc1bbeb 652 if (!o->min_bs[DDIR_READ])
5ec10eaa 653 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
2dc1bbeb
JA
654 if (!o->max_bs[DDIR_READ])
655 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
656 if (!o->min_bs[DDIR_WRITE])
5ec10eaa 657 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
2dc1bbeb
JA
658 if (!o->max_bs[DDIR_WRITE])
659 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
6eaf09d6
SL
660 if (!o->min_bs[DDIR_TRIM])
661 o->min_bs[DDIR_TRIM] = o->bs[DDIR_TRIM];
662 if (!o->max_bs[DDIR_TRIM])
663 o->max_bs[DDIR_TRIM] = o->bs[DDIR_TRIM];
664
2dc1bbeb 665 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
6eaf09d6 666 o->rw_min_bs = min(o->min_bs[DDIR_TRIM], o->rw_min_bs);
a00735e6 667
2b7a01d0
JA
668 /*
669 * For random IO, allow blockalign offset other than min_bs.
670 */
671 if (!o->ba[DDIR_READ] || !td_random(td))
672 o->ba[DDIR_READ] = o->min_bs[DDIR_READ];
673 if (!o->ba[DDIR_WRITE] || !td_random(td))
674 o->ba[DDIR_WRITE] = o->min_bs[DDIR_WRITE];
6eaf09d6
SL
675 if (!o->ba[DDIR_TRIM] || !td_random(td))
676 o->ba[DDIR_TRIM] = o->min_bs[DDIR_TRIM];
2b7a01d0
JA
677
678 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
6eaf09d6
SL
679 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE] ||
680 o->ba[DDIR_TRIM] != o->min_bs[DDIR_TRIM]) &&
9bbf57cc 681 !o->norandommap) {
2b7a01d0 682 log_err("fio: Any use of blockalign= turns off randommap\n");
9bbf57cc 683 o->norandommap = 1;
a9523c6f 684 ret = warnings_fatal;
2b7a01d0
JA
685 }
686
2dc1bbeb
JA
687 if (!o->file_size_high)
688 o->file_size_high = o->file_size_low;
9c60ce64 689
23ed19b0
CE
690 if (o->start_delay_high)
691 o->start_delay = get_rand_start_delay(td);
692
8347239a
JA
693 if (o->norandommap && o->verify != VERIFY_NONE
694 && !fixed_block_size(o)) {
695 log_err("fio: norandommap given for variable block sizes, "
83da8fbf 696 "verify limited\n");
a9523c6f 697 ret = warnings_fatal;
bb8895e0 698 }
9b87f09b 699 if (o->bs_unaligned && (o->odirect || td_ioengine_flagged(td, FIO_RAWIO)))
690adba3 700 log_err("fio: bs_unaligned may not work with raw io\n");
e0a22335 701
48097d5c
JA
702 /*
703 * thinktime_spin must be less than thinktime
704 */
2dc1bbeb
JA
705 if (o->thinktime_spin > o->thinktime)
706 o->thinktime_spin = o->thinktime;
e916b390
JA
707
708 /*
709 * The low water mark cannot be bigger than the iodepth
710 */
67bf9823
JA
711 if (o->iodepth_low > o->iodepth || !o->iodepth_low)
712 o->iodepth_low = o->iodepth;
cb5ab512
JA
713
714 /*
715 * If batch number isn't set, default to the same as iodepth
716 */
2dc1bbeb
JA
717 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
718 o->iodepth_batch = o->iodepth;
b5af8293 719
82407585
RP
720 /*
721 * If max batch complete number isn't set or set incorrectly,
722 * default to the same as iodepth_batch_complete_min
723 */
724 if (o->iodepth_batch_complete_min > o->iodepth_batch_complete_max)
725 o->iodepth_batch_complete_max = o->iodepth_batch_complete_min;
726
997b5680
SW
727 /*
728 * There's no need to check for in-flight overlapping IOs if the job
729 * isn't changing data or the maximum iodepth is guaranteed to be 1
730 */
731 if (o->serialize_overlap && !(td->flags & TD_F_READ_IOLOG) &&
732 (!(td_write(td) || td_trim(td)) || o->iodepth == 1))
733 o->serialize_overlap = 0;
734 /*
735 * Currently can't check for overlaps in offload mode
736 */
737 if (o->serialize_overlap && o->io_submit_mode == IO_MODE_OFFLOAD) {
738 log_err("fio: checking for in-flight overlaps when the "
739 "io_submit_mode is offload is not supported\n");
740 o->serialize_overlap = 0;
741 ret = warnings_fatal;
742 }
743
2dc1bbeb
JA
744 if (o->nr_files > td->files_index)
745 o->nr_files = td->files_index;
9f9214f2 746
2dc1bbeb
JA
747 if (o->open_files > o->nr_files || !o->open_files)
748 o->open_files = o->nr_files;
4e991c23 749
6eaf09d6
SL
750 if (((o->rate[DDIR_READ] + o->rate[DDIR_WRITE] + o->rate[DDIR_TRIM]) &&
751 (o->rate_iops[DDIR_READ] + o->rate_iops[DDIR_WRITE] + o->rate_iops[DDIR_TRIM])) ||
752 ((o->ratemin[DDIR_READ] + o->ratemin[DDIR_WRITE] + o->ratemin[DDIR_TRIM]) &&
753 (o->rate_iops_min[DDIR_READ] + o->rate_iops_min[DDIR_WRITE] + o->rate_iops_min[DDIR_TRIM]))) {
4e991c23 754 log_err("fio: rate and rate_iops are mutually exclusive\n");
a9523c6f 755 ret = 1;
4e991c23 756 }
2af0ad5e
D
757 if ((o->rate[DDIR_READ] && (o->rate[DDIR_READ] < o->ratemin[DDIR_READ])) ||
758 (o->rate[DDIR_WRITE] && (o->rate[DDIR_WRITE] < o->ratemin[DDIR_WRITE])) ||
759 (o->rate[DDIR_TRIM] && (o->rate[DDIR_TRIM] < o->ratemin[DDIR_TRIM])) ||
760 (o->rate_iops[DDIR_READ] && (o->rate_iops[DDIR_READ] < o->rate_iops_min[DDIR_READ])) ||
761 (o->rate_iops[DDIR_WRITE] && (o->rate_iops[DDIR_WRITE] < o->rate_iops_min[DDIR_WRITE])) ||
762 (o->rate_iops[DDIR_TRIM] && (o->rate_iops[DDIR_TRIM] < o->rate_iops_min[DDIR_TRIM]))) {
4e991c23 763 log_err("fio: minimum rate exceeds rate\n");
a9523c6f 764 ret = 1;
4e991c23
JA
765 }
766
cf4464ca
JA
767 if (!o->timeout && o->time_based) {
768 log_err("fio: time_based requires a runtime/timeout setting\n");
769 o->time_based = 0;
a9523c6f 770 ret = warnings_fatal;
cf4464ca
JA
771 }
772
aa31f1f1 773 if (o->fill_device && !o->size)
5921e80c 774 o->size = -1ULL;
5ec10eaa 775
9bbf57cc 776 if (o->verify != VERIFY_NONE) {
9f6d7080
SW
777 if (td_write(td) && o->do_verify && o->numjobs > 1 &&
778 (o->filename ||
779 !(o->unique_filename &&
780 strstr(o->filename_format, "$jobname") &&
781 strstr(o->filename_format, "$jobnum") &&
782 strstr(o->filename_format, "$filenum")))) {
783 log_info("fio: multiple writers may overwrite blocks "
784 "that belong to other jobs. This can cause "
a9523c6f
JA
785 "verification failures.\n");
786 ret = warnings_fatal;
787 }
788
b9f3ee6c
SW
789 /*
790 * Warn if verification is requested but no verification of any
791 * kind can be started due to time constraints
792 */
793 if (td_write(td) && o->do_verify && o->timeout &&
794 o->time_based && !td_read(td) && !o->verify_backlog) {
795 log_info("fio: verification read phase will never "
796 "start because write phase uses all of "
797 "runtime\n");
798 ret = warnings_fatal;
799 }
800
7627557b
JA
801 if (!fio_option_is_set(o, refill_buffers))
802 o->refill_buffers = 1;
803
2f1b8e8b
JA
804 if (o->max_bs[DDIR_WRITE] != o->min_bs[DDIR_WRITE] &&
805 !o->verify_interval)
806 o->verify_interval = o->min_bs[DDIR_WRITE];
7ffa8930
JA
807
808 /*
809 * Verify interval must be smaller or equal to the
810 * write size.
811 */
812 if (o->verify_interval > o->min_bs[DDIR_WRITE])
813 o->verify_interval = o->min_bs[DDIR_WRITE];
814 else if (td_read(td) && o->verify_interval > o->min_bs[DDIR_READ])
815 o->verify_interval = o->min_bs[DDIR_READ];
9258468e
JA
816
817 /*
c82acb8d 818 * Verify interval must be a factor of both min and max
9258468e
JA
819 * write size
820 */
c82acb8d 821 if (!o->verify_interval ||
3c0a8bc2
JA
822 (o->min_bs[DDIR_WRITE] % o->verify_interval) ||
823 (o->max_bs[DDIR_WRITE] % o->verify_interval))
9258468e 824 o->verify_interval = gcd(o->min_bs[DDIR_WRITE],
3c0a8bc2 825 o->max_bs[DDIR_WRITE]);
d990588e 826 }
41ccd845 827
9bbf57cc 828 if (o->pre_read) {
49d719fc 829 if (o->invalidate_cache)
21c1b29e 830 o->invalidate_cache = 0;
9b87f09b 831 if (td_ioengine_flagged(td, FIO_PIPEIO)) {
9c0d2241
JA
832 log_info("fio: cannot pre-read files with an IO engine"
833 " that isn't seekable. Pre-read disabled.\n");
a9523c6f
JA
834 ret = warnings_fatal;
835 }
9c0d2241 836 }
34f1c044 837
ad705bcb 838 if (!o->unit_base) {
9b87f09b 839 if (td_ioengine_flagged(td, FIO_BIT_BASED))
ad705bcb
SN
840 o->unit_base = 1;
841 else
842 o->unit_base = 8;
843 }
844
cbbdf1c8
SW
845#ifndef FIO_HAVE_ANY_FALLOCATE
846 /* Platform doesn't support any fallocate so force it to none */
d27f75b8
SW
847 o->fallocate_mode = FIO_FALLOCATE_NONE;
848#endif
849
67bf9823 850#ifndef CONFIG_FDATASYNC
9bbf57cc 851 if (o->fdatasync_blocks) {
e72fa4d4
JA
852 log_info("fio: this platform does not support fdatasync()"
853 " falling back to using fsync(). Use the 'fsync'"
854 " option instead of 'fdatasync' to get rid of"
855 " this warning\n");
9bbf57cc
JA
856 o->fsync_blocks = o->fdatasync_blocks;
857 o->fdatasync_blocks = 0;
a9523c6f 858 ret = warnings_fatal;
e72fa4d4
JA
859 }
860#endif
861
93bcfd20
BC
862#ifdef WIN32
863 /*
864 * Windows doesn't support O_DIRECT or O_SYNC with the _open interface,
865 * so fail if we're passed those flags
866 */
8945237c 867 if (td_ioengine_flagged(td, FIO_SYNCIO) && (o->odirect || o->sync_io)) {
93bcfd20
BC
868 log_err("fio: Windows does not support direct or non-buffered io with"
869 " the synchronous ioengines. Use the 'windowsaio' ioengine"
870 " with 'direct=1' and 'iodepth=1' instead.\n");
871 ret = 1;
872 }
873#endif
874
811ac503
JA
875 /*
876 * For fully compressible data, just zero them at init time.
6269123c
JA
877 * It's faster than repeatedly filling it. For non-zero
878 * compression, we should have refill_buffers set. Set it, unless
879 * the job file already changed it.
811ac503 880 */
6269123c
JA
881 if (o->compress_percentage) {
882 if (o->compress_percentage == 100) {
883 o->zero_buffers = 1;
884 o->compress_percentage = 0;
fbf6ded2 885 } else if (!fio_option_is_set(o, refill_buffers)) {
6269123c 886 o->refill_buffers = 1;
fbf6ded2
JA
887 td->flags |= TD_F_REFILL_BUFFERS;
888 }
811ac503
JA
889 }
890
5881fda4
JA
891 /*
892 * Using a non-uniform random distribution excludes usage of
893 * a random map
894 */
8945237c
JA
895 if (o->random_distribution != FIO_RAND_DIST_RANDOM)
896 o->norandommap = 1;
5881fda4 897
8d916c94
JA
898 /*
899 * If size is set but less than the min block size, complain
900 */
901 if (o->size && o->size < td_min_bs(td)) {
13e0f06b
JS
902 log_err("fio: size too small, must not be less than minimum block size: %llu < %u\n",
903 (unsigned long long) o->size, td_min_bs(td));
8d916c94
JA
904 ret = 1;
905 }
906
d01612f3
CM
907 /*
908 * O_ATOMIC implies O_DIRECT
909 */
8945237c
JA
910 if (o->oatomic)
911 o->odirect = 1;
d01612f3 912
04778baf
JA
913 /*
914 * If randseed is set, that overrides randrepeat
915 */
8945237c
JA
916 if (fio_option_is_set(o, rand_seed))
917 o->rand_repeatable = 0;
04778baf 918
8945237c 919 if (td_ioengine_flagged(td, FIO_NOEXTEND) && o->file_append) {
b1bebc32
JA
920 log_err("fio: can't append/extent with IO engine %s\n", td->io_ops->name);
921 ret = 1;
922 }
923
79c896a1
JA
924 if (fio_option_is_set(o, gtod_cpu)) {
925 fio_gtod_init();
926 fio_gtod_set_cpu(o->gtod_cpu);
927 fio_gtod_offload = 1;
928 }
929
cf8a46a7
JA
930 td->loops = o->loops;
931 if (!td->loops)
932 td->loops = 1;
933
8945237c 934 if (o->block_error_hist && o->nr_files != 1) {
b3ec877c 935 log_err("fio: block error histogram only available "
66347cfa 936 "with a single file per job, but %d files "
8945237c 937 "provided\n", o->nr_files);
66347cfa
DE
938 ret = 1;
939 }
940
b599759b
JA
941 if (fio_option_is_set(o, clat_percentiles) &&
942 !fio_option_is_set(o, lat_percentiles)) {
943 o->lat_percentiles = !o->clat_percentiles;
944 } else if (fio_option_is_set(o, lat_percentiles) &&
945 !fio_option_is_set(o, clat_percentiles)) {
946 o->clat_percentiles = !o->lat_percentiles;
947 } else if (fio_option_is_set(o, lat_percentiles) &&
948 fio_option_is_set(o, clat_percentiles) &&
949 o->lat_percentiles && o->clat_percentiles) {
950 log_err("fio: lat_percentiles and clat_percentiles are "
951 "mutually exclusive\n");
952 ret = 1;
953 }
954
db43af34
SW
955 if (o->disable_lat)
956 o->lat_percentiles = 0;
957 if (o->disable_clat)
958 o->clat_percentiles = 0;
959
c3a32714
JA
960 /*
961 * Fix these up to be nsec internally
962 */
963 o->max_latency *= 1000ULL;
964 o->latency_target *= 1000ULL;
965 o->latency_window *= 1000ULL;
966
a9523c6f 967 return ret;
e1f36503
JA
968}
969
99c94a6b
JA
970static void init_rand_file_service(struct thread_data *td)
971{
972 unsigned long nranges = td->o.nr_files << FIO_FSERVICE_SHIFT;
973 const unsigned int seed = td->rand_seeds[FIO_RAND_FILE_OFF];
974
975 if (td->o.file_service_type == FIO_FSERVICE_ZIPF) {
976 zipf_init(&td->next_file_zipf, nranges, td->zipf_theta, seed);
977 zipf_disable_hash(&td->next_file_zipf);
978 } else if (td->o.file_service_type == FIO_FSERVICE_PARETO) {
979 pareto_init(&td->next_file_zipf, nranges, td->pareto_h, seed);
980 zipf_disable_hash(&td->next_file_zipf);
981 } else if (td->o.file_service_type == FIO_FSERVICE_GAUSS) {
982 gauss_init(&td->next_file_gauss, nranges, td->gauss_dev, seed);
983 gauss_disable_hash(&td->next_file_gauss);
984 }
985}
986
8f380de2
CJ
987void td_fill_verify_state_seed(struct thread_data *td)
988{
989 bool use64;
990
991 if (td->o.random_generator == FIO_RAND_GEN_TAUSWORTHE64)
40c49471 992 use64 = true;
8f380de2 993 else
40c49471 994 use64 = false;
8f380de2
CJ
995
996 init_rand_seed(&td->verify_state, td->rand_seeds[FIO_RAND_VER_OFF],
997 use64);
998}
999
36dd3379 1000static void td_fill_rand_seeds_internal(struct thread_data *td, bool use64)
4c07ad86 1001{
36dd3379
JA
1002 int i;
1003
71cf4d08
JA
1004 /*
1005 * trimwrite is special in that we need to generate the same
1006 * offsets to get the "write after trim" effect. If we are
1007 * using bssplit to set buffer length distributions, ensure that
1008 * we seed the trim and write generators identically.
1009 */
2f282cec
JA
1010 if (td_trimwrite(td)) {
1011 init_rand_seed(&td->bsrange_state[DDIR_READ], td->rand_seeds[FIO_RAND_BS_OFF], use64);
1012 init_rand_seed(&td->bsrange_state[DDIR_WRITE], td->rand_seeds[FIO_RAND_BS1_OFF], use64);
1013 init_rand_seed(&td->bsrange_state[DDIR_TRIM], td->rand_seeds[FIO_RAND_BS1_OFF], use64);
1014 } else {
1015 init_rand_seed(&td->bsrange_state[DDIR_READ], td->rand_seeds[FIO_RAND_BS_OFF], use64);
1016 init_rand_seed(&td->bsrange_state[DDIR_WRITE], td->rand_seeds[FIO_RAND_BS1_OFF], use64);
1017 init_rand_seed(&td->bsrange_state[DDIR_TRIM], td->rand_seeds[FIO_RAND_BS2_OFF], use64);
1018 }
1019
8f380de2 1020 td_fill_verify_state_seed(td);
36dd3379 1021 init_rand_seed(&td->rwmix_state, td->rand_seeds[FIO_RAND_MIX_OFF], false);
4c07ad86
JA
1022
1023 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
c3546b53 1024 init_rand_seed(&td->next_file_state, td->rand_seeds[FIO_RAND_FILE_OFF], use64);
99c94a6b
JA
1025 else if (td->o.file_service_type & __FIO_FSERVICE_NONUNIFORM)
1026 init_rand_file_service(td);
4c07ad86 1027
c3546b53
JA
1028 init_rand_seed(&td->file_size_state, td->rand_seeds[FIO_RAND_FILE_SIZE_OFF], use64);
1029 init_rand_seed(&td->trim_state, td->rand_seeds[FIO_RAND_TRIM_OFF], use64);
1030 init_rand_seed(&td->delay_state, td->rand_seeds[FIO_RAND_START_DELAY], use64);
6c8611c7
JA
1031 init_rand_seed(&td->poisson_state[0], td->rand_seeds[FIO_RAND_POISSON_OFF], 0);
1032 init_rand_seed(&td->poisson_state[1], td->rand_seeds[FIO_RAND_POISSON2_OFF], 0);
1033 init_rand_seed(&td->poisson_state[2], td->rand_seeds[FIO_RAND_POISSON3_OFF], 0);
36dd3379
JA
1034 init_rand_seed(&td->dedupe_state, td->rand_seeds[FIO_DEDUPE_OFF], false);
1035 init_rand_seed(&td->zone_state, td->rand_seeds[FIO_RAND_ZONE_OFF], false);
4c07ad86
JA
1036
1037 if (!td_random(td))
1038 return;
1039
1040 if (td->o.rand_repeatable)
d24945f0 1041 td->rand_seeds[FIO_RAND_BLOCK_OFF] = FIO_RANDSEED * td->thread_number;
4c07ad86 1042
c3546b53 1043 init_rand_seed(&td->random_state, td->rand_seeds[FIO_RAND_BLOCK_OFF], use64);
36dd3379
JA
1044
1045 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1046 struct frand_state *s = &td->seq_rand_state[i];
1047
1048 init_rand_seed(s, td->rand_seeds[FIO_RAND_SEQ_RAND_READ_OFF], false);
1049 }
5bfc35d7
JA
1050}
1051
4c07ad86
JA
1052void td_fill_rand_seeds(struct thread_data *td)
1053{
36dd3379 1054 bool use64;
c3546b53 1055
56e2a5fc 1056 if (td->o.allrand_repeatable) {
5c94b008
JA
1057 unsigned int i;
1058
1059 for (i = 0; i < FIO_RAND_NR_OFFS; i++)
56e2a5fc
CE
1060 td->rand_seeds[i] = FIO_RANDSEED * td->thread_number
1061 + i;
1062 }
1063
c3546b53 1064 if (td->o.random_generator == FIO_RAND_GEN_TAUSWORTHE64)
40c49471 1065 use64 = true;
c3546b53 1066 else
40c49471 1067 use64 = false;
c3546b53
JA
1068
1069 td_fill_rand_seeds_internal(td, use64);
3545a109 1070
c3546b53 1071 init_rand_seed(&td->buf_state, td->rand_seeds[FIO_RAND_BUF_OFF], use64);
5c94b008 1072 frand_copy(&td->buf_state_prev, &td->buf_state);
4c07ad86
JA
1073}
1074
de890a1e
SL
1075/*
1076 * Initializes the ioengine configured for a job, if it has not been done so
1077 * already.
1078 */
1079int ioengine_load(struct thread_data *td)
1080{
6e5c4b8e
JA
1081 if (!td->o.ioengine) {
1082 log_err("fio: internal fault, no IO engine specified\n");
1083 return 1;
1084 }
de890a1e 1085
800334db 1086 if (td->io_ops) {
3e262e2f
JA
1087 struct ioengine_ops *ops;
1088 void *dlhandle;
1089
800334db
BW
1090 /* An engine is loaded, but the requested ioengine
1091 * may have changed.
1092 */
1093 if (!strcmp(td->io_ops->name, td->o.ioengine)) {
1094 /* The right engine is already loaded */
1095 return 0;
1096 }
1097
3e262e2f
JA
1098 /*
1099 * Name of file and engine may be different, load ops
1100 * for this name and see if they match. If they do, then
1101 * the engine is unchanged.
1102 */
1103 dlhandle = td->io_ops_dlhandle;
1104 ops = load_ioengine(td);
14dc963c
JA
1105 if (ops == td->io_ops && dlhandle == td->io_ops_dlhandle) {
1106 if (dlhandle)
1107 dlclose(dlhandle);
3e262e2f 1108 return 0;
14dc963c 1109 }
3e262e2f
JA
1110
1111 if (dlhandle && dlhandle != td->io_ops_dlhandle)
1112 dlclose(dlhandle);
1113
800334db
BW
1114 /* Unload the old engine. */
1115 free_ioengine(td);
1116 }
1117
4fedf59a 1118 td->io_ops = load_ioengine(td);
de890a1e 1119 if (!td->io_ops) {
4fedf59a 1120 log_err("fio: failed to load engine\n");
de890a1e
SL
1121 return 1;
1122 }
1123
1124 if (td->io_ops->option_struct_size && td->io_ops->options) {
1125 /*
1126 * In cases where td->eo is set, clone it for a child thread.
1127 * This requires that the parent thread has the same ioengine,
1128 * but that requirement must be enforced by the code which
1129 * cloned the thread.
1130 */
1131 void *origeo = td->eo;
1132 /*
1133 * Otherwise use the default thread options.
1134 */
1135 if (!origeo && td != &def_thread && def_thread.eo &&
1136 def_thread.io_ops->options == td->io_ops->options)
1137 origeo = def_thread.eo;
1138
1139 options_init(td->io_ops->options);
1140 td->eo = malloc(td->io_ops->option_struct_size);
1141 /*
1142 * Use the default thread as an option template if this uses the
1143 * same options structure and there are non-default options
1144 * used.
1145 */
1146 if (origeo) {
1147 memcpy(td->eo, origeo, td->io_ops->option_struct_size);
53b5693d 1148 options_mem_dupe(td->io_ops->options, td->eo);
de890a1e
SL
1149 } else {
1150 memset(td->eo, 0, td->io_ops->option_struct_size);
1151 fill_default_options(td->eo, td->io_ops->options);
1152 }
1153 *(struct thread_data **)td->eo = td;
1154 }
1155
9b87f09b
JA
1156 if (td->o.odirect)
1157 td->io_ops->flags |= FIO_RAWIO;
1158
1159 td_set_ioengine_flags(td);
de890a1e
SL
1160 return 0;
1161}
1162
d72be545
JA
1163static void init_flags(struct thread_data *td)
1164{
1165 struct thread_options *o = &td->o;
5c81ff5e 1166 int i;
d72be545
JA
1167
1168 if (o->verify_backlog)
1169 td->flags |= TD_F_VER_BACKLOG;
1170 if (o->trim_backlog)
1171 td->flags |= TD_F_TRIM_BACKLOG;
1172 if (o->read_iolog_file)
1173 td->flags |= TD_F_READ_IOLOG;
1174 if (o->refill_buffers)
1175 td->flags |= TD_F_REFILL_BUFFERS;
1bf2498d 1176 /*
b04f5905 1177 * Always scramble buffers if asked to
1bf2498d 1178 */
b04f5905
JA
1179 if (o->scramble_buffers && fio_option_is_set(o, scramble_buffers))
1180 td->flags |= TD_F_SCRAMBLE_BUFFERS;
1181 /*
1182 * But also scramble buffers, unless we were explicitly asked
1183 * to zero them.
1184 */
1185 if (o->scramble_buffers && !(o->zero_buffers &&
1186 fio_option_is_set(o, zero_buffers)))
d72be545
JA
1187 td->flags |= TD_F_SCRAMBLE_BUFFERS;
1188 if (o->verify != VERIFY_NONE)
1189 td->flags |= TD_F_VER_NONE;
a9da8ab2
JA
1190
1191 if (o->verify_async || o->io_submit_mode == IO_MODE_OFFLOAD)
1192 td->flags |= TD_F_NEED_LOCK;
15600335
JA
1193
1194 if (o->mem_type == MEM_CUDA_MALLOC)
1195 td->flags &= ~TD_F_SCRAMBLE_BUFFERS;
5c81ff5e
JA
1196
1197 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1198 if (option_check_rate(td, i)) {
1199 td->flags |= TD_F_CHECK_RATE;
1200 break;
1201 }
1202 }
d72be545
JA
1203}
1204
9dbc7bfe
JA
1205static int setup_random_seeds(struct thread_data *td)
1206{
1207 unsigned long seed;
1208 unsigned int i;
1209
1ed84d86
TK
1210 if (!td->o.rand_repeatable && !fio_option_is_set(&td->o, rand_seed)) {
1211 int ret = init_random_seeds(td->rand_seeds, sizeof(td->rand_seeds));
1212 if (!ret)
1213 td_fill_rand_seeds(td);
1214 return ret;
1215 }
9dbc7bfe 1216
40fe5e7b 1217 seed = td->o.rand_seed;
04778baf 1218 for (i = 0; i < 4; i++)
9dbc7bfe
JA
1219 seed *= 0x9e370001UL;
1220
1221 for (i = 0; i < FIO_RAND_NR_OFFS; i++) {
87a0ea3b 1222 td->rand_seeds[i] = seed * td->thread_number + i;
9dbc7bfe
JA
1223 seed *= 0x9e370001UL;
1224 }
1225
1226 td_fill_rand_seeds(td);
1227 return 0;
1228}
1229
de98bd30
JA
1230enum {
1231 FPRE_NONE = 0,
1232 FPRE_JOBNAME,
1233 FPRE_JOBNUM,
1234 FPRE_FILENUM
1235};
1236
1237static struct fpre_keyword {
1238 const char *keyword;
1239 size_t strlen;
1240 int key;
1241} fpre_keywords[] = {
1242 { .keyword = "$jobname", .key = FPRE_JOBNAME, },
1243 { .keyword = "$jobnum", .key = FPRE_JOBNUM, },
1244 { .keyword = "$filenum", .key = FPRE_FILENUM, },
1245 { .keyword = NULL, },
1246 };
1247
3660ceae 1248static char *make_filename(char *buf, size_t buf_size,struct thread_options *o,
de98bd30
JA
1249 const char *jobname, int jobnum, int filenum)
1250{
1251 struct fpre_keyword *f;
1252 char copy[PATH_MAX];
b400a20e 1253 size_t dst_left = PATH_MAX - 1;
de98bd30
JA
1254
1255 if (!o->filename_format || !strlen(o->filename_format)) {
1256 sprintf(buf, "%s.%d.%d", jobname, jobnum, filenum);
e5a43605 1257 return buf;
de98bd30
JA
1258 }
1259
1260 for (f = &fpre_keywords[0]; f->keyword; f++)
1261 f->strlen = strlen(f->keyword);
1262
3660ceae
JA
1263 buf[buf_size - 1] = '\0';
1264 strncpy(buf, o->filename_format, buf_size - 1);
1265
de98bd30
JA
1266 memset(copy, 0, sizeof(copy));
1267 for (f = &fpre_keywords[0]; f->keyword; f++) {
1268 do {
1269 size_t pre_len, post_start = 0;
1270 char *str, *dst = copy;
1271
e25b6d5a 1272 str = strcasestr(buf, f->keyword);
de98bd30
JA
1273 if (!str)
1274 break;
1275
1276 pre_len = str - buf;
1277 if (strlen(str) != f->strlen)
1278 post_start = pre_len + f->strlen;
1279
1280 if (pre_len) {
1281 strncpy(dst, buf, pre_len);
1282 dst += pre_len;
73a467e6 1283 dst_left -= pre_len;
de98bd30
JA
1284 }
1285
1286 switch (f->key) {
73a467e6
JA
1287 case FPRE_JOBNAME: {
1288 int ret;
1289
1290 ret = snprintf(dst, dst_left, "%s", jobname);
1291 if (ret < 0)
1292 break;
17a2be59
JA
1293 else if (ret > dst_left) {
1294 log_err("fio: truncated filename\n");
1295 dst += dst_left;
1296 dst_left = 0;
1297 } else {
1298 dst += ret;
1299 dst_left -= ret;
1300 }
de98bd30 1301 break;
73a467e6
JA
1302 }
1303 case FPRE_JOBNUM: {
1304 int ret;
1305
1306 ret = snprintf(dst, dst_left, "%d", jobnum);
1307 if (ret < 0)
1308 break;
17a2be59
JA
1309 else if (ret > dst_left) {
1310 log_err("fio: truncated filename\n");
1311 dst += dst_left;
1312 dst_left = 0;
1313 } else {
1314 dst += ret;
1315 dst_left -= ret;
1316 }
de98bd30 1317 break;
73a467e6
JA
1318 }
1319 case FPRE_FILENUM: {
1320 int ret;
1321
1322 ret = snprintf(dst, dst_left, "%d", filenum);
1323 if (ret < 0)
1324 break;
17a2be59
JA
1325 else if (ret > dst_left) {
1326 log_err("fio: truncated filename\n");
1327 dst += dst_left;
1328 dst_left = 0;
1329 } else {
1330 dst += ret;
1331 dst_left -= ret;
1332 }
de98bd30 1333 break;
73a467e6 1334 }
de98bd30
JA
1335 default:
1336 assert(0);
1337 break;
1338 }
1339
1340 if (post_start)
73a467e6 1341 strncpy(dst, buf + post_start, dst_left);
de98bd30 1342
3660ceae 1343 strncpy(buf, copy, buf_size - 1);
de98bd30
JA
1344 } while (1);
1345 }
1346
1347 return buf;
1348}
f9633d72 1349
8aa89d70 1350bool parse_dryrun(void)
f9633d72
JA
1351{
1352 return dump_cmdline || parse_only;
1353}
1354
3a5db920
JA
1355static void gen_log_name(char *name, size_t size, const char *logtype,
1356 const char *logname, unsigned int num,
1357 const char *suf, int per_job)
1358{
1359 if (per_job)
1360 snprintf(name, size, "%s_%s.%d.%s", logname, logtype, num, suf);
1361 else
1362 snprintf(name, size, "%s_%s.%s", logname, logtype, suf);
1363}
1364
9cc8cb91
AK
1365static int check_waitees(char *waitee)
1366{
1367 struct thread_data *td;
1368 int i, ret = 0;
1369
1370 for_each_td(td, i) {
1371 if (td->subjob_number)
1372 continue;
1373
1374 ret += !strcmp(td->o.name, waitee);
1375 }
1376
1377 return ret;
1378}
1379
1380static bool wait_for_ok(const char *jobname, struct thread_options *o)
1381{
1382 int nw;
1383
1384 if (!o->wait_for)
1385 return true;
1386
1387 if (!strcmp(jobname, o->wait_for)) {
1388 log_err("%s: a job cannot wait for itself (wait_for=%s).\n",
1389 jobname, o->wait_for);
1390 return false;
1391 }
1392
1393 if (!(nw = check_waitees(o->wait_for))) {
1394 log_err("%s: waitee job %s unknown.\n", jobname, o->wait_for);
1395 return false;
1396 }
1397
1398 if (nw > 1) {
1399 log_err("%s: multiple waitees %s found,\n"
1400 "please avoid duplicates when using wait_for option.\n",
1401 jobname, o->wait_for);
1402 return false;
1403 }
1404
1405 return true;
1406}
1407
906c8d75
JA
1408/*
1409 * Adds a job to the list of things todo. Sanitizes the various options
1410 * to make sure we don't have conflicts, and initializes various
1411 * members of td.
1412 */
b7cfb2e1 1413static int add_job(struct thread_data *td, const char *jobname, int job_add_num,
46bcd498 1414 int recursed, int client_type)
ebac4655 1415{
af52b345 1416 unsigned int i;
af52b345 1417 char fname[PATH_MAX];
e132cbae 1418 int numjobs, file_alloced;
de98bd30 1419 struct thread_options *o = &td->o;
cb7e0ace 1420 char logname[PATH_MAX + 32];
ebac4655 1421
ebac4655
JA
1422 /*
1423 * the def_thread is just for options, it's not a real job
1424 */
1425 if (td == &def_thread)
1426 return 0;
1427
d72be545
JA
1428 init_flags(td);
1429
cca73aa7
JA
1430 /*
1431 * if we are just dumping the output command line, don't add the job
1432 */
f9633d72 1433 if (parse_dryrun()) {
cca73aa7
JA
1434 put_job(td);
1435 return 0;
1436 }
1437
46bcd498
JA
1438 td->client_type = client_type;
1439
58c55ba0 1440 if (profile_td_init(td))
66251554 1441 goto err;
58c55ba0 1442
de890a1e 1443 if (ioengine_load(td))
205927a3 1444 goto err;
df64119d 1445
e132cbae 1446 file_alloced = 0;
de98bd30 1447 if (!o->filename && !td->files_index && !o->read_iolog_file) {
e132cbae 1448 file_alloced = 1;
80be24f4 1449
5e62565b 1450 if (o->nr_files == 1 && exists_and_not_regfile(jobname))
5903e7b7 1451 add_file(td, jobname, job_add_num, 0);
7b05a215 1452 else {
de98bd30 1453 for (i = 0; i < o->nr_files; i++)
3660ceae 1454 add_file(td, make_filename(fname, sizeof(fname), o, jobname, job_add_num, i), job_add_num, 0);
af52b345 1455 }
0af7b542 1456 }
ebac4655 1457
4e991c23
JA
1458 if (fixup_options(td))
1459 goto err;
e0a22335 1460
9cc8cb91
AK
1461 /*
1462 * Belongs to fixup_options, but o->name is not necessarily set as yet
1463 */
1464 if (!wait_for_ok(jobname, o))
1465 goto err;
1466
9e684a49
DE
1467 flow_init_job(td);
1468
de890a1e
SL
1469 /*
1470 * IO engines only need this for option callbacks, and the address may
1471 * change in subprocesses.
1472 */
1473 if (td->eo)
1474 *(struct thread_data **)td->eo = NULL;
1475
9b87f09b 1476 if (td_ioengine_flagged(td, FIO_DISKLESSIO)) {
07eb79df
JA
1477 struct fio_file *f;
1478
1479 for_each_file(td, f, i)
1480 f->real_file_size = -1ULL;
1481 }
1482
971caeb1 1483 td->sem = fio_sem_init(FIO_SEM_LOCKED);
ebac4655 1484
de98bd30 1485 td->ts.clat_percentiles = o->clat_percentiles;
b599759b 1486 td->ts.lat_percentiles = o->lat_percentiles;
de98bd30
JA
1487 td->ts.percentile_precision = o->percentile_precision;
1488 memcpy(td->ts.percentile_list, o->percentile_list, sizeof(o->percentile_list));
18aa1998 1489 td->ts.sig_figs = o->sig_figs;
83349190 1490
6eaf09d6
SL
1491 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1492 td->ts.clat_stat[i].min_val = ULONG_MAX;
1493 td->ts.slat_stat[i].min_val = ULONG_MAX;
1494 td->ts.lat_stat[i].min_val = ULONG_MAX;
1495 td->ts.bw_stat[i].min_val = ULONG_MAX;
188b6016 1496 td->ts.iops_stat[i].min_val = ULONG_MAX;
6eaf09d6 1497 }
7f3ecee2 1498 td->ts.sync_stat.min_val = ULONG_MAX;
de98bd30 1499 td->ddir_seq_nr = o->ddir_seq_nr;
ebac4655 1500
de98bd30 1501 if ((o->stonewall || o->new_group) && prev_group_jobs) {
3c5df6fa 1502 prev_group_jobs = 0;
ebac4655 1503 groupid++;
d883efbd
JA
1504 if (groupid == INT_MAX) {
1505 log_err("fio: too many groups defined\n");
1506 goto err;
1507 }
3c5df6fa 1508 }
ebac4655
JA
1509
1510 td->groupid = groupid;
3c5df6fa 1511 prev_group_jobs++;
ebac4655 1512
9dbc7bfe 1513 if (setup_random_seeds(td)) {
1ed84d86 1514 td_verror(td, errno, "setup_random_seeds");
9c60ce64 1515 goto err;
93bcfd20 1516 }
9c60ce64 1517
ebac4655
JA
1518 if (setup_rate(td))
1519 goto err;
1520
dded427c 1521 if (o->write_lat_log) {
aee2ab67
JA
1522 struct log_params p = {
1523 .td = td,
1524 .avg_msec = o->log_avg_msec,
1e613c9c
KC
1525 .hist_msec = o->log_hist_msec,
1526 .hist_coarseness = o->log_hist_coarseness,
aee2ab67
JA
1527 .log_type = IO_LOG_TYPE_LAT,
1528 .log_offset = o->log_offset,
1529 .log_gz = o->log_gz,
b26317c9 1530 .log_gz_store = o->log_gz_store,
aee2ab67 1531 };
dded427c 1532 const char *pre = o->lat_log_file ? o->lat_log_file : o->name;
b26317c9 1533 const char *suf;
aee2ab67 1534
b26317c9
JA
1535 if (p.log_gz_store)
1536 suf = "log.fz";
1537 else
1538 suf = "log";
1539
dded427c 1540 gen_log_name(logname, sizeof(logname), "lat", pre,
3a5db920 1541 td->thread_number, suf, o->per_job_logs);
aee2ab67 1542 setup_log(&td->lat_log, &p, logname);
3a5db920 1543
dded427c 1544 gen_log_name(logname, sizeof(logname), "slat", pre,
3a5db920 1545 td->thread_number, suf, o->per_job_logs);
aee2ab67 1546 setup_log(&td->slat_log, &p, logname);
3a5db920 1547
dded427c 1548 gen_log_name(logname, sizeof(logname), "clat", pre,
3a5db920 1549 td->thread_number, suf, o->per_job_logs);
aee2ab67 1550 setup_log(&td->clat_log, &p, logname);
ebac4655 1551 }
1e613c9c 1552
dded427c 1553 if (o->write_hist_log) {
1e613c9c
KC
1554 struct log_params p = {
1555 .td = td,
1556 .avg_msec = o->log_avg_msec,
1557 .hist_msec = o->log_hist_msec,
1558 .hist_coarseness = o->log_hist_coarseness,
1559 .log_type = IO_LOG_TYPE_HIST,
1560 .log_offset = o->log_offset,
1561 .log_gz = o->log_gz,
1562 .log_gz_store = o->log_gz_store,
1563 };
dded427c 1564 const char *pre = o->hist_log_file ? o->hist_log_file : o->name;
1e613c9c
KC
1565 const char *suf;
1566
66da8a60
JA
1567#ifndef CONFIG_ZLIB
1568 if (td->client_type) {
1569 log_err("fio: --write_hist_log requires zlib in client/server mode\n");
1570 goto err;
1571 }
1572#endif
1573
1e613c9c
KC
1574 if (p.log_gz_store)
1575 suf = "log.fz";
1576 else
1577 suf = "log";
1578
dded427c 1579 gen_log_name(logname, sizeof(logname), "clat_hist", pre,
1e613c9c
KC
1580 td->thread_number, suf, o->per_job_logs);
1581 setup_log(&td->clat_hist_log, &p, logname);
1582 }
1583
dded427c 1584 if (o->write_bw_log) {
aee2ab67
JA
1585 struct log_params p = {
1586 .td = td,
1587 .avg_msec = o->log_avg_msec,
1e613c9c
KC
1588 .hist_msec = o->log_hist_msec,
1589 .hist_coarseness = o->log_hist_coarseness,
aee2ab67
JA
1590 .log_type = IO_LOG_TYPE_BW,
1591 .log_offset = o->log_offset,
1592 .log_gz = o->log_gz,
b26317c9 1593 .log_gz_store = o->log_gz_store,
aee2ab67 1594 };
dded427c 1595 const char *pre = o->bw_log_file ? o->bw_log_file : o->name;
b26317c9
JA
1596 const char *suf;
1597
a47591e4
JA
1598 if (fio_option_is_set(o, bw_avg_time))
1599 p.avg_msec = min(o->log_avg_msec, o->bw_avg_time);
1600 else
1601 o->bw_avg_time = p.avg_msec;
c82acb8d 1602
1e613c9c
KC
1603 p.hist_msec = o->log_hist_msec;
1604 p.hist_coarseness = o->log_hist_coarseness;
a47591e4 1605
b26317c9
JA
1606 if (p.log_gz_store)
1607 suf = "log.fz";
1608 else
1609 suf = "log";
aee2ab67 1610
dded427c 1611 gen_log_name(logname, sizeof(logname), "bw", pre,
3a5db920 1612 td->thread_number, suf, o->per_job_logs);
aee2ab67 1613 setup_log(&td->bw_log, &p, logname);
cb7e0ace 1614 }
dded427c 1615 if (o->write_iops_log) {
aee2ab67
JA
1616 struct log_params p = {
1617 .td = td,
1618 .avg_msec = o->log_avg_msec,
1e613c9c
KC
1619 .hist_msec = o->log_hist_msec,
1620 .hist_coarseness = o->log_hist_coarseness,
aee2ab67
JA
1621 .log_type = IO_LOG_TYPE_IOPS,
1622 .log_offset = o->log_offset,
1623 .log_gz = o->log_gz,
b26317c9 1624 .log_gz_store = o->log_gz_store,
aee2ab67 1625 };
dded427c 1626 const char *pre = o->iops_log_file ? o->iops_log_file : o->name;
b26317c9
JA
1627 const char *suf;
1628
a47591e4
JA
1629 if (fio_option_is_set(o, iops_avg_time))
1630 p.avg_msec = min(o->log_avg_msec, o->iops_avg_time);
1631 else
1632 o->iops_avg_time = p.avg_msec;
c82acb8d 1633
1e613c9c
KC
1634 p.hist_msec = o->log_hist_msec;
1635 p.hist_coarseness = o->log_hist_coarseness;
a47591e4 1636
b26317c9
JA
1637 if (p.log_gz_store)
1638 suf = "log.fz";
1639 else
1640 suf = "log";
aee2ab67 1641
dded427c 1642 gen_log_name(logname, sizeof(logname), "iops", pre,
3a5db920 1643 td->thread_number, suf, o->per_job_logs);
aee2ab67 1644 setup_log(&td->iops_log, &p, logname);
cb7e0ace 1645 }
ebac4655 1646
de98bd30
JA
1647 if (!o->name)
1648 o->name = strdup(jobname);
01452055 1649
129fb2d4 1650 if (output_format & FIO_OUTPUT_NORMAL) {
b990b5c0 1651 if (!job_add_num) {
b7cfb2e1 1652 if (is_backend && !recursed)
2f122b13 1653 fio_server_send_add_job(td);
807f9971 1654
9b87f09b 1655 if (!td_ioengine_flagged(td, FIO_NOIO)) {
d21e2535
JA
1656 char *c1, *c2, *c3, *c4;
1657 char *c5 = NULL, *c6 = NULL;
d694a6a7 1658 int i2p = is_power_of_2(o->kb_base);
f8977ee6 1659
e883cb35
JF
1660 c1 = num2str(o->min_bs[DDIR_READ], o->sig_figs, 1, i2p, N2S_BYTE);
1661 c2 = num2str(o->max_bs[DDIR_READ], o->sig_figs, 1, i2p, N2S_BYTE);
1662 c3 = num2str(o->min_bs[DDIR_WRITE], o->sig_figs, 1, i2p, N2S_BYTE);
1663 c4 = num2str(o->max_bs[DDIR_WRITE], o->sig_figs, 1, i2p, N2S_BYTE);
d21e2535
JA
1664
1665 if (!o->bs_is_seq_rand) {
e883cb35
JF
1666 c5 = num2str(o->min_bs[DDIR_TRIM], o->sig_figs, 1, i2p, N2S_BYTE);
1667 c6 = num2str(o->max_bs[DDIR_TRIM], o->sig_figs, 1, i2p, N2S_BYTE);
d21e2535
JA
1668 }
1669
1670 log_info("%s: (g=%d): rw=%s, ", td->o.name,
1671 td->groupid,
1672 ddir_str(o->td_ddir));
1673
1674 if (o->bs_is_seq_rand)
7108dfd4 1675 log_info("bs=(R) %s-%s, (W) %s-%s, bs_is_seq_rand, ",
d21e2535
JA
1676 c1, c2, c3, c4);
1677 else
7108dfd4 1678 log_info("bs=(R) %s-%s, (W) %s-%s, (T) %s-%s, ",
d21e2535
JA
1679 c1, c2, c3, c4, c5, c6);
1680
1681 log_info("ioengine=%s, iodepth=%u\n",
de98bd30 1682 td->io_ops->name, o->iodepth);
f8977ee6
JA
1683
1684 free(c1);
1685 free(c2);
1686 free(c3);
1687 free(c4);
6eaf09d6
SL
1688 free(c5);
1689 free(c6);
f8977ee6 1690 }
b990b5c0 1691 } else if (job_add_num == 1)
6d86144d 1692 log_info("...\n");
c6ae0a5b 1693 }
ebac4655 1694
56a90eba
VF
1695 if (td_steadystate_init(td))
1696 goto err;
16e56d25 1697
ebac4655
JA
1698 /*
1699 * recurse add identical jobs, clear numjobs and stonewall options
1700 * as they don't apply to sub-jobs
1701 */
de98bd30 1702 numjobs = o->numjobs;
ebac4655 1703 while (--numjobs) {
8983ce71 1704 struct thread_data *td_new = get_new_job(false, td, true, jobname);
ebac4655
JA
1705
1706 if (!td_new)
1707 goto err;
1708
2dc1bbeb
JA
1709 td_new->o.numjobs = 1;
1710 td_new->o.stonewall = 0;
92c1d41f 1711 td_new->o.new_group = 0;
69bdd6ba 1712 td_new->subjob_number = numjobs;
16e56d25
VF
1713 td_new->o.ss_dur = o->ss_dur * 1000000l;
1714 td_new->o.ss_limit = o->ss_limit;
e132cbae
JA
1715
1716 if (file_alloced) {
455a50fa
CE
1717 if (td_new->files) {
1718 struct fio_file *f;
1719 for_each_file(td_new, f, i) {
1720 if (f->file_name)
ece6d647
AK
1721 sfree(f->file_name);
1722 sfree(f);
455a50fa 1723 }
ece6d647 1724 free(td_new->files);
455a50fa
CE
1725 td_new->files = NULL;
1726 }
ece6d647
AK
1727 td_new->files_index = 0;
1728 td_new->files_size = 0;
455a50fa
CE
1729 if (td_new->o.filename) {
1730 free(td_new->o.filename);
1731 td_new->o.filename = NULL;
1732 }
e132cbae
JA
1733 }
1734
bcbfeefa 1735 if (add_job(td_new, jobname, numjobs, 1, client_type))
ebac4655
JA
1736 goto err;
1737 }
3c5df6fa 1738
ebac4655
JA
1739 return 0;
1740err:
1741 put_job(td);
1742 return -1;
1743}
1744
79d16311
JA
1745/*
1746 * Parse as if 'o' was a command line
1747 */
46bcd498 1748void add_job_opts(const char **o, int client_type)
79d16311
JA
1749{
1750 struct thread_data *td, *td_parent;
1751 int i, in_global = 1;
1752 char jobname[32];
1753
1754 i = 0;
1755 td_parent = td = NULL;
1756 while (o[i]) {
1757 if (!strncmp(o[i], "name", 4)) {
1758 in_global = 0;
1759 if (td)
46bcd498 1760 add_job(td, jobname, 0, 0, client_type);
79d16311
JA
1761 td = NULL;
1762 sprintf(jobname, "%s", o[i] + 5);
1763 }
1764 if (in_global && !td_parent)
8983ce71 1765 td_parent = get_new_job(true, &def_thread, false, jobname);
79d16311
JA
1766 else if (!in_global && !td) {
1767 if (!td_parent)
1768 td_parent = &def_thread;
8983ce71 1769 td = get_new_job(false, td_parent, false, jobname);
79d16311
JA
1770 }
1771 if (in_global)
c2292325 1772 fio_options_parse(td_parent, (char **) &o[i], 1);
79d16311 1773 else
c2292325 1774 fio_options_parse(td, (char **) &o[i], 1);
79d16311
JA
1775 i++;
1776 }
1777
1778 if (td)
46bcd498 1779 add_job(td, jobname, 0, 0, client_type);
79d16311
JA
1780}
1781
01f06b63
JA
1782static int skip_this_section(const char *name)
1783{
ad0a2735
JA
1784 int i;
1785
1786 if (!nr_job_sections)
01f06b63
JA
1787 return 0;
1788 if (!strncmp(name, "global", 6))
1789 return 0;
1790
ad0a2735
JA
1791 for (i = 0; i < nr_job_sections; i++)
1792 if (!strcmp(job_sections[i], name))
1793 return 0;
1794
1795 return 1;
01f06b63
JA
1796}
1797
ebac4655
JA
1798static int is_empty_or_comment(char *line)
1799{
1800 unsigned int i;
1801
1802 for (i = 0; i < strlen(line); i++) {
1803 if (line[i] == ';')
1804 return 1;
5cc2da30
IM
1805 if (line[i] == '#')
1806 return 1;
76cd9378 1807 if (!isspace((int) line[i]) && !iscntrl((int) line[i]))
ebac4655
JA
1808 return 0;
1809 }
1810
1811 return 1;
1812}
1813
07261983
JA
1814/*
1815 * This is our [ini] type file parser.
1816 */
fc8d6d05 1817static int __parse_jobs_ini(struct thread_data *td,
b3270921
AK
1818 char *file, int is_buf, int stonewall_flag, int type,
1819 int nested, char *name, char ***popts, int *aopts, int *nopts)
ebac4655 1820{
8983ce71 1821 bool global = false;
b3270921 1822 char *string;
ebac4655
JA
1823 FILE *f;
1824 char *p;
0c7e37a0 1825 int ret = 0, stonewall;
097b2991 1826 int first_sect = 1;
ccf8f127 1827 int skip_fgets = 0;
01f06b63 1828 int inside_skip = 0;
3b8b7135
JA
1829 char **opts;
1830 int i, alloc_opts, num_opts;
ebac4655 1831
b3270921
AK
1832 dprint(FD_PARSE, "Parsing ini file %s\n", file);
1833 assert(td || !nested);
1834
50d16976
JA
1835 if (is_buf)
1836 f = NULL;
1837 else {
1838 if (!strcmp(file, "-"))
1839 f = stdin;
1840 else
1841 f = fopen(file, "r");
5a729cbe 1842
50d16976 1843 if (!f) {
323255cc
JA
1844 int __err = errno;
1845
1846 log_err("fio: unable to open '%s' job file\n", file);
02957cd4
JA
1847 if (td)
1848 td_verror(td, __err, "job file open");
50d16976
JA
1849 return 1;
1850 }
ebac4655
JA
1851 }
1852
1853 string = malloc(4096);
7f7e6e59
JA
1854
1855 /*
1856 * it's really 256 + small bit, 280 should suffice
1857 */
b3270921
AK
1858 if (!nested) {
1859 name = malloc(280);
1860 memset(name, 0, 280);
1861 }
ebac4655 1862
b3270921
AK
1863 opts = NULL;
1864 if (nested && popts) {
1865 opts = *popts;
1866 alloc_opts = *aopts;
1867 num_opts = *nopts;
1868 }
1869
1870 if (!opts) {
1871 alloc_opts = 8;
1872 opts = malloc(sizeof(char *) * alloc_opts);
1873 num_opts = 0;
1874 }
3b8b7135 1875
0c7e37a0 1876 stonewall = stonewall_flag;
7c124ac1 1877 do {
ccf8f127
JA
1878 /*
1879 * if skip_fgets is set, we already have loaded a line we
1880 * haven't handled.
1881 */
1882 if (!skip_fgets) {
50d16976
JA
1883 if (is_buf)
1884 p = strsep(&file, "\n");
1885 else
43f74792 1886 p = fgets(string, 4096, f);
ccf8f127
JA
1887 if (!p)
1888 break;
1889 }
cdc7f193 1890
ccf8f127 1891 skip_fgets = 0;
cdc7f193 1892 strip_blank_front(&p);
6c7c7da1 1893 strip_blank_end(p);
cdc7f193 1894
b3270921 1895 dprint(FD_PARSE, "%s\n", p);
ebac4655
JA
1896 if (is_empty_or_comment(p))
1897 continue;
b3270921
AK
1898
1899 if (!nested) {
1900 if (sscanf(p, "[%255[^\n]]", name) != 1) {
1901 if (inside_skip)
1902 continue;
1903
1904 log_err("fio: option <%s> outside of "
1905 "[] job section\n", p);
0e9c21a2 1906 ret = 1;
b3270921
AK
1907 break;
1908 }
1909
1910 name[strlen(name) - 1] = '\0';
1911
1912 if (skip_this_section(name)) {
1913 inside_skip = 1;
01f06b63 1914 continue;
b3270921
AK
1915 } else
1916 inside_skip = 0;
ebac4655 1917
b3270921 1918 dprint(FD_PARSE, "Parsing section [%s]\n", name);
7a4b80a1 1919
b3270921 1920 global = !strncmp(name, "global", 6);
01f06b63 1921
b3270921
AK
1922 if (dump_cmdline) {
1923 if (first_sect)
1924 log_info("fio ");
1925 if (!global)
1926 log_info("--name=%s ", name);
1927 first_sect = 0;
1928 }
ebac4655 1929
8983ce71 1930 td = get_new_job(global, &def_thread, false, name);
b3270921
AK
1931 if (!td) {
1932 ret = 1;
1933 break;
1934 }
cca73aa7 1935
b3270921
AK
1936 /*
1937 * Separate multiple job files by a stonewall
1938 */
1939 if (!global && stonewall) {
1940 td->o.stonewall = stonewall;
1941 stonewall = 0;
1942 }
ebac4655 1943
b3270921
AK
1944 num_opts = 0;
1945 memset(opts, 0, alloc_opts * sizeof(char *));
972cfd25 1946 }
b3270921
AK
1947 else
1948 skip_fgets = 1;
3b8b7135 1949
50d16976 1950 while (1) {
b3270921
AK
1951 if (!skip_fgets) {
1952 if (is_buf)
1953 p = strsep(&file, "\n");
1954 else
1955 p = fgets(string, 4096, f);
1956 if (!p)
1957 break;
1958 dprint(FD_PARSE, "%s", p);
1959 }
50d16976 1960 else
b3270921 1961 skip_fgets = 0;
50d16976 1962
ebac4655
JA
1963 if (is_empty_or_comment(p))
1964 continue;
e1f36503 1965
b6754f9d 1966 strip_blank_front(&p);
7c124ac1 1967
ccf8f127
JA
1968 /*
1969 * new section, break out and make sure we don't
1970 * fgets() a new line at the top.
1971 */
1972 if (p[0] == '[') {
b3270921
AK
1973 if (nested) {
1974 log_err("No new sections in included files\n");
1975 return 1;
1976 }
1977
ccf8f127 1978 skip_fgets = 1;
7c124ac1 1979 break;
ccf8f127 1980 }
7c124ac1 1981
4ae3f763 1982 strip_blank_end(p);
aea47d44 1983
b3270921 1984 if (!strncmp(p, "include", strlen("include"))) {
c0821a08
AK
1985 char *filename = p + strlen("include") + 1,
1986 *ts, *full_fn = NULL;
1987
1988 /*
1989 * Allow for the include filename
1990 * specification to be relative.
1991 */
1992 if (access(filename, F_OK) &&
1993 (ts = strrchr(file, '/'))) {
1994 int len = ts - file +
1995 strlen(filename) + 2;
1996
1997 if (!(full_fn = calloc(1, len))) {
1998 ret = ENOMEM;
1999 break;
2000 }
2001
2002 strncpy(full_fn,
2003 file, (ts - file) + 1);
2004 strncpy(full_fn + (ts - file) + 1,
2005 filename, strlen(filename));
2006 full_fn[len - 1] = 0;
2007 filename = full_fn;
2008 }
2009
2010 ret = __parse_jobs_ini(td, filename, is_buf,
2011 stonewall_flag, type, 1,
2012 name, &opts,
2013 &alloc_opts, &num_opts);
b3270921 2014
c0821a08
AK
2015 if (ret) {
2016 log_err("Error %d while parsing "
2017 "include file %s\n",
b3270921 2018 ret, filename);
b3270921 2019 }
c0821a08
AK
2020
2021 if (full_fn)
2022 free(full_fn);
2023
2024 if (ret)
2025 break;
2026
b3270921
AK
2027 continue;
2028 }
2029
3b8b7135
JA
2030 if (num_opts == alloc_opts) {
2031 alloc_opts <<= 1;
2032 opts = realloc(opts,
2033 alloc_opts * sizeof(char *));
2034 }
2035
2036 opts[num_opts] = strdup(p);
2037 num_opts++;
ebac4655 2038 }
ebac4655 2039
b3270921
AK
2040 if (nested) {
2041 *popts = opts;
2042 *aopts = alloc_opts;
2043 *nopts = num_opts;
2044 goto out;
2045 }
2046
c2292325
JA
2047 ret = fio_options_parse(td, opts, num_opts);
2048 if (!ret) {
2049 if (dump_cmdline)
2050 dump_opt_list(td);
2051
46bcd498 2052 ret = add_job(td, name, 0, 0, type);
c2292325 2053 } else {
b1508cf9
JA
2054 log_err("fio: job %s dropped\n", name);
2055 put_job(td);
45410acb 2056 }
3b8b7135
JA
2057
2058 for (i = 0; i < num_opts; i++)
2059 free(opts[i]);
2060 num_opts = 0;
7c124ac1 2061 } while (!ret);
ebac4655 2062
cca73aa7
JA
2063 if (dump_cmdline)
2064 log_info("\n");
2065
7e356b2d
JA
2066 i = 0;
2067 while (i < nr_job_sections) {
2068 free(job_sections[i]);
2069 i++;
2070 }
2071
2577594d 2072 free(opts);
b3270921
AK
2073out:
2074 free(string);
2075 if (!nested)
2076 free(name);
50d16976 2077 if (!is_buf && f != stdin)
5a729cbe 2078 fclose(f);
45410acb 2079 return ret;
ebac4655
JA
2080}
2081
b3270921
AK
2082int parse_jobs_ini(char *file, int is_buf, int stonewall_flag, int type)
2083{
2084 return __parse_jobs_ini(NULL, file, is_buf, stonewall_flag, type,
2085 0, NULL, NULL, NULL, NULL);
2086}
2087
ebac4655
JA
2088static int fill_def_thread(void)
2089{
2090 memset(&def_thread, 0, sizeof(def_thread));
66e19a38 2091 INIT_FLIST_HEAD(&def_thread.opt_list);
ebac4655 2092
375b2695 2093 fio_getaffinity(getpid(), &def_thread.o.cpumask);
8b28bd41 2094 def_thread.o.error_dump = 1;
25bd16ce 2095
ebac4655 2096 /*
ee738499 2097 * fill default options
ebac4655 2098 */
214e1eca 2099 fio_fill_default_options(&def_thread);
ebac4655
JA
2100 return 0;
2101}
2102
2236df3d
JA
2103static void show_debug_categories(void)
2104{
44acdcf4 2105#ifdef FIO_INC_DEBUG
447931d9 2106 const struct debug_level *dl = &debug_levels[0];
2236df3d
JA
2107 int curlen, first = 1;
2108
2109 curlen = 0;
2110 while (dl->name) {
2111 int has_next = (dl + 1)->name != NULL;
2112
2113 if (first || curlen + strlen(dl->name) >= 80) {
2114 if (!first) {
2115 printf("\n");
2116 curlen = 0;
2117 }
2118 curlen += printf("\t\t\t%s", dl->name);
2119 curlen += 3 * (8 - 1);
2120 if (has_next)
2121 curlen += printf(",");
2122 } else {
2123 curlen += printf("%s", dl->name);
2124 if (has_next)
2125 curlen += printf(",");
2126 }
2127 dl++;
2128 first = 0;
2129 }
2130 printf("\n");
44acdcf4 2131#endif
2236df3d
JA
2132}
2133
baa9fe6b
TK
2134/*
2135 * Following options aren't printed by usage().
2136 * --append-terse - Equivalent to --output-format=terse, see f6a7df53.
2137 * --latency-log - Deprecated option.
2138 */
45378b35 2139static void usage(const char *name)
4785f995 2140{
3d43382c 2141 printf("%s\n", fio_version_string);
45378b35 2142 printf("%s [options] [job options] <job file(s)>\n", name);
2236df3d
JA
2143 printf(" --debug=options\tEnable debug logging. May be one/more of:\n");
2144 show_debug_categories();
111e032d 2145 printf(" --parse-only\t\tParse options only, don't start any IO\n");
83881283 2146 printf(" --output\t\tWrite output to file\n");
d23ae827 2147 printf(" --bandwidth-log\tGenerate aggregate bandwidth logs\n");
83881283 2148 printf(" --minimal\t\tMinimal (terse) output\n");
95a12fbe
TK
2149 printf(" --output-format=type\tOutput format (terse,json,json+,normal)\n");
2150 printf(" --terse-version=type\tSet terse version output format"
2151 " (default 3, or 2 or 4)\n");
f3afa57e 2152 printf(" --version\t\tPrint version info and exit\n");
83881283 2153 printf(" --help\t\tPrint this page\n");
23893646 2154 printf(" --cpuclock-test\tPerform test/validation of CPU clock\n");
1a1822bf 2155 printf(" --crctest=[type]\tTest speed of checksum functions\n");
83881283 2156 printf(" --cmdhelp=cmd\t\tPrint command help, \"all\" for all of"
5ec10eaa 2157 " them\n");
de890a1e
SL
2158 printf(" --enghelp=engine\tPrint ioengine help, or list"
2159 " available ioengines\n");
2160 printf(" --enghelp=engine,cmd\tPrint help for an ioengine"
2161 " cmd\n");
83881283
JA
2162 printf(" --showcmd\t\tTurn a job file into command line options\n");
2163 printf(" --eta=when\t\tWhen ETA estimate should be printed\n");
2164 printf(" \t\tMay be \"always\", \"never\" or \"auto\"\n");
e382e661
JA
2165 printf(" --eta-newline=time\tForce a new line for every 'time'");
2166 printf(" period passed\n");
06464907
JA
2167 printf(" --status-interval=t\tForce full status dump every");
2168 printf(" 't' period passed\n");
83881283 2169 printf(" --readonly\t\tTurn on safety read-only checks, preventing"
5ec10eaa 2170 " writes\n");
95a12fbe
TK
2171 printf(" --section=name\tOnly run specified section in job file,"
2172 " multiple sections can be specified\n");
83881283 2173 printf(" --alloc-size=kb\tSet smalloc pool to this size in kb"
95a12fbe 2174 " (def 16384)\n");
83881283
JA
2175 printf(" --warnings-fatal\tFio parser warnings are fatal\n");
2176 printf(" --max-jobs=nr\t\tMaximum number of threads/processes to support\n");
2177 printf(" --server=args\t\tStart a backend fio server\n");
2178 printf(" --daemonize=pidfile\tBackground fio server, write pid to file\n");
95a12fbe 2179 printf(" --client=hostname\tTalk to remote backend(s) fio server at hostname\n");
323255cc 2180 printf(" --remote-config=file\tTell fio server to load this local job file\n");
f2a2ce0e
HL
2181 printf(" --idle-prof=option\tReport cpu idleness on a system or percpu basis\n"
2182 "\t\t\t(option=system,percpu) or run unit work\n"
2183 "\t\t\tcalibration only (option=calibrate)\n");
b26317c9
JA
2184#ifdef CONFIG_ZLIB
2185 printf(" --inflate-log=log\tInflate and output compressed log\n");
2186#endif
b63efd30 2187 printf(" --trigger-file=file\tExecute trigger cmd when file exists\n");
2ae7a90d 2188 printf(" --trigger-timeout=t\tExecute trigger at this time\n");
b63efd30
JA
2189 printf(" --trigger=cmd\t\tSet this command as local trigger\n");
2190 printf(" --trigger-remote=cmd\tSet this command as remote trigger\n");
d264264a 2191 printf(" --aux-path=path\tUse this path for fio state generated files\n");
d292596c 2192 printf("\nFio was written by Jens Axboe <axboe@kernel.dk>\n");
4785f995
JA
2193}
2194
79e48f72 2195#ifdef FIO_INC_DEBUG
447931d9 2196const struct debug_level debug_levels[] = {
0b8d11ed
JA
2197 { .name = "process",
2198 .help = "Process creation/exit logging",
2199 .shift = FD_PROCESS,
2200 },
2201 { .name = "file",
2202 .help = "File related action logging",
2203 .shift = FD_FILE,
2204 },
2205 { .name = "io",
2206 .help = "IO and IO engine action logging (offsets, queue, completions, etc)",
2207 .shift = FD_IO,
2208 },
2209 { .name = "mem",
2210 .help = "Memory allocation/freeing logging",
2211 .shift = FD_MEM,
2212 },
2213 { .name = "blktrace",
2214 .help = "blktrace action logging",
2215 .shift = FD_BLKTRACE,
2216 },
2217 { .name = "verify",
2218 .help = "IO verification action logging",
2219 .shift = FD_VERIFY,
2220 },
2221 { .name = "random",
2222 .help = "Random generation logging",
2223 .shift = FD_RANDOM,
2224 },
2225 { .name = "parse",
2226 .help = "Parser logging",
2227 .shift = FD_PARSE,
2228 },
2229 { .name = "diskutil",
2230 .help = "Disk utility logging actions",
2231 .shift = FD_DISKUTIL,
2232 },
2233 { .name = "job",
2234 .help = "Logging related to creating/destroying jobs",
2235 .shift = FD_JOB,
2236 },
2237 { .name = "mutex",
2238 .help = "Mutex logging",
2239 .shift = FD_MUTEX
2240 },
2241 { .name = "profile",
2242 .help = "Logging related to profiles",
2243 .shift = FD_PROFILE,
2244 },
2245 { .name = "time",
2246 .help = "Logging related to time keeping functions",
2247 .shift = FD_TIME,
2248 },
2249 { .name = "net",
2250 .help = "Network logging",
2251 .shift = FD_NET,
2252 },
3e260a46
JA
2253 { .name = "rate",
2254 .help = "Rate logging",
2255 .shift = FD_RATE,
2256 },
0c56718d
JA
2257 { .name = "compress",
2258 .help = "Log compression logging",
2259 .shift = FD_COMPRESS,
2260 },
16e56d25
VF
2261 { .name = "steadystate",
2262 .help = "Steady state detection logging",
2263 .shift = FD_STEADYSTATE,
2264 },
e569ca6b
VF
2265 { .name = "helperthread",
2266 .help = "Helper thread logging",
2267 .shift = FD_HELPERTHREAD,
2268 },
02444ad1 2269 { .name = NULL, },
ee56ad50
JA
2270};
2271
c09823ab 2272static int set_debug(const char *string)
ee56ad50 2273{
447931d9 2274 const struct debug_level *dl;
ee56ad50
JA
2275 char *p = (char *) string;
2276 char *opt;
2277 int i;
2278
2706fa00
JA
2279 if (!string)
2280 return 0;
2281
ee56ad50 2282 if (!strcmp(string, "?") || !strcmp(string, "help")) {
ee56ad50
JA
2283 log_info("fio: dumping debug options:");
2284 for (i = 0; debug_levels[i].name; i++) {
2285 dl = &debug_levels[i];
2286 log_info("%s,", dl->name);
2287 }
bd6f78b2 2288 log_info("all\n");
c09823ab 2289 return 1;
ee56ad50
JA
2290 }
2291
2292 while ((opt = strsep(&p, ",")) != NULL) {
2293 int found = 0;
2294
5e1d306e
JA
2295 if (!strncmp(opt, "all", 3)) {
2296 log_info("fio: set all debug options\n");
2297 fio_debug = ~0UL;
2298 continue;
2299 }
2300
ee56ad50
JA
2301 for (i = 0; debug_levels[i].name; i++) {
2302 dl = &debug_levels[i];
5e1d306e
JA
2303 found = !strncmp(opt, dl->name, strlen(dl->name));
2304 if (!found)
2305 continue;
2306
2307 if (dl->shift == FD_JOB) {
2308 opt = strchr(opt, ':');
2309 if (!opt) {
2310 log_err("fio: missing job number\n");
2311 break;
2312 }
2313 opt++;
2314 fio_debug_jobno = atoi(opt);
2315 log_info("fio: set debug jobno %d\n",
2316 fio_debug_jobno);
2317 } else {
ee56ad50 2318 log_info("fio: set debug option %s\n", opt);
bd6f78b2 2319 fio_debug |= (1UL << dl->shift);
ee56ad50 2320 }
5e1d306e 2321 break;
ee56ad50
JA
2322 }
2323
2324 if (!found)
2325 log_err("fio: debug mask %s not found\n", opt);
2326 }
c09823ab 2327 return 0;
ee56ad50 2328}
79e48f72 2329#else
69b98d4c 2330static int set_debug(const char *string)
79e48f72
JA
2331{
2332 log_err("fio: debug tracing not included in build\n");
c09823ab 2333 return 1;
79e48f72
JA
2334}
2335#endif
9ac8a797 2336
4c6107ff
JA
2337static void fio_options_fill_optstring(void)
2338{
2339 char *ostr = cmd_optstr;
2340 int i, c;
2341
2342 c = i = 0;
2343 while (l_opts[i].name) {
2344 ostr[c++] = l_opts[i].val;
2345 if (l_opts[i].has_arg == required_argument)
2346 ostr[c++] = ':';
2347 else if (l_opts[i].has_arg == optional_argument) {
2348 ostr[c++] = ':';
2349 ostr[c++] = ':';
2350 }
2351 i++;
2352 }
2353 ostr[c] = '\0';
2354}
2355
c2c94585
JA
2356static int client_flag_set(char c)
2357{
2358 int i;
2359
2360 i = 0;
2361 while (l_opts[i].name) {
2362 int val = l_opts[i].val;
2363
2364 if (c == (val & 0xff))
2365 return (val & FIO_CLIENT_FLAG);
2366
2367 i++;
2368 }
2369
2370 return 0;
2371}
2372
10aa136b 2373static void parse_cmd_client(void *client, char *opt)
7a4b8240 2374{
fa2ea806 2375 fio_client_add_cmd_option(client, opt);
7a4b8240
JA
2376}
2377
a893c261
JA
2378static void show_closest_option(const char *name)
2379{
2380 int best_option, best_distance;
2381 int i, distance;
2382
2383 while (*name == '-')
2384 name++;
2385
2386 best_option = -1;
2387 best_distance = INT_MAX;
2388 i = 0;
2389 while (l_opts[i].name) {
2390 distance = string_distance(name, l_opts[i].name);
2391 if (distance < best_distance) {
2392 best_distance = distance;
2393 best_option = i;
2394 }
2395 i++;
2396 }
2397
3701636d 2398 if (best_option != -1 && string_distance_ok(name, best_distance))
a893c261
JA
2399 log_err("Did you mean %s?\n", l_opts[best_option].name);
2400}
2401
a666cab8
JA
2402static int parse_output_format(const char *optarg)
2403{
2404 char *p, *orig, *opt;
2405 int ret = 0;
2406
2407 p = orig = strdup(optarg);
2408
2409 output_format = 0;
2410
2411 while ((opt = strsep(&p, ",")) != NULL) {
2412 if (!strcmp(opt, "minimal") ||
2413 !strcmp(opt, "terse") ||
2414 !strcmp(opt, "csv"))
2415 output_format |= FIO_OUTPUT_TERSE;
2416 else if (!strcmp(opt, "json"))
2417 output_format |= FIO_OUTPUT_JSON;
513e37ee
VF
2418 else if (!strcmp(opt, "json+"))
2419 output_format |= (FIO_OUTPUT_JSON | FIO_OUTPUT_JSON_PLUS);
a666cab8
JA
2420 else if (!strcmp(opt, "normal"))
2421 output_format |= FIO_OUTPUT_NORMAL;
2422 else {
2423 log_err("fio: invalid output format %s\n", opt);
2424 ret = 1;
2425 break;
2426 }
2427 }
2428
2429 free(orig);
2430 return ret;
2431}
2432
46bcd498 2433int parse_cmd_line(int argc, char *argv[], int client_type)
ebac4655 2434{
b4692828 2435 struct thread_data *td = NULL;
c09823ab 2436 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
4c6107ff 2437 char *ostr = cmd_optstr;
977b9596 2438 char *pid_file = NULL;
9bae26e8 2439 void *cur_client = NULL;
81179eec 2440 int backend = 0;
ebac4655 2441
c2c94585
JA
2442 /*
2443 * Reset optind handling, since we may call this multiple times
2444 * for the backend.
2445 */
2446 optind = 1;
7a4b8240 2447
c2c94585
JA
2448 while ((c = getopt_long_only(argc, argv, ostr, l_opts, &lidx)) != -1) {
2449 if ((c & FIO_CLIENT_FLAG) || client_flag_set(c)) {
fa2ea806 2450 parse_cmd_client(cur_client, argv[optind - 1]);
7a4b8240
JA
2451 c &= ~FIO_CLIENT_FLAG;
2452 }
2453
ebac4655 2454 switch (c) {
2b386d25
JA
2455 case 'a':
2456 smalloc_pool_size = atoi(optarg);
52d892b2 2457 smalloc_pool_size <<= 10;
5f9454a2 2458 sinit();
2b386d25 2459 break;
b4692828 2460 case 'l':
cb7e0ace
JA
2461 log_err("fio: --latency-log is deprecated. Use per-job latency log options.\n");
2462 do_exit++;
2463 exit_val = 1;
b4692828 2464 break;
3d73e5a9 2465 case 'b':
b4692828
JA
2466 write_bw_log = 1;
2467 break;
34b1b5c6
JA
2468 case 'o': {
2469 FILE *tmp;
2470
988da120 2471 if (f_out && f_out != stdout)
5e1d8745
JA
2472 fclose(f_out);
2473
34b1b5c6
JA
2474 tmp = fopen(optarg, "w+");
2475 if (!tmp) {
2476 log_err("fio: output file open error: %s\n", strerror(errno));
2477 exit_val = 1;
2478 do_exit++;
2479 break;
b4692828 2480 }
34b1b5c6 2481 f_err = f_out = tmp;
b4692828 2482 break;
34b1b5c6 2483 }
b4692828 2484 case 'm':
f3afa57e 2485 output_format = FIO_OUTPUT_TERSE;
b4692828 2486 break;
f3afa57e 2487 case 'F':
a666cab8
JA
2488 if (parse_output_format(optarg)) {
2489 log_err("fio: failed parsing output-format\n");
2490 exit_val = 1;
2491 do_exit++;
2492 break;
2493 }
2b8c71b0 2494 break;
f6a7df53
JA
2495 case 'f':
2496 output_format |= FIO_OUTPUT_TERSE;
2497 break;
b4692828 2498 case 'h':
1201b24a 2499 did_arg = true;
7874f8b7 2500 if (!cur_client) {
c2c94585 2501 usage(argv[0]);
7874f8b7
JA
2502 do_exit++;
2503 }
c2c94585 2504 break;
fd28ca49 2505 case 'c':
1201b24a 2506 did_arg = true;
7874f8b7 2507 if (!cur_client) {
c2c94585 2508 fio_show_option_help(optarg);
7874f8b7
JA
2509 do_exit++;
2510 }
c2c94585 2511 break;
de890a1e 2512 case 'i':
1201b24a 2513 did_arg = true;
de890a1e
SL
2514 if (!cur_client) {
2515 fio_show_ioengine_help(optarg);
2516 do_exit++;
2517 }
2518 break;
cca73aa7 2519 case 's':
1201b24a 2520 did_arg = true;
cca73aa7
JA
2521 dump_cmdline = 1;
2522 break;
724e4435
JA
2523 case 'r':
2524 read_only = 1;
2525 break;
b4692828 2526 case 'v':
1201b24a 2527 did_arg = true;
7874f8b7 2528 if (!cur_client) {
3d43382c 2529 log_info("%s\n", fio_version_string);
7874f8b7
JA
2530 do_exit++;
2531 }
c2c94585 2532 break;
f57a9c59
JA
2533 case 'V':
2534 terse_version = atoi(optarg);
a2c95580 2535 if (!(terse_version >= 2 && terse_version <= 5)) {
f57a9c59
JA
2536 log_err("fio: bad terse version format\n");
2537 exit_val = 1;
2538 do_exit++;
2539 }
2540 break;
e592a06b
AC
2541 case 'e':
2542 if (!strcmp("always", optarg))
2543 eta_print = FIO_ETA_ALWAYS;
2544 else if (!strcmp("never", optarg))
2545 eta_print = FIO_ETA_NEVER;
2546 break;
e382e661
JA
2547 case 'E': {
2548 long long t = 0;
2549
88038bc7 2550 if (check_str_time(optarg, &t, 1)) {
e382e661
JA
2551 log_err("fio: failed parsing eta time %s\n", optarg);
2552 exit_val = 1;
2553 do_exit++;
db37d890 2554 break;
e382e661 2555 }
88038bc7 2556 eta_new_line = t / 1000;
db37d890
JA
2557 if (!eta_new_line) {
2558 log_err("fio: eta new line time too short\n");
2559 exit_val = 1;
2560 do_exit++;
2561 }
2562 break;
2563 }
2564 case 'O': {
2565 long long t = 0;
2566
2567 if (check_str_time(optarg, &t, 1)) {
2568 log_err("fio: failed parsing eta interval %s\n", optarg);
2569 exit_val = 1;
2570 do_exit++;
2571 break;
2572 }
2573 eta_interval_msec = t / 1000;
2574 if (eta_interval_msec < DISK_UTIL_MSEC) {
2575 log_err("fio: eta interval time too short (%umsec min)\n", DISK_UTIL_MSEC);
2576 exit_val = 1;
2577 do_exit++;
2578 }
e382e661
JA
2579 break;
2580 }
ee56ad50 2581 case 'd':
c09823ab
JA
2582 if (set_debug(optarg))
2583 do_exit++;
ee56ad50 2584 break;
111e032d 2585 case 'P':
1201b24a 2586 did_arg = true;
111e032d
JA
2587 parse_only = 1;
2588 break;
ad0a2735
JA
2589 case 'x': {
2590 size_t new_size;
2591
01f06b63 2592 if (!strcmp(optarg, "global")) {
5ec10eaa
JA
2593 log_err("fio: can't use global as only "
2594 "section\n");
c09823ab
JA
2595 do_exit++;
2596 exit_val = 1;
01f06b63
JA
2597 break;
2598 }
ad0a2735
JA
2599 new_size = (nr_job_sections + 1) * sizeof(char *);
2600 job_sections = realloc(job_sections, new_size);
2601 job_sections[nr_job_sections] = strdup(optarg);
2602 nr_job_sections++;
01f06b63 2603 break;
ad0a2735 2604 }
b26317c9
JA
2605#ifdef CONFIG_ZLIB
2606 case 'X':
2607 exit_val = iolog_file_inflate(optarg);
1201b24a 2608 did_arg = true;
b26317c9
JA
2609 do_exit++;
2610 break;
2611#endif
9ac8a797 2612 case 'p':
1201b24a 2613 did_arg = true;
4af7c007
JA
2614 if (exec_profile)
2615 free(exec_profile);
07b3232d 2616 exec_profile = strdup(optarg);
9ac8a797 2617 break;
b4692828 2618 case FIO_GETOPT_JOB: {
5ec10eaa 2619 const char *opt = l_opts[lidx].name;
b4692828
JA
2620 char *val = optarg;
2621
c2b1e753 2622 if (!strncmp(opt, "name", 4) && td) {
46bcd498 2623 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
66251554 2624 if (ret)
4a4ac4e3 2625 goto out_free;
c2b1e753 2626 td = NULL;
1201b24a 2627 did_arg = true;
c2b1e753 2628 }
b4692828 2629 if (!td) {
01f06b63 2630 int is_section = !strncmp(opt, "name", 4);
3106f220
JA
2631 int global = 0;
2632
01f06b63 2633 if (!is_section || !strncmp(val, "global", 6))
3106f220 2634 global = 1;
c2b1e753 2635
01f06b63
JA
2636 if (is_section && skip_this_section(val))
2637 continue;
2638
8983ce71 2639 td = get_new_job(global, &def_thread, true, NULL);
f6ff24cb
JA
2640 if (!td || ioengine_load(td)) {
2641 if (td) {
2642 put_job(td);
2643 td = NULL;
2644 }
2645 do_exit++;
205a719e 2646 exit_val = 1;
f6ff24cb
JA
2647 break;
2648 }
de890a1e 2649 fio_options_set_ioengine_opts(l_opts, td);
b4692828 2650 }
38d0adb0 2651
9d918187
JA
2652 if ((!val || !strlen(val)) &&
2653 l_opts[lidx].has_arg == required_argument) {
2654 log_err("fio: option %s requires an argument\n", opt);
2655 ret = 1;
2656 } else
2657 ret = fio_cmd_option_parse(td, opt, val);
2658
bfb3ea22
JA
2659 if (ret) {
2660 if (td) {
2661 put_job(td);
2662 td = NULL;
2663 }
a88c8c14 2664 do_exit++;
205a719e 2665 exit_val = 1;
bfb3ea22 2666 }
de890a1e
SL
2667
2668 if (!ret && !strcmp(opt, "ioengine")) {
f6ff24cb 2669 if (ioengine_load(td)) {
342f570e
JA
2670 put_job(td);
2671 td = NULL;
f6ff24cb 2672 do_exit++;
205a719e 2673 exit_val = 1;
f6ff24cb
JA
2674 break;
2675 }
de890a1e
SL
2676 fio_options_set_ioengine_opts(l_opts, td);
2677 }
2678 break;
2679 }
2680 case FIO_GETOPT_IOENGINE: {
2681 const char *opt = l_opts[lidx].name;
2682 char *val = optarg;
b1ed74e0
JA
2683
2684 if (!td)
2685 break;
2686
de890a1e 2687 ret = fio_cmd_ioengine_option_parse(td, opt, val);
b4692828
JA
2688 break;
2689 }
a9523c6f
JA
2690 case 'w':
2691 warnings_fatal = 1;
2692 break;
fca70358
JA
2693 case 'j':
2694 max_jobs = atoi(optarg);
2695 if (!max_jobs || max_jobs > REAL_MAX_JOBS) {
2696 log_err("fio: invalid max jobs: %d\n", max_jobs);
2697 do_exit++;
2698 exit_val = 1;
2699 }
2700 break;
50d16976 2701 case 'S':
1201b24a 2702 did_arg = true;
c8931876 2703#ifndef CONFIG_NO_SHM
a37f69b7 2704 if (nr_clients) {
132159a5
JA
2705 log_err("fio: can't be both client and server\n");
2706 do_exit++;
2707 exit_val = 1;
2708 break;
2709 }
87aa8f19 2710 if (optarg)
bebe6398 2711 fio_server_set_arg(optarg);
50d16976 2712 is_backend = 1;
81179eec 2713 backend = 1;
c8931876
JA
2714#else
2715 log_err("fio: client/server requires SHM support\n");
2716 do_exit++;
2717 exit_val = 1;
2718#endif
50d16976 2719 break;
e46d8091 2720 case 'D':
6cfe9a8c
JA
2721 if (pid_file)
2722 free(pid_file);
402668f3 2723 pid_file = strdup(optarg);
e46d8091 2724 break;
f2a2ce0e
HL
2725 case 'I':
2726 if ((ret = fio_idle_prof_parse_opt(optarg))) {
2727 /* exit on error and calibration only */
1201b24a 2728 did_arg = true;
f2a2ce0e 2729 do_exit++;
7d8ea970 2730 if (ret == -1)
f2a2ce0e
HL
2731 exit_val = 1;
2732 }
2733 break;
132159a5 2734 case 'C':
1201b24a 2735 did_arg = true;
132159a5
JA
2736 if (is_backend) {
2737 log_err("fio: can't be both client and server\n");
2738 do_exit++;
2739 exit_val = 1;
2740 break;
2741 }
08633c32
BE
2742 /* if --client parameter contains a pathname */
2743 if (0 == access(optarg, R_OK)) {
2744 /* file contains a list of host addrs or names */
2972708f 2745 char hostaddr[PATH_MAX] = {0};
08633c32
BE
2746 char formatstr[8];
2747 FILE * hostf = fopen(optarg, "r");
2748 if (!hostf) {
2749 log_err("fio: could not open client list file %s for read\n", optarg);
2750 do_exit++;
2751 exit_val = 1;
2752 break;
2753 }
2972708f
JA
2754 sprintf(formatstr, "%%%ds", PATH_MAX - 1);
2755 /*
2756 * read at most PATH_MAX-1 chars from each
2757 * record in this file
2758 */
08633c32
BE
2759 while (fscanf(hostf, formatstr, hostaddr) == 1) {
2760 /* expect EVERY host in file to be valid */
2761 if (fio_client_add(&fio_client_ops, hostaddr, &cur_client)) {
2762 log_err("fio: failed adding client %s from file %s\n", hostaddr, optarg);
2763 do_exit++;
2764 exit_val = 1;
2765 break;
2766 }
2767 }
2768 fclose(hostf);
2769 break; /* no possibility of job file for "this client only" */
2770 }
a5276616 2771 if (fio_client_add(&fio_client_ops, optarg, &cur_client)) {
bebe6398
JA
2772 log_err("fio: failed adding client %s\n", optarg);
2773 do_exit++;
2774 exit_val = 1;
2775 break;
2776 }
14ea90ed
JA
2777 /*
2778 * If the next argument exists and isn't an option,
2779 * assume it's a job file for this client only.
2780 */
2781 while (optind < argc) {
2782 if (!strncmp(argv[optind], "--", 2) ||
2783 !strncmp(argv[optind], "-", 1))
2784 break;
2785
bb781643 2786 if (fio_client_add_ini_file(cur_client, argv[optind], false))
323255cc 2787 break;
14ea90ed
JA
2788 optind++;
2789 }
132159a5 2790 break;
323255cc 2791 case 'R':
1201b24a 2792 did_arg = true;
bb781643 2793 if (fio_client_add_ini_file(cur_client, optarg, true)) {
323255cc
JA
2794 do_exit++;
2795 exit_val = 1;
2796 }
2797 break;
7d11f871 2798 case 'T':
1201b24a 2799 did_arg = true;
7d11f871 2800 do_exit++;
aad918e4 2801 exit_val = fio_monotonic_clocktest(1);
7d11f871 2802 break;
fec0f21c 2803 case 'G':
1201b24a 2804 did_arg = true;
fec0f21c
JA
2805 do_exit++;
2806 exit_val = fio_crctest(optarg);
2807 break;
b76d85a4
JA
2808 case 'M':
2809 did_arg = true;
2810 do_exit++;
2811 exit_val = fio_memcpy_test(optarg);
2812 break;
06464907
JA
2813 case 'L': {
2814 long long val;
2815
88038bc7 2816 if (check_str_time(optarg, &val, 1)) {
06464907
JA
2817 log_err("fio: failed parsing time %s\n", optarg);
2818 do_exit++;
2819 exit_val = 1;
2820 break;
2821 }
969357b0
JA
2822 if (val < 1000) {
2823 log_err("fio: status interval too small\n");
2824 do_exit++;
2825 exit_val = 1;
2826 }
88038bc7 2827 status_interval = val / 1000;
06464907
JA
2828 break;
2829 }
b63efd30 2830 case 'W':
f9cbae9e
JA
2831 if (trigger_file)
2832 free(trigger_file);
b63efd30
JA
2833 trigger_file = strdup(optarg);
2834 break;
2835 case 'H':
f9cbae9e
JA
2836 if (trigger_cmd)
2837 free(trigger_cmd);
b63efd30
JA
2838 trigger_cmd = strdup(optarg);
2839 break;
2840 case 'J':
f9cbae9e
JA
2841 if (trigger_remote_cmd)
2842 free(trigger_remote_cmd);
b63efd30 2843 trigger_remote_cmd = strdup(optarg);
ca09be4b 2844 break;
d264264a
JA
2845 case 'K':
2846 if (aux_path)
2847 free(aux_path);
2848 aux_path = strdup(optarg);
2849 break;
ca09be4b
JA
2850 case 'B':
2851 if (check_str_time(optarg, &trigger_timeout, 1)) {
2852 log_err("fio: failed parsing time %s\n", optarg);
2853 do_exit++;
2854 exit_val = 1;
2855 }
2856 trigger_timeout /= 1000000;
2857 break;
798827c8
JA
2858 case '?':
2859 log_err("%s: unrecognized option '%s'\n", argv[0],
2860 argv[optind - 1]);
a893c261 2861 show_closest_option(argv[optind - 1]);
b4692828 2862 default:
c09823ab
JA
2863 do_exit++;
2864 exit_val = 1;
b4692828 2865 break;
ebac4655 2866 }
c7d5c941
JA
2867 if (do_exit)
2868 break;
ebac4655 2869 }
c9fad893 2870
0b14f0a8
JA
2871 if (do_exit && !(is_backend || nr_clients))
2872 exit(exit_val);
536582bf 2873
fb296043
JA
2874 if (nr_clients && fio_clients_connect())
2875 exit(1);
132159a5 2876
81179eec 2877 if (is_backend && backend)
402668f3 2878 return fio_start_server(pid_file);
b8ba87ac
JA
2879 else if (pid_file)
2880 free(pid_file);
50d16976 2881
b4692828 2882 if (td) {
7d8ea970 2883 if (!ret) {
46bcd498 2884 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
7d8ea970 2885 if (ret)
3bc20ebd 2886 exit(1);
7d8ea970 2887 }
972cfd25 2888 }
774a6177 2889
7874f8b7 2890 while (!ret && optind < argc) {
b4692828
JA
2891 ini_idx++;
2892 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
2893 ini_file[ini_idx - 1] = strdup(argv[optind]);
2894 optind++;
eb8bbf48 2895 }
972cfd25 2896
4a4ac4e3 2897out_free:
972cfd25 2898 return ini_idx;
ebac4655
JA
2899}
2900
0420ba6a 2901int fio_init_options(void)
ebac4655 2902{
b4692828
JA
2903 f_out = stdout;
2904 f_err = stderr;
2905
4c6107ff 2906 fio_options_fill_optstring();
5ec10eaa 2907 fio_options_dup_and_init(l_opts);
b4692828 2908
9d9eb2e7
JA
2909 atexit(free_shm);
2910
ebac4655
JA
2911 if (fill_def_thread())
2912 return 1;
2913
0420ba6a
JA
2914 return 0;
2915}
2916
51167799
JA
2917extern int fio_check_options(struct thread_options *);
2918
0420ba6a
JA
2919int parse_options(int argc, char *argv[])
2920{
46bcd498 2921 const int type = FIO_CLIENT_TYPE_CLI;
0420ba6a
JA
2922 int job_files, i;
2923
2924 if (fio_init_options())
2925 return 1;
51167799
JA
2926 if (fio_test_cconv(&def_thread.o))
2927 log_err("fio: failed internal cconv test\n");
0420ba6a 2928
46bcd498 2929 job_files = parse_cmd_line(argc, argv, type);
ebac4655 2930
cdf54d85
JA
2931 if (job_files > 0) {
2932 for (i = 0; i < job_files; i++) {
bc4f5ef6 2933 if (i && fill_def_thread())
132159a5 2934 return 1;
cdf54d85
JA
2935 if (nr_clients) {
2936 if (fio_clients_send_ini(ini_file[i]))
2937 return 1;
2938 free(ini_file[i]);
2939 } else if (!is_backend) {
46bcd498 2940 if (parse_jobs_ini(ini_file[i], 0, i, type))
cdf54d85
JA
2941 return 1;
2942 free(ini_file[i]);
2943 }
132159a5 2944 }
14ea90ed
JA
2945 } else if (nr_clients) {
2946 if (fill_def_thread())
2947 return 1;
2948 if (fio_clients_send_ini(NULL))
2949 return 1;
972cfd25 2950 }
ebac4655 2951
88c6ed80 2952 free(ini_file);
7e356b2d 2953 fio_options_free(&def_thread);
bcbfeefa 2954 filesetup_mem_free();
b4692828
JA
2955
2956 if (!thread_number) {
f9633d72 2957 if (parse_dryrun())
cca73aa7 2958 return 0;
07b3232d
JA
2959 if (exec_profile)
2960 return 0;
a37f69b7 2961 if (is_backend || nr_clients)
5c341e9a 2962 return 0;
085399db
JA
2963 if (did_arg)
2964 return 0;
cca73aa7 2965
4bb7a775 2966 log_err("No job(s) defined\n\n");
a2e4a093
JA
2967 usage(argv[0]);
2968 return 1;
b4692828
JA
2969 }
2970
129fb2d4 2971 if (output_format & FIO_OUTPUT_NORMAL)
3d43382c 2972 log_info("%s\n", fio_version_string);
f6dea4d3 2973
ebac4655
JA
2974 return 0;
2975}
588b7f09
JA
2976
2977void options_default_fill(struct thread_options *o)
2978{
2979 memcpy(o, &def_thread.o, sizeof(*o));
2980}
c2292325 2981
66e19a38 2982struct thread_data *get_global_options(void)
c2292325 2983{
66e19a38 2984 return &def_thread;
c2292325 2985}