blob: 6141c91e8d31c4e9d0822fb769f606e1bcd84b00 [file] [log] [blame]
Jens Axboecb2c86f2006-10-26 13:48:34 +02001/*
2 * This file contains the ini and command liner parser main.
3 */
4#include <stdio.h>
5#include <stdlib.h>
6#include <unistd.h>
7#include <ctype.h>
8#include <string.h>
9#include <errno.h>
10#include <limits.h>
Aaron Carroll88b5a392008-10-07 11:25:20 +020011#include <stdlib.h>
Yu-ju Hong83349192011-08-13 00:53:44 +020012#include <math.h>
Bruce Cranab9461e2013-02-02 14:31:24 +000013#include <float.h>
Jens Axboecb2c86f2006-10-26 13:48:34 +020014
15#include "parse.h"
Jens Axboea3d741f2008-02-27 18:32:33 +010016#include "debug.h"
Jens Axboe9f988e22010-03-04 10:42:38 +010017#include "options.h"
Jens Axboee25839d2012-11-06 10:49:42 +010018#include "minmax.h"
Vincent Kang Fufd112d32013-02-02 09:28:55 +010019#include "lib/ieee754.h"
Jens Axboecb2c86f2006-10-26 13:48:34 +020020
Jens Axboe9af4a242012-03-16 10:13:49 +010021static struct fio_option *__fio_options;
Jens Axboe3b8b7132008-06-10 19:46:23 +020022
Jens Axboef0857372007-03-19 13:15:23 +010023static int vp_cmp(const void *p1, const void *p2)
24{
25 const struct value_pair *vp1 = p1;
26 const struct value_pair *vp2 = p2;
27
28 return strlen(vp2->ival) - strlen(vp1->ival);
29}
30
Jens Axboece952ab2011-08-31 14:29:22 -060031static void posval_sort(struct fio_option *o, struct value_pair *vpmap)
Jens Axboef0857372007-03-19 13:15:23 +010032{
33 const struct value_pair *vp;
34 int entries;
35
36 memset(vpmap, 0, PARSE_MAX_VP * sizeof(struct value_pair));
37
38 for (entries = 0; entries < PARSE_MAX_VP; entries++) {
39 vp = &o->posval[entries];
40 if (!vp->ival || vp->ival[0] == '\0')
41 break;
42
43 memcpy(&vpmap[entries], vp, sizeof(*vp));
44 }
45
46 qsort(vpmap, entries, sizeof(struct value_pair), vp_cmp);
47}
48
Jens Axboe06b0be62011-10-04 10:31:10 +020049static void show_option_range(struct fio_option *o,
50 int (*logger)(const char *format, ...))
Jens Axboeb1ec1da2007-02-23 10:29:16 +010051{
Jens Axboe3c037bc2013-04-10 11:21:33 +020052 if (o->type == FIO_OPT_FLOAT_LIST) {
Bruce Cranab9461e2013-02-02 14:31:24 +000053 if (o->minfp == DBL_MIN && o->maxfp == DBL_MAX)
Yu-ju Hong83349192011-08-13 00:53:44 +020054 return;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010055
Jens Axboe06b0be62011-10-04 10:31:10 +020056 logger("%20s: min=%f", "range", o->minfp);
Bruce Cranab9461e2013-02-02 14:31:24 +000057 if (o->maxfp != DBL_MAX)
Jens Axboe06b0be62011-10-04 10:31:10 +020058 logger(", max=%f", o->maxfp);
59 logger("\n");
Jens Axboe3c037bc2013-04-10 11:21:33 +020060 } else if (!o->posval[0].ival) {
Yu-ju Hong83349192011-08-13 00:53:44 +020061 if (!o->minval && !o->maxval)
62 return;
63
Jens Axboe06b0be62011-10-04 10:31:10 +020064 logger("%20s: min=%d", "range", o->minval);
Yu-ju Hong83349192011-08-13 00:53:44 +020065 if (o->maxval)
Jens Axboe06b0be62011-10-04 10:31:10 +020066 logger(", max=%d", o->maxval);
67 logger("\n");
Yu-ju Hong83349192011-08-13 00:53:44 +020068 }
Jens Axboeb1ec1da2007-02-23 10:29:16 +010069}
70
71static void show_option_values(struct fio_option *o)
72{
Jens Axboea3073f42010-03-05 10:06:15 +010073 int i;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010074
Jens Axboea3073f42010-03-05 10:06:15 +010075 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboe78372132007-03-14 13:24:07 +010076 const struct value_pair *vp = &o->posval[i];
77
78 if (!vp->ival)
Jens Axboea3073f42010-03-05 10:06:15 +010079 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010080
Jens Axboe06b0be62011-10-04 10:31:10 +020081 log_info("%20s: %-10s", i == 0 ? "valid values" : "", vp->ival);
Jens Axboe78372132007-03-14 13:24:07 +010082 if (vp->help)
Jens Axboe06b0be62011-10-04 10:31:10 +020083 log_info(" %s", vp->help);
84 log_info("\n");
Jens Axboea3073f42010-03-05 10:06:15 +010085 }
Jens Axboeb1ec1da2007-02-23 10:29:16 +010086
87 if (i)
Jens Axboe06b0be62011-10-04 10:31:10 +020088 log_info("\n");
Jens Axboeb1ec1da2007-02-23 10:29:16 +010089}
90
Jens Axboe06b0be62011-10-04 10:31:10 +020091static void show_option_help(struct fio_option *o, int is_err)
Jens Axboed447a8c2009-07-17 22:26:15 +020092{
93 const char *typehelp[] = {
Jens Axboe07b32322010-03-05 09:48:44 +010094 "invalid",
Jens Axboed447a8c2009-07-17 22:26:15 +020095 "string (opt=bla)",
Jens Axboeae3fb6f2010-09-14 13:10:35 +020096 "string (opt=bla)",
Jens Axboed447a8c2009-07-17 22:26:15 +020097 "string with possible k/m/g postfix (opt=4k)",
98 "string with time postfix (opt=10s)",
99 "string (opt=bla)",
100 "string with dual range (opt=1k-4k,4k-8k)",
101 "integer value (opt=100)",
102 "boolean value (opt=1)",
Yu-ju Hong83349192011-08-13 00:53:44 +0200103 "list of floating point values separated by ':' (opt=5.9:7.8)",
Jens Axboed447a8c2009-07-17 22:26:15 +0200104 "no argument (opt)",
Jens Axboe07b32322010-03-05 09:48:44 +0100105 "deprecated",
Jens Axboed447a8c2009-07-17 22:26:15 +0200106 };
Jens Axboe06b0be62011-10-04 10:31:10 +0200107 int (*logger)(const char *format, ...);
108
109 if (is_err)
110 logger = log_err;
111 else
112 logger = log_info;
Jens Axboed447a8c2009-07-17 22:26:15 +0200113
114 if (o->alias)
Jens Axboe06b0be62011-10-04 10:31:10 +0200115 logger("%20s: %s\n", "alias", o->alias);
Jens Axboed447a8c2009-07-17 22:26:15 +0200116
Jens Axboe06b0be62011-10-04 10:31:10 +0200117 logger("%20s: %s\n", "type", typehelp[o->type]);
118 logger("%20s: %s\n", "default", o->def ? o->def : "no default");
Jens Axboe07b32322010-03-05 09:48:44 +0100119 if (o->prof_name)
Jens Axboe06b0be62011-10-04 10:31:10 +0200120 logger("%20s: only for profile '%s'\n", "valid", o->prof_name);
121 show_option_range(o, logger);
Jens Axboed447a8c2009-07-17 22:26:15 +0200122 show_option_values(o);
123}
124
Jens Axboecb2c86f2006-10-26 13:48:34 +0200125static unsigned long get_mult_time(char c)
126{
127 switch (c) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100128 case 'm':
129 case 'M':
130 return 60;
131 case 'h':
132 case 'H':
133 return 60 * 60;
134 case 'd':
135 case 'D':
136 return 24 * 60 * 60;
137 default:
138 return 1;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200139 }
140}
141
Jens Axboea03fb652013-03-29 12:20:51 -0600142static int is_separator(char c)
143{
144 switch (c) {
145 case ':':
146 case '-':
147 case ',':
148 case '/':
149 return 1;
150 default:
151 return 0;
152 }
153}
154
Jens Axboe7bb59102011-07-12 19:47:03 +0200155static unsigned long long __get_mult_bytes(const char *p, void *data,
156 int *percent)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200157{
Jens Axboed6978a32009-07-18 21:04:09 +0200158 unsigned int kb_base = fio_get_kb_base(data);
Jens Axboea639f0b2009-07-18 08:25:35 +0200159 unsigned long long ret = 1;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200160 unsigned int i, pow = 0, mult = kb_base;
161 char *c;
Jens Axboea639f0b2009-07-18 08:25:35 +0200162
Jens Axboe57fc29f2010-06-23 22:24:07 +0200163 if (!p)
164 return 1;
Jens Axboea639f0b2009-07-18 08:25:35 +0200165
Jens Axboe57fc29f2010-06-23 22:24:07 +0200166 c = strdup(p);
167
Jens Axboea03fb652013-03-29 12:20:51 -0600168 for (i = 0; i < strlen(c); i++) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200169 c[i] = tolower(c[i]);
Jens Axboea03fb652013-03-29 12:20:51 -0600170 if (is_separator(c[i])) {
171 c[i] = '\0';
172 break;
173 }
174 }
Jens Axboe57fc29f2010-06-23 22:24:07 +0200175
Jens Axboea04f1582012-03-07 10:53:29 +0100176 if (!strncmp("pib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200177 pow = 5;
178 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100179 } else if (!strncmp("tib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200180 pow = 4;
181 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100182 } else if (!strncmp("gib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200183 pow = 3;
184 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100185 } else if (!strncmp("mib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200186 pow = 2;
187 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100188 } else if (!strncmp("kib", c, 3)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200189 pow = 1;
190 mult = 1000;
Jens Axboea04f1582012-03-07 10:53:29 +0100191 } else if (!strncmp("p", c, 1) || !strncmp("pb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200192 pow = 5;
Jens Axboea04f1582012-03-07 10:53:29 +0100193 else if (!strncmp("t", c, 1) || !strncmp("tb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200194 pow = 4;
Jens Axboea04f1582012-03-07 10:53:29 +0100195 else if (!strncmp("g", c, 1) || !strncmp("gb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200196 pow = 3;
Jens Axboea04f1582012-03-07 10:53:29 +0100197 else if (!strncmp("m", c, 1) || !strncmp("mb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200198 pow = 2;
Jens Axboea04f1582012-03-07 10:53:29 +0100199 else if (!strncmp("k", c, 1) || !strncmp("kb", c, 2))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200200 pow = 1;
Jens Axboea04f1582012-03-07 10:53:29 +0100201 else if (!strncmp("%", c, 1)) {
Jens Axboe7bb59102011-07-12 19:47:03 +0200202 *percent = 1;
Jens Axboee721c572012-02-09 20:55:29 +0100203 free(c);
Jens Axboe7bb59102011-07-12 19:47:03 +0200204 return ret;
205 }
Jens Axboe57fc29f2010-06-23 22:24:07 +0200206
207 while (pow--)
208 ret *= (unsigned long long) mult;
209
210 free(c);
Jens Axboea639f0b2009-07-18 08:25:35 +0200211 return ret;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200212}
213
Jens Axboe7bb59102011-07-12 19:47:03 +0200214static unsigned long long get_mult_bytes(const char *str, int len, void *data,
Jens Axboe6925dd32011-09-07 22:10:11 +0200215 int *percent)
Jens Axboe57fc29f2010-06-23 22:24:07 +0200216{
Jens Axboe55ed9632011-03-27 20:55:09 +0200217 const char *p = str;
Jens Axboeba4ddd62011-09-07 22:11:00 +0200218 int digit_seen = 0;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200219
Jens Axboe1d1c1872010-07-29 10:50:05 +0200220 if (len < 2)
Jens Axboe7bb59102011-07-12 19:47:03 +0200221 return __get_mult_bytes(str, data, percent);
Jens Axboe1d1c1872010-07-29 10:50:05 +0200222
Steven Langd0c814e2011-10-28 08:37:13 +0200223 /*
224 * Go forward until we hit a non-digit, or +/- sign
225 */
Jens Axboe55ed9632011-03-27 20:55:09 +0200226 while ((p - str) <= len) {
Jens Axboeba4ddd62011-09-07 22:11:00 +0200227 if (!isdigit((int) *p) &&
228 (((*p != '+') && (*p != '-')) || digit_seen))
Jens Axboe55ed9632011-03-27 20:55:09 +0200229 break;
Jens Axboe3c703d12011-09-21 09:27:24 +0200230 digit_seen |= isdigit((int) *p);
Jens Axboe55ed9632011-03-27 20:55:09 +0200231 p++;
232 }
233
Jens Axboe7bb59102011-07-12 19:47:03 +0200234 if (!isalpha((int) *p) && (*p != '%'))
Jens Axboe57fc29f2010-06-23 22:24:07 +0200235 p = NULL;
236
Jens Axboe7bb59102011-07-12 19:47:03 +0200237 return __get_mult_bytes(p, data, percent);
Jens Axboe57fc29f2010-06-23 22:24:07 +0200238}
239
Jens Axboecb2c86f2006-10-26 13:48:34 +0200240/*
Yu-ju Hong83349192011-08-13 00:53:44 +0200241 * Convert string into a floating number. Return 1 for success and 0 otherwise.
242 */
Jens Axboee25839d2012-11-06 10:49:42 +0100243int str_to_float(const char *str, double *val)
Yu-ju Hong83349192011-08-13 00:53:44 +0200244{
245 return (1 == sscanf(str, "%lf", val));
246}
247
248/*
Jens Axboee1f36502006-10-27 10:54:08 +0200249 * convert string into decimal value, noting any size suffix
Jens Axboecb2c86f2006-10-26 13:48:34 +0200250 */
Jens Axboe6925dd32011-09-07 22:10:11 +0200251int str_to_decimal(const char *str, long long *val, int kilo, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200252{
Jens Axboeb347f9d2009-03-09 14:15:21 +0100253 int len, base;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200254
Jens Axboecb2c86f2006-10-26 13:48:34 +0200255 len = strlen(str);
Jens Axboef90eff52006-11-06 11:08:21 +0100256 if (!len)
257 return 1;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200258
Jens Axboeb347f9d2009-03-09 14:15:21 +0100259 if (strstr(str, "0x") || strstr(str, "0X"))
260 base = 16;
261 else
262 base = 10;
263
264 *val = strtoll(str, NULL, base);
Jens Axboecda866c2007-01-10 16:02:32 +0100265 if (*val == LONG_MAX && errno == ERANGE)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200266 return 1;
267
Jens Axboe7bb59102011-07-12 19:47:03 +0200268 if (kilo) {
269 unsigned long long mult;
270 int perc = 0;
271
Jens Axboe6925dd32011-09-07 22:10:11 +0200272 mult = get_mult_bytes(str, len, data, &perc);
Jens Axboe7bb59102011-07-12 19:47:03 +0200273 if (perc)
274 *val = -1ULL - *val;
275 else
276 *val *= mult;
277 } else
Jens Axboecb2c86f2006-10-26 13:48:34 +0200278 *val *= get_mult_time(str[len - 1]);
Jens Axboe787f7e92006-11-06 13:26:29 +0100279
Jens Axboecb2c86f2006-10-26 13:48:34 +0200280 return 0;
281}
282
Jens Axboe9af4a242012-03-16 10:13:49 +0100283int check_str_bytes(const char *p, long long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200284{
Jens Axboe6925dd32011-09-07 22:10:11 +0200285 return str_to_decimal(p, val, 1, data);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200286}
287
Jens Axboe06464902013-04-24 20:38:54 -0600288int check_str_time(const char *p, long long *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200289{
Jens Axboe6925dd32011-09-07 22:10:11 +0200290 return str_to_decimal(p, val, 0, NULL);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200291}
292
293void strip_blank_front(char **p)
294{
295 char *s = *p;
296
Jens Axboe4c8e9642011-10-15 14:37:38 +0200297 if (!strlen(s))
298 return;
Jens Axboe76cd9372011-07-08 21:14:57 +0200299 while (isspace((int) *s))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200300 s++;
Jens Axboe4d651da2007-03-28 19:34:53 +0200301
302 *p = s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200303}
304
305void strip_blank_end(char *p)
306{
Jens Axboe853ee7f2009-03-06 20:29:29 +0100307 char *start = p, *s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200308
Jens Axboe4c8e9642011-10-15 14:37:38 +0200309 if (!strlen(p))
310 return;
311
Jens Axboe523bfad2007-04-04 11:04:06 +0200312 s = strchr(p, ';');
313 if (s)
314 *s = '\0';
315 s = strchr(p, '#');
316 if (s)
317 *s = '\0';
318 if (s)
319 p = s;
320
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200321 s = p + strlen(p);
Jens Axboe76cd9372011-07-08 21:14:57 +0200322 while ((isspace((int) *s) || iscntrl((int) *s)) && (s > start))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200323 s--;
324
325 *(s + 1) = '\0';
326}
327
Jens Axboed6978a32009-07-18 21:04:09 +0200328static int check_range_bytes(const char *str, long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200329{
Jens Axboe57fc29f2010-06-23 22:24:07 +0200330 long long __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200331
Jens Axboe6925dd32011-09-07 22:10:11 +0200332 if (!str_to_decimal(str, &__val, 1, data)) {
Jens Axboe57fc29f2010-06-23 22:24:07 +0200333 *val = __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200334 return 0;
335 }
336
Jens Axboecb2c86f2006-10-26 13:48:34 +0200337 return 1;
338}
339
Jens Axboe63f29372007-01-10 13:20:09 +0100340static int check_int(const char *p, int *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200341{
Jens Axboe787f7e92006-11-06 13:26:29 +0100342 if (!strlen(p))
343 return 1;
Jens Axboed78ee462007-08-10 14:03:20 +0200344 if (strstr(p, "0x") || strstr(p, "0X")) {
Jens Axboea61bdfd2007-07-30 09:07:04 +0200345 if (sscanf(p, "%x", val) == 1)
346 return 0;
347 } else {
348 if (sscanf(p, "%u", val) == 1)
349 return 0;
350 }
Jens Axboecb2c86f2006-10-26 13:48:34 +0200351
352 return 1;
353}
354
Jens Axboe808def72010-07-14 16:27:02 -0600355static int opt_len(const char *str)
356{
357 char *postfix;
358
359 postfix = strchr(str, ':');
360 if (!postfix)
361 return strlen(str);
362
363 return (int)(postfix - str);
364}
365
Jens Axboe119cd932012-12-06 17:34:57 +0100366static int str_match_len(const struct value_pair *vp, const char *str)
367{
368 return max(strlen(vp->ival), opt_len(str));
369}
370
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100371#define val_store(ptr, val, off, or, data) \
Jens Axboe17abbe82006-11-06 11:23:10 +0100372 do { \
373 ptr = td_var((data), (off)); \
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100374 if ((or)) \
375 *ptr |= (val); \
376 else \
377 *ptr = (val); \
Jens Axboe17abbe82006-11-06 11:23:10 +0100378 } while (0)
379
Jens Axboef90eff52006-11-06 11:08:21 +0100380static int __handle_option(struct fio_option *o, const char *ptr, void *data,
Yu-ju Hong83349192011-08-13 00:53:44 +0200381 int first, int more, int curr)
Jens Axboee1f36502006-10-27 10:54:08 +0200382{
Erwan Velu2fdbefd2013-07-22 23:48:48 +0200383 int il=0, *ilp;
Vincent Kang Fufd112d32013-02-02 09:28:55 +0100384 fio_fp64_t *flp;
Jens Axboe63f29372007-01-10 13:20:09 +0100385 long long ull, *ullp;
386 long ul1, ul2;
Yu-ju Hong83349192011-08-13 00:53:44 +0200387 double uf;
Jens Axboebfe1d592012-11-29 21:33:03 +0100388 char **cp = NULL;
Jens Axboee42b01e2011-05-05 12:05:10 -0600389 int ret = 0, is_time = 0;
Jens Axboec44b1ff2011-08-30 20:43:53 -0600390 const struct value_pair *vp;
391 struct value_pair posval[PARSE_MAX_VP];
392 int i, all_skipped = 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200393
Jens Axboea3d741f2008-02-27 18:32:33 +0100394 dprint(FD_PARSE, "__handle_option=%s, type=%d, ptr=%s\n", o->name,
395 o->type, ptr);
396
Jens Axboee3cedca2008-11-19 19:57:52 +0100397 if (!ptr && o->type != FIO_OPT_STR_SET && o->type != FIO_OPT_STR) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200398 log_err("Option %s requires an argument\n", o->name);
Jens Axboe08e26e32006-11-21 13:15:10 +0100399 return 1;
400 }
401
Jens Axboee1f36502006-10-27 10:54:08 +0200402 switch (o->type) {
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100403 case FIO_OPT_STR:
404 case FIO_OPT_STR_MULTI: {
Jens Axboee1f36502006-10-27 10:54:08 +0200405 fio_opt_str_fn *fn = o->cb;
406
Jens Axboef0857372007-03-19 13:15:23 +0100407 posval_sort(o, posval);
408
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100409 ret = 1;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100410 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboef0857372007-03-19 13:15:23 +0100411 vp = &posval[i];
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100412 if (!vp->ival || vp->ival[0] == '\0')
Jens Axboea3073f42010-03-05 10:06:15 +0100413 continue;
Jens Axboeae2ddba2010-03-10 12:49:03 +0100414 all_skipped = 0;
Jens Axboe119cd932012-12-06 17:34:57 +0100415 if (!strncmp(vp->ival, ptr, str_match_len(vp, ptr))) {
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100416 ret = 0;
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100417 if (o->roff1) {
418 if (vp->or)
419 *(unsigned int *) o->roff1 |= vp->oval;
420 else
421 *(unsigned int *) o->roff1 = vp->oval;
422 } else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100423 if (!o->off1)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100424 continue;
425 val_store(ilp, vp->oval, o->off1, vp->or, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100426 }
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100427 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100428 }
429 }
430
Jens Axboeae2ddba2010-03-10 12:49:03 +0100431 if (ret && !all_skipped)
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100432 show_option_values(o);
433 else if (fn)
434 ret = fn(data, ptr);
Jens Axboee1f36502006-10-27 10:54:08 +0200435 break;
436 }
Jens Axboee42b01e2011-05-05 12:05:10 -0600437 case FIO_OPT_STR_VAL_TIME:
438 is_time = 1;
Jens Axboef7fa2652009-03-09 14:20:20 +0100439 case FIO_OPT_INT:
Jens Axboee42b01e2011-05-05 12:05:10 -0600440 case FIO_OPT_STR_VAL: {
441 fio_opt_str_val_fn *fn = o->cb;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200442 char tmp[128], *p;
443
444 strncpy(tmp, ptr, sizeof(tmp) - 1);
445 p = strchr(tmp, ',');
446 if (p)
447 *p = '\0';
Jens Axboee1f36502006-10-27 10:54:08 +0200448
Jens Axboee42b01e2011-05-05 12:05:10 -0600449 if (is_time)
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200450 ret = check_str_time(tmp, &ull);
Jens Axboee42b01e2011-05-05 12:05:10 -0600451 else
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200452 ret = check_str_bytes(tmp, &ull, data);
Jens Axboee42b01e2011-05-05 12:05:10 -0600453
Jens Axboeae3fcb52013-04-25 10:06:32 -0600454 dprint(FD_PARSE, " ret=%d, out=%llu\n", ret, ull);
455
Jens Axboee1f36502006-10-27 10:54:08 +0200456 if (ret)
457 break;
458
Jens Axboedb8e0162007-01-10 13:41:26 +0100459 if (o->maxval && ull > o->maxval) {
Jens Axboed4fc2f02012-09-24 14:32:26 +0200460 log_err("max value out of range: %llu"
461 " (%u max)\n", ull, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100462 return 1;
463 }
464 if (o->minval && ull < o->minval) {
Jens Axboed4fc2f02012-09-24 14:32:26 +0200465 log_err("min value out of range: %llu"
466 " (%u min)\n", ull, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100467 return 1;
468 }
Jens Axboed926d532013-04-09 21:02:15 +0200469 if (o->posval[0].ival) {
470 posval_sort(o, posval);
471
472 ret = 1;
473 for (i = 0; i < PARSE_MAX_VP; i++) {
474 vp = &posval[i];
475 if (!vp->ival || vp->ival[0] == '\0')
476 continue;
477 if (vp->oval == ull) {
478 ret = 0;
479 break;
480 }
481 }
482 if (ret) {
Jens Axboe128e4ca2013-04-10 11:06:34 +0200483 log_err("fio: value %llu not allowed:\n", ull);
484 show_option_values(o);
Jens Axboed926d532013-04-09 21:02:15 +0200485 return 1;
486 }
487 }
Jens Axboee1f36502006-10-27 10:54:08 +0200488
489 if (fn)
490 ret = fn(data, &ull);
491 else {
Jens Axboee01b22b2009-06-09 15:43:25 +0200492 if (o->type == FIO_OPT_INT) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100493 if (first) {
494 if (o->roff1)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100495 *(unsigned int *) o->roff1 = ull;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100496 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100497 val_store(ilp, ull, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100498 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200499 if (curr == 1) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100500 if (o->roff2)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100501 *(unsigned int *) o->roff2 = ull;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100502 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100503 val_store(ilp, ull, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100504 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200505 if (curr == 2) {
506 if (o->roff3)
507 *(unsigned int *) o->roff3 = ull;
508 else if (o->off3)
509 val_store(ilp, ull, o->off3, 0, data);
510 }
511 if (!more) {
512 if (curr < 1) {
513 if (o->roff2)
514 *(unsigned int *) o->roff2 = ull;
515 else if (o->off2)
516 val_store(ilp, ull, o->off2, 0, data);
517 }
518 if (curr < 2) {
519 if (o->roff3)
520 *(unsigned int *) o->roff3 = ull;
521 else if (o->off3)
522 val_store(ilp, ull, o->off3, 0, data);
523 }
524 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100525 } else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100526 if (first) {
527 if (o->roff1)
528 *(unsigned long long *) o->roff1 = ull;
529 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100530 val_store(ullp, ull, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100531 }
532 if (!more) {
533 if (o->roff2)
534 *(unsigned long long *) o->roff2 = ull;
535 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100536 val_store(ullp, ull, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100537 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100538 }
Jens Axboee1f36502006-10-27 10:54:08 +0200539 }
540 break;
541 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200542 case FIO_OPT_FLOAT_LIST: {
Jens Axboeeef02442013-02-06 08:51:57 +0100543 char *cp2;
544
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100545 if (first) {
546 /*
547 ** Initialize precision to 0 and zero out list
548 ** in case specified list is shorter than default
549 */
Jens Axboe3e260a42013-12-09 12:38:53 -0700550 if (o->off2) {
551 ul2 = 0;
552 ilp = td_var(data, o->off2);
553 *ilp = ul2;
554 }
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100555
556 flp = td_var(data, o->off1);
557 for(i = 0; i < o->maxlen; i++)
558 flp[i].u.f = 0.0;
559 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200560 if (curr >= o->maxlen) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200561 log_err("the list exceeding max length %d\n",
Yu-ju Hong83349192011-08-13 00:53:44 +0200562 o->maxlen);
563 return 1;
564 }
Jens Axboe3c3ed072012-03-27 09:12:39 +0200565 if (!str_to_float(ptr, &uf)) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200566 log_err("not a floating point value: %s\n", ptr);
Yu-ju Hong83349192011-08-13 00:53:44 +0200567 return 1;
568 }
Jens Axboe26650692013-02-02 09:56:23 +0100569 if (uf > o->maxfp) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200570 log_err("value out of range: %f"
Yu-ju Hong83349192011-08-13 00:53:44 +0200571 " (range max: %f)\n", uf, o->maxfp);
572 return 1;
573 }
Jens Axboe26650692013-02-02 09:56:23 +0100574 if (uf < o->minfp) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200575 log_err("value out of range: %f"
Yu-ju Hong83349192011-08-13 00:53:44 +0200576 " (range min: %f)\n", uf, o->minfp);
577 return 1;
578 }
579
580 flp = td_var(data, o->off1);
Vincent Kang Fufd112d32013-02-02 09:28:55 +0100581 flp[curr].u.f = uf;
Yu-ju Hong83349192011-08-13 00:53:44 +0200582
Jens Axboeae3fcb52013-04-25 10:06:32 -0600583 dprint(FD_PARSE, " out=%f\n", uf);
584
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100585 /*
586 ** Calculate precision for output by counting
587 ** number of digits after period. Find first
588 ** period in entire remaining list each time
589 */
590 cp2 = strchr(ptr, '.');
591 if (cp2 != NULL) {
Jens Axboeeef02442013-02-06 08:51:57 +0100592 int len = 0;
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100593
594 while (*++cp2 != '\0' && *cp2 >= '0' && *cp2 <= '9')
595 len++;
596
Jens Axboe3e260a42013-12-09 12:38:53 -0700597 if (o->off2) {
598 ilp = td_var(data, o->off2);
599 if (len > *ilp)
600 *ilp = len;
601 }
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100602 }
603
Yu-ju Hong83349192011-08-13 00:53:44 +0200604 break;
605 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100606 case FIO_OPT_STR_STORE: {
607 fio_opt_str_fn *fn = o->cb;
608
Steven Lang184b4092011-11-16 10:33:51 +0100609 if (o->roff1 || o->off1) {
610 if (o->roff1)
611 cp = (char **) o->roff1;
612 else if (o->off1)
613 cp = td_var(data, o->off1);
Jens Axboece952ab2011-08-31 14:29:22 -0600614
Steven Lang184b4092011-11-16 10:33:51 +0100615 *cp = strdup(ptr);
Jens Axboe1c964ce2011-08-31 16:45:03 -0600616 }
Jens Axboe02c6aad2010-03-04 13:49:11 +0100617
Steven Lang184b4092011-11-16 10:33:51 +0100618 if (fn)
619 ret = fn(data, ptr);
620 else if (o->posval[0].ival) {
621 posval_sort(o, posval);
Jens Axboec44b1ff2011-08-30 20:43:53 -0600622
Steven Lang184b4092011-11-16 10:33:51 +0100623 ret = 1;
624 for (i = 0; i < PARSE_MAX_VP; i++) {
625 vp = &posval[i];
626 if (!vp->ival || vp->ival[0] == '\0')
627 continue;
628 all_skipped = 0;
Jens Axboe119cd932012-12-06 17:34:57 +0100629 if (!strncmp(vp->ival, ptr, str_match_len(vp, ptr))) {
Steven Lang184b4092011-11-16 10:33:51 +0100630 char *rest;
631
632 ret = 0;
633 if (vp->cb)
634 fn = vp->cb;
635 rest = strstr(*cp ?: ptr, ":");
636 if (rest) {
637 if (*cp)
638 *rest = '\0';
639 ptr = rest + 1;
640 } else
641 ptr = NULL;
642 break;
643 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100644 }
645 }
Jens Axboec44b1ff2011-08-30 20:43:53 -0600646
Steven Lang184b4092011-11-16 10:33:51 +0100647 if (!all_skipped) {
648 if (ret && !*cp)
649 show_option_values(o);
650 else if (ret && *cp)
651 ret = 0;
652 else if (fn && ptr)
653 ret = fn(data, ptr);
654 }
Jens Axboec44b1ff2011-08-30 20:43:53 -0600655
Jens Axboee1f36502006-10-27 10:54:08 +0200656 break;
Jens Axboeaf52b342007-03-13 10:07:47 +0100657 }
Jens Axboee1f36502006-10-27 10:54:08 +0200658 case FIO_OPT_RANGE: {
Jens Axboeb765a372006-10-27 15:00:16 +0200659 char tmp[128];
Jens Axboee1f36502006-10-27 10:54:08 +0200660 char *p1, *p2;
661
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100662 strncpy(tmp, ptr, sizeof(tmp) - 1);
Jens Axboeb765a372006-10-27 15:00:16 +0200663
Dave Engberg31d23f42011-07-23 21:07:13 +0200664 /* Handle bsrange with separate read,write values: */
665 p1 = strchr(tmp, ',');
666 if (p1)
667 *p1 = '\0';
668
Jens Axboeb765a372006-10-27 15:00:16 +0200669 p1 = strchr(tmp, '-');
Jens Axboee1f36502006-10-27 10:54:08 +0200670 if (!p1) {
Jens Axboe0c9baf92007-01-11 15:59:26 +0100671 p1 = strchr(tmp, ':');
672 if (!p1) {
673 ret = 1;
674 break;
675 }
Jens Axboee1f36502006-10-27 10:54:08 +0200676 }
677
678 p2 = p1 + 1;
679 *p1 = '\0';
Jens Axboeb765a372006-10-27 15:00:16 +0200680 p1 = tmp;
Jens Axboee1f36502006-10-27 10:54:08 +0200681
682 ret = 1;
Jens Axboed6978a32009-07-18 21:04:09 +0200683 if (!check_range_bytes(p1, &ul1, data) &&
684 !check_range_bytes(p2, &ul2, data)) {
Jens Axboee1f36502006-10-27 10:54:08 +0200685 ret = 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200686 if (ul1 > ul2) {
Jens Axboef90eff52006-11-06 11:08:21 +0100687 unsigned long foo = ul1;
688
689 ul1 = ul2;
690 ul2 = foo;
691 }
692
693 if (first) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100694 if (o->roff1)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100695 *(unsigned int *) o->roff1 = ul1;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100696 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100697 val_store(ilp, ul1, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100698 if (o->roff2)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100699 *(unsigned int *) o->roff2 = ul2;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100700 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100701 val_store(ilp, ul2, o->off2, 0, data);
Jens Axboee1f36502006-10-27 10:54:08 +0200702 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200703 if (curr == 1) {
704 if (o->roff3 && o->roff4) {
705 *(unsigned int *) o->roff3 = ul1;
706 *(unsigned int *) o->roff4 = ul2;
707 } else if (o->off3 && o->off4) {
708 val_store(ilp, ul1, o->off3, 0, data);
709 val_store(ilp, ul2, o->off4, 0, data);
710 }
711 }
712 if (curr == 2) {
713 if (o->roff5 && o->roff6) {
714 *(unsigned int *) o->roff5 = ul1;
715 *(unsigned int *) o->roff6 = ul2;
716 } else if (o->off5 && o->off6) {
717 val_store(ilp, ul1, o->off5, 0, data);
718 val_store(ilp, ul2, o->off6, 0, data);
719 }
720 }
721 if (!more) {
722 if (curr < 1) {
723 if (o->roff3 && o->roff4) {
724 *(unsigned int *) o->roff3 = ul1;
725 *(unsigned int *) o->roff4 = ul2;
726 } else if (o->off3 && o->off4) {
727 val_store(ilp, ul1, o->off3, 0, data);
728 val_store(ilp, ul2, o->off4, 0, data);
729 }
730 }
731 if (curr < 2) {
732 if (o->roff5 && o->roff6) {
733 *(unsigned int *) o->roff5 = ul1;
734 *(unsigned int *) o->roff6 = ul2;
735 } else if (o->off5 && o->off6) {
736 val_store(ilp, ul1, o->off5, 0, data);
737 val_store(ilp, ul2, o->off6, 0, data);
738 }
739 }
Jens Axboe17abbe82006-11-06 11:23:10 +0100740 }
741 }
742
Jens Axboee1f36502006-10-27 10:54:08 +0200743 break;
744 }
Jens Axboe74ba1802011-07-15 09:09:15 +0200745 case FIO_OPT_BOOL:
746 case FIO_OPT_STR_SET: {
Jens Axboee1f36502006-10-27 10:54:08 +0200747 fio_opt_int_fn *fn = o->cb;
748
Jens Axboe74ba1802011-07-15 09:09:15 +0200749 if (ptr)
750 ret = check_int(ptr, &il);
751 else if (o->type == FIO_OPT_BOOL)
752 ret = 1;
753 else
754 il = 1;
755
Jens Axboeae3fcb52013-04-25 10:06:32 -0600756 dprint(FD_PARSE, " ret=%d, out=%d\n", ret, il);
757
Jens Axboee1f36502006-10-27 10:54:08 +0200758 if (ret)
759 break;
760
Jens Axboedb8e0162007-01-10 13:41:26 +0100761 if (o->maxval && il > (int) o->maxval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200762 log_err("max value out of range: %d (%d max)\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100763 il, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100764 return 1;
765 }
766 if (o->minval && il < o->minval) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200767 log_err("min value out of range: %d (%d min)\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100768 il, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100769 return 1;
770 }
Jens Axboee1f36502006-10-27 10:54:08 +0200771
Jens Axboe76a43db2007-01-11 13:24:44 +0100772 if (o->neg)
773 il = !il;
774
Jens Axboee1f36502006-10-27 10:54:08 +0200775 if (fn)
776 ret = fn(data, &il);
777 else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100778 if (first) {
779 if (o->roff1)
780 *(unsigned int *)o->roff1 = il;
781 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100782 val_store(ilp, il, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100783 }
784 if (!more) {
785 if (o->roff2)
786 *(unsigned int *) o->roff2 = il;
787 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100788 val_store(ilp, il, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100789 }
Jens Axboee1f36502006-10-27 10:54:08 +0200790 }
791 break;
792 }
Jens Axboe15ca1502008-04-07 09:26:02 +0200793 case FIO_OPT_DEPRECATED:
Jens Axboe06b0be62011-10-04 10:31:10 +0200794 log_info("Option %s is deprecated\n", o->name);
Jens Axboed9472272013-07-25 10:20:45 -0600795 ret = 1;
Jens Axboe15ca1502008-04-07 09:26:02 +0200796 break;
Jens Axboee1f36502006-10-27 10:54:08 +0200797 default:
Jens Axboe06b0be62011-10-04 10:31:10 +0200798 log_err("Bad option type %u\n", o->type);
Jens Axboee1f36502006-10-27 10:54:08 +0200799 ret = 1;
800 }
801
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200802 if (ret)
803 return ret;
804
Jens Axboed447a8c2009-07-17 22:26:15 +0200805 if (o->verify) {
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200806 ret = o->verify(o, data);
Jens Axboed447a8c2009-07-17 22:26:15 +0200807 if (ret) {
Jens Axboe28d7c362011-10-05 20:30:24 +0200808 log_err("Correct format for offending option\n");
809 log_err("%20s: %s\n", o->name, o->help);
Jens Axboe06b0be62011-10-04 10:31:10 +0200810 show_option_help(o, 1);
Jens Axboed447a8c2009-07-17 22:26:15 +0200811 }
812 }
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200813
Jens Axboee1f36502006-10-27 10:54:08 +0200814 return ret;
815}
816
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200817static int handle_option(struct fio_option *o, const char *__ptr, void *data)
Jens Axboef90eff52006-11-06 11:08:21 +0100818{
Jens Axboeb62bdf22010-03-10 12:36:17 +0100819 char *o_ptr, *ptr, *ptr2;
820 int ret, done;
Jens Axboef90eff52006-11-06 11:08:21 +0100821
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200822 dprint(FD_PARSE, "handle_option=%s, ptr=%s\n", o->name, __ptr);
823
Jens Axboeb62bdf22010-03-10 12:36:17 +0100824 o_ptr = ptr = NULL;
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200825 if (__ptr)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100826 o_ptr = ptr = strdup(__ptr);
Jens Axboea3d741f2008-02-27 18:32:33 +0100827
Jens Axboef90eff52006-11-06 11:08:21 +0100828 /*
Jens Axboeb62bdf22010-03-10 12:36:17 +0100829 * See if we have another set of parameters, hidden after a comma.
830 * Do this before parsing this round, to check if we should
Jens Axboe787f7e92006-11-06 13:26:29 +0100831 * copy set 1 options to set 2.
Jens Axboef90eff52006-11-06 11:08:21 +0100832 */
Jens Axboeb62bdf22010-03-10 12:36:17 +0100833 done = 0;
834 ret = 1;
835 do {
836 int __ret;
837
838 ptr2 = NULL;
839 if (ptr &&
840 (o->type != FIO_OPT_STR_STORE) &&
Yu-ju Hong83349192011-08-13 00:53:44 +0200841 (o->type != FIO_OPT_STR) &&
842 (o->type != FIO_OPT_FLOAT_LIST)) {
Jens Axboeb62bdf22010-03-10 12:36:17 +0100843 ptr2 = strchr(ptr, ',');
844 if (ptr2 && *(ptr2 + 1) == '\0')
845 *ptr2 = '\0';
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200846 if (o->type != FIO_OPT_STR_MULTI && o->type != FIO_OPT_RANGE) {
Jens Axboeb62bdf22010-03-10 12:36:17 +0100847 if (!ptr2)
848 ptr2 = strchr(ptr, ':');
849 if (!ptr2)
850 ptr2 = strchr(ptr, '-');
851 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200852 } else if (ptr && o->type == FIO_OPT_FLOAT_LIST) {
853 ptr2 = strchr(ptr, ':');
Jens Axboeb62bdf22010-03-10 12:36:17 +0100854 }
855
856 /*
857 * Don't return early if parsing the first option fails - if
858 * we are doing multiple arguments, we can allow the first one
859 * being empty.
860 */
Yu-ju Hong83349192011-08-13 00:53:44 +0200861 __ret = __handle_option(o, ptr, data, !done, !!ptr2, done);
Jens Axboeb62bdf22010-03-10 12:36:17 +0100862 if (ret)
863 ret = __ret;
864
Jens Axboe0c9baf92007-01-11 15:59:26 +0100865 if (!ptr2)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100866 break;
Jens Axboe787f7e92006-11-06 13:26:29 +0100867
Jens Axboeb62bdf22010-03-10 12:36:17 +0100868 ptr = ptr2 + 1;
869 done++;
870 } while (1);
Jens Axboe787f7e92006-11-06 13:26:29 +0100871
Jens Axboeb62bdf22010-03-10 12:36:17 +0100872 if (o_ptr)
873 free(o_ptr);
874 return ret;
Jens Axboef90eff52006-11-06 11:08:21 +0100875}
876
Steven Langde890a12011-11-09 14:03:34 +0100877static struct fio_option *get_option(char *opt,
Jens Axboe07b32322010-03-05 09:48:44 +0100878 struct fio_option *options, char **post)
Jens Axboe3b8b7132008-06-10 19:46:23 +0200879{
880 struct fio_option *o;
881 char *ret;
882
883 ret = strchr(opt, '=');
884 if (ret) {
885 *post = ret;
886 *ret = '\0';
Steven Langde890a12011-11-09 14:03:34 +0100887 ret = opt;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200888 (*post)++;
Jens Axboe43c129b2008-12-08 14:06:42 +0100889 strip_blank_end(ret);
Jens Axboe07b32322010-03-05 09:48:44 +0100890 o = find_option(options, ret);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200891 } else {
Jens Axboe07b32322010-03-05 09:48:44 +0100892 o = find_option(options, opt);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200893 *post = NULL;
894 }
895
896 return o;
897}
898
899static int opt_cmp(const void *p1, const void *p2)
900{
Steven Langde890a12011-11-09 14:03:34 +0100901 struct fio_option *o;
902 char *s, *foo;
Jens Axboe8cdabc12008-11-19 12:31:43 +0100903 int prio1, prio2;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200904
Jens Axboe8cdabc12008-11-19 12:31:43 +0100905 prio1 = prio2 = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200906
Steven Langde890a12011-11-09 14:03:34 +0100907 if (*(char **)p1) {
908 s = strdup(*((char **) p1));
Jens Axboe9af4a242012-03-16 10:13:49 +0100909 o = get_option(s, __fio_options, &foo);
Steven Langde890a12011-11-09 14:03:34 +0100910 if (o)
911 prio1 = o->prio;
912 free(s);
913 }
914 if (*(char **)p2) {
915 s = strdup(*((char **) p2));
Jens Axboe9af4a242012-03-16 10:13:49 +0100916 o = get_option(s, __fio_options, &foo);
Steven Langde890a12011-11-09 14:03:34 +0100917 if (o)
918 prio2 = o->prio;
919 free(s);
920 }
921
Jens Axboe8cdabc12008-11-19 12:31:43 +0100922 return prio2 - prio1;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200923}
924
925void sort_options(char **opts, struct fio_option *options, int num_opts)
926{
Jens Axboe9af4a242012-03-16 10:13:49 +0100927 __fio_options = options;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200928 qsort(opts, num_opts, sizeof(char *), opt_cmp);
Jens Axboe9af4a242012-03-16 10:13:49 +0100929 __fio_options = NULL;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200930}
931
Jens Axboeb4692822006-10-27 13:43:22 +0200932int parse_cmd_option(const char *opt, const char *val,
Jens Axboe07b32322010-03-05 09:48:44 +0100933 struct fio_option *options, void *data)
Jens Axboeb4692822006-10-27 13:43:22 +0200934{
935 struct fio_option *o;
936
Jens Axboe07b32322010-03-05 09:48:44 +0100937 o = find_option(options, opt);
Jens Axboeb4692822006-10-27 13:43:22 +0200938 if (!o) {
Jens Axboe06b0be62011-10-04 10:31:10 +0200939 log_err("Bad option <%s>\n", opt);
Jens Axboeb4692822006-10-27 13:43:22 +0200940 return 1;
941 }
942
Jens Axboeb1508cf2006-11-02 09:12:40 +0100943 if (!handle_option(o, val, data))
944 return 0;
945
Jens Axboe06b0be62011-10-04 10:31:10 +0200946 log_err("fio: failed parsing %s=%s\n", opt, val);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100947 return 1;
Jens Axboeb4692822006-10-27 13:43:22 +0200948}
949
Steven Langde890a12011-11-09 14:03:34 +0100950int parse_option(char *opt, const char *input,
Jens Axboe292cc472013-11-26 20:39:35 -0700951 struct fio_option *options, struct fio_option **o, void *data,
952 int dump_cmdline)
Jens Axboee1f36502006-10-27 10:54:08 +0200953{
Steven Langd0c814e2011-10-28 08:37:13 +0200954 char *post;
Jens Axboee1f36502006-10-27 10:54:08 +0200955
Steven Langd0c814e2011-10-28 08:37:13 +0200956 if (!opt) {
957 log_err("fio: failed parsing %s\n", input);
Steven Langde890a12011-11-09 14:03:34 +0100958 *o = NULL;
Jens Axboe38789b52010-03-03 09:23:20 +0100959 return 1;
Steven Langd0c814e2011-10-28 08:37:13 +0200960 }
Jens Axboee1f36502006-10-27 10:54:08 +0200961
Steven Langde890a12011-11-09 14:03:34 +0100962 *o = get_option(opt, options, &post);
963 if (!*o) {
964 if (post) {
965 int len = strlen(opt);
966 if (opt + len + 1 != post)
967 memmove(opt + len + 1, post, strlen(post));
968 opt[len] = '=';
969 }
Jens Axboee1f36502006-10-27 10:54:08 +0200970 return 1;
971 }
972
Jens Axboe292cc472013-11-26 20:39:35 -0700973 if (handle_option(*o, post, data)) {
974 log_err("fio: failed parsing %s\n", input);
975 return 1;
976 }
Jens Axboeb1508cf2006-11-02 09:12:40 +0100977
Jens Axboe292cc472013-11-26 20:39:35 -0700978 if (dump_cmdline) {
979 const char *delim;
980
981 if (!strcmp("description", (*o)->name))
982 delim = "\"";
983 else
984 delim = "";
985
986 log_info("--%s%s", (*o)->name, post ? "" : " ");
987 if (post)
988 log_info("=%s%s%s ", delim, post, delim);
989 }
990
991 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200992}
Jens Axboefd28ca42007-01-09 21:20:13 +0100993
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100994/*
995 * Option match, levenshtein distance. Handy for not quite remembering what
996 * the option name is.
997 */
998static int string_distance(const char *s1, const char *s2)
999{
1000 unsigned int s1_len = strlen(s1);
1001 unsigned int s2_len = strlen(s2);
1002 unsigned int *p, *q, *r;
1003 unsigned int i, j;
1004
1005 p = malloc(sizeof(unsigned int) * (s2_len + 1));
1006 q = malloc(sizeof(unsigned int) * (s2_len + 1));
1007
1008 p[0] = 0;
1009 for (i = 1; i <= s2_len; i++)
1010 p[i] = p[i - 1] + 1;
1011
1012 for (i = 1; i <= s1_len; i++) {
1013 q[0] = p[0] + 1;
1014 for (j = 1; j <= s2_len; j++) {
1015 unsigned int sub = p[j - 1];
1016
1017 if (s1[i - 1] != s2[j - 1])
1018 sub++;
1019
1020 q[j] = min(p[j] + 1, min(q[j - 1] + 1, sub));
1021 }
1022 r = p;
1023 p = q;
1024 q = r;
1025 }
1026
1027 i = p[s2_len];
1028 free(p);
1029 free(q);
1030 return i;
1031}
1032
Jens Axboeafdf9352007-07-31 16:14:34 +02001033static struct fio_option *find_child(struct fio_option *options,
1034 struct fio_option *o)
1035{
1036 struct fio_option *__o;
1037
Jens Axboefdf28742007-07-31 23:06:09 +02001038 for (__o = options + 1; __o->name; __o++)
1039 if (__o->parent && !strcmp(__o->parent, o->name))
Jens Axboeafdf9352007-07-31 16:14:34 +02001040 return __o;
1041
1042 return NULL;
1043}
1044
Jens Axboe323d9112008-03-01 15:12:14 +01001045static void __print_option(struct fio_option *o, struct fio_option *org,
1046 int level)
Jens Axboeafdf9352007-07-31 16:14:34 +02001047{
1048 char name[256], *p;
Jens Axboe323d9112008-03-01 15:12:14 +01001049 int depth;
Jens Axboeafdf9352007-07-31 16:14:34 +02001050
1051 if (!o)
1052 return;
Jens Axboeef9aff52007-07-31 22:56:53 +02001053 if (!org)
1054 org = o;
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001055
Jens Axboeafdf9352007-07-31 16:14:34 +02001056 p = name;
Jens Axboe323d9112008-03-01 15:12:14 +01001057 depth = level;
1058 while (depth--)
1059 p += sprintf(p, "%s", " ");
Jens Axboeafdf9352007-07-31 16:14:34 +02001060
1061 sprintf(p, "%s", o->name);
1062
Jens Axboe28d7c362011-10-05 20:30:24 +02001063 log_info("%-24s: %s\n", name, o->help);
Jens Axboe323d9112008-03-01 15:12:14 +01001064}
1065
1066static void print_option(struct fio_option *o)
1067{
1068 struct fio_option *parent;
1069 struct fio_option *__o;
1070 unsigned int printed;
1071 unsigned int level;
1072
1073 __print_option(o, NULL, 0);
1074 parent = o;
1075 level = 0;
1076 do {
1077 level++;
1078 printed = 0;
1079
1080 while ((__o = find_child(o, parent)) != NULL) {
1081 __print_option(__o, o, level);
1082 o = __o;
1083 printed++;
1084 }
1085
1086 parent = o;
1087 } while (printed);
Jens Axboeafdf9352007-07-31 16:14:34 +02001088}
1089
Jens Axboe07b32322010-03-05 09:48:44 +01001090int show_cmd_help(struct fio_option *options, const char *name)
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001091{
1092 struct fio_option *o, *closest;
Jens Axboed091d092010-04-01 19:56:23 +02001093 unsigned int best_dist = -1U;
Jens Axboe29fc6af2007-01-09 21:22:02 +01001094 int found = 0;
Jens Axboe320beef2007-03-01 10:44:12 +01001095 int show_all = 0;
1096
1097 if (!name || !strcmp(name, "all"))
1098 show_all = 1;
Jens Axboefd28ca42007-01-09 21:20:13 +01001099
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001100 closest = NULL;
1101 best_dist = -1;
Jens Axboe4945ba12007-01-11 14:36:56 +01001102 for (o = &options[0]; o->name; o++) {
Jens Axboe320beef2007-03-01 10:44:12 +01001103 int match = 0;
1104
Jens Axboe15ca1502008-04-07 09:26:02 +02001105 if (o->type == FIO_OPT_DEPRECATED)
1106 continue;
Jens Axboe07b32322010-03-05 09:48:44 +01001107 if (!exec_profile && o->prof_name)
1108 continue;
Jens Axboe4ac23d22013-05-23 21:14:03 +02001109 if (exec_profile && !(o->prof_name && !strcmp(exec_profile, o->prof_name)))
1110 continue;
Jens Axboe15ca1502008-04-07 09:26:02 +02001111
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001112 if (name) {
Jens Axboe7f9348f2007-03-15 14:09:28 +01001113 if (!strcmp(name, o->name) ||
1114 (o->alias && !strcmp(name, o->alias)))
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001115 match = 1;
1116 else {
1117 unsigned int dist;
1118
1119 dist = string_distance(name, o->name);
1120 if (dist < best_dist) {
1121 best_dist = dist;
1122 closest = o;
1123 }
1124 }
1125 }
Jens Axboefd28ca42007-01-09 21:20:13 +01001126
1127 if (show_all || match) {
Jens Axboe29fc6af2007-01-09 21:22:02 +01001128 found = 1;
Jens Axboec167ded2007-03-14 13:02:53 +01001129 if (match)
Jens Axboe28d7c362011-10-05 20:30:24 +02001130 log_info("%20s: %s\n", o->name, o->help);
Jens Axboec167ded2007-03-14 13:02:53 +01001131 if (show_all) {
Jens Axboeafdf9352007-07-31 16:14:34 +02001132 if (!o->parent)
Jens Axboe323d9112008-03-01 15:12:14 +01001133 print_option(o);
Jens Axboe4945ba12007-01-11 14:36:56 +01001134 continue;
Jens Axboec167ded2007-03-14 13:02:53 +01001135 }
Jens Axboefd28ca42007-01-09 21:20:13 +01001136 }
1137
Jens Axboe70df2f12007-01-11 14:04:47 +01001138 if (!match)
1139 continue;
1140
Jens Axboe06b0be62011-10-04 10:31:10 +02001141 show_option_help(o, 0);
Jens Axboefd28ca42007-01-09 21:20:13 +01001142 }
1143
Jens Axboe29fc6af2007-01-09 21:22:02 +01001144 if (found)
1145 return 0;
Jens Axboefd28ca42007-01-09 21:20:13 +01001146
Jens Axboe28d7c362011-10-05 20:30:24 +02001147 log_err("No such command: %s", name);
Jens Axboed091d092010-04-01 19:56:23 +02001148
1149 /*
1150 * Only print an appropriately close option, one where the edit
1151 * distance isn't too big. Otherwise we get crazy matches.
1152 */
1153 if (closest && best_dist < 3) {
Jens Axboe28d7c362011-10-05 20:30:24 +02001154 log_info(" - showing closest match\n");
1155 log_info("%20s: %s\n", closest->name, closest->help);
Jens Axboe06b0be62011-10-04 10:31:10 +02001156 show_option_help(closest, 0);
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001157 } else
Jens Axboe28d7c362011-10-05 20:30:24 +02001158 log_info("\n");
Jens Axboe0e9f7fa2007-03-01 14:05:30 +01001159
Jens Axboe29fc6af2007-01-09 21:22:02 +01001160 return 1;
Jens Axboefd28ca42007-01-09 21:20:13 +01001161}
Jens Axboeee738492007-01-10 11:23:16 +01001162
Jens Axboe13335dd2007-01-10 13:14:02 +01001163/*
1164 * Handle parsing of default parameters.
1165 */
Jens Axboeee738492007-01-10 11:23:16 +01001166void fill_default_options(void *data, struct fio_option *options)
1167{
Jens Axboe4945ba12007-01-11 14:36:56 +01001168 struct fio_option *o;
Jens Axboeee738492007-01-10 11:23:16 +01001169
Jens Axboea3d741f2008-02-27 18:32:33 +01001170 dprint(FD_PARSE, "filling default options\n");
1171
Jens Axboe4945ba12007-01-11 14:36:56 +01001172 for (o = &options[0]; o->name; o++)
Jens Axboeee738492007-01-10 11:23:16 +01001173 if (o->def)
1174 handle_option(o, o->def, data);
Jens Axboeee738492007-01-10 11:23:16 +01001175}
Jens Axboe13335dd2007-01-10 13:14:02 +01001176
Jens Axboe9f988e22010-03-04 10:42:38 +01001177void option_init(struct fio_option *o)
1178{
1179 if (o->type == FIO_OPT_DEPRECATED)
1180 return;
1181 if (o->type == FIO_OPT_BOOL) {
1182 o->minval = 0;
1183 o->maxval = 1;
1184 }
Jens Axboed4fc2f02012-09-24 14:32:26 +02001185 if (o->type == FIO_OPT_INT) {
1186 if (!o->maxval)
1187 o->maxval = UINT_MAX;
1188 }
Yu-ju Hong83349192011-08-13 00:53:44 +02001189 if (o->type == FIO_OPT_FLOAT_LIST) {
Bruce Cranab9461e2013-02-02 14:31:24 +00001190 o->minfp = DBL_MIN;
1191 o->maxfp = DBL_MAX;
Yu-ju Hong83349192011-08-13 00:53:44 +02001192 }
Jens Axboe9f988e22010-03-04 10:42:38 +01001193 if (o->type == FIO_OPT_STR_SET && o->def) {
Jens Axboe06b0be62011-10-04 10:31:10 +02001194 log_err("Option %s: string set option with"
Jens Axboe9f988e22010-03-04 10:42:38 +01001195 " default will always be true\n", o->name);
1196 }
Jens Axboe06b0be62011-10-04 10:31:10 +02001197 if (!o->cb && (!o->off1 && !o->roff1))
1198 log_err("Option %s: neither cb nor offset given\n", o->name);
Jens Axboe22754742013-04-10 13:05:23 +02001199 if (!o->category) {
Jens Axboecca5b5b2013-04-10 19:35:25 +02001200 log_info("Option %s: no category defined. Setting to misc\n", o->name);
Jens Axboe22754742013-04-10 13:05:23 +02001201 o->category = FIO_OPT_C_GENERAL;
Jens Axboeffd78212013-04-10 13:07:43 +02001202 o->group = FIO_OPT_G_INVALID;
Jens Axboe22754742013-04-10 13:05:23 +02001203 }
Jens Axboe5f6ddf12010-03-09 20:40:44 +01001204 if (o->type == FIO_OPT_STR || o->type == FIO_OPT_STR_STORE ||
1205 o->type == FIO_OPT_STR_MULTI)
Jens Axboe9f988e22010-03-04 10:42:38 +01001206 return;
Jens Axboee2de69d2010-03-04 14:05:48 +01001207 if (o->cb && ((o->off1 || o->off2 || o->off3 || o->off4) ||
1208 (o->roff1 || o->roff2 || o->roff3 || o->roff4))) {
Jens Axboe06b0be62011-10-04 10:31:10 +02001209 log_err("Option %s: both cb and offset given\n", o->name);
Jens Axboe9f988e22010-03-04 10:42:38 +01001210 }
1211}
1212
Jens Axboe13335dd2007-01-10 13:14:02 +01001213/*
1214 * Sanitize the options structure. For now it just sets min/max for bool
Jens Axboe5b0a8882007-01-11 14:40:27 +01001215 * values and whether both callback and offsets are given.
Jens Axboe13335dd2007-01-10 13:14:02 +01001216 */
1217void options_init(struct fio_option *options)
1218{
Jens Axboe4945ba12007-01-11 14:36:56 +01001219 struct fio_option *o;
Jens Axboe13335dd2007-01-10 13:14:02 +01001220
Jens Axboea3d741f2008-02-27 18:32:33 +01001221 dprint(FD_PARSE, "init options\n");
1222
Jens Axboe90265352012-03-19 20:29:44 +01001223 for (o = &options[0]; o->name; o++) {
Jens Axboe9f988e22010-03-04 10:42:38 +01001224 option_init(o);
Jens Axboe90265352012-03-19 20:29:44 +01001225 if (o->inverse)
1226 o->inv_opt = find_option(options, o->inverse);
1227 }
Jens Axboe13335dd2007-01-10 13:14:02 +01001228}
Jens Axboe7e356b22011-10-14 10:55:16 +02001229
1230void options_free(struct fio_option *options, void *data)
1231{
1232 struct fio_option *o;
1233 char **ptr;
1234
1235 dprint(FD_PARSE, "free options\n");
1236
1237 for (o = &options[0]; o->name; o++) {
Steven Langde890a12011-11-09 14:03:34 +01001238 if (o->type != FIO_OPT_STR_STORE || !o->off1)
Jens Axboe7e356b22011-10-14 10:55:16 +02001239 continue;
1240
1241 ptr = td_var(data, o->off1);
1242 if (*ptr) {
1243 free(*ptr);
1244 *ptr = NULL;
1245 }
1246 }
1247}