blob: 0bbb0b30dafd5c8b57ac842e28bdaeba789c6022 [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 Axboee25839d2012-11-06 10:49:42 +010017#include "minmax.h"
Jens Axboecb2c86f2006-10-26 13:48:34 +020018
Jens Axboe3b8b7132008-06-10 19:46:23 +020019static struct fio_option *fio_options;
Jens Axboed6978a32009-07-18 21:04:09 +020020extern unsigned int fio_get_kb_base(void *);
Jens Axboe3b8b7132008-06-10 19:46:23 +020021
Jens Axboef0857372007-03-19 13:15:23 +010022static int vp_cmp(const void *p1, const void *p2)
23{
24 const struct value_pair *vp1 = p1;
25 const struct value_pair *vp2 = p2;
26
27 return strlen(vp2->ival) - strlen(vp1->ival);
28}
29
Jens Axboece952ab2011-08-31 14:29:22 -060030static void posval_sort(struct fio_option *o, struct value_pair *vpmap)
Jens Axboef0857372007-03-19 13:15:23 +010031{
32 const struct value_pair *vp;
33 int entries;
34
35 memset(vpmap, 0, PARSE_MAX_VP * sizeof(struct value_pair));
36
37 for (entries = 0; entries < PARSE_MAX_VP; entries++) {
38 vp = &o->posval[entries];
39 if (!vp->ival || vp->ival[0] == '\0')
40 break;
41
42 memcpy(&vpmap[entries], vp, sizeof(*vp));
43 }
44
45 qsort(vpmap, entries, sizeof(struct value_pair), vp_cmp);
46}
47
Jens Axboe06b0be62011-10-04 10:31:10 +020048static void show_option_range(struct fio_option *o,
49 int (*logger)(const char *format, ...))
Jens Axboeb1ec1da2007-02-23 10:29:16 +010050{
Yu-ju Hong83349192011-08-13 00:53:44 +020051 if (o->type == FIO_OPT_FLOAT_LIST){
52 if (isnan(o->minfp) && isnan(o->maxfp))
53 return;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010054
Jens Axboe06b0be62011-10-04 10:31:10 +020055 logger("%20s: min=%f", "range", o->minfp);
Yu-ju Hong83349192011-08-13 00:53:44 +020056 if (!isnan(o->maxfp))
Jens Axboe06b0be62011-10-04 10:31:10 +020057 logger(", max=%f", o->maxfp);
58 logger("\n");
Yu-ju Hong83349192011-08-13 00:53:44 +020059 } else {
60 if (!o->minval && !o->maxval)
61 return;
62
Jens Axboe06b0be62011-10-04 10:31:10 +020063 logger("%20s: min=%d", "range", o->minval);
Yu-ju Hong83349192011-08-13 00:53:44 +020064 if (o->maxval)
Jens Axboe06b0be62011-10-04 10:31:10 +020065 logger(", max=%d", o->maxval);
66 logger("\n");
Yu-ju Hong83349192011-08-13 00:53:44 +020067 }
Jens Axboeb1ec1da2007-02-23 10:29:16 +010068}
69
70static void show_option_values(struct fio_option *o)
71{
Jens Axboea3073f42010-03-05 10:06:15 +010072 int i;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010073
Jens Axboea3073f42010-03-05 10:06:15 +010074 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboe78372132007-03-14 13:24:07 +010075 const struct value_pair *vp = &o->posval[i];
76
77 if (!vp->ival)
Jens Axboea3073f42010-03-05 10:06:15 +010078 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010079
Jens Axboe06b0be62011-10-04 10:31:10 +020080 log_info("%20s: %-10s", i == 0 ? "valid values" : "", vp->ival);
Jens Axboe78372132007-03-14 13:24:07 +010081 if (vp->help)
Jens Axboe06b0be62011-10-04 10:31:10 +020082 log_info(" %s", vp->help);
83 log_info("\n");
Jens Axboea3073f42010-03-05 10:06:15 +010084 }
Jens Axboeb1ec1da2007-02-23 10:29:16 +010085
86 if (i)
Jens Axboe06b0be62011-10-04 10:31:10 +020087 log_info("\n");
Jens Axboeb1ec1da2007-02-23 10:29:16 +010088}
89
Jens Axboe06b0be62011-10-04 10:31:10 +020090static void show_option_help(struct fio_option *o, int is_err)
Jens Axboed447a8c2009-07-17 22:26:15 +020091{
92 const char *typehelp[] = {
Jens Axboe07b32322010-03-05 09:48:44 +010093 "invalid",
Jens Axboed447a8c2009-07-17 22:26:15 +020094 "string (opt=bla)",
Jens Axboeae3fb6f2010-09-14 13:10:35 +020095 "string (opt=bla)",
Jens Axboed447a8c2009-07-17 22:26:15 +020096 "string with possible k/m/g postfix (opt=4k)",
97 "string with time postfix (opt=10s)",
98 "string (opt=bla)",
99 "string with dual range (opt=1k-4k,4k-8k)",
100 "integer value (opt=100)",
101 "boolean value (opt=1)",
Yu-ju Hong83349192011-08-13 00:53:44 +0200102 "list of floating point values separated by ':' (opt=5.9:7.8)",
Jens Axboed447a8c2009-07-17 22:26:15 +0200103 "no argument (opt)",
Jens Axboe07b32322010-03-05 09:48:44 +0100104 "deprecated",
Jens Axboed447a8c2009-07-17 22:26:15 +0200105 };
Jens Axboe06b0be62011-10-04 10:31:10 +0200106 int (*logger)(const char *format, ...);
107
108 if (is_err)
109 logger = log_err;
110 else
111 logger = log_info;
Jens Axboed447a8c2009-07-17 22:26:15 +0200112
113 if (o->alias)
Jens Axboe06b0be62011-10-04 10:31:10 +0200114 logger("%20s: %s\n", "alias", o->alias);
Jens Axboed447a8c2009-07-17 22:26:15 +0200115
Jens Axboe06b0be62011-10-04 10:31:10 +0200116 logger("%20s: %s\n", "type", typehelp[o->type]);
117 logger("%20s: %s\n", "default", o->def ? o->def : "no default");
Jens Axboe07b32322010-03-05 09:48:44 +0100118 if (o->prof_name)
Jens Axboe06b0be62011-10-04 10:31:10 +0200119 logger("%20s: only for profile '%s'\n", "valid", o->prof_name);
120 show_option_range(o, logger);
Jens Axboed447a8c2009-07-17 22:26:15 +0200121 show_option_values(o);
122}
123
Jens Axboecb2c86f2006-10-26 13:48:34 +0200124static unsigned long get_mult_time(char c)
125{
126 switch (c) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100127 case 'm':
128 case 'M':
129 return 60;
130 case 'h':
131 case 'H':
132 return 60 * 60;
133 case 'd':
134 case 'D':
135 return 24 * 60 * 60;
136 default:
137 return 1;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200138 }
139}
140
Jens Axboe7bb59102011-07-12 19:47:03 +0200141static unsigned long long __get_mult_bytes(const char *p, void *data,
142 int *percent)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200143{
Jens Axboed6978a32009-07-18 21:04:09 +0200144 unsigned int kb_base = fio_get_kb_base(data);
Jens Axboea639f0b2009-07-18 08:25:35 +0200145 unsigned long long ret = 1;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200146 unsigned int i, pow = 0, mult = kb_base;
147 char *c;
Jens Axboea639f0b2009-07-18 08:25:35 +0200148
Jens Axboe57fc29f2010-06-23 22:24:07 +0200149 if (!p)
150 return 1;
Jens Axboea639f0b2009-07-18 08:25:35 +0200151
Jens Axboe57fc29f2010-06-23 22:24:07 +0200152 c = strdup(p);
153
154 for (i = 0; i < strlen(c); i++)
155 c[i] = tolower(c[i]);
156
157 if (!strcmp("pib", c)) {
158 pow = 5;
159 mult = 1000;
160 } else if (!strcmp("tib", c)) {
161 pow = 4;
162 mult = 1000;
163 } else if (!strcmp("gib", c)) {
164 pow = 3;
165 mult = 1000;
166 } else if (!strcmp("mib", c)) {
167 pow = 2;
168 mult = 1000;
169 } else if (!strcmp("kib", c)) {
170 pow = 1;
171 mult = 1000;
172 } else if (!strcmp("p", c) || !strcmp("pb", c))
173 pow = 5;
174 else if (!strcmp("t", c) || !strcmp("tb", c))
175 pow = 4;
176 else if (!strcmp("g", c) || !strcmp("gb", c))
177 pow = 3;
178 else if (!strcmp("m", c) || !strcmp("mb", c))
179 pow = 2;
180 else if (!strcmp("k", c) || !strcmp("kb", c))
181 pow = 1;
Jens Axboe7bb59102011-07-12 19:47:03 +0200182 else if (!strcmp("%", c)) {
183 *percent = 1;
Jens Axboee721c572012-02-09 20:55:29 +0100184 free(c);
Jens Axboe7bb59102011-07-12 19:47:03 +0200185 return ret;
186 }
Jens Axboe57fc29f2010-06-23 22:24:07 +0200187
188 while (pow--)
189 ret *= (unsigned long long) mult;
190
191 free(c);
Jens Axboea639f0b2009-07-18 08:25:35 +0200192 return ret;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200193}
194
Jens Axboe7bb59102011-07-12 19:47:03 +0200195static unsigned long long get_mult_bytes(const char *str, int len, void *data,
Jens Axboe6925dd32011-09-07 22:10:11 +0200196 int *percent)
Jens Axboe57fc29f2010-06-23 22:24:07 +0200197{
Jens Axboe55ed9632011-03-27 20:55:09 +0200198 const char *p = str;
Jens Axboeba4ddd62011-09-07 22:11:00 +0200199 int digit_seen = 0;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200200
Jens Axboe1d1c1872010-07-29 10:50:05 +0200201 if (len < 2)
Jens Axboe7bb59102011-07-12 19:47:03 +0200202 return __get_mult_bytes(str, data, percent);
Jens Axboe1d1c1872010-07-29 10:50:05 +0200203
Steven Langd0c814e2011-10-28 08:37:13 +0200204 /*
205 * Go forward until we hit a non-digit, or +/- sign
206 */
Jens Axboe55ed9632011-03-27 20:55:09 +0200207 while ((p - str) <= len) {
Jens Axboeba4ddd62011-09-07 22:11:00 +0200208 if (!isdigit((int) *p) &&
209 (((*p != '+') && (*p != '-')) || digit_seen))
Jens Axboe55ed9632011-03-27 20:55:09 +0200210 break;
Jens Axboe3c703d12011-09-21 09:27:24 +0200211 digit_seen |= isdigit((int) *p);
Jens Axboe55ed9632011-03-27 20:55:09 +0200212 p++;
213 }
214
Jens Axboe7bb59102011-07-12 19:47:03 +0200215 if (!isalpha((int) *p) && (*p != '%'))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200216 p = NULL;
217
Jens Axboe7bb59102011-07-12 19:47:03 +0200218 return __get_mult_bytes(p, data, percent);
Jens Axboe57fc29f2010-06-23 22:24:07 +0200219}
220
Jens Axboecb2c86f2006-10-26 13:48:34 +0200221/*
Yu-ju Hong83349192011-08-13 00:53:44 +0200222 * Convert string into a floating number. Return 1 for success and 0 otherwise.
223 */
Jens Axboee25839d2012-11-06 10:49:42 +0100224int str_to_float(const char *str, double *val)
Yu-ju Hong83349192011-08-13 00:53:44 +0200225{
226 return (1 == sscanf(str, "%lf", val));
227}
228
229/*
Jens Axboee1f36502006-10-27 10:54:08 +0200230 * convert string into decimal value, noting any size suffix
Jens Axboecb2c86f2006-10-26 13:48:34 +0200231 */
Jens Axboe6925dd32011-09-07 22:10:11 +0200232int str_to_decimal(const char *str, long long *val, int kilo, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200233{
Jens Axboeb347f9d2009-03-09 14:15:21 +0100234 int len, base;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200235
Jens Axboecb2c86f2006-10-26 13:48:34 +0200236 len = strlen(str);
Jens Axboef90eff52006-11-06 11:08:21 +0100237 if (!len)
238 return 1;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200239
Jens Axboeb347f9d2009-03-09 14:15:21 +0100240 if (strstr(str, "0x") || strstr(str, "0X"))
241 base = 16;
242 else
243 base = 10;
244
245 *val = strtoll(str, NULL, base);
Jens Axboecda866c2007-01-10 16:02:32 +0100246 if (*val == LONG_MAX && errno == ERANGE)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200247 return 1;
248
Jens Axboe7bb59102011-07-12 19:47:03 +0200249 if (kilo) {
250 unsigned long long mult;
251 int perc = 0;
252
Jens Axboe6925dd32011-09-07 22:10:11 +0200253 mult = get_mult_bytes(str, len, data, &perc);
Jens Axboe7bb59102011-07-12 19:47:03 +0200254 if (perc)
255 *val = -1ULL - *val;
256 else
257 *val *= mult;
258 } else
Jens Axboecb2c86f2006-10-26 13:48:34 +0200259 *val *= get_mult_time(str[len - 1]);
Jens Axboe787f7e92006-11-06 13:26:29 +0100260
Jens Axboecb2c86f2006-10-26 13:48:34 +0200261 return 0;
262}
263
Jens Axboe6925dd32011-09-07 22:10:11 +0200264static int check_str_bytes(const char *p, long long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200265{
Jens Axboe6925dd32011-09-07 22:10:11 +0200266 return str_to_decimal(p, val, 1, data);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200267}
268
Jens Axboe63f29372007-01-10 13:20:09 +0100269static int check_str_time(const char *p, long long *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200270{
Jens Axboe6925dd32011-09-07 22:10:11 +0200271 return str_to_decimal(p, val, 0, NULL);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200272}
273
274void strip_blank_front(char **p)
275{
276 char *s = *p;
277
Jens Axboe4c8e9642011-10-15 14:37:38 +0200278 if (!strlen(s))
279 return;
Jens Axboe76cd9372011-07-08 21:14:57 +0200280 while (isspace((int) *s))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200281 s++;
Jens Axboe4d651da2007-03-28 19:34:53 +0200282
283 *p = s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200284}
285
286void strip_blank_end(char *p)
287{
Jens Axboe853ee7f2009-03-06 20:29:29 +0100288 char *start = p, *s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200289
Jens Axboe4c8e9642011-10-15 14:37:38 +0200290 if (!strlen(p))
291 return;
292
Jens Axboe523bfad2007-04-04 11:04:06 +0200293 s = strchr(p, ';');
294 if (s)
295 *s = '\0';
296 s = strchr(p, '#');
297 if (s)
298 *s = '\0';
299 if (s)
300 p = s;
301
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200302 s = p + strlen(p);
Jens Axboe76cd9372011-07-08 21:14:57 +0200303 while ((isspace((int) *s) || iscntrl((int) *s)) && (s > start))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200304 s--;
305
306 *(s + 1) = '\0';
307}
308
Jens Axboed6978a32009-07-18 21:04:09 +0200309static int check_range_bytes(const char *str, long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200310{
Jens Axboe57fc29f2010-06-23 22:24:07 +0200311 long long __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200312
Jens Axboe6925dd32011-09-07 22:10:11 +0200313 if (!str_to_decimal(str, &__val, 1, data)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200314 *val = __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200315 return 0;
316 }
317
Jens Axboecb2c86f2006-10-26 13:48:34 +0200318 return 1;
319}
320
Jens Axboe63f29372007-01-10 13:20:09 +0100321static int check_int(const char *p, int *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200322{
Jens Axboe787f7e92006-11-06 13:26:29 +0100323 if (!strlen(p))
324 return 1;
Jens Axboed78ee462007-08-10 14:03:20 +0200325 if (strstr(p, "0x") || strstr(p, "0X")) {
Jens Axboea61bdfd2007-07-30 09:07:04 +0200326 if (sscanf(p, "%x", val) == 1)
327 return 0;
328 } else {
329 if (sscanf(p, "%u", val) == 1)
330 return 0;
331 }
Jens Axboecb2c86f2006-10-26 13:48:34 +0200332
333 return 1;
334}
335
Jens Axboe808def72010-07-14 16:27:02 -0600336static int opt_len(const char *str)
337{
338 char *postfix;
339
340 postfix = strchr(str, ':');
341 if (!postfix)
342 return strlen(str);
343
344 return (int)(postfix - str);
345}
346
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100347#define val_store(ptr, val, off, or, data) \
Jens Axboe17abbe82006-11-06 11:23:10 +0100348 do { \
349 ptr = td_var((data), (off)); \
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100350 if ((or)) \
351 *ptr |= (val); \
352 else \
353 *ptr = (val); \
Jens Axboe17abbe82006-11-06 11:23:10 +0100354 } while (0)
355
Jens Axboef90eff52006-11-06 11:08:21 +0100356static int __handle_option(struct fio_option *o, const char *ptr, void *data,
Yu-ju Hong83349192011-08-13 00:53:44 +0200357 int first, int more, int curr)
Jens Axboee1f36502006-10-27 10:54:08 +0200358{
Jens Axboe63f29372007-01-10 13:20:09 +0100359 int il, *ilp;
Yu-ju Hong83349192011-08-13 00:53:44 +0200360 double* flp;
Jens Axboe63f29372007-01-10 13:20:09 +0100361 long long ull, *ullp;
362 long ul1, ul2;
Yu-ju Hong83349192011-08-13 00:53:44 +0200363 double uf;
Jens Axboeb4692822006-10-27 13:43:22 +0200364 char **cp;
Jens Axboee42b01e2011-05-05 12:05:10 -0600365 int ret = 0, is_time = 0;
Jens Axboec44b1ff2011-08-30 20:43:53 -0600366 const struct value_pair *vp;
367 struct value_pair posval[PARSE_MAX_VP];
368 int i, all_skipped = 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200369
Jens Axboea3d741f2008-02-27 18:32:33 +0100370 dprint(FD_PARSE, "__handle_option=%s, type=%d, ptr=%s\n", o->name,
371 o->type, ptr);
372
Jens Axboee3cedca2008-11-19 19:57:52 +0100373 if (!ptr && o->type != FIO_OPT_STR_SET && o->type != FIO_OPT_STR) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200374 log_err("Option %s requires an argument\n", o->name);
Jens Axboe08e26e32006-11-21 13:15:10 +0100375 return 1;
376 }
377
Jens Axboee1f36502006-10-27 10:54:08 +0200378 switch (o->type) {
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100379 case FIO_OPT_STR:
380 case FIO_OPT_STR_MULTI: {
Jens Axboee1f36502006-10-27 10:54:08 +0200381 fio_opt_str_fn *fn = o->cb;
382
Jens Axboef0857372007-03-19 13:15:23 +0100383 posval_sort(o, posval);
384
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100385 ret = 1;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100386 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboef0857372007-03-19 13:15:23 +0100387 vp = &posval[i];
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100388 if (!vp->ival || vp->ival[0] == '\0')
Jens Axboea3073f42010-03-05 10:06:15 +0100389 continue;
Jens Axboeae2ddba2010-03-10 12:49:03 +0100390 all_skipped = 0;
Jens Axboe808def72010-07-14 16:27:02 -0600391 if (!strncmp(vp->ival, ptr, opt_len(ptr))) {
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100392 ret = 0;
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100393 if (o->roff1) {
394 if (vp->or)
395 *(unsigned int *) o->roff1 |= vp->oval;
396 else
397 *(unsigned int *) o->roff1 = vp->oval;
398 } else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100399 if (!o->off1)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100400 continue;
401 val_store(ilp, vp->oval, o->off1, vp->or, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100402 }
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100403 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100404 }
405 }
406
Jens Axboeae2ddba2010-03-10 12:49:03 +0100407 if (ret && !all_skipped)
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100408 show_option_values(o);
409 else if (fn)
410 ret = fn(data, ptr);
Jens Axboee1f36502006-10-27 10:54:08 +0200411 break;
412 }
Jens Axboee42b01e2011-05-05 12:05:10 -0600413 case FIO_OPT_STR_VAL_TIME:
414 is_time = 1;
Jens Axboef7fa2652009-03-09 14:20:20 +0100415 case FIO_OPT_INT:
Jens Axboee42b01e2011-05-05 12:05:10 -0600416 case FIO_OPT_STR_VAL: {
417 fio_opt_str_val_fn *fn = o->cb;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200418 char tmp[128], *p;
419
420 strncpy(tmp, ptr, sizeof(tmp) - 1);
421 p = strchr(tmp, ',');
422 if (p)
423 *p = '\0';
Jens Axboee1f36502006-10-27 10:54:08 +0200424
Jens Axboee42b01e2011-05-05 12:05:10 -0600425 if (is_time)
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200426 ret = check_str_time(tmp, &ull);
Jens Axboee42b01e2011-05-05 12:05:10 -0600427 else
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200428 ret = check_str_bytes(tmp, &ull, data);
Jens Axboee42b01e2011-05-05 12:05:10 -0600429
Jens Axboee1f36502006-10-27 10:54:08 +0200430 if (ret)
431 break;
432
Jens Axboedb8e0162007-01-10 13:41:26 +0100433 if (o->maxval && ull > o->maxval) {
Jens Axboed4fc2f02012-09-24 14:32:26 +0200434 log_err("max value out of range: %llu"
435 " (%u max)\n", ull, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100436 return 1;
437 }
438 if (o->minval && ull < o->minval) {
Jens Axboed4fc2f02012-09-24 14:32:26 +0200439 log_err("min value out of range: %llu"
440 " (%u min)\n", ull, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100441 return 1;
442 }
Jens Axboee1f36502006-10-27 10:54:08 +0200443
444 if (fn)
445 ret = fn(data, &ull);
446 else {
Jens Axboee01b22b2009-06-09 15:43:25 +0200447 if (o->type == FIO_OPT_INT) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100448 if (first) {
449 if (o->roff1)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100450 *(unsigned int *) o->roff1 = ull;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100451 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100452 val_store(ilp, ull, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100453 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200454 if (curr == 1) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100455 if (o->roff2)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100456 *(unsigned int *) o->roff2 = ull;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100457 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100458 val_store(ilp, ull, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100459 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200460 if (curr == 2) {
461 if (o->roff3)
462 *(unsigned int *) o->roff3 = ull;
463 else if (o->off3)
464 val_store(ilp, ull, o->off3, 0, data);
465 }
466 if (!more) {
467 if (curr < 1) {
468 if (o->roff2)
469 *(unsigned int *) o->roff2 = ull;
470 else if (o->off2)
471 val_store(ilp, ull, o->off2, 0, data);
472 }
473 if (curr < 2) {
474 if (o->roff3)
475 *(unsigned int *) o->roff3 = ull;
476 else if (o->off3)
477 val_store(ilp, ull, o->off3, 0, data);
478 }
479 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100480 } else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100481 if (first) {
482 if (o->roff1)
483 *(unsigned long long *) o->roff1 = ull;
484 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100485 val_store(ullp, ull, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100486 }
487 if (!more) {
488 if (o->roff2)
489 *(unsigned long long *) o->roff2 = ull;
490 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100491 val_store(ullp, ull, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100492 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100493 }
Jens Axboee1f36502006-10-27 10:54:08 +0200494 }
495 break;
496 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200497 case FIO_OPT_FLOAT_LIST: {
498
499 if (first) {
500 ul2 = 1;
501 ilp = td_var(data, o->off2);
502 *ilp = ul2;
503 }
504 if (curr >= o->maxlen) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200505 log_err("the list exceeding max length %d\n",
Yu-ju Hong83349192011-08-13 00:53:44 +0200506 o->maxlen);
507 return 1;
508 }
Jens Axboee25839d2012-11-06 10:49:42 +0100509 if (!str_to_float(ptr, &uf)){
Jens Axboe28d7c362011-10-05 20:30:24 +0200510 log_err("not a floating point value: %s\n", ptr);
Yu-ju Hong83349192011-08-13 00:53:44 +0200511 return 1;
512 }
513 if (!isnan(o->maxfp) && uf > o->maxfp) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200514 log_err("value out of range: %f"
Yu-ju Hong83349192011-08-13 00:53:44 +0200515 " (range max: %f)\n", uf, o->maxfp);
516 return 1;
517 }
518 if (!isnan(o->minfp) && uf < o->minfp) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200519 log_err("value out of range: %f"
Yu-ju Hong83349192011-08-13 00:53:44 +0200520 " (range min: %f)\n", uf, o->minfp);
521 return 1;
522 }
523
524 flp = td_var(data, o->off1);
525 flp[curr] = uf;
526
527 break;
528 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100529 case FIO_OPT_STR_STORE: {
530 fio_opt_str_fn *fn = o->cb;
531
Steven Lang184b4092011-11-16 10:33:51 +0100532 if (o->roff1 || o->off1) {
533 if (o->roff1)
534 cp = (char **) o->roff1;
535 else if (o->off1)
536 cp = td_var(data, o->off1);
Jens Axboece952ab2011-08-31 14:29:22 -0600537
Steven Lang184b4092011-11-16 10:33:51 +0100538 *cp = strdup(ptr);
539 } else {
540 cp = NULL;
Jens Axboe1c964ce2011-08-31 16:45:03 -0600541 }
Jens Axboe02c6aad2010-03-04 13:49:11 +0100542
Steven Lang184b4092011-11-16 10:33:51 +0100543 if (fn)
544 ret = fn(data, ptr);
545 else if (o->posval[0].ival) {
546 posval_sort(o, posval);
Jens Axboec44b1ff2011-08-30 20:43:53 -0600547
Steven Lang184b4092011-11-16 10:33:51 +0100548 ret = 1;
549 for (i = 0; i < PARSE_MAX_VP; i++) {
550 vp = &posval[i];
551 if (!vp->ival || vp->ival[0] == '\0')
552 continue;
553 all_skipped = 0;
554 if (!strncmp(vp->ival, ptr, opt_len(ptr))) {
555 char *rest;
556
557 ret = 0;
558 if (vp->cb)
559 fn = vp->cb;
560 rest = strstr(*cp ?: ptr, ":");
561 if (rest) {
562 if (*cp)
563 *rest = '\0';
564 ptr = rest + 1;
565 } else
566 ptr = NULL;
567 break;
568 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100569 }
570 }
Jens Axboec44b1ff2011-08-30 20:43:53 -0600571
Steven Lang184b4092011-11-16 10:33:51 +0100572 if (!all_skipped) {
573 if (ret && !*cp)
574 show_option_values(o);
575 else if (ret && *cp)
576 ret = 0;
577 else if (fn && ptr)
578 ret = fn(data, ptr);
579 }
Jens Axboec44b1ff2011-08-30 20:43:53 -0600580
Jens Axboee1f36502006-10-27 10:54:08 +0200581 break;
Jens Axboeaf52b342007-03-13 10:07:47 +0100582 }
Jens Axboee1f36502006-10-27 10:54:08 +0200583 case FIO_OPT_RANGE: {
Jens Axboeb765a372006-10-27 15:00:16 +0200584 char tmp[128];
Jens Axboee1f36502006-10-27 10:54:08 +0200585 char *p1, *p2;
586
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100587 strncpy(tmp, ptr, sizeof(tmp) - 1);
Jens Axboeb765a372006-10-27 15:00:16 +0200588
Dave Engberg31d23f42011-07-23 21:07:13 +0200589 /* Handle bsrange with separate read,write values: */
590 p1 = strchr(tmp, ',');
591 if (p1)
592 *p1 = '\0';
593
Jens Axboeb765a372006-10-27 15:00:16 +0200594 p1 = strchr(tmp, '-');
Jens Axboee1f36502006-10-27 10:54:08 +0200595 if (!p1) {
Jens Axboe0c9baf92007-01-11 15:59:26 +0100596 p1 = strchr(tmp, ':');
597 if (!p1) {
598 ret = 1;
599 break;
600 }
Jens Axboee1f36502006-10-27 10:54:08 +0200601 }
602
603 p2 = p1 + 1;
604 *p1 = '\0';
Jens Axboeb765a372006-10-27 15:00:16 +0200605 p1 = tmp;
Jens Axboee1f36502006-10-27 10:54:08 +0200606
607 ret = 1;
Jens Axboed6978a32009-07-18 21:04:09 +0200608 if (!check_range_bytes(p1, &ul1, data) &&
609 !check_range_bytes(p2, &ul2, data)) {
Jens Axboee1f36502006-10-27 10:54:08 +0200610 ret = 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200611 if (ul1 > ul2) {
Jens Axboef90eff52006-11-06 11:08:21 +0100612 unsigned long foo = ul1;
613
614 ul1 = ul2;
615 ul2 = foo;
616 }
617
618 if (first) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100619 if (o->roff1)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100620 *(unsigned int *) o->roff1 = ul1;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100621 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100622 val_store(ilp, ul1, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100623 if (o->roff2)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100624 *(unsigned int *) o->roff2 = ul2;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100625 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100626 val_store(ilp, ul2, o->off2, 0, data);
Jens Axboee1f36502006-10-27 10:54:08 +0200627 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200628 if (curr == 1) {
629 if (o->roff3 && o->roff4) {
630 *(unsigned int *) o->roff3 = ul1;
631 *(unsigned int *) o->roff4 = ul2;
632 } else if (o->off3 && o->off4) {
633 val_store(ilp, ul1, o->off3, 0, data);
634 val_store(ilp, ul2, o->off4, 0, data);
635 }
636 }
637 if (curr == 2) {
638 if (o->roff5 && o->roff6) {
639 *(unsigned int *) o->roff5 = ul1;
640 *(unsigned int *) o->roff6 = ul2;
641 } else if (o->off5 && o->off6) {
642 val_store(ilp, ul1, o->off5, 0, data);
643 val_store(ilp, ul2, o->off6, 0, data);
644 }
645 }
646 if (!more) {
647 if (curr < 1) {
648 if (o->roff3 && o->roff4) {
649 *(unsigned int *) o->roff3 = ul1;
650 *(unsigned int *) o->roff4 = ul2;
651 } else if (o->off3 && o->off4) {
652 val_store(ilp, ul1, o->off3, 0, data);
653 val_store(ilp, ul2, o->off4, 0, data);
654 }
655 }
656 if (curr < 2) {
657 if (o->roff5 && o->roff6) {
658 *(unsigned int *) o->roff5 = ul1;
659 *(unsigned int *) o->roff6 = ul2;
660 } else if (o->off5 && o->off6) {
661 val_store(ilp, ul1, o->off5, 0, data);
662 val_store(ilp, ul2, o->off6, 0, data);
663 }
664 }
Jens Axboe17abbe82006-11-06 11:23:10 +0100665 }
666 }
667
Jens Axboee1f36502006-10-27 10:54:08 +0200668 break;
669 }
Jens Axboe74ba1802011-07-15 09:09:15 +0200670 case FIO_OPT_BOOL:
671 case FIO_OPT_STR_SET: {
Jens Axboee1f36502006-10-27 10:54:08 +0200672 fio_opt_int_fn *fn = o->cb;
673
Jens Axboe74ba1802011-07-15 09:09:15 +0200674 if (ptr)
675 ret = check_int(ptr, &il);
676 else if (o->type == FIO_OPT_BOOL)
677 ret = 1;
678 else
679 il = 1;
680
Jens Axboee1f36502006-10-27 10:54:08 +0200681 if (ret)
682 break;
683
Jens Axboedb8e0162007-01-10 13:41:26 +0100684 if (o->maxval && il > (int) o->maxval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200685 log_err("max value out of range: %d (%d max)\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100686 il, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100687 return 1;
688 }
689 if (o->minval && il < o->minval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200690 log_err("min value out of range: %d (%d min)\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100691 il, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100692 return 1;
693 }
Jens Axboee1f36502006-10-27 10:54:08 +0200694
Jens Axboe76a43db2007-01-11 13:24:44 +0100695 if (o->neg)
696 il = !il;
697
Jens Axboee1f36502006-10-27 10:54:08 +0200698 if (fn)
699 ret = fn(data, &il);
700 else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100701 if (first) {
702 if (o->roff1)
703 *(unsigned int *)o->roff1 = il;
704 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100705 val_store(ilp, il, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100706 }
707 if (!more) {
708 if (o->roff2)
709 *(unsigned int *) o->roff2 = il;
710 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100711 val_store(ilp, il, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100712 }
Jens Axboee1f36502006-10-27 10:54:08 +0200713 }
714 break;
715 }
Jens Axboe15ca1502008-04-07 09:26:02 +0200716 case FIO_OPT_DEPRECATED:
Jens Axboe06b0be62011-10-04 10:31:10 +0200717 log_info("Option %s is deprecated\n", o->name);
Jens Axboe15ca1502008-04-07 09:26:02 +0200718 break;
Jens Axboee1f36502006-10-27 10:54:08 +0200719 default:
Jens Axboe06b0be62011-10-04 10:31:10 +0200720 log_err("Bad option type %u\n", o->type);
Jens Axboee1f36502006-10-27 10:54:08 +0200721 ret = 1;
722 }
723
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200724 if (ret)
725 return ret;
726
Jens Axboed447a8c2009-07-17 22:26:15 +0200727 if (o->verify) {
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200728 ret = o->verify(o, data);
Jens Axboed447a8c2009-07-17 22:26:15 +0200729 if (ret) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200730 log_err("Correct format for offending option\n");
731 log_err("%20s: %s\n", o->name, o->help);
Jens Axboe06b0be62011-10-04 10:31:10 +0200732 show_option_help(o, 1);
Jens Axboed447a8c2009-07-17 22:26:15 +0200733 }
734 }
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200735
Jens Axboee1f36502006-10-27 10:54:08 +0200736 return ret;
737}
738
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200739static int handle_option(struct fio_option *o, const char *__ptr, void *data)
Jens Axboef90eff52006-11-06 11:08:21 +0100740{
Jens Axboeb62bdf22010-03-10 12:36:17 +0100741 char *o_ptr, *ptr, *ptr2;
742 int ret, done;
Jens Axboef90eff52006-11-06 11:08:21 +0100743
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200744 dprint(FD_PARSE, "handle_option=%s, ptr=%s\n", o->name, __ptr);
745
Jens Axboeb62bdf22010-03-10 12:36:17 +0100746 o_ptr = ptr = NULL;
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200747 if (__ptr)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100748 o_ptr = ptr = strdup(__ptr);
Jens Axboea3d741f2008-02-27 18:32:33 +0100749
Jens Axboef90eff52006-11-06 11:08:21 +0100750 /*
Jens Axboeb62bdf22010-03-10 12:36:17 +0100751 * See if we have another set of parameters, hidden after a comma.
752 * Do this before parsing this round, to check if we should
Jens Axboe787f7e92006-11-06 13:26:29 +0100753 * copy set 1 options to set 2.
Jens Axboef90eff52006-11-06 11:08:21 +0100754 */
Jens Axboeb62bdf22010-03-10 12:36:17 +0100755 done = 0;
756 ret = 1;
757 do {
758 int __ret;
759
760 ptr2 = NULL;
761 if (ptr &&
762 (o->type != FIO_OPT_STR_STORE) &&
Yu-ju Hong83349192011-08-13 00:53:44 +0200763 (o->type != FIO_OPT_STR) &&
764 (o->type != FIO_OPT_FLOAT_LIST)) {
Jens Axboeb62bdf22010-03-10 12:36:17 +0100765 ptr2 = strchr(ptr, ',');
766 if (ptr2 && *(ptr2 + 1) == '\0')
767 *ptr2 = '\0';
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200768 if (o->type != FIO_OPT_STR_MULTI && o->type != FIO_OPT_RANGE) {
Jens Axboeb62bdf22010-03-10 12:36:17 +0100769 if (!ptr2)
770 ptr2 = strchr(ptr, ':');
771 if (!ptr2)
772 ptr2 = strchr(ptr, '-');
773 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200774 } else if (ptr && o->type == FIO_OPT_FLOAT_LIST) {
775 ptr2 = strchr(ptr, ':');
Jens Axboeb62bdf22010-03-10 12:36:17 +0100776 }
777
778 /*
779 * Don't return early if parsing the first option fails - if
780 * we are doing multiple arguments, we can allow the first one
781 * being empty.
782 */
Yu-ju Hong83349192011-08-13 00:53:44 +0200783 __ret = __handle_option(o, ptr, data, !done, !!ptr2, done);
Jens Axboeb62bdf22010-03-10 12:36:17 +0100784 if (ret)
785 ret = __ret;
786
Jens Axboe0c9baf92007-01-11 15:59:26 +0100787 if (!ptr2)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100788 break;
Jens Axboe787f7e92006-11-06 13:26:29 +0100789
Jens Axboeb62bdf22010-03-10 12:36:17 +0100790 ptr = ptr2 + 1;
791 done++;
792 } while (1);
Jens Axboe787f7e92006-11-06 13:26:29 +0100793
Jens Axboeb62bdf22010-03-10 12:36:17 +0100794 if (o_ptr)
795 free(o_ptr);
796 return ret;
Jens Axboef90eff52006-11-06 11:08:21 +0100797}
798
Steven Langde890a12011-11-09 14:03:34 +0100799static struct fio_option *get_option(char *opt,
Jens Axboe07b32322010-03-05 09:48:44 +0100800 struct fio_option *options, char **post)
Jens Axboe3b8b7132008-06-10 19:46:23 +0200801{
802 struct fio_option *o;
803 char *ret;
804
805 ret = strchr(opt, '=');
806 if (ret) {
807 *post = ret;
808 *ret = '\0';
Steven Langde890a12011-11-09 14:03:34 +0100809 ret = opt;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200810 (*post)++;
Jens Axboe43c129b2008-12-08 14:06:42 +0100811 strip_blank_end(ret);
Jens Axboe07b32322010-03-05 09:48:44 +0100812 o = find_option(options, ret);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200813 } else {
Jens Axboe07b32322010-03-05 09:48:44 +0100814 o = find_option(options, opt);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200815 *post = NULL;
816 }
817
818 return o;
819}
820
821static int opt_cmp(const void *p1, const void *p2)
822{
Steven Langde890a12011-11-09 14:03:34 +0100823 struct fio_option *o;
824 char *s, *foo;
Jens Axboe8cdabc12008-11-19 12:31:43 +0100825 int prio1, prio2;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200826
Jens Axboe8cdabc12008-11-19 12:31:43 +0100827 prio1 = prio2 = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200828
Steven Langde890a12011-11-09 14:03:34 +0100829 if (*(char **)p1) {
830 s = strdup(*((char **) p1));
831 o = get_option(s, fio_options, &foo);
832 if (o)
833 prio1 = o->prio;
834 free(s);
835 }
836 if (*(char **)p2) {
837 s = strdup(*((char **) p2));
838 o = get_option(s, fio_options, &foo);
839 if (o)
840 prio2 = o->prio;
841 free(s);
842 }
843
Jens Axboe8cdabc12008-11-19 12:31:43 +0100844 return prio2 - prio1;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200845}
846
847void sort_options(char **opts, struct fio_option *options, int num_opts)
848{
849 fio_options = options;
850 qsort(opts, num_opts, sizeof(char *), opt_cmp);
851 fio_options = NULL;
852}
853
Jens Axboeb4692822006-10-27 13:43:22 +0200854int parse_cmd_option(const char *opt, const char *val,
Jens Axboe07b32322010-03-05 09:48:44 +0100855 struct fio_option *options, void *data)
Jens Axboeb4692822006-10-27 13:43:22 +0200856{
857 struct fio_option *o;
858
Jens Axboe07b32322010-03-05 09:48:44 +0100859 o = find_option(options, opt);
Jens Axboeb4692822006-10-27 13:43:22 +0200860 if (!o) {
Jens Axboe06b0be62011-10-04 10:31:10 +0200861 log_err("Bad option <%s>\n", opt);
Jens Axboeb4692822006-10-27 13:43:22 +0200862 return 1;
863 }
864
Jens Axboeb1508cf2006-11-02 09:12:40 +0100865 if (!handle_option(o, val, data))
866 return 0;
867
Jens Axboe06b0be62011-10-04 10:31:10 +0200868 log_err("fio: failed parsing %s=%s\n", opt, val);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100869 return 1;
Jens Axboeb4692822006-10-27 13:43:22 +0200870}
871
Steven Langde890a12011-11-09 14:03:34 +0100872int parse_option(char *opt, const char *input,
873 struct fio_option *options, struct fio_option **o, void *data)
Jens Axboee1f36502006-10-27 10:54:08 +0200874{
Steven Langd0c814e2011-10-28 08:37:13 +0200875 char *post;
Jens Axboee1f36502006-10-27 10:54:08 +0200876
Steven Langd0c814e2011-10-28 08:37:13 +0200877 if (!opt) {
878 log_err("fio: failed parsing %s\n", input);
Steven Langde890a12011-11-09 14:03:34 +0100879 *o = NULL;
Jens Axboe38789b52010-03-03 09:23:20 +0100880 return 1;
Steven Langd0c814e2011-10-28 08:37:13 +0200881 }
Jens Axboee1f36502006-10-27 10:54:08 +0200882
Steven Langde890a12011-11-09 14:03:34 +0100883 *o = get_option(opt, options, &post);
884 if (!*o) {
885 if (post) {
886 int len = strlen(opt);
887 if (opt + len + 1 != post)
888 memmove(opt + len + 1, post, strlen(post));
889 opt[len] = '=';
890 }
Jens Axboee1f36502006-10-27 10:54:08 +0200891 return 1;
892 }
893
Steven Langde890a12011-11-09 14:03:34 +0100894 if (!handle_option(*o, post, data)) {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100895 return 0;
Jens Axboe0401bca2007-03-29 11:00:43 +0200896 }
Jens Axboeb1508cf2006-11-02 09:12:40 +0100897
Steven Langd0c814e2011-10-28 08:37:13 +0200898 log_err("fio: failed parsing %s\n", input);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100899 return 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200900}
Jens Axboefd28ca42007-01-09 21:20:13 +0100901
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100902/*
903 * Option match, levenshtein distance. Handy for not quite remembering what
904 * the option name is.
905 */
906static int string_distance(const char *s1, const char *s2)
907{
908 unsigned int s1_len = strlen(s1);
909 unsigned int s2_len = strlen(s2);
910 unsigned int *p, *q, *r;
911 unsigned int i, j;
912
913 p = malloc(sizeof(unsigned int) * (s2_len + 1));
914 q = malloc(sizeof(unsigned int) * (s2_len + 1));
915
916 p[0] = 0;
917 for (i = 1; i <= s2_len; i++)
918 p[i] = p[i - 1] + 1;
919
920 for (i = 1; i <= s1_len; i++) {
921 q[0] = p[0] + 1;
922 for (j = 1; j <= s2_len; j++) {
923 unsigned int sub = p[j - 1];
924
925 if (s1[i - 1] != s2[j - 1])
926 sub++;
927
928 q[j] = min(p[j] + 1, min(q[j - 1] + 1, sub));
929 }
930 r = p;
931 p = q;
932 q = r;
933 }
934
935 i = p[s2_len];
936 free(p);
937 free(q);
938 return i;
939}
940
Jens Axboeafdf9352007-07-31 16:14:34 +0200941static struct fio_option *find_child(struct fio_option *options,
942 struct fio_option *o)
943{
944 struct fio_option *__o;
945
Jens Axboefdf28742007-07-31 23:06:09 +0200946 for (__o = options + 1; __o->name; __o++)
947 if (__o->parent && !strcmp(__o->parent, o->name))
Jens Axboeafdf9352007-07-31 16:14:34 +0200948 return __o;
949
950 return NULL;
951}
952
Jens Axboe323d9112008-03-01 15:12:14 +0100953static void __print_option(struct fio_option *o, struct fio_option *org,
954 int level)
Jens Axboeafdf9352007-07-31 16:14:34 +0200955{
956 char name[256], *p;
Jens Axboe323d9112008-03-01 15:12:14 +0100957 int depth;
Jens Axboeafdf9352007-07-31 16:14:34 +0200958
959 if (!o)
960 return;
Jens Axboeef9aff52007-07-31 22:56:53 +0200961 if (!org)
962 org = o;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100963
Jens Axboeafdf9352007-07-31 16:14:34 +0200964 p = name;
Jens Axboe323d9112008-03-01 15:12:14 +0100965 depth = level;
966 while (depth--)
967 p += sprintf(p, "%s", " ");
Jens Axboeafdf9352007-07-31 16:14:34 +0200968
969 sprintf(p, "%s", o->name);
970
Jens Axboe28d7c362011-10-05 20:30:24 +0200971 log_info("%-24s: %s\n", name, o->help);
Jens Axboe323d9112008-03-01 15:12:14 +0100972}
973
974static void print_option(struct fio_option *o)
975{
976 struct fio_option *parent;
977 struct fio_option *__o;
978 unsigned int printed;
979 unsigned int level;
980
981 __print_option(o, NULL, 0);
982 parent = o;
983 level = 0;
984 do {
985 level++;
986 printed = 0;
987
988 while ((__o = find_child(o, parent)) != NULL) {
989 __print_option(__o, o, level);
990 o = __o;
991 printed++;
992 }
993
994 parent = o;
995 } while (printed);
Jens Axboeafdf9352007-07-31 16:14:34 +0200996}
997
Jens Axboe07b32322010-03-05 09:48:44 +0100998int show_cmd_help(struct fio_option *options, const char *name)
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100999{
1000 struct fio_option *o, *closest;
Jens Axboed091d092010-04-01 19:56:23 +02001001 unsigned int best_dist = -1U;
Jens Axboe29fc6af2007-01-09 21:22:02 +01001002 int found = 0;
Jens Axboe320beef2007-03-01 10:44:12 +01001003 int show_all = 0;
1004
1005 if (!name || !strcmp(name, "all"))
1006 show_all = 1;
Jens Axboefd28ca42007-01-09 21:20:13 +01001007
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001008 closest = NULL;
1009 best_dist = -1;
Jens Axboe4945ba12007-01-11 14:36:56 +01001010 for (o = &options[0]; o->name; o++) {
Jens Axboe320beef2007-03-01 10:44:12 +01001011 int match = 0;
1012
Jens Axboe15ca1502008-04-07 09:26:02 +02001013 if (o->type == FIO_OPT_DEPRECATED)
1014 continue;
Jens Axboe07b32322010-03-05 09:48:44 +01001015 if (!exec_profile && o->prof_name)
1016 continue;
Jens Axboe15ca1502008-04-07 09:26:02 +02001017
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001018 if (name) {
Jens Axboe7f9348f2007-03-15 14:09:28 +01001019 if (!strcmp(name, o->name) ||
1020 (o->alias && !strcmp(name, o->alias)))
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001021 match = 1;
1022 else {
1023 unsigned int dist;
1024
1025 dist = string_distance(name, o->name);
1026 if (dist < best_dist) {
1027 best_dist = dist;
1028 closest = o;
1029 }
1030 }
1031 }
Jens Axboefd28ca42007-01-09 21:20:13 +01001032
1033 if (show_all || match) {
Jens Axboe29fc6af2007-01-09 21:22:02 +01001034 found = 1;
Jens Axboec167ded2007-03-14 13:02:53 +01001035 if (match)
Jens Axboe28d7c362011-10-05 20:30:24 +02001036 log_info("%20s: %s\n", o->name, o->help);
Jens Axboec167ded2007-03-14 13:02:53 +01001037 if (show_all) {
Jens Axboeafdf9352007-07-31 16:14:34 +02001038 if (!o->parent)
Jens Axboe323d9112008-03-01 15:12:14 +01001039 print_option(o);
Jens Axboe4945ba12007-01-11 14:36:56 +01001040 continue;
Jens Axboec167ded2007-03-14 13:02:53 +01001041 }
Jens Axboefd28ca42007-01-09 21:20:13 +01001042 }
1043
Jens Axboe70df2f12007-01-11 14:04:47 +01001044 if (!match)
1045 continue;
1046
Jens Axboe06b0be62011-10-04 10:31:10 +02001047 show_option_help(o, 0);
Jens Axboefd28ca42007-01-09 21:20:13 +01001048 }
1049
Jens Axboe29fc6af2007-01-09 21:22:02 +01001050 if (found)
1051 return 0;
Jens Axboefd28ca42007-01-09 21:20:13 +01001052
Jens Axboe28d7c362011-10-05 20:30:24 +02001053 log_err("No such command: %s", name);
Jens Axboed091d092010-04-01 19:56:23 +02001054
1055 /*
1056 * Only print an appropriately close option, one where the edit
1057 * distance isn't too big. Otherwise we get crazy matches.
1058 */
1059 if (closest && best_dist < 3) {
Jens Axboe28d7c362011-10-05 20:30:24 +02001060 log_info(" - showing closest match\n");
1061 log_info("%20s: %s\n", closest->name, closest->help);
Jens Axboe06b0be62011-10-04 10:31:10 +02001062 show_option_help(closest, 0);
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001063 } else
Jens Axboe28d7c362011-10-05 20:30:24 +02001064 log_info("\n");
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001065
Jens Axboe29fc6af2007-01-09 21:22:02 +01001066 return 1;
Jens Axboefd28ca42007-01-09 21:20:13 +01001067}
Jens Axboeee738492007-01-10 11:23:16 +01001068
Jens Axboe13335dd2007-01-10 13:14:02 +01001069/*
1070 * Handle parsing of default parameters.
1071 */
Jens Axboeee738492007-01-10 11:23:16 +01001072void fill_default_options(void *data, struct fio_option *options)
1073{
Jens Axboe4945ba12007-01-11 14:36:56 +01001074 struct fio_option *o;
Jens Axboeee738492007-01-10 11:23:16 +01001075
Jens Axboea3d741f2008-02-27 18:32:33 +01001076 dprint(FD_PARSE, "filling default options\n");
1077
Jens Axboe4945ba12007-01-11 14:36:56 +01001078 for (o = &options[0]; o->name; o++)
Jens Axboeee738492007-01-10 11:23:16 +01001079 if (o->def)
1080 handle_option(o, o->def, data);
Jens Axboeee738492007-01-10 11:23:16 +01001081}
Jens Axboe13335dd2007-01-10 13:14:02 +01001082
Jens Axboe9f988e22010-03-04 10:42:38 +01001083void option_init(struct fio_option *o)
1084{
1085 if (o->type == FIO_OPT_DEPRECATED)
1086 return;
1087 if (o->type == FIO_OPT_BOOL) {
1088 o->minval = 0;
1089 o->maxval = 1;
1090 }
Jens Axboed4fc2f02012-09-24 14:32:26 +02001091 if (o->type == FIO_OPT_INT) {
1092 if (!o->maxval)
1093 o->maxval = UINT_MAX;
1094 }
Yu-ju Hong83349192011-08-13 00:53:44 +02001095 if (o->type == FIO_OPT_FLOAT_LIST) {
1096 o->minfp = NAN;
1097 o->maxfp = NAN;
1098 }
Jens Axboe9f988e22010-03-04 10:42:38 +01001099 if (o->type == FIO_OPT_STR_SET && o->def) {
Jens Axboe06b0be62011-10-04 10:31:10 +02001100 log_err("Option %s: string set option with"
Jens Axboe9f988e22010-03-04 10:42:38 +01001101 " default will always be true\n", o->name);
1102 }
Jens Axboe06b0be62011-10-04 10:31:10 +02001103 if (!o->cb && (!o->off1 && !o->roff1))
1104 log_err("Option %s: neither cb nor offset given\n", o->name);
Jens Axboe5f6ddf12010-03-09 20:40:44 +01001105 if (o->type == FIO_OPT_STR || o->type == FIO_OPT_STR_STORE ||
1106 o->type == FIO_OPT_STR_MULTI)
Jens Axboe9f988e22010-03-04 10:42:38 +01001107 return;
Jens Axboee2de69d2010-03-04 14:05:48 +01001108 if (o->cb && ((o->off1 || o->off2 || o->off3 || o->off4) ||
1109 (o->roff1 || o->roff2 || o->roff3 || o->roff4))) {
Jens Axboe06b0be62011-10-04 10:31:10 +02001110 log_err("Option %s: both cb and offset given\n", o->name);
Jens Axboe9f988e22010-03-04 10:42:38 +01001111 }
1112}
1113
Jens Axboe13335dd2007-01-10 13:14:02 +01001114/*
1115 * Sanitize the options structure. For now it just sets min/max for bool
Jens Axboe5b0a8882007-01-11 14:40:27 +01001116 * values and whether both callback and offsets are given.
Jens Axboe13335dd2007-01-10 13:14:02 +01001117 */
1118void options_init(struct fio_option *options)
1119{
Jens Axboe4945ba12007-01-11 14:36:56 +01001120 struct fio_option *o;
Jens Axboe13335dd2007-01-10 13:14:02 +01001121
Jens Axboea3d741f2008-02-27 18:32:33 +01001122 dprint(FD_PARSE, "init options\n");
1123
Jens Axboe9f988e22010-03-04 10:42:38 +01001124 for (o = &options[0]; o->name; o++)
1125 option_init(o);
Jens Axboe13335dd2007-01-10 13:14:02 +01001126}
Jens Axboe7e356b22011-10-14 10:55:16 +02001127
1128void options_free(struct fio_option *options, void *data)
1129{
1130 struct fio_option *o;
1131 char **ptr;
1132
1133 dprint(FD_PARSE, "free options\n");
1134
1135 for (o = &options[0]; o->name; o++) {
Steven Langde890a12011-11-09 14:03:34 +01001136 if (o->type != FIO_OPT_STR_STORE || !o->off1)
Jens Axboe7e356b22011-10-14 10:55:16 +02001137 continue;
1138
1139 ptr = td_var(data, o->off1);
1140 if (*ptr) {
1141 free(*ptr);
1142 *ptr = NULL;
1143 }
1144 }
1145}