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