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