blob: 74c24d02d5d4bc200da3cf671c64d363d02e92a4 [file] [log] [blame]
Jens Axboe214e1ec2007-03-15 10:48:13 +01001#include <stdio.h>
2#include <stdlib.h>
3#include <unistd.h>
4#include <ctype.h>
5#include <string.h>
Jens Axboe214e1ec2007-03-15 10:48:13 +01006#include <assert.h>
Jens Axboe921c7662008-03-26 09:17:55 +01007#include <libgen.h>
Jens Axboe5921e802008-05-30 15:02:38 +02008#include <fcntl.h>
9#include <sys/types.h>
10#include <sys/stat.h>
Jens Axboe214e1ec2007-03-15 10:48:13 +010011
12#include "fio.h"
Jens Axboe4f5af7b2009-06-03 08:45:40 +020013#include "verify.h"
Jens Axboe214e1ec2007-03-15 10:48:13 +010014#include "parse.h"
Jens Axboeeef32352008-06-02 13:31:26 +020015#include "lib/fls.h"
Jens Axboe9f988e22010-03-04 10:42:38 +010016#include "options.h"
Jens Axboe214e1ec2007-03-15 10:48:13 +010017
Jens Axboe5d7c5d32010-06-21 15:08:17 +020018#include "crc/crc32c.h"
19
Jens Axboe214e1ec2007-03-15 10:48:13 +010020/*
21 * Check if mmap/mmaphuge has a :/foo/bar/file at the end. If so, return that.
22 */
23static char *get_opt_postfix(const char *str)
24{
25 char *p = strstr(str, ":");
26
27 if (!p)
28 return NULL;
29
30 p++;
31 strip_blank_front(&p);
32 strip_blank_end(p);
33 return strdup(p);
34}
35
Radha Ramachandran0e92f872009-10-27 20:14:27 +010036static int converthexchartoint(char a)
37{
38 int base;
39
40 switch(a) {
41 case '0'...'9':
42 base = '0';
43 break;
44 case 'A'...'F':
45 base = 'A' - 10;
46 break;
47 case 'a'...'f':
48 base = 'a' - 10;
49 break;
50 default:
51 base = 0;
52 }
53 return (a - base);
54}
55
Jens Axboe564ca972007-12-14 12:21:19 +010056static int bs_cmp(const void *p1, const void *p2)
57{
58 const struct bssplit *bsp1 = p1;
59 const struct bssplit *bsp2 = p2;
60
61 return bsp1->perc < bsp2->perc;
62}
63
Jens Axboe720e84a2009-04-21 08:29:55 +020064static int bssplit_ddir(struct thread_data *td, int ddir, char *str)
Jens Axboe564ca972007-12-14 12:21:19 +010065{
Jens Axboe720e84a2009-04-21 08:29:55 +020066 struct bssplit *bssplit;
Jens Axboe564ca972007-12-14 12:21:19 +010067 unsigned int i, perc, perc_missing;
68 unsigned int max_bs, min_bs;
69 long long val;
Jens Axboe720e84a2009-04-21 08:29:55 +020070 char *fname;
Jens Axboe564ca972007-12-14 12:21:19 +010071
Jens Axboe720e84a2009-04-21 08:29:55 +020072 td->o.bssplit_nr[ddir] = 4;
73 bssplit = malloc(4 * sizeof(struct bssplit));
Jens Axboe564ca972007-12-14 12:21:19 +010074
75 i = 0;
76 max_bs = 0;
77 min_bs = -1;
78 while ((fname = strsep(&str, ":")) != NULL) {
79 char *perc_str;
80
81 if (!strlen(fname))
82 break;
83
84 /*
85 * grow struct buffer, if needed
86 */
Jens Axboe720e84a2009-04-21 08:29:55 +020087 if (i == td->o.bssplit_nr[ddir]) {
88 td->o.bssplit_nr[ddir] <<= 1;
89 bssplit = realloc(bssplit, td->o.bssplit_nr[ddir]
Jens Axboe5ec10ea2008-03-06 15:42:00 +010090 * sizeof(struct bssplit));
Jens Axboe564ca972007-12-14 12:21:19 +010091 }
92
93 perc_str = strstr(fname, "/");
94 if (perc_str) {
95 *perc_str = '\0';
96 perc_str++;
97 perc = atoi(perc_str);
98 if (perc > 100)
99 perc = 100;
100 else if (!perc)
101 perc = -1;
102 } else
103 perc = -1;
104
Kenneth Watersdf9cf922009-10-15 07:08:48 +0200105 if (str_to_decimal(fname, &val, 1, td)) {
Jens Axboe564ca972007-12-14 12:21:19 +0100106 log_err("fio: bssplit conversion failed\n");
107 free(td->o.bssplit);
108 return 1;
109 }
110
111 if (val > max_bs)
112 max_bs = val;
113 if (val < min_bs)
114 min_bs = val;
115
Jens Axboe720e84a2009-04-21 08:29:55 +0200116 bssplit[i].bs = val;
117 bssplit[i].perc = perc;
Jens Axboe564ca972007-12-14 12:21:19 +0100118 i++;
119 }
120
Jens Axboe720e84a2009-04-21 08:29:55 +0200121 td->o.bssplit_nr[ddir] = i;
Jens Axboe564ca972007-12-14 12:21:19 +0100122
123 /*
124 * Now check if the percentages add up, and how much is missing
125 */
126 perc = perc_missing = 0;
Jens Axboe720e84a2009-04-21 08:29:55 +0200127 for (i = 0; i < td->o.bssplit_nr[ddir]; i++) {
128 struct bssplit *bsp = &bssplit[i];
Jens Axboe564ca972007-12-14 12:21:19 +0100129
130 if (bsp->perc == (unsigned char) -1)
131 perc_missing++;
132 else
133 perc += bsp->perc;
134 }
135
136 if (perc > 100) {
137 log_err("fio: bssplit percentages add to more than 100%%\n");
Jens Axboe720e84a2009-04-21 08:29:55 +0200138 free(bssplit);
Jens Axboe564ca972007-12-14 12:21:19 +0100139 return 1;
140 }
141 /*
142 * If values didn't have a percentage set, divide the remains between
143 * them.
144 */
145 if (perc_missing) {
Jens Axboe720e84a2009-04-21 08:29:55 +0200146 for (i = 0; i < td->o.bssplit_nr[ddir]; i++) {
147 struct bssplit *bsp = &bssplit[i];
Jens Axboe564ca972007-12-14 12:21:19 +0100148
149 if (bsp->perc == (unsigned char) -1)
150 bsp->perc = (100 - perc) / perc_missing;
151 }
152 }
153
Jens Axboe720e84a2009-04-21 08:29:55 +0200154 td->o.min_bs[ddir] = min_bs;
155 td->o.max_bs[ddir] = max_bs;
Jens Axboe564ca972007-12-14 12:21:19 +0100156
157 /*
158 * now sort based on percentages, for ease of lookup
159 */
Jens Axboe720e84a2009-04-21 08:29:55 +0200160 qsort(bssplit, td->o.bssplit_nr[ddir], sizeof(struct bssplit), bs_cmp);
161 td->o.bssplit[ddir] = bssplit;
162 return 0;
163
164}
165
166static int str_bssplit_cb(void *data, const char *input)
167{
168 struct thread_data *td = data;
169 char *str, *p, *odir;
170 int ret = 0;
171
172 p = str = strdup(input);
173
174 strip_blank_front(&str);
175 strip_blank_end(str);
176
177 odir = strchr(str, ',');
178 if (odir) {
179 ret = bssplit_ddir(td, DDIR_WRITE, odir + 1);
180 if (!ret) {
181 *odir = '\0';
182 ret = bssplit_ddir(td, DDIR_READ, str);
183 }
184 } else {
185 char *op;
186
187 op = strdup(str);
188
189 ret = bssplit_ddir(td, DDIR_READ, str);
190 if (!ret)
191 ret = bssplit_ddir(td, DDIR_WRITE, op);
192
193 free(op);
194 }
Jens Axboe564ca972007-12-14 12:21:19 +0100195
196 free(p);
Jens Axboe720e84a2009-04-21 08:29:55 +0200197 return ret;
Jens Axboe564ca972007-12-14 12:21:19 +0100198}
199
Jens Axboe211097b2007-03-22 18:56:45 +0100200static int str_rw_cb(void *data, const char *str)
201{
202 struct thread_data *td = data;
203 char *nr = get_opt_postfix(str);
204
Jens Axboe5736c102010-07-20 12:03:25 -0600205 td->o.ddir_seq_nr = 1;
Jens Axboe059b0802011-08-25 09:09:37 +0200206 td->o.ddir_seq_add = 0;
207
208 if (!nr)
209 return 0;
210
211 if (td_random(td))
Jens Axboe5736c102010-07-20 12:03:25 -0600212 td->o.ddir_seq_nr = atoi(nr);
Jens Axboe059b0802011-08-25 09:09:37 +0200213 else {
214 long long val;
215
216 if (str_to_decimal(nr, &val, 1, td)) {
217 log_err("fio: rw postfix parsing failed\n");
218 free(nr);
219 return 1;
220 }
221
222 td->o.ddir_seq_add = val;
Jens Axboe182ec6e2008-11-14 13:06:06 +0100223 }
Jens Axboe211097b2007-03-22 18:56:45 +0100224
Jens Axboe059b0802011-08-25 09:09:37 +0200225 free(nr);
Jens Axboe211097b2007-03-22 18:56:45 +0100226 return 0;
227}
228
Jens Axboec44b1ff2011-08-30 20:43:53 -0600229#ifdef FIO_HAVE_LIBAIO
230static int str_libaio_cb(void *data, const char *str)
231{
232 struct thread_data *td = data;
233
234 if (!strcmp(str, "userspace_reap")) {
235 td->o.userspace_libaio_reap = 1;
236 return 0;
237 }
238
239 log_err("fio: bad libaio sub-option: %s\n", str);
240 return 1;
241}
242#endif
243
Jens Axboe214e1ec2007-03-15 10:48:13 +0100244static int str_mem_cb(void *data, const char *mem)
245{
246 struct thread_data *td = data;
247
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100248 if (td->o.mem_type == MEM_MMAPHUGE || td->o.mem_type == MEM_MMAP) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100249 td->mmapfile = get_opt_postfix(mem);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100250 if (td->o.mem_type == MEM_MMAPHUGE && !td->mmapfile) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100251 log_err("fio: mmaphuge:/path/to/file\n");
252 return 1;
253 }
254 }
255
256 return 0;
257}
258
Jens Axboe5d7c5d32010-06-21 15:08:17 +0200259static int str_verify_cb(void *data, const char *mem)
260{
261 struct thread_data *td = data;
262
263 if (td->o.verify != VERIFY_CRC32C_INTEL)
264 return 0;
265
266 if (!crc32c_intel_works()) {
267 log_info("fio: System does not support hw accelerated crc32c. Falling back to sw crc32c.\n");
268 td->o.verify = VERIFY_CRC32C;
269 }
270
271 return 0;
272}
273
Jens Axboec223da82010-03-24 13:23:53 +0100274static int fio_clock_source_cb(void *data, const char *str)
275{
276 struct thread_data *td = data;
277
278 fio_clock_source = td->o.clocksource;
279 fio_time_init();
280 return 0;
281}
282
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400283static int str_lockmem_cb(void fio_unused *data, unsigned long long *val)
Jens Axboe214e1ec2007-03-15 10:48:13 +0100284{
285 mlock_size = *val;
286 return 0;
287}
288
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400289static int str_rwmix_read_cb(void *data, unsigned long long *val)
Jens Axboecb499fc2008-05-28 10:33:32 +0200290{
291 struct thread_data *td = data;
292
293 td->o.rwmix[DDIR_READ] = *val;
294 td->o.rwmix[DDIR_WRITE] = 100 - *val;
295 return 0;
296}
297
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400298static int str_rwmix_write_cb(void *data, unsigned long long *val)
Jens Axboecb499fc2008-05-28 10:33:32 +0200299{
300 struct thread_data *td = data;
301
302 td->o.rwmix[DDIR_WRITE] = *val;
303 td->o.rwmix[DDIR_READ] = 100 - *val;
304 return 0;
305}
306
Jens Axboe214e1ec2007-03-15 10:48:13 +0100307#ifdef FIO_HAVE_IOPRIO
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400308static int str_prioclass_cb(void *data, unsigned long long *val)
Jens Axboe214e1ec2007-03-15 10:48:13 +0100309{
310 struct thread_data *td = data;
Jens Axboe6cefbe32007-04-18 12:46:56 +0200311 unsigned short mask;
312
313 /*
314 * mask off old class bits, str_prio_cb() may have set a default class
315 */
316 mask = (1 << IOPRIO_CLASS_SHIFT) - 1;
317 td->ioprio &= mask;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100318
319 td->ioprio |= *val << IOPRIO_CLASS_SHIFT;
Jens Axboeac684782007-11-08 08:29:07 +0100320 td->ioprio_set = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100321 return 0;
322}
323
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400324static int str_prio_cb(void *data, unsigned long long *val)
Jens Axboe214e1ec2007-03-15 10:48:13 +0100325{
326 struct thread_data *td = data;
327
328 td->ioprio |= *val;
Jens Axboe6cefbe32007-04-18 12:46:56 +0200329
330 /*
331 * If no class is set, assume BE
332 */
333 if ((td->ioprio >> IOPRIO_CLASS_SHIFT) == 0)
334 td->ioprio |= IOPRIO_CLASS_BE << IOPRIO_CLASS_SHIFT;
335
Jens Axboeac684782007-11-08 08:29:07 +0100336 td->ioprio_set = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100337 return 0;
338}
339#endif
340
341static int str_exitall_cb(void)
342{
343 exitall_on_terminate = 1;
344 return 0;
345}
346
Jens Axboe214e1ec2007-03-15 10:48:13 +0100347#ifdef FIO_HAVE_CPU_AFFINITY
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400348static int str_cpumask_cb(void *data, unsigned long long *val)
Jens Axboe214e1ec2007-03-15 10:48:13 +0100349{
350 struct thread_data *td = data;
Jens Axboed2e268b2007-06-15 10:33:49 +0200351 unsigned int i;
Jens Axboeb03daaf2008-12-08 20:31:43 +0100352 long max_cpu;
Jens Axboed2ce18b2008-12-12 20:51:40 +0100353 int ret;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100354
Jens Axboed2ce18b2008-12-12 20:51:40 +0100355 ret = fio_cpuset_init(&td->o.cpumask);
356 if (ret < 0) {
357 log_err("fio: cpuset_init failed\n");
358 td_verror(td, ret, "fio_cpuset_init");
359 return 1;
360 }
361
Jens Axboec00a2282011-07-08 20:56:06 +0200362 max_cpu = cpus_online();
Jens Axboed2e268b2007-06-15 10:33:49 +0200363
Jens Axboe62a72732008-12-08 11:37:01 +0100364 for (i = 0; i < sizeof(int) * 8; i++) {
365 if ((1 << i) & *val) {
Jens Axboeb03daaf2008-12-08 20:31:43 +0100366 if (i > max_cpu) {
367 log_err("fio: CPU %d too large (max=%ld)\n", i,
368 max_cpu);
369 return 1;
370 }
Jens Axboe62a72732008-12-08 11:37:01 +0100371 dprint(FD_PARSE, "set cpu allowed %d\n", i);
Jens Axboe6d459ee2008-12-12 20:02:58 +0100372 fio_cpu_set(&td->o.cpumask, i);
Jens Axboe62a72732008-12-08 11:37:01 +0100373 }
374 }
Jens Axboed2e268b2007-06-15 10:33:49 +0200375
Jens Axboe375b2692007-05-22 09:13:02 +0200376 td->o.cpumask_set = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100377 return 0;
378}
379
Jens Axboee8462bd2009-07-06 12:59:04 +0200380static int set_cpus_allowed(struct thread_data *td, os_cpu_mask_t *mask,
381 const char *input)
Jens Axboed2e268b2007-06-15 10:33:49 +0200382{
Jens Axboed2e268b2007-06-15 10:33:49 +0200383 char *cpu, *str, *p;
Jens Axboeb03daaf2008-12-08 20:31:43 +0100384 long max_cpu;
Jens Axboe19608d62008-12-08 15:03:12 +0100385 int ret = 0;
Jens Axboed2e268b2007-06-15 10:33:49 +0200386
Jens Axboee8462bd2009-07-06 12:59:04 +0200387 ret = fio_cpuset_init(mask);
Jens Axboed2ce18b2008-12-12 20:51:40 +0100388 if (ret < 0) {
389 log_err("fio: cpuset_init failed\n");
390 td_verror(td, ret, "fio_cpuset_init");
391 return 1;
392 }
Jens Axboed2e268b2007-06-15 10:33:49 +0200393
394 p = str = strdup(input);
395
396 strip_blank_front(&str);
397 strip_blank_end(str);
398
Jens Axboec00a2282011-07-08 20:56:06 +0200399 max_cpu = cpus_online();
Jens Axboeb03daaf2008-12-08 20:31:43 +0100400
Jens Axboed2e268b2007-06-15 10:33:49 +0200401 while ((cpu = strsep(&str, ",")) != NULL) {
Jens Axboe62a72732008-12-08 11:37:01 +0100402 char *str2, *cpu2;
403 int icpu, icpu2;
404
Jens Axboed2e268b2007-06-15 10:33:49 +0200405 if (!strlen(cpu))
406 break;
Jens Axboe62a72732008-12-08 11:37:01 +0100407
408 str2 = cpu;
409 icpu2 = -1;
410 while ((cpu2 = strsep(&str2, "-")) != NULL) {
411 if (!strlen(cpu2))
412 break;
413
414 icpu2 = atoi(cpu2);
415 }
416
417 icpu = atoi(cpu);
418 if (icpu2 == -1)
419 icpu2 = icpu;
420 while (icpu <= icpu2) {
Jens Axboe6d459ee2008-12-12 20:02:58 +0100421 if (icpu >= FIO_MAX_CPUS) {
Jens Axboe19608d62008-12-08 15:03:12 +0100422 log_err("fio: your OS only supports up to"
Jens Axboe6d459ee2008-12-12 20:02:58 +0100423 " %d CPUs\n", (int) FIO_MAX_CPUS);
Jens Axboe19608d62008-12-08 15:03:12 +0100424 ret = 1;
425 break;
426 }
Jens Axboeb03daaf2008-12-08 20:31:43 +0100427 if (icpu > max_cpu) {
428 log_err("fio: CPU %d too large (max=%ld)\n",
429 icpu, max_cpu);
430 ret = 1;
431 break;
432 }
Jens Axboe0b9d69e2009-09-11 22:29:54 +0200433
Jens Axboe62a72732008-12-08 11:37:01 +0100434 dprint(FD_PARSE, "set cpu allowed %d\n", icpu);
Jens Axboee8462bd2009-07-06 12:59:04 +0200435 fio_cpu_set(mask, icpu);
Jens Axboe62a72732008-12-08 11:37:01 +0100436 icpu++;
437 }
Jens Axboe19608d62008-12-08 15:03:12 +0100438 if (ret)
439 break;
Jens Axboed2e268b2007-06-15 10:33:49 +0200440 }
441
442 free(p);
Jens Axboe19608d62008-12-08 15:03:12 +0100443 if (!ret)
444 td->o.cpumask_set = 1;
445 return ret;
Jens Axboed2e268b2007-06-15 10:33:49 +0200446}
Jens Axboee8462bd2009-07-06 12:59:04 +0200447
448static int str_cpus_allowed_cb(void *data, const char *input)
449{
450 struct thread_data *td = data;
451 int ret;
452
453 ret = set_cpus_allowed(td, &td->o.cpumask, input);
454 if (!ret)
455 td->o.cpumask_set = 1;
456
457 return ret;
458}
459
460static int str_verify_cpus_allowed_cb(void *data, const char *input)
461{
462 struct thread_data *td = data;
463 int ret;
464
465 ret = set_cpus_allowed(td, &td->o.verify_cpumask, input);
466 if (!ret)
467 td->o.verify_cpumask_set = 1;
468
469 return ret;
470}
Jens Axboed2e268b2007-06-15 10:33:49 +0200471#endif
472
Jens Axboe0d29de82010-09-01 13:54:15 +0200473#ifdef FIO_HAVE_TRIM
474static int str_verify_trim_cb(void *data, unsigned long long *val)
475{
476 struct thread_data *td = data;
477
478 td->o.trim_percentage = *val;
479 return 0;
480}
481#endif
482
Jens Axboe214e1ec2007-03-15 10:48:13 +0100483static int str_fst_cb(void *data, const char *str)
484{
485 struct thread_data *td = data;
486 char *nr = get_opt_postfix(str);
487
488 td->file_service_nr = 1;
Jens Axboe182ec6e2008-11-14 13:06:06 +0100489 if (nr) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100490 td->file_service_nr = atoi(nr);
Jens Axboe182ec6e2008-11-14 13:06:06 +0100491 free(nr);
492 }
Jens Axboe214e1ec2007-03-15 10:48:13 +0100493
494 return 0;
495}
496
Jens Axboe3ae06372010-03-19 19:17:15 +0100497#ifdef FIO_HAVE_SYNC_FILE_RANGE
Jens Axboe44f29692010-03-09 20:09:44 +0100498static int str_sfr_cb(void *data, const char *str)
499{
500 struct thread_data *td = data;
501 char *nr = get_opt_postfix(str);
502
503 td->sync_file_range_nr = 1;
504 if (nr) {
505 td->sync_file_range_nr = atoi(nr);
506 free(nr);
507 }
508
509 return 0;
510}
Jens Axboe3ae06372010-03-19 19:17:15 +0100511#endif
Jens Axboe44f29692010-03-09 20:09:44 +0100512
Jens Axboe921c7662008-03-26 09:17:55 +0100513static int check_dir(struct thread_data *td, char *fname)
514{
Jens Axboe3f0ca9b2011-05-24 21:36:24 +0200515#if 0
Jens Axboe921c7662008-03-26 09:17:55 +0100516 char file[PATH_MAX], *dir;
Jens Axboebc838912008-04-07 09:00:54 +0200517 int elen = 0;
Jens Axboe921c7662008-03-26 09:17:55 +0100518
Jens Axboebc838912008-04-07 09:00:54 +0200519 if (td->o.directory) {
520 strcpy(file, td->o.directory);
Jens Axboefcef0b32008-05-26 14:53:24 +0200521 strcat(file, "/");
Jens Axboebc838912008-04-07 09:00:54 +0200522 elen = strlen(file);
523 }
524
Jens Axboefcef0b32008-05-26 14:53:24 +0200525 sprintf(file + elen, "%s", fname);
Jens Axboe921c7662008-03-26 09:17:55 +0100526 dir = dirname(file);
527
Jens Axboefcef0b32008-05-26 14:53:24 +0200528 {
529 struct stat sb;
530 /*
531 * We can't do this on FIO_DISKLESSIO engines. The engine isn't loaded
532 * yet, so we can't do this check right here...
533 */
Jens Axboe921c7662008-03-26 09:17:55 +0100534 if (lstat(dir, &sb) < 0) {
535 int ret = errno;
536
537 log_err("fio: %s is not a directory\n", dir);
538 td_verror(td, ret, "lstat");
539 return 1;
540 }
541
542 if (!S_ISDIR(sb.st_mode)) {
543 log_err("fio: %s is not a directory\n", dir);
544 return 1;
545 }
Jens Axboefcef0b32008-05-26 14:53:24 +0200546 }
547#endif
Jens Axboe921c7662008-03-26 09:17:55 +0100548
549 return 0;
550}
551
Jens Axboe8e827d32009-08-04 09:51:48 +0200552/*
553 * Return next file in the string. Files are separated with ':'. If the ':'
554 * is escaped with a '\', then that ':' is part of the filename and does not
555 * indicate a new file.
556 */
557static char *get_next_file_name(char **ptr)
558{
559 char *str = *ptr;
560 char *p, *start;
561
562 if (!str || !strlen(str))
563 return NULL;
564
565 start = str;
566 do {
567 /*
568 * No colon, we are done
569 */
570 p = strchr(str, ':');
571 if (!p) {
572 *ptr = NULL;
573 break;
574 }
575
576 /*
577 * We got a colon, but it's the first character. Skip and
578 * continue
579 */
580 if (p == start) {
581 str = ++start;
582 continue;
583 }
584
585 if (*(p - 1) != '\\') {
586 *p = '\0';
587 *ptr = p + 1;
588 break;
589 }
590
591 memmove(p - 1, p, strlen(p) + 1);
592 str = p;
593 } while (1);
594
595 return start;
596}
597
Jens Axboe214e1ec2007-03-15 10:48:13 +0100598static int str_filename_cb(void *data, const char *input)
599{
600 struct thread_data *td = data;
601 char *fname, *str, *p;
602
603 p = str = strdup(input);
604
605 strip_blank_front(&str);
606 strip_blank_end(str);
607
608 if (!td->files_index)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100609 td->o.nr_files = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100610
Jens Axboe8e827d32009-08-04 09:51:48 +0200611 while ((fname = get_next_file_name(&str)) != NULL) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100612 if (!strlen(fname))
613 break;
Jens Axboe921c7662008-03-26 09:17:55 +0100614 if (check_dir(td, fname)) {
615 free(p);
616 return 1;
617 }
Jens Axboe214e1ec2007-03-15 10:48:13 +0100618 add_file(td, fname);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100619 td->o.nr_files++;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100620 }
621
622 free(p);
623 return 0;
624}
625
626static int str_directory_cb(void *data, const char fio_unused *str)
627{
628 struct thread_data *td = data;
629 struct stat sb;
630
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100631 if (lstat(td->o.directory, &sb) < 0) {
Jens Axboe921c7662008-03-26 09:17:55 +0100632 int ret = errno;
633
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100634 log_err("fio: %s is not a directory\n", td->o.directory);
Jens Axboe921c7662008-03-26 09:17:55 +0100635 td_verror(td, ret, "lstat");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100636 return 1;
637 }
638 if (!S_ISDIR(sb.st_mode)) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100639 log_err("fio: %s is not a directory\n", td->o.directory);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100640 return 1;
641 }
642
643 return 0;
644}
645
646static int str_opendir_cb(void *data, const char fio_unused *str)
647{
648 struct thread_data *td = data;
649
650 if (!td->files_index)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100651 td->o.nr_files = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100652
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100653 return add_dir_files(td, td->o.opendir);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100654}
655
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400656static int str_verify_offset_cb(void *data, unsigned long long *off)
Shawn Lewis546a9142007-07-28 21:11:37 +0200657{
658 struct thread_data *td = data;
Jens Axboea59e1702007-07-30 08:53:27 +0200659
Shawn Lewis546a9142007-07-28 21:11:37 +0200660 if (*off && *off < sizeof(struct verify_header)) {
Jens Axboea59e1702007-07-30 08:53:27 +0200661 log_err("fio: verify_offset too small\n");
Shawn Lewis546a9142007-07-28 21:11:37 +0200662 return 1;
663 }
Jens Axboea59e1702007-07-30 08:53:27 +0200664
665 td->o.verify_offset = *off;
Shawn Lewis546a9142007-07-28 21:11:37 +0200666 return 0;
667}
668
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100669static int str_verify_pattern_cb(void *data, const char *input)
Jens Axboe90059d62007-07-30 09:33:12 +0200670{
671 struct thread_data *td = data;
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100672 long off;
673 int i = 0, j = 0, len, k, base = 10;
674 char* loc1, * loc2;
Jens Axboe90059d62007-07-30 09:33:12 +0200675
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100676 loc1 = strstr(input, "0x");
677 loc2 = strstr(input, "0X");
678 if (loc1 || loc2)
679 base = 16;
680 off = strtol(input, NULL, base);
681 if (off != LONG_MAX || errno != ERANGE) {
682 while (off) {
683 td->o.verify_pattern[i] = off & 0xff;
684 off >>= 8;
685 i++;
686 }
687 } else {
688 len = strlen(input);
689 k = len - 1;
690 if (base == 16) {
691 if (loc1)
692 j = loc1 - input + 2;
693 else
694 j = loc2 - input + 2;
695 } else
696 return 1;
697 if (len - j < MAX_PATTERN_SIZE * 2) {
698 while (k >= j) {
699 off = converthexchartoint(input[k--]);
700 if (k >= j)
701 off += (converthexchartoint(input[k--])
702 * 16);
703 td->o.verify_pattern[i++] = (char) off;
704 }
705 }
706 }
707 td->o.verify_pattern_bytes = i;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100708 /*
709 * VERIFY_META could already be set
710 */
711 if (td->o.verify == VERIFY_NONE)
712 td->o.verify = VERIFY_PATTERN;
Jens Axboe90059d62007-07-30 09:33:12 +0200713 return 0;
714}
Jens Axboe214e1ec2007-03-15 10:48:13 +0100715
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100716static int str_lockfile_cb(void *data, const char *str)
717{
718 struct thread_data *td = data;
719 char *nr = get_opt_postfix(str);
720
721 td->o.lockfile_batch = 1;
Jens Axboe182ec6e2008-11-14 13:06:06 +0100722 if (nr) {
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100723 td->o.lockfile_batch = atoi(nr);
Jens Axboe182ec6e2008-11-14 13:06:06 +0100724 free(nr);
725 }
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100726
727 return 0;
728}
729
Jens Axboee3cedca2008-11-19 19:57:52 +0100730static int str_write_bw_log_cb(void *data, const char *str)
731{
732 struct thread_data *td = data;
733
734 if (str)
735 td->o.bw_log_file = strdup(str);
736
737 td->o.write_bw_log = 1;
738 return 0;
739}
740
741static int str_write_lat_log_cb(void *data, const char *str)
742{
743 struct thread_data *td = data;
744
745 if (str)
746 td->o.lat_log_file = strdup(str);
747
748 td->o.write_lat_log = 1;
749 return 0;
750}
751
Jens Axboe993bf482008-11-14 13:04:53 +0100752static int str_gtod_reduce_cb(void *data, int *il)
753{
754 struct thread_data *td = data;
755 int val = *il;
756
Jens Axboe02af0982010-06-24 09:59:34 +0200757 td->o.disable_lat = !!val;
Jens Axboe993bf482008-11-14 13:04:53 +0100758 td->o.disable_clat = !!val;
759 td->o.disable_slat = !!val;
760 td->o.disable_bw = !!val;
761 if (val)
762 td->tv_cache_mask = 63;
763
764 return 0;
765}
766
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400767static int str_gtod_cpu_cb(void *data, long long *il)
Jens Axboebe4ecfd2008-12-08 14:10:52 +0100768{
769 struct thread_data *td = data;
770 int val = *il;
771
772 td->o.gtod_cpu = val;
773 td->o.gtod_offload = 1;
774 return 0;
775}
776
Jens Axboe7bb59102011-07-12 19:47:03 +0200777static int str_size_cb(void *data, unsigned long long *__val)
778{
779 struct thread_data *td = data;
780 unsigned long long v = *__val;
781
782 if (parse_is_percent(v)) {
783 td->o.size = 0;
784 td->o.size_percent = -1ULL - v;
785 } else
786 td->o.size = v;
787
788 return 0;
789}
790
Jens Axboe896cac22009-07-01 10:38:35 +0200791static int rw_verify(struct fio_option *o, void *data)
792{
793 struct thread_data *td = data;
794
795 if (read_only && td_write(td)) {
796 log_err("fio: job <%s> has write bit set, but fio is in"
797 " read-only mode\n", td->o.name);
798 return 1;
799 }
800
801 return 0;
802}
803
Jens Axboe276ca4f2009-07-01 10:43:05 +0200804static int gtod_cpu_verify(struct fio_option *o, void *data)
Jens Axboe29d43ff2009-07-01 10:42:18 +0200805{
Jens Axboe276ca4f2009-07-01 10:43:05 +0200806#ifndef FIO_HAVE_CPU_AFFINITY
Jens Axboe29d43ff2009-07-01 10:42:18 +0200807 struct thread_data *td = data;
808
Jens Axboe29d43ff2009-07-01 10:42:18 +0200809 if (td->o.gtod_cpu) {
810 log_err("fio: platform must support CPU affinity for"
811 "gettimeofday() offloading\n");
812 return 1;
813 }
814#endif
815
816 return 0;
817}
818
Jens Axboe90fef2d2009-07-17 22:33:32 +0200819static int kb_base_verify(struct fio_option *o, void *data)
820{
821 struct thread_data *td = data;
822
823 if (td->o.kb_base != 1024 && td->o.kb_base != 1000) {
824 log_err("fio: kb_base set to nonsensical value: %u\n",
825 td->o.kb_base);
826 return 1;
827 }
828
829 return 0;
830}
831
Jens Axboe214e1ec2007-03-15 10:48:13 +0100832#define __stringify_1(x) #x
833#define __stringify(x) __stringify_1(x)
834
835/*
836 * Map of job/command line options
837 */
Jens Axboe07b32322010-03-05 09:48:44 +0100838static struct fio_option options[FIO_MAX_OPTS] = {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100839 {
840 .name = "description",
841 .type = FIO_OPT_STR_STORE,
842 .off1 = td_var_offset(description),
843 .help = "Text job description",
844 },
845 {
846 .name = "name",
847 .type = FIO_OPT_STR_STORE,
848 .off1 = td_var_offset(name),
849 .help = "Name of this job",
850 },
851 {
852 .name = "directory",
853 .type = FIO_OPT_STR_STORE,
854 .off1 = td_var_offset(directory),
855 .cb = str_directory_cb,
856 .help = "Directory to store files in",
857 },
858 {
859 .name = "filename",
860 .type = FIO_OPT_STR_STORE,
861 .off1 = td_var_offset(filename),
862 .cb = str_filename_cb,
Jens Axboef0d524b2009-04-27 08:00:48 +0200863 .prio = -1, /* must come after "directory" */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100864 .help = "File(s) to use for the workload",
865 },
866 {
Jens Axboe90fef2d2009-07-17 22:33:32 +0200867 .name = "kb_base",
868 .type = FIO_OPT_INT,
869 .off1 = td_var_offset(kb_base),
Jens Axboe90fef2d2009-07-17 22:33:32 +0200870 .verify = kb_base_verify,
Jens Axboea639f0b2009-07-18 08:25:35 +0200871 .prio = 1,
Jens Axboe90fef2d2009-07-17 22:33:32 +0200872 .def = "1024",
Jens Axboea639f0b2009-07-18 08:25:35 +0200873 .help = "How many bytes per KB for reporting (1000 or 1024)",
Jens Axboe90fef2d2009-07-17 22:33:32 +0200874 },
875 {
Jens Axboe29c13492008-03-01 19:25:20 +0100876 .name = "lockfile",
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100877 .type = FIO_OPT_STR,
878 .cb = str_lockfile_cb,
879 .off1 = td_var_offset(file_lock_mode),
Jens Axboe29c13492008-03-01 19:25:20 +0100880 .help = "Lock file when doing IO to it",
881 .parent = "filename",
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100882 .def = "none",
883 .posval = {
884 { .ival = "none",
885 .oval = FILE_LOCK_NONE,
886 .help = "No file locking",
887 },
888 { .ival = "exclusive",
889 .oval = FILE_LOCK_EXCLUSIVE,
890 .help = "Exclusive file lock",
891 },
892 {
893 .ival = "readwrite",
894 .oval = FILE_LOCK_READWRITE,
895 .help = "Read vs write lock",
896 },
897 },
Jens Axboe29c13492008-03-01 19:25:20 +0100898 },
899 {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100900 .name = "opendir",
901 .type = FIO_OPT_STR_STORE,
902 .off1 = td_var_offset(opendir),
903 .cb = str_opendir_cb,
904 .help = "Recursively add files from this directory and down",
905 },
906 {
907 .name = "rw",
Jens Axboed3aad8f2007-03-15 14:12:05 +0100908 .alias = "readwrite",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100909 .type = FIO_OPT_STR,
Jens Axboe211097b2007-03-22 18:56:45 +0100910 .cb = str_rw_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100911 .off1 = td_var_offset(td_ddir),
912 .help = "IO direction",
913 .def = "read",
Jens Axboe896cac22009-07-01 10:38:35 +0200914 .verify = rw_verify,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100915 .posval = {
916 { .ival = "read",
917 .oval = TD_DDIR_READ,
918 .help = "Sequential read",
919 },
920 { .ival = "write",
921 .oval = TD_DDIR_WRITE,
922 .help = "Sequential write",
923 },
924 { .ival = "randread",
925 .oval = TD_DDIR_RANDREAD,
926 .help = "Random read",
927 },
928 { .ival = "randwrite",
929 .oval = TD_DDIR_RANDWRITE,
930 .help = "Random write",
931 },
932 { .ival = "rw",
933 .oval = TD_DDIR_RW,
934 .help = "Sequential read and write mix",
935 },
936 { .ival = "randrw",
937 .oval = TD_DDIR_RANDRW,
938 .help = "Random read and write mix"
939 },
940 },
941 },
942 {
Jens Axboe38dad622010-07-20 14:46:00 -0600943 .name = "rw_sequencer",
944 .type = FIO_OPT_STR,
945 .off1 = td_var_offset(rw_seq),
946 .help = "IO offset generator modifier",
947 .def = "sequential",
948 .posval = {
949 { .ival = "sequential",
950 .oval = RW_SEQ_SEQ,
951 .help = "Generate sequential offsets",
952 },
953 { .ival = "identical",
954 .oval = RW_SEQ_IDENT,
955 .help = "Generate identical offsets",
956 },
957 },
958 },
959
960 {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100961 .name = "ioengine",
962 .type = FIO_OPT_STR_STORE,
963 .off1 = td_var_offset(ioengine),
964 .help = "IO engine to use",
Jens Axboe58483fa2011-01-19 11:09:58 -0700965 .def = FIO_PREFERRED_ENGINE,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100966 .posval = {
967 { .ival = "sync",
968 .help = "Use read/write",
969 },
gurudas paia31041e2007-10-23 15:12:30 +0200970 { .ival = "psync",
971 .help = "Use pread/pwrite",
972 },
Jens Axboe1d2af022008-02-04 10:59:07 +0100973 { .ival = "vsync",
Bruce Cran03e20d62011-01-02 20:14:54 +0100974 .help = "Use readv/writev",
Jens Axboe1d2af022008-02-04 10:59:07 +0100975 },
Jens Axboe214e1ec2007-03-15 10:48:13 +0100976#ifdef FIO_HAVE_LIBAIO
977 { .ival = "libaio",
978 .help = "Linux native asynchronous IO",
Jens Axboec44b1ff2011-08-30 20:43:53 -0600979 .cb = str_libaio_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100980 },
981#endif
982#ifdef FIO_HAVE_POSIXAIO
983 { .ival = "posixaio",
984 .help = "POSIX asynchronous IO",
985 },
986#endif
Jens Axboe417f0062008-06-02 11:59:30 +0200987#ifdef FIO_HAVE_SOLARISAIO
988 { .ival = "solarisaio",
989 .help = "Solaris native asynchronous IO",
990 },
991#endif
Bruce Cran03e20d62011-01-02 20:14:54 +0100992#ifdef FIO_HAVE_WINDOWSAIO
993 { .ival = "windowsaio",
Jens Axboe3be80072011-01-19 11:07:28 -0700994 .help = "Windows native asynchronous IO"
Bruce Cran03e20d62011-01-02 20:14:54 +0100995 },
Jens Axboe3be80072011-01-19 11:07:28 -0700996#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +0100997 { .ival = "mmap",
Bruce Cran03e20d62011-01-02 20:14:54 +0100998 .help = "Memory mapped IO"
Jens Axboe214e1ec2007-03-15 10:48:13 +0100999 },
1000#ifdef FIO_HAVE_SPLICE
1001 { .ival = "splice",
1002 .help = "splice/vmsplice based IO",
1003 },
Jens Axboe9cce02e2007-06-22 15:42:21 +02001004 { .ival = "netsplice",
1005 .help = "splice/vmsplice to/from the network",
1006 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001007#endif
1008#ifdef FIO_HAVE_SGIO
1009 { .ival = "sg",
1010 .help = "SCSI generic v3 IO",
1011 },
1012#endif
1013 { .ival = "null",
1014 .help = "Testing engine (no data transfer)",
1015 },
1016 { .ival = "net",
1017 .help = "Network IO",
1018 },
1019#ifdef FIO_HAVE_SYSLET
1020 { .ival = "syslet-rw",
1021 .help = "syslet enabled async pread/pwrite IO",
1022 },
1023#endif
1024 { .ival = "cpuio",
Bruce Cran03e20d62011-01-02 20:14:54 +01001025 .help = "CPU cycle burner engine",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001026 },
Jens Axboeb8c82a42007-03-21 08:48:26 +01001027#ifdef FIO_HAVE_GUASI
1028 { .ival = "guasi",
1029 .help = "GUASI IO engine",
1030 },
1031#endif
Jens Axboe79a43182010-09-07 13:28:58 +02001032#ifdef FIO_HAVE_BINJECT
1033 { .ival = "binject",
1034 .help = "binject direct inject block engine",
1035 },
1036#endif
ren yufei21b8aee2011-08-01 10:01:57 +02001037#ifdef FIO_HAVE_RDMA
1038 { .ival = "rdma",
1039 .help = "RDMA IO engine",
1040 },
1041#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +01001042 { .ival = "external",
1043 .help = "Load external engine (append name)",
1044 },
1045 },
1046 },
1047 {
1048 .name = "iodepth",
1049 .type = FIO_OPT_INT,
1050 .off1 = td_var_offset(iodepth),
Bruce Cran03e20d62011-01-02 20:14:54 +01001051 .help = "Number of IO buffers to keep in flight",
Jens Axboe757aff42007-12-12 19:42:13 +01001052 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001053 .def = "1",
1054 },
1055 {
1056 .name = "iodepth_batch",
Jens Axboe49504212008-06-05 09:03:30 +02001057 .alias = "iodepth_batch_submit",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001058 .type = FIO_OPT_INT,
1059 .off1 = td_var_offset(iodepth_batch),
Jens Axboed65db442009-01-16 19:15:33 +01001060 .help = "Number of IO buffers to submit in one go",
Jens Axboeafdf9352007-07-31 16:14:34 +02001061 .parent = "iodepth",
Jens Axboea2e6f8a2008-01-18 10:28:11 +01001062 .minval = 1,
1063 .def = "1",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001064 },
1065 {
Jens Axboe49504212008-06-05 09:03:30 +02001066 .name = "iodepth_batch_complete",
1067 .type = FIO_OPT_INT,
1068 .off1 = td_var_offset(iodepth_batch_complete),
Jens Axboed65db442009-01-16 19:15:33 +01001069 .help = "Number of IO buffers to retrieve in one go",
Jens Axboe49504212008-06-05 09:03:30 +02001070 .parent = "iodepth",
1071 .minval = 0,
1072 .def = "1",
1073 },
1074 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001075 .name = "iodepth_low",
1076 .type = FIO_OPT_INT,
1077 .off1 = td_var_offset(iodepth_low),
1078 .help = "Low water mark for queuing depth",
Jens Axboeafdf9352007-07-31 16:14:34 +02001079 .parent = "iodepth",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001080 },
1081 {
1082 .name = "size",
1083 .type = FIO_OPT_STR_VAL,
Jens Axboe7bb59102011-07-12 19:47:03 +02001084 .cb = str_size_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001085 .help = "Total size of device or files",
1086 },
1087 {
Shawn Lewisaa31f1f2008-01-11 09:45:11 +01001088 .name = "fill_device",
Jens Axboe74586c12011-01-20 10:16:03 -07001089 .alias = "fill_fs",
Shawn Lewisaa31f1f2008-01-11 09:45:11 +01001090 .type = FIO_OPT_BOOL,
1091 .off1 = td_var_offset(fill_device),
1092 .help = "Write until an ENOSPC error occurs",
1093 .def = "0",
1094 },
1095 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001096 .name = "filesize",
1097 .type = FIO_OPT_STR_VAL,
1098 .off1 = td_var_offset(file_size_low),
1099 .off2 = td_var_offset(file_size_high),
Jens Axboec3edbdb2007-07-20 14:25:31 +02001100 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001101 .help = "Size of individual files",
1102 },
1103 {
Jens Axboe67a10002007-07-31 23:12:16 +02001104 .name = "offset",
1105 .alias = "fileoffset",
1106 .type = FIO_OPT_STR_VAL,
1107 .off1 = td_var_offset(start_offset),
1108 .help = "Start IO from this offset",
1109 .def = "0",
1110 },
1111 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001112 .name = "bs",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001113 .alias = "blocksize",
Jens Axboee01b22b2009-06-09 15:43:25 +02001114 .type = FIO_OPT_INT,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001115 .off1 = td_var_offset(bs[DDIR_READ]),
1116 .off2 = td_var_offset(bs[DDIR_WRITE]),
Jens Axboec3edbdb2007-07-20 14:25:31 +02001117 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001118 .help = "Block size unit",
1119 .def = "4k",
Jens Axboe67a10002007-07-31 23:12:16 +02001120 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001121 },
1122 {
Jens Axboe2b7a01d2009-03-11 11:00:13 +01001123 .name = "ba",
1124 .alias = "blockalign",
Jens Axboee01b22b2009-06-09 15:43:25 +02001125 .type = FIO_OPT_INT,
Jens Axboe2b7a01d2009-03-11 11:00:13 +01001126 .off1 = td_var_offset(ba[DDIR_READ]),
1127 .off2 = td_var_offset(ba[DDIR_WRITE]),
1128 .minval = 1,
1129 .help = "IO block offset alignment",
1130 .parent = "rw",
1131 },
1132 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001133 .name = "bsrange",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001134 .alias = "blocksize_range",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001135 .type = FIO_OPT_RANGE,
1136 .off1 = td_var_offset(min_bs[DDIR_READ]),
1137 .off2 = td_var_offset(max_bs[DDIR_READ]),
1138 .off3 = td_var_offset(min_bs[DDIR_WRITE]),
1139 .off4 = td_var_offset(max_bs[DDIR_WRITE]),
Jens Axboec3edbdb2007-07-20 14:25:31 +02001140 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001141 .help = "Set block size range (in more detail than bs)",
Jens Axboe67a10002007-07-31 23:12:16 +02001142 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001143 },
1144 {
Jens Axboe564ca972007-12-14 12:21:19 +01001145 .name = "bssplit",
1146 .type = FIO_OPT_STR,
1147 .cb = str_bssplit_cb,
1148 .help = "Set a specific mix of block sizes",
1149 .parent = "rw",
1150 },
1151 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001152 .name = "bs_unaligned",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001153 .alias = "blocksize_unaligned",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001154 .type = FIO_OPT_STR_SET,
1155 .off1 = td_var_offset(bs_unaligned),
1156 .help = "Don't sector align IO buffer sizes",
Jens Axboe67a10002007-07-31 23:12:16 +02001157 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001158 },
1159 {
1160 .name = "randrepeat",
1161 .type = FIO_OPT_BOOL,
1162 .off1 = td_var_offset(rand_repeatable),
1163 .help = "Use repeatable random IO pattern",
1164 .def = "1",
Jens Axboe67a10002007-07-31 23:12:16 +02001165 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001166 },
1167 {
Jens Axboe2615cc42011-03-28 09:35:09 +02001168 .name = "use_os_rand",
1169 .type = FIO_OPT_BOOL,
1170 .off1 = td_var_offset(use_os_rand),
1171 .help = "Set to use OS random generator",
1172 .def = "0",
1173 .parent = "rw",
1174 },
1175 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001176 .name = "norandommap",
1177 .type = FIO_OPT_STR_SET,
1178 .off1 = td_var_offset(norandommap),
1179 .help = "Accept potential duplicate random blocks",
Jens Axboe67a10002007-07-31 23:12:16 +02001180 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001181 },
1182 {
Jens Axboe2b386d22008-03-26 10:32:57 +01001183 .name = "softrandommap",
1184 .type = FIO_OPT_BOOL,
1185 .off1 = td_var_offset(softrandommap),
Jens Axboef66ab3c2008-06-05 11:48:22 +02001186 .help = "Set norandommap if randommap allocation fails",
Jens Axboe2b386d22008-03-26 10:32:57 +01001187 .parent = "norandommap",
1188 .def = "0",
1189 },
1190 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001191 .name = "nrfiles",
Jens Axboed7c8be02010-11-25 08:21:39 +01001192 .alias = "nr_files",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001193 .type = FIO_OPT_INT,
1194 .off1 = td_var_offset(nr_files),
1195 .help = "Split job workload between this number of files",
1196 .def = "1",
1197 },
1198 {
1199 .name = "openfiles",
1200 .type = FIO_OPT_INT,
1201 .off1 = td_var_offset(open_files),
1202 .help = "Number of files to keep open at the same time",
1203 },
1204 {
1205 .name = "file_service_type",
1206 .type = FIO_OPT_STR,
1207 .cb = str_fst_cb,
1208 .off1 = td_var_offset(file_service_type),
1209 .help = "How to select which file to service next",
1210 .def = "roundrobin",
1211 .posval = {
1212 { .ival = "random",
1213 .oval = FIO_FSERVICE_RANDOM,
1214 .help = "Choose a file at random",
1215 },
1216 { .ival = "roundrobin",
1217 .oval = FIO_FSERVICE_RR,
1218 .help = "Round robin select files",
1219 },
Jens Axboea086c252009-03-04 08:27:37 +01001220 { .ival = "sequential",
1221 .oval = FIO_FSERVICE_SEQ,
1222 .help = "Finish one file before moving to the next",
1223 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001224 },
Jens Axboe67a10002007-07-31 23:12:16 +02001225 .parent = "nrfiles",
1226 },
Jens Axboe7bc8c2c2010-01-28 11:31:31 +01001227#ifdef FIO_HAVE_FALLOCATE
1228 {
1229 .name = "fallocate",
Eric Gourioua596f042011-06-17 09:11:45 +02001230 .type = FIO_OPT_STR,
1231 .off1 = td_var_offset(fallocate_mode),
1232 .help = "Whether pre-allocation is performed when laying out files",
1233 .def = "posix",
1234 .posval = {
1235 { .ival = "none",
1236 .oval = FIO_FALLOCATE_NONE,
1237 .help = "Do not pre-allocate space",
1238 },
1239 { .ival = "posix",
1240 .oval = FIO_FALLOCATE_POSIX,
1241 .help = "Use posix_fallocate()",
1242 },
1243#ifdef FIO_HAVE_LINUX_FALLOCATE
1244 { .ival = "keep",
1245 .oval = FIO_FALLOCATE_KEEP_SIZE,
1246 .help = "Use fallocate(..., FALLOC_FL_KEEP_SIZE, ...)",
1247 },
Jens Axboe7bc8c2c2010-01-28 11:31:31 +01001248#endif
Eric Gourioua596f042011-06-17 09:11:45 +02001249 /* Compatibility with former boolean values */
1250 { .ival = "0",
1251 .oval = FIO_FALLOCATE_NONE,
1252 .help = "Alias for 'none'",
1253 },
1254 { .ival = "1",
1255 .oval = FIO_FALLOCATE_POSIX,
1256 .help = "Alias for 'posix'",
1257 },
1258 },
1259 },
1260#endif /* FIO_HAVE_FALLOCATE */
Jens Axboe67a10002007-07-31 23:12:16 +02001261 {
1262 .name = "fadvise_hint",
1263 .type = FIO_OPT_BOOL,
1264 .off1 = td_var_offset(fadvise_hint),
1265 .help = "Use fadvise() to advise the kernel on IO pattern",
1266 .def = "1",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001267 },
1268 {
1269 .name = "fsync",
1270 .type = FIO_OPT_INT,
1271 .off1 = td_var_offset(fsync_blocks),
1272 .help = "Issue fsync for writes every given number of blocks",
1273 .def = "0",
1274 },
1275 {
Jens Axboe5f9099e2009-06-16 22:40:26 +02001276 .name = "fdatasync",
1277 .type = FIO_OPT_INT,
1278 .off1 = td_var_offset(fdatasync_blocks),
1279 .help = "Issue fdatasync for writes every given number of blocks",
1280 .def = "0",
1281 },
Jens Axboe1ef2b6b2010-10-08 15:07:01 +02001282 {
1283 .name = "write_barrier",
1284 .type = FIO_OPT_INT,
1285 .off1 = td_var_offset(barrier_blocks),
1286 .help = "Make every Nth write a barrier write",
1287 .def = "0",
1288 },
Jens Axboe44f29692010-03-09 20:09:44 +01001289#ifdef FIO_HAVE_SYNC_FILE_RANGE
1290 {
1291 .name = "sync_file_range",
1292 .posval = {
1293 { .ival = "wait_before",
1294 .oval = SYNC_FILE_RANGE_WAIT_BEFORE,
1295 .help = "SYNC_FILE_RANGE_WAIT_BEFORE",
Jens Axboe3843deb2010-03-09 20:41:15 +01001296 .or = 1,
Jens Axboe44f29692010-03-09 20:09:44 +01001297 },
1298 { .ival = "write",
1299 .oval = SYNC_FILE_RANGE_WRITE,
1300 .help = "SYNC_FILE_RANGE_WRITE",
Jens Axboe3843deb2010-03-09 20:41:15 +01001301 .or = 1,
Jens Axboe44f29692010-03-09 20:09:44 +01001302 },
1303 {
1304 .ival = "wait_after",
1305 .oval = SYNC_FILE_RANGE_WAIT_AFTER,
1306 .help = "SYNC_FILE_RANGE_WAIT_AFTER",
Jens Axboe3843deb2010-03-09 20:41:15 +01001307 .or = 1,
Jens Axboe44f29692010-03-09 20:09:44 +01001308 },
1309 },
Jens Axboe3843deb2010-03-09 20:41:15 +01001310 .type = FIO_OPT_STR_MULTI,
Jens Axboe44f29692010-03-09 20:09:44 +01001311 .cb = str_sfr_cb,
1312 .off1 = td_var_offset(sync_file_range),
1313 .help = "Use sync_file_range()",
1314 },
1315#endif
Jens Axboe5f9099e2009-06-16 22:40:26 +02001316 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001317 .name = "direct",
1318 .type = FIO_OPT_BOOL,
1319 .off1 = td_var_offset(odirect),
1320 .help = "Use O_DIRECT IO (negates buffered)",
1321 .def = "0",
1322 },
1323 {
1324 .name = "buffered",
1325 .type = FIO_OPT_BOOL,
1326 .off1 = td_var_offset(odirect),
1327 .neg = 1,
1328 .help = "Use buffered IO (negates direct)",
1329 .def = "1",
1330 },
1331 {
1332 .name = "overwrite",
1333 .type = FIO_OPT_BOOL,
1334 .off1 = td_var_offset(overwrite),
1335 .help = "When writing, set whether to overwrite current data",
1336 .def = "0",
1337 },
1338 {
1339 .name = "loops",
1340 .type = FIO_OPT_INT,
1341 .off1 = td_var_offset(loops),
1342 .help = "Number of times to run the job",
1343 .def = "1",
1344 },
1345 {
1346 .name = "numjobs",
1347 .type = FIO_OPT_INT,
1348 .off1 = td_var_offset(numjobs),
1349 .help = "Duplicate this job this many times",
1350 .def = "1",
1351 },
1352 {
1353 .name = "startdelay",
Jens Axboea5737c92010-06-29 10:40:30 +02001354 .type = FIO_OPT_STR_VAL_TIME,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001355 .off1 = td_var_offset(start_delay),
1356 .help = "Only start job when this period has passed",
1357 .def = "0",
1358 },
1359 {
1360 .name = "runtime",
1361 .alias = "timeout",
1362 .type = FIO_OPT_STR_VAL_TIME,
1363 .off1 = td_var_offset(timeout),
1364 .help = "Stop workload when this amount of time has passed",
1365 .def = "0",
1366 },
1367 {
Jens Axboecf4464c2007-04-17 20:14:42 +02001368 .name = "time_based",
1369 .type = FIO_OPT_STR_SET,
1370 .off1 = td_var_offset(time_based),
1371 .help = "Keep running until runtime/timeout is met",
1372 },
1373 {
Jens Axboe721938a2008-09-10 09:46:16 +02001374 .name = "ramp_time",
1375 .type = FIO_OPT_STR_VAL_TIME,
1376 .off1 = td_var_offset(ramp_time),
1377 .help = "Ramp up time before measuring performance",
1378 },
1379 {
Jens Axboec223da82010-03-24 13:23:53 +01001380 .name = "clocksource",
1381 .type = FIO_OPT_STR,
1382 .cb = fio_clock_source_cb,
1383 .off1 = td_var_offset(clocksource),
1384 .help = "What type of timing source to use",
Jens Axboec223da82010-03-24 13:23:53 +01001385 .posval = {
1386 { .ival = "gettimeofday",
1387 .oval = CS_GTOD,
1388 .help = "Use gettimeofday(2) for timing",
1389 },
1390 { .ival = "clock_gettime",
1391 .oval = CS_CGETTIME,
1392 .help = "Use clock_gettime(2) for timing",
1393 },
1394#ifdef ARCH_HAVE_CPU_CLOCK
1395 { .ival = "cpu",
1396 .oval = CS_CPUCLOCK,
1397 .help = "Use CPU private clock",
1398 },
1399#endif
1400 },
1401 },
1402 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001403 .name = "mem",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001404 .alias = "iomem",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001405 .type = FIO_OPT_STR,
1406 .cb = str_mem_cb,
1407 .off1 = td_var_offset(mem_type),
1408 .help = "Backing type for IO buffers",
1409 .def = "malloc",
1410 .posval = {
1411 { .ival = "malloc",
1412 .oval = MEM_MALLOC,
1413 .help = "Use malloc(3) for IO buffers",
1414 },
Jens Axboeb370e462007-03-19 10:51:49 +01001415 { .ival = "shm",
1416 .oval = MEM_SHM,
1417 .help = "Use shared memory segments for IO buffers",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001418 },
1419#ifdef FIO_HAVE_HUGETLB
Jens Axboe37c8cdf2007-03-19 13:14:03 +01001420 { .ival = "shmhuge",
1421 .oval = MEM_SHMHUGE,
1422 .help = "Like shm, but use huge pages",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001423 },
1424#endif
Jens Axboeb370e462007-03-19 10:51:49 +01001425 { .ival = "mmap",
1426 .oval = MEM_MMAP,
1427 .help = "Use mmap(2) (file or anon) for IO buffers",
1428 },
Jens Axboe37c8cdf2007-03-19 13:14:03 +01001429#ifdef FIO_HAVE_HUGETLB
1430 { .ival = "mmaphuge",
1431 .oval = MEM_MMAPHUGE,
1432 .help = "Like mmap, but use huge pages",
1433 },
1434#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +01001435 },
1436 },
1437 {
Jens Axboed529ee12009-07-01 10:33:03 +02001438 .name = "iomem_align",
1439 .alias = "mem_align",
1440 .type = FIO_OPT_INT,
1441 .off1 = td_var_offset(mem_align),
1442 .minval = 0,
1443 .help = "IO memory buffer offset alignment",
1444 .def = "0",
1445 .parent = "iomem",
1446 },
1447 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001448 .name = "verify",
1449 .type = FIO_OPT_STR,
1450 .off1 = td_var_offset(verify),
1451 .help = "Verify data written",
Jens Axboe5d7c5d32010-06-21 15:08:17 +02001452 .cb = str_verify_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001453 .def = "0",
1454 .posval = {
1455 { .ival = "0",
1456 .oval = VERIFY_NONE,
1457 .help = "Don't do IO verification",
1458 },
Jens Axboefcca4b52007-07-27 15:42:00 +02001459 { .ival = "md5",
1460 .oval = VERIFY_MD5,
1461 .help = "Use md5 checksums for verification",
1462 },
Jens Axboed77a7af2007-07-27 15:35:06 +02001463 { .ival = "crc64",
1464 .oval = VERIFY_CRC64,
1465 .help = "Use crc64 checksums for verification",
1466 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001467 { .ival = "crc32",
1468 .oval = VERIFY_CRC32,
1469 .help = "Use crc32 checksums for verification",
1470 },
Jens Axboeaf497e62008-08-04 15:40:35 +02001471 { .ival = "crc32c-intel",
1472 .oval = VERIFY_CRC32C_INTEL,
1473 .help = "Use hw crc32c checksums for verification",
1474 },
Jens Axboebac39e02008-06-11 20:46:19 +02001475 { .ival = "crc32c",
1476 .oval = VERIFY_CRC32C,
1477 .help = "Use crc32c checksums for verification",
1478 },
Jens Axboe969f7ed2007-07-27 09:07:17 +02001479 { .ival = "crc16",
1480 .oval = VERIFY_CRC16,
1481 .help = "Use crc16 checksums for verification",
1482 },
Jens Axboe1e154bd2007-07-27 09:52:40 +02001483 { .ival = "crc7",
1484 .oval = VERIFY_CRC7,
1485 .help = "Use crc7 checksums for verification",
1486 },
Jens Axboe7c353ce2009-08-09 22:40:33 +02001487 { .ival = "sha1",
1488 .oval = VERIFY_SHA1,
1489 .help = "Use sha1 checksums for verification",
1490 },
Jens Axboecd14cc12007-07-30 10:59:33 +02001491 { .ival = "sha256",
1492 .oval = VERIFY_SHA256,
1493 .help = "Use sha256 checksums for verification",
1494 },
1495 { .ival = "sha512",
1496 .oval = VERIFY_SHA512,
1497 .help = "Use sha512 checksums for verification",
1498 },
Shawn Lewis7437ee82007-08-02 21:05:58 +02001499 { .ival = "meta",
1500 .oval = VERIFY_META,
1501 .help = "Use io information",
1502 },
Jens Axboe36690c92007-03-26 10:23:34 +02001503 {
1504 .ival = "null",
1505 .oval = VERIFY_NULL,
1506 .help = "Pretend to verify",
1507 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001508 },
1509 },
1510 {
Jens Axboe005c5652007-08-02 22:21:36 +02001511 .name = "do_verify",
Jens Axboe68e1f292007-08-10 10:32:14 +02001512 .type = FIO_OPT_BOOL,
Jens Axboe005c5652007-08-02 22:21:36 +02001513 .off1 = td_var_offset(do_verify),
1514 .help = "Run verification stage after write",
1515 .def = "1",
1516 .parent = "verify",
1517 },
1518 {
Jens Axboe160b9662007-03-27 10:59:49 +02001519 .name = "verifysort",
1520 .type = FIO_OPT_BOOL,
1521 .off1 = td_var_offset(verifysort),
1522 .help = "Sort written verify blocks for read back",
1523 .def = "1",
Jens Axboec83f2df2007-07-31 22:51:47 +02001524 .parent = "verify",
Jens Axboe160b9662007-03-27 10:59:49 +02001525 },
1526 {
Jens Axboea59e1702007-07-30 08:53:27 +02001527 .name = "verify_interval",
Jens Axboee01b22b2009-06-09 15:43:25 +02001528 .type = FIO_OPT_INT,
Jens Axboea59e1702007-07-30 08:53:27 +02001529 .off1 = td_var_offset(verify_interval),
Jens Axboe819a9682007-07-28 21:30:31 +02001530 .minval = 2 * sizeof(struct verify_header),
Jens Axboea59e1702007-07-30 08:53:27 +02001531 .help = "Store verify buffer header every N bytes",
Jens Axboeafdf9352007-07-31 16:14:34 +02001532 .parent = "verify",
Shawn Lewis3f9f4e22007-07-28 21:10:37 +02001533 },
1534 {
Jens Axboea59e1702007-07-30 08:53:27 +02001535 .name = "verify_offset",
Jens Axboee01b22b2009-06-09 15:43:25 +02001536 .type = FIO_OPT_INT,
Jens Axboea59e1702007-07-30 08:53:27 +02001537 .help = "Offset verify header location by N bytes",
Shawn Lewis546a9142007-07-28 21:11:37 +02001538 .def = "0",
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001539 .cb = str_verify_offset_cb,
Jens Axboeafdf9352007-07-31 16:14:34 +02001540 .parent = "verify",
Shawn Lewis546a9142007-07-28 21:11:37 +02001541 },
1542 {
Shawn Lewise28218f2008-01-16 11:01:33 +01001543 .name = "verify_pattern",
Radha Ramachandran0e92f872009-10-27 20:14:27 +01001544 .type = FIO_OPT_STR,
Shawn Lewise28218f2008-01-16 11:01:33 +01001545 .cb = str_verify_pattern_cb,
1546 .help = "Fill pattern for IO buffers",
1547 .parent = "verify",
1548 },
1549 {
Jens Axboea12a3b42007-08-09 10:20:54 +02001550 .name = "verify_fatal",
Jens Axboe68e1f292007-08-10 10:32:14 +02001551 .type = FIO_OPT_BOOL,
Jens Axboea12a3b42007-08-09 10:20:54 +02001552 .off1 = td_var_offset(verify_fatal),
1553 .def = "0",
1554 .help = "Exit on a single verify failure, don't continue",
1555 .parent = "verify",
1556 },
1557 {
Jens Axboeb463e932011-01-12 09:03:23 +01001558 .name = "verify_dump",
1559 .type = FIO_OPT_BOOL,
1560 .off1 = td_var_offset(verify_dump),
1561 .def = "1",
1562 .help = "Dump contents of good and bad blocks on failure",
1563 .parent = "verify",
1564 },
1565 {
Jens Axboee8462bd2009-07-06 12:59:04 +02001566 .name = "verify_async",
1567 .type = FIO_OPT_INT,
1568 .off1 = td_var_offset(verify_async),
1569 .def = "0",
1570 .help = "Number of async verifier threads to use",
1571 .parent = "verify",
1572 },
Jens Axboe9e144182010-06-15 14:25:36 +02001573 {
1574 .name = "verify_backlog",
1575 .type = FIO_OPT_STR_VAL,
1576 .off1 = td_var_offset(verify_backlog),
1577 .help = "Verify after this number of blocks are written",
1578 .parent = "verify",
1579 },
1580 {
1581 .name = "verify_backlog_batch",
1582 .type = FIO_OPT_INT,
1583 .off1 = td_var_offset(verify_batch),
1584 .help = "Verify this number of IO blocks",
Jens Axboe0d29de82010-09-01 13:54:15 +02001585 .parent = "verify",
Jens Axboe9e144182010-06-15 14:25:36 +02001586 },
Jens Axboee8462bd2009-07-06 12:59:04 +02001587#ifdef FIO_HAVE_CPU_AFFINITY
1588 {
1589 .name = "verify_async_cpus",
1590 .type = FIO_OPT_STR,
1591 .cb = str_verify_cpus_allowed_cb,
1592 .help = "Set CPUs allowed for async verify threads",
1593 .parent = "verify_async",
1594 },
1595#endif
Jens Axboe0d29de82010-09-01 13:54:15 +02001596#ifdef FIO_HAVE_TRIM
1597 {
1598 .name = "trim_percentage",
1599 .type = FIO_OPT_INT,
1600 .cb = str_verify_trim_cb,
1601 .maxval = 100,
1602 .help = "Number of verify blocks to discard/trim",
1603 .parent = "verify",
1604 .def = "0",
1605 },
1606 {
1607 .name = "trim_verify_zero",
1608 .type = FIO_OPT_INT,
1609 .help = "Verify that trim/discarded blocks are returned as zeroes",
1610 .off1 = td_var_offset(trim_zero),
1611 .parent = "trim_percentage",
1612 .def = "1",
1613 },
1614 {
1615 .name = "trim_backlog",
1616 .type = FIO_OPT_STR_VAL,
1617 .off1 = td_var_offset(trim_backlog),
1618 .help = "Trim after this number of blocks are written",
1619 .parent = "trim_percentage",
1620 },
1621 {
1622 .name = "trim_backlog_batch",
1623 .type = FIO_OPT_INT,
1624 .off1 = td_var_offset(trim_batch),
1625 .help = "Trim this number of IO blocks",
1626 .parent = "trim_percentage",
1627 },
1628#endif
Jens Axboee8462bd2009-07-06 12:59:04 +02001629 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001630 .name = "write_iolog",
1631 .type = FIO_OPT_STR_STORE,
1632 .off1 = td_var_offset(write_iolog_file),
1633 .help = "Store IO pattern to file",
1634 },
1635 {
1636 .name = "read_iolog",
1637 .type = FIO_OPT_STR_STORE,
1638 .off1 = td_var_offset(read_iolog_file),
1639 .help = "Playback IO pattern from file",
1640 },
1641 {
David Nellans64bbb862010-08-24 22:13:30 +02001642 .name = "replay_no_stall",
1643 .type = FIO_OPT_INT,
1644 .off1 = td_var_offset(no_stall),
1645 .def = "0",
Jens Axboe87e7a972010-08-25 09:01:25 +02001646 .parent = "read_iolog",
David Nellans64bbb862010-08-24 22:13:30 +02001647 .help = "Playback IO pattern file as fast as possible without stalls",
1648 },
1649 {
David Nellansd1c46c02010-08-31 21:20:47 +02001650 .name = "replay_redirect",
1651 .type = FIO_OPT_STR_STORE,
1652 .off1 = td_var_offset(replay_redirect),
1653 .parent = "read_iolog",
1654 .help = "Replay all I/O onto this device, regardless of trace device",
1655 },
1656 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001657 .name = "exec_prerun",
1658 .type = FIO_OPT_STR_STORE,
1659 .off1 = td_var_offset(exec_prerun),
1660 .help = "Execute this file prior to running job",
1661 },
1662 {
1663 .name = "exec_postrun",
1664 .type = FIO_OPT_STR_STORE,
1665 .off1 = td_var_offset(exec_postrun),
1666 .help = "Execute this file after running job",
1667 },
1668#ifdef FIO_HAVE_IOSCHED_SWITCH
1669 {
1670 .name = "ioscheduler",
1671 .type = FIO_OPT_STR_STORE,
1672 .off1 = td_var_offset(ioscheduler),
1673 .help = "Use this IO scheduler on the backing device",
1674 },
1675#endif
1676 {
1677 .name = "zonesize",
1678 .type = FIO_OPT_STR_VAL,
1679 .off1 = td_var_offset(zone_size),
1680 .help = "Give size of an IO zone",
1681 .def = "0",
1682 },
1683 {
1684 .name = "zoneskip",
1685 .type = FIO_OPT_STR_VAL,
1686 .off1 = td_var_offset(zone_skip),
1687 .help = "Space between IO zones",
1688 .def = "0",
1689 },
1690 {
1691 .name = "lockmem",
1692 .type = FIO_OPT_STR_VAL,
1693 .cb = str_lockmem_cb,
1694 .help = "Lock down this amount of memory",
1695 .def = "0",
1696 },
1697 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001698 .name = "rwmixread",
1699 .type = FIO_OPT_INT,
Jens Axboecb499fc2008-05-28 10:33:32 +02001700 .cb = str_rwmix_read_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001701 .maxval = 100,
1702 .help = "Percentage of mixed workload that is reads",
1703 .def = "50",
1704 },
1705 {
1706 .name = "rwmixwrite",
1707 .type = FIO_OPT_INT,
Jens Axboecb499fc2008-05-28 10:33:32 +02001708 .cb = str_rwmix_write_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001709 .maxval = 100,
1710 .help = "Percentage of mixed workload that is writes",
1711 .def = "50",
1712 },
1713 {
Jens Axboeafdf9352007-07-31 16:14:34 +02001714 .name = "rwmixcycle",
Jens Axboe15ca1502008-04-07 09:26:02 +02001715 .type = FIO_OPT_DEPRECATED,
Jens Axboeafdf9352007-07-31 16:14:34 +02001716 },
1717 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001718 .name = "nice",
1719 .type = FIO_OPT_INT,
1720 .off1 = td_var_offset(nice),
1721 .help = "Set job CPU nice value",
1722 .minval = -19,
1723 .maxval = 20,
1724 .def = "0",
1725 },
1726#ifdef FIO_HAVE_IOPRIO
1727 {
1728 .name = "prio",
1729 .type = FIO_OPT_INT,
1730 .cb = str_prio_cb,
1731 .help = "Set job IO priority value",
1732 .minval = 0,
1733 .maxval = 7,
1734 },
1735 {
1736 .name = "prioclass",
1737 .type = FIO_OPT_INT,
1738 .cb = str_prioclass_cb,
1739 .help = "Set job IO priority class",
1740 .minval = 0,
1741 .maxval = 3,
1742 },
1743#endif
1744 {
1745 .name = "thinktime",
1746 .type = FIO_OPT_INT,
1747 .off1 = td_var_offset(thinktime),
1748 .help = "Idle time between IO buffers (usec)",
1749 .def = "0",
1750 },
1751 {
1752 .name = "thinktime_spin",
1753 .type = FIO_OPT_INT,
1754 .off1 = td_var_offset(thinktime_spin),
1755 .help = "Start think time by spinning this amount (usec)",
1756 .def = "0",
Jens Axboeafdf9352007-07-31 16:14:34 +02001757 .parent = "thinktime",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001758 },
1759 {
1760 .name = "thinktime_blocks",
1761 .type = FIO_OPT_INT,
1762 .off1 = td_var_offset(thinktime_blocks),
1763 .help = "IO buffer period between 'thinktime'",
1764 .def = "1",
Jens Axboeafdf9352007-07-31 16:14:34 +02001765 .parent = "thinktime",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001766 },
1767 {
1768 .name = "rate",
Jens Axboee01b22b2009-06-09 15:43:25 +02001769 .type = FIO_OPT_INT,
Jens Axboe581e7142009-06-09 12:47:16 +02001770 .off1 = td_var_offset(rate[0]),
1771 .off2 = td_var_offset(rate[1]),
Jens Axboe214e1ec2007-03-15 10:48:13 +01001772 .help = "Set bandwidth rate",
1773 },
1774 {
1775 .name = "ratemin",
Jens Axboee01b22b2009-06-09 15:43:25 +02001776 .type = FIO_OPT_INT,
Jens Axboe581e7142009-06-09 12:47:16 +02001777 .off1 = td_var_offset(ratemin[0]),
1778 .off2 = td_var_offset(ratemin[1]),
Jens Axboe4e991c22007-03-15 11:41:11 +01001779 .help = "Job must meet this rate or it will be shutdown",
Jens Axboeafdf9352007-07-31 16:14:34 +02001780 .parent = "rate",
Jens Axboe4e991c22007-03-15 11:41:11 +01001781 },
1782 {
1783 .name = "rate_iops",
Jens Axboee01b22b2009-06-09 15:43:25 +02001784 .type = FIO_OPT_INT,
Jens Axboe581e7142009-06-09 12:47:16 +02001785 .off1 = td_var_offset(rate_iops[0]),
1786 .off2 = td_var_offset(rate_iops[1]),
Jens Axboe4e991c22007-03-15 11:41:11 +01001787 .help = "Limit IO used to this number of IO operations/sec",
1788 },
1789 {
1790 .name = "rate_iops_min",
Jens Axboee01b22b2009-06-09 15:43:25 +02001791 .type = FIO_OPT_INT,
Jens Axboe581e7142009-06-09 12:47:16 +02001792 .off1 = td_var_offset(rate_iops_min[0]),
1793 .off2 = td_var_offset(rate_iops_min[1]),
Bruce Cran03e20d62011-01-02 20:14:54 +01001794 .help = "Job must meet this rate or it will be shut down",
Jens Axboeafdf9352007-07-31 16:14:34 +02001795 .parent = "rate_iops",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001796 },
1797 {
1798 .name = "ratecycle",
1799 .type = FIO_OPT_INT,
1800 .off1 = td_var_offset(ratecycle),
1801 .help = "Window average for rate limits (msec)",
1802 .def = "1000",
Jens Axboeafdf9352007-07-31 16:14:34 +02001803 .parent = "rate",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001804 },
1805 {
1806 .name = "invalidate",
1807 .type = FIO_OPT_BOOL,
1808 .off1 = td_var_offset(invalidate_cache),
1809 .help = "Invalidate buffer/page cache prior to running job",
1810 .def = "1",
1811 },
1812 {
1813 .name = "sync",
1814 .type = FIO_OPT_BOOL,
1815 .off1 = td_var_offset(sync_io),
1816 .help = "Use O_SYNC for buffered writes",
1817 .def = "0",
Jens Axboe67a10002007-07-31 23:12:16 +02001818 .parent = "buffered",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001819 },
1820 {
1821 .name = "bwavgtime",
1822 .type = FIO_OPT_INT,
1823 .off1 = td_var_offset(bw_avg_time),
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001824 .help = "Time window over which to calculate bandwidth"
1825 " (msec)",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001826 .def = "500",
1827 },
1828 {
1829 .name = "create_serialize",
1830 .type = FIO_OPT_BOOL,
1831 .off1 = td_var_offset(create_serialize),
1832 .help = "Serialize creating of job files",
1833 .def = "1",
1834 },
1835 {
1836 .name = "create_fsync",
1837 .type = FIO_OPT_BOOL,
1838 .off1 = td_var_offset(create_fsync),
Bruce Cran03e20d62011-01-02 20:14:54 +01001839 .help = "fsync file after creation",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001840 .def = "1",
1841 },
1842 {
Jens Axboe814452b2009-03-04 12:53:13 +01001843 .name = "create_on_open",
1844 .type = FIO_OPT_BOOL,
1845 .off1 = td_var_offset(create_on_open),
1846 .help = "Create files when they are opened for IO",
1847 .def = "0",
1848 },
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001849 {
Zhang, Yanminafad68f2009-05-20 11:30:55 +02001850 .name = "pre_read",
1851 .type = FIO_OPT_BOOL,
1852 .off1 = td_var_offset(pre_read),
Bruce Cran03e20d62011-01-02 20:14:54 +01001853 .help = "Pre-read files before starting official testing",
Zhang, Yanminafad68f2009-05-20 11:30:55 +02001854 .def = "0",
1855 },
Jens Axboe814452b2009-03-04 12:53:13 +01001856 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001857 .name = "cpuload",
1858 .type = FIO_OPT_INT,
1859 .off1 = td_var_offset(cpuload),
1860 .help = "Use this percentage of CPU",
1861 },
1862 {
1863 .name = "cpuchunks",
1864 .type = FIO_OPT_INT,
1865 .off1 = td_var_offset(cpucycle),
1866 .help = "Length of the CPU burn cycles (usecs)",
1867 .def = "50000",
Jens Axboe67a10002007-07-31 23:12:16 +02001868 .parent = "cpuload",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001869 },
1870#ifdef FIO_HAVE_CPU_AFFINITY
1871 {
1872 .name = "cpumask",
1873 .type = FIO_OPT_INT,
1874 .cb = str_cpumask_cb,
1875 .help = "CPU affinity mask",
1876 },
Jens Axboed2e268b2007-06-15 10:33:49 +02001877 {
1878 .name = "cpus_allowed",
1879 .type = FIO_OPT_STR,
1880 .cb = str_cpus_allowed_cb,
1881 .help = "Set CPUs allowed",
1882 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001883#endif
1884 {
1885 .name = "end_fsync",
1886 .type = FIO_OPT_BOOL,
1887 .off1 = td_var_offset(end_fsync),
1888 .help = "Include fsync at the end of job",
1889 .def = "0",
1890 },
1891 {
1892 .name = "fsync_on_close",
1893 .type = FIO_OPT_BOOL,
1894 .off1 = td_var_offset(fsync_on_close),
1895 .help = "fsync files on close",
1896 .def = "0",
1897 },
1898 {
1899 .name = "unlink",
1900 .type = FIO_OPT_BOOL,
1901 .off1 = td_var_offset(unlink),
1902 .help = "Unlink created files after job has completed",
1903 .def = "0",
1904 },
1905 {
1906 .name = "exitall",
1907 .type = FIO_OPT_STR_SET,
1908 .cb = str_exitall_cb,
1909 .help = "Terminate all jobs when one exits",
1910 },
1911 {
1912 .name = "stonewall",
Jens Axboed3923652011-08-03 12:38:39 +02001913 .alias = "wait_for_previous",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001914 .type = FIO_OPT_STR_SET,
1915 .off1 = td_var_offset(stonewall),
1916 .help = "Insert a hard barrier between this job and previous",
1917 },
1918 {
Jens Axboeb3d62a72007-03-20 14:23:26 +01001919 .name = "new_group",
1920 .type = FIO_OPT_STR_SET,
1921 .off1 = td_var_offset(new_group),
1922 .help = "Mark the start of a new group (for reporting)",
1923 },
1924 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001925 .name = "thread",
1926 .type = FIO_OPT_STR_SET,
1927 .off1 = td_var_offset(use_thread),
1928 .help = "Use threads instead of forks",
1929 },
1930 {
1931 .name = "write_bw_log",
Jens Axboee3cedca2008-11-19 19:57:52 +01001932 .type = FIO_OPT_STR,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001933 .off1 = td_var_offset(write_bw_log),
Jens Axboee3cedca2008-11-19 19:57:52 +01001934 .cb = str_write_bw_log_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001935 .help = "Write log of bandwidth during run",
1936 },
1937 {
1938 .name = "write_lat_log",
Jens Axboee3cedca2008-11-19 19:57:52 +01001939 .type = FIO_OPT_STR,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001940 .off1 = td_var_offset(write_lat_log),
Jens Axboee3cedca2008-11-19 19:57:52 +01001941 .cb = str_write_lat_log_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001942 .help = "Write log of latency during run",
1943 },
1944 {
1945 .name = "hugepage-size",
Jens Axboee01b22b2009-06-09 15:43:25 +02001946 .type = FIO_OPT_INT,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001947 .off1 = td_var_offset(hugepage_size),
1948 .help = "When using hugepages, specify size of each page",
1949 .def = __stringify(FIO_HUGE_PAGE),
1950 },
1951 {
1952 .name = "group_reporting",
1953 .type = FIO_OPT_STR_SET,
1954 .off1 = td_var_offset(group_reporting),
1955 .help = "Do reporting on a per-group basis",
1956 },
1957 {
Jens Axboee9459e52007-04-17 15:46:32 +02001958 .name = "zero_buffers",
1959 .type = FIO_OPT_STR_SET,
1960 .off1 = td_var_offset(zero_buffers),
1961 .help = "Init IO buffers to all zeroes",
1962 },
Jens Axboe5973caf2008-05-21 19:52:35 +02001963 {
1964 .name = "refill_buffers",
1965 .type = FIO_OPT_STR_SET,
1966 .off1 = td_var_offset(refill_buffers),
1967 .help = "Refill IO buffers on every IO submit",
1968 },
Yu-ju Hong83349192011-08-13 00:53:44 +02001969 {
1970 .name = "clat_percentiles",
1971 .type = FIO_OPT_BOOL,
1972 .off1 = td_var_offset(clat_percentiles),
1973 .help = "Enable the reporting of completion latency percentiles",
1974 .def = "0",
1975 },
1976 {
1977 .name = "percentile_list",
1978 .type = FIO_OPT_FLOAT_LIST,
1979 .off1 = td_var_offset(percentile_list),
1980 .off2 = td_var_offset(overwrite_plist),
1981 .help = "Specify a custom list of percentiles to report",
1982 .maxlen = FIO_IO_U_LIST_MAX_LEN,
1983 .minfp = 0.0,
1984 .maxfp = 100.0,
1985 },
1986
Jens Axboe0a839f32007-04-26 09:02:34 +02001987#ifdef FIO_HAVE_DISK_UTIL
1988 {
1989 .name = "disk_util",
1990 .type = FIO_OPT_BOOL,
1991 .off1 = td_var_offset(do_disk_util),
Jens Axboef66ab3c2008-06-05 11:48:22 +02001992 .help = "Log disk utilization statistics",
Jens Axboe0a839f32007-04-26 09:02:34 +02001993 .def = "1",
1994 },
1995#endif
Jens Axboee9459e52007-04-17 15:46:32 +02001996 {
Jens Axboe993bf482008-11-14 13:04:53 +01001997 .name = "gtod_reduce",
1998 .type = FIO_OPT_BOOL,
1999 .help = "Greatly reduce number of gettimeofday() calls",
2000 .cb = str_gtod_reduce_cb,
2001 .def = "0",
2002 },
2003 {
Jens Axboe02af0982010-06-24 09:59:34 +02002004 .name = "disable_lat",
2005 .type = FIO_OPT_BOOL,
2006 .off1 = td_var_offset(disable_lat),
2007 .help = "Disable latency numbers",
2008 .parent = "gtod_reduce",
2009 .def = "0",
2010 },
2011 {
Jens Axboe9520ebb2008-10-16 21:03:27 +02002012 .name = "disable_clat",
2013 .type = FIO_OPT_BOOL,
2014 .off1 = td_var_offset(disable_clat),
2015 .help = "Disable completion latency numbers",
Jens Axboe993bf482008-11-14 13:04:53 +01002016 .parent = "gtod_reduce",
Jens Axboe9520ebb2008-10-16 21:03:27 +02002017 .def = "0",
2018 },
2019 {
2020 .name = "disable_slat",
2021 .type = FIO_OPT_BOOL,
2022 .off1 = td_var_offset(disable_slat),
Bruce Cran03e20d62011-01-02 20:14:54 +01002023 .help = "Disable submission latency numbers",
Jens Axboe993bf482008-11-14 13:04:53 +01002024 .parent = "gtod_reduce",
Jens Axboe9520ebb2008-10-16 21:03:27 +02002025 .def = "0",
2026 },
2027 {
2028 .name = "disable_bw_measurement",
2029 .type = FIO_OPT_BOOL,
2030 .off1 = td_var_offset(disable_bw),
2031 .help = "Disable bandwidth logging",
Jens Axboe993bf482008-11-14 13:04:53 +01002032 .parent = "gtod_reduce",
Jens Axboe9520ebb2008-10-16 21:03:27 +02002033 .def = "0",
2034 },
2035 {
Jens Axboebe4ecfd2008-12-08 14:10:52 +01002036 .name = "gtod_cpu",
2037 .type = FIO_OPT_INT,
2038 .cb = str_gtod_cpu_cb,
Bruce Cran03e20d62011-01-02 20:14:54 +01002039 .help = "Set up dedicated gettimeofday() thread on this CPU",
Jens Axboe29d43ff2009-07-01 10:42:18 +02002040 .verify = gtod_cpu_verify,
Jens Axboebe4ecfd2008-12-08 14:10:52 +01002041 },
2042 {
Radha Ramachandranf2bba182009-06-15 08:40:16 +02002043 .name = "continue_on_error",
2044 .type = FIO_OPT_BOOL,
2045 .off1 = td_var_offset(continue_on_error),
Bruce Cran03e20d62011-01-02 20:14:54 +01002046 .help = "Continue on non-fatal errors during IO",
Radha Ramachandranf2bba182009-06-15 08:40:16 +02002047 .def = "0",
2048 },
2049 {
Jens Axboe9ac8a792009-11-13 21:23:07 +01002050 .name = "profile",
Jens Axboe79d16312010-03-04 12:43:20 +01002051 .type = FIO_OPT_STR_STORE,
Jens Axboe9ac8a792009-11-13 21:23:07 +01002052 .off1 = td_var_offset(profile),
Jens Axboe9ac8a792009-11-13 21:23:07 +01002053 .help = "Select a specific builtin performance test",
2054 },
2055 {
Jens Axboea696fa22009-12-04 10:05:02 +01002056 .name = "cgroup",
2057 .type = FIO_OPT_STR_STORE,
2058 .off1 = td_var_offset(cgroup),
2059 .help = "Add job to cgroup of this name",
2060 },
2061 {
2062 .name = "cgroup_weight",
2063 .type = FIO_OPT_INT,
2064 .off1 = td_var_offset(cgroup_weight),
2065 .help = "Use given weight for cgroup",
2066 .minval = 100,
2067 .maxval = 1000,
Jens Axboea696fa22009-12-04 10:05:02 +01002068 },
2069 {
Vivek Goyal7de87092010-03-31 22:55:15 +02002070 .name = "cgroup_nodelete",
2071 .type = FIO_OPT_BOOL,
2072 .off1 = td_var_offset(cgroup_nodelete),
2073 .help = "Do not delete cgroups after job completion",
2074 .def = "0",
2075 },
2076 {
Jens Axboee0b0d892009-12-08 10:10:14 +01002077 .name = "uid",
2078 .type = FIO_OPT_INT,
2079 .off1 = td_var_offset(uid),
2080 .help = "Run job with this user ID",
2081 },
2082 {
2083 .name = "gid",
2084 .type = FIO_OPT_INT,
2085 .off1 = td_var_offset(gid),
2086 .help = "Run job with this group ID",
2087 },
2088 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002089 .name = NULL,
2090 },
2091};
2092
Jens Axboe17af15d2010-04-13 10:38:16 +02002093static void add_to_lopt(struct option *lopt, struct fio_option *o,
2094 const char *name)
Jens Axboe9f817362010-03-04 14:38:10 +01002095{
Jens Axboe17af15d2010-04-13 10:38:16 +02002096 lopt->name = (char *) name;
Jens Axboe9f817362010-03-04 14:38:10 +01002097 lopt->val = FIO_GETOPT_JOB;
2098 if (o->type == FIO_OPT_STR_SET)
2099 lopt->has_arg = no_argument;
2100 else
2101 lopt->has_arg = required_argument;
2102}
2103
Jens Axboe214e1ec2007-03-15 10:48:13 +01002104void fio_options_dup_and_init(struct option *long_options)
2105{
2106 struct fio_option *o;
2107 unsigned int i;
2108
2109 options_init(options);
2110
2111 i = 0;
2112 while (long_options[i].name)
2113 i++;
2114
2115 o = &options[0];
2116 while (o->name) {
Jens Axboe17af15d2010-04-13 10:38:16 +02002117 add_to_lopt(&long_options[i], o, o->name);
2118 if (o->alias) {
2119 i++;
2120 add_to_lopt(&long_options[i], o, o->alias);
2121 }
Jens Axboe214e1ec2007-03-15 10:48:13 +01002122
2123 i++;
2124 o++;
2125 assert(i < FIO_NR_OPTIONS);
2126 }
2127}
2128
Jens Axboe74929ac2009-08-05 11:42:37 +02002129struct fio_keyword {
2130 const char *word;
2131 const char *desc;
2132 char *replace;
2133};
2134
2135static struct fio_keyword fio_keywords[] = {
2136 {
2137 .word = "$pagesize",
2138 .desc = "Page size in the system",
2139 },
2140 {
2141 .word = "$mb_memory",
2142 .desc = "Megabytes of memory online",
2143 },
2144 {
2145 .word = "$ncpus",
2146 .desc = "Number of CPUs online in the system",
2147 },
2148 {
2149 .word = NULL,
2150 },
2151};
2152
2153void fio_keywords_init(void)
2154{
Jens Axboe3b2e1462009-12-15 08:58:10 +01002155 unsigned long long mb_memory;
Jens Axboe74929ac2009-08-05 11:42:37 +02002156 char buf[128];
2157 long l;
2158
2159 sprintf(buf, "%lu", page_size);
2160 fio_keywords[0].replace = strdup(buf);
2161
Jens Axboe8eb016d2011-07-11 10:24:20 +02002162 mb_memory = os_phys_mem() / (1024 * 1024);
Jens Axboe3b2e1462009-12-15 08:58:10 +01002163 sprintf(buf, "%llu", mb_memory);
Jens Axboe74929ac2009-08-05 11:42:37 +02002164 fio_keywords[1].replace = strdup(buf);
2165
Jens Axboec00a2282011-07-08 20:56:06 +02002166 l = cpus_online();
Jens Axboe74929ac2009-08-05 11:42:37 +02002167 sprintf(buf, "%lu", l);
2168 fio_keywords[2].replace = strdup(buf);
2169}
2170
Jens Axboe892a6ff2009-11-13 12:19:49 +01002171#define BC_APP "bc"
2172
2173static char *bc_calc(char *str)
2174{
2175 char *buf, *tmp, opt[80];
2176 FILE *f;
2177 int ret;
2178
2179 /*
2180 * No math, just return string
2181 */
2182 if (!strchr(str, '+') && !strchr(str, '-') && !strchr(str, '*') &&
2183 !strchr(str, '/'))
2184 return str;
2185
2186 /*
2187 * Split option from value, we only need to calculate the value
2188 */
2189 tmp = strchr(str, '=');
2190 if (!tmp)
2191 return str;
2192
2193 tmp++;
Jens Axboe9ac8a792009-11-13 21:23:07 +01002194 memset(opt, 0, sizeof(opt));
Jens Axboe892a6ff2009-11-13 12:19:49 +01002195 strncpy(opt, str, tmp - str);
2196
2197 buf = malloc(128);
2198
2199 sprintf(buf, "which %s > /dev/null", BC_APP);
2200 if (system(buf)) {
2201 log_err("fio: bc is needed for performing math\n");
2202 free(buf);
2203 return NULL;
2204 }
2205
2206 sprintf(buf, "echo %s | %s", tmp, BC_APP);
2207 f = popen(buf, "r");
2208 if (!f) {
2209 free(buf);
2210 return NULL;
2211 }
2212
2213 ret = fread(buf, 1, 128, f);
2214 if (ret <= 0) {
2215 free(buf);
2216 return NULL;
2217 }
2218
2219 buf[ret - 1] = '\0';
2220 strcat(opt, buf);
2221 strcpy(buf, opt);
2222 pclose(f);
2223 free(str);
2224 return buf;
2225}
2226
Jens Axboe74929ac2009-08-05 11:42:37 +02002227/*
2228 * Look for reserved variable names and replace them with real values
2229 */
2230static char *fio_keyword_replace(char *opt)
2231{
2232 char *s;
2233 int i;
2234
2235 for (i = 0; fio_keywords[i].word != NULL; i++) {
2236 struct fio_keyword *kw = &fio_keywords[i];
2237
2238 while ((s = strstr(opt, kw->word)) != NULL) {
2239 char *new = malloc(strlen(opt) + 1);
2240 char *o_org = opt;
2241 int olen = s - opt;
2242 int len;
2243
2244 /*
2245 * Copy part of the string before the keyword and
2246 * sprintf() the replacement after it.
2247 */
2248 memcpy(new, opt, olen);
2249 len = sprintf(new + olen, "%s", kw->replace);
2250
2251 /*
2252 * If there's more in the original string, copy that
2253 * in too
2254 */
2255 opt += strlen(kw->word) + olen;
2256 if (strlen(opt))
2257 memcpy(new + olen + len, opt, opt - o_org - 1);
2258
2259 /*
2260 * replace opt and free the old opt
2261 */
2262 opt = new;
Jens Axboe9ac8a792009-11-13 21:23:07 +01002263 //free(o_org);
Jens Axboe7a958bd2009-11-13 12:33:54 +01002264
2265 /*
2266 * Check for potential math and invoke bc, if possible
2267 */
2268 opt = bc_calc(opt);
Jens Axboe74929ac2009-08-05 11:42:37 +02002269 }
2270 }
2271
Jens Axboe7a958bd2009-11-13 12:33:54 +01002272 return opt;
Jens Axboe74929ac2009-08-05 11:42:37 +02002273}
2274
Jens Axboe3b8b7132008-06-10 19:46:23 +02002275int fio_options_parse(struct thread_data *td, char **opts, int num_opts)
Jens Axboe214e1ec2007-03-15 10:48:13 +01002276{
Jens Axboe3b8b7132008-06-10 19:46:23 +02002277 int i, ret;
2278
2279 sort_options(opts, options, num_opts);
2280
Jens Axboe74929ac2009-08-05 11:42:37 +02002281 for (ret = 0, i = 0; i < num_opts; i++) {
2282 opts[i] = fio_keyword_replace(opts[i]);
Jens Axboe07b32322010-03-05 09:48:44 +01002283 ret |= parse_option(opts[i], options, td);
Jens Axboe74929ac2009-08-05 11:42:37 +02002284 }
Jens Axboe3b8b7132008-06-10 19:46:23 +02002285
2286 return ret;
Jens Axboe214e1ec2007-03-15 10:48:13 +01002287}
2288
2289int fio_cmd_option_parse(struct thread_data *td, const char *opt, char *val)
2290{
Jens Axboe07b32322010-03-05 09:48:44 +01002291 return parse_cmd_option(opt, val, options, td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01002292}
2293
2294void fio_fill_default_options(struct thread_data *td)
2295{
2296 fill_default_options(td, options);
2297}
2298
2299int fio_show_option_help(const char *opt)
2300{
Jens Axboe07b32322010-03-05 09:48:44 +01002301 return show_cmd_help(options, opt);
Jens Axboe214e1ec2007-03-15 10:48:13 +01002302}
Jens Axboed23bb322007-03-23 15:57:56 +01002303
2304static void __options_mem(struct thread_data *td, int alloc)
2305{
2306 struct thread_options *o = &td->o;
2307 struct fio_option *opt;
2308 char **ptr;
2309 int i;
2310
2311 for (i = 0, opt = &options[0]; opt->name; i++, opt = &options[i]) {
2312 if (opt->type != FIO_OPT_STR_STORE)
2313 continue;
2314
2315 ptr = (void *) o + opt->off1;
2316 if (*ptr) {
2317 if (alloc)
2318 *ptr = strdup(*ptr);
2319 else {
2320 free(*ptr);
2321 *ptr = NULL;
2322 }
2323 }
2324 }
2325}
2326
2327/*
2328 * dupe FIO_OPT_STR_STORE options
2329 */
2330void options_mem_dupe(struct thread_data *td)
2331{
2332 __options_mem(td, 1);
2333}
2334
Jens Axboe22d66212007-03-27 20:06:25 +02002335void options_mem_free(struct thread_data fio_unused *td)
Jens Axboed23bb322007-03-23 15:57:56 +01002336{
Jens Axboe22d66212007-03-27 20:06:25 +02002337#if 0
Jens Axboed23bb322007-03-23 15:57:56 +01002338 __options_mem(td, 0);
Jens Axboe22d66212007-03-27 20:06:25 +02002339#endif
Jens Axboed23bb322007-03-23 15:57:56 +01002340}
Jens Axboed6978a32009-07-18 21:04:09 +02002341
2342unsigned int fio_get_kb_base(void *data)
2343{
2344 struct thread_data *td = data;
2345 unsigned int kb_base = 0;
2346
2347 if (td)
2348 kb_base = td->o.kb_base;
2349 if (!kb_base)
2350 kb_base = 1024;
2351
2352 return kb_base;
2353}
Jens Axboe9f988e22010-03-04 10:42:38 +01002354
Jens Axboe07b32322010-03-05 09:48:44 +01002355int add_option(struct fio_option *o)
Jens Axboe9f988e22010-03-04 10:42:38 +01002356{
Jens Axboe07b32322010-03-05 09:48:44 +01002357 struct fio_option *__o;
2358 int opt_index = 0;
2359
2360 __o = options;
2361 while (__o->name) {
2362 opt_index++;
2363 __o++;
2364 }
2365
2366 memcpy(&options[opt_index], o, sizeof(*o));
2367 return 0;
Jens Axboe9f988e22010-03-04 10:42:38 +01002368}
Jens Axboee2de69d2010-03-04 14:05:48 +01002369
Jens Axboe07b32322010-03-05 09:48:44 +01002370void invalidate_profile_options(const char *prof_name)
Jens Axboee2de69d2010-03-04 14:05:48 +01002371{
Jens Axboe07b32322010-03-05 09:48:44 +01002372 struct fio_option *o;
Jens Axboee2de69d2010-03-04 14:05:48 +01002373
Jens Axboe07b32322010-03-05 09:48:44 +01002374 o = options;
2375 while (o->name) {
2376 if (o->prof_name && !strcmp(o->prof_name, prof_name)) {
2377 o->type = FIO_OPT_INVALID;
2378 o->prof_name = NULL;
2379 }
2380 o++;
Jens Axboee2de69d2010-03-04 14:05:48 +01002381 }
2382}
Jens Axboef5b6bb82010-03-05 10:09:59 +01002383
2384void add_opt_posval(const char *optname, const char *ival, const char *help)
2385{
2386 struct fio_option *o;
2387 unsigned int i;
2388
2389 o = find_option(options, optname);
2390 if (!o)
2391 return;
2392
2393 for (i = 0; i < PARSE_MAX_VP; i++) {
2394 if (o->posval[i].ival)
2395 continue;
2396
2397 o->posval[i].ival = ival;
2398 o->posval[i].help = help;
2399 break;
2400 }
2401}
2402
2403void del_opt_posval(const char *optname, const char *ival)
2404{
2405 struct fio_option *o;
2406 unsigned int i;
2407
2408 o = find_option(options, optname);
2409 if (!o)
2410 return;
2411
2412 for (i = 0; i < PARSE_MAX_VP; i++) {
2413 if (!o->posval[i].ival)
2414 continue;
2415 if (strcmp(o->posval[i].ival, ival))
2416 continue;
2417
2418 o->posval[i].ival = NULL;
2419 o->posval[i].help = NULL;
2420 }
2421}