blob: bb138e55f967fbeb6aa09690b79fa4b18092cbb4 [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>
Jens Axboecb2c86f2006-10-26 13:48:34 +020012
13#include "parse.h"
Jens Axboea3d741f2008-02-27 18:32:33 +010014#include "debug.h"
Jens Axboe9f988e22010-03-04 10:42:38 +010015#include "options.h"
Jens Axboecb2c86f2006-10-26 13:48:34 +020016
Jens Axboe3b8b7132008-06-10 19:46:23 +020017static struct fio_option *fio_options;
Jens Axboed6978a32009-07-18 21:04:09 +020018extern unsigned int fio_get_kb_base(void *);
Jens Axboe3b8b7132008-06-10 19:46:23 +020019
Jens Axboef0857372007-03-19 13:15:23 +010020static int vp_cmp(const void *p1, const void *p2)
21{
22 const struct value_pair *vp1 = p1;
23 const struct value_pair *vp2 = p2;
24
25 return strlen(vp2->ival) - strlen(vp1->ival);
26}
27
28static void posval_sort(struct fio_option *o, struct value_pair *vpmap)
29{
30 const struct value_pair *vp;
31 int entries;
32
33 memset(vpmap, 0, PARSE_MAX_VP * sizeof(struct value_pair));
34
35 for (entries = 0; entries < PARSE_MAX_VP; entries++) {
36 vp = &o->posval[entries];
37 if (!vp->ival || vp->ival[0] == '\0')
38 break;
39
40 memcpy(&vpmap[entries], vp, sizeof(*vp));
41 }
42
43 qsort(vpmap, entries, sizeof(struct value_pair), vp_cmp);
44}
45
Jens Axboed447a8c2009-07-17 22:26:15 +020046static void show_option_range(struct fio_option *o, FILE *out)
Jens Axboeb1ec1da2007-02-23 10:29:16 +010047{
48 if (!o->minval && !o->maxval)
49 return;
50
Jens Axboed447a8c2009-07-17 22:26:15 +020051 fprintf(out, "%20s: min=%d", "range", o->minval);
Jens Axboe39801272009-07-01 09:06:12 +020052 if (o->maxval)
Jens Axboed447a8c2009-07-17 22:26:15 +020053 fprintf(out, ", max=%d", o->maxval);
54 fprintf(out, "\n");
Jens Axboeb1ec1da2007-02-23 10:29:16 +010055}
56
57static void show_option_values(struct fio_option *o)
58{
Jens Axboea3073f42010-03-05 10:06:15 +010059 int i;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010060
Jens Axboea3073f42010-03-05 10:06:15 +010061 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboe78372132007-03-14 13:24:07 +010062 const struct value_pair *vp = &o->posval[i];
63
64 if (!vp->ival)
Jens Axboea3073f42010-03-05 10:06:15 +010065 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +010066
Jens Axboe78372132007-03-14 13:24:07 +010067 printf("%20s: %-10s", i == 0 ? "valid values" : "", vp->ival);
68 if (vp->help)
69 printf(" %s", vp->help);
70 printf("\n");
Jens Axboea3073f42010-03-05 10:06:15 +010071 }
Jens Axboeb1ec1da2007-02-23 10:29:16 +010072
73 if (i)
74 printf("\n");
75}
76
Jens Axboed447a8c2009-07-17 22:26:15 +020077static void show_option_help(struct fio_option *o, FILE *out)
78{
79 const char *typehelp[] = {
Jens Axboe07b32322010-03-05 09:48:44 +010080 "invalid",
Jens Axboed447a8c2009-07-17 22:26:15 +020081 "string (opt=bla)",
Jens Axboeae3fb6f2010-09-14 13:10:35 +020082 "string (opt=bla)",
Jens Axboed447a8c2009-07-17 22:26:15 +020083 "string with possible k/m/g postfix (opt=4k)",
84 "string with time postfix (opt=10s)",
85 "string (opt=bla)",
86 "string with dual range (opt=1k-4k,4k-8k)",
87 "integer value (opt=100)",
88 "boolean value (opt=1)",
89 "no argument (opt)",
Jens Axboe07b32322010-03-05 09:48:44 +010090 "deprecated",
Jens Axboed447a8c2009-07-17 22:26:15 +020091 };
92
93 if (o->alias)
94 fprintf(out, "%20s: %s\n", "alias", o->alias);
95
96 fprintf(out, "%20s: %s\n", "type", typehelp[o->type]);
97 fprintf(out, "%20s: %s\n", "default", o->def ? o->def : "no default");
Jens Axboe07b32322010-03-05 09:48:44 +010098 if (o->prof_name)
99 fprintf(out, "%20s: only for profile '%s'\n", "valid", o->prof_name);
Jens Axboed447a8c2009-07-17 22:26:15 +0200100 show_option_range(o, stdout);
101 show_option_values(o);
102}
103
Jens Axboecb2c86f2006-10-26 13:48:34 +0200104static unsigned long get_mult_time(char c)
105{
106 switch (c) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100107 case 'm':
108 case 'M':
109 return 60;
110 case 'h':
111 case 'H':
112 return 60 * 60;
113 case 'd':
114 case 'D':
115 return 24 * 60 * 60;
116 default:
117 return 1;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200118 }
119}
120
Jens Axboe57fc29f2010-06-23 22:24:07 +0200121static unsigned long long __get_mult_bytes(const char *p, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200122{
Jens Axboed6978a32009-07-18 21:04:09 +0200123 unsigned int kb_base = fio_get_kb_base(data);
Jens Axboea639f0b2009-07-18 08:25:35 +0200124 unsigned long long ret = 1;
Jens Axboe57fc29f2010-06-23 22:24:07 +0200125 unsigned int i, pow = 0, mult = kb_base;
126 char *c;
Jens Axboea639f0b2009-07-18 08:25:35 +0200127
Jens Axboe57fc29f2010-06-23 22:24:07 +0200128 if (!p)
129 return 1;
Jens Axboea639f0b2009-07-18 08:25:35 +0200130
Jens Axboe57fc29f2010-06-23 22:24:07 +0200131 c = strdup(p);
132
133 for (i = 0; i < strlen(c); i++)
134 c[i] = tolower(c[i]);
135
136 if (!strcmp("pib", c)) {
137 pow = 5;
138 mult = 1000;
139 } else if (!strcmp("tib", c)) {
140 pow = 4;
141 mult = 1000;
142 } else if (!strcmp("gib", c)) {
143 pow = 3;
144 mult = 1000;
145 } else if (!strcmp("mib", c)) {
146 pow = 2;
147 mult = 1000;
148 } else if (!strcmp("kib", c)) {
149 pow = 1;
150 mult = 1000;
151 } else if (!strcmp("p", c) || !strcmp("pb", c))
152 pow = 5;
153 else if (!strcmp("t", c) || !strcmp("tb", c))
154 pow = 4;
155 else if (!strcmp("g", c) || !strcmp("gb", c))
156 pow = 3;
157 else if (!strcmp("m", c) || !strcmp("mb", c))
158 pow = 2;
159 else if (!strcmp("k", c) || !strcmp("kb", c))
160 pow = 1;
161
162 while (pow--)
163 ret *= (unsigned long long) mult;
164
165 free(c);
Jens Axboea639f0b2009-07-18 08:25:35 +0200166 return ret;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200167}
168
Jens Axboe57fc29f2010-06-23 22:24:07 +0200169static unsigned long long get_mult_bytes(const char *str, int len, void *data)
170{
171 const char *p;
172
Jens Axboe1d1c1872010-07-29 10:50:05 +0200173 if (len < 2)
174 return __get_mult_bytes(str, data);
175
Jens Axboe57fc29f2010-06-23 22:24:07 +0200176 /*
177 * if the last char is 'b' or 'B', the user likely used
178 * "1gb" instead of just "1g". If the second to last is also
179 * a letter, adjust.
180 */
181 p = str + len - 1;
182 while (isalpha(*(p - 1)))
183 p--;
184 if (!isalpha(*p))
185 p = NULL;
186
187 return __get_mult_bytes(p, data);
188}
189
Jens Axboecb2c86f2006-10-26 13:48:34 +0200190/*
Jens Axboee1f36502006-10-27 10:54:08 +0200191 * convert string into decimal value, noting any size suffix
Jens Axboecb2c86f2006-10-26 13:48:34 +0200192 */
Jens Axboed6978a32009-07-18 21:04:09 +0200193int str_to_decimal(const char *str, long long *val, int kilo, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200194{
Jens Axboeb347f9d2009-03-09 14:15:21 +0100195 int len, base;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200196
Jens Axboecb2c86f2006-10-26 13:48:34 +0200197 len = strlen(str);
Jens Axboef90eff52006-11-06 11:08:21 +0100198 if (!len)
199 return 1;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200200
Jens Axboeb347f9d2009-03-09 14:15:21 +0100201 if (strstr(str, "0x") || strstr(str, "0X"))
202 base = 16;
203 else
204 base = 10;
205
206 *val = strtoll(str, NULL, base);
Jens Axboecda866c2007-01-10 16:02:32 +0100207 if (*val == LONG_MAX && errno == ERANGE)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200208 return 1;
209
Jens Axboe57fc29f2010-06-23 22:24:07 +0200210 if (kilo)
211 *val *= get_mult_bytes(str, len, data);
212 else
Jens Axboecb2c86f2006-10-26 13:48:34 +0200213 *val *= get_mult_time(str[len - 1]);
Jens Axboe787f7e92006-11-06 13:26:29 +0100214
Jens Axboecb2c86f2006-10-26 13:48:34 +0200215 return 0;
216}
217
Jens Axboed6978a32009-07-18 21:04:09 +0200218static int check_str_bytes(const char *p, long long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200219{
Jens Axboed6978a32009-07-18 21:04:09 +0200220 return str_to_decimal(p, val, 1, data);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200221}
222
Jens Axboe63f29372007-01-10 13:20:09 +0100223static int check_str_time(const char *p, long long *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200224{
Jens Axboed6978a32009-07-18 21:04:09 +0200225 return str_to_decimal(p, val, 0, NULL);
Jens Axboecb2c86f2006-10-26 13:48:34 +0200226}
227
228void strip_blank_front(char **p)
229{
230 char *s = *p;
231
232 while (isspace(*s))
233 s++;
Jens Axboe4d651da2007-03-28 19:34:53 +0200234
235 *p = s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200236}
237
238void strip_blank_end(char *p)
239{
Jens Axboe853ee7f2009-03-06 20:29:29 +0100240 char *start = p, *s;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200241
Jens Axboe523bfad2007-04-04 11:04:06 +0200242 s = strchr(p, ';');
243 if (s)
244 *s = '\0';
245 s = strchr(p, '#');
246 if (s)
247 *s = '\0';
248 if (s)
249 p = s;
250
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200251 s = p + strlen(p);
Jens Axboe853ee7f2009-03-06 20:29:29 +0100252 while ((isspace(*s) || iscntrl(*s)) && (s > start))
Jens Axboecb2c86f2006-10-26 13:48:34 +0200253 s--;
254
255 *(s + 1) = '\0';
256}
257
Jens Axboed6978a32009-07-18 21:04:09 +0200258static int check_range_bytes(const char *str, long *val, void *data)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200259{
Jens Axboe57fc29f2010-06-23 22:24:07 +0200260 long long __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200261
Jens Axboe57fc29f2010-06-23 22:24:07 +0200262 if (!str_to_decimal(str, &__val, 1, data)) {
263 *val = __val;
Jens Axboecb2c86f2006-10-26 13:48:34 +0200264 return 0;
265 }
266
Jens Axboecb2c86f2006-10-26 13:48:34 +0200267 return 1;
268}
269
Jens Axboe63f29372007-01-10 13:20:09 +0100270static int check_int(const char *p, int *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200271{
Jens Axboe787f7e92006-11-06 13:26:29 +0100272 if (!strlen(p))
273 return 1;
Jens Axboed78ee462007-08-10 14:03:20 +0200274 if (strstr(p, "0x") || strstr(p, "0X")) {
Jens Axboea61bdfd2007-07-30 09:07:04 +0200275 if (sscanf(p, "%x", val) == 1)
276 return 0;
277 } else {
278 if (sscanf(p, "%u", val) == 1)
279 return 0;
280 }
Jens Axboecb2c86f2006-10-26 13:48:34 +0200281
282 return 1;
283}
284
Jens Axboe808def72010-07-14 16:27:02 -0600285static int opt_len(const char *str)
286{
287 char *postfix;
288
289 postfix = strchr(str, ':');
290 if (!postfix)
291 return strlen(str);
292
293 return (int)(postfix - str);
294}
295
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100296#define val_store(ptr, val, off, or, data) \
Jens Axboe17abbe82006-11-06 11:23:10 +0100297 do { \
298 ptr = td_var((data), (off)); \
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100299 if ((or)) \
300 *ptr |= (val); \
301 else \
302 *ptr = (val); \
Jens Axboe17abbe82006-11-06 11:23:10 +0100303 } while (0)
304
Jens Axboef90eff52006-11-06 11:08:21 +0100305static int __handle_option(struct fio_option *o, const char *ptr, void *data,
Jens Axboe787f7e92006-11-06 13:26:29 +0100306 int first, int more)
Jens Axboee1f36502006-10-27 10:54:08 +0200307{
Jens Axboe63f29372007-01-10 13:20:09 +0100308 int il, *ilp;
309 long long ull, *ullp;
310 long ul1, ul2;
Jens Axboeb4692822006-10-27 13:43:22 +0200311 char **cp;
Jens Axboee1f36502006-10-27 10:54:08 +0200312 int ret = 0, is_time = 0;
313
Jens Axboea3d741f2008-02-27 18:32:33 +0100314 dprint(FD_PARSE, "__handle_option=%s, type=%d, ptr=%s\n", o->name,
315 o->type, ptr);
316
Jens Axboee3cedca2008-11-19 19:57:52 +0100317 if (!ptr && o->type != FIO_OPT_STR_SET && o->type != FIO_OPT_STR) {
Jens Axboe08e26e32006-11-21 13:15:10 +0100318 fprintf(stderr, "Option %s requires an argument\n", o->name);
319 return 1;
320 }
321
Jens Axboee1f36502006-10-27 10:54:08 +0200322 switch (o->type) {
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100323 case FIO_OPT_STR:
324 case FIO_OPT_STR_MULTI: {
Jens Axboee1f36502006-10-27 10:54:08 +0200325 fio_opt_str_fn *fn = o->cb;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100326 const struct value_pair *vp;
Jens Axboef0857372007-03-19 13:15:23 +0100327 struct value_pair posval[PARSE_MAX_VP];
Jens Axboeae2ddba2010-03-10 12:49:03 +0100328 int i, all_skipped = 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200329
Jens Axboef0857372007-03-19 13:15:23 +0100330 posval_sort(o, posval);
331
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100332 ret = 1;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100333 for (i = 0; i < PARSE_MAX_VP; i++) {
Jens Axboef0857372007-03-19 13:15:23 +0100334 vp = &posval[i];
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100335 if (!vp->ival || vp->ival[0] == '\0')
Jens Axboea3073f42010-03-05 10:06:15 +0100336 continue;
Jens Axboeae2ddba2010-03-10 12:49:03 +0100337 all_skipped = 0;
Jens Axboe808def72010-07-14 16:27:02 -0600338 if (!strncmp(vp->ival, ptr, opt_len(ptr))) {
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100339 ret = 0;
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100340 if (o->roff1) {
341 if (vp->or)
342 *(unsigned int *) o->roff1 |= vp->oval;
343 else
344 *(unsigned int *) o->roff1 = vp->oval;
345 } else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100346 if (!o->off1)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100347 continue;
348 val_store(ilp, vp->oval, o->off1, vp->or, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100349 }
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100350 continue;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100351 }
352 }
353
Jens Axboeae2ddba2010-03-10 12:49:03 +0100354 if (ret && !all_skipped)
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100355 show_option_values(o);
356 else if (fn)
357 ret = fn(data, ptr);
Jens Axboee1f36502006-10-27 10:54:08 +0200358 break;
359 }
360 case FIO_OPT_STR_VAL_TIME:
361 is_time = 1;
Jens Axboef7fa2652009-03-09 14:20:20 +0100362 case FIO_OPT_INT:
Jens Axboee01b22b2009-06-09 15:43:25 +0200363 case FIO_OPT_STR_VAL: {
Jens Axboee1f36502006-10-27 10:54:08 +0200364 fio_opt_str_val_fn *fn = o->cb;
365
366 if (is_time)
367 ret = check_str_time(ptr, &ull);
368 else
Jens Axboed6978a32009-07-18 21:04:09 +0200369 ret = check_str_bytes(ptr, &ull, data);
Jens Axboee1f36502006-10-27 10:54:08 +0200370
371 if (ret)
372 break;
373
Jens Axboedb8e0162007-01-10 13:41:26 +0100374 if (o->maxval && ull > o->maxval) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100375 fprintf(stderr, "max value out of range: %lld"
376 " (%d max)\n", ull, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100377 return 1;
378 }
379 if (o->minval && ull < o->minval) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100380 fprintf(stderr, "min value out of range: %lld"
381 " (%d min)\n", ull, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100382 return 1;
383 }
Jens Axboee1f36502006-10-27 10:54:08 +0200384
385 if (fn)
386 ret = fn(data, &ull);
387 else {
Jens Axboee01b22b2009-06-09 15:43:25 +0200388 if (o->type == FIO_OPT_INT) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100389 if (first) {
390 if (o->roff1)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100391 *(unsigned int *) o->roff1 = ull;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100392 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100393 val_store(ilp, ull, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100394 }
395 if (!more) {
396 if (o->roff2)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100397 *(unsigned int *) o->roff2 = ull;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100398 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100399 val_store(ilp, ull, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100400 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100401 } else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100402 if (first) {
403 if (o->roff1)
404 *(unsigned long long *) o->roff1 = ull;
405 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100406 val_store(ullp, ull, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100407 }
408 if (!more) {
409 if (o->roff2)
410 *(unsigned long long *) o->roff2 = ull;
411 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100412 val_store(ullp, ull, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100413 }
Jens Axboe75e6f362006-11-03 08:17:09 +0100414 }
Jens Axboee1f36502006-10-27 10:54:08 +0200415 }
416 break;
417 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100418 case FIO_OPT_STR_STORE: {
419 fio_opt_str_fn *fn = o->cb;
420
Jens Axboe02c6aad2010-03-04 13:49:11 +0100421 if (o->roff1)
422 cp = (char **) o->roff1;
423 else
424 cp = td_var(data, o->off1);
425
Jens Axboee1f36502006-10-27 10:54:08 +0200426 *cp = strdup(ptr);
Jens Axboeaf52b342007-03-13 10:07:47 +0100427 if (fn) {
428 ret = fn(data, ptr);
429 if (ret) {
430 free(*cp);
431 *cp = NULL;
432 }
433 }
Jens Axboee1f36502006-10-27 10:54:08 +0200434 break;
Jens Axboeaf52b342007-03-13 10:07:47 +0100435 }
Jens Axboee1f36502006-10-27 10:54:08 +0200436 case FIO_OPT_RANGE: {
Jens Axboeb765a372006-10-27 15:00:16 +0200437 char tmp[128];
Jens Axboee1f36502006-10-27 10:54:08 +0200438 char *p1, *p2;
439
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100440 strncpy(tmp, ptr, sizeof(tmp) - 1);
Jens Axboeb765a372006-10-27 15:00:16 +0200441
442 p1 = strchr(tmp, '-');
Jens Axboee1f36502006-10-27 10:54:08 +0200443 if (!p1) {
Jens Axboe0c9baf92007-01-11 15:59:26 +0100444 p1 = strchr(tmp, ':');
445 if (!p1) {
446 ret = 1;
447 break;
448 }
Jens Axboee1f36502006-10-27 10:54:08 +0200449 }
450
451 p2 = p1 + 1;
452 *p1 = '\0';
Jens Axboeb765a372006-10-27 15:00:16 +0200453 p1 = tmp;
Jens Axboee1f36502006-10-27 10:54:08 +0200454
455 ret = 1;
Jens Axboed6978a32009-07-18 21:04:09 +0200456 if (!check_range_bytes(p1, &ul1, data) &&
457 !check_range_bytes(p2, &ul2, data)) {
Jens Axboee1f36502006-10-27 10:54:08 +0200458 ret = 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200459 if (ul1 > ul2) {
Jens Axboef90eff52006-11-06 11:08:21 +0100460 unsigned long foo = ul1;
461
462 ul1 = ul2;
463 ul2 = foo;
464 }
465
466 if (first) {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100467 if (o->roff1)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100468 *(unsigned int *) o->roff1 = ul1;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100469 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100470 val_store(ilp, ul1, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100471 if (o->roff2)
Jens Axboe7758d4f2010-03-18 16:50:31 +0100472 *(unsigned int *) o->roff2 = ul2;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100473 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100474 val_store(ilp, ul2, o->off2, 0, data);
Jens Axboee1f36502006-10-27 10:54:08 +0200475 }
Jens Axboe02c6aad2010-03-04 13:49:11 +0100476 if (o->roff3 && o->roff4) {
Jens Axboe7758d4f2010-03-18 16:50:31 +0100477 *(unsigned int *) o->roff3 = ul1;
478 *(unsigned int *) o->roff4 = ul2;
Jens Axboe02c6aad2010-03-04 13:49:11 +0100479 } else if (o->off3 && o->off4) {
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100480 val_store(ilp, ul1, o->off3, 0, data);
481 val_store(ilp, ul2, o->off4, 0, data);
Jens Axboe17abbe82006-11-06 11:23:10 +0100482 }
483 }
484
Jens Axboee1f36502006-10-27 10:54:08 +0200485 break;
486 }
Jens Axboe13335dd2007-01-10 13:14:02 +0100487 case FIO_OPT_BOOL: {
Jens Axboee1f36502006-10-27 10:54:08 +0200488 fio_opt_int_fn *fn = o->cb;
489
490 ret = check_int(ptr, &il);
491 if (ret)
492 break;
493
Jens Axboedb8e0162007-01-10 13:41:26 +0100494 if (o->maxval && il > (int) o->maxval) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100495 fprintf(stderr, "max value out of range: %d (%d max)\n",
496 il, o->maxval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100497 return 1;
498 }
499 if (o->minval && il < o->minval) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100500 fprintf(stderr, "min value out of range: %d (%d min)\n",
501 il, o->minval);
Jens Axboedb8e0162007-01-10 13:41:26 +0100502 return 1;
503 }
Jens Axboee1f36502006-10-27 10:54:08 +0200504
Jens Axboe76a43db2007-01-11 13:24:44 +0100505 if (o->neg)
506 il = !il;
507
Jens Axboee1f36502006-10-27 10:54:08 +0200508 if (fn)
509 ret = fn(data, &il);
510 else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100511 if (first) {
512 if (o->roff1)
513 *(unsigned int *)o->roff1 = il;
514 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100515 val_store(ilp, il, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100516 }
517 if (!more) {
518 if (o->roff2)
519 *(unsigned int *) o->roff2 = il;
520 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100521 val_store(ilp, il, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100522 }
Jens Axboee1f36502006-10-27 10:54:08 +0200523 }
524 break;
525 }
526 case FIO_OPT_STR_SET: {
527 fio_opt_str_set_fn *fn = o->cb;
528
529 if (fn)
530 ret = fn(data);
531 else {
Jens Axboe02c6aad2010-03-04 13:49:11 +0100532 if (first) {
533 if (o->roff1)
534 *(unsigned int *) o->roff1 = 1;
535 else
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100536 val_store(ilp, 1, o->off1, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100537 }
538 if (!more) {
539 if (o->roff2)
540 *(unsigned int *) o->roff2 = 1;
541 else if (o->off2)
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100542 val_store(ilp, 1, o->off2, 0, data);
Jens Axboe02c6aad2010-03-04 13:49:11 +0100543 }
Jens Axboee1f36502006-10-27 10:54:08 +0200544 }
545 break;
546 }
Jens Axboe15ca1502008-04-07 09:26:02 +0200547 case FIO_OPT_DEPRECATED:
548 fprintf(stdout, "Option %s is deprecated\n", o->name);
549 break;
Jens Axboee1f36502006-10-27 10:54:08 +0200550 default:
Jens Axboe1e97cce2006-12-05 11:44:16 +0100551 fprintf(stderr, "Bad option type %u\n", o->type);
Jens Axboee1f36502006-10-27 10:54:08 +0200552 ret = 1;
553 }
554
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200555 if (ret)
556 return ret;
557
Jens Axboed447a8c2009-07-17 22:26:15 +0200558 if (o->verify) {
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200559 ret = o->verify(o, data);
Jens Axboed447a8c2009-07-17 22:26:15 +0200560 if (ret) {
561 fprintf(stderr,"Correct format for offending option\n");
562 fprintf(stderr, "%20s: %s\n", o->name, o->help);
563 show_option_help(o, stderr);
564 }
565 }
Jens Axboe70a4c0c2009-07-01 09:24:05 +0200566
Jens Axboee1f36502006-10-27 10:54:08 +0200567 return ret;
568}
569
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200570static int handle_option(struct fio_option *o, const char *__ptr, void *data)
Jens Axboef90eff52006-11-06 11:08:21 +0100571{
Jens Axboeb62bdf22010-03-10 12:36:17 +0100572 char *o_ptr, *ptr, *ptr2;
573 int ret, done;
Jens Axboef90eff52006-11-06 11:08:21 +0100574
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200575 dprint(FD_PARSE, "handle_option=%s, ptr=%s\n", o->name, __ptr);
576
Jens Axboeb62bdf22010-03-10 12:36:17 +0100577 o_ptr = ptr = NULL;
Jens Axboe7c8f1a52009-06-09 12:28:57 +0200578 if (__ptr)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100579 o_ptr = ptr = strdup(__ptr);
Jens Axboea3d741f2008-02-27 18:32:33 +0100580
Jens Axboef90eff52006-11-06 11:08:21 +0100581 /*
Jens Axboeb62bdf22010-03-10 12:36:17 +0100582 * See if we have another set of parameters, hidden after a comma.
583 * Do this before parsing this round, to check if we should
Jens Axboe787f7e92006-11-06 13:26:29 +0100584 * copy set 1 options to set 2.
Jens Axboef90eff52006-11-06 11:08:21 +0100585 */
Jens Axboeb62bdf22010-03-10 12:36:17 +0100586 done = 0;
587 ret = 1;
588 do {
589 int __ret;
590
591 ptr2 = NULL;
592 if (ptr &&
593 (o->type != FIO_OPT_STR_STORE) &&
594 (o->type != FIO_OPT_STR)) {
595 ptr2 = strchr(ptr, ',');
596 if (ptr2 && *(ptr2 + 1) == '\0')
597 *ptr2 = '\0';
598 if (o->type != FIO_OPT_STR_MULTI) {
599 if (!ptr2)
600 ptr2 = strchr(ptr, ':');
601 if (!ptr2)
602 ptr2 = strchr(ptr, '-');
603 }
604 }
605
606 /*
607 * Don't return early if parsing the first option fails - if
608 * we are doing multiple arguments, we can allow the first one
609 * being empty.
610 */
611 __ret = __handle_option(o, ptr, data, !done, !!ptr2);
612 if (ret)
613 ret = __ret;
614
Jens Axboe0c9baf92007-01-11 15:59:26 +0100615 if (!ptr2)
Jens Axboeb62bdf22010-03-10 12:36:17 +0100616 break;
Jens Axboe787f7e92006-11-06 13:26:29 +0100617
Jens Axboeb62bdf22010-03-10 12:36:17 +0100618 ptr = ptr2 + 1;
619 done++;
620 } while (1);
Jens Axboe787f7e92006-11-06 13:26:29 +0100621
Jens Axboeb62bdf22010-03-10 12:36:17 +0100622 if (o_ptr)
623 free(o_ptr);
624 return ret;
Jens Axboef90eff52006-11-06 11:08:21 +0100625}
626
Jens Axboe3b8b7132008-06-10 19:46:23 +0200627static struct fio_option *get_option(const char *opt,
Jens Axboe07b32322010-03-05 09:48:44 +0100628 struct fio_option *options, char **post)
Jens Axboe3b8b7132008-06-10 19:46:23 +0200629{
630 struct fio_option *o;
631 char *ret;
632
633 ret = strchr(opt, '=');
634 if (ret) {
635 *post = ret;
636 *ret = '\0';
637 ret = (char *) opt;
638 (*post)++;
Jens Axboe43c129b2008-12-08 14:06:42 +0100639 strip_blank_end(ret);
Jens Axboe07b32322010-03-05 09:48:44 +0100640 o = find_option(options, ret);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200641 } else {
Jens Axboe07b32322010-03-05 09:48:44 +0100642 o = find_option(options, opt);
Jens Axboe3b8b7132008-06-10 19:46:23 +0200643 *post = NULL;
644 }
645
646 return o;
647}
648
649static int opt_cmp(const void *p1, const void *p2)
650{
651 struct fio_option *o1, *o2;
652 char *s1, *s2, *foo;
Jens Axboe8cdabc12008-11-19 12:31:43 +0100653 int prio1, prio2;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200654
655 s1 = strdup(*((char **) p1));
656 s2 = strdup(*((char **) p2));
657
Jens Axboe07b32322010-03-05 09:48:44 +0100658 o1 = get_option(s1, fio_options, &foo);
659 o2 = get_option(s2, fio_options, &foo);
Jens Axboe0b9d69e2009-09-11 22:29:54 +0200660
Jens Axboe8cdabc12008-11-19 12:31:43 +0100661 prio1 = prio2 = 0;
662 if (o1)
663 prio1 = o1->prio;
664 if (o2)
665 prio2 = o2->prio;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200666
667 free(s1);
668 free(s2);
Jens Axboe8cdabc12008-11-19 12:31:43 +0100669 return prio2 - prio1;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200670}
671
672void sort_options(char **opts, struct fio_option *options, int num_opts)
673{
674 fio_options = options;
675 qsort(opts, num_opts, sizeof(char *), opt_cmp);
676 fio_options = NULL;
677}
678
Jens Axboeb4692822006-10-27 13:43:22 +0200679int parse_cmd_option(const char *opt, const char *val,
Jens Axboe07b32322010-03-05 09:48:44 +0100680 struct fio_option *options, void *data)
Jens Axboeb4692822006-10-27 13:43:22 +0200681{
682 struct fio_option *o;
683
Jens Axboe07b32322010-03-05 09:48:44 +0100684 o = find_option(options, opt);
Jens Axboeb4692822006-10-27 13:43:22 +0200685 if (!o) {
Jens Axboe43c129b2008-12-08 14:06:42 +0100686 fprintf(stderr, "Bad option <%s>\n", opt);
Jens Axboeb4692822006-10-27 13:43:22 +0200687 return 1;
688 }
689
Jens Axboeb1508cf2006-11-02 09:12:40 +0100690 if (!handle_option(o, val, data))
691 return 0;
692
693 fprintf(stderr, "fio: failed parsing %s=%s\n", opt, val);
694 return 1;
Jens Axboeb4692822006-10-27 13:43:22 +0200695}
696
Aaron Carroll88b5a392008-10-07 11:25:20 +0200697/*
698 * Return a copy of the input string with substrings of the form ${VARNAME}
699 * substituted with the value of the environment variable VARNAME. The
700 * substitution always occurs, even if VARNAME is empty or the corresponding
701 * environment variable undefined.
702 */
703static char *option_dup_subs(const char *opt)
704{
705 char out[OPT_LEN_MAX+1];
706 char in[OPT_LEN_MAX+1];
707 char *outptr = out;
708 char *inptr = in;
709 char *ch1, *ch2, *env;
710 ssize_t nchr = OPT_LEN_MAX;
711 size_t envlen;
712
Jens Axboea0741cb2010-03-05 12:46:37 +0100713 if (strlen(opt) + 1 > OPT_LEN_MAX) {
Jens Axboe38789b52010-03-03 09:23:20 +0100714 fprintf(stderr, "OPT_LEN_MAX (%d) is too small\n", OPT_LEN_MAX);
715 return NULL;
716 }
717
Aaron Carroll88b5a392008-10-07 11:25:20 +0200718 in[OPT_LEN_MAX] = '\0';
719 strncpy(in, opt, OPT_LEN_MAX);
720
721 while (*inptr && nchr > 0) {
722 if (inptr[0] == '$' && inptr[1] == '{') {
723 ch2 = strchr(inptr, '}');
724 if (ch2 && inptr+1 < ch2) {
725 ch1 = inptr+2;
726 inptr = ch2+1;
727 *ch2 = '\0';
728
729 env = getenv(ch1);
730 if (env) {
731 envlen = strlen(env);
732 if (envlen <= nchr) {
733 memcpy(outptr, env, envlen);
734 outptr += envlen;
735 nchr -= envlen;
736 }
737 }
738
739 continue;
740 }
741 }
742
743 *outptr++ = *inptr++;
744 --nchr;
745 }
746
747 *outptr = '\0';
748 return strdup(out);
749}
750
Jens Axboe07b32322010-03-05 09:48:44 +0100751int parse_option(const char *opt, struct fio_option *options, void *data)
Jens Axboee1f36502006-10-27 10:54:08 +0200752{
Jens Axboeb4692822006-10-27 13:43:22 +0200753 struct fio_option *o;
Jens Axboe3b8b7132008-06-10 19:46:23 +0200754 char *post, *tmp;
Jens Axboee1f36502006-10-27 10:54:08 +0200755
Aaron Carroll88b5a392008-10-07 11:25:20 +0200756 tmp = option_dup_subs(opt);
Jens Axboe38789b52010-03-03 09:23:20 +0100757 if (!tmp)
758 return 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200759
Jens Axboe07b32322010-03-05 09:48:44 +0100760 o = get_option(tmp, options, &post);
Jens Axboee1f36502006-10-27 10:54:08 +0200761 if (!o) {
Jens Axboe43c129b2008-12-08 14:06:42 +0100762 fprintf(stderr, "Bad option <%s>\n", tmp);
Jens Axboe0401bca2007-03-29 11:00:43 +0200763 free(tmp);
Jens Axboee1f36502006-10-27 10:54:08 +0200764 return 1;
765 }
766
Jens Axboe0401bca2007-03-29 11:00:43 +0200767 if (!handle_option(o, post, data)) {
768 free(tmp);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100769 return 0;
Jens Axboe0401bca2007-03-29 11:00:43 +0200770 }
Jens Axboeb1508cf2006-11-02 09:12:40 +0100771
772 fprintf(stderr, "fio: failed parsing %s\n", opt);
Jens Axboe0401bca2007-03-29 11:00:43 +0200773 free(tmp);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100774 return 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200775}
Jens Axboefd28ca42007-01-09 21:20:13 +0100776
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100777/*
778 * Option match, levenshtein distance. Handy for not quite remembering what
779 * the option name is.
780 */
781static int string_distance(const char *s1, const char *s2)
782{
783 unsigned int s1_len = strlen(s1);
784 unsigned int s2_len = strlen(s2);
785 unsigned int *p, *q, *r;
786 unsigned int i, j;
787
788 p = malloc(sizeof(unsigned int) * (s2_len + 1));
789 q = malloc(sizeof(unsigned int) * (s2_len + 1));
790
791 p[0] = 0;
792 for (i = 1; i <= s2_len; i++)
793 p[i] = p[i - 1] + 1;
794
795 for (i = 1; i <= s1_len; i++) {
796 q[0] = p[0] + 1;
797 for (j = 1; j <= s2_len; j++) {
798 unsigned int sub = p[j - 1];
799
800 if (s1[i - 1] != s2[j - 1])
801 sub++;
802
803 q[j] = min(p[j] + 1, min(q[j - 1] + 1, sub));
804 }
805 r = p;
806 p = q;
807 q = r;
808 }
809
810 i = p[s2_len];
811 free(p);
812 free(q);
813 return i;
814}
815
Jens Axboeafdf9352007-07-31 16:14:34 +0200816static struct fio_option *find_child(struct fio_option *options,
817 struct fio_option *o)
818{
819 struct fio_option *__o;
820
Jens Axboefdf28742007-07-31 23:06:09 +0200821 for (__o = options + 1; __o->name; __o++)
822 if (__o->parent && !strcmp(__o->parent, o->name))
Jens Axboeafdf9352007-07-31 16:14:34 +0200823 return __o;
824
825 return NULL;
826}
827
Jens Axboe323d9112008-03-01 15:12:14 +0100828static void __print_option(struct fio_option *o, struct fio_option *org,
829 int level)
Jens Axboeafdf9352007-07-31 16:14:34 +0200830{
831 char name[256], *p;
Jens Axboe323d9112008-03-01 15:12:14 +0100832 int depth;
Jens Axboeafdf9352007-07-31 16:14:34 +0200833
834 if (!o)
835 return;
Jens Axboeef9aff52007-07-31 22:56:53 +0200836 if (!org)
837 org = o;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100838
Jens Axboeafdf9352007-07-31 16:14:34 +0200839 p = name;
Jens Axboe323d9112008-03-01 15:12:14 +0100840 depth = level;
841 while (depth--)
842 p += sprintf(p, "%s", " ");
Jens Axboeafdf9352007-07-31 16:14:34 +0200843
844 sprintf(p, "%s", o->name);
845
846 printf("%-24s: %s\n", name, o->help);
Jens Axboe323d9112008-03-01 15:12:14 +0100847}
848
849static void print_option(struct fio_option *o)
850{
851 struct fio_option *parent;
852 struct fio_option *__o;
853 unsigned int printed;
854 unsigned int level;
855
856 __print_option(o, NULL, 0);
857 parent = o;
858 level = 0;
859 do {
860 level++;
861 printed = 0;
862
863 while ((__o = find_child(o, parent)) != NULL) {
864 __print_option(__o, o, level);
865 o = __o;
866 printed++;
867 }
868
869 parent = o;
870 } while (printed);
Jens Axboeafdf9352007-07-31 16:14:34 +0200871}
872
Jens Axboe07b32322010-03-05 09:48:44 +0100873int show_cmd_help(struct fio_option *options, const char *name)
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100874{
875 struct fio_option *o, *closest;
Jens Axboed091d092010-04-01 19:56:23 +0200876 unsigned int best_dist = -1U;
Jens Axboe29fc6af2007-01-09 21:22:02 +0100877 int found = 0;
Jens Axboe320beef2007-03-01 10:44:12 +0100878 int show_all = 0;
879
880 if (!name || !strcmp(name, "all"))
881 show_all = 1;
Jens Axboefd28ca42007-01-09 21:20:13 +0100882
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100883 closest = NULL;
884 best_dist = -1;
Jens Axboe4945ba12007-01-11 14:36:56 +0100885 for (o = &options[0]; o->name; o++) {
Jens Axboe320beef2007-03-01 10:44:12 +0100886 int match = 0;
887
Jens Axboe15ca1502008-04-07 09:26:02 +0200888 if (o->type == FIO_OPT_DEPRECATED)
889 continue;
Jens Axboe07b32322010-03-05 09:48:44 +0100890 if (!exec_profile && o->prof_name)
891 continue;
Jens Axboe15ca1502008-04-07 09:26:02 +0200892
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100893 if (name) {
Jens Axboe7f9348f2007-03-15 14:09:28 +0100894 if (!strcmp(name, o->name) ||
895 (o->alias && !strcmp(name, o->alias)))
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100896 match = 1;
897 else {
898 unsigned int dist;
899
900 dist = string_distance(name, o->name);
901 if (dist < best_dist) {
902 best_dist = dist;
903 closest = o;
904 }
905 }
906 }
Jens Axboefd28ca42007-01-09 21:20:13 +0100907
908 if (show_all || match) {
Jens Axboe29fc6af2007-01-09 21:22:02 +0100909 found = 1;
Jens Axboec167ded2007-03-14 13:02:53 +0100910 if (match)
Jens Axboe07b32322010-03-05 09:48:44 +0100911 printf("%20s: %s\n", o->name, o->help);
Jens Axboec167ded2007-03-14 13:02:53 +0100912 if (show_all) {
Jens Axboeafdf9352007-07-31 16:14:34 +0200913 if (!o->parent)
Jens Axboe323d9112008-03-01 15:12:14 +0100914 print_option(o);
Jens Axboe4945ba12007-01-11 14:36:56 +0100915 continue;
Jens Axboec167ded2007-03-14 13:02:53 +0100916 }
Jens Axboefd28ca42007-01-09 21:20:13 +0100917 }
918
Jens Axboe70df2f12007-01-11 14:04:47 +0100919 if (!match)
920 continue;
921
Jens Axboed447a8c2009-07-17 22:26:15 +0200922 show_option_help(o, stdout);
Jens Axboefd28ca42007-01-09 21:20:13 +0100923 }
924
Jens Axboe29fc6af2007-01-09 21:22:02 +0100925 if (found)
926 return 0;
Jens Axboefd28ca42007-01-09 21:20:13 +0100927
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100928 printf("No such command: %s", name);
Jens Axboed091d092010-04-01 19:56:23 +0200929
930 /*
931 * Only print an appropriately close option, one where the edit
932 * distance isn't too big. Otherwise we get crazy matches.
933 */
934 if (closest && best_dist < 3) {
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100935 printf(" - showing closest match\n");
936 printf("%20s: %s\n", closest->name, closest->help);
Jens Axboed447a8c2009-07-17 22:26:15 +0200937 show_option_help(closest, stdout);
Jens Axboe0e9f7fa2007-03-01 14:05:30 +0100938 } else
939 printf("\n");
940
Jens Axboe29fc6af2007-01-09 21:22:02 +0100941 return 1;
Jens Axboefd28ca42007-01-09 21:20:13 +0100942}
Jens Axboeee738492007-01-10 11:23:16 +0100943
Jens Axboe13335dd2007-01-10 13:14:02 +0100944/*
945 * Handle parsing of default parameters.
946 */
Jens Axboeee738492007-01-10 11:23:16 +0100947void fill_default_options(void *data, struct fio_option *options)
948{
Jens Axboe4945ba12007-01-11 14:36:56 +0100949 struct fio_option *o;
Jens Axboeee738492007-01-10 11:23:16 +0100950
Jens Axboea3d741f2008-02-27 18:32:33 +0100951 dprint(FD_PARSE, "filling default options\n");
952
Jens Axboe4945ba12007-01-11 14:36:56 +0100953 for (o = &options[0]; o->name; o++)
Jens Axboeee738492007-01-10 11:23:16 +0100954 if (o->def)
955 handle_option(o, o->def, data);
Jens Axboeee738492007-01-10 11:23:16 +0100956}
Jens Axboe13335dd2007-01-10 13:14:02 +0100957
Jens Axboe9f988e22010-03-04 10:42:38 +0100958void option_init(struct fio_option *o)
959{
960 if (o->type == FIO_OPT_DEPRECATED)
961 return;
962 if (o->type == FIO_OPT_BOOL) {
963 o->minval = 0;
964 o->maxval = 1;
965 }
966 if (o->type == FIO_OPT_STR_SET && o->def) {
967 fprintf(stderr, "Option %s: string set option with"
968 " default will always be true\n", o->name);
969 }
Jens Axboee2de69d2010-03-04 14:05:48 +0100970 if (!o->cb && (!o->off1 && !o->roff1)) {
Jens Axboe9f988e22010-03-04 10:42:38 +0100971 fprintf(stderr, "Option %s: neither cb nor offset given\n",
972 o->name);
973 }
Jens Axboe5f6ddf12010-03-09 20:40:44 +0100974 if (o->type == FIO_OPT_STR || o->type == FIO_OPT_STR_STORE ||
975 o->type == FIO_OPT_STR_MULTI)
Jens Axboe9f988e22010-03-04 10:42:38 +0100976 return;
Jens Axboee2de69d2010-03-04 14:05:48 +0100977 if (o->cb && ((o->off1 || o->off2 || o->off3 || o->off4) ||
978 (o->roff1 || o->roff2 || o->roff3 || o->roff4))) {
Jens Axboe9f988e22010-03-04 10:42:38 +0100979 fprintf(stderr, "Option %s: both cb and offset given\n",
980 o->name);
981 }
982}
983
Jens Axboe13335dd2007-01-10 13:14:02 +0100984/*
985 * Sanitize the options structure. For now it just sets min/max for bool
Jens Axboe5b0a8882007-01-11 14:40:27 +0100986 * values and whether both callback and offsets are given.
Jens Axboe13335dd2007-01-10 13:14:02 +0100987 */
988void options_init(struct fio_option *options)
989{
Jens Axboe4945ba12007-01-11 14:36:56 +0100990 struct fio_option *o;
Jens Axboe13335dd2007-01-10 13:14:02 +0100991
Jens Axboea3d741f2008-02-27 18:32:33 +0100992 dprint(FD_PARSE, "init options\n");
993
Jens Axboe9f988e22010-03-04 10:42:38 +0100994 for (o = &options[0]; o->name; o++)
995 option_init(o);
Jens Axboe13335dd2007-01-10 13:14:02 +0100996}