blob: 923076752b6f6c03b979e52682c5de3c4dbf518f [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>
6#include <getopt.h>
7#include <assert.h>
Jens Axboe921c7662008-03-26 09:17:55 +01008#include <libgen.h>
Jens Axboe5921e802008-05-30 15:02:38 +02009#include <fcntl.h>
10#include <sys/types.h>
11#include <sys/stat.h>
Jens Axboe214e1ec2007-03-15 10:48:13 +010012
13#include "fio.h"
Jens Axboe4f5af7b2009-06-03 08:45:40 +020014#include "verify.h"
Jens Axboe214e1ec2007-03-15 10:48:13 +010015#include "parse.h"
Jens Axboeeef32352008-06-02 13:31:26 +020016#include "lib/fls.h"
Jens Axboe9f988e22010-03-04 10:42:38 +010017#include "options.h"
Jens Axboe214e1ec2007-03-15 10:48:13 +010018
Jens Axboe5d7c5d32010-06-21 15:08:17 +020019#include "crc/crc32c.h"
20
Jens Axboe214e1ec2007-03-15 10:48:13 +010021/*
22 * Check if mmap/mmaphuge has a :/foo/bar/file at the end. If so, return that.
23 */
24static char *get_opt_postfix(const char *str)
25{
26 char *p = strstr(str, ":");
27
28 if (!p)
29 return NULL;
30
31 p++;
32 strip_blank_front(&p);
33 strip_blank_end(p);
34 return strdup(p);
35}
36
Radha Ramachandran0e92f872009-10-27 20:14:27 +010037static int converthexchartoint(char a)
38{
39 int base;
40
41 switch(a) {
42 case '0'...'9':
43 base = '0';
44 break;
45 case 'A'...'F':
46 base = 'A' - 10;
47 break;
48 case 'a'...'f':
49 base = 'a' - 10;
50 break;
51 default:
52 base = 0;
53 }
54 return (a - base);
55}
56
Jens Axboe564ca972007-12-14 12:21:19 +010057static int bs_cmp(const void *p1, const void *p2)
58{
59 const struct bssplit *bsp1 = p1;
60 const struct bssplit *bsp2 = p2;
61
62 return bsp1->perc < bsp2->perc;
63}
64
Jens Axboe720e84a2009-04-21 08:29:55 +020065static int bssplit_ddir(struct thread_data *td, int ddir, char *str)
Jens Axboe564ca972007-12-14 12:21:19 +010066{
Jens Axboe720e84a2009-04-21 08:29:55 +020067 struct bssplit *bssplit;
Jens Axboe564ca972007-12-14 12:21:19 +010068 unsigned int i, perc, perc_missing;
69 unsigned int max_bs, min_bs;
70 long long val;
Jens Axboe720e84a2009-04-21 08:29:55 +020071 char *fname;
Jens Axboe564ca972007-12-14 12:21:19 +010072
Jens Axboe720e84a2009-04-21 08:29:55 +020073 td->o.bssplit_nr[ddir] = 4;
74 bssplit = malloc(4 * sizeof(struct bssplit));
Jens Axboe564ca972007-12-14 12:21:19 +010075
76 i = 0;
77 max_bs = 0;
78 min_bs = -1;
79 while ((fname = strsep(&str, ":")) != NULL) {
80 char *perc_str;
81
82 if (!strlen(fname))
83 break;
84
85 /*
86 * grow struct buffer, if needed
87 */
Jens Axboe720e84a2009-04-21 08:29:55 +020088 if (i == td->o.bssplit_nr[ddir]) {
89 td->o.bssplit_nr[ddir] <<= 1;
90 bssplit = realloc(bssplit, td->o.bssplit_nr[ddir]
Jens Axboe5ec10ea2008-03-06 15:42:00 +010091 * sizeof(struct bssplit));
Jens Axboe564ca972007-12-14 12:21:19 +010092 }
93
94 perc_str = strstr(fname, "/");
95 if (perc_str) {
96 *perc_str = '\0';
97 perc_str++;
98 perc = atoi(perc_str);
99 if (perc > 100)
100 perc = 100;
101 else if (!perc)
102 perc = -1;
103 } else
104 perc = -1;
105
Kenneth Watersdf9cf922009-10-15 07:08:48 +0200106 if (str_to_decimal(fname, &val, 1, td)) {
Jens Axboe564ca972007-12-14 12:21:19 +0100107 log_err("fio: bssplit conversion failed\n");
108 free(td->o.bssplit);
109 return 1;
110 }
111
112 if (val > max_bs)
113 max_bs = val;
114 if (val < min_bs)
115 min_bs = val;
116
Jens Axboe720e84a2009-04-21 08:29:55 +0200117 bssplit[i].bs = val;
118 bssplit[i].perc = perc;
Jens Axboe564ca972007-12-14 12:21:19 +0100119 i++;
120 }
121
Jens Axboe720e84a2009-04-21 08:29:55 +0200122 td->o.bssplit_nr[ddir] = i;
Jens Axboe564ca972007-12-14 12:21:19 +0100123
124 /*
125 * Now check if the percentages add up, and how much is missing
126 */
127 perc = perc_missing = 0;
Jens Axboe720e84a2009-04-21 08:29:55 +0200128 for (i = 0; i < td->o.bssplit_nr[ddir]; i++) {
129 struct bssplit *bsp = &bssplit[i];
Jens Axboe564ca972007-12-14 12:21:19 +0100130
131 if (bsp->perc == (unsigned char) -1)
132 perc_missing++;
133 else
134 perc += bsp->perc;
135 }
136
137 if (perc > 100) {
138 log_err("fio: bssplit percentages add to more than 100%%\n");
Jens Axboe720e84a2009-04-21 08:29:55 +0200139 free(bssplit);
Jens Axboe564ca972007-12-14 12:21:19 +0100140 return 1;
141 }
142 /*
143 * If values didn't have a percentage set, divide the remains between
144 * them.
145 */
146 if (perc_missing) {
Jens Axboe720e84a2009-04-21 08:29:55 +0200147 for (i = 0; i < td->o.bssplit_nr[ddir]; i++) {
148 struct bssplit *bsp = &bssplit[i];
Jens Axboe564ca972007-12-14 12:21:19 +0100149
150 if (bsp->perc == (unsigned char) -1)
151 bsp->perc = (100 - perc) / perc_missing;
152 }
153 }
154
Jens Axboe720e84a2009-04-21 08:29:55 +0200155 td->o.min_bs[ddir] = min_bs;
156 td->o.max_bs[ddir] = max_bs;
Jens Axboe564ca972007-12-14 12:21:19 +0100157
158 /*
159 * now sort based on percentages, for ease of lookup
160 */
Jens Axboe720e84a2009-04-21 08:29:55 +0200161 qsort(bssplit, td->o.bssplit_nr[ddir], sizeof(struct bssplit), bs_cmp);
162 td->o.bssplit[ddir] = bssplit;
163 return 0;
164
165}
166
167static int str_bssplit_cb(void *data, const char *input)
168{
169 struct thread_data *td = data;
170 char *str, *p, *odir;
171 int ret = 0;
172
173 p = str = strdup(input);
174
175 strip_blank_front(&str);
176 strip_blank_end(str);
177
178 odir = strchr(str, ',');
179 if (odir) {
180 ret = bssplit_ddir(td, DDIR_WRITE, odir + 1);
181 if (!ret) {
182 *odir = '\0';
183 ret = bssplit_ddir(td, DDIR_READ, str);
184 }
185 } else {
186 char *op;
187
188 op = strdup(str);
189
190 ret = bssplit_ddir(td, DDIR_READ, str);
191 if (!ret)
192 ret = bssplit_ddir(td, DDIR_WRITE, op);
193
194 free(op);
195 }
Jens Axboe564ca972007-12-14 12:21:19 +0100196
197 free(p);
Jens Axboe720e84a2009-04-21 08:29:55 +0200198 return ret;
Jens Axboe564ca972007-12-14 12:21:19 +0100199}
200
Jens Axboe211097b2007-03-22 18:56:45 +0100201static int str_rw_cb(void *data, const char *str)
202{
203 struct thread_data *td = data;
204 char *nr = get_opt_postfix(str);
205
Jens Axboefafdba32007-03-26 10:09:12 +0200206 td->o.ddir_nr = 1;
Jens Axboe182ec6e2008-11-14 13:06:06 +0100207 if (nr) {
Jens Axboe211097b2007-03-22 18:56:45 +0100208 td->o.ddir_nr = atoi(nr);
Jens Axboe182ec6e2008-11-14 13:06:06 +0100209 free(nr);
210 }
Jens Axboe211097b2007-03-22 18:56:45 +0100211
Jens Axboe211097b2007-03-22 18:56:45 +0100212 return 0;
213}
214
Jens Axboe214e1ec2007-03-15 10:48:13 +0100215static int str_mem_cb(void *data, const char *mem)
216{
217 struct thread_data *td = data;
218
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100219 if (td->o.mem_type == MEM_MMAPHUGE || td->o.mem_type == MEM_MMAP) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100220 td->mmapfile = get_opt_postfix(mem);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100221 if (td->o.mem_type == MEM_MMAPHUGE && !td->mmapfile) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100222 log_err("fio: mmaphuge:/path/to/file\n");
223 return 1;
224 }
225 }
226
227 return 0;
228}
229
Jens Axboe5d7c5d32010-06-21 15:08:17 +0200230static int str_verify_cb(void *data, const char *mem)
231{
232 struct thread_data *td = data;
233
234 if (td->o.verify != VERIFY_CRC32C_INTEL)
235 return 0;
236
237 if (!crc32c_intel_works()) {
238 log_info("fio: System does not support hw accelerated crc32c. Falling back to sw crc32c.\n");
239 td->o.verify = VERIFY_CRC32C;
240 }
241
242 return 0;
243}
244
Jens Axboec223da82010-03-24 13:23:53 +0100245static int fio_clock_source_cb(void *data, const char *str)
246{
247 struct thread_data *td = data;
248
249 fio_clock_source = td->o.clocksource;
250 fio_time_init();
251 return 0;
252}
253
Jens Axboe214e1ec2007-03-15 10:48:13 +0100254static int str_lockmem_cb(void fio_unused *data, unsigned long *val)
255{
256 mlock_size = *val;
257 return 0;
258}
259
Jens Axboecb499fc2008-05-28 10:33:32 +0200260static int str_rwmix_read_cb(void *data, unsigned int *val)
261{
262 struct thread_data *td = data;
263
264 td->o.rwmix[DDIR_READ] = *val;
265 td->o.rwmix[DDIR_WRITE] = 100 - *val;
266 return 0;
267}
268
269static int str_rwmix_write_cb(void *data, unsigned int *val)
270{
271 struct thread_data *td = data;
272
273 td->o.rwmix[DDIR_WRITE] = *val;
274 td->o.rwmix[DDIR_READ] = 100 - *val;
275 return 0;
276}
277
Jens Axboe214e1ec2007-03-15 10:48:13 +0100278#ifdef FIO_HAVE_IOPRIO
279static int str_prioclass_cb(void *data, unsigned int *val)
280{
281 struct thread_data *td = data;
Jens Axboe6cefbe32007-04-18 12:46:56 +0200282 unsigned short mask;
283
284 /*
285 * mask off old class bits, str_prio_cb() may have set a default class
286 */
287 mask = (1 << IOPRIO_CLASS_SHIFT) - 1;
288 td->ioprio &= mask;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100289
290 td->ioprio |= *val << IOPRIO_CLASS_SHIFT;
Jens Axboeac684782007-11-08 08:29:07 +0100291 td->ioprio_set = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100292 return 0;
293}
294
295static int str_prio_cb(void *data, unsigned int *val)
296{
297 struct thread_data *td = data;
298
299 td->ioprio |= *val;
Jens Axboe6cefbe32007-04-18 12:46:56 +0200300
301 /*
302 * If no class is set, assume BE
303 */
304 if ((td->ioprio >> IOPRIO_CLASS_SHIFT) == 0)
305 td->ioprio |= IOPRIO_CLASS_BE << IOPRIO_CLASS_SHIFT;
306
Jens Axboeac684782007-11-08 08:29:07 +0100307 td->ioprio_set = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100308 return 0;
309}
310#endif
311
312static int str_exitall_cb(void)
313{
314 exitall_on_terminate = 1;
315 return 0;
316}
317
Jens Axboe214e1ec2007-03-15 10:48:13 +0100318#ifdef FIO_HAVE_CPU_AFFINITY
Jens Axboe214e1ec2007-03-15 10:48:13 +0100319static int str_cpumask_cb(void *data, unsigned int *val)
320{
321 struct thread_data *td = data;
Jens Axboed2e268b2007-06-15 10:33:49 +0200322 unsigned int i;
Jens Axboeb03daaf2008-12-08 20:31:43 +0100323 long max_cpu;
Jens Axboed2ce18b2008-12-12 20:51:40 +0100324 int ret;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100325
Jens Axboed2ce18b2008-12-12 20:51:40 +0100326 ret = fio_cpuset_init(&td->o.cpumask);
327 if (ret < 0) {
328 log_err("fio: cpuset_init failed\n");
329 td_verror(td, ret, "fio_cpuset_init");
330 return 1;
331 }
332
Jens Axboeb03daaf2008-12-08 20:31:43 +0100333 max_cpu = sysconf(_SC_NPROCESSORS_ONLN);
Jens Axboed2e268b2007-06-15 10:33:49 +0200334
Jens Axboe62a72732008-12-08 11:37:01 +0100335 for (i = 0; i < sizeof(int) * 8; i++) {
336 if ((1 << i) & *val) {
Jens Axboeb03daaf2008-12-08 20:31:43 +0100337 if (i > max_cpu) {
338 log_err("fio: CPU %d too large (max=%ld)\n", i,
339 max_cpu);
340 return 1;
341 }
Jens Axboe62a72732008-12-08 11:37:01 +0100342 dprint(FD_PARSE, "set cpu allowed %d\n", i);
Jens Axboe6d459ee2008-12-12 20:02:58 +0100343 fio_cpu_set(&td->o.cpumask, i);
Jens Axboe62a72732008-12-08 11:37:01 +0100344 }
345 }
Jens Axboed2e268b2007-06-15 10:33:49 +0200346
Jens Axboe375b2692007-05-22 09:13:02 +0200347 td->o.cpumask_set = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100348 return 0;
349}
350
Jens Axboee8462bd2009-07-06 12:59:04 +0200351static int set_cpus_allowed(struct thread_data *td, os_cpu_mask_t *mask,
352 const char *input)
Jens Axboed2e268b2007-06-15 10:33:49 +0200353{
Jens Axboed2e268b2007-06-15 10:33:49 +0200354 char *cpu, *str, *p;
Jens Axboeb03daaf2008-12-08 20:31:43 +0100355 long max_cpu;
Jens Axboe19608d62008-12-08 15:03:12 +0100356 int ret = 0;
Jens Axboed2e268b2007-06-15 10:33:49 +0200357
Jens Axboee8462bd2009-07-06 12:59:04 +0200358 ret = fio_cpuset_init(mask);
Jens Axboed2ce18b2008-12-12 20:51:40 +0100359 if (ret < 0) {
360 log_err("fio: cpuset_init failed\n");
361 td_verror(td, ret, "fio_cpuset_init");
362 return 1;
363 }
Jens Axboed2e268b2007-06-15 10:33:49 +0200364
365 p = str = strdup(input);
366
367 strip_blank_front(&str);
368 strip_blank_end(str);
369
Jens Axboeb03daaf2008-12-08 20:31:43 +0100370 max_cpu = sysconf(_SC_NPROCESSORS_ONLN);
371
Jens Axboed2e268b2007-06-15 10:33:49 +0200372 while ((cpu = strsep(&str, ",")) != NULL) {
Jens Axboe62a72732008-12-08 11:37:01 +0100373 char *str2, *cpu2;
374 int icpu, icpu2;
375
Jens Axboed2e268b2007-06-15 10:33:49 +0200376 if (!strlen(cpu))
377 break;
Jens Axboe62a72732008-12-08 11:37:01 +0100378
379 str2 = cpu;
380 icpu2 = -1;
381 while ((cpu2 = strsep(&str2, "-")) != NULL) {
382 if (!strlen(cpu2))
383 break;
384
385 icpu2 = atoi(cpu2);
386 }
387
388 icpu = atoi(cpu);
389 if (icpu2 == -1)
390 icpu2 = icpu;
391 while (icpu <= icpu2) {
Jens Axboe6d459ee2008-12-12 20:02:58 +0100392 if (icpu >= FIO_MAX_CPUS) {
Jens Axboe19608d62008-12-08 15:03:12 +0100393 log_err("fio: your OS only supports up to"
Jens Axboe6d459ee2008-12-12 20:02:58 +0100394 " %d CPUs\n", (int) FIO_MAX_CPUS);
Jens Axboe19608d62008-12-08 15:03:12 +0100395 ret = 1;
396 break;
397 }
Jens Axboeb03daaf2008-12-08 20:31:43 +0100398 if (icpu > max_cpu) {
399 log_err("fio: CPU %d too large (max=%ld)\n",
400 icpu, max_cpu);
401 ret = 1;
402 break;
403 }
Jens Axboe0b9d69e2009-09-11 22:29:54 +0200404
Jens Axboe62a72732008-12-08 11:37:01 +0100405 dprint(FD_PARSE, "set cpu allowed %d\n", icpu);
Jens Axboee8462bd2009-07-06 12:59:04 +0200406 fio_cpu_set(mask, icpu);
Jens Axboe62a72732008-12-08 11:37:01 +0100407 icpu++;
408 }
Jens Axboe19608d62008-12-08 15:03:12 +0100409 if (ret)
410 break;
Jens Axboed2e268b2007-06-15 10:33:49 +0200411 }
412
413 free(p);
Jens Axboe19608d62008-12-08 15:03:12 +0100414 if (!ret)
415 td->o.cpumask_set = 1;
416 return ret;
Jens Axboed2e268b2007-06-15 10:33:49 +0200417}
Jens Axboee8462bd2009-07-06 12:59:04 +0200418
419static int str_cpus_allowed_cb(void *data, const char *input)
420{
421 struct thread_data *td = data;
422 int ret;
423
424 ret = set_cpus_allowed(td, &td->o.cpumask, input);
425 if (!ret)
426 td->o.cpumask_set = 1;
427
428 return ret;
429}
430
431static int str_verify_cpus_allowed_cb(void *data, const char *input)
432{
433 struct thread_data *td = data;
434 int ret;
435
436 ret = set_cpus_allowed(td, &td->o.verify_cpumask, input);
437 if (!ret)
438 td->o.verify_cpumask_set = 1;
439
440 return ret;
441}
Jens Axboed2e268b2007-06-15 10:33:49 +0200442#endif
443
Jens Axboe214e1ec2007-03-15 10:48:13 +0100444static int str_fst_cb(void *data, const char *str)
445{
446 struct thread_data *td = data;
447 char *nr = get_opt_postfix(str);
448
449 td->file_service_nr = 1;
Jens Axboe182ec6e2008-11-14 13:06:06 +0100450 if (nr) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100451 td->file_service_nr = atoi(nr);
Jens Axboe182ec6e2008-11-14 13:06:06 +0100452 free(nr);
453 }
Jens Axboe214e1ec2007-03-15 10:48:13 +0100454
455 return 0;
456}
457
Jens Axboe3ae06372010-03-19 19:17:15 +0100458#ifdef FIO_HAVE_SYNC_FILE_RANGE
Jens Axboe44f29692010-03-09 20:09:44 +0100459static int str_sfr_cb(void *data, const char *str)
460{
461 struct thread_data *td = data;
462 char *nr = get_opt_postfix(str);
463
464 td->sync_file_range_nr = 1;
465 if (nr) {
466 td->sync_file_range_nr = atoi(nr);
467 free(nr);
468 }
469
470 return 0;
471}
Jens Axboe3ae06372010-03-19 19:17:15 +0100472#endif
Jens Axboe44f29692010-03-09 20:09:44 +0100473
Jens Axboe921c7662008-03-26 09:17:55 +0100474static int check_dir(struct thread_data *td, char *fname)
475{
476 char file[PATH_MAX], *dir;
Jens Axboebc838912008-04-07 09:00:54 +0200477 int elen = 0;
Jens Axboe921c7662008-03-26 09:17:55 +0100478
Jens Axboebc838912008-04-07 09:00:54 +0200479 if (td->o.directory) {
480 strcpy(file, td->o.directory);
Jens Axboefcef0b32008-05-26 14:53:24 +0200481 strcat(file, "/");
Jens Axboebc838912008-04-07 09:00:54 +0200482 elen = strlen(file);
483 }
484
Jens Axboefcef0b32008-05-26 14:53:24 +0200485 sprintf(file + elen, "%s", fname);
Jens Axboe921c7662008-03-26 09:17:55 +0100486 dir = dirname(file);
487
Jens Axboefcef0b32008-05-26 14:53:24 +0200488#if 0
489 {
490 struct stat sb;
491 /*
492 * We can't do this on FIO_DISKLESSIO engines. The engine isn't loaded
493 * yet, so we can't do this check right here...
494 */
Jens Axboe921c7662008-03-26 09:17:55 +0100495 if (lstat(dir, &sb) < 0) {
496 int ret = errno;
497
498 log_err("fio: %s is not a directory\n", dir);
499 td_verror(td, ret, "lstat");
500 return 1;
501 }
502
503 if (!S_ISDIR(sb.st_mode)) {
504 log_err("fio: %s is not a directory\n", dir);
505 return 1;
506 }
Jens Axboefcef0b32008-05-26 14:53:24 +0200507 }
508#endif
Jens Axboe921c7662008-03-26 09:17:55 +0100509
510 return 0;
511}
512
Jens Axboe8e827d32009-08-04 09:51:48 +0200513/*
514 * Return next file in the string. Files are separated with ':'. If the ':'
515 * is escaped with a '\', then that ':' is part of the filename and does not
516 * indicate a new file.
517 */
518static char *get_next_file_name(char **ptr)
519{
520 char *str = *ptr;
521 char *p, *start;
522
523 if (!str || !strlen(str))
524 return NULL;
525
526 start = str;
527 do {
528 /*
529 * No colon, we are done
530 */
531 p = strchr(str, ':');
532 if (!p) {
533 *ptr = NULL;
534 break;
535 }
536
537 /*
538 * We got a colon, but it's the first character. Skip and
539 * continue
540 */
541 if (p == start) {
542 str = ++start;
543 continue;
544 }
545
546 if (*(p - 1) != '\\') {
547 *p = '\0';
548 *ptr = p + 1;
549 break;
550 }
551
552 memmove(p - 1, p, strlen(p) + 1);
553 str = p;
554 } while (1);
555
556 return start;
557}
558
Jens Axboe214e1ec2007-03-15 10:48:13 +0100559static int str_filename_cb(void *data, const char *input)
560{
561 struct thread_data *td = data;
562 char *fname, *str, *p;
563
564 p = str = strdup(input);
565
566 strip_blank_front(&str);
567 strip_blank_end(str);
568
569 if (!td->files_index)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100570 td->o.nr_files = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100571
Jens Axboe8e827d32009-08-04 09:51:48 +0200572 while ((fname = get_next_file_name(&str)) != NULL) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100573 if (!strlen(fname))
574 break;
Jens Axboe921c7662008-03-26 09:17:55 +0100575 if (check_dir(td, fname)) {
576 free(p);
577 return 1;
578 }
Jens Axboe214e1ec2007-03-15 10:48:13 +0100579 add_file(td, fname);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100580 td->o.nr_files++;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100581 }
582
583 free(p);
584 return 0;
585}
586
587static int str_directory_cb(void *data, const char fio_unused *str)
588{
589 struct thread_data *td = data;
590 struct stat sb;
591
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100592 if (lstat(td->o.directory, &sb) < 0) {
Jens Axboe921c7662008-03-26 09:17:55 +0100593 int ret = errno;
594
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100595 log_err("fio: %s is not a directory\n", td->o.directory);
Jens Axboe921c7662008-03-26 09:17:55 +0100596 td_verror(td, ret, "lstat");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100597 return 1;
598 }
599 if (!S_ISDIR(sb.st_mode)) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100600 log_err("fio: %s is not a directory\n", td->o.directory);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100601 return 1;
602 }
603
604 return 0;
605}
606
607static int str_opendir_cb(void *data, const char fio_unused *str)
608{
609 struct thread_data *td = data;
610
611 if (!td->files_index)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100612 td->o.nr_files = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100613
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100614 return add_dir_files(td, td->o.opendir);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100615}
616
Jens Axboea59e1702007-07-30 08:53:27 +0200617static int str_verify_offset_cb(void *data, unsigned int *off)
Shawn Lewis546a9142007-07-28 21:11:37 +0200618{
619 struct thread_data *td = data;
Jens Axboea59e1702007-07-30 08:53:27 +0200620
Shawn Lewis546a9142007-07-28 21:11:37 +0200621 if (*off && *off < sizeof(struct verify_header)) {
Jens Axboea59e1702007-07-30 08:53:27 +0200622 log_err("fio: verify_offset too small\n");
Shawn Lewis546a9142007-07-28 21:11:37 +0200623 return 1;
624 }
Jens Axboea59e1702007-07-30 08:53:27 +0200625
626 td->o.verify_offset = *off;
Shawn Lewis546a9142007-07-28 21:11:37 +0200627 return 0;
628}
629
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100630static int str_verify_pattern_cb(void *data, const char *input)
Jens Axboe90059d62007-07-30 09:33:12 +0200631{
632 struct thread_data *td = data;
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100633 long off;
634 int i = 0, j = 0, len, k, base = 10;
635 char* loc1, * loc2;
Jens Axboe90059d62007-07-30 09:33:12 +0200636
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100637 loc1 = strstr(input, "0x");
638 loc2 = strstr(input, "0X");
639 if (loc1 || loc2)
640 base = 16;
641 off = strtol(input, NULL, base);
642 if (off != LONG_MAX || errno != ERANGE) {
643 while (off) {
644 td->o.verify_pattern[i] = off & 0xff;
645 off >>= 8;
646 i++;
647 }
648 } else {
649 len = strlen(input);
650 k = len - 1;
651 if (base == 16) {
652 if (loc1)
653 j = loc1 - input + 2;
654 else
655 j = loc2 - input + 2;
656 } else
657 return 1;
658 if (len - j < MAX_PATTERN_SIZE * 2) {
659 while (k >= j) {
660 off = converthexchartoint(input[k--]);
661 if (k >= j)
662 off += (converthexchartoint(input[k--])
663 * 16);
664 td->o.verify_pattern[i++] = (char) off;
665 }
666 }
667 }
668 td->o.verify_pattern_bytes = i;
Jens Axboe90059d62007-07-30 09:33:12 +0200669 return 0;
670}
Jens Axboe214e1ec2007-03-15 10:48:13 +0100671
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100672static int str_lockfile_cb(void *data, const char *str)
673{
674 struct thread_data *td = data;
675 char *nr = get_opt_postfix(str);
676
677 td->o.lockfile_batch = 1;
Jens Axboe182ec6e2008-11-14 13:06:06 +0100678 if (nr) {
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100679 td->o.lockfile_batch = atoi(nr);
Jens Axboe182ec6e2008-11-14 13:06:06 +0100680 free(nr);
681 }
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100682
683 return 0;
684}
685
Jens Axboee3cedca2008-11-19 19:57:52 +0100686static int str_write_bw_log_cb(void *data, const char *str)
687{
688 struct thread_data *td = data;
689
690 if (str)
691 td->o.bw_log_file = strdup(str);
692
693 td->o.write_bw_log = 1;
694 return 0;
695}
696
697static int str_write_lat_log_cb(void *data, const char *str)
698{
699 struct thread_data *td = data;
700
701 if (str)
702 td->o.lat_log_file = strdup(str);
703
704 td->o.write_lat_log = 1;
705 return 0;
706}
707
Jens Axboe993bf482008-11-14 13:04:53 +0100708static int str_gtod_reduce_cb(void *data, int *il)
709{
710 struct thread_data *td = data;
711 int val = *il;
712
Jens Axboe02af0982010-06-24 09:59:34 +0200713 td->o.disable_lat = !!val;
Jens Axboe993bf482008-11-14 13:04:53 +0100714 td->o.disable_clat = !!val;
715 td->o.disable_slat = !!val;
716 td->o.disable_bw = !!val;
717 if (val)
718 td->tv_cache_mask = 63;
719
720 return 0;
721}
722
Jens Axboebe4ecfd2008-12-08 14:10:52 +0100723static int str_gtod_cpu_cb(void *data, int *il)
724{
725 struct thread_data *td = data;
726 int val = *il;
727
728 td->o.gtod_cpu = val;
729 td->o.gtod_offload = 1;
730 return 0;
731}
732
Jens Axboe896cac22009-07-01 10:38:35 +0200733static int rw_verify(struct fio_option *o, void *data)
734{
735 struct thread_data *td = data;
736
737 if (read_only && td_write(td)) {
738 log_err("fio: job <%s> has write bit set, but fio is in"
739 " read-only mode\n", td->o.name);
740 return 1;
741 }
742
743 return 0;
744}
745
Jens Axboe276ca4f2009-07-01 10:43:05 +0200746static int gtod_cpu_verify(struct fio_option *o, void *data)
Jens Axboe29d43ff2009-07-01 10:42:18 +0200747{
Jens Axboe276ca4f2009-07-01 10:43:05 +0200748#ifndef FIO_HAVE_CPU_AFFINITY
Jens Axboe29d43ff2009-07-01 10:42:18 +0200749 struct thread_data *td = data;
750
Jens Axboe29d43ff2009-07-01 10:42:18 +0200751 if (td->o.gtod_cpu) {
752 log_err("fio: platform must support CPU affinity for"
753 "gettimeofday() offloading\n");
754 return 1;
755 }
756#endif
757
758 return 0;
759}
760
Jens Axboe90fef2d2009-07-17 22:33:32 +0200761static int kb_base_verify(struct fio_option *o, void *data)
762{
763 struct thread_data *td = data;
764
765 if (td->o.kb_base != 1024 && td->o.kb_base != 1000) {
766 log_err("fio: kb_base set to nonsensical value: %u\n",
767 td->o.kb_base);
768 return 1;
769 }
770
771 return 0;
772}
773
Jens Axboe214e1ec2007-03-15 10:48:13 +0100774#define __stringify_1(x) #x
775#define __stringify(x) __stringify_1(x)
776
777/*
778 * Map of job/command line options
779 */
Jens Axboe07b32322010-03-05 09:48:44 +0100780static struct fio_option options[FIO_MAX_OPTS] = {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100781 {
782 .name = "description",
783 .type = FIO_OPT_STR_STORE,
784 .off1 = td_var_offset(description),
785 .help = "Text job description",
786 },
787 {
788 .name = "name",
789 .type = FIO_OPT_STR_STORE,
790 .off1 = td_var_offset(name),
791 .help = "Name of this job",
792 },
793 {
794 .name = "directory",
795 .type = FIO_OPT_STR_STORE,
796 .off1 = td_var_offset(directory),
797 .cb = str_directory_cb,
798 .help = "Directory to store files in",
799 },
800 {
801 .name = "filename",
802 .type = FIO_OPT_STR_STORE,
803 .off1 = td_var_offset(filename),
804 .cb = str_filename_cb,
Jens Axboef0d524b2009-04-27 08:00:48 +0200805 .prio = -1, /* must come after "directory" */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100806 .help = "File(s) to use for the workload",
807 },
808 {
Jens Axboe90fef2d2009-07-17 22:33:32 +0200809 .name = "kb_base",
810 .type = FIO_OPT_INT,
811 .off1 = td_var_offset(kb_base),
Jens Axboe90fef2d2009-07-17 22:33:32 +0200812 .verify = kb_base_verify,
Jens Axboea639f0b2009-07-18 08:25:35 +0200813 .prio = 1,
Jens Axboe90fef2d2009-07-17 22:33:32 +0200814 .def = "1024",
Jens Axboea639f0b2009-07-18 08:25:35 +0200815 .help = "How many bytes per KB for reporting (1000 or 1024)",
Jens Axboe90fef2d2009-07-17 22:33:32 +0200816 },
817 {
Jens Axboe29c13492008-03-01 19:25:20 +0100818 .name = "lockfile",
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100819 .type = FIO_OPT_STR,
820 .cb = str_lockfile_cb,
821 .off1 = td_var_offset(file_lock_mode),
Jens Axboe29c13492008-03-01 19:25:20 +0100822 .help = "Lock file when doing IO to it",
823 .parent = "filename",
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100824 .def = "none",
825 .posval = {
826 { .ival = "none",
827 .oval = FILE_LOCK_NONE,
828 .help = "No file locking",
829 },
830 { .ival = "exclusive",
831 .oval = FILE_LOCK_EXCLUSIVE,
832 .help = "Exclusive file lock",
833 },
834 {
835 .ival = "readwrite",
836 .oval = FILE_LOCK_READWRITE,
837 .help = "Read vs write lock",
838 },
839 },
Jens Axboe29c13492008-03-01 19:25:20 +0100840 },
841 {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100842 .name = "opendir",
843 .type = FIO_OPT_STR_STORE,
844 .off1 = td_var_offset(opendir),
845 .cb = str_opendir_cb,
846 .help = "Recursively add files from this directory and down",
847 },
848 {
849 .name = "rw",
Jens Axboed3aad8f2007-03-15 14:12:05 +0100850 .alias = "readwrite",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100851 .type = FIO_OPT_STR,
Jens Axboe211097b2007-03-22 18:56:45 +0100852 .cb = str_rw_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100853 .off1 = td_var_offset(td_ddir),
854 .help = "IO direction",
855 .def = "read",
Jens Axboe896cac22009-07-01 10:38:35 +0200856 .verify = rw_verify,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100857 .posval = {
858 { .ival = "read",
859 .oval = TD_DDIR_READ,
860 .help = "Sequential read",
861 },
862 { .ival = "write",
863 .oval = TD_DDIR_WRITE,
864 .help = "Sequential write",
865 },
866 { .ival = "randread",
867 .oval = TD_DDIR_RANDREAD,
868 .help = "Random read",
869 },
870 { .ival = "randwrite",
871 .oval = TD_DDIR_RANDWRITE,
872 .help = "Random write",
873 },
874 { .ival = "rw",
875 .oval = TD_DDIR_RW,
876 .help = "Sequential read and write mix",
877 },
878 { .ival = "randrw",
879 .oval = TD_DDIR_RANDRW,
880 .help = "Random read and write mix"
881 },
882 },
883 },
884 {
885 .name = "ioengine",
886 .type = FIO_OPT_STR_STORE,
887 .off1 = td_var_offset(ioengine),
888 .help = "IO engine to use",
889 .def = "sync",
890 .posval = {
891 { .ival = "sync",
892 .help = "Use read/write",
893 },
gurudas paia31041e2007-10-23 15:12:30 +0200894 { .ival = "psync",
895 .help = "Use pread/pwrite",
896 },
Jens Axboe1d2af022008-02-04 10:59:07 +0100897 { .ival = "vsync",
898 .help = "Use readv/writev",
899 },
Jens Axboe214e1ec2007-03-15 10:48:13 +0100900#ifdef FIO_HAVE_LIBAIO
901 { .ival = "libaio",
902 .help = "Linux native asynchronous IO",
903 },
904#endif
905#ifdef FIO_HAVE_POSIXAIO
906 { .ival = "posixaio",
907 .help = "POSIX asynchronous IO",
908 },
909#endif
Jens Axboe417f0062008-06-02 11:59:30 +0200910#ifdef FIO_HAVE_SOLARISAIO
911 { .ival = "solarisaio",
912 .help = "Solaris native asynchronous IO",
913 },
914#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +0100915 { .ival = "mmap",
916 .help = "Memory mapped IO",
917 },
918#ifdef FIO_HAVE_SPLICE
919 { .ival = "splice",
920 .help = "splice/vmsplice based IO",
921 },
Jens Axboe9cce02e2007-06-22 15:42:21 +0200922 { .ival = "netsplice",
923 .help = "splice/vmsplice to/from the network",
924 },
Jens Axboe214e1ec2007-03-15 10:48:13 +0100925#endif
926#ifdef FIO_HAVE_SGIO
927 { .ival = "sg",
928 .help = "SCSI generic v3 IO",
929 },
930#endif
931 { .ival = "null",
932 .help = "Testing engine (no data transfer)",
933 },
934 { .ival = "net",
935 .help = "Network IO",
936 },
937#ifdef FIO_HAVE_SYSLET
938 { .ival = "syslet-rw",
939 .help = "syslet enabled async pread/pwrite IO",
940 },
941#endif
942 { .ival = "cpuio",
943 .help = "CPU cycler burner engine",
944 },
Jens Axboeb8c82a42007-03-21 08:48:26 +0100945#ifdef FIO_HAVE_GUASI
946 { .ival = "guasi",
947 .help = "GUASI IO engine",
948 },
949#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +0100950 { .ival = "external",
951 .help = "Load external engine (append name)",
952 },
953 },
954 },
955 {
956 .name = "iodepth",
957 .type = FIO_OPT_INT,
958 .off1 = td_var_offset(iodepth),
959 .help = "Amount of IO buffers to keep in flight",
Jens Axboe757aff42007-12-12 19:42:13 +0100960 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100961 .def = "1",
962 },
963 {
964 .name = "iodepth_batch",
Jens Axboe49504212008-06-05 09:03:30 +0200965 .alias = "iodepth_batch_submit",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100966 .type = FIO_OPT_INT,
967 .off1 = td_var_offset(iodepth_batch),
Jens Axboed65db442009-01-16 19:15:33 +0100968 .help = "Number of IO buffers to submit in one go",
Jens Axboeafdf9352007-07-31 16:14:34 +0200969 .parent = "iodepth",
Jens Axboea2e6f8a2008-01-18 10:28:11 +0100970 .minval = 1,
971 .def = "1",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100972 },
973 {
Jens Axboe49504212008-06-05 09:03:30 +0200974 .name = "iodepth_batch_complete",
975 .type = FIO_OPT_INT,
976 .off1 = td_var_offset(iodepth_batch_complete),
Jens Axboed65db442009-01-16 19:15:33 +0100977 .help = "Number of IO buffers to retrieve in one go",
Jens Axboe49504212008-06-05 09:03:30 +0200978 .parent = "iodepth",
979 .minval = 0,
980 .def = "1",
981 },
982 {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100983 .name = "iodepth_low",
984 .type = FIO_OPT_INT,
985 .off1 = td_var_offset(iodepth_low),
986 .help = "Low water mark for queuing depth",
Jens Axboeafdf9352007-07-31 16:14:34 +0200987 .parent = "iodepth",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100988 },
989 {
990 .name = "size",
991 .type = FIO_OPT_STR_VAL,
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100992 .off1 = td_var_offset(size),
Jens Axboec3edbdb2007-07-20 14:25:31 +0200993 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100994 .help = "Total size of device or files",
995 },
996 {
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100997 .name = "fill_device",
998 .type = FIO_OPT_BOOL,
999 .off1 = td_var_offset(fill_device),
1000 .help = "Write until an ENOSPC error occurs",
1001 .def = "0",
1002 },
1003 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001004 .name = "filesize",
1005 .type = FIO_OPT_STR_VAL,
1006 .off1 = td_var_offset(file_size_low),
1007 .off2 = td_var_offset(file_size_high),
Jens Axboec3edbdb2007-07-20 14:25:31 +02001008 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001009 .help = "Size of individual files",
1010 },
1011 {
Jens Axboe67a10002007-07-31 23:12:16 +02001012 .name = "offset",
1013 .alias = "fileoffset",
1014 .type = FIO_OPT_STR_VAL,
1015 .off1 = td_var_offset(start_offset),
1016 .help = "Start IO from this offset",
1017 .def = "0",
1018 },
1019 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001020 .name = "bs",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001021 .alias = "blocksize",
Jens Axboee01b22b2009-06-09 15:43:25 +02001022 .type = FIO_OPT_INT,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001023 .off1 = td_var_offset(bs[DDIR_READ]),
1024 .off2 = td_var_offset(bs[DDIR_WRITE]),
Jens Axboec3edbdb2007-07-20 14:25:31 +02001025 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001026 .help = "Block size unit",
1027 .def = "4k",
Jens Axboe67a10002007-07-31 23:12:16 +02001028 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001029 },
1030 {
Jens Axboe2b7a01d2009-03-11 11:00:13 +01001031 .name = "ba",
1032 .alias = "blockalign",
Jens Axboee01b22b2009-06-09 15:43:25 +02001033 .type = FIO_OPT_INT,
Jens Axboe2b7a01d2009-03-11 11:00:13 +01001034 .off1 = td_var_offset(ba[DDIR_READ]),
1035 .off2 = td_var_offset(ba[DDIR_WRITE]),
1036 .minval = 1,
1037 .help = "IO block offset alignment",
1038 .parent = "rw",
1039 },
1040 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001041 .name = "bsrange",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001042 .alias = "blocksize_range",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001043 .type = FIO_OPT_RANGE,
1044 .off1 = td_var_offset(min_bs[DDIR_READ]),
1045 .off2 = td_var_offset(max_bs[DDIR_READ]),
1046 .off3 = td_var_offset(min_bs[DDIR_WRITE]),
1047 .off4 = td_var_offset(max_bs[DDIR_WRITE]),
Jens Axboec3edbdb2007-07-20 14:25:31 +02001048 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001049 .help = "Set block size range (in more detail than bs)",
Jens Axboe67a10002007-07-31 23:12:16 +02001050 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001051 },
1052 {
Jens Axboe564ca972007-12-14 12:21:19 +01001053 .name = "bssplit",
1054 .type = FIO_OPT_STR,
1055 .cb = str_bssplit_cb,
1056 .help = "Set a specific mix of block sizes",
1057 .parent = "rw",
1058 },
1059 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001060 .name = "bs_unaligned",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001061 .alias = "blocksize_unaligned",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001062 .type = FIO_OPT_STR_SET,
1063 .off1 = td_var_offset(bs_unaligned),
1064 .help = "Don't sector align IO buffer sizes",
Jens Axboe67a10002007-07-31 23:12:16 +02001065 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001066 },
1067 {
1068 .name = "randrepeat",
1069 .type = FIO_OPT_BOOL,
1070 .off1 = td_var_offset(rand_repeatable),
1071 .help = "Use repeatable random IO pattern",
1072 .def = "1",
Jens Axboe67a10002007-07-31 23:12:16 +02001073 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001074 },
1075 {
1076 .name = "norandommap",
1077 .type = FIO_OPT_STR_SET,
1078 .off1 = td_var_offset(norandommap),
1079 .help = "Accept potential duplicate random blocks",
Jens Axboe67a10002007-07-31 23:12:16 +02001080 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001081 },
1082 {
Jens Axboe2b386d22008-03-26 10:32:57 +01001083 .name = "softrandommap",
1084 .type = FIO_OPT_BOOL,
1085 .off1 = td_var_offset(softrandommap),
Jens Axboef66ab3c2008-06-05 11:48:22 +02001086 .help = "Set norandommap if randommap allocation fails",
Jens Axboe2b386d22008-03-26 10:32:57 +01001087 .parent = "norandommap",
1088 .def = "0",
1089 },
1090 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001091 .name = "nrfiles",
1092 .type = FIO_OPT_INT,
1093 .off1 = td_var_offset(nr_files),
1094 .help = "Split job workload between this number of files",
1095 .def = "1",
1096 },
1097 {
1098 .name = "openfiles",
1099 .type = FIO_OPT_INT,
1100 .off1 = td_var_offset(open_files),
1101 .help = "Number of files to keep open at the same time",
1102 },
1103 {
1104 .name = "file_service_type",
1105 .type = FIO_OPT_STR,
1106 .cb = str_fst_cb,
1107 .off1 = td_var_offset(file_service_type),
1108 .help = "How to select which file to service next",
1109 .def = "roundrobin",
1110 .posval = {
1111 { .ival = "random",
1112 .oval = FIO_FSERVICE_RANDOM,
1113 .help = "Choose a file at random",
1114 },
1115 { .ival = "roundrobin",
1116 .oval = FIO_FSERVICE_RR,
1117 .help = "Round robin select files",
1118 },
Jens Axboea086c252009-03-04 08:27:37 +01001119 { .ival = "sequential",
1120 .oval = FIO_FSERVICE_SEQ,
1121 .help = "Finish one file before moving to the next",
1122 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001123 },
Jens Axboe67a10002007-07-31 23:12:16 +02001124 .parent = "nrfiles",
1125 },
Jens Axboe7bc8c2c2010-01-28 11:31:31 +01001126#ifdef FIO_HAVE_FALLOCATE
1127 {
1128 .name = "fallocate",
1129 .type = FIO_OPT_BOOL,
1130 .off1 = td_var_offset(fallocate),
1131 .help = "Use fallocate() when laying out files",
1132 .def = "1",
1133 },
1134#endif
Jens Axboe67a10002007-07-31 23:12:16 +02001135 {
1136 .name = "fadvise_hint",
1137 .type = FIO_OPT_BOOL,
1138 .off1 = td_var_offset(fadvise_hint),
1139 .help = "Use fadvise() to advise the kernel on IO pattern",
1140 .def = "1",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001141 },
1142 {
1143 .name = "fsync",
1144 .type = FIO_OPT_INT,
1145 .off1 = td_var_offset(fsync_blocks),
1146 .help = "Issue fsync for writes every given number of blocks",
1147 .def = "0",
1148 },
1149 {
Jens Axboe5f9099e2009-06-16 22:40:26 +02001150 .name = "fdatasync",
1151 .type = FIO_OPT_INT,
1152 .off1 = td_var_offset(fdatasync_blocks),
1153 .help = "Issue fdatasync for writes every given number of blocks",
1154 .def = "0",
1155 },
Jens Axboe44f29692010-03-09 20:09:44 +01001156#ifdef FIO_HAVE_SYNC_FILE_RANGE
1157 {
1158 .name = "sync_file_range",
1159 .posval = {
1160 { .ival = "wait_before",
1161 .oval = SYNC_FILE_RANGE_WAIT_BEFORE,
1162 .help = "SYNC_FILE_RANGE_WAIT_BEFORE",
Jens Axboe3843deb2010-03-09 20:41:15 +01001163 .or = 1,
Jens Axboe44f29692010-03-09 20:09:44 +01001164 },
1165 { .ival = "write",
1166 .oval = SYNC_FILE_RANGE_WRITE,
1167 .help = "SYNC_FILE_RANGE_WRITE",
Jens Axboe3843deb2010-03-09 20:41:15 +01001168 .or = 1,
Jens Axboe44f29692010-03-09 20:09:44 +01001169 },
1170 {
1171 .ival = "wait_after",
1172 .oval = SYNC_FILE_RANGE_WAIT_AFTER,
1173 .help = "SYNC_FILE_RANGE_WAIT_AFTER",
Jens Axboe3843deb2010-03-09 20:41:15 +01001174 .or = 1,
Jens Axboe44f29692010-03-09 20:09:44 +01001175 },
1176 },
Jens Axboe3843deb2010-03-09 20:41:15 +01001177 .type = FIO_OPT_STR_MULTI,
Jens Axboe44f29692010-03-09 20:09:44 +01001178 .cb = str_sfr_cb,
1179 .off1 = td_var_offset(sync_file_range),
1180 .help = "Use sync_file_range()",
1181 },
1182#endif
Jens Axboe5f9099e2009-06-16 22:40:26 +02001183 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001184 .name = "direct",
1185 .type = FIO_OPT_BOOL,
1186 .off1 = td_var_offset(odirect),
1187 .help = "Use O_DIRECT IO (negates buffered)",
1188 .def = "0",
1189 },
1190 {
1191 .name = "buffered",
1192 .type = FIO_OPT_BOOL,
1193 .off1 = td_var_offset(odirect),
1194 .neg = 1,
1195 .help = "Use buffered IO (negates direct)",
1196 .def = "1",
1197 },
1198 {
1199 .name = "overwrite",
1200 .type = FIO_OPT_BOOL,
1201 .off1 = td_var_offset(overwrite),
1202 .help = "When writing, set whether to overwrite current data",
1203 .def = "0",
1204 },
1205 {
1206 .name = "loops",
1207 .type = FIO_OPT_INT,
1208 .off1 = td_var_offset(loops),
1209 .help = "Number of times to run the job",
1210 .def = "1",
1211 },
1212 {
1213 .name = "numjobs",
1214 .type = FIO_OPT_INT,
1215 .off1 = td_var_offset(numjobs),
1216 .help = "Duplicate this job this many times",
1217 .def = "1",
1218 },
1219 {
1220 .name = "startdelay",
Jens Axboea5737c92010-06-29 10:40:30 +02001221 .type = FIO_OPT_STR_VAL_TIME,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001222 .off1 = td_var_offset(start_delay),
1223 .help = "Only start job when this period has passed",
1224 .def = "0",
1225 },
1226 {
1227 .name = "runtime",
1228 .alias = "timeout",
1229 .type = FIO_OPT_STR_VAL_TIME,
1230 .off1 = td_var_offset(timeout),
1231 .help = "Stop workload when this amount of time has passed",
1232 .def = "0",
1233 },
1234 {
Jens Axboecf4464c2007-04-17 20:14:42 +02001235 .name = "time_based",
1236 .type = FIO_OPT_STR_SET,
1237 .off1 = td_var_offset(time_based),
1238 .help = "Keep running until runtime/timeout is met",
1239 },
1240 {
Jens Axboe721938a2008-09-10 09:46:16 +02001241 .name = "ramp_time",
1242 .type = FIO_OPT_STR_VAL_TIME,
1243 .off1 = td_var_offset(ramp_time),
1244 .help = "Ramp up time before measuring performance",
1245 },
1246 {
Jens Axboec223da82010-03-24 13:23:53 +01001247 .name = "clocksource",
1248 .type = FIO_OPT_STR,
1249 .cb = fio_clock_source_cb,
1250 .off1 = td_var_offset(clocksource),
1251 .help = "What type of timing source to use",
Jens Axboec223da82010-03-24 13:23:53 +01001252 .posval = {
1253 { .ival = "gettimeofday",
1254 .oval = CS_GTOD,
1255 .help = "Use gettimeofday(2) for timing",
1256 },
1257 { .ival = "clock_gettime",
1258 .oval = CS_CGETTIME,
1259 .help = "Use clock_gettime(2) for timing",
1260 },
1261#ifdef ARCH_HAVE_CPU_CLOCK
1262 { .ival = "cpu",
1263 .oval = CS_CPUCLOCK,
1264 .help = "Use CPU private clock",
1265 },
1266#endif
1267 },
1268 },
1269 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001270 .name = "mem",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001271 .alias = "iomem",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001272 .type = FIO_OPT_STR,
1273 .cb = str_mem_cb,
1274 .off1 = td_var_offset(mem_type),
1275 .help = "Backing type for IO buffers",
1276 .def = "malloc",
1277 .posval = {
1278 { .ival = "malloc",
1279 .oval = MEM_MALLOC,
1280 .help = "Use malloc(3) for IO buffers",
1281 },
Jens Axboeb370e462007-03-19 10:51:49 +01001282 { .ival = "shm",
1283 .oval = MEM_SHM,
1284 .help = "Use shared memory segments for IO buffers",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001285 },
1286#ifdef FIO_HAVE_HUGETLB
Jens Axboe37c8cdf2007-03-19 13:14:03 +01001287 { .ival = "shmhuge",
1288 .oval = MEM_SHMHUGE,
1289 .help = "Like shm, but use huge pages",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001290 },
1291#endif
Jens Axboeb370e462007-03-19 10:51:49 +01001292 { .ival = "mmap",
1293 .oval = MEM_MMAP,
1294 .help = "Use mmap(2) (file or anon) for IO buffers",
1295 },
Jens Axboe37c8cdf2007-03-19 13:14:03 +01001296#ifdef FIO_HAVE_HUGETLB
1297 { .ival = "mmaphuge",
1298 .oval = MEM_MMAPHUGE,
1299 .help = "Like mmap, but use huge pages",
1300 },
1301#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +01001302 },
1303 },
1304 {
Jens Axboed529ee12009-07-01 10:33:03 +02001305 .name = "iomem_align",
1306 .alias = "mem_align",
1307 .type = FIO_OPT_INT,
1308 .off1 = td_var_offset(mem_align),
1309 .minval = 0,
1310 .help = "IO memory buffer offset alignment",
1311 .def = "0",
1312 .parent = "iomem",
1313 },
1314 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001315 .name = "verify",
1316 .type = FIO_OPT_STR,
1317 .off1 = td_var_offset(verify),
1318 .help = "Verify data written",
Jens Axboe5d7c5d32010-06-21 15:08:17 +02001319 .cb = str_verify_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001320 .def = "0",
1321 .posval = {
1322 { .ival = "0",
1323 .oval = VERIFY_NONE,
1324 .help = "Don't do IO verification",
1325 },
Jens Axboefcca4b52007-07-27 15:42:00 +02001326 { .ival = "md5",
1327 .oval = VERIFY_MD5,
1328 .help = "Use md5 checksums for verification",
1329 },
Jens Axboed77a7af2007-07-27 15:35:06 +02001330 { .ival = "crc64",
1331 .oval = VERIFY_CRC64,
1332 .help = "Use crc64 checksums for verification",
1333 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001334 { .ival = "crc32",
1335 .oval = VERIFY_CRC32,
1336 .help = "Use crc32 checksums for verification",
1337 },
Jens Axboeaf497e62008-08-04 15:40:35 +02001338 { .ival = "crc32c-intel",
1339 .oval = VERIFY_CRC32C_INTEL,
1340 .help = "Use hw crc32c checksums for verification",
1341 },
Jens Axboebac39e02008-06-11 20:46:19 +02001342 { .ival = "crc32c",
1343 .oval = VERIFY_CRC32C,
1344 .help = "Use crc32c checksums for verification",
1345 },
Jens Axboe969f7ed2007-07-27 09:07:17 +02001346 { .ival = "crc16",
1347 .oval = VERIFY_CRC16,
1348 .help = "Use crc16 checksums for verification",
1349 },
Jens Axboe1e154bd2007-07-27 09:52:40 +02001350 { .ival = "crc7",
1351 .oval = VERIFY_CRC7,
1352 .help = "Use crc7 checksums for verification",
1353 },
Jens Axboe7c353ce2009-08-09 22:40:33 +02001354 { .ival = "sha1",
1355 .oval = VERIFY_SHA1,
1356 .help = "Use sha1 checksums for verification",
1357 },
Jens Axboecd14cc12007-07-30 10:59:33 +02001358 { .ival = "sha256",
1359 .oval = VERIFY_SHA256,
1360 .help = "Use sha256 checksums for verification",
1361 },
1362 { .ival = "sha512",
1363 .oval = VERIFY_SHA512,
1364 .help = "Use sha512 checksums for verification",
1365 },
Shawn Lewis7437ee82007-08-02 21:05:58 +02001366 { .ival = "meta",
1367 .oval = VERIFY_META,
1368 .help = "Use io information",
1369 },
Jens Axboe36690c92007-03-26 10:23:34 +02001370 {
1371 .ival = "null",
1372 .oval = VERIFY_NULL,
1373 .help = "Pretend to verify",
1374 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001375 },
1376 },
1377 {
Jens Axboe005c5652007-08-02 22:21:36 +02001378 .name = "do_verify",
Jens Axboe68e1f292007-08-10 10:32:14 +02001379 .type = FIO_OPT_BOOL,
Jens Axboe005c5652007-08-02 22:21:36 +02001380 .off1 = td_var_offset(do_verify),
1381 .help = "Run verification stage after write",
1382 .def = "1",
1383 .parent = "verify",
1384 },
1385 {
Jens Axboe160b9662007-03-27 10:59:49 +02001386 .name = "verifysort",
1387 .type = FIO_OPT_BOOL,
1388 .off1 = td_var_offset(verifysort),
1389 .help = "Sort written verify blocks for read back",
1390 .def = "1",
Jens Axboec83f2df2007-07-31 22:51:47 +02001391 .parent = "verify",
Jens Axboe160b9662007-03-27 10:59:49 +02001392 },
1393 {
Jens Axboea59e1702007-07-30 08:53:27 +02001394 .name = "verify_interval",
Jens Axboee01b22b2009-06-09 15:43:25 +02001395 .type = FIO_OPT_INT,
Jens Axboea59e1702007-07-30 08:53:27 +02001396 .off1 = td_var_offset(verify_interval),
Jens Axboe819a9682007-07-28 21:30:31 +02001397 .minval = 2 * sizeof(struct verify_header),
Jens Axboea59e1702007-07-30 08:53:27 +02001398 .help = "Store verify buffer header every N bytes",
Jens Axboeafdf9352007-07-31 16:14:34 +02001399 .parent = "verify",
Shawn Lewis3f9f4e22007-07-28 21:10:37 +02001400 },
1401 {
Jens Axboea59e1702007-07-30 08:53:27 +02001402 .name = "verify_offset",
Jens Axboee01b22b2009-06-09 15:43:25 +02001403 .type = FIO_OPT_INT,
Jens Axboea59e1702007-07-30 08:53:27 +02001404 .help = "Offset verify header location by N bytes",
Shawn Lewis546a9142007-07-28 21:11:37 +02001405 .def = "0",
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001406 .cb = str_verify_offset_cb,
Jens Axboeafdf9352007-07-31 16:14:34 +02001407 .parent = "verify",
Shawn Lewis546a9142007-07-28 21:11:37 +02001408 },
1409 {
Shawn Lewise28218f2008-01-16 11:01:33 +01001410 .name = "verify_pattern",
Radha Ramachandran0e92f872009-10-27 20:14:27 +01001411 .type = FIO_OPT_STR,
Shawn Lewise28218f2008-01-16 11:01:33 +01001412 .cb = str_verify_pattern_cb,
1413 .help = "Fill pattern for IO buffers",
1414 .parent = "verify",
1415 },
1416 {
Jens Axboea12a3b42007-08-09 10:20:54 +02001417 .name = "verify_fatal",
Jens Axboe68e1f292007-08-10 10:32:14 +02001418 .type = FIO_OPT_BOOL,
Jens Axboea12a3b42007-08-09 10:20:54 +02001419 .off1 = td_var_offset(verify_fatal),
1420 .def = "0",
1421 .help = "Exit on a single verify failure, don't continue",
1422 .parent = "verify",
1423 },
1424 {
Jens Axboee8462bd2009-07-06 12:59:04 +02001425 .name = "verify_async",
1426 .type = FIO_OPT_INT,
1427 .off1 = td_var_offset(verify_async),
1428 .def = "0",
1429 .help = "Number of async verifier threads to use",
1430 .parent = "verify",
1431 },
Jens Axboe9e144182010-06-15 14:25:36 +02001432 {
1433 .name = "verify_backlog",
1434 .type = FIO_OPT_STR_VAL,
1435 .off1 = td_var_offset(verify_backlog),
1436 .help = "Verify after this number of blocks are written",
1437 .parent = "verify",
1438 },
1439 {
1440 .name = "verify_backlog_batch",
1441 .type = FIO_OPT_INT,
1442 .off1 = td_var_offset(verify_batch),
1443 .help = "Verify this number of IO blocks",
1444 .parent = "verify_backlog",
1445 },
Jens Axboee8462bd2009-07-06 12:59:04 +02001446#ifdef FIO_HAVE_CPU_AFFINITY
1447 {
1448 .name = "verify_async_cpus",
1449 .type = FIO_OPT_STR,
1450 .cb = str_verify_cpus_allowed_cb,
1451 .help = "Set CPUs allowed for async verify threads",
1452 .parent = "verify_async",
1453 },
1454#endif
1455 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001456 .name = "write_iolog",
1457 .type = FIO_OPT_STR_STORE,
1458 .off1 = td_var_offset(write_iolog_file),
1459 .help = "Store IO pattern to file",
1460 },
1461 {
1462 .name = "read_iolog",
1463 .type = FIO_OPT_STR_STORE,
1464 .off1 = td_var_offset(read_iolog_file),
1465 .help = "Playback IO pattern from file",
1466 },
1467 {
1468 .name = "exec_prerun",
1469 .type = FIO_OPT_STR_STORE,
1470 .off1 = td_var_offset(exec_prerun),
1471 .help = "Execute this file prior to running job",
1472 },
1473 {
1474 .name = "exec_postrun",
1475 .type = FIO_OPT_STR_STORE,
1476 .off1 = td_var_offset(exec_postrun),
1477 .help = "Execute this file after running job",
1478 },
1479#ifdef FIO_HAVE_IOSCHED_SWITCH
1480 {
1481 .name = "ioscheduler",
1482 .type = FIO_OPT_STR_STORE,
1483 .off1 = td_var_offset(ioscheduler),
1484 .help = "Use this IO scheduler on the backing device",
1485 },
1486#endif
1487 {
1488 .name = "zonesize",
1489 .type = FIO_OPT_STR_VAL,
1490 .off1 = td_var_offset(zone_size),
1491 .help = "Give size of an IO zone",
1492 .def = "0",
1493 },
1494 {
1495 .name = "zoneskip",
1496 .type = FIO_OPT_STR_VAL,
1497 .off1 = td_var_offset(zone_skip),
1498 .help = "Space between IO zones",
1499 .def = "0",
1500 },
1501 {
1502 .name = "lockmem",
1503 .type = FIO_OPT_STR_VAL,
1504 .cb = str_lockmem_cb,
1505 .help = "Lock down this amount of memory",
1506 .def = "0",
1507 },
1508 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001509 .name = "rwmixread",
1510 .type = FIO_OPT_INT,
Jens Axboecb499fc2008-05-28 10:33:32 +02001511 .cb = str_rwmix_read_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001512 .maxval = 100,
1513 .help = "Percentage of mixed workload that is reads",
1514 .def = "50",
1515 },
1516 {
1517 .name = "rwmixwrite",
1518 .type = FIO_OPT_INT,
Jens Axboecb499fc2008-05-28 10:33:32 +02001519 .cb = str_rwmix_write_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001520 .maxval = 100,
1521 .help = "Percentage of mixed workload that is writes",
1522 .def = "50",
1523 },
1524 {
Jens Axboeafdf9352007-07-31 16:14:34 +02001525 .name = "rwmixcycle",
Jens Axboe15ca1502008-04-07 09:26:02 +02001526 .type = FIO_OPT_DEPRECATED,
Jens Axboeafdf9352007-07-31 16:14:34 +02001527 },
1528 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001529 .name = "nice",
1530 .type = FIO_OPT_INT,
1531 .off1 = td_var_offset(nice),
1532 .help = "Set job CPU nice value",
1533 .minval = -19,
1534 .maxval = 20,
1535 .def = "0",
1536 },
1537#ifdef FIO_HAVE_IOPRIO
1538 {
1539 .name = "prio",
1540 .type = FIO_OPT_INT,
1541 .cb = str_prio_cb,
1542 .help = "Set job IO priority value",
1543 .minval = 0,
1544 .maxval = 7,
1545 },
1546 {
1547 .name = "prioclass",
1548 .type = FIO_OPT_INT,
1549 .cb = str_prioclass_cb,
1550 .help = "Set job IO priority class",
1551 .minval = 0,
1552 .maxval = 3,
1553 },
1554#endif
1555 {
1556 .name = "thinktime",
1557 .type = FIO_OPT_INT,
1558 .off1 = td_var_offset(thinktime),
1559 .help = "Idle time between IO buffers (usec)",
1560 .def = "0",
1561 },
1562 {
1563 .name = "thinktime_spin",
1564 .type = FIO_OPT_INT,
1565 .off1 = td_var_offset(thinktime_spin),
1566 .help = "Start think time by spinning this amount (usec)",
1567 .def = "0",
Jens Axboeafdf9352007-07-31 16:14:34 +02001568 .parent = "thinktime",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001569 },
1570 {
1571 .name = "thinktime_blocks",
1572 .type = FIO_OPT_INT,
1573 .off1 = td_var_offset(thinktime_blocks),
1574 .help = "IO buffer period between 'thinktime'",
1575 .def = "1",
Jens Axboeafdf9352007-07-31 16:14:34 +02001576 .parent = "thinktime",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001577 },
1578 {
1579 .name = "rate",
Jens Axboee01b22b2009-06-09 15:43:25 +02001580 .type = FIO_OPT_INT,
Jens Axboe581e7142009-06-09 12:47:16 +02001581 .off1 = td_var_offset(rate[0]),
1582 .off2 = td_var_offset(rate[1]),
Jens Axboe214e1ec2007-03-15 10:48:13 +01001583 .help = "Set bandwidth rate",
1584 },
1585 {
1586 .name = "ratemin",
Jens Axboee01b22b2009-06-09 15:43:25 +02001587 .type = FIO_OPT_INT,
Jens Axboe581e7142009-06-09 12:47:16 +02001588 .off1 = td_var_offset(ratemin[0]),
1589 .off2 = td_var_offset(ratemin[1]),
Jens Axboe4e991c22007-03-15 11:41:11 +01001590 .help = "Job must meet this rate or it will be shutdown",
Jens Axboeafdf9352007-07-31 16:14:34 +02001591 .parent = "rate",
Jens Axboe4e991c22007-03-15 11:41:11 +01001592 },
1593 {
1594 .name = "rate_iops",
Jens Axboee01b22b2009-06-09 15:43:25 +02001595 .type = FIO_OPT_INT,
Jens Axboe581e7142009-06-09 12:47:16 +02001596 .off1 = td_var_offset(rate_iops[0]),
1597 .off2 = td_var_offset(rate_iops[1]),
Jens Axboe4e991c22007-03-15 11:41:11 +01001598 .help = "Limit IO used to this number of IO operations/sec",
1599 },
1600 {
1601 .name = "rate_iops_min",
Jens Axboee01b22b2009-06-09 15:43:25 +02001602 .type = FIO_OPT_INT,
Jens Axboe581e7142009-06-09 12:47:16 +02001603 .off1 = td_var_offset(rate_iops_min[0]),
1604 .off2 = td_var_offset(rate_iops_min[1]),
Jens Axboe4e991c22007-03-15 11:41:11 +01001605 .help = "Job must meet this rate or it will be shutdown",
Jens Axboeafdf9352007-07-31 16:14:34 +02001606 .parent = "rate_iops",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001607 },
1608 {
1609 .name = "ratecycle",
1610 .type = FIO_OPT_INT,
1611 .off1 = td_var_offset(ratecycle),
1612 .help = "Window average for rate limits (msec)",
1613 .def = "1000",
Jens Axboeafdf9352007-07-31 16:14:34 +02001614 .parent = "rate",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001615 },
1616 {
1617 .name = "invalidate",
1618 .type = FIO_OPT_BOOL,
1619 .off1 = td_var_offset(invalidate_cache),
1620 .help = "Invalidate buffer/page cache prior to running job",
1621 .def = "1",
1622 },
1623 {
1624 .name = "sync",
1625 .type = FIO_OPT_BOOL,
1626 .off1 = td_var_offset(sync_io),
1627 .help = "Use O_SYNC for buffered writes",
1628 .def = "0",
Jens Axboe67a10002007-07-31 23:12:16 +02001629 .parent = "buffered",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001630 },
1631 {
1632 .name = "bwavgtime",
1633 .type = FIO_OPT_INT,
1634 .off1 = td_var_offset(bw_avg_time),
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001635 .help = "Time window over which to calculate bandwidth"
1636 " (msec)",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001637 .def = "500",
1638 },
1639 {
1640 .name = "create_serialize",
1641 .type = FIO_OPT_BOOL,
1642 .off1 = td_var_offset(create_serialize),
1643 .help = "Serialize creating of job files",
1644 .def = "1",
1645 },
1646 {
1647 .name = "create_fsync",
1648 .type = FIO_OPT_BOOL,
1649 .off1 = td_var_offset(create_fsync),
1650 .help = "Fsync file after creation",
1651 .def = "1",
1652 },
1653 {
Jens Axboe814452b2009-03-04 12:53:13 +01001654 .name = "create_on_open",
1655 .type = FIO_OPT_BOOL,
1656 .off1 = td_var_offset(create_on_open),
1657 .help = "Create files when they are opened for IO",
1658 .def = "0",
1659 },
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001660 {
Zhang, Yanminafad68f2009-05-20 11:30:55 +02001661 .name = "pre_read",
1662 .type = FIO_OPT_BOOL,
1663 .off1 = td_var_offset(pre_read),
1664 .help = "Preread files before starting official testing",
1665 .def = "0",
1666 },
Jens Axboe814452b2009-03-04 12:53:13 +01001667 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001668 .name = "cpuload",
1669 .type = FIO_OPT_INT,
1670 .off1 = td_var_offset(cpuload),
1671 .help = "Use this percentage of CPU",
1672 },
1673 {
1674 .name = "cpuchunks",
1675 .type = FIO_OPT_INT,
1676 .off1 = td_var_offset(cpucycle),
1677 .help = "Length of the CPU burn cycles (usecs)",
1678 .def = "50000",
Jens Axboe67a10002007-07-31 23:12:16 +02001679 .parent = "cpuload",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001680 },
1681#ifdef FIO_HAVE_CPU_AFFINITY
1682 {
1683 .name = "cpumask",
1684 .type = FIO_OPT_INT,
1685 .cb = str_cpumask_cb,
1686 .help = "CPU affinity mask",
1687 },
Jens Axboed2e268b2007-06-15 10:33:49 +02001688 {
1689 .name = "cpus_allowed",
1690 .type = FIO_OPT_STR,
1691 .cb = str_cpus_allowed_cb,
1692 .help = "Set CPUs allowed",
1693 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001694#endif
1695 {
1696 .name = "end_fsync",
1697 .type = FIO_OPT_BOOL,
1698 .off1 = td_var_offset(end_fsync),
1699 .help = "Include fsync at the end of job",
1700 .def = "0",
1701 },
1702 {
1703 .name = "fsync_on_close",
1704 .type = FIO_OPT_BOOL,
1705 .off1 = td_var_offset(fsync_on_close),
1706 .help = "fsync files on close",
1707 .def = "0",
1708 },
1709 {
1710 .name = "unlink",
1711 .type = FIO_OPT_BOOL,
1712 .off1 = td_var_offset(unlink),
1713 .help = "Unlink created files after job has completed",
1714 .def = "0",
1715 },
1716 {
1717 .name = "exitall",
1718 .type = FIO_OPT_STR_SET,
1719 .cb = str_exitall_cb,
1720 .help = "Terminate all jobs when one exits",
1721 },
1722 {
1723 .name = "stonewall",
1724 .type = FIO_OPT_STR_SET,
1725 .off1 = td_var_offset(stonewall),
1726 .help = "Insert a hard barrier between this job and previous",
1727 },
1728 {
Jens Axboeb3d62a72007-03-20 14:23:26 +01001729 .name = "new_group",
1730 .type = FIO_OPT_STR_SET,
1731 .off1 = td_var_offset(new_group),
1732 .help = "Mark the start of a new group (for reporting)",
1733 },
1734 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001735 .name = "thread",
1736 .type = FIO_OPT_STR_SET,
1737 .off1 = td_var_offset(use_thread),
1738 .help = "Use threads instead of forks",
1739 },
1740 {
1741 .name = "write_bw_log",
Jens Axboee3cedca2008-11-19 19:57:52 +01001742 .type = FIO_OPT_STR,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001743 .off1 = td_var_offset(write_bw_log),
Jens Axboee3cedca2008-11-19 19:57:52 +01001744 .cb = str_write_bw_log_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001745 .help = "Write log of bandwidth during run",
1746 },
1747 {
1748 .name = "write_lat_log",
Jens Axboee3cedca2008-11-19 19:57:52 +01001749 .type = FIO_OPT_STR,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001750 .off1 = td_var_offset(write_lat_log),
Jens Axboee3cedca2008-11-19 19:57:52 +01001751 .cb = str_write_lat_log_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001752 .help = "Write log of latency during run",
1753 },
1754 {
1755 .name = "hugepage-size",
Jens Axboee01b22b2009-06-09 15:43:25 +02001756 .type = FIO_OPT_INT,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001757 .off1 = td_var_offset(hugepage_size),
1758 .help = "When using hugepages, specify size of each page",
1759 .def = __stringify(FIO_HUGE_PAGE),
1760 },
1761 {
1762 .name = "group_reporting",
1763 .type = FIO_OPT_STR_SET,
1764 .off1 = td_var_offset(group_reporting),
1765 .help = "Do reporting on a per-group basis",
1766 },
1767 {
Jens Axboee9459e52007-04-17 15:46:32 +02001768 .name = "zero_buffers",
1769 .type = FIO_OPT_STR_SET,
1770 .off1 = td_var_offset(zero_buffers),
1771 .help = "Init IO buffers to all zeroes",
1772 },
Jens Axboe5973caf2008-05-21 19:52:35 +02001773 {
1774 .name = "refill_buffers",
1775 .type = FIO_OPT_STR_SET,
1776 .off1 = td_var_offset(refill_buffers),
1777 .help = "Refill IO buffers on every IO submit",
1778 },
Jens Axboe0a839f32007-04-26 09:02:34 +02001779#ifdef FIO_HAVE_DISK_UTIL
1780 {
1781 .name = "disk_util",
1782 .type = FIO_OPT_BOOL,
1783 .off1 = td_var_offset(do_disk_util),
Jens Axboef66ab3c2008-06-05 11:48:22 +02001784 .help = "Log disk utilization statistics",
Jens Axboe0a839f32007-04-26 09:02:34 +02001785 .def = "1",
1786 },
1787#endif
Jens Axboee9459e52007-04-17 15:46:32 +02001788 {
Jens Axboe993bf482008-11-14 13:04:53 +01001789 .name = "gtod_reduce",
1790 .type = FIO_OPT_BOOL,
1791 .help = "Greatly reduce number of gettimeofday() calls",
1792 .cb = str_gtod_reduce_cb,
1793 .def = "0",
1794 },
1795 {
Jens Axboe02af0982010-06-24 09:59:34 +02001796 .name = "disable_lat",
1797 .type = FIO_OPT_BOOL,
1798 .off1 = td_var_offset(disable_lat),
1799 .help = "Disable latency numbers",
1800 .parent = "gtod_reduce",
1801 .def = "0",
1802 },
1803 {
Jens Axboe9520ebb2008-10-16 21:03:27 +02001804 .name = "disable_clat",
1805 .type = FIO_OPT_BOOL,
1806 .off1 = td_var_offset(disable_clat),
1807 .help = "Disable completion latency numbers",
Jens Axboe993bf482008-11-14 13:04:53 +01001808 .parent = "gtod_reduce",
Jens Axboe9520ebb2008-10-16 21:03:27 +02001809 .def = "0",
1810 },
1811 {
1812 .name = "disable_slat",
1813 .type = FIO_OPT_BOOL,
1814 .off1 = td_var_offset(disable_slat),
1815 .help = "Disable submissionn latency numbers",
Jens Axboe993bf482008-11-14 13:04:53 +01001816 .parent = "gtod_reduce",
Jens Axboe9520ebb2008-10-16 21:03:27 +02001817 .def = "0",
1818 },
1819 {
1820 .name = "disable_bw_measurement",
1821 .type = FIO_OPT_BOOL,
1822 .off1 = td_var_offset(disable_bw),
1823 .help = "Disable bandwidth logging",
Jens Axboe993bf482008-11-14 13:04:53 +01001824 .parent = "gtod_reduce",
Jens Axboe9520ebb2008-10-16 21:03:27 +02001825 .def = "0",
1826 },
1827 {
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001828 .name = "gtod_cpu",
1829 .type = FIO_OPT_INT,
1830 .cb = str_gtod_cpu_cb,
1831 .help = "Setup dedicated gettimeofday() thread on this CPU",
Jens Axboe29d43ff2009-07-01 10:42:18 +02001832 .verify = gtod_cpu_verify,
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001833 },
1834 {
Radha Ramachandranf2bba182009-06-15 08:40:16 +02001835 .name = "continue_on_error",
1836 .type = FIO_OPT_BOOL,
1837 .off1 = td_var_offset(continue_on_error),
1838 .help = "Continue on non-fatal errors during I/O",
1839 .def = "0",
1840 },
1841 {
Jens Axboe9ac8a792009-11-13 21:23:07 +01001842 .name = "profile",
Jens Axboe79d16312010-03-04 12:43:20 +01001843 .type = FIO_OPT_STR_STORE,
Jens Axboe9ac8a792009-11-13 21:23:07 +01001844 .off1 = td_var_offset(profile),
Jens Axboe9ac8a792009-11-13 21:23:07 +01001845 .help = "Select a specific builtin performance test",
1846 },
1847 {
Jens Axboea696fa22009-12-04 10:05:02 +01001848 .name = "cgroup",
1849 .type = FIO_OPT_STR_STORE,
1850 .off1 = td_var_offset(cgroup),
1851 .help = "Add job to cgroup of this name",
1852 },
1853 {
1854 .name = "cgroup_weight",
1855 .type = FIO_OPT_INT,
1856 .off1 = td_var_offset(cgroup_weight),
1857 .help = "Use given weight for cgroup",
1858 .minval = 100,
1859 .maxval = 1000,
Jens Axboea696fa22009-12-04 10:05:02 +01001860 },
1861 {
Vivek Goyal7de87092010-03-31 22:55:15 +02001862 .name = "cgroup_nodelete",
1863 .type = FIO_OPT_BOOL,
1864 .off1 = td_var_offset(cgroup_nodelete),
1865 .help = "Do not delete cgroups after job completion",
1866 .def = "0",
1867 },
1868 {
Jens Axboee0b0d892009-12-08 10:10:14 +01001869 .name = "uid",
1870 .type = FIO_OPT_INT,
1871 .off1 = td_var_offset(uid),
1872 .help = "Run job with this user ID",
1873 },
1874 {
1875 .name = "gid",
1876 .type = FIO_OPT_INT,
1877 .off1 = td_var_offset(gid),
1878 .help = "Run job with this group ID",
1879 },
1880 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001881 .name = NULL,
1882 },
1883};
1884
Jens Axboe17af15d2010-04-13 10:38:16 +02001885static void add_to_lopt(struct option *lopt, struct fio_option *o,
1886 const char *name)
Jens Axboe9f817362010-03-04 14:38:10 +01001887{
Jens Axboe17af15d2010-04-13 10:38:16 +02001888 lopt->name = (char *) name;
Jens Axboe9f817362010-03-04 14:38:10 +01001889 lopt->val = FIO_GETOPT_JOB;
1890 if (o->type == FIO_OPT_STR_SET)
1891 lopt->has_arg = no_argument;
1892 else
1893 lopt->has_arg = required_argument;
1894}
1895
Jens Axboe214e1ec2007-03-15 10:48:13 +01001896void fio_options_dup_and_init(struct option *long_options)
1897{
1898 struct fio_option *o;
1899 unsigned int i;
1900
1901 options_init(options);
1902
1903 i = 0;
1904 while (long_options[i].name)
1905 i++;
1906
1907 o = &options[0];
1908 while (o->name) {
Jens Axboe17af15d2010-04-13 10:38:16 +02001909 add_to_lopt(&long_options[i], o, o->name);
1910 if (o->alias) {
1911 i++;
1912 add_to_lopt(&long_options[i], o, o->alias);
1913 }
Jens Axboe214e1ec2007-03-15 10:48:13 +01001914
1915 i++;
1916 o++;
1917 assert(i < FIO_NR_OPTIONS);
1918 }
1919}
1920
Jens Axboe74929ac2009-08-05 11:42:37 +02001921struct fio_keyword {
1922 const char *word;
1923 const char *desc;
1924 char *replace;
1925};
1926
1927static struct fio_keyword fio_keywords[] = {
1928 {
1929 .word = "$pagesize",
1930 .desc = "Page size in the system",
1931 },
1932 {
1933 .word = "$mb_memory",
1934 .desc = "Megabytes of memory online",
1935 },
1936 {
1937 .word = "$ncpus",
1938 .desc = "Number of CPUs online in the system",
1939 },
1940 {
1941 .word = NULL,
1942 },
1943};
1944
1945void fio_keywords_init(void)
1946{
Jens Axboe3b2e1462009-12-15 08:58:10 +01001947 unsigned long long mb_memory;
Jens Axboe74929ac2009-08-05 11:42:37 +02001948 char buf[128];
1949 long l;
1950
1951 sprintf(buf, "%lu", page_size);
1952 fio_keywords[0].replace = strdup(buf);
1953
Jens Axboe3b2e1462009-12-15 08:58:10 +01001954 mb_memory = os_phys_mem() / page_size;
1955 sprintf(buf, "%llu", mb_memory);
Jens Axboe74929ac2009-08-05 11:42:37 +02001956 fio_keywords[1].replace = strdup(buf);
1957
1958 l = sysconf(_SC_NPROCESSORS_ONLN);
1959 sprintf(buf, "%lu", l);
1960 fio_keywords[2].replace = strdup(buf);
1961}
1962
Jens Axboe892a6ff2009-11-13 12:19:49 +01001963#define BC_APP "bc"
1964
1965static char *bc_calc(char *str)
1966{
1967 char *buf, *tmp, opt[80];
1968 FILE *f;
1969 int ret;
1970
1971 /*
1972 * No math, just return string
1973 */
1974 if (!strchr(str, '+') && !strchr(str, '-') && !strchr(str, '*') &&
1975 !strchr(str, '/'))
1976 return str;
1977
1978 /*
1979 * Split option from value, we only need to calculate the value
1980 */
1981 tmp = strchr(str, '=');
1982 if (!tmp)
1983 return str;
1984
1985 tmp++;
Jens Axboe9ac8a792009-11-13 21:23:07 +01001986 memset(opt, 0, sizeof(opt));
Jens Axboe892a6ff2009-11-13 12:19:49 +01001987 strncpy(opt, str, tmp - str);
1988
1989 buf = malloc(128);
1990
1991 sprintf(buf, "which %s > /dev/null", BC_APP);
1992 if (system(buf)) {
1993 log_err("fio: bc is needed for performing math\n");
1994 free(buf);
1995 return NULL;
1996 }
1997
1998 sprintf(buf, "echo %s | %s", tmp, BC_APP);
1999 f = popen(buf, "r");
2000 if (!f) {
2001 free(buf);
2002 return NULL;
2003 }
2004
2005 ret = fread(buf, 1, 128, f);
2006 if (ret <= 0) {
2007 free(buf);
2008 return NULL;
2009 }
2010
2011 buf[ret - 1] = '\0';
2012 strcat(opt, buf);
2013 strcpy(buf, opt);
2014 pclose(f);
2015 free(str);
2016 return buf;
2017}
2018
Jens Axboe74929ac2009-08-05 11:42:37 +02002019/*
2020 * Look for reserved variable names and replace them with real values
2021 */
2022static char *fio_keyword_replace(char *opt)
2023{
2024 char *s;
2025 int i;
2026
2027 for (i = 0; fio_keywords[i].word != NULL; i++) {
2028 struct fio_keyword *kw = &fio_keywords[i];
2029
2030 while ((s = strstr(opt, kw->word)) != NULL) {
2031 char *new = malloc(strlen(opt) + 1);
2032 char *o_org = opt;
2033 int olen = s - opt;
2034 int len;
2035
2036 /*
2037 * Copy part of the string before the keyword and
2038 * sprintf() the replacement after it.
2039 */
2040 memcpy(new, opt, olen);
2041 len = sprintf(new + olen, "%s", kw->replace);
2042
2043 /*
2044 * If there's more in the original string, copy that
2045 * in too
2046 */
2047 opt += strlen(kw->word) + olen;
2048 if (strlen(opt))
2049 memcpy(new + olen + len, opt, opt - o_org - 1);
2050
2051 /*
2052 * replace opt and free the old opt
2053 */
2054 opt = new;
Jens Axboe9ac8a792009-11-13 21:23:07 +01002055 //free(o_org);
Jens Axboe7a958bd2009-11-13 12:33:54 +01002056
2057 /*
2058 * Check for potential math and invoke bc, if possible
2059 */
2060 opt = bc_calc(opt);
Jens Axboe74929ac2009-08-05 11:42:37 +02002061 }
2062 }
2063
Jens Axboe7a958bd2009-11-13 12:33:54 +01002064 return opt;
Jens Axboe74929ac2009-08-05 11:42:37 +02002065}
2066
Jens Axboe3b8b7132008-06-10 19:46:23 +02002067int fio_options_parse(struct thread_data *td, char **opts, int num_opts)
Jens Axboe214e1ec2007-03-15 10:48:13 +01002068{
Jens Axboe3b8b7132008-06-10 19:46:23 +02002069 int i, ret;
2070
2071 sort_options(opts, options, num_opts);
2072
Jens Axboe74929ac2009-08-05 11:42:37 +02002073 for (ret = 0, i = 0; i < num_opts; i++) {
2074 opts[i] = fio_keyword_replace(opts[i]);
Jens Axboe07b32322010-03-05 09:48:44 +01002075 ret |= parse_option(opts[i], options, td);
Jens Axboe74929ac2009-08-05 11:42:37 +02002076 }
Jens Axboe3b8b7132008-06-10 19:46:23 +02002077
2078 return ret;
Jens Axboe214e1ec2007-03-15 10:48:13 +01002079}
2080
2081int fio_cmd_option_parse(struct thread_data *td, const char *opt, char *val)
2082{
Jens Axboe07b32322010-03-05 09:48:44 +01002083 return parse_cmd_option(opt, val, options, td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01002084}
2085
2086void fio_fill_default_options(struct thread_data *td)
2087{
2088 fill_default_options(td, options);
2089}
2090
2091int fio_show_option_help(const char *opt)
2092{
Jens Axboe07b32322010-03-05 09:48:44 +01002093 return show_cmd_help(options, opt);
Jens Axboe214e1ec2007-03-15 10:48:13 +01002094}
Jens Axboed23bb322007-03-23 15:57:56 +01002095
2096static void __options_mem(struct thread_data *td, int alloc)
2097{
2098 struct thread_options *o = &td->o;
2099 struct fio_option *opt;
2100 char **ptr;
2101 int i;
2102
2103 for (i = 0, opt = &options[0]; opt->name; i++, opt = &options[i]) {
2104 if (opt->type != FIO_OPT_STR_STORE)
2105 continue;
2106
2107 ptr = (void *) o + opt->off1;
2108 if (*ptr) {
2109 if (alloc)
2110 *ptr = strdup(*ptr);
2111 else {
2112 free(*ptr);
2113 *ptr = NULL;
2114 }
2115 }
2116 }
2117}
2118
2119/*
2120 * dupe FIO_OPT_STR_STORE options
2121 */
2122void options_mem_dupe(struct thread_data *td)
2123{
2124 __options_mem(td, 1);
2125}
2126
Jens Axboe22d66212007-03-27 20:06:25 +02002127void options_mem_free(struct thread_data fio_unused *td)
Jens Axboed23bb322007-03-23 15:57:56 +01002128{
Jens Axboe22d66212007-03-27 20:06:25 +02002129#if 0
Jens Axboed23bb322007-03-23 15:57:56 +01002130 __options_mem(td, 0);
Jens Axboe22d66212007-03-27 20:06:25 +02002131#endif
Jens Axboed23bb322007-03-23 15:57:56 +01002132}
Jens Axboed6978a32009-07-18 21:04:09 +02002133
2134unsigned int fio_get_kb_base(void *data)
2135{
2136 struct thread_data *td = data;
2137 unsigned int kb_base = 0;
2138
2139 if (td)
2140 kb_base = td->o.kb_base;
2141 if (!kb_base)
2142 kb_base = 1024;
2143
2144 return kb_base;
2145}
Jens Axboe9f988e22010-03-04 10:42:38 +01002146
Jens Axboe07b32322010-03-05 09:48:44 +01002147int add_option(struct fio_option *o)
Jens Axboe9f988e22010-03-04 10:42:38 +01002148{
Jens Axboe07b32322010-03-05 09:48:44 +01002149 struct fio_option *__o;
2150 int opt_index = 0;
2151
2152 __o = options;
2153 while (__o->name) {
2154 opt_index++;
2155 __o++;
2156 }
2157
2158 memcpy(&options[opt_index], o, sizeof(*o));
2159 return 0;
Jens Axboe9f988e22010-03-04 10:42:38 +01002160}
Jens Axboee2de69d2010-03-04 14:05:48 +01002161
Jens Axboe07b32322010-03-05 09:48:44 +01002162void invalidate_profile_options(const char *prof_name)
Jens Axboee2de69d2010-03-04 14:05:48 +01002163{
Jens Axboe07b32322010-03-05 09:48:44 +01002164 struct fio_option *o;
Jens Axboee2de69d2010-03-04 14:05:48 +01002165
Jens Axboe07b32322010-03-05 09:48:44 +01002166 o = options;
2167 while (o->name) {
2168 if (o->prof_name && !strcmp(o->prof_name, prof_name)) {
2169 o->type = FIO_OPT_INVALID;
2170 o->prof_name = NULL;
2171 }
2172 o++;
Jens Axboee2de69d2010-03-04 14:05:48 +01002173 }
2174}
Jens Axboef5b6bb82010-03-05 10:09:59 +01002175
2176void add_opt_posval(const char *optname, const char *ival, const char *help)
2177{
2178 struct fio_option *o;
2179 unsigned int i;
2180
2181 o = find_option(options, optname);
2182 if (!o)
2183 return;
2184
2185 for (i = 0; i < PARSE_MAX_VP; i++) {
2186 if (o->posval[i].ival)
2187 continue;
2188
2189 o->posval[i].ival = ival;
2190 o->posval[i].help = help;
2191 break;
2192 }
2193}
2194
2195void del_opt_posval(const char *optname, const char *ival)
2196{
2197 struct fio_option *o;
2198 unsigned int i;
2199
2200 o = find_option(options, optname);
2201 if (!o)
2202 return;
2203
2204 for (i = 0; i < PARSE_MAX_VP; i++) {
2205 if (!o->posval[i].ival)
2206 continue;
2207 if (strcmp(o->posval[i].ival, ival))
2208 continue;
2209
2210 o->posval[i].ival = NULL;
2211 o->posval[i].help = NULL;
2212 }
2213}