blob: 2e1e709e91a0d60470ac99085ad42c5c046aa9a4 [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
Jens Axboe6925dd32011-09-07 22:10:11 +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
Jens Axboe6925dd32011-09-07 22:10:11 +0200216 if (str_to_decimal(nr, &val, 1, td)) {
Jens Axboe059b0802011-08-25 09:09:37 +0200217 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 Axboe214e1ec2007-03-15 10:48:13 +0100229static int str_mem_cb(void *data, const char *mem)
230{
231 struct thread_data *td = data;
232
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100233 if (td->o.mem_type == MEM_MMAPHUGE || td->o.mem_type == MEM_MMAP) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100234 td->mmapfile = get_opt_postfix(mem);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100235 if (td->o.mem_type == MEM_MMAPHUGE && !td->mmapfile) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100236 log_err("fio: mmaphuge:/path/to/file\n");
237 return 1;
238 }
239 }
240
241 return 0;
242}
243
Jens Axboe5d7c5d32010-06-21 15:08:17 +0200244static int str_verify_cb(void *data, const char *mem)
245{
246 struct thread_data *td = data;
247
248 if (td->o.verify != VERIFY_CRC32C_INTEL)
249 return 0;
250
251 if (!crc32c_intel_works()) {
252 log_info("fio: System does not support hw accelerated crc32c. Falling back to sw crc32c.\n");
253 td->o.verify = VERIFY_CRC32C;
254 }
255
256 return 0;
257}
258
Jens Axboec223da82010-03-24 13:23:53 +0100259static int fio_clock_source_cb(void *data, const char *str)
260{
261 struct thread_data *td = data;
262
263 fio_clock_source = td->o.clocksource;
264 fio_time_init();
265 return 0;
266}
267
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400268static int str_lockmem_cb(void fio_unused *data, unsigned long long *val)
Jens Axboe214e1ec2007-03-15 10:48:13 +0100269{
270 mlock_size = *val;
271 return 0;
272}
273
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400274static int str_rwmix_read_cb(void *data, unsigned long long *val)
Jens Axboecb499fc2008-05-28 10:33:32 +0200275{
276 struct thread_data *td = data;
277
278 td->o.rwmix[DDIR_READ] = *val;
279 td->o.rwmix[DDIR_WRITE] = 100 - *val;
280 return 0;
281}
282
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400283static int str_rwmix_write_cb(void *data, unsigned long long *val)
Jens Axboecb499fc2008-05-28 10:33:32 +0200284{
285 struct thread_data *td = data;
286
287 td->o.rwmix[DDIR_WRITE] = *val;
288 td->o.rwmix[DDIR_READ] = 100 - *val;
289 return 0;
290}
291
Jens Axboe214e1ec2007-03-15 10:48:13 +0100292#ifdef FIO_HAVE_IOPRIO
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400293static int str_prioclass_cb(void *data, unsigned long long *val)
Jens Axboe214e1ec2007-03-15 10:48:13 +0100294{
295 struct thread_data *td = data;
Jens Axboe6cefbe32007-04-18 12:46:56 +0200296 unsigned short mask;
297
298 /*
299 * mask off old class bits, str_prio_cb() may have set a default class
300 */
301 mask = (1 << IOPRIO_CLASS_SHIFT) - 1;
302 td->ioprio &= mask;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100303
304 td->ioprio |= *val << IOPRIO_CLASS_SHIFT;
Jens Axboeac684782007-11-08 08:29:07 +0100305 td->ioprio_set = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100306 return 0;
307}
308
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400309static int str_prio_cb(void *data, unsigned long long *val)
Jens Axboe214e1ec2007-03-15 10:48:13 +0100310{
311 struct thread_data *td = data;
312
313 td->ioprio |= *val;
Jens Axboe6cefbe32007-04-18 12:46:56 +0200314
315 /*
316 * If no class is set, assume BE
317 */
318 if ((td->ioprio >> IOPRIO_CLASS_SHIFT) == 0)
319 td->ioprio |= IOPRIO_CLASS_BE << IOPRIO_CLASS_SHIFT;
320
Jens Axboeac684782007-11-08 08:29:07 +0100321 td->ioprio_set = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100322 return 0;
323}
324#endif
325
326static int str_exitall_cb(void)
327{
328 exitall_on_terminate = 1;
329 return 0;
330}
331
Jens Axboe214e1ec2007-03-15 10:48:13 +0100332#ifdef FIO_HAVE_CPU_AFFINITY
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400333static int str_cpumask_cb(void *data, unsigned long long *val)
Jens Axboe214e1ec2007-03-15 10:48:13 +0100334{
335 struct thread_data *td = data;
Jens Axboed2e268b2007-06-15 10:33:49 +0200336 unsigned int i;
Jens Axboeb03daaf2008-12-08 20:31:43 +0100337 long max_cpu;
Jens Axboed2ce18b2008-12-12 20:51:40 +0100338 int ret;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100339
Jens Axboed2ce18b2008-12-12 20:51:40 +0100340 ret = fio_cpuset_init(&td->o.cpumask);
341 if (ret < 0) {
342 log_err("fio: cpuset_init failed\n");
343 td_verror(td, ret, "fio_cpuset_init");
344 return 1;
345 }
346
Jens Axboec00a2282011-07-08 20:56:06 +0200347 max_cpu = cpus_online();
Jens Axboed2e268b2007-06-15 10:33:49 +0200348
Jens Axboe62a72732008-12-08 11:37:01 +0100349 for (i = 0; i < sizeof(int) * 8; i++) {
350 if ((1 << i) & *val) {
Jens Axboeb03daaf2008-12-08 20:31:43 +0100351 if (i > max_cpu) {
352 log_err("fio: CPU %d too large (max=%ld)\n", i,
353 max_cpu);
354 return 1;
355 }
Jens Axboe62a72732008-12-08 11:37:01 +0100356 dprint(FD_PARSE, "set cpu allowed %d\n", i);
Jens Axboe6d459ee2008-12-12 20:02:58 +0100357 fio_cpu_set(&td->o.cpumask, i);
Jens Axboe62a72732008-12-08 11:37:01 +0100358 }
359 }
Jens Axboed2e268b2007-06-15 10:33:49 +0200360
Jens Axboe375b2692007-05-22 09:13:02 +0200361 td->o.cpumask_set = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100362 return 0;
363}
364
Jens Axboee8462bd2009-07-06 12:59:04 +0200365static int set_cpus_allowed(struct thread_data *td, os_cpu_mask_t *mask,
366 const char *input)
Jens Axboed2e268b2007-06-15 10:33:49 +0200367{
Jens Axboed2e268b2007-06-15 10:33:49 +0200368 char *cpu, *str, *p;
Jens Axboeb03daaf2008-12-08 20:31:43 +0100369 long max_cpu;
Jens Axboe19608d62008-12-08 15:03:12 +0100370 int ret = 0;
Jens Axboed2e268b2007-06-15 10:33:49 +0200371
Jens Axboee8462bd2009-07-06 12:59:04 +0200372 ret = fio_cpuset_init(mask);
Jens Axboed2ce18b2008-12-12 20:51:40 +0100373 if (ret < 0) {
374 log_err("fio: cpuset_init failed\n");
375 td_verror(td, ret, "fio_cpuset_init");
376 return 1;
377 }
Jens Axboed2e268b2007-06-15 10:33:49 +0200378
379 p = str = strdup(input);
380
381 strip_blank_front(&str);
382 strip_blank_end(str);
383
Jens Axboec00a2282011-07-08 20:56:06 +0200384 max_cpu = cpus_online();
Jens Axboeb03daaf2008-12-08 20:31:43 +0100385
Jens Axboed2e268b2007-06-15 10:33:49 +0200386 while ((cpu = strsep(&str, ",")) != NULL) {
Jens Axboe62a72732008-12-08 11:37:01 +0100387 char *str2, *cpu2;
388 int icpu, icpu2;
389
Jens Axboed2e268b2007-06-15 10:33:49 +0200390 if (!strlen(cpu))
391 break;
Jens Axboe62a72732008-12-08 11:37:01 +0100392
393 str2 = cpu;
394 icpu2 = -1;
395 while ((cpu2 = strsep(&str2, "-")) != NULL) {
396 if (!strlen(cpu2))
397 break;
398
399 icpu2 = atoi(cpu2);
400 }
401
402 icpu = atoi(cpu);
403 if (icpu2 == -1)
404 icpu2 = icpu;
405 while (icpu <= icpu2) {
Jens Axboe6d459ee2008-12-12 20:02:58 +0100406 if (icpu >= FIO_MAX_CPUS) {
Jens Axboe19608d62008-12-08 15:03:12 +0100407 log_err("fio: your OS only supports up to"
Jens Axboe6d459ee2008-12-12 20:02:58 +0100408 " %d CPUs\n", (int) FIO_MAX_CPUS);
Jens Axboe19608d62008-12-08 15:03:12 +0100409 ret = 1;
410 break;
411 }
Jens Axboeb03daaf2008-12-08 20:31:43 +0100412 if (icpu > max_cpu) {
413 log_err("fio: CPU %d too large (max=%ld)\n",
414 icpu, max_cpu);
415 ret = 1;
416 break;
417 }
Jens Axboe0b9d69e2009-09-11 22:29:54 +0200418
Jens Axboe62a72732008-12-08 11:37:01 +0100419 dprint(FD_PARSE, "set cpu allowed %d\n", icpu);
Jens Axboee8462bd2009-07-06 12:59:04 +0200420 fio_cpu_set(mask, icpu);
Jens Axboe62a72732008-12-08 11:37:01 +0100421 icpu++;
422 }
Jens Axboe19608d62008-12-08 15:03:12 +0100423 if (ret)
424 break;
Jens Axboed2e268b2007-06-15 10:33:49 +0200425 }
426
427 free(p);
Jens Axboe19608d62008-12-08 15:03:12 +0100428 if (!ret)
429 td->o.cpumask_set = 1;
430 return ret;
Jens Axboed2e268b2007-06-15 10:33:49 +0200431}
Jens Axboee8462bd2009-07-06 12:59:04 +0200432
433static int str_cpus_allowed_cb(void *data, const char *input)
434{
435 struct thread_data *td = data;
436 int ret;
437
438 ret = set_cpus_allowed(td, &td->o.cpumask, input);
439 if (!ret)
440 td->o.cpumask_set = 1;
441
442 return ret;
443}
444
445static int str_verify_cpus_allowed_cb(void *data, const char *input)
446{
447 struct thread_data *td = data;
448 int ret;
449
450 ret = set_cpus_allowed(td, &td->o.verify_cpumask, input);
451 if (!ret)
452 td->o.verify_cpumask_set = 1;
453
454 return ret;
455}
Jens Axboed2e268b2007-06-15 10:33:49 +0200456#endif
457
Jens Axboe0d29de82010-09-01 13:54:15 +0200458#ifdef FIO_HAVE_TRIM
459static int str_verify_trim_cb(void *data, unsigned long long *val)
460{
461 struct thread_data *td = data;
462
463 td->o.trim_percentage = *val;
464 return 0;
465}
466#endif
467
Jens Axboe214e1ec2007-03-15 10:48:13 +0100468static int str_fst_cb(void *data, const char *str)
469{
470 struct thread_data *td = data;
471 char *nr = get_opt_postfix(str);
472
473 td->file_service_nr = 1;
Jens Axboe182ec6e2008-11-14 13:06:06 +0100474 if (nr) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100475 td->file_service_nr = atoi(nr);
Jens Axboe182ec6e2008-11-14 13:06:06 +0100476 free(nr);
477 }
Jens Axboe214e1ec2007-03-15 10:48:13 +0100478
479 return 0;
480}
481
Jens Axboe3ae06372010-03-19 19:17:15 +0100482#ifdef FIO_HAVE_SYNC_FILE_RANGE
Jens Axboe44f29692010-03-09 20:09:44 +0100483static int str_sfr_cb(void *data, const char *str)
484{
485 struct thread_data *td = data;
486 char *nr = get_opt_postfix(str);
487
488 td->sync_file_range_nr = 1;
489 if (nr) {
490 td->sync_file_range_nr = atoi(nr);
491 free(nr);
492 }
493
494 return 0;
495}
Jens Axboe3ae06372010-03-19 19:17:15 +0100496#endif
Jens Axboe44f29692010-03-09 20:09:44 +0100497
Jens Axboe921c7662008-03-26 09:17:55 +0100498static int check_dir(struct thread_data *td, char *fname)
499{
Jens Axboe3f0ca9b2011-05-24 21:36:24 +0200500#if 0
Jens Axboe921c7662008-03-26 09:17:55 +0100501 char file[PATH_MAX], *dir;
Jens Axboebc838912008-04-07 09:00:54 +0200502 int elen = 0;
Jens Axboe921c7662008-03-26 09:17:55 +0100503
Jens Axboebc838912008-04-07 09:00:54 +0200504 if (td->o.directory) {
505 strcpy(file, td->o.directory);
Jens Axboefcef0b32008-05-26 14:53:24 +0200506 strcat(file, "/");
Jens Axboebc838912008-04-07 09:00:54 +0200507 elen = strlen(file);
508 }
509
Jens Axboefcef0b32008-05-26 14:53:24 +0200510 sprintf(file + elen, "%s", fname);
Jens Axboe921c7662008-03-26 09:17:55 +0100511 dir = dirname(file);
512
Jens Axboefcef0b32008-05-26 14:53:24 +0200513 {
514 struct stat sb;
515 /*
516 * We can't do this on FIO_DISKLESSIO engines. The engine isn't loaded
517 * yet, so we can't do this check right here...
518 */
Jens Axboe921c7662008-03-26 09:17:55 +0100519 if (lstat(dir, &sb) < 0) {
520 int ret = errno;
521
522 log_err("fio: %s is not a directory\n", dir);
523 td_verror(td, ret, "lstat");
524 return 1;
525 }
526
527 if (!S_ISDIR(sb.st_mode)) {
528 log_err("fio: %s is not a directory\n", dir);
529 return 1;
530 }
Jens Axboefcef0b32008-05-26 14:53:24 +0200531 }
532#endif
Jens Axboe921c7662008-03-26 09:17:55 +0100533
534 return 0;
535}
536
Jens Axboe8e827d32009-08-04 09:51:48 +0200537/*
538 * Return next file in the string. Files are separated with ':'. If the ':'
539 * is escaped with a '\', then that ':' is part of the filename and does not
540 * indicate a new file.
541 */
542static char *get_next_file_name(char **ptr)
543{
544 char *str = *ptr;
545 char *p, *start;
546
547 if (!str || !strlen(str))
548 return NULL;
549
550 start = str;
551 do {
552 /*
553 * No colon, we are done
554 */
555 p = strchr(str, ':');
556 if (!p) {
557 *ptr = NULL;
558 break;
559 }
560
561 /*
562 * We got a colon, but it's the first character. Skip and
563 * continue
564 */
565 if (p == start) {
566 str = ++start;
567 continue;
568 }
569
570 if (*(p - 1) != '\\') {
571 *p = '\0';
572 *ptr = p + 1;
573 break;
574 }
575
576 memmove(p - 1, p, strlen(p) + 1);
577 str = p;
578 } while (1);
579
580 return start;
581}
582
Jens Axboe214e1ec2007-03-15 10:48:13 +0100583static int str_filename_cb(void *data, const char *input)
584{
585 struct thread_data *td = data;
586 char *fname, *str, *p;
587
588 p = str = strdup(input);
589
590 strip_blank_front(&str);
591 strip_blank_end(str);
592
593 if (!td->files_index)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100594 td->o.nr_files = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100595
Jens Axboe8e827d32009-08-04 09:51:48 +0200596 while ((fname = get_next_file_name(&str)) != NULL) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100597 if (!strlen(fname))
598 break;
Jens Axboe921c7662008-03-26 09:17:55 +0100599 if (check_dir(td, fname)) {
600 free(p);
601 return 1;
602 }
Jens Axboe214e1ec2007-03-15 10:48:13 +0100603 add_file(td, fname);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100604 td->o.nr_files++;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100605 }
606
607 free(p);
608 return 0;
609}
610
611static int str_directory_cb(void *data, const char fio_unused *str)
612{
613 struct thread_data *td = data;
614 struct stat sb;
615
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100616 if (lstat(td->o.directory, &sb) < 0) {
Jens Axboe921c7662008-03-26 09:17:55 +0100617 int ret = errno;
618
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100619 log_err("fio: %s is not a directory\n", td->o.directory);
Jens Axboe921c7662008-03-26 09:17:55 +0100620 td_verror(td, ret, "lstat");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100621 return 1;
622 }
623 if (!S_ISDIR(sb.st_mode)) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100624 log_err("fio: %s is not a directory\n", td->o.directory);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100625 return 1;
626 }
627
628 return 0;
629}
630
631static int str_opendir_cb(void *data, const char fio_unused *str)
632{
633 struct thread_data *td = data;
634
635 if (!td->files_index)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100636 td->o.nr_files = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100637
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100638 return add_dir_files(td, td->o.opendir);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100639}
640
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400641static int str_verify_offset_cb(void *data, unsigned long long *off)
Shawn Lewis546a9142007-07-28 21:11:37 +0200642{
643 struct thread_data *td = data;
Jens Axboea59e1702007-07-30 08:53:27 +0200644
Shawn Lewis546a9142007-07-28 21:11:37 +0200645 if (*off && *off < sizeof(struct verify_header)) {
Jens Axboea59e1702007-07-30 08:53:27 +0200646 log_err("fio: verify_offset too small\n");
Shawn Lewis546a9142007-07-28 21:11:37 +0200647 return 1;
648 }
Jens Axboea59e1702007-07-30 08:53:27 +0200649
650 td->o.verify_offset = *off;
Shawn Lewis546a9142007-07-28 21:11:37 +0200651 return 0;
652}
653
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100654static int str_verify_pattern_cb(void *data, const char *input)
Jens Axboe90059d62007-07-30 09:33:12 +0200655{
656 struct thread_data *td = data;
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100657 long off;
658 int i = 0, j = 0, len, k, base = 10;
659 char* loc1, * loc2;
Jens Axboe90059d62007-07-30 09:33:12 +0200660
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100661 loc1 = strstr(input, "0x");
662 loc2 = strstr(input, "0X");
663 if (loc1 || loc2)
664 base = 16;
665 off = strtol(input, NULL, base);
666 if (off != LONG_MAX || errno != ERANGE) {
667 while (off) {
668 td->o.verify_pattern[i] = off & 0xff;
669 off >>= 8;
670 i++;
671 }
672 } else {
673 len = strlen(input);
674 k = len - 1;
675 if (base == 16) {
676 if (loc1)
677 j = loc1 - input + 2;
678 else
679 j = loc2 - input + 2;
680 } else
681 return 1;
682 if (len - j < MAX_PATTERN_SIZE * 2) {
683 while (k >= j) {
684 off = converthexchartoint(input[k--]);
685 if (k >= j)
686 off += (converthexchartoint(input[k--])
687 * 16);
688 td->o.verify_pattern[i++] = (char) off;
689 }
690 }
691 }
692 td->o.verify_pattern_bytes = i;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100693 /*
694 * VERIFY_META could already be set
695 */
696 if (td->o.verify == VERIFY_NONE)
697 td->o.verify = VERIFY_PATTERN;
Jens Axboe90059d62007-07-30 09:33:12 +0200698 return 0;
699}
Jens Axboe214e1ec2007-03-15 10:48:13 +0100700
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100701static int str_lockfile_cb(void *data, const char *str)
702{
703 struct thread_data *td = data;
704 char *nr = get_opt_postfix(str);
705
706 td->o.lockfile_batch = 1;
Jens Axboe182ec6e2008-11-14 13:06:06 +0100707 if (nr) {
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100708 td->o.lockfile_batch = atoi(nr);
Jens Axboe182ec6e2008-11-14 13:06:06 +0100709 free(nr);
710 }
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100711
712 return 0;
713}
714
Jens Axboee3cedca2008-11-19 19:57:52 +0100715static int str_write_bw_log_cb(void *data, const char *str)
716{
717 struct thread_data *td = data;
718
719 if (str)
720 td->o.bw_log_file = strdup(str);
721
722 td->o.write_bw_log = 1;
723 return 0;
724}
725
726static int str_write_lat_log_cb(void *data, const char *str)
727{
728 struct thread_data *td = data;
729
730 if (str)
731 td->o.lat_log_file = strdup(str);
732
733 td->o.write_lat_log = 1;
734 return 0;
735}
736
Jens Axboec8eeb9d2011-10-05 14:02:22 +0200737static int str_write_iops_log_cb(void *data, const char *str)
738{
739 struct thread_data *td = data;
740
741 if (str)
742 td->o.iops_log_file = strdup(str);
743
744 td->o.write_iops_log = 1;
745 return 0;
746}
747
Jens Axboe993bf482008-11-14 13:04:53 +0100748static int str_gtod_reduce_cb(void *data, int *il)
749{
750 struct thread_data *td = data;
751 int val = *il;
752
Jens Axboe02af0982010-06-24 09:59:34 +0200753 td->o.disable_lat = !!val;
Jens Axboe993bf482008-11-14 13:04:53 +0100754 td->o.disable_clat = !!val;
755 td->o.disable_slat = !!val;
756 td->o.disable_bw = !!val;
Jens Axboe0dc1bc02011-10-13 08:55:29 +0200757 td->o.clat_percentiles = !val;
Jens Axboe993bf482008-11-14 13:04:53 +0100758 if (val)
759 td->tv_cache_mask = 63;
760
761 return 0;
762}
763
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400764static int str_gtod_cpu_cb(void *data, long long *il)
Jens Axboebe4ecfd2008-12-08 14:10:52 +0100765{
766 struct thread_data *td = data;
767 int val = *il;
768
769 td->o.gtod_cpu = val;
770 td->o.gtod_offload = 1;
771 return 0;
772}
773
Jens Axboe7bb59102011-07-12 19:47:03 +0200774static int str_size_cb(void *data, unsigned long long *__val)
775{
776 struct thread_data *td = data;
777 unsigned long long v = *__val;
778
779 if (parse_is_percent(v)) {
780 td->o.size = 0;
781 td->o.size_percent = -1ULL - v;
782 } else
783 td->o.size = v;
784
785 return 0;
786}
787
Jens Axboe896cac22009-07-01 10:38:35 +0200788static int rw_verify(struct fio_option *o, void *data)
789{
790 struct thread_data *td = data;
791
792 if (read_only && td_write(td)) {
793 log_err("fio: job <%s> has write bit set, but fio is in"
794 " read-only mode\n", td->o.name);
795 return 1;
796 }
797
798 return 0;
799}
800
Jens Axboe276ca4f2009-07-01 10:43:05 +0200801static int gtod_cpu_verify(struct fio_option *o, void *data)
Jens Axboe29d43ff2009-07-01 10:42:18 +0200802{
Jens Axboe276ca4f2009-07-01 10:43:05 +0200803#ifndef FIO_HAVE_CPU_AFFINITY
Jens Axboe29d43ff2009-07-01 10:42:18 +0200804 struct thread_data *td = data;
805
Jens Axboe29d43ff2009-07-01 10:42:18 +0200806 if (td->o.gtod_cpu) {
807 log_err("fio: platform must support CPU affinity for"
808 "gettimeofday() offloading\n");
809 return 1;
810 }
811#endif
812
813 return 0;
814}
815
Jens Axboe90fef2d2009-07-17 22:33:32 +0200816static int kb_base_verify(struct fio_option *o, void *data)
817{
818 struct thread_data *td = data;
819
820 if (td->o.kb_base != 1024 && td->o.kb_base != 1000) {
821 log_err("fio: kb_base set to nonsensical value: %u\n",
822 td->o.kb_base);
823 return 1;
824 }
825
826 return 0;
827}
828
Jens Axboe214e1ec2007-03-15 10:48:13 +0100829/*
830 * Map of job/command line options
831 */
Jens Axboe07b32322010-03-05 09:48:44 +0100832static struct fio_option options[FIO_MAX_OPTS] = {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100833 {
834 .name = "description",
835 .type = FIO_OPT_STR_STORE,
836 .off1 = td_var_offset(description),
837 .help = "Text job description",
838 },
839 {
840 .name = "name",
841 .type = FIO_OPT_STR_STORE,
842 .off1 = td_var_offset(name),
843 .help = "Name of this job",
844 },
845 {
846 .name = "directory",
847 .type = FIO_OPT_STR_STORE,
848 .off1 = td_var_offset(directory),
849 .cb = str_directory_cb,
850 .help = "Directory to store files in",
851 },
852 {
853 .name = "filename",
854 .type = FIO_OPT_STR_STORE,
855 .off1 = td_var_offset(filename),
856 .cb = str_filename_cb,
Jens Axboef0d524b2009-04-27 08:00:48 +0200857 .prio = -1, /* must come after "directory" */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100858 .help = "File(s) to use for the workload",
859 },
860 {
Jens Axboe90fef2d2009-07-17 22:33:32 +0200861 .name = "kb_base",
862 .type = FIO_OPT_INT,
863 .off1 = td_var_offset(kb_base),
Jens Axboe90fef2d2009-07-17 22:33:32 +0200864 .verify = kb_base_verify,
Jens Axboea639f0b2009-07-18 08:25:35 +0200865 .prio = 1,
Jens Axboe90fef2d2009-07-17 22:33:32 +0200866 .def = "1024",
Jens Axboea639f0b2009-07-18 08:25:35 +0200867 .help = "How many bytes per KB for reporting (1000 or 1024)",
Jens Axboe90fef2d2009-07-17 22:33:32 +0200868 },
869 {
Jens Axboe29c13492008-03-01 19:25:20 +0100870 .name = "lockfile",
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100871 .type = FIO_OPT_STR,
872 .cb = str_lockfile_cb,
873 .off1 = td_var_offset(file_lock_mode),
Jens Axboe29c13492008-03-01 19:25:20 +0100874 .help = "Lock file when doing IO to it",
875 .parent = "filename",
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100876 .def = "none",
877 .posval = {
878 { .ival = "none",
879 .oval = FILE_LOCK_NONE,
880 .help = "No file locking",
881 },
882 { .ival = "exclusive",
883 .oval = FILE_LOCK_EXCLUSIVE,
884 .help = "Exclusive file lock",
885 },
886 {
887 .ival = "readwrite",
888 .oval = FILE_LOCK_READWRITE,
889 .help = "Read vs write lock",
890 },
891 },
Jens Axboe29c13492008-03-01 19:25:20 +0100892 },
893 {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100894 .name = "opendir",
895 .type = FIO_OPT_STR_STORE,
896 .off1 = td_var_offset(opendir),
897 .cb = str_opendir_cb,
898 .help = "Recursively add files from this directory and down",
899 },
900 {
901 .name = "rw",
Jens Axboed3aad8f2007-03-15 14:12:05 +0100902 .alias = "readwrite",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100903 .type = FIO_OPT_STR,
Jens Axboe211097b2007-03-22 18:56:45 +0100904 .cb = str_rw_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100905 .off1 = td_var_offset(td_ddir),
906 .help = "IO direction",
907 .def = "read",
Jens Axboe896cac22009-07-01 10:38:35 +0200908 .verify = rw_verify,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100909 .posval = {
910 { .ival = "read",
911 .oval = TD_DDIR_READ,
912 .help = "Sequential read",
913 },
914 { .ival = "write",
915 .oval = TD_DDIR_WRITE,
916 .help = "Sequential write",
917 },
918 { .ival = "randread",
919 .oval = TD_DDIR_RANDREAD,
920 .help = "Random read",
921 },
922 { .ival = "randwrite",
923 .oval = TD_DDIR_RANDWRITE,
924 .help = "Random write",
925 },
926 { .ival = "rw",
927 .oval = TD_DDIR_RW,
928 .help = "Sequential read and write mix",
929 },
930 { .ival = "randrw",
931 .oval = TD_DDIR_RANDRW,
932 .help = "Random read and write mix"
933 },
934 },
935 },
936 {
Jens Axboe38dad622010-07-20 14:46:00 -0600937 .name = "rw_sequencer",
938 .type = FIO_OPT_STR,
939 .off1 = td_var_offset(rw_seq),
940 .help = "IO offset generator modifier",
941 .def = "sequential",
942 .posval = {
943 { .ival = "sequential",
944 .oval = RW_SEQ_SEQ,
945 .help = "Generate sequential offsets",
946 },
947 { .ival = "identical",
948 .oval = RW_SEQ_IDENT,
949 .help = "Generate identical offsets",
950 },
951 },
952 },
953
954 {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100955 .name = "ioengine",
956 .type = FIO_OPT_STR_STORE,
957 .off1 = td_var_offset(ioengine),
958 .help = "IO engine to use",
Jens Axboe58483fa2011-01-19 11:09:58 -0700959 .def = FIO_PREFERRED_ENGINE,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100960 .posval = {
961 { .ival = "sync",
962 .help = "Use read/write",
963 },
gurudas paia31041e2007-10-23 15:12:30 +0200964 { .ival = "psync",
965 .help = "Use pread/pwrite",
966 },
Jens Axboe1d2af022008-02-04 10:59:07 +0100967 { .ival = "vsync",
Bruce Cran03e20d62011-01-02 20:14:54 +0100968 .help = "Use readv/writev",
Jens Axboe1d2af022008-02-04 10:59:07 +0100969 },
Jens Axboe214e1ec2007-03-15 10:48:13 +0100970#ifdef FIO_HAVE_LIBAIO
971 { .ival = "libaio",
972 .help = "Linux native asynchronous IO",
973 },
974#endif
975#ifdef FIO_HAVE_POSIXAIO
976 { .ival = "posixaio",
977 .help = "POSIX asynchronous IO",
978 },
979#endif
Jens Axboe417f0062008-06-02 11:59:30 +0200980#ifdef FIO_HAVE_SOLARISAIO
981 { .ival = "solarisaio",
982 .help = "Solaris native asynchronous IO",
983 },
984#endif
Bruce Cran03e20d62011-01-02 20:14:54 +0100985#ifdef FIO_HAVE_WINDOWSAIO
986 { .ival = "windowsaio",
Jens Axboe3be80072011-01-19 11:07:28 -0700987 .help = "Windows native asynchronous IO"
Steven Langde890a12011-11-09 14:03:34 +0100988 },
Jens Axboe3be80072011-01-19 11:07:28 -0700989#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +0100990 { .ival = "mmap",
Bruce Cran03e20d62011-01-02 20:14:54 +0100991 .help = "Memory mapped IO"
Jens Axboe214e1ec2007-03-15 10:48:13 +0100992 },
993#ifdef FIO_HAVE_SPLICE
994 { .ival = "splice",
995 .help = "splice/vmsplice based IO",
996 },
Jens Axboe9cce02e2007-06-22 15:42:21 +0200997 { .ival = "netsplice",
998 .help = "splice/vmsplice to/from the network",
999 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001000#endif
1001#ifdef FIO_HAVE_SGIO
1002 { .ival = "sg",
1003 .help = "SCSI generic v3 IO",
1004 },
1005#endif
1006 { .ival = "null",
1007 .help = "Testing engine (no data transfer)",
1008 },
1009 { .ival = "net",
1010 .help = "Network IO",
1011 },
1012#ifdef FIO_HAVE_SYSLET
1013 { .ival = "syslet-rw",
1014 .help = "syslet enabled async pread/pwrite IO",
1015 },
1016#endif
1017 { .ival = "cpuio",
Bruce Cran03e20d62011-01-02 20:14:54 +01001018 .help = "CPU cycle burner engine",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001019 },
Jens Axboeb8c82a42007-03-21 08:48:26 +01001020#ifdef FIO_HAVE_GUASI
1021 { .ival = "guasi",
1022 .help = "GUASI IO engine",
1023 },
1024#endif
Jens Axboe79a43182010-09-07 13:28:58 +02001025#ifdef FIO_HAVE_BINJECT
1026 { .ival = "binject",
1027 .help = "binject direct inject block engine",
1028 },
1029#endif
ren yufei21b8aee2011-08-01 10:01:57 +02001030#ifdef FIO_HAVE_RDMA
1031 { .ival = "rdma",
1032 .help = "RDMA IO engine",
1033 },
1034#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +01001035 { .ival = "external",
1036 .help = "Load external engine (append name)",
1037 },
1038 },
1039 },
1040 {
1041 .name = "iodepth",
1042 .type = FIO_OPT_INT,
1043 .off1 = td_var_offset(iodepth),
Bruce Cran03e20d62011-01-02 20:14:54 +01001044 .help = "Number of IO buffers to keep in flight",
Jens Axboe757aff42007-12-12 19:42:13 +01001045 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001046 .def = "1",
1047 },
1048 {
1049 .name = "iodepth_batch",
Jens Axboe49504212008-06-05 09:03:30 +02001050 .alias = "iodepth_batch_submit",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001051 .type = FIO_OPT_INT,
1052 .off1 = td_var_offset(iodepth_batch),
Jens Axboed65db442009-01-16 19:15:33 +01001053 .help = "Number of IO buffers to submit in one go",
Jens Axboeafdf9352007-07-31 16:14:34 +02001054 .parent = "iodepth",
Jens Axboea2e6f8a2008-01-18 10:28:11 +01001055 .minval = 1,
1056 .def = "1",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001057 },
1058 {
Jens Axboe49504212008-06-05 09:03:30 +02001059 .name = "iodepth_batch_complete",
1060 .type = FIO_OPT_INT,
1061 .off1 = td_var_offset(iodepth_batch_complete),
Jens Axboed65db442009-01-16 19:15:33 +01001062 .help = "Number of IO buffers to retrieve in one go",
Jens Axboe49504212008-06-05 09:03:30 +02001063 .parent = "iodepth",
1064 .minval = 0,
1065 .def = "1",
1066 },
1067 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001068 .name = "iodepth_low",
1069 .type = FIO_OPT_INT,
1070 .off1 = td_var_offset(iodepth_low),
1071 .help = "Low water mark for queuing depth",
Jens Axboeafdf9352007-07-31 16:14:34 +02001072 .parent = "iodepth",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001073 },
1074 {
1075 .name = "size",
1076 .type = FIO_OPT_STR_VAL,
Jens Axboe7bb59102011-07-12 19:47:03 +02001077 .cb = str_size_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001078 .help = "Total size of device or files",
1079 },
1080 {
Shawn Lewisaa31f1f2008-01-11 09:45:11 +01001081 .name = "fill_device",
Jens Axboe74586c12011-01-20 10:16:03 -07001082 .alias = "fill_fs",
Shawn Lewisaa31f1f2008-01-11 09:45:11 +01001083 .type = FIO_OPT_BOOL,
1084 .off1 = td_var_offset(fill_device),
1085 .help = "Write until an ENOSPC error occurs",
1086 .def = "0",
1087 },
1088 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001089 .name = "filesize",
1090 .type = FIO_OPT_STR_VAL,
1091 .off1 = td_var_offset(file_size_low),
1092 .off2 = td_var_offset(file_size_high),
Jens Axboec3edbdb2007-07-20 14:25:31 +02001093 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001094 .help = "Size of individual files",
1095 },
1096 {
Jens Axboe67a10002007-07-31 23:12:16 +02001097 .name = "offset",
1098 .alias = "fileoffset",
1099 .type = FIO_OPT_STR_VAL,
1100 .off1 = td_var_offset(start_offset),
1101 .help = "Start IO from this offset",
1102 .def = "0",
1103 },
1104 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001105 .name = "bs",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001106 .alias = "blocksize",
Jens Axboee01b22b2009-06-09 15:43:25 +02001107 .type = FIO_OPT_INT,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001108 .off1 = td_var_offset(bs[DDIR_READ]),
1109 .off2 = td_var_offset(bs[DDIR_WRITE]),
Jens Axboec3edbdb2007-07-20 14:25:31 +02001110 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001111 .help = "Block size unit",
1112 .def = "4k",
Jens Axboe67a10002007-07-31 23:12:16 +02001113 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001114 },
1115 {
Jens Axboe2b7a01d2009-03-11 11:00:13 +01001116 .name = "ba",
1117 .alias = "blockalign",
Jens Axboee01b22b2009-06-09 15:43:25 +02001118 .type = FIO_OPT_INT,
Jens Axboe2b7a01d2009-03-11 11:00:13 +01001119 .off1 = td_var_offset(ba[DDIR_READ]),
1120 .off2 = td_var_offset(ba[DDIR_WRITE]),
1121 .minval = 1,
1122 .help = "IO block offset alignment",
1123 .parent = "rw",
1124 },
1125 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001126 .name = "bsrange",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001127 .alias = "blocksize_range",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001128 .type = FIO_OPT_RANGE,
1129 .off1 = td_var_offset(min_bs[DDIR_READ]),
1130 .off2 = td_var_offset(max_bs[DDIR_READ]),
1131 .off3 = td_var_offset(min_bs[DDIR_WRITE]),
1132 .off4 = td_var_offset(max_bs[DDIR_WRITE]),
Jens Axboec3edbdb2007-07-20 14:25:31 +02001133 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001134 .help = "Set block size range (in more detail than bs)",
Jens Axboe67a10002007-07-31 23:12:16 +02001135 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001136 },
1137 {
Jens Axboe564ca972007-12-14 12:21:19 +01001138 .name = "bssplit",
1139 .type = FIO_OPT_STR,
1140 .cb = str_bssplit_cb,
1141 .help = "Set a specific mix of block sizes",
1142 .parent = "rw",
1143 },
1144 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001145 .name = "bs_unaligned",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001146 .alias = "blocksize_unaligned",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001147 .type = FIO_OPT_STR_SET,
1148 .off1 = td_var_offset(bs_unaligned),
1149 .help = "Don't sector align IO buffer sizes",
Jens Axboe67a10002007-07-31 23:12:16 +02001150 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001151 },
1152 {
1153 .name = "randrepeat",
1154 .type = FIO_OPT_BOOL,
1155 .off1 = td_var_offset(rand_repeatable),
1156 .help = "Use repeatable random IO pattern",
1157 .def = "1",
Jens Axboe67a10002007-07-31 23:12:16 +02001158 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001159 },
1160 {
Jens Axboe2615cc42011-03-28 09:35:09 +02001161 .name = "use_os_rand",
1162 .type = FIO_OPT_BOOL,
1163 .off1 = td_var_offset(use_os_rand),
1164 .help = "Set to use OS random generator",
1165 .def = "0",
1166 .parent = "rw",
1167 },
1168 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001169 .name = "norandommap",
1170 .type = FIO_OPT_STR_SET,
1171 .off1 = td_var_offset(norandommap),
1172 .help = "Accept potential duplicate random blocks",
Jens Axboe67a10002007-07-31 23:12:16 +02001173 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001174 },
1175 {
Jens Axboe2b386d22008-03-26 10:32:57 +01001176 .name = "softrandommap",
1177 .type = FIO_OPT_BOOL,
1178 .off1 = td_var_offset(softrandommap),
Jens Axboef66ab3c2008-06-05 11:48:22 +02001179 .help = "Set norandommap if randommap allocation fails",
Jens Axboe2b386d22008-03-26 10:32:57 +01001180 .parent = "norandommap",
1181 .def = "0",
1182 },
1183 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001184 .name = "nrfiles",
Jens Axboed7c8be02010-11-25 08:21:39 +01001185 .alias = "nr_files",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001186 .type = FIO_OPT_INT,
1187 .off1 = td_var_offset(nr_files),
1188 .help = "Split job workload between this number of files",
1189 .def = "1",
1190 },
1191 {
1192 .name = "openfiles",
1193 .type = FIO_OPT_INT,
1194 .off1 = td_var_offset(open_files),
1195 .help = "Number of files to keep open at the same time",
1196 },
1197 {
1198 .name = "file_service_type",
1199 .type = FIO_OPT_STR,
1200 .cb = str_fst_cb,
1201 .off1 = td_var_offset(file_service_type),
1202 .help = "How to select which file to service next",
1203 .def = "roundrobin",
1204 .posval = {
1205 { .ival = "random",
1206 .oval = FIO_FSERVICE_RANDOM,
1207 .help = "Choose a file at random",
1208 },
1209 { .ival = "roundrobin",
1210 .oval = FIO_FSERVICE_RR,
1211 .help = "Round robin select files",
1212 },
Jens Axboea086c252009-03-04 08:27:37 +01001213 { .ival = "sequential",
1214 .oval = FIO_FSERVICE_SEQ,
1215 .help = "Finish one file before moving to the next",
1216 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001217 },
Jens Axboe67a10002007-07-31 23:12:16 +02001218 .parent = "nrfiles",
1219 },
Jens Axboe7bc8c2c2010-01-28 11:31:31 +01001220#ifdef FIO_HAVE_FALLOCATE
1221 {
1222 .name = "fallocate",
Eric Gourioua596f042011-06-17 09:11:45 +02001223 .type = FIO_OPT_STR,
1224 .off1 = td_var_offset(fallocate_mode),
1225 .help = "Whether pre-allocation is performed when laying out files",
1226 .def = "posix",
1227 .posval = {
1228 { .ival = "none",
1229 .oval = FIO_FALLOCATE_NONE,
1230 .help = "Do not pre-allocate space",
1231 },
1232 { .ival = "posix",
1233 .oval = FIO_FALLOCATE_POSIX,
1234 .help = "Use posix_fallocate()",
1235 },
1236#ifdef FIO_HAVE_LINUX_FALLOCATE
1237 { .ival = "keep",
1238 .oval = FIO_FALLOCATE_KEEP_SIZE,
1239 .help = "Use fallocate(..., FALLOC_FL_KEEP_SIZE, ...)",
1240 },
Jens Axboe7bc8c2c2010-01-28 11:31:31 +01001241#endif
Eric Gourioua596f042011-06-17 09:11:45 +02001242 /* Compatibility with former boolean values */
1243 { .ival = "0",
1244 .oval = FIO_FALLOCATE_NONE,
1245 .help = "Alias for 'none'",
1246 },
1247 { .ival = "1",
1248 .oval = FIO_FALLOCATE_POSIX,
1249 .help = "Alias for 'posix'",
1250 },
1251 },
1252 },
1253#endif /* FIO_HAVE_FALLOCATE */
Jens Axboe67a10002007-07-31 23:12:16 +02001254 {
1255 .name = "fadvise_hint",
1256 .type = FIO_OPT_BOOL,
1257 .off1 = td_var_offset(fadvise_hint),
1258 .help = "Use fadvise() to advise the kernel on IO pattern",
1259 .def = "1",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001260 },
1261 {
1262 .name = "fsync",
1263 .type = FIO_OPT_INT,
1264 .off1 = td_var_offset(fsync_blocks),
1265 .help = "Issue fsync for writes every given number of blocks",
1266 .def = "0",
1267 },
1268 {
Jens Axboe5f9099e2009-06-16 22:40:26 +02001269 .name = "fdatasync",
1270 .type = FIO_OPT_INT,
1271 .off1 = td_var_offset(fdatasync_blocks),
1272 .help = "Issue fdatasync for writes every given number of blocks",
1273 .def = "0",
1274 },
Jens Axboe1ef2b6b2010-10-08 15:07:01 +02001275 {
1276 .name = "write_barrier",
1277 .type = FIO_OPT_INT,
1278 .off1 = td_var_offset(barrier_blocks),
1279 .help = "Make every Nth write a barrier write",
1280 .def = "0",
1281 },
Jens Axboe44f29692010-03-09 20:09:44 +01001282#ifdef FIO_HAVE_SYNC_FILE_RANGE
1283 {
1284 .name = "sync_file_range",
1285 .posval = {
1286 { .ival = "wait_before",
1287 .oval = SYNC_FILE_RANGE_WAIT_BEFORE,
1288 .help = "SYNC_FILE_RANGE_WAIT_BEFORE",
Jens Axboe3843deb2010-03-09 20:41:15 +01001289 .or = 1,
Jens Axboe44f29692010-03-09 20:09:44 +01001290 },
1291 { .ival = "write",
1292 .oval = SYNC_FILE_RANGE_WRITE,
1293 .help = "SYNC_FILE_RANGE_WRITE",
Jens Axboe3843deb2010-03-09 20:41:15 +01001294 .or = 1,
Jens Axboe44f29692010-03-09 20:09:44 +01001295 },
1296 {
1297 .ival = "wait_after",
1298 .oval = SYNC_FILE_RANGE_WAIT_AFTER,
1299 .help = "SYNC_FILE_RANGE_WAIT_AFTER",
Jens Axboe3843deb2010-03-09 20:41:15 +01001300 .or = 1,
Jens Axboe44f29692010-03-09 20:09:44 +01001301 },
1302 },
Jens Axboe3843deb2010-03-09 20:41:15 +01001303 .type = FIO_OPT_STR_MULTI,
Jens Axboe44f29692010-03-09 20:09:44 +01001304 .cb = str_sfr_cb,
1305 .off1 = td_var_offset(sync_file_range),
1306 .help = "Use sync_file_range()",
1307 },
1308#endif
Jens Axboe5f9099e2009-06-16 22:40:26 +02001309 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001310 .name = "direct",
1311 .type = FIO_OPT_BOOL,
1312 .off1 = td_var_offset(odirect),
1313 .help = "Use O_DIRECT IO (negates buffered)",
1314 .def = "0",
1315 },
1316 {
1317 .name = "buffered",
1318 .type = FIO_OPT_BOOL,
1319 .off1 = td_var_offset(odirect),
1320 .neg = 1,
1321 .help = "Use buffered IO (negates direct)",
1322 .def = "1",
1323 },
1324 {
1325 .name = "overwrite",
1326 .type = FIO_OPT_BOOL,
1327 .off1 = td_var_offset(overwrite),
1328 .help = "When writing, set whether to overwrite current data",
1329 .def = "0",
1330 },
1331 {
1332 .name = "loops",
1333 .type = FIO_OPT_INT,
1334 .off1 = td_var_offset(loops),
1335 .help = "Number of times to run the job",
1336 .def = "1",
1337 },
1338 {
1339 .name = "numjobs",
1340 .type = FIO_OPT_INT,
1341 .off1 = td_var_offset(numjobs),
1342 .help = "Duplicate this job this many times",
1343 .def = "1",
1344 },
1345 {
1346 .name = "startdelay",
Jens Axboea5737c92010-06-29 10:40:30 +02001347 .type = FIO_OPT_STR_VAL_TIME,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001348 .off1 = td_var_offset(start_delay),
1349 .help = "Only start job when this period has passed",
1350 .def = "0",
1351 },
1352 {
1353 .name = "runtime",
1354 .alias = "timeout",
1355 .type = FIO_OPT_STR_VAL_TIME,
1356 .off1 = td_var_offset(timeout),
1357 .help = "Stop workload when this amount of time has passed",
1358 .def = "0",
1359 },
1360 {
Jens Axboecf4464c2007-04-17 20:14:42 +02001361 .name = "time_based",
1362 .type = FIO_OPT_STR_SET,
1363 .off1 = td_var_offset(time_based),
1364 .help = "Keep running until runtime/timeout is met",
1365 },
1366 {
Jens Axboe721938a2008-09-10 09:46:16 +02001367 .name = "ramp_time",
1368 .type = FIO_OPT_STR_VAL_TIME,
1369 .off1 = td_var_offset(ramp_time),
1370 .help = "Ramp up time before measuring performance",
1371 },
1372 {
Jens Axboec223da82010-03-24 13:23:53 +01001373 .name = "clocksource",
1374 .type = FIO_OPT_STR,
1375 .cb = fio_clock_source_cb,
1376 .off1 = td_var_offset(clocksource),
1377 .help = "What type of timing source to use",
Jens Axboec223da82010-03-24 13:23:53 +01001378 .posval = {
1379 { .ival = "gettimeofday",
1380 .oval = CS_GTOD,
1381 .help = "Use gettimeofday(2) for timing",
1382 },
1383 { .ival = "clock_gettime",
1384 .oval = CS_CGETTIME,
1385 .help = "Use clock_gettime(2) for timing",
1386 },
1387#ifdef ARCH_HAVE_CPU_CLOCK
1388 { .ival = "cpu",
1389 .oval = CS_CPUCLOCK,
1390 .help = "Use CPU private clock",
1391 },
1392#endif
1393 },
1394 },
1395 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001396 .name = "mem",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001397 .alias = "iomem",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001398 .type = FIO_OPT_STR,
1399 .cb = str_mem_cb,
1400 .off1 = td_var_offset(mem_type),
1401 .help = "Backing type for IO buffers",
1402 .def = "malloc",
1403 .posval = {
1404 { .ival = "malloc",
1405 .oval = MEM_MALLOC,
1406 .help = "Use malloc(3) for IO buffers",
1407 },
Jens Axboeb370e462007-03-19 10:51:49 +01001408 { .ival = "shm",
1409 .oval = MEM_SHM,
1410 .help = "Use shared memory segments for IO buffers",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001411 },
1412#ifdef FIO_HAVE_HUGETLB
Jens Axboe37c8cdf2007-03-19 13:14:03 +01001413 { .ival = "shmhuge",
1414 .oval = MEM_SHMHUGE,
1415 .help = "Like shm, but use huge pages",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001416 },
1417#endif
Jens Axboeb370e462007-03-19 10:51:49 +01001418 { .ival = "mmap",
1419 .oval = MEM_MMAP,
1420 .help = "Use mmap(2) (file or anon) for IO buffers",
1421 },
Jens Axboe37c8cdf2007-03-19 13:14:03 +01001422#ifdef FIO_HAVE_HUGETLB
1423 { .ival = "mmaphuge",
1424 .oval = MEM_MMAPHUGE,
1425 .help = "Like mmap, but use huge pages",
1426 },
1427#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +01001428 },
1429 },
1430 {
Jens Axboed529ee12009-07-01 10:33:03 +02001431 .name = "iomem_align",
1432 .alias = "mem_align",
1433 .type = FIO_OPT_INT,
1434 .off1 = td_var_offset(mem_align),
1435 .minval = 0,
1436 .help = "IO memory buffer offset alignment",
1437 .def = "0",
1438 .parent = "iomem",
1439 },
1440 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001441 .name = "verify",
1442 .type = FIO_OPT_STR,
1443 .off1 = td_var_offset(verify),
1444 .help = "Verify data written",
Jens Axboe5d7c5d32010-06-21 15:08:17 +02001445 .cb = str_verify_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001446 .def = "0",
1447 .posval = {
1448 { .ival = "0",
1449 .oval = VERIFY_NONE,
1450 .help = "Don't do IO verification",
1451 },
Jens Axboefcca4b52007-07-27 15:42:00 +02001452 { .ival = "md5",
1453 .oval = VERIFY_MD5,
1454 .help = "Use md5 checksums for verification",
1455 },
Jens Axboed77a7af2007-07-27 15:35:06 +02001456 { .ival = "crc64",
1457 .oval = VERIFY_CRC64,
1458 .help = "Use crc64 checksums for verification",
1459 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001460 { .ival = "crc32",
1461 .oval = VERIFY_CRC32,
1462 .help = "Use crc32 checksums for verification",
1463 },
Jens Axboeaf497e62008-08-04 15:40:35 +02001464 { .ival = "crc32c-intel",
1465 .oval = VERIFY_CRC32C_INTEL,
1466 .help = "Use hw crc32c checksums for verification",
1467 },
Jens Axboebac39e02008-06-11 20:46:19 +02001468 { .ival = "crc32c",
1469 .oval = VERIFY_CRC32C,
1470 .help = "Use crc32c checksums for verification",
1471 },
Jens Axboe969f7ed2007-07-27 09:07:17 +02001472 { .ival = "crc16",
1473 .oval = VERIFY_CRC16,
1474 .help = "Use crc16 checksums for verification",
1475 },
Jens Axboe1e154bd2007-07-27 09:52:40 +02001476 { .ival = "crc7",
1477 .oval = VERIFY_CRC7,
1478 .help = "Use crc7 checksums for verification",
1479 },
Jens Axboe7c353ce2009-08-09 22:40:33 +02001480 { .ival = "sha1",
1481 .oval = VERIFY_SHA1,
1482 .help = "Use sha1 checksums for verification",
1483 },
Jens Axboecd14cc12007-07-30 10:59:33 +02001484 { .ival = "sha256",
1485 .oval = VERIFY_SHA256,
1486 .help = "Use sha256 checksums for verification",
1487 },
1488 { .ival = "sha512",
1489 .oval = VERIFY_SHA512,
1490 .help = "Use sha512 checksums for verification",
1491 },
Shawn Lewis7437ee82007-08-02 21:05:58 +02001492 { .ival = "meta",
1493 .oval = VERIFY_META,
1494 .help = "Use io information",
1495 },
Jens Axboe36690c92007-03-26 10:23:34 +02001496 {
1497 .ival = "null",
1498 .oval = VERIFY_NULL,
1499 .help = "Pretend to verify",
1500 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001501 },
1502 },
1503 {
Jens Axboe005c5652007-08-02 22:21:36 +02001504 .name = "do_verify",
Jens Axboe68e1f292007-08-10 10:32:14 +02001505 .type = FIO_OPT_BOOL,
Jens Axboe005c5652007-08-02 22:21:36 +02001506 .off1 = td_var_offset(do_verify),
1507 .help = "Run verification stage after write",
1508 .def = "1",
1509 .parent = "verify",
1510 },
1511 {
Jens Axboe160b9662007-03-27 10:59:49 +02001512 .name = "verifysort",
1513 .type = FIO_OPT_BOOL,
1514 .off1 = td_var_offset(verifysort),
1515 .help = "Sort written verify blocks for read back",
1516 .def = "1",
Jens Axboec83f2df2007-07-31 22:51:47 +02001517 .parent = "verify",
Jens Axboe160b9662007-03-27 10:59:49 +02001518 },
1519 {
Jens Axboea59e1702007-07-30 08:53:27 +02001520 .name = "verify_interval",
Jens Axboee01b22b2009-06-09 15:43:25 +02001521 .type = FIO_OPT_INT,
Jens Axboea59e1702007-07-30 08:53:27 +02001522 .off1 = td_var_offset(verify_interval),
Jens Axboe819a9682007-07-28 21:30:31 +02001523 .minval = 2 * sizeof(struct verify_header),
Jens Axboea59e1702007-07-30 08:53:27 +02001524 .help = "Store verify buffer header every N bytes",
Jens Axboeafdf9352007-07-31 16:14:34 +02001525 .parent = "verify",
Shawn Lewis3f9f4e22007-07-28 21:10:37 +02001526 },
1527 {
Jens Axboea59e1702007-07-30 08:53:27 +02001528 .name = "verify_offset",
Jens Axboee01b22b2009-06-09 15:43:25 +02001529 .type = FIO_OPT_INT,
Jens Axboea59e1702007-07-30 08:53:27 +02001530 .help = "Offset verify header location by N bytes",
Shawn Lewis546a9142007-07-28 21:11:37 +02001531 .def = "0",
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001532 .cb = str_verify_offset_cb,
Jens Axboeafdf9352007-07-31 16:14:34 +02001533 .parent = "verify",
Shawn Lewis546a9142007-07-28 21:11:37 +02001534 },
1535 {
Shawn Lewise28218f2008-01-16 11:01:33 +01001536 .name = "verify_pattern",
Radha Ramachandran0e92f872009-10-27 20:14:27 +01001537 .type = FIO_OPT_STR,
Shawn Lewise28218f2008-01-16 11:01:33 +01001538 .cb = str_verify_pattern_cb,
1539 .help = "Fill pattern for IO buffers",
1540 .parent = "verify",
1541 },
1542 {
Jens Axboea12a3b42007-08-09 10:20:54 +02001543 .name = "verify_fatal",
Jens Axboe68e1f292007-08-10 10:32:14 +02001544 .type = FIO_OPT_BOOL,
Jens Axboea12a3b42007-08-09 10:20:54 +02001545 .off1 = td_var_offset(verify_fatal),
1546 .def = "0",
1547 .help = "Exit on a single verify failure, don't continue",
1548 .parent = "verify",
1549 },
1550 {
Jens Axboeb463e932011-01-12 09:03:23 +01001551 .name = "verify_dump",
1552 .type = FIO_OPT_BOOL,
1553 .off1 = td_var_offset(verify_dump),
Jens Axboeef71e312011-10-25 22:43:36 +02001554 .def = "0",
Jens Axboeb463e932011-01-12 09:03:23 +01001555 .help = "Dump contents of good and bad blocks on failure",
1556 .parent = "verify",
1557 },
1558 {
Jens Axboee8462bd2009-07-06 12:59:04 +02001559 .name = "verify_async",
1560 .type = FIO_OPT_INT,
1561 .off1 = td_var_offset(verify_async),
1562 .def = "0",
1563 .help = "Number of async verifier threads to use",
1564 .parent = "verify",
1565 },
Jens Axboe9e144182010-06-15 14:25:36 +02001566 {
1567 .name = "verify_backlog",
1568 .type = FIO_OPT_STR_VAL,
1569 .off1 = td_var_offset(verify_backlog),
1570 .help = "Verify after this number of blocks are written",
1571 .parent = "verify",
1572 },
1573 {
1574 .name = "verify_backlog_batch",
1575 .type = FIO_OPT_INT,
1576 .off1 = td_var_offset(verify_batch),
1577 .help = "Verify this number of IO blocks",
Jens Axboe0d29de82010-09-01 13:54:15 +02001578 .parent = "verify",
Jens Axboe9e144182010-06-15 14:25:36 +02001579 },
Jens Axboee8462bd2009-07-06 12:59:04 +02001580#ifdef FIO_HAVE_CPU_AFFINITY
1581 {
1582 .name = "verify_async_cpus",
1583 .type = FIO_OPT_STR,
1584 .cb = str_verify_cpus_allowed_cb,
1585 .help = "Set CPUs allowed for async verify threads",
1586 .parent = "verify_async",
1587 },
1588#endif
Jens Axboe0d29de82010-09-01 13:54:15 +02001589#ifdef FIO_HAVE_TRIM
1590 {
1591 .name = "trim_percentage",
1592 .type = FIO_OPT_INT,
1593 .cb = str_verify_trim_cb,
1594 .maxval = 100,
1595 .help = "Number of verify blocks to discard/trim",
1596 .parent = "verify",
1597 .def = "0",
1598 },
1599 {
1600 .name = "trim_verify_zero",
1601 .type = FIO_OPT_INT,
1602 .help = "Verify that trim/discarded blocks are returned as zeroes",
1603 .off1 = td_var_offset(trim_zero),
1604 .parent = "trim_percentage",
1605 .def = "1",
1606 },
1607 {
1608 .name = "trim_backlog",
1609 .type = FIO_OPT_STR_VAL,
1610 .off1 = td_var_offset(trim_backlog),
1611 .help = "Trim after this number of blocks are written",
1612 .parent = "trim_percentage",
1613 },
1614 {
1615 .name = "trim_backlog_batch",
1616 .type = FIO_OPT_INT,
1617 .off1 = td_var_offset(trim_batch),
1618 .help = "Trim this number of IO blocks",
1619 .parent = "trim_percentage",
1620 },
1621#endif
Jens Axboee8462bd2009-07-06 12:59:04 +02001622 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001623 .name = "write_iolog",
1624 .type = FIO_OPT_STR_STORE,
1625 .off1 = td_var_offset(write_iolog_file),
1626 .help = "Store IO pattern to file",
1627 },
1628 {
1629 .name = "read_iolog",
1630 .type = FIO_OPT_STR_STORE,
1631 .off1 = td_var_offset(read_iolog_file),
1632 .help = "Playback IO pattern from file",
1633 },
1634 {
David Nellans64bbb862010-08-24 22:13:30 +02001635 .name = "replay_no_stall",
1636 .type = FIO_OPT_INT,
1637 .off1 = td_var_offset(no_stall),
1638 .def = "0",
Jens Axboe87e7a972010-08-25 09:01:25 +02001639 .parent = "read_iolog",
David Nellans64bbb862010-08-24 22:13:30 +02001640 .help = "Playback IO pattern file as fast as possible without stalls",
1641 },
1642 {
David Nellansd1c46c02010-08-31 21:20:47 +02001643 .name = "replay_redirect",
1644 .type = FIO_OPT_STR_STORE,
1645 .off1 = td_var_offset(replay_redirect),
1646 .parent = "read_iolog",
1647 .help = "Replay all I/O onto this device, regardless of trace device",
1648 },
1649 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001650 .name = "exec_prerun",
1651 .type = FIO_OPT_STR_STORE,
1652 .off1 = td_var_offset(exec_prerun),
1653 .help = "Execute this file prior to running job",
1654 },
1655 {
1656 .name = "exec_postrun",
1657 .type = FIO_OPT_STR_STORE,
1658 .off1 = td_var_offset(exec_postrun),
1659 .help = "Execute this file after running job",
1660 },
1661#ifdef FIO_HAVE_IOSCHED_SWITCH
1662 {
1663 .name = "ioscheduler",
1664 .type = FIO_OPT_STR_STORE,
1665 .off1 = td_var_offset(ioscheduler),
1666 .help = "Use this IO scheduler on the backing device",
1667 },
1668#endif
1669 {
1670 .name = "zonesize",
1671 .type = FIO_OPT_STR_VAL,
1672 .off1 = td_var_offset(zone_size),
1673 .help = "Give size of an IO zone",
1674 .def = "0",
1675 },
1676 {
1677 .name = "zoneskip",
1678 .type = FIO_OPT_STR_VAL,
1679 .off1 = td_var_offset(zone_skip),
1680 .help = "Space between IO zones",
1681 .def = "0",
1682 },
1683 {
1684 .name = "lockmem",
1685 .type = FIO_OPT_STR_VAL,
1686 .cb = str_lockmem_cb,
1687 .help = "Lock down this amount of memory",
1688 .def = "0",
1689 },
1690 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001691 .name = "rwmixread",
1692 .type = FIO_OPT_INT,
Jens Axboecb499fc2008-05-28 10:33:32 +02001693 .cb = str_rwmix_read_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001694 .maxval = 100,
1695 .help = "Percentage of mixed workload that is reads",
1696 .def = "50",
1697 },
1698 {
1699 .name = "rwmixwrite",
1700 .type = FIO_OPT_INT,
Jens Axboecb499fc2008-05-28 10:33:32 +02001701 .cb = str_rwmix_write_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001702 .maxval = 100,
1703 .help = "Percentage of mixed workload that is writes",
1704 .def = "50",
1705 },
1706 {
Jens Axboeafdf9352007-07-31 16:14:34 +02001707 .name = "rwmixcycle",
Jens Axboe15ca1502008-04-07 09:26:02 +02001708 .type = FIO_OPT_DEPRECATED,
Jens Axboeafdf9352007-07-31 16:14:34 +02001709 },
1710 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001711 .name = "nice",
1712 .type = FIO_OPT_INT,
1713 .off1 = td_var_offset(nice),
1714 .help = "Set job CPU nice value",
1715 .minval = -19,
1716 .maxval = 20,
1717 .def = "0",
1718 },
1719#ifdef FIO_HAVE_IOPRIO
1720 {
1721 .name = "prio",
1722 .type = FIO_OPT_INT,
1723 .cb = str_prio_cb,
1724 .help = "Set job IO priority value",
1725 .minval = 0,
1726 .maxval = 7,
1727 },
1728 {
1729 .name = "prioclass",
1730 .type = FIO_OPT_INT,
1731 .cb = str_prioclass_cb,
1732 .help = "Set job IO priority class",
1733 .minval = 0,
1734 .maxval = 3,
1735 },
1736#endif
1737 {
1738 .name = "thinktime",
1739 .type = FIO_OPT_INT,
1740 .off1 = td_var_offset(thinktime),
1741 .help = "Idle time between IO buffers (usec)",
1742 .def = "0",
1743 },
1744 {
1745 .name = "thinktime_spin",
1746 .type = FIO_OPT_INT,
1747 .off1 = td_var_offset(thinktime_spin),
1748 .help = "Start think time by spinning this amount (usec)",
1749 .def = "0",
Jens Axboeafdf9352007-07-31 16:14:34 +02001750 .parent = "thinktime",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001751 },
1752 {
1753 .name = "thinktime_blocks",
1754 .type = FIO_OPT_INT,
1755 .off1 = td_var_offset(thinktime_blocks),
1756 .help = "IO buffer period between 'thinktime'",
1757 .def = "1",
Jens Axboeafdf9352007-07-31 16:14:34 +02001758 .parent = "thinktime",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001759 },
1760 {
1761 .name = "rate",
Jens Axboee01b22b2009-06-09 15:43:25 +02001762 .type = FIO_OPT_INT,
Jens Axboe581e7142009-06-09 12:47:16 +02001763 .off1 = td_var_offset(rate[0]),
1764 .off2 = td_var_offset(rate[1]),
Jens Axboe214e1ec2007-03-15 10:48:13 +01001765 .help = "Set bandwidth rate",
1766 },
1767 {
1768 .name = "ratemin",
Jens Axboee01b22b2009-06-09 15:43:25 +02001769 .type = FIO_OPT_INT,
Jens Axboe581e7142009-06-09 12:47:16 +02001770 .off1 = td_var_offset(ratemin[0]),
1771 .off2 = td_var_offset(ratemin[1]),
Jens Axboe4e991c22007-03-15 11:41:11 +01001772 .help = "Job must meet this rate or it will be shutdown",
Jens Axboeafdf9352007-07-31 16:14:34 +02001773 .parent = "rate",
Jens Axboe4e991c22007-03-15 11:41:11 +01001774 },
1775 {
1776 .name = "rate_iops",
Jens Axboee01b22b2009-06-09 15:43:25 +02001777 .type = FIO_OPT_INT,
Jens Axboe581e7142009-06-09 12:47:16 +02001778 .off1 = td_var_offset(rate_iops[0]),
1779 .off2 = td_var_offset(rate_iops[1]),
Jens Axboe4e991c22007-03-15 11:41:11 +01001780 .help = "Limit IO used to this number of IO operations/sec",
1781 },
1782 {
1783 .name = "rate_iops_min",
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_min[0]),
1786 .off2 = td_var_offset(rate_iops_min[1]),
Bruce Cran03e20d62011-01-02 20:14:54 +01001787 .help = "Job must meet this rate or it will be shut down",
Jens Axboeafdf9352007-07-31 16:14:34 +02001788 .parent = "rate_iops",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001789 },
1790 {
1791 .name = "ratecycle",
1792 .type = FIO_OPT_INT,
1793 .off1 = td_var_offset(ratecycle),
1794 .help = "Window average for rate limits (msec)",
1795 .def = "1000",
Jens Axboeafdf9352007-07-31 16:14:34 +02001796 .parent = "rate",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001797 },
1798 {
1799 .name = "invalidate",
1800 .type = FIO_OPT_BOOL,
1801 .off1 = td_var_offset(invalidate_cache),
1802 .help = "Invalidate buffer/page cache prior to running job",
1803 .def = "1",
1804 },
1805 {
1806 .name = "sync",
1807 .type = FIO_OPT_BOOL,
1808 .off1 = td_var_offset(sync_io),
1809 .help = "Use O_SYNC for buffered writes",
1810 .def = "0",
Jens Axboe67a10002007-07-31 23:12:16 +02001811 .parent = "buffered",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001812 },
1813 {
1814 .name = "bwavgtime",
1815 .type = FIO_OPT_INT,
1816 .off1 = td_var_offset(bw_avg_time),
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001817 .help = "Time window over which to calculate bandwidth"
1818 " (msec)",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001819 .def = "500",
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001820 .parent = "write_bw_log",
1821 },
1822 {
1823 .name = "iopsavgtime",
1824 .type = FIO_OPT_INT,
1825 .off1 = td_var_offset(iops_avg_time),
1826 .help = "Time window over which to calculate IOPS (msec)",
1827 .def = "500",
1828 .parent = "write_iops_log",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001829 },
1830 {
1831 .name = "create_serialize",
1832 .type = FIO_OPT_BOOL,
1833 .off1 = td_var_offset(create_serialize),
1834 .help = "Serialize creating of job files",
1835 .def = "1",
1836 },
1837 {
1838 .name = "create_fsync",
1839 .type = FIO_OPT_BOOL,
1840 .off1 = td_var_offset(create_fsync),
Bruce Cran03e20d62011-01-02 20:14:54 +01001841 .help = "fsync file after creation",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001842 .def = "1",
1843 },
1844 {
Jens Axboe814452b2009-03-04 12:53:13 +01001845 .name = "create_on_open",
1846 .type = FIO_OPT_BOOL,
1847 .off1 = td_var_offset(create_on_open),
1848 .help = "Create files when they are opened for IO",
1849 .def = "0",
1850 },
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001851 {
Zhang, Yanminafad68f2009-05-20 11:30:55 +02001852 .name = "pre_read",
1853 .type = FIO_OPT_BOOL,
1854 .off1 = td_var_offset(pre_read),
Bruce Cran03e20d62011-01-02 20:14:54 +01001855 .help = "Pre-read files before starting official testing",
Zhang, Yanminafad68f2009-05-20 11:30:55 +02001856 .def = "0",
1857 },
Jens Axboe814452b2009-03-04 12:53:13 +01001858 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001859 .name = "cpuload",
1860 .type = FIO_OPT_INT,
1861 .off1 = td_var_offset(cpuload),
1862 .help = "Use this percentage of CPU",
1863 },
1864 {
1865 .name = "cpuchunks",
1866 .type = FIO_OPT_INT,
1867 .off1 = td_var_offset(cpucycle),
1868 .help = "Length of the CPU burn cycles (usecs)",
1869 .def = "50000",
Jens Axboe67a10002007-07-31 23:12:16 +02001870 .parent = "cpuload",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001871 },
1872#ifdef FIO_HAVE_CPU_AFFINITY
1873 {
1874 .name = "cpumask",
1875 .type = FIO_OPT_INT,
1876 .cb = str_cpumask_cb,
1877 .help = "CPU affinity mask",
1878 },
Jens Axboed2e268b2007-06-15 10:33:49 +02001879 {
1880 .name = "cpus_allowed",
1881 .type = FIO_OPT_STR,
1882 .cb = str_cpus_allowed_cb,
1883 .help = "Set CPUs allowed",
1884 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001885#endif
1886 {
1887 .name = "end_fsync",
1888 .type = FIO_OPT_BOOL,
1889 .off1 = td_var_offset(end_fsync),
1890 .help = "Include fsync at the end of job",
1891 .def = "0",
1892 },
1893 {
1894 .name = "fsync_on_close",
1895 .type = FIO_OPT_BOOL,
1896 .off1 = td_var_offset(fsync_on_close),
1897 .help = "fsync files on close",
1898 .def = "0",
1899 },
1900 {
1901 .name = "unlink",
1902 .type = FIO_OPT_BOOL,
1903 .off1 = td_var_offset(unlink),
1904 .help = "Unlink created files after job has completed",
1905 .def = "0",
1906 },
1907 {
1908 .name = "exitall",
1909 .type = FIO_OPT_STR_SET,
1910 .cb = str_exitall_cb,
1911 .help = "Terminate all jobs when one exits",
1912 },
1913 {
1914 .name = "stonewall",
Jens Axboed3923652011-08-03 12:38:39 +02001915 .alias = "wait_for_previous",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001916 .type = FIO_OPT_STR_SET,
1917 .off1 = td_var_offset(stonewall),
1918 .help = "Insert a hard barrier between this job and previous",
1919 },
1920 {
Jens Axboeb3d62a72007-03-20 14:23:26 +01001921 .name = "new_group",
1922 .type = FIO_OPT_STR_SET,
1923 .off1 = td_var_offset(new_group),
1924 .help = "Mark the start of a new group (for reporting)",
1925 },
1926 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001927 .name = "thread",
1928 .type = FIO_OPT_STR_SET,
1929 .off1 = td_var_offset(use_thread),
1930 .help = "Use threads instead of forks",
1931 },
1932 {
1933 .name = "write_bw_log",
Jens Axboee3cedca2008-11-19 19:57:52 +01001934 .type = FIO_OPT_STR,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001935 .off1 = td_var_offset(write_bw_log),
Jens Axboee3cedca2008-11-19 19:57:52 +01001936 .cb = str_write_bw_log_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001937 .help = "Write log of bandwidth during run",
1938 },
1939 {
1940 .name = "write_lat_log",
Jens Axboee3cedca2008-11-19 19:57:52 +01001941 .type = FIO_OPT_STR,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001942 .off1 = td_var_offset(write_lat_log),
Jens Axboee3cedca2008-11-19 19:57:52 +01001943 .cb = str_write_lat_log_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001944 .help = "Write log of latency during run",
1945 },
1946 {
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001947 .name = "write_iops_log",
1948 .type = FIO_OPT_STR,
1949 .off1 = td_var_offset(write_iops_log),
1950 .cb = str_write_iops_log_cb,
1951 .help = "Write log of IOPS during run",
1952 },
1953 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001954 .name = "hugepage-size",
Jens Axboee01b22b2009-06-09 15:43:25 +02001955 .type = FIO_OPT_INT,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001956 .off1 = td_var_offset(hugepage_size),
1957 .help = "When using hugepages, specify size of each page",
Jens Axboe81179ee2011-10-04 12:42:06 +02001958 .def = __fio_stringify(FIO_HUGE_PAGE),
Jens Axboe214e1ec2007-03-15 10:48:13 +01001959 },
1960 {
1961 .name = "group_reporting",
1962 .type = FIO_OPT_STR_SET,
1963 .off1 = td_var_offset(group_reporting),
1964 .help = "Do reporting on a per-group basis",
1965 },
1966 {
Jens Axboee9459e52007-04-17 15:46:32 +02001967 .name = "zero_buffers",
1968 .type = FIO_OPT_STR_SET,
1969 .off1 = td_var_offset(zero_buffers),
1970 .help = "Init IO buffers to all zeroes",
1971 },
Jens Axboe5973caf2008-05-21 19:52:35 +02001972 {
1973 .name = "refill_buffers",
1974 .type = FIO_OPT_STR_SET,
1975 .off1 = td_var_offset(refill_buffers),
1976 .help = "Refill IO buffers on every IO submit",
1977 },
Yu-ju Hong83349192011-08-13 00:53:44 +02001978 {
Jens Axboefd684182011-09-19 09:24:44 +02001979 .name = "scramble_buffers",
1980 .type = FIO_OPT_BOOL,
1981 .off1 = td_var_offset(scramble_buffers),
1982 .help = "Slightly scramble buffers on every IO submit",
1983 .def = "1",
1984 },
1985 {
Yu-ju Hong83349192011-08-13 00:53:44 +02001986 .name = "clat_percentiles",
1987 .type = FIO_OPT_BOOL,
1988 .off1 = td_var_offset(clat_percentiles),
1989 .help = "Enable the reporting of completion latency percentiles",
Jens Axboe467b35e2011-10-13 08:53:24 +02001990 .def = "1",
Yu-ju Hong83349192011-08-13 00:53:44 +02001991 },
1992 {
1993 .name = "percentile_list",
1994 .type = FIO_OPT_FLOAT_LIST,
1995 .off1 = td_var_offset(percentile_list),
1996 .off2 = td_var_offset(overwrite_plist),
1997 .help = "Specify a custom list of percentiles to report",
1998 .maxlen = FIO_IO_U_LIST_MAX_LEN,
1999 .minfp = 0.0,
2000 .maxfp = 100.0,
2001 },
2002
Jens Axboe0a839f32007-04-26 09:02:34 +02002003#ifdef FIO_HAVE_DISK_UTIL
2004 {
2005 .name = "disk_util",
2006 .type = FIO_OPT_BOOL,
2007 .off1 = td_var_offset(do_disk_util),
Jens Axboef66ab3c2008-06-05 11:48:22 +02002008 .help = "Log disk utilization statistics",
Jens Axboe0a839f32007-04-26 09:02:34 +02002009 .def = "1",
2010 },
2011#endif
Jens Axboee9459e52007-04-17 15:46:32 +02002012 {
Jens Axboe993bf482008-11-14 13:04:53 +01002013 .name = "gtod_reduce",
2014 .type = FIO_OPT_BOOL,
2015 .help = "Greatly reduce number of gettimeofday() calls",
2016 .cb = str_gtod_reduce_cb,
2017 .def = "0",
2018 },
2019 {
Jens Axboe02af0982010-06-24 09:59:34 +02002020 .name = "disable_lat",
2021 .type = FIO_OPT_BOOL,
2022 .off1 = td_var_offset(disable_lat),
2023 .help = "Disable latency numbers",
2024 .parent = "gtod_reduce",
2025 .def = "0",
2026 },
2027 {
Jens Axboe9520ebb2008-10-16 21:03:27 +02002028 .name = "disable_clat",
2029 .type = FIO_OPT_BOOL,
2030 .off1 = td_var_offset(disable_clat),
2031 .help = "Disable completion latency numbers",
Jens Axboe993bf482008-11-14 13:04:53 +01002032 .parent = "gtod_reduce",
Jens Axboe9520ebb2008-10-16 21:03:27 +02002033 .def = "0",
2034 },
2035 {
2036 .name = "disable_slat",
2037 .type = FIO_OPT_BOOL,
2038 .off1 = td_var_offset(disable_slat),
Bruce Cran03e20d62011-01-02 20:14:54 +01002039 .help = "Disable submission latency numbers",
Jens Axboe993bf482008-11-14 13:04:53 +01002040 .parent = "gtod_reduce",
Jens Axboe9520ebb2008-10-16 21:03:27 +02002041 .def = "0",
2042 },
2043 {
2044 .name = "disable_bw_measurement",
2045 .type = FIO_OPT_BOOL,
2046 .off1 = td_var_offset(disable_bw),
2047 .help = "Disable bandwidth logging",
Jens Axboe993bf482008-11-14 13:04:53 +01002048 .parent = "gtod_reduce",
Jens Axboe9520ebb2008-10-16 21:03:27 +02002049 .def = "0",
2050 },
2051 {
Jens Axboebe4ecfd2008-12-08 14:10:52 +01002052 .name = "gtod_cpu",
2053 .type = FIO_OPT_INT,
2054 .cb = str_gtod_cpu_cb,
Bruce Cran03e20d62011-01-02 20:14:54 +01002055 .help = "Set up dedicated gettimeofday() thread on this CPU",
Jens Axboe29d43ff2009-07-01 10:42:18 +02002056 .verify = gtod_cpu_verify,
Jens Axboebe4ecfd2008-12-08 14:10:52 +01002057 },
2058 {
Radha Ramachandranf2bba182009-06-15 08:40:16 +02002059 .name = "continue_on_error",
Steven Lang06842022011-11-17 09:45:17 +01002060 .type = FIO_OPT_STR,
Radha Ramachandranf2bba182009-06-15 08:40:16 +02002061 .off1 = td_var_offset(continue_on_error),
Bruce Cran03e20d62011-01-02 20:14:54 +01002062 .help = "Continue on non-fatal errors during IO",
Steven Lang06842022011-11-17 09:45:17 +01002063 .def = "none",
2064 .posval = {
2065 { .ival = "none",
2066 .oval = ERROR_TYPE_NONE,
2067 .help = "Exit when an error is encountered",
2068 },
2069 { .ival = "read",
2070 .oval = ERROR_TYPE_READ,
2071 .help = "Continue on read errors only",
2072 },
2073 { .ival = "write",
2074 .oval = ERROR_TYPE_WRITE,
2075 .help = "Continue on write errors only",
2076 },
2077 { .ival = "io",
2078 .oval = ERROR_TYPE_READ | ERROR_TYPE_WRITE,
2079 .help = "Continue on any IO errors",
2080 },
2081 { .ival = "verify",
2082 .oval = ERROR_TYPE_VERIFY,
2083 .help = "Continue on verify errors only",
2084 },
2085 { .ival = "all",
2086 .oval = ERROR_TYPE_ANY,
2087 .help = "Continue on all io and verify errors",
2088 },
2089 { .ival = "0",
2090 .oval = ERROR_TYPE_NONE,
2091 .help = "Alias for 'none'",
2092 },
2093 { .ival = "1",
2094 .oval = ERROR_TYPE_ANY,
2095 .help = "Alias for 'all'",
2096 },
2097 },
Radha Ramachandranf2bba182009-06-15 08:40:16 +02002098 },
2099 {
Jens Axboe9ac8a792009-11-13 21:23:07 +01002100 .name = "profile",
Jens Axboe79d16312010-03-04 12:43:20 +01002101 .type = FIO_OPT_STR_STORE,
Jens Axboe9ac8a792009-11-13 21:23:07 +01002102 .off1 = td_var_offset(profile),
Jens Axboe9ac8a792009-11-13 21:23:07 +01002103 .help = "Select a specific builtin performance test",
2104 },
2105 {
Jens Axboea696fa22009-12-04 10:05:02 +01002106 .name = "cgroup",
2107 .type = FIO_OPT_STR_STORE,
2108 .off1 = td_var_offset(cgroup),
2109 .help = "Add job to cgroup of this name",
2110 },
2111 {
2112 .name = "cgroup_weight",
2113 .type = FIO_OPT_INT,
2114 .off1 = td_var_offset(cgroup_weight),
2115 .help = "Use given weight for cgroup",
2116 .minval = 100,
2117 .maxval = 1000,
Jens Axboea696fa22009-12-04 10:05:02 +01002118 },
2119 {
Vivek Goyal7de87092010-03-31 22:55:15 +02002120 .name = "cgroup_nodelete",
2121 .type = FIO_OPT_BOOL,
2122 .off1 = td_var_offset(cgroup_nodelete),
2123 .help = "Do not delete cgroups after job completion",
2124 .def = "0",
2125 },
2126 {
Jens Axboee0b0d892009-12-08 10:10:14 +01002127 .name = "uid",
2128 .type = FIO_OPT_INT,
2129 .off1 = td_var_offset(uid),
2130 .help = "Run job with this user ID",
2131 },
2132 {
2133 .name = "gid",
2134 .type = FIO_OPT_INT,
2135 .off1 = td_var_offset(gid),
2136 .help = "Run job with this group ID",
2137 },
2138 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002139 .name = NULL,
2140 },
2141};
2142
Jens Axboe17af15d2010-04-13 10:38:16 +02002143static void add_to_lopt(struct option *lopt, struct fio_option *o,
Steven Langde890a12011-11-09 14:03:34 +01002144 const char *name, int val)
Jens Axboe9f817362010-03-04 14:38:10 +01002145{
Jens Axboe17af15d2010-04-13 10:38:16 +02002146 lopt->name = (char *) name;
Steven Langde890a12011-11-09 14:03:34 +01002147 lopt->val = val;
Jens Axboe9f817362010-03-04 14:38:10 +01002148 if (o->type == FIO_OPT_STR_SET)
2149 lopt->has_arg = no_argument;
2150 else
2151 lopt->has_arg = required_argument;
2152}
2153
Steven Langde890a12011-11-09 14:03:34 +01002154static void options_to_lopts(struct fio_option *opts,
2155 struct option *long_options,
2156 int i, int option_type)
2157{
2158 struct fio_option *o = &opts[0];
2159 while (o->name) {
2160 add_to_lopt(&long_options[i], o, o->name, option_type);
2161 if (o->alias) {
2162 i++;
2163 add_to_lopt(&long_options[i], o, o->alias, option_type);
2164 }
2165
2166 i++;
2167 o++;
2168 assert(i < FIO_NR_OPTIONS);
2169 }
2170}
2171
2172void fio_options_set_ioengine_opts(struct option *long_options,
2173 struct thread_data *td)
2174{
2175 unsigned int i;
2176
2177 i = 0;
2178 while (long_options[i].name) {
2179 if (long_options[i].val == FIO_GETOPT_IOENGINE) {
2180 memset(&long_options[i], 0, sizeof(*long_options));
2181 break;
2182 }
2183 i++;
2184 }
2185
2186 /*
2187 * Just clear out the prior ioengine options.
2188 */
2189 if (!td || !td->eo)
2190 return;
2191
2192 options_to_lopts(td->io_ops->options, long_options, i,
2193 FIO_GETOPT_IOENGINE);
2194}
2195
Jens Axboe214e1ec2007-03-15 10:48:13 +01002196void fio_options_dup_and_init(struct option *long_options)
2197{
Jens Axboe214e1ec2007-03-15 10:48:13 +01002198 unsigned int i;
2199
2200 options_init(options);
2201
2202 i = 0;
2203 while (long_options[i].name)
2204 i++;
2205
Steven Langde890a12011-11-09 14:03:34 +01002206 options_to_lopts(options, long_options, i, FIO_GETOPT_JOB);
Jens Axboe214e1ec2007-03-15 10:48:13 +01002207}
2208
Jens Axboe74929ac2009-08-05 11:42:37 +02002209struct fio_keyword {
2210 const char *word;
2211 const char *desc;
2212 char *replace;
2213};
2214
2215static struct fio_keyword fio_keywords[] = {
2216 {
2217 .word = "$pagesize",
2218 .desc = "Page size in the system",
2219 },
2220 {
2221 .word = "$mb_memory",
2222 .desc = "Megabytes of memory online",
2223 },
2224 {
2225 .word = "$ncpus",
2226 .desc = "Number of CPUs online in the system",
2227 },
2228 {
2229 .word = NULL,
2230 },
2231};
2232
2233void fio_keywords_init(void)
2234{
Jens Axboe3b2e1462009-12-15 08:58:10 +01002235 unsigned long long mb_memory;
Jens Axboe74929ac2009-08-05 11:42:37 +02002236 char buf[128];
2237 long l;
2238
2239 sprintf(buf, "%lu", page_size);
2240 fio_keywords[0].replace = strdup(buf);
2241
Jens Axboe8eb016d2011-07-11 10:24:20 +02002242 mb_memory = os_phys_mem() / (1024 * 1024);
Jens Axboe3b2e1462009-12-15 08:58:10 +01002243 sprintf(buf, "%llu", mb_memory);
Jens Axboe74929ac2009-08-05 11:42:37 +02002244 fio_keywords[1].replace = strdup(buf);
2245
Jens Axboec00a2282011-07-08 20:56:06 +02002246 l = cpus_online();
Jens Axboe74929ac2009-08-05 11:42:37 +02002247 sprintf(buf, "%lu", l);
2248 fio_keywords[2].replace = strdup(buf);
2249}
2250
Jens Axboe892a6ff2009-11-13 12:19:49 +01002251#define BC_APP "bc"
2252
2253static char *bc_calc(char *str)
2254{
Steven Langd0c814e2011-10-28 08:37:13 +02002255 char buf[128], *tmp;
Jens Axboe892a6ff2009-11-13 12:19:49 +01002256 FILE *f;
2257 int ret;
2258
2259 /*
2260 * No math, just return string
2261 */
Steven Langd0c814e2011-10-28 08:37:13 +02002262 if ((!strchr(str, '+') && !strchr(str, '-') && !strchr(str, '*') &&
2263 !strchr(str, '/')) || strchr(str, '\''))
Jens Axboe892a6ff2009-11-13 12:19:49 +01002264 return str;
2265
2266 /*
2267 * Split option from value, we only need to calculate the value
2268 */
2269 tmp = strchr(str, '=');
2270 if (!tmp)
2271 return str;
2272
2273 tmp++;
Jens Axboe892a6ff2009-11-13 12:19:49 +01002274
Steven Langd0c814e2011-10-28 08:37:13 +02002275 /*
2276 * Prevent buffer overflows; such a case isn't reasonable anyway
2277 */
2278 if (strlen(str) >= 128 || strlen(tmp) > 100)
2279 return str;
Jens Axboe892a6ff2009-11-13 12:19:49 +01002280
2281 sprintf(buf, "which %s > /dev/null", BC_APP);
2282 if (system(buf)) {
2283 log_err("fio: bc is needed for performing math\n");
Jens Axboe892a6ff2009-11-13 12:19:49 +01002284 return NULL;
2285 }
2286
Steven Langd0c814e2011-10-28 08:37:13 +02002287 sprintf(buf, "echo '%s' | %s", tmp, BC_APP);
Jens Axboe892a6ff2009-11-13 12:19:49 +01002288 f = popen(buf, "r");
2289 if (!f) {
Jens Axboe892a6ff2009-11-13 12:19:49 +01002290 return NULL;
2291 }
2292
Steven Langd0c814e2011-10-28 08:37:13 +02002293 ret = fread(&buf[tmp - str], 1, 128 - (tmp - str), f);
Jens Axboe892a6ff2009-11-13 12:19:49 +01002294 if (ret <= 0) {
Jens Axboe892a6ff2009-11-13 12:19:49 +01002295 return NULL;
2296 }
2297
Jens Axboe892a6ff2009-11-13 12:19:49 +01002298 pclose(f);
Steven Langd0c814e2011-10-28 08:37:13 +02002299 buf[(tmp - str) + ret - 1] = '\0';
2300 memcpy(buf, str, tmp - str);
Jens Axboe892a6ff2009-11-13 12:19:49 +01002301 free(str);
Steven Langd0c814e2011-10-28 08:37:13 +02002302 return strdup(buf);
2303}
2304
2305/*
2306 * Return a copy of the input string with substrings of the form ${VARNAME}
2307 * substituted with the value of the environment variable VARNAME. The
2308 * substitution always occurs, even if VARNAME is empty or the corresponding
2309 * environment variable undefined.
2310 */
2311static char *option_dup_subs(const char *opt)
2312{
2313 char out[OPT_LEN_MAX+1];
2314 char in[OPT_LEN_MAX+1];
2315 char *outptr = out;
2316 char *inptr = in;
2317 char *ch1, *ch2, *env;
2318 ssize_t nchr = OPT_LEN_MAX;
2319 size_t envlen;
2320
2321 if (strlen(opt) + 1 > OPT_LEN_MAX) {
2322 log_err("OPT_LEN_MAX (%d) is too small\n", OPT_LEN_MAX);
2323 return NULL;
2324 }
2325
2326 in[OPT_LEN_MAX] = '\0';
2327 strncpy(in, opt, OPT_LEN_MAX);
2328
2329 while (*inptr && nchr > 0) {
2330 if (inptr[0] == '$' && inptr[1] == '{') {
2331 ch2 = strchr(inptr, '}');
2332 if (ch2 && inptr+1 < ch2) {
2333 ch1 = inptr+2;
2334 inptr = ch2+1;
2335 *ch2 = '\0';
2336
2337 env = getenv(ch1);
2338 if (env) {
2339 envlen = strlen(env);
2340 if (envlen <= nchr) {
2341 memcpy(outptr, env, envlen);
2342 outptr += envlen;
2343 nchr -= envlen;
2344 }
2345 }
2346
2347 continue;
2348 }
2349 }
2350
2351 *outptr++ = *inptr++;
2352 --nchr;
2353 }
2354
2355 *outptr = '\0';
2356 return strdup(out);
Jens Axboe892a6ff2009-11-13 12:19:49 +01002357}
2358
Jens Axboe74929ac2009-08-05 11:42:37 +02002359/*
2360 * Look for reserved variable names and replace them with real values
2361 */
2362static char *fio_keyword_replace(char *opt)
2363{
2364 char *s;
2365 int i;
Steven Langd0c814e2011-10-28 08:37:13 +02002366 int docalc = 0;
Jens Axboe74929ac2009-08-05 11:42:37 +02002367
2368 for (i = 0; fio_keywords[i].word != NULL; i++) {
2369 struct fio_keyword *kw = &fio_keywords[i];
2370
2371 while ((s = strstr(opt, kw->word)) != NULL) {
2372 char *new = malloc(strlen(opt) + 1);
2373 char *o_org = opt;
2374 int olen = s - opt;
2375 int len;
2376
2377 /*
2378 * Copy part of the string before the keyword and
2379 * sprintf() the replacement after it.
2380 */
2381 memcpy(new, opt, olen);
2382 len = sprintf(new + olen, "%s", kw->replace);
2383
2384 /*
2385 * If there's more in the original string, copy that
2386 * in too
2387 */
2388 opt += strlen(kw->word) + olen;
2389 if (strlen(opt))
2390 memcpy(new + olen + len, opt, opt - o_org - 1);
2391
2392 /*
2393 * replace opt and free the old opt
2394 */
2395 opt = new;
Steven Langd0c814e2011-10-28 08:37:13 +02002396 free(o_org);
Jens Axboe7a958bd2009-11-13 12:33:54 +01002397
Steven Langd0c814e2011-10-28 08:37:13 +02002398 docalc = 1;
Jens Axboe74929ac2009-08-05 11:42:37 +02002399 }
2400 }
2401
Steven Langd0c814e2011-10-28 08:37:13 +02002402 /*
2403 * Check for potential math and invoke bc, if possible
2404 */
2405 if (docalc)
2406 opt = bc_calc(opt);
2407
Jens Axboe7a958bd2009-11-13 12:33:54 +01002408 return opt;
Jens Axboe74929ac2009-08-05 11:42:37 +02002409}
2410
Steven Langd0c814e2011-10-28 08:37:13 +02002411static char **dup_and_sub_options(char **opts, int num_opts)
2412{
2413 int i;
2414 char **opts_copy = malloc(num_opts * sizeof(*opts));
2415 for (i = 0; i < num_opts; i++) {
2416 opts_copy[i] = option_dup_subs(opts[i]);
2417 if (!opts_copy[i])
2418 continue;
2419 opts_copy[i] = fio_keyword_replace(opts_copy[i]);
2420 }
2421 return opts_copy;
2422}
2423
Jens Axboe3b8b7132008-06-10 19:46:23 +02002424int fio_options_parse(struct thread_data *td, char **opts, int num_opts)
Jens Axboe214e1ec2007-03-15 10:48:13 +01002425{
Steven Langde890a12011-11-09 14:03:34 +01002426 int i, ret, unknown;
Steven Langd0c814e2011-10-28 08:37:13 +02002427 char **opts_copy;
Jens Axboe3b8b7132008-06-10 19:46:23 +02002428
2429 sort_options(opts, options, num_opts);
Steven Langd0c814e2011-10-28 08:37:13 +02002430 opts_copy = dup_and_sub_options(opts, num_opts);
Jens Axboe3b8b7132008-06-10 19:46:23 +02002431
Steven Langde890a12011-11-09 14:03:34 +01002432 for (ret = 0, i = 0, unknown = 0; i < num_opts; i++) {
2433 struct fio_option *o;
2434 int newret = parse_option(opts_copy[i], opts[i], options, &o,
2435 td);
Steven Langd0c814e2011-10-28 08:37:13 +02002436
Steven Langde890a12011-11-09 14:03:34 +01002437 if (opts_copy[i]) {
2438 if (newret && !o) {
2439 unknown++;
2440 continue;
2441 }
Steven Langd0c814e2011-10-28 08:37:13 +02002442 free(opts_copy[i]);
Steven Langde890a12011-11-09 14:03:34 +01002443 opts_copy[i] = NULL;
2444 }
2445
2446 ret |= newret;
2447 }
2448
2449 if (unknown) {
2450 ret |= ioengine_load(td);
2451 if (td->eo) {
2452 sort_options(opts_copy, td->io_ops->options, num_opts);
2453 opts = opts_copy;
2454 }
2455 for (i = 0; i < num_opts; i++) {
2456 struct fio_option *o = NULL;
2457 int newret = 1;
2458 if (!opts_copy[i])
2459 continue;
2460
2461 if (td->eo)
2462 newret = parse_option(opts_copy[i], opts[i],
2463 td->io_ops->options, &o,
2464 td->eo);
2465
2466 ret |= newret;
2467 if (!o)
2468 log_err("Bad option <%s>\n", opts[i]);
2469
2470 free(opts_copy[i]);
2471 opts_copy[i] = NULL;
2472 }
Jens Axboe74929ac2009-08-05 11:42:37 +02002473 }
Jens Axboe3b8b7132008-06-10 19:46:23 +02002474
Steven Langd0c814e2011-10-28 08:37:13 +02002475 free(opts_copy);
Jens Axboe3b8b7132008-06-10 19:46:23 +02002476 return ret;
Jens Axboe214e1ec2007-03-15 10:48:13 +01002477}
2478
2479int fio_cmd_option_parse(struct thread_data *td, const char *opt, char *val)
2480{
Jens Axboe07b32322010-03-05 09:48:44 +01002481 return parse_cmd_option(opt, val, options, td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01002482}
2483
Steven Langde890a12011-11-09 14:03:34 +01002484int fio_cmd_ioengine_option_parse(struct thread_data *td, const char *opt,
2485 char *val)
2486{
2487 return parse_cmd_option(opt, val, td->io_ops->options, td);
2488}
2489
Jens Axboe214e1ec2007-03-15 10:48:13 +01002490void fio_fill_default_options(struct thread_data *td)
2491{
2492 fill_default_options(td, options);
2493}
2494
2495int fio_show_option_help(const char *opt)
2496{
Jens Axboe07b32322010-03-05 09:48:44 +01002497 return show_cmd_help(options, opt);
Jens Axboe214e1ec2007-03-15 10:48:13 +01002498}
Jens Axboed23bb322007-03-23 15:57:56 +01002499
Steven Langde890a12011-11-09 14:03:34 +01002500void options_mem_dupe(void *data, struct fio_option *options)
2501{
2502 struct fio_option *o;
2503 char **ptr;
2504
2505 for (o = &options[0]; o->name; o++) {
2506 if (o->type != FIO_OPT_STR_STORE)
2507 continue;
2508
2509 ptr = td_var(data, o->off1);
2510 if (*ptr)
2511 *ptr = strdup(*ptr);
2512 }
2513}
2514
Jens Axboe7e356b22011-10-14 10:55:16 +02002515/*
2516 * dupe FIO_OPT_STR_STORE options
2517 */
Steven Langde890a12011-11-09 14:03:34 +01002518void fio_options_mem_dupe(struct thread_data *td)
Jens Axboed23bb322007-03-23 15:57:56 +01002519{
Steven Langde890a12011-11-09 14:03:34 +01002520 options_mem_dupe(&td->o, options);
Jens Axboe1647f592011-11-09 20:25:21 +01002521
2522 if (td->eo && td->io_ops) {
Steven Langde890a12011-11-09 14:03:34 +01002523 void *oldeo = td->eo;
Jens Axboe1647f592011-11-09 20:25:21 +01002524
Steven Langde890a12011-11-09 14:03:34 +01002525 td->eo = malloc(td->io_ops->option_struct_size);
2526 memcpy(td->eo, oldeo, td->io_ops->option_struct_size);
2527 options_mem_dupe(td->eo, td->io_ops->options);
Jens Axboed23bb322007-03-23 15:57:56 +01002528 }
2529}
2530
Jens Axboed6978a32009-07-18 21:04:09 +02002531unsigned int fio_get_kb_base(void *data)
2532{
2533 struct thread_data *td = data;
2534 unsigned int kb_base = 0;
2535
2536 if (td)
2537 kb_base = td->o.kb_base;
2538 if (!kb_base)
2539 kb_base = 1024;
2540
2541 return kb_base;
2542}
Jens Axboe9f988e22010-03-04 10:42:38 +01002543
Jens Axboe07b32322010-03-05 09:48:44 +01002544int add_option(struct fio_option *o)
Jens Axboe9f988e22010-03-04 10:42:38 +01002545{
Jens Axboe07b32322010-03-05 09:48:44 +01002546 struct fio_option *__o;
2547 int opt_index = 0;
2548
2549 __o = options;
2550 while (__o->name) {
2551 opt_index++;
2552 __o++;
2553 }
2554
2555 memcpy(&options[opt_index], o, sizeof(*o));
2556 return 0;
Jens Axboe9f988e22010-03-04 10:42:38 +01002557}
Jens Axboee2de69d2010-03-04 14:05:48 +01002558
Jens Axboe07b32322010-03-05 09:48:44 +01002559void invalidate_profile_options(const char *prof_name)
Jens Axboee2de69d2010-03-04 14:05:48 +01002560{
Jens Axboe07b32322010-03-05 09:48:44 +01002561 struct fio_option *o;
Jens Axboee2de69d2010-03-04 14:05:48 +01002562
Jens Axboe07b32322010-03-05 09:48:44 +01002563 o = options;
2564 while (o->name) {
2565 if (o->prof_name && !strcmp(o->prof_name, prof_name)) {
2566 o->type = FIO_OPT_INVALID;
2567 o->prof_name = NULL;
2568 }
2569 o++;
Jens Axboee2de69d2010-03-04 14:05:48 +01002570 }
2571}
Jens Axboef5b6bb82010-03-05 10:09:59 +01002572
2573void add_opt_posval(const char *optname, const char *ival, const char *help)
2574{
2575 struct fio_option *o;
2576 unsigned int i;
2577
2578 o = find_option(options, optname);
2579 if (!o)
2580 return;
2581
2582 for (i = 0; i < PARSE_MAX_VP; i++) {
2583 if (o->posval[i].ival)
2584 continue;
2585
2586 o->posval[i].ival = ival;
2587 o->posval[i].help = help;
2588 break;
2589 }
2590}
2591
2592void del_opt_posval(const char *optname, const char *ival)
2593{
2594 struct fio_option *o;
2595 unsigned int i;
2596
2597 o = find_option(options, optname);
2598 if (!o)
2599 return;
2600
2601 for (i = 0; i < PARSE_MAX_VP; i++) {
2602 if (!o->posval[i].ival)
2603 continue;
2604 if (strcmp(o->posval[i].ival, ival))
2605 continue;
2606
2607 o->posval[i].ival = NULL;
2608 o->posval[i].help = NULL;
2609 }
2610}
Jens Axboe7e356b22011-10-14 10:55:16 +02002611
2612void fio_options_free(struct thread_data *td)
2613{
2614 options_free(options, td);
Steven Langde890a12011-11-09 14:03:34 +01002615 if (td->eo && td->io_ops && td->io_ops->options) {
2616 options_free(td->io_ops->options, td->eo);
2617 free(td->eo);
2618 td->eo = NULL;
2619 }
Jens Axboe7e356b22011-10-14 10:55:16 +02002620}