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