blob: 419e80f886e56e9b9ef463d38ebea66673f35316 [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 Axboe9af4a242012-03-16 10:13:49 +010018static struct fio_option *__fio_options;
Jens Axboe3b8b7132008-06-10 19:46:23 +020019
Jens Axboef0857372007-03-19 13:15:23 +010020static int vp_cmp(const void *p1, const void *p2)
21{
22 const struct value_pair *vp1 = p1;
23 const struct value_pair *vp2 = p2;
24
25 return strlen(vp2->ival) - strlen(vp1->ival);
26}
27
Jens Axboece952ab2011-08-31 14:29:22 -060028static void posval_sort(struct fio_option *o, struct value_pair *vpmap)
Jens Axboef0857372007-03-19 13:15:23 +010029{
30 const struct value_pair *vp;
31 int entries;
32
33 memset(vpmap, 0, PARSE_MAX_VP * sizeof(struct value_pair));
34
35 for (entries = 0; entries < PARSE_MAX_VP; entries++) {
36 vp = &o->posval[entries];
37 if (!vp->ival || vp->ival[0] == '\0')
38 break;
39
40 memcpy(&vpmap[entries], vp, sizeof(*vp));
41 }
42
43 qsort(vpmap, entries, sizeof(struct value_pair), vp_cmp);
44}
45
Jens Axboe06b0be62011-10-04 10:31:10 +020046static void show_option_range(struct fio_option *o,
47 int (*logger)(const char *format, ...))
Jens Axboeb1ec1da2007-02-23 10:29:16 +010048{
Jens Axboe3c3ed072012-03-27 09:12:39 +020049 if (o->type == FIO_OPT_FLOAT_LIST) {
Yu-ju Hong83349192011-08-13 00:53:44 +020050 if (isnan(o->minfp) && isnan(o->maxfp))
51 return;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010052
Jens Axboe06b0be62011-10-04 10:31:10 +020053 logger("%20s: min=%f", "range", o->minfp);
Yu-ju Hong83349192011-08-13 00:53:44 +020054 if (!isnan(o->maxfp))
Jens Axboe06b0be62011-10-04 10:31:10 +020055 logger(", max=%f", o->maxfp);
56 logger("\n");
Yu-ju Hong83349192011-08-13 00:53:44 +020057 } else {
58 if (!o->minval && !o->maxval)
59 return;
60
Jens Axboe06b0be62011-10-04 10:31:10 +020061 logger("%20s: min=%d", "range", o->minval);
Yu-ju Hong83349192011-08-13 00:53:44 +020062 if (o->maxval)
Jens Axboe06b0be62011-10-04 10:31:10 +020063 logger(", max=%d", o->maxval);
64 logger("\n");
Yu-ju Hong83349192011-08-13 00:53:44 +020065 }
Jens Axboeb1ec1da2007-02-23 10:29:16 +010066}
67
68static void show_option_values(struct fio_option *o)
69{
Jens Axboea3073f42010-03-05 10:06:15 +010070 int i;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010071
Jens Axboea3073f42010-03-05 10:06:15 +010072 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboe78372132007-03-14 13:24:07 +010073 const struct value_pair *vp = &o->posval[i];
74
75 if (!vp->ival)
Jens Axboea3073f42010-03-05 10:06:15 +010076 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010077
Jens Axboe06b0be62011-10-04 10:31:10 +020078 log_info("%20s: %-10s", i == 0 ? "valid values" : "", vp->ival);
Jens Axboe78372132007-03-14 13:24:07 +010079 if (vp->help)
Jens Axboe06b0be62011-10-04 10:31:10 +020080 log_info(" %s", vp->help);
81 log_info("\n");
Jens Axboea3073f42010-03-05 10:06:15 +010082 }
Jens Axboeb1ec1da2007-02-23 10:29:16 +010083
84 if (i)
Jens Axboe06b0be62011-10-04 10:31:10 +020085 log_info("\n");
Jens Axboeb1ec1da2007-02-23 10:29:16 +010086}
87
Jens Axboe06b0be62011-10-04 10:31:10 +020088static void show_option_help(struct fio_option *o, int is_err)
Jens Axboed447a8c2009-07-17 22:26:15 +020089{
90 const char *typehelp[] = {
Jens Axboe07b32322010-03-05 09:48:44 +010091 "invalid",
Jens Axboed447a8c2009-07-17 22:26:15 +020092 "string (opt=bla)",
Jens Axboeae3fb6f2010-09-14 13:10:35 +020093 "string (opt=bla)",
Jens Axboed447a8c2009-07-17 22:26:15 +020094 "string with possible k/m/g postfix (opt=4k)",
95 "string with time postfix (opt=10s)",
96 "string (opt=bla)",
97 "string with dual range (opt=1k-4k,4k-8k)",
98 "integer value (opt=100)",
99 "boolean value (opt=1)",
Yu-ju Hong83349192011-08-13 00:53:44 +0200100 "list of floating point values separated by ':' (opt=5.9:7.8)",
Jens Axboed447a8c2009-07-17 22:26:15 +0200101 "no argument (opt)",
Jens Axboe07b32322010-03-05 09:48:44 +0100102 "deprecated",
Jens Axboed447a8c2009-07-17 22:26:15 +0200103 };
Jens Axboe06b0be62011-10-04 10:31:10 +0200104 int (*logger)(const char *format, ...);
105
106 if (is_err)
107 logger = log_err;
108 else
109 logger = log_info;
Jens Axboed447a8c2009-07-17 22:26:15 +0200110
111 if (o->alias)
Jens Axboe06b0be62011-10-04 10:31:10 +0200112 logger("%20s: %s\n", "alias", o->alias);
Jens Axboed447a8c2009-07-17 22:26:15 +0200113
Jens Axboe06b0be62011-10-04 10:31:10 +0200114 logger("%20s: %s\n", "type", typehelp[o->type]);
115 logger("%20s: %s\n", "default", o->def ? o->def : "no default");
Jens Axboe07b32322010-03-05 09:48:44 +0100116 if (o->prof_name)
Jens Axboe06b0be62011-10-04 10:31:10 +0200117 logger("%20s: only for profile '%s'\n", "valid", o->prof_name);
118 show_option_range(o, logger);
Jens Axboed447a8c2009-07-17 22:26:15 +0200119 show_option_values(o);
120}
121
Jens Axboecb2c86f2006-10-26 13:48:34 +0200122static unsigned long get_mult_time(char c)
123{
124 switch (c) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100125 case 'm':
126 case 'M':
127 return 60;
128 case 'h':
129 case 'H':
130 return 60 * 60;
131 case 'd':
132 case 'D':
133 return 24 * 60 * 60;
134 default:
135 return 1;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200136 }
137}
138
Jens Axboe7bb59102011-07-12 19:47:03 +0200139static unsigned long long __get_mult_bytes(const char *p, void *data,
140 int *percent)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200141{
Jens Axboed6978a32009-07-18 21:04:09 +0200142 unsigned int kb_base = fio_get_kb_base(data);
Jens Axboea639f0b2009-07-18 08:25:35 +0200143 unsigned long long ret = 1;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200144 unsigned int i, pow = 0, mult = kb_base;
145 char *c;
Jens Axboea639f0b2009-07-18 08:25:35 +0200146
Jens Axboe57fc29f2010-06-23 22:24:07 +0200147 if (!p)
148 return 1;
Jens Axboea639f0b2009-07-18 08:25:35 +0200149
Jens Axboe57fc29f2010-06-23 22:24:07 +0200150 c = strdup(p);
151
152 for (i = 0; i < strlen(c); i++)
153 c[i] = tolower(c[i]);
154
Jens Axboea04f1582012-03-07 10:53:29 +0100155 if (!strncmp("pib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200156 pow = 5;
157 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100158 } else if (!strncmp("tib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200159 pow = 4;
160 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100161 } else if (!strncmp("gib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200162 pow = 3;
163 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100164 } else if (!strncmp("mib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200165 pow = 2;
166 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100167 } else if (!strncmp("kib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200168 pow = 1;
169 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100170 } else if (!strncmp("p", c, 1) || !strncmp("pb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200171 pow = 5;
Jens Axboea04f1582012-03-07 10:53:29 +0100172 else if (!strncmp("t", c, 1) || !strncmp("tb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200173 pow = 4;
Jens Axboea04f1582012-03-07 10:53:29 +0100174 else if (!strncmp("g", c, 1) || !strncmp("gb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200175 pow = 3;
Jens Axboea04f1582012-03-07 10:53:29 +0100176 else if (!strncmp("m", c, 1) || !strncmp("mb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200177 pow = 2;
Jens Axboea04f1582012-03-07 10:53:29 +0100178 else if (!strncmp("k", c, 1) || !strncmp("kb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200179 pow = 1;
Jens Axboea04f1582012-03-07 10:53:29 +0100180 else if (!strncmp("%", c, 1)) {
Jens Axboe7bb59102011-07-12 19:47:03 +0200181 *percent = 1;
Jens Axboee721c572012-02-09 20:55:29 +0100182 free(c);
Jens Axboe7bb59102011-07-12 19:47:03 +0200183 return ret;
184 }
Jens Axboe57fc29f2010-06-23 22:24:07 +0200185
186 while (pow--)
187 ret *= (unsigned long long) mult;
188
189 free(c);
Jens Axboea639f0b2009-07-18 08:25:35 +0200190 return ret;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200191}
192
Jens Axboe7bb59102011-07-12 19:47:03 +0200193static unsigned long long get_mult_bytes(const char *str, int len, void *data,
Jens Axboe6925dd32011-09-07 22:10:11 +0200194 int *percent)
Jens Axboe57fc29f2010-06-23 22:24:07 +0200195{
Jens Axboe55ed9632011-03-27 20:55:09 +0200196 const char *p = str;
Jens Axboeba4ddd62011-09-07 22:11:00 +0200197 int digit_seen = 0;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200198
Jens Axboe1d1c1872010-07-29 10:50:05 +0200199 if (len < 2)
Jens Axboe7bb59102011-07-12 19:47:03 +0200200 return __get_mult_bytes(str, data, percent);
Jens Axboe1d1c1872010-07-29 10:50:05 +0200201
Steven Langd0c814e2011-10-28 08:37:13 +0200202 /*
203 * Go forward until we hit a non-digit, or +/- sign
204 */
Jens Axboe55ed9632011-03-27 20:55:09 +0200205 while ((p - str) <= len) {
Jens Axboeba4ddd62011-09-07 22:11:00 +0200206 if (!isdigit((int) *p) &&
207 (((*p != '+') && (*p != '-')) || digit_seen))
Jens Axboe55ed9632011-03-27 20:55:09 +0200208 break;
Jens Axboe3c703d12011-09-21 09:27:24 +0200209 digit_seen |= isdigit((int) *p);
Jens Axboe55ed9632011-03-27 20:55:09 +0200210 p++;
211 }
212
Jens Axboe7bb59102011-07-12 19:47:03 +0200213 if (!isalpha((int) *p) && (*p != '%'))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200214 p = NULL;
215
Jens Axboe7bb59102011-07-12 19:47:03 +0200216 return __get_mult_bytes(p, data, percent);
Jens Axboe57fc29f2010-06-23 22:24:07 +0200217}
218
Jens Axboecb2c86f2006-10-26 13:48:34 +0200219/*
Yu-ju Hong83349192011-08-13 00:53:44 +0200220 * Convert string into a floating number. Return 1 for success and 0 otherwise.
221 */
Jens Axboecc62ea72012-02-09 21:17:06 +0100222static int str_to_float(const char *str, double *val)
Yu-ju Hong83349192011-08-13 00:53:44 +0200223{
224 return (1 == sscanf(str, "%lf", val));
225}
226
227/*
Jens Axboee1f36502006-10-27 10:54:08 +0200228 * convert string into decimal value, noting any size suffix
Jens Axboecb2c86f2006-10-26 13:48:34 +0200229 */
Jens Axboe6925dd32011-09-07 22:10:11 +0200230int str_to_decimal(const char *str, long long *val, int kilo, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200231{
Jens Axboeb347f9d2009-03-09 14:15:21 +0100232 int len, base;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200233
Jens Axboecb2c86f2006-10-26 13:48:34 +0200234 len = strlen(str);
Jens Axboef90eff52006-11-06 11:08:21 +0100235 if (!len)
236 return 1;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200237
Jens Axboeb347f9d2009-03-09 14:15:21 +0100238 if (strstr(str, "0x") || strstr(str, "0X"))
239 base = 16;
240 else
241 base = 10;
242
243 *val = strtoll(str, NULL, base);
Jens Axboecda866c2007-01-10 16:02:32 +0100244 if (*val == LONG_MAX && errno == ERANGE)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200245 return 1;
246
Jens Axboe7bb59102011-07-12 19:47:03 +0200247 if (kilo) {
248 unsigned long long mult;
249 int perc = 0;
250
Jens Axboe6925dd32011-09-07 22:10:11 +0200251 mult = get_mult_bytes(str, len, data, &perc);
Jens Axboe7bb59102011-07-12 19:47:03 +0200252 if (perc)
253 *val = -1ULL - *val;
254 else
255 *val *= mult;
256 } else
Jens Axboecb2c86f2006-10-26 13:48:34 +0200257 *val *= get_mult_time(str[len - 1]);
Jens Axboe787f7e92006-11-06 13:26:29 +0100258
Jens Axboecb2c86f2006-10-26 13:48:34 +0200259 return 0;
260}
261
Jens Axboe9af4a242012-03-16 10:13:49 +0100262int check_str_bytes(const char *p, long long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200263{
Jens Axboe6925dd32011-09-07 22:10:11 +0200264 return str_to_decimal(p, val, 1, data);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200265}
266
Jens Axboe63f29372007-01-10 13:20:09 +0100267static int check_str_time(const char *p, long long *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200268{
Jens Axboe6925dd32011-09-07 22:10:11 +0200269 return str_to_decimal(p, val, 0, NULL);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200270}
271
272void strip_blank_front(char **p)
273{
274 char *s = *p;
275
Jens Axboe4c8e9642011-10-15 14:37:38 +0200276 if (!strlen(s))
277 return;
Jens Axboe76cd9372011-07-08 21:14:57 +0200278 while (isspace((int) *s))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200279 s++;
Jens Axboe4d651da2007-03-28 19:34:53 +0200280
281 *p = s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200282}
283
284void strip_blank_end(char *p)
285{
Jens Axboe853ee7f2009-03-06 20:29:29 +0100286 char *start = p, *s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200287
Jens Axboe4c8e9642011-10-15 14:37:38 +0200288 if (!strlen(p))
289 return;
290
Jens Axboe523bfad2007-04-04 11:04:06 +0200291 s = strchr(p, ';');
292 if (s)
293 *s = '\0';
294 s = strchr(p, '#');
295 if (s)
296 *s = '\0';
297 if (s)
298 p = s;
299
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200300 s = p + strlen(p);
Jens Axboe76cd9372011-07-08 21:14:57 +0200301 while ((isspace((int) *s) || iscntrl((int) *s)) && (s > start))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200302 s--;
303
304 *(s + 1) = '\0';
305}
306
Jens Axboed6978a32009-07-18 21:04:09 +0200307static int check_range_bytes(const char *str, long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200308{
Jens Axboe57fc29f2010-06-23 22:24:07 +0200309 long long __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200310
Jens Axboe6925dd32011-09-07 22:10:11 +0200311 if (!str_to_decimal(str, &__val, 1, data)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200312 *val = __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200313 return 0;
314 }
315
Jens Axboecb2c86f2006-10-26 13:48:34 +0200316 return 1;
317}
318
Jens Axboe63f29372007-01-10 13:20:09 +0100319static int check_int(const char *p, int *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200320{
Jens Axboe787f7e92006-11-06 13:26:29 +0100321 if (!strlen(p))
322 return 1;
Jens Axboed78ee462007-08-10 14:03:20 +0200323 if (strstr(p, "0x") || strstr(p, "0X")) {
Jens Axboea61bdfd2007-07-30 09:07:04 +0200324 if (sscanf(p, "%x", val) == 1)
325 return 0;
326 } else {
327 if (sscanf(p, "%u", val) == 1)
328 return 0;
329 }
Jens Axboecb2c86f2006-10-26 13:48:34 +0200330
331 return 1;
332}
333
Jens Axboe808def72010-07-14 16:27:02 -0600334static int opt_len(const char *str)
335{
336 char *postfix;
337
338 postfix = strchr(str, ':');
339 if (!postfix)
340 return strlen(str);
341
342 return (int)(postfix - str);
343}
344
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100345#define val_store(ptr, val, off, or, data) \
Jens Axboe17abbe82006-11-06 11:23:10 +0100346 do { \
347 ptr = td_var((data), (off)); \
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100348 if ((or)) \
349 *ptr |= (val); \
350 else \
351 *ptr = (val); \
Jens Axboe17abbe82006-11-06 11:23:10 +0100352 } while (0)
353
Jens Axboef90eff52006-11-06 11:08:21 +0100354static int __handle_option(struct fio_option *o, const char *ptr, void *data,
Yu-ju Hong83349192011-08-13 00:53:44 +0200355 int first, int more, int curr)
Jens Axboee1f36502006-10-27 10:54:08 +0200356{
Jens Axboe63f29372007-01-10 13:20:09 +0100357 int il, *ilp;
Jens Axboe3c3ed072012-03-27 09:12:39 +0200358 double *flp;
Jens Axboe63f29372007-01-10 13:20:09 +0100359 long long ull, *ullp;
360 long ul1, ul2;
Yu-ju Hong83349192011-08-13 00:53:44 +0200361 double uf;
Jens Axboeb4692822006-10-27 13:43:22 +0200362 char **cp;
Jens Axboee42b01e2011-05-05 12:05:10 -0600363 int ret = 0, is_time = 0;
Jens Axboec44b1ff2011-08-30 20:43:53 -0600364 const struct value_pair *vp;
365 struct value_pair posval[PARSE_MAX_VP];
366 int i, all_skipped = 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200367
Jens Axboea3d741f2008-02-27 18:32:33 +0100368 dprint(FD_PARSE, "__handle_option=%s, type=%d, ptr=%s\n", o->name,
369 o->type, ptr);
370
Jens Axboee3cedca2008-11-19 19:57:52 +0100371 if (!ptr && o->type != FIO_OPT_STR_SET && o->type != FIO_OPT_STR) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200372 log_err("Option %s requires an argument\n", o->name);
Jens Axboe08e26e32006-11-21 13:15:10 +0100373 return 1;
374 }
375
Jens Axboee1f36502006-10-27 10:54:08 +0200376 switch (o->type) {
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100377 case FIO_OPT_STR:
378 case FIO_OPT_STR_MULTI: {
Jens Axboee1f36502006-10-27 10:54:08 +0200379 fio_opt_str_fn *fn = o->cb;
380
Jens Axboef0857372007-03-19 13:15:23 +0100381 posval_sort(o, posval);
382
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100383 ret = 1;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100384 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboef0857372007-03-19 13:15:23 +0100385 vp = &posval[i];
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100386 if (!vp->ival || vp->ival[0] == '\0')
Jens Axboea3073f42010-03-05 10:06:15 +0100387 continue;
Jens Axboeae2ddba2010-03-10 12:49:03 +0100388 all_skipped = 0;
Jens Axboe808def72010-07-14 16:27:02 -0600389 if (!strncmp(vp->ival, ptr, opt_len(ptr))) {
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100390 ret = 0;
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100391 if (o->roff1) {
392 if (vp->or)
393 *(unsigned int *) o->roff1 |= vp->oval;
394 else
395 *(unsigned int *) o->roff1 = vp->oval;
396 } else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100397 if (!o->off1)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100398 continue;
399 val_store(ilp, vp->oval, o->off1, vp->or, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100400 }
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100401 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100402 }
403 }
404
Jens Axboeae2ddba2010-03-10 12:49:03 +0100405 if (ret && !all_skipped)
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100406 show_option_values(o);
407 else if (fn)
408 ret = fn(data, ptr);
Jens Axboee1f36502006-10-27 10:54:08 +0200409 break;
410 }
Jens Axboee42b01e2011-05-05 12:05:10 -0600411 case FIO_OPT_STR_VAL_TIME:
412 is_time = 1;
Jens Axboef7fa2652009-03-09 14:20:20 +0100413 case FIO_OPT_INT:
Jens Axboee42b01e2011-05-05 12:05:10 -0600414 case FIO_OPT_STR_VAL: {
415 fio_opt_str_val_fn *fn = o->cb;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200416 char tmp[128], *p;
417
418 strncpy(tmp, ptr, sizeof(tmp) - 1);
419 p = strchr(tmp, ',');
420 if (p)
421 *p = '\0';
Jens Axboee1f36502006-10-27 10:54:08 +0200422
Jens Axboee42b01e2011-05-05 12:05:10 -0600423 if (is_time)
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200424 ret = check_str_time(tmp, &ull);
Jens Axboee42b01e2011-05-05 12:05:10 -0600425 else
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200426 ret = check_str_bytes(tmp, &ull, data);
Jens Axboee42b01e2011-05-05 12:05:10 -0600427
Jens Axboee1f36502006-10-27 10:54:08 +0200428 if (ret)
429 break;
430
Jens Axboedb8e0162007-01-10 13:41:26 +0100431 if (o->maxval && ull > o->maxval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200432 log_err("max value out of range: %lld"
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100433 " (%d max)\n", ull, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100434 return 1;
435 }
436 if (o->minval && ull < o->minval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200437 log_err("min value out of range: %lld"
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100438 " (%d min)\n", ull, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100439 return 1;
440 }
Jens Axboee1f36502006-10-27 10:54:08 +0200441
442 if (fn)
443 ret = fn(data, &ull);
444 else {
Jens Axboee01b22b2009-06-09 15:43:25 +0200445 if (o->type == FIO_OPT_INT) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100446 if (first) {
447 if (o->roff1)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100448 *(unsigned int *) o->roff1 = ull;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100449 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100450 val_store(ilp, ull, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100451 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200452 if (curr == 1) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100453 if (o->roff2)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100454 *(unsigned int *) o->roff2 = ull;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100455 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100456 val_store(ilp, ull, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100457 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200458 if (curr == 2) {
459 if (o->roff3)
460 *(unsigned int *) o->roff3 = ull;
461 else if (o->off3)
462 val_store(ilp, ull, o->off3, 0, data);
463 }
464 if (!more) {
465 if (curr < 1) {
466 if (o->roff2)
467 *(unsigned int *) o->roff2 = ull;
468 else if (o->off2)
469 val_store(ilp, ull, o->off2, 0, data);
470 }
471 if (curr < 2) {
472 if (o->roff3)
473 *(unsigned int *) o->roff3 = ull;
474 else if (o->off3)
475 val_store(ilp, ull, o->off3, 0, data);
476 }
477 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100478 } else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100479 if (first) {
480 if (o->roff1)
481 *(unsigned long long *) o->roff1 = ull;
482 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100483 val_store(ullp, ull, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100484 }
485 if (!more) {
486 if (o->roff2)
487 *(unsigned long long *) o->roff2 = ull;
488 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100489 val_store(ullp, ull, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100490 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100491 }
Jens Axboee1f36502006-10-27 10:54:08 +0200492 }
493 break;
494 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200495 case FIO_OPT_FLOAT_LIST: {
496
497 if (first) {
498 ul2 = 1;
499 ilp = td_var(data, o->off2);
500 *ilp = ul2;
501 }
502 if (curr >= o->maxlen) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200503 log_err("the list exceeding max length %d\n",
Yu-ju Hong83349192011-08-13 00:53:44 +0200504 o->maxlen);
505 return 1;
506 }
Jens Axboe3c3ed072012-03-27 09:12:39 +0200507 if (!str_to_float(ptr, &uf)) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200508 log_err("not a floating point value: %s\n", ptr);
Yu-ju Hong83349192011-08-13 00:53:44 +0200509 return 1;
510 }
511 if (!isnan(o->maxfp) && uf > o->maxfp) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200512 log_err("value out of range: %f"
Yu-ju Hong83349192011-08-13 00:53:44 +0200513 " (range max: %f)\n", uf, o->maxfp);
514 return 1;
515 }
516 if (!isnan(o->minfp) && uf < o->minfp) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200517 log_err("value out of range: %f"
Yu-ju Hong83349192011-08-13 00:53:44 +0200518 " (range min: %f)\n", uf, o->minfp);
519 return 1;
520 }
521
522 flp = td_var(data, o->off1);
523 flp[curr] = uf;
524
525 break;
526 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100527 case FIO_OPT_STR_STORE: {
528 fio_opt_str_fn *fn = o->cb;
529
Steven Lang184b4092011-11-16 10:33:51 +0100530 if (o->roff1 || o->off1) {
531 if (o->roff1)
532 cp = (char **) o->roff1;
533 else if (o->off1)
534 cp = td_var(data, o->off1);
Jens Axboece952ab2011-08-31 14:29:22 -0600535
Steven Lang184b4092011-11-16 10:33:51 +0100536 *cp = strdup(ptr);
537 } else {
538 cp = NULL;
Jens Axboe1c964ce2011-08-31 16:45:03 -0600539 }
Jens Axboe02c6aad2010-03-04 13:49:11 +0100540
Steven Lang184b4092011-11-16 10:33:51 +0100541 if (fn)
542 ret = fn(data, ptr);
543 else if (o->posval[0].ival) {
544 posval_sort(o, posval);
Jens Axboec44b1ff2011-08-30 20:43:53 -0600545
Steven Lang184b4092011-11-16 10:33:51 +0100546 ret = 1;
547 for (i = 0; i < PARSE_MAX_VP; i++) {
548 vp = &posval[i];
549 if (!vp->ival || vp->ival[0] == '\0')
550 continue;
551 all_skipped = 0;
552 if (!strncmp(vp->ival, ptr, opt_len(ptr))) {
553 char *rest;
554
555 ret = 0;
556 if (vp->cb)
557 fn = vp->cb;
558 rest = strstr(*cp ?: ptr, ":");
559 if (rest) {
560 if (*cp)
561 *rest = '\0';
562 ptr = rest + 1;
563 } else
564 ptr = NULL;
565 break;
566 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100567 }
568 }
Jens Axboec44b1ff2011-08-30 20:43:53 -0600569
Steven Lang184b4092011-11-16 10:33:51 +0100570 if (!all_skipped) {
571 if (ret && !*cp)
572 show_option_values(o);
573 else if (ret && *cp)
574 ret = 0;
575 else if (fn && ptr)
576 ret = fn(data, ptr);
577 }
Jens Axboec44b1ff2011-08-30 20:43:53 -0600578
Jens Axboee1f36502006-10-27 10:54:08 +0200579 break;
Jens Axboeaf52b342007-03-13 10:07:47 +0100580 }
Jens Axboee1f36502006-10-27 10:54:08 +0200581 case FIO_OPT_RANGE: {
Jens Axboeb765a372006-10-27 15:00:16 +0200582 char tmp[128];
Jens Axboee1f36502006-10-27 10:54:08 +0200583 char *p1, *p2;
584
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100585 strncpy(tmp, ptr, sizeof(tmp) - 1);
Jens Axboeb765a372006-10-27 15:00:16 +0200586
Dave Engberg31d23f42011-07-23 21:07:13 +0200587 /* Handle bsrange with separate read,write values: */
588 p1 = strchr(tmp, ',');
589 if (p1)
590 *p1 = '\0';
591
Jens Axboeb765a372006-10-27 15:00:16 +0200592 p1 = strchr(tmp, '-');
Jens Axboee1f36502006-10-27 10:54:08 +0200593 if (!p1) {
Jens Axboe0c9baf92007-01-11 15:59:26 +0100594 p1 = strchr(tmp, ':');
595 if (!p1) {
596 ret = 1;
597 break;
598 }
Jens Axboee1f36502006-10-27 10:54:08 +0200599 }
600
601 p2 = p1 + 1;
602 *p1 = '\0';
Jens Axboeb765a372006-10-27 15:00:16 +0200603 p1 = tmp;
Jens Axboee1f36502006-10-27 10:54:08 +0200604
605 ret = 1;
Jens Axboed6978a32009-07-18 21:04:09 +0200606 if (!check_range_bytes(p1, &ul1, data) &&
607 !check_range_bytes(p2, &ul2, data)) {
Jens Axboee1f36502006-10-27 10:54:08 +0200608 ret = 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200609 if (ul1 > ul2) {
Jens Axboef90eff52006-11-06 11:08:21 +0100610 unsigned long foo = ul1;
611
612 ul1 = ul2;
613 ul2 = foo;
614 }
615
616 if (first) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100617 if (o->roff1)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100618 *(unsigned int *) o->roff1 = ul1;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100619 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100620 val_store(ilp, ul1, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100621 if (o->roff2)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100622 *(unsigned int *) o->roff2 = ul2;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100623 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100624 val_store(ilp, ul2, o->off2, 0, data);
Jens Axboee1f36502006-10-27 10:54:08 +0200625 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200626 if (curr == 1) {
627 if (o->roff3 && o->roff4) {
628 *(unsigned int *) o->roff3 = ul1;
629 *(unsigned int *) o->roff4 = ul2;
630 } else if (o->off3 && o->off4) {
631 val_store(ilp, ul1, o->off3, 0, data);
632 val_store(ilp, ul2, o->off4, 0, data);
633 }
634 }
635 if (curr == 2) {
636 if (o->roff5 && o->roff6) {
637 *(unsigned int *) o->roff5 = ul1;
638 *(unsigned int *) o->roff6 = ul2;
639 } else if (o->off5 && o->off6) {
640 val_store(ilp, ul1, o->off5, 0, data);
641 val_store(ilp, ul2, o->off6, 0, data);
642 }
643 }
644 if (!more) {
645 if (curr < 1) {
646 if (o->roff3 && o->roff4) {
647 *(unsigned int *) o->roff3 = ul1;
648 *(unsigned int *) o->roff4 = ul2;
649 } else if (o->off3 && o->off4) {
650 val_store(ilp, ul1, o->off3, 0, data);
651 val_store(ilp, ul2, o->off4, 0, data);
652 }
653 }
654 if (curr < 2) {
655 if (o->roff5 && o->roff6) {
656 *(unsigned int *) o->roff5 = ul1;
657 *(unsigned int *) o->roff6 = ul2;
658 } else if (o->off5 && o->off6) {
659 val_store(ilp, ul1, o->off5, 0, data);
660 val_store(ilp, ul2, o->off6, 0, data);
661 }
662 }
Jens Axboe17abbe82006-11-06 11:23:10 +0100663 }
664 }
665
Jens Axboee1f36502006-10-27 10:54:08 +0200666 break;
667 }
Jens Axboe74ba1802011-07-15 09:09:15 +0200668 case FIO_OPT_BOOL:
669 case FIO_OPT_STR_SET: {
Jens Axboee1f36502006-10-27 10:54:08 +0200670 fio_opt_int_fn *fn = o->cb;
671
Jens Axboe74ba1802011-07-15 09:09:15 +0200672 if (ptr)
673 ret = check_int(ptr, &il);
674 else if (o->type == FIO_OPT_BOOL)
675 ret = 1;
676 else
677 il = 1;
678
Jens Axboee1f36502006-10-27 10:54:08 +0200679 if (ret)
680 break;
681
Jens Axboedb8e0162007-01-10 13:41:26 +0100682 if (o->maxval && il > (int) o->maxval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200683 log_err("max value out of range: %d (%d max)\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100684 il, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100685 return 1;
686 }
687 if (o->minval && il < o->minval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200688 log_err("min value out of range: %d (%d min)\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100689 il, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100690 return 1;
691 }
Jens Axboee1f36502006-10-27 10:54:08 +0200692
Jens Axboe76a43db2007-01-11 13:24:44 +0100693 if (o->neg)
694 il = !il;
695
Jens Axboee1f36502006-10-27 10:54:08 +0200696 if (fn)
697 ret = fn(data, &il);
698 else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100699 if (first) {
700 if (o->roff1)
701 *(unsigned int *)o->roff1 = il;
702 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100703 val_store(ilp, il, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100704 }
705 if (!more) {
706 if (o->roff2)
707 *(unsigned int *) o->roff2 = il;
708 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100709 val_store(ilp, il, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100710 }
Jens Axboee1f36502006-10-27 10:54:08 +0200711 }
712 break;
713 }
Jens Axboe15ca1502008-04-07 09:26:02 +0200714 case FIO_OPT_DEPRECATED:
Jens Axboe06b0be62011-10-04 10:31:10 +0200715 log_info("Option %s is deprecated\n", o->name);
Jens Axboe15ca1502008-04-07 09:26:02 +0200716 break;
Jens Axboee1f36502006-10-27 10:54:08 +0200717 default:
Jens Axboe06b0be62011-10-04 10:31:10 +0200718 log_err("Bad option type %u\n", o->type);
Jens Axboee1f36502006-10-27 10:54:08 +0200719 ret = 1;
720 }
721
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200722 if (ret)
723 return ret;
724
Jens Axboed447a8c2009-07-17 22:26:15 +0200725 if (o->verify) {
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200726 ret = o->verify(o, data);
Jens Axboed447a8c2009-07-17 22:26:15 +0200727 if (ret) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200728 log_err("Correct format for offending option\n");
729 log_err("%20s: %s\n", o->name, o->help);
Jens Axboe06b0be62011-10-04 10:31:10 +0200730 show_option_help(o, 1);
Jens Axboed447a8c2009-07-17 22:26:15 +0200731 }
732 }
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200733
Jens Axboee1f36502006-10-27 10:54:08 +0200734 return ret;
735}
736
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200737static int handle_option(struct fio_option *o, const char *__ptr, void *data)
Jens Axboef90eff52006-11-06 11:08:21 +0100738{
Jens Axboeb62bdf22010-03-10 12:36:17 +0100739 char *o_ptr, *ptr, *ptr2;
740 int ret, done;
Jens Axboef90eff52006-11-06 11:08:21 +0100741
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200742 dprint(FD_PARSE, "handle_option=%s, ptr=%s\n", o->name, __ptr);
743
Jens Axboeb62bdf22010-03-10 12:36:17 +0100744 o_ptr = ptr = NULL;
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200745 if (__ptr)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100746 o_ptr = ptr = strdup(__ptr);
Jens Axboea3d741f2008-02-27 18:32:33 +0100747
Jens Axboef90eff52006-11-06 11:08:21 +0100748 /*
Jens Axboeb62bdf22010-03-10 12:36:17 +0100749 * See if we have another set of parameters, hidden after a comma.
750 * Do this before parsing this round, to check if we should
Jens Axboe787f7e92006-11-06 13:26:29 +0100751 * copy set 1 options to set 2.
Jens Axboef90eff52006-11-06 11:08:21 +0100752 */
Jens Axboeb62bdf22010-03-10 12:36:17 +0100753 done = 0;
754 ret = 1;
755 do {
756 int __ret;
757
758 ptr2 = NULL;
759 if (ptr &&
760 (o->type != FIO_OPT_STR_STORE) &&
Yu-ju Hong83349192011-08-13 00:53:44 +0200761 (o->type != FIO_OPT_STR) &&
762 (o->type != FIO_OPT_FLOAT_LIST)) {
Jens Axboeb62bdf22010-03-10 12:36:17 +0100763 ptr2 = strchr(ptr, ',');
764 if (ptr2 && *(ptr2 + 1) == '\0')
765 *ptr2 = '\0';
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200766 if (o->type != FIO_OPT_STR_MULTI && o->type != FIO_OPT_RANGE) {
Jens Axboeb62bdf22010-03-10 12:36:17 +0100767 if (!ptr2)
768 ptr2 = strchr(ptr, ':');
769 if (!ptr2)
770 ptr2 = strchr(ptr, '-');
771 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200772 } else if (ptr && o->type == FIO_OPT_FLOAT_LIST) {
773 ptr2 = strchr(ptr, ':');
Jens Axboeb62bdf22010-03-10 12:36:17 +0100774 }
775
776 /*
777 * Don't return early if parsing the first option fails - if
778 * we are doing multiple arguments, we can allow the first one
779 * being empty.
780 */
Yu-ju Hong83349192011-08-13 00:53:44 +0200781 __ret = __handle_option(o, ptr, data, !done, !!ptr2, done);
Jens Axboeb62bdf22010-03-10 12:36:17 +0100782 if (ret)
783 ret = __ret;
784
Jens Axboe0c9baf92007-01-11 15:59:26 +0100785 if (!ptr2)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100786 break;
Jens Axboe787f7e92006-11-06 13:26:29 +0100787
Jens Axboeb62bdf22010-03-10 12:36:17 +0100788 ptr = ptr2 + 1;
789 done++;
790 } while (1);
Jens Axboe787f7e92006-11-06 13:26:29 +0100791
Jens Axboeb62bdf22010-03-10 12:36:17 +0100792 if (o_ptr)
793 free(o_ptr);
794 return ret;
Jens Axboef90eff52006-11-06 11:08:21 +0100795}
796
Steven Langde890a12011-11-09 14:03:34 +0100797static struct fio_option *get_option(char *opt,
Jens Axboe07b32322010-03-05 09:48:44 +0100798 struct fio_option *options, char **post)
Jens Axboe3b8b7132008-06-10 19:46:23 +0200799{
800 struct fio_option *o;
801 char *ret;
802
803 ret = strchr(opt, '=');
804 if (ret) {
805 *post = ret;
806 *ret = '\0';
Steven Langde890a12011-11-09 14:03:34 +0100807 ret = opt;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200808 (*post)++;
Jens Axboe43c129b2008-12-08 14:06:42 +0100809 strip_blank_end(ret);
Jens Axboe07b32322010-03-05 09:48:44 +0100810 o = find_option(options, ret);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200811 } else {
Jens Axboe07b32322010-03-05 09:48:44 +0100812 o = find_option(options, opt);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200813 *post = NULL;
814 }
815
816 return o;
817}
818
819static int opt_cmp(const void *p1, const void *p2)
820{
Steven Langde890a12011-11-09 14:03:34 +0100821 struct fio_option *o;
822 char *s, *foo;
Jens Axboe8cdabc12008-11-19 12:31:43 +0100823 int prio1, prio2;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200824
Jens Axboe8cdabc12008-11-19 12:31:43 +0100825 prio1 = prio2 = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200826
Steven Langde890a12011-11-09 14:03:34 +0100827 if (*(char **)p1) {
828 s = strdup(*((char **) p1));
Jens Axboe9af4a242012-03-16 10:13:49 +0100829 o = get_option(s, __fio_options, &foo);
Steven Langde890a12011-11-09 14:03:34 +0100830 if (o)
831 prio1 = o->prio;
832 free(s);
833 }
834 if (*(char **)p2) {
835 s = strdup(*((char **) p2));
Jens Axboe9af4a242012-03-16 10:13:49 +0100836 o = get_option(s, __fio_options, &foo);
Steven Langde890a12011-11-09 14:03:34 +0100837 if (o)
838 prio2 = o->prio;
839 free(s);
840 }
841
Jens Axboe8cdabc12008-11-19 12:31:43 +0100842 return prio2 - prio1;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200843}
844
845void sort_options(char **opts, struct fio_option *options, int num_opts)
846{
Jens Axboe9af4a242012-03-16 10:13:49 +0100847 __fio_options = options;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200848 qsort(opts, num_opts, sizeof(char *), opt_cmp);
Jens Axboe9af4a242012-03-16 10:13:49 +0100849 __fio_options = NULL;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200850}
851
Jens Axboeb4692822006-10-27 13:43:22 +0200852int parse_cmd_option(const char *opt, const char *val,
Jens Axboe07b32322010-03-05 09:48:44 +0100853 struct fio_option *options, void *data)
Jens Axboeb4692822006-10-27 13:43:22 +0200854{
855 struct fio_option *o;
856
Jens Axboe07b32322010-03-05 09:48:44 +0100857 o = find_option(options, opt);
Jens Axboeb4692822006-10-27 13:43:22 +0200858 if (!o) {
Jens Axboe06b0be62011-10-04 10:31:10 +0200859 log_err("Bad option <%s>\n", opt);
Jens Axboeb4692822006-10-27 13:43:22 +0200860 return 1;
861 }
862
Jens Axboeb1508cf2006-11-02 09:12:40 +0100863 if (!handle_option(o, val, data))
864 return 0;
865
Jens Axboe06b0be62011-10-04 10:31:10 +0200866 log_err("fio: failed parsing %s=%s\n", opt, val);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100867 return 1;
Jens Axboeb4692822006-10-27 13:43:22 +0200868}
869
Steven Langde890a12011-11-09 14:03:34 +0100870int parse_option(char *opt, const char *input,
871 struct fio_option *options, struct fio_option **o, void *data)
Jens Axboee1f36502006-10-27 10:54:08 +0200872{
Steven Langd0c814e2011-10-28 08:37:13 +0200873 char *post;
Jens Axboee1f36502006-10-27 10:54:08 +0200874
Steven Langd0c814e2011-10-28 08:37:13 +0200875 if (!opt) {
876 log_err("fio: failed parsing %s\n", input);
Steven Langde890a12011-11-09 14:03:34 +0100877 *o = NULL;
Jens Axboe38789b52010-03-03 09:23:20 +0100878 return 1;
Steven Langd0c814e2011-10-28 08:37:13 +0200879 }
Jens Axboee1f36502006-10-27 10:54:08 +0200880
Steven Langde890a12011-11-09 14:03:34 +0100881 *o = get_option(opt, options, &post);
882 if (!*o) {
883 if (post) {
884 int len = strlen(opt);
885 if (opt + len + 1 != post)
886 memmove(opt + len + 1, post, strlen(post));
887 opt[len] = '=';
888 }
Jens Axboee1f36502006-10-27 10:54:08 +0200889 return 1;
890 }
891
Jens Axboe90265352012-03-19 20:29:44 +0100892 if (!handle_option(*o, post, data))
Jens Axboeb1508cf2006-11-02 09:12:40 +0100893 return 0;
894
Steven Langd0c814e2011-10-28 08:37:13 +0200895 log_err("fio: failed parsing %s\n", input);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100896 return 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200897}
Jens Axboefd28ca42007-01-09 21:20:13 +0100898
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100899/*
900 * Option match, levenshtein distance. Handy for not quite remembering what
901 * the option name is.
902 */
903static int string_distance(const char *s1, const char *s2)
904{
905 unsigned int s1_len = strlen(s1);
906 unsigned int s2_len = strlen(s2);
907 unsigned int *p, *q, *r;
908 unsigned int i, j;
909
910 p = malloc(sizeof(unsigned int) * (s2_len + 1));
911 q = malloc(sizeof(unsigned int) * (s2_len + 1));
912
913 p[0] = 0;
914 for (i = 1; i <= s2_len; i++)
915 p[i] = p[i - 1] + 1;
916
917 for (i = 1; i <= s1_len; i++) {
918 q[0] = p[0] + 1;
919 for (j = 1; j <= s2_len; j++) {
920 unsigned int sub = p[j - 1];
921
922 if (s1[i - 1] != s2[j - 1])
923 sub++;
924
925 q[j] = min(p[j] + 1, min(q[j - 1] + 1, sub));
926 }
927 r = p;
928 p = q;
929 q = r;
930 }
931
932 i = p[s2_len];
933 free(p);
934 free(q);
935 return i;
936}
937
Jens Axboeafdf9352007-07-31 16:14:34 +0200938static struct fio_option *find_child(struct fio_option *options,
939 struct fio_option *o)
940{
941 struct fio_option *__o;
942
Jens Axboefdf28742007-07-31 23:06:09 +0200943 for (__o = options + 1; __o->name; __o++)
944 if (__o->parent && !strcmp(__o->parent, o->name))
Jens Axboeafdf9352007-07-31 16:14:34 +0200945 return __o;
946
947 return NULL;
948}
949
Jens Axboe323d9112008-03-01 15:12:14 +0100950static void __print_option(struct fio_option *o, struct fio_option *org,
951 int level)
Jens Axboeafdf9352007-07-31 16:14:34 +0200952{
953 char name[256], *p;
Jens Axboe323d9112008-03-01 15:12:14 +0100954 int depth;
Jens Axboeafdf9352007-07-31 16:14:34 +0200955
956 if (!o)
957 return;
Jens Axboeef9aff52007-07-31 22:56:53 +0200958 if (!org)
959 org = o;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100960
Jens Axboeafdf9352007-07-31 16:14:34 +0200961 p = name;
Jens Axboe323d9112008-03-01 15:12:14 +0100962 depth = level;
963 while (depth--)
964 p += sprintf(p, "%s", " ");
Jens Axboeafdf9352007-07-31 16:14:34 +0200965
966 sprintf(p, "%s", o->name);
967
Jens Axboe28d7c362011-10-05 20:30:24 +0200968 log_info("%-24s: %s\n", name, o->help);
Jens Axboe323d9112008-03-01 15:12:14 +0100969}
970
971static void print_option(struct fio_option *o)
972{
973 struct fio_option *parent;
974 struct fio_option *__o;
975 unsigned int printed;
976 unsigned int level;
977
978 __print_option(o, NULL, 0);
979 parent = o;
980 level = 0;
981 do {
982 level++;
983 printed = 0;
984
985 while ((__o = find_child(o, parent)) != NULL) {
986 __print_option(__o, o, level);
987 o = __o;
988 printed++;
989 }
990
991 parent = o;
992 } while (printed);
Jens Axboeafdf9352007-07-31 16:14:34 +0200993}
994
Jens Axboe07b32322010-03-05 09:48:44 +0100995int show_cmd_help(struct fio_option *options, const char *name)
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100996{
997 struct fio_option *o, *closest;
Jens Axboed091d092010-04-01 19:56:23 +0200998 unsigned int best_dist = -1U;
Jens Axboe29fc6af2007-01-09 21:22:02 +0100999 int found = 0;
Jens Axboe320beef2007-03-01 10:44:12 +01001000 int show_all = 0;
1001
1002 if (!name || !strcmp(name, "all"))
1003 show_all = 1;
Jens Axboefd28ca42007-01-09 21:20:13 +01001004
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001005 closest = NULL;
1006 best_dist = -1;
Jens Axboe4945ba12007-01-11 14:36:56 +01001007 for (o = &options[0]; o->name; o++) {
Jens Axboe320beef2007-03-01 10:44:12 +01001008 int match = 0;
1009
Jens Axboe15ca1502008-04-07 09:26:02 +02001010 if (o->type == FIO_OPT_DEPRECATED)
1011 continue;
Jens Axboe07b32322010-03-05 09:48:44 +01001012 if (!exec_profile && o->prof_name)
1013 continue;
Jens Axboe15ca1502008-04-07 09:26:02 +02001014
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001015 if (name) {
Jens Axboe7f9348f2007-03-15 14:09:28 +01001016 if (!strcmp(name, o->name) ||
1017 (o->alias && !strcmp(name, o->alias)))
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001018 match = 1;
1019 else {
1020 unsigned int dist;
1021
1022 dist = string_distance(name, o->name);
1023 if (dist < best_dist) {
1024 best_dist = dist;
1025 closest = o;
1026 }
1027 }
1028 }
Jens Axboefd28ca42007-01-09 21:20:13 +01001029
1030 if (show_all || match) {
Jens Axboe29fc6af2007-01-09 21:22:02 +01001031 found = 1;
Jens Axboec167ded2007-03-14 13:02:53 +01001032 if (match)
Jens Axboe28d7c362011-10-05 20:30:24 +02001033 log_info("%20s: %s\n", o->name, o->help);
Jens Axboec167ded2007-03-14 13:02:53 +01001034 if (show_all) {
Jens Axboeafdf9352007-07-31 16:14:34 +02001035 if (!o->parent)
Jens Axboe323d9112008-03-01 15:12:14 +01001036 print_option(o);
Jens Axboe4945ba12007-01-11 14:36:56 +01001037 continue;
Jens Axboec167ded2007-03-14 13:02:53 +01001038 }
Jens Axboefd28ca42007-01-09 21:20:13 +01001039 }
1040
Jens Axboe70df2f12007-01-11 14:04:47 +01001041 if (!match)
1042 continue;
1043
Jens Axboe06b0be62011-10-04 10:31:10 +02001044 show_option_help(o, 0);
Jens Axboefd28ca42007-01-09 21:20:13 +01001045 }
1046
Jens Axboe29fc6af2007-01-09 21:22:02 +01001047 if (found)
1048 return 0;
Jens Axboefd28ca42007-01-09 21:20:13 +01001049
Jens Axboe28d7c362011-10-05 20:30:24 +02001050 log_err("No such command: %s", name);
Jens Axboed091d092010-04-01 19:56:23 +02001051
1052 /*
1053 * Only print an appropriately close option, one where the edit
1054 * distance isn't too big. Otherwise we get crazy matches.
1055 */
1056 if (closest && best_dist < 3) {
Jens Axboe28d7c362011-10-05 20:30:24 +02001057 log_info(" - showing closest match\n");
1058 log_info("%20s: %s\n", closest->name, closest->help);
Jens Axboe06b0be62011-10-04 10:31:10 +02001059 show_option_help(closest, 0);
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001060 } else
Jens Axboe28d7c362011-10-05 20:30:24 +02001061 log_info("\n");
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001062
Jens Axboe29fc6af2007-01-09 21:22:02 +01001063 return 1;
Jens Axboefd28ca42007-01-09 21:20:13 +01001064}
Jens Axboeee738492007-01-10 11:23:16 +01001065
Jens Axboe13335dd2007-01-10 13:14:02 +01001066/*
1067 * Handle parsing of default parameters.
1068 */
Jens Axboeee738492007-01-10 11:23:16 +01001069void fill_default_options(void *data, struct fio_option *options)
1070{
Jens Axboe4945ba12007-01-11 14:36:56 +01001071 struct fio_option *o;
Jens Axboeee738492007-01-10 11:23:16 +01001072
Jens Axboea3d741f2008-02-27 18:32:33 +01001073 dprint(FD_PARSE, "filling default options\n");
1074
Jens Axboe4945ba12007-01-11 14:36:56 +01001075 for (o = &options[0]; o->name; o++)
Jens Axboeee738492007-01-10 11:23:16 +01001076 if (o->def)
1077 handle_option(o, o->def, data);
Jens Axboeee738492007-01-10 11:23:16 +01001078}
Jens Axboe13335dd2007-01-10 13:14:02 +01001079
Jens Axboe9f988e22010-03-04 10:42:38 +01001080void option_init(struct fio_option *o)
1081{
1082 if (o->type == FIO_OPT_DEPRECATED)
1083 return;
1084 if (o->type == FIO_OPT_BOOL) {
1085 o->minval = 0;
1086 o->maxval = 1;
1087 }
Yu-ju Hong83349192011-08-13 00:53:44 +02001088 if (o->type == FIO_OPT_FLOAT_LIST) {
1089 o->minfp = NAN;
1090 o->maxfp = NAN;
1091 }
Jens Axboe9f988e22010-03-04 10:42:38 +01001092 if (o->type == FIO_OPT_STR_SET && o->def) {
Jens Axboe06b0be62011-10-04 10:31:10 +02001093 log_err("Option %s: string set option with"
Jens Axboe9f988e22010-03-04 10:42:38 +01001094 " default will always be true\n", o->name);
1095 }
Jens Axboe06b0be62011-10-04 10:31:10 +02001096 if (!o->cb && (!o->off1 && !o->roff1))
1097 log_err("Option %s: neither cb nor offset given\n", o->name);
Jens Axboe5f6ddf12010-03-09 20:40:44 +01001098 if (o->type == FIO_OPT_STR || o->type == FIO_OPT_STR_STORE ||
1099 o->type == FIO_OPT_STR_MULTI)
Jens Axboe9f988e22010-03-04 10:42:38 +01001100 return;
Jens Axboee2de69d2010-03-04 14:05:48 +01001101 if (o->cb && ((o->off1 || o->off2 || o->off3 || o->off4) ||
1102 (o->roff1 || o->roff2 || o->roff3 || o->roff4))) {
Jens Axboe06b0be62011-10-04 10:31:10 +02001103 log_err("Option %s: both cb and offset given\n", o->name);
Jens Axboe9f988e22010-03-04 10:42:38 +01001104 }
Jens Axboe0a074fe2012-03-16 18:58:39 +01001105 if (!o->category) {
1106 log_info("Options %s: no category defined. Setting to misc\n", o->name);
Jens Axboee8b0e952012-03-19 14:37:08 +01001107 o->category = FIO_OPT_C_GENERAL;
Jens Axboe0a074fe2012-03-16 18:58:39 +01001108 }
Jens Axboe9f988e22010-03-04 10:42:38 +01001109}
1110
Jens Axboe13335dd2007-01-10 13:14:02 +01001111/*
1112 * Sanitize the options structure. For now it just sets min/max for bool
Jens Axboe5b0a8882007-01-11 14:40:27 +01001113 * values and whether both callback and offsets are given.
Jens Axboe13335dd2007-01-10 13:14:02 +01001114 */
1115void options_init(struct fio_option *options)
1116{
Jens Axboe4945ba12007-01-11 14:36:56 +01001117 struct fio_option *o;
Jens Axboe13335dd2007-01-10 13:14:02 +01001118
Jens Axboea3d741f2008-02-27 18:32:33 +01001119 dprint(FD_PARSE, "init options\n");
1120
Jens Axboe90265352012-03-19 20:29:44 +01001121 for (o = &options[0]; o->name; o++) {
Jens Axboe9f988e22010-03-04 10:42:38 +01001122 option_init(o);
Jens Axboe90265352012-03-19 20:29:44 +01001123 if (o->inverse)
1124 o->inv_opt = find_option(options, o->inverse);
1125 }
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}