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