blob: 1a686e4cceb89a5ee8446d10a4472556d3445764 [file] [log] [blame]
Jens Axboecb2c86f2006-10-26 13:48:34 +02001/*
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>
Aaron Carroll88b5a392008-10-07 11:25:20 +020011#include <stdlib.h>
Yu-ju Hong83349192011-08-13 00:53:44 +020012#include <math.h>
Jens Axboecb2c86f2006-10-26 13:48:34 +020013
14#include "parse.h"
Jens Axboea3d741f2008-02-27 18:32:33 +010015#include "debug.h"
Jens Axboe9f988e22010-03-04 10:42:38 +010016#include "options.h"
Jens Axboecb2c86f2006-10-26 13:48:34 +020017
Jens Axboe3b8b7132008-06-10 19:46:23 +020018static struct fio_option *fio_options;
Jens Axboed6978a32009-07-18 21:04:09 +020019extern unsigned int fio_get_kb_base(void *);
Jens Axboe3b8b7132008-06-10 19:46:23 +020020
Jens Axboef0857372007-03-19 13:15:23 +010021static int vp_cmp(const void *p1, const void *p2)
22{
23 const struct value_pair *vp1 = p1;
24 const struct value_pair *vp2 = p2;
25
26 return strlen(vp2->ival) - strlen(vp1->ival);
27}
28
Jens Axboece952ab2011-08-31 14:29:22 -060029static void posval_sort(struct fio_option *o, struct value_pair *vpmap)
Jens Axboef0857372007-03-19 13:15:23 +010030{
31 const struct value_pair *vp;
32 int entries;
33
34 memset(vpmap, 0, PARSE_MAX_VP * sizeof(struct value_pair));
35
36 for (entries = 0; entries < PARSE_MAX_VP; entries++) {
37 vp = &o->posval[entries];
38 if (!vp->ival || vp->ival[0] == '\0')
39 break;
40
41 memcpy(&vpmap[entries], vp, sizeof(*vp));
42 }
43
44 qsort(vpmap, entries, sizeof(struct value_pair), vp_cmp);
45}
46
Jens Axboe06b0be62011-10-04 10:31:10 +020047static void show_option_range(struct fio_option *o,
48 int (*logger)(const char *format, ...))
Jens Axboeb1ec1da2007-02-23 10:29:16 +010049{
Yu-ju Hong83349192011-08-13 00:53:44 +020050 if (o->type == FIO_OPT_FLOAT_LIST){
51 if (isnan(o->minfp) && isnan(o->maxfp))
52 return;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010053
Jens Axboe06b0be62011-10-04 10:31:10 +020054 logger("%20s: min=%f", "range", o->minfp);
Yu-ju Hong83349192011-08-13 00:53:44 +020055 if (!isnan(o->maxfp))
Jens Axboe06b0be62011-10-04 10:31:10 +020056 logger(", max=%f", o->maxfp);
57 logger("\n");
Yu-ju Hong83349192011-08-13 00:53:44 +020058 } else {
59 if (!o->minval && !o->maxval)
60 return;
61
Jens Axboe06b0be62011-10-04 10:31:10 +020062 logger("%20s: min=%d", "range", o->minval);
Yu-ju Hong83349192011-08-13 00:53:44 +020063 if (o->maxval)
Jens Axboe06b0be62011-10-04 10:31:10 +020064 logger(", max=%d", o->maxval);
65 logger("\n");
Yu-ju Hong83349192011-08-13 00:53:44 +020066 }
Jens Axboeb1ec1da2007-02-23 10:29:16 +010067}
68
69static void show_option_values(struct fio_option *o)
70{
Jens Axboea3073f42010-03-05 10:06:15 +010071 int i;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010072
Jens Axboea3073f42010-03-05 10:06:15 +010073 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboe78372132007-03-14 13:24:07 +010074 const struct value_pair *vp = &o->posval[i];
75
76 if (!vp->ival)
Jens Axboea3073f42010-03-05 10:06:15 +010077 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010078
Jens Axboe06b0be62011-10-04 10:31:10 +020079 log_info("%20s: %-10s", i == 0 ? "valid values" : "", vp->ival);
Jens Axboe78372132007-03-14 13:24:07 +010080 if (vp->help)
Jens Axboe06b0be62011-10-04 10:31:10 +020081 log_info(" %s", vp->help);
82 log_info("\n");
Jens Axboea3073f42010-03-05 10:06:15 +010083 }
Jens Axboeb1ec1da2007-02-23 10:29:16 +010084
85 if (i)
Jens Axboe06b0be62011-10-04 10:31:10 +020086 log_info("\n");
Jens Axboeb1ec1da2007-02-23 10:29:16 +010087}
88
Jens Axboe06b0be62011-10-04 10:31:10 +020089static void show_option_help(struct fio_option *o, int is_err)
Jens Axboed447a8c2009-07-17 22:26:15 +020090{
91 const char *typehelp[] = {
Jens Axboe07b32322010-03-05 09:48:44 +010092 "invalid",
Jens Axboed447a8c2009-07-17 22:26:15 +020093 "string (opt=bla)",
Jens Axboeae3fb6f2010-09-14 13:10:35 +020094 "string (opt=bla)",
Jens Axboed447a8c2009-07-17 22:26:15 +020095 "string with possible k/m/g postfix (opt=4k)",
96 "string with time postfix (opt=10s)",
97 "string (opt=bla)",
98 "string with dual range (opt=1k-4k,4k-8k)",
99 "integer value (opt=100)",
100 "boolean value (opt=1)",
Yu-ju Hong83349192011-08-13 00:53:44 +0200101 "list of floating point values separated by ':' (opt=5.9:7.8)",
Jens Axboed447a8c2009-07-17 22:26:15 +0200102 "no argument (opt)",
Jens Axboe07b32322010-03-05 09:48:44 +0100103 "deprecated",
Jens Axboed447a8c2009-07-17 22:26:15 +0200104 };
Jens Axboe06b0be62011-10-04 10:31:10 +0200105 int (*logger)(const char *format, ...);
106
107 if (is_err)
108 logger = log_err;
109 else
110 logger = log_info;
Jens Axboed447a8c2009-07-17 22:26:15 +0200111
112 if (o->alias)
Jens Axboe06b0be62011-10-04 10:31:10 +0200113 logger("%20s: %s\n", "alias", o->alias);
Jens Axboed447a8c2009-07-17 22:26:15 +0200114
Jens Axboe06b0be62011-10-04 10:31:10 +0200115 logger("%20s: %s\n", "type", typehelp[o->type]);
116 logger("%20s: %s\n", "default", o->def ? o->def : "no default");
Jens Axboe07b32322010-03-05 09:48:44 +0100117 if (o->prof_name)
Jens Axboe06b0be62011-10-04 10:31:10 +0200118 logger("%20s: only for profile '%s'\n", "valid", o->prof_name);
119 show_option_range(o, logger);
Jens Axboed447a8c2009-07-17 22:26:15 +0200120 show_option_values(o);
121}
122
Jens Axboecb2c86f2006-10-26 13:48:34 +0200123static unsigned long get_mult_time(char c)
124{
125 switch (c) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100126 case 'm':
127 case 'M':
128 return 60;
129 case 'h':
130 case 'H':
131 return 60 * 60;
132 case 'd':
133 case 'D':
134 return 24 * 60 * 60;
135 default:
136 return 1;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200137 }
138}
139
Jens Axboe7bb59102011-07-12 19:47:03 +0200140static unsigned long long __get_mult_bytes(const char *p, void *data,
141 int *percent)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200142{
Jens Axboed6978a32009-07-18 21:04:09 +0200143 unsigned int kb_base = fio_get_kb_base(data);
Jens Axboea639f0b2009-07-18 08:25:35 +0200144 unsigned long long ret = 1;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200145 unsigned int i, pow = 0, mult = kb_base;
146 char *c;
Jens Axboea639f0b2009-07-18 08:25:35 +0200147
Jens Axboe57fc29f2010-06-23 22:24:07 +0200148 if (!p)
149 return 1;
Jens Axboea639f0b2009-07-18 08:25:35 +0200150
Jens Axboe57fc29f2010-06-23 22:24:07 +0200151 c = strdup(p);
152
153 for (i = 0; i < strlen(c); i++)
154 c[i] = tolower(c[i]);
155
156 if (!strcmp("pib", c)) {
157 pow = 5;
158 mult = 1000;
159 } else if (!strcmp("tib", c)) {
160 pow = 4;
161 mult = 1000;
162 } else if (!strcmp("gib", c)) {
163 pow = 3;
164 mult = 1000;
165 } else if (!strcmp("mib", c)) {
166 pow = 2;
167 mult = 1000;
168 } else if (!strcmp("kib", c)) {
169 pow = 1;
170 mult = 1000;
171 } else if (!strcmp("p", c) || !strcmp("pb", c))
172 pow = 5;
173 else if (!strcmp("t", c) || !strcmp("tb", c))
174 pow = 4;
175 else if (!strcmp("g", c) || !strcmp("gb", c))
176 pow = 3;
177 else if (!strcmp("m", c) || !strcmp("mb", c))
178 pow = 2;
179 else if (!strcmp("k", c) || !strcmp("kb", c))
180 pow = 1;
Jens Axboe7bb59102011-07-12 19:47:03 +0200181 else if (!strcmp("%", c)) {
182 *percent = 1;
Jens Axboee721c572012-02-09 20:55:29 +0100183 free(c);
Jens Axboe7bb59102011-07-12 19:47:03 +0200184 return ret;
185 }
Jens Axboe57fc29f2010-06-23 22:24:07 +0200186
187 while (pow--)
188 ret *= (unsigned long long) mult;
189
190 free(c);
Jens Axboea639f0b2009-07-18 08:25:35 +0200191 return ret;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200192}
193
Jens Axboe7bb59102011-07-12 19:47:03 +0200194static unsigned long long get_mult_bytes(const char *str, int len, void *data,
Jens Axboe6925dd32011-09-07 22:10:11 +0200195 int *percent)
Jens Axboe57fc29f2010-06-23 22:24:07 +0200196{
Jens Axboe55ed9632011-03-27 20:55:09 +0200197 const char *p = str;
Jens Axboeba4ddd62011-09-07 22:11:00 +0200198 int digit_seen = 0;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200199
Jens Axboe1d1c1872010-07-29 10:50:05 +0200200 if (len < 2)
Jens Axboe7bb59102011-07-12 19:47:03 +0200201 return __get_mult_bytes(str, data, percent);
Jens Axboe1d1c1872010-07-29 10:50:05 +0200202
Steven Langd0c814e2011-10-28 08:37:13 +0200203 /*
204 * Go forward until we hit a non-digit, or +/- sign
205 */
Jens Axboe55ed9632011-03-27 20:55:09 +0200206 while ((p - str) <= len) {
Jens Axboeba4ddd62011-09-07 22:11:00 +0200207 if (!isdigit((int) *p) &&
208 (((*p != '+') && (*p != '-')) || digit_seen))
Jens Axboe55ed9632011-03-27 20:55:09 +0200209 break;
Jens Axboe3c703d12011-09-21 09:27:24 +0200210 digit_seen |= isdigit((int) *p);
Jens Axboe55ed9632011-03-27 20:55:09 +0200211 p++;
212 }
213
Jens Axboe7bb59102011-07-12 19:47:03 +0200214 if (!isalpha((int) *p) && (*p != '%'))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200215 p = NULL;
216
Jens Axboe7bb59102011-07-12 19:47:03 +0200217 return __get_mult_bytes(p, data, percent);
Jens Axboe57fc29f2010-06-23 22:24:07 +0200218}
219
Jens Axboecb2c86f2006-10-26 13:48:34 +0200220/*
Yu-ju Hong83349192011-08-13 00:53:44 +0200221 * Convert string into a floating number. Return 1 for success and 0 otherwise.
222 */
Jens Axboecc62ea72012-02-09 21:17:06 +0100223static int str_to_float(const char *str, double *val)
Yu-ju Hong83349192011-08-13 00:53:44 +0200224{
225 return (1 == sscanf(str, "%lf", val));
226}
227
228/*
Jens Axboee1f36502006-10-27 10:54:08 +0200229 * convert string into decimal value, noting any size suffix
Jens Axboecb2c86f2006-10-26 13:48:34 +0200230 */
Jens Axboe6925dd32011-09-07 22:10:11 +0200231int str_to_decimal(const char *str, long long *val, int kilo, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200232{
Jens Axboeb347f9d2009-03-09 14:15:21 +0100233 int len, base;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200234
Jens Axboecb2c86f2006-10-26 13:48:34 +0200235 len = strlen(str);
Jens Axboef90eff52006-11-06 11:08:21 +0100236 if (!len)
237 return 1;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200238
Jens Axboeb347f9d2009-03-09 14:15:21 +0100239 if (strstr(str, "0x") || strstr(str, "0X"))
240 base = 16;
241 else
242 base = 10;
243
244 *val = strtoll(str, NULL, base);
Jens Axboecda866c2007-01-10 16:02:32 +0100245 if (*val == LONG_MAX && errno == ERANGE)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200246 return 1;
247
Jens Axboe7bb59102011-07-12 19:47:03 +0200248 if (kilo) {
249 unsigned long long mult;
250 int perc = 0;
251
Jens Axboe6925dd32011-09-07 22:10:11 +0200252 mult = get_mult_bytes(str, len, data, &perc);
Jens Axboe7bb59102011-07-12 19:47:03 +0200253 if (perc)
254 *val = -1ULL - *val;
255 else
256 *val *= mult;
257 } else
Jens Axboecb2c86f2006-10-26 13:48:34 +0200258 *val *= get_mult_time(str[len - 1]);
Jens Axboe787f7e92006-11-06 13:26:29 +0100259
Jens Axboecb2c86f2006-10-26 13:48:34 +0200260 return 0;
261}
262
Jens Axboe6925dd32011-09-07 22:10:11 +0200263static int check_str_bytes(const char *p, long long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200264{
Jens Axboe6925dd32011-09-07 22:10:11 +0200265 return str_to_decimal(p, val, 1, data);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200266}
267
Jens Axboe63f29372007-01-10 13:20:09 +0100268static int check_str_time(const char *p, long long *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200269{
Jens Axboe6925dd32011-09-07 22:10:11 +0200270 return str_to_decimal(p, val, 0, NULL);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200271}
272
273void strip_blank_front(char **p)
274{
275 char *s = *p;
276
Jens Axboe4c8e9642011-10-15 14:37:38 +0200277 if (!strlen(s))
278 return;
Jens Axboe76cd9372011-07-08 21:14:57 +0200279 while (isspace((int) *s))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200280 s++;
Jens Axboe4d651da2007-03-28 19:34:53 +0200281
282 *p = s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200283}
284
285void strip_blank_end(char *p)
286{
Jens Axboe853ee7f2009-03-06 20:29:29 +0100287 char *start = p, *s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200288
Jens Axboe4c8e9642011-10-15 14:37:38 +0200289 if (!strlen(p))
290 return;
291
Jens Axboe523bfad2007-04-04 11:04:06 +0200292 s = strchr(p, ';');
293 if (s)
294 *s = '\0';
295 s = strchr(p, '#');
296 if (s)
297 *s = '\0';
298 if (s)
299 p = s;
300
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200301 s = p + strlen(p);
Jens Axboe76cd9372011-07-08 21:14:57 +0200302 while ((isspace((int) *s) || iscntrl((int) *s)) && (s > start))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200303 s--;
304
305 *(s + 1) = '\0';
306}
307
Jens Axboed6978a32009-07-18 21:04:09 +0200308static int check_range_bytes(const char *str, long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200309{
Jens Axboe57fc29f2010-06-23 22:24:07 +0200310 long long __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200311
Jens Axboe6925dd32011-09-07 22:10:11 +0200312 if (!str_to_decimal(str, &__val, 1, data)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200313 *val = __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200314 return 0;
315 }
316
Jens Axboecb2c86f2006-10-26 13:48:34 +0200317 return 1;
318}
319
Jens Axboe63f29372007-01-10 13:20:09 +0100320static int check_int(const char *p, int *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200321{
Jens Axboe787f7e92006-11-06 13:26:29 +0100322 if (!strlen(p))
323 return 1;
Jens Axboed78ee462007-08-10 14:03:20 +0200324 if (strstr(p, "0x") || strstr(p, "0X")) {
Jens Axboea61bdfd2007-07-30 09:07:04 +0200325 if (sscanf(p, "%x", val) == 1)
326 return 0;
327 } else {
328 if (sscanf(p, "%u", val) == 1)
329 return 0;
330 }
Jens Axboecb2c86f2006-10-26 13:48:34 +0200331
332 return 1;
333}
334
Jens Axboe808def72010-07-14 16:27:02 -0600335static int opt_len(const char *str)
336{
337 char *postfix;
338
339 postfix = strchr(str, ':');
340 if (!postfix)
341 return strlen(str);
342
343 return (int)(postfix - str);
344}
345
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100346#define val_store(ptr, val, off, or, data) \
Jens Axboe17abbe82006-11-06 11:23:10 +0100347 do { \
348 ptr = td_var((data), (off)); \
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100349 if ((or)) \
350 *ptr |= (val); \
351 else \
352 *ptr = (val); \
Jens Axboe17abbe82006-11-06 11:23:10 +0100353 } while (0)
354
Jens Axboef90eff52006-11-06 11:08:21 +0100355static int __handle_option(struct fio_option *o, const char *ptr, void *data,
Yu-ju Hong83349192011-08-13 00:53:44 +0200356 int first, int more, int curr)
Jens Axboee1f36502006-10-27 10:54:08 +0200357{
Jens Axboe63f29372007-01-10 13:20:09 +0100358 int il, *ilp;
Yu-ju Hong83349192011-08-13 00:53:44 +0200359 double* flp;
Jens Axboe63f29372007-01-10 13:20:09 +0100360 long long ull, *ullp;
361 long ul1, ul2;
Yu-ju Hong83349192011-08-13 00:53:44 +0200362 double uf;
Jens Axboeb4692822006-10-27 13:43:22 +0200363 char **cp;
Jens Axboee42b01e2011-05-05 12:05:10 -0600364 int ret = 0, is_time = 0;
Jens Axboec44b1ff2011-08-30 20:43:53 -0600365 const struct value_pair *vp;
366 struct value_pair posval[PARSE_MAX_VP];
367 int i, all_skipped = 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200368
Jens Axboea3d741f2008-02-27 18:32:33 +0100369 dprint(FD_PARSE, "__handle_option=%s, type=%d, ptr=%s\n", o->name,
370 o->type, ptr);
371
Jens Axboee3cedca2008-11-19 19:57:52 +0100372 if (!ptr && o->type != FIO_OPT_STR_SET && o->type != FIO_OPT_STR) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200373 log_err("Option %s requires an argument\n", o->name);
Jens Axboe08e26e32006-11-21 13:15:10 +0100374 return 1;
375 }
376
Jens Axboee1f36502006-10-27 10:54:08 +0200377 switch (o->type) {
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100378 case FIO_OPT_STR:
379 case FIO_OPT_STR_MULTI: {
Jens Axboee1f36502006-10-27 10:54:08 +0200380 fio_opt_str_fn *fn = o->cb;
381
Jens Axboef0857372007-03-19 13:15:23 +0100382 posval_sort(o, posval);
383
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100384 ret = 1;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100385 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboef0857372007-03-19 13:15:23 +0100386 vp = &posval[i];
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100387 if (!vp->ival || vp->ival[0] == '\0')
Jens Axboea3073f42010-03-05 10:06:15 +0100388 continue;
Jens Axboeae2ddba2010-03-10 12:49:03 +0100389 all_skipped = 0;
Jens Axboe808def72010-07-14 16:27:02 -0600390 if (!strncmp(vp->ival, ptr, opt_len(ptr))) {
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100391 ret = 0;
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100392 if (o->roff1) {
393 if (vp->or)
394 *(unsigned int *) o->roff1 |= vp->oval;
395 else
396 *(unsigned int *) o->roff1 = vp->oval;
397 } else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100398 if (!o->off1)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100399 continue;
400 val_store(ilp, vp->oval, o->off1, vp->or, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100401 }
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100402 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100403 }
404 }
405
Jens Axboeae2ddba2010-03-10 12:49:03 +0100406 if (ret && !all_skipped)
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100407 show_option_values(o);
408 else if (fn)
409 ret = fn(data, ptr);
Jens Axboee1f36502006-10-27 10:54:08 +0200410 break;
411 }
Jens Axboee42b01e2011-05-05 12:05:10 -0600412 case FIO_OPT_STR_VAL_TIME:
413 is_time = 1;
Jens Axboef7fa2652009-03-09 14:20:20 +0100414 case FIO_OPT_INT:
Jens Axboee42b01e2011-05-05 12:05:10 -0600415 case FIO_OPT_STR_VAL: {
416 fio_opt_str_val_fn *fn = o->cb;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200417 char tmp[128], *p;
418
419 strncpy(tmp, ptr, sizeof(tmp) - 1);
420 p = strchr(tmp, ',');
421 if (p)
422 *p = '\0';
Jens Axboee1f36502006-10-27 10:54:08 +0200423
Jens Axboee42b01e2011-05-05 12:05:10 -0600424 if (is_time)
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200425 ret = check_str_time(tmp, &ull);
Jens Axboee42b01e2011-05-05 12:05:10 -0600426 else
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200427 ret = check_str_bytes(tmp, &ull, data);
Jens Axboee42b01e2011-05-05 12:05:10 -0600428
Jens Axboee1f36502006-10-27 10:54:08 +0200429 if (ret)
430 break;
431
Jens Axboedb8e0162007-01-10 13:41:26 +0100432 if (o->maxval && ull > o->maxval) {
Jens Axboed4fc2f02012-09-24 14:32:26 +0200433 log_err("max value out of range: %llu"
434 " (%u max)\n", ull, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100435 return 1;
436 }
437 if (o->minval && ull < o->minval) {
Jens Axboed4fc2f02012-09-24 14:32:26 +0200438 log_err("min value out of range: %llu"
439 " (%u min)\n", ull, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100440 return 1;
441 }
Jens Axboee1f36502006-10-27 10:54:08 +0200442
443 if (fn)
444 ret = fn(data, &ull);
445 else {
Jens Axboee01b22b2009-06-09 15:43:25 +0200446 if (o->type == FIO_OPT_INT) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100447 if (first) {
448 if (o->roff1)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100449 *(unsigned int *) o->roff1 = ull;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100450 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100451 val_store(ilp, ull, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100452 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200453 if (curr == 1) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100454 if (o->roff2)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100455 *(unsigned int *) o->roff2 = ull;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100456 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100457 val_store(ilp, ull, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100458 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200459 if (curr == 2) {
460 if (o->roff3)
461 *(unsigned int *) o->roff3 = ull;
462 else if (o->off3)
463 val_store(ilp, ull, o->off3, 0, data);
464 }
465 if (!more) {
466 if (curr < 1) {
467 if (o->roff2)
468 *(unsigned int *) o->roff2 = ull;
469 else if (o->off2)
470 val_store(ilp, ull, o->off2, 0, data);
471 }
472 if (curr < 2) {
473 if (o->roff3)
474 *(unsigned int *) o->roff3 = ull;
475 else if (o->off3)
476 val_store(ilp, ull, o->off3, 0, data);
477 }
478 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100479 } else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100480 if (first) {
481 if (o->roff1)
482 *(unsigned long long *) o->roff1 = ull;
483 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100484 val_store(ullp, ull, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100485 }
486 if (!more) {
487 if (o->roff2)
488 *(unsigned long long *) o->roff2 = ull;
489 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100490 val_store(ullp, ull, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100491 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100492 }
Jens Axboee1f36502006-10-27 10:54:08 +0200493 }
494 break;
495 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200496 case FIO_OPT_FLOAT_LIST: {
497
498 if (first) {
499 ul2 = 1;
500 ilp = td_var(data, o->off2);
501 *ilp = ul2;
502 }
503 if (curr >= o->maxlen) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200504 log_err("the list exceeding max length %d\n",
Yu-ju Hong83349192011-08-13 00:53:44 +0200505 o->maxlen);
506 return 1;
507 }
508 if(!str_to_float(ptr, &uf)){
Jens Axboe28d7c362011-10-05 20:30:24 +0200509 log_err("not a floating point value: %s\n", ptr);
Yu-ju Hong83349192011-08-13 00:53:44 +0200510 return 1;
511 }
512 if (!isnan(o->maxfp) && uf > o->maxfp) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200513 log_err("value out of range: %f"
Yu-ju Hong83349192011-08-13 00:53:44 +0200514 " (range max: %f)\n", uf, o->maxfp);
515 return 1;
516 }
517 if (!isnan(o->minfp) && uf < o->minfp) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200518 log_err("value out of range: %f"
Yu-ju Hong83349192011-08-13 00:53:44 +0200519 " (range min: %f)\n", uf, o->minfp);
520 return 1;
521 }
522
523 flp = td_var(data, o->off1);
524 flp[curr] = uf;
525
526 break;
527 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100528 case FIO_OPT_STR_STORE: {
529 fio_opt_str_fn *fn = o->cb;
530
Steven Lang184b4092011-11-16 10:33:51 +0100531 if (o->roff1 || o->off1) {
532 if (o->roff1)
533 cp = (char **) o->roff1;
534 else if (o->off1)
535 cp = td_var(data, o->off1);
Jens Axboece952ab2011-08-31 14:29:22 -0600536
Steven Lang184b4092011-11-16 10:33:51 +0100537 *cp = strdup(ptr);
538 } else {
539 cp = NULL;
Jens Axboe1c964ce2011-08-31 16:45:03 -0600540 }
Jens Axboe02c6aad2010-03-04 13:49:11 +0100541
Steven Lang184b4092011-11-16 10:33:51 +0100542 if (fn)
543 ret = fn(data, ptr);
544 else if (o->posval[0].ival) {
545 posval_sort(o, posval);
Jens Axboec44b1ff2011-08-30 20:43:53 -0600546
Steven Lang184b4092011-11-16 10:33:51 +0100547 ret = 1;
548 for (i = 0; i < PARSE_MAX_VP; i++) {
549 vp = &posval[i];
550 if (!vp->ival || vp->ival[0] == '\0')
551 continue;
552 all_skipped = 0;
553 if (!strncmp(vp->ival, ptr, opt_len(ptr))) {
554 char *rest;
555
556 ret = 0;
557 if (vp->cb)
558 fn = vp->cb;
559 rest = strstr(*cp ?: ptr, ":");
560 if (rest) {
561 if (*cp)
562 *rest = '\0';
563 ptr = rest + 1;
564 } else
565 ptr = NULL;
566 break;
567 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100568 }
569 }
Jens Axboec44b1ff2011-08-30 20:43:53 -0600570
Steven Lang184b4092011-11-16 10:33:51 +0100571 if (!all_skipped) {
572 if (ret && !*cp)
573 show_option_values(o);
574 else if (ret && *cp)
575 ret = 0;
576 else if (fn && ptr)
577 ret = fn(data, ptr);
578 }
Jens Axboec44b1ff2011-08-30 20:43:53 -0600579
Jens Axboee1f36502006-10-27 10:54:08 +0200580 break;
Jens Axboeaf52b342007-03-13 10:07:47 +0100581 }
Jens Axboee1f36502006-10-27 10:54:08 +0200582 case FIO_OPT_RANGE: {
Jens Axboeb765a372006-10-27 15:00:16 +0200583 char tmp[128];
Jens Axboee1f36502006-10-27 10:54:08 +0200584 char *p1, *p2;
585
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100586 strncpy(tmp, ptr, sizeof(tmp) - 1);
Jens Axboeb765a372006-10-27 15:00:16 +0200587
Dave Engberg31d23f42011-07-23 21:07:13 +0200588 /* Handle bsrange with separate read,write values: */
589 p1 = strchr(tmp, ',');
590 if (p1)
591 *p1 = '\0';
592
Jens Axboeb765a372006-10-27 15:00:16 +0200593 p1 = strchr(tmp, '-');
Jens Axboee1f36502006-10-27 10:54:08 +0200594 if (!p1) {
Jens Axboe0c9baf92007-01-11 15:59:26 +0100595 p1 = strchr(tmp, ':');
596 if (!p1) {
597 ret = 1;
598 break;
599 }
Jens Axboee1f36502006-10-27 10:54:08 +0200600 }
601
602 p2 = p1 + 1;
603 *p1 = '\0';
Jens Axboeb765a372006-10-27 15:00:16 +0200604 p1 = tmp;
Jens Axboee1f36502006-10-27 10:54:08 +0200605
606 ret = 1;
Jens Axboed6978a32009-07-18 21:04:09 +0200607 if (!check_range_bytes(p1, &ul1, data) &&
608 !check_range_bytes(p2, &ul2, data)) {
Jens Axboee1f36502006-10-27 10:54:08 +0200609 ret = 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200610 if (ul1 > ul2) {
Jens Axboef90eff52006-11-06 11:08:21 +0100611 unsigned long foo = ul1;
612
613 ul1 = ul2;
614 ul2 = foo;
615 }
616
617 if (first) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100618 if (o->roff1)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100619 *(unsigned int *) o->roff1 = ul1;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100620 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100621 val_store(ilp, ul1, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100622 if (o->roff2)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100623 *(unsigned int *) o->roff2 = ul2;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100624 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100625 val_store(ilp, ul2, o->off2, 0, data);
Jens Axboee1f36502006-10-27 10:54:08 +0200626 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200627 if (curr == 1) {
628 if (o->roff3 && o->roff4) {
629 *(unsigned int *) o->roff3 = ul1;
630 *(unsigned int *) o->roff4 = ul2;
631 } else if (o->off3 && o->off4) {
632 val_store(ilp, ul1, o->off3, 0, data);
633 val_store(ilp, ul2, o->off4, 0, data);
634 }
635 }
636 if (curr == 2) {
637 if (o->roff5 && o->roff6) {
638 *(unsigned int *) o->roff5 = ul1;
639 *(unsigned int *) o->roff6 = ul2;
640 } else if (o->off5 && o->off6) {
641 val_store(ilp, ul1, o->off5, 0, data);
642 val_store(ilp, ul2, o->off6, 0, data);
643 }
644 }
645 if (!more) {
646 if (curr < 1) {
647 if (o->roff3 && o->roff4) {
648 *(unsigned int *) o->roff3 = ul1;
649 *(unsigned int *) o->roff4 = ul2;
650 } else if (o->off3 && o->off4) {
651 val_store(ilp, ul1, o->off3, 0, data);
652 val_store(ilp, ul2, o->off4, 0, data);
653 }
654 }
655 if (curr < 2) {
656 if (o->roff5 && o->roff6) {
657 *(unsigned int *) o->roff5 = ul1;
658 *(unsigned int *) o->roff6 = ul2;
659 } else if (o->off5 && o->off6) {
660 val_store(ilp, ul1, o->off5, 0, data);
661 val_store(ilp, ul2, o->off6, 0, data);
662 }
663 }
Jens Axboe17abbe82006-11-06 11:23:10 +0100664 }
665 }
666
Jens Axboee1f36502006-10-27 10:54:08 +0200667 break;
668 }
Jens Axboe74ba1802011-07-15 09:09:15 +0200669 case FIO_OPT_BOOL:
670 case FIO_OPT_STR_SET: {
Jens Axboee1f36502006-10-27 10:54:08 +0200671 fio_opt_int_fn *fn = o->cb;
672
Jens Axboe74ba1802011-07-15 09:09:15 +0200673 if (ptr)
674 ret = check_int(ptr, &il);
675 else if (o->type == FIO_OPT_BOOL)
676 ret = 1;
677 else
678 il = 1;
679
Jens Axboee1f36502006-10-27 10:54:08 +0200680 if (ret)
681 break;
682
Jens Axboedb8e0162007-01-10 13:41:26 +0100683 if (o->maxval && il > (int) o->maxval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200684 log_err("max value out of range: %d (%d max)\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100685 il, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100686 return 1;
687 }
688 if (o->minval && il < o->minval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200689 log_err("min value out of range: %d (%d min)\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100690 il, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100691 return 1;
692 }
Jens Axboee1f36502006-10-27 10:54:08 +0200693
Jens Axboe76a43db2007-01-11 13:24:44 +0100694 if (o->neg)
695 il = !il;
696
Jens Axboee1f36502006-10-27 10:54:08 +0200697 if (fn)
698 ret = fn(data, &il);
699 else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100700 if (first) {
701 if (o->roff1)
702 *(unsigned int *)o->roff1 = il;
703 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100704 val_store(ilp, il, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100705 }
706 if (!more) {
707 if (o->roff2)
708 *(unsigned int *) o->roff2 = il;
709 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100710 val_store(ilp, il, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100711 }
Jens Axboee1f36502006-10-27 10:54:08 +0200712 }
713 break;
714 }
Jens Axboe15ca1502008-04-07 09:26:02 +0200715 case FIO_OPT_DEPRECATED:
Jens Axboe06b0be62011-10-04 10:31:10 +0200716 log_info("Option %s is deprecated\n", o->name);
Jens Axboe15ca1502008-04-07 09:26:02 +0200717 break;
Jens Axboee1f36502006-10-27 10:54:08 +0200718 default:
Jens Axboe06b0be62011-10-04 10:31:10 +0200719 log_err("Bad option type %u\n", o->type);
Jens Axboee1f36502006-10-27 10:54:08 +0200720 ret = 1;
721 }
722
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200723 if (ret)
724 return ret;
725
Jens Axboed447a8c2009-07-17 22:26:15 +0200726 if (o->verify) {
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200727 ret = o->verify(o, data);
Jens Axboed447a8c2009-07-17 22:26:15 +0200728 if (ret) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200729 log_err("Correct format for offending option\n");
730 log_err("%20s: %s\n", o->name, o->help);
Jens Axboe06b0be62011-10-04 10:31:10 +0200731 show_option_help(o, 1);
Jens Axboed447a8c2009-07-17 22:26:15 +0200732 }
733 }
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200734
Jens Axboee1f36502006-10-27 10:54:08 +0200735 return ret;
736}
737
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200738static int handle_option(struct fio_option *o, const char *__ptr, void *data)
Jens Axboef90eff52006-11-06 11:08:21 +0100739{
Jens Axboeb62bdf22010-03-10 12:36:17 +0100740 char *o_ptr, *ptr, *ptr2;
741 int ret, done;
Jens Axboef90eff52006-11-06 11:08:21 +0100742
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200743 dprint(FD_PARSE, "handle_option=%s, ptr=%s\n", o->name, __ptr);
744
Jens Axboeb62bdf22010-03-10 12:36:17 +0100745 o_ptr = ptr = NULL;
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200746 if (__ptr)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100747 o_ptr = ptr = strdup(__ptr);
Jens Axboea3d741f2008-02-27 18:32:33 +0100748
Jens Axboef90eff52006-11-06 11:08:21 +0100749 /*
Jens Axboeb62bdf22010-03-10 12:36:17 +0100750 * See if we have another set of parameters, hidden after a comma.
751 * Do this before parsing this round, to check if we should
Jens Axboe787f7e92006-11-06 13:26:29 +0100752 * copy set 1 options to set 2.
Jens Axboef90eff52006-11-06 11:08:21 +0100753 */
Jens Axboeb62bdf22010-03-10 12:36:17 +0100754 done = 0;
755 ret = 1;
756 do {
757 int __ret;
758
759 ptr2 = NULL;
760 if (ptr &&
761 (o->type != FIO_OPT_STR_STORE) &&
Yu-ju Hong83349192011-08-13 00:53:44 +0200762 (o->type != FIO_OPT_STR) &&
763 (o->type != FIO_OPT_FLOAT_LIST)) {
Jens Axboeb62bdf22010-03-10 12:36:17 +0100764 ptr2 = strchr(ptr, ',');
765 if (ptr2 && *(ptr2 + 1) == '\0')
766 *ptr2 = '\0';
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200767 if (o->type != FIO_OPT_STR_MULTI && o->type != FIO_OPT_RANGE) {
Jens Axboeb62bdf22010-03-10 12:36:17 +0100768 if (!ptr2)
769 ptr2 = strchr(ptr, ':');
770 if (!ptr2)
771 ptr2 = strchr(ptr, '-');
772 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200773 } else if (ptr && o->type == FIO_OPT_FLOAT_LIST) {
774 ptr2 = strchr(ptr, ':');
Jens Axboeb62bdf22010-03-10 12:36:17 +0100775 }
776
777 /*
778 * Don't return early if parsing the first option fails - if
779 * we are doing multiple arguments, we can allow the first one
780 * being empty.
781 */
Yu-ju Hong83349192011-08-13 00:53:44 +0200782 __ret = __handle_option(o, ptr, data, !done, !!ptr2, done);
Jens Axboeb62bdf22010-03-10 12:36:17 +0100783 if (ret)
784 ret = __ret;
785
Jens Axboe0c9baf92007-01-11 15:59:26 +0100786 if (!ptr2)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100787 break;
Jens Axboe787f7e92006-11-06 13:26:29 +0100788
Jens Axboeb62bdf22010-03-10 12:36:17 +0100789 ptr = ptr2 + 1;
790 done++;
791 } while (1);
Jens Axboe787f7e92006-11-06 13:26:29 +0100792
Jens Axboeb62bdf22010-03-10 12:36:17 +0100793 if (o_ptr)
794 free(o_ptr);
795 return ret;
Jens Axboef90eff52006-11-06 11:08:21 +0100796}
797
Steven Langde890a12011-11-09 14:03:34 +0100798static struct fio_option *get_option(char *opt,
Jens Axboe07b32322010-03-05 09:48:44 +0100799 struct fio_option *options, char **post)
Jens Axboe3b8b7132008-06-10 19:46:23 +0200800{
801 struct fio_option *o;
802 char *ret;
803
804 ret = strchr(opt, '=');
805 if (ret) {
806 *post = ret;
807 *ret = '\0';
Steven Langde890a12011-11-09 14:03:34 +0100808 ret = opt;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200809 (*post)++;
Jens Axboe43c129b2008-12-08 14:06:42 +0100810 strip_blank_end(ret);
Jens Axboe07b32322010-03-05 09:48:44 +0100811 o = find_option(options, ret);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200812 } else {
Jens Axboe07b32322010-03-05 09:48:44 +0100813 o = find_option(options, opt);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200814 *post = NULL;
815 }
816
817 return o;
818}
819
820static int opt_cmp(const void *p1, const void *p2)
821{
Steven Langde890a12011-11-09 14:03:34 +0100822 struct fio_option *o;
823 char *s, *foo;
Jens Axboe8cdabc12008-11-19 12:31:43 +0100824 int prio1, prio2;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200825
Jens Axboe8cdabc12008-11-19 12:31:43 +0100826 prio1 = prio2 = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200827
Steven Langde890a12011-11-09 14:03:34 +0100828 if (*(char **)p1) {
829 s = strdup(*((char **) p1));
830 o = get_option(s, fio_options, &foo);
831 if (o)
832 prio1 = o->prio;
833 free(s);
834 }
835 if (*(char **)p2) {
836 s = strdup(*((char **) p2));
837 o = get_option(s, fio_options, &foo);
838 if (o)
839 prio2 = o->prio;
840 free(s);
841 }
842
Jens Axboe8cdabc12008-11-19 12:31:43 +0100843 return prio2 - prio1;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200844}
845
846void sort_options(char **opts, struct fio_option *options, int num_opts)
847{
848 fio_options = options;
849 qsort(opts, num_opts, sizeof(char *), opt_cmp);
850 fio_options = NULL;
851}
852
Jens Axboeb4692822006-10-27 13:43:22 +0200853int parse_cmd_option(const char *opt, const char *val,
Jens Axboe07b32322010-03-05 09:48:44 +0100854 struct fio_option *options, void *data)
Jens Axboeb4692822006-10-27 13:43:22 +0200855{
856 struct fio_option *o;
857
Jens Axboe07b32322010-03-05 09:48:44 +0100858 o = find_option(options, opt);
Jens Axboeb4692822006-10-27 13:43:22 +0200859 if (!o) {
Jens Axboe06b0be62011-10-04 10:31:10 +0200860 log_err("Bad option <%s>\n", opt);
Jens Axboeb4692822006-10-27 13:43:22 +0200861 return 1;
862 }
863
Jens Axboeb1508cf2006-11-02 09:12:40 +0100864 if (!handle_option(o, val, data))
865 return 0;
866
Jens Axboe06b0be62011-10-04 10:31:10 +0200867 log_err("fio: failed parsing %s=%s\n", opt, val);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100868 return 1;
Jens Axboeb4692822006-10-27 13:43:22 +0200869}
870
Steven Langde890a12011-11-09 14:03:34 +0100871int parse_option(char *opt, const char *input,
872 struct fio_option *options, struct fio_option **o, void *data)
Jens Axboee1f36502006-10-27 10:54:08 +0200873{
Steven Langd0c814e2011-10-28 08:37:13 +0200874 char *post;
Jens Axboee1f36502006-10-27 10:54:08 +0200875
Steven Langd0c814e2011-10-28 08:37:13 +0200876 if (!opt) {
877 log_err("fio: failed parsing %s\n", input);
Steven Langde890a12011-11-09 14:03:34 +0100878 *o = NULL;
Jens Axboe38789b52010-03-03 09:23:20 +0100879 return 1;
Steven Langd0c814e2011-10-28 08:37:13 +0200880 }
Jens Axboee1f36502006-10-27 10:54:08 +0200881
Steven Langde890a12011-11-09 14:03:34 +0100882 *o = get_option(opt, options, &post);
883 if (!*o) {
884 if (post) {
885 int len = strlen(opt);
886 if (opt + len + 1 != post)
887 memmove(opt + len + 1, post, strlen(post));
888 opt[len] = '=';
889 }
Jens Axboee1f36502006-10-27 10:54:08 +0200890 return 1;
891 }
892
Steven Langde890a12011-11-09 14:03:34 +0100893 if (!handle_option(*o, post, data)) {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100894 return 0;
Jens Axboe0401bca2007-03-29 11:00:43 +0200895 }
Jens Axboeb1508cf2006-11-02 09:12:40 +0100896
Steven Langd0c814e2011-10-28 08:37:13 +0200897 log_err("fio: failed parsing %s\n", input);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100898 return 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200899}
Jens Axboefd28ca42007-01-09 21:20:13 +0100900
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100901/*
902 * Option match, levenshtein distance. Handy for not quite remembering what
903 * the option name is.
904 */
905static int string_distance(const char *s1, const char *s2)
906{
907 unsigned int s1_len = strlen(s1);
908 unsigned int s2_len = strlen(s2);
909 unsigned int *p, *q, *r;
910 unsigned int i, j;
911
912 p = malloc(sizeof(unsigned int) * (s2_len + 1));
913 q = malloc(sizeof(unsigned int) * (s2_len + 1));
914
915 p[0] = 0;
916 for (i = 1; i <= s2_len; i++)
917 p[i] = p[i - 1] + 1;
918
919 for (i = 1; i <= s1_len; i++) {
920 q[0] = p[0] + 1;
921 for (j = 1; j <= s2_len; j++) {
922 unsigned int sub = p[j - 1];
923
924 if (s1[i - 1] != s2[j - 1])
925 sub++;
926
927 q[j] = min(p[j] + 1, min(q[j - 1] + 1, sub));
928 }
929 r = p;
930 p = q;
931 q = r;
932 }
933
934 i = p[s2_len];
935 free(p);
936 free(q);
937 return i;
938}
939
Jens Axboeafdf9352007-07-31 16:14:34 +0200940static struct fio_option *find_child(struct fio_option *options,
941 struct fio_option *o)
942{
943 struct fio_option *__o;
944
Jens Axboefdf28742007-07-31 23:06:09 +0200945 for (__o = options + 1; __o->name; __o++)
946 if (__o->parent && !strcmp(__o->parent, o->name))
Jens Axboeafdf9352007-07-31 16:14:34 +0200947 return __o;
948
949 return NULL;
950}
951
Jens Axboe323d9112008-03-01 15:12:14 +0100952static void __print_option(struct fio_option *o, struct fio_option *org,
953 int level)
Jens Axboeafdf9352007-07-31 16:14:34 +0200954{
955 char name[256], *p;
Jens Axboe323d9112008-03-01 15:12:14 +0100956 int depth;
Jens Axboeafdf9352007-07-31 16:14:34 +0200957
958 if (!o)
959 return;
Jens Axboeef9aff52007-07-31 22:56:53 +0200960 if (!org)
961 org = o;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100962
Jens Axboeafdf9352007-07-31 16:14:34 +0200963 p = name;
Jens Axboe323d9112008-03-01 15:12:14 +0100964 depth = level;
965 while (depth--)
966 p += sprintf(p, "%s", " ");
Jens Axboeafdf9352007-07-31 16:14:34 +0200967
968 sprintf(p, "%s", o->name);
969
Jens Axboe28d7c362011-10-05 20:30:24 +0200970 log_info("%-24s: %s\n", name, o->help);
Jens Axboe323d9112008-03-01 15:12:14 +0100971}
972
973static void print_option(struct fio_option *o)
974{
975 struct fio_option *parent;
976 struct fio_option *__o;
977 unsigned int printed;
978 unsigned int level;
979
980 __print_option(o, NULL, 0);
981 parent = o;
982 level = 0;
983 do {
984 level++;
985 printed = 0;
986
987 while ((__o = find_child(o, parent)) != NULL) {
988 __print_option(__o, o, level);
989 o = __o;
990 printed++;
991 }
992
993 parent = o;
994 } while (printed);
Jens Axboeafdf9352007-07-31 16:14:34 +0200995}
996
Jens Axboe07b32322010-03-05 09:48:44 +0100997int show_cmd_help(struct fio_option *options, const char *name)
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100998{
999 struct fio_option *o, *closest;
Jens Axboed091d092010-04-01 19:56:23 +02001000 unsigned int best_dist = -1U;
Jens Axboe29fc6af2007-01-09 21:22:02 +01001001 int found = 0;
Jens Axboe320beef2007-03-01 10:44:12 +01001002 int show_all = 0;
1003
1004 if (!name || !strcmp(name, "all"))
1005 show_all = 1;
Jens Axboefd28ca42007-01-09 21:20:13 +01001006
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001007 closest = NULL;
1008 best_dist = -1;
Jens Axboe4945ba12007-01-11 14:36:56 +01001009 for (o = &options[0]; o->name; o++) {
Jens Axboe320beef2007-03-01 10:44:12 +01001010 int match = 0;
1011
Jens Axboe15ca1502008-04-07 09:26:02 +02001012 if (o->type == FIO_OPT_DEPRECATED)
1013 continue;
Jens Axboe07b32322010-03-05 09:48:44 +01001014 if (!exec_profile && o->prof_name)
1015 continue;
Jens Axboe15ca1502008-04-07 09:26:02 +02001016
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001017 if (name) {
Jens Axboe7f9348f2007-03-15 14:09:28 +01001018 if (!strcmp(name, o->name) ||
1019 (o->alias && !strcmp(name, o->alias)))
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001020 match = 1;
1021 else {
1022 unsigned int dist;
1023
1024 dist = string_distance(name, o->name);
1025 if (dist < best_dist) {
1026 best_dist = dist;
1027 closest = o;
1028 }
1029 }
1030 }
Jens Axboefd28ca42007-01-09 21:20:13 +01001031
1032 if (show_all || match) {
Jens Axboe29fc6af2007-01-09 21:22:02 +01001033 found = 1;
Jens Axboec167ded2007-03-14 13:02:53 +01001034 if (match)
Jens Axboe28d7c362011-10-05 20:30:24 +02001035 log_info("%20s: %s\n", o->name, o->help);
Jens Axboec167ded2007-03-14 13:02:53 +01001036 if (show_all) {
Jens Axboeafdf9352007-07-31 16:14:34 +02001037 if (!o->parent)
Jens Axboe323d9112008-03-01 15:12:14 +01001038 print_option(o);
Jens Axboe4945ba12007-01-11 14:36:56 +01001039 continue;
Jens Axboec167ded2007-03-14 13:02:53 +01001040 }
Jens Axboefd28ca42007-01-09 21:20:13 +01001041 }
1042
Jens Axboe70df2f12007-01-11 14:04:47 +01001043 if (!match)
1044 continue;
1045
Jens Axboe06b0be62011-10-04 10:31:10 +02001046 show_option_help(o, 0);
Jens Axboefd28ca42007-01-09 21:20:13 +01001047 }
1048
Jens Axboe29fc6af2007-01-09 21:22:02 +01001049 if (found)
1050 return 0;
Jens Axboefd28ca42007-01-09 21:20:13 +01001051
Jens Axboe28d7c362011-10-05 20:30:24 +02001052 log_err("No such command: %s", name);
Jens Axboed091d092010-04-01 19:56:23 +02001053
1054 /*
1055 * Only print an appropriately close option, one where the edit
1056 * distance isn't too big. Otherwise we get crazy matches.
1057 */
1058 if (closest && best_dist < 3) {
Jens Axboe28d7c362011-10-05 20:30:24 +02001059 log_info(" - showing closest match\n");
1060 log_info("%20s: %s\n", closest->name, closest->help);
Jens Axboe06b0be62011-10-04 10:31:10 +02001061 show_option_help(closest, 0);
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001062 } else
Jens Axboe28d7c362011-10-05 20:30:24 +02001063 log_info("\n");
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001064
Jens Axboe29fc6af2007-01-09 21:22:02 +01001065 return 1;
Jens Axboefd28ca42007-01-09 21:20:13 +01001066}
Jens Axboeee738492007-01-10 11:23:16 +01001067
Jens Axboe13335dd2007-01-10 13:14:02 +01001068/*
1069 * Handle parsing of default parameters.
1070 */
Jens Axboeee738492007-01-10 11:23:16 +01001071void fill_default_options(void *data, struct fio_option *options)
1072{
Jens Axboe4945ba12007-01-11 14:36:56 +01001073 struct fio_option *o;
Jens Axboeee738492007-01-10 11:23:16 +01001074
Jens Axboea3d741f2008-02-27 18:32:33 +01001075 dprint(FD_PARSE, "filling default options\n");
1076
Jens Axboe4945ba12007-01-11 14:36:56 +01001077 for (o = &options[0]; o->name; o++)
Jens Axboeee738492007-01-10 11:23:16 +01001078 if (o->def)
1079 handle_option(o, o->def, data);
Jens Axboeee738492007-01-10 11:23:16 +01001080}
Jens Axboe13335dd2007-01-10 13:14:02 +01001081
Jens Axboe9f988e22010-03-04 10:42:38 +01001082void option_init(struct fio_option *o)
1083{
1084 if (o->type == FIO_OPT_DEPRECATED)
1085 return;
1086 if (o->type == FIO_OPT_BOOL) {
1087 o->minval = 0;
1088 o->maxval = 1;
1089 }
Jens Axboed4fc2f02012-09-24 14:32:26 +02001090 if (o->type == FIO_OPT_INT) {
1091 if (!o->maxval)
1092 o->maxval = UINT_MAX;
1093 }
Yu-ju Hong83349192011-08-13 00:53:44 +02001094 if (o->type == FIO_OPT_FLOAT_LIST) {
1095 o->minfp = NAN;
1096 o->maxfp = NAN;
1097 }
Jens Axboe9f988e22010-03-04 10:42:38 +01001098 if (o->type == FIO_OPT_STR_SET && o->def) {
Jens Axboe06b0be62011-10-04 10:31:10 +02001099 log_err("Option %s: string set option with"
Jens Axboe9f988e22010-03-04 10:42:38 +01001100 " default will always be true\n", o->name);
1101 }
Jens Axboe06b0be62011-10-04 10:31:10 +02001102 if (!o->cb && (!o->off1 && !o->roff1))
1103 log_err("Option %s: neither cb nor offset given\n", o->name);
Jens Axboe5f6ddf12010-03-09 20:40:44 +01001104 if (o->type == FIO_OPT_STR || o->type == FIO_OPT_STR_STORE ||
1105 o->type == FIO_OPT_STR_MULTI)
Jens Axboe9f988e22010-03-04 10:42:38 +01001106 return;
Jens Axboee2de69d2010-03-04 14:05:48 +01001107 if (o->cb && ((o->off1 || o->off2 || o->off3 || o->off4) ||
1108 (o->roff1 || o->roff2 || o->roff3 || o->roff4))) {
Jens Axboe06b0be62011-10-04 10:31:10 +02001109 log_err("Option %s: both cb and offset given\n", o->name);
Jens Axboe9f988e22010-03-04 10:42:38 +01001110 }
1111}
1112
Jens Axboe13335dd2007-01-10 13:14:02 +01001113/*
1114 * Sanitize the options structure. For now it just sets min/max for bool
Jens Axboe5b0a8882007-01-11 14:40:27 +01001115 * values and whether both callback and offsets are given.
Jens Axboe13335dd2007-01-10 13:14:02 +01001116 */
1117void options_init(struct fio_option *options)
1118{
Jens Axboe4945ba12007-01-11 14:36:56 +01001119 struct fio_option *o;
Jens Axboe13335dd2007-01-10 13:14:02 +01001120
Jens Axboea3d741f2008-02-27 18:32:33 +01001121 dprint(FD_PARSE, "init options\n");
1122
Jens Axboe9f988e22010-03-04 10:42:38 +01001123 for (o = &options[0]; o->name; o++)
1124 option_init(o);
Jens Axboe13335dd2007-01-10 13:14:02 +01001125}
Jens Axboe7e356b22011-10-14 10:55:16 +02001126
1127void options_free(struct fio_option *options, void *data)
1128{
1129 struct fio_option *o;
1130 char **ptr;
1131
1132 dprint(FD_PARSE, "free options\n");
1133
1134 for (o = &options[0]; o->name; o++) {
Steven Langde890a12011-11-09 14:03:34 +01001135 if (o->type != FIO_OPT_STR_STORE || !o->off1)
Jens Axboe7e356b22011-10-14 10:55:16 +02001136 continue;
1137
1138 ptr = td_var(data, o->off1);
1139 if (*ptr) {
1140 free(*ptr);
1141 *ptr = NULL;
1142 }
1143 }
1144}