blob: 5d6b0a904f8348af3ccd649054b24132e29de20d [file] [log] [blame]
Jens Axboe906c8d72006-06-13 09:37:56 +02001/*
Jens Axboecb2c86f2006-10-26 13:48:34 +02002 * This file contains job initialization and setup functions.
Jens Axboe906c8d72006-06-13 09:37:56 +02003 */
Jens Axboeebac4652005-12-08 15:25:21 +01004#include <stdio.h>
5#include <stdlib.h>
6#include <unistd.h>
7#include <fcntl.h>
8#include <ctype.h>
9#include <string.h>
10#include <errno.h>
Jens Axboeb4692822006-10-27 13:43:22 +020011#include <getopt.h>
12#include <assert.h>
Jens Axboeebac4652005-12-08 15:25:21 +010013#include <sys/ipc.h>
14#include <sys/shm.h>
15#include <sys/types.h>
16#include <sys/stat.h>
17
18#include "fio.h"
Jens Axboecb2c86f2006-10-26 13:48:34 +020019#include "parse.h"
Jens Axboeebac4652005-12-08 15:25:21 +010020
Jens Axboeee738492007-01-10 11:23:16 +010021#define FIO_RANDSEED (0xb1899bedUL)
Jens Axboeebac4652005-12-08 15:25:21 +010022
Jens Axboee1f36502006-10-27 10:54:08 +020023#define td_var_offset(var) ((size_t) &((struct thread_data *)0)->var)
24
Jens Axboeb4692822006-10-27 13:43:22 +020025static int str_rw_cb(void *, const char *);
26static int str_ioengine_cb(void *, const char *);
27static int str_mem_cb(void *, const char *);
28static int str_verify_cb(void *, const char *);
Jens Axboee1f36502006-10-27 10:54:08 +020029static int str_lockmem_cb(void *, unsigned long *);
Jens Axboe34cfcda2006-11-03 14:00:45 +010030#ifdef FIO_HAVE_IOPRIO
Jens Axboee1f36502006-10-27 10:54:08 +020031static int str_prio_cb(void *, unsigned int *);
32static int str_prioclass_cb(void *, unsigned int *);
Jens Axboe34cfcda2006-11-03 14:00:45 +010033#endif
Jens Axboee1f36502006-10-27 10:54:08 +020034static int str_exitall_cb(void);
35static int str_cpumask_cb(void *, unsigned int *);
36
Jens Axboeee738492007-01-10 11:23:16 +010037#define __stringify_1(x) #x
38#define __stringify(x) __stringify_1(x)
39
Jens Axboee1f36502006-10-27 10:54:08 +020040/*
41 * Map of job/command line options
42 */
43static struct fio_option options[] = {
44 {
45 .name = "name",
46 .type = FIO_OPT_STR_STORE,
47 .off1 = td_var_offset(name),
Jens Axboefd28ca42007-01-09 21:20:13 +010048 .help = "Name of this job",
Jens Axboee1f36502006-10-27 10:54:08 +020049 },
50 {
51 .name = "directory",
52 .type = FIO_OPT_STR_STORE,
53 .off1 = td_var_offset(directory),
Jens Axboefd28ca42007-01-09 21:20:13 +010054 .help = "Directory to store files in",
Jens Axboee1f36502006-10-27 10:54:08 +020055 },
56 {
57 .name = "filename",
58 .type = FIO_OPT_STR_STORE,
59 .off1 = td_var_offset(filename),
Jens Axboefd28ca42007-01-09 21:20:13 +010060 .help = "Force the use of a specific file",
Jens Axboee1f36502006-10-27 10:54:08 +020061 },
62 {
63 .name = "rw",
64 .type = FIO_OPT_STR,
65 .cb = str_rw_cb,
Jens Axboe15f79182007-01-10 12:26:18 +010066 .help = "IO direction",
Jens Axboeee738492007-01-10 11:23:16 +010067 .def = "read",
Jens Axboe15f79182007-01-10 12:26:18 +010068 .posval = { "read", "write", "randwrite", "randread", "rw",
69 "randrw", },
Jens Axboee1f36502006-10-27 10:54:08 +020070 },
71 {
72 .name = "ioengine",
73 .type = FIO_OPT_STR,
74 .cb = str_ioengine_cb,
Jens Axboe15f79182007-01-10 12:26:18 +010075 .help = "IO engine to use",
Jens Axboeee738492007-01-10 11:23:16 +010076 .def = "sync",
Jens Axboe15f79182007-01-10 12:26:18 +010077 .posval = { "sync", "libaio", "posixaio", "mmap", "splice",
78 "sg", "null", },
Jens Axboee1f36502006-10-27 10:54:08 +020079 },
80 {
Jens Axboe03b74b32007-01-11 11:04:31 +010081 .name = "iodepth",
82 .type = FIO_OPT_INT,
83 .off1 = td_var_offset(iodepth),
84 .help = "Amount of IO buffers to keep in flight",
85 .def = "1",
86 },
87 {
88 .name = "size",
89 .type = FIO_OPT_STR_VAL,
90 .off1 = td_var_offset(total_file_size),
91 .help = "Size of device or file",
92 },
93 {
94 .name = "bs",
95 .type = FIO_OPT_STR_VAL_INT,
96 .off1 = td_var_offset(bs[DDIR_READ]),
97 .off2 = td_var_offset(bs[DDIR_WRITE]),
98 .help = "Block size unit",
99 .def = "4k",
100 },
101 {
102 .name = "bsrange",
103 .type = FIO_OPT_RANGE,
104 .off1 = td_var_offset(min_bs[DDIR_READ]),
105 .off2 = td_var_offset(max_bs[DDIR_READ]),
106 .off3 = td_var_offset(min_bs[DDIR_WRITE]),
107 .off4 = td_var_offset(max_bs[DDIR_WRITE]),
108 .help = "Set block size range (in more detail than bs)",
109 },
110 {
111 .name = "bs_unaligned",
112 .type = FIO_OPT_STR_SET,
113 .off1 = td_var_offset(bs_unaligned),
114 .help = "Don't sector align IO buffer sizes",
115 },
116 {
117 .name = "offset",
118 .type = FIO_OPT_STR_VAL,
119 .off1 = td_var_offset(start_offset),
120 .help = "Start IO from this offset",
121 .def = "0",
122 },
123 {
124 .name = "randrepeat",
125 .type = FIO_OPT_BOOL,
126 .off1 = td_var_offset(rand_repeatable),
127 .help = "Use repeatable random IO pattern",
128 .def = "1",
129 },
130 {
131 .name = "norandommap",
132 .type = FIO_OPT_STR_SET,
133 .off1 = td_var_offset(norandommap),
134 .help = "Accept potential duplicate random blocks",
135 },
136 {
137 .name = "nrfiles",
138 .type = FIO_OPT_INT,
139 .off1 = td_var_offset(nr_files),
140 .help = "Split job workload between this number of files",
141 .def = "1",
142 },
143 {
144 .name = "fsync",
145 .type = FIO_OPT_INT,
146 .off1 = td_var_offset(fsync_blocks),
147 .help = "Issue fsync for writes every given number of blocks",
148 .def = "0",
149 },
150 {
151 .name = "direct",
152 .type = FIO_OPT_BOOL,
153 .off1 = td_var_offset(odirect),
Jens Axboe76a43db2007-01-11 13:24:44 +0100154 .help = "Use O_DIRECT IO (negates buffered)",
155 .def = "0",
156 },
157 {
158 .name = "buffered",
159 .type = FIO_OPT_BOOL,
160 .off1 = td_var_offset(odirect),
161 .neg = 1,
162 .help = "Use buffered IO (negates direct)",
Jens Axboe03b74b32007-01-11 11:04:31 +0100163 .def = "1",
164 },
165 {
166 .name = "overwrite",
167 .type = FIO_OPT_BOOL,
168 .off1 = td_var_offset(overwrite),
169 .help = "When writing, set whether to overwrite current data",
170 .def = "0",
171 },
172 {
173 .name = "loops",
174 .type = FIO_OPT_INT,
175 .off1 = td_var_offset(loops),
176 .help = "Number of times to run the job",
177 .def = "1",
178 },
179 {
180 .name = "numjobs",
181 .type = FIO_OPT_INT,
182 .off1 = td_var_offset(numjobs),
183 .help = "Duplicate this job this many times",
184 .def = "1",
185 },
186 {
187 .name = "startdelay",
188 .type = FIO_OPT_INT,
189 .off1 = td_var_offset(start_delay),
190 .help = "Only start job when this period has passed",
191 .def = "0",
192 },
193 {
194 .name = "runtime",
195 .alias = "timeout",
196 .type = FIO_OPT_STR_VAL_TIME,
197 .off1 = td_var_offset(timeout),
198 .help = "Stop workload when this amount of time has passed",
199 .def = "0",
200 },
201 {
Jens Axboee1f36502006-10-27 10:54:08 +0200202 .name = "mem",
203 .type = FIO_OPT_STR,
204 .cb = str_mem_cb,
Jens Axboe15f79182007-01-10 12:26:18 +0100205 .help = "Backing type for IO buffers",
Jens Axboeee738492007-01-10 11:23:16 +0100206 .def = "malloc",
Jens Axboe15f79182007-01-10 12:26:18 +0100207 .posval = { "malloc", "shm", "shmhuge", "mmap", "mmaphuge", },
Jens Axboee1f36502006-10-27 10:54:08 +0200208 },
209 {
210 .name = "verify",
211 .type = FIO_OPT_STR,
212 .cb = str_verify_cb,
Jens Axboe15f79182007-01-10 12:26:18 +0100213 .help = "Verify sum function",
Jens Axboeee738492007-01-10 11:23:16 +0100214 .def = "0",
Jens Axboe15f79182007-01-10 12:26:18 +0100215 .posval = { "crc32", "md5", },
Jens Axboee1f36502006-10-27 10:54:08 +0200216 },
217 {
218 .name = "write_iolog",
Jens Axboe076efc72006-10-27 11:24:25 +0200219 .type = FIO_OPT_STR_STORE,
220 .off1 = td_var_offset(write_iolog_file),
Jens Axboefd28ca42007-01-09 21:20:13 +0100221 .help = "Store IO pattern to file",
Jens Axboee1f36502006-10-27 10:54:08 +0200222 },
223 {
Jens Axboe076efc72006-10-27 11:24:25 +0200224 .name = "read_iolog",
Jens Axboee1f36502006-10-27 10:54:08 +0200225 .type = FIO_OPT_STR_STORE,
Jens Axboe076efc72006-10-27 11:24:25 +0200226 .off1 = td_var_offset(read_iolog_file),
Jens Axboefd28ca42007-01-09 21:20:13 +0100227 .help = "Playback IO pattern from file",
Jens Axboee1f36502006-10-27 10:54:08 +0200228 },
229 {
230 .name = "exec_prerun",
231 .type = FIO_OPT_STR_STORE,
232 .off1 = td_var_offset(exec_prerun),
Jens Axboefd28ca42007-01-09 21:20:13 +0100233 .help = "Execute this file prior to running job",
Jens Axboee1f36502006-10-27 10:54:08 +0200234 },
235 {
236 .name = "exec_postrun",
237 .type = FIO_OPT_STR_STORE,
238 .off1 = td_var_offset(exec_postrun),
Jens Axboefd28ca42007-01-09 21:20:13 +0100239 .help = "Execute this file after running job",
Jens Axboee1f36502006-10-27 10:54:08 +0200240 },
241#ifdef FIO_HAVE_IOSCHED_SWITCH
242 {
243 .name = "ioscheduler",
244 .type = FIO_OPT_STR_STORE,
245 .off1 = td_var_offset(ioscheduler),
Jens Axboefd28ca42007-01-09 21:20:13 +0100246 .help = "Use this IO scheduler on the backing device",
Jens Axboee1f36502006-10-27 10:54:08 +0200247 },
248#endif
249 {
Jens Axboee1f36502006-10-27 10:54:08 +0200250 .name = "zonesize",
251 .type = FIO_OPT_STR_VAL,
252 .off1 = td_var_offset(zone_size),
Jens Axboefd28ca42007-01-09 21:20:13 +0100253 .help = "Give size of an IO zone",
Jens Axboeee738492007-01-10 11:23:16 +0100254 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200255 },
256 {
257 .name = "zoneskip",
258 .type = FIO_OPT_STR_VAL,
259 .off1 = td_var_offset(zone_skip),
Jens Axboefd28ca42007-01-09 21:20:13 +0100260 .help = "Space between IO zones",
Jens Axboeee738492007-01-10 11:23:16 +0100261 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200262 },
263 {
264 .name = "lockmem",
265 .type = FIO_OPT_STR_VAL,
266 .cb = str_lockmem_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100267 .help = "Lock down this amount of memory",
Jens Axboeee738492007-01-10 11:23:16 +0100268 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200269 },
270 {
Jens Axboee1f36502006-10-27 10:54:08 +0200271 .name = "rwmixcycle",
272 .type = FIO_OPT_INT,
273 .off1 = td_var_offset(rwmixcycle),
Jens Axboeee738492007-01-10 11:23:16 +0100274 .help = "Cycle period for mixed read/write workloads (msec)",
275 .def = "500",
Jens Axboee1f36502006-10-27 10:54:08 +0200276 },
277 {
278 .name = "rwmixread",
279 .type = FIO_OPT_INT,
280 .off1 = td_var_offset(rwmixread),
Jens Axboeee738492007-01-10 11:23:16 +0100281 .maxval = 100,
Jens Axboefd28ca42007-01-09 21:20:13 +0100282 .help = "Percentage of mixed workload that is reads",
Jens Axboeee738492007-01-10 11:23:16 +0100283 .def = "50",
Jens Axboee1f36502006-10-27 10:54:08 +0200284 },
285 {
286 .name = "rwmixwrite",
287 .type = FIO_OPT_INT,
288 .off1 = td_var_offset(rwmixwrite),
Jens Axboeee738492007-01-10 11:23:16 +0100289 .maxval = 100,
Jens Axboefd28ca42007-01-09 21:20:13 +0100290 .help = "Percentage of mixed workload that is writes",
Jens Axboeee738492007-01-10 11:23:16 +0100291 .def = "50",
Jens Axboee1f36502006-10-27 10:54:08 +0200292 },
293 {
294 .name = "nice",
295 .type = FIO_OPT_INT,
296 .off1 = td_var_offset(nice),
Jens Axboefd28ca42007-01-09 21:20:13 +0100297 .help = "Set job CPU nice value",
Jens Axboe15f79182007-01-10 12:26:18 +0100298 .minval = -19,
Jens Axboeee738492007-01-10 11:23:16 +0100299 .maxval = 20,
300 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200301 },
302#ifdef FIO_HAVE_IOPRIO
303 {
304 .name = "prio",
305 .type = FIO_OPT_INT,
306 .cb = str_prio_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100307 .help = "Set job IO priority value",
Jens Axboe15f79182007-01-10 12:26:18 +0100308 .minval = 0,
309 .maxval = 7,
Jens Axboee1f36502006-10-27 10:54:08 +0200310 },
311 {
312 .name = "prioclass",
313 .type = FIO_OPT_INT,
314 .cb = str_prioclass_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100315 .help = "Set job IO priority class",
Jens Axboe15f79182007-01-10 12:26:18 +0100316 .minval = 0,
317 .maxval = 3,
Jens Axboee1f36502006-10-27 10:54:08 +0200318 },
319#endif
320 {
321 .name = "thinktime",
322 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100323 .off1 = td_var_offset(thinktime),
Jens Axboefd28ca42007-01-09 21:20:13 +0100324 .help = "Idle time between IO buffers",
Jens Axboeee738492007-01-10 11:23:16 +0100325 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200326 },
327 {
Jens Axboe9c1f7432007-01-03 20:43:19 +0100328 .name = "thinktime_blocks",
329 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100330 .off1 = td_var_offset(thinktime_blocks),
Jens Axboefd28ca42007-01-09 21:20:13 +0100331 .help = "IO buffer period between 'thinktime'",
Jens Axboeee738492007-01-10 11:23:16 +0100332 .def = "1",
Jens Axboe9c1f7432007-01-03 20:43:19 +0100333 },
334 {
Jens Axboee1f36502006-10-27 10:54:08 +0200335 .name = "rate",
336 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100337 .off1 = td_var_offset(rate),
Jens Axboefd28ca42007-01-09 21:20:13 +0100338 .help = "Set bandwidth rate",
Jens Axboee1f36502006-10-27 10:54:08 +0200339 },
340 {
341 .name = "ratemin",
342 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100343 .off1 = td_var_offset(ratemin),
Jens Axboefd28ca42007-01-09 21:20:13 +0100344 .help = "The bottom limit accepted",
Jens Axboee1f36502006-10-27 10:54:08 +0200345 },
346 {
347 .name = "ratecycle",
348 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100349 .off1 = td_var_offset(ratecycle),
Jens Axboe6da1fa72007-01-10 11:27:48 +0100350 .help = "Window average for rate limits (msec)",
Jens Axboeee738492007-01-10 11:23:16 +0100351 .def = "1000",
Jens Axboee1f36502006-10-27 10:54:08 +0200352 },
353 {
Jens Axboee1f36502006-10-27 10:54:08 +0200354 .name = "invalidate",
Jens Axboe13335dd2007-01-10 13:14:02 +0100355 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100356 .off1 = td_var_offset(invalidate_cache),
Jens Axboefd28ca42007-01-09 21:20:13 +0100357 .help = "Invalidate buffer/page cache prior to running job",
Jens Axboeee738492007-01-10 11:23:16 +0100358 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200359 },
360 {
361 .name = "sync",
Jens Axboe13335dd2007-01-10 13:14:02 +0100362 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100363 .off1 = td_var_offset(sync_io),
Jens Axboefd28ca42007-01-09 21:20:13 +0100364 .help = "Use O_SYNC for buffered writes",
Jens Axboeee738492007-01-10 11:23:16 +0100365 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200366 },
367 {
368 .name = "bwavgtime",
369 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100370 .off1 = td_var_offset(bw_avg_time),
Jens Axboeee738492007-01-10 11:23:16 +0100371 .help = "Time window over which to calculate bandwidth (msec)",
372 .def = "500",
Jens Axboee1f36502006-10-27 10:54:08 +0200373 },
374 {
375 .name = "create_serialize",
Jens Axboe13335dd2007-01-10 13:14:02 +0100376 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100377 .off1 = td_var_offset(create_serialize),
Jens Axboefd28ca42007-01-09 21:20:13 +0100378 .help = "Serialize creating of job files",
Jens Axboeee738492007-01-10 11:23:16 +0100379 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200380 },
381 {
382 .name = "create_fsync",
Jens Axboe13335dd2007-01-10 13:14:02 +0100383 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100384 .off1 = td_var_offset(create_fsync),
Jens Axboefd28ca42007-01-09 21:20:13 +0100385 .help = "Fsync file after creation",
Jens Axboeee738492007-01-10 11:23:16 +0100386 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200387 },
388 {
Jens Axboee1f36502006-10-27 10:54:08 +0200389 .name = "cpuload",
390 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100391 .off1 = td_var_offset(cpuload),
Jens Axboefd28ca42007-01-09 21:20:13 +0100392 .help = "Use this percentage of CPU",
Jens Axboee1f36502006-10-27 10:54:08 +0200393 },
394 {
395 .name = "cpuchunks",
396 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100397 .off1 = td_var_offset(cpucycle),
Jens Axboefd28ca42007-01-09 21:20:13 +0100398 .help = "Length of the CPU burn cycles",
Jens Axboee1f36502006-10-27 10:54:08 +0200399 },
Jens Axboee1f36502006-10-27 10:54:08 +0200400#ifdef FIO_HAVE_CPU_AFFINITY
401 {
402 .name = "cpumask",
403 .type = FIO_OPT_INT,
404 .cb = str_cpumask_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100405 .help = "CPU affinity mask",
Jens Axboee1f36502006-10-27 10:54:08 +0200406 },
407#endif
408 {
409 .name = "end_fsync",
Jens Axboe13335dd2007-01-10 13:14:02 +0100410 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100411 .off1 = td_var_offset(end_fsync),
Jens Axboefd28ca42007-01-09 21:20:13 +0100412 .help = "Include fsync at the end of job",
Jens Axboeee738492007-01-10 11:23:16 +0100413 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200414 },
415 {
416 .name = "unlink",
Jens Axboe13335dd2007-01-10 13:14:02 +0100417 .type = FIO_OPT_BOOL,
Jens Axboee1f36502006-10-27 10:54:08 +0200418 .off1 = td_var_offset(unlink),
Jens Axboeee738492007-01-10 11:23:16 +0100419 .help = "Unlink created files after job has completed",
420 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200421 },
422 {
423 .name = "exitall",
424 .type = FIO_OPT_STR_SET,
425 .cb = str_exitall_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100426 .help = "Terminate all jobs when one exits",
Jens Axboee1f36502006-10-27 10:54:08 +0200427 },
428 {
429 .name = "stonewall",
430 .type = FIO_OPT_STR_SET,
431 .off1 = td_var_offset(stonewall),
Jens Axboefd28ca42007-01-09 21:20:13 +0100432 .help = "Insert a hard barrier between this job and previous",
Jens Axboee1f36502006-10-27 10:54:08 +0200433 },
434 {
435 .name = "thread",
436 .type = FIO_OPT_STR_SET,
Jens Axboed9bb3b82007-01-10 20:30:53 +0100437 .off1 = td_var_offset(use_thread),
Jens Axboefd28ca42007-01-09 21:20:13 +0100438 .help = "Use threads instead of forks",
Jens Axboee1f36502006-10-27 10:54:08 +0200439 },
440 {
441 .name = "write_bw_log",
442 .type = FIO_OPT_STR_SET,
443 .off1 = td_var_offset(write_bw_log),
Jens Axboefd28ca42007-01-09 21:20:13 +0100444 .help = "Write log of bandwidth during run",
Jens Axboee1f36502006-10-27 10:54:08 +0200445 },
446 {
447 .name = "write_lat_log",
448 .type = FIO_OPT_STR_SET,
449 .off1 = td_var_offset(write_lat_log),
Jens Axboefd28ca42007-01-09 21:20:13 +0100450 .help = "Write log of latency during run",
Jens Axboee1f36502006-10-27 10:54:08 +0200451 },
452 {
Jens Axboe56bb17f2006-12-20 20:27:36 +0100453 .name = "hugepage-size",
454 .type = FIO_OPT_STR_VAL,
455 .off1 = td_var_offset(hugepage_size),
Jens Axboefd28ca42007-01-09 21:20:13 +0100456 .help = "When using hugepages, specify size of each page",
Jens Axboeee738492007-01-10 11:23:16 +0100457 .def = __stringify(FIO_HUGE_PAGE),
Jens Axboe56bb17f2006-12-20 20:27:36 +0100458 },
459 {
Jens Axboee1f36502006-10-27 10:54:08 +0200460 .name = NULL,
461 },
462};
463
Jens Axboeb4692822006-10-27 13:43:22 +0200464#define FIO_JOB_OPTS (sizeof(options) / sizeof(struct fio_option))
465#define FIO_CMD_OPTS (16)
466#define FIO_GETOPT_JOB (0x89988998)
467
468/*
469 * Command line options. These will contain the above, plus a few
470 * extra that only pertain to fio itself and not jobs.
471 */
472static struct option long_options[FIO_JOB_OPTS + FIO_CMD_OPTS] = {
473 {
474 .name = "output",
475 .has_arg = required_argument,
476 .val = 'o',
477 },
478 {
479 .name = "timeout",
480 .has_arg = required_argument,
481 .val = 't',
482 },
483 {
484 .name = "latency-log",
485 .has_arg = required_argument,
486 .val = 'l',
487 },
488 {
489 .name = "bandwidth-log",
490 .has_arg = required_argument,
491 .val = 'b',
492 },
493 {
494 .name = "minimal",
495 .has_arg = optional_argument,
496 .val = 'm',
497 },
498 {
499 .name = "version",
500 .has_arg = no_argument,
501 .val = 'v',
502 },
503 {
Jens Axboefd28ca42007-01-09 21:20:13 +0100504 .name = "help",
505 .has_arg = no_argument,
506 .val = 'h',
507 },
508 {
509 .name = "cmdhelp",
510 .has_arg = required_argument,
511 .val = 'c',
512 },
513 {
Jens Axboeb4692822006-10-27 13:43:22 +0200514 .name = NULL,
515 },
516};
517
Jens Axboeee738492007-01-10 11:23:16 +0100518static int def_timeout = 0;
Jens Axboe972cfd22006-06-09 11:08:56 +0200519
Jens Axboe5cd033b2007-01-09 08:19:01 +0100520static char fio_version_string[] = "fio 1.11";
Jens Axboeebac4652005-12-08 15:25:21 +0100521
Jens Axboe972cfd22006-06-09 11:08:56 +0200522static char **ini_file;
Jens Axboeebac4652005-12-08 15:25:21 +0100523static int max_jobs = MAX_JOBS;
524
525struct thread_data def_thread;
526struct thread_data *threads = NULL;
527
Jens Axboeebac4652005-12-08 15:25:21 +0100528int exitall_on_terminate = 0;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200529int terse_output = 0;
Jens Axboec04f7ec2006-05-31 10:13:16 +0200530unsigned long long mlock_size = 0;
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200531FILE *f_out = NULL;
532FILE *f_err = NULL;
Jens Axboeebac4652005-12-08 15:25:21 +0100533
Jens Axboeee738492007-01-10 11:23:16 +0100534static int write_lat_log = 0;
535static int write_bw_log = 0;
Jens Axboeec94ec52006-10-20 10:59:19 +0200536
Jens Axboe906c8d72006-06-13 09:37:56 +0200537/*
538 * Return a free job structure.
539 */
Jens Axboeebac4652005-12-08 15:25:21 +0100540static struct thread_data *get_new_job(int global, struct thread_data *parent)
541{
542 struct thread_data *td;
543
544 if (global)
545 return &def_thread;
546 if (thread_number >= max_jobs)
547 return NULL;
548
549 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200550 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100551
Jens Axboeebac4652005-12-08 15:25:21 +0100552 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100553 return td;
554}
555
556static void put_job(struct thread_data *td)
557{
Jens Axboe549577a2006-10-30 12:23:41 +0100558 if (td == &def_thread)
559 return;
560
Jens Axboeebac4652005-12-08 15:25:21 +0100561 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
562 thread_number--;
563}
564
Jens Axboedad915e2006-10-27 11:10:18 +0200565/*
566 * Lazy way of fixing up options that depend on each other. We could also
567 * define option callback handlers, but this is easier.
568 */
Jens Axboee1f36502006-10-27 10:54:08 +0200569static void fixup_options(struct thread_data *td)
570{
Jens Axboee1f36502006-10-27 10:54:08 +0200571 if (!td->rwmixread && td->rwmixwrite)
572 td->rwmixread = 100 - td->rwmixwrite;
Jens Axboedad915e2006-10-27 11:10:18 +0200573
Jens Axboe076efc72006-10-27 11:24:25 +0200574 if (td->write_iolog_file && td->read_iolog_file) {
575 log_err("fio: read iolog overrides write_iolog\n");
576 free(td->write_iolog_file);
577 td->write_iolog_file = NULL;
578 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100579
580 if (td->io_ops->flags & FIO_SYNCIO)
581 td->iodepth = 1;
582 else {
583 if (!td->iodepth)
584 td->iodepth = td->nr_files;
585 }
586
587 /*
588 * only really works for sequential io for now, and with 1 file
589 */
590 if (td->zone_size && !td->sequential && td->nr_files == 1)
591 td->zone_size = 0;
592
593 /*
594 * Reads can do overwrites, we always need to pre-create the file
595 */
596 if (td_read(td) || td_rw(td))
597 td->overwrite = 1;
598
Jens Axboea00735e2006-11-03 08:58:08 +0100599 if (!td->min_bs[DDIR_READ])
600 td->min_bs[DDIR_READ]= td->bs[DDIR_READ];
601 if (!td->max_bs[DDIR_READ])
602 td->max_bs[DDIR_READ] = td->bs[DDIR_READ];
603 if (!td->min_bs[DDIR_WRITE])
Jens Axboe75e6f362006-11-03 08:17:09 +0100604 td->min_bs[DDIR_WRITE]= td->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100605 if (!td->max_bs[DDIR_WRITE])
Jens Axboe75e6f362006-11-03 08:17:09 +0100606 td->max_bs[DDIR_WRITE] = td->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100607
608 td->rw_min_bs = min(td->min_bs[DDIR_READ], td->min_bs[DDIR_WRITE]);
609
Jens Axboe16b462a2006-10-30 12:35:18 +0100610 if (td_read(td) && !td_rw(td))
611 td->verify = 0;
Jens Axboebb8895e2006-10-30 15:14:48 +0100612
613 if (td->norandommap && td->verify != VERIFY_NONE) {
614 log_err("fio: norandommap given, verify disabled\n");
615 td->verify = VERIFY_NONE;
616 }
Jens Axboe690adba2006-10-30 15:25:09 +0100617 if (td->bs_unaligned && (td->odirect || td->io_ops->flags & FIO_RAWIO))
618 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100619
620 /*
621 * O_DIRECT and char doesn't mix, clear that flag if necessary.
622 */
623 if (td->filetype == FIO_TYPE_CHAR && td->odirect)
624 td->odirect = 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200625}
626
Jens Axboe906c8d72006-06-13 09:37:56 +0200627/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100628 * This function leaks the buffer
629 */
630static char *to_kmg(unsigned int val)
631{
632 char *buf = malloc(32);
Jens Axboe245142f2006-11-08 12:49:21 +0100633 char post[] = { 0, 'K', 'M', 'G', 'P', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100634 char *p = post;
635
Jens Axboe245142f2006-11-08 12:49:21 +0100636 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100637 if (val & 1023)
638 break;
639
640 val >>= 10;
641 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100642 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100643
644 snprintf(buf, 31, "%u%c", val, *p);
645 return buf;
646}
647
648/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200649 * Adds a job to the list of things todo. Sanitizes the various options
650 * to make sure we don't have conflicts, and initializes various
651 * members of td.
652 */
Jens Axboe75154842006-06-01 13:56:09 +0200653static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100654{
Jens Axboe3c9b60c2006-11-07 08:36:14 +0100655 const char *ddir_str[] = { "read", "write", "randread", "randwrite",
656 "rw", NULL, "randrw" };
Jens Axboeebac4652005-12-08 15:25:21 +0100657 struct stat sb;
Jens Axboe53cdc682006-10-18 11:50:58 +0200658 int numjobs, ddir, i;
659 struct fio_file *f;
Jens Axboeebac4652005-12-08 15:25:21 +0100660
Jens Axboeebac4652005-12-08 15:25:21 +0100661 /*
662 * the def_thread is just for options, it's not a real job
663 */
664 if (td == &def_thread)
665 return 0;
666
Jens Axboeee738492007-01-10 11:23:16 +0100667 assert(td->io_ops);
Jens Axboedf641192006-10-12 07:55:41 +0200668
Jens Axboe690adba2006-10-30 15:25:09 +0100669 if (td->odirect)
670 td->io_ops->flags |= FIO_RAWIO;
671
Jens Axboeebac4652005-12-08 15:25:21 +0100672 td->filetype = FIO_TYPE_FILE;
Jens Axboe0af7b542006-02-17 10:10:12 +0100673 if (!stat(jobname, &sb)) {
674 if (S_ISBLK(sb.st_mode))
675 td->filetype = FIO_TYPE_BD;
676 else if (S_ISCHR(sb.st_mode))
677 td->filetype = FIO_TYPE_CHAR;
678 }
Jens Axboeebac4652005-12-08 15:25:21 +0100679
Jens Axboee0a22332006-12-20 12:54:25 +0100680 fixup_options(td);
681
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200682 if (td->filename)
683 td->nr_uniq_files = 1;
684 else
685 td->nr_uniq_files = td->nr_files;
686
687 if (td->filetype == FIO_TYPE_FILE || td->filename) {
Jens Axboee9c047a2006-06-07 21:13:04 +0200688 char tmp[PATH_MAX];
Jens Axboe53cdc682006-10-18 11:50:58 +0200689 int len = 0;
Jens Axboee9c047a2006-06-07 21:13:04 +0200690
Jens Axboeef899b62006-06-06 09:31:00 +0200691 if (td->directory && td->directory[0] != '\0')
Jens Axboe8aeebd52007-01-08 10:47:43 +0100692 len = sprintf(tmp, "%s/", td->directory);
Jens Axboeebac4652005-12-08 15:25:21 +0100693
Jens Axboe53cdc682006-10-18 11:50:58 +0200694 td->files = malloc(sizeof(struct fio_file) * td->nr_files);
695
696 for_each_file(td, f, i) {
697 memset(f, 0, sizeof(*f));
698 f->fd = -1;
699
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200700 if (td->filename)
701 sprintf(tmp + len, "%s", td->filename);
702 else
703 sprintf(tmp + len, "%s.%d.%d", jobname, td->thread_number, i);
Jens Axboe53cdc682006-10-18 11:50:58 +0200704 f->file_name = strdup(tmp);
705 }
706 } else {
707 td->nr_files = 1;
708 td->files = malloc(sizeof(struct fio_file));
709 f = &td->files[0];
710
711 memset(f, 0, sizeof(*f));
712 f->fd = -1;
713 f->file_name = strdup(jobname);
714 }
715
716 for_each_file(td, f, i) {
717 f->file_size = td->total_file_size / td->nr_files;
718 f->file_offset = td->start_offset;
719 }
720
Jens Axboebbfd6b02006-06-07 19:42:54 +0200721 fio_sem_init(&td->mutex, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100722
723 td->clat_stat[0].min_val = td->clat_stat[1].min_val = ULONG_MAX;
724 td->slat_stat[0].min_val = td->slat_stat[1].min_val = ULONG_MAX;
725 td->bw_stat[0].min_val = td->bw_stat[1].min_val = ULONG_MAX;
726
Jens Axboeebac4652005-12-08 15:25:21 +0100727 if (td->stonewall && td->thread_number > 1)
728 groupid++;
729
730 td->groupid = groupid;
731
732 if (setup_rate(td))
733 goto err;
734
Jens Axboeec94ec52006-10-20 10:59:19 +0200735 if (td->write_lat_log) {
Jens Axboeebac4652005-12-08 15:25:21 +0100736 setup_log(&td->slat_log);
737 setup_log(&td->clat_log);
738 }
Jens Axboeec94ec52006-10-20 10:59:19 +0200739 if (td->write_bw_log)
Jens Axboeebac4652005-12-08 15:25:21 +0100740 setup_log(&td->bw_log);
741
Jens Axboeb4692822006-10-27 13:43:22 +0200742 if (!td->name)
743 td->name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200744
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200745 ddir = td->ddir + (!td->sequential << 1) + (td->iomix << 2);
Jens Axboe75154842006-06-01 13:56:09 +0200746
Jens Axboec6ae0a52006-06-12 11:04:44 +0200747 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200748 if (!job_add_num) {
Jens Axboe2866c822006-10-09 15:57:48 +0200749 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200750 fprintf(f_out, "%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->name, td->cpuload, td->cpucycle);
Jens Axboef8977ee2006-11-06 14:03:03 +0100751 else {
752 char *c1, *c2, *c3, *c4;
753
754 c1 = to_kmg(td->min_bs[DDIR_READ]);
755 c2 = to_kmg(td->max_bs[DDIR_READ]);
756 c3 = to_kmg(td->min_bs[DDIR_WRITE]);
757 c4 = to_kmg(td->max_bs[DDIR_WRITE]);
758
Jens Axboe1e97cce2006-12-05 11:44:16 +0100759 fprintf(f_out, "%s: (g=%d): rw=%s, odir=%u, bs=%s-%s/%s-%s, rate=%u, ioengine=%s, iodepth=%u\n", td->name, td->groupid, ddir_str[ddir], td->odirect, c1, c2, c3, c4, td->rate, td->io_ops->name, td->iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100760
761 free(c1);
762 free(c2);
763 free(c3);
764 free(c4);
765 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200766 } else if (job_add_num == 1)
Jens Axboec6ae0a52006-06-12 11:04:44 +0200767 fprintf(f_out, "...\n");
768 }
Jens Axboeebac4652005-12-08 15:25:21 +0100769
770 /*
771 * recurse add identical jobs, clear numjobs and stonewall options
772 * as they don't apply to sub-jobs
773 */
774 numjobs = td->numjobs;
775 while (--numjobs) {
776 struct thread_data *td_new = get_new_job(0, td);
777
778 if (!td_new)
779 goto err;
780
781 td_new->numjobs = 1;
782 td_new->stonewall = 0;
Jens Axboe75154842006-06-01 13:56:09 +0200783 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100784
Jens Axboe75154842006-06-01 13:56:09 +0200785 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100786 goto err;
787 }
788 return 0;
789err:
790 put_job(td);
791 return -1;
792}
793
Jens Axboe906c8d72006-06-13 09:37:56 +0200794/*
795 * Initialize the various random states we need (random io, block size ranges,
796 * read/write mix, etc).
797 */
Jens Axboeebac4652005-12-08 15:25:21 +0100798int init_random_state(struct thread_data *td)
799{
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200800 unsigned long seeds[4];
Jens Axboe53cdc682006-10-18 11:50:58 +0200801 int fd, num_maps, blocks, i;
Jens Axboe0ab8db82006-10-18 17:16:23 +0200802 struct fio_file *f;
Jens Axboeebac4652005-12-08 15:25:21 +0100803
Jens Axboef48b4672006-10-27 11:30:07 +0200804 if (td->io_ops->flags & FIO_CPUIO)
805 return 0;
806
Jens Axboe1ac267b2006-05-31 20:29:00 +0200807 fd = open("/dev/urandom", O_RDONLY);
Jens Axboeebac4652005-12-08 15:25:21 +0100808 if (fd == -1) {
809 td_verror(td, errno);
810 return 1;
811 }
812
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200813 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
Jens Axboeebac4652005-12-08 15:25:21 +0100814 td_verror(td, EIO);
815 close(fd);
816 return 1;
817 }
818
819 close(fd);
820
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200821 os_random_seed(seeds[0], &td->bsrange_state);
822 os_random_seed(seeds[1], &td->verify_state);
823 os_random_seed(seeds[2], &td->rwmix_state);
Jens Axboeebac4652005-12-08 15:25:21 +0100824
825 if (td->sequential)
826 return 0;
827
Jens Axboe9ebc27e2006-06-12 10:21:50 +0200828 if (td->rand_repeatable)
Jens Axboeee738492007-01-10 11:23:16 +0100829 seeds[3] = FIO_RANDSEED;
Jens Axboeebac4652005-12-08 15:25:21 +0100830
Jens Axboebb8895e2006-10-30 15:14:48 +0100831 if (!td->norandommap) {
832 for_each_file(td, f, i) {
Jens Axboea00735e2006-11-03 08:58:08 +0100833 blocks = (f->file_size + td->rw_min_bs - 1) / td->rw_min_bs;
Jens Axboec7c280e2006-11-02 20:10:33 +0100834 num_maps = (blocks + BLOCKS_PER_MAP-1)/ BLOCKS_PER_MAP;
Jens Axboebb8895e2006-10-30 15:14:48 +0100835 f->file_map = malloc(num_maps * sizeof(long));
836 f->num_maps = num_maps;
837 memset(f->file_map, 0, num_maps * sizeof(long));
838 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200839 }
Jens Axboeebac4652005-12-08 15:25:21 +0100840
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200841 os_random_seed(seeds[3], &td->random_state);
Jens Axboeebac4652005-12-08 15:25:21 +0100842 return 0;
843}
844
845static void fill_cpu_mask(os_cpu_mask_t cpumask, int cpu)
846{
847#ifdef FIO_HAVE_CPU_AFFINITY
848 unsigned int i;
849
850 CPU_ZERO(&cpumask);
851
852 for (i = 0; i < sizeof(int) * 8; i++) {
853 if ((1 << i) & cpu)
854 CPU_SET(i, &cpumask);
855 }
856#endif
857}
858
Jens Axboeebac4652005-12-08 15:25:21 +0100859static int is_empty_or_comment(char *line)
860{
861 unsigned int i;
862
863 for (i = 0; i < strlen(line); i++) {
864 if (line[i] == ';')
865 return 1;
866 if (!isspace(line[i]) && !iscntrl(line[i]))
867 return 0;
868 }
869
870 return 1;
871}
872
Jens Axboeb4692822006-10-27 13:43:22 +0200873static int str_rw_cb(void *data, const char *mem)
Jens Axboeebac4652005-12-08 15:25:21 +0100874{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200875 struct thread_data *td = data;
876
Jens Axboeebac4652005-12-08 15:25:21 +0100877 if (!strncmp(mem, "read", 4) || !strncmp(mem, "0", 1)) {
878 td->ddir = DDIR_READ;
879 td->sequential = 1;
880 return 0;
881 } else if (!strncmp(mem, "randread", 8)) {
882 td->ddir = DDIR_READ;
883 td->sequential = 0;
884 return 0;
885 } else if (!strncmp(mem, "write", 5) || !strncmp(mem, "1", 1)) {
886 td->ddir = DDIR_WRITE;
887 td->sequential = 1;
888 return 0;
889 } else if (!strncmp(mem, "randwrite", 9)) {
890 td->ddir = DDIR_WRITE;
891 td->sequential = 0;
892 return 0;
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200893 } else if (!strncmp(mem, "rw", 2)) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100894 td->ddir = DDIR_READ;
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200895 td->iomix = 1;
896 td->sequential = 1;
897 return 0;
898 } else if (!strncmp(mem, "randrw", 6)) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100899 td->ddir = DDIR_READ;
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200900 td->iomix = 1;
901 td->sequential = 0;
902 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100903 }
904
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200905 log_err("fio: data direction: read, write, randread, randwrite, rw, randrw\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100906 return 1;
907}
908
Jens Axboeb4692822006-10-27 13:43:22 +0200909static int str_verify_cb(void *data, const char *mem)
Jens Axboeebac4652005-12-08 15:25:21 +0100910{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200911 struct thread_data *td = data;
912
Jens Axboeebac4652005-12-08 15:25:21 +0100913 if (!strncmp(mem, "0", 1)) {
914 td->verify = VERIFY_NONE;
915 return 0;
916 } else if (!strncmp(mem, "md5", 3) || !strncmp(mem, "1", 1)) {
917 td->verify = VERIFY_MD5;
918 return 0;
919 } else if (!strncmp(mem, "crc32", 5)) {
920 td->verify = VERIFY_CRC32;
921 return 0;
922 }
923
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200924 log_err("fio: verify types: md5, crc32\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100925 return 1;
926}
927
Jens Axboe313cb202006-12-21 09:50:00 +0100928/*
929 * Check if mmap/mmaphuge has a :/foo/bar/file at the end. If so, return that.
930 */
931static char *get_mmap_file(const char *str)
932{
933 char *p = strstr(str, ":");
934
935 if (!p)
936 return NULL;
937
938 p++;
939 strip_blank_front(&p);
940 strip_blank_end(p);
941 return strdup(p);
942}
943
Jens Axboeb4692822006-10-27 13:43:22 +0200944static int str_mem_cb(void *data, const char *mem)
Jens Axboeebac4652005-12-08 15:25:21 +0100945{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200946 struct thread_data *td = data;
947
Jens Axboeebac4652005-12-08 15:25:21 +0100948 if (!strncmp(mem, "malloc", 6)) {
949 td->mem_type = MEM_MALLOC;
950 return 0;
Jens Axboed0bdaf42006-12-20 14:40:44 +0100951 } else if (!strncmp(mem, "mmaphuge", 8)) {
952#ifdef FIO_HAVE_HUGETLB
Jens Axboed0bdaf42006-12-20 14:40:44 +0100953 /*
954 * mmaphuge must be appended with the actual file
955 */
Jens Axboe313cb202006-12-21 09:50:00 +0100956 td->mmapfile = get_mmap_file(mem);
957 if (!td->mmapfile) {
Jens Axboed0bdaf42006-12-20 14:40:44 +0100958 log_err("fio: mmaphuge:/path/to/file\n");
959 return 1;
960 }
961
Jens Axboed0bdaf42006-12-20 14:40:44 +0100962 td->mem_type = MEM_MMAPHUGE;
963 return 0;
964#else
965 log_err("fio: mmaphuge not available\n");
966 return 1;
967#endif
Jens Axboeebac4652005-12-08 15:25:21 +0100968 } else if (!strncmp(mem, "mmap", 4)) {
Jens Axboe313cb202006-12-21 09:50:00 +0100969 /*
970 * Check if the user wants file backed memory. It's ok
971 * if there's no file given, we'll just use anon mamp then.
972 */
973 td->mmapfile = get_mmap_file(mem);
Jens Axboeebac4652005-12-08 15:25:21 +0100974 td->mem_type = MEM_MMAP;
975 return 0;
Jens Axboe74b025b2006-12-19 15:18:14 +0100976 } else if (!strncmp(mem, "shmhuge", 7)) {
977#ifdef FIO_HAVE_HUGETLB
978 td->mem_type = MEM_SHMHUGE;
979 return 0;
980#else
981 log_err("fio: shmhuge not available\n");
982 return 1;
983#endif
Jens Axboe0268b8b2006-12-20 12:48:23 +0100984 } else if (!strncmp(mem, "shm", 3)) {
985 td->mem_type = MEM_SHM;
986 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100987 }
988
Jens Axboed0bdaf42006-12-20 14:40:44 +0100989 log_err("fio: mem type: malloc, shm, shmhuge, mmap, mmaphuge\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100990 return 1;
991}
992
Jens Axboeb4692822006-10-27 13:43:22 +0200993static int str_ioengine_cb(void *data, const char *str)
Jens Axboeebac4652005-12-08 15:25:21 +0100994{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200995 struct thread_data *td = data;
996
Jens Axboe2866c822006-10-09 15:57:48 +0200997 td->io_ops = load_ioengine(td, str);
998 if (td->io_ops)
Jens Axboeebac4652005-12-08 15:25:21 +0100999 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001000
Jens Axboe08aae9a2006-11-24 12:43:49 +01001001 log_err("fio: ioengine= libaio, posixaio, sync, mmap, sgio, splice, cpu, null\n");
Jens Axboe5f350952006-11-07 15:20:59 +01001002 log_err("fio: or specify path to dynamic ioengine module\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001003 return 1;
1004}
1005
Jens Axboee1f36502006-10-27 10:54:08 +02001006static int str_lockmem_cb(void fio_unused *data, unsigned long *val)
1007{
1008 mlock_size = *val;
1009 return 0;
1010}
1011
Jens Axboe34cfcda2006-11-03 14:00:45 +01001012#ifdef FIO_HAVE_IOPRIO
Jens Axboee1f36502006-10-27 10:54:08 +02001013static int str_prioclass_cb(void *data, unsigned int *val)
1014{
1015 struct thread_data *td = data;
1016
1017 td->ioprio |= *val << IOPRIO_CLASS_SHIFT;
1018 return 0;
1019}
1020
1021static int str_prio_cb(void *data, unsigned int *val)
1022{
1023 struct thread_data *td = data;
1024
1025 td->ioprio |= *val;
1026 return 0;
1027}
Jens Axboe34cfcda2006-11-03 14:00:45 +01001028#endif
Jens Axboee1f36502006-10-27 10:54:08 +02001029
1030static int str_exitall_cb(void)
1031{
1032 exitall_on_terminate = 1;
1033 return 0;
1034}
1035
1036static int str_cpumask_cb(void *data, unsigned int *val)
1037{
1038 struct thread_data *td = data;
1039
1040 fill_cpu_mask(td->cpumask, *val);
1041 return 0;
1042}
1043
Jens Axboe07261982006-06-07 10:51:12 +02001044/*
1045 * This is our [ini] type file parser.
1046 */
Jens Axboe1e97cce2006-12-05 11:44:16 +01001047static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +01001048{
Jens Axboee1f36502006-10-27 10:54:08 +02001049 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +01001050 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +01001051 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +01001052 fpos_t off;
1053 FILE *f;
1054 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001055 int ret = 0, stonewall;
Jens Axboeebac4652005-12-08 15:25:21 +01001056
1057 f = fopen(file, "r");
1058 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +02001059 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +01001060 return 1;
1061 }
1062
1063 string = malloc(4096);
1064 name = malloc(256);
Jens Axboefee3bb42006-10-30 13:32:08 +01001065 memset(name, 0, 256);
Jens Axboeebac4652005-12-08 15:25:21 +01001066
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001067 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001068 do {
1069 p = fgets(string, 4095, f);
1070 if (!p)
Jens Axboe45410ac2006-06-07 11:10:39 +02001071 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001072 if (is_empty_or_comment(p))
1073 continue;
Jens Axboefee3bb42006-10-30 13:32:08 +01001074 if (sscanf(p, "[%255s]", name) != 1)
Jens Axboeebac4652005-12-08 15:25:21 +01001075 continue;
1076
1077 global = !strncmp(name, "global", 6);
1078
1079 name[strlen(name) - 1] = '\0';
1080
1081 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +02001082 if (!td) {
1083 ret = 1;
1084 break;
1085 }
Jens Axboeebac4652005-12-08 15:25:21 +01001086
Jens Axboe972cfd22006-06-09 11:08:56 +02001087 /*
1088 * Seperate multiple job files by a stonewall
1089 */
Jens Axboef9481912006-06-09 11:37:28 +02001090 if (!global && stonewall) {
Jens Axboe972cfd22006-06-09 11:08:56 +02001091 td->stonewall = stonewall;
1092 stonewall = 0;
1093 }
1094
Jens Axboeebac4652005-12-08 15:25:21 +01001095 fgetpos(f, &off);
1096 while ((p = fgets(string, 4096, f)) != NULL) {
1097 if (is_empty_or_comment(p))
1098 continue;
Jens Axboee1f36502006-10-27 10:54:08 +02001099
Jens Axboeb6754f92006-05-30 14:29:32 +02001100 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +01001101
1102 if (p[0] == '[')
1103 break;
1104
Jens Axboe4ae3f762006-05-30 13:35:14 +02001105 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +02001106
Jens Axboee1f36502006-10-27 10:54:08 +02001107 fgetpos(f, &off);
Jens Axboeebac4652005-12-08 15:25:21 +01001108
Jens Axboe45410ac2006-06-07 11:10:39 +02001109 /*
1110 * Don't break here, continue parsing options so we
1111 * dump all the bad ones. Makes trial/error fixups
1112 * easier on the user.
1113 */
Jens Axboe7c124ac2006-10-30 13:36:52 +01001114 ret |= parse_option(p, options, td);
Jens Axboeebac4652005-12-08 15:25:21 +01001115 }
Jens Axboeebac4652005-12-08 15:25:21 +01001116
Jens Axboe45410ac2006-06-07 11:10:39 +02001117 if (!ret) {
1118 fsetpos(f, &off);
1119 ret = add_job(td, name, 0);
Jens Axboeb1508cf2006-11-02 09:12:40 +01001120 } else {
1121 log_err("fio: job %s dropped\n", name);
1122 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +02001123 }
Jens Axboe7c124ac2006-10-30 13:36:52 +01001124 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001125
1126 free(string);
1127 free(name);
1128 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +02001129 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001130}
1131
1132static int fill_def_thread(void)
1133{
1134 memset(&def_thread, 0, sizeof(def_thread));
1135
1136 if (fio_getaffinity(getpid(), &def_thread.cpumask) == -1) {
1137 perror("sched_getaffinity");
1138 return 1;
1139 }
1140
1141 /*
Jens Axboeee738492007-01-10 11:23:16 +01001142 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +01001143 */
Jens Axboeee738492007-01-10 11:23:16 +01001144 fill_default_options(&def_thread, options);
1145
Jens Axboe972cfd22006-06-09 11:08:56 +02001146 def_thread.timeout = def_timeout;
Jens Axboeec94ec52006-10-20 10:59:19 +02001147 def_thread.write_bw_log = write_bw_log;
1148 def_thread.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +01001149
Jens Axboeebac4652005-12-08 15:25:21 +01001150#ifdef FIO_HAVE_DISK_UTIL
1151 def_thread.do_disk_util = 1;
1152#endif
1153
1154 return 0;
1155}
1156
Jens Axboe0ab8db82006-10-18 17:16:23 +02001157static void usage(void)
Jens Axboe4785f992006-05-26 03:59:10 +02001158{
1159 printf("%s\n", fio_version_string);
Jens Axboeb4692822006-10-27 13:43:22 +02001160 printf("\t--output\tWrite output to file\n");
1161 printf("\t--timeout\tRuntime in seconds\n");
1162 printf("\t--latency-log\tGenerate per-job latency logs\n");
1163 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
1164 printf("\t--minimal\tMinimal (terse) output\n");
1165 printf("\t--version\tPrint version info and exit\n");
Jens Axboefd28ca42007-01-09 21:20:13 +01001166 printf("\t--help\t\tPrint this page\n");
1167 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
Jens Axboe4785f992006-05-26 03:59:10 +02001168}
1169
Jens Axboe972cfd22006-06-09 11:08:56 +02001170static int parse_cmd_line(int argc, char *argv[])
Jens Axboeebac4652005-12-08 15:25:21 +01001171{
Jens Axboeb4692822006-10-27 13:43:22 +02001172 struct thread_data *td = NULL;
Jens Axboec2b1e752006-10-30 09:03:13 +01001173 int c, ini_idx = 0, lidx, ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001174
Jens Axboeb4692822006-10-27 13:43:22 +02001175 while ((c = getopt_long(argc, argv, "", long_options, &lidx)) != -1) {
Jens Axboeebac4652005-12-08 15:25:21 +01001176 switch (c) {
Jens Axboeb4692822006-10-27 13:43:22 +02001177 case 't':
1178 def_timeout = atoi(optarg);
1179 break;
1180 case 'l':
1181 write_lat_log = 1;
1182 break;
1183 case 'w':
1184 write_bw_log = 1;
1185 break;
1186 case 'o':
1187 f_out = fopen(optarg, "w+");
1188 if (!f_out) {
1189 perror("fopen output");
1190 exit(1);
1191 }
1192 f_err = f_out;
1193 break;
1194 case 'm':
1195 terse_output = 1;
1196 break;
1197 case 'h':
1198 usage();
1199 exit(0);
Jens Axboefd28ca42007-01-09 21:20:13 +01001200 case 'c':
Jens Axboe29fc6af2007-01-09 21:22:02 +01001201 ret = show_cmd_help(options, optarg);
1202 exit(ret);
Jens Axboeb4692822006-10-27 13:43:22 +02001203 case 'v':
1204 printf("%s\n", fio_version_string);
1205 exit(0);
1206 case FIO_GETOPT_JOB: {
1207 const char *opt = long_options[lidx].name;
1208 char *val = optarg;
1209
Jens Axboec2b1e752006-10-30 09:03:13 +01001210 if (!strncmp(opt, "name", 4) && td) {
1211 ret = add_job(td, td->name ?: "fio", 0);
1212 if (ret) {
1213 put_job(td);
1214 return 0;
1215 }
1216 td = NULL;
1217 }
Jens Axboeb4692822006-10-27 13:43:22 +02001218 if (!td) {
Jens Axboe38d0adb2006-10-30 12:21:25 +01001219 int global = !strncmp(val, "global", 6);
Jens Axboec2b1e752006-10-30 09:03:13 +01001220
1221 td = get_new_job(global, &def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001222 if (!td)
1223 return 0;
1224 }
Jens Axboe38d0adb2006-10-30 12:21:25 +01001225
Jens Axboeb1508cf2006-11-02 09:12:40 +01001226 ret = parse_cmd_option(opt, val, options, td);
1227 if (ret) {
1228 log_err("fio: job dropped\n");
1229 put_job(td);
1230 td = NULL;
1231 }
Jens Axboeb4692822006-10-27 13:43:22 +02001232 break;
1233 }
1234 default:
Jens Axboeb4692822006-10-27 13:43:22 +02001235 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001236 }
1237 }
Jens Axboec9fad892006-05-27 17:26:50 +02001238
Jens Axboeb4692822006-10-27 13:43:22 +02001239 if (td) {
Jens Axboec2b1e752006-10-30 09:03:13 +01001240 ret = add_job(td, td->name ?: "fio", 0);
Jens Axboeb4692822006-10-27 13:43:22 +02001241 if (ret)
1242 put_job(td);
Jens Axboe972cfd22006-06-09 11:08:56 +02001243 }
Jens Axboe774a6172006-08-24 08:44:26 +02001244
Jens Axboeb4692822006-10-27 13:43:22 +02001245 while (optind < argc) {
1246 ini_idx++;
1247 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1248 ini_file[ini_idx - 1] = strdup(argv[optind]);
1249 optind++;
Jens Axboeeb8bbf42006-06-08 21:40:11 +02001250 }
Jens Axboe972cfd22006-06-09 11:08:56 +02001251
1252 return ini_idx;
Jens Axboeebac4652005-12-08 15:25:21 +01001253}
1254
1255static void free_shm(void)
1256{
1257 struct shmid_ds sbuf;
1258
1259 if (threads) {
Jens Axboe2c0ecd22006-06-08 13:25:41 +02001260 shmdt((void *) threads);
Jens Axboeebac4652005-12-08 15:25:21 +01001261 threads = NULL;
1262 shmctl(shm_id, IPC_RMID, &sbuf);
1263 }
1264}
1265
Jens Axboe906c8d72006-06-13 09:37:56 +02001266/*
1267 * The thread area is shared between the main process and the job
1268 * threads/processes. So setup a shared memory segment that will hold
1269 * all the job info.
1270 */
Jens Axboeebac4652005-12-08 15:25:21 +01001271static int setup_thread_area(void)
1272{
1273 /*
1274 * 1024 is too much on some machines, scale max_jobs if
1275 * we get a failure that looks like too large a shm segment
1276 */
1277 do {
Jens Axboe906c8d72006-06-13 09:37:56 +02001278 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +01001279
Jens Axboe906c8d72006-06-13 09:37:56 +02001280 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +01001281 if (shm_id != -1)
1282 break;
1283 if (errno != EINVAL) {
1284 perror("shmget");
1285 break;
1286 }
1287
1288 max_jobs >>= 1;
1289 } while (max_jobs);
1290
1291 if (shm_id == -1)
1292 return 1;
1293
1294 threads = shmat(shm_id, NULL, 0);
1295 if (threads == (void *) -1) {
1296 perror("shmat");
1297 return 1;
1298 }
1299
1300 atexit(free_shm);
1301 return 0;
1302}
1303
Jens Axboeb4692822006-10-27 13:43:22 +02001304/*
1305 * Copy the fio options into the long options map, so we mirror
1306 * job and cmd line options.
1307 */
1308static void dupe_job_options(void)
1309{
1310 struct fio_option *o;
1311 unsigned int i;
1312
1313 i = 0;
1314 while (long_options[i].name)
1315 i++;
1316
1317 o = &options[0];
1318 while (o->name) {
1319 long_options[i].name = o->name;
1320 long_options[i].val = FIO_GETOPT_JOB;
1321 if (o->type == FIO_OPT_STR_SET)
1322 long_options[i].has_arg = no_argument;
1323 else
1324 long_options[i].has_arg = required_argument;
1325
1326 i++;
1327 o++;
1328 assert(i < FIO_JOB_OPTS + FIO_CMD_OPTS);
1329 }
1330}
1331
Jens Axboeebac4652005-12-08 15:25:21 +01001332int parse_options(int argc, char *argv[])
1333{
Jens Axboe972cfd22006-06-09 11:08:56 +02001334 int job_files, i;
1335
Jens Axboeb4692822006-10-27 13:43:22 +02001336 f_out = stdout;
1337 f_err = stderr;
1338
Jens Axboe13335dd2007-01-10 13:14:02 +01001339 options_init(options);
1340
Jens Axboeb4692822006-10-27 13:43:22 +02001341 dupe_job_options();
1342
Jens Axboeebac4652005-12-08 15:25:21 +01001343 if (setup_thread_area())
1344 return 1;
1345 if (fill_def_thread())
1346 return 1;
1347
Jens Axboe972cfd22006-06-09 11:08:56 +02001348 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001349
Jens Axboe972cfd22006-06-09 11:08:56 +02001350 for (i = 0; i < job_files; i++) {
1351 if (fill_def_thread())
1352 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001353 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001354 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001355 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001356 }
Jens Axboeebac4652005-12-08 15:25:21 +01001357
Jens Axboe88c6ed82006-06-09 11:28:10 +02001358 free(ini_file);
Jens Axboeb4692822006-10-27 13:43:22 +02001359
1360 if (!thread_number) {
1361 log_err("No jobs defined(s)\n");
Jens Axboeb4692822006-10-27 13:43:22 +02001362 return 1;
1363 }
1364
Jens Axboeebac4652005-12-08 15:25:21 +01001365 return 0;
1366}