blob: 188f72826185d2a1c3dba8f48bca01ccfa2a1e56 [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 Axboe9af4a242012-03-16 10:13:49 +010021static struct fio_option *__fio_options;
Jens Axboe3b8b7132008-06-10 19:46:23 +020022
Jens Axboef0857372007-03-19 13:15:23 +010023static int vp_cmp(const void *p1, const void *p2)
24{
25 const struct value_pair *vp1 = p1;
26 const struct value_pair *vp2 = p2;
27
28 return strlen(vp2->ival) - strlen(vp1->ival);
29}
30
Jens Axboece952ab2011-08-31 14:29:22 -060031static void posval_sort(struct fio_option *o, struct value_pair *vpmap)
Jens Axboef0857372007-03-19 13:15:23 +010032{
33 const struct value_pair *vp;
34 int entries;
35
36 memset(vpmap, 0, PARSE_MAX_VP * sizeof(struct value_pair));
37
38 for (entries = 0; entries < PARSE_MAX_VP; entries++) {
39 vp = &o->posval[entries];
40 if (!vp->ival || vp->ival[0] == '\0')
41 break;
42
43 memcpy(&vpmap[entries], vp, sizeof(*vp));
44 }
45
46 qsort(vpmap, entries, sizeof(struct value_pair), vp_cmp);
47}
48
Jens Axboe06b0be62011-10-04 10:31:10 +020049static void show_option_range(struct fio_option *o,
50 int (*logger)(const char *format, ...))
Jens Axboeb1ec1da2007-02-23 10:29:16 +010051{
Jens Axboe3c037bc2013-04-10 11:21:33 +020052 if (o->type == FIO_OPT_FLOAT_LIST) {
Bruce Cranab9461e2013-02-02 14:31:24 +000053 if (o->minfp == DBL_MIN && o->maxfp == DBL_MAX)
Yu-ju Hong83349192011-08-13 00:53:44 +020054 return;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010055
Jens Axboe06b0be62011-10-04 10:31:10 +020056 logger("%20s: min=%f", "range", o->minfp);
Bruce Cranab9461e2013-02-02 14:31:24 +000057 if (o->maxfp != DBL_MAX)
Jens Axboe06b0be62011-10-04 10:31:10 +020058 logger(", max=%f", o->maxfp);
59 logger("\n");
Jens Axboe3c037bc2013-04-10 11:21:33 +020060 } else if (!o->posval[0].ival) {
Yu-ju Hong83349192011-08-13 00:53:44 +020061 if (!o->minval && !o->maxval)
62 return;
63
Jens Axboe06b0be62011-10-04 10:31:10 +020064 logger("%20s: min=%d", "range", o->minval);
Yu-ju Hong83349192011-08-13 00:53:44 +020065 if (o->maxval)
Jens Axboe06b0be62011-10-04 10:31:10 +020066 logger(", max=%d", o->maxval);
67 logger("\n");
Yu-ju Hong83349192011-08-13 00:53:44 +020068 }
Jens Axboeb1ec1da2007-02-23 10:29:16 +010069}
70
71static void show_option_values(struct fio_option *o)
72{
Jens Axboea3073f42010-03-05 10:06:15 +010073 int i;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010074
Jens Axboea3073f42010-03-05 10:06:15 +010075 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboe78372132007-03-14 13:24:07 +010076 const struct value_pair *vp = &o->posval[i];
77
78 if (!vp->ival)
Jens Axboea3073f42010-03-05 10:06:15 +010079 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010080
Jens Axboe06b0be62011-10-04 10:31:10 +020081 log_info("%20s: %-10s", i == 0 ? "valid values" : "", vp->ival);
Jens Axboe78372132007-03-14 13:24:07 +010082 if (vp->help)
Jens Axboe06b0be62011-10-04 10:31:10 +020083 log_info(" %s", vp->help);
84 log_info("\n");
Jens Axboea3073f42010-03-05 10:06:15 +010085 }
Jens Axboeb1ec1da2007-02-23 10:29:16 +010086
87 if (i)
Jens Axboe06b0be62011-10-04 10:31:10 +020088 log_info("\n");
Jens Axboeb1ec1da2007-02-23 10:29:16 +010089}
90
Jens Axboe06b0be62011-10-04 10:31:10 +020091static void show_option_help(struct fio_option *o, int is_err)
Jens Axboed447a8c2009-07-17 22:26:15 +020092{
93 const char *typehelp[] = {
Jens Axboe07b32322010-03-05 09:48:44 +010094 "invalid",
Jens Axboed447a8c2009-07-17 22:26:15 +020095 "string (opt=bla)",
Jens Axboeae3fb6f2010-09-14 13:10:35 +020096 "string (opt=bla)",
Jens Axboed447a8c2009-07-17 22:26:15 +020097 "string with possible k/m/g postfix (opt=4k)",
98 "string with time postfix (opt=10s)",
99 "string (opt=bla)",
100 "string with dual range (opt=1k-4k,4k-8k)",
101 "integer value (opt=100)",
102 "boolean value (opt=1)",
Yu-ju Hong83349192011-08-13 00:53:44 +0200103 "list of floating point values separated by ':' (opt=5.9:7.8)",
Jens Axboed447a8c2009-07-17 22:26:15 +0200104 "no argument (opt)",
Jens Axboe07b32322010-03-05 09:48:44 +0100105 "deprecated",
Jens Axboed447a8c2009-07-17 22:26:15 +0200106 };
Jens Axboe06b0be62011-10-04 10:31:10 +0200107 int (*logger)(const char *format, ...);
108
109 if (is_err)
110 logger = log_err;
111 else
112 logger = log_info;
Jens Axboed447a8c2009-07-17 22:26:15 +0200113
114 if (o->alias)
Jens Axboe06b0be62011-10-04 10:31:10 +0200115 logger("%20s: %s\n", "alias", o->alias);
Jens Axboed447a8c2009-07-17 22:26:15 +0200116
Jens Axboe06b0be62011-10-04 10:31:10 +0200117 logger("%20s: %s\n", "type", typehelp[o->type]);
118 logger("%20s: %s\n", "default", o->def ? o->def : "no default");
Jens Axboe07b32322010-03-05 09:48:44 +0100119 if (o->prof_name)
Jens Axboe06b0be62011-10-04 10:31:10 +0200120 logger("%20s: only for profile '%s'\n", "valid", o->prof_name);
121 show_option_range(o, logger);
Jens Axboed447a8c2009-07-17 22:26:15 +0200122 show_option_values(o);
123}
124
Jens Axboe0de5b262014-02-21 15:26:01 -0800125static unsigned long long get_mult_time(const char *str, int len,
126 int is_seconds)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200127{
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100128 const char *p = str;
129 char *c;
Jens Axboee4668262014-02-21 11:50:09 -0800130 unsigned long long mult = 1;
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100131
132 /*
133 * Go forward until we hit a non-digit, or +/- sign
134 */
135 while ((p - str) <= len) {
136 if (!isdigit((int) *p) && (*p != '+') && (*p != '-'))
137 break;
138 p++;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200139 }
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100140
Jens Axboe0de5b262014-02-21 15:26:01 -0800141 if (!isalpha((int) *p)) {
142 if (is_seconds)
143 return 1000000UL;
144 else
145 return 1;
146 }
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100147
148 c = strdup(p);
149 for (int i = 0; i < strlen(c); i++)
150 c[i] = tolower(c[i]);
151
Jens Axboee4668262014-02-21 11:50:09 -0800152 if (!strncmp("us", c, 2) || !strncmp("usec", c, 4))
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100153 mult = 1;
Jens Axboee4668262014-02-21 11:50:09 -0800154 else if (!strncmp("ms", c, 2) || !strncmp("msec", c, 4))
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100155 mult = 1000;
Jens Axboee4668262014-02-21 11:50:09 -0800156 else if (!strcmp("s", c))
157 mult = 1000000;
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100158 else if (!strcmp("m", c))
Jens Axboee4668262014-02-21 11:50:09 -0800159 mult = 60 * 1000000UL;
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100160 else if (!strcmp("h", c))
Jens Axboee4668262014-02-21 11:50:09 -0800161 mult = 60 * 60 * 1000000UL;
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100162 else if (!strcmp("d", c))
Jens Axboee4668262014-02-21 11:50:09 -0800163 mult = 24 * 60 * 60 * 1000000UL;
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100164
165 free(c);
166 return mult;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200167}
168
Jens Axboea03fb652013-03-29 12:20:51 -0600169static int is_separator(char c)
170{
171 switch (c) {
172 case ':':
173 case '-':
174 case ',':
175 case '/':
176 return 1;
177 default:
178 return 0;
179 }
180}
181
Jens Axboe7bb59102011-07-12 19:47:03 +0200182static unsigned long long __get_mult_bytes(const char *p, void *data,
183 int *percent)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200184{
Jens Axboed6978a32009-07-18 21:04:09 +0200185 unsigned int kb_base = fio_get_kb_base(data);
Jens Axboea639f0b2009-07-18 08:25:35 +0200186 unsigned long long ret = 1;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200187 unsigned int i, pow = 0, mult = kb_base;
188 char *c;
Jens Axboea639f0b2009-07-18 08:25:35 +0200189
Jens Axboe57fc29f2010-06-23 22:24:07 +0200190 if (!p)
191 return 1;
Jens Axboea639f0b2009-07-18 08:25:35 +0200192
Jens Axboe57fc29f2010-06-23 22:24:07 +0200193 c = strdup(p);
194
Jens Axboea03fb652013-03-29 12:20:51 -0600195 for (i = 0; i < strlen(c); i++) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200196 c[i] = tolower(c[i]);
Jens Axboea03fb652013-03-29 12:20:51 -0600197 if (is_separator(c[i])) {
198 c[i] = '\0';
199 break;
200 }
201 }
Jens Axboe57fc29f2010-06-23 22:24:07 +0200202
Jens Axboea04f1582012-03-07 10:53:29 +0100203 if (!strncmp("pib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200204 pow = 5;
205 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100206 } else if (!strncmp("tib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200207 pow = 4;
208 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100209 } else if (!strncmp("gib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200210 pow = 3;
211 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100212 } else if (!strncmp("mib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200213 pow = 2;
214 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100215 } else if (!strncmp("kib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200216 pow = 1;
217 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100218 } else if (!strncmp("p", c, 1) || !strncmp("pb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200219 pow = 5;
Jens Axboea04f1582012-03-07 10:53:29 +0100220 else if (!strncmp("t", c, 1) || !strncmp("tb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200221 pow = 4;
Jens Axboea04f1582012-03-07 10:53:29 +0100222 else if (!strncmp("g", c, 1) || !strncmp("gb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200223 pow = 3;
Jens Axboea04f1582012-03-07 10:53:29 +0100224 else if (!strncmp("m", c, 1) || !strncmp("mb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200225 pow = 2;
Jens Axboea04f1582012-03-07 10:53:29 +0100226 else if (!strncmp("k", c, 1) || !strncmp("kb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200227 pow = 1;
Jens Axboea04f1582012-03-07 10:53:29 +0100228 else if (!strncmp("%", c, 1)) {
Jens Axboe7bb59102011-07-12 19:47:03 +0200229 *percent = 1;
Jens Axboee721c572012-02-09 20:55:29 +0100230 free(c);
Jens Axboe7bb59102011-07-12 19:47:03 +0200231 return ret;
232 }
Jens Axboe57fc29f2010-06-23 22:24:07 +0200233
234 while (pow--)
235 ret *= (unsigned long long) mult;
236
237 free(c);
Jens Axboea639f0b2009-07-18 08:25:35 +0200238 return ret;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200239}
240
Jens Axboe7bb59102011-07-12 19:47:03 +0200241static unsigned long long get_mult_bytes(const char *str, int len, void *data,
Jens Axboe6925dd32011-09-07 22:10:11 +0200242 int *percent)
Jens Axboe57fc29f2010-06-23 22:24:07 +0200243{
Jens Axboe55ed9632011-03-27 20:55:09 +0200244 const char *p = str;
Jens Axboeba4ddd62011-09-07 22:11:00 +0200245 int digit_seen = 0;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200246
Jens Axboe1d1c1872010-07-29 10:50:05 +0200247 if (len < 2)
Jens Axboe7bb59102011-07-12 19:47:03 +0200248 return __get_mult_bytes(str, data, percent);
Jens Axboe1d1c1872010-07-29 10:50:05 +0200249
Steven Langd0c814e2011-10-28 08:37:13 +0200250 /*
251 * Go forward until we hit a non-digit, or +/- sign
252 */
Jens Axboe55ed9632011-03-27 20:55:09 +0200253 while ((p - str) <= len) {
Jens Axboeba4ddd62011-09-07 22:11:00 +0200254 if (!isdigit((int) *p) &&
255 (((*p != '+') && (*p != '-')) || digit_seen))
Jens Axboe55ed9632011-03-27 20:55:09 +0200256 break;
Jens Axboe3c703d12011-09-21 09:27:24 +0200257 digit_seen |= isdigit((int) *p);
Jens Axboe55ed9632011-03-27 20:55:09 +0200258 p++;
259 }
260
Jens Axboe7bb59102011-07-12 19:47:03 +0200261 if (!isalpha((int) *p) && (*p != '%'))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200262 p = NULL;
263
Jens Axboe7bb59102011-07-12 19:47:03 +0200264 return __get_mult_bytes(p, data, percent);
Jens Axboe57fc29f2010-06-23 22:24:07 +0200265}
266
Jens Axboecb2c86f2006-10-26 13:48:34 +0200267/*
Yu-ju Hong83349192011-08-13 00:53:44 +0200268 * Convert string into a floating number. Return 1 for success and 0 otherwise.
269 */
Jens Axboee25839d2012-11-06 10:49:42 +0100270int str_to_float(const char *str, double *val)
Yu-ju Hong83349192011-08-13 00:53:44 +0200271{
272 return (1 == sscanf(str, "%lf", val));
273}
274
275/*
Jens Axboee1f36502006-10-27 10:54:08 +0200276 * convert string into decimal value, noting any size suffix
Jens Axboecb2c86f2006-10-26 13:48:34 +0200277 */
Jens Axboe0de5b262014-02-21 15:26:01 -0800278int str_to_decimal(const char *str, long long *val, int kilo, void *data,
279 int is_seconds)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200280{
Jens Axboeb347f9d2009-03-09 14:15:21 +0100281 int len, base;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200282
Jens Axboecb2c86f2006-10-26 13:48:34 +0200283 len = strlen(str);
Jens Axboef90eff52006-11-06 11:08:21 +0100284 if (!len)
285 return 1;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200286
Jens Axboeb347f9d2009-03-09 14:15:21 +0100287 if (strstr(str, "0x") || strstr(str, "0X"))
288 base = 16;
289 else
290 base = 10;
291
292 *val = strtoll(str, NULL, base);
Jens Axboecda866c2007-01-10 16:02:32 +0100293 if (*val == LONG_MAX && errno == ERANGE)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200294 return 1;
295
Jens Axboe7bb59102011-07-12 19:47:03 +0200296 if (kilo) {
297 unsigned long long mult;
298 int perc = 0;
299
Jens Axboe6925dd32011-09-07 22:10:11 +0200300 mult = get_mult_bytes(str, len, data, &perc);
Jens Axboe7bb59102011-07-12 19:47:03 +0200301 if (perc)
302 *val = -1ULL - *val;
303 else
304 *val *= mult;
305 } else
Jens Axboe0de5b262014-02-21 15:26:01 -0800306 *val *= get_mult_time(str, len, is_seconds);
Jens Axboe787f7e92006-11-06 13:26:29 +0100307
Jens Axboecb2c86f2006-10-26 13:48:34 +0200308 return 0;
309}
310
Jens Axboe9af4a242012-03-16 10:13:49 +0100311int check_str_bytes(const char *p, long long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200312{
Jens Axboe0de5b262014-02-21 15:26:01 -0800313 return str_to_decimal(p, val, 1, data, 0);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200314}
315
Jens Axboe0de5b262014-02-21 15:26:01 -0800316int check_str_time(const char *p, long long *val, int is_seconds)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200317{
Jens Axboe0de5b262014-02-21 15:26:01 -0800318 return str_to_decimal(p, val, 0, NULL, is_seconds);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200319}
320
321void strip_blank_front(char **p)
322{
323 char *s = *p;
324
Jens Axboe4c8e9642011-10-15 14:37:38 +0200325 if (!strlen(s))
326 return;
Jens Axboe76cd9372011-07-08 21:14:57 +0200327 while (isspace((int) *s))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200328 s++;
Jens Axboe4d651da2007-03-28 19:34:53 +0200329
330 *p = s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200331}
332
333void strip_blank_end(char *p)
334{
Jens Axboe853ee7f2009-03-06 20:29:29 +0100335 char *start = p, *s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200336
Jens Axboe4c8e9642011-10-15 14:37:38 +0200337 if (!strlen(p))
338 return;
339
Jens Axboe523bfad2007-04-04 11:04:06 +0200340 s = strchr(p, ';');
341 if (s)
342 *s = '\0';
343 s = strchr(p, '#');
344 if (s)
345 *s = '\0';
346 if (s)
347 p = s;
348
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200349 s = p + strlen(p);
Jens Axboe76cd9372011-07-08 21:14:57 +0200350 while ((isspace((int) *s) || iscntrl((int) *s)) && (s > start))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200351 s--;
352
353 *(s + 1) = '\0';
354}
355
Jens Axboed6978a32009-07-18 21:04:09 +0200356static int check_range_bytes(const char *str, long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200357{
Jens Axboe57fc29f2010-06-23 22:24:07 +0200358 long long __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200359
Jens Axboe0de5b262014-02-21 15:26:01 -0800360 if (!str_to_decimal(str, &__val, 1, data, 0)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200361 *val = __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200362 return 0;
363 }
364
Jens Axboecb2c86f2006-10-26 13:48:34 +0200365 return 1;
366}
367
Jens Axboe63f29372007-01-10 13:20:09 +0100368static int check_int(const char *p, int *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200369{
Jens Axboe787f7e92006-11-06 13:26:29 +0100370 if (!strlen(p))
371 return 1;
Jens Axboed78ee462007-08-10 14:03:20 +0200372 if (strstr(p, "0x") || strstr(p, "0X")) {
Jens Axboea61bdfd2007-07-30 09:07:04 +0200373 if (sscanf(p, "%x", val) == 1)
374 return 0;
375 } else {
376 if (sscanf(p, "%u", val) == 1)
377 return 0;
378 }
Jens Axboecb2c86f2006-10-26 13:48:34 +0200379
380 return 1;
381}
382
Jens Axboe808def72010-07-14 16:27:02 -0600383static int opt_len(const char *str)
384{
385 char *postfix;
386
387 postfix = strchr(str, ':');
388 if (!postfix)
389 return strlen(str);
390
391 return (int)(postfix - str);
392}
393
Jens Axboe119cd932012-12-06 17:34:57 +0100394static int str_match_len(const struct value_pair *vp, const char *str)
395{
396 return max(strlen(vp->ival), opt_len(str));
397}
398
Jens Axboef0fdbca2014-02-11 15:44:50 -0700399#define val_store(ptr, val, off, or, data, o) \
400 do { \
401 ptr = td_var((data), (o), (off)); \
402 if ((or)) \
403 *ptr |= (val); \
404 else \
405 *ptr = (val); \
Jens Axboe17abbe82006-11-06 11:23:10 +0100406 } while (0)
407
Jens Axboef90eff52006-11-06 11:08:21 +0100408static int __handle_option(struct fio_option *o, const char *ptr, void *data,
Yu-ju Hong83349192011-08-13 00:53:44 +0200409 int first, int more, int curr)
Jens Axboee1f36502006-10-27 10:54:08 +0200410{
Erwan Velu2fdbefd2013-07-22 23:48:48 +0200411 int il=0, *ilp;
Vincent Kang Fufd112d32013-02-02 09:28:55 +0100412 fio_fp64_t *flp;
Jens Axboe63f29372007-01-10 13:20:09 +0100413 long long ull, *ullp;
414 long ul1, ul2;
Yu-ju Hong83349192011-08-13 00:53:44 +0200415 double uf;
Jens Axboebfe1d592012-11-29 21:33:03 +0100416 char **cp = NULL;
Jens Axboee42b01e2011-05-05 12:05:10 -0600417 int ret = 0, is_time = 0;
Jens Axboec44b1ff2011-08-30 20:43:53 -0600418 const struct value_pair *vp;
419 struct value_pair posval[PARSE_MAX_VP];
420 int i, all_skipped = 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200421
Jens Axboea3d741f2008-02-27 18:32:33 +0100422 dprint(FD_PARSE, "__handle_option=%s, type=%d, ptr=%s\n", o->name,
423 o->type, ptr);
424
Jens Axboee3cedca2008-11-19 19:57:52 +0100425 if (!ptr && o->type != FIO_OPT_STR_SET && o->type != FIO_OPT_STR) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200426 log_err("Option %s requires an argument\n", o->name);
Jens Axboe08e26e32006-11-21 13:15:10 +0100427 return 1;
428 }
429
Jens Axboee1f36502006-10-27 10:54:08 +0200430 switch (o->type) {
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100431 case FIO_OPT_STR:
432 case FIO_OPT_STR_MULTI: {
Jens Axboee1f36502006-10-27 10:54:08 +0200433 fio_opt_str_fn *fn = o->cb;
434
Jens Axboef0857372007-03-19 13:15:23 +0100435 posval_sort(o, posval);
436
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100437 ret = 1;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100438 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboef0857372007-03-19 13:15:23 +0100439 vp = &posval[i];
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100440 if (!vp->ival || vp->ival[0] == '\0')
Jens Axboea3073f42010-03-05 10:06:15 +0100441 continue;
Jens Axboeae2ddba2010-03-10 12:49:03 +0100442 all_skipped = 0;
Jens Axboe119cd932012-12-06 17:34:57 +0100443 if (!strncmp(vp->ival, ptr, str_match_len(vp, ptr))) {
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100444 ret = 0;
Jens Axboe7b504ed2014-02-11 14:19:38 -0700445 if (o->off1)
Daniel Gollubebadc0c2014-02-12 08:24:57 -0700446 val_store(ilp, vp->oval, o->off1, vp->orval, data, o);
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100447 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100448 }
449 }
450
Jens Axboeae2ddba2010-03-10 12:49:03 +0100451 if (ret && !all_skipped)
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100452 show_option_values(o);
453 else if (fn)
454 ret = fn(data, ptr);
Jens Axboee1f36502006-10-27 10:54:08 +0200455 break;
456 }
Jens Axboee42b01e2011-05-05 12:05:10 -0600457 case FIO_OPT_STR_VAL_TIME:
458 is_time = 1;
Jens Axboef7fa2652009-03-09 14:20:20 +0100459 case FIO_OPT_INT:
Jens Axboee42b01e2011-05-05 12:05:10 -0600460 case FIO_OPT_STR_VAL: {
461 fio_opt_str_val_fn *fn = o->cb;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200462 char tmp[128], *p;
463
464 strncpy(tmp, ptr, sizeof(tmp) - 1);
465 p = strchr(tmp, ',');
466 if (p)
467 *p = '\0';
Jens Axboee1f36502006-10-27 10:54:08 +0200468
Jens Axboee42b01e2011-05-05 12:05:10 -0600469 if (is_time)
Jens Axboe0de5b262014-02-21 15:26:01 -0800470 ret = check_str_time(tmp, &ull, o->is_seconds);
Jens Axboee42b01e2011-05-05 12:05:10 -0600471 else
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200472 ret = check_str_bytes(tmp, &ull, data);
Jens Axboee42b01e2011-05-05 12:05:10 -0600473
Jens Axboeae3fcb52013-04-25 10:06:32 -0600474 dprint(FD_PARSE, " ret=%d, out=%llu\n", ret, ull);
475
Jens Axboee1f36502006-10-27 10:54:08 +0200476 if (ret)
477 break;
478
Jens Axboedb8e0162007-01-10 13:41:26 +0100479 if (o->maxval && ull > o->maxval) {
Jens Axboed4fc2f02012-09-24 14:32:26 +0200480 log_err("max value out of range: %llu"
481 " (%u max)\n", ull, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100482 return 1;
483 }
484 if (o->minval && ull < o->minval) {
Jens Axboed4fc2f02012-09-24 14:32:26 +0200485 log_err("min value out of range: %llu"
486 " (%u min)\n", ull, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100487 return 1;
488 }
Jens Axboed926d532013-04-09 21:02:15 +0200489 if (o->posval[0].ival) {
490 posval_sort(o, posval);
491
492 ret = 1;
493 for (i = 0; i < PARSE_MAX_VP; i++) {
494 vp = &posval[i];
495 if (!vp->ival || vp->ival[0] == '\0')
496 continue;
497 if (vp->oval == ull) {
498 ret = 0;
499 break;
500 }
501 }
502 if (ret) {
Jens Axboe128e4ca2013-04-10 11:06:34 +0200503 log_err("fio: value %llu not allowed:\n", ull);
504 show_option_values(o);
Jens Axboed926d532013-04-09 21:02:15 +0200505 return 1;
506 }
507 }
Jens Axboee1f36502006-10-27 10:54:08 +0200508
509 if (fn)
510 ret = fn(data, &ull);
511 else {
Jens Axboee01b22b2009-06-09 15:43:25 +0200512 if (o->type == FIO_OPT_INT) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700513 if (first)
514 val_store(ilp, ull, o->off1, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200515 if (curr == 1) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700516 if (o->off2)
517 val_store(ilp, ull, o->off2, 0, data, o);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100518 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200519 if (curr == 2) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700520 if (o->off3)
521 val_store(ilp, ull, o->off3, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200522 }
523 if (!more) {
524 if (curr < 1) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700525 if (o->off2)
526 val_store(ilp, ull, o->off2, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200527 }
528 if (curr < 2) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700529 if (o->off3)
530 val_store(ilp, ull, o->off3, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200531 }
532 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100533 } else {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700534 if (first)
535 val_store(ullp, ull, o->off1, 0, data, o);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100536 if (!more) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700537 if (o->off2)
538 val_store(ullp, ull, o->off2, 0, data, o);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100539 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100540 }
Jens Axboee1f36502006-10-27 10:54:08 +0200541 }
542 break;
543 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200544 case FIO_OPT_FLOAT_LIST: {
Jens Axboeeef02442013-02-06 08:51:57 +0100545 char *cp2;
546
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100547 if (first) {
548 /*
549 ** Initialize precision to 0 and zero out list
550 ** in case specified list is shorter than default
551 */
Jens Axboe3e260a42013-12-09 12:38:53 -0700552 if (o->off2) {
553 ul2 = 0;
Jens Axboef0fdbca2014-02-11 15:44:50 -0700554 ilp = td_var(data, o, o->off2);
Jens Axboe3e260a42013-12-09 12:38:53 -0700555 *ilp = ul2;
556 }
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100557
Jens Axboef0fdbca2014-02-11 15:44:50 -0700558 flp = td_var(data, o, o->off1);
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100559 for(i = 0; i < o->maxlen; i++)
560 flp[i].u.f = 0.0;
561 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200562 if (curr >= o->maxlen) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200563 log_err("the list exceeding max length %d\n",
Yu-ju Hong83349192011-08-13 00:53:44 +0200564 o->maxlen);
565 return 1;
566 }
Jens Axboe3c3ed072012-03-27 09:12:39 +0200567 if (!str_to_float(ptr, &uf)) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200568 log_err("not a floating point value: %s\n", ptr);
Yu-ju Hong83349192011-08-13 00:53:44 +0200569 return 1;
570 }
Jens Axboe26650692013-02-02 09:56:23 +0100571 if (uf > o->maxfp) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200572 log_err("value out of range: %f"
Yu-ju Hong83349192011-08-13 00:53:44 +0200573 " (range max: %f)\n", uf, o->maxfp);
574 return 1;
575 }
Jens Axboe26650692013-02-02 09:56:23 +0100576 if (uf < o->minfp) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200577 log_err("value out of range: %f"
Yu-ju Hong83349192011-08-13 00:53:44 +0200578 " (range min: %f)\n", uf, o->minfp);
579 return 1;
580 }
581
Jens Axboef0fdbca2014-02-11 15:44:50 -0700582 flp = td_var(data, o, o->off1);
Vincent Kang Fufd112d32013-02-02 09:28:55 +0100583 flp[curr].u.f = uf;
Yu-ju Hong83349192011-08-13 00:53:44 +0200584
Jens Axboeae3fcb52013-04-25 10:06:32 -0600585 dprint(FD_PARSE, " out=%f\n", uf);
586
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100587 /*
588 ** Calculate precision for output by counting
589 ** number of digits after period. Find first
590 ** period in entire remaining list each time
591 */
592 cp2 = strchr(ptr, '.');
593 if (cp2 != NULL) {
Jens Axboeeef02442013-02-06 08:51:57 +0100594 int len = 0;
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100595
596 while (*++cp2 != '\0' && *cp2 >= '0' && *cp2 <= '9')
597 len++;
598
Jens Axboe3e260a42013-12-09 12:38:53 -0700599 if (o->off2) {
Jens Axboef0fdbca2014-02-11 15:44:50 -0700600 ilp = td_var(data, o, o->off2);
Jens Axboe3e260a42013-12-09 12:38:53 -0700601 if (len > *ilp)
602 *ilp = len;
603 }
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100604 }
605
Yu-ju Hong83349192011-08-13 00:53:44 +0200606 break;
607 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100608 case FIO_OPT_STR_STORE: {
609 fio_opt_str_fn *fn = o->cb;
610
Jens Axboef75c69a2014-04-03 08:18:07 -0600611 if (!strlen(ptr))
612 return 1;
613
Jens Axboe7b504ed2014-02-11 14:19:38 -0700614 if (o->off1) {
Jens Axboef0fdbca2014-02-11 15:44:50 -0700615 cp = td_var(data, o, o->off1);
Steven Lang184b4092011-11-16 10:33:51 +0100616 *cp = strdup(ptr);
Jens Axboe1c964ce2011-08-31 16:45:03 -0600617 }
Jens Axboe02c6aad2010-03-04 13:49:11 +0100618
Steven Lang184b4092011-11-16 10:33:51 +0100619 if (fn)
620 ret = fn(data, ptr);
621 else if (o->posval[0].ival) {
622 posval_sort(o, posval);
Jens Axboec44b1ff2011-08-30 20:43:53 -0600623
Steven Lang184b4092011-11-16 10:33:51 +0100624 ret = 1;
625 for (i = 0; i < PARSE_MAX_VP; i++) {
626 vp = &posval[i];
Jens Axboeab508172014-04-14 13:16:10 -0600627 if (!vp->ival || vp->ival[0] == '\0' || !cp)
Steven Lang184b4092011-11-16 10:33:51 +0100628 continue;
629 all_skipped = 0;
Jens Axboe119cd932012-12-06 17:34:57 +0100630 if (!strncmp(vp->ival, ptr, str_match_len(vp, ptr))) {
Steven Lang184b4092011-11-16 10:33:51 +0100631 char *rest;
632
633 ret = 0;
634 if (vp->cb)
635 fn = vp->cb;
636 rest = strstr(*cp ?: ptr, ":");
637 if (rest) {
638 if (*cp)
639 *rest = '\0';
640 ptr = rest + 1;
641 } else
642 ptr = NULL;
643 break;
644 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100645 }
646 }
Jens Axboec44b1ff2011-08-30 20:43:53 -0600647
Steven Lang184b4092011-11-16 10:33:51 +0100648 if (!all_skipped) {
649 if (ret && !*cp)
650 show_option_values(o);
651 else if (ret && *cp)
652 ret = 0;
653 else if (fn && ptr)
654 ret = fn(data, ptr);
655 }
Jens Axboec44b1ff2011-08-30 20:43:53 -0600656
Jens Axboee1f36502006-10-27 10:54:08 +0200657 break;
Jens Axboeaf52b342007-03-13 10:07:47 +0100658 }
Jens Axboee1f36502006-10-27 10:54:08 +0200659 case FIO_OPT_RANGE: {
Jens Axboeb765a372006-10-27 15:00:16 +0200660 char tmp[128];
Jens Axboee1f36502006-10-27 10:54:08 +0200661 char *p1, *p2;
662
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100663 strncpy(tmp, ptr, sizeof(tmp) - 1);
Jens Axboeb765a372006-10-27 15:00:16 +0200664
Dave Engberg31d23f42011-07-23 21:07:13 +0200665 /* Handle bsrange with separate read,write values: */
666 p1 = strchr(tmp, ',');
667 if (p1)
668 *p1 = '\0';
669
Jens Axboeb765a372006-10-27 15:00:16 +0200670 p1 = strchr(tmp, '-');
Jens Axboee1f36502006-10-27 10:54:08 +0200671 if (!p1) {
Jens Axboe0c9baf92007-01-11 15:59:26 +0100672 p1 = strchr(tmp, ':');
673 if (!p1) {
674 ret = 1;
675 break;
676 }
Jens Axboee1f36502006-10-27 10:54:08 +0200677 }
678
679 p2 = p1 + 1;
680 *p1 = '\0';
Jens Axboeb765a372006-10-27 15:00:16 +0200681 p1 = tmp;
Jens Axboee1f36502006-10-27 10:54:08 +0200682
683 ret = 1;
Jens Axboed6978a32009-07-18 21:04:09 +0200684 if (!check_range_bytes(p1, &ul1, data) &&
685 !check_range_bytes(p2, &ul2, data)) {
Jens Axboee1f36502006-10-27 10:54:08 +0200686 ret = 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200687 if (ul1 > ul2) {
Jens Axboef90eff52006-11-06 11:08:21 +0100688 unsigned long foo = ul1;
689
690 ul1 = ul2;
691 ul2 = foo;
692 }
693
694 if (first) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700695 val_store(ilp, ul1, o->off1, 0, data, o);
696 val_store(ilp, ul2, o->off2, 0, data, o);
Jens Axboee1f36502006-10-27 10:54:08 +0200697 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200698 if (curr == 1) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700699 if (o->off3 && o->off4) {
700 val_store(ilp, ul1, o->off3, 0, data, o);
701 val_store(ilp, ul2, o->off4, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200702 }
703 }
704 if (curr == 2) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700705 if (o->off5 && o->off6) {
706 val_store(ilp, ul1, o->off5, 0, data, o);
707 val_store(ilp, ul2, o->off6, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200708 }
709 }
710 if (!more) {
711 if (curr < 1) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700712 if (o->off3 && o->off4) {
713 val_store(ilp, ul1, o->off3, 0, data, o);
714 val_store(ilp, ul2, o->off4, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200715 }
716 }
717 if (curr < 2) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700718 if (o->off5 && o->off6) {
719 val_store(ilp, ul1, o->off5, 0, data, o);
720 val_store(ilp, ul2, o->off6, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200721 }
722 }
Jens Axboe17abbe82006-11-06 11:23:10 +0100723 }
724 }
725
Jens Axboee1f36502006-10-27 10:54:08 +0200726 break;
727 }
Jens Axboe74ba1802011-07-15 09:09:15 +0200728 case FIO_OPT_BOOL:
729 case FIO_OPT_STR_SET: {
Jens Axboee1f36502006-10-27 10:54:08 +0200730 fio_opt_int_fn *fn = o->cb;
731
Jens Axboe74ba1802011-07-15 09:09:15 +0200732 if (ptr)
733 ret = check_int(ptr, &il);
734 else if (o->type == FIO_OPT_BOOL)
735 ret = 1;
736 else
737 il = 1;
738
Jens Axboeae3fcb52013-04-25 10:06:32 -0600739 dprint(FD_PARSE, " ret=%d, out=%d\n", ret, il);
740
Jens Axboee1f36502006-10-27 10:54:08 +0200741 if (ret)
742 break;
743
Jens Axboedb8e0162007-01-10 13:41:26 +0100744 if (o->maxval && il > (int) o->maxval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200745 log_err("max value out of range: %d (%d max)\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100746 il, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100747 return 1;
748 }
749 if (o->minval && il < o->minval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200750 log_err("min value out of range: %d (%d min)\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100751 il, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100752 return 1;
753 }
Jens Axboee1f36502006-10-27 10:54:08 +0200754
Jens Axboe76a43db2007-01-11 13:24:44 +0100755 if (o->neg)
756 il = !il;
757
Jens Axboee1f36502006-10-27 10:54:08 +0200758 if (fn)
759 ret = fn(data, &il);
760 else {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700761 if (first)
762 val_store(ilp, il, o->off1, 0, data, o);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100763 if (!more) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700764 if (o->off2)
765 val_store(ilp, il, o->off2, 0, data, o);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100766 }
Jens Axboee1f36502006-10-27 10:54:08 +0200767 }
768 break;
769 }
Jens Axboe15ca1502008-04-07 09:26:02 +0200770 case FIO_OPT_DEPRECATED:
Jens Axboe06b0be62011-10-04 10:31:10 +0200771 log_info("Option %s is deprecated\n", o->name);
Jens Axboed9472272013-07-25 10:20:45 -0600772 ret = 1;
Jens Axboe15ca1502008-04-07 09:26:02 +0200773 break;
Jens Axboee1f36502006-10-27 10:54:08 +0200774 default:
Jens Axboe06b0be62011-10-04 10:31:10 +0200775 log_err("Bad option type %u\n", o->type);
Jens Axboee1f36502006-10-27 10:54:08 +0200776 ret = 1;
777 }
778
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200779 if (ret)
780 return ret;
781
Jens Axboed447a8c2009-07-17 22:26:15 +0200782 if (o->verify) {
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200783 ret = o->verify(o, data);
Jens Axboed447a8c2009-07-17 22:26:15 +0200784 if (ret) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200785 log_err("Correct format for offending option\n");
786 log_err("%20s: %s\n", o->name, o->help);
Jens Axboe06b0be62011-10-04 10:31:10 +0200787 show_option_help(o, 1);
Jens Axboed447a8c2009-07-17 22:26:15 +0200788 }
789 }
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200790
Jens Axboee1f36502006-10-27 10:54:08 +0200791 return ret;
792}
793
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200794static int handle_option(struct fio_option *o, const char *__ptr, void *data)
Jens Axboef90eff52006-11-06 11:08:21 +0100795{
Jens Axboeb62bdf22010-03-10 12:36:17 +0100796 char *o_ptr, *ptr, *ptr2;
797 int ret, done;
Jens Axboef90eff52006-11-06 11:08:21 +0100798
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200799 dprint(FD_PARSE, "handle_option=%s, ptr=%s\n", o->name, __ptr);
800
Jens Axboeb62bdf22010-03-10 12:36:17 +0100801 o_ptr = ptr = NULL;
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200802 if (__ptr)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100803 o_ptr = ptr = strdup(__ptr);
Jens Axboea3d741f2008-02-27 18:32:33 +0100804
Jens Axboef90eff52006-11-06 11:08:21 +0100805 /*
Jens Axboeb62bdf22010-03-10 12:36:17 +0100806 * See if we have another set of parameters, hidden after a comma.
807 * Do this before parsing this round, to check if we should
Jens Axboe787f7e92006-11-06 13:26:29 +0100808 * copy set 1 options to set 2.
Jens Axboef90eff52006-11-06 11:08:21 +0100809 */
Jens Axboeb62bdf22010-03-10 12:36:17 +0100810 done = 0;
811 ret = 1;
812 do {
813 int __ret;
814
815 ptr2 = NULL;
816 if (ptr &&
817 (o->type != FIO_OPT_STR_STORE) &&
Yu-ju Hong83349192011-08-13 00:53:44 +0200818 (o->type != FIO_OPT_STR) &&
819 (o->type != FIO_OPT_FLOAT_LIST)) {
Jens Axboeb62bdf22010-03-10 12:36:17 +0100820 ptr2 = strchr(ptr, ',');
821 if (ptr2 && *(ptr2 + 1) == '\0')
822 *ptr2 = '\0';
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200823 if (o->type != FIO_OPT_STR_MULTI && o->type != FIO_OPT_RANGE) {
Jens Axboeb62bdf22010-03-10 12:36:17 +0100824 if (!ptr2)
825 ptr2 = strchr(ptr, ':');
826 if (!ptr2)
827 ptr2 = strchr(ptr, '-');
828 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200829 } else if (ptr && o->type == FIO_OPT_FLOAT_LIST) {
830 ptr2 = strchr(ptr, ':');
Jens Axboeb62bdf22010-03-10 12:36:17 +0100831 }
832
833 /*
834 * Don't return early if parsing the first option fails - if
835 * we are doing multiple arguments, we can allow the first one
836 * being empty.
837 */
Yu-ju Hong83349192011-08-13 00:53:44 +0200838 __ret = __handle_option(o, ptr, data, !done, !!ptr2, done);
Jens Axboeb62bdf22010-03-10 12:36:17 +0100839 if (ret)
840 ret = __ret;
841
Jens Axboe0c9baf92007-01-11 15:59:26 +0100842 if (!ptr2)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100843 break;
Jens Axboe787f7e92006-11-06 13:26:29 +0100844
Jens Axboeb62bdf22010-03-10 12:36:17 +0100845 ptr = ptr2 + 1;
846 done++;
847 } while (1);
Jens Axboe787f7e92006-11-06 13:26:29 +0100848
Jens Axboeb62bdf22010-03-10 12:36:17 +0100849 if (o_ptr)
850 free(o_ptr);
851 return ret;
Jens Axboef90eff52006-11-06 11:08:21 +0100852}
853
Steven Langde890a12011-11-09 14:03:34 +0100854static struct fio_option *get_option(char *opt,
Jens Axboe07b32322010-03-05 09:48:44 +0100855 struct fio_option *options, char **post)
Jens Axboe3b8b7132008-06-10 19:46:23 +0200856{
857 struct fio_option *o;
858 char *ret;
859
860 ret = strchr(opt, '=');
861 if (ret) {
862 *post = ret;
863 *ret = '\0';
Steven Langde890a12011-11-09 14:03:34 +0100864 ret = opt;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200865 (*post)++;
Jens Axboe43c129b2008-12-08 14:06:42 +0100866 strip_blank_end(ret);
Jens Axboe07b32322010-03-05 09:48:44 +0100867 o = find_option(options, ret);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200868 } else {
Jens Axboe07b32322010-03-05 09:48:44 +0100869 o = find_option(options, opt);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200870 *post = NULL;
871 }
872
873 return o;
874}
875
876static int opt_cmp(const void *p1, const void *p2)
877{
Steven Langde890a12011-11-09 14:03:34 +0100878 struct fio_option *o;
879 char *s, *foo;
Jens Axboe8cdabc12008-11-19 12:31:43 +0100880 int prio1, prio2;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200881
Jens Axboe8cdabc12008-11-19 12:31:43 +0100882 prio1 = prio2 = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200883
Steven Langde890a12011-11-09 14:03:34 +0100884 if (*(char **)p1) {
885 s = strdup(*((char **) p1));
Jens Axboe9af4a242012-03-16 10:13:49 +0100886 o = get_option(s, __fio_options, &foo);
Steven Langde890a12011-11-09 14:03:34 +0100887 if (o)
888 prio1 = o->prio;
889 free(s);
890 }
891 if (*(char **)p2) {
892 s = strdup(*((char **) p2));
Jens Axboe9af4a242012-03-16 10:13:49 +0100893 o = get_option(s, __fio_options, &foo);
Steven Langde890a12011-11-09 14:03:34 +0100894 if (o)
895 prio2 = o->prio;
896 free(s);
897 }
898
Jens Axboe8cdabc12008-11-19 12:31:43 +0100899 return prio2 - prio1;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200900}
901
902void sort_options(char **opts, struct fio_option *options, int num_opts)
903{
Jens Axboe9af4a242012-03-16 10:13:49 +0100904 __fio_options = options;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200905 qsort(opts, num_opts, sizeof(char *), opt_cmp);
Jens Axboe9af4a242012-03-16 10:13:49 +0100906 __fio_options = NULL;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200907}
908
Jens Axboeb4692822006-10-27 13:43:22 +0200909int parse_cmd_option(const char *opt, const char *val,
Jens Axboe07b32322010-03-05 09:48:44 +0100910 struct fio_option *options, void *data)
Jens Axboeb4692822006-10-27 13:43:22 +0200911{
912 struct fio_option *o;
913
Jens Axboe07b32322010-03-05 09:48:44 +0100914 o = find_option(options, opt);
Jens Axboeb4692822006-10-27 13:43:22 +0200915 if (!o) {
Jens Axboe06b0be62011-10-04 10:31:10 +0200916 log_err("Bad option <%s>\n", opt);
Jens Axboeb4692822006-10-27 13:43:22 +0200917 return 1;
918 }
919
Jens Axboeb1508cf2006-11-02 09:12:40 +0100920 if (!handle_option(o, val, data))
921 return 0;
922
Jens Axboe06b0be62011-10-04 10:31:10 +0200923 log_err("fio: failed parsing %s=%s\n", opt, val);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100924 return 1;
Jens Axboeb4692822006-10-27 13:43:22 +0200925}
926
Steven Langde890a12011-11-09 14:03:34 +0100927int parse_option(char *opt, const char *input,
Jens Axboe292cc472013-11-26 20:39:35 -0700928 struct fio_option *options, struct fio_option **o, void *data,
929 int dump_cmdline)
Jens Axboee1f36502006-10-27 10:54:08 +0200930{
Steven Langd0c814e2011-10-28 08:37:13 +0200931 char *post;
Jens Axboee1f36502006-10-27 10:54:08 +0200932
Steven Langd0c814e2011-10-28 08:37:13 +0200933 if (!opt) {
934 log_err("fio: failed parsing %s\n", input);
Steven Langde890a12011-11-09 14:03:34 +0100935 *o = NULL;
Jens Axboe38789b52010-03-03 09:23:20 +0100936 return 1;
Steven Langd0c814e2011-10-28 08:37:13 +0200937 }
Jens Axboee1f36502006-10-27 10:54:08 +0200938
Steven Langde890a12011-11-09 14:03:34 +0100939 *o = get_option(opt, options, &post);
940 if (!*o) {
941 if (post) {
942 int len = strlen(opt);
943 if (opt + len + 1 != post)
944 memmove(opt + len + 1, post, strlen(post));
945 opt[len] = '=';
946 }
Jens Axboee1f36502006-10-27 10:54:08 +0200947 return 1;
948 }
949
Jens Axboe292cc472013-11-26 20:39:35 -0700950 if (handle_option(*o, post, data)) {
951 log_err("fio: failed parsing %s\n", input);
952 return 1;
953 }
Jens Axboeb1508cf2006-11-02 09:12:40 +0100954
Jens Axboe292cc472013-11-26 20:39:35 -0700955 if (dump_cmdline) {
956 const char *delim;
957
958 if (!strcmp("description", (*o)->name))
959 delim = "\"";
960 else
961 delim = "";
962
963 log_info("--%s%s", (*o)->name, post ? "" : " ");
964 if (post)
965 log_info("=%s%s%s ", delim, post, delim);
966 }
967
968 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200969}
Jens Axboefd28ca42007-01-09 21:20:13 +0100970
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100971/*
972 * Option match, levenshtein distance. Handy for not quite remembering what
973 * the option name is.
974 */
975static int string_distance(const char *s1, const char *s2)
976{
977 unsigned int s1_len = strlen(s1);
978 unsigned int s2_len = strlen(s2);
979 unsigned int *p, *q, *r;
980 unsigned int i, j;
981
982 p = malloc(sizeof(unsigned int) * (s2_len + 1));
983 q = malloc(sizeof(unsigned int) * (s2_len + 1));
984
985 p[0] = 0;
986 for (i = 1; i <= s2_len; i++)
987 p[i] = p[i - 1] + 1;
988
989 for (i = 1; i <= s1_len; i++) {
990 q[0] = p[0] + 1;
991 for (j = 1; j <= s2_len; j++) {
992 unsigned int sub = p[j - 1];
993
994 if (s1[i - 1] != s2[j - 1])
995 sub++;
996
997 q[j] = min(p[j] + 1, min(q[j - 1] + 1, sub));
998 }
999 r = p;
1000 p = q;
1001 q = r;
1002 }
1003
1004 i = p[s2_len];
1005 free(p);
1006 free(q);
1007 return i;
1008}
1009
Jens Axboeafdf9352007-07-31 16:14:34 +02001010static struct fio_option *find_child(struct fio_option *options,
1011 struct fio_option *o)
1012{
1013 struct fio_option *__o;
1014
Jens Axboefdf28742007-07-31 23:06:09 +02001015 for (__o = options + 1; __o->name; __o++)
1016 if (__o->parent && !strcmp(__o->parent, o->name))
Jens Axboeafdf9352007-07-31 16:14:34 +02001017 return __o;
1018
1019 return NULL;
1020}
1021
Jens Axboe323d9112008-03-01 15:12:14 +01001022static void __print_option(struct fio_option *o, struct fio_option *org,
1023 int level)
Jens Axboeafdf9352007-07-31 16:14:34 +02001024{
1025 char name[256], *p;
Jens Axboe323d9112008-03-01 15:12:14 +01001026 int depth;
Jens Axboeafdf9352007-07-31 16:14:34 +02001027
1028 if (!o)
1029 return;
Jens Axboeef9aff52007-07-31 22:56:53 +02001030 if (!org)
1031 org = o;
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001032
Jens Axboeafdf9352007-07-31 16:14:34 +02001033 p = name;
Jens Axboe323d9112008-03-01 15:12:14 +01001034 depth = level;
1035 while (depth--)
1036 p += sprintf(p, "%s", " ");
Jens Axboeafdf9352007-07-31 16:14:34 +02001037
1038 sprintf(p, "%s", o->name);
1039
Jens Axboe28d7c362011-10-05 20:30:24 +02001040 log_info("%-24s: %s\n", name, o->help);
Jens Axboe323d9112008-03-01 15:12:14 +01001041}
1042
1043static void print_option(struct fio_option *o)
1044{
1045 struct fio_option *parent;
1046 struct fio_option *__o;
1047 unsigned int printed;
1048 unsigned int level;
1049
1050 __print_option(o, NULL, 0);
1051 parent = o;
1052 level = 0;
1053 do {
1054 level++;
1055 printed = 0;
1056
1057 while ((__o = find_child(o, parent)) != NULL) {
1058 __print_option(__o, o, level);
1059 o = __o;
1060 printed++;
1061 }
1062
1063 parent = o;
1064 } while (printed);
Jens Axboeafdf9352007-07-31 16:14:34 +02001065}
1066
Jens Axboe07b32322010-03-05 09:48:44 +01001067int show_cmd_help(struct fio_option *options, const char *name)
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001068{
1069 struct fio_option *o, *closest;
Jens Axboed091d092010-04-01 19:56:23 +02001070 unsigned int best_dist = -1U;
Jens Axboe29fc6af2007-01-09 21:22:02 +01001071 int found = 0;
Jens Axboe320beef2007-03-01 10:44:12 +01001072 int show_all = 0;
1073
1074 if (!name || !strcmp(name, "all"))
1075 show_all = 1;
Jens Axboefd28ca42007-01-09 21:20:13 +01001076
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001077 closest = NULL;
1078 best_dist = -1;
Jens Axboe4945ba12007-01-11 14:36:56 +01001079 for (o = &options[0]; o->name; o++) {
Jens Axboe320beef2007-03-01 10:44:12 +01001080 int match = 0;
1081
Jens Axboe15ca1502008-04-07 09:26:02 +02001082 if (o->type == FIO_OPT_DEPRECATED)
1083 continue;
Jens Axboe07b32322010-03-05 09:48:44 +01001084 if (!exec_profile && o->prof_name)
1085 continue;
Jens Axboe4ac23d22013-05-23 21:14:03 +02001086 if (exec_profile && !(o->prof_name && !strcmp(exec_profile, o->prof_name)))
1087 continue;
Jens Axboe15ca1502008-04-07 09:26:02 +02001088
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001089 if (name) {
Jens Axboe7f9348f2007-03-15 14:09:28 +01001090 if (!strcmp(name, o->name) ||
1091 (o->alias && !strcmp(name, o->alias)))
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001092 match = 1;
1093 else {
1094 unsigned int dist;
1095
1096 dist = string_distance(name, o->name);
1097 if (dist < best_dist) {
1098 best_dist = dist;
1099 closest = o;
1100 }
1101 }
1102 }
Jens Axboefd28ca42007-01-09 21:20:13 +01001103
1104 if (show_all || match) {
Jens Axboe29fc6af2007-01-09 21:22:02 +01001105 found = 1;
Jens Axboec167ded2007-03-14 13:02:53 +01001106 if (match)
Jens Axboe28d7c362011-10-05 20:30:24 +02001107 log_info("%20s: %s\n", o->name, o->help);
Jens Axboec167ded2007-03-14 13:02:53 +01001108 if (show_all) {
Jens Axboeafdf9352007-07-31 16:14:34 +02001109 if (!o->parent)
Jens Axboe323d9112008-03-01 15:12:14 +01001110 print_option(o);
Jens Axboe4945ba12007-01-11 14:36:56 +01001111 continue;
Jens Axboec167ded2007-03-14 13:02:53 +01001112 }
Jens Axboefd28ca42007-01-09 21:20:13 +01001113 }
1114
Jens Axboe70df2f12007-01-11 14:04:47 +01001115 if (!match)
1116 continue;
1117
Jens Axboe06b0be62011-10-04 10:31:10 +02001118 show_option_help(o, 0);
Jens Axboefd28ca42007-01-09 21:20:13 +01001119 }
1120
Jens Axboe29fc6af2007-01-09 21:22:02 +01001121 if (found)
1122 return 0;
Jens Axboefd28ca42007-01-09 21:20:13 +01001123
Jens Axboe28d7c362011-10-05 20:30:24 +02001124 log_err("No such command: %s", name);
Jens Axboed091d092010-04-01 19:56:23 +02001125
1126 /*
1127 * Only print an appropriately close option, one where the edit
1128 * distance isn't too big. Otherwise we get crazy matches.
1129 */
1130 if (closest && best_dist < 3) {
Jens Axboe28d7c362011-10-05 20:30:24 +02001131 log_info(" - showing closest match\n");
1132 log_info("%20s: %s\n", closest->name, closest->help);
Jens Axboe06b0be62011-10-04 10:31:10 +02001133 show_option_help(closest, 0);
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001134 } else
Jens Axboe28d7c362011-10-05 20:30:24 +02001135 log_info("\n");
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001136
Jens Axboe29fc6af2007-01-09 21:22:02 +01001137 return 1;
Jens Axboefd28ca42007-01-09 21:20:13 +01001138}
Jens Axboeee738492007-01-10 11:23:16 +01001139
Jens Axboe13335dd2007-01-10 13:14:02 +01001140/*
1141 * Handle parsing of default parameters.
1142 */
Jens Axboeee738492007-01-10 11:23:16 +01001143void fill_default_options(void *data, struct fio_option *options)
1144{
Jens Axboe4945ba12007-01-11 14:36:56 +01001145 struct fio_option *o;
Jens Axboeee738492007-01-10 11:23:16 +01001146
Jens Axboea3d741f2008-02-27 18:32:33 +01001147 dprint(FD_PARSE, "filling default options\n");
1148
Jens Axboe4945ba12007-01-11 14:36:56 +01001149 for (o = &options[0]; o->name; o++)
Jens Axboeee738492007-01-10 11:23:16 +01001150 if (o->def)
1151 handle_option(o, o->def, data);
Jens Axboeee738492007-01-10 11:23:16 +01001152}
Jens Axboe13335dd2007-01-10 13:14:02 +01001153
Jens Axboe9f988e22010-03-04 10:42:38 +01001154void option_init(struct fio_option *o)
1155{
1156 if (o->type == FIO_OPT_DEPRECATED)
1157 return;
1158 if (o->type == FIO_OPT_BOOL) {
1159 o->minval = 0;
1160 o->maxval = 1;
1161 }
Jens Axboed4fc2f02012-09-24 14:32:26 +02001162 if (o->type == FIO_OPT_INT) {
1163 if (!o->maxval)
1164 o->maxval = UINT_MAX;
1165 }
Yu-ju Hong83349192011-08-13 00:53:44 +02001166 if (o->type == FIO_OPT_FLOAT_LIST) {
Bruce Cranab9461e2013-02-02 14:31:24 +00001167 o->minfp = DBL_MIN;
1168 o->maxfp = DBL_MAX;
Yu-ju Hong83349192011-08-13 00:53:44 +02001169 }
Jens Axboe9f988e22010-03-04 10:42:38 +01001170 if (o->type == FIO_OPT_STR_SET && o->def) {
Jens Axboe06b0be62011-10-04 10:31:10 +02001171 log_err("Option %s: string set option with"
Jens Axboe9f988e22010-03-04 10:42:38 +01001172 " default will always be true\n", o->name);
1173 }
Jens Axboe7b504ed2014-02-11 14:19:38 -07001174 if (!o->cb && !o->off1)
Jens Axboe06b0be62011-10-04 10:31:10 +02001175 log_err("Option %s: neither cb nor offset given\n", o->name);
Jens Axboe22754742013-04-10 13:05:23 +02001176 if (!o->category) {
Jens Axboecca5b5b2013-04-10 19:35:25 +02001177 log_info("Option %s: no category defined. Setting to misc\n", o->name);
Jens Axboe22754742013-04-10 13:05:23 +02001178 o->category = FIO_OPT_C_GENERAL;
Jens Axboeffd78212013-04-10 13:07:43 +02001179 o->group = FIO_OPT_G_INVALID;
Jens Axboe22754742013-04-10 13:05:23 +02001180 }
Jens Axboe5f6ddf12010-03-09 20:40:44 +01001181 if (o->type == FIO_OPT_STR || o->type == FIO_OPT_STR_STORE ||
1182 o->type == FIO_OPT_STR_MULTI)
Jens Axboe9f988e22010-03-04 10:42:38 +01001183 return;
Jens Axboe7b504ed2014-02-11 14:19:38 -07001184 if (o->cb && (o->off1 || o->off2 || o->off3 || o->off4))
Jens Axboe06b0be62011-10-04 10:31:10 +02001185 log_err("Option %s: both cb and offset given\n", o->name);
Jens Axboe9f988e22010-03-04 10:42:38 +01001186}
1187
Jens Axboe13335dd2007-01-10 13:14:02 +01001188/*
1189 * Sanitize the options structure. For now it just sets min/max for bool
Jens Axboe5b0a8882007-01-11 14:40:27 +01001190 * values and whether both callback and offsets are given.
Jens Axboe13335dd2007-01-10 13:14:02 +01001191 */
1192void options_init(struct fio_option *options)
1193{
Jens Axboe4945ba12007-01-11 14:36:56 +01001194 struct fio_option *o;
Jens Axboe13335dd2007-01-10 13:14:02 +01001195
Jens Axboea3d741f2008-02-27 18:32:33 +01001196 dprint(FD_PARSE, "init options\n");
1197
Jens Axboe90265352012-03-19 20:29:44 +01001198 for (o = &options[0]; o->name; o++) {
Jens Axboe9f988e22010-03-04 10:42:38 +01001199 option_init(o);
Jens Axboe90265352012-03-19 20:29:44 +01001200 if (o->inverse)
1201 o->inv_opt = find_option(options, o->inverse);
1202 }
Jens Axboe13335dd2007-01-10 13:14:02 +01001203}
Jens Axboe7e356b22011-10-14 10:55:16 +02001204
1205void options_free(struct fio_option *options, void *data)
1206{
1207 struct fio_option *o;
1208 char **ptr;
1209
1210 dprint(FD_PARSE, "free options\n");
1211
1212 for (o = &options[0]; o->name; o++) {
Steven Langde890a12011-11-09 14:03:34 +01001213 if (o->type != FIO_OPT_STR_STORE || !o->off1)
Jens Axboe7e356b22011-10-14 10:55:16 +02001214 continue;
1215
Jens Axboef0fdbca2014-02-11 15:44:50 -07001216 ptr = td_var(data, o, o->off1);
Jens Axboe7e356b22011-10-14 10:55:16 +02001217 if (*ptr) {
1218 free(*ptr);
1219 *ptr = NULL;
1220 }
1221 }
1222}