parse: add posval support to FIO_OPT_INT
[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                 if (o->posval[0].ival) {
468                         posval_sort(o, posval);
469
470                         ret = 1;
471                         for (i = 0; i < PARSE_MAX_VP; i++) {
472                                 vp = &posval[i];
473                                 if (!vp->ival || vp->ival[0] == '\0')
474                                         continue;
475                                 if (vp->oval == ull) {
476                                         ret = 0;
477                                         break;
478                                 }
479                         }
480                         if (ret) {
481                                 log_err("value %d not in allowed range\n",ull);
482                                 return 1;
483                         }
484                 }
485
486                 if (fn)
487                         ret = fn(data, &ull);
488                 else {
489                         if (o->type == FIO_OPT_INT) {
490                                 if (first) {
491                                         if (o->roff1)
492                                                 *(unsigned int *) o->roff1 = ull;
493                                         else
494                                                 val_store(ilp, ull, o->off1, 0, data);
495                                 }
496                                 if (curr == 1) {
497                                         if (o->roff2)
498                                                 *(unsigned int *) o->roff2 = ull;
499                                         else if (o->off2)
500                                                 val_store(ilp, ull, o->off2, 0, data);
501                                 }
502                                 if (curr == 2) {
503                                         if (o->roff3)
504                                                 *(unsigned int *) o->roff3 = ull;
505                                         else if (o->off3)
506                                                 val_store(ilp, ull, o->off3, 0, data);
507                                 }
508                                 if (!more) {
509                                         if (curr < 1) {
510                                                 if (o->roff2)
511                                                         *(unsigned int *) o->roff2 = ull;
512                                                 else if (o->off2)
513                                                         val_store(ilp, ull, o->off2, 0, data);
514                                         }
515                                         if (curr < 2) {
516                                                 if (o->roff3)
517                                                         *(unsigned int *) o->roff3 = ull;
518                                                 else if (o->off3)
519                                                         val_store(ilp, ull, o->off3, 0, data);
520                                         }
521                                 }
522                         } else {
523                                 if (first) {
524                                         if (o->roff1)
525                                                 *(unsigned long long *) o->roff1 = ull;
526                                         else
527                                                 val_store(ullp, ull, o->off1, 0, data);
528                                 }
529                                 if (!more) {
530                                         if (o->roff2)
531                                                 *(unsigned long long *) o->roff2 =  ull;
532                                         else if (o->off2)
533                                                 val_store(ullp, ull, o->off2, 0, data);
534                                 }
535                         }
536                 }
537                 break;
538         }
539         case FIO_OPT_FLOAT_LIST: {
540                 char *cp2;
541
542                 if (first) {
543                         /*
544                         ** Initialize precision to 0 and zero out list
545                         ** in case specified list is shorter than default
546                         */
547                         ul2 = 0;
548                         ilp = td_var(data, o->off2);
549                         *ilp = ul2;
550
551                         flp = td_var(data, o->off1);
552                         for(i = 0; i < o->maxlen; i++)
553                                 flp[i].u.f = 0.0;
554                 }
555                 if (curr >= o->maxlen) {
556                         log_err("the list exceeding max length %d\n",
557                                         o->maxlen);
558                         return 1;
559                 }
560                 if (!str_to_float(ptr, &uf)) {
561                         log_err("not a floating point value: %s\n", ptr);
562                         return 1;
563                 }
564                 if (uf > o->maxfp) {
565                         log_err("value out of range: %f"
566                                 " (range max: %f)\n", uf, o->maxfp);
567                         return 1;
568                 }
569                 if (uf < o->minfp) {
570                         log_err("value out of range: %f"
571                                 " (range min: %f)\n", uf, o->minfp);
572                         return 1;
573                 }
574
575                 flp = td_var(data, o->off1);
576                 flp[curr].u.f = uf;
577
578                 /*
579                 ** Calculate precision for output by counting
580                 ** number of digits after period. Find first
581                 ** period in entire remaining list each time
582                 */
583                 cp2 = strchr(ptr, '.');
584                 if (cp2 != NULL) {
585                         int len = 0;
586
587                         while (*++cp2 != '\0' && *cp2 >= '0' && *cp2 <= '9')
588                                 len++;
589
590                         ilp = td_var(data, o->off2);
591                         if (len > *ilp)
592                                 *ilp = len;
593                 }
594
595                 break;
596         }
597         case FIO_OPT_STR_STORE: {
598                 fio_opt_str_fn *fn = o->cb;
599
600                 if (o->roff1 || o->off1) {
601                         if (o->roff1)
602                                 cp = (char **) o->roff1;
603                         else if (o->off1)
604                                 cp = td_var(data, o->off1);
605
606                         *cp = strdup(ptr);
607                 }
608
609                 if (fn)
610                         ret = fn(data, ptr);
611                 else if (o->posval[0].ival) {
612                         posval_sort(o, posval);
613
614                         ret = 1;
615                         for (i = 0; i < PARSE_MAX_VP; i++) {
616                                 vp = &posval[i];
617                                 if (!vp->ival || vp->ival[0] == '\0')
618                                         continue;
619                                 all_skipped = 0;
620                                 if (!strncmp(vp->ival, ptr, str_match_len(vp, ptr))) {
621                                         char *rest;
622
623                                         ret = 0;
624                                         if (vp->cb)
625                                                 fn = vp->cb;
626                                         rest = strstr(*cp ?: ptr, ":");
627                                         if (rest) {
628                                                 if (*cp)
629                                                         *rest = '\0';
630                                                 ptr = rest + 1;
631                                         } else
632                                                 ptr = NULL;
633                                         break;
634                                 }
635                         }
636                 }
637
638                 if (!all_skipped) {
639                         if (ret && !*cp)
640                                 show_option_values(o);
641                         else if (ret && *cp)
642                                 ret = 0;
643                         else if (fn && ptr)
644                                 ret = fn(data, ptr);
645                 }
646
647                 break;
648         }
649         case FIO_OPT_RANGE: {
650                 char tmp[128];
651                 char *p1, *p2;
652
653                 strncpy(tmp, ptr, sizeof(tmp) - 1);
654
655                 /* Handle bsrange with separate read,write values: */
656                 p1 = strchr(tmp, ',');
657                 if (p1)
658                         *p1 = '\0';
659
660                 p1 = strchr(tmp, '-');
661                 if (!p1) {
662                         p1 = strchr(tmp, ':');
663                         if (!p1) {
664                                 ret = 1;
665                                 break;
666                         }
667                 }
668
669                 p2 = p1 + 1;
670                 *p1 = '\0';
671                 p1 = tmp;
672
673                 ret = 1;
674                 if (!check_range_bytes(p1, &ul1, data) &&
675                     !check_range_bytes(p2, &ul2, data)) {
676                         ret = 0;
677                         if (ul1 > ul2) {
678                                 unsigned long foo = ul1;
679
680                                 ul1 = ul2;
681                                 ul2 = foo;
682                         }
683
684                         if (first) {
685                                 if (o->roff1)
686                                         *(unsigned int *) o->roff1 = ul1;
687                                 else
688                                         val_store(ilp, ul1, o->off1, 0, data);
689                                 if (o->roff2)
690                                         *(unsigned int *) o->roff2 = ul2;
691                                 else
692                                         val_store(ilp, ul2, o->off2, 0, data);
693                         }
694                         if (curr == 1) {
695                                 if (o->roff3 && o->roff4) {
696                                         *(unsigned int *) o->roff3 = ul1;
697                                         *(unsigned int *) o->roff4 = ul2;
698                                 } else if (o->off3 && o->off4) {
699                                         val_store(ilp, ul1, o->off3, 0, data);
700                                         val_store(ilp, ul2, o->off4, 0, data);
701                                 }
702                         }
703                         if (curr == 2) {
704                                 if (o->roff5 && o->roff6) {
705                                         *(unsigned int *) o->roff5 = ul1;
706                                         *(unsigned int *) o->roff6 = ul2;
707                                 } else if (o->off5 && o->off6) {
708                                         val_store(ilp, ul1, o->off5, 0, data);
709                                         val_store(ilp, ul2, o->off6, 0, data);
710                                 }
711                         }
712                         if (!more) {
713                                 if (curr < 1) {
714                                         if (o->roff3 && o->roff4) {
715                                                 *(unsigned int *) o->roff3 = ul1;
716                                                 *(unsigned int *) o->roff4 = ul2;
717                                         } else if (o->off3 && o->off4) {
718                                                 val_store(ilp, ul1, o->off3, 0, data);
719                                                 val_store(ilp, ul2, o->off4, 0, data);
720                                         }
721                                 }
722                                 if (curr < 2) {
723                                         if (o->roff5 && o->roff6) {
724                                                 *(unsigned int *) o->roff5 = ul1;
725                                                 *(unsigned int *) o->roff6 = ul2;
726                                         } else if (o->off5 && o->off6) {
727                                                 val_store(ilp, ul1, o->off5, 0, data);
728                                                 val_store(ilp, ul2, o->off6, 0, data);
729                                         }
730                                 }
731                         }
732                 }
733
734                 break;
735         }
736         case FIO_OPT_BOOL:
737         case FIO_OPT_STR_SET: {
738                 fio_opt_int_fn *fn = o->cb;
739
740                 if (ptr)
741                         ret = check_int(ptr, &il);
742                 else if (o->type == FIO_OPT_BOOL)
743                         ret = 1;
744                 else
745                         il = 1;
746
747                 if (ret)
748                         break;
749
750                 if (o->maxval && il > (int) o->maxval) {
751                         log_err("max value out of range: %d (%d max)\n",
752                                                                 il, o->maxval);
753                         return 1;
754                 }
755                 if (o->minval && il < o->minval) {
756                         log_err("min value out of range: %d (%d min)\n",
757                                                                 il, o->minval);
758                         return 1;
759                 }
760
761                 if (o->neg)
762                         il = !il;
763
764                 if (fn)
765                         ret = fn(data, &il);
766                 else {
767                         if (first) {
768                                 if (o->roff1)
769                                         *(unsigned int *)o->roff1 = il;
770                                 else
771                                         val_store(ilp, il, o->off1, 0, data);
772                         }
773                         if (!more) {
774                                 if (o->roff2)
775                                         *(unsigned int *) o->roff2 = il;
776                                 else if (o->off2)
777                                         val_store(ilp, il, o->off2, 0, data);
778                         }
779                 }
780                 break;
781         }
782         case FIO_OPT_DEPRECATED:
783                 log_info("Option %s is deprecated\n", o->name);
784                 break;
785         default:
786                 log_err("Bad option type %u\n", o->type);
787                 ret = 1;
788         }
789
790         if (ret)
791                 return ret;
792
793         if (o->verify) {
794                 ret = o->verify(o, data);
795                 if (ret) {
796                         log_err("Correct format for offending option\n");
797                         log_err("%20s: %s\n", o->name, o->help);
798                         show_option_help(o, 1);
799                 }
800         }
801
802         return ret;
803 }
804
805 static int handle_option(struct fio_option *o, const char *__ptr, void *data)
806 {
807         char *o_ptr, *ptr, *ptr2;
808         int ret, done;
809
810         dprint(FD_PARSE, "handle_option=%s, ptr=%s\n", o->name, __ptr);
811
812         o_ptr = ptr = NULL;
813         if (__ptr)
814                 o_ptr = ptr = strdup(__ptr);
815
816         /*
817          * See if we have another set of parameters, hidden after a comma.
818          * Do this before parsing this round, to check if we should
819          * copy set 1 options to set 2.
820          */
821         done = 0;
822         ret = 1;
823         do {
824                 int __ret;
825
826                 ptr2 = NULL;
827                 if (ptr &&
828                     (o->type != FIO_OPT_STR_STORE) &&
829                     (o->type != FIO_OPT_STR) &&
830                     (o->type != FIO_OPT_FLOAT_LIST)) {
831                         ptr2 = strchr(ptr, ',');
832                         if (ptr2 && *(ptr2 + 1) == '\0')
833                                 *ptr2 = '\0';
834                         if (o->type != FIO_OPT_STR_MULTI && o->type != FIO_OPT_RANGE) {
835                                 if (!ptr2)
836                                         ptr2 = strchr(ptr, ':');
837                                 if (!ptr2)
838                                         ptr2 = strchr(ptr, '-');
839                         }
840                 } else if (ptr && o->type == FIO_OPT_FLOAT_LIST) {
841                         ptr2 = strchr(ptr, ':');
842                 }
843
844                 /*
845                  * Don't return early if parsing the first option fails - if
846                  * we are doing multiple arguments, we can allow the first one
847                  * being empty.
848                  */
849                 __ret = __handle_option(o, ptr, data, !done, !!ptr2, done);
850                 if (ret)
851                         ret = __ret;
852
853                 if (!ptr2)
854                         break;
855
856                 ptr = ptr2 + 1;
857                 done++;
858         } while (1);
859
860         if (o_ptr)
861                 free(o_ptr);
862         return ret;
863 }
864
865 static struct fio_option *get_option(char *opt,
866                                      struct fio_option *options, char **post)
867 {
868         struct fio_option *o;
869         char *ret;
870
871         ret = strchr(opt, '=');
872         if (ret) {
873                 *post = ret;
874                 *ret = '\0';
875                 ret = opt;
876                 (*post)++;
877                 strip_blank_end(ret);
878                 o = find_option(options, ret);
879         } else {
880                 o = find_option(options, opt);
881                 *post = NULL;
882         }
883
884         return o;
885 }
886
887 static int opt_cmp(const void *p1, const void *p2)
888 {
889         struct fio_option *o;
890         char *s, *foo;
891         int prio1, prio2;
892
893         prio1 = prio2 = 0;
894
895         if (*(char **)p1) {
896                 s = strdup(*((char **) p1));
897                 o = get_option(s, __fio_options, &foo);
898                 if (o)
899                         prio1 = o->prio;
900                 free(s);
901         }
902         if (*(char **)p2) {
903                 s = strdup(*((char **) p2));
904                 o = get_option(s, __fio_options, &foo);
905                 if (o)
906                         prio2 = o->prio;
907                 free(s);
908         }
909
910         return prio2 - prio1;
911 }
912
913 void sort_options(char **opts, struct fio_option *options, int num_opts)
914 {
915         __fio_options = options;
916         qsort(opts, num_opts, sizeof(char *), opt_cmp);
917         __fio_options = NULL;
918 }
919
920 int parse_cmd_option(const char *opt, const char *val,
921                      struct fio_option *options, void *data)
922 {
923         struct fio_option *o;
924
925         o = find_option(options, opt);
926         if (!o) {
927                 log_err("Bad option <%s>\n", opt);
928                 return 1;
929         }
930
931         if (!handle_option(o, val, data))
932                 return 0;
933
934         log_err("fio: failed parsing %s=%s\n", opt, val);
935         return 1;
936 }
937
938 int parse_option(char *opt, const char *input,
939                  struct fio_option *options, struct fio_option **o, void *data)
940 {
941         char *post;
942
943         if (!opt) {
944                 log_err("fio: failed parsing %s\n", input);
945                 *o = NULL;
946                 return 1;
947         }
948
949         *o = get_option(opt, options, &post);
950         if (!*o) {
951                 if (post) {
952                         int len = strlen(opt);
953                         if (opt + len + 1 != post)
954                                 memmove(opt + len + 1, post, strlen(post));
955                         opt[len] = '=';
956                 }
957                 return 1;
958         }
959
960         if (!handle_option(*o, post, data))
961                 return 0;
962
963         log_err("fio: failed parsing %s\n", input);
964         return 1;
965 }
966
967 /*
968  * Option match, levenshtein distance. Handy for not quite remembering what
969  * the option name is.
970  */
971 static int string_distance(const char *s1, const char *s2)
972 {
973         unsigned int s1_len = strlen(s1);
974         unsigned int s2_len = strlen(s2);
975         unsigned int *p, *q, *r;
976         unsigned int i, j;
977
978         p = malloc(sizeof(unsigned int) * (s2_len + 1));
979         q = malloc(sizeof(unsigned int) * (s2_len + 1));
980
981         p[0] = 0;
982         for (i = 1; i <= s2_len; i++)
983                 p[i] = p[i - 1] + 1;
984
985         for (i = 1; i <= s1_len; i++) {
986                 q[0] = p[0] + 1;
987                 for (j = 1; j <= s2_len; j++) {
988                         unsigned int sub = p[j - 1];
989
990                         if (s1[i - 1] != s2[j - 1])
991                                 sub++;
992
993                         q[j] = min(p[j] + 1, min(q[j - 1] + 1, sub));
994                 }
995                 r = p;
996                 p = q;
997                 q = r;
998         }
999
1000         i = p[s2_len];
1001         free(p);
1002         free(q);
1003         return i;
1004 }
1005
1006 static struct fio_option *find_child(struct fio_option *options,
1007                                      struct fio_option *o)
1008 {
1009         struct fio_option *__o;
1010
1011         for (__o = options + 1; __o->name; __o++)
1012                 if (__o->parent && !strcmp(__o->parent, o->name))
1013                         return __o;
1014
1015         return NULL;
1016 }
1017
1018 static void __print_option(struct fio_option *o, struct fio_option *org,
1019                            int level)
1020 {
1021         char name[256], *p;
1022         int depth;
1023
1024         if (!o)
1025                 return;
1026         if (!org)
1027                 org = o;
1028
1029         p = name;
1030         depth = level;
1031         while (depth--)
1032                 p += sprintf(p, "%s", "  ");
1033
1034         sprintf(p, "%s", o->name);
1035
1036         log_info("%-24s: %s\n", name, o->help);
1037 }
1038
1039 static void print_option(struct fio_option *o)
1040 {
1041         struct fio_option *parent;
1042         struct fio_option *__o;
1043         unsigned int printed;
1044         unsigned int level;
1045
1046         __print_option(o, NULL, 0);
1047         parent = o;
1048         level = 0;
1049         do {
1050                 level++;
1051                 printed = 0;
1052
1053                 while ((__o = find_child(o, parent)) != NULL) {
1054                         __print_option(__o, o, level);
1055                         o = __o;
1056                         printed++;
1057                 }
1058
1059                 parent = o;
1060         } while (printed);
1061 }
1062
1063 int show_cmd_help(struct fio_option *options, const char *name)
1064 {
1065         struct fio_option *o, *closest;
1066         unsigned int best_dist = -1U;
1067         int found = 0;
1068         int show_all = 0;
1069
1070         if (!name || !strcmp(name, "all"))
1071                 show_all = 1;
1072
1073         closest = NULL;
1074         best_dist = -1;
1075         for (o = &options[0]; o->name; o++) {
1076                 int match = 0;
1077
1078                 if (o->type == FIO_OPT_DEPRECATED)
1079                         continue;
1080                 if (!exec_profile && o->prof_name)
1081                         continue;
1082
1083                 if (name) {
1084                         if (!strcmp(name, o->name) ||
1085                             (o->alias && !strcmp(name, o->alias)))
1086                                 match = 1;
1087                         else {
1088                                 unsigned int dist;
1089
1090                                 dist = string_distance(name, o->name);
1091                                 if (dist < best_dist) {
1092                                         best_dist = dist;
1093                                         closest = o;
1094                                 }
1095                         }
1096                 }
1097
1098                 if (show_all || match) {
1099                         found = 1;
1100                         if (match)
1101                                 log_info("%20s: %s\n", o->name, o->help);
1102                         if (show_all) {
1103                                 if (!o->parent)
1104                                         print_option(o);
1105                                 continue;
1106                         }
1107                 }
1108
1109                 if (!match)
1110                         continue;
1111
1112                 show_option_help(o, 0);
1113         }
1114
1115         if (found)
1116                 return 0;
1117
1118         log_err("No such command: %s", name);
1119
1120         /*
1121          * Only print an appropriately close option, one where the edit
1122          * distance isn't too big. Otherwise we get crazy matches.
1123          */
1124         if (closest && best_dist < 3) {
1125                 log_info(" - showing closest match\n");
1126                 log_info("%20s: %s\n", closest->name, closest->help);
1127                 show_option_help(closest, 0);
1128         } else
1129                 log_info("\n");
1130
1131         return 1;
1132 }
1133
1134 /*
1135  * Handle parsing of default parameters.
1136  */
1137 void fill_default_options(void *data, struct fio_option *options)
1138 {
1139         struct fio_option *o;
1140
1141         dprint(FD_PARSE, "filling default options\n");
1142
1143         for (o = &options[0]; o->name; o++)
1144                 if (o->def)
1145                         handle_option(o, o->def, data);
1146 }
1147
1148 void option_init(struct fio_option *o)
1149 {
1150         if (o->type == FIO_OPT_DEPRECATED)
1151                 return;
1152         if (o->type == FIO_OPT_BOOL) {
1153                 o->minval = 0;
1154                 o->maxval = 1;
1155         }
1156         if (o->type == FIO_OPT_INT) {
1157                 if (!o->maxval)
1158                         o->maxval = UINT_MAX;
1159         }
1160         if (o->type == FIO_OPT_FLOAT_LIST) {
1161                 o->minfp = DBL_MIN;
1162                 o->maxfp = DBL_MAX;
1163         }
1164         if (o->type == FIO_OPT_STR_SET && o->def) {
1165                 log_err("Option %s: string set option with"
1166                                 " default will always be true\n", o->name);
1167         }
1168         if (!o->cb && (!o->off1 && !o->roff1))
1169                 log_err("Option %s: neither cb nor offset given\n", o->name);
1170         if (o->type == FIO_OPT_STR || o->type == FIO_OPT_STR_STORE ||
1171             o->type == FIO_OPT_STR_MULTI)
1172                 return;
1173         if (o->cb && ((o->off1 || o->off2 || o->off3 || o->off4) ||
1174                       (o->roff1 || o->roff2 || o->roff3 || o->roff4))) {
1175                 log_err("Option %s: both cb and offset given\n", o->name);
1176         }
1177         if (!o->category) {
1178                 log_info("Options %s: no category defined. Setting to misc\n", o->name);
1179                 o->category = FIO_OPT_C_GENERAL;
1180         }
1181 }
1182
1183 /*
1184  * Sanitize the options structure. For now it just sets min/max for bool
1185  * values and whether both callback and offsets are given.
1186  */
1187 void options_init(struct fio_option *options)
1188 {
1189         struct fio_option *o;
1190
1191         dprint(FD_PARSE, "init options\n");
1192
1193         for (o = &options[0]; o->name; o++) {
1194                 option_init(o);
1195                 if (o->inverse)
1196                         o->inv_opt = find_option(options, o->inverse);
1197         }
1198 }
1199
1200 void options_free(struct fio_option *options, void *data)
1201 {
1202         struct fio_option *o;
1203         char **ptr;
1204
1205         dprint(FD_PARSE, "free options\n");
1206
1207         for (o = &options[0]; o->name; o++) {
1208                 if (o->type != FIO_OPT_STR_STORE || !o->off1)
1209                         continue;
1210
1211                 ptr = td_var(data, o->off1);
1212                 if (*ptr) {
1213                         free(*ptr);
1214                         *ptr = NULL;
1215                 }
1216         }
1217 }