blob: d300a219dbef9fcb8a2be1aa643429027916d6ae [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>
11
12#include "parse.h"
13
Jens Axboeb1ec1da2007-02-23 10:29:16 +010014static void show_option_range(struct fio_option *o)
15{
16 if (!o->minval && !o->maxval)
17 return;
18
19 printf("%16s: min=%d, max=%d\n", "range", o->minval, o->maxval);
20}
21
22static void show_option_values(struct fio_option *o)
23{
24 const char *msg;
25 int i = 0;
26
27 do {
28 msg = o->posval[i].ival;
29 if (!msg)
30 break;
31
32 if (!i)
33 printf("%16s: ", "valid values");
34
35 printf("%s,", msg);
36 i++;
37 } while (i < PARSE_MAX_VP);
38
39 if (i)
40 printf("\n");
41}
42
Jens Axboecb2c86f2006-10-26 13:48:34 +020043static unsigned long get_mult_time(char c)
44{
45 switch (c) {
46 case 'm':
47 case 'M':
48 return 60;
49 case 'h':
50 case 'H':
51 return 60 * 60;
52 case 'd':
53 case 'D':
54 return 24 * 60 * 60;
55 default:
56 return 1;
57 }
58}
59
60static unsigned long get_mult_bytes(char c)
61{
62 switch (c) {
63 case 'k':
64 case 'K':
65 return 1024;
66 case 'm':
67 case 'M':
68 return 1024 * 1024;
69 case 'g':
70 case 'G':
71 return 1024 * 1024 * 1024;
Jens Axboef3502ba2007-02-14 01:27:09 +010072 case 'e':
73 case 'E':
74 return 1024 * 1024 * 1024 * 1024UL;
Jens Axboecb2c86f2006-10-26 13:48:34 +020075 default:
76 return 1;
77 }
78}
79
80/*
Jens Axboee1f36502006-10-27 10:54:08 +020081 * convert string into decimal value, noting any size suffix
Jens Axboecb2c86f2006-10-26 13:48:34 +020082 */
Jens Axboe63f29372007-01-10 13:20:09 +010083static int str_to_decimal(const char *str, long long *val, int kilo)
Jens Axboecb2c86f2006-10-26 13:48:34 +020084{
Jens Axboecb2c86f2006-10-26 13:48:34 +020085 int len;
86
Jens Axboecb2c86f2006-10-26 13:48:34 +020087 len = strlen(str);
Jens Axboef90eff52006-11-06 11:08:21 +010088 if (!len)
89 return 1;
Jens Axboecb2c86f2006-10-26 13:48:34 +020090
Jens Axboe675de852007-02-10 19:01:07 +010091 *val = strtoll(str, NULL, 10);
Jens Axboecda866c2007-01-10 16:02:32 +010092 if (*val == LONG_MAX && errno == ERANGE)
Jens Axboecb2c86f2006-10-26 13:48:34 +020093 return 1;
94
95 if (kilo)
96 *val *= get_mult_bytes(str[len - 1]);
97 else
98 *val *= get_mult_time(str[len - 1]);
Jens Axboe787f7e92006-11-06 13:26:29 +010099
Jens Axboecb2c86f2006-10-26 13:48:34 +0200100 return 0;
101}
102
Jens Axboe63f29372007-01-10 13:20:09 +0100103static int check_str_bytes(const char *p, long long *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200104{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200105 return str_to_decimal(p, val, 1);
106}
107
Jens Axboe63f29372007-01-10 13:20:09 +0100108static int check_str_time(const char *p, long long *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200109{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200110 return str_to_decimal(p, val, 0);
111}
112
113void strip_blank_front(char **p)
114{
115 char *s = *p;
116
117 while (isspace(*s))
118 s++;
119}
120
121void strip_blank_end(char *p)
122{
123 char *s = p + strlen(p) - 1;
124
125 while (isspace(*s) || iscntrl(*s))
126 s--;
127
128 *(s + 1) = '\0';
129}
130
Jens Axboe63f29372007-01-10 13:20:09 +0100131static int check_range_bytes(const char *str, long *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200132{
133 char suffix;
134
Jens Axboe787f7e92006-11-06 13:26:29 +0100135 if (!strlen(str))
136 return 1;
137
Jens Axboecb2c86f2006-10-26 13:48:34 +0200138 if (sscanf(str, "%lu%c", val, &suffix) == 2) {
139 *val *= get_mult_bytes(suffix);
140 return 0;
141 }
142
143 if (sscanf(str, "%lu", val) == 1)
144 return 0;
145
146 return 1;
147}
148
Jens Axboe63f29372007-01-10 13:20:09 +0100149static int check_int(const char *p, int *val)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200150{
Jens Axboe787f7e92006-11-06 13:26:29 +0100151 if (!strlen(p))
152 return 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200153 if (sscanf(p, "%u", val) == 1)
Jens Axboecb2c86f2006-10-26 13:48:34 +0200154 return 0;
155
156 return 1;
157}
158
Jens Axboee1f36502006-10-27 10:54:08 +0200159static struct fio_option *find_option(struct fio_option *options,
160 const char *opt)
161{
Jens Axboe4945ba12007-01-11 14:36:56 +0100162 struct fio_option *o;
Jens Axboee1f36502006-10-27 10:54:08 +0200163
Jens Axboe4945ba12007-01-11 14:36:56 +0100164 for (o = &options[0]; o->name; o++) {
Jens Axboee1f36502006-10-27 10:54:08 +0200165 if (!strcmp(o->name, opt))
166 return o;
Jens Axboe03b74b32007-01-11 11:04:31 +0100167 else if (o->alias && !strcmp(o->alias, opt))
168 return o;
Jens Axboe33963c62006-10-27 11:33:01 +0200169 }
Jens Axboee1f36502006-10-27 10:54:08 +0200170
171 return NULL;
172}
173
Jens Axboe17abbe82006-11-06 11:23:10 +0100174#define val_store(ptr, val, off, data) \
175 do { \
176 ptr = td_var((data), (off)); \
177 *ptr = (val); \
178 } while (0)
179
Jens Axboef90eff52006-11-06 11:08:21 +0100180static int __handle_option(struct fio_option *o, const char *ptr, void *data,
Jens Axboe787f7e92006-11-06 13:26:29 +0100181 int first, int more)
Jens Axboee1f36502006-10-27 10:54:08 +0200182{
Jens Axboe63f29372007-01-10 13:20:09 +0100183 int il, *ilp;
184 long long ull, *ullp;
185 long ul1, ul2;
Jens Axboeb4692822006-10-27 13:43:22 +0200186 char **cp;
Jens Axboee1f36502006-10-27 10:54:08 +0200187 int ret = 0, is_time = 0;
188
Jens Axboe08e26e32006-11-21 13:15:10 +0100189 if (!ptr && o->type != FIO_OPT_STR_SET) {
190 fprintf(stderr, "Option %s requires an argument\n", o->name);
191 return 1;
192 }
193
Jens Axboee1f36502006-10-27 10:54:08 +0200194 switch (o->type) {
195 case FIO_OPT_STR: {
196 fio_opt_str_fn *fn = o->cb;
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100197 const struct value_pair *vp;
198 int i;
Jens Axboee1f36502006-10-27 10:54:08 +0200199
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100200 ret = 1;
201 for (i = 0; i < PARSE_MAX_VP; i++) {
202 vp = &o->posval[i];
203 if (!vp->ival || vp->ival[0] == '\0')
204 break;
205 if (!strncmp(vp->ival, ptr, strlen(vp->ival))) {
206 ret = 0;
207 if (!o->off1)
208 break;
209 val_store(ilp, vp->oval, o->off1, data);
210 break;
211 }
212 }
213
214 if (ret)
215 show_option_values(o);
216 else if (fn)
217 ret = fn(data, ptr);
Jens Axboee1f36502006-10-27 10:54:08 +0200218 break;
219 }
220 case FIO_OPT_STR_VAL_TIME:
221 is_time = 1;
Jens Axboe75e6f362006-11-03 08:17:09 +0100222 case FIO_OPT_STR_VAL:
223 case FIO_OPT_STR_VAL_INT: {
Jens Axboee1f36502006-10-27 10:54:08 +0200224 fio_opt_str_val_fn *fn = o->cb;
225
226 if (is_time)
227 ret = check_str_time(ptr, &ull);
228 else
229 ret = check_str_bytes(ptr, &ull);
230
231 if (ret)
232 break;
233
Jens Axboedb8e0162007-01-10 13:41:26 +0100234 if (o->maxval && ull > o->maxval) {
235 fprintf(stderr, "max value out of range: %lld (%d max)\n", ull, o->maxval);
236 return 1;
237 }
238 if (o->minval && ull < o->minval) {
239 fprintf(stderr, "min value out of range: %lld (%d min)\n", ull, o->minval);
240 return 1;
241 }
Jens Axboee1f36502006-10-27 10:54:08 +0200242
243 if (fn)
244 ret = fn(data, &ull);
245 else {
Jens Axboe75e6f362006-11-03 08:17:09 +0100246 if (o->type == FIO_OPT_STR_VAL_INT) {
Jens Axboe17abbe82006-11-06 11:23:10 +0100247 if (first)
248 val_store(ilp, ull, o->off1, data);
Jens Axboe787f7e92006-11-06 13:26:29 +0100249 if (!more && o->off2)
Jens Axboe17abbe82006-11-06 11:23:10 +0100250 val_store(ilp, ull, o->off2, data);
Jens Axboe75e6f362006-11-03 08:17:09 +0100251 } else {
Jens Axboe17abbe82006-11-06 11:23:10 +0100252 if (first)
253 val_store(ullp, ull, o->off1, data);
Jens Axboe787f7e92006-11-06 13:26:29 +0100254 if (!more && o->off2)
Jens Axboe17abbe82006-11-06 11:23:10 +0100255 val_store(ullp, ull, o->off2, data);
Jens Axboe75e6f362006-11-03 08:17:09 +0100256 }
Jens Axboee1f36502006-10-27 10:54:08 +0200257 }
258 break;
259 }
260 case FIO_OPT_STR_STORE:
261 cp = td_var(data, o->off1);
262 *cp = strdup(ptr);
263 break;
264 case FIO_OPT_RANGE: {
Jens Axboeb765a372006-10-27 15:00:16 +0200265 char tmp[128];
Jens Axboee1f36502006-10-27 10:54:08 +0200266 char *p1, *p2;
267
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100268 strncpy(tmp, ptr, sizeof(tmp) - 1);
Jens Axboeb765a372006-10-27 15:00:16 +0200269
270 p1 = strchr(tmp, '-');
Jens Axboee1f36502006-10-27 10:54:08 +0200271 if (!p1) {
Jens Axboe0c9baf92007-01-11 15:59:26 +0100272 p1 = strchr(tmp, ':');
273 if (!p1) {
274 ret = 1;
275 break;
276 }
Jens Axboee1f36502006-10-27 10:54:08 +0200277 }
278
279 p2 = p1 + 1;
280 *p1 = '\0';
Jens Axboeb765a372006-10-27 15:00:16 +0200281 p1 = tmp;
Jens Axboee1f36502006-10-27 10:54:08 +0200282
283 ret = 1;
284 if (!check_range_bytes(p1, &ul1) && !check_range_bytes(p2, &ul2)) {
285 ret = 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200286 if (ul1 > ul2) {
Jens Axboef90eff52006-11-06 11:08:21 +0100287 unsigned long foo = ul1;
288
289 ul1 = ul2;
290 ul2 = foo;
291 }
292
293 if (first) {
Jens Axboe17abbe82006-11-06 11:23:10 +0100294 val_store(ilp, ul1, o->off1, data);
295 val_store(ilp, ul2, o->off2, data);
Jens Axboee1f36502006-10-27 10:54:08 +0200296 }
Jens Axboe787f7e92006-11-06 13:26:29 +0100297 if (!more && o->off3 && o->off4) {
Jens Axboe17abbe82006-11-06 11:23:10 +0100298 val_store(ilp, ul1, o->off3, data);
299 val_store(ilp, ul2, o->off4, data);
300 }
301 }
302
Jens Axboee1f36502006-10-27 10:54:08 +0200303 break;
304 }
Jens Axboe13335dd2007-01-10 13:14:02 +0100305 case FIO_OPT_INT:
306 case FIO_OPT_BOOL: {
Jens Axboee1f36502006-10-27 10:54:08 +0200307 fio_opt_int_fn *fn = o->cb;
308
309 ret = check_int(ptr, &il);
310 if (ret)
311 break;
312
Jens Axboedb8e0162007-01-10 13:41:26 +0100313 if (o->maxval && il > (int) o->maxval) {
314 fprintf(stderr, "max value out of range: %d (%d max)\n", il, o->maxval);
315 return 1;
316 }
317 if (o->minval && il < o->minval) {
318 fprintf(stderr, "min value out of range: %d (%d min)\n", il, o->minval);
319 return 1;
320 }
Jens Axboee1f36502006-10-27 10:54:08 +0200321
Jens Axboe76a43db2007-01-11 13:24:44 +0100322 if (o->neg)
323 il = !il;
324
Jens Axboee1f36502006-10-27 10:54:08 +0200325 if (fn)
326 ret = fn(data, &il);
327 else {
Jens Axboe17abbe82006-11-06 11:23:10 +0100328 if (first)
329 val_store(ilp, il, o->off1, data);
Jens Axboe787f7e92006-11-06 13:26:29 +0100330 if (!more && o->off2)
Jens Axboe17abbe82006-11-06 11:23:10 +0100331 val_store(ilp, il, o->off2, data);
Jens Axboee1f36502006-10-27 10:54:08 +0200332 }
333 break;
334 }
335 case FIO_OPT_STR_SET: {
336 fio_opt_str_set_fn *fn = o->cb;
337
338 if (fn)
339 ret = fn(data);
340 else {
Jens Axboe17abbe82006-11-06 11:23:10 +0100341 if (first)
342 val_store(ilp, 1, o->off1, data);
Jens Axboe787f7e92006-11-06 13:26:29 +0100343 if (!more && o->off2)
Jens Axboe17abbe82006-11-06 11:23:10 +0100344 val_store(ilp, 1, o->off2, data);
Jens Axboee1f36502006-10-27 10:54:08 +0200345 }
346 break;
347 }
348 default:
Jens Axboe1e97cce2006-12-05 11:44:16 +0100349 fprintf(stderr, "Bad option type %u\n", o->type);
Jens Axboee1f36502006-10-27 10:54:08 +0200350 ret = 1;
351 }
352
Jens Axboee1f36502006-10-27 10:54:08 +0200353 return ret;
354}
355
Jens Axboef90eff52006-11-06 11:08:21 +0100356static int handle_option(struct fio_option *o, const char *ptr, void *data)
357{
Jens Axboe92b586f2006-11-07 14:29:17 +0100358 const char *ptr2 = NULL;
Jens Axboe787f7e92006-11-06 13:26:29 +0100359 int r1, r2;
Jens Axboef90eff52006-11-06 11:08:21 +0100360
361 /*
Jens Axboe787f7e92006-11-06 13:26:29 +0100362 * See if we have a second set of parameters, hidden after a comma.
363 * Do this before parsing the first round, to check if we should
364 * copy set 1 options to set 2.
Jens Axboef90eff52006-11-06 11:08:21 +0100365 */
Jens Axboeed92ac02007-02-06 14:43:52 +0100366 if (ptr && (o->type != FIO_OPT_STR_STORE)) {
Jens Axboe92b586f2006-11-07 14:29:17 +0100367 ptr2 = strchr(ptr, ',');
Jens Axboe0c9baf92007-01-11 15:59:26 +0100368 if (!ptr2)
369 ptr2 = strchr(ptr, ':');
370 }
Jens Axboe787f7e92006-11-06 13:26:29 +0100371
372 /*
373 * Don't return early if parsing the first option fails - if
374 * we are doing multiple arguments, we can allow the first one
375 * being empty.
376 */
377 r1 = __handle_option(o, ptr, data, 1, !!ptr2);
378
Jens Axboef90eff52006-11-06 11:08:21 +0100379 if (!ptr2)
Jens Axboe787f7e92006-11-06 13:26:29 +0100380 return r1;
Jens Axboef90eff52006-11-06 11:08:21 +0100381
382 ptr2++;
Jens Axboe787f7e92006-11-06 13:26:29 +0100383 r2 = __handle_option(o, ptr2, data, 0, 0);
384
385 return r1 && r2;
Jens Axboef90eff52006-11-06 11:08:21 +0100386}
387
Jens Axboeb4692822006-10-27 13:43:22 +0200388int parse_cmd_option(const char *opt, const char *val,
389 struct fio_option *options, void *data)
390{
391 struct fio_option *o;
392
393 o = find_option(options, opt);
394 if (!o) {
395 fprintf(stderr, "Bad option %s\n", opt);
396 return 1;
397 }
398
Jens Axboeb1508cf2006-11-02 09:12:40 +0100399 if (!handle_option(o, val, data))
400 return 0;
401
402 fprintf(stderr, "fio: failed parsing %s=%s\n", opt, val);
403 return 1;
Jens Axboeb4692822006-10-27 13:43:22 +0200404}
405
Jens Axboee1f36502006-10-27 10:54:08 +0200406int parse_option(const char *opt, struct fio_option *options, void *data)
407{
Jens Axboeb4692822006-10-27 13:43:22 +0200408 struct fio_option *o;
Jens Axboee1f36502006-10-27 10:54:08 +0200409 char *pre, *post;
410 char tmp[64];
411
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100412 strncpy(tmp, opt, sizeof(tmp) - 1);
Jens Axboee1f36502006-10-27 10:54:08 +0200413
414 pre = strchr(tmp, '=');
415 if (pre) {
416 post = pre;
417 *pre = '\0';
418 pre = tmp;
419 post++;
420 o = find_option(options, pre);
421 } else {
422 o = find_option(options, tmp);
423 post = NULL;
424 }
425
426 if (!o) {
427 fprintf(stderr, "Bad option %s\n", tmp);
428 return 1;
429 }
430
Jens Axboeb1508cf2006-11-02 09:12:40 +0100431 if (!handle_option(o, post, data))
432 return 0;
433
434 fprintf(stderr, "fio: failed parsing %s\n", opt);
435 return 1;
Jens Axboee1f36502006-10-27 10:54:08 +0200436}
Jens Axboefd28ca42007-01-09 21:20:13 +0100437
438int show_cmd_help(struct fio_option *options, const char *name)
439{
440 int show_all = !strcmp(name, "all");
Jens Axboefd28ca42007-01-09 21:20:13 +0100441 const char *typehelp[] = {
442 "string (opt=bla)",
443 "string with possible k/m/g postfix (opt=4k)",
444 "string with range and postfix (opt=1k-4k)",
445 "string with time postfix (opt=10s)",
446 "string (opt=bla)",
447 "string with dual range (opt=1k-4k,4k-8k)",
448 "integer value (opt=100)",
Jens Axboe13335dd2007-01-10 13:14:02 +0100449 "boolean value (opt=1)",
Jens Axboefd28ca42007-01-09 21:20:13 +0100450 "no argument (opt)",
451 };
Jens Axboe4945ba12007-01-11 14:36:56 +0100452 struct fio_option *o;
Jens Axboe29fc6af2007-01-09 21:22:02 +0100453 int found = 0;
Jens Axboefd28ca42007-01-09 21:20:13 +0100454
Jens Axboe4945ba12007-01-11 14:36:56 +0100455 for (o = &options[0]; o->name; o++) {
Jens Axboefd28ca42007-01-09 21:20:13 +0100456 int match = !strcmp(name, o->name);
457
458 if (show_all || match) {
Jens Axboe29fc6af2007-01-09 21:22:02 +0100459 found = 1;
Jens Axboefacba0e2007-01-10 11:41:11 +0100460 printf("%16s: %s\n", o->name, o->help);
Jens Axboe4945ba12007-01-11 14:36:56 +0100461 if (show_all)
462 continue;
Jens Axboefd28ca42007-01-09 21:20:13 +0100463 }
464
Jens Axboe70df2f12007-01-11 14:04:47 +0100465 if (!match)
466 continue;
467
Jens Axboe4945ba12007-01-11 14:36:56 +0100468 printf("%16s: %s\n", "type", typehelp[o->type]);
469 printf("%16s: %s\n", "default", o->def ? o->def : "no default");
470 show_option_range(o);
471 show_option_values(o);
Jens Axboefd28ca42007-01-09 21:20:13 +0100472 }
473
Jens Axboe29fc6af2007-01-09 21:22:02 +0100474 if (found)
475 return 0;
Jens Axboefd28ca42007-01-09 21:20:13 +0100476
Jens Axboe29fc6af2007-01-09 21:22:02 +0100477 printf("No such command: %s\n", name);
478 return 1;
Jens Axboefd28ca42007-01-09 21:20:13 +0100479}
Jens Axboeee738492007-01-10 11:23:16 +0100480
Jens Axboe13335dd2007-01-10 13:14:02 +0100481/*
482 * Handle parsing of default parameters.
483 */
Jens Axboeee738492007-01-10 11:23:16 +0100484void fill_default_options(void *data, struct fio_option *options)
485{
Jens Axboe4945ba12007-01-11 14:36:56 +0100486 struct fio_option *o;
Jens Axboeee738492007-01-10 11:23:16 +0100487
Jens Axboe4945ba12007-01-11 14:36:56 +0100488 for (o = &options[0]; o->name; o++)
Jens Axboeee738492007-01-10 11:23:16 +0100489 if (o->def)
490 handle_option(o, o->def, data);
Jens Axboeee738492007-01-10 11:23:16 +0100491}
Jens Axboe13335dd2007-01-10 13:14:02 +0100492
493/*
494 * Sanitize the options structure. For now it just sets min/max for bool
Jens Axboe5b0a8882007-01-11 14:40:27 +0100495 * values and whether both callback and offsets are given.
Jens Axboe13335dd2007-01-10 13:14:02 +0100496 */
497void options_init(struct fio_option *options)
498{
Jens Axboe4945ba12007-01-11 14:36:56 +0100499 struct fio_option *o;
Jens Axboe13335dd2007-01-10 13:14:02 +0100500
Jens Axboe4945ba12007-01-11 14:36:56 +0100501 for (o = &options[0]; o->name; o++) {
Jens Axboe13335dd2007-01-10 13:14:02 +0100502 if (o->type == FIO_OPT_BOOL) {
503 o->minval = 0;
504 o->maxval = 1;
505 }
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100506 if (!o->cb && !o->off1)
507 fprintf(stderr, "Option %s: neither cb nor offset given\n", o->name);
508 if (o->type == FIO_OPT_STR)
509 continue;
Jens Axboe5b0a8882007-01-11 14:40:27 +0100510 if (o->cb && (o->off1 || o->off2 || o->off3 || o->off4))
511 fprintf(stderr, "Option %s: both cb and offset given\n", o->name);
Jens Axboe13335dd2007-01-10 13:14:02 +0100512 }
513}