blob: 51cefcaef4abd3d93db61e658d5ae4c29b6d437a [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>
Bruce Cranab9461e2013-02-02 14:31:24 +000013#include <float.h>
Jens Axboecb2c86f2006-10-26 13:48:34 +020014
15#include "parse.h"
Jens Axboea3d741f2008-02-27 18:32:33 +010016#include "debug.h"
Jens Axboe9f988e22010-03-04 10:42:38 +010017#include "options.h"
Jens Axboee25839d2012-11-06 10:49:42 +010018#include "minmax.h"
Vincent Kang Fufd112d32013-02-02 09:28:55 +010019#include "lib/ieee754.h"
Jens Axboecb2c86f2006-10-26 13:48:34 +020020
Jens Axboe3b8b7132008-06-10 19:46:23 +020021static struct fio_option *fio_options;
Jens Axboed6978a32009-07-18 21:04:09 +020022extern unsigned int fio_get_kb_base(void *);
Jens Axboe3b8b7132008-06-10 19:46:23 +020023
Jens Axboef0857372007-03-19 13:15:23 +010024static int vp_cmp(const void *p1, const void *p2)
25{
26 const struct value_pair *vp1 = p1;
27 const struct value_pair *vp2 = p2;
28
29 return strlen(vp2->ival) - strlen(vp1->ival);
30}
31
Jens Axboece952ab2011-08-31 14:29:22 -060032static void posval_sort(struct fio_option *o, struct value_pair *vpmap)
Jens Axboef0857372007-03-19 13:15:23 +010033{
34 const struct value_pair *vp;
35 int entries;
36
37 memset(vpmap, 0, PARSE_MAX_VP * sizeof(struct value_pair));
38
39 for (entries = 0; entries < PARSE_MAX_VP; entries++) {
40 vp = &o->posval[entries];
41 if (!vp->ival || vp->ival[0] == '\0')
42 break;
43
44 memcpy(&vpmap[entries], vp, sizeof(*vp));
45 }
46
47 qsort(vpmap, entries, sizeof(struct value_pair), vp_cmp);
48}
49
Jens Axboe06b0be62011-10-04 10:31:10 +020050static void show_option_range(struct fio_option *o,
51 int (*logger)(const char *format, ...))
Jens Axboeb1ec1da2007-02-23 10:29:16 +010052{
Yu-ju Hong83349192011-08-13 00:53:44 +020053 if (o->type == FIO_OPT_FLOAT_LIST){
Bruce Cranab9461e2013-02-02 14:31:24 +000054 if (o->minfp == DBL_MIN && o->maxfp == DBL_MAX)
Yu-ju Hong83349192011-08-13 00:53:44 +020055 return;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010056
Jens Axboe06b0be62011-10-04 10:31:10 +020057 logger("%20s: min=%f", "range", o->minfp);
Bruce Cranab9461e2013-02-02 14:31:24 +000058 if (o->maxfp != DBL_MAX)
Jens Axboe06b0be62011-10-04 10:31:10 +020059 logger(", max=%f", o->maxfp);
60 logger("\n");
Yu-ju Hong83349192011-08-13 00:53:44 +020061 } else {
62 if (!o->minval && !o->maxval)
63 return;
64
Jens Axboe06b0be62011-10-04 10:31:10 +020065 logger("%20s: min=%d", "range", o->minval);
Yu-ju Hong83349192011-08-13 00:53:44 +020066 if (o->maxval)
Jens Axboe06b0be62011-10-04 10:31:10 +020067 logger(", max=%d", o->maxval);
68 logger("\n");
Yu-ju Hong83349192011-08-13 00:53:44 +020069 }
Jens Axboeb1ec1da2007-02-23 10:29:16 +010070}
71
72static void show_option_values(struct fio_option *o)
73{
Jens Axboea3073f42010-03-05 10:06:15 +010074 int i;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010075
Jens Axboea3073f42010-03-05 10:06:15 +010076 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboe78372132007-03-14 13:24:07 +010077 const struct value_pair *vp = &o->posval[i];
78
79 if (!vp->ival)
Jens Axboea3073f42010-03-05 10:06:15 +010080 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010081
Jens Axboe06b0be62011-10-04 10:31:10 +020082 log_info("%20s: %-10s", i == 0 ? "valid values" : "", vp->ival);
Jens Axboe78372132007-03-14 13:24:07 +010083 if (vp->help)
Jens Axboe06b0be62011-10-04 10:31:10 +020084 log_info(" %s", vp->help);
85 log_info("\n");
Jens Axboea3073f42010-03-05 10:06:15 +010086 }
Jens Axboeb1ec1da2007-02-23 10:29:16 +010087
88 if (i)
Jens Axboe06b0be62011-10-04 10:31:10 +020089 log_info("\n");
Jens Axboeb1ec1da2007-02-23 10:29:16 +010090}
91
Jens Axboe06b0be62011-10-04 10:31:10 +020092static void show_option_help(struct fio_option *o, int is_err)
Jens Axboed447a8c2009-07-17 22:26:15 +020093{
94 const char *typehelp[] = {
Jens Axboe07b32322010-03-05 09:48:44 +010095 "invalid",
Jens Axboed447a8c2009-07-17 22:26:15 +020096 "string (opt=bla)",
Jens Axboeae3fb6f2010-09-14 13:10:35 +020097 "string (opt=bla)",
Jens Axboed447a8c2009-07-17 22:26:15 +020098 "string with possible k/m/g postfix (opt=4k)",
99 "string with time postfix (opt=10s)",
100 "string (opt=bla)",
101 "string with dual range (opt=1k-4k,4k-8k)",
102 "integer value (opt=100)",
103 "boolean value (opt=1)",
Yu-ju Hong83349192011-08-13 00:53:44 +0200104 "list of floating point values separated by ':' (opt=5.9:7.8)",
Jens Axboed447a8c2009-07-17 22:26:15 +0200105 "no argument (opt)",
Jens Axboe07b32322010-03-05 09:48:44 +0100106 "deprecated",
Jens Axboed447a8c2009-07-17 22:26:15 +0200107 };
Jens Axboe06b0be62011-10-04 10:31:10 +0200108 int (*logger)(const char *format, ...);
109
110 if (is_err)
111 logger = log_err;
112 else
113 logger = log_info;
Jens Axboed447a8c2009-07-17 22:26:15 +0200114
115 if (o->alias)
Jens Axboe06b0be62011-10-04 10:31:10 +0200116 logger("%20s: %s\n", "alias", o->alias);
Jens Axboed447a8c2009-07-17 22:26:15 +0200117
Jens Axboe06b0be62011-10-04 10:31:10 +0200118 logger("%20s: %s\n", "type", typehelp[o->type]);
119 logger("%20s: %s\n", "default", o->def ? o->def : "no default");
Jens Axboe07b32322010-03-05 09:48:44 +0100120 if (o->prof_name)
Jens Axboe06b0be62011-10-04 10:31:10 +0200121 logger("%20s: only for profile '%s'\n", "valid", o->prof_name);
122 show_option_range(o, logger);
Jens Axboed447a8c2009-07-17 22:26:15 +0200123 show_option_values(o);
124}
125
Jens Axboecb2c86f2006-10-26 13:48:34 +0200126static unsigned long get_mult_time(char c)
127{
128 switch (c) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100129 case 'm':
130 case 'M':
131 return 60;
132 case 'h':
133 case 'H':
134 return 60 * 60;
135 case 'd':
136 case 'D':
137 return 24 * 60 * 60;
138 default:
139 return 1;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200140 }
141}
142
Jens Axboe7bb59102011-07-12 19:47:03 +0200143static unsigned long long __get_mult_bytes(const char *p, void *data,
144 int *percent)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200145{
Jens Axboed6978a32009-07-18 21:04:09 +0200146 unsigned int kb_base = fio_get_kb_base(data);
Jens Axboea639f0b2009-07-18 08:25:35 +0200147 unsigned long long ret = 1;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200148 unsigned int i, pow = 0, mult = kb_base;
149 char *c;
Jens Axboea639f0b2009-07-18 08:25:35 +0200150
Jens Axboe57fc29f2010-06-23 22:24:07 +0200151 if (!p)
152 return 1;
Jens Axboea639f0b2009-07-18 08:25:35 +0200153
Jens Axboe57fc29f2010-06-23 22:24:07 +0200154 c = strdup(p);
155
156 for (i = 0; i < strlen(c); i++)
157 c[i] = tolower(c[i]);
158
159 if (!strcmp("pib", c)) {
160 pow = 5;
161 mult = 1000;
162 } else if (!strcmp("tib", c)) {
163 pow = 4;
164 mult = 1000;
165 } else if (!strcmp("gib", c)) {
166 pow = 3;
167 mult = 1000;
168 } else if (!strcmp("mib", c)) {
169 pow = 2;
170 mult = 1000;
171 } else if (!strcmp("kib", c)) {
172 pow = 1;
173 mult = 1000;
174 } else if (!strcmp("p", c) || !strcmp("pb", c))
175 pow = 5;
176 else if (!strcmp("t", c) || !strcmp("tb", c))
177 pow = 4;
178 else if (!strcmp("g", c) || !strcmp("gb", c))
179 pow = 3;
180 else if (!strcmp("m", c) || !strcmp("mb", c))
181 pow = 2;
182 else if (!strcmp("k", c) || !strcmp("kb", c))
183 pow = 1;
Jens Axboe7bb59102011-07-12 19:47:03 +0200184 else if (!strcmp("%", c)) {
185 *percent = 1;
Jens Axboee721c572012-02-09 20:55:29 +0100186 free(c);
Jens Axboe7bb59102011-07-12 19:47:03 +0200187 return ret;
188 }
Jens Axboe57fc29f2010-06-23 22:24:07 +0200189
190 while (pow--)
191 ret *= (unsigned long long) mult;
192
193 free(c);
Jens Axboea639f0b2009-07-18 08:25:35 +0200194 return ret;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200195}
196
Jens Axboe7bb59102011-07-12 19:47:03 +0200197static unsigned long long get_mult_bytes(const char *str, int len, void *data,
Jens Axboe6925dd32011-09-07 22:10:11 +0200198 int *percent)
Jens Axboe57fc29f2010-06-23 22:24:07 +0200199{
Jens Axboe55ed9632011-03-27 20:55:09 +0200200 const char *p = str;
Jens Axboeba4ddd62011-09-07 22:11:00 +0200201 int digit_seen = 0;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200202
Jens Axboe1d1c1872010-07-29 10:50:05 +0200203 if (len < 2)
Jens Axboe7bb59102011-07-12 19:47:03 +0200204 return __get_mult_bytes(str, data, percent);
Jens Axboe1d1c1872010-07-29 10:50:05 +0200205
Steven Langd0c814e2011-10-28 08:37:13 +0200206 /*
207 * Go forward until we hit a non-digit, or +/- sign
208 */
Jens Axboe55ed9632011-03-27 20:55:09 +0200209 while ((p - str) <= len) {
Jens Axboeba4ddd62011-09-07 22:11:00 +0200210 if (!isdigit((int) *p) &&
211 (((*p != '+') && (*p != '-')) || digit_seen))
Jens Axboe55ed9632011-03-27 20:55:09 +0200212 break;
Jens Axboe3c703d12011-09-21 09:27:24 +0200213 digit_seen |= isdigit((int) *p);
Jens Axboe55ed9632011-03-27 20:55:09 +0200214 p++;
215 }
216
Jens Axboe7bb59102011-07-12 19:47:03 +0200217 if (!isalpha((int) *p) && (*p != '%'))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200218 p = NULL;
219
Jens Axboe7bb59102011-07-12 19:47:03 +0200220 return __get_mult_bytes(p, data, percent);
Jens Axboe57fc29f2010-06-23 22:24:07 +0200221}
222
Jens Axboecb2c86f2006-10-26 13:48:34 +0200223/*
Yu-ju Hong83349192011-08-13 00:53:44 +0200224 * Convert string into a floating number. Return 1 for success and 0 otherwise.
225 */
Jens Axboee25839d2012-11-06 10:49:42 +0100226int str_to_float(const char *str, double *val)
Yu-ju Hong83349192011-08-13 00:53:44 +0200227{
228 return (1 == sscanf(str, "%lf", val));
229}
230
231/*
Jens Axboee1f36502006-10-27 10:54:08 +0200232 * convert string into decimal value, noting any size suffix
Jens Axboecb2c86f2006-10-26 13:48:34 +0200233 */
Jens Axboe6925dd32011-09-07 22:10:11 +0200234int str_to_decimal(const char *str, long long *val, int kilo, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200235{
Jens Axboeb347f9d2009-03-09 14:15:21 +0100236 int len, base;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200237
Jens Axboecb2c86f2006-10-26 13:48:34 +0200238 len = strlen(str);
Jens Axboef90eff52006-11-06 11:08:21 +0100239 if (!len)
240 return 1;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200241
Jens Axboeb347f9d2009-03-09 14:15:21 +0100242 if (strstr(str, "0x") || strstr(str, "0X"))
243 base = 16;
244 else
245 base = 10;
246
247 *val = strtoll(str, NULL, base);
Jens Axboecda866c2007-01-10 16:02:32 +0100248 if (*val == LONG_MAX && errno == ERANGE)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200249 return 1;
250
Jens Axboe7bb59102011-07-12 19:47:03 +0200251 if (kilo) {
252 unsigned long long mult;
253 int perc = 0;
254
Jens Axboe6925dd32011-09-07 22:10:11 +0200255 mult = get_mult_bytes(str, len, data, &perc);
Jens Axboe7bb59102011-07-12 19:47:03 +0200256 if (perc)
257 *val = -1ULL - *val;
258 else
259 *val *= mult;
260 } else
Jens Axboecb2c86f2006-10-26 13:48:34 +0200261 *val *= get_mult_time(str[len - 1]);
Jens Axboe787f7e92006-11-06 13:26:29 +0100262
Jens Axboecb2c86f2006-10-26 13:48:34 +0200263 return 0;
264}
265
Jens Axboe6925dd32011-09-07 22:10:11 +0200266static int check_str_bytes(const char *p, long long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200267{
Jens Axboe6925dd32011-09-07 22:10:11 +0200268 return str_to_decimal(p, val, 1, data);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200269}
270
Jens Axboe63f29372007-01-10 13:20:09 +0100271static int check_str_time(const char *p, long long *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200272{
Jens Axboe6925dd32011-09-07 22:10:11 +0200273 return str_to_decimal(p, val, 0, NULL);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200274}
275
276void strip_blank_front(char **p)
277{
278 char *s = *p;
279
Jens Axboe4c8e9642011-10-15 14:37:38 +0200280 if (!strlen(s))
281 return;
Jens Axboe76cd9372011-07-08 21:14:57 +0200282 while (isspace((int) *s))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200283 s++;
Jens Axboe4d651da2007-03-28 19:34:53 +0200284
285 *p = s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200286}
287
288void strip_blank_end(char *p)
289{
Jens Axboe853ee7f2009-03-06 20:29:29 +0100290 char *start = p, *s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200291
Jens Axboe4c8e9642011-10-15 14:37:38 +0200292 if (!strlen(p))
293 return;
294
Jens Axboe523bfad2007-04-04 11:04:06 +0200295 s = strchr(p, ';');
296 if (s)
297 *s = '\0';
298 s = strchr(p, '#');
299 if (s)
300 *s = '\0';
301 if (s)
302 p = s;
303
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200304 s = p + strlen(p);
Jens Axboe76cd9372011-07-08 21:14:57 +0200305 while ((isspace((int) *s) || iscntrl((int) *s)) && (s > start))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200306 s--;
307
308 *(s + 1) = '\0';
309}
310
Jens Axboed6978a32009-07-18 21:04:09 +0200311static int check_range_bytes(const char *str, long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200312{
Jens Axboe57fc29f2010-06-23 22:24:07 +0200313 long long __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200314
Jens Axboe6925dd32011-09-07 22:10:11 +0200315 if (!str_to_decimal(str, &__val, 1, data)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200316 *val = __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200317 return 0;
318 }
319
Jens Axboecb2c86f2006-10-26 13:48:34 +0200320 return 1;
321}
322
Jens Axboe63f29372007-01-10 13:20:09 +0100323static int check_int(const char *p, int *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200324{
Jens Axboe787f7e92006-11-06 13:26:29 +0100325 if (!strlen(p))
326 return 1;
Jens Axboed78ee462007-08-10 14:03:20 +0200327 if (strstr(p, "0x") || strstr(p, "0X")) {
Jens Axboea61bdfd2007-07-30 09:07:04 +0200328 if (sscanf(p, "%x", val) == 1)
329 return 0;
330 } else {
331 if (sscanf(p, "%u", val) == 1)
332 return 0;
333 }
Jens Axboecb2c86f2006-10-26 13:48:34 +0200334
335 return 1;
336}
337
Jens Axboe808def72010-07-14 16:27:02 -0600338static int opt_len(const char *str)
339{
340 char *postfix;
341
342 postfix = strchr(str, ':');
343 if (!postfix)
344 return strlen(str);
345
346 return (int)(postfix - str);
347}
348
Jens Axboe119cd932012-12-06 17:34:57 +0100349static int str_match_len(const struct value_pair *vp, const char *str)
350{
351 return max(strlen(vp->ival), opt_len(str));
352}
353
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100354#define val_store(ptr, val, off, or, data) \
Jens Axboe17abbe82006-11-06 11:23:10 +0100355 do { \
356 ptr = td_var((data), (off)); \
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100357 if ((or)) \
358 *ptr |= (val); \
359 else \
360 *ptr = (val); \
Jens Axboe17abbe82006-11-06 11:23:10 +0100361 } while (0)
362
Jens Axboef90eff52006-11-06 11:08:21 +0100363static int __handle_option(struct fio_option *o, const char *ptr, void *data,
Yu-ju Hong83349192011-08-13 00:53:44 +0200364 int first, int more, int curr)
Jens Axboee1f36502006-10-27 10:54:08 +0200365{
Jens Axboe63f29372007-01-10 13:20:09 +0100366 int il, *ilp;
Vincent Kang Fufd112d32013-02-02 09:28:55 +0100367 fio_fp64_t *flp;
Jens Axboe63f29372007-01-10 13:20:09 +0100368 long long ull, *ullp;
369 long ul1, ul2;
Yu-ju Hong83349192011-08-13 00:53:44 +0200370 double uf;
Jens Axboebfe1d592012-11-29 21:33:03 +0100371 char **cp = NULL;
Jens Axboee42b01e2011-05-05 12:05:10 -0600372 int ret = 0, is_time = 0;
Jens Axboec44b1ff2011-08-30 20:43:53 -0600373 const struct value_pair *vp;
374 struct value_pair posval[PARSE_MAX_VP];
Jens Axboeeef02442013-02-06 08:51:57 +0100375 int i, all_skipped = 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200376
Jens Axboea3d741f2008-02-27 18:32:33 +0100377 dprint(FD_PARSE, "__handle_option=%s, type=%d, ptr=%s\n", o->name,
378 o->type, ptr);
379
Jens Axboee3cedca2008-11-19 19:57:52 +0100380 if (!ptr && o->type != FIO_OPT_STR_SET && o->type != FIO_OPT_STR) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200381 log_err("Option %s requires an argument\n", o->name);
Jens Axboe08e26e32006-11-21 13:15:10 +0100382 return 1;
383 }
384
Jens Axboee1f36502006-10-27 10:54:08 +0200385 switch (o->type) {
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100386 case FIO_OPT_STR:
387 case FIO_OPT_STR_MULTI: {
Jens Axboee1f36502006-10-27 10:54:08 +0200388 fio_opt_str_fn *fn = o->cb;
389
Jens Axboef0857372007-03-19 13:15:23 +0100390 posval_sort(o, posval);
391
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100392 ret = 1;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100393 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboef0857372007-03-19 13:15:23 +0100394 vp = &posval[i];
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100395 if (!vp->ival || vp->ival[0] == '\0')
Jens Axboea3073f42010-03-05 10:06:15 +0100396 continue;
Jens Axboeae2ddba2010-03-10 12:49:03 +0100397 all_skipped = 0;
Jens Axboe119cd932012-12-06 17:34:57 +0100398 if (!strncmp(vp->ival, ptr, str_match_len(vp, ptr))) {
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100399 ret = 0;
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100400 if (o->roff1) {
401 if (vp->or)
402 *(unsigned int *) o->roff1 |= vp->oval;
403 else
404 *(unsigned int *) o->roff1 = vp->oval;
405 } else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100406 if (!o->off1)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100407 continue;
408 val_store(ilp, vp->oval, o->off1, vp->or, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100409 }
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100410 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100411 }
412 }
413
Jens Axboeae2ddba2010-03-10 12:49:03 +0100414 if (ret && !all_skipped)
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100415 show_option_values(o);
416 else if (fn)
417 ret = fn(data, ptr);
Jens Axboee1f36502006-10-27 10:54:08 +0200418 break;
419 }
Jens Axboee42b01e2011-05-05 12:05:10 -0600420 case FIO_OPT_STR_VAL_TIME:
421 is_time = 1;
Jens Axboef7fa2652009-03-09 14:20:20 +0100422 case FIO_OPT_INT:
Jens Axboee42b01e2011-05-05 12:05:10 -0600423 case FIO_OPT_STR_VAL: {
424 fio_opt_str_val_fn *fn = o->cb;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200425 char tmp[128], *p;
426
427 strncpy(tmp, ptr, sizeof(tmp) - 1);
428 p = strchr(tmp, ',');
429 if (p)
430 *p = '\0';
Jens Axboee1f36502006-10-27 10:54:08 +0200431
Jens Axboee42b01e2011-05-05 12:05:10 -0600432 if (is_time)
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200433 ret = check_str_time(tmp, &ull);
Jens Axboee42b01e2011-05-05 12:05:10 -0600434 else
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200435 ret = check_str_bytes(tmp, &ull, data);
Jens Axboee42b01e2011-05-05 12:05:10 -0600436
Jens Axboee1f36502006-10-27 10:54:08 +0200437 if (ret)
438 break;
439
Jens Axboedb8e0162007-01-10 13:41:26 +0100440 if (o->maxval && ull > o->maxval) {
Jens Axboed4fc2f02012-09-24 14:32:26 +0200441 log_err("max value out of range: %llu"
442 " (%u max)\n", ull, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100443 return 1;
444 }
445 if (o->minval && ull < o->minval) {
Jens Axboed4fc2f02012-09-24 14:32:26 +0200446 log_err("min value out of range: %llu"
447 " (%u min)\n", ull, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100448 return 1;
449 }
Jens Axboee1f36502006-10-27 10:54:08 +0200450
451 if (fn)
452 ret = fn(data, &ull);
453 else {
Jens Axboee01b22b2009-06-09 15:43:25 +0200454 if (o->type == FIO_OPT_INT) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100455 if (first) {
456 if (o->roff1)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100457 *(unsigned int *) o->roff1 = ull;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100458 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100459 val_store(ilp, ull, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100460 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200461 if (curr == 1) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100462 if (o->roff2)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100463 *(unsigned int *) o->roff2 = ull;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100464 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100465 val_store(ilp, ull, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100466 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200467 if (curr == 2) {
468 if (o->roff3)
469 *(unsigned int *) o->roff3 = ull;
470 else if (o->off3)
471 val_store(ilp, ull, o->off3, 0, data);
472 }
473 if (!more) {
474 if (curr < 1) {
475 if (o->roff2)
476 *(unsigned int *) o->roff2 = ull;
477 else if (o->off2)
478 val_store(ilp, ull, o->off2, 0, data);
479 }
480 if (curr < 2) {
481 if (o->roff3)
482 *(unsigned int *) o->roff3 = ull;
483 else if (o->off3)
484 val_store(ilp, ull, o->off3, 0, data);
485 }
486 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100487 } else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100488 if (first) {
489 if (o->roff1)
490 *(unsigned long long *) o->roff1 = ull;
491 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100492 val_store(ullp, ull, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100493 }
494 if (!more) {
495 if (o->roff2)
496 *(unsigned long long *) o->roff2 = ull;
497 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100498 val_store(ullp, ull, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100499 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100500 }
Jens Axboee1f36502006-10-27 10:54:08 +0200501 }
502 break;
503 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200504 case FIO_OPT_FLOAT_LIST: {
Jens Axboeeef02442013-02-06 08:51:57 +0100505 char *cp2;
506
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100507 if (first) {
508 /*
509 ** Initialize precision to 0 and zero out list
510 ** in case specified list is shorter than default
511 */
512 ul2 = 0;
513 ilp = td_var(data, o->off2);
514 *ilp = ul2;
515
516 flp = td_var(data, o->off1);
517 for(i = 0; i < o->maxlen; i++)
518 flp[i].u.f = 0.0;
519 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200520 if (curr >= o->maxlen) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200521 log_err("the list exceeding max length %d\n",
Yu-ju Hong83349192011-08-13 00:53:44 +0200522 o->maxlen);
523 return 1;
524 }
Jens Axboe619adf92013-02-06 08:46:55 +0100525 if (!str_to_float(ptr, &uf)) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200526 log_err("not a floating point value: %s\n", ptr);
Yu-ju Hong83349192011-08-13 00:53:44 +0200527 return 1;
528 }
Jens Axboe26650692013-02-02 09:56:23 +0100529 if (uf > o->maxfp) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200530 log_err("value out of range: %f"
Yu-ju Hong83349192011-08-13 00:53:44 +0200531 " (range max: %f)\n", uf, o->maxfp);
532 return 1;
533 }
Jens Axboe26650692013-02-02 09:56:23 +0100534 if (uf < o->minfp) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200535 log_err("value out of range: %f"
Yu-ju Hong83349192011-08-13 00:53:44 +0200536 " (range min: %f)\n", uf, o->minfp);
537 return 1;
538 }
539
540 flp = td_var(data, o->off1);
Vincent Kang Fufd112d32013-02-02 09:28:55 +0100541 flp[curr].u.f = uf;
Yu-ju Hong83349192011-08-13 00:53:44 +0200542
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100543 /*
544 ** Calculate precision for output by counting
545 ** number of digits after period. Find first
546 ** period in entire remaining list each time
547 */
548 cp2 = strchr(ptr, '.');
549 if (cp2 != NULL) {
Jens Axboeeef02442013-02-06 08:51:57 +0100550 int len = 0;
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100551
552 while (*++cp2 != '\0' && *cp2 >= '0' && *cp2 <= '9')
553 len++;
554
555 ilp = td_var(data, o->off2);
556 if (len > *ilp)
557 *ilp = len;
558 }
559
Yu-ju Hong83349192011-08-13 00:53:44 +0200560 break;
561 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100562 case FIO_OPT_STR_STORE: {
563 fio_opt_str_fn *fn = o->cb;
564
Steven Lang184b4092011-11-16 10:33:51 +0100565 if (o->roff1 || o->off1) {
566 if (o->roff1)
567 cp = (char **) o->roff1;
568 else if (o->off1)
569 cp = td_var(data, o->off1);
Jens Axboece952ab2011-08-31 14:29:22 -0600570
Steven Lang184b4092011-11-16 10:33:51 +0100571 *cp = strdup(ptr);
Jens Axboe1c964ce2011-08-31 16:45:03 -0600572 }
Jens Axboe02c6aad2010-03-04 13:49:11 +0100573
Steven Lang184b4092011-11-16 10:33:51 +0100574 if (fn)
575 ret = fn(data, ptr);
576 else if (o->posval[0].ival) {
577 posval_sort(o, posval);
Jens Axboec44b1ff2011-08-30 20:43:53 -0600578
Steven Lang184b4092011-11-16 10:33:51 +0100579 ret = 1;
580 for (i = 0; i < PARSE_MAX_VP; i++) {
581 vp = &posval[i];
582 if (!vp->ival || vp->ival[0] == '\0')
583 continue;
584 all_skipped = 0;
Jens Axboe119cd932012-12-06 17:34:57 +0100585 if (!strncmp(vp->ival, ptr, str_match_len(vp, ptr))) {
Steven Lang184b4092011-11-16 10:33:51 +0100586 char *rest;
587
588 ret = 0;
589 if (vp->cb)
590 fn = vp->cb;
591 rest = strstr(*cp ?: ptr, ":");
592 if (rest) {
593 if (*cp)
594 *rest = '\0';
595 ptr = rest + 1;
596 } else
597 ptr = NULL;
598 break;
599 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100600 }
601 }
Jens Axboec44b1ff2011-08-30 20:43:53 -0600602
Steven Lang184b4092011-11-16 10:33:51 +0100603 if (!all_skipped) {
604 if (ret && !*cp)
605 show_option_values(o);
606 else if (ret && *cp)
607 ret = 0;
608 else if (fn && ptr)
609 ret = fn(data, ptr);
610 }
Jens Axboec44b1ff2011-08-30 20:43:53 -0600611
Jens Axboee1f36502006-10-27 10:54:08 +0200612 break;
Jens Axboeaf52b342007-03-13 10:07:47 +0100613 }
Jens Axboee1f36502006-10-27 10:54:08 +0200614 case FIO_OPT_RANGE: {
Jens Axboeb765a372006-10-27 15:00:16 +0200615 char tmp[128];
Jens Axboee1f36502006-10-27 10:54:08 +0200616 char *p1, *p2;
617
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100618 strncpy(tmp, ptr, sizeof(tmp) - 1);
Jens Axboeb765a372006-10-27 15:00:16 +0200619
Dave Engberg31d23f42011-07-23 21:07:13 +0200620 /* Handle bsrange with separate read,write values: */
621 p1 = strchr(tmp, ',');
622 if (p1)
623 *p1 = '\0';
624
Jens Axboeb765a372006-10-27 15:00:16 +0200625 p1 = strchr(tmp, '-');
Jens Axboee1f36502006-10-27 10:54:08 +0200626 if (!p1) {
Jens Axboe0c9baf92007-01-11 15:59:26 +0100627 p1 = strchr(tmp, ':');
628 if (!p1) {
629 ret = 1;
630 break;
631 }
Jens Axboee1f36502006-10-27 10:54:08 +0200632 }
633
634 p2 = p1 + 1;
635 *p1 = '\0';
Jens Axboeb765a372006-10-27 15:00:16 +0200636 p1 = tmp;
Jens Axboee1f36502006-10-27 10:54:08 +0200637
638 ret = 1;
Jens Axboed6978a32009-07-18 21:04:09 +0200639 if (!check_range_bytes(p1, &ul1, data) &&
640 !check_range_bytes(p2, &ul2, data)) {
Jens Axboee1f36502006-10-27 10:54:08 +0200641 ret = 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200642 if (ul1 > ul2) {
Jens Axboef90eff52006-11-06 11:08:21 +0100643 unsigned long foo = ul1;
644
645 ul1 = ul2;
646 ul2 = foo;
647 }
648
649 if (first) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100650 if (o->roff1)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100651 *(unsigned int *) o->roff1 = ul1;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100652 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100653 val_store(ilp, ul1, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100654 if (o->roff2)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100655 *(unsigned int *) o->roff2 = ul2;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100656 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100657 val_store(ilp, ul2, o->off2, 0, data);
Jens Axboee1f36502006-10-27 10:54:08 +0200658 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200659 if (curr == 1) {
660 if (o->roff3 && o->roff4) {
661 *(unsigned int *) o->roff3 = ul1;
662 *(unsigned int *) o->roff4 = ul2;
663 } else if (o->off3 && o->off4) {
664 val_store(ilp, ul1, o->off3, 0, data);
665 val_store(ilp, ul2, o->off4, 0, data);
666 }
667 }
668 if (curr == 2) {
669 if (o->roff5 && o->roff6) {
670 *(unsigned int *) o->roff5 = ul1;
671 *(unsigned int *) o->roff6 = ul2;
672 } else if (o->off5 && o->off6) {
673 val_store(ilp, ul1, o->off5, 0, data);
674 val_store(ilp, ul2, o->off6, 0, data);
675 }
676 }
677 if (!more) {
678 if (curr < 1) {
679 if (o->roff3 && o->roff4) {
680 *(unsigned int *) o->roff3 = ul1;
681 *(unsigned int *) o->roff4 = ul2;
682 } else if (o->off3 && o->off4) {
683 val_store(ilp, ul1, o->off3, 0, data);
684 val_store(ilp, ul2, o->off4, 0, data);
685 }
686 }
687 if (curr < 2) {
688 if (o->roff5 && o->roff6) {
689 *(unsigned int *) o->roff5 = ul1;
690 *(unsigned int *) o->roff6 = ul2;
691 } else if (o->off5 && o->off6) {
692 val_store(ilp, ul1, o->off5, 0, data);
693 val_store(ilp, ul2, o->off6, 0, data);
694 }
695 }
Jens Axboe17abbe82006-11-06 11:23:10 +0100696 }
697 }
698
Jens Axboee1f36502006-10-27 10:54:08 +0200699 break;
700 }
Jens Axboe74ba1802011-07-15 09:09:15 +0200701 case FIO_OPT_BOOL:
702 case FIO_OPT_STR_SET: {
Jens Axboee1f36502006-10-27 10:54:08 +0200703 fio_opt_int_fn *fn = o->cb;
704
Jens Axboe74ba1802011-07-15 09:09:15 +0200705 if (ptr)
706 ret = check_int(ptr, &il);
707 else if (o->type == FIO_OPT_BOOL)
708 ret = 1;
709 else
710 il = 1;
711
Jens Axboee1f36502006-10-27 10:54:08 +0200712 if (ret)
713 break;
714
Jens Axboedb8e0162007-01-10 13:41:26 +0100715 if (o->maxval && il > (int) o->maxval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200716 log_err("max value out of range: %d (%d max)\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100717 il, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100718 return 1;
719 }
720 if (o->minval && il < o->minval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200721 log_err("min value out of range: %d (%d min)\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100722 il, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100723 return 1;
724 }
Jens Axboee1f36502006-10-27 10:54:08 +0200725
Jens Axboe76a43db2007-01-11 13:24:44 +0100726 if (o->neg)
727 il = !il;
728
Jens Axboee1f36502006-10-27 10:54:08 +0200729 if (fn)
730 ret = fn(data, &il);
731 else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100732 if (first) {
733 if (o->roff1)
734 *(unsigned int *)o->roff1 = il;
735 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100736 val_store(ilp, il, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100737 }
738 if (!more) {
739 if (o->roff2)
740 *(unsigned int *) o->roff2 = il;
741 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100742 val_store(ilp, il, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100743 }
Jens Axboee1f36502006-10-27 10:54:08 +0200744 }
745 break;
746 }
Jens Axboe15ca1502008-04-07 09:26:02 +0200747 case FIO_OPT_DEPRECATED:
Jens Axboe06b0be62011-10-04 10:31:10 +0200748 log_info("Option %s is deprecated\n", o->name);
Jens Axboe15ca1502008-04-07 09:26:02 +0200749 break;
Jens Axboee1f36502006-10-27 10:54:08 +0200750 default:
Jens Axboe06b0be62011-10-04 10:31:10 +0200751 log_err("Bad option type %u\n", o->type);
Jens Axboee1f36502006-10-27 10:54:08 +0200752 ret = 1;
753 }
754
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200755 if (ret)
756 return ret;
757
Jens Axboed447a8c2009-07-17 22:26:15 +0200758 if (o->verify) {
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200759 ret = o->verify(o, data);
Jens Axboed447a8c2009-07-17 22:26:15 +0200760 if (ret) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200761 log_err("Correct format for offending option\n");
762 log_err("%20s: %s\n", o->name, o->help);
Jens Axboe06b0be62011-10-04 10:31:10 +0200763 show_option_help(o, 1);
Jens Axboed447a8c2009-07-17 22:26:15 +0200764 }
765 }
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200766
Jens Axboee1f36502006-10-27 10:54:08 +0200767 return ret;
768}
769
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200770static int handle_option(struct fio_option *o, const char *__ptr, void *data)
Jens Axboef90eff52006-11-06 11:08:21 +0100771{
Jens Axboeb62bdf22010-03-10 12:36:17 +0100772 char *o_ptr, *ptr, *ptr2;
773 int ret, done;
Jens Axboef90eff52006-11-06 11:08:21 +0100774
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200775 dprint(FD_PARSE, "handle_option=%s, ptr=%s\n", o->name, __ptr);
776
Jens Axboeb62bdf22010-03-10 12:36:17 +0100777 o_ptr = ptr = NULL;
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200778 if (__ptr)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100779 o_ptr = ptr = strdup(__ptr);
Jens Axboea3d741f2008-02-27 18:32:33 +0100780
Jens Axboef90eff52006-11-06 11:08:21 +0100781 /*
Jens Axboeb62bdf22010-03-10 12:36:17 +0100782 * See if we have another set of parameters, hidden after a comma.
783 * Do this before parsing this round, to check if we should
Jens Axboe787f7e92006-11-06 13:26:29 +0100784 * copy set 1 options to set 2.
Jens Axboef90eff52006-11-06 11:08:21 +0100785 */
Jens Axboeb62bdf22010-03-10 12:36:17 +0100786 done = 0;
787 ret = 1;
788 do {
789 int __ret;
790
791 ptr2 = NULL;
792 if (ptr &&
793 (o->type != FIO_OPT_STR_STORE) &&
Yu-ju Hong83349192011-08-13 00:53:44 +0200794 (o->type != FIO_OPT_STR) &&
795 (o->type != FIO_OPT_FLOAT_LIST)) {
Jens Axboeb62bdf22010-03-10 12:36:17 +0100796 ptr2 = strchr(ptr, ',');
797 if (ptr2 && *(ptr2 + 1) == '\0')
798 *ptr2 = '\0';
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200799 if (o->type != FIO_OPT_STR_MULTI && o->type != FIO_OPT_RANGE) {
Jens Axboeb62bdf22010-03-10 12:36:17 +0100800 if (!ptr2)
801 ptr2 = strchr(ptr, ':');
802 if (!ptr2)
803 ptr2 = strchr(ptr, '-');
804 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200805 } else if (ptr && o->type == FIO_OPT_FLOAT_LIST) {
806 ptr2 = strchr(ptr, ':');
Jens Axboeb62bdf22010-03-10 12:36:17 +0100807 }
808
809 /*
810 * Don't return early if parsing the first option fails - if
811 * we are doing multiple arguments, we can allow the first one
812 * being empty.
813 */
Yu-ju Hong83349192011-08-13 00:53:44 +0200814 __ret = __handle_option(o, ptr, data, !done, !!ptr2, done);
Jens Axboeb62bdf22010-03-10 12:36:17 +0100815 if (ret)
816 ret = __ret;
817
Jens Axboe0c9baf92007-01-11 15:59:26 +0100818 if (!ptr2)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100819 break;
Jens Axboe787f7e92006-11-06 13:26:29 +0100820
Jens Axboeb62bdf22010-03-10 12:36:17 +0100821 ptr = ptr2 + 1;
822 done++;
823 } while (1);
Jens Axboe787f7e92006-11-06 13:26:29 +0100824
Jens Axboeb62bdf22010-03-10 12:36:17 +0100825 if (o_ptr)
826 free(o_ptr);
827 return ret;
Jens Axboef90eff52006-11-06 11:08:21 +0100828}
829
Steven Langde890a12011-11-09 14:03:34 +0100830static struct fio_option *get_option(char *opt,
Jens Axboe07b32322010-03-05 09:48:44 +0100831 struct fio_option *options, char **post)
Jens Axboe3b8b7132008-06-10 19:46:23 +0200832{
833 struct fio_option *o;
834 char *ret;
835
836 ret = strchr(opt, '=');
837 if (ret) {
838 *post = ret;
839 *ret = '\0';
Steven Langde890a12011-11-09 14:03:34 +0100840 ret = opt;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200841 (*post)++;
Jens Axboe43c129b2008-12-08 14:06:42 +0100842 strip_blank_end(ret);
Jens Axboe07b32322010-03-05 09:48:44 +0100843 o = find_option(options, ret);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200844 } else {
Jens Axboe07b32322010-03-05 09:48:44 +0100845 o = find_option(options, opt);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200846 *post = NULL;
847 }
848
849 return o;
850}
851
852static int opt_cmp(const void *p1, const void *p2)
853{
Steven Langde890a12011-11-09 14:03:34 +0100854 struct fio_option *o;
855 char *s, *foo;
Jens Axboe8cdabc12008-11-19 12:31:43 +0100856 int prio1, prio2;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200857
Jens Axboe8cdabc12008-11-19 12:31:43 +0100858 prio1 = prio2 = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200859
Steven Langde890a12011-11-09 14:03:34 +0100860 if (*(char **)p1) {
861 s = strdup(*((char **) p1));
862 o = get_option(s, fio_options, &foo);
863 if (o)
864 prio1 = o->prio;
865 free(s);
866 }
867 if (*(char **)p2) {
868 s = strdup(*((char **) p2));
869 o = get_option(s, fio_options, &foo);
870 if (o)
871 prio2 = o->prio;
872 free(s);
873 }
874
Jens Axboe8cdabc12008-11-19 12:31:43 +0100875 return prio2 - prio1;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200876}
877
878void sort_options(char **opts, struct fio_option *options, int num_opts)
879{
880 fio_options = options;
881 qsort(opts, num_opts, sizeof(char *), opt_cmp);
882 fio_options = NULL;
883}
884
Jens Axboeb4692822006-10-27 13:43:22 +0200885int parse_cmd_option(const char *opt, const char *val,
Jens Axboe07b32322010-03-05 09:48:44 +0100886 struct fio_option *options, void *data)
Jens Axboeb4692822006-10-27 13:43:22 +0200887{
888 struct fio_option *o;
889
Jens Axboe07b32322010-03-05 09:48:44 +0100890 o = find_option(options, opt);
Jens Axboeb4692822006-10-27 13:43:22 +0200891 if (!o) {
Jens Axboe06b0be62011-10-04 10:31:10 +0200892 log_err("Bad option <%s>\n", opt);
Jens Axboeb4692822006-10-27 13:43:22 +0200893 return 1;
894 }
895
Jens Axboeb1508cf2006-11-02 09:12:40 +0100896 if (!handle_option(o, val, data))
897 return 0;
898
Jens Axboe06b0be62011-10-04 10:31:10 +0200899 log_err("fio: failed parsing %s=%s\n", opt, val);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100900 return 1;
Jens Axboeb4692822006-10-27 13:43:22 +0200901}
902
Steven Langde890a12011-11-09 14:03:34 +0100903int parse_option(char *opt, const char *input,
904 struct fio_option *options, struct fio_option **o, void *data)
Jens Axboee1f36502006-10-27 10:54:08 +0200905{
Steven Langd0c814e2011-10-28 08:37:13 +0200906 char *post;
Jens Axboee1f36502006-10-27 10:54:08 +0200907
Steven Langd0c814e2011-10-28 08:37:13 +0200908 if (!opt) {
909 log_err("fio: failed parsing %s\n", input);
Steven Langde890a12011-11-09 14:03:34 +0100910 *o = NULL;
Jens Axboe38789b52010-03-03 09:23:20 +0100911 return 1;
Steven Langd0c814e2011-10-28 08:37:13 +0200912 }
Jens Axboee1f36502006-10-27 10:54:08 +0200913
Steven Langde890a12011-11-09 14:03:34 +0100914 *o = get_option(opt, options, &post);
915 if (!*o) {
916 if (post) {
917 int len = strlen(opt);
918 if (opt + len + 1 != post)
919 memmove(opt + len + 1, post, strlen(post));
920 opt[len] = '=';
921 }
Jens Axboee1f36502006-10-27 10:54:08 +0200922 return 1;
923 }
924
Steven Langde890a12011-11-09 14:03:34 +0100925 if (!handle_option(*o, post, data)) {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100926 return 0;
Jens Axboe0401bca2007-03-29 11:00:43 +0200927 }
Jens Axboeb1508cf2006-11-02 09:12:40 +0100928
Steven Langd0c814e2011-10-28 08:37:13 +0200929 log_err("fio: failed parsing %s\n", input);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100930 return 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200931}
Jens Axboefd28ca42007-01-09 21:20:13 +0100932
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100933/*
934 * Option match, levenshtein distance. Handy for not quite remembering what
935 * the option name is.
936 */
937static int string_distance(const char *s1, const char *s2)
938{
939 unsigned int s1_len = strlen(s1);
940 unsigned int s2_len = strlen(s2);
941 unsigned int *p, *q, *r;
942 unsigned int i, j;
943
944 p = malloc(sizeof(unsigned int) * (s2_len + 1));
945 q = malloc(sizeof(unsigned int) * (s2_len + 1));
946
947 p[0] = 0;
948 for (i = 1; i <= s2_len; i++)
949 p[i] = p[i - 1] + 1;
950
951 for (i = 1; i <= s1_len; i++) {
952 q[0] = p[0] + 1;
953 for (j = 1; j <= s2_len; j++) {
954 unsigned int sub = p[j - 1];
955
956 if (s1[i - 1] != s2[j - 1])
957 sub++;
958
959 q[j] = min(p[j] + 1, min(q[j - 1] + 1, sub));
960 }
961 r = p;
962 p = q;
963 q = r;
964 }
965
966 i = p[s2_len];
967 free(p);
968 free(q);
969 return i;
970}
971
Jens Axboeafdf9352007-07-31 16:14:34 +0200972static struct fio_option *find_child(struct fio_option *options,
973 struct fio_option *o)
974{
975 struct fio_option *__o;
976
Jens Axboefdf28742007-07-31 23:06:09 +0200977 for (__o = options + 1; __o->name; __o++)
978 if (__o->parent && !strcmp(__o->parent, o->name))
Jens Axboeafdf9352007-07-31 16:14:34 +0200979 return __o;
980
981 return NULL;
982}
983
Jens Axboe323d9112008-03-01 15:12:14 +0100984static void __print_option(struct fio_option *o, struct fio_option *org,
985 int level)
Jens Axboeafdf9352007-07-31 16:14:34 +0200986{
987 char name[256], *p;
Jens Axboe323d9112008-03-01 15:12:14 +0100988 int depth;
Jens Axboeafdf9352007-07-31 16:14:34 +0200989
990 if (!o)
991 return;
Jens Axboeef9aff52007-07-31 22:56:53 +0200992 if (!org)
993 org = o;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100994
Jens Axboeafdf9352007-07-31 16:14:34 +0200995 p = name;
Jens Axboe323d9112008-03-01 15:12:14 +0100996 depth = level;
997 while (depth--)
998 p += sprintf(p, "%s", " ");
Jens Axboeafdf9352007-07-31 16:14:34 +0200999
1000 sprintf(p, "%s", o->name);
1001
Jens Axboe28d7c362011-10-05 20:30:24 +02001002 log_info("%-24s: %s\n", name, o->help);
Jens Axboe323d9112008-03-01 15:12:14 +01001003}
1004
1005static void print_option(struct fio_option *o)
1006{
1007 struct fio_option *parent;
1008 struct fio_option *__o;
1009 unsigned int printed;
1010 unsigned int level;
1011
1012 __print_option(o, NULL, 0);
1013 parent = o;
1014 level = 0;
1015 do {
1016 level++;
1017 printed = 0;
1018
1019 while ((__o = find_child(o, parent)) != NULL) {
1020 __print_option(__o, o, level);
1021 o = __o;
1022 printed++;
1023 }
1024
1025 parent = o;
1026 } while (printed);
Jens Axboeafdf9352007-07-31 16:14:34 +02001027}
1028
Jens Axboe07b32322010-03-05 09:48:44 +01001029int show_cmd_help(struct fio_option *options, const char *name)
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001030{
1031 struct fio_option *o, *closest;
Jens Axboed091d092010-04-01 19:56:23 +02001032 unsigned int best_dist = -1U;
Jens Axboe29fc6af2007-01-09 21:22:02 +01001033 int found = 0;
Jens Axboe320beef2007-03-01 10:44:12 +01001034 int show_all = 0;
1035
1036 if (!name || !strcmp(name, "all"))
1037 show_all = 1;
Jens Axboefd28ca42007-01-09 21:20:13 +01001038
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001039 closest = NULL;
1040 best_dist = -1;
Jens Axboe4945ba12007-01-11 14:36:56 +01001041 for (o = &options[0]; o->name; o++) {
Jens Axboe320beef2007-03-01 10:44:12 +01001042 int match = 0;
1043
Jens Axboe15ca1502008-04-07 09:26:02 +02001044 if (o->type == FIO_OPT_DEPRECATED)
1045 continue;
Jens Axboe07b32322010-03-05 09:48:44 +01001046 if (!exec_profile && o->prof_name)
1047 continue;
Jens Axboe15ca1502008-04-07 09:26:02 +02001048
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001049 if (name) {
Jens Axboe7f9348f2007-03-15 14:09:28 +01001050 if (!strcmp(name, o->name) ||
1051 (o->alias && !strcmp(name, o->alias)))
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001052 match = 1;
1053 else {
1054 unsigned int dist;
1055
1056 dist = string_distance(name, o->name);
1057 if (dist < best_dist) {
1058 best_dist = dist;
1059 closest = o;
1060 }
1061 }
1062 }
Jens Axboefd28ca42007-01-09 21:20:13 +01001063
1064 if (show_all || match) {
Jens Axboe29fc6af2007-01-09 21:22:02 +01001065 found = 1;
Jens Axboec167ded2007-03-14 13:02:53 +01001066 if (match)
Jens Axboe28d7c362011-10-05 20:30:24 +02001067 log_info("%20s: %s\n", o->name, o->help);
Jens Axboec167ded2007-03-14 13:02:53 +01001068 if (show_all) {
Jens Axboeafdf9352007-07-31 16:14:34 +02001069 if (!o->parent)
Jens Axboe323d9112008-03-01 15:12:14 +01001070 print_option(o);
Jens Axboe4945ba12007-01-11 14:36:56 +01001071 continue;
Jens Axboec167ded2007-03-14 13:02:53 +01001072 }
Jens Axboefd28ca42007-01-09 21:20:13 +01001073 }
1074
Jens Axboe70df2f12007-01-11 14:04:47 +01001075 if (!match)
1076 continue;
1077
Jens Axboe06b0be62011-10-04 10:31:10 +02001078 show_option_help(o, 0);
Jens Axboefd28ca42007-01-09 21:20:13 +01001079 }
1080
Jens Axboe29fc6af2007-01-09 21:22:02 +01001081 if (found)
1082 return 0;
Jens Axboefd28ca42007-01-09 21:20:13 +01001083
Jens Axboe28d7c362011-10-05 20:30:24 +02001084 log_err("No such command: %s", name);
Jens Axboed091d092010-04-01 19:56:23 +02001085
1086 /*
1087 * Only print an appropriately close option, one where the edit
1088 * distance isn't too big. Otherwise we get crazy matches.
1089 */
1090 if (closest && best_dist < 3) {
Jens Axboe28d7c362011-10-05 20:30:24 +02001091 log_info(" - showing closest match\n");
1092 log_info("%20s: %s\n", closest->name, closest->help);
Jens Axboe06b0be62011-10-04 10:31:10 +02001093 show_option_help(closest, 0);
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001094 } else
Jens Axboe28d7c362011-10-05 20:30:24 +02001095 log_info("\n");
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001096
Jens Axboe29fc6af2007-01-09 21:22:02 +01001097 return 1;
Jens Axboefd28ca42007-01-09 21:20:13 +01001098}
Jens Axboeee738492007-01-10 11:23:16 +01001099
Jens Axboe13335dd2007-01-10 13:14:02 +01001100/*
1101 * Handle parsing of default parameters.
1102 */
Jens Axboeee738492007-01-10 11:23:16 +01001103void fill_default_options(void *data, struct fio_option *options)
1104{
Jens Axboe4945ba12007-01-11 14:36:56 +01001105 struct fio_option *o;
Jens Axboeee738492007-01-10 11:23:16 +01001106
Jens Axboea3d741f2008-02-27 18:32:33 +01001107 dprint(FD_PARSE, "filling default options\n");
1108
Jens Axboe4945ba12007-01-11 14:36:56 +01001109 for (o = &options[0]; o->name; o++)
Jens Axboeee738492007-01-10 11:23:16 +01001110 if (o->def)
1111 handle_option(o, o->def, data);
Jens Axboeee738492007-01-10 11:23:16 +01001112}
Jens Axboe13335dd2007-01-10 13:14:02 +01001113
Jens Axboe9f988e22010-03-04 10:42:38 +01001114void option_init(struct fio_option *o)
1115{
1116 if (o->type == FIO_OPT_DEPRECATED)
1117 return;
1118 if (o->type == FIO_OPT_BOOL) {
1119 o->minval = 0;
1120 o->maxval = 1;
1121 }
Jens Axboed4fc2f02012-09-24 14:32:26 +02001122 if (o->type == FIO_OPT_INT) {
1123 if (!o->maxval)
1124 o->maxval = UINT_MAX;
1125 }
Yu-ju Hong83349192011-08-13 00:53:44 +02001126 if (o->type == FIO_OPT_FLOAT_LIST) {
Bruce Cranab9461e2013-02-02 14:31:24 +00001127 o->minfp = DBL_MIN;
1128 o->maxfp = DBL_MAX;
Yu-ju Hong83349192011-08-13 00:53:44 +02001129 }
Jens Axboe9f988e22010-03-04 10:42:38 +01001130 if (o->type == FIO_OPT_STR_SET && o->def) {
Jens Axboe06b0be62011-10-04 10:31:10 +02001131 log_err("Option %s: string set option with"
Jens Axboe9f988e22010-03-04 10:42:38 +01001132 " default will always be true\n", o->name);
1133 }
Jens Axboe06b0be62011-10-04 10:31:10 +02001134 if (!o->cb && (!o->off1 && !o->roff1))
1135 log_err("Option %s: neither cb nor offset given\n", o->name);
Jens Axboe5f6ddf12010-03-09 20:40:44 +01001136 if (o->type == FIO_OPT_STR || o->type == FIO_OPT_STR_STORE ||
1137 o->type == FIO_OPT_STR_MULTI)
Jens Axboe9f988e22010-03-04 10:42:38 +01001138 return;
Jens Axboee2de69d2010-03-04 14:05:48 +01001139 if (o->cb && ((o->off1 || o->off2 || o->off3 || o->off4) ||
1140 (o->roff1 || o->roff2 || o->roff3 || o->roff4))) {
Jens Axboe06b0be62011-10-04 10:31:10 +02001141 log_err("Option %s: both cb and offset given\n", o->name);
Jens Axboe9f988e22010-03-04 10:42:38 +01001142 }
1143}
1144
Jens Axboe13335dd2007-01-10 13:14:02 +01001145/*
1146 * Sanitize the options structure. For now it just sets min/max for bool
Jens Axboe5b0a8882007-01-11 14:40:27 +01001147 * values and whether both callback and offsets are given.
Jens Axboe13335dd2007-01-10 13:14:02 +01001148 */
1149void options_init(struct fio_option *options)
1150{
Jens Axboe4945ba12007-01-11 14:36:56 +01001151 struct fio_option *o;
Jens Axboe13335dd2007-01-10 13:14:02 +01001152
Jens Axboea3d741f2008-02-27 18:32:33 +01001153 dprint(FD_PARSE, "init options\n");
1154
Jens Axboe9f988e22010-03-04 10:42:38 +01001155 for (o = &options[0]; o->name; o++)
1156 option_init(o);
Jens Axboe13335dd2007-01-10 13:14:02 +01001157}
Jens Axboe7e356b22011-10-14 10:55:16 +02001158
1159void options_free(struct fio_option *options, void *data)
1160{
1161 struct fio_option *o;
1162 char **ptr;
1163
1164 dprint(FD_PARSE, "free options\n");
1165
1166 for (o = &options[0]; o->name; o++) {
Steven Langde890a12011-11-09 14:03:34 +01001167 if (o->type != FIO_OPT_STR_STORE || !o->off1)
Jens Axboe7e356b22011-10-14 10:55:16 +02001168 continue;
1169
1170 ptr = td_var(data, o->off1);
1171 if (*ptr) {
1172 free(*ptr);
1173 *ptr = NULL;
1174 }
1175 }
1176}