blob: 56df3c7582e91ce2f419709672d550d1b3d5173c [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_mem_cb(void *, const char *);
Jens Axboee1f36502006-10-27 10:54:08 +020026static int str_lockmem_cb(void *, unsigned long *);
Jens Axboe34cfcda2006-11-03 14:00:45 +010027#ifdef FIO_HAVE_IOPRIO
Jens Axboee1f36502006-10-27 10:54:08 +020028static int str_prio_cb(void *, unsigned int *);
29static int str_prioclass_cb(void *, unsigned int *);
Jens Axboe34cfcda2006-11-03 14:00:45 +010030#endif
Jens Axboee1f36502006-10-27 10:54:08 +020031static int str_exitall_cb(void);
32static int str_cpumask_cb(void *, unsigned int *);
33
Jens Axboeee738492007-01-10 11:23:16 +010034#define __stringify_1(x) #x
35#define __stringify(x) __stringify_1(x)
36
Jens Axboee1f36502006-10-27 10:54:08 +020037/*
38 * Map of job/command line options
39 */
40static struct fio_option options[] = {
41 {
Jens Axboe61697c32007-02-05 15:04:46 +010042 .name = "description",
43 .type = FIO_OPT_STR_STORE,
44 .off1 = td_var_offset(description),
45 .help = "Text job description",
46 },
47 {
Jens Axboee1f36502006-10-27 10:54:08 +020048 .name = "name",
49 .type = FIO_OPT_STR_STORE,
50 .off1 = td_var_offset(name),
Jens Axboefd28ca42007-01-09 21:20:13 +010051 .help = "Name of this job",
Jens Axboee1f36502006-10-27 10:54:08 +020052 },
53 {
54 .name = "directory",
55 .type = FIO_OPT_STR_STORE,
56 .off1 = td_var_offset(directory),
Jens Axboefd28ca42007-01-09 21:20:13 +010057 .help = "Directory to store files in",
Jens Axboee1f36502006-10-27 10:54:08 +020058 },
59 {
60 .name = "filename",
61 .type = FIO_OPT_STR_STORE,
62 .off1 = td_var_offset(filename),
Jens Axboefd28ca42007-01-09 21:20:13 +010063 .help = "Force the use of a specific file",
Jens Axboee1f36502006-10-27 10:54:08 +020064 },
65 {
66 .name = "rw",
67 .type = FIO_OPT_STR,
Jens Axboeb1ec1da2007-02-23 10:29:16 +010068 .off1 = td_var_offset(td_ddir),
Jens Axboe15f79182007-01-10 12:26:18 +010069 .help = "IO direction",
Jens Axboeee738492007-01-10 11:23:16 +010070 .def = "read",
Jens Axboeb1ec1da2007-02-23 10:29:16 +010071 .posval = {
72 { .ival = "read", .oval = TD_DDIR_READ },
73 { .ival = "write", .oval = TD_DDIR_WRITE },
74 { .ival = "randread", .oval = TD_DDIR_RANDREAD },
75 { .ival = "randwrite", .oval = TD_DDIR_RANDWRITE },
76 { .ival = "rw", .oval = TD_DDIR_RW },
77 { .ival = "randrw", .oval = TD_DDIR_RANDRW },
78 },
Jens Axboee1f36502006-10-27 10:54:08 +020079 },
80 {
81 .name = "ioengine",
Jens Axboe09629a92007-03-09 09:00:06 +010082 .type = FIO_OPT_STR_STORE,
83 .off1 = td_var_offset(ioengine),
Jens Axboe15f79182007-01-10 12:26:18 +010084 .help = "IO engine to use",
Jens Axboeee738492007-01-10 11:23:16 +010085 .def = "sync",
Jens Axboeb1ec1da2007-02-23 10:29:16 +010086 .posval = {
Jens Axboe10cad1a2007-02-23 11:23:03 +010087 { .ival = "sync", },
88#ifdef FIO_HAVE_LIBAIO
89 { .ival = "libaio", },
90#endif
91#ifdef FIO_HAVE_POSIXAIO
92 { .ival = "posixaio", },
93#endif
94 { .ival = "mmap", },
95#ifdef FIO_HAVE_SPLICE
96 { .ival = "splice", },
97#endif
98#ifdef FIO_HAVE_SGIO
99 { .ival = "sg", },
100#endif
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100101 { .ival = "null", }, { .ival = "net", },
Jens Axboe10cad1a2007-02-23 11:23:03 +0100102#ifdef FIO_HAVE_SYSLET
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100103 { .ival = "syslet-rw", },
Jens Axboe10cad1a2007-02-23 11:23:03 +0100104#endif
Joel Becker7b395ca2007-02-28 11:10:58 +0100105 { .ival = "external", },
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100106 },
Jens Axboee1f36502006-10-27 10:54:08 +0200107 },
108 {
Jens Axboe03b74b32007-01-11 11:04:31 +0100109 .name = "iodepth",
110 .type = FIO_OPT_INT,
111 .off1 = td_var_offset(iodepth),
112 .help = "Amount of IO buffers to keep in flight",
113 .def = "1",
114 },
115 {
Jens Axboecb5ab512007-02-26 12:57:09 +0100116 .name = "iodepth_batch",
117 .type = FIO_OPT_INT,
118 .off1 = td_var_offset(iodepth_batch),
119 .help = "Number of IO to submit in one go",
120 },
121 {
Jens Axboee916b392007-02-20 14:37:26 +0100122 .name = "iodepth_low",
123 .type = FIO_OPT_INT,
124 .off1 = td_var_offset(iodepth_low),
125 .help = "Low water mark for queuing depth",
126 },
127 {
Jens Axboe03b74b32007-01-11 11:04:31 +0100128 .name = "size",
129 .type = FIO_OPT_STR_VAL,
130 .off1 = td_var_offset(total_file_size),
131 .help = "Size of device or file",
132 },
133 {
134 .name = "bs",
135 .type = FIO_OPT_STR_VAL_INT,
136 .off1 = td_var_offset(bs[DDIR_READ]),
137 .off2 = td_var_offset(bs[DDIR_WRITE]),
138 .help = "Block size unit",
139 .def = "4k",
140 },
141 {
142 .name = "bsrange",
143 .type = FIO_OPT_RANGE,
144 .off1 = td_var_offset(min_bs[DDIR_READ]),
145 .off2 = td_var_offset(max_bs[DDIR_READ]),
146 .off3 = td_var_offset(min_bs[DDIR_WRITE]),
147 .off4 = td_var_offset(max_bs[DDIR_WRITE]),
148 .help = "Set block size range (in more detail than bs)",
149 },
150 {
151 .name = "bs_unaligned",
152 .type = FIO_OPT_STR_SET,
153 .off1 = td_var_offset(bs_unaligned),
154 .help = "Don't sector align IO buffer sizes",
155 },
156 {
157 .name = "offset",
158 .type = FIO_OPT_STR_VAL,
159 .off1 = td_var_offset(start_offset),
160 .help = "Start IO from this offset",
161 .def = "0",
162 },
163 {
164 .name = "randrepeat",
165 .type = FIO_OPT_BOOL,
166 .off1 = td_var_offset(rand_repeatable),
167 .help = "Use repeatable random IO pattern",
168 .def = "1",
169 },
170 {
171 .name = "norandommap",
172 .type = FIO_OPT_STR_SET,
173 .off1 = td_var_offset(norandommap),
174 .help = "Accept potential duplicate random blocks",
175 },
176 {
177 .name = "nrfiles",
178 .type = FIO_OPT_INT,
179 .off1 = td_var_offset(nr_files),
180 .help = "Split job workload between this number of files",
181 .def = "1",
182 },
183 {
Jens Axboeb5af8292007-03-08 12:43:13 +0100184 .name = "openfiles",
185 .type = FIO_OPT_INT,
186 .off1 = td_var_offset(open_files),
187 .help = "Number of files to keep open at the same time",
188 },
189 {
Jens Axboe0aabe162007-02-23 08:45:55 +0100190 .name = "file_service_type",
191 .type = FIO_OPT_STR,
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100192 .off1 = td_var_offset(file_service_type),
Jens Axboe0aabe162007-02-23 08:45:55 +0100193 .help = "How to select which file to service next",
194 .def = "roundrobin",
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100195 .posval = {
196 { .ival = "random", .oval = FIO_FSERVICE_RANDOM },
197 { .ival = "roundrobin", .oval = FIO_FSERVICE_RR },
198 },
Jens Axboe0aabe162007-02-23 08:45:55 +0100199 },
200 {
Jens Axboe03b74b32007-01-11 11:04:31 +0100201 .name = "fsync",
202 .type = FIO_OPT_INT,
203 .off1 = td_var_offset(fsync_blocks),
204 .help = "Issue fsync for writes every given number of blocks",
205 .def = "0",
206 },
207 {
208 .name = "direct",
209 .type = FIO_OPT_BOOL,
210 .off1 = td_var_offset(odirect),
Jens Axboe76a43db2007-01-11 13:24:44 +0100211 .help = "Use O_DIRECT IO (negates buffered)",
212 .def = "0",
213 },
214 {
215 .name = "buffered",
216 .type = FIO_OPT_BOOL,
217 .off1 = td_var_offset(odirect),
218 .neg = 1,
219 .help = "Use buffered IO (negates direct)",
Jens Axboe03b74b32007-01-11 11:04:31 +0100220 .def = "1",
221 },
222 {
223 .name = "overwrite",
224 .type = FIO_OPT_BOOL,
225 .off1 = td_var_offset(overwrite),
226 .help = "When writing, set whether to overwrite current data",
227 .def = "0",
228 },
229 {
230 .name = "loops",
231 .type = FIO_OPT_INT,
232 .off1 = td_var_offset(loops),
233 .help = "Number of times to run the job",
234 .def = "1",
235 },
236 {
237 .name = "numjobs",
238 .type = FIO_OPT_INT,
239 .off1 = td_var_offset(numjobs),
240 .help = "Duplicate this job this many times",
241 .def = "1",
242 },
243 {
244 .name = "startdelay",
245 .type = FIO_OPT_INT,
246 .off1 = td_var_offset(start_delay),
247 .help = "Only start job when this period has passed",
248 .def = "0",
249 },
250 {
251 .name = "runtime",
252 .alias = "timeout",
253 .type = FIO_OPT_STR_VAL_TIME,
254 .off1 = td_var_offset(timeout),
255 .help = "Stop workload when this amount of time has passed",
256 .def = "0",
257 },
258 {
Jens Axboee1f36502006-10-27 10:54:08 +0200259 .name = "mem",
260 .type = FIO_OPT_STR,
261 .cb = str_mem_cb,
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100262 .off1 = td_var_offset(mem_type),
Jens Axboe15f79182007-01-10 12:26:18 +0100263 .help = "Backing type for IO buffers",
Jens Axboeee738492007-01-10 11:23:16 +0100264 .def = "malloc",
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100265 .posval = {
266 { .ival = "malloc", .oval = MEM_MALLOC },
267 { .ival = "shm", .oval = MEM_SHM },
268#ifdef FIO_HAVE_HUGETLB
269 { .ival = "shmhuge", .oval = MEM_SHMHUGE },
270#endif
271 { .ival = "mmap", .oval = MEM_MMAP },
272#ifdef FIO_HAVE_HUGETLB
273 { .ival = "mmaphuge", .oval = MEM_MMAPHUGE },
274#endif
275 },
Jens Axboee1f36502006-10-27 10:54:08 +0200276 },
277 {
278 .name = "verify",
279 .type = FIO_OPT_STR,
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100280 .off1 = td_var_offset(verify),
Jens Axboe15f79182007-01-10 12:26:18 +0100281 .help = "Verify sum function",
Jens Axboeee738492007-01-10 11:23:16 +0100282 .def = "0",
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100283 .posval = {
284 { .ival = "0", .oval = VERIFY_NONE },
285 { .ival = "crc32", .oval = VERIFY_CRC32 },
286 { .ival = "md5", .oval = VERIFY_MD5 },
287 },
Jens Axboee1f36502006-10-27 10:54:08 +0200288 },
289 {
290 .name = "write_iolog",
Jens Axboe076efc72006-10-27 11:24:25 +0200291 .type = FIO_OPT_STR_STORE,
292 .off1 = td_var_offset(write_iolog_file),
Jens Axboefd28ca42007-01-09 21:20:13 +0100293 .help = "Store IO pattern to file",
Jens Axboee1f36502006-10-27 10:54:08 +0200294 },
295 {
Jens Axboe076efc72006-10-27 11:24:25 +0200296 .name = "read_iolog",
Jens Axboee1f36502006-10-27 10:54:08 +0200297 .type = FIO_OPT_STR_STORE,
Jens Axboe076efc72006-10-27 11:24:25 +0200298 .off1 = td_var_offset(read_iolog_file),
Jens Axboefd28ca42007-01-09 21:20:13 +0100299 .help = "Playback IO pattern from file",
Jens Axboee1f36502006-10-27 10:54:08 +0200300 },
301 {
302 .name = "exec_prerun",
303 .type = FIO_OPT_STR_STORE,
304 .off1 = td_var_offset(exec_prerun),
Jens Axboefd28ca42007-01-09 21:20:13 +0100305 .help = "Execute this file prior to running job",
Jens Axboee1f36502006-10-27 10:54:08 +0200306 },
307 {
308 .name = "exec_postrun",
309 .type = FIO_OPT_STR_STORE,
310 .off1 = td_var_offset(exec_postrun),
Jens Axboefd28ca42007-01-09 21:20:13 +0100311 .help = "Execute this file after running job",
Jens Axboee1f36502006-10-27 10:54:08 +0200312 },
313#ifdef FIO_HAVE_IOSCHED_SWITCH
314 {
315 .name = "ioscheduler",
316 .type = FIO_OPT_STR_STORE,
317 .off1 = td_var_offset(ioscheduler),
Jens Axboefd28ca42007-01-09 21:20:13 +0100318 .help = "Use this IO scheduler on the backing device",
Jens Axboee1f36502006-10-27 10:54:08 +0200319 },
320#endif
321 {
Jens Axboee1f36502006-10-27 10:54:08 +0200322 .name = "zonesize",
323 .type = FIO_OPT_STR_VAL,
324 .off1 = td_var_offset(zone_size),
Jens Axboefd28ca42007-01-09 21:20:13 +0100325 .help = "Give size of an IO zone",
Jens Axboeee738492007-01-10 11:23:16 +0100326 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200327 },
328 {
329 .name = "zoneskip",
330 .type = FIO_OPT_STR_VAL,
331 .off1 = td_var_offset(zone_skip),
Jens Axboefd28ca42007-01-09 21:20:13 +0100332 .help = "Space between IO zones",
Jens Axboeee738492007-01-10 11:23:16 +0100333 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200334 },
335 {
336 .name = "lockmem",
337 .type = FIO_OPT_STR_VAL,
338 .cb = str_lockmem_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100339 .help = "Lock down this amount of memory",
Jens Axboeee738492007-01-10 11:23:16 +0100340 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200341 },
342 {
Jens Axboee1f36502006-10-27 10:54:08 +0200343 .name = "rwmixcycle",
344 .type = FIO_OPT_INT,
345 .off1 = td_var_offset(rwmixcycle),
Jens Axboeee738492007-01-10 11:23:16 +0100346 .help = "Cycle period for mixed read/write workloads (msec)",
347 .def = "500",
Jens Axboee1f36502006-10-27 10:54:08 +0200348 },
349 {
350 .name = "rwmixread",
351 .type = FIO_OPT_INT,
352 .off1 = td_var_offset(rwmixread),
Jens Axboeee738492007-01-10 11:23:16 +0100353 .maxval = 100,
Jens Axboefd28ca42007-01-09 21:20:13 +0100354 .help = "Percentage of mixed workload that is reads",
Jens Axboeee738492007-01-10 11:23:16 +0100355 .def = "50",
Jens Axboee1f36502006-10-27 10:54:08 +0200356 },
357 {
358 .name = "rwmixwrite",
359 .type = FIO_OPT_INT,
360 .off1 = td_var_offset(rwmixwrite),
Jens Axboeee738492007-01-10 11:23:16 +0100361 .maxval = 100,
Jens Axboefd28ca42007-01-09 21:20:13 +0100362 .help = "Percentage of mixed workload that is writes",
Jens Axboeee738492007-01-10 11:23:16 +0100363 .def = "50",
Jens Axboee1f36502006-10-27 10:54:08 +0200364 },
365 {
366 .name = "nice",
367 .type = FIO_OPT_INT,
368 .off1 = td_var_offset(nice),
Jens Axboefd28ca42007-01-09 21:20:13 +0100369 .help = "Set job CPU nice value",
Jens Axboe15f79182007-01-10 12:26:18 +0100370 .minval = -19,
Jens Axboeee738492007-01-10 11:23:16 +0100371 .maxval = 20,
372 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200373 },
374#ifdef FIO_HAVE_IOPRIO
375 {
376 .name = "prio",
377 .type = FIO_OPT_INT,
378 .cb = str_prio_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100379 .help = "Set job IO priority value",
Jens Axboe15f79182007-01-10 12:26:18 +0100380 .minval = 0,
381 .maxval = 7,
Jens Axboee1f36502006-10-27 10:54:08 +0200382 },
383 {
384 .name = "prioclass",
385 .type = FIO_OPT_INT,
386 .cb = str_prioclass_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100387 .help = "Set job IO priority class",
Jens Axboe15f79182007-01-10 12:26:18 +0100388 .minval = 0,
389 .maxval = 3,
Jens Axboee1f36502006-10-27 10:54:08 +0200390 },
391#endif
392 {
393 .name = "thinktime",
394 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100395 .off1 = td_var_offset(thinktime),
Jens Axboe5fa0f812007-01-11 14:06:35 +0100396 .help = "Idle time between IO buffers (usec)",
Jens Axboeee738492007-01-10 11:23:16 +0100397 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200398 },
399 {
Jens Axboe48097d52007-02-17 06:30:44 +0100400 .name = "thinktime_spin",
401 .type = FIO_OPT_INT,
402 .off1 = td_var_offset(thinktime_spin),
Jens Axboe34403fb2007-03-02 21:43:25 +0100403 .help = "Start think time by spinning this amount (usec)",
Jens Axboe48097d52007-02-17 06:30:44 +0100404 .def = "0",
405 },
406 {
Jens Axboe9c1f7432007-01-03 20:43:19 +0100407 .name = "thinktime_blocks",
408 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100409 .off1 = td_var_offset(thinktime_blocks),
Jens Axboefd28ca42007-01-09 21:20:13 +0100410 .help = "IO buffer period between 'thinktime'",
Jens Axboeee738492007-01-10 11:23:16 +0100411 .def = "1",
Jens Axboe9c1f7432007-01-03 20:43:19 +0100412 },
413 {
Jens Axboee1f36502006-10-27 10:54:08 +0200414 .name = "rate",
415 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100416 .off1 = td_var_offset(rate),
Jens Axboefd28ca42007-01-09 21:20:13 +0100417 .help = "Set bandwidth rate",
Jens Axboee1f36502006-10-27 10:54:08 +0200418 },
419 {
420 .name = "ratemin",
421 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100422 .off1 = td_var_offset(ratemin),
Jens Axboefd28ca42007-01-09 21:20:13 +0100423 .help = "The bottom limit accepted",
Jens Axboee1f36502006-10-27 10:54:08 +0200424 },
425 {
426 .name = "ratecycle",
427 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100428 .off1 = td_var_offset(ratecycle),
Jens Axboe6da1fa72007-01-10 11:27:48 +0100429 .help = "Window average for rate limits (msec)",
Jens Axboeee738492007-01-10 11:23:16 +0100430 .def = "1000",
Jens Axboee1f36502006-10-27 10:54:08 +0200431 },
432 {
Jens Axboee1f36502006-10-27 10:54:08 +0200433 .name = "invalidate",
Jens Axboe13335dd2007-01-10 13:14:02 +0100434 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100435 .off1 = td_var_offset(invalidate_cache),
Jens Axboefd28ca42007-01-09 21:20:13 +0100436 .help = "Invalidate buffer/page cache prior to running job",
Jens Axboeee738492007-01-10 11:23:16 +0100437 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200438 },
439 {
440 .name = "sync",
Jens Axboe13335dd2007-01-10 13:14:02 +0100441 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100442 .off1 = td_var_offset(sync_io),
Jens Axboefd28ca42007-01-09 21:20:13 +0100443 .help = "Use O_SYNC for buffered writes",
Jens Axboeee738492007-01-10 11:23:16 +0100444 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200445 },
446 {
447 .name = "bwavgtime",
448 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100449 .off1 = td_var_offset(bw_avg_time),
Jens Axboeee738492007-01-10 11:23:16 +0100450 .help = "Time window over which to calculate bandwidth (msec)",
451 .def = "500",
Jens Axboee1f36502006-10-27 10:54:08 +0200452 },
453 {
454 .name = "create_serialize",
Jens Axboe13335dd2007-01-10 13:14:02 +0100455 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100456 .off1 = td_var_offset(create_serialize),
Jens Axboefd28ca42007-01-09 21:20:13 +0100457 .help = "Serialize creating of job files",
Jens Axboeee738492007-01-10 11:23:16 +0100458 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200459 },
460 {
461 .name = "create_fsync",
Jens Axboe13335dd2007-01-10 13:14:02 +0100462 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100463 .off1 = td_var_offset(create_fsync),
Jens Axboefd28ca42007-01-09 21:20:13 +0100464 .help = "Fsync file after creation",
Jens Axboeee738492007-01-10 11:23:16 +0100465 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200466 },
467 {
Jens Axboee1f36502006-10-27 10:54:08 +0200468 .name = "cpuload",
469 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100470 .off1 = td_var_offset(cpuload),
Jens Axboefd28ca42007-01-09 21:20:13 +0100471 .help = "Use this percentage of CPU",
Jens Axboee1f36502006-10-27 10:54:08 +0200472 },
473 {
474 .name = "cpuchunks",
475 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100476 .off1 = td_var_offset(cpucycle),
Jens Axboefd28ca42007-01-09 21:20:13 +0100477 .help = "Length of the CPU burn cycles",
Jens Axboee1f36502006-10-27 10:54:08 +0200478 },
Jens Axboee1f36502006-10-27 10:54:08 +0200479#ifdef FIO_HAVE_CPU_AFFINITY
480 {
481 .name = "cpumask",
482 .type = FIO_OPT_INT,
483 .cb = str_cpumask_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100484 .help = "CPU affinity mask",
Jens Axboee1f36502006-10-27 10:54:08 +0200485 },
486#endif
487 {
488 .name = "end_fsync",
Jens Axboe13335dd2007-01-10 13:14:02 +0100489 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100490 .off1 = td_var_offset(end_fsync),
Jens Axboefd28ca42007-01-09 21:20:13 +0100491 .help = "Include fsync at the end of job",
Jens Axboeee738492007-01-10 11:23:16 +0100492 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200493 },
494 {
495 .name = "unlink",
Jens Axboe13335dd2007-01-10 13:14:02 +0100496 .type = FIO_OPT_BOOL,
Jens Axboee1f36502006-10-27 10:54:08 +0200497 .off1 = td_var_offset(unlink),
Jens Axboeee738492007-01-10 11:23:16 +0100498 .help = "Unlink created files after job has completed",
Jens Axboee545a6c2007-01-14 00:00:29 +0100499 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200500 },
501 {
502 .name = "exitall",
503 .type = FIO_OPT_STR_SET,
504 .cb = str_exitall_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100505 .help = "Terminate all jobs when one exits",
Jens Axboee1f36502006-10-27 10:54:08 +0200506 },
507 {
508 .name = "stonewall",
509 .type = FIO_OPT_STR_SET,
510 .off1 = td_var_offset(stonewall),
Jens Axboefd28ca42007-01-09 21:20:13 +0100511 .help = "Insert a hard barrier between this job and previous",
Jens Axboee1f36502006-10-27 10:54:08 +0200512 },
513 {
514 .name = "thread",
515 .type = FIO_OPT_STR_SET,
Jens Axboed9bb3b82007-01-10 20:30:53 +0100516 .off1 = td_var_offset(use_thread),
Jens Axboefd28ca42007-01-09 21:20:13 +0100517 .help = "Use threads instead of forks",
Jens Axboee1f36502006-10-27 10:54:08 +0200518 },
519 {
520 .name = "write_bw_log",
521 .type = FIO_OPT_STR_SET,
522 .off1 = td_var_offset(write_bw_log),
Jens Axboefd28ca42007-01-09 21:20:13 +0100523 .help = "Write log of bandwidth during run",
Jens Axboee1f36502006-10-27 10:54:08 +0200524 },
525 {
526 .name = "write_lat_log",
527 .type = FIO_OPT_STR_SET,
528 .off1 = td_var_offset(write_lat_log),
Jens Axboefd28ca42007-01-09 21:20:13 +0100529 .help = "Write log of latency during run",
Jens Axboee1f36502006-10-27 10:54:08 +0200530 },
531 {
Jens Axboe56bb17f2006-12-20 20:27:36 +0100532 .name = "hugepage-size",
533 .type = FIO_OPT_STR_VAL,
534 .off1 = td_var_offset(hugepage_size),
Jens Axboefd28ca42007-01-09 21:20:13 +0100535 .help = "When using hugepages, specify size of each page",
Jens Axboeee738492007-01-10 11:23:16 +0100536 .def = __stringify(FIO_HUGE_PAGE),
Jens Axboe56bb17f2006-12-20 20:27:36 +0100537 },
538 {
Jens Axboeb2560f32007-03-06 12:43:03 +0100539 .name = "group_reporting",
540 .type = FIO_OPT_STR_SET,
541 .off1 = td_var_offset(group_reporting),
542 .help = "Do reporting on a per-group basis",
543 },
544 {
Jens Axboee1f36502006-10-27 10:54:08 +0200545 .name = NULL,
546 },
547};
548
Jens Axboeb4692822006-10-27 13:43:22 +0200549#define FIO_JOB_OPTS (sizeof(options) / sizeof(struct fio_option))
550#define FIO_CMD_OPTS (16)
551#define FIO_GETOPT_JOB (0x89988998)
552
553/*
554 * Command line options. These will contain the above, plus a few
555 * extra that only pertain to fio itself and not jobs.
556 */
557static struct option long_options[FIO_JOB_OPTS + FIO_CMD_OPTS] = {
558 {
559 .name = "output",
560 .has_arg = required_argument,
561 .val = 'o',
562 },
563 {
564 .name = "timeout",
565 .has_arg = required_argument,
566 .val = 't',
567 },
568 {
569 .name = "latency-log",
570 .has_arg = required_argument,
571 .val = 'l',
572 },
573 {
574 .name = "bandwidth-log",
575 .has_arg = required_argument,
576 .val = 'b',
577 },
578 {
579 .name = "minimal",
580 .has_arg = optional_argument,
581 .val = 'm',
582 },
583 {
584 .name = "version",
585 .has_arg = no_argument,
586 .val = 'v',
587 },
588 {
Jens Axboefd28ca42007-01-09 21:20:13 +0100589 .name = "help",
590 .has_arg = no_argument,
591 .val = 'h',
592 },
593 {
594 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +0100595 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +0100596 .val = 'c',
597 },
598 {
Jens Axboeb4692822006-10-27 13:43:22 +0200599 .name = NULL,
600 },
601};
602
Jens Axboeee738492007-01-10 11:23:16 +0100603static int def_timeout = 0;
Jens Axboe972cfd22006-06-09 11:08:56 +0200604
Jens Axboefdf3de22007-03-03 12:21:34 +0100605static char fio_version_string[] = "fio 1.13";
Jens Axboeebac4652005-12-08 15:25:21 +0100606
Jens Axboe972cfd22006-06-09 11:08:56 +0200607static char **ini_file;
Jens Axboeebac4652005-12-08 15:25:21 +0100608static int max_jobs = MAX_JOBS;
609
610struct thread_data def_thread;
611struct thread_data *threads = NULL;
612
Jens Axboeebac4652005-12-08 15:25:21 +0100613int exitall_on_terminate = 0;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200614int terse_output = 0;
Jens Axboec04f7ec2006-05-31 10:13:16 +0200615unsigned long long mlock_size = 0;
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200616FILE *f_out = NULL;
617FILE *f_err = NULL;
Jens Axboeebac4652005-12-08 15:25:21 +0100618
Jens Axboeee738492007-01-10 11:23:16 +0100619static int write_lat_log = 0;
Jens Axboebb3884d2007-01-17 17:23:11 +1100620int write_bw_log = 0;
Jens Axboeec94ec52006-10-20 10:59:19 +0200621
Joel Becker9728ce32007-03-01 08:24:39 +0100622FILE *get_f_out()
623{
624 return f_out;
625}
626
627FILE *get_f_err()
628{
629 return f_err;
630}
631
Jens Axboe906c8d72006-06-13 09:37:56 +0200632/*
633 * Return a free job structure.
634 */
Jens Axboeebac4652005-12-08 15:25:21 +0100635static struct thread_data *get_new_job(int global, struct thread_data *parent)
636{
637 struct thread_data *td;
638
639 if (global)
640 return &def_thread;
641 if (thread_number >= max_jobs)
642 return NULL;
643
644 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200645 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100646
Jens Axboeebac4652005-12-08 15:25:21 +0100647 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100648 return td;
649}
650
651static void put_job(struct thread_data *td)
652{
Jens Axboe549577a2006-10-30 12:23:41 +0100653 if (td == &def_thread)
654 return;
655
Jens Axboe16edf252007-02-10 14:59:22 +0100656 if (td->error)
657 fprintf(f_out, "fio: %s\n", td->verror);
658
Jens Axboeebac4652005-12-08 15:25:21 +0100659 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
660 thread_number--;
661}
662
Jens Axboedad915e2006-10-27 11:10:18 +0200663/*
664 * Lazy way of fixing up options that depend on each other. We could also
665 * define option callback handlers, but this is easier.
666 */
Jens Axboee1f36502006-10-27 10:54:08 +0200667static void fixup_options(struct thread_data *td)
668{
Jens Axboee1f36502006-10-27 10:54:08 +0200669 if (!td->rwmixread && td->rwmixwrite)
670 td->rwmixread = 100 - td->rwmixwrite;
Jens Axboedad915e2006-10-27 11:10:18 +0200671
Jens Axboe076efc72006-10-27 11:24:25 +0200672 if (td->write_iolog_file && td->read_iolog_file) {
673 log_err("fio: read iolog overrides write_iolog\n");
674 free(td->write_iolog_file);
675 td->write_iolog_file = NULL;
676 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100677
678 if (td->io_ops->flags & FIO_SYNCIO)
679 td->iodepth = 1;
680 else {
681 if (!td->iodepth)
Jens Axboeb5af8292007-03-08 12:43:13 +0100682 td->iodepth = td->open_files;
Jens Axboe16b462a2006-10-30 12:35:18 +0100683 }
684
685 /*
686 * only really works for sequential io for now, and with 1 file
687 */
Jens Axboeb5af8292007-03-08 12:43:13 +0100688 if (td->zone_size && td_random(td) && td->open_files == 1)
Jens Axboe16b462a2006-10-30 12:35:18 +0100689 td->zone_size = 0;
690
691 /*
692 * Reads can do overwrites, we always need to pre-create the file
693 */
694 if (td_read(td) || td_rw(td))
695 td->overwrite = 1;
696
Jens Axboea00735e2006-11-03 08:58:08 +0100697 if (!td->min_bs[DDIR_READ])
698 td->min_bs[DDIR_READ]= td->bs[DDIR_READ];
699 if (!td->max_bs[DDIR_READ])
700 td->max_bs[DDIR_READ] = td->bs[DDIR_READ];
701 if (!td->min_bs[DDIR_WRITE])
Jens Axboe75e6f362006-11-03 08:17:09 +0100702 td->min_bs[DDIR_WRITE]= td->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100703 if (!td->max_bs[DDIR_WRITE])
Jens Axboe75e6f362006-11-03 08:17:09 +0100704 td->max_bs[DDIR_WRITE] = td->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100705
706 td->rw_min_bs = min(td->min_bs[DDIR_READ], td->min_bs[DDIR_WRITE]);
707
Jens Axboe16b462a2006-10-30 12:35:18 +0100708 if (td_read(td) && !td_rw(td))
709 td->verify = 0;
Jens Axboebb8895e2006-10-30 15:14:48 +0100710
711 if (td->norandommap && td->verify != VERIFY_NONE) {
712 log_err("fio: norandommap given, verify disabled\n");
713 td->verify = VERIFY_NONE;
714 }
Jens Axboe690adba2006-10-30 15:25:09 +0100715 if (td->bs_unaligned && (td->odirect || td->io_ops->flags & FIO_RAWIO))
716 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100717
718 /*
719 * O_DIRECT and char doesn't mix, clear that flag if necessary.
720 */
721 if (td->filetype == FIO_TYPE_CHAR && td->odirect)
722 td->odirect = 0;
Jens Axboe48097d52007-02-17 06:30:44 +0100723
724 /*
725 * thinktime_spin must be less than thinktime
726 */
727 if (td->thinktime_spin > td->thinktime)
728 td->thinktime_spin = td->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100729
730 /*
731 * The low water mark cannot be bigger than the iodepth
732 */
Jens Axboe9467b772007-02-27 19:56:43 +0100733 if (td->iodepth_low > td->iodepth || !td->iodepth_low) {
734 /*
735 * syslet work around - if the workload is sequential,
736 * we want to let the queue drain all the way down to
737 * avoid seeking between async threads
738 */
739 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
740 td->iodepth_low = 1;
741 else
742 td->iodepth_low = td->iodepth;
743 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100744
745 /*
746 * If batch number isn't set, default to the same as iodepth
747 */
748 if (td->iodepth_batch > td->iodepth || !td->iodepth_batch)
749 td->iodepth_batch = td->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100750
751 if (td->open_files > td->nr_files || !td->open_files)
752 td->open_files = td->nr_files;
Jens Axboee1f36502006-10-27 10:54:08 +0200753}
754
Jens Axboe906c8d72006-06-13 09:37:56 +0200755/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100756 * This function leaks the buffer
757 */
758static char *to_kmg(unsigned int val)
759{
760 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100761 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100762 char *p = post;
763
Jens Axboe245142f2006-11-08 12:49:21 +0100764 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100765 if (val & 1023)
766 break;
767
768 val >>= 10;
769 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100770 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100771
772 snprintf(buf, 31, "%u%c", val, *p);
773 return buf;
774}
775
Jens Axboe09629a92007-03-09 09:00:06 +0100776/* External engines are specified by "external:name.o") */
777static const char *get_engine_name(const char *str)
778{
779 char *p = strstr(str, ":");
780
781 if (!p)
782 return str;
783
784 p++;
785 strip_blank_front(&p);
786 strip_blank_end(p);
787 return p;
788}
789
Jens Axboef8977ee2006-11-06 14:03:03 +0100790/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200791 * Adds a job to the list of things todo. Sanitizes the various options
792 * to make sure we don't have conflicts, and initializes various
793 * members of td.
794 */
Jens Axboe75154842006-06-01 13:56:09 +0200795static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100796{
Jens Axboe413dd452007-02-23 09:26:09 +0100797 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
798 "randread", "randwrite", "randrw" };
Jens Axboeebac4652005-12-08 15:25:21 +0100799 struct stat sb;
Jens Axboe413dd452007-02-23 09:26:09 +0100800 int numjobs, i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200801 struct fio_file *f;
Jens Axboe09629a92007-03-09 09:00:06 +0100802 const char *engine;
Jens Axboeebac4652005-12-08 15:25:21 +0100803
Jens Axboeebac4652005-12-08 15:25:21 +0100804 /*
805 * the def_thread is just for options, it's not a real job
806 */
807 if (td == &def_thread)
808 return 0;
809
Jens Axboe09629a92007-03-09 09:00:06 +0100810 engine = get_engine_name(td->ioengine);
811 td->io_ops = load_ioengine(td, engine);
812 if (!td->io_ops) {
813 log_err("fio: failed to load engine %s\n", engine);
814 return 1;
815 }
Jens Axboedf641192006-10-12 07:55:41 +0200816
Jens Axboe690adba2006-10-30 15:25:09 +0100817 if (td->odirect)
818 td->io_ops->flags |= FIO_RAWIO;
819
Jens Axboeebac4652005-12-08 15:25:21 +0100820 td->filetype = FIO_TYPE_FILE;
Jens Axboe890df532007-02-17 01:51:13 +0100821 if (td->filename && !lstat(td->filename, &sb)) {
Jens Axboe0af7b542006-02-17 10:10:12 +0100822 if (S_ISBLK(sb.st_mode))
823 td->filetype = FIO_TYPE_BD;
824 else if (S_ISCHR(sb.st_mode))
825 td->filetype = FIO_TYPE_CHAR;
826 }
Jens Axboeebac4652005-12-08 15:25:21 +0100827
Jens Axboee0a22332006-12-20 12:54:25 +0100828 fixup_options(td);
829
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200830 if (td->filename)
831 td->nr_uniq_files = 1;
832 else
Jens Axboe0f14fef2007-03-08 13:08:24 +0100833 td->nr_uniq_files = td->open_files;
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200834
835 if (td->filetype == FIO_TYPE_FILE || td->filename) {
Jens Axboee9c047a2006-06-07 21:13:04 +0200836 char tmp[PATH_MAX];
Jens Axboe53cdc682006-10-18 11:50:58 +0200837 int len = 0;
Jens Axboee9c047a2006-06-07 21:13:04 +0200838
Jens Axboe16edf252007-02-10 14:59:22 +0100839 if (td->directory && td->directory[0] != '\0') {
840 if (lstat(td->directory, &sb) < 0) {
841 log_err("fio: %s is not a directory\n", td->directory);
Jens Axboee1161c32007-02-22 19:36:48 +0100842 td_verror(td, errno, "lstat");
Jens Axboe16edf252007-02-10 14:59:22 +0100843 return 1;
844 }
845 if (!S_ISDIR(sb.st_mode)) {
846 log_err("fio: %s is not a directory\n", td->directory);
847 return 1;
848 }
Jens Axboe8aeebd52007-01-08 10:47:43 +0100849 len = sprintf(tmp, "%s/", td->directory);
Jens Axboe16edf252007-02-10 14:59:22 +0100850 }
Jens Axboeebac4652005-12-08 15:25:21 +0100851
Jens Axboeb5af8292007-03-08 12:43:13 +0100852 td->files = malloc(sizeof(struct fio_file) * td->open_files);
Jens Axboe53cdc682006-10-18 11:50:58 +0200853
854 for_each_file(td, f, i) {
855 memset(f, 0, sizeof(*f));
856 f->fd = -1;
857
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200858 if (td->filename)
859 sprintf(tmp + len, "%s", td->filename);
860 else
861 sprintf(tmp + len, "%s.%d.%d", jobname, td->thread_number, i);
Jens Axboe53cdc682006-10-18 11:50:58 +0200862 f->file_name = strdup(tmp);
863 }
864 } else {
Jens Axboeb5af8292007-03-08 12:43:13 +0100865 td->open_files = td->nr_files = 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200866 td->files = malloc(sizeof(struct fio_file));
867 f = &td->files[0];
868
869 memset(f, 0, sizeof(*f));
870 f->fd = -1;
871 f->file_name = strdup(jobname);
872 }
873
874 for_each_file(td, f, i) {
875 f->file_size = td->total_file_size / td->nr_files;
876 f->file_offset = td->start_offset;
877 }
878
Jens Axboe07739b52007-03-08 20:25:46 +0100879 td->mutex = fio_sem_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100880
Jens Axboe756867b2007-03-06 15:19:24 +0100881 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
882 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
883 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboeebac4652005-12-08 15:25:21 +0100884
Jens Axboeebac4652005-12-08 15:25:21 +0100885 if (td->stonewall && td->thread_number > 1)
886 groupid++;
887
888 td->groupid = groupid;
889
890 if (setup_rate(td))
891 goto err;
892
Jens Axboeec94ec52006-10-20 10:59:19 +0200893 if (td->write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100894 setup_log(&td->ts.slat_log);
895 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100896 }
Jens Axboeec94ec52006-10-20 10:59:19 +0200897 if (td->write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100898 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100899
Jens Axboeb4692822006-10-27 13:43:22 +0200900 if (!td->name)
901 td->name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200902
Jens Axboec6ae0a52006-06-12 11:04:44 +0200903 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200904 if (!job_add_num) {
Jens Axboe2866c822006-10-09 15:57:48 +0200905 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200906 fprintf(f_out, "%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->name, td->cpuload, td->cpucycle);
Jens Axboef8977ee2006-11-06 14:03:03 +0100907 else {
908 char *c1, *c2, *c3, *c4;
909
910 c1 = to_kmg(td->min_bs[DDIR_READ]);
911 c2 = to_kmg(td->max_bs[DDIR_READ]);
912 c3 = to_kmg(td->min_bs[DDIR_WRITE]);
913 c4 = to_kmg(td->max_bs[DDIR_WRITE]);
914
Jens Axboe413dd452007-02-23 09:26:09 +0100915 fprintf(f_out, "%s: (g=%d): rw=%s, bs=%s-%s/%s-%s, ioengine=%s, iodepth=%u\n", td->name, td->groupid, ddir_str[td->td_ddir], c1, c2, c3, c4, td->io_ops->name, td->iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100916
917 free(c1);
918 free(c2);
919 free(c3);
920 free(c4);
921 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200922 } else if (job_add_num == 1)
Jens Axboec6ae0a52006-06-12 11:04:44 +0200923 fprintf(f_out, "...\n");
924 }
Jens Axboeebac4652005-12-08 15:25:21 +0100925
926 /*
927 * recurse add identical jobs, clear numjobs and stonewall options
928 * as they don't apply to sub-jobs
929 */
930 numjobs = td->numjobs;
931 while (--numjobs) {
932 struct thread_data *td_new = get_new_job(0, td);
933
934 if (!td_new)
935 goto err;
936
937 td_new->numjobs = 1;
938 td_new->stonewall = 0;
Jens Axboe75154842006-06-01 13:56:09 +0200939 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100940
Jens Axboe75154842006-06-01 13:56:09 +0200941 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100942 goto err;
943 }
944 return 0;
945err:
946 put_job(td);
947 return -1;
948}
949
Jens Axboe906c8d72006-06-13 09:37:56 +0200950/*
951 * Initialize the various random states we need (random io, block size ranges,
952 * read/write mix, etc).
953 */
Jens Axboeebac4652005-12-08 15:25:21 +0100954int init_random_state(struct thread_data *td)
955{
Jens Axboe0aabe162007-02-23 08:45:55 +0100956 unsigned long seeds[5];
Jens Axboe53cdc682006-10-18 11:50:58 +0200957 int fd, num_maps, blocks, i;
Jens Axboe0ab8db82006-10-18 17:16:23 +0200958 struct fio_file *f;
Jens Axboeebac4652005-12-08 15:25:21 +0100959
Jens Axboef48b4672006-10-27 11:30:07 +0200960 if (td->io_ops->flags & FIO_CPUIO)
961 return 0;
962
Jens Axboe1ac267b2006-05-31 20:29:00 +0200963 fd = open("/dev/urandom", O_RDONLY);
Jens Axboeebac4652005-12-08 15:25:21 +0100964 if (fd == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100965 td_verror(td, errno, "open");
Jens Axboeebac4652005-12-08 15:25:21 +0100966 return 1;
967 }
968
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200969 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
Jens Axboee1161c32007-02-22 19:36:48 +0100970 td_verror(td, EIO, "read");
Jens Axboeebac4652005-12-08 15:25:21 +0100971 close(fd);
972 return 1;
973 }
974
975 close(fd);
976
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200977 os_random_seed(seeds[0], &td->bsrange_state);
978 os_random_seed(seeds[1], &td->verify_state);
979 os_random_seed(seeds[2], &td->rwmix_state);
Jens Axboeebac4652005-12-08 15:25:21 +0100980
Jens Axboe413dd452007-02-23 09:26:09 +0100981 if (td->file_service_type == FIO_FSERVICE_RANDOM)
982 os_random_seed(seeds[3], &td->next_file_state);
983
984 if (!td_random(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100985 return 0;
986
Jens Axboe9ebc27e2006-06-12 10:21:50 +0200987 if (td->rand_repeatable)
Jens Axboe0aabe162007-02-23 08:45:55 +0100988 seeds[4] = FIO_RANDSEED * td->thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100989
Jens Axboebb8895e2006-10-30 15:14:48 +0100990 if (!td->norandommap) {
991 for_each_file(td, f, i) {
Jens Axboea4a81712007-02-13 20:07:26 +0100992 blocks = (f->real_file_size + td->rw_min_bs - 1) / td->rw_min_bs;
Jens Axboec7c280e2006-11-02 20:10:33 +0100993 num_maps = (blocks + BLOCKS_PER_MAP-1)/ BLOCKS_PER_MAP;
Jens Axboebb8895e2006-10-30 15:14:48 +0100994 f->file_map = malloc(num_maps * sizeof(long));
995 f->num_maps = num_maps;
996 memset(f->file_map, 0, num_maps * sizeof(long));
997 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200998 }
Jens Axboeebac4652005-12-08 15:25:21 +0100999
Jens Axboe0aabe162007-02-23 08:45:55 +01001000 os_random_seed(seeds[4], &td->random_state);
Jens Axboeebac4652005-12-08 15:25:21 +01001001 return 0;
1002}
1003
1004static void fill_cpu_mask(os_cpu_mask_t cpumask, int cpu)
1005{
1006#ifdef FIO_HAVE_CPU_AFFINITY
1007 unsigned int i;
1008
1009 CPU_ZERO(&cpumask);
1010
1011 for (i = 0; i < sizeof(int) * 8; i++) {
1012 if ((1 << i) & cpu)
1013 CPU_SET(i, &cpumask);
1014 }
1015#endif
1016}
1017
Jens Axboeebac4652005-12-08 15:25:21 +01001018static int is_empty_or_comment(char *line)
1019{
1020 unsigned int i;
1021
1022 for (i = 0; i < strlen(line); i++) {
1023 if (line[i] == ';')
1024 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +01001025 if (line[i] == '#')
1026 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +01001027 if (!isspace(line[i]) && !iscntrl(line[i]))
1028 return 0;
1029 }
1030
1031 return 1;
1032}
1033
Jens Axboe313cb202006-12-21 09:50:00 +01001034/*
1035 * Check if mmap/mmaphuge has a :/foo/bar/file at the end. If so, return that.
1036 */
1037static char *get_mmap_file(const char *str)
1038{
1039 char *p = strstr(str, ":");
1040
1041 if (!p)
1042 return NULL;
1043
1044 p++;
1045 strip_blank_front(&p);
1046 strip_blank_end(p);
1047 return strdup(p);
1048}
1049
Jens Axboeb4692822006-10-27 13:43:22 +02001050static int str_mem_cb(void *data, const char *mem)
Jens Axboeebac4652005-12-08 15:25:21 +01001051{
Jens Axboecb2c86f2006-10-26 13:48:34 +02001052 struct thread_data *td = data;
1053
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001054 if (td->mem_type == MEM_MMAPHUGE || td->mem_type == MEM_MMAP) {
Jens Axboe313cb202006-12-21 09:50:00 +01001055 td->mmapfile = get_mmap_file(mem);
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001056 if (td->mem_type == MEM_MMAPHUGE && !td->mmapfile) {
Jens Axboed0bdaf42006-12-20 14:40:44 +01001057 log_err("fio: mmaphuge:/path/to/file\n");
1058 return 1;
1059 }
Jens Axboeebac4652005-12-08 15:25:21 +01001060 }
1061
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001062 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001063}
1064
Jens Axboee1f36502006-10-27 10:54:08 +02001065static int str_lockmem_cb(void fio_unused *data, unsigned long *val)
1066{
1067 mlock_size = *val;
1068 return 0;
1069}
1070
Jens Axboe34cfcda2006-11-03 14:00:45 +01001071#ifdef FIO_HAVE_IOPRIO
Jens Axboee1f36502006-10-27 10:54:08 +02001072static int str_prioclass_cb(void *data, unsigned int *val)
1073{
1074 struct thread_data *td = data;
1075
1076 td->ioprio |= *val << IOPRIO_CLASS_SHIFT;
1077 return 0;
1078}
1079
1080static int str_prio_cb(void *data, unsigned int *val)
1081{
1082 struct thread_data *td = data;
1083
1084 td->ioprio |= *val;
1085 return 0;
1086}
Jens Axboe34cfcda2006-11-03 14:00:45 +01001087#endif
Jens Axboee1f36502006-10-27 10:54:08 +02001088
1089static int str_exitall_cb(void)
1090{
1091 exitall_on_terminate = 1;
1092 return 0;
1093}
1094
1095static int str_cpumask_cb(void *data, unsigned int *val)
1096{
1097 struct thread_data *td = data;
1098
1099 fill_cpu_mask(td->cpumask, *val);
1100 return 0;
1101}
1102
Jens Axboe07261982006-06-07 10:51:12 +02001103/*
1104 * This is our [ini] type file parser.
1105 */
Jens Axboe1e97cce2006-12-05 11:44:16 +01001106static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +01001107{
Jens Axboee1f36502006-10-27 10:54:08 +02001108 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +01001109 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +01001110 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +01001111 fpos_t off;
1112 FILE *f;
1113 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001114 int ret = 0, stonewall;
Jens Axboeebac4652005-12-08 15:25:21 +01001115
1116 f = fopen(file, "r");
1117 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +02001118 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +01001119 return 1;
1120 }
1121
1122 string = malloc(4096);
1123 name = malloc(256);
Jens Axboefee3bb42006-10-30 13:32:08 +01001124 memset(name, 0, 256);
Jens Axboeebac4652005-12-08 15:25:21 +01001125
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001126 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001127 do {
1128 p = fgets(string, 4095, f);
1129 if (!p)
Jens Axboe45410ac2006-06-07 11:10:39 +02001130 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001131 if (is_empty_or_comment(p))
1132 continue;
Jens Axboefee3bb42006-10-30 13:32:08 +01001133 if (sscanf(p, "[%255s]", name) != 1)
Jens Axboeebac4652005-12-08 15:25:21 +01001134 continue;
1135
1136 global = !strncmp(name, "global", 6);
1137
1138 name[strlen(name) - 1] = '\0';
1139
1140 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +02001141 if (!td) {
1142 ret = 1;
1143 break;
1144 }
Jens Axboeebac4652005-12-08 15:25:21 +01001145
Jens Axboe972cfd22006-06-09 11:08:56 +02001146 /*
1147 * Seperate multiple job files by a stonewall
1148 */
Jens Axboef9481912006-06-09 11:37:28 +02001149 if (!global && stonewall) {
Jens Axboe972cfd22006-06-09 11:08:56 +02001150 td->stonewall = stonewall;
1151 stonewall = 0;
1152 }
1153
Jens Axboeebac4652005-12-08 15:25:21 +01001154 fgetpos(f, &off);
1155 while ((p = fgets(string, 4096, f)) != NULL) {
1156 if (is_empty_or_comment(p))
1157 continue;
Jens Axboee1f36502006-10-27 10:54:08 +02001158
Jens Axboeb6754f92006-05-30 14:29:32 +02001159 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +01001160
1161 if (p[0] == '[')
1162 break;
1163
Jens Axboe4ae3f762006-05-30 13:35:14 +02001164 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +02001165
Jens Axboee1f36502006-10-27 10:54:08 +02001166 fgetpos(f, &off);
Jens Axboeebac4652005-12-08 15:25:21 +01001167
Jens Axboe45410ac2006-06-07 11:10:39 +02001168 /*
1169 * Don't break here, continue parsing options so we
1170 * dump all the bad ones. Makes trial/error fixups
1171 * easier on the user.
1172 */
Jens Axboe7c124ac2006-10-30 13:36:52 +01001173 ret |= parse_option(p, options, td);
Jens Axboeebac4652005-12-08 15:25:21 +01001174 }
Jens Axboeebac4652005-12-08 15:25:21 +01001175
Jens Axboe45410ac2006-06-07 11:10:39 +02001176 if (!ret) {
1177 fsetpos(f, &off);
1178 ret = add_job(td, name, 0);
Jens Axboeb1508cf2006-11-02 09:12:40 +01001179 } else {
1180 log_err("fio: job %s dropped\n", name);
1181 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +02001182 }
Jens Axboe7c124ac2006-10-30 13:36:52 +01001183 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001184
1185 free(string);
1186 free(name);
1187 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +02001188 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001189}
1190
1191static int fill_def_thread(void)
1192{
1193 memset(&def_thread, 0, sizeof(def_thread));
1194
1195 if (fio_getaffinity(getpid(), &def_thread.cpumask) == -1) {
1196 perror("sched_getaffinity");
1197 return 1;
1198 }
1199
1200 /*
Jens Axboeee738492007-01-10 11:23:16 +01001201 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +01001202 */
Jens Axboeee738492007-01-10 11:23:16 +01001203 fill_default_options(&def_thread, options);
1204
Jens Axboe972cfd22006-06-09 11:08:56 +02001205 def_thread.timeout = def_timeout;
Jens Axboeec94ec52006-10-20 10:59:19 +02001206 def_thread.write_bw_log = write_bw_log;
1207 def_thread.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +01001208
Jens Axboeebac4652005-12-08 15:25:21 +01001209#ifdef FIO_HAVE_DISK_UTIL
1210 def_thread.do_disk_util = 1;
1211#endif
1212
1213 return 0;
1214}
1215
Jens Axboe0ab8db82006-10-18 17:16:23 +02001216static void usage(void)
Jens Axboe4785f992006-05-26 03:59:10 +02001217{
1218 printf("%s\n", fio_version_string);
Jens Axboeb4692822006-10-27 13:43:22 +02001219 printf("\t--output\tWrite output to file\n");
1220 printf("\t--timeout\tRuntime in seconds\n");
1221 printf("\t--latency-log\tGenerate per-job latency logs\n");
1222 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
1223 printf("\t--minimal\tMinimal (terse) output\n");
1224 printf("\t--version\tPrint version info and exit\n");
Jens Axboefd28ca42007-01-09 21:20:13 +01001225 printf("\t--help\t\tPrint this page\n");
1226 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
Jens Axboe4785f992006-05-26 03:59:10 +02001227}
1228
Jens Axboe972cfd22006-06-09 11:08:56 +02001229static int parse_cmd_line(int argc, char *argv[])
Jens Axboeebac4652005-12-08 15:25:21 +01001230{
Jens Axboeb4692822006-10-27 13:43:22 +02001231 struct thread_data *td = NULL;
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001232 int c, ini_idx = 0, lidx, ret, dont_add_job = 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001233
Jens Axboe0be06ea2007-03-01 14:23:28 +01001234 while ((c = getopt_long_only(argc, argv, "", long_options, &lidx)) != -1) {
Jens Axboeebac4652005-12-08 15:25:21 +01001235 switch (c) {
Jens Axboeb4692822006-10-27 13:43:22 +02001236 case 't':
1237 def_timeout = atoi(optarg);
1238 break;
1239 case 'l':
1240 write_lat_log = 1;
1241 break;
1242 case 'w':
1243 write_bw_log = 1;
1244 break;
1245 case 'o':
1246 f_out = fopen(optarg, "w+");
1247 if (!f_out) {
1248 perror("fopen output");
1249 exit(1);
1250 }
1251 f_err = f_out;
1252 break;
1253 case 'm':
1254 terse_output = 1;
1255 break;
1256 case 'h':
1257 usage();
1258 exit(0);
Jens Axboefd28ca42007-01-09 21:20:13 +01001259 case 'c':
Jens Axboe29fc6af2007-01-09 21:22:02 +01001260 ret = show_cmd_help(options, optarg);
1261 exit(ret);
Jens Axboeb4692822006-10-27 13:43:22 +02001262 case 'v':
1263 printf("%s\n", fio_version_string);
1264 exit(0);
1265 case FIO_GETOPT_JOB: {
1266 const char *opt = long_options[lidx].name;
1267 char *val = optarg;
1268
Jens Axboec2b1e752006-10-30 09:03:13 +01001269 if (!strncmp(opt, "name", 4) && td) {
1270 ret = add_job(td, td->name ?: "fio", 0);
1271 if (ret) {
1272 put_job(td);
1273 return 0;
1274 }
1275 td = NULL;
1276 }
Jens Axboeb4692822006-10-27 13:43:22 +02001277 if (!td) {
Jens Axboe38d0adb2006-10-30 12:21:25 +01001278 int global = !strncmp(val, "global", 6);
Jens Axboec2b1e752006-10-30 09:03:13 +01001279
1280 td = get_new_job(global, &def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001281 if (!td)
1282 return 0;
1283 }
Jens Axboe38d0adb2006-10-30 12:21:25 +01001284
Jens Axboeb1508cf2006-11-02 09:12:40 +01001285 ret = parse_cmd_option(opt, val, options, td);
Jens Axboe78217df2007-02-23 11:18:30 +01001286 if (ret)
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001287 dont_add_job = 1;
Jens Axboeb4692822006-10-27 13:43:22 +02001288 break;
1289 }
1290 default:
Jens Axboeb4692822006-10-27 13:43:22 +02001291 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001292 }
1293 }
Jens Axboec9fad892006-05-27 17:26:50 +02001294
Jens Axboeb4692822006-10-27 13:43:22 +02001295 if (td) {
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001296 if (dont_add_job)
Jens Axboeb4692822006-10-27 13:43:22 +02001297 put_job(td);
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001298 else {
1299 ret = add_job(td, td->name ?: "fio", 0);
1300 if (ret)
1301 put_job(td);
1302 }
Jens Axboe972cfd22006-06-09 11:08:56 +02001303 }
Jens Axboe774a6172006-08-24 08:44:26 +02001304
Jens Axboeb4692822006-10-27 13:43:22 +02001305 while (optind < argc) {
1306 ini_idx++;
1307 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1308 ini_file[ini_idx - 1] = strdup(argv[optind]);
1309 optind++;
Jens Axboeeb8bbf42006-06-08 21:40:11 +02001310 }
Jens Axboe972cfd22006-06-09 11:08:56 +02001311
1312 return ini_idx;
Jens Axboeebac4652005-12-08 15:25:21 +01001313}
1314
1315static void free_shm(void)
1316{
1317 struct shmid_ds sbuf;
1318
1319 if (threads) {
Jens Axboe2c0ecd22006-06-08 13:25:41 +02001320 shmdt((void *) threads);
Jens Axboeebac4652005-12-08 15:25:21 +01001321 threads = NULL;
1322 shmctl(shm_id, IPC_RMID, &sbuf);
1323 }
1324}
1325
Jens Axboe906c8d72006-06-13 09:37:56 +02001326/*
1327 * The thread area is shared between the main process and the job
1328 * threads/processes. So setup a shared memory segment that will hold
1329 * all the job info.
1330 */
Jens Axboeebac4652005-12-08 15:25:21 +01001331static int setup_thread_area(void)
1332{
1333 /*
1334 * 1024 is too much on some machines, scale max_jobs if
1335 * we get a failure that looks like too large a shm segment
1336 */
1337 do {
Jens Axboe906c8d72006-06-13 09:37:56 +02001338 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +01001339
Jens Axboe906c8d72006-06-13 09:37:56 +02001340 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +01001341 if (shm_id != -1)
1342 break;
1343 if (errno != EINVAL) {
1344 perror("shmget");
1345 break;
1346 }
1347
1348 max_jobs >>= 1;
1349 } while (max_jobs);
1350
1351 if (shm_id == -1)
1352 return 1;
1353
1354 threads = shmat(shm_id, NULL, 0);
1355 if (threads == (void *) -1) {
1356 perror("shmat");
1357 return 1;
1358 }
1359
1360 atexit(free_shm);
1361 return 0;
1362}
1363
Jens Axboeb4692822006-10-27 13:43:22 +02001364/*
1365 * Copy the fio options into the long options map, so we mirror
1366 * job and cmd line options.
1367 */
1368static void dupe_job_options(void)
1369{
1370 struct fio_option *o;
1371 unsigned int i;
1372
1373 i = 0;
1374 while (long_options[i].name)
1375 i++;
1376
1377 o = &options[0];
1378 while (o->name) {
1379 long_options[i].name = o->name;
1380 long_options[i].val = FIO_GETOPT_JOB;
1381 if (o->type == FIO_OPT_STR_SET)
1382 long_options[i].has_arg = no_argument;
1383 else
1384 long_options[i].has_arg = required_argument;
1385
1386 i++;
1387 o++;
1388 assert(i < FIO_JOB_OPTS + FIO_CMD_OPTS);
1389 }
1390}
1391
Jens Axboeebac4652005-12-08 15:25:21 +01001392int parse_options(int argc, char *argv[])
1393{
Jens Axboe972cfd22006-06-09 11:08:56 +02001394 int job_files, i;
1395
Jens Axboeb4692822006-10-27 13:43:22 +02001396 f_out = stdout;
1397 f_err = stderr;
1398
Jens Axboe13335dd2007-01-10 13:14:02 +01001399 options_init(options);
1400
Jens Axboeb4692822006-10-27 13:43:22 +02001401 dupe_job_options();
1402
Jens Axboeebac4652005-12-08 15:25:21 +01001403 if (setup_thread_area())
1404 return 1;
1405 if (fill_def_thread())
1406 return 1;
1407
Jens Axboe972cfd22006-06-09 11:08:56 +02001408 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001409
Jens Axboe972cfd22006-06-09 11:08:56 +02001410 for (i = 0; i < job_files; i++) {
1411 if (fill_def_thread())
1412 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001413 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001414 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001415 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001416 }
Jens Axboeebac4652005-12-08 15:25:21 +01001417
Jens Axboe88c6ed82006-06-09 11:28:10 +02001418 free(ini_file);
Jens Axboeb4692822006-10-27 13:43:22 +02001419
1420 if (!thread_number) {
1421 log_err("No jobs defined(s)\n");
Jens Axboeb4692822006-10-27 13:43:22 +02001422 return 1;
1423 }
1424
Jens Axboeebac4652005-12-08 15:25:21 +01001425 return 0;
1426}