blob: 9e31908aebf41bf17ba69fbcfb68947839099cd7 [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
Stephen M. Cameron88b635b2014-09-29 12:10:49 -060021#ifdef CONFIG_ARITHMETIC
22#include "y.tab.h"
23#endif
24
Jens Axboe9af4a242012-03-16 10:13:49 +010025static struct fio_option *__fio_options;
Jens Axboe3b8b7132008-06-10 19:46:23 +020026
Jens Axboef0857372007-03-19 13:15:23 +010027static int vp_cmp(const void *p1, const void *p2)
28{
29 const struct value_pair *vp1 = p1;
30 const struct value_pair *vp2 = p2;
31
32 return strlen(vp2->ival) - strlen(vp1->ival);
33}
34
Jens Axboece952ab2011-08-31 14:29:22 -060035static void posval_sort(struct fio_option *o, struct value_pair *vpmap)
Jens Axboef0857372007-03-19 13:15:23 +010036{
37 const struct value_pair *vp;
38 int entries;
39
40 memset(vpmap, 0, PARSE_MAX_VP * sizeof(struct value_pair));
41
42 for (entries = 0; entries < PARSE_MAX_VP; entries++) {
43 vp = &o->posval[entries];
44 if (!vp->ival || vp->ival[0] == '\0')
45 break;
46
47 memcpy(&vpmap[entries], vp, sizeof(*vp));
48 }
49
50 qsort(vpmap, entries, sizeof(struct value_pair), vp_cmp);
51}
52
Jens Axboe06b0be62011-10-04 10:31:10 +020053static void show_option_range(struct fio_option *o,
54 int (*logger)(const char *format, ...))
Jens Axboeb1ec1da2007-02-23 10:29:16 +010055{
Jens Axboe3c037bc2013-04-10 11:21:33 +020056 if (o->type == FIO_OPT_FLOAT_LIST) {
Bruce Cranab9461e2013-02-02 14:31:24 +000057 if (o->minfp == DBL_MIN && o->maxfp == DBL_MAX)
Yu-ju Hong83349192011-08-13 00:53:44 +020058 return;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010059
Jens Axboe06b0be62011-10-04 10:31:10 +020060 logger("%20s: min=%f", "range", o->minfp);
Bruce Cranab9461e2013-02-02 14:31:24 +000061 if (o->maxfp != DBL_MAX)
Jens Axboe06b0be62011-10-04 10:31:10 +020062 logger(", max=%f", o->maxfp);
63 logger("\n");
Jens Axboe3c037bc2013-04-10 11:21:33 +020064 } else if (!o->posval[0].ival) {
Yu-ju Hong83349192011-08-13 00:53:44 +020065 if (!o->minval && !o->maxval)
66 return;
67
Jens Axboe06b0be62011-10-04 10:31:10 +020068 logger("%20s: min=%d", "range", o->minval);
Yu-ju Hong83349192011-08-13 00:53:44 +020069 if (o->maxval)
Jens Axboe06b0be62011-10-04 10:31:10 +020070 logger(", max=%d", o->maxval);
71 logger("\n");
Yu-ju Hong83349192011-08-13 00:53:44 +020072 }
Jens Axboeb1ec1da2007-02-23 10:29:16 +010073}
74
75static void show_option_values(struct fio_option *o)
76{
Jens Axboea3073f42010-03-05 10:06:15 +010077 int i;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010078
Jens Axboea3073f42010-03-05 10:06:15 +010079 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboe78372132007-03-14 13:24:07 +010080 const struct value_pair *vp = &o->posval[i];
81
82 if (!vp->ival)
Jens Axboea3073f42010-03-05 10:06:15 +010083 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010084
Jens Axboe06b0be62011-10-04 10:31:10 +020085 log_info("%20s: %-10s", i == 0 ? "valid values" : "", vp->ival);
Jens Axboe78372132007-03-14 13:24:07 +010086 if (vp->help)
Jens Axboe06b0be62011-10-04 10:31:10 +020087 log_info(" %s", vp->help);
88 log_info("\n");
Jens Axboea3073f42010-03-05 10:06:15 +010089 }
Jens Axboeb1ec1da2007-02-23 10:29:16 +010090
91 if (i)
Jens Axboe06b0be62011-10-04 10:31:10 +020092 log_info("\n");
Jens Axboeb1ec1da2007-02-23 10:29:16 +010093}
94
Jens Axboe06b0be62011-10-04 10:31:10 +020095static void show_option_help(struct fio_option *o, int is_err)
Jens Axboed447a8c2009-07-17 22:26:15 +020096{
97 const char *typehelp[] = {
Jens Axboe07b32322010-03-05 09:48:44 +010098 "invalid",
Jens Axboed447a8c2009-07-17 22:26:15 +020099 "string (opt=bla)",
Jens Axboeae3fb6f2010-09-14 13:10:35 +0200100 "string (opt=bla)",
Jens Axboed447a8c2009-07-17 22:26:15 +0200101 "string with possible k/m/g postfix (opt=4k)",
102 "string with time postfix (opt=10s)",
103 "string (opt=bla)",
104 "string with dual range (opt=1k-4k,4k-8k)",
105 "integer value (opt=100)",
106 "boolean value (opt=1)",
Yu-ju Hong83349192011-08-13 00:53:44 +0200107 "list of floating point values separated by ':' (opt=5.9:7.8)",
Jens Axboed447a8c2009-07-17 22:26:15 +0200108 "no argument (opt)",
Jens Axboe07b32322010-03-05 09:48:44 +0100109 "deprecated",
Jens Axboed447a8c2009-07-17 22:26:15 +0200110 };
Jens Axboe06b0be62011-10-04 10:31:10 +0200111 int (*logger)(const char *format, ...);
112
113 if (is_err)
114 logger = log_err;
115 else
116 logger = log_info;
Jens Axboed447a8c2009-07-17 22:26:15 +0200117
118 if (o->alias)
Jens Axboe06b0be62011-10-04 10:31:10 +0200119 logger("%20s: %s\n", "alias", o->alias);
Jens Axboed447a8c2009-07-17 22:26:15 +0200120
Jens Axboe06b0be62011-10-04 10:31:10 +0200121 logger("%20s: %s\n", "type", typehelp[o->type]);
122 logger("%20s: %s\n", "default", o->def ? o->def : "no default");
Jens Axboe07b32322010-03-05 09:48:44 +0100123 if (o->prof_name)
Jens Axboe06b0be62011-10-04 10:31:10 +0200124 logger("%20s: only for profile '%s'\n", "valid", o->prof_name);
125 show_option_range(o, logger);
Jens Axboed447a8c2009-07-17 22:26:15 +0200126 show_option_values(o);
127}
128
Jens Axboe0de5b262014-02-21 15:26:01 -0800129static unsigned long long get_mult_time(const char *str, int len,
130 int is_seconds)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200131{
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100132 const char *p = str;
133 char *c;
Jens Axboee4668262014-02-21 11:50:09 -0800134 unsigned long long mult = 1;
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100135
136 /*
137 * Go forward until we hit a non-digit, or +/- sign
138 */
139 while ((p - str) <= len) {
140 if (!isdigit((int) *p) && (*p != '+') && (*p != '-'))
141 break;
142 p++;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200143 }
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100144
Jens Axboe0de5b262014-02-21 15:26:01 -0800145 if (!isalpha((int) *p)) {
146 if (is_seconds)
147 return 1000000UL;
148 else
149 return 1;
150 }
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100151
152 c = strdup(p);
153 for (int i = 0; i < strlen(c); i++)
154 c[i] = tolower(c[i]);
155
Jens Axboee4668262014-02-21 11:50:09 -0800156 if (!strncmp("us", c, 2) || !strncmp("usec", c, 4))
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100157 mult = 1;
Jens Axboee4668262014-02-21 11:50:09 -0800158 else if (!strncmp("ms", c, 2) || !strncmp("msec", c, 4))
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100159 mult = 1000;
Jens Axboee4668262014-02-21 11:50:09 -0800160 else if (!strcmp("s", c))
161 mult = 1000000;
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100162 else if (!strcmp("m", c))
Jens Axboee4668262014-02-21 11:50:09 -0800163 mult = 60 * 1000000UL;
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100164 else if (!strcmp("h", c))
Jens Axboee4668262014-02-21 11:50:09 -0800165 mult = 60 * 60 * 1000000UL;
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100166 else if (!strcmp("d", c))
Jens Axboee4668262014-02-21 11:50:09 -0800167 mult = 24 * 60 * 60 * 1000000UL;
Christian Ehrhardt74454ce2014-02-20 14:20:01 +0100168
169 free(c);
170 return mult;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200171}
172
Jens Axboea03fb652013-03-29 12:20:51 -0600173static int is_separator(char c)
174{
175 switch (c) {
176 case ':':
177 case '-':
178 case ',':
179 case '/':
180 return 1;
181 default:
182 return 0;
183 }
184}
185
Jens Axboe7bb59102011-07-12 19:47:03 +0200186static unsigned long long __get_mult_bytes(const char *p, void *data,
187 int *percent)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200188{
Jens Axboed6978a32009-07-18 21:04:09 +0200189 unsigned int kb_base = fio_get_kb_base(data);
Jens Axboea639f0b2009-07-18 08:25:35 +0200190 unsigned long long ret = 1;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200191 unsigned int i, pow = 0, mult = kb_base;
192 char *c;
Jens Axboea639f0b2009-07-18 08:25:35 +0200193
Jens Axboe57fc29f2010-06-23 22:24:07 +0200194 if (!p)
195 return 1;
Jens Axboea639f0b2009-07-18 08:25:35 +0200196
Jens Axboe57fc29f2010-06-23 22:24:07 +0200197 c = strdup(p);
198
Jens Axboea03fb652013-03-29 12:20:51 -0600199 for (i = 0; i < strlen(c); i++) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200200 c[i] = tolower(c[i]);
Jens Axboea03fb652013-03-29 12:20:51 -0600201 if (is_separator(c[i])) {
202 c[i] = '\0';
203 break;
204 }
205 }
Jens Axboe57fc29f2010-06-23 22:24:07 +0200206
Jens Axboea04f1582012-03-07 10:53:29 +0100207 if (!strncmp("pib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200208 pow = 5;
209 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100210 } else if (!strncmp("tib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200211 pow = 4;
212 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100213 } else if (!strncmp("gib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200214 pow = 3;
215 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100216 } else if (!strncmp("mib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200217 pow = 2;
218 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100219 } else if (!strncmp("kib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200220 pow = 1;
221 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100222 } else if (!strncmp("p", c, 1) || !strncmp("pb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200223 pow = 5;
Jens Axboea04f1582012-03-07 10:53:29 +0100224 else if (!strncmp("t", c, 1) || !strncmp("tb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200225 pow = 4;
Jens Axboea04f1582012-03-07 10:53:29 +0100226 else if (!strncmp("g", c, 1) || !strncmp("gb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200227 pow = 3;
Jens Axboea04f1582012-03-07 10:53:29 +0100228 else if (!strncmp("m", c, 1) || !strncmp("mb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200229 pow = 2;
Jens Axboea04f1582012-03-07 10:53:29 +0100230 else if (!strncmp("k", c, 1) || !strncmp("kb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200231 pow = 1;
Jens Axboea04f1582012-03-07 10:53:29 +0100232 else if (!strncmp("%", c, 1)) {
Jens Axboe7bb59102011-07-12 19:47:03 +0200233 *percent = 1;
Jens Axboee721c572012-02-09 20:55:29 +0100234 free(c);
Jens Axboe7bb59102011-07-12 19:47:03 +0200235 return ret;
236 }
Jens Axboe57fc29f2010-06-23 22:24:07 +0200237
238 while (pow--)
239 ret *= (unsigned long long) mult;
240
241 free(c);
Jens Axboea639f0b2009-07-18 08:25:35 +0200242 return ret;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200243}
244
Jens Axboe7bb59102011-07-12 19:47:03 +0200245static unsigned long long get_mult_bytes(const char *str, int len, void *data,
Jens Axboe6925dd32011-09-07 22:10:11 +0200246 int *percent)
Jens Axboe57fc29f2010-06-23 22:24:07 +0200247{
Jens Axboe55ed9632011-03-27 20:55:09 +0200248 const char *p = str;
Jens Axboeba4ddd62011-09-07 22:11:00 +0200249 int digit_seen = 0;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200250
Jens Axboe1d1c1872010-07-29 10:50:05 +0200251 if (len < 2)
Jens Axboe7bb59102011-07-12 19:47:03 +0200252 return __get_mult_bytes(str, data, percent);
Jens Axboe1d1c1872010-07-29 10:50:05 +0200253
Steven Langd0c814e2011-10-28 08:37:13 +0200254 /*
255 * Go forward until we hit a non-digit, or +/- sign
256 */
Jens Axboe55ed9632011-03-27 20:55:09 +0200257 while ((p - str) <= len) {
Jens Axboeba4ddd62011-09-07 22:11:00 +0200258 if (!isdigit((int) *p) &&
259 (((*p != '+') && (*p != '-')) || digit_seen))
Jens Axboe55ed9632011-03-27 20:55:09 +0200260 break;
Jens Axboe3c703d12011-09-21 09:27:24 +0200261 digit_seen |= isdigit((int) *p);
Jens Axboe55ed9632011-03-27 20:55:09 +0200262 p++;
263 }
264
Jens Axboe7bb59102011-07-12 19:47:03 +0200265 if (!isalpha((int) *p) && (*p != '%'))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200266 p = NULL;
267
Jens Axboe7bb59102011-07-12 19:47:03 +0200268 return __get_mult_bytes(p, data, percent);
Jens Axboe57fc29f2010-06-23 22:24:07 +0200269}
270
Stephen M. Cameron88b635b2014-09-29 12:10:49 -0600271extern int evaluate_arithmetic_expression(const char *buffer, long long *ival,
Stephen M. Cameron64c9d602014-09-30 10:32:28 -0500272 double *dval, double implied_units);
Stephen M. Cameron88b635b2014-09-29 12:10:49 -0600273
Stephen M. Cameron21bda792014-09-30 08:29:33 -0500274#ifdef CONFIG_ARITHMETIC
275/*
276 * These two verification functions are just to gain confidence that
277 * the arithmetic processing code is always getting the same answer as the
278 * original number parsing code. Once sufficiently sure that the arithmetic
279 * code is always getting the right answers, these can be removed.
280 */
Stephen M. Cameron64c9d602014-09-30 10:32:28 -0500281static void verify_exp_parser_float(const char *str, double implied_units)
Stephen M. Cameron21bda792014-09-30 08:29:33 -0500282{
283 long long ival;
284 double dval, tmpval;
285
286 if (sscanf(str, "%lf", &tmpval) != 1)
287 return;
288
Stephen M. Cameron64c9d602014-09-30 10:32:28 -0500289 if (evaluate_arithmetic_expression(str, &ival, &dval, implied_units) != 0) {
Stephen M. Cameron21bda792014-09-30 08:29:33 -0500290 log_info("Arithmetic failed on '%s'\n", str);
291 return;
292 }
293 if (dval != tmpval) {
294 log_info("Arithmetic failed on: '%s' got %lf, expected %lf\n",
295 str, dval, tmpval);
296 }
297}
298
299static void verify_exp_parser_decimal(const char *str, long long val, int kilo, int is_seconds)
300{
301 int rc;
302 long long ival;
303 double dval;
Stephen M. Cameron64c9d602014-09-30 10:32:28 -0500304 double implied_units = 1.0;
Stephen M. Cameron21bda792014-09-30 08:29:33 -0500305
Stephen M. Cameron64c9d602014-09-30 10:32:28 -0500306 if (is_seconds)
307 implied_units = 1000000.0;
308
309 rc = evaluate_arithmetic_expression(str, &ival, &dval, implied_units);
Stephen M. Cameron21bda792014-09-30 08:29:33 -0500310 if (!rc) {
311 if (ival != val)
312 log_info("Arithmetic failed on '%s', expected %lld, got %lld\n",
313 str, val, ival);
314 } else {
315 log_info("Arithmetic failed on '%s'\n", str);
316 }
317}
318#endif
319
Jens Axboecb2c86f2006-10-26 13:48:34 +0200320/*
Yu-ju Hong83349192011-08-13 00:53:44 +0200321 * Convert string into a floating number. Return 1 for success and 0 otherwise.
322 */
Jens Axboee25839d2012-11-06 10:49:42 +0100323int str_to_float(const char *str, double *val)
Yu-ju Hong83349192011-08-13 00:53:44 +0200324{
Stephen M. Cameron88b635b2014-09-29 12:10:49 -0600325#ifdef CONFIG_ARITHMETIC
326 int rc;
327 long long ival;
328 double dval;
329
330 if (str[0] == '(') {
Stephen M. Cameron64c9d602014-09-30 10:32:28 -0500331 rc = evaluate_arithmetic_expression(str, &ival, &dval, 1.0);
Stephen M. Cameron88b635b2014-09-29 12:10:49 -0600332 if (!rc) {
333 *val = dval;
334 return 1;
335 }
Stephen M. Cameron21bda792014-09-30 08:29:33 -0500336 } else {
Stephen M. Cameron64c9d602014-09-30 10:32:28 -0500337 verify_exp_parser_float(str, 1.0);
Stephen M. Cameron88b635b2014-09-29 12:10:49 -0600338 }
339#endif
340 return 1 == sscanf(str, "%lf", val);
Yu-ju Hong83349192011-08-13 00:53:44 +0200341}
342
343/*
Jens Axboee1f36502006-10-27 10:54:08 +0200344 * convert string into decimal value, noting any size suffix
Jens Axboecb2c86f2006-10-26 13:48:34 +0200345 */
Jens Axboe0de5b262014-02-21 15:26:01 -0800346int str_to_decimal(const char *str, long long *val, int kilo, void *data,
347 int is_seconds)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200348{
Jens Axboeb347f9d2009-03-09 14:15:21 +0100349 int len, base;
Stephen M. Cameron88b635b2014-09-29 12:10:49 -0600350 int rc = 1;
351#ifdef CONFIG_ARITHMETIC
352 long long ival;
353 double dval;
Stephen M. Cameron64c9d602014-09-30 10:32:28 -0500354 double implied_units = 1.0;
Stephen M. Cameron88b635b2014-09-29 12:10:49 -0600355#endif
Jens Axboecb2c86f2006-10-26 13:48:34 +0200356
Jens Axboecb2c86f2006-10-26 13:48:34 +0200357 len = strlen(str);
Jens Axboef90eff52006-11-06 11:08:21 +0100358 if (!len)
359 return 1;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200360
Stephen M. Cameron88b635b2014-09-29 12:10:49 -0600361#ifdef CONFIG_ARITHMETIC
Stephen M. Cameron64c9d602014-09-30 10:32:28 -0500362 if (is_seconds)
363 implied_units = 1000000.0;
Stephen M. Cameron88b635b2014-09-29 12:10:49 -0600364 if (str[0] == '(')
Stephen M. Cameron64c9d602014-09-30 10:32:28 -0500365 rc = evaluate_arithmetic_expression(str, &ival, &dval, implied_units);
Stephen M. Cameronc3805eb2014-09-29 12:15:35 -0600366 if (str[0] == '(' && !rc) {
367 if (!kilo && is_seconds)
368 *val = ival / 1000000LL;
369 else
370 *val = ival;
371 }
Stephen M. Cameron88b635b2014-09-29 12:10:49 -0600372#endif
Jens Axboeb347f9d2009-03-09 14:15:21 +0100373
Stephen M. Cameron88b635b2014-09-29 12:10:49 -0600374 if (rc == 1) {
375 if (strstr(str, "0x") || strstr(str, "0X"))
376 base = 16;
377 else
378 base = 10;
379
380 *val = strtoll(str, NULL, base);
381 if (*val == LONG_MAX && errno == ERANGE)
382 return 1;
383 }
Jens Axboecb2c86f2006-10-26 13:48:34 +0200384
Jens Axboe7bb59102011-07-12 19:47:03 +0200385 if (kilo) {
386 unsigned long long mult;
387 int perc = 0;
388
Jens Axboe6925dd32011-09-07 22:10:11 +0200389 mult = get_mult_bytes(str, len, data, &perc);
Jens Axboe7bb59102011-07-12 19:47:03 +0200390 if (perc)
391 *val = -1ULL - *val;
392 else
393 *val *= mult;
394 } else
Jens Axboe0de5b262014-02-21 15:26:01 -0800395 *val *= get_mult_time(str, len, is_seconds);
Stephen M. Cameron21bda792014-09-30 08:29:33 -0500396#ifdef CONFIG_ARITHMETIC
397 verify_exp_parser_decimal(str, *val, kilo, is_seconds);
398#endif
Jens Axboecb2c86f2006-10-26 13:48:34 +0200399 return 0;
400}
401
Jens Axboe9af4a242012-03-16 10:13:49 +0100402int check_str_bytes(const char *p, long long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200403{
Jens Axboe0de5b262014-02-21 15:26:01 -0800404 return str_to_decimal(p, val, 1, data, 0);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200405}
406
Jens Axboe0de5b262014-02-21 15:26:01 -0800407int check_str_time(const char *p, long long *val, int is_seconds)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200408{
Jens Axboe0de5b262014-02-21 15:26:01 -0800409 return str_to_decimal(p, val, 0, NULL, is_seconds);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200410}
411
412void strip_blank_front(char **p)
413{
414 char *s = *p;
415
Jens Axboe4c8e9642011-10-15 14:37:38 +0200416 if (!strlen(s))
417 return;
Jens Axboe76cd9372011-07-08 21:14:57 +0200418 while (isspace((int) *s))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200419 s++;
Jens Axboe4d651da2007-03-28 19:34:53 +0200420
421 *p = s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200422}
423
424void strip_blank_end(char *p)
425{
Jens Axboe853ee7f2009-03-06 20:29:29 +0100426 char *start = p, *s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200427
Jens Axboe4c8e9642011-10-15 14:37:38 +0200428 if (!strlen(p))
429 return;
430
Jens Axboe523bfad2007-04-04 11:04:06 +0200431 s = strchr(p, ';');
432 if (s)
433 *s = '\0';
434 s = strchr(p, '#');
435 if (s)
436 *s = '\0';
437 if (s)
438 p = s;
439
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200440 s = p + strlen(p);
Jens Axboe76cd9372011-07-08 21:14:57 +0200441 while ((isspace((int) *s) || iscntrl((int) *s)) && (s > start))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200442 s--;
443
444 *(s + 1) = '\0';
445}
446
Jens Axboed6978a32009-07-18 21:04:09 +0200447static int check_range_bytes(const char *str, long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200448{
Jens Axboe57fc29f2010-06-23 22:24:07 +0200449 long long __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200450
Jens Axboe0de5b262014-02-21 15:26:01 -0800451 if (!str_to_decimal(str, &__val, 1, data, 0)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200452 *val = __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200453 return 0;
454 }
455
Jens Axboecb2c86f2006-10-26 13:48:34 +0200456 return 1;
457}
458
Jens Axboe63f29372007-01-10 13:20:09 +0100459static int check_int(const char *p, int *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200460{
Jens Axboe787f7e92006-11-06 13:26:29 +0100461 if (!strlen(p))
462 return 1;
Jens Axboed78ee462007-08-10 14:03:20 +0200463 if (strstr(p, "0x") || strstr(p, "0X")) {
Jens Axboea61bdfd2007-07-30 09:07:04 +0200464 if (sscanf(p, "%x", val) == 1)
465 return 0;
466 } else {
467 if (sscanf(p, "%u", val) == 1)
468 return 0;
469 }
Jens Axboecb2c86f2006-10-26 13:48:34 +0200470
471 return 1;
472}
473
Jens Axboe8adb4522014-09-23 10:38:54 -0600474static size_t opt_len(const char *str)
Jens Axboe808def72010-07-14 16:27:02 -0600475{
476 char *postfix;
477
478 postfix = strchr(str, ':');
479 if (!postfix)
480 return strlen(str);
481
482 return (int)(postfix - str);
483}
484
Jens Axboe119cd932012-12-06 17:34:57 +0100485static int str_match_len(const struct value_pair *vp, const char *str)
486{
487 return max(strlen(vp->ival), opt_len(str));
488}
489
Jens Axboef0fdbca2014-02-11 15:44:50 -0700490#define val_store(ptr, val, off, or, data, o) \
491 do { \
492 ptr = td_var((data), (o), (off)); \
493 if ((or)) \
494 *ptr |= (val); \
495 else \
496 *ptr = (val); \
Jens Axboe17abbe82006-11-06 11:23:10 +0100497 } while (0)
498
Jens Axboef90eff52006-11-06 11:08:21 +0100499static int __handle_option(struct fio_option *o, const char *ptr, void *data,
Yu-ju Hong83349192011-08-13 00:53:44 +0200500 int first, int more, int curr)
Jens Axboee1f36502006-10-27 10:54:08 +0200501{
Erwan Velu2fdbefd2013-07-22 23:48:48 +0200502 int il=0, *ilp;
Vincent Kang Fufd112d32013-02-02 09:28:55 +0100503 fio_fp64_t *flp;
Jens Axboe63f29372007-01-10 13:20:09 +0100504 long long ull, *ullp;
505 long ul1, ul2;
Yu-ju Hong83349192011-08-13 00:53:44 +0200506 double uf;
Jens Axboebfe1d592012-11-29 21:33:03 +0100507 char **cp = NULL;
Jens Axboee42b01e2011-05-05 12:05:10 -0600508 int ret = 0, is_time = 0;
Jens Axboec44b1ff2011-08-30 20:43:53 -0600509 const struct value_pair *vp;
510 struct value_pair posval[PARSE_MAX_VP];
511 int i, all_skipped = 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200512
Jens Axboea3d741f2008-02-27 18:32:33 +0100513 dprint(FD_PARSE, "__handle_option=%s, type=%d, ptr=%s\n", o->name,
514 o->type, ptr);
515
Jens Axboee3cedca2008-11-19 19:57:52 +0100516 if (!ptr && o->type != FIO_OPT_STR_SET && o->type != FIO_OPT_STR) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200517 log_err("Option %s requires an argument\n", o->name);
Jens Axboe08e26e32006-11-21 13:15:10 +0100518 return 1;
519 }
520
Jens Axboee1f36502006-10-27 10:54:08 +0200521 switch (o->type) {
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100522 case FIO_OPT_STR:
523 case FIO_OPT_STR_MULTI: {
Jens Axboee1f36502006-10-27 10:54:08 +0200524 fio_opt_str_fn *fn = o->cb;
525
Jens Axboef0857372007-03-19 13:15:23 +0100526 posval_sort(o, posval);
527
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100528 ret = 1;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100529 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboef0857372007-03-19 13:15:23 +0100530 vp = &posval[i];
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100531 if (!vp->ival || vp->ival[0] == '\0')
Jens Axboea3073f42010-03-05 10:06:15 +0100532 continue;
Jens Axboeae2ddba2010-03-10 12:49:03 +0100533 all_skipped = 0;
Jens Axboe119cd932012-12-06 17:34:57 +0100534 if (!strncmp(vp->ival, ptr, str_match_len(vp, ptr))) {
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100535 ret = 0;
Jens Axboe7b504ed2014-02-11 14:19:38 -0700536 if (o->off1)
Daniel Gollubebadc0c2014-02-12 08:24:57 -0700537 val_store(ilp, vp->oval, o->off1, vp->orval, data, o);
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100538 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100539 }
540 }
541
Jens Axboeae2ddba2010-03-10 12:49:03 +0100542 if (ret && !all_skipped)
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100543 show_option_values(o);
544 else if (fn)
545 ret = fn(data, ptr);
Jens Axboee1f36502006-10-27 10:54:08 +0200546 break;
547 }
Jens Axboee42b01e2011-05-05 12:05:10 -0600548 case FIO_OPT_STR_VAL_TIME:
549 is_time = 1;
Jens Axboef7fa2652009-03-09 14:20:20 +0100550 case FIO_OPT_INT:
Jens Axboee42b01e2011-05-05 12:05:10 -0600551 case FIO_OPT_STR_VAL: {
552 fio_opt_str_val_fn *fn = o->cb;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200553 char tmp[128], *p;
554
555 strncpy(tmp, ptr, sizeof(tmp) - 1);
556 p = strchr(tmp, ',');
557 if (p)
558 *p = '\0';
Jens Axboee1f36502006-10-27 10:54:08 +0200559
Jens Axboee42b01e2011-05-05 12:05:10 -0600560 if (is_time)
Jens Axboe0de5b262014-02-21 15:26:01 -0800561 ret = check_str_time(tmp, &ull, o->is_seconds);
Jens Axboee42b01e2011-05-05 12:05:10 -0600562 else
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200563 ret = check_str_bytes(tmp, &ull, data);
Jens Axboee42b01e2011-05-05 12:05:10 -0600564
Jens Axboeae3fcb52013-04-25 10:06:32 -0600565 dprint(FD_PARSE, " ret=%d, out=%llu\n", ret, ull);
566
Jens Axboee1f36502006-10-27 10:54:08 +0200567 if (ret)
568 break;
569
Jens Axboedb8e0162007-01-10 13:41:26 +0100570 if (o->maxval && ull > o->maxval) {
Jens Axboed4fc2f02012-09-24 14:32:26 +0200571 log_err("max value out of range: %llu"
572 " (%u max)\n", ull, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100573 return 1;
574 }
575 if (o->minval && ull < o->minval) {
Jens Axboed4fc2f02012-09-24 14:32:26 +0200576 log_err("min value out of range: %llu"
577 " (%u min)\n", ull, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100578 return 1;
579 }
Jens Axboed926d532013-04-09 21:02:15 +0200580 if (o->posval[0].ival) {
581 posval_sort(o, posval);
582
583 ret = 1;
584 for (i = 0; i < PARSE_MAX_VP; i++) {
585 vp = &posval[i];
586 if (!vp->ival || vp->ival[0] == '\0')
587 continue;
588 if (vp->oval == ull) {
589 ret = 0;
590 break;
591 }
592 }
593 if (ret) {
Jens Axboe128e4ca2013-04-10 11:06:34 +0200594 log_err("fio: value %llu not allowed:\n", ull);
595 show_option_values(o);
Jens Axboed926d532013-04-09 21:02:15 +0200596 return 1;
597 }
598 }
Jens Axboee1f36502006-10-27 10:54:08 +0200599
600 if (fn)
601 ret = fn(data, &ull);
602 else {
Jens Axboee01b22b2009-06-09 15:43:25 +0200603 if (o->type == FIO_OPT_INT) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700604 if (first)
605 val_store(ilp, ull, o->off1, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200606 if (curr == 1) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700607 if (o->off2)
608 val_store(ilp, ull, o->off2, 0, data, o);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100609 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200610 if (curr == 2) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700611 if (o->off3)
612 val_store(ilp, ull, o->off3, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200613 }
614 if (!more) {
615 if (curr < 1) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700616 if (o->off2)
617 val_store(ilp, ull, o->off2, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200618 }
619 if (curr < 2) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700620 if (o->off3)
621 val_store(ilp, ull, o->off3, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200622 }
623 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100624 } else {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700625 if (first)
626 val_store(ullp, ull, o->off1, 0, data, o);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100627 if (!more) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700628 if (o->off2)
629 val_store(ullp, ull, o->off2, 0, data, o);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100630 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100631 }
Jens Axboee1f36502006-10-27 10:54:08 +0200632 }
633 break;
634 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200635 case FIO_OPT_FLOAT_LIST: {
Jens Axboeeef02442013-02-06 08:51:57 +0100636 char *cp2;
637
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100638 if (first) {
639 /*
640 ** Initialize precision to 0 and zero out list
641 ** in case specified list is shorter than default
642 */
Jens Axboe3e260a42013-12-09 12:38:53 -0700643 if (o->off2) {
644 ul2 = 0;
Jens Axboef0fdbca2014-02-11 15:44:50 -0700645 ilp = td_var(data, o, o->off2);
Jens Axboe3e260a42013-12-09 12:38:53 -0700646 *ilp = ul2;
647 }
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100648
Jens Axboef0fdbca2014-02-11 15:44:50 -0700649 flp = td_var(data, o, o->off1);
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100650 for(i = 0; i < o->maxlen; i++)
651 flp[i].u.f = 0.0;
652 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200653 if (curr >= o->maxlen) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200654 log_err("the list exceeding max length %d\n",
Yu-ju Hong83349192011-08-13 00:53:44 +0200655 o->maxlen);
656 return 1;
657 }
Jens Axboe3c3ed072012-03-27 09:12:39 +0200658 if (!str_to_float(ptr, &uf)) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200659 log_err("not a floating point value: %s\n", ptr);
Yu-ju Hong83349192011-08-13 00:53:44 +0200660 return 1;
661 }
Jens Axboe26650692013-02-02 09:56:23 +0100662 if (uf > o->maxfp) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200663 log_err("value out of range: %f"
Yu-ju Hong83349192011-08-13 00:53:44 +0200664 " (range max: %f)\n", uf, o->maxfp);
665 return 1;
666 }
Jens Axboe26650692013-02-02 09:56:23 +0100667 if (uf < o->minfp) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200668 log_err("value out of range: %f"
Yu-ju Hong83349192011-08-13 00:53:44 +0200669 " (range min: %f)\n", uf, o->minfp);
670 return 1;
671 }
672
Jens Axboef0fdbca2014-02-11 15:44:50 -0700673 flp = td_var(data, o, o->off1);
Vincent Kang Fufd112d32013-02-02 09:28:55 +0100674 flp[curr].u.f = uf;
Yu-ju Hong83349192011-08-13 00:53:44 +0200675
Jens Axboeae3fcb52013-04-25 10:06:32 -0600676 dprint(FD_PARSE, " out=%f\n", uf);
677
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100678 /*
679 ** Calculate precision for output by counting
680 ** number of digits after period. Find first
681 ** period in entire remaining list each time
682 */
683 cp2 = strchr(ptr, '.');
684 if (cp2 != NULL) {
Jens Axboeeef02442013-02-06 08:51:57 +0100685 int len = 0;
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100686
687 while (*++cp2 != '\0' && *cp2 >= '0' && *cp2 <= '9')
688 len++;
689
Jens Axboe3e260a42013-12-09 12:38:53 -0700690 if (o->off2) {
Jens Axboef0fdbca2014-02-11 15:44:50 -0700691 ilp = td_var(data, o, o->off2);
Jens Axboe3e260a42013-12-09 12:38:53 -0700692 if (len > *ilp)
693 *ilp = len;
694 }
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100695 }
696
Yu-ju Hong83349192011-08-13 00:53:44 +0200697 break;
698 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100699 case FIO_OPT_STR_STORE: {
700 fio_opt_str_fn *fn = o->cb;
701
Jens Axboef75c69a2014-04-03 08:18:07 -0600702 if (!strlen(ptr))
703 return 1;
704
Jens Axboe7b504ed2014-02-11 14:19:38 -0700705 if (o->off1) {
Jens Axboef0fdbca2014-02-11 15:44:50 -0700706 cp = td_var(data, o, o->off1);
Steven Lang184b4092011-11-16 10:33:51 +0100707 *cp = strdup(ptr);
Jens Axboe1c964ce2011-08-31 16:45:03 -0600708 }
Jens Axboe02c6aad2010-03-04 13:49:11 +0100709
Steven Lang184b4092011-11-16 10:33:51 +0100710 if (fn)
711 ret = fn(data, ptr);
712 else if (o->posval[0].ival) {
713 posval_sort(o, posval);
Jens Axboec44b1ff2011-08-30 20:43:53 -0600714
Steven Lang184b4092011-11-16 10:33:51 +0100715 ret = 1;
716 for (i = 0; i < PARSE_MAX_VP; i++) {
717 vp = &posval[i];
Jens Axboeab508172014-04-14 13:16:10 -0600718 if (!vp->ival || vp->ival[0] == '\0' || !cp)
Steven Lang184b4092011-11-16 10:33:51 +0100719 continue;
720 all_skipped = 0;
Jens Axboe119cd932012-12-06 17:34:57 +0100721 if (!strncmp(vp->ival, ptr, str_match_len(vp, ptr))) {
Steven Lang184b4092011-11-16 10:33:51 +0100722 char *rest;
723
724 ret = 0;
725 if (vp->cb)
726 fn = vp->cb;
727 rest = strstr(*cp ?: ptr, ":");
728 if (rest) {
729 if (*cp)
730 *rest = '\0';
731 ptr = rest + 1;
732 } else
733 ptr = NULL;
734 break;
735 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100736 }
737 }
Jens Axboec44b1ff2011-08-30 20:43:53 -0600738
Steven Lang184b4092011-11-16 10:33:51 +0100739 if (!all_skipped) {
740 if (ret && !*cp)
741 show_option_values(o);
742 else if (ret && *cp)
743 ret = 0;
744 else if (fn && ptr)
745 ret = fn(data, ptr);
746 }
Jens Axboec44b1ff2011-08-30 20:43:53 -0600747
Jens Axboee1f36502006-10-27 10:54:08 +0200748 break;
Jens Axboeaf52b342007-03-13 10:07:47 +0100749 }
Jens Axboee1f36502006-10-27 10:54:08 +0200750 case FIO_OPT_RANGE: {
Jens Axboeb765a372006-10-27 15:00:16 +0200751 char tmp[128];
Jens Axboee1f36502006-10-27 10:54:08 +0200752 char *p1, *p2;
753
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100754 strncpy(tmp, ptr, sizeof(tmp) - 1);
Jens Axboeb765a372006-10-27 15:00:16 +0200755
Dave Engberg31d23f42011-07-23 21:07:13 +0200756 /* Handle bsrange with separate read,write values: */
757 p1 = strchr(tmp, ',');
758 if (p1)
759 *p1 = '\0';
760
Jens Axboeb765a372006-10-27 15:00:16 +0200761 p1 = strchr(tmp, '-');
Jens Axboee1f36502006-10-27 10:54:08 +0200762 if (!p1) {
Jens Axboe0c9baf92007-01-11 15:59:26 +0100763 p1 = strchr(tmp, ':');
764 if (!p1) {
765 ret = 1;
766 break;
767 }
Jens Axboee1f36502006-10-27 10:54:08 +0200768 }
769
770 p2 = p1 + 1;
771 *p1 = '\0';
Jens Axboeb765a372006-10-27 15:00:16 +0200772 p1 = tmp;
Jens Axboee1f36502006-10-27 10:54:08 +0200773
774 ret = 1;
Jens Axboed6978a32009-07-18 21:04:09 +0200775 if (!check_range_bytes(p1, &ul1, data) &&
776 !check_range_bytes(p2, &ul2, data)) {
Jens Axboee1f36502006-10-27 10:54:08 +0200777 ret = 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200778 if (ul1 > ul2) {
Jens Axboef90eff52006-11-06 11:08:21 +0100779 unsigned long foo = ul1;
780
781 ul1 = ul2;
782 ul2 = foo;
783 }
784
785 if (first) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700786 val_store(ilp, ul1, o->off1, 0, data, o);
787 val_store(ilp, ul2, o->off2, 0, data, o);
Jens Axboee1f36502006-10-27 10:54:08 +0200788 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200789 if (curr == 1) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700790 if (o->off3 && o->off4) {
791 val_store(ilp, ul1, o->off3, 0, data, o);
792 val_store(ilp, ul2, o->off4, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200793 }
794 }
795 if (curr == 2) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700796 if (o->off5 && o->off6) {
797 val_store(ilp, ul1, o->off5, 0, data, o);
798 val_store(ilp, ul2, o->off6, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200799 }
800 }
801 if (!more) {
802 if (curr < 1) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700803 if (o->off3 && o->off4) {
804 val_store(ilp, ul1, o->off3, 0, data, o);
805 val_store(ilp, ul2, o->off4, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200806 }
807 }
808 if (curr < 2) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700809 if (o->off5 && o->off6) {
810 val_store(ilp, ul1, o->off5, 0, data, o);
811 val_store(ilp, ul2, o->off6, 0, data, o);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200812 }
813 }
Jens Axboe17abbe82006-11-06 11:23:10 +0100814 }
815 }
816
Jens Axboee1f36502006-10-27 10:54:08 +0200817 break;
818 }
Jens Axboe74ba1802011-07-15 09:09:15 +0200819 case FIO_OPT_BOOL:
820 case FIO_OPT_STR_SET: {
Jens Axboee1f36502006-10-27 10:54:08 +0200821 fio_opt_int_fn *fn = o->cb;
822
Jens Axboe74ba1802011-07-15 09:09:15 +0200823 if (ptr)
824 ret = check_int(ptr, &il);
825 else if (o->type == FIO_OPT_BOOL)
826 ret = 1;
827 else
828 il = 1;
829
Jens Axboeae3fcb52013-04-25 10:06:32 -0600830 dprint(FD_PARSE, " ret=%d, out=%d\n", ret, il);
831
Jens Axboee1f36502006-10-27 10:54:08 +0200832 if (ret)
833 break;
834
Jens Axboedb8e0162007-01-10 13:41:26 +0100835 if (o->maxval && il > (int) o->maxval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200836 log_err("max value out of range: %d (%d max)\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100837 il, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100838 return 1;
839 }
840 if (o->minval && il < o->minval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200841 log_err("min value out of range: %d (%d min)\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100842 il, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100843 return 1;
844 }
Jens Axboee1f36502006-10-27 10:54:08 +0200845
Jens Axboe76a43db2007-01-11 13:24:44 +0100846 if (o->neg)
847 il = !il;
848
Jens Axboee1f36502006-10-27 10:54:08 +0200849 if (fn)
850 ret = fn(data, &il);
851 else {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700852 if (first)
853 val_store(ilp, il, o->off1, 0, data, o);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100854 if (!more) {
Jens Axboe7b504ed2014-02-11 14:19:38 -0700855 if (o->off2)
856 val_store(ilp, il, o->off2, 0, data, o);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100857 }
Jens Axboee1f36502006-10-27 10:54:08 +0200858 }
859 break;
860 }
Jens Axboe15ca1502008-04-07 09:26:02 +0200861 case FIO_OPT_DEPRECATED:
Jens Axboe06b0be62011-10-04 10:31:10 +0200862 log_info("Option %s is deprecated\n", o->name);
Jens Axboed9472272013-07-25 10:20:45 -0600863 ret = 1;
Jens Axboe15ca1502008-04-07 09:26:02 +0200864 break;
Jens Axboee1f36502006-10-27 10:54:08 +0200865 default:
Jens Axboe06b0be62011-10-04 10:31:10 +0200866 log_err("Bad option type %u\n", o->type);
Jens Axboee1f36502006-10-27 10:54:08 +0200867 ret = 1;
868 }
869
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200870 if (ret)
871 return ret;
872
Jens Axboed447a8c2009-07-17 22:26:15 +0200873 if (o->verify) {
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200874 ret = o->verify(o, data);
Jens Axboed447a8c2009-07-17 22:26:15 +0200875 if (ret) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200876 log_err("Correct format for offending option\n");
877 log_err("%20s: %s\n", o->name, o->help);
Jens Axboe06b0be62011-10-04 10:31:10 +0200878 show_option_help(o, 1);
Jens Axboed447a8c2009-07-17 22:26:15 +0200879 }
880 }
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200881
Jens Axboee1f36502006-10-27 10:54:08 +0200882 return ret;
883}
884
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200885static int handle_option(struct fio_option *o, const char *__ptr, void *data)
Jens Axboef90eff52006-11-06 11:08:21 +0100886{
Jens Axboeb62bdf22010-03-10 12:36:17 +0100887 char *o_ptr, *ptr, *ptr2;
888 int ret, done;
Jens Axboef90eff52006-11-06 11:08:21 +0100889
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200890 dprint(FD_PARSE, "handle_option=%s, ptr=%s\n", o->name, __ptr);
891
Jens Axboeb62bdf22010-03-10 12:36:17 +0100892 o_ptr = ptr = NULL;
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200893 if (__ptr)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100894 o_ptr = ptr = strdup(__ptr);
Jens Axboea3d741f2008-02-27 18:32:33 +0100895
Jens Axboef90eff52006-11-06 11:08:21 +0100896 /*
Jens Axboeb62bdf22010-03-10 12:36:17 +0100897 * See if we have another set of parameters, hidden after a comma.
898 * Do this before parsing this round, to check if we should
Jens Axboe787f7e92006-11-06 13:26:29 +0100899 * copy set 1 options to set 2.
Jens Axboef90eff52006-11-06 11:08:21 +0100900 */
Jens Axboeb62bdf22010-03-10 12:36:17 +0100901 done = 0;
902 ret = 1;
903 do {
904 int __ret;
905
906 ptr2 = NULL;
907 if (ptr &&
908 (o->type != FIO_OPT_STR_STORE) &&
Yu-ju Hong83349192011-08-13 00:53:44 +0200909 (o->type != FIO_OPT_STR) &&
910 (o->type != FIO_OPT_FLOAT_LIST)) {
Jens Axboeb62bdf22010-03-10 12:36:17 +0100911 ptr2 = strchr(ptr, ',');
912 if (ptr2 && *(ptr2 + 1) == '\0')
913 *ptr2 = '\0';
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200914 if (o->type != FIO_OPT_STR_MULTI && o->type != FIO_OPT_RANGE) {
Jens Axboeb62bdf22010-03-10 12:36:17 +0100915 if (!ptr2)
916 ptr2 = strchr(ptr, ':');
917 if (!ptr2)
918 ptr2 = strchr(ptr, '-');
919 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200920 } else if (ptr && o->type == FIO_OPT_FLOAT_LIST) {
921 ptr2 = strchr(ptr, ':');
Jens Axboeb62bdf22010-03-10 12:36:17 +0100922 }
923
924 /*
925 * Don't return early if parsing the first option fails - if
926 * we are doing multiple arguments, we can allow the first one
927 * being empty.
928 */
Yu-ju Hong83349192011-08-13 00:53:44 +0200929 __ret = __handle_option(o, ptr, data, !done, !!ptr2, done);
Jens Axboeb62bdf22010-03-10 12:36:17 +0100930 if (ret)
931 ret = __ret;
932
Jens Axboe0c9baf92007-01-11 15:59:26 +0100933 if (!ptr2)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100934 break;
Jens Axboe787f7e92006-11-06 13:26:29 +0100935
Jens Axboeb62bdf22010-03-10 12:36:17 +0100936 ptr = ptr2 + 1;
937 done++;
938 } while (1);
Jens Axboe787f7e92006-11-06 13:26:29 +0100939
Jens Axboeb62bdf22010-03-10 12:36:17 +0100940 if (o_ptr)
941 free(o_ptr);
942 return ret;
Jens Axboef90eff52006-11-06 11:08:21 +0100943}
944
Steven Langde890a12011-11-09 14:03:34 +0100945static struct fio_option *get_option(char *opt,
Jens Axboe07b32322010-03-05 09:48:44 +0100946 struct fio_option *options, char **post)
Jens Axboe3b8b7132008-06-10 19:46:23 +0200947{
948 struct fio_option *o;
949 char *ret;
950
951 ret = strchr(opt, '=');
952 if (ret) {
953 *post = ret;
954 *ret = '\0';
Steven Langde890a12011-11-09 14:03:34 +0100955 ret = opt;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200956 (*post)++;
Jens Axboe43c129b2008-12-08 14:06:42 +0100957 strip_blank_end(ret);
Jens Axboe07b32322010-03-05 09:48:44 +0100958 o = find_option(options, ret);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200959 } else {
Jens Axboe07b32322010-03-05 09:48:44 +0100960 o = find_option(options, opt);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200961 *post = NULL;
962 }
963
964 return o;
965}
966
967static int opt_cmp(const void *p1, const void *p2)
968{
Steven Langde890a12011-11-09 14:03:34 +0100969 struct fio_option *o;
970 char *s, *foo;
Jens Axboe8cdabc12008-11-19 12:31:43 +0100971 int prio1, prio2;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200972
Jens Axboe8cdabc12008-11-19 12:31:43 +0100973 prio1 = prio2 = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200974
Steven Langde890a12011-11-09 14:03:34 +0100975 if (*(char **)p1) {
976 s = strdup(*((char **) p1));
Jens Axboe9af4a242012-03-16 10:13:49 +0100977 o = get_option(s, __fio_options, &foo);
Steven Langde890a12011-11-09 14:03:34 +0100978 if (o)
979 prio1 = o->prio;
980 free(s);
981 }
982 if (*(char **)p2) {
983 s = strdup(*((char **) p2));
Jens Axboe9af4a242012-03-16 10:13:49 +0100984 o = get_option(s, __fio_options, &foo);
Steven Langde890a12011-11-09 14:03:34 +0100985 if (o)
986 prio2 = o->prio;
987 free(s);
988 }
989
Jens Axboe8cdabc12008-11-19 12:31:43 +0100990 return prio2 - prio1;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200991}
992
993void sort_options(char **opts, struct fio_option *options, int num_opts)
994{
Jens Axboe9af4a242012-03-16 10:13:49 +0100995 __fio_options = options;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200996 qsort(opts, num_opts, sizeof(char *), opt_cmp);
Jens Axboe9af4a242012-03-16 10:13:49 +0100997 __fio_options = NULL;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200998}
999
Jens Axboeb4692822006-10-27 13:43:22 +02001000int parse_cmd_option(const char *opt, const char *val,
Jens Axboe07b32322010-03-05 09:48:44 +01001001 struct fio_option *options, void *data)
Jens Axboeb4692822006-10-27 13:43:22 +02001002{
1003 struct fio_option *o;
1004
Jens Axboe07b32322010-03-05 09:48:44 +01001005 o = find_option(options, opt);
Jens Axboeb4692822006-10-27 13:43:22 +02001006 if (!o) {
Jens Axboe06b0be62011-10-04 10:31:10 +02001007 log_err("Bad option <%s>\n", opt);
Jens Axboeb4692822006-10-27 13:43:22 +02001008 return 1;
1009 }
1010
Jens Axboeb1508cf2006-11-02 09:12:40 +01001011 if (!handle_option(o, val, data))
1012 return 0;
1013
Jens Axboe06b0be62011-10-04 10:31:10 +02001014 log_err("fio: failed parsing %s=%s\n", opt, val);
Jens Axboeb1508cf2006-11-02 09:12:40 +01001015 return 1;
Jens Axboeb4692822006-10-27 13:43:22 +02001016}
1017
Steven Langde890a12011-11-09 14:03:34 +01001018int parse_option(char *opt, const char *input,
Jens Axboe292cc472013-11-26 20:39:35 -07001019 struct fio_option *options, struct fio_option **o, void *data,
1020 int dump_cmdline)
Jens Axboee1f36502006-10-27 10:54:08 +02001021{
Steven Langd0c814e2011-10-28 08:37:13 +02001022 char *post;
Jens Axboee1f36502006-10-27 10:54:08 +02001023
Steven Langd0c814e2011-10-28 08:37:13 +02001024 if (!opt) {
1025 log_err("fio: failed parsing %s\n", input);
Steven Langde890a12011-11-09 14:03:34 +01001026 *o = NULL;
Jens Axboe38789b52010-03-03 09:23:20 +01001027 return 1;
Steven Langd0c814e2011-10-28 08:37:13 +02001028 }
Jens Axboee1f36502006-10-27 10:54:08 +02001029
Steven Langde890a12011-11-09 14:03:34 +01001030 *o = get_option(opt, options, &post);
1031 if (!*o) {
1032 if (post) {
1033 int len = strlen(opt);
1034 if (opt + len + 1 != post)
1035 memmove(opt + len + 1, post, strlen(post));
1036 opt[len] = '=';
1037 }
Jens Axboee1f36502006-10-27 10:54:08 +02001038 return 1;
1039 }
1040
Jens Axboe292cc472013-11-26 20:39:35 -07001041 if (handle_option(*o, post, data)) {
1042 log_err("fio: failed parsing %s\n", input);
1043 return 1;
1044 }
Jens Axboeb1508cf2006-11-02 09:12:40 +01001045
Jens Axboe292cc472013-11-26 20:39:35 -07001046 if (dump_cmdline) {
1047 const char *delim;
1048
1049 if (!strcmp("description", (*o)->name))
1050 delim = "\"";
1051 else
1052 delim = "";
1053
1054 log_info("--%s%s", (*o)->name, post ? "" : " ");
1055 if (post)
1056 log_info("=%s%s%s ", delim, post, delim);
1057 }
1058
1059 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +02001060}
Jens Axboefd28ca42007-01-09 21:20:13 +01001061
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001062/*
1063 * Option match, levenshtein distance. Handy for not quite remembering what
1064 * the option name is.
1065 */
1066static int string_distance(const char *s1, const char *s2)
1067{
1068 unsigned int s1_len = strlen(s1);
1069 unsigned int s2_len = strlen(s2);
1070 unsigned int *p, *q, *r;
1071 unsigned int i, j;
1072
1073 p = malloc(sizeof(unsigned int) * (s2_len + 1));
1074 q = malloc(sizeof(unsigned int) * (s2_len + 1));
1075
1076 p[0] = 0;
1077 for (i = 1; i <= s2_len; i++)
1078 p[i] = p[i - 1] + 1;
1079
1080 for (i = 1; i <= s1_len; i++) {
1081 q[0] = p[0] + 1;
1082 for (j = 1; j <= s2_len; j++) {
1083 unsigned int sub = p[j - 1];
1084
1085 if (s1[i - 1] != s2[j - 1])
1086 sub++;
1087
1088 q[j] = min(p[j] + 1, min(q[j - 1] + 1, sub));
1089 }
1090 r = p;
1091 p = q;
1092 q = r;
1093 }
1094
1095 i = p[s2_len];
1096 free(p);
1097 free(q);
1098 return i;
1099}
1100
Jens Axboeafdf9352007-07-31 16:14:34 +02001101static struct fio_option *find_child(struct fio_option *options,
1102 struct fio_option *o)
1103{
1104 struct fio_option *__o;
1105
Jens Axboefdf28742007-07-31 23:06:09 +02001106 for (__o = options + 1; __o->name; __o++)
1107 if (__o->parent && !strcmp(__o->parent, o->name))
Jens Axboeafdf9352007-07-31 16:14:34 +02001108 return __o;
1109
1110 return NULL;
1111}
1112
Jens Axboe323d9112008-03-01 15:12:14 +01001113static void __print_option(struct fio_option *o, struct fio_option *org,
1114 int level)
Jens Axboeafdf9352007-07-31 16:14:34 +02001115{
1116 char name[256], *p;
Jens Axboe323d9112008-03-01 15:12:14 +01001117 int depth;
Jens Axboeafdf9352007-07-31 16:14:34 +02001118
1119 if (!o)
1120 return;
Jens Axboeef9aff52007-07-31 22:56:53 +02001121 if (!org)
1122 org = o;
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001123
Jens Axboeafdf9352007-07-31 16:14:34 +02001124 p = name;
Jens Axboe323d9112008-03-01 15:12:14 +01001125 depth = level;
1126 while (depth--)
1127 p += sprintf(p, "%s", " ");
Jens Axboeafdf9352007-07-31 16:14:34 +02001128
1129 sprintf(p, "%s", o->name);
1130
Jens Axboe28d7c362011-10-05 20:30:24 +02001131 log_info("%-24s: %s\n", name, o->help);
Jens Axboe323d9112008-03-01 15:12:14 +01001132}
1133
1134static void print_option(struct fio_option *o)
1135{
1136 struct fio_option *parent;
1137 struct fio_option *__o;
1138 unsigned int printed;
1139 unsigned int level;
1140
1141 __print_option(o, NULL, 0);
1142 parent = o;
1143 level = 0;
1144 do {
1145 level++;
1146 printed = 0;
1147
1148 while ((__o = find_child(o, parent)) != NULL) {
1149 __print_option(__o, o, level);
1150 o = __o;
1151 printed++;
1152 }
1153
1154 parent = o;
1155 } while (printed);
Jens Axboeafdf9352007-07-31 16:14:34 +02001156}
1157
Jens Axboe07b32322010-03-05 09:48:44 +01001158int show_cmd_help(struct fio_option *options, const char *name)
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001159{
1160 struct fio_option *o, *closest;
Jens Axboed091d092010-04-01 19:56:23 +02001161 unsigned int best_dist = -1U;
Jens Axboe29fc6af2007-01-09 21:22:02 +01001162 int found = 0;
Jens Axboe320beef2007-03-01 10:44:12 +01001163 int show_all = 0;
1164
1165 if (!name || !strcmp(name, "all"))
1166 show_all = 1;
Jens Axboefd28ca42007-01-09 21:20:13 +01001167
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001168 closest = NULL;
1169 best_dist = -1;
Jens Axboe4945ba12007-01-11 14:36:56 +01001170 for (o = &options[0]; o->name; o++) {
Jens Axboe320beef2007-03-01 10:44:12 +01001171 int match = 0;
1172
Jens Axboe15ca1502008-04-07 09:26:02 +02001173 if (o->type == FIO_OPT_DEPRECATED)
1174 continue;
Jens Axboe07b32322010-03-05 09:48:44 +01001175 if (!exec_profile && o->prof_name)
1176 continue;
Jens Axboe4ac23d22013-05-23 21:14:03 +02001177 if (exec_profile && !(o->prof_name && !strcmp(exec_profile, o->prof_name)))
1178 continue;
Jens Axboe15ca1502008-04-07 09:26:02 +02001179
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001180 if (name) {
Jens Axboe7f9348f2007-03-15 14:09:28 +01001181 if (!strcmp(name, o->name) ||
1182 (o->alias && !strcmp(name, o->alias)))
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001183 match = 1;
1184 else {
1185 unsigned int dist;
1186
1187 dist = string_distance(name, o->name);
1188 if (dist < best_dist) {
1189 best_dist = dist;
1190 closest = o;
1191 }
1192 }
1193 }
Jens Axboefd28ca42007-01-09 21:20:13 +01001194
1195 if (show_all || match) {
Jens Axboe29fc6af2007-01-09 21:22:02 +01001196 found = 1;
Jens Axboec167ded2007-03-14 13:02:53 +01001197 if (match)
Jens Axboe28d7c362011-10-05 20:30:24 +02001198 log_info("%20s: %s\n", o->name, o->help);
Jens Axboec167ded2007-03-14 13:02:53 +01001199 if (show_all) {
Jens Axboeafdf9352007-07-31 16:14:34 +02001200 if (!o->parent)
Jens Axboe323d9112008-03-01 15:12:14 +01001201 print_option(o);
Jens Axboe4945ba12007-01-11 14:36:56 +01001202 continue;
Jens Axboec167ded2007-03-14 13:02:53 +01001203 }
Jens Axboefd28ca42007-01-09 21:20:13 +01001204 }
1205
Jens Axboe70df2f12007-01-11 14:04:47 +01001206 if (!match)
1207 continue;
1208
Jens Axboe06b0be62011-10-04 10:31:10 +02001209 show_option_help(o, 0);
Jens Axboefd28ca42007-01-09 21:20:13 +01001210 }
1211
Jens Axboe29fc6af2007-01-09 21:22:02 +01001212 if (found)
1213 return 0;
Jens Axboefd28ca42007-01-09 21:20:13 +01001214
Jens Axboe28d7c362011-10-05 20:30:24 +02001215 log_err("No such command: %s", name);
Jens Axboed091d092010-04-01 19:56:23 +02001216
1217 /*
1218 * Only print an appropriately close option, one where the edit
1219 * distance isn't too big. Otherwise we get crazy matches.
1220 */
1221 if (closest && best_dist < 3) {
Jens Axboe28d7c362011-10-05 20:30:24 +02001222 log_info(" - showing closest match\n");
1223 log_info("%20s: %s\n", closest->name, closest->help);
Jens Axboe06b0be62011-10-04 10:31:10 +02001224 show_option_help(closest, 0);
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001225 } else
Jens Axboe28d7c362011-10-05 20:30:24 +02001226 log_info("\n");
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001227
Jens Axboe29fc6af2007-01-09 21:22:02 +01001228 return 1;
Jens Axboefd28ca42007-01-09 21:20:13 +01001229}
Jens Axboeee738492007-01-10 11:23:16 +01001230
Jens Axboe13335dd2007-01-10 13:14:02 +01001231/*
1232 * Handle parsing of default parameters.
1233 */
Jens Axboeee738492007-01-10 11:23:16 +01001234void fill_default_options(void *data, struct fio_option *options)
1235{
Jens Axboe4945ba12007-01-11 14:36:56 +01001236 struct fio_option *o;
Jens Axboeee738492007-01-10 11:23:16 +01001237
Jens Axboea3d741f2008-02-27 18:32:33 +01001238 dprint(FD_PARSE, "filling default options\n");
1239
Jens Axboe4945ba12007-01-11 14:36:56 +01001240 for (o = &options[0]; o->name; o++)
Jens Axboeee738492007-01-10 11:23:16 +01001241 if (o->def)
1242 handle_option(o, o->def, data);
Jens Axboeee738492007-01-10 11:23:16 +01001243}
Jens Axboe13335dd2007-01-10 13:14:02 +01001244
Jens Axboe9f988e22010-03-04 10:42:38 +01001245void option_init(struct fio_option *o)
1246{
1247 if (o->type == FIO_OPT_DEPRECATED)
1248 return;
1249 if (o->type == FIO_OPT_BOOL) {
1250 o->minval = 0;
1251 o->maxval = 1;
1252 }
Jens Axboed4fc2f02012-09-24 14:32:26 +02001253 if (o->type == FIO_OPT_INT) {
1254 if (!o->maxval)
1255 o->maxval = UINT_MAX;
1256 }
Yu-ju Hong83349192011-08-13 00:53:44 +02001257 if (o->type == FIO_OPT_FLOAT_LIST) {
Bruce Cranab9461e2013-02-02 14:31:24 +00001258 o->minfp = DBL_MIN;
1259 o->maxfp = DBL_MAX;
Yu-ju Hong83349192011-08-13 00:53:44 +02001260 }
Jens Axboeef7035a2014-06-18 15:30:09 -07001261 if (o->type == FIO_OPT_STR_SET && o->def && !o->no_warn_def) {
Jens Axboe06b0be62011-10-04 10:31:10 +02001262 log_err("Option %s: string set option with"
Jens Axboe9f988e22010-03-04 10:42:38 +01001263 " default will always be true\n", o->name);
1264 }
Jens Axboe7b504ed2014-02-11 14:19:38 -07001265 if (!o->cb && !o->off1)
Jens Axboe06b0be62011-10-04 10:31:10 +02001266 log_err("Option %s: neither cb nor offset given\n", o->name);
Jens Axboe22754742013-04-10 13:05:23 +02001267 if (!o->category) {
Jens Axboecca5b5b2013-04-10 19:35:25 +02001268 log_info("Option %s: no category defined. Setting to misc\n", o->name);
Jens Axboe22754742013-04-10 13:05:23 +02001269 o->category = FIO_OPT_C_GENERAL;
Jens Axboeffd78212013-04-10 13:07:43 +02001270 o->group = FIO_OPT_G_INVALID;
Jens Axboe22754742013-04-10 13:05:23 +02001271 }
Jens Axboe5f6ddf12010-03-09 20:40:44 +01001272 if (o->type == FIO_OPT_STR || o->type == FIO_OPT_STR_STORE ||
1273 o->type == FIO_OPT_STR_MULTI)
Jens Axboe9f988e22010-03-04 10:42:38 +01001274 return;
Jens Axboe7b504ed2014-02-11 14:19:38 -07001275 if (o->cb && (o->off1 || o->off2 || o->off3 || o->off4))
Jens Axboe06b0be62011-10-04 10:31:10 +02001276 log_err("Option %s: both cb and offset given\n", o->name);
Jens Axboe9f988e22010-03-04 10:42:38 +01001277}
1278
Jens Axboe13335dd2007-01-10 13:14:02 +01001279/*
1280 * Sanitize the options structure. For now it just sets min/max for bool
Jens Axboe5b0a8882007-01-11 14:40:27 +01001281 * values and whether both callback and offsets are given.
Jens Axboe13335dd2007-01-10 13:14:02 +01001282 */
1283void options_init(struct fio_option *options)
1284{
Jens Axboe4945ba12007-01-11 14:36:56 +01001285 struct fio_option *o;
Jens Axboe13335dd2007-01-10 13:14:02 +01001286
Jens Axboea3d741f2008-02-27 18:32:33 +01001287 dprint(FD_PARSE, "init options\n");
1288
Jens Axboe90265352012-03-19 20:29:44 +01001289 for (o = &options[0]; o->name; o++) {
Jens Axboe9f988e22010-03-04 10:42:38 +01001290 option_init(o);
Jens Axboe90265352012-03-19 20:29:44 +01001291 if (o->inverse)
1292 o->inv_opt = find_option(options, o->inverse);
1293 }
Jens Axboe13335dd2007-01-10 13:14:02 +01001294}
Jens Axboe7e356b22011-10-14 10:55:16 +02001295
1296void options_free(struct fio_option *options, void *data)
1297{
1298 struct fio_option *o;
1299 char **ptr;
1300
1301 dprint(FD_PARSE, "free options\n");
1302
1303 for (o = &options[0]; o->name; o++) {
Steven Langde890a12011-11-09 14:03:34 +01001304 if (o->type != FIO_OPT_STR_STORE || !o->off1)
Jens Axboe7e356b22011-10-14 10:55:16 +02001305 continue;
1306
Jens Axboef0fdbca2014-02-11 15:44:50 -07001307 ptr = td_var(data, o, o->off1);
Jens Axboe7e356b22011-10-14 10:55:16 +02001308 if (*ptr) {
1309 free(*ptr);
1310 *ptr = NULL;
1311 }
1312 }
1313}