Exit with error on signal
[fio.git] / parse.c
... / ...
CommitLineData
1/*
2 * This file contains the ini and command liner parser main.
3 */
4#include <stdio.h>
5#include <stdlib.h>
6#include <unistd.h>
7#include <ctype.h>
8#include <string.h>
9#include <errno.h>
10#include <limits.h>
11#include <stdlib.h>
12
13#include "parse.h"
14#include "debug.h"
15#include "options.h"
16
17static struct fio_option *fio_options;
18extern unsigned int fio_get_kb_base(void *);
19
20static int vp_cmp(const void *p1, const void *p2)
21{
22 const struct value_pair *vp1 = p1;
23 const struct value_pair *vp2 = p2;
24
25 return strlen(vp2->ival) - strlen(vp1->ival);
26}
27
28static void posval_sort(struct fio_option *o, struct value_pair *vpmap)
29{
30 const struct value_pair *vp;
31 int entries;
32
33 memset(vpmap, 0, PARSE_MAX_VP * sizeof(struct value_pair));
34
35 for (entries = 0; entries < PARSE_MAX_VP; entries++) {
36 vp = &o->posval[entries];
37 if (!vp->ival || vp->ival[0] == '\0')
38 break;
39
40 memcpy(&vpmap[entries], vp, sizeof(*vp));
41 }
42
43 qsort(vpmap, entries, sizeof(struct value_pair), vp_cmp);
44}
45
46static void show_option_range(struct fio_option *o, FILE *out)
47{
48 if (!o->minval && !o->maxval)
49 return;
50
51 fprintf(out, "%20s: min=%d", "range", o->minval);
52 if (o->maxval)
53 fprintf(out, ", max=%d", o->maxval);
54 fprintf(out, "\n");
55}
56
57static void show_option_values(struct fio_option *o)
58{
59 int i;
60
61 for (i = 0; i < PARSE_MAX_VP; i++) {
62 const struct value_pair *vp = &o->posval[i];
63
64 if (!vp->ival)
65 continue;
66
67 printf("%20s: %-10s", i == 0 ? "valid values" : "", vp->ival);
68 if (vp->help)
69 printf(" %s", vp->help);
70 printf("\n");
71 }
72
73 if (i)
74 printf("\n");
75}
76
77static void show_option_help(struct fio_option *o, FILE *out)
78{
79 const char *typehelp[] = {
80 "invalid",
81 "string (opt=bla)",
82 "string (opt=bla)",
83 "string with possible k/m/g postfix (opt=4k)",
84 "string with time postfix (opt=10s)",
85 "string (opt=bla)",
86 "string with dual range (opt=1k-4k,4k-8k)",
87 "integer value (opt=100)",
88 "boolean value (opt=1)",
89 "no argument (opt)",
90 "deprecated",
91 };
92
93 if (o->alias)
94 fprintf(out, "%20s: %s\n", "alias", o->alias);
95
96 fprintf(out, "%20s: %s\n", "type", typehelp[o->type]);
97 fprintf(out, "%20s: %s\n", "default", o->def ? o->def : "no default");
98 if (o->prof_name)
99 fprintf(out, "%20s: only for profile '%s'\n", "valid", o->prof_name);
100 show_option_range(o, stdout);
101 show_option_values(o);
102}
103
104static unsigned long get_mult_time(char c)
105{
106 switch (c) {
107 case 'm':
108 case 'M':
109 return 60;
110 case 'h':
111 case 'H':
112 return 60 * 60;
113 case 'd':
114 case 'D':
115 return 24 * 60 * 60;
116 default:
117 return 1;
118 }
119}
120
121static unsigned long long __get_mult_bytes(const char *p, void *data)
122{
123 unsigned int kb_base = fio_get_kb_base(data);
124 unsigned long long ret = 1;
125 unsigned int i, pow = 0, mult = kb_base;
126 char *c;
127
128 if (!p)
129 return 1;
130
131 c = strdup(p);
132
133 for (i = 0; i < strlen(c); i++)
134 c[i] = tolower(c[i]);
135
136 if (!strcmp("pib", c)) {
137 pow = 5;
138 mult = 1000;
139 } else if (!strcmp("tib", c)) {
140 pow = 4;
141 mult = 1000;
142 } else if (!strcmp("gib", c)) {
143 pow = 3;
144 mult = 1000;
145 } else if (!strcmp("mib", c)) {
146 pow = 2;
147 mult = 1000;
148 } else if (!strcmp("kib", c)) {
149 pow = 1;
150 mult = 1000;
151 } else if (!strcmp("p", c) || !strcmp("pb", c))
152 pow = 5;
153 else if (!strcmp("t", c) || !strcmp("tb", c))
154 pow = 4;
155 else if (!strcmp("g", c) || !strcmp("gb", c))
156 pow = 3;
157 else if (!strcmp("m", c) || !strcmp("mb", c))
158 pow = 2;
159 else if (!strcmp("k", c) || !strcmp("kb", c))
160 pow = 1;
161
162 while (pow--)
163 ret *= (unsigned long long) mult;
164
165 free(c);
166 return ret;
167}
168
169static unsigned long long get_mult_bytes(const char *str, int len, void *data)
170{
171 const char *p = str;
172
173 if (len < 2)
174 return __get_mult_bytes(str, data);
175
176 /*
177 * Go forward until we hit a non-digit
178 */
179 while ((p - str) <= len) {
180 if (!isdigit(*p))
181 break;
182 p++;
183 }
184
185 if (!isalpha(*p))
186 p = NULL;
187
188 return __get_mult_bytes(p, data);
189}
190
191/*
192 * convert string into decimal value, noting any size suffix
193 */
194int str_to_decimal(const char *str, long long *val, int kilo, void *data)
195{
196 int len, base;
197
198 len = strlen(str);
199 if (!len)
200 return 1;
201
202 if (strstr(str, "0x") || strstr(str, "0X"))
203 base = 16;
204 else
205 base = 10;
206
207 *val = strtoll(str, NULL, base);
208 if (*val == LONG_MAX && errno == ERANGE)
209 return 1;
210
211 if (kilo)
212 *val *= get_mult_bytes(str, len, data);
213 else
214 *val *= get_mult_time(str[len - 1]);
215
216 return 0;
217}
218
219static int check_str_bytes(const char *p, long long *val, void *data)
220{
221 return str_to_decimal(p, val, 1, data);
222}
223
224static int check_str_time(const char *p, long long *val)
225{
226 return str_to_decimal(p, val, 0, NULL);
227}
228
229void strip_blank_front(char **p)
230{
231 char *s = *p;
232
233 while (isspace(*s))
234 s++;
235
236 *p = s;
237}
238
239void strip_blank_end(char *p)
240{
241 char *start = p, *s;
242
243 s = strchr(p, ';');
244 if (s)
245 *s = '\0';
246 s = strchr(p, '#');
247 if (s)
248 *s = '\0';
249 if (s)
250 p = s;
251
252 s = p + strlen(p);
253 while ((isspace(*s) || iscntrl(*s)) && (s > start))
254 s--;
255
256 *(s + 1) = '\0';
257}
258
259static int check_range_bytes(const char *str, long *val, void *data)
260{
261 long long __val;
262
263 if (!str_to_decimal(str, &__val, 1, data)) {
264 *val = __val;
265 return 0;
266 }
267
268 return 1;
269}
270
271static int check_int(const char *p, int *val)
272{
273 if (!strlen(p))
274 return 1;
275 if (strstr(p, "0x") || strstr(p, "0X")) {
276 if (sscanf(p, "%x", val) == 1)
277 return 0;
278 } else {
279 if (sscanf(p, "%u", val) == 1)
280 return 0;
281 }
282
283 return 1;
284}
285
286static int opt_len(const char *str)
287{
288 char *postfix;
289
290 postfix = strchr(str, ':');
291 if (!postfix)
292 return strlen(str);
293
294 return (int)(postfix - str);
295}
296
297#define val_store(ptr, val, off, or, data) \
298 do { \
299 ptr = td_var((data), (off)); \
300 if ((or)) \
301 *ptr |= (val); \
302 else \
303 *ptr = (val); \
304 } while (0)
305
306static int __handle_option(struct fio_option *o, const char *ptr, void *data,
307 int first, int more)
308{
309 int il, *ilp;
310 long long ull, *ullp;
311 long ul1, ul2;
312 char **cp;
313 int ret = 0;
314
315 dprint(FD_PARSE, "__handle_option=%s, type=%d, ptr=%s\n", o->name,
316 o->type, ptr);
317
318 if (!ptr && o->type != FIO_OPT_STR_SET && o->type != FIO_OPT_STR) {
319 fprintf(stderr, "Option %s requires an argument\n", o->name);
320 return 1;
321 }
322
323 switch (o->type) {
324 case FIO_OPT_STR:
325 case FIO_OPT_STR_MULTI: {
326 fio_opt_str_fn *fn = o->cb;
327 const struct value_pair *vp;
328 struct value_pair posval[PARSE_MAX_VP];
329 int i, all_skipped = 1;
330
331 posval_sort(o, posval);
332
333 ret = 1;
334 for (i = 0; i < PARSE_MAX_VP; i++) {
335 vp = &posval[i];
336 if (!vp->ival || vp->ival[0] == '\0')
337 continue;
338 all_skipped = 0;
339 if (!strncmp(vp->ival, ptr, opt_len(ptr))) {
340 ret = 0;
341 if (o->roff1) {
342 if (vp->or)
343 *(unsigned int *) o->roff1 |= vp->oval;
344 else
345 *(unsigned int *) o->roff1 = vp->oval;
346 } else {
347 if (!o->off1)
348 continue;
349 val_store(ilp, vp->oval, o->off1, vp->or, data);
350 }
351 continue;
352 }
353 }
354
355 if (ret && !all_skipped)
356 show_option_values(o);
357 else if (fn)
358 ret = fn(data, ptr);
359 break;
360 }
361 case FIO_OPT_STR_VAL_TIME: {
362 fio_opt_str_val_fn *fn;
363
364 ret = check_str_time(ptr, &ull);
365 case FIO_OPT_INT:
366 case FIO_OPT_STR_VAL:
367
368 ret = check_str_bytes(ptr, &ull, data);
369 if (ret)
370 break;
371
372 if (o->maxval && ull > o->maxval) {
373 fprintf(stderr, "max value out of range: %lld"
374 " (%d max)\n", ull, o->maxval);
375 return 1;
376 }
377 if (o->minval && ull < o->minval) {
378 fprintf(stderr, "min value out of range: %lld"
379 " (%d min)\n", ull, o->minval);
380 return 1;
381 }
382
383 fn = o->cb;
384 if (fn)
385 ret = fn(data, &ull);
386 else {
387 if (o->type == FIO_OPT_INT) {
388 if (first) {
389 if (o->roff1)
390 *(unsigned int *) o->roff1 = ull;
391 else
392 val_store(ilp, ull, o->off1, 0, data);
393 }
394 if (!more) {
395 if (o->roff2)
396 *(unsigned int *) o->roff2 = ull;
397 else if (o->off2)
398 val_store(ilp, ull, o->off2, 0, data);
399 }
400 } else {
401 if (first) {
402 if (o->roff1)
403 *(unsigned long long *) o->roff1 = ull;
404 else
405 val_store(ullp, ull, o->off1, 0, data);
406 }
407 if (!more) {
408 if (o->roff2)
409 *(unsigned long long *) o->roff2 = ull;
410 else if (o->off2)
411 val_store(ullp, ull, o->off2, 0, data);
412 }
413 }
414 }
415 break;
416 }
417 case FIO_OPT_STR_STORE: {
418 fio_opt_str_fn *fn = o->cb;
419
420 if (o->roff1)
421 cp = (char **) o->roff1;
422 else
423 cp = td_var(data, o->off1);
424
425 *cp = strdup(ptr);
426 if (fn) {
427 ret = fn(data, ptr);
428 if (ret) {
429 free(*cp);
430 *cp = NULL;
431 }
432 }
433 break;
434 }
435 case FIO_OPT_RANGE: {
436 char tmp[128];
437 char *p1, *p2;
438
439 strncpy(tmp, ptr, sizeof(tmp) - 1);
440
441 p1 = strchr(tmp, '-');
442 if (!p1) {
443 p1 = strchr(tmp, ':');
444 if (!p1) {
445 ret = 1;
446 break;
447 }
448 }
449
450 p2 = p1 + 1;
451 *p1 = '\0';
452 p1 = tmp;
453
454 ret = 1;
455 if (!check_range_bytes(p1, &ul1, data) &&
456 !check_range_bytes(p2, &ul2, data)) {
457 ret = 0;
458 if (ul1 > ul2) {
459 unsigned long foo = ul1;
460
461 ul1 = ul2;
462 ul2 = foo;
463 }
464
465 if (first) {
466 if (o->roff1)
467 *(unsigned int *) o->roff1 = ul1;
468 else
469 val_store(ilp, ul1, o->off1, 0, data);
470 if (o->roff2)
471 *(unsigned int *) o->roff2 = ul2;
472 else
473 val_store(ilp, ul2, o->off2, 0, data);
474 }
475 if (o->roff3 && o->roff4) {
476 *(unsigned int *) o->roff3 = ul1;
477 *(unsigned int *) o->roff4 = ul2;
478 } else if (o->off3 && o->off4) {
479 val_store(ilp, ul1, o->off3, 0, data);
480 val_store(ilp, ul2, o->off4, 0, data);
481 }
482 }
483
484 break;
485 }
486 case FIO_OPT_BOOL: {
487 fio_opt_int_fn *fn = o->cb;
488
489 ret = check_int(ptr, &il);
490 if (ret)
491 break;
492
493 if (o->maxval && il > (int) o->maxval) {
494 fprintf(stderr, "max value out of range: %d (%d max)\n",
495 il, o->maxval);
496 return 1;
497 }
498 if (o->minval && il < o->minval) {
499 fprintf(stderr, "min value out of range: %d (%d min)\n",
500 il, o->minval);
501 return 1;
502 }
503
504 if (o->neg)
505 il = !il;
506
507 if (fn)
508 ret = fn(data, &il);
509 else {
510 if (first) {
511 if (o->roff1)
512 *(unsigned int *)o->roff1 = il;
513 else
514 val_store(ilp, il, o->off1, 0, data);
515 }
516 if (!more) {
517 if (o->roff2)
518 *(unsigned int *) o->roff2 = il;
519 else if (o->off2)
520 val_store(ilp, il, o->off2, 0, data);
521 }
522 }
523 break;
524 }
525 case FIO_OPT_STR_SET: {
526 fio_opt_str_set_fn *fn = o->cb;
527
528 if (fn)
529 ret = fn(data);
530 else {
531 if (first) {
532 if (o->roff1)
533 *(unsigned int *) o->roff1 = 1;
534 else
535 val_store(ilp, 1, o->off1, 0, data);
536 }
537 if (!more) {
538 if (o->roff2)
539 *(unsigned int *) o->roff2 = 1;
540 else if (o->off2)
541 val_store(ilp, 1, o->off2, 0, data);
542 }
543 }
544 break;
545 }
546 case FIO_OPT_DEPRECATED:
547 fprintf(stdout, "Option %s is deprecated\n", o->name);
548 break;
549 default:
550 fprintf(stderr, "Bad option type %u\n", o->type);
551 ret = 1;
552 }
553
554 if (ret)
555 return ret;
556
557 if (o->verify) {
558 ret = o->verify(o, data);
559 if (ret) {
560 fprintf(stderr,"Correct format for offending option\n");
561 fprintf(stderr, "%20s: %s\n", o->name, o->help);
562 show_option_help(o, stderr);
563 }
564 }
565
566 return ret;
567}
568
569static int handle_option(struct fio_option *o, const char *__ptr, void *data)
570{
571 char *o_ptr, *ptr, *ptr2;
572 int ret, done;
573
574 dprint(FD_PARSE, "handle_option=%s, ptr=%s\n", o->name, __ptr);
575
576 o_ptr = ptr = NULL;
577 if (__ptr)
578 o_ptr = ptr = strdup(__ptr);
579
580 /*
581 * See if we have another set of parameters, hidden after a comma.
582 * Do this before parsing this round, to check if we should
583 * copy set 1 options to set 2.
584 */
585 done = 0;
586 ret = 1;
587 do {
588 int __ret;
589
590 ptr2 = NULL;
591 if (ptr &&
592 (o->type != FIO_OPT_STR_STORE) &&
593 (o->type != FIO_OPT_STR)) {
594 ptr2 = strchr(ptr, ',');
595 if (ptr2 && *(ptr2 + 1) == '\0')
596 *ptr2 = '\0';
597 if (o->type != FIO_OPT_STR_MULTI) {
598 if (!ptr2)
599 ptr2 = strchr(ptr, ':');
600 if (!ptr2)
601 ptr2 = strchr(ptr, '-');
602 }
603 }
604
605 /*
606 * Don't return early if parsing the first option fails - if
607 * we are doing multiple arguments, we can allow the first one
608 * being empty.
609 */
610 __ret = __handle_option(o, ptr, data, !done, !!ptr2);
611 if (ret)
612 ret = __ret;
613
614 if (!ptr2)
615 break;
616
617 ptr = ptr2 + 1;
618 done++;
619 } while (1);
620
621 if (o_ptr)
622 free(o_ptr);
623 return ret;
624}
625
626static struct fio_option *get_option(const char *opt,
627 struct fio_option *options, char **post)
628{
629 struct fio_option *o;
630 char *ret;
631
632 ret = strchr(opt, '=');
633 if (ret) {
634 *post = ret;
635 *ret = '\0';
636 ret = (char *) opt;
637 (*post)++;
638 strip_blank_end(ret);
639 o = find_option(options, ret);
640 } else {
641 o = find_option(options, opt);
642 *post = NULL;
643 }
644
645 return o;
646}
647
648static int opt_cmp(const void *p1, const void *p2)
649{
650 struct fio_option *o1, *o2;
651 char *s1, *s2, *foo;
652 int prio1, prio2;
653
654 s1 = strdup(*((char **) p1));
655 s2 = strdup(*((char **) p2));
656
657 o1 = get_option(s1, fio_options, &foo);
658 o2 = get_option(s2, fio_options, &foo);
659
660 prio1 = prio2 = 0;
661 if (o1)
662 prio1 = o1->prio;
663 if (o2)
664 prio2 = o2->prio;
665
666 free(s1);
667 free(s2);
668 return prio2 - prio1;
669}
670
671void sort_options(char **opts, struct fio_option *options, int num_opts)
672{
673 fio_options = options;
674 qsort(opts, num_opts, sizeof(char *), opt_cmp);
675 fio_options = NULL;
676}
677
678int parse_cmd_option(const char *opt, const char *val,
679 struct fio_option *options, void *data)
680{
681 struct fio_option *o;
682
683 o = find_option(options, opt);
684 if (!o) {
685 fprintf(stderr, "Bad option <%s>\n", opt);
686 return 1;
687 }
688
689 if (!handle_option(o, val, data))
690 return 0;
691
692 fprintf(stderr, "fio: failed parsing %s=%s\n", opt, val);
693 return 1;
694}
695
696/*
697 * Return a copy of the input string with substrings of the form ${VARNAME}
698 * substituted with the value of the environment variable VARNAME. The
699 * substitution always occurs, even if VARNAME is empty or the corresponding
700 * environment variable undefined.
701 */
702static char *option_dup_subs(const char *opt)
703{
704 char out[OPT_LEN_MAX+1];
705 char in[OPT_LEN_MAX+1];
706 char *outptr = out;
707 char *inptr = in;
708 char *ch1, *ch2, *env;
709 ssize_t nchr = OPT_LEN_MAX;
710 size_t envlen;
711
712 if (strlen(opt) + 1 > OPT_LEN_MAX) {
713 fprintf(stderr, "OPT_LEN_MAX (%d) is too small\n", OPT_LEN_MAX);
714 return NULL;
715 }
716
717 in[OPT_LEN_MAX] = '\0';
718 strncpy(in, opt, OPT_LEN_MAX);
719
720 while (*inptr && nchr > 0) {
721 if (inptr[0] == '$' && inptr[1] == '{') {
722 ch2 = strchr(inptr, '}');
723 if (ch2 && inptr+1 < ch2) {
724 ch1 = inptr+2;
725 inptr = ch2+1;
726 *ch2 = '\0';
727
728 env = getenv(ch1);
729 if (env) {
730 envlen = strlen(env);
731 if (envlen <= nchr) {
732 memcpy(outptr, env, envlen);
733 outptr += envlen;
734 nchr -= envlen;
735 }
736 }
737
738 continue;
739 }
740 }
741
742 *outptr++ = *inptr++;
743 --nchr;
744 }
745
746 *outptr = '\0';
747 return strdup(out);
748}
749
750int parse_option(const char *opt, struct fio_option *options, void *data)
751{
752 struct fio_option *o;
753 char *post, *tmp;
754
755 tmp = option_dup_subs(opt);
756 if (!tmp)
757 return 1;
758
759 o = get_option(tmp, options, &post);
760 if (!o) {
761 fprintf(stderr, "Bad option <%s>\n", tmp);
762 free(tmp);
763 return 1;
764 }
765
766 if (!handle_option(o, post, data)) {
767 free(tmp);
768 return 0;
769 }
770
771 fprintf(stderr, "fio: failed parsing %s\n", opt);
772 free(tmp);
773 return 1;
774}
775
776/*
777 * Option match, levenshtein distance. Handy for not quite remembering what
778 * the option name is.
779 */
780static int string_distance(const char *s1, const char *s2)
781{
782 unsigned int s1_len = strlen(s1);
783 unsigned int s2_len = strlen(s2);
784 unsigned int *p, *q, *r;
785 unsigned int i, j;
786
787 p = malloc(sizeof(unsigned int) * (s2_len + 1));
788 q = malloc(sizeof(unsigned int) * (s2_len + 1));
789
790 p[0] = 0;
791 for (i = 1; i <= s2_len; i++)
792 p[i] = p[i - 1] + 1;
793
794 for (i = 1; i <= s1_len; i++) {
795 q[0] = p[0] + 1;
796 for (j = 1; j <= s2_len; j++) {
797 unsigned int sub = p[j - 1];
798
799 if (s1[i - 1] != s2[j - 1])
800 sub++;
801
802 q[j] = min(p[j] + 1, min(q[j - 1] + 1, sub));
803 }
804 r = p;
805 p = q;
806 q = r;
807 }
808
809 i = p[s2_len];
810 free(p);
811 free(q);
812 return i;
813}
814
815static struct fio_option *find_child(struct fio_option *options,
816 struct fio_option *o)
817{
818 struct fio_option *__o;
819
820 for (__o = options + 1; __o->name; __o++)
821 if (__o->parent && !strcmp(__o->parent, o->name))
822 return __o;
823
824 return NULL;
825}
826
827static void __print_option(struct fio_option *o, struct fio_option *org,
828 int level)
829{
830 char name[256], *p;
831 int depth;
832
833 if (!o)
834 return;
835 if (!org)
836 org = o;
837
838 p = name;
839 depth = level;
840 while (depth--)
841 p += sprintf(p, "%s", " ");
842
843 sprintf(p, "%s", o->name);
844
845 printf("%-24s: %s\n", name, o->help);
846}
847
848static void print_option(struct fio_option *o)
849{
850 struct fio_option *parent;
851 struct fio_option *__o;
852 unsigned int printed;
853 unsigned int level;
854
855 __print_option(o, NULL, 0);
856 parent = o;
857 level = 0;
858 do {
859 level++;
860 printed = 0;
861
862 while ((__o = find_child(o, parent)) != NULL) {
863 __print_option(__o, o, level);
864 o = __o;
865 printed++;
866 }
867
868 parent = o;
869 } while (printed);
870}
871
872int show_cmd_help(struct fio_option *options, const char *name)
873{
874 struct fio_option *o, *closest;
875 unsigned int best_dist = -1U;
876 int found = 0;
877 int show_all = 0;
878
879 if (!name || !strcmp(name, "all"))
880 show_all = 1;
881
882 closest = NULL;
883 best_dist = -1;
884 for (o = &options[0]; o->name; o++) {
885 int match = 0;
886
887 if (o->type == FIO_OPT_DEPRECATED)
888 continue;
889 if (!exec_profile && o->prof_name)
890 continue;
891
892 if (name) {
893 if (!strcmp(name, o->name) ||
894 (o->alias && !strcmp(name, o->alias)))
895 match = 1;
896 else {
897 unsigned int dist;
898
899 dist = string_distance(name, o->name);
900 if (dist < best_dist) {
901 best_dist = dist;
902 closest = o;
903 }
904 }
905 }
906
907 if (show_all || match) {
908 found = 1;
909 if (match)
910 printf("%20s: %s\n", o->name, o->help);
911 if (show_all) {
912 if (!o->parent)
913 print_option(o);
914 continue;
915 }
916 }
917
918 if (!match)
919 continue;
920
921 show_option_help(o, stdout);
922 }
923
924 if (found)
925 return 0;
926
927 printf("No such command: %s", name);
928
929 /*
930 * Only print an appropriately close option, one where the edit
931 * distance isn't too big. Otherwise we get crazy matches.
932 */
933 if (closest && best_dist < 3) {
934 printf(" - showing closest match\n");
935 printf("%20s: %s\n", closest->name, closest->help);
936 show_option_help(closest, stdout);
937 } else
938 printf("\n");
939
940 return 1;
941}
942
943/*
944 * Handle parsing of default parameters.
945 */
946void fill_default_options(void *data, struct fio_option *options)
947{
948 struct fio_option *o;
949
950 dprint(FD_PARSE, "filling default options\n");
951
952 for (o = &options[0]; o->name; o++)
953 if (o->def)
954 handle_option(o, o->def, data);
955}
956
957void option_init(struct fio_option *o)
958{
959 if (o->type == FIO_OPT_DEPRECATED)
960 return;
961 if (o->type == FIO_OPT_BOOL) {
962 o->minval = 0;
963 o->maxval = 1;
964 }
965 if (o->type == FIO_OPT_STR_SET && o->def) {
966 fprintf(stderr, "Option %s: string set option with"
967 " default will always be true\n", o->name);
968 }
969 if (!o->cb && (!o->off1 && !o->roff1)) {
970 fprintf(stderr, "Option %s: neither cb nor offset given\n",
971 o->name);
972 }
973 if (o->type == FIO_OPT_STR || o->type == FIO_OPT_STR_STORE ||
974 o->type == FIO_OPT_STR_MULTI)
975 return;
976 if (o->cb && ((o->off1 || o->off2 || o->off3 || o->off4) ||
977 (o->roff1 || o->roff2 || o->roff3 || o->roff4))) {
978 fprintf(stderr, "Option %s: both cb and offset given\n",
979 o->name);
980 }
981}
982
983/*
984 * Sanitize the options structure. For now it just sets min/max for bool
985 * values and whether both callback and offsets are given.
986 */
987void options_init(struct fio_option *options)
988{
989 struct fio_option *o;
990
991 dprint(FD_PARSE, "init options\n");
992
993 for (o = &options[0]; o->name; o++)
994 option_init(o);
995}