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