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