Revert "Unify makefiles"
[fio.git] / options.c
CommitLineData
214e1eca
JA
1#include <stdio.h>
2#include <stdlib.h>
3#include <unistd.h>
4#include <ctype.h>
5#include <string.h>
214e1eca 6#include <assert.h>
921c766f 7#include <libgen.h>
5921e80c
JA
8#include <fcntl.h>
9#include <sys/types.h>
10#include <sys/stat.h>
214e1eca
JA
11
12#include "fio.h"
4f5af7b2 13#include "verify.h"
214e1eca 14#include "parse.h"
eef32359 15#include "lib/fls.h"
9f988e2e 16#include "options.h"
214e1eca 17
5d7c5d34
JA
18#include "crc/crc32c.h"
19
214e1eca
JA
20/*
21 * Check if mmap/mmaphuge has a :/foo/bar/file at the end. If so, return that.
22 */
23static char *get_opt_postfix(const char *str)
24{
25 char *p = strstr(str, ":");
26
27 if (!p)
28 return NULL;
29
30 p++;
31 strip_blank_front(&p);
32 strip_blank_end(p);
33 return strdup(p);
34}
35
0e92f873
RR
36static int converthexchartoint(char a)
37{
38 int base;
39
40 switch(a) {
41 case '0'...'9':
42 base = '0';
43 break;
44 case 'A'...'F':
45 base = 'A' - 10;
46 break;
47 case 'a'...'f':
48 base = 'a' - 10;
49 break;
50 default:
51 base = 0;
52 }
53 return (a - base);
54}
55
564ca972
JA
56static int bs_cmp(const void *p1, const void *p2)
57{
58 const struct bssplit *bsp1 = p1;
59 const struct bssplit *bsp2 = p2;
60
61 return bsp1->perc < bsp2->perc;
62}
63
720e84ad 64static int bssplit_ddir(struct thread_data *td, int ddir, char *str)
564ca972 65{
720e84ad 66 struct bssplit *bssplit;
564ca972
JA
67 unsigned int i, perc, perc_missing;
68 unsigned int max_bs, min_bs;
69 long long val;
720e84ad 70 char *fname;
564ca972 71
720e84ad
JA
72 td->o.bssplit_nr[ddir] = 4;
73 bssplit = malloc(4 * sizeof(struct bssplit));
564ca972
JA
74
75 i = 0;
76 max_bs = 0;
77 min_bs = -1;
78 while ((fname = strsep(&str, ":")) != NULL) {
79 char *perc_str;
80
81 if (!strlen(fname))
82 break;
83
84 /*
85 * grow struct buffer, if needed
86 */
720e84ad
JA
87 if (i == td->o.bssplit_nr[ddir]) {
88 td->o.bssplit_nr[ddir] <<= 1;
89 bssplit = realloc(bssplit, td->o.bssplit_nr[ddir]
5ec10eaa 90 * sizeof(struct bssplit));
564ca972
JA
91 }
92
93 perc_str = strstr(fname, "/");
94 if (perc_str) {
95 *perc_str = '\0';
96 perc_str++;
97 perc = atoi(perc_str);
98 if (perc > 100)
99 perc = 100;
100 else if (!perc)
101 perc = -1;
102 } else
103 perc = -1;
104
df9cf928 105 if (str_to_decimal(fname, &val, 1, td)) {
564ca972
JA
106 log_err("fio: bssplit conversion failed\n");
107 free(td->o.bssplit);
108 return 1;
109 }
110
111 if (val > max_bs)
112 max_bs = val;
113 if (val < min_bs)
114 min_bs = val;
115
720e84ad
JA
116 bssplit[i].bs = val;
117 bssplit[i].perc = perc;
564ca972
JA
118 i++;
119 }
120
720e84ad 121 td->o.bssplit_nr[ddir] = i;
564ca972
JA
122
123 /*
124 * Now check if the percentages add up, and how much is missing
125 */
126 perc = perc_missing = 0;
720e84ad
JA
127 for (i = 0; i < td->o.bssplit_nr[ddir]; i++) {
128 struct bssplit *bsp = &bssplit[i];
564ca972
JA
129
130 if (bsp->perc == (unsigned char) -1)
131 perc_missing++;
132 else
133 perc += bsp->perc;
134 }
135
136 if (perc > 100) {
137 log_err("fio: bssplit percentages add to more than 100%%\n");
720e84ad 138 free(bssplit);
564ca972
JA
139 return 1;
140 }
141 /*
142 * If values didn't have a percentage set, divide the remains between
143 * them.
144 */
145 if (perc_missing) {
720e84ad
JA
146 for (i = 0; i < td->o.bssplit_nr[ddir]; i++) {
147 struct bssplit *bsp = &bssplit[i];
564ca972
JA
148
149 if (bsp->perc == (unsigned char) -1)
150 bsp->perc = (100 - perc) / perc_missing;
151 }
152 }
153
720e84ad
JA
154 td->o.min_bs[ddir] = min_bs;
155 td->o.max_bs[ddir] = max_bs;
564ca972
JA
156
157 /*
158 * now sort based on percentages, for ease of lookup
159 */
720e84ad
JA
160 qsort(bssplit, td->o.bssplit_nr[ddir], sizeof(struct bssplit), bs_cmp);
161 td->o.bssplit[ddir] = bssplit;
162 return 0;
163
164}
165
166static int str_bssplit_cb(void *data, const char *input)
167{
168 struct thread_data *td = data;
169 char *str, *p, *odir;
170 int ret = 0;
171
172 p = str = strdup(input);
173
174 strip_blank_front(&str);
175 strip_blank_end(str);
176
177 odir = strchr(str, ',');
178 if (odir) {
179 ret = bssplit_ddir(td, DDIR_WRITE, odir + 1);
180 if (!ret) {
181 *odir = '\0';
182 ret = bssplit_ddir(td, DDIR_READ, str);
183 }
184 } else {
185 char *op;
186
187 op = strdup(str);
188
189 ret = bssplit_ddir(td, DDIR_READ, str);
190 if (!ret)
191 ret = bssplit_ddir(td, DDIR_WRITE, op);
192
193 free(op);
194 }
564ca972
JA
195
196 free(p);
720e84ad 197 return ret;
564ca972
JA
198}
199
211097b2
JA
200static int str_rw_cb(void *data, const char *str)
201{
202 struct thread_data *td = data;
203 char *nr = get_opt_postfix(str);
204
5736c10d 205 td->o.ddir_seq_nr = 1;
182ec6ee 206 if (nr) {
5736c10d 207 td->o.ddir_seq_nr = atoi(nr);
182ec6ee
JA
208 free(nr);
209 }
211097b2 210
211097b2
JA
211 return 0;
212}
213
214e1eca
JA
214static int str_mem_cb(void *data, const char *mem)
215{
216 struct thread_data *td = data;
217
2dc1bbeb 218 if (td->o.mem_type == MEM_MMAPHUGE || td->o.mem_type == MEM_MMAP) {
214e1eca 219 td->mmapfile = get_opt_postfix(mem);
2dc1bbeb 220 if (td->o.mem_type == MEM_MMAPHUGE && !td->mmapfile) {
214e1eca
JA
221 log_err("fio: mmaphuge:/path/to/file\n");
222 return 1;
223 }
224 }
225
226 return 0;
227}
228
5d7c5d34
JA
229static int str_verify_cb(void *data, const char *mem)
230{
231 struct thread_data *td = data;
232
233 if (td->o.verify != VERIFY_CRC32C_INTEL)
234 return 0;
235
236 if (!crc32c_intel_works()) {
237 log_info("fio: System does not support hw accelerated crc32c. Falling back to sw crc32c.\n");
238 td->o.verify = VERIFY_CRC32C;
239 }
240
241 return 0;
242}
243
c223da83
JA
244static int fio_clock_source_cb(void *data, const char *str)
245{
246 struct thread_data *td = data;
247
248 fio_clock_source = td->o.clocksource;
249 fio_time_init();
250 return 0;
251}
252
85bc833b 253static int str_lockmem_cb(void fio_unused *data, unsigned long long *val)
214e1eca
JA
254{
255 mlock_size = *val;
256 return 0;
257}
258
85bc833b 259static int str_rwmix_read_cb(void *data, unsigned long long *val)
cb499fc4
JA
260{
261 struct thread_data *td = data;
262
263 td->o.rwmix[DDIR_READ] = *val;
264 td->o.rwmix[DDIR_WRITE] = 100 - *val;
265 return 0;
266}
267
85bc833b 268static int str_rwmix_write_cb(void *data, unsigned long long *val)
cb499fc4
JA
269{
270 struct thread_data *td = data;
271
272 td->o.rwmix[DDIR_WRITE] = *val;
273 td->o.rwmix[DDIR_READ] = 100 - *val;
274 return 0;
275}
276
214e1eca 277#ifdef FIO_HAVE_IOPRIO
85bc833b 278static int str_prioclass_cb(void *data, unsigned long long *val)
214e1eca
JA
279{
280 struct thread_data *td = data;
6cefbe33
JA
281 unsigned short mask;
282
283 /*
284 * mask off old class bits, str_prio_cb() may have set a default class
285 */
286 mask = (1 << IOPRIO_CLASS_SHIFT) - 1;
287 td->ioprio &= mask;
214e1eca
JA
288
289 td->ioprio |= *val << IOPRIO_CLASS_SHIFT;
ac684785 290 td->ioprio_set = 1;
214e1eca
JA
291 return 0;
292}
293
85bc833b 294static int str_prio_cb(void *data, unsigned long long *val)
214e1eca
JA
295{
296 struct thread_data *td = data;
297
298 td->ioprio |= *val;
6cefbe33
JA
299
300 /*
301 * If no class is set, assume BE
302 */
303 if ((td->ioprio >> IOPRIO_CLASS_SHIFT) == 0)
304 td->ioprio |= IOPRIO_CLASS_BE << IOPRIO_CLASS_SHIFT;
305
ac684785 306 td->ioprio_set = 1;
214e1eca
JA
307 return 0;
308}
309#endif
310
311static int str_exitall_cb(void)
312{
313 exitall_on_terminate = 1;
314 return 0;
315}
316
214e1eca 317#ifdef FIO_HAVE_CPU_AFFINITY
85bc833b 318static int str_cpumask_cb(void *data, unsigned long long *val)
d2e268b0
JA
319{
320 struct thread_data *td = data;
214e1eca 321 unsigned int i;
b03daafb 322 long max_cpu;
d2ce18b5
JA
323 int ret;
324
325 ret = fio_cpuset_init(&td->o.cpumask);
326 if (ret < 0) {
327 log_err("fio: cpuset_init failed\n");
328 td_verror(td, ret, "fio_cpuset_init");
329 return 1;
330 }
214e1eca 331
b03daafb 332 max_cpu = sysconf(_SC_NPROCESSORS_ONLN);
214e1eca 333
62a7273d
JA
334 for (i = 0; i < sizeof(int) * 8; i++) {
335 if ((1 << i) & *val) {
b03daafb
JA
336 if (i > max_cpu) {
337 log_err("fio: CPU %d too large (max=%ld)\n", i,
338 max_cpu);
339 return 1;
340 }
62a7273d 341 dprint(FD_PARSE, "set cpu allowed %d\n", i);
6d459ee7 342 fio_cpu_set(&td->o.cpumask, i);
62a7273d
JA
343 }
344 }
d2e268b0
JA
345
346 td->o.cpumask_set = 1;
347 return 0;
214e1eca
JA
348}
349
e8462bd8
JA
350static int set_cpus_allowed(struct thread_data *td, os_cpu_mask_t *mask,
351 const char *input)
214e1eca 352{
d2e268b0 353 char *cpu, *str, *p;
b03daafb 354 long max_cpu;
19608d6c 355 int ret = 0;
d2e268b0 356
e8462bd8 357 ret = fio_cpuset_init(mask);
d2ce18b5
JA
358 if (ret < 0) {
359 log_err("fio: cpuset_init failed\n");
360 td_verror(td, ret, "fio_cpuset_init");
361 return 1;
362 }
d2e268b0
JA
363
364 p = str = strdup(input);
214e1eca 365
d2e268b0
JA
366 strip_blank_front(&str);
367 strip_blank_end(str);
368
b03daafb
JA
369 max_cpu = sysconf(_SC_NPROCESSORS_ONLN);
370
d2e268b0 371 while ((cpu = strsep(&str, ",")) != NULL) {
62a7273d
JA
372 char *str2, *cpu2;
373 int icpu, icpu2;
374
d2e268b0
JA
375 if (!strlen(cpu))
376 break;
62a7273d
JA
377
378 str2 = cpu;
379 icpu2 = -1;
380 while ((cpu2 = strsep(&str2, "-")) != NULL) {
381 if (!strlen(cpu2))
382 break;
383
384 icpu2 = atoi(cpu2);
385 }
386
387 icpu = atoi(cpu);
388 if (icpu2 == -1)
389 icpu2 = icpu;
390 while (icpu <= icpu2) {
6d459ee7 391 if (icpu >= FIO_MAX_CPUS) {
19608d6c 392 log_err("fio: your OS only supports up to"
6d459ee7 393 " %d CPUs\n", (int) FIO_MAX_CPUS);
19608d6c
JA
394 ret = 1;
395 break;
396 }
b03daafb
JA
397 if (icpu > max_cpu) {
398 log_err("fio: CPU %d too large (max=%ld)\n",
399 icpu, max_cpu);
400 ret = 1;
401 break;
402 }
0b9d69ec 403
62a7273d 404 dprint(FD_PARSE, "set cpu allowed %d\n", icpu);
e8462bd8 405 fio_cpu_set(mask, icpu);
62a7273d
JA
406 icpu++;
407 }
19608d6c
JA
408 if (ret)
409 break;
d2e268b0
JA
410 }
411
412 free(p);
19608d6c
JA
413 if (!ret)
414 td->o.cpumask_set = 1;
415 return ret;
214e1eca 416}
e8462bd8
JA
417
418static int str_cpus_allowed_cb(void *data, const char *input)
419{
420 struct thread_data *td = data;
421 int ret;
422
423 ret = set_cpus_allowed(td, &td->o.cpumask, input);
424 if (!ret)
425 td->o.cpumask_set = 1;
426
427 return ret;
428}
429
430static int str_verify_cpus_allowed_cb(void *data, const char *input)
431{
432 struct thread_data *td = data;
433 int ret;
434
435 ret = set_cpus_allowed(td, &td->o.verify_cpumask, input);
436 if (!ret)
437 td->o.verify_cpumask_set = 1;
438
439 return ret;
440}
d2e268b0 441#endif
214e1eca 442
0d29de83
JA
443#ifdef FIO_HAVE_TRIM
444static int str_verify_trim_cb(void *data, unsigned long long *val)
445{
446 struct thread_data *td = data;
447
448 td->o.trim_percentage = *val;
449 return 0;
450}
451#endif
452
214e1eca
JA
453static int str_fst_cb(void *data, const char *str)
454{
455 struct thread_data *td = data;
456 char *nr = get_opt_postfix(str);
457
458 td->file_service_nr = 1;
182ec6ee 459 if (nr) {
214e1eca 460 td->file_service_nr = atoi(nr);
182ec6ee
JA
461 free(nr);
462 }
214e1eca
JA
463
464 return 0;
465}
466
3ae06371 467#ifdef FIO_HAVE_SYNC_FILE_RANGE
44f29692
JA
468static int str_sfr_cb(void *data, const char *str)
469{
470 struct thread_data *td = data;
471 char *nr = get_opt_postfix(str);
472
473 td->sync_file_range_nr = 1;
474 if (nr) {
475 td->sync_file_range_nr = atoi(nr);
476 free(nr);
477 }
478
479 return 0;
480}
3ae06371 481#endif
44f29692 482
921c766f
JA
483static int check_dir(struct thread_data *td, char *fname)
484{
485 char file[PATH_MAX], *dir;
bc838919 486 int elen = 0;
921c766f 487
bc838919
JA
488 if (td->o.directory) {
489 strcpy(file, td->o.directory);
fcef0b35 490 strcat(file, "/");
bc838919
JA
491 elen = strlen(file);
492 }
493
fcef0b35 494 sprintf(file + elen, "%s", fname);
921c766f
JA
495 dir = dirname(file);
496
fcef0b35
JA
497#if 0
498 {
499 struct stat sb;
500 /*
501 * We can't do this on FIO_DISKLESSIO engines. The engine isn't loaded
502 * yet, so we can't do this check right here...
503 */
921c766f
JA
504 if (lstat(dir, &sb) < 0) {
505 int ret = errno;
506
507 log_err("fio: %s is not a directory\n", dir);
508 td_verror(td, ret, "lstat");
509 return 1;
510 }
511
512 if (!S_ISDIR(sb.st_mode)) {
513 log_err("fio: %s is not a directory\n", dir);
514 return 1;
515 }
fcef0b35
JA
516 }
517#endif
921c766f
JA
518
519 return 0;
520}
521
8e827d35
JA
522/*
523 * Return next file in the string. Files are separated with ':'. If the ':'
524 * is escaped with a '\', then that ':' is part of the filename and does not
525 * indicate a new file.
526 */
527static char *get_next_file_name(char **ptr)
528{
529 char *str = *ptr;
530 char *p, *start;
531
532 if (!str || !strlen(str))
533 return NULL;
534
535 start = str;
536 do {
537 /*
538 * No colon, we are done
539 */
540 p = strchr(str, ':');
541 if (!p) {
542 *ptr = NULL;
543 break;
544 }
545
546 /*
547 * We got a colon, but it's the first character. Skip and
548 * continue
549 */
550 if (p == start) {
551 str = ++start;
552 continue;
553 }
554
555 if (*(p - 1) != '\\') {
556 *p = '\0';
557 *ptr = p + 1;
558 break;
559 }
560
561 memmove(p - 1, p, strlen(p) + 1);
562 str = p;
563 } while (1);
564
565 return start;
566}
567
214e1eca
JA
568static int str_filename_cb(void *data, const char *input)
569{
570 struct thread_data *td = data;
571 char *fname, *str, *p;
572
573 p = str = strdup(input);
574
575 strip_blank_front(&str);
576 strip_blank_end(str);
577
578 if (!td->files_index)
2dc1bbeb 579 td->o.nr_files = 0;
214e1eca 580
8e827d35 581 while ((fname = get_next_file_name(&str)) != NULL) {
214e1eca
JA
582 if (!strlen(fname))
583 break;
921c766f
JA
584 if (check_dir(td, fname)) {
585 free(p);
586 return 1;
587 }
214e1eca 588 add_file(td, fname);
2dc1bbeb 589 td->o.nr_files++;
214e1eca
JA
590 }
591
592 free(p);
593 return 0;
594}
595
596static int str_directory_cb(void *data, const char fio_unused *str)
597{
598 struct thread_data *td = data;
599 struct stat sb;
600
2dc1bbeb 601 if (lstat(td->o.directory, &sb) < 0) {
921c766f
JA
602 int ret = errno;
603
2dc1bbeb 604 log_err("fio: %s is not a directory\n", td->o.directory);
921c766f 605 td_verror(td, ret, "lstat");
214e1eca
JA
606 return 1;
607 }
608 if (!S_ISDIR(sb.st_mode)) {
2dc1bbeb 609 log_err("fio: %s is not a directory\n", td->o.directory);
214e1eca
JA
610 return 1;
611 }
612
613 return 0;
614}
615
616static int str_opendir_cb(void *data, const char fio_unused *str)
617{
618 struct thread_data *td = data;
619
620 if (!td->files_index)
2dc1bbeb 621 td->o.nr_files = 0;
214e1eca 622
2dc1bbeb 623 return add_dir_files(td, td->o.opendir);
214e1eca
JA
624}
625
85bc833b 626static int str_verify_offset_cb(void *data, unsigned long long *off)
546a9142
SL
627{
628 struct thread_data *td = data;
a59e170d 629
546a9142 630 if (*off && *off < sizeof(struct verify_header)) {
a59e170d 631 log_err("fio: verify_offset too small\n");
546a9142
SL
632 return 1;
633 }
a59e170d
JA
634
635 td->o.verify_offset = *off;
546a9142
SL
636 return 0;
637}
638
0e92f873 639static int str_verify_pattern_cb(void *data, const char *input)
90059d65
JA
640{
641 struct thread_data *td = data;
0e92f873
RR
642 long off;
643 int i = 0, j = 0, len, k, base = 10;
644 char* loc1, * loc2;
645
646 loc1 = strstr(input, "0x");
647 loc2 = strstr(input, "0X");
648 if (loc1 || loc2)
649 base = 16;
650 off = strtol(input, NULL, base);
651 if (off != LONG_MAX || errno != ERANGE) {
652 while (off) {
653 td->o.verify_pattern[i] = off & 0xff;
654 off >>= 8;
655 i++;
656 }
657 } else {
658 len = strlen(input);
659 k = len - 1;
660 if (base == 16) {
661 if (loc1)
662 j = loc1 - input + 2;
663 else
664 j = loc2 - input + 2;
665 } else
666 return 1;
667 if (len - j < MAX_PATTERN_SIZE * 2) {
668 while (k >= j) {
669 off = converthexchartoint(input[k--]);
670 if (k >= j)
671 off += (converthexchartoint(input[k--])
672 * 16);
673 td->o.verify_pattern[i++] = (char) off;
674 }
675 }
676 }
677 td->o.verify_pattern_bytes = i;
92bf48d5
JA
678 /*
679 * VERIFY_META could already be set
680 */
681 if (td->o.verify == VERIFY_NONE)
682 td->o.verify = VERIFY_PATTERN;
90059d65
JA
683 return 0;
684}
214e1eca 685
4d4e80f2
JA
686static int str_lockfile_cb(void *data, const char *str)
687{
688 struct thread_data *td = data;
689 char *nr = get_opt_postfix(str);
690
691 td->o.lockfile_batch = 1;
182ec6ee 692 if (nr) {
4d4e80f2 693 td->o.lockfile_batch = atoi(nr);
182ec6ee
JA
694 free(nr);
695 }
4d4e80f2
JA
696
697 return 0;
698}
699
e3cedca7
JA
700static int str_write_bw_log_cb(void *data, const char *str)
701{
702 struct thread_data *td = data;
703
704 if (str)
705 td->o.bw_log_file = strdup(str);
706
707 td->o.write_bw_log = 1;
708 return 0;
709}
710
711static int str_write_lat_log_cb(void *data, const char *str)
712{
713 struct thread_data *td = data;
714
715 if (str)
716 td->o.lat_log_file = strdup(str);
717
718 td->o.write_lat_log = 1;
719 return 0;
720}
721
993bf48b
JA
722static int str_gtod_reduce_cb(void *data, int *il)
723{
724 struct thread_data *td = data;
725 int val = *il;
726
02af0988 727 td->o.disable_lat = !!val;
993bf48b
JA
728 td->o.disable_clat = !!val;
729 td->o.disable_slat = !!val;
730 td->o.disable_bw = !!val;
731 if (val)
732 td->tv_cache_mask = 63;
733
734 return 0;
735}
736
85bc833b 737static int str_gtod_cpu_cb(void *data, long long *il)
be4ecfdf
JA
738{
739 struct thread_data *td = data;
740 int val = *il;
741
742 td->o.gtod_cpu = val;
743 td->o.gtod_offload = 1;
744 return 0;
745}
746
896cac2a
JA
747static int rw_verify(struct fio_option *o, void *data)
748{
749 struct thread_data *td = data;
750
751 if (read_only && td_write(td)) {
752 log_err("fio: job <%s> has write bit set, but fio is in"
753 " read-only mode\n", td->o.name);
754 return 1;
755 }
756
757 return 0;
758}
759
276ca4f7 760static int gtod_cpu_verify(struct fio_option *o, void *data)
29d43ff9 761{
276ca4f7 762#ifndef FIO_HAVE_CPU_AFFINITY
29d43ff9
JA
763 struct thread_data *td = data;
764
29d43ff9
JA
765 if (td->o.gtod_cpu) {
766 log_err("fio: platform must support CPU affinity for"
767 "gettimeofday() offloading\n");
768 return 1;
769 }
770#endif
771
772 return 0;
773}
774
90fef2d1
JA
775static int kb_base_verify(struct fio_option *o, void *data)
776{
777 struct thread_data *td = data;
778
779 if (td->o.kb_base != 1024 && td->o.kb_base != 1000) {
780 log_err("fio: kb_base set to nonsensical value: %u\n",
781 td->o.kb_base);
782 return 1;
783 }
784
785 return 0;
786}
787
214e1eca
JA
788#define __stringify_1(x) #x
789#define __stringify(x) __stringify_1(x)
790
791/*
792 * Map of job/command line options
793 */
07b3232d 794static struct fio_option options[FIO_MAX_OPTS] = {
214e1eca
JA
795 {
796 .name = "description",
797 .type = FIO_OPT_STR_STORE,
798 .off1 = td_var_offset(description),
799 .help = "Text job description",
800 },
801 {
802 .name = "name",
803 .type = FIO_OPT_STR_STORE,
804 .off1 = td_var_offset(name),
805 .help = "Name of this job",
806 },
807 {
808 .name = "directory",
809 .type = FIO_OPT_STR_STORE,
810 .off1 = td_var_offset(directory),
811 .cb = str_directory_cb,
812 .help = "Directory to store files in",
813 },
814 {
815 .name = "filename",
816 .type = FIO_OPT_STR_STORE,
817 .off1 = td_var_offset(filename),
818 .cb = str_filename_cb,
f0d524b0 819 .prio = -1, /* must come after "directory" */
214e1eca
JA
820 .help = "File(s) to use for the workload",
821 },
90fef2d1
JA
822 {
823 .name = "kb_base",
824 .type = FIO_OPT_INT,
825 .off1 = td_var_offset(kb_base),
90fef2d1 826 .verify = kb_base_verify,
a639f0bb 827 .prio = 1,
90fef2d1 828 .def = "1024",
a639f0bb 829 .help = "How many bytes per KB for reporting (1000 or 1024)",
90fef2d1 830 },
29c1349f
JA
831 {
832 .name = "lockfile",
4d4e80f2
JA
833 .type = FIO_OPT_STR,
834 .cb = str_lockfile_cb,
835 .off1 = td_var_offset(file_lock_mode),
29c1349f
JA
836 .help = "Lock file when doing IO to it",
837 .parent = "filename",
4d4e80f2
JA
838 .def = "none",
839 .posval = {
840 { .ival = "none",
841 .oval = FILE_LOCK_NONE,
842 .help = "No file locking",
843 },
844 { .ival = "exclusive",
845 .oval = FILE_LOCK_EXCLUSIVE,
846 .help = "Exclusive file lock",
847 },
848 {
849 .ival = "readwrite",
850 .oval = FILE_LOCK_READWRITE,
851 .help = "Read vs write lock",
852 },
853 },
29c1349f 854 },
214e1eca
JA
855 {
856 .name = "opendir",
857 .type = FIO_OPT_STR_STORE,
858 .off1 = td_var_offset(opendir),
859 .cb = str_opendir_cb,
860 .help = "Recursively add files from this directory and down",
861 },
862 {
863 .name = "rw",
d3aad8f2 864 .alias = "readwrite",
214e1eca 865 .type = FIO_OPT_STR,
211097b2 866 .cb = str_rw_cb,
214e1eca
JA
867 .off1 = td_var_offset(td_ddir),
868 .help = "IO direction",
869 .def = "read",
896cac2a 870 .verify = rw_verify,
214e1eca
JA
871 .posval = {
872 { .ival = "read",
873 .oval = TD_DDIR_READ,
874 .help = "Sequential read",
875 },
876 { .ival = "write",
877 .oval = TD_DDIR_WRITE,
878 .help = "Sequential write",
879 },
880 { .ival = "randread",
881 .oval = TD_DDIR_RANDREAD,
882 .help = "Random read",
883 },
884 { .ival = "randwrite",
885 .oval = TD_DDIR_RANDWRITE,
886 .help = "Random write",
887 },
888 { .ival = "rw",
889 .oval = TD_DDIR_RW,
890 .help = "Sequential read and write mix",
891 },
892 { .ival = "randrw",
893 .oval = TD_DDIR_RANDRW,
894 .help = "Random read and write mix"
895 },
896 },
897 },
38dad62d
JA
898 {
899 .name = "rw_sequencer",
900 .type = FIO_OPT_STR,
901 .off1 = td_var_offset(rw_seq),
902 .help = "IO offset generator modifier",
903 .def = "sequential",
904 .posval = {
905 { .ival = "sequential",
906 .oval = RW_SEQ_SEQ,
907 .help = "Generate sequential offsets",
908 },
909 { .ival = "identical",
910 .oval = RW_SEQ_IDENT,
911 .help = "Generate identical offsets",
912 },
913 },
914 },
915
214e1eca
JA
916 {
917 .name = "ioengine",
918 .type = FIO_OPT_STR_STORE,
919 .off1 = td_var_offset(ioengine),
920 .help = "IO engine to use",
58483fa4 921 .def = FIO_PREFERRED_ENGINE,
214e1eca
JA
922 .posval = {
923 { .ival = "sync",
924 .help = "Use read/write",
925 },
a31041ea 926 { .ival = "psync",
927 .help = "Use pread/pwrite",
928 },
1d2af02a 929 { .ival = "vsync",
03e20d68 930 .help = "Use readv/writev",
1d2af02a 931 },
214e1eca
JA
932#ifdef FIO_HAVE_LIBAIO
933 { .ival = "libaio",
934 .help = "Linux native asynchronous IO",
935 },
936#endif
937#ifdef FIO_HAVE_POSIXAIO
938 { .ival = "posixaio",
939 .help = "POSIX asynchronous IO",
940 },
417f0068
JA
941#endif
942#ifdef FIO_HAVE_SOLARISAIO
943 { .ival = "solarisaio",
944 .help = "Solaris native asynchronous IO",
945 },
214e1eca 946#endif
03e20d68
BC
947#ifdef FIO_HAVE_WINDOWSAIO
948 { .ival = "windowsaio",
3be80071 949 .help = "Windows native asynchronous IO"
03e20d68 950 },
3be80071 951#endif
214e1eca 952 { .ival = "mmap",
03e20d68 953 .help = "Memory mapped IO"
214e1eca
JA
954 },
955#ifdef FIO_HAVE_SPLICE
956 { .ival = "splice",
957 .help = "splice/vmsplice based IO",
958 },
9cce02e8
JA
959 { .ival = "netsplice",
960 .help = "splice/vmsplice to/from the network",
961 },
214e1eca
JA
962#endif
963#ifdef FIO_HAVE_SGIO
964 { .ival = "sg",
965 .help = "SCSI generic v3 IO",
966 },
967#endif
968 { .ival = "null",
969 .help = "Testing engine (no data transfer)",
970 },
971 { .ival = "net",
972 .help = "Network IO",
973 },
974#ifdef FIO_HAVE_SYSLET
975 { .ival = "syslet-rw",
976 .help = "syslet enabled async pread/pwrite IO",
977 },
978#endif
979 { .ival = "cpuio",
03e20d68 980 .help = "CPU cycle burner engine",
214e1eca 981 },
b8c82a46
JA
982#ifdef FIO_HAVE_GUASI
983 { .ival = "guasi",
984 .help = "GUASI IO engine",
985 },
79a43187
JA
986#endif
987#ifdef FIO_HAVE_BINJECT
988 { .ival = "binject",
989 .help = "binject direct inject block engine",
990 },
b8c82a46 991#endif
214e1eca
JA
992 { .ival = "external",
993 .help = "Load external engine (append name)",
994 },
995 },
996 },
997 {
998 .name = "iodepth",
999 .type = FIO_OPT_INT,
1000 .off1 = td_var_offset(iodepth),
03e20d68 1001 .help = "Number of IO buffers to keep in flight",
757aff4f 1002 .minval = 1,
214e1eca
JA
1003 .def = "1",
1004 },
1005 {
1006 .name = "iodepth_batch",
4950421a 1007 .alias = "iodepth_batch_submit",
214e1eca
JA
1008 .type = FIO_OPT_INT,
1009 .off1 = td_var_offset(iodepth_batch),
d65db441 1010 .help = "Number of IO buffers to submit in one go",
afdf9352 1011 .parent = "iodepth",
a2e6f8ac
JA
1012 .minval = 1,
1013 .def = "1",
4950421a
JA
1014 },
1015 {
1016 .name = "iodepth_batch_complete",
1017 .type = FIO_OPT_INT,
1018 .off1 = td_var_offset(iodepth_batch_complete),
d65db441 1019 .help = "Number of IO buffers to retrieve in one go",
4950421a
JA
1020 .parent = "iodepth",
1021 .minval = 0,
1022 .def = "1",
214e1eca
JA
1023 },
1024 {
1025 .name = "iodepth_low",
1026 .type = FIO_OPT_INT,
1027 .off1 = td_var_offset(iodepth_low),
1028 .help = "Low water mark for queuing depth",
afdf9352 1029 .parent = "iodepth",
214e1eca
JA
1030 },
1031 {
1032 .name = "size",
1033 .type = FIO_OPT_STR_VAL,
2dc1bbeb 1034 .off1 = td_var_offset(size),
c3edbdba 1035 .minval = 1,
214e1eca
JA
1036 .help = "Total size of device or files",
1037 },
aa31f1f1
SL
1038 {
1039 .name = "fill_device",
74586c1e 1040 .alias = "fill_fs",
aa31f1f1
SL
1041 .type = FIO_OPT_BOOL,
1042 .off1 = td_var_offset(fill_device),
1043 .help = "Write until an ENOSPC error occurs",
1044 .def = "0",
1045 },
214e1eca
JA
1046 {
1047 .name = "filesize",
1048 .type = FIO_OPT_STR_VAL,
1049 .off1 = td_var_offset(file_size_low),
1050 .off2 = td_var_offset(file_size_high),
c3edbdba 1051 .minval = 1,
214e1eca
JA
1052 .help = "Size of individual files",
1053 },
67a1000f
JA
1054 {
1055 .name = "offset",
1056 .alias = "fileoffset",
1057 .type = FIO_OPT_STR_VAL,
1058 .off1 = td_var_offset(start_offset),
1059 .help = "Start IO from this offset",
1060 .def = "0",
1061 },
214e1eca
JA
1062 {
1063 .name = "bs",
d3aad8f2 1064 .alias = "blocksize",
e01b22b8 1065 .type = FIO_OPT_INT,
214e1eca
JA
1066 .off1 = td_var_offset(bs[DDIR_READ]),
1067 .off2 = td_var_offset(bs[DDIR_WRITE]),
c3edbdba 1068 .minval = 1,
214e1eca
JA
1069 .help = "Block size unit",
1070 .def = "4k",
67a1000f 1071 .parent = "rw",
214e1eca 1072 },
2b7a01d0
JA
1073 {
1074 .name = "ba",
1075 .alias = "blockalign",
e01b22b8 1076 .type = FIO_OPT_INT,
2b7a01d0
JA
1077 .off1 = td_var_offset(ba[DDIR_READ]),
1078 .off2 = td_var_offset(ba[DDIR_WRITE]),
1079 .minval = 1,
1080 .help = "IO block offset alignment",
1081 .parent = "rw",
1082 },
214e1eca
JA
1083 {
1084 .name = "bsrange",
d3aad8f2 1085 .alias = "blocksize_range",
214e1eca
JA
1086 .type = FIO_OPT_RANGE,
1087 .off1 = td_var_offset(min_bs[DDIR_READ]),
1088 .off2 = td_var_offset(max_bs[DDIR_READ]),
1089 .off3 = td_var_offset(min_bs[DDIR_WRITE]),
1090 .off4 = td_var_offset(max_bs[DDIR_WRITE]),
c3edbdba 1091 .minval = 1,
214e1eca 1092 .help = "Set block size range (in more detail than bs)",
67a1000f 1093 .parent = "rw",
214e1eca 1094 },
564ca972
JA
1095 {
1096 .name = "bssplit",
1097 .type = FIO_OPT_STR,
1098 .cb = str_bssplit_cb,
1099 .help = "Set a specific mix of block sizes",
1100 .parent = "rw",
1101 },
214e1eca
JA
1102 {
1103 .name = "bs_unaligned",
d3aad8f2 1104 .alias = "blocksize_unaligned",
214e1eca
JA
1105 .type = FIO_OPT_STR_SET,
1106 .off1 = td_var_offset(bs_unaligned),
1107 .help = "Don't sector align IO buffer sizes",
67a1000f 1108 .parent = "rw",
214e1eca
JA
1109 },
1110 {
1111 .name = "randrepeat",
1112 .type = FIO_OPT_BOOL,
1113 .off1 = td_var_offset(rand_repeatable),
1114 .help = "Use repeatable random IO pattern",
1115 .def = "1",
67a1000f 1116 .parent = "rw",
214e1eca
JA
1117 },
1118 {
1119 .name = "norandommap",
1120 .type = FIO_OPT_STR_SET,
1121 .off1 = td_var_offset(norandommap),
1122 .help = "Accept potential duplicate random blocks",
67a1000f 1123 .parent = "rw",
214e1eca 1124 },
2b386d25
JA
1125 {
1126 .name = "softrandommap",
1127 .type = FIO_OPT_BOOL,
1128 .off1 = td_var_offset(softrandommap),
f66ab3c8 1129 .help = "Set norandommap if randommap allocation fails",
2b386d25
JA
1130 .parent = "norandommap",
1131 .def = "0",
1132 },
214e1eca
JA
1133 {
1134 .name = "nrfiles",
d7c8be03 1135 .alias = "nr_files",
214e1eca
JA
1136 .type = FIO_OPT_INT,
1137 .off1 = td_var_offset(nr_files),
1138 .help = "Split job workload between this number of files",
1139 .def = "1",
1140 },
1141 {
1142 .name = "openfiles",
1143 .type = FIO_OPT_INT,
1144 .off1 = td_var_offset(open_files),
1145 .help = "Number of files to keep open at the same time",
1146 },
1147 {
1148 .name = "file_service_type",
1149 .type = FIO_OPT_STR,
1150 .cb = str_fst_cb,
1151 .off1 = td_var_offset(file_service_type),
1152 .help = "How to select which file to service next",
1153 .def = "roundrobin",
1154 .posval = {
1155 { .ival = "random",
1156 .oval = FIO_FSERVICE_RANDOM,
1157 .help = "Choose a file at random",
1158 },
1159 { .ival = "roundrobin",
1160 .oval = FIO_FSERVICE_RR,
1161 .help = "Round robin select files",
1162 },
a086c257
JA
1163 { .ival = "sequential",
1164 .oval = FIO_FSERVICE_SEQ,
1165 .help = "Finish one file before moving to the next",
1166 },
214e1eca 1167 },
67a1000f
JA
1168 .parent = "nrfiles",
1169 },
7bc8c2cf
JA
1170#ifdef FIO_HAVE_FALLOCATE
1171 {
1172 .name = "fallocate",
1173 .type = FIO_OPT_BOOL,
1174 .off1 = td_var_offset(fallocate),
1175 .help = "Use fallocate() when laying out files",
1176 .def = "1",
1177 },
1178#endif
67a1000f
JA
1179 {
1180 .name = "fadvise_hint",
1181 .type = FIO_OPT_BOOL,
1182 .off1 = td_var_offset(fadvise_hint),
1183 .help = "Use fadvise() to advise the kernel on IO pattern",
1184 .def = "1",
214e1eca
JA
1185 },
1186 {
1187 .name = "fsync",
1188 .type = FIO_OPT_INT,
1189 .off1 = td_var_offset(fsync_blocks),
1190 .help = "Issue fsync for writes every given number of blocks",
1191 .def = "0",
1192 },
5f9099ea
JA
1193 {
1194 .name = "fdatasync",
1195 .type = FIO_OPT_INT,
1196 .off1 = td_var_offset(fdatasync_blocks),
1197 .help = "Issue fdatasync for writes every given number of blocks",
1198 .def = "0",
1199 },
1ef2b6be
JA
1200 {
1201 .name = "write_barrier",
1202 .type = FIO_OPT_INT,
1203 .off1 = td_var_offset(barrier_blocks),
1204 .help = "Make every Nth write a barrier write",
1205 .def = "0",
1206 },
44f29692
JA
1207#ifdef FIO_HAVE_SYNC_FILE_RANGE
1208 {
1209 .name = "sync_file_range",
1210 .posval = {
1211 { .ival = "wait_before",
1212 .oval = SYNC_FILE_RANGE_WAIT_BEFORE,
1213 .help = "SYNC_FILE_RANGE_WAIT_BEFORE",
3843deb3 1214 .or = 1,
44f29692
JA
1215 },
1216 { .ival = "write",
1217 .oval = SYNC_FILE_RANGE_WRITE,
1218 .help = "SYNC_FILE_RANGE_WRITE",
3843deb3 1219 .or = 1,
44f29692
JA
1220 },
1221 {
1222 .ival = "wait_after",
1223 .oval = SYNC_FILE_RANGE_WAIT_AFTER,
1224 .help = "SYNC_FILE_RANGE_WAIT_AFTER",
3843deb3 1225 .or = 1,
44f29692
JA
1226 },
1227 },
3843deb3 1228 .type = FIO_OPT_STR_MULTI,
44f29692
JA
1229 .cb = str_sfr_cb,
1230 .off1 = td_var_offset(sync_file_range),
1231 .help = "Use sync_file_range()",
1232 },
1233#endif
214e1eca
JA
1234 {
1235 .name = "direct",
1236 .type = FIO_OPT_BOOL,
1237 .off1 = td_var_offset(odirect),
1238 .help = "Use O_DIRECT IO (negates buffered)",
1239 .def = "0",
1240 },
1241 {
1242 .name = "buffered",
1243 .type = FIO_OPT_BOOL,
1244 .off1 = td_var_offset(odirect),
1245 .neg = 1,
1246 .help = "Use buffered IO (negates direct)",
1247 .def = "1",
1248 },
1249 {
1250 .name = "overwrite",
1251 .type = FIO_OPT_BOOL,
1252 .off1 = td_var_offset(overwrite),
1253 .help = "When writing, set whether to overwrite current data",
1254 .def = "0",
1255 },
1256 {
1257 .name = "loops",
1258 .type = FIO_OPT_INT,
1259 .off1 = td_var_offset(loops),
1260 .help = "Number of times to run the job",
1261 .def = "1",
1262 },
1263 {
1264 .name = "numjobs",
1265 .type = FIO_OPT_INT,
1266 .off1 = td_var_offset(numjobs),
1267 .help = "Duplicate this job this many times",
1268 .def = "1",
1269 },
1270 {
1271 .name = "startdelay",
a5737c93 1272 .type = FIO_OPT_STR_VAL_TIME,
214e1eca
JA
1273 .off1 = td_var_offset(start_delay),
1274 .help = "Only start job when this period has passed",
1275 .def = "0",
1276 },
1277 {
1278 .name = "runtime",
1279 .alias = "timeout",
1280 .type = FIO_OPT_STR_VAL_TIME,
1281 .off1 = td_var_offset(timeout),
1282 .help = "Stop workload when this amount of time has passed",
1283 .def = "0",
1284 },
cf4464ca
JA
1285 {
1286 .name = "time_based",
1287 .type = FIO_OPT_STR_SET,
1288 .off1 = td_var_offset(time_based),
1289 .help = "Keep running until runtime/timeout is met",
1290 },
721938ae
JA
1291 {
1292 .name = "ramp_time",
1293 .type = FIO_OPT_STR_VAL_TIME,
1294 .off1 = td_var_offset(ramp_time),
1295 .help = "Ramp up time before measuring performance",
1296 },
c223da83
JA
1297 {
1298 .name = "clocksource",
1299 .type = FIO_OPT_STR,
1300 .cb = fio_clock_source_cb,
1301 .off1 = td_var_offset(clocksource),
1302 .help = "What type of timing source to use",
c223da83
JA
1303 .posval = {
1304 { .ival = "gettimeofday",
1305 .oval = CS_GTOD,
1306 .help = "Use gettimeofday(2) for timing",
1307 },
1308 { .ival = "clock_gettime",
1309 .oval = CS_CGETTIME,
1310 .help = "Use clock_gettime(2) for timing",
1311 },
1312#ifdef ARCH_HAVE_CPU_CLOCK
1313 { .ival = "cpu",
1314 .oval = CS_CPUCLOCK,
1315 .help = "Use CPU private clock",
1316 },
1317#endif
1318 },
1319 },
214e1eca
JA
1320 {
1321 .name = "mem",
d3aad8f2 1322 .alias = "iomem",
214e1eca
JA
1323 .type = FIO_OPT_STR,
1324 .cb = str_mem_cb,
1325 .off1 = td_var_offset(mem_type),
1326 .help = "Backing type for IO buffers",
1327 .def = "malloc",
1328 .posval = {
1329 { .ival = "malloc",
1330 .oval = MEM_MALLOC,
1331 .help = "Use malloc(3) for IO buffers",
1332 },
37c8cdfe
JA
1333 { .ival = "shm",
1334 .oval = MEM_SHM,
1335 .help = "Use shared memory segments for IO buffers",
1336 },
214e1eca
JA
1337#ifdef FIO_HAVE_HUGETLB
1338 { .ival = "shmhuge",
1339 .oval = MEM_SHMHUGE,
1340 .help = "Like shm, but use huge pages",
1341 },
b370e46a 1342#endif
37c8cdfe
JA
1343 { .ival = "mmap",
1344 .oval = MEM_MMAP,
1345 .help = "Use mmap(2) (file or anon) for IO buffers",
1346 },
214e1eca
JA
1347#ifdef FIO_HAVE_HUGETLB
1348 { .ival = "mmaphuge",
1349 .oval = MEM_MMAPHUGE,
1350 .help = "Like mmap, but use huge pages",
1351 },
1352#endif
1353 },
1354 },
d529ee19
JA
1355 {
1356 .name = "iomem_align",
1357 .alias = "mem_align",
1358 .type = FIO_OPT_INT,
1359 .off1 = td_var_offset(mem_align),
1360 .minval = 0,
1361 .help = "IO memory buffer offset alignment",
1362 .def = "0",
1363 .parent = "iomem",
1364 },
214e1eca
JA
1365 {
1366 .name = "verify",
1367 .type = FIO_OPT_STR,
1368 .off1 = td_var_offset(verify),
1369 .help = "Verify data written",
5d7c5d34 1370 .cb = str_verify_cb,
214e1eca
JA
1371 .def = "0",
1372 .posval = {
1373 { .ival = "0",
1374 .oval = VERIFY_NONE,
1375 .help = "Don't do IO verification",
1376 },
fcca4b58
JA
1377 { .ival = "md5",
1378 .oval = VERIFY_MD5,
1379 .help = "Use md5 checksums for verification",
1380 },
d77a7af3
JA
1381 { .ival = "crc64",
1382 .oval = VERIFY_CRC64,
1383 .help = "Use crc64 checksums for verification",
1384 },
214e1eca
JA
1385 { .ival = "crc32",
1386 .oval = VERIFY_CRC32,
1387 .help = "Use crc32 checksums for verification",
1388 },
af497e6a
JA
1389 { .ival = "crc32c-intel",
1390 .oval = VERIFY_CRC32C_INTEL,
1391 .help = "Use hw crc32c checksums for verification",
1392 },
bac39e0e
JA
1393 { .ival = "crc32c",
1394 .oval = VERIFY_CRC32C,
1395 .help = "Use crc32c checksums for verification",
1396 },
969f7ed3
JA
1397 { .ival = "crc16",
1398 .oval = VERIFY_CRC16,
1399 .help = "Use crc16 checksums for verification",
1400 },
1e154bdb
JA
1401 { .ival = "crc7",
1402 .oval = VERIFY_CRC7,
1403 .help = "Use crc7 checksums for verification",
1404 },
7c353ceb
JA
1405 { .ival = "sha1",
1406 .oval = VERIFY_SHA1,
1407 .help = "Use sha1 checksums for verification",
1408 },
cd14cc10
JA
1409 { .ival = "sha256",
1410 .oval = VERIFY_SHA256,
1411 .help = "Use sha256 checksums for verification",
1412 },
1413 { .ival = "sha512",
1414 .oval = VERIFY_SHA512,
1415 .help = "Use sha512 checksums for verification",
1416 },
7437ee87
SL
1417 { .ival = "meta",
1418 .oval = VERIFY_META,
1419 .help = "Use io information",
1420 },
36690c9b
JA
1421 {
1422 .ival = "null",
1423 .oval = VERIFY_NULL,
1424 .help = "Pretend to verify",
1425 },
214e1eca
JA
1426 },
1427 },
005c565a
JA
1428 {
1429 .name = "do_verify",
68e1f29a 1430 .type = FIO_OPT_BOOL,
005c565a
JA
1431 .off1 = td_var_offset(do_verify),
1432 .help = "Run verification stage after write",
1433 .def = "1",
1434 .parent = "verify",
1435 },
160b966d
JA
1436 {
1437 .name = "verifysort",
1438 .type = FIO_OPT_BOOL,
1439 .off1 = td_var_offset(verifysort),
1440 .help = "Sort written verify blocks for read back",
1441 .def = "1",
c83f2df1 1442 .parent = "verify",
160b966d 1443 },
3f9f4e26 1444 {
a59e170d 1445 .name = "verify_interval",
e01b22b8 1446 .type = FIO_OPT_INT,
a59e170d 1447 .off1 = td_var_offset(verify_interval),
819a9680 1448 .minval = 2 * sizeof(struct verify_header),
a59e170d 1449 .help = "Store verify buffer header every N bytes",
afdf9352 1450 .parent = "verify",
3f9f4e26 1451 },
546a9142 1452 {
a59e170d 1453 .name = "verify_offset",
e01b22b8 1454 .type = FIO_OPT_INT,
a59e170d 1455 .help = "Offset verify header location by N bytes",
546a9142 1456 .def = "0",
5ec10eaa 1457 .cb = str_verify_offset_cb,
afdf9352 1458 .parent = "verify",
546a9142 1459 },
e28218f3
SL
1460 {
1461 .name = "verify_pattern",
0e92f873 1462 .type = FIO_OPT_STR,
e28218f3
SL
1463 .cb = str_verify_pattern_cb,
1464 .help = "Fill pattern for IO buffers",
1465 .parent = "verify",
1466 },
a12a3b4d
JA
1467 {
1468 .name = "verify_fatal",
68e1f29a 1469 .type = FIO_OPT_BOOL,
a12a3b4d
JA
1470 .off1 = td_var_offset(verify_fatal),
1471 .def = "0",
1472 .help = "Exit on a single verify failure, don't continue",
1473 .parent = "verify",
1474 },
b463e936
JA
1475 {
1476 .name = "verify_dump",
1477 .type = FIO_OPT_BOOL,
1478 .off1 = td_var_offset(verify_dump),
1479 .def = "1",
1480 .help = "Dump contents of good and bad blocks on failure",
1481 .parent = "verify",
1482 },
e8462bd8
JA
1483 {
1484 .name = "verify_async",
1485 .type = FIO_OPT_INT,
1486 .off1 = td_var_offset(verify_async),
1487 .def = "0",
1488 .help = "Number of async verifier threads to use",
1489 .parent = "verify",
1490 },
9e144189
JA
1491 {
1492 .name = "verify_backlog",
1493 .type = FIO_OPT_STR_VAL,
1494 .off1 = td_var_offset(verify_backlog),
1495 .help = "Verify after this number of blocks are written",
1496 .parent = "verify",
1497 },
1498 {
1499 .name = "verify_backlog_batch",
1500 .type = FIO_OPT_INT,
1501 .off1 = td_var_offset(verify_batch),
1502 .help = "Verify this number of IO blocks",
0d29de83 1503 .parent = "verify",
9e144189 1504 },
e8462bd8
JA
1505#ifdef FIO_HAVE_CPU_AFFINITY
1506 {
1507 .name = "verify_async_cpus",
1508 .type = FIO_OPT_STR,
1509 .cb = str_verify_cpus_allowed_cb,
1510 .help = "Set CPUs allowed for async verify threads",
1511 .parent = "verify_async",
1512 },
0d29de83
JA
1513#endif
1514#ifdef FIO_HAVE_TRIM
1515 {
1516 .name = "trim_percentage",
1517 .type = FIO_OPT_INT,
1518 .cb = str_verify_trim_cb,
1519 .maxval = 100,
1520 .help = "Number of verify blocks to discard/trim",
1521 .parent = "verify",
1522 .def = "0",
1523 },
1524 {
1525 .name = "trim_verify_zero",
1526 .type = FIO_OPT_INT,
1527 .help = "Verify that trim/discarded blocks are returned as zeroes",
1528 .off1 = td_var_offset(trim_zero),
1529 .parent = "trim_percentage",
1530 .def = "1",
1531 },
1532 {
1533 .name = "trim_backlog",
1534 .type = FIO_OPT_STR_VAL,
1535 .off1 = td_var_offset(trim_backlog),
1536 .help = "Trim after this number of blocks are written",
1537 .parent = "trim_percentage",
1538 },
1539 {
1540 .name = "trim_backlog_batch",
1541 .type = FIO_OPT_INT,
1542 .off1 = td_var_offset(trim_batch),
1543 .help = "Trim this number of IO blocks",
1544 .parent = "trim_percentage",
1545 },
e8462bd8 1546#endif
214e1eca
JA
1547 {
1548 .name = "write_iolog",
1549 .type = FIO_OPT_STR_STORE,
1550 .off1 = td_var_offset(write_iolog_file),
1551 .help = "Store IO pattern to file",
1552 },
1553 {
1554 .name = "read_iolog",
1555 .type = FIO_OPT_STR_STORE,
1556 .off1 = td_var_offset(read_iolog_file),
1557 .help = "Playback IO pattern from file",
1558 },
64bbb865
DN
1559 {
1560 .name = "replay_no_stall",
1561 .type = FIO_OPT_INT,
1562 .off1 = td_var_offset(no_stall),
1563 .def = "0",
87e7a972 1564 .parent = "read_iolog",
64bbb865
DN
1565 .help = "Playback IO pattern file as fast as possible without stalls",
1566 },
d1c46c04
DN
1567 {
1568 .name = "replay_redirect",
1569 .type = FIO_OPT_STR_STORE,
1570 .off1 = td_var_offset(replay_redirect),
1571 .parent = "read_iolog",
1572 .help = "Replay all I/O onto this device, regardless of trace device",
1573 },
214e1eca
JA
1574 {
1575 .name = "exec_prerun",
1576 .type = FIO_OPT_STR_STORE,
1577 .off1 = td_var_offset(exec_prerun),
1578 .help = "Execute this file prior to running job",
1579 },
1580 {
1581 .name = "exec_postrun",
1582 .type = FIO_OPT_STR_STORE,
1583 .off1 = td_var_offset(exec_postrun),
1584 .help = "Execute this file after running job",
1585 },
1586#ifdef FIO_HAVE_IOSCHED_SWITCH
1587 {
1588 .name = "ioscheduler",
1589 .type = FIO_OPT_STR_STORE,
1590 .off1 = td_var_offset(ioscheduler),
1591 .help = "Use this IO scheduler on the backing device",
1592 },
1593#endif
1594 {
1595 .name = "zonesize",
1596 .type = FIO_OPT_STR_VAL,
1597 .off1 = td_var_offset(zone_size),
1598 .help = "Give size of an IO zone",
1599 .def = "0",
1600 },
1601 {
1602 .name = "zoneskip",
1603 .type = FIO_OPT_STR_VAL,
1604 .off1 = td_var_offset(zone_skip),
1605 .help = "Space between IO zones",
1606 .def = "0",
1607 },
1608 {
1609 .name = "lockmem",
1610 .type = FIO_OPT_STR_VAL,
1611 .cb = str_lockmem_cb,
1612 .help = "Lock down this amount of memory",
1613 .def = "0",
1614 },
214e1eca
JA
1615 {
1616 .name = "rwmixread",
1617 .type = FIO_OPT_INT,
cb499fc4 1618 .cb = str_rwmix_read_cb,
214e1eca
JA
1619 .maxval = 100,
1620 .help = "Percentage of mixed workload that is reads",
1621 .def = "50",
1622 },
1623 {
1624 .name = "rwmixwrite",
1625 .type = FIO_OPT_INT,
cb499fc4 1626 .cb = str_rwmix_write_cb,
214e1eca
JA
1627 .maxval = 100,
1628 .help = "Percentage of mixed workload that is writes",
1629 .def = "50",
1630 },
afdf9352
JA
1631 {
1632 .name = "rwmixcycle",
15ca150e 1633 .type = FIO_OPT_DEPRECATED,
afdf9352 1634 },
214e1eca
JA
1635 {
1636 .name = "nice",
1637 .type = FIO_OPT_INT,
1638 .off1 = td_var_offset(nice),
1639 .help = "Set job CPU nice value",
1640 .minval = -19,
1641 .maxval = 20,
1642 .def = "0",
1643 },
1644#ifdef FIO_HAVE_IOPRIO
1645 {
1646 .name = "prio",
1647 .type = FIO_OPT_INT,
1648 .cb = str_prio_cb,
1649 .help = "Set job IO priority value",
1650 .minval = 0,
1651 .maxval = 7,
1652 },
1653 {
1654 .name = "prioclass",
1655 .type = FIO_OPT_INT,
1656 .cb = str_prioclass_cb,
1657 .help = "Set job IO priority class",
1658 .minval = 0,
1659 .maxval = 3,
1660 },
1661#endif
1662 {
1663 .name = "thinktime",
1664 .type = FIO_OPT_INT,
1665 .off1 = td_var_offset(thinktime),
1666 .help = "Idle time between IO buffers (usec)",
1667 .def = "0",
1668 },
1669 {
1670 .name = "thinktime_spin",
1671 .type = FIO_OPT_INT,
1672 .off1 = td_var_offset(thinktime_spin),
1673 .help = "Start think time by spinning this amount (usec)",
1674 .def = "0",
afdf9352 1675 .parent = "thinktime",
214e1eca
JA
1676 },
1677 {
1678 .name = "thinktime_blocks",
1679 .type = FIO_OPT_INT,
1680 .off1 = td_var_offset(thinktime_blocks),
1681 .help = "IO buffer period between 'thinktime'",
1682 .def = "1",
afdf9352 1683 .parent = "thinktime",
214e1eca
JA
1684 },
1685 {
1686 .name = "rate",
e01b22b8 1687 .type = FIO_OPT_INT,
581e7141
JA
1688 .off1 = td_var_offset(rate[0]),
1689 .off2 = td_var_offset(rate[1]),
214e1eca
JA
1690 .help = "Set bandwidth rate",
1691 },
1692 {
1693 .name = "ratemin",
e01b22b8 1694 .type = FIO_OPT_INT,
581e7141
JA
1695 .off1 = td_var_offset(ratemin[0]),
1696 .off2 = td_var_offset(ratemin[1]),
4e991c23 1697 .help = "Job must meet this rate or it will be shutdown",
afdf9352 1698 .parent = "rate",
4e991c23
JA
1699 },
1700 {
1701 .name = "rate_iops",
e01b22b8 1702 .type = FIO_OPT_INT,
581e7141
JA
1703 .off1 = td_var_offset(rate_iops[0]),
1704 .off2 = td_var_offset(rate_iops[1]),
4e991c23
JA
1705 .help = "Limit IO used to this number of IO operations/sec",
1706 },
1707 {
1708 .name = "rate_iops_min",
e01b22b8 1709 .type = FIO_OPT_INT,
581e7141
JA
1710 .off1 = td_var_offset(rate_iops_min[0]),
1711 .off2 = td_var_offset(rate_iops_min[1]),
03e20d68 1712 .help = "Job must meet this rate or it will be shut down",
afdf9352 1713 .parent = "rate_iops",
214e1eca
JA
1714 },
1715 {
1716 .name = "ratecycle",
1717 .type = FIO_OPT_INT,
1718 .off1 = td_var_offset(ratecycle),
1719 .help = "Window average for rate limits (msec)",
1720 .def = "1000",
afdf9352 1721 .parent = "rate",
214e1eca
JA
1722 },
1723 {
1724 .name = "invalidate",
1725 .type = FIO_OPT_BOOL,
1726 .off1 = td_var_offset(invalidate_cache),
1727 .help = "Invalidate buffer/page cache prior to running job",
1728 .def = "1",
1729 },
1730 {
1731 .name = "sync",
1732 .type = FIO_OPT_BOOL,
1733 .off1 = td_var_offset(sync_io),
1734 .help = "Use O_SYNC for buffered writes",
1735 .def = "0",
67a1000f 1736 .parent = "buffered",
214e1eca
JA
1737 },
1738 {
1739 .name = "bwavgtime",
1740 .type = FIO_OPT_INT,
1741 .off1 = td_var_offset(bw_avg_time),
5ec10eaa
JA
1742 .help = "Time window over which to calculate bandwidth"
1743 " (msec)",
214e1eca
JA
1744 .def = "500",
1745 },
1746 {
1747 .name = "create_serialize",
1748 .type = FIO_OPT_BOOL,
1749 .off1 = td_var_offset(create_serialize),
1750 .help = "Serialize creating of job files",
1751 .def = "1",
1752 },
1753 {
1754 .name = "create_fsync",
1755 .type = FIO_OPT_BOOL,
1756 .off1 = td_var_offset(create_fsync),
03e20d68 1757 .help = "fsync file after creation",
214e1eca
JA
1758 .def = "1",
1759 },
814452bd
JA
1760 {
1761 .name = "create_on_open",
1762 .type = FIO_OPT_BOOL,
1763 .off1 = td_var_offset(create_on_open),
1764 .help = "Create files when they are opened for IO",
1765 .def = "0",
1766 },
0b9d69ec 1767 {
afad68f7
ZY
1768 .name = "pre_read",
1769 .type = FIO_OPT_BOOL,
1770 .off1 = td_var_offset(pre_read),
03e20d68 1771 .help = "Pre-read files before starting official testing",
afad68f7
ZY
1772 .def = "0",
1773 },
214e1eca
JA
1774 {
1775 .name = "cpuload",
1776 .type = FIO_OPT_INT,
1777 .off1 = td_var_offset(cpuload),
1778 .help = "Use this percentage of CPU",
1779 },
1780 {
1781 .name = "cpuchunks",
1782 .type = FIO_OPT_INT,
1783 .off1 = td_var_offset(cpucycle),
1784 .help = "Length of the CPU burn cycles (usecs)",
1785 .def = "50000",
67a1000f 1786 .parent = "cpuload",
214e1eca
JA
1787 },
1788#ifdef FIO_HAVE_CPU_AFFINITY
1789 {
1790 .name = "cpumask",
1791 .type = FIO_OPT_INT,
1792 .cb = str_cpumask_cb,
1793 .help = "CPU affinity mask",
1794 },
d2e268b0
JA
1795 {
1796 .name = "cpus_allowed",
1797 .type = FIO_OPT_STR,
1798 .cb = str_cpus_allowed_cb,
1799 .help = "Set CPUs allowed",
1800 },
214e1eca
JA
1801#endif
1802 {
1803 .name = "end_fsync",
1804 .type = FIO_OPT_BOOL,
1805 .off1 = td_var_offset(end_fsync),
1806 .help = "Include fsync at the end of job",
1807 .def = "0",
1808 },
1809 {
1810 .name = "fsync_on_close",
1811 .type = FIO_OPT_BOOL,
1812 .off1 = td_var_offset(fsync_on_close),
1813 .help = "fsync files on close",
1814 .def = "0",
1815 },
1816 {
1817 .name = "unlink",
1818 .type = FIO_OPT_BOOL,
1819 .off1 = td_var_offset(unlink),
1820 .help = "Unlink created files after job has completed",
1821 .def = "0",
1822 },
1823 {
1824 .name = "exitall",
1825 .type = FIO_OPT_STR_SET,
1826 .cb = str_exitall_cb,
1827 .help = "Terminate all jobs when one exits",
1828 },
1829 {
1830 .name = "stonewall",
1831 .type = FIO_OPT_STR_SET,
1832 .off1 = td_var_offset(stonewall),
1833 .help = "Insert a hard barrier between this job and previous",
1834 },
b3d62a75
JA
1835 {
1836 .name = "new_group",
1837 .type = FIO_OPT_STR_SET,
1838 .off1 = td_var_offset(new_group),
1839 .help = "Mark the start of a new group (for reporting)",
1840 },
214e1eca
JA
1841 {
1842 .name = "thread",
1843 .type = FIO_OPT_STR_SET,
1844 .off1 = td_var_offset(use_thread),
1845 .help = "Use threads instead of forks",
1846 },
1847 {
1848 .name = "write_bw_log",
e3cedca7 1849 .type = FIO_OPT_STR,
214e1eca 1850 .off1 = td_var_offset(write_bw_log),
e3cedca7 1851 .cb = str_write_bw_log_cb,
214e1eca
JA
1852 .help = "Write log of bandwidth during run",
1853 },
1854 {
1855 .name = "write_lat_log",
e3cedca7 1856 .type = FIO_OPT_STR,
214e1eca 1857 .off1 = td_var_offset(write_lat_log),
e3cedca7 1858 .cb = str_write_lat_log_cb,
214e1eca
JA
1859 .help = "Write log of latency during run",
1860 },
1861 {
1862 .name = "hugepage-size",
e01b22b8 1863 .type = FIO_OPT_INT,
214e1eca
JA
1864 .off1 = td_var_offset(hugepage_size),
1865 .help = "When using hugepages, specify size of each page",
1866 .def = __stringify(FIO_HUGE_PAGE),
1867 },
1868 {
1869 .name = "group_reporting",
1870 .type = FIO_OPT_STR_SET,
1871 .off1 = td_var_offset(group_reporting),
1872 .help = "Do reporting on a per-group basis",
1873 },
e9459e5a
JA
1874 {
1875 .name = "zero_buffers",
1876 .type = FIO_OPT_STR_SET,
1877 .off1 = td_var_offset(zero_buffers),
1878 .help = "Init IO buffers to all zeroes",
1879 },
5973cafb
JA
1880 {
1881 .name = "refill_buffers",
1882 .type = FIO_OPT_STR_SET,
1883 .off1 = td_var_offset(refill_buffers),
1884 .help = "Refill IO buffers on every IO submit",
1885 },
0a839f30
JA
1886#ifdef FIO_HAVE_DISK_UTIL
1887 {
1888 .name = "disk_util",
1889 .type = FIO_OPT_BOOL,
1890 .off1 = td_var_offset(do_disk_util),
f66ab3c8 1891 .help = "Log disk utilization statistics",
0a839f30
JA
1892 .def = "1",
1893 },
1894#endif
993bf48b
JA
1895 {
1896 .name = "gtod_reduce",
1897 .type = FIO_OPT_BOOL,
1898 .help = "Greatly reduce number of gettimeofday() calls",
1899 .cb = str_gtod_reduce_cb,
1900 .def = "0",
1901 },
02af0988
JA
1902 {
1903 .name = "disable_lat",
1904 .type = FIO_OPT_BOOL,
1905 .off1 = td_var_offset(disable_lat),
1906 .help = "Disable latency numbers",
1907 .parent = "gtod_reduce",
1908 .def = "0",
1909 },
9520ebb9
JA
1910 {
1911 .name = "disable_clat",
1912 .type = FIO_OPT_BOOL,
1913 .off1 = td_var_offset(disable_clat),
1914 .help = "Disable completion latency numbers",
993bf48b 1915 .parent = "gtod_reduce",
9520ebb9
JA
1916 .def = "0",
1917 },
1918 {
1919 .name = "disable_slat",
1920 .type = FIO_OPT_BOOL,
1921 .off1 = td_var_offset(disable_slat),
03e20d68 1922 .help = "Disable submission latency numbers",
993bf48b 1923 .parent = "gtod_reduce",
9520ebb9
JA
1924 .def = "0",
1925 },
1926 {
1927 .name = "disable_bw_measurement",
1928 .type = FIO_OPT_BOOL,
1929 .off1 = td_var_offset(disable_bw),
1930 .help = "Disable bandwidth logging",
993bf48b 1931 .parent = "gtod_reduce",
9520ebb9
JA
1932 .def = "0",
1933 },
be4ecfdf
JA
1934 {
1935 .name = "gtod_cpu",
1936 .type = FIO_OPT_INT,
1937 .cb = str_gtod_cpu_cb,
03e20d68 1938 .help = "Set up dedicated gettimeofday() thread on this CPU",
29d43ff9 1939 .verify = gtod_cpu_verify,
be4ecfdf 1940 },
f2bba182
RR
1941 {
1942 .name = "continue_on_error",
1943 .type = FIO_OPT_BOOL,
1944 .off1 = td_var_offset(continue_on_error),
03e20d68 1945 .help = "Continue on non-fatal errors during IO",
f2bba182
RR
1946 .def = "0",
1947 },
9ac8a797
JA
1948 {
1949 .name = "profile",
79d16311 1950 .type = FIO_OPT_STR_STORE,
9ac8a797 1951 .off1 = td_var_offset(profile),
9ac8a797
JA
1952 .help = "Select a specific builtin performance test",
1953 },
a696fa2a
JA
1954 {
1955 .name = "cgroup",
1956 .type = FIO_OPT_STR_STORE,
1957 .off1 = td_var_offset(cgroup),
1958 .help = "Add job to cgroup of this name",
1959 },
1960 {
1961 .name = "cgroup_weight",
1962 .type = FIO_OPT_INT,
1963 .off1 = td_var_offset(cgroup_weight),
1964 .help = "Use given weight for cgroup",
1965 .minval = 100,
1966 .maxval = 1000,
a696fa2a 1967 },
7de87099
VG
1968 {
1969 .name = "cgroup_nodelete",
1970 .type = FIO_OPT_BOOL,
1971 .off1 = td_var_offset(cgroup_nodelete),
1972 .help = "Do not delete cgroups after job completion",
1973 .def = "0",
1974 },
e0b0d892
JA
1975 {
1976 .name = "uid",
1977 .type = FIO_OPT_INT,
1978 .off1 = td_var_offset(uid),
1979 .help = "Run job with this user ID",
1980 },
1981 {
1982 .name = "gid",
1983 .type = FIO_OPT_INT,
1984 .off1 = td_var_offset(gid),
1985 .help = "Run job with this group ID",
1986 },
214e1eca
JA
1987 {
1988 .name = NULL,
1989 },
1990};
1991
17af15d4
JA
1992static void add_to_lopt(struct option *lopt, struct fio_option *o,
1993 const char *name)
9f81736c 1994{
17af15d4 1995 lopt->name = (char *) name;
9f81736c
JA
1996 lopt->val = FIO_GETOPT_JOB;
1997 if (o->type == FIO_OPT_STR_SET)
1998 lopt->has_arg = no_argument;
1999 else
2000 lopt->has_arg = required_argument;
2001}
2002
214e1eca
JA
2003void fio_options_dup_and_init(struct option *long_options)
2004{
2005 struct fio_option *o;
2006 unsigned int i;
2007
2008 options_init(options);
2009
2010 i = 0;
2011 while (long_options[i].name)
2012 i++;
2013
2014 o = &options[0];
2015 while (o->name) {
17af15d4
JA
2016 add_to_lopt(&long_options[i], o, o->name);
2017 if (o->alias) {
2018 i++;
2019 add_to_lopt(&long_options[i], o, o->alias);
2020 }
214e1eca
JA
2021
2022 i++;
2023 o++;
2024 assert(i < FIO_NR_OPTIONS);
2025 }
2026}
2027
74929ac2
JA
2028struct fio_keyword {
2029 const char *word;
2030 const char *desc;
2031 char *replace;
2032};
2033
2034static struct fio_keyword fio_keywords[] = {
2035 {
2036 .word = "$pagesize",
2037 .desc = "Page size in the system",
2038 },
2039 {
2040 .word = "$mb_memory",
2041 .desc = "Megabytes of memory online",
2042 },
2043 {
2044 .word = "$ncpus",
2045 .desc = "Number of CPUs online in the system",
2046 },
2047 {
2048 .word = NULL,
2049 },
2050};
2051
2052void fio_keywords_init(void)
2053{
3b2e1464 2054 unsigned long long mb_memory;
74929ac2
JA
2055 char buf[128];
2056 long l;
2057
2058 sprintf(buf, "%lu", page_size);
2059 fio_keywords[0].replace = strdup(buf);
2060
3b2e1464
JA
2061 mb_memory = os_phys_mem() / page_size;
2062 sprintf(buf, "%llu", mb_memory);
74929ac2
JA
2063 fio_keywords[1].replace = strdup(buf);
2064
2065 l = sysconf(_SC_NPROCESSORS_ONLN);
2066 sprintf(buf, "%lu", l);
2067 fio_keywords[2].replace = strdup(buf);
2068}
2069
892a6ffc
JA
2070#define BC_APP "bc"
2071
2072static char *bc_calc(char *str)
2073{
2074 char *buf, *tmp, opt[80];
2075 FILE *f;
2076 int ret;
2077
2078 /*
2079 * No math, just return string
2080 */
2081 if (!strchr(str, '+') && !strchr(str, '-') && !strchr(str, '*') &&
2082 !strchr(str, '/'))
2083 return str;
2084
2085 /*
2086 * Split option from value, we only need to calculate the value
2087 */
2088 tmp = strchr(str, '=');
2089 if (!tmp)
2090 return str;
2091
2092 tmp++;
9ac8a797 2093 memset(opt, 0, sizeof(opt));
892a6ffc
JA
2094 strncpy(opt, str, tmp - str);
2095
2096 buf = malloc(128);
2097
2098 sprintf(buf, "which %s > /dev/null", BC_APP);
2099 if (system(buf)) {
2100 log_err("fio: bc is needed for performing math\n");
2101 free(buf);
2102 return NULL;
2103 }
2104
2105 sprintf(buf, "echo %s | %s", tmp, BC_APP);
2106 f = popen(buf, "r");
2107 if (!f) {
2108 free(buf);
2109 return NULL;
2110 }
2111
2112 ret = fread(buf, 1, 128, f);
2113 if (ret <= 0) {
2114 free(buf);
2115 return NULL;
2116 }
2117
2118 buf[ret - 1] = '\0';
2119 strcat(opt, buf);
2120 strcpy(buf, opt);
2121 pclose(f);
2122 free(str);
2123 return buf;
2124}
2125
74929ac2
JA
2126/*
2127 * Look for reserved variable names and replace them with real values
2128 */
2129static char *fio_keyword_replace(char *opt)
2130{
2131 char *s;
2132 int i;
2133
2134 for (i = 0; fio_keywords[i].word != NULL; i++) {
2135 struct fio_keyword *kw = &fio_keywords[i];
2136
2137 while ((s = strstr(opt, kw->word)) != NULL) {
2138 char *new = malloc(strlen(opt) + 1);
2139 char *o_org = opt;
2140 int olen = s - opt;
2141 int len;
2142
2143 /*
2144 * Copy part of the string before the keyword and
2145 * sprintf() the replacement after it.
2146 */
2147 memcpy(new, opt, olen);
2148 len = sprintf(new + olen, "%s", kw->replace);
2149
2150 /*
2151 * If there's more in the original string, copy that
2152 * in too
2153 */
2154 opt += strlen(kw->word) + olen;
2155 if (strlen(opt))
2156 memcpy(new + olen + len, opt, opt - o_org - 1);
2157
2158 /*
2159 * replace opt and free the old opt
2160 */
2161 opt = new;
9ac8a797 2162 //free(o_org);
7a958bd5
JA
2163
2164 /*
2165 * Check for potential math and invoke bc, if possible
2166 */
2167 opt = bc_calc(opt);
74929ac2
JA
2168 }
2169 }
2170
7a958bd5 2171 return opt;
74929ac2
JA
2172}
2173
3b8b7135 2174int fio_options_parse(struct thread_data *td, char **opts, int num_opts)
214e1eca 2175{
3b8b7135
JA
2176 int i, ret;
2177
2178 sort_options(opts, options, num_opts);
2179
74929ac2
JA
2180 for (ret = 0, i = 0; i < num_opts; i++) {
2181 opts[i] = fio_keyword_replace(opts[i]);
07b3232d 2182 ret |= parse_option(opts[i], options, td);
74929ac2 2183 }
3b8b7135
JA
2184
2185 return ret;
214e1eca
JA
2186}
2187
2188int fio_cmd_option_parse(struct thread_data *td, const char *opt, char *val)
2189{
07b3232d 2190 return parse_cmd_option(opt, val, options, td);
214e1eca
JA
2191}
2192
2193void fio_fill_default_options(struct thread_data *td)
2194{
2195 fill_default_options(td, options);
2196}
2197
2198int fio_show_option_help(const char *opt)
2199{
07b3232d 2200 return show_cmd_help(options, opt);
214e1eca 2201}
d23bb327
JA
2202
2203static void __options_mem(struct thread_data *td, int alloc)
2204{
2205 struct thread_options *o = &td->o;
2206 struct fio_option *opt;
2207 char **ptr;
2208 int i;
2209
2210 for (i = 0, opt = &options[0]; opt->name; i++, opt = &options[i]) {
2211 if (opt->type != FIO_OPT_STR_STORE)
2212 continue;
2213
2214 ptr = (void *) o + opt->off1;
2215 if (*ptr) {
2216 if (alloc)
2217 *ptr = strdup(*ptr);
2218 else {
2219 free(*ptr);
2220 *ptr = NULL;
2221 }
2222 }
2223 }
2224}
2225
2226/*
2227 * dupe FIO_OPT_STR_STORE options
2228 */
2229void options_mem_dupe(struct thread_data *td)
2230{
2231 __options_mem(td, 1);
2232}
2233
22d66213 2234void options_mem_free(struct thread_data fio_unused *td)
d23bb327 2235{
22d66213 2236#if 0
d23bb327 2237 __options_mem(td, 0);
22d66213 2238#endif
d23bb327 2239}
d6978a32
JA
2240
2241unsigned int fio_get_kb_base(void *data)
2242{
2243 struct thread_data *td = data;
2244 unsigned int kb_base = 0;
2245
2246 if (td)
2247 kb_base = td->o.kb_base;
2248 if (!kb_base)
2249 kb_base = 1024;
2250
2251 return kb_base;
2252}
9f988e2e 2253
07b3232d 2254int add_option(struct fio_option *o)
9f988e2e 2255{
07b3232d
JA
2256 struct fio_option *__o;
2257 int opt_index = 0;
2258
2259 __o = options;
2260 while (__o->name) {
2261 opt_index++;
2262 __o++;
2263 }
2264
2265 memcpy(&options[opt_index], o, sizeof(*o));
2266 return 0;
9f988e2e 2267}
e2de69da 2268
07b3232d 2269void invalidate_profile_options(const char *prof_name)
e2de69da 2270{
07b3232d 2271 struct fio_option *o;
e2de69da 2272
07b3232d
JA
2273 o = options;
2274 while (o->name) {
2275 if (o->prof_name && !strcmp(o->prof_name, prof_name)) {
2276 o->type = FIO_OPT_INVALID;
2277 o->prof_name = NULL;
2278 }
2279 o++;
e2de69da
JA
2280 }
2281}
f5b6bb85
JA
2282
2283void add_opt_posval(const char *optname, const char *ival, const char *help)
2284{
2285 struct fio_option *o;
2286 unsigned int i;
2287
2288 o = find_option(options, optname);
2289 if (!o)
2290 return;
2291
2292 for (i = 0; i < PARSE_MAX_VP; i++) {
2293 if (o->posval[i].ival)
2294 continue;
2295
2296 o->posval[i].ival = ival;
2297 o->posval[i].help = help;
2298 break;
2299 }
2300}
2301
2302void del_opt_posval(const char *optname, const char *ival)
2303{
2304 struct fio_option *o;
2305 unsigned int i;
2306
2307 o = find_option(options, optname);
2308 if (!o)
2309 return;
2310
2311 for (i = 0; i < PARSE_MAX_VP; i++) {
2312 if (!o->posval[i].ival)
2313 continue;
2314 if (strcmp(o->posval[i].ival, ival))
2315 continue;
2316
2317 o->posval[i].ival = NULL;
2318 o->posval[i].help = NULL;
2319 }
2320}