blob: c8bae0335a4e90365022e946d24136b1a1cc501b [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
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100125static unsigned long long get_mult_time(const char *str, int len)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200126{
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100127 const char *p = str;
128 char *c;
129 unsigned long long mult = 1000;
130
131 /*
132 * Go forward until we hit a non-digit, or +/- sign
133 */
134 while ((p - str) <= len) {
135 if (!isdigit((int) *p) && (*p != '+') && (*p != '-'))
136 break;
137 p++;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200138 }
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100139
140 if (!isalpha((int) *p))
141 return 1000;
142
143 c = strdup(p);
144 for (int i = 0; i < strlen(c); i++)
145 c[i] = tolower(c[i]);
146
147 if (!strncmp("ms", c, 2))
148 mult = 1;
149 else if (!strcmp("s", c))
150 mult = 1000;
151 else if (!strcmp("m", c))
152 mult = 60 * 1000;
153 else if (!strcmp("h", c))
154 mult = 60 * 60 * 1000;
155 else if (!strcmp("d", c))
156 mult = 24 * 60 * 60 * 1000;
157
158 free(c);
159 return mult;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200160}
161
Jens Axboea03fb652013-03-29 12:20:51 -0600162static int is_separator(char c)
163{
164 switch (c) {
165 case ':':
166 case '-':
167 case ',':
168 case '/':
169 return 1;
170 default:
171 return 0;
172 }
173}
174
Jens Axboe7bb59102011-07-12 19:47:03 +0200175static unsigned long long __get_mult_bytes(const char *p, void *data,
176 int *percent)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200177{
Jens Axboed6978a32009-07-18 21:04:09 +0200178 unsigned int kb_base = fio_get_kb_base(data);
Jens Axboea639f0b2009-07-18 08:25:35 +0200179 unsigned long long ret = 1;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200180 unsigned int i, pow = 0, mult = kb_base;
181 char *c;
Jens Axboea639f0b2009-07-18 08:25:35 +0200182
Jens Axboe57fc29f2010-06-23 22:24:07 +0200183 if (!p)
184 return 1;
Jens Axboea639f0b2009-07-18 08:25:35 +0200185
Jens Axboe57fc29f2010-06-23 22:24:07 +0200186 c = strdup(p);
187
Jens Axboea03fb652013-03-29 12:20:51 -0600188 for (i = 0; i < strlen(c); i++) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200189 c[i] = tolower(c[i]);
Jens Axboea03fb652013-03-29 12:20:51 -0600190 if (is_separator(c[i])) {
191 c[i] = '\0';
192 break;
193 }
194 }
Jens Axboe57fc29f2010-06-23 22:24:07 +0200195
Jens Axboea04f1582012-03-07 10:53:29 +0100196 if (!strncmp("pib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200197 pow = 5;
198 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100199 } else if (!strncmp("tib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200200 pow = 4;
201 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100202 } else if (!strncmp("gib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200203 pow = 3;
204 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100205 } else if (!strncmp("mib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200206 pow = 2;
207 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100208 } else if (!strncmp("kib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200209 pow = 1;
210 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100211 } else if (!strncmp("p", c, 1) || !strncmp("pb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200212 pow = 5;
Jens Axboea04f1582012-03-07 10:53:29 +0100213 else if (!strncmp("t", c, 1) || !strncmp("tb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200214 pow = 4;
Jens Axboea04f1582012-03-07 10:53:29 +0100215 else if (!strncmp("g", c, 1) || !strncmp("gb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200216 pow = 3;
Jens Axboea04f1582012-03-07 10:53:29 +0100217 else if (!strncmp("m", c, 1) || !strncmp("mb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200218 pow = 2;
Jens Axboea04f1582012-03-07 10:53:29 +0100219 else if (!strncmp("k", c, 1) || !strncmp("kb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200220 pow = 1;
Jens Axboea04f1582012-03-07 10:53:29 +0100221 else if (!strncmp("%", c, 1)) {
Jens Axboe7bb59102011-07-12 19:47:03 +0200222 *percent = 1;
Jens Axboee721c572012-02-09 20:55:29 +0100223 free(c);
Jens Axboe7bb59102011-07-12 19:47:03 +0200224 return ret;
225 }
Jens Axboe57fc29f2010-06-23 22:24:07 +0200226
227 while (pow--)
228 ret *= (unsigned long long) mult;
229
230 free(c);
Jens Axboea639f0b2009-07-18 08:25:35 +0200231 return ret;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200232}
233
Jens Axboe7bb59102011-07-12 19:47:03 +0200234static unsigned long long get_mult_bytes(const char *str, int len, void *data,
Jens Axboe6925dd32011-09-07 22:10:11 +0200235 int *percent)
Jens Axboe57fc29f2010-06-23 22:24:07 +0200236{
Jens Axboe55ed9632011-03-27 20:55:09 +0200237 const char *p = str;
Jens Axboeba4ddd62011-09-07 22:11:00 +0200238 int digit_seen = 0;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200239
Jens Axboe1d1c1872010-07-29 10:50:05 +0200240 if (len < 2)
Jens Axboe7bb59102011-07-12 19:47:03 +0200241 return __get_mult_bytes(str, data, percent);
Jens Axboe1d1c1872010-07-29 10:50:05 +0200242
Steven Langd0c814e2011-10-28 08:37:13 +0200243 /*
244 * Go forward until we hit a non-digit, or +/- sign
245 */
Jens Axboe55ed9632011-03-27 20:55:09 +0200246 while ((p - str) <= len) {
Jens Axboeba4ddd62011-09-07 22:11:00 +0200247 if (!isdigit((int) *p) &&
248 (((*p != '+') && (*p != '-')) || digit_seen))
Jens Axboe55ed9632011-03-27 20:55:09 +0200249 break;
Jens Axboe3c703d12011-09-21 09:27:24 +0200250 digit_seen |= isdigit((int) *p);
Jens Axboe55ed9632011-03-27 20:55:09 +0200251 p++;
252 }
253
Jens Axboe7bb59102011-07-12 19:47:03 +0200254 if (!isalpha((int) *p) && (*p != '%'))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200255 p = NULL;
256
Jens Axboe7bb59102011-07-12 19:47:03 +0200257 return __get_mult_bytes(p, data, percent);
Jens Axboe57fc29f2010-06-23 22:24:07 +0200258}
259
Jens Axboecb2c86f2006-10-26 13:48:34 +0200260/*
Yu-ju Hong83349192011-08-13 00:53:44 +0200261 * Convert string into a floating number. Return 1 for success and 0 otherwise.
262 */
Jens Axboee25839d2012-11-06 10:49:42 +0100263int str_to_float(const char *str, double *val)
Yu-ju Hong83349192011-08-13 00:53:44 +0200264{
265 return (1 == sscanf(str, "%lf", val));
266}
267
268/*
Jens Axboee1f36502006-10-27 10:54:08 +0200269 * convert string into decimal value, noting any size suffix
Jens Axboecb2c86f2006-10-26 13:48:34 +0200270 */
Jens Axboe6925dd32011-09-07 22:10:11 +0200271int str_to_decimal(const char *str, long long *val, int kilo, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200272{
Jens Axboeb347f9d2009-03-09 14:15:21 +0100273 int len, base;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200274
Jens Axboecb2c86f2006-10-26 13:48:34 +0200275 len = strlen(str);
Jens Axboef90eff52006-11-06 11:08:21 +0100276 if (!len)
277 return 1;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200278
Jens Axboeb347f9d2009-03-09 14:15:21 +0100279 if (strstr(str, "0x") || strstr(str, "0X"))
280 base = 16;
281 else
282 base = 10;
283
284 *val = strtoll(str, NULL, base);
Jens Axboecda866c2007-01-10 16:02:32 +0100285 if (*val == LONG_MAX && errno == ERANGE)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200286 return 1;
287
Jens Axboe7bb59102011-07-12 19:47:03 +0200288 if (kilo) {
289 unsigned long long mult;
290 int perc = 0;
291
Jens Axboe6925dd32011-09-07 22:10:11 +0200292 mult = get_mult_bytes(str, len, data, &perc);
Jens Axboe7bb59102011-07-12 19:47:03 +0200293 if (perc)
294 *val = -1ULL - *val;
295 else
296 *val *= mult;
297 } else
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100298 *val *= get_mult_time(str, len);
Jens Axboe787f7e92006-11-06 13:26:29 +0100299
Jens Axboecb2c86f2006-10-26 13:48:34 +0200300 return 0;
301}
302
Jens Axboe9af4a242012-03-16 10:13:49 +0100303int check_str_bytes(const char *p, long long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200304{
Jens Axboe6925dd32011-09-07 22:10:11 +0200305 return str_to_decimal(p, val, 1, data);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200306}
307
Jens Axboe06464902013-04-24 20:38:54 -0600308int check_str_time(const char *p, long long *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200309{
Jens Axboe6925dd32011-09-07 22:10:11 +0200310 return str_to_decimal(p, val, 0, NULL);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200311}
312
313void strip_blank_front(char **p)
314{
315 char *s = *p;
316
Jens Axboe4c8e9642011-10-15 14:37:38 +0200317 if (!strlen(s))
318 return;
Jens Axboe76cd9372011-07-08 21:14:57 +0200319 while (isspace((int) *s))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200320 s++;
Jens Axboe4d651da2007-03-28 19:34:53 +0200321
322 *p = s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200323}
324
325void strip_blank_end(char *p)
326{
Jens Axboe853ee7f2009-03-06 20:29:29 +0100327 char *start = p, *s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200328
Jens Axboe4c8e9642011-10-15 14:37:38 +0200329 if (!strlen(p))
330 return;
331
Jens Axboe523bfad2007-04-04 11:04:06 +0200332 s = strchr(p, ';');
333 if (s)
334 *s = '\0';
335 s = strchr(p, '#');
336 if (s)
337 *s = '\0';
338 if (s)
339 p = s;
340
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200341 s = p + strlen(p);
Jens Axboe76cd9372011-07-08 21:14:57 +0200342 while ((isspace((int) *s) || iscntrl((int) *s)) && (s > start))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200343 s--;
344
345 *(s + 1) = '\0';
346}
347
Jens Axboed6978a32009-07-18 21:04:09 +0200348static int check_range_bytes(const char *str, long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200349{
Jens Axboe57fc29f2010-06-23 22:24:07 +0200350 long long __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200351
Jens Axboe6925dd32011-09-07 22:10:11 +0200352 if (!str_to_decimal(str, &__val, 1, data)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200353 *val = __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200354 return 0;
355 }
356
Jens Axboecb2c86f2006-10-26 13:48:34 +0200357 return 1;
358}
359
Jens Axboe63f29372007-01-10 13:20:09 +0100360static int check_int(const char *p, int *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200361{
Jens Axboe787f7e92006-11-06 13:26:29 +0100362 if (!strlen(p))
363 return 1;
Jens Axboed78ee462007-08-10 14:03:20 +0200364 if (strstr(p, "0x") || strstr(p, "0X")) {
Jens Axboea61bdfd2007-07-30 09:07:04 +0200365 if (sscanf(p, "%x", val) == 1)
366 return 0;
367 } else {
368 if (sscanf(p, "%u", val) == 1)
369 return 0;
370 }
Jens Axboecb2c86f2006-10-26 13:48:34 +0200371
372 return 1;
373}
374
Jens Axboe808def72010-07-14 16:27:02 -0600375static int opt_len(const char *str)
376{
377 char *postfix;
378
379 postfix = strchr(str, ':');
380 if (!postfix)
381 return strlen(str);
382
383 return (int)(postfix - str);
384}
385
Jens Axboe119cd932012-12-06 17:34:57 +0100386static int str_match_len(const struct value_pair *vp, const char *str)
387{
388 return max(strlen(vp->ival), opt_len(str));
389}
390
Jens Axboef0fdbca2014-02-11 15:44:50 -0700391#define val_store(ptr, val, off, or, data, o) \
392 do { \
393 ptr = td_var((data), (o), (off)); \
394 if ((or)) \
395 *ptr |= (val); \
396 else \
397 *ptr = (val); \
Jens Axboe17abbe82006-11-06 11:23:10 +0100398 } while (0)
399
Jens Axboef90eff52006-11-06 11:08:21 +0100400static int __handle_option(struct fio_option *o, const char *ptr, void *data,
Yu-ju Hong83349192011-08-13 00:53:44 +0200401 int first, int more, int curr)
Jens Axboee1f36502006-10-27 10:54:08 +0200402{
Erwan Velu2fdbefd2013-07-22 23:48:48 +0200403 int il=0, *ilp;
Vincent Kang Fufd112d32013-02-02 09:28:55 +0100404 fio_fp64_t *flp;
Jens Axboe63f29372007-01-10 13:20:09 +0100405 long long ull, *ullp;
406 long ul1, ul2;
Yu-ju Hong83349192011-08-13 00:53:44 +0200407 double uf;
Jens Axboebfe1d592012-11-29 21:33:03 +0100408 char **cp = NULL;
Jens Axboee42b01e2011-05-05 12:05:10 -0600409 int ret = 0, is_time = 0;
Jens Axboec44b1ff2011-08-30 20:43:53 -0600410 const struct value_pair *vp;
411 struct value_pair posval[PARSE_MAX_VP];
412 int i, all_skipped = 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200413
Jens Axboea3d741f2008-02-27 18:32:33 +0100414 dprint(FD_PARSE, "__handle_option=%s, type=%d, ptr=%s\n", o->name,
415 o->type, ptr);
416
Jens Axboee3cedca2008-11-19 19:57:52 +0100417 if (!ptr && o->type != FIO_OPT_STR_SET && o->type != FIO_OPT_STR) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200418 log_err("Option %s requires an argument\n", o->name);
Jens Axboe08e26e32006-11-21 13:15:10 +0100419 return 1;
420 }
421
Jens Axboee1f36502006-10-27 10:54:08 +0200422 switch (o->type) {
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100423 case FIO_OPT_STR:
424 case FIO_OPT_STR_MULTI: {
Jens Axboee1f36502006-10-27 10:54:08 +0200425 fio_opt_str_fn *fn = o->cb;
426
Jens Axboef0857372007-03-19 13:15:23 +0100427 posval_sort(o, posval);
428
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100429 ret = 1;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100430 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboef0857372007-03-19 13:15:23 +0100431 vp = &posval[i];
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100432 if (!vp->ival || vp->ival[0] == '\0')
Jens Axboea3073f42010-03-05 10:06:15 +0100433 continue;
Jens Axboeae2ddba2010-03-10 12:49:03 +0100434 all_skipped = 0;
Jens Axboe119cd932012-12-06 17:34:57 +0100435 if (!strncmp(vp->ival, ptr, str_match_len(vp, ptr))) {
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100436 ret = 0;
Jens Axboe7b504ed2014-02-11 14:19:38 -0700437 if (o->off1)
Daniel Gollubebadc0c2014-02-12 08:24:57 -0700438 val_store(ilp, vp->oval, o->off1, vp->orval, data, o);
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100439 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100440 }
441 }
442
Jens Axboeae2ddba2010-03-10 12:49:03 +0100443 if (ret && !all_skipped)
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100444 show_option_values(o);
445 else if (fn)
446 ret = fn(data, ptr);
Jens Axboee1f36502006-10-27 10:54:08 +0200447 break;
448 }
Jens Axboee42b01e2011-05-05 12:05:10 -0600449 case FIO_OPT_STR_VAL_TIME:
450 is_time = 1;
Jens Axboef7fa2652009-03-09 14:20:20 +0100451 case FIO_OPT_INT:
Jens Axboee42b01e2011-05-05 12:05:10 -0600452 case FIO_OPT_STR_VAL: {
453 fio_opt_str_val_fn *fn = o->cb;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200454 char tmp[128], *p;
455
456 strncpy(tmp, ptr, sizeof(tmp) - 1);
457 p = strchr(tmp, ',');
458 if (p)
459 *p = '\0';
Jens Axboee1f36502006-10-27 10:54:08 +0200460
Jens Axboee42b01e2011-05-05 12:05:10 -0600461 if (is_time)
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200462 ret = check_str_time(tmp, &ull);
Jens Axboee42b01e2011-05-05 12:05:10 -0600463 else
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200464 ret = check_str_bytes(tmp, &ull, data);
Jens Axboee42b01e2011-05-05 12:05:10 -0600465
Jens Axboeae3fcb52013-04-25 10:06:32 -0600466 dprint(FD_PARSE, " ret=%d, out=%llu\n", ret, ull);
467
Jens Axboee1f36502006-10-27 10:54:08 +0200468 if (ret)
469 break;
470
Jens Axboedb8e0162007-01-10 13:41:26 +0100471 if (o->maxval && ull > o->maxval) {
Jens Axboed4fc2f02012-09-24 14:32:26 +0200472 log_err("max value out of range: %llu"
473 " (%u max)\n", ull, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100474 return 1;
475 }
476 if (o->minval && ull < o->minval) {
Jens Axboed4fc2f02012-09-24 14:32:26 +0200477 log_err("min value out of range: %llu"
478 " (%u min)\n", ull, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100479 return 1;
480 }
Jens Axboed926d532013-04-09 21:02:15 +0200481 if (o->posval[0].ival) {
482 posval_sort(o, posval);
483
484 ret = 1;
485 for (i = 0; i < PARSE_MAX_VP; i++) {
486 vp = &posval[i];
487 if (!vp->ival || vp->ival[0] == '\0')
488 continue;
489 if (vp->oval == ull) {
490 ret = 0;
491 break;
492 }
493 }
494 if (ret) {
Jens Axboe128e4ca2013-04-10 11:06:34 +0200495 log_err("fio: value %llu not allowed:\n", ull);
496 show_option_values(o);
Jens Axboed926d532013-04-09 21:02:15 +0200497 return 1;
498 }
499 }
Jens Axboee1f36502006-10-27 10:54:08 +0200500
501 if (fn)
502 ret = fn(data, &ull);
503 else {
Jens Axboee01b22b2009-06-09 15:43:25 +0200504 if (o->type == FIO_OPT_INT) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700505 if (first)
506 val_store(ilp, ull, o->off1, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200507 if (curr == 1) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700508 if (o->off2)
509 val_store(ilp, ull, o->off2, 0, data, o);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100510 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200511 if (curr == 2) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700512 if (o->off3)
513 val_store(ilp, ull, o->off3, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200514 }
515 if (!more) {
516 if (curr < 1) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700517 if (o->off2)
518 val_store(ilp, ull, o->off2, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200519 }
520 if (curr < 2) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700521 if (o->off3)
522 val_store(ilp, ull, o->off3, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200523 }
524 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100525 } else {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700526 if (first)
527 val_store(ullp, ull, o->off1, 0, data, o);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100528 if (!more) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700529 if (o->off2)
530 val_store(ullp, ull, o->off2, 0, data, o);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100531 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100532 }
Jens Axboee1f36502006-10-27 10:54:08 +0200533 }
534 break;
535 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200536 case FIO_OPT_FLOAT_LIST: {
Jens Axboeeef02442013-02-06 08:51:57 +0100537 char *cp2;
538
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100539 if (first) {
540 /*
541 ** Initialize precision to 0 and zero out list
542 ** in case specified list is shorter than default
543 */
Jens Axboe3e260a42013-12-09 12:38:53 -0700544 if (o->off2) {
545 ul2 = 0;
Jens Axboef0fdbca2014-02-11 15:44:50 -0700546 ilp = td_var(data, o, o->off2);
Jens Axboe3e260a42013-12-09 12:38:53 -0700547 *ilp = ul2;
548 }
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100549
Jens Axboef0fdbca2014-02-11 15:44:50 -0700550 flp = td_var(data, o, o->off1);
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100551 for(i = 0; i < o->maxlen; i++)
552 flp[i].u.f = 0.0;
553 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200554 if (curr >= o->maxlen) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200555 log_err("the list exceeding max length %d\n",
Yu-ju Hong83349192011-08-13 00:53:44 +0200556 o->maxlen);
557 return 1;
558 }
Jens Axboe3c3ed072012-03-27 09:12:39 +0200559 if (!str_to_float(ptr, &uf)) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200560 log_err("not a floating point value: %s\n", ptr);
Yu-ju Hong83349192011-08-13 00:53:44 +0200561 return 1;
562 }
Jens Axboe26650692013-02-02 09:56:23 +0100563 if (uf > o->maxfp) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200564 log_err("value out of range: %f"
Yu-ju Hong83349192011-08-13 00:53:44 +0200565 " (range max: %f)\n", uf, o->maxfp);
566 return 1;
567 }
Jens Axboe26650692013-02-02 09:56:23 +0100568 if (uf < o->minfp) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200569 log_err("value out of range: %f"
Yu-ju Hong83349192011-08-13 00:53:44 +0200570 " (range min: %f)\n", uf, o->minfp);
571 return 1;
572 }
573
Jens Axboef0fdbca2014-02-11 15:44:50 -0700574 flp = td_var(data, o, o->off1);
Vincent Kang Fufd112d32013-02-02 09:28:55 +0100575 flp[curr].u.f = uf;
Yu-ju Hong83349192011-08-13 00:53:44 +0200576
Jens Axboeae3fcb52013-04-25 10:06:32 -0600577 dprint(FD_PARSE, " out=%f\n", uf);
578
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100579 /*
580 ** Calculate precision for output by counting
581 ** number of digits after period. Find first
582 ** period in entire remaining list each time
583 */
584 cp2 = strchr(ptr, '.');
585 if (cp2 != NULL) {
Jens Axboeeef02442013-02-06 08:51:57 +0100586 int len = 0;
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100587
588 while (*++cp2 != '\0' && *cp2 >= '0' && *cp2 <= '9')
589 len++;
590
Jens Axboe3e260a42013-12-09 12:38:53 -0700591 if (o->off2) {
Jens Axboef0fdbca2014-02-11 15:44:50 -0700592 ilp = td_var(data, o, o->off2);
Jens Axboe3e260a42013-12-09 12:38:53 -0700593 if (len > *ilp)
594 *ilp = len;
595 }
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100596 }
597
Yu-ju Hong83349192011-08-13 00:53:44 +0200598 break;
599 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100600 case FIO_OPT_STR_STORE: {
601 fio_opt_str_fn *fn = o->cb;
602
Jens Axboe7b504ed2014-02-11 14:19:38 -0700603 if (o->off1) {
Jens Axboef0fdbca2014-02-11 15:44:50 -0700604 cp = td_var(data, o, o->off1);
Steven Lang184b4092011-11-16 10:33:51 +0100605 *cp = strdup(ptr);
Jens Axboe1c964ce2011-08-31 16:45:03 -0600606 }
Jens Axboe02c6aad2010-03-04 13:49:11 +0100607
Steven Lang184b4092011-11-16 10:33:51 +0100608 if (fn)
609 ret = fn(data, ptr);
610 else if (o->posval[0].ival) {
611 posval_sort(o, posval);
Jens Axboec44b1ff2011-08-30 20:43:53 -0600612
Steven Lang184b4092011-11-16 10:33:51 +0100613 ret = 1;
614 for (i = 0; i < PARSE_MAX_VP; i++) {
615 vp = &posval[i];
616 if (!vp->ival || vp->ival[0] == '\0')
617 continue;
618 all_skipped = 0;
Jens Axboe119cd932012-12-06 17:34:57 +0100619 if (!strncmp(vp->ival, ptr, str_match_len(vp, ptr))) {
Steven Lang184b4092011-11-16 10:33:51 +0100620 char *rest;
621
622 ret = 0;
623 if (vp->cb)
624 fn = vp->cb;
625 rest = strstr(*cp ?: ptr, ":");
626 if (rest) {
627 if (*cp)
628 *rest = '\0';
629 ptr = rest + 1;
630 } else
631 ptr = NULL;
632 break;
633 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100634 }
635 }
Jens Axboec44b1ff2011-08-30 20:43:53 -0600636
Steven Lang184b4092011-11-16 10:33:51 +0100637 if (!all_skipped) {
638 if (ret && !*cp)
639 show_option_values(o);
640 else if (ret && *cp)
641 ret = 0;
642 else if (fn && ptr)
643 ret = fn(data, ptr);
644 }
Jens Axboec44b1ff2011-08-30 20:43:53 -0600645
Jens Axboee1f36502006-10-27 10:54:08 +0200646 break;
Jens Axboeaf52b342007-03-13 10:07:47 +0100647 }
Jens Axboee1f36502006-10-27 10:54:08 +0200648 case FIO_OPT_RANGE: {
Jens Axboeb765a372006-10-27 15:00:16 +0200649 char tmp[128];
Jens Axboee1f36502006-10-27 10:54:08 +0200650 char *p1, *p2;
651
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100652 strncpy(tmp, ptr, sizeof(tmp) - 1);
Jens Axboeb765a372006-10-27 15:00:16 +0200653
Dave Engberg31d23f42011-07-23 21:07:13 +0200654 /* Handle bsrange with separate read,write values: */
655 p1 = strchr(tmp, ',');
656 if (p1)
657 *p1 = '\0';
658
Jens Axboeb765a372006-10-27 15:00:16 +0200659 p1 = strchr(tmp, '-');
Jens Axboee1f36502006-10-27 10:54:08 +0200660 if (!p1) {
Jens Axboe0c9baf92007-01-11 15:59:26 +0100661 p1 = strchr(tmp, ':');
662 if (!p1) {
663 ret = 1;
664 break;
665 }
Jens Axboee1f36502006-10-27 10:54:08 +0200666 }
667
668 p2 = p1 + 1;
669 *p1 = '\0';
Jens Axboeb765a372006-10-27 15:00:16 +0200670 p1 = tmp;
Jens Axboee1f36502006-10-27 10:54:08 +0200671
672 ret = 1;
Jens Axboed6978a32009-07-18 21:04:09 +0200673 if (!check_range_bytes(p1, &ul1, data) &&
674 !check_range_bytes(p2, &ul2, data)) {
Jens Axboee1f36502006-10-27 10:54:08 +0200675 ret = 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200676 if (ul1 > ul2) {
Jens Axboef90eff52006-11-06 11:08:21 +0100677 unsigned long foo = ul1;
678
679 ul1 = ul2;
680 ul2 = foo;
681 }
682
683 if (first) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700684 val_store(ilp, ul1, o->off1, 0, data, o);
685 val_store(ilp, ul2, o->off2, 0, data, o);
Jens Axboee1f36502006-10-27 10:54:08 +0200686 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200687 if (curr == 1) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700688 if (o->off3 && o->off4) {
689 val_store(ilp, ul1, o->off3, 0, data, o);
690 val_store(ilp, ul2, o->off4, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200691 }
692 }
693 if (curr == 2) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700694 if (o->off5 && o->off6) {
695 val_store(ilp, ul1, o->off5, 0, data, o);
696 val_store(ilp, ul2, o->off6, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200697 }
698 }
699 if (!more) {
700 if (curr < 1) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700701 if (o->off3 && o->off4) {
702 val_store(ilp, ul1, o->off3, 0, data, o);
703 val_store(ilp, ul2, o->off4, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200704 }
705 }
706 if (curr < 2) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700707 if (o->off5 && o->off6) {
708 val_store(ilp, ul1, o->off5, 0, data, o);
709 val_store(ilp, ul2, o->off6, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200710 }
711 }
Jens Axboe17abbe82006-11-06 11:23:10 +0100712 }
713 }
714
Jens Axboee1f36502006-10-27 10:54:08 +0200715 break;
716 }
Jens Axboe74ba1802011-07-15 09:09:15 +0200717 case FIO_OPT_BOOL:
718 case FIO_OPT_STR_SET: {
Jens Axboee1f36502006-10-27 10:54:08 +0200719 fio_opt_int_fn *fn = o->cb;
720
Jens Axboe74ba1802011-07-15 09:09:15 +0200721 if (ptr)
722 ret = check_int(ptr, &il);
723 else if (o->type == FIO_OPT_BOOL)
724 ret = 1;
725 else
726 il = 1;
727
Jens Axboeae3fcb52013-04-25 10:06:32 -0600728 dprint(FD_PARSE, " ret=%d, out=%d\n", ret, il);
729
Jens Axboee1f36502006-10-27 10:54:08 +0200730 if (ret)
731 break;
732
Jens Axboedb8e0162007-01-10 13:41:26 +0100733 if (o->maxval && il > (int) o->maxval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200734 log_err("max value out of range: %d (%d max)\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100735 il, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100736 return 1;
737 }
738 if (o->minval && il < o->minval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200739 log_err("min value out of range: %d (%d min)\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100740 il, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100741 return 1;
742 }
Jens Axboee1f36502006-10-27 10:54:08 +0200743
Jens Axboe76a43db2007-01-11 13:24:44 +0100744 if (o->neg)
745 il = !il;
746
Jens Axboee1f36502006-10-27 10:54:08 +0200747 if (fn)
748 ret = fn(data, &il);
749 else {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700750 if (first)
751 val_store(ilp, il, o->off1, 0, data, o);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100752 if (!more) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700753 if (o->off2)
754 val_store(ilp, il, o->off2, 0, data, o);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100755 }
Jens Axboee1f36502006-10-27 10:54:08 +0200756 }
757 break;
758 }
Jens Axboe15ca1502008-04-07 09:26:02 +0200759 case FIO_OPT_DEPRECATED:
Jens Axboe06b0be62011-10-04 10:31:10 +0200760 log_info("Option %s is deprecated\n", o->name);
Jens Axboed9472272013-07-25 10:20:45 -0600761 ret = 1;
Jens Axboe15ca1502008-04-07 09:26:02 +0200762 break;
Jens Axboee1f36502006-10-27 10:54:08 +0200763 default:
Jens Axboe06b0be62011-10-04 10:31:10 +0200764 log_err("Bad option type %u\n", o->type);
Jens Axboee1f36502006-10-27 10:54:08 +0200765 ret = 1;
766 }
767
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200768 if (ret)
769 return ret;
770
Jens Axboed447a8c2009-07-17 22:26:15 +0200771 if (o->verify) {
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200772 ret = o->verify(o, data);
Jens Axboed447a8c2009-07-17 22:26:15 +0200773 if (ret) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200774 log_err("Correct format for offending option\n");
775 log_err("%20s: %s\n", o->name, o->help);
Jens Axboe06b0be62011-10-04 10:31:10 +0200776 show_option_help(o, 1);
Jens Axboed447a8c2009-07-17 22:26:15 +0200777 }
778 }
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200779
Jens Axboee1f36502006-10-27 10:54:08 +0200780 return ret;
781}
782
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200783static int handle_option(struct fio_option *o, const char *__ptr, void *data)
Jens Axboef90eff52006-11-06 11:08:21 +0100784{
Jens Axboeb62bdf22010-03-10 12:36:17 +0100785 char *o_ptr, *ptr, *ptr2;
786 int ret, done;
Jens Axboef90eff52006-11-06 11:08:21 +0100787
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200788 dprint(FD_PARSE, "handle_option=%s, ptr=%s\n", o->name, __ptr);
789
Jens Axboeb62bdf22010-03-10 12:36:17 +0100790 o_ptr = ptr = NULL;
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200791 if (__ptr)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100792 o_ptr = ptr = strdup(__ptr);
Jens Axboea3d741f2008-02-27 18:32:33 +0100793
Jens Axboef90eff52006-11-06 11:08:21 +0100794 /*
Jens Axboeb62bdf22010-03-10 12:36:17 +0100795 * See if we have another set of parameters, hidden after a comma.
796 * Do this before parsing this round, to check if we should
Jens Axboe787f7e92006-11-06 13:26:29 +0100797 * copy set 1 options to set 2.
Jens Axboef90eff52006-11-06 11:08:21 +0100798 */
Jens Axboeb62bdf22010-03-10 12:36:17 +0100799 done = 0;
800 ret = 1;
801 do {
802 int __ret;
803
804 ptr2 = NULL;
805 if (ptr &&
806 (o->type != FIO_OPT_STR_STORE) &&
Yu-ju Hong83349192011-08-13 00:53:44 +0200807 (o->type != FIO_OPT_STR) &&
808 (o->type != FIO_OPT_FLOAT_LIST)) {
Jens Axboeb62bdf22010-03-10 12:36:17 +0100809 ptr2 = strchr(ptr, ',');
810 if (ptr2 && *(ptr2 + 1) == '\0')
811 *ptr2 = '\0';
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200812 if (o->type != FIO_OPT_STR_MULTI && o->type != FIO_OPT_RANGE) {
Jens Axboeb62bdf22010-03-10 12:36:17 +0100813 if (!ptr2)
814 ptr2 = strchr(ptr, ':');
815 if (!ptr2)
816 ptr2 = strchr(ptr, '-');
817 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200818 } else if (ptr && o->type == FIO_OPT_FLOAT_LIST) {
819 ptr2 = strchr(ptr, ':');
Jens Axboeb62bdf22010-03-10 12:36:17 +0100820 }
821
822 /*
823 * Don't return early if parsing the first option fails - if
824 * we are doing multiple arguments, we can allow the first one
825 * being empty.
826 */
Yu-ju Hong83349192011-08-13 00:53:44 +0200827 __ret = __handle_option(o, ptr, data, !done, !!ptr2, done);
Jens Axboeb62bdf22010-03-10 12:36:17 +0100828 if (ret)
829 ret = __ret;
830
Jens Axboe0c9baf92007-01-11 15:59:26 +0100831 if (!ptr2)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100832 break;
Jens Axboe787f7e92006-11-06 13:26:29 +0100833
Jens Axboeb62bdf22010-03-10 12:36:17 +0100834 ptr = ptr2 + 1;
835 done++;
836 } while (1);
Jens Axboe787f7e92006-11-06 13:26:29 +0100837
Jens Axboeb62bdf22010-03-10 12:36:17 +0100838 if (o_ptr)
839 free(o_ptr);
840 return ret;
Jens Axboef90eff52006-11-06 11:08:21 +0100841}
842
Steven Langde890a12011-11-09 14:03:34 +0100843static struct fio_option *get_option(char *opt,
Jens Axboe07b32322010-03-05 09:48:44 +0100844 struct fio_option *options, char **post)
Jens Axboe3b8b7132008-06-10 19:46:23 +0200845{
846 struct fio_option *o;
847 char *ret;
848
849 ret = strchr(opt, '=');
850 if (ret) {
851 *post = ret;
852 *ret = '\0';
Steven Langde890a12011-11-09 14:03:34 +0100853 ret = opt;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200854 (*post)++;
Jens Axboe43c129b2008-12-08 14:06:42 +0100855 strip_blank_end(ret);
Jens Axboe07b32322010-03-05 09:48:44 +0100856 o = find_option(options, ret);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200857 } else {
Jens Axboe07b32322010-03-05 09:48:44 +0100858 o = find_option(options, opt);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200859 *post = NULL;
860 }
861
862 return o;
863}
864
865static int opt_cmp(const void *p1, const void *p2)
866{
Steven Langde890a12011-11-09 14:03:34 +0100867 struct fio_option *o;
868 char *s, *foo;
Jens Axboe8cdabc12008-11-19 12:31:43 +0100869 int prio1, prio2;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200870
Jens Axboe8cdabc12008-11-19 12:31:43 +0100871 prio1 = prio2 = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200872
Steven Langde890a12011-11-09 14:03:34 +0100873 if (*(char **)p1) {
874 s = strdup(*((char **) p1));
Jens Axboe9af4a242012-03-16 10:13:49 +0100875 o = get_option(s, __fio_options, &foo);
Steven Langde890a12011-11-09 14:03:34 +0100876 if (o)
877 prio1 = o->prio;
878 free(s);
879 }
880 if (*(char **)p2) {
881 s = strdup(*((char **) p2));
Jens Axboe9af4a242012-03-16 10:13:49 +0100882 o = get_option(s, __fio_options, &foo);
Steven Langde890a12011-11-09 14:03:34 +0100883 if (o)
884 prio2 = o->prio;
885 free(s);
886 }
887
Jens Axboe8cdabc12008-11-19 12:31:43 +0100888 return prio2 - prio1;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200889}
890
891void sort_options(char **opts, struct fio_option *options, int num_opts)
892{
Jens Axboe9af4a242012-03-16 10:13:49 +0100893 __fio_options = options;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200894 qsort(opts, num_opts, sizeof(char *), opt_cmp);
Jens Axboe9af4a242012-03-16 10:13:49 +0100895 __fio_options = NULL;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200896}
897
Jens Axboeb4692822006-10-27 13:43:22 +0200898int parse_cmd_option(const char *opt, const char *val,
Jens Axboe07b32322010-03-05 09:48:44 +0100899 struct fio_option *options, void *data)
Jens Axboeb4692822006-10-27 13:43:22 +0200900{
901 struct fio_option *o;
902
Jens Axboe07b32322010-03-05 09:48:44 +0100903 o = find_option(options, opt);
Jens Axboeb4692822006-10-27 13:43:22 +0200904 if (!o) {
Jens Axboe06b0be62011-10-04 10:31:10 +0200905 log_err("Bad option <%s>\n", opt);
Jens Axboeb4692822006-10-27 13:43:22 +0200906 return 1;
907 }
908
Jens Axboeb1508cf2006-11-02 09:12:40 +0100909 if (!handle_option(o, val, data))
910 return 0;
911
Jens Axboe06b0be62011-10-04 10:31:10 +0200912 log_err("fio: failed parsing %s=%s\n", opt, val);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100913 return 1;
Jens Axboeb4692822006-10-27 13:43:22 +0200914}
915
Steven Langde890a12011-11-09 14:03:34 +0100916int parse_option(char *opt, const char *input,
Jens Axboe292cc472013-11-26 20:39:35 -0700917 struct fio_option *options, struct fio_option **o, void *data,
918 int dump_cmdline)
Jens Axboee1f36502006-10-27 10:54:08 +0200919{
Steven Langd0c814e2011-10-28 08:37:13 +0200920 char *post;
Jens Axboee1f36502006-10-27 10:54:08 +0200921
Steven Langd0c814e2011-10-28 08:37:13 +0200922 if (!opt) {
923 log_err("fio: failed parsing %s\n", input);
Steven Langde890a12011-11-09 14:03:34 +0100924 *o = NULL;
Jens Axboe38789b52010-03-03 09:23:20 +0100925 return 1;
Steven Langd0c814e2011-10-28 08:37:13 +0200926 }
Jens Axboee1f36502006-10-27 10:54:08 +0200927
Steven Langde890a12011-11-09 14:03:34 +0100928 *o = get_option(opt, options, &post);
929 if (!*o) {
930 if (post) {
931 int len = strlen(opt);
932 if (opt + len + 1 != post)
933 memmove(opt + len + 1, post, strlen(post));
934 opt[len] = '=';
935 }
Jens Axboee1f36502006-10-27 10:54:08 +0200936 return 1;
937 }
938
Jens Axboe292cc472013-11-26 20:39:35 -0700939 if (handle_option(*o, post, data)) {
940 log_err("fio: failed parsing %s\n", input);
941 return 1;
942 }
Jens Axboeb1508cf2006-11-02 09:12:40 +0100943
Jens Axboe292cc472013-11-26 20:39:35 -0700944 if (dump_cmdline) {
945 const char *delim;
946
947 if (!strcmp("description", (*o)->name))
948 delim = "\"";
949 else
950 delim = "";
951
952 log_info("--%s%s", (*o)->name, post ? "" : " ");
953 if (post)
954 log_info("=%s%s%s ", delim, post, delim);
955 }
956
957 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200958}
Jens Axboefd28ca42007-01-09 21:20:13 +0100959
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100960/*
961 * Option match, levenshtein distance. Handy for not quite remembering what
962 * the option name is.
963 */
964static int string_distance(const char *s1, const char *s2)
965{
966 unsigned int s1_len = strlen(s1);
967 unsigned int s2_len = strlen(s2);
968 unsigned int *p, *q, *r;
969 unsigned int i, j;
970
971 p = malloc(sizeof(unsigned int) * (s2_len + 1));
972 q = malloc(sizeof(unsigned int) * (s2_len + 1));
973
974 p[0] = 0;
975 for (i = 1; i <= s2_len; i++)
976 p[i] = p[i - 1] + 1;
977
978 for (i = 1; i <= s1_len; i++) {
979 q[0] = p[0] + 1;
980 for (j = 1; j <= s2_len; j++) {
981 unsigned int sub = p[j - 1];
982
983 if (s1[i - 1] != s2[j - 1])
984 sub++;
985
986 q[j] = min(p[j] + 1, min(q[j - 1] + 1, sub));
987 }
988 r = p;
989 p = q;
990 q = r;
991 }
992
993 i = p[s2_len];
994 free(p);
995 free(q);
996 return i;
997}
998
Jens Axboeafdf9352007-07-31 16:14:34 +0200999static struct fio_option *find_child(struct fio_option *options,
1000 struct fio_option *o)
1001{
1002 struct fio_option *__o;
1003
Jens Axboefdf28742007-07-31 23:06:09 +02001004 for (__o = options + 1; __o->name; __o++)
1005 if (__o->parent && !strcmp(__o->parent, o->name))
Jens Axboeafdf9352007-07-31 16:14:34 +02001006 return __o;
1007
1008 return NULL;
1009}
1010
Jens Axboe323d9112008-03-01 15:12:14 +01001011static void __print_option(struct fio_option *o, struct fio_option *org,
1012 int level)
Jens Axboeafdf9352007-07-31 16:14:34 +02001013{
1014 char name[256], *p;
Jens Axboe323d9112008-03-01 15:12:14 +01001015 int depth;
Jens Axboeafdf9352007-07-31 16:14:34 +02001016
1017 if (!o)
1018 return;
Jens Axboeef9aff52007-07-31 22:56:53 +02001019 if (!org)
1020 org = o;
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001021
Jens Axboeafdf9352007-07-31 16:14:34 +02001022 p = name;
Jens Axboe323d9112008-03-01 15:12:14 +01001023 depth = level;
1024 while (depth--)
1025 p += sprintf(p, "%s", " ");
Jens Axboeafdf9352007-07-31 16:14:34 +02001026
1027 sprintf(p, "%s", o->name);
1028
Jens Axboe28d7c362011-10-05 20:30:24 +02001029 log_info("%-24s: %s\n", name, o->help);
Jens Axboe323d9112008-03-01 15:12:14 +01001030}
1031
1032static void print_option(struct fio_option *o)
1033{
1034 struct fio_option *parent;
1035 struct fio_option *__o;
1036 unsigned int printed;
1037 unsigned int level;
1038
1039 __print_option(o, NULL, 0);
1040 parent = o;
1041 level = 0;
1042 do {
1043 level++;
1044 printed = 0;
1045
1046 while ((__o = find_child(o, parent)) != NULL) {
1047 __print_option(__o, o, level);
1048 o = __o;
1049 printed++;
1050 }
1051
1052 parent = o;
1053 } while (printed);
Jens Axboeafdf9352007-07-31 16:14:34 +02001054}
1055
Jens Axboe07b32322010-03-05 09:48:44 +01001056int show_cmd_help(struct fio_option *options, const char *name)
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001057{
1058 struct fio_option *o, *closest;
Jens Axboed091d092010-04-01 19:56:23 +02001059 unsigned int best_dist = -1U;
Jens Axboe29fc6af2007-01-09 21:22:02 +01001060 int found = 0;
Jens Axboe320beef2007-03-01 10:44:12 +01001061 int show_all = 0;
1062
1063 if (!name || !strcmp(name, "all"))
1064 show_all = 1;
Jens Axboefd28ca42007-01-09 21:20:13 +01001065
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001066 closest = NULL;
1067 best_dist = -1;
Jens Axboe4945ba12007-01-11 14:36:56 +01001068 for (o = &options[0]; o->name; o++) {
Jens Axboe320beef2007-03-01 10:44:12 +01001069 int match = 0;
1070
Jens Axboe15ca1502008-04-07 09:26:02 +02001071 if (o->type == FIO_OPT_DEPRECATED)
1072 continue;
Jens Axboe07b32322010-03-05 09:48:44 +01001073 if (!exec_profile && o->prof_name)
1074 continue;
Jens Axboe4ac23d22013-05-23 21:14:03 +02001075 if (exec_profile && !(o->prof_name && !strcmp(exec_profile, o->prof_name)))
1076 continue;
Jens Axboe15ca1502008-04-07 09:26:02 +02001077
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001078 if (name) {
Jens Axboe7f9348f2007-03-15 14:09:28 +01001079 if (!strcmp(name, o->name) ||
1080 (o->alias && !strcmp(name, o->alias)))
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001081 match = 1;
1082 else {
1083 unsigned int dist;
1084
1085 dist = string_distance(name, o->name);
1086 if (dist < best_dist) {
1087 best_dist = dist;
1088 closest = o;
1089 }
1090 }
1091 }
Jens Axboefd28ca42007-01-09 21:20:13 +01001092
1093 if (show_all || match) {
Jens Axboe29fc6af2007-01-09 21:22:02 +01001094 found = 1;
Jens Axboec167ded2007-03-14 13:02:53 +01001095 if (match)
Jens Axboe28d7c362011-10-05 20:30:24 +02001096 log_info("%20s: %s\n", o->name, o->help);
Jens Axboec167ded2007-03-14 13:02:53 +01001097 if (show_all) {
Jens Axboeafdf9352007-07-31 16:14:34 +02001098 if (!o->parent)
Jens Axboe323d9112008-03-01 15:12:14 +01001099 print_option(o);
Jens Axboe4945ba12007-01-11 14:36:56 +01001100 continue;
Jens Axboec167ded2007-03-14 13:02:53 +01001101 }
Jens Axboefd28ca42007-01-09 21:20:13 +01001102 }
1103
Jens Axboe70df2f12007-01-11 14:04:47 +01001104 if (!match)
1105 continue;
1106
Jens Axboe06b0be62011-10-04 10:31:10 +02001107 show_option_help(o, 0);
Jens Axboefd28ca42007-01-09 21:20:13 +01001108 }
1109
Jens Axboe29fc6af2007-01-09 21:22:02 +01001110 if (found)
1111 return 0;
Jens Axboefd28ca42007-01-09 21:20:13 +01001112
Jens Axboe28d7c362011-10-05 20:30:24 +02001113 log_err("No such command: %s", name);
Jens Axboed091d092010-04-01 19:56:23 +02001114
1115 /*
1116 * Only print an appropriately close option, one where the edit
1117 * distance isn't too big. Otherwise we get crazy matches.
1118 */
1119 if (closest && best_dist < 3) {
Jens Axboe28d7c362011-10-05 20:30:24 +02001120 log_info(" - showing closest match\n");
1121 log_info("%20s: %s\n", closest->name, closest->help);
Jens Axboe06b0be62011-10-04 10:31:10 +02001122 show_option_help(closest, 0);
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001123 } else
Jens Axboe28d7c362011-10-05 20:30:24 +02001124 log_info("\n");
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001125
Jens Axboe29fc6af2007-01-09 21:22:02 +01001126 return 1;
Jens Axboefd28ca42007-01-09 21:20:13 +01001127}
Jens Axboeee738492007-01-10 11:23:16 +01001128
Jens Axboe13335dd2007-01-10 13:14:02 +01001129/*
1130 * Handle parsing of default parameters.
1131 */
Jens Axboeee738492007-01-10 11:23:16 +01001132void fill_default_options(void *data, struct fio_option *options)
1133{
Jens Axboe4945ba12007-01-11 14:36:56 +01001134 struct fio_option *o;
Jens Axboeee738492007-01-10 11:23:16 +01001135
Jens Axboea3d741f2008-02-27 18:32:33 +01001136 dprint(FD_PARSE, "filling default options\n");
1137
Jens Axboe4945ba12007-01-11 14:36:56 +01001138 for (o = &options[0]; o->name; o++)
Jens Axboeee738492007-01-10 11:23:16 +01001139 if (o->def)
1140 handle_option(o, o->def, data);
Jens Axboeee738492007-01-10 11:23:16 +01001141}
Jens Axboe13335dd2007-01-10 13:14:02 +01001142
Jens Axboe9f988e22010-03-04 10:42:38 +01001143void option_init(struct fio_option *o)
1144{
1145 if (o->type == FIO_OPT_DEPRECATED)
1146 return;
1147 if (o->type == FIO_OPT_BOOL) {
1148 o->minval = 0;
1149 o->maxval = 1;
1150 }
Jens Axboed4fc2f02012-09-24 14:32:26 +02001151 if (o->type == FIO_OPT_INT) {
1152 if (!o->maxval)
1153 o->maxval = UINT_MAX;
1154 }
Yu-ju Hong83349192011-08-13 00:53:44 +02001155 if (o->type == FIO_OPT_FLOAT_LIST) {
Bruce Cranab9461e2013-02-02 14:31:24 +00001156 o->minfp = DBL_MIN;
1157 o->maxfp = DBL_MAX;
Yu-ju Hong83349192011-08-13 00:53:44 +02001158 }
Jens Axboe9f988e22010-03-04 10:42:38 +01001159 if (o->type == FIO_OPT_STR_SET && o->def) {
Jens Axboe06b0be62011-10-04 10:31:10 +02001160 log_err("Option %s: string set option with"
Jens Axboe9f988e22010-03-04 10:42:38 +01001161 " default will always be true\n", o->name);
1162 }
Jens Axboe7b504ed2014-02-11 14:19:38 -07001163 if (!o->cb && !o->off1)
Jens Axboe06b0be62011-10-04 10:31:10 +02001164 log_err("Option %s: neither cb nor offset given\n", o->name);
Jens Axboe22754742013-04-10 13:05:23 +02001165 if (!o->category) {
Jens Axboecca5b5b2013-04-10 19:35:25 +02001166 log_info("Option %s: no category defined. Setting to misc\n", o->name);
Jens Axboe22754742013-04-10 13:05:23 +02001167 o->category = FIO_OPT_C_GENERAL;
Jens Axboeffd78212013-04-10 13:07:43 +02001168 o->group = FIO_OPT_G_INVALID;
Jens Axboe22754742013-04-10 13:05:23 +02001169 }
Jens Axboe5f6ddf12010-03-09 20:40:44 +01001170 if (o->type == FIO_OPT_STR || o->type == FIO_OPT_STR_STORE ||
1171 o->type == FIO_OPT_STR_MULTI)
Jens Axboe9f988e22010-03-04 10:42:38 +01001172 return;
Jens Axboe7b504ed2014-02-11 14:19:38 -07001173 if (o->cb && (o->off1 || o->off2 || o->off3 || o->off4))
Jens Axboe06b0be62011-10-04 10:31:10 +02001174 log_err("Option %s: both cb and offset given\n", o->name);
Jens Axboe9f988e22010-03-04 10:42:38 +01001175}
1176
Jens Axboe13335dd2007-01-10 13:14:02 +01001177/*
1178 * Sanitize the options structure. For now it just sets min/max for bool
Jens Axboe5b0a8882007-01-11 14:40:27 +01001179 * values and whether both callback and offsets are given.
Jens Axboe13335dd2007-01-10 13:14:02 +01001180 */
1181void options_init(struct fio_option *options)
1182{
Jens Axboe4945ba12007-01-11 14:36:56 +01001183 struct fio_option *o;
Jens Axboe13335dd2007-01-10 13:14:02 +01001184
Jens Axboea3d741f2008-02-27 18:32:33 +01001185 dprint(FD_PARSE, "init options\n");
1186
Jens Axboe90265352012-03-19 20:29:44 +01001187 for (o = &options[0]; o->name; o++) {
Jens Axboe9f988e22010-03-04 10:42:38 +01001188 option_init(o);
Jens Axboe90265352012-03-19 20:29:44 +01001189 if (o->inverse)
1190 o->inv_opt = find_option(options, o->inverse);
1191 }
Jens Axboe13335dd2007-01-10 13:14:02 +01001192}
Jens Axboe7e356b22011-10-14 10:55:16 +02001193
1194void options_free(struct fio_option *options, void *data)
1195{
1196 struct fio_option *o;
1197 char **ptr;
1198
1199 dprint(FD_PARSE, "free options\n");
1200
1201 for (o = &options[0]; o->name; o++) {
Steven Langde890a12011-11-09 14:03:34 +01001202 if (o->type != FIO_OPT_STR_STORE || !o->off1)
Jens Axboe7e356b22011-10-14 10:55:16 +02001203 continue;
1204
Jens Axboef0fdbca2014-02-11 15:44:50 -07001205 ptr = td_var(data, o, o->off1);
Jens Axboe7e356b22011-10-14 10:55:16 +02001206 if (*ptr) {
1207 free(*ptr);
1208 *ptr = NULL;
1209 }
1210 }
1211}