blob: 11fd3e283f0c2f7026b68cca1e825515085d8b6a [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 {
81 .name = "mem",
82 .type = FIO_OPT_STR,
83 .cb = str_mem_cb,
Jens Axboe15f79182007-01-10 12:26:18 +010084 .help = "Backing type for IO buffers",
Jens Axboeee738492007-01-10 11:23:16 +010085 .def = "malloc",
Jens Axboe15f79182007-01-10 12:26:18 +010086 .posval = { "malloc", "shm", "shmhuge", "mmap", "mmaphuge", },
Jens Axboee1f36502006-10-27 10:54:08 +020087 },
88 {
89 .name = "verify",
90 .type = FIO_OPT_STR,
91 .cb = str_verify_cb,
Jens Axboe15f79182007-01-10 12:26:18 +010092 .help = "Verify sum function",
Jens Axboeee738492007-01-10 11:23:16 +010093 .def = "0",
Jens Axboe15f79182007-01-10 12:26:18 +010094 .posval = { "crc32", "md5", },
Jens Axboee1f36502006-10-27 10:54:08 +020095 },
96 {
97 .name = "write_iolog",
Jens Axboe076efc72006-10-27 11:24:25 +020098 .type = FIO_OPT_STR_STORE,
99 .off1 = td_var_offset(write_iolog_file),
Jens Axboefd28ca42007-01-09 21:20:13 +0100100 .help = "Store IO pattern to file",
Jens Axboee1f36502006-10-27 10:54:08 +0200101 },
102 {
Jens Axboe076efc72006-10-27 11:24:25 +0200103 .name = "read_iolog",
Jens Axboee1f36502006-10-27 10:54:08 +0200104 .type = FIO_OPT_STR_STORE,
Jens Axboe076efc72006-10-27 11:24:25 +0200105 .off1 = td_var_offset(read_iolog_file),
Jens Axboefd28ca42007-01-09 21:20:13 +0100106 .help = "Playback IO pattern from file",
Jens Axboee1f36502006-10-27 10:54:08 +0200107 },
108 {
109 .name = "exec_prerun",
110 .type = FIO_OPT_STR_STORE,
111 .off1 = td_var_offset(exec_prerun),
Jens Axboefd28ca42007-01-09 21:20:13 +0100112 .help = "Execute this file prior to running job",
Jens Axboee1f36502006-10-27 10:54:08 +0200113 },
114 {
115 .name = "exec_postrun",
116 .type = FIO_OPT_STR_STORE,
117 .off1 = td_var_offset(exec_postrun),
Jens Axboefd28ca42007-01-09 21:20:13 +0100118 .help = "Execute this file after running job",
Jens Axboee1f36502006-10-27 10:54:08 +0200119 },
120#ifdef FIO_HAVE_IOSCHED_SWITCH
121 {
122 .name = "ioscheduler",
123 .type = FIO_OPT_STR_STORE,
124 .off1 = td_var_offset(ioscheduler),
Jens Axboefd28ca42007-01-09 21:20:13 +0100125 .help = "Use this IO scheduler on the backing device",
Jens Axboee1f36502006-10-27 10:54:08 +0200126 },
127#endif
128 {
129 .name = "size",
130 .type = FIO_OPT_STR_VAL,
131 .off1 = td_var_offset(total_file_size),
Jens Axboefd28ca42007-01-09 21:20:13 +0100132 .help = "Size of device or file",
Jens Axboee1f36502006-10-27 10:54:08 +0200133 },
134 {
135 .name = "bs",
Jens Axboe75e6f362006-11-03 08:17:09 +0100136 .type = FIO_OPT_STR_VAL_INT,
Jens Axboea00735e2006-11-03 08:58:08 +0100137 .off1 = td_var_offset(bs[DDIR_READ]),
Jens Axboef90eff52006-11-06 11:08:21 +0100138 .off2 = td_var_offset(bs[DDIR_WRITE]),
Jens Axboefd28ca42007-01-09 21:20:13 +0100139 .help = "Block size unit",
Jens Axboeee738492007-01-10 11:23:16 +0100140 .def = "4k",
Jens Axboee1f36502006-10-27 10:54:08 +0200141 },
142 {
143 .name = "offset",
144 .type = FIO_OPT_STR_VAL,
145 .off1 = td_var_offset(start_offset),
Jens Axboefd28ca42007-01-09 21:20:13 +0100146 .help = "Start IO from this offset",
Jens Axboeee738492007-01-10 11:23:16 +0100147 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200148 },
149 {
150 .name = "zonesize",
151 .type = FIO_OPT_STR_VAL,
152 .off1 = td_var_offset(zone_size),
Jens Axboefd28ca42007-01-09 21:20:13 +0100153 .help = "Give size of an IO zone",
Jens Axboeee738492007-01-10 11:23:16 +0100154 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200155 },
156 {
157 .name = "zoneskip",
158 .type = FIO_OPT_STR_VAL,
159 .off1 = td_var_offset(zone_skip),
Jens Axboefd28ca42007-01-09 21:20:13 +0100160 .help = "Space between IO zones",
Jens Axboeee738492007-01-10 11:23:16 +0100161 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200162 },
163 {
164 .name = "lockmem",
165 .type = FIO_OPT_STR_VAL,
166 .cb = str_lockmem_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100167 .help = "Lock down this amount of memory",
Jens Axboeee738492007-01-10 11:23:16 +0100168 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200169 },
170 {
171 .name = "bsrange",
172 .type = FIO_OPT_RANGE,
Jens Axboea00735e2006-11-03 08:58:08 +0100173 .off1 = td_var_offset(min_bs[DDIR_READ]),
174 .off2 = td_var_offset(max_bs[DDIR_READ]),
Jens Axboef90eff52006-11-06 11:08:21 +0100175 .off3 = td_var_offset(min_bs[DDIR_WRITE]),
176 .off4 = td_var_offset(max_bs[DDIR_WRITE]),
Jens Axboefd28ca42007-01-09 21:20:13 +0100177 .help = "Set block size range",
Jens Axboee1f36502006-10-27 10:54:08 +0200178 },
179 {
Jens Axboeee738492007-01-10 11:23:16 +0100180 .name = "randrepeat",
181 .type = FIO_OPT_INT,
182 .off1 = td_var_offset(rand_repeatable),
183 .help = "Use repeatable random IO pattern",
184 .def = "1",
185 },
186 {
Jens Axboee1f36502006-10-27 10:54:08 +0200187 .name = "nrfiles",
188 .type = FIO_OPT_INT,
189 .off1 = td_var_offset(nr_files),
Jens Axboefd28ca42007-01-09 21:20:13 +0100190 .help = "Split job workload between this number of files",
Jens Axboeee738492007-01-10 11:23:16 +0100191 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200192 },
193 {
194 .name = "iodepth",
195 .type = FIO_OPT_INT,
196 .off1 = td_var_offset(iodepth),
Jens Axboefd28ca42007-01-09 21:20:13 +0100197 .help = "Amount of IO buffers to keep in flight",
Jens Axboeee738492007-01-10 11:23:16 +0100198 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200199 },
200 {
201 .name = "fsync",
202 .type = FIO_OPT_INT,
203 .off1 = td_var_offset(fsync_blocks),
Jens Axboefd28ca42007-01-09 21:20:13 +0100204 .help = "Issue fsync for writes every given number of blocks",
Jens Axboeee738492007-01-10 11:23:16 +0100205 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200206 },
207 {
208 .name = "rwmixcycle",
209 .type = FIO_OPT_INT,
210 .off1 = td_var_offset(rwmixcycle),
Jens Axboeee738492007-01-10 11:23:16 +0100211 .help = "Cycle period for mixed read/write workloads (msec)",
212 .def = "500",
Jens Axboee1f36502006-10-27 10:54:08 +0200213 },
214 {
215 .name = "rwmixread",
216 .type = FIO_OPT_INT,
217 .off1 = td_var_offset(rwmixread),
Jens Axboeee738492007-01-10 11:23:16 +0100218 .maxval = 100,
Jens Axboefd28ca42007-01-09 21:20:13 +0100219 .help = "Percentage of mixed workload that is reads",
Jens Axboeee738492007-01-10 11:23:16 +0100220 .def = "50",
Jens Axboee1f36502006-10-27 10:54:08 +0200221 },
222 {
223 .name = "rwmixwrite",
224 .type = FIO_OPT_INT,
225 .off1 = td_var_offset(rwmixwrite),
Jens Axboeee738492007-01-10 11:23:16 +0100226 .maxval = 100,
Jens Axboefd28ca42007-01-09 21:20:13 +0100227 .help = "Percentage of mixed workload that is writes",
Jens Axboeee738492007-01-10 11:23:16 +0100228 .def = "50",
Jens Axboee1f36502006-10-27 10:54:08 +0200229 },
230 {
231 .name = "nice",
232 .type = FIO_OPT_INT,
233 .off1 = td_var_offset(nice),
Jens Axboefd28ca42007-01-09 21:20:13 +0100234 .help = "Set job CPU nice value",
Jens Axboe15f79182007-01-10 12:26:18 +0100235 .minval = -19,
Jens Axboeee738492007-01-10 11:23:16 +0100236 .maxval = 20,
237 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200238 },
239#ifdef FIO_HAVE_IOPRIO
240 {
241 .name = "prio",
242 .type = FIO_OPT_INT,
243 .cb = str_prio_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100244 .help = "Set job IO priority value",
Jens Axboe15f79182007-01-10 12:26:18 +0100245 .minval = 0,
246 .maxval = 7,
Jens Axboee1f36502006-10-27 10:54:08 +0200247 },
248 {
249 .name = "prioclass",
250 .type = FIO_OPT_INT,
251 .cb = str_prioclass_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100252 .help = "Set job IO priority class",
Jens Axboe15f79182007-01-10 12:26:18 +0100253 .minval = 0,
254 .maxval = 3,
Jens Axboee1f36502006-10-27 10:54:08 +0200255 },
256#endif
257 {
258 .name = "thinktime",
259 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100260 .off1 = td_var_offset(thinktime),
Jens Axboefd28ca42007-01-09 21:20:13 +0100261 .help = "Idle time between IO buffers",
Jens Axboeee738492007-01-10 11:23:16 +0100262 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200263 },
264 {
Jens Axboe9c1f7432007-01-03 20:43:19 +0100265 .name = "thinktime_blocks",
266 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100267 .off1 = td_var_offset(thinktime_blocks),
Jens Axboefd28ca42007-01-09 21:20:13 +0100268 .help = "IO buffer period between 'thinktime'",
Jens Axboeee738492007-01-10 11:23:16 +0100269 .def = "1",
Jens Axboe9c1f7432007-01-03 20:43:19 +0100270 },
271 {
Jens Axboee1f36502006-10-27 10:54:08 +0200272 .name = "rate",
273 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100274 .off1 = td_var_offset(rate),
Jens Axboefd28ca42007-01-09 21:20:13 +0100275 .help = "Set bandwidth rate",
Jens Axboee1f36502006-10-27 10:54:08 +0200276 },
277 {
278 .name = "ratemin",
279 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100280 .off1 = td_var_offset(ratemin),
Jens Axboefd28ca42007-01-09 21:20:13 +0100281 .help = "The bottom limit accepted",
Jens Axboee1f36502006-10-27 10:54:08 +0200282 },
283 {
284 .name = "ratecycle",
285 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100286 .off1 = td_var_offset(ratecycle),
Jens Axboe6da1fa72007-01-10 11:27:48 +0100287 .help = "Window average for rate limits (msec)",
Jens Axboeee738492007-01-10 11:23:16 +0100288 .def = "1000",
Jens Axboee1f36502006-10-27 10:54:08 +0200289 },
290 {
291 .name = "startdelay",
292 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100293 .off1 = td_var_offset(start_delay),
Jens Axboefd28ca42007-01-09 21:20:13 +0100294 .help = "Only start job when this period has passed",
Jens Axboeee738492007-01-10 11:23:16 +0100295 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200296 },
297 {
298 .name = "timeout",
299 .type = FIO_OPT_STR_VAL_TIME,
Jens Axboe13049232007-01-03 20:45:09 +0100300 .off1 = td_var_offset(timeout),
Jens Axboefd28ca42007-01-09 21:20:13 +0100301 .help = "Stop workload when this amount of time has passed",
Jens Axboeee738492007-01-10 11:23:16 +0100302 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200303 },
304 {
305 .name = "invalidate",
306 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100307 .off1 = td_var_offset(invalidate_cache),
Jens Axboefd28ca42007-01-09 21:20:13 +0100308 .help = "Invalidate buffer/page cache prior to running job",
Jens Axboeee738492007-01-10 11:23:16 +0100309 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200310 },
311 {
312 .name = "sync",
313 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100314 .off1 = td_var_offset(sync_io),
Jens Axboefd28ca42007-01-09 21:20:13 +0100315 .help = "Use O_SYNC for buffered writes",
Jens Axboeee738492007-01-10 11:23:16 +0100316 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200317 },
318 {
319 .name = "bwavgtime",
320 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100321 .off1 = td_var_offset(bw_avg_time),
Jens Axboeee738492007-01-10 11:23:16 +0100322 .help = "Time window over which to calculate bandwidth (msec)",
323 .def = "500",
Jens Axboee1f36502006-10-27 10:54:08 +0200324 },
325 {
326 .name = "create_serialize",
327 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100328 .off1 = td_var_offset(create_serialize),
Jens Axboefd28ca42007-01-09 21:20:13 +0100329 .help = "Serialize creating of job files",
Jens Axboeee738492007-01-10 11:23:16 +0100330 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200331 },
332 {
333 .name = "create_fsync",
334 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100335 .off1 = td_var_offset(create_fsync),
Jens Axboefd28ca42007-01-09 21:20:13 +0100336 .help = "Fsync file after creation",
Jens Axboeee738492007-01-10 11:23:16 +0100337 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200338 },
339 {
340 .name = "loops",
341 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100342 .off1 = td_var_offset(loops),
Jens Axboefd28ca42007-01-09 21:20:13 +0100343 .help = "Number of times to run the job",
Jens Axboeee738492007-01-10 11:23:16 +0100344 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200345 },
346 {
347 .name = "numjobs",
348 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100349 .off1 = td_var_offset(numjobs),
Jens Axboefd28ca42007-01-09 21:20:13 +0100350 .help = "Duplicate this job this many times",
Jens Axboeee738492007-01-10 11:23:16 +0100351 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200352 },
353 {
354 .name = "cpuload",
355 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100356 .off1 = td_var_offset(cpuload),
Jens Axboefd28ca42007-01-09 21:20:13 +0100357 .help = "Use this percentage of CPU",
Jens Axboee1f36502006-10-27 10:54:08 +0200358 },
359 {
360 .name = "cpuchunks",
361 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100362 .off1 = td_var_offset(cpucycle),
Jens Axboefd28ca42007-01-09 21:20:13 +0100363 .help = "Length of the CPU burn cycles",
Jens Axboee1f36502006-10-27 10:54:08 +0200364 },
365 {
366 .name = "direct",
367 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100368 .off1 = td_var_offset(odirect),
Jens Axboefd28ca42007-01-09 21:20:13 +0100369 .help = "Use O_DIRECT IO",
Jens Axboeee738492007-01-10 11:23:16 +0100370 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200371 },
372 {
373 .name = "overwrite",
374 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100375 .off1 = td_var_offset(overwrite),
Jens Axboefd28ca42007-01-09 21:20:13 +0100376 .help = "When writing, set whether to overwrite current data",
Jens Axboeee738492007-01-10 11:23:16 +0100377 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200378 },
379#ifdef FIO_HAVE_CPU_AFFINITY
380 {
381 .name = "cpumask",
382 .type = FIO_OPT_INT,
383 .cb = str_cpumask_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100384 .help = "CPU affinity mask",
Jens Axboee1f36502006-10-27 10:54:08 +0200385 },
386#endif
387 {
388 .name = "end_fsync",
389 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100390 .off1 = td_var_offset(end_fsync),
Jens Axboefd28ca42007-01-09 21:20:13 +0100391 .help = "Include fsync at the end of job",
Jens Axboeee738492007-01-10 11:23:16 +0100392 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200393 },
394 {
395 .name = "unlink",
Jens Axboe8aeebd52007-01-08 10:47:43 +0100396 .type = FIO_OPT_INT,
Jens Axboee1f36502006-10-27 10:54:08 +0200397 .off1 = td_var_offset(unlink),
Jens Axboeee738492007-01-10 11:23:16 +0100398 .help = "Unlink created files after job has completed",
399 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200400 },
401 {
402 .name = "exitall",
403 .type = FIO_OPT_STR_SET,
404 .cb = str_exitall_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100405 .help = "Terminate all jobs when one exits",
Jens Axboee1f36502006-10-27 10:54:08 +0200406 },
407 {
408 .name = "stonewall",
409 .type = FIO_OPT_STR_SET,
410 .off1 = td_var_offset(stonewall),
Jens Axboefd28ca42007-01-09 21:20:13 +0100411 .help = "Insert a hard barrier between this job and previous",
Jens Axboee1f36502006-10-27 10:54:08 +0200412 },
413 {
414 .name = "thread",
415 .type = FIO_OPT_STR_SET,
416 .off1 = td_var_offset(thread),
Jens Axboefd28ca42007-01-09 21:20:13 +0100417 .help = "Use threads instead of forks",
Jens Axboee1f36502006-10-27 10:54:08 +0200418 },
419 {
420 .name = "write_bw_log",
421 .type = FIO_OPT_STR_SET,
422 .off1 = td_var_offset(write_bw_log),
Jens Axboefd28ca42007-01-09 21:20:13 +0100423 .help = "Write log of bandwidth during run",
Jens Axboee1f36502006-10-27 10:54:08 +0200424 },
425 {
426 .name = "write_lat_log",
427 .type = FIO_OPT_STR_SET,
428 .off1 = td_var_offset(write_lat_log),
Jens Axboefd28ca42007-01-09 21:20:13 +0100429 .help = "Write log of latency during run",
Jens Axboee1f36502006-10-27 10:54:08 +0200430 },
431 {
Jens Axboebb8895e2006-10-30 15:14:48 +0100432 .name = "norandommap",
433 .type = FIO_OPT_STR_SET,
434 .off1 = td_var_offset(norandommap),
Jens Axboefd28ca42007-01-09 21:20:13 +0100435 .help = "Accept potential duplicate random blocks",
Jens Axboebb8895e2006-10-30 15:14:48 +0100436 },
437 {
Jens Axboe690adba2006-10-30 15:25:09 +0100438 .name = "bs_unaligned",
439 .type = FIO_OPT_STR_SET,
440 .off1 = td_var_offset(bs_unaligned),
Jens Axboefd28ca42007-01-09 21:20:13 +0100441 .help = "Don't sector align IO buffer sizes",
Jens Axboe690adba2006-10-30 15:25:09 +0100442 },
443 {
Jens Axboe56bb17f2006-12-20 20:27:36 +0100444 .name = "hugepage-size",
445 .type = FIO_OPT_STR_VAL,
446 .off1 = td_var_offset(hugepage_size),
Jens Axboefd28ca42007-01-09 21:20:13 +0100447 .help = "When using hugepages, specify size of each page",
Jens Axboeee738492007-01-10 11:23:16 +0100448 .def = __stringify(FIO_HUGE_PAGE),
Jens Axboe56bb17f2006-12-20 20:27:36 +0100449 },
450 {
Jens Axboee1f36502006-10-27 10:54:08 +0200451 .name = NULL,
452 },
453};
454
Jens Axboeb4692822006-10-27 13:43:22 +0200455#define FIO_JOB_OPTS (sizeof(options) / sizeof(struct fio_option))
456#define FIO_CMD_OPTS (16)
457#define FIO_GETOPT_JOB (0x89988998)
458
459/*
460 * Command line options. These will contain the above, plus a few
461 * extra that only pertain to fio itself and not jobs.
462 */
463static struct option long_options[FIO_JOB_OPTS + FIO_CMD_OPTS] = {
464 {
465 .name = "output",
466 .has_arg = required_argument,
467 .val = 'o',
468 },
469 {
470 .name = "timeout",
471 .has_arg = required_argument,
472 .val = 't',
473 },
474 {
475 .name = "latency-log",
476 .has_arg = required_argument,
477 .val = 'l',
478 },
479 {
480 .name = "bandwidth-log",
481 .has_arg = required_argument,
482 .val = 'b',
483 },
484 {
485 .name = "minimal",
486 .has_arg = optional_argument,
487 .val = 'm',
488 },
489 {
490 .name = "version",
491 .has_arg = no_argument,
492 .val = 'v',
493 },
494 {
Jens Axboefd28ca42007-01-09 21:20:13 +0100495 .name = "help",
496 .has_arg = no_argument,
497 .val = 'h',
498 },
499 {
500 .name = "cmdhelp",
501 .has_arg = required_argument,
502 .val = 'c',
503 },
504 {
Jens Axboeb4692822006-10-27 13:43:22 +0200505 .name = NULL,
506 },
507};
508
Jens Axboeee738492007-01-10 11:23:16 +0100509static int def_timeout = 0;
Jens Axboe972cfd22006-06-09 11:08:56 +0200510
Jens Axboe5cd033b2007-01-09 08:19:01 +0100511static char fio_version_string[] = "fio 1.11";
Jens Axboeebac4652005-12-08 15:25:21 +0100512
Jens Axboe972cfd22006-06-09 11:08:56 +0200513static char **ini_file;
Jens Axboeebac4652005-12-08 15:25:21 +0100514static int max_jobs = MAX_JOBS;
515
516struct thread_data def_thread;
517struct thread_data *threads = NULL;
518
Jens Axboeebac4652005-12-08 15:25:21 +0100519int exitall_on_terminate = 0;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200520int terse_output = 0;
Jens Axboec04f7ec2006-05-31 10:13:16 +0200521unsigned long long mlock_size = 0;
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200522FILE *f_out = NULL;
523FILE *f_err = NULL;
Jens Axboeebac4652005-12-08 15:25:21 +0100524
Jens Axboeee738492007-01-10 11:23:16 +0100525static int write_lat_log = 0;
526static int write_bw_log = 0;
Jens Axboeec94ec52006-10-20 10:59:19 +0200527
Jens Axboe906c8d72006-06-13 09:37:56 +0200528/*
529 * Return a free job structure.
530 */
Jens Axboeebac4652005-12-08 15:25:21 +0100531static struct thread_data *get_new_job(int global, struct thread_data *parent)
532{
533 struct thread_data *td;
534
535 if (global)
536 return &def_thread;
537 if (thread_number >= max_jobs)
538 return NULL;
539
540 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200541 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100542
Jens Axboeebac4652005-12-08 15:25:21 +0100543 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100544 return td;
545}
546
547static void put_job(struct thread_data *td)
548{
Jens Axboe549577a2006-10-30 12:23:41 +0100549 if (td == &def_thread)
550 return;
551
Jens Axboeebac4652005-12-08 15:25:21 +0100552 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
553 thread_number--;
554}
555
Jens Axboedad915e2006-10-27 11:10:18 +0200556/*
557 * Lazy way of fixing up options that depend on each other. We could also
558 * define option callback handlers, but this is easier.
559 */
Jens Axboee1f36502006-10-27 10:54:08 +0200560static void fixup_options(struct thread_data *td)
561{
Jens Axboee1f36502006-10-27 10:54:08 +0200562 if (!td->rwmixread && td->rwmixwrite)
563 td->rwmixread = 100 - td->rwmixwrite;
Jens Axboedad915e2006-10-27 11:10:18 +0200564
Jens Axboe076efc72006-10-27 11:24:25 +0200565 if (td->write_iolog_file && td->read_iolog_file) {
566 log_err("fio: read iolog overrides write_iolog\n");
567 free(td->write_iolog_file);
568 td->write_iolog_file = NULL;
569 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100570
571 if (td->io_ops->flags & FIO_SYNCIO)
572 td->iodepth = 1;
573 else {
574 if (!td->iodepth)
575 td->iodepth = td->nr_files;
576 }
577
578 /*
579 * only really works for sequential io for now, and with 1 file
580 */
581 if (td->zone_size && !td->sequential && td->nr_files == 1)
582 td->zone_size = 0;
583
584 /*
585 * Reads can do overwrites, we always need to pre-create the file
586 */
587 if (td_read(td) || td_rw(td))
588 td->overwrite = 1;
589
Jens Axboea00735e2006-11-03 08:58:08 +0100590 if (!td->min_bs[DDIR_READ])
591 td->min_bs[DDIR_READ]= td->bs[DDIR_READ];
592 if (!td->max_bs[DDIR_READ])
593 td->max_bs[DDIR_READ] = td->bs[DDIR_READ];
594 if (!td->min_bs[DDIR_WRITE])
Jens Axboe75e6f362006-11-03 08:17:09 +0100595 td->min_bs[DDIR_WRITE]= td->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100596 if (!td->max_bs[DDIR_WRITE])
Jens Axboe75e6f362006-11-03 08:17:09 +0100597 td->max_bs[DDIR_WRITE] = td->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100598
599 td->rw_min_bs = min(td->min_bs[DDIR_READ], td->min_bs[DDIR_WRITE]);
600
Jens Axboe16b462a2006-10-30 12:35:18 +0100601 if (td_read(td) && !td_rw(td))
602 td->verify = 0;
Jens Axboebb8895e2006-10-30 15:14:48 +0100603
604 if (td->norandommap && td->verify != VERIFY_NONE) {
605 log_err("fio: norandommap given, verify disabled\n");
606 td->verify = VERIFY_NONE;
607 }
Jens Axboe690adba2006-10-30 15:25:09 +0100608 if (td->bs_unaligned && (td->odirect || td->io_ops->flags & FIO_RAWIO))
609 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100610
611 /*
612 * O_DIRECT and char doesn't mix, clear that flag if necessary.
613 */
614 if (td->filetype == FIO_TYPE_CHAR && td->odirect)
615 td->odirect = 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200616}
617
Jens Axboe906c8d72006-06-13 09:37:56 +0200618/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100619 * This function leaks the buffer
620 */
621static char *to_kmg(unsigned int val)
622{
623 char *buf = malloc(32);
Jens Axboe245142f2006-11-08 12:49:21 +0100624 char post[] = { 0, 'K', 'M', 'G', 'P', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100625 char *p = post;
626
Jens Axboe245142f2006-11-08 12:49:21 +0100627 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100628 if (val & 1023)
629 break;
630
631 val >>= 10;
632 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100633 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100634
635 snprintf(buf, 31, "%u%c", val, *p);
636 return buf;
637}
638
639/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200640 * Adds a job to the list of things todo. Sanitizes the various options
641 * to make sure we don't have conflicts, and initializes various
642 * members of td.
643 */
Jens Axboe75154842006-06-01 13:56:09 +0200644static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100645{
Jens Axboe3c9b60c2006-11-07 08:36:14 +0100646 const char *ddir_str[] = { "read", "write", "randread", "randwrite",
647 "rw", NULL, "randrw" };
Jens Axboeebac4652005-12-08 15:25:21 +0100648 struct stat sb;
Jens Axboe53cdc682006-10-18 11:50:58 +0200649 int numjobs, ddir, i;
650 struct fio_file *f;
Jens Axboeebac4652005-12-08 15:25:21 +0100651
Jens Axboeebac4652005-12-08 15:25:21 +0100652 /*
653 * the def_thread is just for options, it's not a real job
654 */
655 if (td == &def_thread)
656 return 0;
657
Jens Axboeee738492007-01-10 11:23:16 +0100658 assert(td->io_ops);
Jens Axboedf641192006-10-12 07:55:41 +0200659
Jens Axboe690adba2006-10-30 15:25:09 +0100660 if (td->odirect)
661 td->io_ops->flags |= FIO_RAWIO;
662
Jens Axboeebac4652005-12-08 15:25:21 +0100663 td->filetype = FIO_TYPE_FILE;
Jens Axboe0af7b542006-02-17 10:10:12 +0100664 if (!stat(jobname, &sb)) {
665 if (S_ISBLK(sb.st_mode))
666 td->filetype = FIO_TYPE_BD;
667 else if (S_ISCHR(sb.st_mode))
668 td->filetype = FIO_TYPE_CHAR;
669 }
Jens Axboeebac4652005-12-08 15:25:21 +0100670
Jens Axboee0a22332006-12-20 12:54:25 +0100671 fixup_options(td);
672
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200673 if (td->filename)
674 td->nr_uniq_files = 1;
675 else
676 td->nr_uniq_files = td->nr_files;
677
678 if (td->filetype == FIO_TYPE_FILE || td->filename) {
Jens Axboee9c047a2006-06-07 21:13:04 +0200679 char tmp[PATH_MAX];
Jens Axboe53cdc682006-10-18 11:50:58 +0200680 int len = 0;
Jens Axboee9c047a2006-06-07 21:13:04 +0200681
Jens Axboeef899b62006-06-06 09:31:00 +0200682 if (td->directory && td->directory[0] != '\0')
Jens Axboe8aeebd52007-01-08 10:47:43 +0100683 len = sprintf(tmp, "%s/", td->directory);
Jens Axboeebac4652005-12-08 15:25:21 +0100684
Jens Axboe53cdc682006-10-18 11:50:58 +0200685 td->files = malloc(sizeof(struct fio_file) * td->nr_files);
686
687 for_each_file(td, f, i) {
688 memset(f, 0, sizeof(*f));
689 f->fd = -1;
690
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200691 if (td->filename)
692 sprintf(tmp + len, "%s", td->filename);
693 else
694 sprintf(tmp + len, "%s.%d.%d", jobname, td->thread_number, i);
Jens Axboe53cdc682006-10-18 11:50:58 +0200695 f->file_name = strdup(tmp);
696 }
697 } else {
698 td->nr_files = 1;
699 td->files = malloc(sizeof(struct fio_file));
700 f = &td->files[0];
701
702 memset(f, 0, sizeof(*f));
703 f->fd = -1;
704 f->file_name = strdup(jobname);
705 }
706
707 for_each_file(td, f, i) {
708 f->file_size = td->total_file_size / td->nr_files;
709 f->file_offset = td->start_offset;
710 }
711
Jens Axboebbfd6b02006-06-07 19:42:54 +0200712 fio_sem_init(&td->mutex, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100713
714 td->clat_stat[0].min_val = td->clat_stat[1].min_val = ULONG_MAX;
715 td->slat_stat[0].min_val = td->slat_stat[1].min_val = ULONG_MAX;
716 td->bw_stat[0].min_val = td->bw_stat[1].min_val = ULONG_MAX;
717
Jens Axboeebac4652005-12-08 15:25:21 +0100718 if (td->stonewall && td->thread_number > 1)
719 groupid++;
720
721 td->groupid = groupid;
722
723 if (setup_rate(td))
724 goto err;
725
Jens Axboeec94ec52006-10-20 10:59:19 +0200726 if (td->write_lat_log) {
Jens Axboeebac4652005-12-08 15:25:21 +0100727 setup_log(&td->slat_log);
728 setup_log(&td->clat_log);
729 }
Jens Axboeec94ec52006-10-20 10:59:19 +0200730 if (td->write_bw_log)
Jens Axboeebac4652005-12-08 15:25:21 +0100731 setup_log(&td->bw_log);
732
Jens Axboeb4692822006-10-27 13:43:22 +0200733 if (!td->name)
734 td->name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200735
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200736 ddir = td->ddir + (!td->sequential << 1) + (td->iomix << 2);
Jens Axboe75154842006-06-01 13:56:09 +0200737
Jens Axboec6ae0a52006-06-12 11:04:44 +0200738 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200739 if (!job_add_num) {
Jens Axboe2866c822006-10-09 15:57:48 +0200740 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200741 fprintf(f_out, "%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->name, td->cpuload, td->cpucycle);
Jens Axboef8977ee2006-11-06 14:03:03 +0100742 else {
743 char *c1, *c2, *c3, *c4;
744
745 c1 = to_kmg(td->min_bs[DDIR_READ]);
746 c2 = to_kmg(td->max_bs[DDIR_READ]);
747 c3 = to_kmg(td->min_bs[DDIR_WRITE]);
748 c4 = to_kmg(td->max_bs[DDIR_WRITE]);
749
Jens Axboe1e97cce2006-12-05 11:44:16 +0100750 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 +0100751
752 free(c1);
753 free(c2);
754 free(c3);
755 free(c4);
756 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200757 } else if (job_add_num == 1)
Jens Axboec6ae0a52006-06-12 11:04:44 +0200758 fprintf(f_out, "...\n");
759 }
Jens Axboeebac4652005-12-08 15:25:21 +0100760
761 /*
762 * recurse add identical jobs, clear numjobs and stonewall options
763 * as they don't apply to sub-jobs
764 */
765 numjobs = td->numjobs;
766 while (--numjobs) {
767 struct thread_data *td_new = get_new_job(0, td);
768
769 if (!td_new)
770 goto err;
771
772 td_new->numjobs = 1;
773 td_new->stonewall = 0;
Jens Axboe75154842006-06-01 13:56:09 +0200774 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100775
Jens Axboe75154842006-06-01 13:56:09 +0200776 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100777 goto err;
778 }
779 return 0;
780err:
781 put_job(td);
782 return -1;
783}
784
Jens Axboe906c8d72006-06-13 09:37:56 +0200785/*
786 * Initialize the various random states we need (random io, block size ranges,
787 * read/write mix, etc).
788 */
Jens Axboeebac4652005-12-08 15:25:21 +0100789int init_random_state(struct thread_data *td)
790{
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200791 unsigned long seeds[4];
Jens Axboe53cdc682006-10-18 11:50:58 +0200792 int fd, num_maps, blocks, i;
Jens Axboe0ab8db82006-10-18 17:16:23 +0200793 struct fio_file *f;
Jens Axboeebac4652005-12-08 15:25:21 +0100794
Jens Axboef48b4672006-10-27 11:30:07 +0200795 if (td->io_ops->flags & FIO_CPUIO)
796 return 0;
797
Jens Axboe1ac267b2006-05-31 20:29:00 +0200798 fd = open("/dev/urandom", O_RDONLY);
Jens Axboeebac4652005-12-08 15:25:21 +0100799 if (fd == -1) {
800 td_verror(td, errno);
801 return 1;
802 }
803
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200804 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
Jens Axboeebac4652005-12-08 15:25:21 +0100805 td_verror(td, EIO);
806 close(fd);
807 return 1;
808 }
809
810 close(fd);
811
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200812 os_random_seed(seeds[0], &td->bsrange_state);
813 os_random_seed(seeds[1], &td->verify_state);
814 os_random_seed(seeds[2], &td->rwmix_state);
Jens Axboeebac4652005-12-08 15:25:21 +0100815
816 if (td->sequential)
817 return 0;
818
Jens Axboe9ebc27e2006-06-12 10:21:50 +0200819 if (td->rand_repeatable)
Jens Axboeee738492007-01-10 11:23:16 +0100820 seeds[3] = FIO_RANDSEED;
Jens Axboeebac4652005-12-08 15:25:21 +0100821
Jens Axboebb8895e2006-10-30 15:14:48 +0100822 if (!td->norandommap) {
823 for_each_file(td, f, i) {
Jens Axboea00735e2006-11-03 08:58:08 +0100824 blocks = (f->file_size + td->rw_min_bs - 1) / td->rw_min_bs;
Jens Axboec7c280e2006-11-02 20:10:33 +0100825 num_maps = (blocks + BLOCKS_PER_MAP-1)/ BLOCKS_PER_MAP;
Jens Axboebb8895e2006-10-30 15:14:48 +0100826 f->file_map = malloc(num_maps * sizeof(long));
827 f->num_maps = num_maps;
828 memset(f->file_map, 0, num_maps * sizeof(long));
829 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200830 }
Jens Axboeebac4652005-12-08 15:25:21 +0100831
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200832 os_random_seed(seeds[3], &td->random_state);
Jens Axboeebac4652005-12-08 15:25:21 +0100833 return 0;
834}
835
836static void fill_cpu_mask(os_cpu_mask_t cpumask, int cpu)
837{
838#ifdef FIO_HAVE_CPU_AFFINITY
839 unsigned int i;
840
841 CPU_ZERO(&cpumask);
842
843 for (i = 0; i < sizeof(int) * 8; i++) {
844 if ((1 << i) & cpu)
845 CPU_SET(i, &cpumask);
846 }
847#endif
848}
849
Jens Axboeebac4652005-12-08 15:25:21 +0100850static int is_empty_or_comment(char *line)
851{
852 unsigned int i;
853
854 for (i = 0; i < strlen(line); i++) {
855 if (line[i] == ';')
856 return 1;
857 if (!isspace(line[i]) && !iscntrl(line[i]))
858 return 0;
859 }
860
861 return 1;
862}
863
Jens Axboeb4692822006-10-27 13:43:22 +0200864static int str_rw_cb(void *data, const char *mem)
Jens Axboeebac4652005-12-08 15:25:21 +0100865{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200866 struct thread_data *td = data;
867
Jens Axboeebac4652005-12-08 15:25:21 +0100868 if (!strncmp(mem, "read", 4) || !strncmp(mem, "0", 1)) {
869 td->ddir = DDIR_READ;
870 td->sequential = 1;
871 return 0;
872 } else if (!strncmp(mem, "randread", 8)) {
873 td->ddir = DDIR_READ;
874 td->sequential = 0;
875 return 0;
876 } else if (!strncmp(mem, "write", 5) || !strncmp(mem, "1", 1)) {
877 td->ddir = DDIR_WRITE;
878 td->sequential = 1;
879 return 0;
880 } else if (!strncmp(mem, "randwrite", 9)) {
881 td->ddir = DDIR_WRITE;
882 td->sequential = 0;
883 return 0;
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200884 } else if (!strncmp(mem, "rw", 2)) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100885 td->ddir = DDIR_READ;
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200886 td->iomix = 1;
887 td->sequential = 1;
888 return 0;
889 } else if (!strncmp(mem, "randrw", 6)) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100890 td->ddir = DDIR_READ;
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200891 td->iomix = 1;
892 td->sequential = 0;
893 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100894 }
895
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200896 log_err("fio: data direction: read, write, randread, randwrite, rw, randrw\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100897 return 1;
898}
899
Jens Axboeb4692822006-10-27 13:43:22 +0200900static int str_verify_cb(void *data, const char *mem)
Jens Axboeebac4652005-12-08 15:25:21 +0100901{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200902 struct thread_data *td = data;
903
Jens Axboeebac4652005-12-08 15:25:21 +0100904 if (!strncmp(mem, "0", 1)) {
905 td->verify = VERIFY_NONE;
906 return 0;
907 } else if (!strncmp(mem, "md5", 3) || !strncmp(mem, "1", 1)) {
908 td->verify = VERIFY_MD5;
909 return 0;
910 } else if (!strncmp(mem, "crc32", 5)) {
911 td->verify = VERIFY_CRC32;
912 return 0;
913 }
914
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200915 log_err("fio: verify types: md5, crc32\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100916 return 1;
917}
918
Jens Axboe313cb202006-12-21 09:50:00 +0100919/*
920 * Check if mmap/mmaphuge has a :/foo/bar/file at the end. If so, return that.
921 */
922static char *get_mmap_file(const char *str)
923{
924 char *p = strstr(str, ":");
925
926 if (!p)
927 return NULL;
928
929 p++;
930 strip_blank_front(&p);
931 strip_blank_end(p);
932 return strdup(p);
933}
934
Jens Axboeb4692822006-10-27 13:43:22 +0200935static int str_mem_cb(void *data, const char *mem)
Jens Axboeebac4652005-12-08 15:25:21 +0100936{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200937 struct thread_data *td = data;
938
Jens Axboeebac4652005-12-08 15:25:21 +0100939 if (!strncmp(mem, "malloc", 6)) {
940 td->mem_type = MEM_MALLOC;
941 return 0;
Jens Axboed0bdaf42006-12-20 14:40:44 +0100942 } else if (!strncmp(mem, "mmaphuge", 8)) {
943#ifdef FIO_HAVE_HUGETLB
Jens Axboed0bdaf42006-12-20 14:40:44 +0100944 /*
945 * mmaphuge must be appended with the actual file
946 */
Jens Axboe313cb202006-12-21 09:50:00 +0100947 td->mmapfile = get_mmap_file(mem);
948 if (!td->mmapfile) {
Jens Axboed0bdaf42006-12-20 14:40:44 +0100949 log_err("fio: mmaphuge:/path/to/file\n");
950 return 1;
951 }
952
Jens Axboed0bdaf42006-12-20 14:40:44 +0100953 td->mem_type = MEM_MMAPHUGE;
954 return 0;
955#else
956 log_err("fio: mmaphuge not available\n");
957 return 1;
958#endif
Jens Axboeebac4652005-12-08 15:25:21 +0100959 } else if (!strncmp(mem, "mmap", 4)) {
Jens Axboe313cb202006-12-21 09:50:00 +0100960 /*
961 * Check if the user wants file backed memory. It's ok
962 * if there's no file given, we'll just use anon mamp then.
963 */
964 td->mmapfile = get_mmap_file(mem);
Jens Axboeebac4652005-12-08 15:25:21 +0100965 td->mem_type = MEM_MMAP;
966 return 0;
Jens Axboe74b025b2006-12-19 15:18:14 +0100967 } else if (!strncmp(mem, "shmhuge", 7)) {
968#ifdef FIO_HAVE_HUGETLB
969 td->mem_type = MEM_SHMHUGE;
970 return 0;
971#else
972 log_err("fio: shmhuge not available\n");
973 return 1;
974#endif
Jens Axboe0268b8b2006-12-20 12:48:23 +0100975 } else if (!strncmp(mem, "shm", 3)) {
976 td->mem_type = MEM_SHM;
977 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100978 }
979
Jens Axboed0bdaf42006-12-20 14:40:44 +0100980 log_err("fio: mem type: malloc, shm, shmhuge, mmap, mmaphuge\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100981 return 1;
982}
983
Jens Axboeb4692822006-10-27 13:43:22 +0200984static int str_ioengine_cb(void *data, const char *str)
Jens Axboeebac4652005-12-08 15:25:21 +0100985{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200986 struct thread_data *td = data;
987
Jens Axboe2866c822006-10-09 15:57:48 +0200988 td->io_ops = load_ioengine(td, str);
989 if (td->io_ops)
Jens Axboeebac4652005-12-08 15:25:21 +0100990 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100991
Jens Axboe08aae9a2006-11-24 12:43:49 +0100992 log_err("fio: ioengine= libaio, posixaio, sync, mmap, sgio, splice, cpu, null\n");
Jens Axboe5f350952006-11-07 15:20:59 +0100993 log_err("fio: or specify path to dynamic ioengine module\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100994 return 1;
995}
996
Jens Axboee1f36502006-10-27 10:54:08 +0200997static int str_lockmem_cb(void fio_unused *data, unsigned long *val)
998{
999 mlock_size = *val;
1000 return 0;
1001}
1002
Jens Axboe34cfcda2006-11-03 14:00:45 +01001003#ifdef FIO_HAVE_IOPRIO
Jens Axboee1f36502006-10-27 10:54:08 +02001004static int str_prioclass_cb(void *data, unsigned int *val)
1005{
1006 struct thread_data *td = data;
1007
1008 td->ioprio |= *val << IOPRIO_CLASS_SHIFT;
1009 return 0;
1010}
1011
1012static int str_prio_cb(void *data, unsigned int *val)
1013{
1014 struct thread_data *td = data;
1015
1016 td->ioprio |= *val;
1017 return 0;
1018}
Jens Axboe34cfcda2006-11-03 14:00:45 +01001019#endif
Jens Axboee1f36502006-10-27 10:54:08 +02001020
1021static int str_exitall_cb(void)
1022{
1023 exitall_on_terminate = 1;
1024 return 0;
1025}
1026
1027static int str_cpumask_cb(void *data, unsigned int *val)
1028{
1029 struct thread_data *td = data;
1030
1031 fill_cpu_mask(td->cpumask, *val);
1032 return 0;
1033}
1034
Jens Axboe07261982006-06-07 10:51:12 +02001035/*
1036 * This is our [ini] type file parser.
1037 */
Jens Axboe1e97cce2006-12-05 11:44:16 +01001038static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +01001039{
Jens Axboee1f36502006-10-27 10:54:08 +02001040 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +01001041 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +01001042 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +01001043 fpos_t off;
1044 FILE *f;
1045 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001046 int ret = 0, stonewall;
Jens Axboeebac4652005-12-08 15:25:21 +01001047
1048 f = fopen(file, "r");
1049 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +02001050 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +01001051 return 1;
1052 }
1053
1054 string = malloc(4096);
1055 name = malloc(256);
Jens Axboefee3bb42006-10-30 13:32:08 +01001056 memset(name, 0, 256);
Jens Axboeebac4652005-12-08 15:25:21 +01001057
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001058 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001059 do {
1060 p = fgets(string, 4095, f);
1061 if (!p)
Jens Axboe45410ac2006-06-07 11:10:39 +02001062 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001063 if (is_empty_or_comment(p))
1064 continue;
Jens Axboefee3bb42006-10-30 13:32:08 +01001065 if (sscanf(p, "[%255s]", name) != 1)
Jens Axboeebac4652005-12-08 15:25:21 +01001066 continue;
1067
1068 global = !strncmp(name, "global", 6);
1069
1070 name[strlen(name) - 1] = '\0';
1071
1072 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +02001073 if (!td) {
1074 ret = 1;
1075 break;
1076 }
Jens Axboeebac4652005-12-08 15:25:21 +01001077
Jens Axboe972cfd22006-06-09 11:08:56 +02001078 /*
1079 * Seperate multiple job files by a stonewall
1080 */
Jens Axboef9481912006-06-09 11:37:28 +02001081 if (!global && stonewall) {
Jens Axboe972cfd22006-06-09 11:08:56 +02001082 td->stonewall = stonewall;
1083 stonewall = 0;
1084 }
1085
Jens Axboeebac4652005-12-08 15:25:21 +01001086 fgetpos(f, &off);
1087 while ((p = fgets(string, 4096, f)) != NULL) {
1088 if (is_empty_or_comment(p))
1089 continue;
Jens Axboee1f36502006-10-27 10:54:08 +02001090
Jens Axboeb6754f92006-05-30 14:29:32 +02001091 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +01001092
1093 if (p[0] == '[')
1094 break;
1095
Jens Axboe4ae3f762006-05-30 13:35:14 +02001096 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +02001097
Jens Axboee1f36502006-10-27 10:54:08 +02001098 fgetpos(f, &off);
Jens Axboeebac4652005-12-08 15:25:21 +01001099
Jens Axboe45410ac2006-06-07 11:10:39 +02001100 /*
1101 * Don't break here, continue parsing options so we
1102 * dump all the bad ones. Makes trial/error fixups
1103 * easier on the user.
1104 */
Jens Axboe7c124ac2006-10-30 13:36:52 +01001105 ret |= parse_option(p, options, td);
Jens Axboeebac4652005-12-08 15:25:21 +01001106 }
Jens Axboeebac4652005-12-08 15:25:21 +01001107
Jens Axboe45410ac2006-06-07 11:10:39 +02001108 if (!ret) {
1109 fsetpos(f, &off);
1110 ret = add_job(td, name, 0);
Jens Axboeb1508cf2006-11-02 09:12:40 +01001111 } else {
1112 log_err("fio: job %s dropped\n", name);
1113 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +02001114 }
Jens Axboe7c124ac2006-10-30 13:36:52 +01001115 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001116
1117 free(string);
1118 free(name);
1119 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +02001120 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001121}
1122
1123static int fill_def_thread(void)
1124{
1125 memset(&def_thread, 0, sizeof(def_thread));
1126
1127 if (fio_getaffinity(getpid(), &def_thread.cpumask) == -1) {
1128 perror("sched_getaffinity");
1129 return 1;
1130 }
1131
1132 /*
Jens Axboeee738492007-01-10 11:23:16 +01001133 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +01001134 */
Jens Axboeee738492007-01-10 11:23:16 +01001135 fill_default_options(&def_thread, options);
1136
Jens Axboe972cfd22006-06-09 11:08:56 +02001137 def_thread.timeout = def_timeout;
Jens Axboeec94ec52006-10-20 10:59:19 +02001138 def_thread.write_bw_log = write_bw_log;
1139 def_thread.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +01001140
Jens Axboeebac4652005-12-08 15:25:21 +01001141#ifdef FIO_HAVE_DISK_UTIL
1142 def_thread.do_disk_util = 1;
1143#endif
1144
1145 return 0;
1146}
1147
Jens Axboe0ab8db82006-10-18 17:16:23 +02001148static void usage(void)
Jens Axboe4785f992006-05-26 03:59:10 +02001149{
1150 printf("%s\n", fio_version_string);
Jens Axboeb4692822006-10-27 13:43:22 +02001151 printf("\t--output\tWrite output to file\n");
1152 printf("\t--timeout\tRuntime in seconds\n");
1153 printf("\t--latency-log\tGenerate per-job latency logs\n");
1154 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
1155 printf("\t--minimal\tMinimal (terse) output\n");
1156 printf("\t--version\tPrint version info and exit\n");
Jens Axboefd28ca42007-01-09 21:20:13 +01001157 printf("\t--help\t\tPrint this page\n");
1158 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
Jens Axboe4785f992006-05-26 03:59:10 +02001159}
1160
Jens Axboe972cfd22006-06-09 11:08:56 +02001161static int parse_cmd_line(int argc, char *argv[])
Jens Axboeebac4652005-12-08 15:25:21 +01001162{
Jens Axboeb4692822006-10-27 13:43:22 +02001163 struct thread_data *td = NULL;
Jens Axboec2b1e752006-10-30 09:03:13 +01001164 int c, ini_idx = 0, lidx, ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001165
Jens Axboeb4692822006-10-27 13:43:22 +02001166 while ((c = getopt_long(argc, argv, "", long_options, &lidx)) != -1) {
Jens Axboeebac4652005-12-08 15:25:21 +01001167 switch (c) {
Jens Axboeb4692822006-10-27 13:43:22 +02001168 case 't':
1169 def_timeout = atoi(optarg);
1170 break;
1171 case 'l':
1172 write_lat_log = 1;
1173 break;
1174 case 'w':
1175 write_bw_log = 1;
1176 break;
1177 case 'o':
1178 f_out = fopen(optarg, "w+");
1179 if (!f_out) {
1180 perror("fopen output");
1181 exit(1);
1182 }
1183 f_err = f_out;
1184 break;
1185 case 'm':
1186 terse_output = 1;
1187 break;
1188 case 'h':
1189 usage();
1190 exit(0);
Jens Axboefd28ca42007-01-09 21:20:13 +01001191 case 'c':
Jens Axboe29fc6af2007-01-09 21:22:02 +01001192 ret = show_cmd_help(options, optarg);
1193 exit(ret);
Jens Axboeb4692822006-10-27 13:43:22 +02001194 case 'v':
1195 printf("%s\n", fio_version_string);
1196 exit(0);
1197 case FIO_GETOPT_JOB: {
1198 const char *opt = long_options[lidx].name;
1199 char *val = optarg;
1200
Jens Axboec2b1e752006-10-30 09:03:13 +01001201 if (!strncmp(opt, "name", 4) && td) {
1202 ret = add_job(td, td->name ?: "fio", 0);
1203 if (ret) {
1204 put_job(td);
1205 return 0;
1206 }
1207 td = NULL;
1208 }
Jens Axboeb4692822006-10-27 13:43:22 +02001209 if (!td) {
Jens Axboe38d0adb2006-10-30 12:21:25 +01001210 int global = !strncmp(val, "global", 6);
Jens Axboec2b1e752006-10-30 09:03:13 +01001211
1212 td = get_new_job(global, &def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001213 if (!td)
1214 return 0;
1215 }
Jens Axboe38d0adb2006-10-30 12:21:25 +01001216
Jens Axboeb1508cf2006-11-02 09:12:40 +01001217 ret = parse_cmd_option(opt, val, options, td);
1218 if (ret) {
1219 log_err("fio: job dropped\n");
1220 put_job(td);
1221 td = NULL;
1222 }
Jens Axboeb4692822006-10-27 13:43:22 +02001223 break;
1224 }
1225 default:
Jens Axboeb4692822006-10-27 13:43:22 +02001226 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001227 }
1228 }
Jens Axboec9fad892006-05-27 17:26:50 +02001229
Jens Axboeb4692822006-10-27 13:43:22 +02001230 if (td) {
Jens Axboec2b1e752006-10-30 09:03:13 +01001231 ret = add_job(td, td->name ?: "fio", 0);
Jens Axboeb4692822006-10-27 13:43:22 +02001232 if (ret)
1233 put_job(td);
Jens Axboe972cfd22006-06-09 11:08:56 +02001234 }
Jens Axboe774a6172006-08-24 08:44:26 +02001235
Jens Axboeb4692822006-10-27 13:43:22 +02001236 while (optind < argc) {
1237 ini_idx++;
1238 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1239 ini_file[ini_idx - 1] = strdup(argv[optind]);
1240 optind++;
Jens Axboeeb8bbf42006-06-08 21:40:11 +02001241 }
Jens Axboe972cfd22006-06-09 11:08:56 +02001242
1243 return ini_idx;
Jens Axboeebac4652005-12-08 15:25:21 +01001244}
1245
1246static void free_shm(void)
1247{
1248 struct shmid_ds sbuf;
1249
1250 if (threads) {
Jens Axboe2c0ecd22006-06-08 13:25:41 +02001251 shmdt((void *) threads);
Jens Axboeebac4652005-12-08 15:25:21 +01001252 threads = NULL;
1253 shmctl(shm_id, IPC_RMID, &sbuf);
1254 }
1255}
1256
Jens Axboe906c8d72006-06-13 09:37:56 +02001257/*
1258 * The thread area is shared between the main process and the job
1259 * threads/processes. So setup a shared memory segment that will hold
1260 * all the job info.
1261 */
Jens Axboeebac4652005-12-08 15:25:21 +01001262static int setup_thread_area(void)
1263{
1264 /*
1265 * 1024 is too much on some machines, scale max_jobs if
1266 * we get a failure that looks like too large a shm segment
1267 */
1268 do {
Jens Axboe906c8d72006-06-13 09:37:56 +02001269 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +01001270
Jens Axboe906c8d72006-06-13 09:37:56 +02001271 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +01001272 if (shm_id != -1)
1273 break;
1274 if (errno != EINVAL) {
1275 perror("shmget");
1276 break;
1277 }
1278
1279 max_jobs >>= 1;
1280 } while (max_jobs);
1281
1282 if (shm_id == -1)
1283 return 1;
1284
1285 threads = shmat(shm_id, NULL, 0);
1286 if (threads == (void *) -1) {
1287 perror("shmat");
1288 return 1;
1289 }
1290
1291 atexit(free_shm);
1292 return 0;
1293}
1294
Jens Axboeb4692822006-10-27 13:43:22 +02001295/*
1296 * Copy the fio options into the long options map, so we mirror
1297 * job and cmd line options.
1298 */
1299static void dupe_job_options(void)
1300{
1301 struct fio_option *o;
1302 unsigned int i;
1303
1304 i = 0;
1305 while (long_options[i].name)
1306 i++;
1307
1308 o = &options[0];
1309 while (o->name) {
1310 long_options[i].name = o->name;
1311 long_options[i].val = FIO_GETOPT_JOB;
1312 if (o->type == FIO_OPT_STR_SET)
1313 long_options[i].has_arg = no_argument;
1314 else
1315 long_options[i].has_arg = required_argument;
1316
1317 i++;
1318 o++;
1319 assert(i < FIO_JOB_OPTS + FIO_CMD_OPTS);
1320 }
1321}
1322
Jens Axboeebac4652005-12-08 15:25:21 +01001323int parse_options(int argc, char *argv[])
1324{
Jens Axboe972cfd22006-06-09 11:08:56 +02001325 int job_files, i;
1326
Jens Axboeb4692822006-10-27 13:43:22 +02001327 f_out = stdout;
1328 f_err = stderr;
1329
1330 dupe_job_options();
1331
Jens Axboeebac4652005-12-08 15:25:21 +01001332 if (setup_thread_area())
1333 return 1;
1334 if (fill_def_thread())
1335 return 1;
1336
Jens Axboe972cfd22006-06-09 11:08:56 +02001337 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001338
Jens Axboe972cfd22006-06-09 11:08:56 +02001339 for (i = 0; i < job_files; i++) {
1340 if (fill_def_thread())
1341 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001342 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001343 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001344 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001345 }
Jens Axboeebac4652005-12-08 15:25:21 +01001346
Jens Axboe88c6ed82006-06-09 11:28:10 +02001347 free(ini_file);
Jens Axboeb4692822006-10-27 13:43:22 +02001348
1349 if (!thread_number) {
1350 log_err("No jobs defined(s)\n");
Jens Axboeb4692822006-10-27 13:43:22 +02001351 return 1;
1352 }
1353
Jens Axboeebac4652005-12-08 15:25:21 +01001354 return 0;
1355}