configure: add gettid() test
[fio.git] / options.c
... / ...
CommitLineData
1#include <stdio.h>
2#include <stdlib.h>
3#include <unistd.h>
4#include <ctype.h>
5#include <string.h>
6#include <assert.h>
7#include <sys/stat.h>
8#include <netinet/in.h>
9
10#include "fio.h"
11#include "verify.h"
12#include "parse.h"
13#include "lib/pattern.h"
14#include "options.h"
15#include "optgroup.h"
16
17char client_sockaddr_str[INET6_ADDRSTRLEN] = { 0 };
18
19#define cb_data_to_td(data) container_of(data, struct thread_data, o)
20
21static struct pattern_fmt_desc fmt_desc[] = {
22 {
23 .fmt = "%o",
24 .len = FIELD_SIZE(struct io_u *, offset),
25 .paste = paste_blockoff
26 }
27};
28
29/*
30 * Check if mmap/mmaphuge has a :/foo/bar/file at the end. If so, return that.
31 */
32static char *get_opt_postfix(const char *str)
33{
34 char *p = strstr(str, ":");
35
36 if (!p)
37 return NULL;
38
39 p++;
40 strip_blank_front(&p);
41 strip_blank_end(p);
42 return strdup(p);
43}
44
45static int bs_cmp(const void *p1, const void *p2)
46{
47 const struct bssplit *bsp1 = p1;
48 const struct bssplit *bsp2 = p2;
49
50 return (int) bsp1->perc - (int) bsp2->perc;
51}
52
53struct split {
54 unsigned int nr;
55 unsigned long long val1[ZONESPLIT_MAX];
56 unsigned long long val2[ZONESPLIT_MAX];
57};
58
59static int split_parse_ddir(struct thread_options *o, struct split *split,
60 char *str, bool absolute, unsigned int max_splits)
61{
62 unsigned long long perc;
63 unsigned int i;
64 long long val;
65 char *fname;
66
67 split->nr = 0;
68
69 i = 0;
70 while ((fname = strsep(&str, ":")) != NULL) {
71 char *perc_str;
72
73 if (!strlen(fname))
74 break;
75
76 perc_str = strstr(fname, "/");
77 if (perc_str) {
78 *perc_str = '\0';
79 perc_str++;
80 if (absolute) {
81 if (str_to_decimal(perc_str, &val, 1, o, 0, 0)) {
82 log_err("fio: split conversion failed\n");
83 return 1;
84 }
85 perc = val;
86 } else {
87 perc = atoi(perc_str);
88 if (perc > 100)
89 perc = 100;
90 else if (!perc)
91 perc = -1U;
92 }
93 } else {
94 if (absolute)
95 perc = 0;
96 else
97 perc = -1U;
98 }
99
100 if (str_to_decimal(fname, &val, 1, o, 0, 0)) {
101 log_err("fio: split conversion failed\n");
102 return 1;
103 }
104
105 split->val1[i] = val;
106 split->val2[i] = perc;
107 i++;
108 if (i == max_splits) {
109 log_err("fio: hit max of %d split entries\n", i);
110 break;
111 }
112 }
113
114 split->nr = i;
115 return 0;
116}
117
118static int bssplit_ddir(struct thread_options *o, enum fio_ddir ddir, char *str,
119 bool data)
120{
121 unsigned int i, perc, perc_missing;
122 unsigned long long max_bs, min_bs;
123 struct split split;
124
125 memset(&split, 0, sizeof(split));
126
127 if (split_parse_ddir(o, &split, str, data, BSSPLIT_MAX))
128 return 1;
129 if (!split.nr)
130 return 0;
131
132 max_bs = 0;
133 min_bs = -1;
134 o->bssplit[ddir] = malloc(split.nr * sizeof(struct bssplit));
135 o->bssplit_nr[ddir] = split.nr;
136 for (i = 0; i < split.nr; i++) {
137 if (split.val1[i] > max_bs)
138 max_bs = split.val1[i];
139 if (split.val1[i] < min_bs)
140 min_bs = split.val1[i];
141
142 o->bssplit[ddir][i].bs = split.val1[i];
143 o->bssplit[ddir][i].perc =split.val2[i];
144 }
145
146 /*
147 * Now check if the percentages add up, and how much is missing
148 */
149 perc = perc_missing = 0;
150 for (i = 0; i < o->bssplit_nr[ddir]; i++) {
151 struct bssplit *bsp = &o->bssplit[ddir][i];
152
153 if (bsp->perc == -1U)
154 perc_missing++;
155 else
156 perc += bsp->perc;
157 }
158
159 if (perc > 100 && perc_missing > 1) {
160 log_err("fio: bssplit percentages add to more than 100%%\n");
161 free(o->bssplit[ddir]);
162 o->bssplit[ddir] = NULL;
163 return 1;
164 }
165
166 /*
167 * If values didn't have a percentage set, divide the remains between
168 * them.
169 */
170 if (perc_missing) {
171 if (perc_missing == 1 && o->bssplit_nr[ddir] == 1)
172 perc = 100;
173 for (i = 0; i < o->bssplit_nr[ddir]; i++) {
174 struct bssplit *bsp = &o->bssplit[ddir][i];
175
176 if (bsp->perc == -1U)
177 bsp->perc = (100 - perc) / perc_missing;
178 }
179 }
180
181 o->min_bs[ddir] = min_bs;
182 o->max_bs[ddir] = max_bs;
183
184 /*
185 * now sort based on percentages, for ease of lookup
186 */
187 qsort(o->bssplit[ddir], o->bssplit_nr[ddir], sizeof(struct bssplit), bs_cmp);
188 return 0;
189}
190
191typedef int (split_parse_fn)(struct thread_options *, enum fio_ddir, char *, bool);
192
193static int str_split_parse(struct thread_data *td, char *str,
194 split_parse_fn *fn, bool data)
195{
196 char *odir, *ddir;
197 int ret = 0;
198
199 odir = strchr(str, ',');
200 if (odir) {
201 ddir = strchr(odir + 1, ',');
202 if (ddir) {
203 ret = fn(&td->o, DDIR_TRIM, ddir + 1, data);
204 if (!ret)
205 *ddir = '\0';
206 } else {
207 char *op;
208
209 op = strdup(odir + 1);
210 ret = fn(&td->o, DDIR_TRIM, op, data);
211
212 free(op);
213 }
214 if (!ret)
215 ret = fn(&td->o, DDIR_WRITE, odir + 1, data);
216 if (!ret) {
217 *odir = '\0';
218 ret = fn(&td->o, DDIR_READ, str, data);
219 }
220 } else {
221 char *op;
222
223 op = strdup(str);
224 ret = fn(&td->o, DDIR_WRITE, op, data);
225 free(op);
226
227 if (!ret) {
228 op = strdup(str);
229 ret = fn(&td->o, DDIR_TRIM, op, data);
230 free(op);
231 }
232 if (!ret)
233 ret = fn(&td->o, DDIR_READ, str, data);
234 }
235
236 return ret;
237}
238
239static int str_bssplit_cb(void *data, const char *input)
240{
241 struct thread_data *td = cb_data_to_td(data);
242 char *str, *p;
243 int ret = 0;
244
245 p = str = strdup(input);
246
247 strip_blank_front(&str);
248 strip_blank_end(str);
249
250 ret = str_split_parse(td, str, bssplit_ddir, false);
251
252 if (parse_dryrun()) {
253 int i;
254
255 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
256 free(td->o.bssplit[i]);
257 td->o.bssplit[i] = NULL;
258 td->o.bssplit_nr[i] = 0;
259 }
260 }
261
262 free(p);
263 return ret;
264}
265
266static int str2error(char *str)
267{
268 const char *err[] = { "EPERM", "ENOENT", "ESRCH", "EINTR", "EIO",
269 "ENXIO", "E2BIG", "ENOEXEC", "EBADF",
270 "ECHILD", "EAGAIN", "ENOMEM", "EACCES",
271 "EFAULT", "ENOTBLK", "EBUSY", "EEXIST",
272 "EXDEV", "ENODEV", "ENOTDIR", "EISDIR",
273 "EINVAL", "ENFILE", "EMFILE", "ENOTTY",
274 "ETXTBSY","EFBIG", "ENOSPC", "ESPIPE",
275 "EROFS","EMLINK", "EPIPE", "EDOM", "ERANGE" };
276 int i = 0, num = sizeof(err) / sizeof(char *);
277
278 while (i < num) {
279 if (!strcmp(err[i], str))
280 return i + 1;
281 i++;
282 }
283 return 0;
284}
285
286static int ignore_error_type(struct thread_data *td, enum error_type_bit etype,
287 char *str)
288{
289 unsigned int i;
290 int *error;
291 char *fname;
292
293 if (etype >= ERROR_TYPE_CNT) {
294 log_err("Illegal error type\n");
295 return 1;
296 }
297
298 td->o.ignore_error_nr[etype] = 4;
299 error = calloc(4, sizeof(int));
300
301 i = 0;
302 while ((fname = strsep(&str, ":")) != NULL) {
303
304 if (!strlen(fname))
305 break;
306
307 /*
308 * grow struct buffer, if needed
309 */
310 if (i == td->o.ignore_error_nr[etype]) {
311 td->o.ignore_error_nr[etype] <<= 1;
312 error = realloc(error, td->o.ignore_error_nr[etype]
313 * sizeof(int));
314 }
315 if (fname[0] == 'E') {
316 error[i] = str2error(fname);
317 } else {
318 error[i] = atoi(fname);
319 if (error[i] < 0)
320 error[i] = -error[i];
321 }
322 if (!error[i]) {
323 log_err("Unknown error %s, please use number value\n",
324 fname);
325 td->o.ignore_error_nr[etype] = 0;
326 free(error);
327 return 1;
328 }
329 i++;
330 }
331 if (i) {
332 td->o.continue_on_error |= 1 << etype;
333 td->o.ignore_error_nr[etype] = i;
334 td->o.ignore_error[etype] = error;
335 } else {
336 td->o.ignore_error_nr[etype] = 0;
337 free(error);
338 }
339
340 return 0;
341
342}
343
344static int str_replay_skip_cb(void *data, const char *input)
345{
346 struct thread_data *td = cb_data_to_td(data);
347 char *str, *p, *n;
348 int ret = 0;
349
350 if (parse_dryrun())
351 return 0;
352
353 p = str = strdup(input);
354
355 strip_blank_front(&str);
356 strip_blank_end(str);
357
358 while (p) {
359 n = strchr(p, ',');
360 if (n)
361 *n++ = '\0';
362 if (!strcmp(p, "read"))
363 td->o.replay_skip |= 1u << DDIR_READ;
364 else if (!strcmp(p, "write"))
365 td->o.replay_skip |= 1u << DDIR_WRITE;
366 else if (!strcmp(p, "trim"))
367 td->o.replay_skip |= 1u << DDIR_TRIM;
368 else if (!strcmp(p, "sync"))
369 td->o.replay_skip |= 1u << DDIR_SYNC;
370 else {
371 log_err("Unknown skip type: %s\n", p);
372 ret = 1;
373 break;
374 }
375 p = n;
376 }
377 free(str);
378 return ret;
379}
380
381static int str_ignore_error_cb(void *data, const char *input)
382{
383 struct thread_data *td = cb_data_to_td(data);
384 char *str, *p, *n;
385 int ret = 1;
386 enum error_type_bit type = 0;
387
388 if (parse_dryrun())
389 return 0;
390
391 p = str = strdup(input);
392
393 strip_blank_front(&str);
394 strip_blank_end(str);
395
396 while (p) {
397 n = strchr(p, ',');
398 if (n)
399 *n++ = '\0';
400 ret = ignore_error_type(td, type, p);
401 if (ret)
402 break;
403 p = n;
404 type++;
405 }
406 free(str);
407 return ret;
408}
409
410static int str_rw_cb(void *data, const char *str)
411{
412 struct thread_data *td = cb_data_to_td(data);
413 struct thread_options *o = &td->o;
414 char *nr;
415
416 if (parse_dryrun())
417 return 0;
418
419 o->ddir_seq_nr = 1;
420 o->ddir_seq_add = 0;
421
422 nr = get_opt_postfix(str);
423 if (!nr)
424 return 0;
425
426 if (td_random(td))
427 o->ddir_seq_nr = atoi(nr);
428 else {
429 long long val;
430
431 if (str_to_decimal(nr, &val, 1, o, 0, 0)) {
432 log_err("fio: rw postfix parsing failed\n");
433 free(nr);
434 return 1;
435 }
436
437 o->ddir_seq_add = val;
438 }
439
440 free(nr);
441 return 0;
442}
443
444static int str_mem_cb(void *data, const char *mem)
445{
446 struct thread_data *td = cb_data_to_td(data);
447
448 if (td->o.mem_type == MEM_MMAPHUGE || td->o.mem_type == MEM_MMAP ||
449 td->o.mem_type == MEM_MMAPSHARED)
450 td->o.mmapfile = get_opt_postfix(mem);
451
452 return 0;
453}
454
455static int fio_clock_source_cb(void *data, const char *str)
456{
457 struct thread_data *td = cb_data_to_td(data);
458
459 fio_clock_source = td->o.clocksource;
460 fio_clock_source_set = 1;
461 fio_clock_init();
462 return 0;
463}
464
465static int str_rwmix_read_cb(void *data, unsigned long long *val)
466{
467 struct thread_data *td = cb_data_to_td(data);
468
469 td->o.rwmix[DDIR_READ] = *val;
470 td->o.rwmix[DDIR_WRITE] = 100 - *val;
471 return 0;
472}
473
474static int str_rwmix_write_cb(void *data, unsigned long long *val)
475{
476 struct thread_data *td = cb_data_to_td(data);
477
478 td->o.rwmix[DDIR_WRITE] = *val;
479 td->o.rwmix[DDIR_READ] = 100 - *val;
480 return 0;
481}
482
483static int str_exitall_cb(void)
484{
485 exitall_on_terminate = true;
486 return 0;
487}
488
489#ifdef FIO_HAVE_CPU_AFFINITY
490int fio_cpus_split(os_cpu_mask_t *mask, unsigned int cpu_index)
491{
492 unsigned int i, index, cpus_in_mask;
493 const long max_cpu = cpus_online();
494
495 cpus_in_mask = fio_cpu_count(mask);
496 if (!cpus_in_mask)
497 return 0;
498
499 cpu_index = cpu_index % cpus_in_mask;
500
501 index = 0;
502 for (i = 0; i < max_cpu; i++) {
503 if (!fio_cpu_isset(mask, i))
504 continue;
505
506 if (cpu_index != index)
507 fio_cpu_clear(mask, i);
508
509 index++;
510 }
511
512 return fio_cpu_count(mask);
513}
514
515static int str_cpumask_cb(void *data, unsigned long long *val)
516{
517 struct thread_data *td = cb_data_to_td(data);
518 unsigned int i;
519 long max_cpu;
520 int ret;
521
522 if (parse_dryrun())
523 return 0;
524
525 ret = fio_cpuset_init(&td->o.cpumask);
526 if (ret < 0) {
527 log_err("fio: cpuset_init failed\n");
528 td_verror(td, ret, "fio_cpuset_init");
529 return 1;
530 }
531
532 max_cpu = cpus_online();
533
534 for (i = 0; i < sizeof(int) * 8; i++) {
535 if ((1 << i) & *val) {
536 if (i >= max_cpu) {
537 log_err("fio: CPU %d too large (max=%ld)\n", i,
538 max_cpu - 1);
539 return 1;
540 }
541 dprint(FD_PARSE, "set cpu allowed %d\n", i);
542 fio_cpu_set(&td->o.cpumask, i);
543 }
544 }
545
546 return 0;
547}
548
549static int set_cpus_allowed(struct thread_data *td, os_cpu_mask_t *mask,
550 const char *input)
551{
552 char *cpu, *str, *p;
553 long max_cpu;
554 int ret = 0;
555
556 ret = fio_cpuset_init(mask);
557 if (ret < 0) {
558 log_err("fio: cpuset_init failed\n");
559 td_verror(td, ret, "fio_cpuset_init");
560 return 1;
561 }
562
563 p = str = strdup(input);
564
565 strip_blank_front(&str);
566 strip_blank_end(str);
567
568 max_cpu = cpus_online();
569
570 while ((cpu = strsep(&str, ",")) != NULL) {
571 char *str2, *cpu2;
572 int icpu, icpu2;
573
574 if (!strlen(cpu))
575 break;
576
577 str2 = cpu;
578 icpu2 = -1;
579 while ((cpu2 = strsep(&str2, "-")) != NULL) {
580 if (!strlen(cpu2))
581 break;
582
583 icpu2 = atoi(cpu2);
584 }
585
586 icpu = atoi(cpu);
587 if (icpu2 == -1)
588 icpu2 = icpu;
589 while (icpu <= icpu2) {
590 if (icpu >= FIO_MAX_CPUS) {
591 log_err("fio: your OS only supports up to"
592 " %d CPUs\n", (int) FIO_MAX_CPUS);
593 ret = 1;
594 break;
595 }
596 if (icpu >= max_cpu) {
597 log_err("fio: CPU %d too large (max=%ld)\n",
598 icpu, max_cpu - 1);
599 ret = 1;
600 break;
601 }
602
603 dprint(FD_PARSE, "set cpu allowed %d\n", icpu);
604 fio_cpu_set(mask, icpu);
605 icpu++;
606 }
607 if (ret)
608 break;
609 }
610
611 free(p);
612 return ret;
613}
614
615static int str_cpus_allowed_cb(void *data, const char *input)
616{
617 struct thread_data *td = cb_data_to_td(data);
618
619 if (parse_dryrun())
620 return 0;
621
622 return set_cpus_allowed(td, &td->o.cpumask, input);
623}
624
625static int str_verify_cpus_allowed_cb(void *data, const char *input)
626{
627 struct thread_data *td = cb_data_to_td(data);
628
629 if (parse_dryrun())
630 return 0;
631
632 return set_cpus_allowed(td, &td->o.verify_cpumask, input);
633}
634
635#ifdef CONFIG_ZLIB
636static int str_log_cpus_allowed_cb(void *data, const char *input)
637{
638 struct thread_data *td = cb_data_to_td(data);
639
640 if (parse_dryrun())
641 return 0;
642
643 return set_cpus_allowed(td, &td->o.log_gz_cpumask, input);
644}
645#endif /* CONFIG_ZLIB */
646
647#endif /* FIO_HAVE_CPU_AFFINITY */
648
649#ifdef CONFIG_LIBNUMA
650static int str_numa_cpunodes_cb(void *data, char *input)
651{
652 struct thread_data *td = cb_data_to_td(data);
653 struct bitmask *verify_bitmask;
654
655 if (parse_dryrun())
656 return 0;
657
658 /* numa_parse_nodestring() parses a character string list
659 * of nodes into a bit mask. The bit mask is allocated by
660 * numa_allocate_nodemask(), so it should be freed by
661 * numa_free_nodemask().
662 */
663 verify_bitmask = numa_parse_nodestring(input);
664 if (verify_bitmask == NULL) {
665 log_err("fio: numa_parse_nodestring failed\n");
666 td_verror(td, 1, "str_numa_cpunodes_cb");
667 return 1;
668 }
669 numa_free_nodemask(verify_bitmask);
670
671 td->o.numa_cpunodes = strdup(input);
672 return 0;
673}
674
675static int str_numa_mpol_cb(void *data, char *input)
676{
677 struct thread_data *td = cb_data_to_td(data);
678 const char * const policy_types[] =
679 { "default", "prefer", "bind", "interleave", "local", NULL };
680 int i;
681 char *nodelist;
682 struct bitmask *verify_bitmask;
683
684 if (parse_dryrun())
685 return 0;
686
687 nodelist = strchr(input, ':');
688 if (nodelist) {
689 /* NUL-terminate mode */
690 *nodelist++ = '\0';
691 }
692
693 for (i = 0; i <= MPOL_LOCAL; i++) {
694 if (!strcmp(input, policy_types[i])) {
695 td->o.numa_mem_mode = i;
696 break;
697 }
698 }
699 if (i > MPOL_LOCAL) {
700 log_err("fio: memory policy should be: default, prefer, bind, interleave, local\n");
701 goto out;
702 }
703
704 switch (td->o.numa_mem_mode) {
705 case MPOL_PREFERRED:
706 /*
707 * Insist on a nodelist of one node only
708 */
709 if (nodelist) {
710 char *rest = nodelist;
711 while (isdigit(*rest))
712 rest++;
713 if (*rest) {
714 log_err("fio: one node only for \'prefer\'\n");
715 goto out;
716 }
717 } else {
718 log_err("fio: one node is needed for \'prefer\'\n");
719 goto out;
720 }
721 break;
722 case MPOL_INTERLEAVE:
723 /*
724 * Default to online nodes with memory if no nodelist
725 */
726 if (!nodelist)
727 nodelist = strdup("all");
728 break;
729 case MPOL_LOCAL:
730 case MPOL_DEFAULT:
731 /*
732 * Don't allow a nodelist
733 */
734 if (nodelist) {
735 log_err("fio: NO nodelist for \'local\'\n");
736 goto out;
737 }
738 break;
739 case MPOL_BIND:
740 /*
741 * Insist on a nodelist
742 */
743 if (!nodelist) {
744 log_err("fio: a nodelist is needed for \'bind\'\n");
745 goto out;
746 }
747 break;
748 }
749
750
751 /* numa_parse_nodestring() parses a character string list
752 * of nodes into a bit mask. The bit mask is allocated by
753 * numa_allocate_nodemask(), so it should be freed by
754 * numa_free_nodemask().
755 */
756 switch (td->o.numa_mem_mode) {
757 case MPOL_PREFERRED:
758 td->o.numa_mem_prefer_node = atoi(nodelist);
759 break;
760 case MPOL_INTERLEAVE:
761 case MPOL_BIND:
762 verify_bitmask = numa_parse_nodestring(nodelist);
763 if (verify_bitmask == NULL) {
764 log_err("fio: numa_parse_nodestring failed\n");
765 td_verror(td, 1, "str_numa_memnodes_cb");
766 return 1;
767 }
768 td->o.numa_memnodes = strdup(nodelist);
769 numa_free_nodemask(verify_bitmask);
770
771 break;
772 case MPOL_LOCAL:
773 case MPOL_DEFAULT:
774 default:
775 break;
776 }
777
778 return 0;
779out:
780 return 1;
781}
782#endif
783
784static int str_fst_cb(void *data, const char *str)
785{
786 struct thread_data *td = cb_data_to_td(data);
787 double val;
788 bool done = false;
789 char *nr;
790
791 td->file_service_nr = 1;
792
793 switch (td->o.file_service_type) {
794 case FIO_FSERVICE_RANDOM:
795 case FIO_FSERVICE_RR:
796 case FIO_FSERVICE_SEQ:
797 nr = get_opt_postfix(str);
798 if (nr) {
799 td->file_service_nr = atoi(nr);
800 free(nr);
801 }
802 done = true;
803 break;
804 case FIO_FSERVICE_ZIPF:
805 val = FIO_DEF_ZIPF;
806 break;
807 case FIO_FSERVICE_PARETO:
808 val = FIO_DEF_PARETO;
809 break;
810 case FIO_FSERVICE_GAUSS:
811 val = 0.0;
812 break;
813 default:
814 log_err("fio: bad file service type: %d\n", td->o.file_service_type);
815 return 1;
816 }
817
818 if (done)
819 return 0;
820
821 nr = get_opt_postfix(str);
822 if (nr && !str_to_float(nr, &val, 0)) {
823 log_err("fio: file service type random postfix parsing failed\n");
824 free(nr);
825 return 1;
826 }
827
828 free(nr);
829
830 switch (td->o.file_service_type) {
831 case FIO_FSERVICE_ZIPF:
832 if (val == 1.00) {
833 log_err("fio: zipf theta must be different than 1.0\n");
834 return 1;
835 }
836 if (parse_dryrun())
837 return 0;
838 td->zipf_theta = val;
839 break;
840 case FIO_FSERVICE_PARETO:
841 if (val <= 0.00 || val >= 1.00) {
842 log_err("fio: pareto input out of range (0 < input < 1.0)\n");
843 return 1;
844 }
845 if (parse_dryrun())
846 return 0;
847 td->pareto_h = val;
848 break;
849 case FIO_FSERVICE_GAUSS:
850 if (val < 0.00 || val >= 100.00) {
851 log_err("fio: normal deviation out of range (0 <= input < 100.0)\n");
852 return 1;
853 }
854 if (parse_dryrun())
855 return 0;
856 td->gauss_dev = val;
857 break;
858 }
859
860 return 0;
861}
862
863#ifdef CONFIG_SYNC_FILE_RANGE
864static int str_sfr_cb(void *data, const char *str)
865{
866 struct thread_data *td = cb_data_to_td(data);
867 char *nr = get_opt_postfix(str);
868
869 td->sync_file_range_nr = 1;
870 if (nr) {
871 td->sync_file_range_nr = atoi(nr);
872 free(nr);
873 }
874
875 return 0;
876}
877#endif
878
879static int zone_split_ddir(struct thread_options *o, enum fio_ddir ddir,
880 char *str, bool absolute)
881{
882 unsigned int i, perc, perc_missing, sperc, sperc_missing;
883 struct split split;
884
885 memset(&split, 0, sizeof(split));
886
887 if (split_parse_ddir(o, &split, str, absolute, ZONESPLIT_MAX))
888 return 1;
889 if (!split.nr)
890 return 0;
891
892 o->zone_split[ddir] = malloc(split.nr * sizeof(struct zone_split));
893 o->zone_split_nr[ddir] = split.nr;
894 for (i = 0; i < split.nr; i++) {
895 o->zone_split[ddir][i].access_perc = split.val1[i];
896 if (absolute)
897 o->zone_split[ddir][i].size = split.val2[i];
898 else
899 o->zone_split[ddir][i].size_perc = split.val2[i];
900 }
901
902 /*
903 * Now check if the percentages add up, and how much is missing
904 */
905 perc = perc_missing = 0;
906 sperc = sperc_missing = 0;
907 for (i = 0; i < o->zone_split_nr[ddir]; i++) {
908 struct zone_split *zsp = &o->zone_split[ddir][i];
909
910 if (zsp->access_perc == (uint8_t) -1U)
911 perc_missing++;
912 else
913 perc += zsp->access_perc;
914
915 if (!absolute) {
916 if (zsp->size_perc == (uint8_t) -1U)
917 sperc_missing++;
918 else
919 sperc += zsp->size_perc;
920 }
921 }
922
923 if (perc > 100 || sperc > 100) {
924 log_err("fio: zone_split percentages add to more than 100%%\n");
925 free(o->zone_split[ddir]);
926 o->zone_split[ddir] = NULL;
927 return 1;
928 }
929 if (perc < 100) {
930 log_err("fio: access percentage don't add up to 100 for zoned "
931 "random distribution (got=%u)\n", perc);
932 free(o->zone_split[ddir]);
933 o->zone_split[ddir] = NULL;
934 return 1;
935 }
936
937 /*
938 * If values didn't have a percentage set, divide the remains between
939 * them.
940 */
941 if (perc_missing) {
942 if (perc_missing == 1 && o->zone_split_nr[ddir] == 1)
943 perc = 100;
944 for (i = 0; i < o->zone_split_nr[ddir]; i++) {
945 struct zone_split *zsp = &o->zone_split[ddir][i];
946
947 if (zsp->access_perc == (uint8_t) -1U)
948 zsp->access_perc = (100 - perc) / perc_missing;
949 }
950 }
951 if (sperc_missing) {
952 if (sperc_missing == 1 && o->zone_split_nr[ddir] == 1)
953 sperc = 100;
954 for (i = 0; i < o->zone_split_nr[ddir]; i++) {
955 struct zone_split *zsp = &o->zone_split[ddir][i];
956
957 if (zsp->size_perc == (uint8_t) -1U)
958 zsp->size_perc = (100 - sperc) / sperc_missing;
959 }
960 }
961
962 return 0;
963}
964
965static int parse_zoned_distribution(struct thread_data *td, const char *input,
966 bool absolute)
967{
968 const char *pre = absolute ? "zoned_abs:" : "zoned:";
969 char *str, *p;
970 int i, ret = 0;
971
972 p = str = strdup(input);
973
974 strip_blank_front(&str);
975 strip_blank_end(str);
976
977 /* We expect it to start like that, bail if not */
978 if (strncmp(str, pre, strlen(pre))) {
979 log_err("fio: mismatch in zoned input <%s>\n", str);
980 free(p);
981 return 1;
982 }
983 str += strlen(pre);
984
985 ret = str_split_parse(td, str, zone_split_ddir, absolute);
986
987 free(p);
988
989 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
990 int j;
991
992 dprint(FD_PARSE, "zone ddir %d (nr=%u): \n", i, td->o.zone_split_nr[i]);
993
994 for (j = 0; j < td->o.zone_split_nr[i]; j++) {
995 struct zone_split *zsp = &td->o.zone_split[i][j];
996
997 if (absolute) {
998 dprint(FD_PARSE, "\t%d: %u/%llu\n", j,
999 zsp->access_perc,
1000 (unsigned long long) zsp->size);
1001 } else {
1002 dprint(FD_PARSE, "\t%d: %u/%u\n", j,
1003 zsp->access_perc,
1004 zsp->size_perc);
1005 }
1006 }
1007 }
1008
1009 if (parse_dryrun()) {
1010 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1011 free(td->o.zone_split[i]);
1012 td->o.zone_split[i] = NULL;
1013 td->o.zone_split_nr[i] = 0;
1014 }
1015
1016 return ret;
1017 }
1018
1019 if (ret) {
1020 for (i = 0; i < DDIR_RWDIR_CNT; i++)
1021 td->o.zone_split_nr[i] = 0;
1022 }
1023
1024 return ret;
1025}
1026
1027static int str_random_distribution_cb(void *data, const char *str)
1028{
1029 struct thread_data *td = cb_data_to_td(data);
1030 double val;
1031 char *nr;
1032
1033 if (td->o.random_distribution == FIO_RAND_DIST_ZIPF)
1034 val = FIO_DEF_ZIPF;
1035 else if (td->o.random_distribution == FIO_RAND_DIST_PARETO)
1036 val = FIO_DEF_PARETO;
1037 else if (td->o.random_distribution == FIO_RAND_DIST_GAUSS)
1038 val = 0.0;
1039 else if (td->o.random_distribution == FIO_RAND_DIST_ZONED)
1040 return parse_zoned_distribution(td, str, false);
1041 else if (td->o.random_distribution == FIO_RAND_DIST_ZONED_ABS)
1042 return parse_zoned_distribution(td, str, true);
1043 else
1044 return 0;
1045
1046 nr = get_opt_postfix(str);
1047 if (nr && !str_to_float(nr, &val, 0)) {
1048 log_err("fio: random postfix parsing failed\n");
1049 free(nr);
1050 return 1;
1051 }
1052
1053 free(nr);
1054
1055 if (td->o.random_distribution == FIO_RAND_DIST_ZIPF) {
1056 if (val == 1.00) {
1057 log_err("fio: zipf theta must different than 1.0\n");
1058 return 1;
1059 }
1060 if (parse_dryrun())
1061 return 0;
1062 td->o.zipf_theta.u.f = val;
1063 } else if (td->o.random_distribution == FIO_RAND_DIST_PARETO) {
1064 if (val <= 0.00 || val >= 1.00) {
1065 log_err("fio: pareto input out of range (0 < input < 1.0)\n");
1066 return 1;
1067 }
1068 if (parse_dryrun())
1069 return 0;
1070 td->o.pareto_h.u.f = val;
1071 } else {
1072 if (val < 0.00 || val >= 100.0) {
1073 log_err("fio: normal deviation out of range (0 <= input < 100.0)\n");
1074 return 1;
1075 }
1076 if (parse_dryrun())
1077 return 0;
1078 td->o.gauss_dev.u.f = val;
1079 }
1080
1081 return 0;
1082}
1083
1084static int str_steadystate_cb(void *data, const char *str)
1085{
1086 struct thread_data *td = cb_data_to_td(data);
1087 double val;
1088 char *nr;
1089 char *pct;
1090 long long ll;
1091
1092 if (td->o.ss_state != FIO_SS_IOPS && td->o.ss_state != FIO_SS_IOPS_SLOPE &&
1093 td->o.ss_state != FIO_SS_BW && td->o.ss_state != FIO_SS_BW_SLOPE) {
1094 /* should be impossible to get here */
1095 log_err("fio: unknown steady state criterion\n");
1096 return 1;
1097 }
1098
1099 nr = get_opt_postfix(str);
1100 if (!nr) {
1101 log_err("fio: steadystate threshold must be specified in addition to criterion\n");
1102 free(nr);
1103 return 1;
1104 }
1105
1106 /* ENHANCEMENT Allow fio to understand size=10.2% and use here */
1107 pct = strstr(nr, "%");
1108 if (pct) {
1109 *pct = '\0';
1110 strip_blank_end(nr);
1111 if (!str_to_float(nr, &val, 0)) {
1112 log_err("fio: could not parse steadystate threshold percentage\n");
1113 free(nr);
1114 return 1;
1115 }
1116
1117 dprint(FD_PARSE, "set steady state threshold to %f%%\n", val);
1118 free(nr);
1119 if (parse_dryrun())
1120 return 0;
1121
1122 td->o.ss_state |= FIO_SS_PCT;
1123 td->o.ss_limit.u.f = val;
1124 } else if (td->o.ss_state & FIO_SS_IOPS) {
1125 if (!str_to_float(nr, &val, 0)) {
1126 log_err("fio: steadystate IOPS threshold postfix parsing failed\n");
1127 free(nr);
1128 return 1;
1129 }
1130
1131 dprint(FD_PARSE, "set steady state IOPS threshold to %f\n", val);
1132 free(nr);
1133 if (parse_dryrun())
1134 return 0;
1135
1136 td->o.ss_limit.u.f = val;
1137 } else { /* bandwidth criterion */
1138 if (str_to_decimal(nr, &ll, 1, td, 0, 0)) {
1139 log_err("fio: steadystate BW threshold postfix parsing failed\n");
1140 free(nr);
1141 return 1;
1142 }
1143
1144 dprint(FD_PARSE, "set steady state BW threshold to %lld\n", ll);
1145 free(nr);
1146 if (parse_dryrun())
1147 return 0;
1148
1149 td->o.ss_limit.u.f = (double) ll;
1150 }
1151
1152 td->ss.state = td->o.ss_state;
1153 return 0;
1154}
1155
1156/*
1157 * Return next name in the string. Files are separated with ':'. If the ':'
1158 * is escaped with a '\', then that ':' is part of the filename and does not
1159 * indicate a new file.
1160 */
1161char *get_next_str(char **ptr)
1162{
1163 char *str = *ptr;
1164 char *p, *start;
1165
1166 if (!str || !strlen(str))
1167 return NULL;
1168
1169 start = str;
1170 do {
1171 /*
1172 * No colon, we are done
1173 */
1174 p = strchr(str, ':');
1175 if (!p) {
1176 *ptr = NULL;
1177 break;
1178 }
1179
1180 /*
1181 * We got a colon, but it's the first character. Skip and
1182 * continue
1183 */
1184 if (p == start) {
1185 str = ++start;
1186 continue;
1187 }
1188
1189 if (*(p - 1) != '\\') {
1190 *p = '\0';
1191 *ptr = p + 1;
1192 break;
1193 }
1194
1195 memmove(p - 1, p, strlen(p) + 1);
1196 str = p;
1197 } while (1);
1198
1199 return start;
1200}
1201
1202
1203int get_max_str_idx(char *input)
1204{
1205 unsigned int cur_idx;
1206 char *str, *p;
1207
1208 p = str = strdup(input);
1209 for (cur_idx = 0; ; cur_idx++)
1210 if (get_next_str(&str) == NULL)
1211 break;
1212
1213 free(p);
1214 return cur_idx;
1215}
1216
1217/*
1218 * Returns the directory at the index, indexes > entires will be
1219 * assigned via modulo division of the index
1220 */
1221int set_name_idx(char *target, size_t tlen, char *input, int index,
1222 bool unique_filename)
1223{
1224 unsigned int cur_idx;
1225 int len;
1226 char *fname, *str, *p;
1227
1228 p = str = strdup(input);
1229
1230 index %= get_max_str_idx(input);
1231 for (cur_idx = 0; cur_idx <= index; cur_idx++)
1232 fname = get_next_str(&str);
1233
1234 if (client_sockaddr_str[0] && unique_filename) {
1235 len = snprintf(target, tlen, "%s/%s.", fname,
1236 client_sockaddr_str);
1237 } else
1238 len = snprintf(target, tlen, "%s/", fname);
1239
1240 target[tlen - 1] = '\0';
1241 free(p);
1242
1243 return len;
1244}
1245
1246char* get_name_by_idx(char *input, int index)
1247{
1248 unsigned int cur_idx;
1249 char *fname, *str, *p;
1250
1251 p = str = strdup(input);
1252
1253 index %= get_max_str_idx(input);
1254 for (cur_idx = 0; cur_idx <= index; cur_idx++)
1255 fname = get_next_str(&str);
1256
1257 fname = strdup(fname);
1258 free(p);
1259
1260 return fname;
1261}
1262
1263static int str_filename_cb(void *data, const char *input)
1264{
1265 struct thread_data *td = cb_data_to_td(data);
1266 char *fname, *str, *p;
1267
1268 p = str = strdup(input);
1269
1270 strip_blank_front(&str);
1271 strip_blank_end(str);
1272
1273 /*
1274 * Ignore what we may already have from nrfiles option.
1275 */
1276 if (!td->files_index)
1277 td->o.nr_files = 0;
1278
1279 while ((fname = get_next_str(&str)) != NULL) {
1280 if (!strlen(fname))
1281 break;
1282 add_file(td, fname, 0, 1);
1283 }
1284
1285 free(p);
1286 return 0;
1287}
1288
1289static int str_directory_cb(void *data, const char fio_unused *unused)
1290{
1291 struct thread_data *td = cb_data_to_td(data);
1292 struct stat sb;
1293 char *dirname, *str, *p;
1294 int ret = 0;
1295
1296 if (parse_dryrun())
1297 return 0;
1298
1299 p = str = strdup(td->o.directory);
1300 while ((dirname = get_next_str(&str)) != NULL) {
1301 if (lstat(dirname, &sb) < 0) {
1302 ret = errno;
1303
1304 log_err("fio: %s is not a directory\n", dirname);
1305 td_verror(td, ret, "lstat");
1306 goto out;
1307 }
1308 if (!S_ISDIR(sb.st_mode)) {
1309 log_err("fio: %s is not a directory\n", dirname);
1310 ret = 1;
1311 goto out;
1312 }
1313 }
1314
1315out:
1316 free(p);
1317 return ret;
1318}
1319
1320static int str_opendir_cb(void *data, const char fio_unused *str)
1321{
1322 struct thread_data *td = cb_data_to_td(data);
1323
1324 if (parse_dryrun())
1325 return 0;
1326
1327 if (!td->files_index)
1328 td->o.nr_files = 0;
1329
1330 return add_dir_files(td, td->o.opendir);
1331}
1332
1333static int str_buffer_pattern_cb(void *data, const char *input)
1334{
1335 struct thread_data *td = cb_data_to_td(data);
1336 int ret;
1337
1338 /* FIXME: for now buffer pattern does not support formats */
1339 ret = parse_and_fill_pattern(input, strlen(input), td->o.buffer_pattern,
1340 MAX_PATTERN_SIZE, NULL, 0, NULL, NULL);
1341 if (ret < 0)
1342 return 1;
1343
1344 assert(ret != 0);
1345 td->o.buffer_pattern_bytes = ret;
1346
1347 /*
1348 * If this job is doing any reading or has compression set,
1349 * ensure that we refill buffers for writes or we could be
1350 * invalidating the pattern through reads.
1351 */
1352 if (!td->o.compress_percentage && !td_read(td))
1353 td->o.refill_buffers = 0;
1354 else
1355 td->o.refill_buffers = 1;
1356
1357 td->o.scramble_buffers = 0;
1358 td->o.zero_buffers = 0;
1359
1360 return 0;
1361}
1362
1363static int str_buffer_compress_cb(void *data, unsigned long long *il)
1364{
1365 struct thread_data *td = cb_data_to_td(data);
1366
1367 td->flags |= TD_F_COMPRESS;
1368 td->o.compress_percentage = *il;
1369 return 0;
1370}
1371
1372static int str_dedupe_cb(void *data, unsigned long long *il)
1373{
1374 struct thread_data *td = cb_data_to_td(data);
1375
1376 td->flags |= TD_F_COMPRESS;
1377 td->o.dedupe_percentage = *il;
1378 td->o.refill_buffers = 1;
1379 return 0;
1380}
1381
1382static int str_verify_pattern_cb(void *data, const char *input)
1383{
1384 struct thread_data *td = cb_data_to_td(data);
1385 int ret;
1386
1387 td->o.verify_fmt_sz = ARRAY_SIZE(td->o.verify_fmt);
1388 ret = parse_and_fill_pattern(input, strlen(input), td->o.verify_pattern,
1389 MAX_PATTERN_SIZE, fmt_desc, sizeof(fmt_desc),
1390 td->o.verify_fmt, &td->o.verify_fmt_sz);
1391 if (ret < 0)
1392 return 1;
1393
1394 assert(ret != 0);
1395 td->o.verify_pattern_bytes = ret;
1396 /*
1397 * VERIFY_* could already be set
1398 */
1399 if (!fio_option_is_set(&td->o, verify))
1400 td->o.verify = VERIFY_PATTERN;
1401
1402 return 0;
1403}
1404
1405static int str_gtod_reduce_cb(void *data, int *il)
1406{
1407 struct thread_data *td = cb_data_to_td(data);
1408 int val = *il;
1409
1410 td->o.disable_lat = !!val;
1411 td->o.disable_clat = !!val;
1412 td->o.disable_slat = !!val;
1413 td->o.disable_bw = !!val;
1414 td->o.clat_percentiles = !val;
1415 if (val)
1416 td->ts_cache_mask = 63;
1417
1418 return 0;
1419}
1420
1421static int str_offset_cb(void *data, unsigned long long *__val)
1422{
1423 struct thread_data *td = cb_data_to_td(data);
1424 unsigned long long v = *__val;
1425
1426 if (parse_is_percent(v)) {
1427 td->o.start_offset = 0;
1428 td->o.start_offset_percent = -1ULL - v;
1429 dprint(FD_PARSE, "SET start_offset_percent %d\n",
1430 td->o.start_offset_percent);
1431 } else
1432 td->o.start_offset = v;
1433
1434 return 0;
1435}
1436
1437static int str_size_cb(void *data, unsigned long long *__val)
1438{
1439 struct thread_data *td = cb_data_to_td(data);
1440 unsigned long long v = *__val;
1441
1442 if (parse_is_percent(v)) {
1443 td->o.size = 0;
1444 td->o.size_percent = -1ULL - v;
1445 dprint(FD_PARSE, "SET size_percent %d\n",
1446 td->o.size_percent);
1447 } else
1448 td->o.size = v;
1449
1450 return 0;
1451}
1452
1453static int str_write_bw_log_cb(void *data, const char *str)
1454{
1455 struct thread_data *td = cb_data_to_td(data);
1456
1457 if (str)
1458 td->o.bw_log_file = strdup(str);
1459
1460 td->o.write_bw_log = 1;
1461 return 0;
1462}
1463
1464static int str_write_lat_log_cb(void *data, const char *str)
1465{
1466 struct thread_data *td = cb_data_to_td(data);
1467
1468 if (str)
1469 td->o.lat_log_file = strdup(str);
1470
1471 td->o.write_lat_log = 1;
1472 return 0;
1473}
1474
1475static int str_write_iops_log_cb(void *data, const char *str)
1476{
1477 struct thread_data *td = cb_data_to_td(data);
1478
1479 if (str)
1480 td->o.iops_log_file = strdup(str);
1481
1482 td->o.write_iops_log = 1;
1483 return 0;
1484}
1485
1486static int str_write_hist_log_cb(void *data, const char *str)
1487{
1488 struct thread_data *td = cb_data_to_td(data);
1489
1490 if (str)
1491 td->o.hist_log_file = strdup(str);
1492
1493 td->o.write_hist_log = 1;
1494 return 0;
1495}
1496
1497/*
1498 * str is supposed to be a substring of the strdup'd original string,
1499 * and is valid only if it's a regular file path.
1500 * This function keeps the pointer to the path as needed later.
1501 *
1502 * "external:/path/to/so\0" <- original pointer updated with strdup'd
1503 * "external\0" <- above pointer after parsed, i.e. ->ioengine
1504 * "/path/to/so\0" <- str argument, i.e. ->ioengine_so_path
1505 */
1506static int str_ioengine_external_cb(void *data, const char *str)
1507{
1508 struct thread_data *td = cb_data_to_td(data);
1509 struct stat sb;
1510 char *p;
1511
1512 if (!str) {
1513 log_err("fio: null external ioengine path\n");
1514 return 1;
1515 }
1516
1517 p = (char *)str; /* str is mutable */
1518 strip_blank_front(&p);
1519 strip_blank_end(p);
1520
1521 if (stat(p, &sb) || !S_ISREG(sb.st_mode)) {
1522 log_err("fio: invalid external ioengine path \"%s\"\n", p);
1523 return 1;
1524 }
1525
1526 td->o.ioengine_so_path = p;
1527 return 0;
1528}
1529
1530static int rw_verify(const struct fio_option *o, void *data)
1531{
1532 struct thread_data *td = cb_data_to_td(data);
1533
1534 if (read_only && (td_write(td) || td_trim(td))) {
1535 log_err("fio: job <%s> has write or trim bit set, but"
1536 " fio is in read-only mode\n", td->o.name);
1537 return 1;
1538 }
1539
1540 return 0;
1541}
1542
1543static int gtod_cpu_verify(const struct fio_option *o, void *data)
1544{
1545#ifndef FIO_HAVE_CPU_AFFINITY
1546 struct thread_data *td = cb_data_to_td(data);
1547
1548 if (td->o.gtod_cpu) {
1549 log_err("fio: platform must support CPU affinity for"
1550 "gettimeofday() offloading\n");
1551 return 1;
1552 }
1553#endif
1554
1555 return 0;
1556}
1557
1558/*
1559 * Map of job/command line options
1560 */
1561struct fio_option fio_options[FIO_MAX_OPTS] = {
1562 {
1563 .name = "description",
1564 .lname = "Description of job",
1565 .type = FIO_OPT_STR_STORE,
1566 .off1 = offsetof(struct thread_options, description),
1567 .help = "Text job description",
1568 .category = FIO_OPT_C_GENERAL,
1569 .group = FIO_OPT_G_DESC,
1570 },
1571 {
1572 .name = "name",
1573 .lname = "Job name",
1574 .type = FIO_OPT_STR_STORE,
1575 .off1 = offsetof(struct thread_options, name),
1576 .help = "Name of this job",
1577 .category = FIO_OPT_C_GENERAL,
1578 .group = FIO_OPT_G_DESC,
1579 },
1580 {
1581 .name = "wait_for",
1582 .lname = "Waitee name",
1583 .type = FIO_OPT_STR_STORE,
1584 .off1 = offsetof(struct thread_options, wait_for),
1585 .help = "Name of the job this one wants to wait for before starting",
1586 .category = FIO_OPT_C_GENERAL,
1587 .group = FIO_OPT_G_DESC,
1588 },
1589 {
1590 .name = "filename",
1591 .lname = "Filename(s)",
1592 .type = FIO_OPT_STR_STORE,
1593 .off1 = offsetof(struct thread_options, filename),
1594 .cb = str_filename_cb,
1595 .prio = -1, /* must come after "directory" */
1596 .help = "File(s) to use for the workload",
1597 .category = FIO_OPT_C_FILE,
1598 .group = FIO_OPT_G_FILENAME,
1599 },
1600 {
1601 .name = "directory",
1602 .lname = "Directory",
1603 .type = FIO_OPT_STR_STORE,
1604 .off1 = offsetof(struct thread_options, directory),
1605 .cb = str_directory_cb,
1606 .help = "Directory to store files in",
1607 .category = FIO_OPT_C_FILE,
1608 .group = FIO_OPT_G_FILENAME,
1609 },
1610 {
1611 .name = "filename_format",
1612 .lname = "Filename Format",
1613 .type = FIO_OPT_STR_STORE,
1614 .off1 = offsetof(struct thread_options, filename_format),
1615 .prio = -1, /* must come after "directory" */
1616 .help = "Override default $jobname.$jobnum.$filenum naming",
1617 .def = "$jobname.$jobnum.$filenum",
1618 .category = FIO_OPT_C_FILE,
1619 .group = FIO_OPT_G_FILENAME,
1620 },
1621 {
1622 .name = "unique_filename",
1623 .lname = "Unique Filename",
1624 .type = FIO_OPT_BOOL,
1625 .off1 = offsetof(struct thread_options, unique_filename),
1626 .help = "For network clients, prefix file with source IP",
1627 .def = "1",
1628 .category = FIO_OPT_C_FILE,
1629 .group = FIO_OPT_G_FILENAME,
1630 },
1631 {
1632 .name = "lockfile",
1633 .lname = "Lockfile",
1634 .type = FIO_OPT_STR,
1635 .off1 = offsetof(struct thread_options, file_lock_mode),
1636 .help = "Lock file when doing IO to it",
1637 .prio = 1,
1638 .parent = "filename",
1639 .hide = 0,
1640 .def = "none",
1641 .category = FIO_OPT_C_FILE,
1642 .group = FIO_OPT_G_FILENAME,
1643 .posval = {
1644 { .ival = "none",
1645 .oval = FILE_LOCK_NONE,
1646 .help = "No file locking",
1647 },
1648 { .ival = "exclusive",
1649 .oval = FILE_LOCK_EXCLUSIVE,
1650 .help = "Exclusive file lock",
1651 },
1652 {
1653 .ival = "readwrite",
1654 .oval = FILE_LOCK_READWRITE,
1655 .help = "Read vs write lock",
1656 },
1657 },
1658 },
1659 {
1660 .name = "opendir",
1661 .lname = "Open directory",
1662 .type = FIO_OPT_STR_STORE,
1663 .off1 = offsetof(struct thread_options, opendir),
1664 .cb = str_opendir_cb,
1665 .help = "Recursively add files from this directory and down",
1666 .category = FIO_OPT_C_FILE,
1667 .group = FIO_OPT_G_FILENAME,
1668 },
1669 {
1670 .name = "rw",
1671 .lname = "Read/write",
1672 .alias = "readwrite",
1673 .type = FIO_OPT_STR,
1674 .cb = str_rw_cb,
1675 .off1 = offsetof(struct thread_options, td_ddir),
1676 .help = "IO direction",
1677 .def = "read",
1678 .verify = rw_verify,
1679 .category = FIO_OPT_C_IO,
1680 .group = FIO_OPT_G_IO_BASIC,
1681 .posval = {
1682 { .ival = "read",
1683 .oval = TD_DDIR_READ,
1684 .help = "Sequential read",
1685 },
1686 { .ival = "write",
1687 .oval = TD_DDIR_WRITE,
1688 .help = "Sequential write",
1689 },
1690 { .ival = "trim",
1691 .oval = TD_DDIR_TRIM,
1692 .help = "Sequential trim",
1693 },
1694 { .ival = "randread",
1695 .oval = TD_DDIR_RANDREAD,
1696 .help = "Random read",
1697 },
1698 { .ival = "randwrite",
1699 .oval = TD_DDIR_RANDWRITE,
1700 .help = "Random write",
1701 },
1702 { .ival = "randtrim",
1703 .oval = TD_DDIR_RANDTRIM,
1704 .help = "Random trim",
1705 },
1706 { .ival = "rw",
1707 .oval = TD_DDIR_RW,
1708 .help = "Sequential read and write mix",
1709 },
1710 { .ival = "readwrite",
1711 .oval = TD_DDIR_RW,
1712 .help = "Sequential read and write mix",
1713 },
1714 { .ival = "randrw",
1715 .oval = TD_DDIR_RANDRW,
1716 .help = "Random read and write mix"
1717 },
1718 { .ival = "trimwrite",
1719 .oval = TD_DDIR_TRIMWRITE,
1720 .help = "Trim and write mix, trims preceding writes"
1721 },
1722 },
1723 },
1724 {
1725 .name = "rw_sequencer",
1726 .lname = "RW Sequencer",
1727 .type = FIO_OPT_STR,
1728 .off1 = offsetof(struct thread_options, rw_seq),
1729 .help = "IO offset generator modifier",
1730 .def = "sequential",
1731 .category = FIO_OPT_C_IO,
1732 .group = FIO_OPT_G_IO_BASIC,
1733 .posval = {
1734 { .ival = "sequential",
1735 .oval = RW_SEQ_SEQ,
1736 .help = "Generate sequential offsets",
1737 },
1738 { .ival = "identical",
1739 .oval = RW_SEQ_IDENT,
1740 .help = "Generate identical offsets",
1741 },
1742 },
1743 },
1744
1745 {
1746 .name = "ioengine",
1747 .lname = "IO Engine",
1748 .type = FIO_OPT_STR_STORE,
1749 .off1 = offsetof(struct thread_options, ioengine),
1750 .help = "IO engine to use",
1751 .def = FIO_PREFERRED_ENGINE,
1752 .category = FIO_OPT_C_IO,
1753 .group = FIO_OPT_G_IO_BASIC,
1754 .posval = {
1755 { .ival = "sync",
1756 .help = "Use read/write",
1757 },
1758 { .ival = "psync",
1759 .help = "Use pread/pwrite",
1760 },
1761 { .ival = "vsync",
1762 .help = "Use readv/writev",
1763 },
1764#ifdef CONFIG_PWRITEV
1765 { .ival = "pvsync",
1766 .help = "Use preadv/pwritev",
1767 },
1768#endif
1769#ifdef FIO_HAVE_PWRITEV2
1770 { .ival = "pvsync2",
1771 .help = "Use preadv2/pwritev2",
1772 },
1773#endif
1774#ifdef CONFIG_LIBAIO
1775 { .ival = "libaio",
1776 .help = "Linux native asynchronous IO",
1777 },
1778#endif
1779#ifdef ARCH_HAVE_IOURING
1780 { .ival = "io_uring",
1781 .help = "Fast Linux native aio",
1782 },
1783#endif
1784#ifdef CONFIG_POSIXAIO
1785 { .ival = "posixaio",
1786 .help = "POSIX asynchronous IO",
1787 },
1788#endif
1789#ifdef CONFIG_SOLARISAIO
1790 { .ival = "solarisaio",
1791 .help = "Solaris native asynchronous IO",
1792 },
1793#endif
1794#ifdef CONFIG_WINDOWSAIO
1795 { .ival = "windowsaio",
1796 .help = "Windows native asynchronous IO"
1797 },
1798#endif
1799#ifdef CONFIG_RBD
1800 { .ival = "rbd",
1801 .help = "Rados Block Device asynchronous IO"
1802 },
1803#endif
1804 { .ival = "mmap",
1805 .help = "Memory mapped IO"
1806 },
1807#ifdef CONFIG_LINUX_SPLICE
1808 { .ival = "splice",
1809 .help = "splice/vmsplice based IO",
1810 },
1811 { .ival = "netsplice",
1812 .help = "splice/vmsplice to/from the network",
1813 },
1814#endif
1815#ifdef FIO_HAVE_SGIO
1816 { .ival = "sg",
1817 .help = "SCSI generic v3 IO",
1818 },
1819#endif
1820 { .ival = "null",
1821 .help = "Testing engine (no data transfer)",
1822 },
1823 { .ival = "net",
1824 .help = "Network IO",
1825 },
1826 { .ival = "cpuio",
1827 .help = "CPU cycle burner engine",
1828 },
1829#ifdef CONFIG_GUASI
1830 { .ival = "guasi",
1831 .help = "GUASI IO engine",
1832 },
1833#endif
1834#ifdef CONFIG_RDMA
1835 { .ival = "rdma",
1836 .help = "RDMA IO engine",
1837 },
1838#endif
1839#ifdef CONFIG_LINUX_EXT4_MOVE_EXTENT
1840 { .ival = "e4defrag",
1841 .help = "ext4 defrag engine",
1842 },
1843#endif
1844#ifdef CONFIG_LINUX_FALLOCATE
1845 { .ival = "falloc",
1846 .help = "fallocate() file based engine",
1847 },
1848#endif
1849#ifdef CONFIG_GFAPI
1850 { .ival = "gfapi",
1851 .help = "Glusterfs libgfapi(sync) based engine"
1852 },
1853 { .ival = "gfapi_async",
1854 .help = "Glusterfs libgfapi(async) based engine"
1855 },
1856#endif
1857#ifdef CONFIG_LIBHDFS
1858 { .ival = "libhdfs",
1859 .help = "Hadoop Distributed Filesystem (HDFS) engine"
1860 },
1861#endif
1862#ifdef CONFIG_PMEMBLK
1863 { .ival = "pmemblk",
1864 .help = "PMDK libpmemblk based IO engine",
1865 },
1866
1867#endif
1868#ifdef CONFIG_IME
1869 { .ival = "ime_psync",
1870 .help = "DDN's IME synchronous IO engine",
1871 },
1872 { .ival = "ime_psyncv",
1873 .help = "DDN's IME synchronous IO engine using iovecs",
1874 },
1875 { .ival = "ime_aio",
1876 .help = "DDN's IME asynchronous IO engine",
1877 },
1878#endif
1879#ifdef CONFIG_LINUX_DEVDAX
1880 { .ival = "dev-dax",
1881 .help = "DAX Device based IO engine",
1882 },
1883#endif
1884 {
1885 .ival = "filecreate",
1886 .help = "File creation engine",
1887 },
1888 { .ival = "external",
1889 .help = "Load external engine (append name)",
1890 .cb = str_ioengine_external_cb,
1891 },
1892#ifdef CONFIG_LIBPMEM
1893 { .ival = "libpmem",
1894 .help = "PMDK libpmem based IO engine",
1895 },
1896#endif
1897#ifdef CONFIG_HTTP
1898 { .ival = "http",
1899 .help = "HTTP (WebDAV/S3) IO engine",
1900 },
1901#endif
1902 },
1903 },
1904 {
1905 .name = "iodepth",
1906 .lname = "IO Depth",
1907 .type = FIO_OPT_INT,
1908 .off1 = offsetof(struct thread_options, iodepth),
1909 .help = "Number of IO buffers to keep in flight",
1910 .minval = 1,
1911 .interval = 1,
1912 .def = "1",
1913 .category = FIO_OPT_C_IO,
1914 .group = FIO_OPT_G_IO_BASIC,
1915 },
1916 {
1917 .name = "iodepth_batch",
1918 .lname = "IO Depth batch",
1919 .alias = "iodepth_batch_submit",
1920 .type = FIO_OPT_INT,
1921 .off1 = offsetof(struct thread_options, iodepth_batch),
1922 .help = "Number of IO buffers to submit in one go",
1923 .parent = "iodepth",
1924 .hide = 1,
1925 .interval = 1,
1926 .def = "1",
1927 .category = FIO_OPT_C_IO,
1928 .group = FIO_OPT_G_IO_BASIC,
1929 },
1930 {
1931 .name = "iodepth_batch_complete_min",
1932 .lname = "Min IO depth batch complete",
1933 .alias = "iodepth_batch_complete",
1934 .type = FIO_OPT_INT,
1935 .off1 = offsetof(struct thread_options, iodepth_batch_complete_min),
1936 .help = "Min number of IO buffers to retrieve in one go",
1937 .parent = "iodepth",
1938 .hide = 1,
1939 .minval = 0,
1940 .interval = 1,
1941 .def = "1",
1942 .category = FIO_OPT_C_IO,
1943 .group = FIO_OPT_G_IO_BASIC,
1944 },
1945 {
1946 .name = "iodepth_batch_complete_max",
1947 .lname = "Max IO depth batch complete",
1948 .type = FIO_OPT_INT,
1949 .off1 = offsetof(struct thread_options, iodepth_batch_complete_max),
1950 .help = "Max number of IO buffers to retrieve in one go",
1951 .parent = "iodepth",
1952 .hide = 1,
1953 .minval = 0,
1954 .interval = 1,
1955 .category = FIO_OPT_C_IO,
1956 .group = FIO_OPT_G_IO_BASIC,
1957 },
1958 {
1959 .name = "iodepth_low",
1960 .lname = "IO Depth batch low",
1961 .type = FIO_OPT_INT,
1962 .off1 = offsetof(struct thread_options, iodepth_low),
1963 .help = "Low water mark for queuing depth",
1964 .parent = "iodepth",
1965 .hide = 1,
1966 .interval = 1,
1967 .category = FIO_OPT_C_IO,
1968 .group = FIO_OPT_G_IO_BASIC,
1969 },
1970 {
1971 .name = "serialize_overlap",
1972 .lname = "Serialize overlap",
1973 .off1 = offsetof(struct thread_options, serialize_overlap),
1974 .type = FIO_OPT_BOOL,
1975 .help = "Wait for in-flight IOs that collide to complete",
1976 .parent = "iodepth",
1977 .def = "0",
1978 .category = FIO_OPT_C_IO,
1979 .group = FIO_OPT_G_IO_BASIC,
1980 },
1981 {
1982 .name = "io_submit_mode",
1983 .lname = "IO submit mode",
1984 .type = FIO_OPT_STR,
1985 .off1 = offsetof(struct thread_options, io_submit_mode),
1986 .help = "How IO submissions and completions are done",
1987 .def = "inline",
1988 .category = FIO_OPT_C_IO,
1989 .group = FIO_OPT_G_IO_BASIC,
1990 .posval = {
1991 { .ival = "inline",
1992 .oval = IO_MODE_INLINE,
1993 .help = "Submit and complete IO inline",
1994 },
1995 { .ival = "offload",
1996 .oval = IO_MODE_OFFLOAD,
1997 .help = "Offload submit and complete to threads",
1998 },
1999 },
2000 },
2001 {
2002 .name = "size",
2003 .lname = "Size",
2004 .type = FIO_OPT_STR_VAL,
2005 .cb = str_size_cb,
2006 .off1 = offsetof(struct thread_options, size),
2007 .help = "Total size of device or files",
2008 .interval = 1024 * 1024,
2009 .category = FIO_OPT_C_IO,
2010 .group = FIO_OPT_G_INVALID,
2011 },
2012 {
2013 .name = "io_size",
2014 .alias = "io_limit",
2015 .lname = "IO Size",
2016 .type = FIO_OPT_STR_VAL,
2017 .off1 = offsetof(struct thread_options, io_size),
2018 .help = "Total size of I/O to be performed",
2019 .interval = 1024 * 1024,
2020 .category = FIO_OPT_C_IO,
2021 .group = FIO_OPT_G_INVALID,
2022 },
2023 {
2024 .name = "fill_device",
2025 .lname = "Fill device",
2026 .alias = "fill_fs",
2027 .type = FIO_OPT_BOOL,
2028 .off1 = offsetof(struct thread_options, fill_device),
2029 .help = "Write until an ENOSPC error occurs",
2030 .def = "0",
2031 .category = FIO_OPT_C_FILE,
2032 .group = FIO_OPT_G_INVALID,
2033 },
2034 {
2035 .name = "filesize",
2036 .lname = "File size",
2037 .type = FIO_OPT_STR_VAL,
2038 .off1 = offsetof(struct thread_options, file_size_low),
2039 .off2 = offsetof(struct thread_options, file_size_high),
2040 .minval = 1,
2041 .help = "Size of individual files",
2042 .interval = 1024 * 1024,
2043 .category = FIO_OPT_C_FILE,
2044 .group = FIO_OPT_G_INVALID,
2045 },
2046 {
2047 .name = "file_append",
2048 .lname = "File append",
2049 .type = FIO_OPT_BOOL,
2050 .off1 = offsetof(struct thread_options, file_append),
2051 .help = "IO will start at the end of the file(s)",
2052 .def = "0",
2053 .category = FIO_OPT_C_FILE,
2054 .group = FIO_OPT_G_INVALID,
2055 },
2056 {
2057 .name = "offset",
2058 .lname = "IO offset",
2059 .alias = "fileoffset",
2060 .type = FIO_OPT_STR_VAL,
2061 .cb = str_offset_cb,
2062 .off1 = offsetof(struct thread_options, start_offset),
2063 .help = "Start IO from this offset",
2064 .def = "0",
2065 .interval = 1024 * 1024,
2066 .category = FIO_OPT_C_IO,
2067 .group = FIO_OPT_G_INVALID,
2068 },
2069 {
2070 .name = "offset_align",
2071 .lname = "IO offset alignment",
2072 .type = FIO_OPT_INT,
2073 .off1 = offsetof(struct thread_options, start_offset_align),
2074 .help = "Start IO from this offset alignment",
2075 .def = "0",
2076 .interval = 512,
2077 .category = FIO_OPT_C_IO,
2078 .group = FIO_OPT_G_INVALID,
2079 },
2080 {
2081 .name = "offset_increment",
2082 .lname = "IO offset increment",
2083 .type = FIO_OPT_STR_VAL,
2084 .off1 = offsetof(struct thread_options, offset_increment),
2085 .help = "What is the increment from one offset to the next",
2086 .parent = "offset",
2087 .hide = 1,
2088 .def = "0",
2089 .interval = 1024 * 1024,
2090 .category = FIO_OPT_C_IO,
2091 .group = FIO_OPT_G_INVALID,
2092 },
2093 {
2094 .name = "number_ios",
2095 .lname = "Number of IOs to perform",
2096 .type = FIO_OPT_STR_VAL,
2097 .off1 = offsetof(struct thread_options, number_ios),
2098 .help = "Force job completion after this number of IOs",
2099 .def = "0",
2100 .category = FIO_OPT_C_IO,
2101 .group = FIO_OPT_G_INVALID,
2102 },
2103 {
2104 .name = "bs",
2105 .lname = "Block size",
2106 .alias = "blocksize",
2107 .type = FIO_OPT_ULL,
2108 .off1 = offsetof(struct thread_options, bs[DDIR_READ]),
2109 .off2 = offsetof(struct thread_options, bs[DDIR_WRITE]),
2110 .off3 = offsetof(struct thread_options, bs[DDIR_TRIM]),
2111 .minval = 1,
2112 .help = "Block size unit",
2113 .def = "4096",
2114 .parent = "rw",
2115 .hide = 1,
2116 .interval = 512,
2117 .category = FIO_OPT_C_IO,
2118 .group = FIO_OPT_G_INVALID,
2119 },
2120 {
2121 .name = "ba",
2122 .lname = "Block size align",
2123 .alias = "blockalign",
2124 .type = FIO_OPT_ULL,
2125 .off1 = offsetof(struct thread_options, ba[DDIR_READ]),
2126 .off2 = offsetof(struct thread_options, ba[DDIR_WRITE]),
2127 .off3 = offsetof(struct thread_options, ba[DDIR_TRIM]),
2128 .minval = 1,
2129 .help = "IO block offset alignment",
2130 .parent = "rw",
2131 .hide = 1,
2132 .interval = 512,
2133 .category = FIO_OPT_C_IO,
2134 .group = FIO_OPT_G_INVALID,
2135 },
2136 {
2137 .name = "bsrange",
2138 .lname = "Block size range",
2139 .alias = "blocksize_range",
2140 .type = FIO_OPT_RANGE,
2141 .off1 = offsetof(struct thread_options, min_bs[DDIR_READ]),
2142 .off2 = offsetof(struct thread_options, max_bs[DDIR_READ]),
2143 .off3 = offsetof(struct thread_options, min_bs[DDIR_WRITE]),
2144 .off4 = offsetof(struct thread_options, max_bs[DDIR_WRITE]),
2145 .off5 = offsetof(struct thread_options, min_bs[DDIR_TRIM]),
2146 .off6 = offsetof(struct thread_options, max_bs[DDIR_TRIM]),
2147 .minval = 1,
2148 .help = "Set block size range (in more detail than bs)",
2149 .parent = "rw",
2150 .hide = 1,
2151 .interval = 4096,
2152 .category = FIO_OPT_C_IO,
2153 .group = FIO_OPT_G_INVALID,
2154 },
2155 {
2156 .name = "bssplit",
2157 .lname = "Block size split",
2158 .type = FIO_OPT_STR_ULL,
2159 .cb = str_bssplit_cb,
2160 .off1 = offsetof(struct thread_options, bssplit),
2161 .help = "Set a specific mix of block sizes",
2162 .parent = "rw",
2163 .hide = 1,
2164 .category = FIO_OPT_C_IO,
2165 .group = FIO_OPT_G_INVALID,
2166 },
2167 {
2168 .name = "bs_unaligned",
2169 .lname = "Block size unaligned",
2170 .alias = "blocksize_unaligned",
2171 .type = FIO_OPT_STR_SET,
2172 .off1 = offsetof(struct thread_options, bs_unaligned),
2173 .help = "Don't sector align IO buffer sizes",
2174 .parent = "rw",
2175 .hide = 1,
2176 .category = FIO_OPT_C_IO,
2177 .group = FIO_OPT_G_INVALID,
2178 },
2179 {
2180 .name = "bs_is_seq_rand",
2181 .lname = "Block size division is seq/random (not read/write)",
2182 .type = FIO_OPT_BOOL,
2183 .off1 = offsetof(struct thread_options, bs_is_seq_rand),
2184 .help = "Consider any blocksize setting to be sequential,random",
2185 .def = "0",
2186 .parent = "blocksize",
2187 .category = FIO_OPT_C_IO,
2188 .group = FIO_OPT_G_INVALID,
2189 },
2190 {
2191 .name = "randrepeat",
2192 .lname = "Random repeatable",
2193 .type = FIO_OPT_BOOL,
2194 .off1 = offsetof(struct thread_options, rand_repeatable),
2195 .help = "Use repeatable random IO pattern",
2196 .def = "1",
2197 .parent = "rw",
2198 .hide = 1,
2199 .category = FIO_OPT_C_IO,
2200 .group = FIO_OPT_G_RANDOM,
2201 },
2202 {
2203 .name = "randseed",
2204 .lname = "The random generator seed",
2205 .type = FIO_OPT_STR_VAL,
2206 .off1 = offsetof(struct thread_options, rand_seed),
2207 .help = "Set the random generator seed value",
2208 .def = "0x89",
2209 .parent = "rw",
2210 .category = FIO_OPT_C_IO,
2211 .group = FIO_OPT_G_RANDOM,
2212 },
2213 {
2214 .name = "norandommap",
2215 .lname = "No randommap",
2216 .type = FIO_OPT_STR_SET,
2217 .off1 = offsetof(struct thread_options, norandommap),
2218 .help = "Accept potential duplicate random blocks",
2219 .parent = "rw",
2220 .hide = 1,
2221 .hide_on_set = 1,
2222 .category = FIO_OPT_C_IO,
2223 .group = FIO_OPT_G_RANDOM,
2224 },
2225 {
2226 .name = "softrandommap",
2227 .lname = "Soft randommap",
2228 .type = FIO_OPT_BOOL,
2229 .off1 = offsetof(struct thread_options, softrandommap),
2230 .help = "Set norandommap if randommap allocation fails",
2231 .parent = "norandommap",
2232 .hide = 1,
2233 .def = "0",
2234 .category = FIO_OPT_C_IO,
2235 .group = FIO_OPT_G_RANDOM,
2236 },
2237 {
2238 .name = "random_generator",
2239 .lname = "Random Generator",
2240 .type = FIO_OPT_STR,
2241 .off1 = offsetof(struct thread_options, random_generator),
2242 .help = "Type of random number generator to use",
2243 .def = "tausworthe",
2244 .posval = {
2245 { .ival = "tausworthe",
2246 .oval = FIO_RAND_GEN_TAUSWORTHE,
2247 .help = "Strong Tausworthe generator",
2248 },
2249 { .ival = "lfsr",
2250 .oval = FIO_RAND_GEN_LFSR,
2251 .help = "Variable length LFSR",
2252 },
2253 {
2254 .ival = "tausworthe64",
2255 .oval = FIO_RAND_GEN_TAUSWORTHE64,
2256 .help = "64-bit Tausworthe variant",
2257 },
2258 },
2259 .category = FIO_OPT_C_IO,
2260 .group = FIO_OPT_G_RANDOM,
2261 },
2262 {
2263 .name = "random_distribution",
2264 .lname = "Random Distribution",
2265 .type = FIO_OPT_STR,
2266 .off1 = offsetof(struct thread_options, random_distribution),
2267 .cb = str_random_distribution_cb,
2268 .help = "Random offset distribution generator",
2269 .def = "random",
2270 .posval = {
2271 { .ival = "random",
2272 .oval = FIO_RAND_DIST_RANDOM,
2273 .help = "Completely random",
2274 },
2275 { .ival = "zipf",
2276 .oval = FIO_RAND_DIST_ZIPF,
2277 .help = "Zipf distribution",
2278 },
2279 { .ival = "pareto",
2280 .oval = FIO_RAND_DIST_PARETO,
2281 .help = "Pareto distribution",
2282 },
2283 { .ival = "normal",
2284 .oval = FIO_RAND_DIST_GAUSS,
2285 .help = "Normal (Gaussian) distribution",
2286 },
2287 { .ival = "zoned",
2288 .oval = FIO_RAND_DIST_ZONED,
2289 .help = "Zoned random distribution",
2290 },
2291 { .ival = "zoned_abs",
2292 .oval = FIO_RAND_DIST_ZONED_ABS,
2293 .help = "Zoned absolute random distribution",
2294 },
2295 },
2296 .category = FIO_OPT_C_IO,
2297 .group = FIO_OPT_G_RANDOM,
2298 },
2299 {
2300 .name = "percentage_random",
2301 .lname = "Percentage Random",
2302 .type = FIO_OPT_INT,
2303 .off1 = offsetof(struct thread_options, perc_rand[DDIR_READ]),
2304 .off2 = offsetof(struct thread_options, perc_rand[DDIR_WRITE]),
2305 .off3 = offsetof(struct thread_options, perc_rand[DDIR_TRIM]),
2306 .maxval = 100,
2307 .help = "Percentage of seq/random mix that should be random",
2308 .def = "100,100,100",
2309 .interval = 5,
2310 .inverse = "percentage_sequential",
2311 .category = FIO_OPT_C_IO,
2312 .group = FIO_OPT_G_RANDOM,
2313 },
2314 {
2315 .name = "percentage_sequential",
2316 .lname = "Percentage Sequential",
2317 .type = FIO_OPT_DEPRECATED,
2318 .category = FIO_OPT_C_IO,
2319 .group = FIO_OPT_G_RANDOM,
2320 },
2321 {
2322 .name = "allrandrepeat",
2323 .lname = "All Random Repeat",
2324 .type = FIO_OPT_BOOL,
2325 .off1 = offsetof(struct thread_options, allrand_repeatable),
2326 .help = "Use repeatable random numbers for everything",
2327 .def = "0",
2328 .category = FIO_OPT_C_IO,
2329 .group = FIO_OPT_G_RANDOM,
2330 },
2331 {
2332 .name = "nrfiles",
2333 .lname = "Number of files",
2334 .alias = "nr_files",
2335 .type = FIO_OPT_INT,
2336 .off1 = offsetof(struct thread_options, nr_files),
2337 .help = "Split job workload between this number of files",
2338 .def = "1",
2339 .interval = 1,
2340 .category = FIO_OPT_C_FILE,
2341 .group = FIO_OPT_G_INVALID,
2342 },
2343 {
2344 .name = "openfiles",
2345 .lname = "Number of open files",
2346 .type = FIO_OPT_INT,
2347 .off1 = offsetof(struct thread_options, open_files),
2348 .help = "Number of files to keep open at the same time",
2349 .category = FIO_OPT_C_FILE,
2350 .group = FIO_OPT_G_INVALID,
2351 },
2352 {
2353 .name = "file_service_type",
2354 .lname = "File service type",
2355 .type = FIO_OPT_STR,
2356 .cb = str_fst_cb,
2357 .off1 = offsetof(struct thread_options, file_service_type),
2358 .help = "How to select which file to service next",
2359 .def = "roundrobin",
2360 .category = FIO_OPT_C_FILE,
2361 .group = FIO_OPT_G_INVALID,
2362 .posval = {
2363 { .ival = "random",
2364 .oval = FIO_FSERVICE_RANDOM,
2365 .help = "Choose a file at random (uniform)",
2366 },
2367 { .ival = "zipf",
2368 .oval = FIO_FSERVICE_ZIPF,
2369 .help = "Zipf randomized",
2370 },
2371 { .ival = "pareto",
2372 .oval = FIO_FSERVICE_PARETO,
2373 .help = "Pareto randomized",
2374 },
2375 { .ival = "normal",
2376 .oval = FIO_FSERVICE_GAUSS,
2377 .help = "Normal (Gaussian) randomized",
2378 },
2379 { .ival = "gauss",
2380 .oval = FIO_FSERVICE_GAUSS,
2381 .help = "Alias for normal",
2382 },
2383 { .ival = "roundrobin",
2384 .oval = FIO_FSERVICE_RR,
2385 .help = "Round robin select files",
2386 },
2387 { .ival = "sequential",
2388 .oval = FIO_FSERVICE_SEQ,
2389 .help = "Finish one file before moving to the next",
2390 },
2391 },
2392 .parent = "nrfiles",
2393 .hide = 1,
2394 },
2395#ifdef FIO_HAVE_ANY_FALLOCATE
2396 {
2397 .name = "fallocate",
2398 .lname = "Fallocate",
2399 .type = FIO_OPT_STR,
2400 .off1 = offsetof(struct thread_options, fallocate_mode),
2401 .help = "Whether pre-allocation is performed when laying out files",
2402 .def = "native",
2403 .category = FIO_OPT_C_FILE,
2404 .group = FIO_OPT_G_INVALID,
2405 .posval = {
2406 { .ival = "none",
2407 .oval = FIO_FALLOCATE_NONE,
2408 .help = "Do not pre-allocate space",
2409 },
2410 { .ival = "native",
2411 .oval = FIO_FALLOCATE_NATIVE,
2412 .help = "Use native pre-allocation if possible",
2413 },
2414#ifdef CONFIG_POSIX_FALLOCATE
2415 { .ival = "posix",
2416 .oval = FIO_FALLOCATE_POSIX,
2417 .help = "Use posix_fallocate()",
2418 },
2419#endif
2420#ifdef CONFIG_LINUX_FALLOCATE
2421 { .ival = "keep",
2422 .oval = FIO_FALLOCATE_KEEP_SIZE,
2423 .help = "Use fallocate(..., FALLOC_FL_KEEP_SIZE, ...)",
2424 },
2425#endif
2426 /* Compatibility with former boolean values */
2427 { .ival = "0",
2428 .oval = FIO_FALLOCATE_NONE,
2429 .help = "Alias for 'none'",
2430 },
2431#ifdef CONFIG_POSIX_FALLOCATE
2432 { .ival = "1",
2433 .oval = FIO_FALLOCATE_POSIX,
2434 .help = "Alias for 'posix'",
2435 },
2436#endif
2437 },
2438 },
2439#else /* FIO_HAVE_ANY_FALLOCATE */
2440 {
2441 .name = "fallocate",
2442 .lname = "Fallocate",
2443 .type = FIO_OPT_UNSUPPORTED,
2444 .help = "Your platform does not support fallocate",
2445 },
2446#endif /* FIO_HAVE_ANY_FALLOCATE */
2447 {
2448 .name = "fadvise_hint",
2449 .lname = "Fadvise hint",
2450 .type = FIO_OPT_STR,
2451 .off1 = offsetof(struct thread_options, fadvise_hint),
2452 .posval = {
2453 { .ival = "0",
2454 .oval = F_ADV_NONE,
2455 .help = "Don't issue fadvise/madvise",
2456 },
2457 { .ival = "1",
2458 .oval = F_ADV_TYPE,
2459 .help = "Advise using fio IO pattern",
2460 },
2461 { .ival = "random",
2462 .oval = F_ADV_RANDOM,
2463 .help = "Advise using FADV_RANDOM",
2464 },
2465 { .ival = "sequential",
2466 .oval = F_ADV_SEQUENTIAL,
2467 .help = "Advise using FADV_SEQUENTIAL",
2468 },
2469 },
2470 .help = "Use fadvise() to advise the kernel on IO pattern",
2471 .def = "1",
2472 .category = FIO_OPT_C_FILE,
2473 .group = FIO_OPT_G_INVALID,
2474 },
2475 {
2476 .name = "fsync",
2477 .lname = "Fsync",
2478 .type = FIO_OPT_INT,
2479 .off1 = offsetof(struct thread_options, fsync_blocks),
2480 .help = "Issue fsync for writes every given number of blocks",
2481 .def = "0",
2482 .interval = 1,
2483 .category = FIO_OPT_C_FILE,
2484 .group = FIO_OPT_G_INVALID,
2485 },
2486 {
2487 .name = "fdatasync",
2488 .lname = "Fdatasync",
2489 .type = FIO_OPT_INT,
2490 .off1 = offsetof(struct thread_options, fdatasync_blocks),
2491 .help = "Issue fdatasync for writes every given number of blocks",
2492 .def = "0",
2493 .interval = 1,
2494 .category = FIO_OPT_C_FILE,
2495 .group = FIO_OPT_G_INVALID,
2496 },
2497 {
2498 .name = "write_barrier",
2499 .lname = "Write barrier",
2500 .type = FIO_OPT_INT,
2501 .off1 = offsetof(struct thread_options, barrier_blocks),
2502 .help = "Make every Nth write a barrier write",
2503 .def = "0",
2504 .interval = 1,
2505 .category = FIO_OPT_C_IO,
2506 .group = FIO_OPT_G_INVALID,
2507 },
2508#ifdef CONFIG_SYNC_FILE_RANGE
2509 {
2510 .name = "sync_file_range",
2511 .lname = "Sync file range",
2512 .posval = {
2513 { .ival = "wait_before",
2514 .oval = SYNC_FILE_RANGE_WAIT_BEFORE,
2515 .help = "SYNC_FILE_RANGE_WAIT_BEFORE",
2516 .orval = 1,
2517 },
2518 { .ival = "write",
2519 .oval = SYNC_FILE_RANGE_WRITE,
2520 .help = "SYNC_FILE_RANGE_WRITE",
2521 .orval = 1,
2522 },
2523 {
2524 .ival = "wait_after",
2525 .oval = SYNC_FILE_RANGE_WAIT_AFTER,
2526 .help = "SYNC_FILE_RANGE_WAIT_AFTER",
2527 .orval = 1,
2528 },
2529 },
2530 .type = FIO_OPT_STR_MULTI,
2531 .cb = str_sfr_cb,
2532 .off1 = offsetof(struct thread_options, sync_file_range),
2533 .help = "Use sync_file_range()",
2534 .category = FIO_OPT_C_FILE,
2535 .group = FIO_OPT_G_INVALID,
2536 },
2537#else
2538 {
2539 .name = "sync_file_range",
2540 .lname = "Sync file range",
2541 .type = FIO_OPT_UNSUPPORTED,
2542 .help = "Your platform does not support sync_file_range",
2543 },
2544#endif
2545 {
2546 .name = "direct",
2547 .lname = "Direct I/O",
2548 .type = FIO_OPT_BOOL,
2549 .off1 = offsetof(struct thread_options, odirect),
2550 .help = "Use O_DIRECT IO (negates buffered)",
2551 .def = "0",
2552 .inverse = "buffered",
2553 .category = FIO_OPT_C_IO,
2554 .group = FIO_OPT_G_IO_TYPE,
2555 },
2556 {
2557 .name = "atomic",
2558 .lname = "Atomic I/O",
2559 .type = FIO_OPT_BOOL,
2560 .off1 = offsetof(struct thread_options, oatomic),
2561 .help = "Use Atomic IO with O_DIRECT (implies O_DIRECT)",
2562 .def = "0",
2563 .category = FIO_OPT_C_IO,
2564 .group = FIO_OPT_G_IO_TYPE,
2565 },
2566 {
2567 .name = "buffered",
2568 .lname = "Buffered I/O",
2569 .type = FIO_OPT_BOOL,
2570 .off1 = offsetof(struct thread_options, odirect),
2571 .neg = 1,
2572 .help = "Use buffered IO (negates direct)",
2573 .def = "1",
2574 .inverse = "direct",
2575 .category = FIO_OPT_C_IO,
2576 .group = FIO_OPT_G_IO_TYPE,
2577 },
2578 {
2579 .name = "overwrite",
2580 .lname = "Overwrite",
2581 .type = FIO_OPT_BOOL,
2582 .off1 = offsetof(struct thread_options, overwrite),
2583 .help = "When writing, set whether to overwrite current data",
2584 .def = "0",
2585 .category = FIO_OPT_C_FILE,
2586 .group = FIO_OPT_G_INVALID,
2587 },
2588 {
2589 .name = "loops",
2590 .lname = "Loops",
2591 .type = FIO_OPT_INT,
2592 .off1 = offsetof(struct thread_options, loops),
2593 .help = "Number of times to run the job",
2594 .def = "1",
2595 .interval = 1,
2596 .category = FIO_OPT_C_GENERAL,
2597 .group = FIO_OPT_G_RUNTIME,
2598 },
2599 {
2600 .name = "numjobs",
2601 .lname = "Number of jobs",
2602 .type = FIO_OPT_INT,
2603 .off1 = offsetof(struct thread_options, numjobs),
2604 .help = "Duplicate this job this many times",
2605 .def = "1",
2606 .interval = 1,
2607 .category = FIO_OPT_C_GENERAL,
2608 .group = FIO_OPT_G_RUNTIME,
2609 },
2610 {
2611 .name = "startdelay",
2612 .lname = "Start delay",
2613 .type = FIO_OPT_STR_VAL_TIME,
2614 .off1 = offsetof(struct thread_options, start_delay),
2615 .off2 = offsetof(struct thread_options, start_delay_high),
2616 .help = "Only start job when this period has passed",
2617 .def = "0",
2618 .is_seconds = 1,
2619 .is_time = 1,
2620 .category = FIO_OPT_C_GENERAL,
2621 .group = FIO_OPT_G_RUNTIME,
2622 },
2623 {
2624 .name = "runtime",
2625 .lname = "Runtime",
2626 .alias = "timeout",
2627 .type = FIO_OPT_STR_VAL_TIME,
2628 .off1 = offsetof(struct thread_options, timeout),
2629 .help = "Stop workload when this amount of time has passed",
2630 .def = "0",
2631 .is_seconds = 1,
2632 .is_time = 1,
2633 .category = FIO_OPT_C_GENERAL,
2634 .group = FIO_OPT_G_RUNTIME,
2635 },
2636 {
2637 .name = "time_based",
2638 .lname = "Time based",
2639 .type = FIO_OPT_STR_SET,
2640 .off1 = offsetof(struct thread_options, time_based),
2641 .help = "Keep running until runtime/timeout is met",
2642 .category = FIO_OPT_C_GENERAL,
2643 .group = FIO_OPT_G_RUNTIME,
2644 },
2645 {
2646 .name = "verify_only",
2647 .lname = "Verify only",
2648 .type = FIO_OPT_STR_SET,
2649 .off1 = offsetof(struct thread_options, verify_only),
2650 .help = "Verifies previously written data is still valid",
2651 .category = FIO_OPT_C_GENERAL,
2652 .group = FIO_OPT_G_RUNTIME,
2653 },
2654 {
2655 .name = "ramp_time",
2656 .lname = "Ramp time",
2657 .type = FIO_OPT_STR_VAL_TIME,
2658 .off1 = offsetof(struct thread_options, ramp_time),
2659 .help = "Ramp up time before measuring performance",
2660 .is_seconds = 1,
2661 .is_time = 1,
2662 .category = FIO_OPT_C_GENERAL,
2663 .group = FIO_OPT_G_RUNTIME,
2664 },
2665 {
2666 .name = "clocksource",
2667 .lname = "Clock source",
2668 .type = FIO_OPT_STR,
2669 .cb = fio_clock_source_cb,
2670 .off1 = offsetof(struct thread_options, clocksource),
2671 .help = "What type of timing source to use",
2672 .category = FIO_OPT_C_GENERAL,
2673 .group = FIO_OPT_G_CLOCK,
2674 .posval = {
2675#ifdef CONFIG_GETTIMEOFDAY
2676 { .ival = "gettimeofday",
2677 .oval = CS_GTOD,
2678 .help = "Use gettimeofday(2) for timing",
2679 },
2680#endif
2681#ifdef CONFIG_CLOCK_GETTIME
2682 { .ival = "clock_gettime",
2683 .oval = CS_CGETTIME,
2684 .help = "Use clock_gettime(2) for timing",
2685 },
2686#endif
2687#ifdef ARCH_HAVE_CPU_CLOCK
2688 { .ival = "cpu",
2689 .oval = CS_CPUCLOCK,
2690 .help = "Use CPU private clock",
2691 },
2692#endif
2693 },
2694 },
2695 {
2696 .name = "mem",
2697 .alias = "iomem",
2698 .lname = "I/O Memory",
2699 .type = FIO_OPT_STR,
2700 .cb = str_mem_cb,
2701 .off1 = offsetof(struct thread_options, mem_type),
2702 .help = "Backing type for IO buffers",
2703 .def = "malloc",
2704 .category = FIO_OPT_C_IO,
2705 .group = FIO_OPT_G_INVALID,
2706 .posval = {
2707 { .ival = "malloc",
2708 .oval = MEM_MALLOC,
2709 .help = "Use malloc(3) for IO buffers",
2710 },
2711#ifndef CONFIG_NO_SHM
2712 { .ival = "shm",
2713 .oval = MEM_SHM,
2714 .help = "Use shared memory segments for IO buffers",
2715 },
2716#ifdef FIO_HAVE_HUGETLB
2717 { .ival = "shmhuge",
2718 .oval = MEM_SHMHUGE,
2719 .help = "Like shm, but use huge pages",
2720 },
2721#endif
2722#endif
2723 { .ival = "mmap",
2724 .oval = MEM_MMAP,
2725 .help = "Use mmap(2) (file or anon) for IO buffers",
2726 },
2727 { .ival = "mmapshared",
2728 .oval = MEM_MMAPSHARED,
2729 .help = "Like mmap, but use the shared flag",
2730 },
2731#ifdef FIO_HAVE_HUGETLB
2732 { .ival = "mmaphuge",
2733 .oval = MEM_MMAPHUGE,
2734 .help = "Like mmap, but use huge pages",
2735 },
2736#endif
2737#ifdef CONFIG_CUDA
2738 { .ival = "cudamalloc",
2739 .oval = MEM_CUDA_MALLOC,
2740 .help = "Allocate GPU device memory for GPUDirect RDMA",
2741 },
2742#endif
2743 },
2744 },
2745 {
2746 .name = "iomem_align",
2747 .alias = "mem_align",
2748 .lname = "I/O memory alignment",
2749 .type = FIO_OPT_INT,
2750 .off1 = offsetof(struct thread_options, mem_align),
2751 .minval = 0,
2752 .help = "IO memory buffer offset alignment",
2753 .def = "0",
2754 .parent = "iomem",
2755 .hide = 1,
2756 .category = FIO_OPT_C_IO,
2757 .group = FIO_OPT_G_INVALID,
2758 },
2759 {
2760 .name = "verify",
2761 .lname = "Verify",
2762 .type = FIO_OPT_STR,
2763 .off1 = offsetof(struct thread_options, verify),
2764 .help = "Verify data written",
2765 .def = "0",
2766 .category = FIO_OPT_C_IO,
2767 .group = FIO_OPT_G_VERIFY,
2768 .posval = {
2769 { .ival = "0",
2770 .oval = VERIFY_NONE,
2771 .help = "Don't do IO verification",
2772 },
2773 { .ival = "md5",
2774 .oval = VERIFY_MD5,
2775 .help = "Use md5 checksums for verification",
2776 },
2777 { .ival = "crc64",
2778 .oval = VERIFY_CRC64,
2779 .help = "Use crc64 checksums for verification",
2780 },
2781 { .ival = "crc32",
2782 .oval = VERIFY_CRC32,
2783 .help = "Use crc32 checksums for verification",
2784 },
2785 { .ival = "crc32c-intel",
2786 .oval = VERIFY_CRC32C,
2787 .help = "Use crc32c checksums for verification (hw assisted, if available)",
2788 },
2789 { .ival = "crc32c",
2790 .oval = VERIFY_CRC32C,
2791 .help = "Use crc32c checksums for verification (hw assisted, if available)",
2792 },
2793 { .ival = "crc16",
2794 .oval = VERIFY_CRC16,
2795 .help = "Use crc16 checksums for verification",
2796 },
2797 { .ival = "crc7",
2798 .oval = VERIFY_CRC7,
2799 .help = "Use crc7 checksums for verification",
2800 },
2801 { .ival = "sha1",
2802 .oval = VERIFY_SHA1,
2803 .help = "Use sha1 checksums for verification",
2804 },
2805 { .ival = "sha256",
2806 .oval = VERIFY_SHA256,
2807 .help = "Use sha256 checksums for verification",
2808 },
2809 { .ival = "sha512",
2810 .oval = VERIFY_SHA512,
2811 .help = "Use sha512 checksums for verification",
2812 },
2813 { .ival = "sha3-224",
2814 .oval = VERIFY_SHA3_224,
2815 .help = "Use sha3-224 checksums for verification",
2816 },
2817 { .ival = "sha3-256",
2818 .oval = VERIFY_SHA3_256,
2819 .help = "Use sha3-256 checksums for verification",
2820 },
2821 { .ival = "sha3-384",
2822 .oval = VERIFY_SHA3_384,
2823 .help = "Use sha3-384 checksums for verification",
2824 },
2825 { .ival = "sha3-512",
2826 .oval = VERIFY_SHA3_512,
2827 .help = "Use sha3-512 checksums for verification",
2828 },
2829 { .ival = "xxhash",
2830 .oval = VERIFY_XXHASH,
2831 .help = "Use xxhash checksums for verification",
2832 },
2833 /* Meta information was included into verify_header,
2834 * 'meta' verification is implied by default. */
2835 { .ival = "meta",
2836 .oval = VERIFY_HDR_ONLY,
2837 .help = "Use io information for verification. "
2838 "Now is implied by default, thus option is obsolete, "
2839 "don't use it",
2840 },
2841 { .ival = "pattern",
2842 .oval = VERIFY_PATTERN_NO_HDR,
2843 .help = "Verify strict pattern",
2844 },
2845 {
2846 .ival = "null",
2847 .oval = VERIFY_NULL,
2848 .help = "Pretend to verify",
2849 },
2850 },
2851 },
2852 {
2853 .name = "do_verify",
2854 .lname = "Perform verify step",
2855 .type = FIO_OPT_BOOL,
2856 .off1 = offsetof(struct thread_options, do_verify),
2857 .help = "Run verification stage after write",
2858 .def = "1",
2859 .parent = "verify",
2860 .hide = 1,
2861 .category = FIO_OPT_C_IO,
2862 .group = FIO_OPT_G_VERIFY,
2863 },
2864 {
2865 .name = "verifysort",
2866 .lname = "Verify sort",
2867 .type = FIO_OPT_SOFT_DEPRECATED,
2868 .category = FIO_OPT_C_IO,
2869 .group = FIO_OPT_G_VERIFY,
2870 },
2871 {
2872 .name = "verifysort_nr",
2873 .lname = "Verify Sort Nr",
2874 .type = FIO_OPT_SOFT_DEPRECATED,
2875 .category = FIO_OPT_C_IO,
2876 .group = FIO_OPT_G_VERIFY,
2877 },
2878 {
2879 .name = "verify_interval",
2880 .lname = "Verify interval",
2881 .type = FIO_OPT_INT,
2882 .off1 = offsetof(struct thread_options, verify_interval),
2883 .minval = 2 * sizeof(struct verify_header),
2884 .help = "Store verify buffer header every N bytes",
2885 .parent = "verify",
2886 .hide = 1,
2887 .interval = 2 * sizeof(struct verify_header),
2888 .category = FIO_OPT_C_IO,
2889 .group = FIO_OPT_G_VERIFY,
2890 },
2891 {
2892 .name = "verify_offset",
2893 .lname = "Verify offset",
2894 .type = FIO_OPT_INT,
2895 .help = "Offset verify header location by N bytes",
2896 .off1 = offsetof(struct thread_options, verify_offset),
2897 .minval = sizeof(struct verify_header),
2898 .parent = "verify",
2899 .hide = 1,
2900 .category = FIO_OPT_C_IO,
2901 .group = FIO_OPT_G_VERIFY,
2902 },
2903 {
2904 .name = "verify_pattern",
2905 .lname = "Verify pattern",
2906 .type = FIO_OPT_STR,
2907 .cb = str_verify_pattern_cb,
2908 .off1 = offsetof(struct thread_options, verify_pattern),
2909 .help = "Fill pattern for IO buffers",
2910 .parent = "verify",
2911 .hide = 1,
2912 .category = FIO_OPT_C_IO,
2913 .group = FIO_OPT_G_VERIFY,
2914 },
2915 {
2916 .name = "verify_fatal",
2917 .lname = "Verify fatal",
2918 .type = FIO_OPT_BOOL,
2919 .off1 = offsetof(struct thread_options, verify_fatal),
2920 .def = "0",
2921 .help = "Exit on a single verify failure, don't continue",
2922 .parent = "verify",
2923 .hide = 1,
2924 .category = FIO_OPT_C_IO,
2925 .group = FIO_OPT_G_VERIFY,
2926 },
2927 {
2928 .name = "verify_dump",
2929 .lname = "Verify dump",
2930 .type = FIO_OPT_BOOL,
2931 .off1 = offsetof(struct thread_options, verify_dump),
2932 .def = "0",
2933 .help = "Dump contents of good and bad blocks on failure",
2934 .parent = "verify",
2935 .hide = 1,
2936 .category = FIO_OPT_C_IO,
2937 .group = FIO_OPT_G_VERIFY,
2938 },
2939 {
2940 .name = "verify_async",
2941 .lname = "Verify asynchronously",
2942 .type = FIO_OPT_INT,
2943 .off1 = offsetof(struct thread_options, verify_async),
2944 .def = "0",
2945 .help = "Number of async verifier threads to use",
2946 .parent = "verify",
2947 .hide = 1,
2948 .category = FIO_OPT_C_IO,
2949 .group = FIO_OPT_G_VERIFY,
2950 },
2951 {
2952 .name = "verify_backlog",
2953 .lname = "Verify backlog",
2954 .type = FIO_OPT_STR_VAL,
2955 .off1 = offsetof(struct thread_options, verify_backlog),
2956 .help = "Verify after this number of blocks are written",
2957 .parent = "verify",
2958 .hide = 1,
2959 .category = FIO_OPT_C_IO,
2960 .group = FIO_OPT_G_VERIFY,
2961 },
2962 {
2963 .name = "verify_backlog_batch",
2964 .lname = "Verify backlog batch",
2965 .type = FIO_OPT_INT,
2966 .off1 = offsetof(struct thread_options, verify_batch),
2967 .help = "Verify this number of IO blocks",
2968 .parent = "verify",
2969 .hide = 1,
2970 .category = FIO_OPT_C_IO,
2971 .group = FIO_OPT_G_VERIFY,
2972 },
2973#ifdef FIO_HAVE_CPU_AFFINITY
2974 {
2975 .name = "verify_async_cpus",
2976 .lname = "Async verify CPUs",
2977 .type = FIO_OPT_STR,
2978 .cb = str_verify_cpus_allowed_cb,
2979 .off1 = offsetof(struct thread_options, verify_cpumask),
2980 .help = "Set CPUs allowed for async verify threads",
2981 .parent = "verify_async",
2982 .hide = 1,
2983 .category = FIO_OPT_C_IO,
2984 .group = FIO_OPT_G_VERIFY,
2985 },
2986#else
2987 {
2988 .name = "verify_async_cpus",
2989 .lname = "Async verify CPUs",
2990 .type = FIO_OPT_UNSUPPORTED,
2991 .help = "Your platform does not support CPU affinities",
2992 },
2993#endif
2994 {
2995 .name = "experimental_verify",
2996 .lname = "Experimental Verify",
2997 .off1 = offsetof(struct thread_options, experimental_verify),
2998 .type = FIO_OPT_BOOL,
2999 .help = "Enable experimental verification",
3000 .parent = "verify",
3001 .category = FIO_OPT_C_IO,
3002 .group = FIO_OPT_G_VERIFY,
3003 },
3004 {
3005 .name = "verify_state_load",
3006 .lname = "Load verify state",
3007 .off1 = offsetof(struct thread_options, verify_state),
3008 .type = FIO_OPT_BOOL,
3009 .help = "Load verify termination state",
3010 .parent = "verify",
3011 .category = FIO_OPT_C_IO,
3012 .group = FIO_OPT_G_VERIFY,
3013 },
3014 {
3015 .name = "verify_state_save",
3016 .lname = "Save verify state",
3017 .off1 = offsetof(struct thread_options, verify_state_save),
3018 .type = FIO_OPT_BOOL,
3019 .def = "1",
3020 .help = "Save verify state on termination",
3021 .parent = "verify",
3022 .category = FIO_OPT_C_IO,
3023 .group = FIO_OPT_G_VERIFY,
3024 },
3025#ifdef FIO_HAVE_TRIM
3026 {
3027 .name = "trim_percentage",
3028 .lname = "Trim percentage",
3029 .type = FIO_OPT_INT,
3030 .off1 = offsetof(struct thread_options, trim_percentage),
3031 .minval = 0,
3032 .maxval = 100,
3033 .help = "Number of verify blocks to trim (i.e., discard)",
3034 .parent = "verify",
3035 .def = "0",
3036 .interval = 1,
3037 .hide = 1,
3038 .category = FIO_OPT_C_IO,
3039 .group = FIO_OPT_G_TRIM,
3040 },
3041 {
3042 .name = "trim_verify_zero",
3043 .lname = "Verify trim zero",
3044 .type = FIO_OPT_BOOL,
3045 .help = "Verify that trimmed (i.e., discarded) blocks are returned as zeroes",
3046 .off1 = offsetof(struct thread_options, trim_zero),
3047 .parent = "trim_percentage",
3048 .hide = 1,
3049 .def = "1",
3050 .category = FIO_OPT_C_IO,
3051 .group = FIO_OPT_G_TRIM,
3052 },
3053 {
3054 .name = "trim_backlog",
3055 .lname = "Trim backlog",
3056 .type = FIO_OPT_STR_VAL,
3057 .off1 = offsetof(struct thread_options, trim_backlog),
3058 .help = "Trim after this number of blocks are written",
3059 .parent = "trim_percentage",
3060 .hide = 1,
3061 .interval = 1,
3062 .category = FIO_OPT_C_IO,
3063 .group = FIO_OPT_G_TRIM,
3064 },
3065 {
3066 .name = "trim_backlog_batch",
3067 .lname = "Trim backlog batch",
3068 .type = FIO_OPT_INT,
3069 .off1 = offsetof(struct thread_options, trim_batch),
3070 .help = "Trim this number of IO blocks",
3071 .parent = "trim_percentage",
3072 .hide = 1,
3073 .interval = 1,
3074 .category = FIO_OPT_C_IO,
3075 .group = FIO_OPT_G_TRIM,
3076 },
3077#else
3078 {
3079 .name = "trim_percentage",
3080 .lname = "Trim percentage",
3081 .type = FIO_OPT_UNSUPPORTED,
3082 .help = "Fio does not support TRIM on your platform",
3083 },
3084 {
3085 .name = "trim_verify_zero",
3086 .lname = "Verify trim zero",
3087 .type = FIO_OPT_UNSUPPORTED,
3088 .help = "Fio does not support TRIM on your platform",
3089 },
3090 {
3091 .name = "trim_backlog",
3092 .lname = "Trim backlog",
3093 .type = FIO_OPT_UNSUPPORTED,
3094 .help = "Fio does not support TRIM on your platform",
3095 },
3096 {
3097 .name = "trim_backlog_batch",
3098 .lname = "Trim backlog batch",
3099 .type = FIO_OPT_UNSUPPORTED,
3100 .help = "Fio does not support TRIM on your platform",
3101 },
3102#endif
3103 {
3104 .name = "write_iolog",
3105 .lname = "Write I/O log",
3106 .type = FIO_OPT_STR_STORE,
3107 .off1 = offsetof(struct thread_options, write_iolog_file),
3108 .help = "Store IO pattern to file",
3109 .category = FIO_OPT_C_IO,
3110 .group = FIO_OPT_G_IOLOG,
3111 },
3112 {
3113 .name = "read_iolog",
3114 .lname = "Read I/O log",
3115 .type = FIO_OPT_STR_STORE,
3116 .off1 = offsetof(struct thread_options, read_iolog_file),
3117 .help = "Playback IO pattern from file",
3118 .category = FIO_OPT_C_IO,
3119 .group = FIO_OPT_G_IOLOG,
3120 },
3121 {
3122 .name = "read_iolog_chunked",
3123 .lname = "Read I/O log in parts",
3124 .type = FIO_OPT_BOOL,
3125 .off1 = offsetof(struct thread_options, read_iolog_chunked),
3126 .def = "0",
3127 .parent = "read_iolog",
3128 .help = "Parse IO pattern in chunks",
3129 .category = FIO_OPT_C_IO,
3130 .group = FIO_OPT_G_IOLOG,
3131 },
3132 {
3133 .name = "replay_no_stall",
3134 .lname = "Don't stall on replay",
3135 .type = FIO_OPT_BOOL,
3136 .off1 = offsetof(struct thread_options, no_stall),
3137 .def = "0",
3138 .parent = "read_iolog",
3139 .hide = 1,
3140 .help = "Playback IO pattern file as fast as possible without stalls",
3141 .category = FIO_OPT_C_IO,
3142 .group = FIO_OPT_G_IOLOG,
3143 },
3144 {
3145 .name = "replay_redirect",
3146 .lname = "Redirect device for replay",
3147 .type = FIO_OPT_STR_STORE,
3148 .off1 = offsetof(struct thread_options, replay_redirect),
3149 .parent = "read_iolog",
3150 .hide = 1,
3151 .help = "Replay all I/O onto this device, regardless of trace device",
3152 .category = FIO_OPT_C_IO,
3153 .group = FIO_OPT_G_IOLOG,
3154 },
3155 {
3156 .name = "replay_scale",
3157 .lname = "Replace offset scale factor",
3158 .type = FIO_OPT_INT,
3159 .off1 = offsetof(struct thread_options, replay_scale),
3160 .parent = "read_iolog",
3161 .def = "1",
3162 .help = "Align offsets to this blocksize",
3163 .category = FIO_OPT_C_IO,
3164 .group = FIO_OPT_G_IOLOG,
3165 },
3166 {
3167 .name = "replay_align",
3168 .lname = "Replace alignment",
3169 .type = FIO_OPT_INT,
3170 .off1 = offsetof(struct thread_options, replay_align),
3171 .parent = "read_iolog",
3172 .help = "Scale offset down by this factor",
3173 .category = FIO_OPT_C_IO,
3174 .group = FIO_OPT_G_IOLOG,
3175 .pow2 = 1,
3176 },
3177 {
3178 .name = "replay_time_scale",
3179 .lname = "Replay Time Scale",
3180 .type = FIO_OPT_INT,
3181 .off1 = offsetof(struct thread_options, replay_time_scale),
3182 .def = "100",
3183 .minval = 1,
3184 .parent = "read_iolog",
3185 .hide = 1,
3186 .help = "Scale time for replay events",
3187 .category = FIO_OPT_C_IO,
3188 .group = FIO_OPT_G_IOLOG,
3189 },
3190 {
3191 .name = "replay_skip",
3192 .lname = "Replay Skip",
3193 .type = FIO_OPT_STR,
3194 .cb = str_replay_skip_cb,
3195 .off1 = offsetof(struct thread_options, replay_skip),
3196 .parent = "read_iolog",
3197 .help = "Skip certain IO types (read,write,trim,flush)",
3198 .category = FIO_OPT_C_IO,
3199 .group = FIO_OPT_G_IOLOG,
3200 },
3201 {
3202 .name = "merge_blktrace_file",
3203 .lname = "Merged blktrace output filename",
3204 .type = FIO_OPT_STR_STORE,
3205 .off1 = offsetof(struct thread_options, merge_blktrace_file),
3206 .help = "Merged blktrace output filename",
3207 .category = FIO_OPT_C_IO,
3208 .group = FIO_OPT_G_IOLOG,
3209 },
3210 {
3211 .name = "merge_blktrace_scalars",
3212 .lname = "Percentage to scale each trace",
3213 .type = FIO_OPT_FLOAT_LIST,
3214 .off1 = offsetof(struct thread_options, merge_blktrace_scalars),
3215 .maxlen = FIO_IO_U_LIST_MAX_LEN,
3216 .help = "Percentage to scale each trace",
3217 .category = FIO_OPT_C_IO,
3218 .group = FIO_OPT_G_IOLOG,
3219 },
3220 {
3221 .name = "merge_blktrace_iters",
3222 .lname = "Number of iterations to run per trace",
3223 .type = FIO_OPT_FLOAT_LIST,
3224 .off1 = offsetof(struct thread_options, merge_blktrace_iters),
3225 .maxlen = FIO_IO_U_LIST_MAX_LEN,
3226 .help = "Number of iterations to run per trace",
3227 .category = FIO_OPT_C_IO,
3228 .group = FIO_OPT_G_IOLOG,
3229 },
3230 {
3231 .name = "exec_prerun",
3232 .lname = "Pre-execute runnable",
3233 .type = FIO_OPT_STR_STORE,
3234 .off1 = offsetof(struct thread_options, exec_prerun),
3235 .help = "Execute this file prior to running job",
3236 .category = FIO_OPT_C_GENERAL,
3237 .group = FIO_OPT_G_INVALID,
3238 },
3239 {
3240 .name = "exec_postrun",
3241 .lname = "Post-execute runnable",
3242 .type = FIO_OPT_STR_STORE,
3243 .off1 = offsetof(struct thread_options, exec_postrun),
3244 .help = "Execute this file after running job",
3245 .category = FIO_OPT_C_GENERAL,
3246 .group = FIO_OPT_G_INVALID,
3247 },
3248#ifdef FIO_HAVE_IOSCHED_SWITCH
3249 {
3250 .name = "ioscheduler",
3251 .lname = "I/O scheduler",
3252 .type = FIO_OPT_STR_STORE,
3253 .off1 = offsetof(struct thread_options, ioscheduler),
3254 .help = "Use this IO scheduler on the backing device",
3255 .category = FIO_OPT_C_FILE,
3256 .group = FIO_OPT_G_INVALID,
3257 },
3258#else
3259 {
3260 .name = "ioscheduler",
3261 .lname = "I/O scheduler",
3262 .type = FIO_OPT_UNSUPPORTED,
3263 .help = "Your platform does not support IO scheduler switching",
3264 },
3265#endif
3266 {
3267 .name = "zonemode",
3268 .lname = "Zone mode",
3269 .help = "Mode for the zonesize, zonerange and zoneskip parameters",
3270 .type = FIO_OPT_STR,
3271 .off1 = offsetof(struct thread_options, zone_mode),
3272 .def = "none",
3273 .category = FIO_OPT_C_IO,
3274 .group = FIO_OPT_G_ZONE,
3275 .posval = {
3276 { .ival = "none",
3277 .oval = ZONE_MODE_NONE,
3278 .help = "no zoning",
3279 },
3280 { .ival = "strided",
3281 .oval = ZONE_MODE_STRIDED,
3282 .help = "strided mode - random I/O is restricted to a single zone",
3283 },
3284 { .ival = "zbd",
3285 .oval = ZONE_MODE_ZBD,
3286 .help = "zoned block device mode - random I/O selects one of multiple zones randomly",
3287 },
3288 },
3289 },
3290 {
3291 .name = "zonesize",
3292 .lname = "Zone size",
3293 .type = FIO_OPT_STR_VAL,
3294 .off1 = offsetof(struct thread_options, zone_size),
3295 .help = "Amount of data to read per zone",
3296 .def = "0",
3297 .interval = 1024 * 1024,
3298 .category = FIO_OPT_C_IO,
3299 .group = FIO_OPT_G_ZONE,
3300 },
3301 {
3302 .name = "zonerange",
3303 .lname = "Zone range",
3304 .type = FIO_OPT_STR_VAL,
3305 .off1 = offsetof(struct thread_options, zone_range),
3306 .help = "Give size of an IO zone",
3307 .def = "0",
3308 .interval = 1024 * 1024,
3309 .category = FIO_OPT_C_IO,
3310 .group = FIO_OPT_G_ZONE,
3311 },
3312 {
3313 .name = "zoneskip",
3314 .lname = "Zone skip",
3315 .type = FIO_OPT_STR_VAL,
3316 .off1 = offsetof(struct thread_options, zone_skip),
3317 .help = "Space between IO zones",
3318 .def = "0",
3319 .interval = 1024 * 1024,
3320 .category = FIO_OPT_C_IO,
3321 .group = FIO_OPT_G_ZONE,
3322 },
3323 {
3324 .name = "read_beyond_wp",
3325 .lname = "Allow reads beyond the zone write pointer",
3326 .type = FIO_OPT_BOOL,
3327 .off1 = offsetof(struct thread_options, read_beyond_wp),
3328 .help = "Allow reads beyond the zone write pointer",
3329 .def = "0",
3330 .category = FIO_OPT_C_IO,
3331 .group = FIO_OPT_G_INVALID,
3332 },
3333 {
3334 .name = "max_open_zones",
3335 .lname = "Maximum number of open zones",
3336 .type = FIO_OPT_INT,
3337 .off1 = offsetof(struct thread_options, max_open_zones),
3338 .maxval = FIO_MAX_OPEN_ZBD_ZONES,
3339 .help = "Limit random writes to SMR drives to the specified"
3340 " number of sequential zones",
3341 .def = "0",
3342 .category = FIO_OPT_C_IO,
3343 .group = FIO_OPT_G_INVALID,
3344 },
3345 {
3346 .name = "zone_reset_threshold",
3347 .lname = "Zone reset threshold",
3348 .help = "Zoned block device reset threshold",
3349 .type = FIO_OPT_FLOAT_LIST,
3350 .maxlen = 1,
3351 .off1 = offsetof(struct thread_options, zrt),
3352 .minfp = 0,
3353 .maxfp = 1,
3354 .category = FIO_OPT_C_IO,
3355 .group = FIO_OPT_G_ZONE,
3356 },
3357 {
3358 .name = "zone_reset_frequency",
3359 .lname = "Zone reset frequency",
3360 .help = "Zoned block device zone reset frequency in HZ",
3361 .type = FIO_OPT_FLOAT_LIST,
3362 .maxlen = 1,
3363 .off1 = offsetof(struct thread_options, zrf),
3364 .minfp = 0,
3365 .maxfp = 1,
3366 .category = FIO_OPT_C_IO,
3367 .group = FIO_OPT_G_ZONE,
3368 },
3369 {
3370 .name = "lockmem",
3371 .lname = "Lock memory",
3372 .type = FIO_OPT_STR_VAL,
3373 .off1 = offsetof(struct thread_options, lockmem),
3374 .help = "Lock down this amount of memory (per worker)",
3375 .def = "0",
3376 .interval = 1024 * 1024,
3377 .category = FIO_OPT_C_GENERAL,
3378 .group = FIO_OPT_G_INVALID,
3379 },
3380 {
3381 .name = "rwmixread",
3382 .lname = "Read/write mix read",
3383 .type = FIO_OPT_INT,
3384 .cb = str_rwmix_read_cb,
3385 .off1 = offsetof(struct thread_options, rwmix[DDIR_READ]),
3386 .maxval = 100,
3387 .help = "Percentage of mixed workload that is reads",
3388 .def = "50",
3389 .interval = 5,
3390 .inverse = "rwmixwrite",
3391 .category = FIO_OPT_C_IO,
3392 .group = FIO_OPT_G_RWMIX,
3393 },
3394 {
3395 .name = "rwmixwrite",
3396 .lname = "Read/write mix write",
3397 .type = FIO_OPT_INT,
3398 .cb = str_rwmix_write_cb,
3399 .off1 = offsetof(struct thread_options, rwmix[DDIR_WRITE]),
3400 .maxval = 100,
3401 .help = "Percentage of mixed workload that is writes",
3402 .def = "50",
3403 .interval = 5,
3404 .inverse = "rwmixread",
3405 .category = FIO_OPT_C_IO,
3406 .group = FIO_OPT_G_RWMIX,
3407 },
3408 {
3409 .name = "rwmixcycle",
3410 .lname = "Read/write mix cycle",
3411 .type = FIO_OPT_DEPRECATED,
3412 .category = FIO_OPT_C_IO,
3413 .group = FIO_OPT_G_RWMIX,
3414 },
3415 {
3416 .name = "nice",
3417 .lname = "Nice",
3418 .type = FIO_OPT_INT,
3419 .off1 = offsetof(struct thread_options, nice),
3420 .help = "Set job CPU nice value",
3421 .minval = -20,
3422 .maxval = 19,
3423 .def = "0",
3424 .interval = 1,
3425 .category = FIO_OPT_C_GENERAL,
3426 .group = FIO_OPT_G_CRED,
3427 },
3428#ifdef FIO_HAVE_IOPRIO
3429 {
3430 .name = "prio",
3431 .lname = "I/O nice priority",
3432 .type = FIO_OPT_INT,
3433 .off1 = offsetof(struct thread_options, ioprio),
3434 .help = "Set job IO priority value",
3435 .minval = IOPRIO_MIN_PRIO,
3436 .maxval = IOPRIO_MAX_PRIO,
3437 .interval = 1,
3438 .category = FIO_OPT_C_GENERAL,
3439 .group = FIO_OPT_G_CRED,
3440 },
3441#else
3442 {
3443 .name = "prio",
3444 .lname = "I/O nice priority",
3445 .type = FIO_OPT_UNSUPPORTED,
3446 .help = "Your platform does not support IO priorities",
3447 },
3448#endif
3449#ifdef FIO_HAVE_IOPRIO_CLASS
3450#ifndef FIO_HAVE_IOPRIO
3451#error "FIO_HAVE_IOPRIO_CLASS requires FIO_HAVE_IOPRIO"
3452#endif
3453 {
3454 .name = "prioclass",
3455 .lname = "I/O nice priority class",
3456 .type = FIO_OPT_INT,
3457 .off1 = offsetof(struct thread_options, ioprio_class),
3458 .help = "Set job IO priority class",
3459 .minval = IOPRIO_MIN_PRIO_CLASS,
3460 .maxval = IOPRIO_MAX_PRIO_CLASS,
3461 .interval = 1,
3462 .category = FIO_OPT_C_GENERAL,
3463 .group = FIO_OPT_G_CRED,
3464 },
3465#else
3466 {
3467 .name = "prioclass",
3468 .lname = "I/O nice priority class",
3469 .type = FIO_OPT_UNSUPPORTED,
3470 .help = "Your platform does not support IO priority classes",
3471 },
3472#endif
3473 {
3474 .name = "thinktime",
3475 .lname = "Thinktime",
3476 .type = FIO_OPT_INT,
3477 .off1 = offsetof(struct thread_options, thinktime),
3478 .help = "Idle time between IO buffers (usec)",
3479 .def = "0",
3480 .is_time = 1,
3481 .category = FIO_OPT_C_IO,
3482 .group = FIO_OPT_G_THINKTIME,
3483 },
3484 {
3485 .name = "thinktime_spin",
3486 .lname = "Thinktime spin",
3487 .type = FIO_OPT_INT,
3488 .off1 = offsetof(struct thread_options, thinktime_spin),
3489 .help = "Start think time by spinning this amount (usec)",
3490 .def = "0",
3491 .is_time = 1,
3492 .parent = "thinktime",
3493 .hide = 1,
3494 .category = FIO_OPT_C_IO,
3495 .group = FIO_OPT_G_THINKTIME,
3496 },
3497 {
3498 .name = "thinktime_blocks",
3499 .lname = "Thinktime blocks",
3500 .type = FIO_OPT_INT,
3501 .off1 = offsetof(struct thread_options, thinktime_blocks),
3502 .help = "IO buffer period between 'thinktime'",
3503 .def = "1",
3504 .parent = "thinktime",
3505 .hide = 1,
3506 .category = FIO_OPT_C_IO,
3507 .group = FIO_OPT_G_THINKTIME,
3508 },
3509 {
3510 .name = "rate",
3511 .lname = "I/O rate",
3512 .type = FIO_OPT_INT,
3513 .off1 = offsetof(struct thread_options, rate[DDIR_READ]),
3514 .off2 = offsetof(struct thread_options, rate[DDIR_WRITE]),
3515 .off3 = offsetof(struct thread_options, rate[DDIR_TRIM]),
3516 .help = "Set bandwidth rate",
3517 .category = FIO_OPT_C_IO,
3518 .group = FIO_OPT_G_RATE,
3519 },
3520 {
3521 .name = "rate_min",
3522 .alias = "ratemin",
3523 .lname = "I/O min rate",
3524 .type = FIO_OPT_INT,
3525 .off1 = offsetof(struct thread_options, ratemin[DDIR_READ]),
3526 .off2 = offsetof(struct thread_options, ratemin[DDIR_WRITE]),
3527 .off3 = offsetof(struct thread_options, ratemin[DDIR_TRIM]),
3528 .help = "Job must meet this rate or it will be shutdown",
3529 .parent = "rate",
3530 .hide = 1,
3531 .category = FIO_OPT_C_IO,
3532 .group = FIO_OPT_G_RATE,
3533 },
3534 {
3535 .name = "rate_iops",
3536 .lname = "I/O rate IOPS",
3537 .type = FIO_OPT_INT,
3538 .off1 = offsetof(struct thread_options, rate_iops[DDIR_READ]),
3539 .off2 = offsetof(struct thread_options, rate_iops[DDIR_WRITE]),
3540 .off3 = offsetof(struct thread_options, rate_iops[DDIR_TRIM]),
3541 .help = "Limit IO used to this number of IO operations/sec",
3542 .hide = 1,
3543 .category = FIO_OPT_C_IO,
3544 .group = FIO_OPT_G_RATE,
3545 },
3546 {
3547 .name = "rate_iops_min",
3548 .lname = "I/O min rate IOPS",
3549 .type = FIO_OPT_INT,
3550 .off1 = offsetof(struct thread_options, rate_iops_min[DDIR_READ]),
3551 .off2 = offsetof(struct thread_options, rate_iops_min[DDIR_WRITE]),
3552 .off3 = offsetof(struct thread_options, rate_iops_min[DDIR_TRIM]),
3553 .help = "Job must meet this rate or it will be shut down",
3554 .parent = "rate_iops",
3555 .hide = 1,
3556 .category = FIO_OPT_C_IO,
3557 .group = FIO_OPT_G_RATE,
3558 },
3559 {
3560 .name = "rate_process",
3561 .lname = "Rate Process",
3562 .type = FIO_OPT_STR,
3563 .off1 = offsetof(struct thread_options, rate_process),
3564 .help = "What process controls how rated IO is managed",
3565 .def = "linear",
3566 .category = FIO_OPT_C_IO,
3567 .group = FIO_OPT_G_RATE,
3568 .posval = {
3569 { .ival = "linear",
3570 .oval = RATE_PROCESS_LINEAR,
3571 .help = "Linear rate of IO",
3572 },
3573 {
3574 .ival = "poisson",
3575 .oval = RATE_PROCESS_POISSON,
3576 .help = "Rate follows Poisson process",
3577 },
3578 },
3579 .parent = "rate",
3580 },
3581 {
3582 .name = "rate_cycle",
3583 .alias = "ratecycle",
3584 .lname = "I/O rate cycle",
3585 .type = FIO_OPT_INT,
3586 .off1 = offsetof(struct thread_options, ratecycle),
3587 .help = "Window average for rate limits (msec)",
3588 .def = "1000",
3589 .parent = "rate",
3590 .hide = 1,
3591 .category = FIO_OPT_C_IO,
3592 .group = FIO_OPT_G_RATE,
3593 },
3594 {
3595 .name = "rate_ignore_thinktime",
3596 .lname = "Rate ignore thinktime",
3597 .type = FIO_OPT_BOOL,
3598 .off1 = offsetof(struct thread_options, rate_ign_think),
3599 .help = "Rated IO ignores thinktime settings",
3600 .parent = "rate",
3601 .category = FIO_OPT_C_IO,
3602 .group = FIO_OPT_G_RATE,
3603 },
3604 {
3605 .name = "max_latency",
3606 .lname = "Max Latency (usec)",
3607 .type = FIO_OPT_STR_VAL_TIME,
3608 .off1 = offsetof(struct thread_options, max_latency),
3609 .help = "Maximum tolerated IO latency (usec)",
3610 .is_time = 1,
3611 .category = FIO_OPT_C_IO,
3612 .group = FIO_OPT_G_LATPROF,
3613 },
3614 {
3615 .name = "latency_target",
3616 .lname = "Latency Target (usec)",
3617 .type = FIO_OPT_STR_VAL_TIME,
3618 .off1 = offsetof(struct thread_options, latency_target),
3619 .help = "Ramp to max queue depth supporting this latency",
3620 .is_time = 1,
3621 .category = FIO_OPT_C_IO,
3622 .group = FIO_OPT_G_LATPROF,
3623 },
3624 {
3625 .name = "latency_window",
3626 .lname = "Latency Window (usec)",
3627 .type = FIO_OPT_STR_VAL_TIME,
3628 .off1 = offsetof(struct thread_options, latency_window),
3629 .help = "Time to sustain latency_target",
3630 .is_time = 1,
3631 .category = FIO_OPT_C_IO,
3632 .group = FIO_OPT_G_LATPROF,
3633 },
3634 {
3635 .name = "latency_percentile",
3636 .lname = "Latency Percentile",
3637 .type = FIO_OPT_FLOAT_LIST,
3638 .off1 = offsetof(struct thread_options, latency_percentile),
3639 .help = "Percentile of IOs must be below latency_target",
3640 .def = "100",
3641 .maxlen = 1,
3642 .minfp = 0.0,
3643 .maxfp = 100.0,
3644 .category = FIO_OPT_C_IO,
3645 .group = FIO_OPT_G_LATPROF,
3646 },
3647 {
3648 .name = "invalidate",
3649 .lname = "Cache invalidate",
3650 .type = FIO_OPT_BOOL,
3651 .off1 = offsetof(struct thread_options, invalidate_cache),
3652 .help = "Invalidate buffer/page cache prior to running job",
3653 .def = "1",
3654 .category = FIO_OPT_C_IO,
3655 .group = FIO_OPT_G_IO_TYPE,
3656 },
3657 {
3658 .name = "sync",
3659 .lname = "Synchronous I/O",
3660 .type = FIO_OPT_BOOL,
3661 .off1 = offsetof(struct thread_options, sync_io),
3662 .help = "Use O_SYNC for buffered writes",
3663 .def = "0",
3664 .parent = "buffered",
3665 .hide = 1,
3666 .category = FIO_OPT_C_IO,
3667 .group = FIO_OPT_G_IO_TYPE,
3668 },
3669#ifdef FIO_HAVE_WRITE_HINT
3670 {
3671 .name = "write_hint",
3672 .lname = "Write hint",
3673 .type = FIO_OPT_STR,
3674 .off1 = offsetof(struct thread_options, write_hint),
3675 .help = "Set expected write life time",
3676 .category = FIO_OPT_C_ENGINE,
3677 .group = FIO_OPT_G_INVALID,
3678 .posval = {
3679 { .ival = "none",
3680 .oval = RWH_WRITE_LIFE_NONE,
3681 },
3682 { .ival = "short",
3683 .oval = RWH_WRITE_LIFE_SHORT,
3684 },
3685 { .ival = "medium",
3686 .oval = RWH_WRITE_LIFE_MEDIUM,
3687 },
3688 { .ival = "long",
3689 .oval = RWH_WRITE_LIFE_LONG,
3690 },
3691 { .ival = "extreme",
3692 .oval = RWH_WRITE_LIFE_EXTREME,
3693 },
3694 },
3695 },
3696#endif
3697 {
3698 .name = "create_serialize",
3699 .lname = "Create serialize",
3700 .type = FIO_OPT_BOOL,
3701 .off1 = offsetof(struct thread_options, create_serialize),
3702 .help = "Serialize creation of job files",
3703 .def = "1",
3704 .category = FIO_OPT_C_FILE,
3705 .group = FIO_OPT_G_INVALID,
3706 },
3707 {
3708 .name = "create_fsync",
3709 .lname = "Create fsync",
3710 .type = FIO_OPT_BOOL,
3711 .off1 = offsetof(struct thread_options, create_fsync),
3712 .help = "fsync file after creation",
3713 .def = "1",
3714 .category = FIO_OPT_C_FILE,
3715 .group = FIO_OPT_G_INVALID,
3716 },
3717 {
3718 .name = "create_on_open",
3719 .lname = "Create on open",
3720 .type = FIO_OPT_BOOL,
3721 .off1 = offsetof(struct thread_options, create_on_open),
3722 .help = "Create files when they are opened for IO",
3723 .def = "0",
3724 .category = FIO_OPT_C_FILE,
3725 .group = FIO_OPT_G_INVALID,
3726 },
3727 {
3728 .name = "create_only",
3729 .lname = "Create Only",
3730 .type = FIO_OPT_BOOL,
3731 .off1 = offsetof(struct thread_options, create_only),
3732 .help = "Only perform file creation phase",
3733 .category = FIO_OPT_C_FILE,
3734 .def = "0",
3735 },
3736 {
3737 .name = "allow_file_create",
3738 .lname = "Allow file create",
3739 .type = FIO_OPT_BOOL,
3740 .off1 = offsetof(struct thread_options, allow_create),
3741 .help = "Permit fio to create files, if they don't exist",
3742 .def = "1",
3743 .category = FIO_OPT_C_FILE,
3744 .group = FIO_OPT_G_FILENAME,
3745 },
3746 {
3747 .name = "allow_mounted_write",
3748 .lname = "Allow mounted write",
3749 .type = FIO_OPT_BOOL,
3750 .off1 = offsetof(struct thread_options, allow_mounted_write),
3751 .help = "Allow writes to a mounted partition",
3752 .def = "0",
3753 .category = FIO_OPT_C_FILE,
3754 .group = FIO_OPT_G_FILENAME,
3755 },
3756 {
3757 .name = "pre_read",
3758 .lname = "Pre-read files",
3759 .type = FIO_OPT_BOOL,
3760 .off1 = offsetof(struct thread_options, pre_read),
3761 .help = "Pre-read files before starting official testing",
3762 .def = "0",
3763 .category = FIO_OPT_C_FILE,
3764 .group = FIO_OPT_G_INVALID,
3765 },
3766#ifdef FIO_HAVE_CPU_AFFINITY
3767 {
3768 .name = "cpumask",
3769 .lname = "CPU mask",
3770 .type = FIO_OPT_INT,
3771 .cb = str_cpumask_cb,
3772 .off1 = offsetof(struct thread_options, cpumask),
3773 .help = "CPU affinity mask",
3774 .category = FIO_OPT_C_GENERAL,
3775 .group = FIO_OPT_G_CRED,
3776 },
3777 {
3778 .name = "cpus_allowed",
3779 .lname = "CPUs allowed",
3780 .type = FIO_OPT_STR,
3781 .cb = str_cpus_allowed_cb,
3782 .off1 = offsetof(struct thread_options, cpumask),
3783 .help = "Set CPUs allowed",
3784 .category = FIO_OPT_C_GENERAL,
3785 .group = FIO_OPT_G_CRED,
3786 },
3787 {
3788 .name = "cpus_allowed_policy",
3789 .lname = "CPUs allowed distribution policy",
3790 .type = FIO_OPT_STR,
3791 .off1 = offsetof(struct thread_options, cpus_allowed_policy),
3792 .help = "Distribution policy for cpus_allowed",
3793 .parent = "cpus_allowed",
3794 .prio = 1,
3795 .posval = {
3796 { .ival = "shared",
3797 .oval = FIO_CPUS_SHARED,
3798 .help = "Mask shared between threads",
3799 },
3800 { .ival = "split",
3801 .oval = FIO_CPUS_SPLIT,
3802 .help = "Mask split between threads",
3803 },
3804 },
3805 .category = FIO_OPT_C_GENERAL,
3806 .group = FIO_OPT_G_CRED,
3807 },
3808#else
3809 {
3810 .name = "cpumask",
3811 .lname = "CPU mask",
3812 .type = FIO_OPT_UNSUPPORTED,
3813 .help = "Your platform does not support CPU affinities",
3814 },
3815 {
3816 .name = "cpus_allowed",
3817 .lname = "CPUs allowed",
3818 .type = FIO_OPT_UNSUPPORTED,
3819 .help = "Your platform does not support CPU affinities",
3820 },
3821 {
3822 .name = "cpus_allowed_policy",
3823 .lname = "CPUs allowed distribution policy",
3824 .type = FIO_OPT_UNSUPPORTED,
3825 .help = "Your platform does not support CPU affinities",
3826 },
3827#endif
3828#ifdef CONFIG_LIBNUMA
3829 {
3830 .name = "numa_cpu_nodes",
3831 .lname = "NUMA CPU Nodes",
3832 .type = FIO_OPT_STR,
3833 .cb = str_numa_cpunodes_cb,
3834 .off1 = offsetof(struct thread_options, numa_cpunodes),
3835 .help = "NUMA CPU nodes bind",
3836 .category = FIO_OPT_C_GENERAL,
3837 .group = FIO_OPT_G_INVALID,
3838 },
3839 {
3840 .name = "numa_mem_policy",
3841 .lname = "NUMA Memory Policy",
3842 .type = FIO_OPT_STR,
3843 .cb = str_numa_mpol_cb,
3844 .off1 = offsetof(struct thread_options, numa_memnodes),
3845 .help = "NUMA memory policy setup",
3846 .category = FIO_OPT_C_GENERAL,
3847 .group = FIO_OPT_G_INVALID,
3848 },
3849#else
3850 {
3851 .name = "numa_cpu_nodes",
3852 .lname = "NUMA CPU Nodes",
3853 .type = FIO_OPT_UNSUPPORTED,
3854 .help = "Build fio with libnuma-dev(el) to enable this option",
3855 },
3856 {
3857 .name = "numa_mem_policy",
3858 .lname = "NUMA Memory Policy",
3859 .type = FIO_OPT_UNSUPPORTED,
3860 .help = "Build fio with libnuma-dev(el) to enable this option",
3861 },
3862#endif
3863#ifdef CONFIG_CUDA
3864 {
3865 .name = "gpu_dev_id",
3866 .lname = "GPU device ID",
3867 .type = FIO_OPT_INT,
3868 .off1 = offsetof(struct thread_options, gpu_dev_id),
3869 .help = "Set GPU device ID for GPUDirect RDMA",
3870 .def = "0",
3871 .category = FIO_OPT_C_GENERAL,
3872 .group = FIO_OPT_G_INVALID,
3873 },
3874#endif
3875 {
3876 .name = "end_fsync",
3877 .lname = "End fsync",
3878 .type = FIO_OPT_BOOL,
3879 .off1 = offsetof(struct thread_options, end_fsync),
3880 .help = "Include fsync at the end of job",
3881 .def = "0",
3882 .category = FIO_OPT_C_FILE,
3883 .group = FIO_OPT_G_INVALID,
3884 },
3885 {
3886 .name = "fsync_on_close",
3887 .lname = "Fsync on close",
3888 .type = FIO_OPT_BOOL,
3889 .off1 = offsetof(struct thread_options, fsync_on_close),
3890 .help = "fsync files on close",
3891 .def = "0",
3892 .category = FIO_OPT_C_FILE,
3893 .group = FIO_OPT_G_INVALID,
3894 },
3895 {
3896 .name = "unlink",
3897 .lname = "Unlink file",
3898 .type = FIO_OPT_BOOL,
3899 .off1 = offsetof(struct thread_options, unlink),
3900 .help = "Unlink created files after job has completed",
3901 .def = "0",
3902 .category = FIO_OPT_C_FILE,
3903 .group = FIO_OPT_G_INVALID,
3904 },
3905 {
3906 .name = "unlink_each_loop",
3907 .lname = "Unlink file after each loop of a job",
3908 .type = FIO_OPT_BOOL,
3909 .off1 = offsetof(struct thread_options, unlink_each_loop),
3910 .help = "Unlink created files after each loop in a job has completed",
3911 .def = "0",
3912 .category = FIO_OPT_C_FILE,
3913 .group = FIO_OPT_G_INVALID,
3914 },
3915 {
3916 .name = "exitall",
3917 .lname = "Exit-all on terminate",
3918 .type = FIO_OPT_STR_SET,
3919 .cb = str_exitall_cb,
3920 .help = "Terminate all jobs when one exits",
3921 .category = FIO_OPT_C_GENERAL,
3922 .group = FIO_OPT_G_PROCESS,
3923 },
3924 {
3925 .name = "exitall_on_error",
3926 .lname = "Exit-all on terminate in error",
3927 .type = FIO_OPT_STR_SET,
3928 .off1 = offsetof(struct thread_options, exitall_error),
3929 .help = "Terminate all jobs when one exits in error",
3930 .category = FIO_OPT_C_GENERAL,
3931 .group = FIO_OPT_G_PROCESS,
3932 },
3933 {
3934 .name = "stonewall",
3935 .lname = "Wait for previous",
3936 .alias = "wait_for_previous",
3937 .type = FIO_OPT_STR_SET,
3938 .off1 = offsetof(struct thread_options, stonewall),
3939 .help = "Insert a hard barrier between this job and previous",
3940 .category = FIO_OPT_C_GENERAL,
3941 .group = FIO_OPT_G_PROCESS,
3942 },
3943 {
3944 .name = "new_group",
3945 .lname = "New group",
3946 .type = FIO_OPT_STR_SET,
3947 .off1 = offsetof(struct thread_options, new_group),
3948 .help = "Mark the start of a new group (for reporting)",
3949 .category = FIO_OPT_C_GENERAL,
3950 .group = FIO_OPT_G_PROCESS,
3951 },
3952 {
3953 .name = "thread",
3954 .lname = "Thread",
3955 .type = FIO_OPT_STR_SET,
3956 .off1 = offsetof(struct thread_options, use_thread),
3957 .help = "Use threads instead of processes",
3958#ifdef CONFIG_NO_SHM
3959 .def = "1",
3960 .no_warn_def = 1,
3961#endif
3962 .category = FIO_OPT_C_GENERAL,
3963 .group = FIO_OPT_G_PROCESS,
3964 },
3965 {
3966 .name = "per_job_logs",
3967 .lname = "Per Job Logs",
3968 .type = FIO_OPT_BOOL,
3969 .off1 = offsetof(struct thread_options, per_job_logs),
3970 .help = "Include job number in generated log files or not",
3971 .def = "1",
3972 .category = FIO_OPT_C_LOG,
3973 .group = FIO_OPT_G_INVALID,
3974 },
3975 {
3976 .name = "write_bw_log",
3977 .lname = "Write bandwidth log",
3978 .type = FIO_OPT_STR,
3979 .off1 = offsetof(struct thread_options, bw_log_file),
3980 .cb = str_write_bw_log_cb,
3981 .help = "Write log of bandwidth during run",
3982 .category = FIO_OPT_C_LOG,
3983 .group = FIO_OPT_G_INVALID,
3984 },
3985 {
3986 .name = "write_lat_log",
3987 .lname = "Write latency log",
3988 .type = FIO_OPT_STR,
3989 .off1 = offsetof(struct thread_options, lat_log_file),
3990 .cb = str_write_lat_log_cb,
3991 .help = "Write log of latency during run",
3992 .category = FIO_OPT_C_LOG,
3993 .group = FIO_OPT_G_INVALID,
3994 },
3995 {
3996 .name = "write_iops_log",
3997 .lname = "Write IOPS log",
3998 .type = FIO_OPT_STR,
3999 .off1 = offsetof(struct thread_options, iops_log_file),
4000 .cb = str_write_iops_log_cb,
4001 .help = "Write log of IOPS during run",
4002 .category = FIO_OPT_C_LOG,
4003 .group = FIO_OPT_G_INVALID,
4004 },
4005 {
4006 .name = "log_avg_msec",
4007 .lname = "Log averaging (msec)",
4008 .type = FIO_OPT_INT,
4009 .off1 = offsetof(struct thread_options, log_avg_msec),
4010 .help = "Average bw/iops/lat logs over this period of time",
4011 .def = "0",
4012 .category = FIO_OPT_C_LOG,
4013 .group = FIO_OPT_G_INVALID,
4014 },
4015 {
4016 .name = "log_hist_msec",
4017 .lname = "Log histograms (msec)",
4018 .type = FIO_OPT_INT,
4019 .off1 = offsetof(struct thread_options, log_hist_msec),
4020 .help = "Dump completion latency histograms at frequency of this time value",
4021 .def = "0",
4022 .category = FIO_OPT_C_LOG,
4023 .group = FIO_OPT_G_INVALID,
4024 },
4025 {
4026 .name = "log_hist_coarseness",
4027 .lname = "Histogram logs coarseness",
4028 .type = FIO_OPT_INT,
4029 .off1 = offsetof(struct thread_options, log_hist_coarseness),
4030 .help = "Integer in range [0,6]. Higher coarseness outputs"
4031 " fewer histogram bins per sample. The number of bins for"
4032 " these are [1216, 608, 304, 152, 76, 38, 19] respectively.",
4033 .def = "0",
4034 .category = FIO_OPT_C_LOG,
4035 .group = FIO_OPT_G_INVALID,
4036 },
4037 {
4038 .name = "write_hist_log",
4039 .lname = "Write latency histogram logs",
4040 .type = FIO_OPT_STR,
4041 .off1 = offsetof(struct thread_options, hist_log_file),
4042 .cb = str_write_hist_log_cb,
4043 .help = "Write log of latency histograms during run",
4044 .category = FIO_OPT_C_LOG,
4045 .group = FIO_OPT_G_INVALID,
4046 },
4047 {
4048 .name = "log_max_value",
4049 .lname = "Log maximum instead of average",
4050 .type = FIO_OPT_BOOL,
4051 .off1 = offsetof(struct thread_options, log_max),
4052 .help = "Log max sample in a window instead of average",
4053 .def = "0",
4054 .category = FIO_OPT_C_LOG,
4055 .group = FIO_OPT_G_INVALID,
4056 },
4057 {
4058 .name = "log_offset",
4059 .lname = "Log offset of IO",
4060 .type = FIO_OPT_BOOL,
4061 .off1 = offsetof(struct thread_options, log_offset),
4062 .help = "Include offset of IO for each log entry",
4063 .def = "0",
4064 .category = FIO_OPT_C_LOG,
4065 .group = FIO_OPT_G_INVALID,
4066 },
4067#ifdef CONFIG_ZLIB
4068 {
4069 .name = "log_compression",
4070 .lname = "Log compression",
4071 .type = FIO_OPT_INT,
4072 .off1 = offsetof(struct thread_options, log_gz),
4073 .help = "Log in compressed chunks of this size",
4074 .minval = 1024ULL,
4075 .maxval = 512 * 1024 * 1024ULL,
4076 .category = FIO_OPT_C_LOG,
4077 .group = FIO_OPT_G_INVALID,
4078 },
4079#ifdef FIO_HAVE_CPU_AFFINITY
4080 {
4081 .name = "log_compression_cpus",
4082 .lname = "Log Compression CPUs",
4083 .type = FIO_OPT_STR,
4084 .cb = str_log_cpus_allowed_cb,
4085 .off1 = offsetof(struct thread_options, log_gz_cpumask),
4086 .parent = "log_compression",
4087 .help = "Limit log compression to these CPUs",
4088 .category = FIO_OPT_C_LOG,
4089 .group = FIO_OPT_G_INVALID,
4090 },
4091#else
4092 {
4093 .name = "log_compression_cpus",
4094 .lname = "Log Compression CPUs",
4095 .type = FIO_OPT_UNSUPPORTED,
4096 .help = "Your platform does not support CPU affinities",
4097 },
4098#endif
4099 {
4100 .name = "log_store_compressed",
4101 .lname = "Log store compressed",
4102 .type = FIO_OPT_BOOL,
4103 .off1 = offsetof(struct thread_options, log_gz_store),
4104 .help = "Store logs in a compressed format",
4105 .category = FIO_OPT_C_LOG,
4106 .group = FIO_OPT_G_INVALID,
4107 },
4108#else
4109 {
4110 .name = "log_compression",
4111 .lname = "Log compression",
4112 .type = FIO_OPT_UNSUPPORTED,
4113 .help = "Install libz-dev(el) to get compression support",
4114 },
4115 {
4116 .name = "log_store_compressed",
4117 .lname = "Log store compressed",
4118 .type = FIO_OPT_UNSUPPORTED,
4119 .help = "Install libz-dev(el) to get compression support",
4120 },
4121#endif
4122 {
4123 .name = "log_unix_epoch",
4124 .lname = "Log epoch unix",
4125 .type = FIO_OPT_BOOL,
4126 .off1 = offsetof(struct thread_options, log_unix_epoch),
4127 .help = "Use Unix time in log files",
4128 .category = FIO_OPT_C_LOG,
4129 .group = FIO_OPT_G_INVALID,
4130 },
4131 {
4132 .name = "block_error_percentiles",
4133 .lname = "Block error percentiles",
4134 .type = FIO_OPT_BOOL,
4135 .off1 = offsetof(struct thread_options, block_error_hist),
4136 .help = "Record trim block errors and make a histogram",
4137 .def = "0",
4138 .category = FIO_OPT_C_LOG,
4139 .group = FIO_OPT_G_INVALID,
4140 },
4141 {
4142 .name = "bwavgtime",
4143 .lname = "Bandwidth average time",
4144 .type = FIO_OPT_INT,
4145 .off1 = offsetof(struct thread_options, bw_avg_time),
4146 .help = "Time window over which to calculate bandwidth"
4147 " (msec)",
4148 .def = "500",
4149 .parent = "write_bw_log",
4150 .hide = 1,
4151 .interval = 100,
4152 .category = FIO_OPT_C_LOG,
4153 .group = FIO_OPT_G_INVALID,
4154 },
4155 {
4156 .name = "iopsavgtime",
4157 .lname = "IOPS average time",
4158 .type = FIO_OPT_INT,
4159 .off1 = offsetof(struct thread_options, iops_avg_time),
4160 .help = "Time window over which to calculate IOPS (msec)",
4161 .def = "500",
4162 .parent = "write_iops_log",
4163 .hide = 1,
4164 .interval = 100,
4165 .category = FIO_OPT_C_LOG,
4166 .group = FIO_OPT_G_INVALID,
4167 },
4168 {
4169 .name = "group_reporting",
4170 .lname = "Group reporting",
4171 .type = FIO_OPT_STR_SET,
4172 .off1 = offsetof(struct thread_options, group_reporting),
4173 .help = "Do reporting on a per-group basis",
4174 .category = FIO_OPT_C_STAT,
4175 .group = FIO_OPT_G_INVALID,
4176 },
4177 {
4178 .name = "stats",
4179 .lname = "Stats",
4180 .type = FIO_OPT_BOOL,
4181 .off1 = offsetof(struct thread_options, stats),
4182 .help = "Enable collection of stats",
4183 .def = "1",
4184 .category = FIO_OPT_C_STAT,
4185 .group = FIO_OPT_G_INVALID,
4186 },
4187 {
4188 .name = "zero_buffers",
4189 .lname = "Zero I/O buffers",
4190 .type = FIO_OPT_STR_SET,
4191 .off1 = offsetof(struct thread_options, zero_buffers),
4192 .help = "Init IO buffers to all zeroes",
4193 .category = FIO_OPT_C_IO,
4194 .group = FIO_OPT_G_IO_BUF,
4195 },
4196 {
4197 .name = "refill_buffers",
4198 .lname = "Refill I/O buffers",
4199 .type = FIO_OPT_STR_SET,
4200 .off1 = offsetof(struct thread_options, refill_buffers),
4201 .help = "Refill IO buffers on every IO submit",
4202 .category = FIO_OPT_C_IO,
4203 .group = FIO_OPT_G_IO_BUF,
4204 },
4205 {
4206 .name = "scramble_buffers",
4207 .lname = "Scramble I/O buffers",
4208 .type = FIO_OPT_BOOL,
4209 .off1 = offsetof(struct thread_options, scramble_buffers),
4210 .help = "Slightly scramble buffers on every IO submit",
4211 .def = "1",
4212 .category = FIO_OPT_C_IO,
4213 .group = FIO_OPT_G_IO_BUF,
4214 },
4215 {
4216 .name = "buffer_pattern",
4217 .lname = "Buffer pattern",
4218 .type = FIO_OPT_STR,
4219 .cb = str_buffer_pattern_cb,
4220 .off1 = offsetof(struct thread_options, buffer_pattern),
4221 .help = "Fill pattern for IO buffers",
4222 .category = FIO_OPT_C_IO,
4223 .group = FIO_OPT_G_IO_BUF,
4224 },
4225 {
4226 .name = "buffer_compress_percentage",
4227 .lname = "Buffer compression percentage",
4228 .type = FIO_OPT_INT,
4229 .cb = str_buffer_compress_cb,
4230 .off1 = offsetof(struct thread_options, compress_percentage),
4231 .maxval = 100,
4232 .minval = 0,
4233 .help = "How compressible the buffer is (approximately)",
4234 .interval = 5,
4235 .category = FIO_OPT_C_IO,
4236 .group = FIO_OPT_G_IO_BUF,
4237 },
4238 {
4239 .name = "buffer_compress_chunk",
4240 .lname = "Buffer compression chunk size",
4241 .type = FIO_OPT_INT,
4242 .off1 = offsetof(struct thread_options, compress_chunk),
4243 .parent = "buffer_compress_percentage",
4244 .hide = 1,
4245 .help = "Size of compressible region in buffer",
4246 .def = "512",
4247 .interval = 256,
4248 .category = FIO_OPT_C_IO,
4249 .group = FIO_OPT_G_IO_BUF,
4250 },
4251 {
4252 .name = "dedupe_percentage",
4253 .lname = "Dedupe percentage",
4254 .type = FIO_OPT_INT,
4255 .cb = str_dedupe_cb,
4256 .off1 = offsetof(struct thread_options, dedupe_percentage),
4257 .maxval = 100,
4258 .minval = 0,
4259 .help = "Percentage of buffers that are dedupable",
4260 .interval = 1,
4261 .category = FIO_OPT_C_IO,
4262 .group = FIO_OPT_G_IO_BUF,
4263 },
4264 {
4265 .name = "clat_percentiles",
4266 .lname = "Completion latency percentiles",
4267 .type = FIO_OPT_BOOL,
4268 .off1 = offsetof(struct thread_options, clat_percentiles),
4269 .help = "Enable the reporting of completion latency percentiles",
4270 .def = "1",
4271 .inverse = "lat_percentiles",
4272 .category = FIO_OPT_C_STAT,
4273 .group = FIO_OPT_G_INVALID,
4274 },
4275 {
4276 .name = "lat_percentiles",
4277 .lname = "IO latency percentiles",
4278 .type = FIO_OPT_BOOL,
4279 .off1 = offsetof(struct thread_options, lat_percentiles),
4280 .help = "Enable the reporting of IO latency percentiles",
4281 .def = "0",
4282 .inverse = "clat_percentiles",
4283 .category = FIO_OPT_C_STAT,
4284 .group = FIO_OPT_G_INVALID,
4285 },
4286 {
4287 .name = "percentile_list",
4288 .lname = "Percentile list",
4289 .type = FIO_OPT_FLOAT_LIST,
4290 .off1 = offsetof(struct thread_options, percentile_list),
4291 .off2 = offsetof(struct thread_options, percentile_precision),
4292 .help = "Specify a custom list of percentiles to report for "
4293 "completion latency and block errors",
4294 .def = "1:5:10:20:30:40:50:60:70:80:90:95:99:99.5:99.9:99.95:99.99",
4295 .maxlen = FIO_IO_U_LIST_MAX_LEN,
4296 .minfp = 0.0,
4297 .maxfp = 100.0,
4298 .category = FIO_OPT_C_STAT,
4299 .group = FIO_OPT_G_INVALID,
4300 },
4301 {
4302 .name = "significant_figures",
4303 .lname = "Significant figures",
4304 .type = FIO_OPT_INT,
4305 .off1 = offsetof(struct thread_options, sig_figs),
4306 .maxval = 10,
4307 .minval = 1,
4308 .help = "Significant figures for output-format set to normal",
4309 .def = "4",
4310 .interval = 1,
4311 .category = FIO_OPT_C_STAT,
4312 .group = FIO_OPT_G_INVALID,
4313 },
4314
4315#ifdef FIO_HAVE_DISK_UTIL
4316 {
4317 .name = "disk_util",
4318 .lname = "Disk utilization",
4319 .type = FIO_OPT_BOOL,
4320 .off1 = offsetof(struct thread_options, do_disk_util),
4321 .help = "Log disk utilization statistics",
4322 .def = "1",
4323 .category = FIO_OPT_C_STAT,
4324 .group = FIO_OPT_G_INVALID,
4325 },
4326#else
4327 {
4328 .name = "disk_util",
4329 .lname = "Disk utilization",
4330 .type = FIO_OPT_UNSUPPORTED,
4331 .help = "Your platform does not support disk utilization",
4332 },
4333#endif
4334 {
4335 .name = "gtod_reduce",
4336 .lname = "Reduce gettimeofday() calls",
4337 .type = FIO_OPT_BOOL,
4338 .help = "Greatly reduce number of gettimeofday() calls",
4339 .cb = str_gtod_reduce_cb,
4340 .def = "0",
4341 .hide_on_set = 1,
4342 .category = FIO_OPT_C_STAT,
4343 .group = FIO_OPT_G_INVALID,
4344 },
4345 {
4346 .name = "disable_lat",
4347 .lname = "Disable all latency stats",
4348 .type = FIO_OPT_BOOL,
4349 .off1 = offsetof(struct thread_options, disable_lat),
4350 .help = "Disable latency numbers",
4351 .parent = "gtod_reduce",
4352 .hide = 1,
4353 .def = "0",
4354 .category = FIO_OPT_C_STAT,
4355 .group = FIO_OPT_G_INVALID,
4356 },
4357 {
4358 .name = "disable_clat",
4359 .lname = "Disable completion latency stats",
4360 .type = FIO_OPT_BOOL,
4361 .off1 = offsetof(struct thread_options, disable_clat),
4362 .help = "Disable completion latency numbers",
4363 .parent = "gtod_reduce",
4364 .hide = 1,
4365 .def = "0",
4366 .category = FIO_OPT_C_STAT,
4367 .group = FIO_OPT_G_INVALID,
4368 },
4369 {
4370 .name = "disable_slat",
4371 .lname = "Disable submission latency stats",
4372 .type = FIO_OPT_BOOL,
4373 .off1 = offsetof(struct thread_options, disable_slat),
4374 .help = "Disable submission latency numbers",
4375 .parent = "gtod_reduce",
4376 .hide = 1,
4377 .def = "0",
4378 .category = FIO_OPT_C_STAT,
4379 .group = FIO_OPT_G_INVALID,
4380 },
4381 {
4382 .name = "disable_bw_measurement",
4383 .alias = "disable_bw",
4384 .lname = "Disable bandwidth stats",
4385 .type = FIO_OPT_BOOL,
4386 .off1 = offsetof(struct thread_options, disable_bw),
4387 .help = "Disable bandwidth logging",
4388 .parent = "gtod_reduce",
4389 .hide = 1,
4390 .def = "0",
4391 .category = FIO_OPT_C_STAT,
4392 .group = FIO_OPT_G_INVALID,
4393 },
4394 {
4395 .name = "gtod_cpu",
4396 .lname = "Dedicated gettimeofday() CPU",
4397 .type = FIO_OPT_INT,
4398 .off1 = offsetof(struct thread_options, gtod_cpu),
4399 .help = "Set up dedicated gettimeofday() thread on this CPU",
4400 .verify = gtod_cpu_verify,
4401 .category = FIO_OPT_C_GENERAL,
4402 .group = FIO_OPT_G_CLOCK,
4403 },
4404 {
4405 .name = "unified_rw_reporting",
4406 .lname = "Unified RW Reporting",
4407 .type = FIO_OPT_BOOL,
4408 .off1 = offsetof(struct thread_options, unified_rw_rep),
4409 .help = "Unify reporting across data direction",
4410 .def = "0",
4411 .category = FIO_OPT_C_GENERAL,
4412 .group = FIO_OPT_G_INVALID,
4413 },
4414 {
4415 .name = "continue_on_error",
4416 .lname = "Continue on error",
4417 .type = FIO_OPT_STR,
4418 .off1 = offsetof(struct thread_options, continue_on_error),
4419 .help = "Continue on non-fatal errors during IO",
4420 .def = "none",
4421 .category = FIO_OPT_C_GENERAL,
4422 .group = FIO_OPT_G_ERR,
4423 .posval = {
4424 { .ival = "none",
4425 .oval = ERROR_TYPE_NONE,
4426 .help = "Exit when an error is encountered",
4427 },
4428 { .ival = "read",
4429 .oval = ERROR_TYPE_READ,
4430 .help = "Continue on read errors only",
4431 },
4432 { .ival = "write",
4433 .oval = ERROR_TYPE_WRITE,
4434 .help = "Continue on write errors only",
4435 },
4436 { .ival = "io",
4437 .oval = ERROR_TYPE_READ | ERROR_TYPE_WRITE,
4438 .help = "Continue on any IO errors",
4439 },
4440 { .ival = "verify",
4441 .oval = ERROR_TYPE_VERIFY,
4442 .help = "Continue on verify errors only",
4443 },
4444 { .ival = "all",
4445 .oval = ERROR_TYPE_ANY,
4446 .help = "Continue on all io and verify errors",
4447 },
4448 { .ival = "0",
4449 .oval = ERROR_TYPE_NONE,
4450 .help = "Alias for 'none'",
4451 },
4452 { .ival = "1",
4453 .oval = ERROR_TYPE_ANY,
4454 .help = "Alias for 'all'",
4455 },
4456 },
4457 },
4458 {
4459 .name = "ignore_error",
4460 .lname = "Ignore Error",
4461 .type = FIO_OPT_STR,
4462 .cb = str_ignore_error_cb,
4463 .off1 = offsetof(struct thread_options, ignore_error_nr),
4464 .help = "Set a specific list of errors to ignore",
4465 .parent = "rw",
4466 .category = FIO_OPT_C_GENERAL,
4467 .group = FIO_OPT_G_ERR,
4468 },
4469 {
4470 .name = "error_dump",
4471 .lname = "Error Dump",
4472 .type = FIO_OPT_BOOL,
4473 .off1 = offsetof(struct thread_options, error_dump),
4474 .def = "0",
4475 .help = "Dump info on each error",
4476 .category = FIO_OPT_C_GENERAL,
4477 .group = FIO_OPT_G_ERR,
4478 },
4479 {
4480 .name = "profile",
4481 .lname = "Profile",
4482 .type = FIO_OPT_STR_STORE,
4483 .off1 = offsetof(struct thread_options, profile),
4484 .help = "Select a specific builtin performance test",
4485 .category = FIO_OPT_C_PROFILE,
4486 .group = FIO_OPT_G_INVALID,
4487 },
4488 {
4489 .name = "cgroup",
4490 .lname = "Cgroup",
4491 .type = FIO_OPT_STR_STORE,
4492 .off1 = offsetof(struct thread_options, cgroup),
4493 .help = "Add job to cgroup of this name",
4494 .category = FIO_OPT_C_GENERAL,
4495 .group = FIO_OPT_G_CGROUP,
4496 },
4497 {
4498 .name = "cgroup_nodelete",
4499 .lname = "Cgroup no-delete",
4500 .type = FIO_OPT_BOOL,
4501 .off1 = offsetof(struct thread_options, cgroup_nodelete),
4502 .help = "Do not delete cgroups after job completion",
4503 .def = "0",
4504 .parent = "cgroup",
4505 .category = FIO_OPT_C_GENERAL,
4506 .group = FIO_OPT_G_CGROUP,
4507 },
4508 {
4509 .name = "cgroup_weight",
4510 .lname = "Cgroup weight",
4511 .type = FIO_OPT_INT,
4512 .off1 = offsetof(struct thread_options, cgroup_weight),
4513 .help = "Use given weight for cgroup",
4514 .minval = 100,
4515 .maxval = 1000,
4516 .parent = "cgroup",
4517 .category = FIO_OPT_C_GENERAL,
4518 .group = FIO_OPT_G_CGROUP,
4519 },
4520 {
4521 .name = "uid",
4522 .lname = "User ID",
4523 .type = FIO_OPT_INT,
4524 .off1 = offsetof(struct thread_options, uid),
4525 .help = "Run job with this user ID",
4526 .category = FIO_OPT_C_GENERAL,
4527 .group = FIO_OPT_G_CRED,
4528 },
4529 {
4530 .name = "gid",
4531 .lname = "Group ID",
4532 .type = FIO_OPT_INT,
4533 .off1 = offsetof(struct thread_options, gid),
4534 .help = "Run job with this group ID",
4535 .category = FIO_OPT_C_GENERAL,
4536 .group = FIO_OPT_G_CRED,
4537 },
4538 {
4539 .name = "kb_base",
4540 .lname = "KB Base",
4541 .type = FIO_OPT_STR,
4542 .off1 = offsetof(struct thread_options, kb_base),
4543 .prio = 1,
4544 .def = "1024",
4545 .posval = {
4546 { .ival = "1024",
4547 .oval = 1024,
4548 .help = "Inputs invert IEC and SI prefixes (for compatibility); outputs prefer binary",
4549 },
4550 { .ival = "1000",
4551 .oval = 1000,
4552 .help = "Inputs use IEC and SI prefixes; outputs prefer SI",
4553 },
4554 },
4555 .help = "Unit prefix interpretation for quantities of data (IEC and SI)",
4556 .category = FIO_OPT_C_GENERAL,
4557 .group = FIO_OPT_G_INVALID,
4558 },
4559 {
4560 .name = "unit_base",
4561 .lname = "Unit for quantities of data (Bits or Bytes)",
4562 .type = FIO_OPT_STR,
4563 .off1 = offsetof(struct thread_options, unit_base),
4564 .prio = 1,
4565 .posval = {
4566 { .ival = "0",
4567 .oval = N2S_NONE,
4568 .help = "Auto-detect",
4569 },
4570 { .ival = "8",
4571 .oval = N2S_BYTEPERSEC,
4572 .help = "Normal (byte based)",
4573 },
4574 { .ival = "1",
4575 .oval = N2S_BITPERSEC,
4576 .help = "Bit based",
4577 },
4578 },
4579 .help = "Bit multiple of result summary data (8 for byte, 1 for bit)",
4580 .category = FIO_OPT_C_GENERAL,
4581 .group = FIO_OPT_G_INVALID,
4582 },
4583 {
4584 .name = "hugepage-size",
4585 .lname = "Hugepage size",
4586 .type = FIO_OPT_INT,
4587 .off1 = offsetof(struct thread_options, hugepage_size),
4588 .help = "When using hugepages, specify size of each page",
4589 .def = __fio_stringify(FIO_HUGE_PAGE),
4590 .interval = 1024 * 1024,
4591 .category = FIO_OPT_C_GENERAL,
4592 .group = FIO_OPT_G_INVALID,
4593 },
4594 {
4595 .name = "flow_id",
4596 .lname = "I/O flow ID",
4597 .type = FIO_OPT_INT,
4598 .off1 = offsetof(struct thread_options, flow_id),
4599 .help = "The flow index ID to use",
4600 .def = "0",
4601 .category = FIO_OPT_C_IO,
4602 .group = FIO_OPT_G_IO_FLOW,
4603 },
4604 {
4605 .name = "flow",
4606 .lname = "I/O flow weight",
4607 .type = FIO_OPT_INT,
4608 .off1 = offsetof(struct thread_options, flow),
4609 .help = "Weight for flow control of this job",
4610 .parent = "flow_id",
4611 .hide = 1,
4612 .def = "0",
4613 .category = FIO_OPT_C_IO,
4614 .group = FIO_OPT_G_IO_FLOW,
4615 },
4616 {
4617 .name = "flow_watermark",
4618 .lname = "I/O flow watermark",
4619 .type = FIO_OPT_INT,
4620 .off1 = offsetof(struct thread_options, flow_watermark),
4621 .help = "High watermark for flow control. This option"
4622 " should be set to the same value for all threads"
4623 " with non-zero flow.",
4624 .parent = "flow_id",
4625 .hide = 1,
4626 .def = "1024",
4627 .category = FIO_OPT_C_IO,
4628 .group = FIO_OPT_G_IO_FLOW,
4629 },
4630 {
4631 .name = "flow_sleep",
4632 .lname = "I/O flow sleep",
4633 .type = FIO_OPT_INT,
4634 .off1 = offsetof(struct thread_options, flow_sleep),
4635 .help = "How many microseconds to sleep after being held"
4636 " back by the flow control mechanism",
4637 .parent = "flow_id",
4638 .hide = 1,
4639 .def = "0",
4640 .category = FIO_OPT_C_IO,
4641 .group = FIO_OPT_G_IO_FLOW,
4642 },
4643 {
4644 .name = "steadystate",
4645 .lname = "Steady state threshold",
4646 .alias = "ss",
4647 .type = FIO_OPT_STR,
4648 .off1 = offsetof(struct thread_options, ss_state),
4649 .cb = str_steadystate_cb,
4650 .help = "Define the criterion and limit to judge when a job has reached steady state",
4651 .def = "iops_slope:0.01%",
4652 .posval = {
4653 { .ival = "iops",
4654 .oval = FIO_SS_IOPS,
4655 .help = "maximum mean deviation of IOPS measurements",
4656 },
4657 { .ival = "iops_slope",
4658 .oval = FIO_SS_IOPS_SLOPE,
4659 .help = "slope calculated from IOPS measurements",
4660 },
4661 { .ival = "bw",
4662 .oval = FIO_SS_BW,
4663 .help = "maximum mean deviation of bandwidth measurements",
4664 },
4665 {
4666 .ival = "bw_slope",
4667 .oval = FIO_SS_BW_SLOPE,
4668 .help = "slope calculated from bandwidth measurements",
4669 },
4670 },
4671 .category = FIO_OPT_C_GENERAL,
4672 .group = FIO_OPT_G_RUNTIME,
4673 },
4674 {
4675 .name = "steadystate_duration",
4676 .lname = "Steady state duration",
4677 .alias = "ss_dur",
4678 .parent = "steadystate",
4679 .type = FIO_OPT_STR_VAL_TIME,
4680 .off1 = offsetof(struct thread_options, ss_dur),
4681 .help = "Stop workload upon attaining steady state for specified duration",
4682 .def = "0",
4683 .is_seconds = 1,
4684 .is_time = 1,
4685 .category = FIO_OPT_C_GENERAL,
4686 .group = FIO_OPT_G_RUNTIME,
4687 },
4688 {
4689 .name = "steadystate_ramp_time",
4690 .lname = "Steady state ramp time",
4691 .alias = "ss_ramp",
4692 .parent = "steadystate",
4693 .type = FIO_OPT_STR_VAL_TIME,
4694 .off1 = offsetof(struct thread_options, ss_ramp_time),
4695 .help = "Delay before initiation of data collection for steady state job termination testing",
4696 .def = "0",
4697 .is_seconds = 1,
4698 .is_time = 1,
4699 .category = FIO_OPT_C_GENERAL,
4700 .group = FIO_OPT_G_RUNTIME,
4701 },
4702 {
4703 .name = NULL,
4704 },
4705};
4706
4707static void add_to_lopt(struct option *lopt, struct fio_option *o,
4708 const char *name, int val)
4709{
4710 lopt->name = (char *) name;
4711 lopt->val = val;
4712 if (o->type == FIO_OPT_STR_SET)
4713 lopt->has_arg = optional_argument;
4714 else
4715 lopt->has_arg = required_argument;
4716}
4717
4718static void options_to_lopts(struct fio_option *opts,
4719 struct option *long_options,
4720 int i, int option_type)
4721{
4722 struct fio_option *o = &opts[0];
4723 while (o->name) {
4724 add_to_lopt(&long_options[i], o, o->name, option_type);
4725 if (o->alias) {
4726 i++;
4727 add_to_lopt(&long_options[i], o, o->alias, option_type);
4728 }
4729
4730 i++;
4731 o++;
4732 assert(i < FIO_NR_OPTIONS);
4733 }
4734}
4735
4736void fio_options_set_ioengine_opts(struct option *long_options,
4737 struct thread_data *td)
4738{
4739 unsigned int i;
4740
4741 i = 0;
4742 while (long_options[i].name) {
4743 if (long_options[i].val == FIO_GETOPT_IOENGINE) {
4744 memset(&long_options[i], 0, sizeof(*long_options));
4745 break;
4746 }
4747 i++;
4748 }
4749
4750 /*
4751 * Just clear out the prior ioengine options.
4752 */
4753 if (!td || !td->eo)
4754 return;
4755
4756 options_to_lopts(td->io_ops->options, long_options, i,
4757 FIO_GETOPT_IOENGINE);
4758}
4759
4760void fio_options_dup_and_init(struct option *long_options)
4761{
4762 unsigned int i;
4763
4764 options_init(fio_options);
4765
4766 i = 0;
4767 while (long_options[i].name)
4768 i++;
4769
4770 options_to_lopts(fio_options, long_options, i, FIO_GETOPT_JOB);
4771}
4772
4773struct fio_keyword {
4774 const char *word;
4775 const char *desc;
4776 char *replace;
4777};
4778
4779static struct fio_keyword fio_keywords[] = {
4780 {
4781 .word = "$pagesize",
4782 .desc = "Page size in the system",
4783 },
4784 {
4785 .word = "$mb_memory",
4786 .desc = "Megabytes of memory online",
4787 },
4788 {
4789 .word = "$ncpus",
4790 .desc = "Number of CPUs online in the system",
4791 },
4792 {
4793 .word = NULL,
4794 },
4795};
4796
4797void fio_keywords_exit(void)
4798{
4799 struct fio_keyword *kw;
4800
4801 kw = &fio_keywords[0];
4802 while (kw->word) {
4803 free(kw->replace);
4804 kw->replace = NULL;
4805 kw++;
4806 }
4807}
4808
4809void fio_keywords_init(void)
4810{
4811 unsigned long long mb_memory;
4812 char buf[128];
4813 long l;
4814
4815 sprintf(buf, "%lu", (unsigned long) page_size);
4816 fio_keywords[0].replace = strdup(buf);
4817
4818 mb_memory = os_phys_mem() / (1024 * 1024);
4819 sprintf(buf, "%llu", mb_memory);
4820 fio_keywords[1].replace = strdup(buf);
4821
4822 l = cpus_online();
4823 sprintf(buf, "%lu", l);
4824 fio_keywords[2].replace = strdup(buf);
4825}
4826
4827#define BC_APP "bc"
4828
4829static char *bc_calc(char *str)
4830{
4831 char buf[128], *tmp;
4832 FILE *f;
4833 int ret;
4834
4835 /*
4836 * No math, just return string
4837 */
4838 if ((!strchr(str, '+') && !strchr(str, '-') && !strchr(str, '*') &&
4839 !strchr(str, '/')) || strchr(str, '\''))
4840 return str;
4841
4842 /*
4843 * Split option from value, we only need to calculate the value
4844 */
4845 tmp = strchr(str, '=');
4846 if (!tmp)
4847 return str;
4848
4849 tmp++;
4850
4851 /*
4852 * Prevent buffer overflows; such a case isn't reasonable anyway
4853 */
4854 if (strlen(str) >= 128 || strlen(tmp) > 100)
4855 return str;
4856
4857 sprintf(buf, "which %s > /dev/null", BC_APP);
4858 if (system(buf)) {
4859 log_err("fio: bc is needed for performing math\n");
4860 return NULL;
4861 }
4862
4863 sprintf(buf, "echo '%s' | %s", tmp, BC_APP);
4864 f = popen(buf, "r");
4865 if (!f)
4866 return NULL;
4867
4868 ret = fread(&buf[tmp - str], 1, 128 - (tmp - str), f);
4869 if (ret <= 0) {
4870 pclose(f);
4871 return NULL;
4872 }
4873
4874 pclose(f);
4875 buf[(tmp - str) + ret - 1] = '\0';
4876 memcpy(buf, str, tmp - str);
4877 free(str);
4878 return strdup(buf);
4879}
4880
4881/*
4882 * Return a copy of the input string with substrings of the form ${VARNAME}
4883 * substituted with the value of the environment variable VARNAME. The
4884 * substitution always occurs, even if VARNAME is empty or the corresponding
4885 * environment variable undefined.
4886 */
4887char *fio_option_dup_subs(const char *opt)
4888{
4889 char out[OPT_LEN_MAX+1];
4890 char in[OPT_LEN_MAX+1];
4891 char *outptr = out;
4892 char *inptr = in;
4893 char *ch1, *ch2, *env;
4894 ssize_t nchr = OPT_LEN_MAX;
4895 size_t envlen;
4896
4897 if (strlen(opt) + 1 > OPT_LEN_MAX) {
4898 log_err("OPT_LEN_MAX (%d) is too small\n", OPT_LEN_MAX);
4899 return NULL;
4900 }
4901
4902 in[OPT_LEN_MAX] = '\0';
4903 strncpy(in, opt, OPT_LEN_MAX);
4904
4905 while (*inptr && nchr > 0) {
4906 if (inptr[0] == '$' && inptr[1] == '{') {
4907 ch2 = strchr(inptr, '}');
4908 if (ch2 && inptr+1 < ch2) {
4909 ch1 = inptr+2;
4910 inptr = ch2+1;
4911 *ch2 = '\0';
4912
4913 env = getenv(ch1);
4914 if (env) {
4915 envlen = strlen(env);
4916 if (envlen <= nchr) {
4917 memcpy(outptr, env, envlen);
4918 outptr += envlen;
4919 nchr -= envlen;
4920 }
4921 }
4922
4923 continue;
4924 }
4925 }
4926
4927 *outptr++ = *inptr++;
4928 --nchr;
4929 }
4930
4931 *outptr = '\0';
4932 return strdup(out);
4933}
4934
4935/*
4936 * Look for reserved variable names and replace them with real values
4937 */
4938static char *fio_keyword_replace(char *opt)
4939{
4940 char *s;
4941 int i;
4942 int docalc = 0;
4943
4944 for (i = 0; fio_keywords[i].word != NULL; i++) {
4945 struct fio_keyword *kw = &fio_keywords[i];
4946
4947 while ((s = strstr(opt, kw->word)) != NULL) {
4948 char *new = malloc(strlen(opt) + 1);
4949 char *o_org = opt;
4950 int olen = s - opt;
4951 int len;
4952
4953 /*
4954 * Copy part of the string before the keyword and
4955 * sprintf() the replacement after it.
4956 */
4957 memcpy(new, opt, olen);
4958 len = sprintf(new + olen, "%s", kw->replace);
4959
4960 /*
4961 * If there's more in the original string, copy that
4962 * in too
4963 */
4964 opt += strlen(kw->word) + olen;
4965 if (strlen(opt))
4966 memcpy(new + olen + len, opt, opt - o_org - 1);
4967
4968 /*
4969 * replace opt and free the old opt
4970 */
4971 opt = new;
4972 free(o_org);
4973
4974 docalc = 1;
4975 }
4976 }
4977
4978 /*
4979 * Check for potential math and invoke bc, if possible
4980 */
4981 if (docalc)
4982 opt = bc_calc(opt);
4983
4984 return opt;
4985}
4986
4987static char **dup_and_sub_options(char **opts, int num_opts)
4988{
4989 int i;
4990 char **opts_copy = malloc(num_opts * sizeof(*opts));
4991 for (i = 0; i < num_opts; i++) {
4992 opts_copy[i] = fio_option_dup_subs(opts[i]);
4993 if (!opts_copy[i])
4994 continue;
4995 opts_copy[i] = fio_keyword_replace(opts_copy[i]);
4996 }
4997 return opts_copy;
4998}
4999
5000static void show_closest_option(const char *opt)
5001{
5002 int best_option, best_distance;
5003 int i, distance;
5004 char *name;
5005
5006 if (!strlen(opt))
5007 return;
5008
5009 name = strdup(opt);
5010 i = 0;
5011 while (name[i] != '\0' && name[i] != '=')
5012 i++;
5013 name[i] = '\0';
5014
5015 best_option = -1;
5016 best_distance = INT_MAX;
5017 i = 0;
5018 while (fio_options[i].name) {
5019 distance = string_distance(name, fio_options[i].name);
5020 if (distance < best_distance) {
5021 best_distance = distance;
5022 best_option = i;
5023 }
5024 i++;
5025 }
5026
5027 if (best_option != -1 && string_distance_ok(name, best_distance) &&
5028 fio_options[best_option].type != FIO_OPT_UNSUPPORTED)
5029 log_err("Did you mean %s?\n", fio_options[best_option].name);
5030
5031 free(name);
5032}
5033
5034int fio_options_parse(struct thread_data *td, char **opts, int num_opts)
5035{
5036 int i, ret, unknown;
5037 char **opts_copy;
5038
5039 sort_options(opts, fio_options, num_opts);
5040 opts_copy = dup_and_sub_options(opts, num_opts);
5041
5042 for (ret = 0, i = 0, unknown = 0; i < num_opts; i++) {
5043 const struct fio_option *o;
5044 int newret = parse_option(opts_copy[i], opts[i], fio_options,
5045 &o, &td->o, &td->opt_list);
5046
5047 if (!newret && o)
5048 fio_option_mark_set(&td->o, o);
5049
5050 if (opts_copy[i]) {
5051 if (newret && !o) {
5052 unknown++;
5053 continue;
5054 }
5055 free(opts_copy[i]);
5056 opts_copy[i] = NULL;
5057 }
5058
5059 ret |= newret;
5060 }
5061
5062 if (unknown) {
5063 ret |= ioengine_load(td);
5064 if (td->eo) {
5065 sort_options(opts_copy, td->io_ops->options, num_opts);
5066 opts = opts_copy;
5067 }
5068 for (i = 0; i < num_opts; i++) {
5069 const struct fio_option *o = NULL;
5070 int newret = 1;
5071
5072 if (!opts_copy[i])
5073 continue;
5074
5075 if (td->eo)
5076 newret = parse_option(opts_copy[i], opts[i],
5077 td->io_ops->options, &o,
5078 td->eo, &td->opt_list);
5079
5080 ret |= newret;
5081 if (!o) {
5082 log_err("Bad option <%s>\n", opts[i]);
5083 show_closest_option(opts[i]);
5084 }
5085 free(opts_copy[i]);
5086 opts_copy[i] = NULL;
5087 }
5088 }
5089
5090 free(opts_copy);
5091 return ret;
5092}
5093
5094int fio_cmd_option_parse(struct thread_data *td, const char *opt, char *val)
5095{
5096 int ret;
5097
5098 ret = parse_cmd_option(opt, val, fio_options, &td->o, &td->opt_list);
5099 if (!ret) {
5100 const struct fio_option *o;
5101
5102 o = find_option_c(fio_options, opt);
5103 if (o)
5104 fio_option_mark_set(&td->o, o);
5105 }
5106
5107 return ret;
5108}
5109
5110int fio_cmd_ioengine_option_parse(struct thread_data *td, const char *opt,
5111 char *val)
5112{
5113 return parse_cmd_option(opt, val, td->io_ops->options, td->eo,
5114 &td->opt_list);
5115}
5116
5117void fio_fill_default_options(struct thread_data *td)
5118{
5119 td->o.magic = OPT_MAGIC;
5120 fill_default_options(&td->o, fio_options);
5121}
5122
5123int fio_show_option_help(const char *opt)
5124{
5125 return show_cmd_help(fio_options, opt);
5126}
5127
5128/*
5129 * dupe FIO_OPT_STR_STORE options
5130 */
5131void fio_options_mem_dupe(struct thread_data *td)
5132{
5133 options_mem_dupe(fio_options, &td->o);
5134
5135 if (td->eo && td->io_ops) {
5136 void *oldeo = td->eo;
5137
5138 td->eo = malloc(td->io_ops->option_struct_size);
5139 memcpy(td->eo, oldeo, td->io_ops->option_struct_size);
5140 options_mem_dupe(td->io_ops->options, td->eo);
5141 }
5142}
5143
5144unsigned int fio_get_kb_base(void *data)
5145{
5146 struct thread_data *td = cb_data_to_td(data);
5147 struct thread_options *o = &td->o;
5148 unsigned int kb_base = 0;
5149
5150 /*
5151 * This is a hack... For private options, *data is not holding
5152 * a pointer to the thread_options, but to private data. This means
5153 * we can't safely dereference it, but magic is first so mem wise
5154 * it is valid. But this also means that if the job first sets
5155 * kb_base and expects that to be honored by private options,
5156 * it will be disappointed. We will return the global default
5157 * for this.
5158 */
5159 if (o && o->magic == OPT_MAGIC)
5160 kb_base = o->kb_base;
5161 if (!kb_base)
5162 kb_base = 1024;
5163
5164 return kb_base;
5165}
5166
5167int add_option(const struct fio_option *o)
5168{
5169 struct fio_option *__o;
5170 int opt_index = 0;
5171
5172 __o = fio_options;
5173 while (__o->name) {
5174 opt_index++;
5175 __o++;
5176 }
5177
5178 if (opt_index + 1 == FIO_MAX_OPTS) {
5179 log_err("fio: FIO_MAX_OPTS is too small\n");
5180 return 1;
5181 }
5182
5183 memcpy(&fio_options[opt_index], o, sizeof(*o));
5184 fio_options[opt_index + 1].name = NULL;
5185 return 0;
5186}
5187
5188void invalidate_profile_options(const char *prof_name)
5189{
5190 struct fio_option *o;
5191
5192 o = fio_options;
5193 while (o->name) {
5194 if (o->prof_name && !strcmp(o->prof_name, prof_name)) {
5195 o->type = FIO_OPT_INVALID;
5196 o->prof_name = NULL;
5197 }
5198 o++;
5199 }
5200}
5201
5202void add_opt_posval(const char *optname, const char *ival, const char *help)
5203{
5204 struct fio_option *o;
5205 unsigned int i;
5206
5207 o = find_option(fio_options, optname);
5208 if (!o)
5209 return;
5210
5211 for (i = 0; i < PARSE_MAX_VP; i++) {
5212 if (o->posval[i].ival)
5213 continue;
5214
5215 o->posval[i].ival = ival;
5216 o->posval[i].help = help;
5217 break;
5218 }
5219}
5220
5221void del_opt_posval(const char *optname, const char *ival)
5222{
5223 struct fio_option *o;
5224 unsigned int i;
5225
5226 o = find_option(fio_options, optname);
5227 if (!o)
5228 return;
5229
5230 for (i = 0; i < PARSE_MAX_VP; i++) {
5231 if (!o->posval[i].ival)
5232 continue;
5233 if (strcmp(o->posval[i].ival, ival))
5234 continue;
5235
5236 o->posval[i].ival = NULL;
5237 o->posval[i].help = NULL;
5238 }
5239}
5240
5241void fio_options_free(struct thread_data *td)
5242{
5243 options_free(fio_options, &td->o);
5244 if (td->eo && td->io_ops && td->io_ops->options) {
5245 options_free(td->io_ops->options, td->eo);
5246 free(td->eo);
5247 td->eo = NULL;
5248 }
5249}
5250
5251struct fio_option *fio_option_find(const char *name)
5252{
5253 return find_option(fio_options, name);
5254}
5255
5256static struct fio_option *find_next_opt(struct fio_option *from,
5257 unsigned int off1)
5258{
5259 struct fio_option *opt;
5260
5261 if (!from)
5262 from = &fio_options[0];
5263 else
5264 from++;
5265
5266 opt = NULL;
5267 do {
5268 if (off1 == from->off1) {
5269 opt = from;
5270 break;
5271 }
5272 from++;
5273 } while (from->name);
5274
5275 return opt;
5276}
5277
5278static int opt_is_set(struct thread_options *o, struct fio_option *opt)
5279{
5280 unsigned int opt_off, index, offset;
5281
5282 opt_off = opt - &fio_options[0];
5283 index = opt_off / (8 * sizeof(uint64_t));
5284 offset = opt_off & ((8 * sizeof(uint64_t)) - 1);
5285 return (o->set_options[index] & ((uint64_t)1 << offset)) != 0;
5286}
5287
5288bool __fio_option_is_set(struct thread_options *o, unsigned int off1)
5289{
5290 struct fio_option *opt, *next;
5291
5292 next = NULL;
5293 while ((opt = find_next_opt(next, off1)) != NULL) {
5294 if (opt_is_set(o, opt))
5295 return true;
5296
5297 next = opt;
5298 }
5299
5300 return false;
5301}
5302
5303void fio_option_mark_set(struct thread_options *o, const struct fio_option *opt)
5304{
5305 unsigned int opt_off, index, offset;
5306
5307 opt_off = opt - &fio_options[0];
5308 index = opt_off / (8 * sizeof(uint64_t));
5309 offset = opt_off & ((8 * sizeof(uint64_t)) - 1);
5310 o->set_options[index] |= (uint64_t)1 << offset;
5311}