blob: aca607dc92cee6860a91e0c5830bac64c36f0632 [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 Axboe906c8d72006-06-13 09:37:56 +020021/*
22 * The default options
23 */
Jens Axboe20dc95c2005-12-09 10:29:35 +010024#define DEF_BS (4096)
25#define DEF_TIMEOUT (0)
26#define DEF_RATE_CYCLE (1000)
27#define DEF_ODIRECT (1)
28#define DEF_IO_ENGINE (FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +010029#define DEF_IO_ENGINE_NAME "sync"
Jens Axboe20dc95c2005-12-09 10:29:35 +010030#define DEF_SEQUENTIAL (1)
31#define DEF_RAND_REPEAT (1)
Jens Axboe178d11f2006-12-15 13:11:24 +010032#define DEF_OVERWRITE (0)
Jens Axboe20dc95c2005-12-09 10:29:35 +010033#define DEF_INVALIDATE (1)
34#define DEF_SYNCIO (0)
35#define DEF_RANDSEED (0xb1899bedUL)
36#define DEF_BWAVGTIME (500)
37#define DEF_CREATE_SER (1)
Jens Axboeebac4652005-12-08 15:25:21 +010038#define DEF_CREATE_FSYNC (1)
Jens Axboe20dc95c2005-12-09 10:29:35 +010039#define DEF_LOOPS (1)
40#define DEF_VERIFY (0)
41#define DEF_STONEWALL (0)
42#define DEF_NUMJOBS (1)
43#define DEF_USE_THREAD (0)
44#define DEF_FILE_SIZE (1024 * 1024 * 1024UL)
45#define DEF_ZONE_SIZE (0)
46#define DEF_ZONE_SKIP (0)
Jens Axboea6ccc7b2006-06-02 10:14:15 +020047#define DEF_RWMIX_CYCLE (500)
48#define DEF_RWMIX_READ (50)
Jens Axboeb6f4d882006-06-02 10:32:51 +020049#define DEF_NICE (0)
Jens Axboe53cdc682006-10-18 11:50:58 +020050#define DEF_NR_FILES (1)
Jens Axboe178d11f2006-12-15 13:11:24 +010051#define DEF_UNLINK (1)
Jens Axboeec94ec52006-10-20 10:59:19 +020052#define DEF_WRITE_BW_LOG (0)
53#define DEF_WRITE_LAT_LOG (0)
Jens Axboebb8895e2006-10-30 15:14:48 +010054#define DEF_NO_RAND_MAP (0)
Jens Axboe56bb17f2006-12-20 20:27:36 +010055#define DEF_HUGEPAGE_SIZE FIO_HUGE_PAGE
Jens Axboe9c1f7432007-01-03 20:43:19 +010056#define DEF_THINKTIME_BLOCKS (1)
Jens Axboeebac4652005-12-08 15:25:21 +010057
Jens Axboee1f36502006-10-27 10:54:08 +020058#define td_var_offset(var) ((size_t) &((struct thread_data *)0)->var)
59
Jens Axboeb4692822006-10-27 13:43:22 +020060static int str_rw_cb(void *, const char *);
61static int str_ioengine_cb(void *, const char *);
62static int str_mem_cb(void *, const char *);
63static int str_verify_cb(void *, const char *);
Jens Axboee1f36502006-10-27 10:54:08 +020064static int str_lockmem_cb(void *, unsigned long *);
Jens Axboe34cfcda2006-11-03 14:00:45 +010065#ifdef FIO_HAVE_IOPRIO
Jens Axboee1f36502006-10-27 10:54:08 +020066static int str_prio_cb(void *, unsigned int *);
67static int str_prioclass_cb(void *, unsigned int *);
Jens Axboe34cfcda2006-11-03 14:00:45 +010068#endif
Jens Axboee1f36502006-10-27 10:54:08 +020069static int str_exitall_cb(void);
70static int str_cpumask_cb(void *, unsigned int *);
71
72/*
73 * Map of job/command line options
74 */
75static struct fio_option options[] = {
76 {
77 .name = "name",
78 .type = FIO_OPT_STR_STORE,
79 .off1 = td_var_offset(name),
Jens Axboefd28ca42007-01-09 21:20:13 +010080 .help = "Name of this job",
Jens Axboee1f36502006-10-27 10:54:08 +020081 },
82 {
83 .name = "directory",
84 .type = FIO_OPT_STR_STORE,
85 .off1 = td_var_offset(directory),
Jens Axboefd28ca42007-01-09 21:20:13 +010086 .help = "Directory to store files in",
Jens Axboee1f36502006-10-27 10:54:08 +020087 },
88 {
89 .name = "filename",
90 .type = FIO_OPT_STR_STORE,
91 .off1 = td_var_offset(filename),
Jens Axboefd28ca42007-01-09 21:20:13 +010092 .help = "Force the use of a specific file",
Jens Axboee1f36502006-10-27 10:54:08 +020093 },
94 {
95 .name = "rw",
96 .type = FIO_OPT_STR,
97 .cb = str_rw_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +010098 .help = "IO direction (read, write, rw, etc)",
Jens Axboee1f36502006-10-27 10:54:08 +020099 },
100 {
101 .name = "ioengine",
102 .type = FIO_OPT_STR,
103 .cb = str_ioengine_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100104 .help = "IO engine to use (sync, aio, etc)",
Jens Axboee1f36502006-10-27 10:54:08 +0200105 },
106 {
107 .name = "mem",
108 .type = FIO_OPT_STR,
109 .cb = str_mem_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100110 .help = "Backing type for IO buffers (malloc, shm, etc)",
Jens Axboee1f36502006-10-27 10:54:08 +0200111 },
112 {
113 .name = "verify",
114 .type = FIO_OPT_STR,
115 .cb = str_verify_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100116 .help = "Verify sum function (md5 or crc32)",
Jens Axboee1f36502006-10-27 10:54:08 +0200117 },
118 {
119 .name = "write_iolog",
Jens Axboe076efc72006-10-27 11:24:25 +0200120 .type = FIO_OPT_STR_STORE,
121 .off1 = td_var_offset(write_iolog_file),
Jens Axboefd28ca42007-01-09 21:20:13 +0100122 .help = "Store IO pattern to file",
Jens Axboee1f36502006-10-27 10:54:08 +0200123 },
124 {
Jens Axboe076efc72006-10-27 11:24:25 +0200125 .name = "read_iolog",
Jens Axboee1f36502006-10-27 10:54:08 +0200126 .type = FIO_OPT_STR_STORE,
Jens Axboe076efc72006-10-27 11:24:25 +0200127 .off1 = td_var_offset(read_iolog_file),
Jens Axboefd28ca42007-01-09 21:20:13 +0100128 .help = "Playback IO pattern from file",
Jens Axboee1f36502006-10-27 10:54:08 +0200129 },
130 {
131 .name = "exec_prerun",
132 .type = FIO_OPT_STR_STORE,
133 .off1 = td_var_offset(exec_prerun),
Jens Axboefd28ca42007-01-09 21:20:13 +0100134 .help = "Execute this file prior to running job",
Jens Axboee1f36502006-10-27 10:54:08 +0200135 },
136 {
137 .name = "exec_postrun",
138 .type = FIO_OPT_STR_STORE,
139 .off1 = td_var_offset(exec_postrun),
Jens Axboefd28ca42007-01-09 21:20:13 +0100140 .help = "Execute this file after running job",
Jens Axboee1f36502006-10-27 10:54:08 +0200141 },
142#ifdef FIO_HAVE_IOSCHED_SWITCH
143 {
144 .name = "ioscheduler",
145 .type = FIO_OPT_STR_STORE,
146 .off1 = td_var_offset(ioscheduler),
Jens Axboefd28ca42007-01-09 21:20:13 +0100147 .help = "Use this IO scheduler on the backing device",
Jens Axboee1f36502006-10-27 10:54:08 +0200148 },
149#endif
150 {
151 .name = "size",
152 .type = FIO_OPT_STR_VAL,
153 .off1 = td_var_offset(total_file_size),
Jens Axboefd28ca42007-01-09 21:20:13 +0100154 .help = "Size of device or file",
Jens Axboee1f36502006-10-27 10:54:08 +0200155 },
156 {
157 .name = "bs",
Jens Axboe75e6f362006-11-03 08:17:09 +0100158 .type = FIO_OPT_STR_VAL_INT,
Jens Axboea00735e2006-11-03 08:58:08 +0100159 .off1 = td_var_offset(bs[DDIR_READ]),
Jens Axboef90eff52006-11-06 11:08:21 +0100160 .off2 = td_var_offset(bs[DDIR_WRITE]),
Jens Axboefd28ca42007-01-09 21:20:13 +0100161 .help = "Block size unit",
Jens Axboee1f36502006-10-27 10:54:08 +0200162 },
163 {
164 .name = "offset",
165 .type = FIO_OPT_STR_VAL,
166 .off1 = td_var_offset(start_offset),
Jens Axboefd28ca42007-01-09 21:20:13 +0100167 .help = "Start IO from this offset",
Jens Axboee1f36502006-10-27 10:54:08 +0200168 },
169 {
170 .name = "zonesize",
171 .type = FIO_OPT_STR_VAL,
172 .off1 = td_var_offset(zone_size),
Jens Axboefd28ca42007-01-09 21:20:13 +0100173 .help = "Give size of an IO zone",
Jens Axboee1f36502006-10-27 10:54:08 +0200174 },
175 {
176 .name = "zoneskip",
177 .type = FIO_OPT_STR_VAL,
178 .off1 = td_var_offset(zone_skip),
Jens Axboefd28ca42007-01-09 21:20:13 +0100179 .help = "Space between IO zones",
Jens Axboee1f36502006-10-27 10:54:08 +0200180 },
181 {
182 .name = "lockmem",
183 .type = FIO_OPT_STR_VAL,
184 .cb = str_lockmem_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100185 .help = "Lock down this amount of memory",
Jens Axboee1f36502006-10-27 10:54:08 +0200186 },
187 {
188 .name = "bsrange",
189 .type = FIO_OPT_RANGE,
Jens Axboea00735e2006-11-03 08:58:08 +0100190 .off1 = td_var_offset(min_bs[DDIR_READ]),
191 .off2 = td_var_offset(max_bs[DDIR_READ]),
Jens Axboef90eff52006-11-06 11:08:21 +0100192 .off3 = td_var_offset(min_bs[DDIR_WRITE]),
193 .off4 = td_var_offset(max_bs[DDIR_WRITE]),
Jens Axboefd28ca42007-01-09 21:20:13 +0100194 .help = "Set block size range",
Jens Axboee1f36502006-10-27 10:54:08 +0200195 },
196 {
197 .name = "nrfiles",
198 .type = FIO_OPT_INT,
199 .off1 = td_var_offset(nr_files),
Jens Axboefd28ca42007-01-09 21:20:13 +0100200 .help = "Split job workload between this number of files",
Jens Axboee1f36502006-10-27 10:54:08 +0200201 },
202 {
203 .name = "iodepth",
204 .type = FIO_OPT_INT,
205 .off1 = td_var_offset(iodepth),
Jens Axboefd28ca42007-01-09 21:20:13 +0100206 .help = "Amount of IO buffers to keep in flight",
Jens Axboee1f36502006-10-27 10:54:08 +0200207 },
208 {
209 .name = "fsync",
210 .type = FIO_OPT_INT,
211 .off1 = td_var_offset(fsync_blocks),
Jens Axboefd28ca42007-01-09 21:20:13 +0100212 .help = "Issue fsync for writes every given number of blocks",
Jens Axboee1f36502006-10-27 10:54:08 +0200213 },
214 {
215 .name = "rwmixcycle",
216 .type = FIO_OPT_INT,
217 .off1 = td_var_offset(rwmixcycle),
Jens Axboefd28ca42007-01-09 21:20:13 +0100218 .help = "Cycle period for mixed read/write workloads",
Jens Axboee1f36502006-10-27 10:54:08 +0200219 },
220 {
221 .name = "rwmixread",
222 .type = FIO_OPT_INT,
223 .off1 = td_var_offset(rwmixread),
224 .max_val= 100,
Jens Axboefd28ca42007-01-09 21:20:13 +0100225 .help = "Percentage of mixed workload that is reads",
Jens Axboee1f36502006-10-27 10:54:08 +0200226 },
227 {
228 .name = "rwmixwrite",
229 .type = FIO_OPT_INT,
230 .off1 = td_var_offset(rwmixwrite),
231 .max_val= 100,
Jens Axboefd28ca42007-01-09 21:20:13 +0100232 .help = "Percentage of mixed workload that is writes",
Jens Axboee1f36502006-10-27 10:54:08 +0200233 },
234 {
235 .name = "nice",
236 .type = FIO_OPT_INT,
237 .off1 = td_var_offset(nice),
Jens Axboefd28ca42007-01-09 21:20:13 +0100238 .help = "Set job CPU nice value",
Jens Axboee1f36502006-10-27 10:54:08 +0200239 },
240#ifdef FIO_HAVE_IOPRIO
241 {
242 .name = "prio",
243 .type = FIO_OPT_INT,
244 .cb = str_prio_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100245 .help = "Set job IO priority value",
Jens Axboee1f36502006-10-27 10:54:08 +0200246 },
247 {
248 .name = "prioclass",
249 .type = FIO_OPT_INT,
250 .cb = str_prioclass_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100251 .help = "Set job IO priority class",
Jens Axboee1f36502006-10-27 10:54:08 +0200252 },
253#endif
254 {
255 .name = "thinktime",
256 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100257 .off1 = td_var_offset(thinktime),
Jens Axboefd28ca42007-01-09 21:20:13 +0100258 .help = "Idle time between IO buffers",
Jens Axboee1f36502006-10-27 10:54:08 +0200259 },
260 {
Jens Axboe9c1f7432007-01-03 20:43:19 +0100261 .name = "thinktime_blocks",
262 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100263 .off1 = td_var_offset(thinktime_blocks),
Jens Axboefd28ca42007-01-09 21:20:13 +0100264 .help = "IO buffer period between 'thinktime'",
Jens Axboe9c1f7432007-01-03 20:43:19 +0100265 },
266 {
Jens Axboee1f36502006-10-27 10:54:08 +0200267 .name = "rate",
268 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100269 .off1 = td_var_offset(rate),
Jens Axboefd28ca42007-01-09 21:20:13 +0100270 .help = "Set bandwidth rate",
Jens Axboee1f36502006-10-27 10:54:08 +0200271 },
272 {
273 .name = "ratemin",
274 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100275 .off1 = td_var_offset(ratemin),
Jens Axboefd28ca42007-01-09 21:20:13 +0100276 .help = "The bottom limit accepted",
Jens Axboee1f36502006-10-27 10:54:08 +0200277 },
278 {
279 .name = "ratecycle",
280 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100281 .off1 = td_var_offset(ratecycle),
Jens Axboefd28ca42007-01-09 21:20:13 +0100282 .name = "Window average for rate limits",
Jens Axboee1f36502006-10-27 10:54:08 +0200283 },
284 {
285 .name = "startdelay",
286 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100287 .off1 = td_var_offset(start_delay),
Jens Axboefd28ca42007-01-09 21:20:13 +0100288 .help = "Only start job when this period has passed",
Jens Axboee1f36502006-10-27 10:54:08 +0200289 },
290 {
291 .name = "timeout",
292 .type = FIO_OPT_STR_VAL_TIME,
Jens Axboe13049232007-01-03 20:45:09 +0100293 .off1 = td_var_offset(timeout),
Jens Axboefd28ca42007-01-09 21:20:13 +0100294 .help = "Stop workload when this amount of time has passed",
Jens Axboee1f36502006-10-27 10:54:08 +0200295 },
296 {
297 .name = "invalidate",
298 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100299 .off1 = td_var_offset(invalidate_cache),
Jens Axboefd28ca42007-01-09 21:20:13 +0100300 .help = "Invalidate buffer/page cache prior to running job",
Jens Axboee1f36502006-10-27 10:54:08 +0200301 },
302 {
303 .name = "sync",
304 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100305 .off1 = td_var_offset(sync_io),
Jens Axboefd28ca42007-01-09 21:20:13 +0100306 .help = "Use O_SYNC for buffered writes",
Jens Axboee1f36502006-10-27 10:54:08 +0200307 },
308 {
309 .name = "bwavgtime",
310 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100311 .off1 = td_var_offset(bw_avg_time),
Jens Axboefd28ca42007-01-09 21:20:13 +0100312 .help = "Time window over which to calculate bandwidth",
Jens Axboee1f36502006-10-27 10:54:08 +0200313 },
314 {
315 .name = "create_serialize",
316 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100317 .off1 = td_var_offset(create_serialize),
Jens Axboefd28ca42007-01-09 21:20:13 +0100318 .help = "Serialize creating of job files",
Jens Axboee1f36502006-10-27 10:54:08 +0200319 },
320 {
321 .name = "create_fsync",
322 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100323 .off1 = td_var_offset(create_fsync),
Jens Axboefd28ca42007-01-09 21:20:13 +0100324 .help = "Fsync file after creation",
Jens Axboee1f36502006-10-27 10:54:08 +0200325 },
326 {
327 .name = "loops",
328 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100329 .off1 = td_var_offset(loops),
Jens Axboefd28ca42007-01-09 21:20:13 +0100330 .help = "Number of times to run the job",
Jens Axboee1f36502006-10-27 10:54:08 +0200331 },
332 {
333 .name = "numjobs",
334 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100335 .off1 = td_var_offset(numjobs),
Jens Axboefd28ca42007-01-09 21:20:13 +0100336 .help = "Duplicate this job this many times",
Jens Axboee1f36502006-10-27 10:54:08 +0200337 },
338 {
339 .name = "cpuload",
340 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100341 .off1 = td_var_offset(cpuload),
Jens Axboefd28ca42007-01-09 21:20:13 +0100342 .help = "Use this percentage of CPU",
Jens Axboee1f36502006-10-27 10:54:08 +0200343 },
344 {
345 .name = "cpuchunks",
346 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100347 .off1 = td_var_offset(cpucycle),
Jens Axboefd28ca42007-01-09 21:20:13 +0100348 .help = "Length of the CPU burn cycles",
Jens Axboee1f36502006-10-27 10:54:08 +0200349 },
350 {
351 .name = "direct",
352 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100353 .off1 = td_var_offset(odirect),
Jens Axboefd28ca42007-01-09 21:20:13 +0100354 .help = "Use O_DIRECT IO",
Jens Axboee1f36502006-10-27 10:54:08 +0200355 },
356 {
357 .name = "overwrite",
358 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100359 .off1 = td_var_offset(overwrite),
Jens Axboefd28ca42007-01-09 21:20:13 +0100360 .help = "When writing, set whether to overwrite current data",
Jens Axboee1f36502006-10-27 10:54:08 +0200361 },
362#ifdef FIO_HAVE_CPU_AFFINITY
363 {
364 .name = "cpumask",
365 .type = FIO_OPT_INT,
366 .cb = str_cpumask_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100367 .help = "CPU affinity mask",
Jens Axboee1f36502006-10-27 10:54:08 +0200368 },
369#endif
370 {
371 .name = "end_fsync",
372 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100373 .off1 = td_var_offset(end_fsync),
Jens Axboefd28ca42007-01-09 21:20:13 +0100374 .help = "Include fsync at the end of job",
Jens Axboee1f36502006-10-27 10:54:08 +0200375 },
376 {
377 .name = "unlink",
Jens Axboe8aeebd52007-01-08 10:47:43 +0100378 .type = FIO_OPT_INT,
Jens Axboee1f36502006-10-27 10:54:08 +0200379 .off1 = td_var_offset(unlink),
Jens Axboefd28ca42007-01-09 21:20:13 +0100380 .help = "Unlink files after job has completed",
Jens Axboee1f36502006-10-27 10:54:08 +0200381 },
382 {
383 .name = "exitall",
384 .type = FIO_OPT_STR_SET,
385 .cb = str_exitall_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100386 .help = "Terminate all jobs when one exits",
Jens Axboee1f36502006-10-27 10:54:08 +0200387 },
388 {
389 .name = "stonewall",
390 .type = FIO_OPT_STR_SET,
391 .off1 = td_var_offset(stonewall),
Jens Axboefd28ca42007-01-09 21:20:13 +0100392 .help = "Insert a hard barrier between this job and previous",
Jens Axboee1f36502006-10-27 10:54:08 +0200393 },
394 {
395 .name = "thread",
396 .type = FIO_OPT_STR_SET,
397 .off1 = td_var_offset(thread),
Jens Axboefd28ca42007-01-09 21:20:13 +0100398 .help = "Use threads instead of forks",
Jens Axboee1f36502006-10-27 10:54:08 +0200399 },
400 {
401 .name = "write_bw_log",
402 .type = FIO_OPT_STR_SET,
403 .off1 = td_var_offset(write_bw_log),
Jens Axboefd28ca42007-01-09 21:20:13 +0100404 .help = "Write log of bandwidth during run",
Jens Axboee1f36502006-10-27 10:54:08 +0200405 },
406 {
407 .name = "write_lat_log",
408 .type = FIO_OPT_STR_SET,
409 .off1 = td_var_offset(write_lat_log),
Jens Axboefd28ca42007-01-09 21:20:13 +0100410 .help = "Write log of latency during run",
Jens Axboee1f36502006-10-27 10:54:08 +0200411 },
412 {
Jens Axboebb8895e2006-10-30 15:14:48 +0100413 .name = "norandommap",
414 .type = FIO_OPT_STR_SET,
415 .off1 = td_var_offset(norandommap),
Jens Axboefd28ca42007-01-09 21:20:13 +0100416 .help = "Accept potential duplicate random blocks",
Jens Axboebb8895e2006-10-30 15:14:48 +0100417 },
418 {
Jens Axboe690adba2006-10-30 15:25:09 +0100419 .name = "bs_unaligned",
420 .type = FIO_OPT_STR_SET,
421 .off1 = td_var_offset(bs_unaligned),
Jens Axboefd28ca42007-01-09 21:20:13 +0100422 .help = "Don't sector align IO buffer sizes",
Jens Axboe690adba2006-10-30 15:25:09 +0100423 },
424 {
Jens Axboe56bb17f2006-12-20 20:27:36 +0100425 .name = "hugepage-size",
426 .type = FIO_OPT_STR_VAL,
427 .off1 = td_var_offset(hugepage_size),
Jens Axboefd28ca42007-01-09 21:20:13 +0100428 .help = "When using hugepages, specify size of each page",
Jens Axboe56bb17f2006-12-20 20:27:36 +0100429 },
430 {
Jens Axboee1f36502006-10-27 10:54:08 +0200431 .name = NULL,
432 },
433};
434
Jens Axboeb4692822006-10-27 13:43:22 +0200435#define FIO_JOB_OPTS (sizeof(options) / sizeof(struct fio_option))
436#define FIO_CMD_OPTS (16)
437#define FIO_GETOPT_JOB (0x89988998)
438
439/*
440 * Command line options. These will contain the above, plus a few
441 * extra that only pertain to fio itself and not jobs.
442 */
443static struct option long_options[FIO_JOB_OPTS + FIO_CMD_OPTS] = {
444 {
445 .name = "output",
446 .has_arg = required_argument,
447 .val = 'o',
448 },
449 {
450 .name = "timeout",
451 .has_arg = required_argument,
452 .val = 't',
453 },
454 {
455 .name = "latency-log",
456 .has_arg = required_argument,
457 .val = 'l',
458 },
459 {
460 .name = "bandwidth-log",
461 .has_arg = required_argument,
462 .val = 'b',
463 },
464 {
465 .name = "minimal",
466 .has_arg = optional_argument,
467 .val = 'm',
468 },
469 {
470 .name = "version",
471 .has_arg = no_argument,
472 .val = 'v',
473 },
474 {
Jens Axboefd28ca42007-01-09 21:20:13 +0100475 .name = "help",
476 .has_arg = no_argument,
477 .val = 'h',
478 },
479 {
480 .name = "cmdhelp",
481 .has_arg = required_argument,
482 .val = 'c',
483 },
484 {
Jens Axboeb4692822006-10-27 13:43:22 +0200485 .name = NULL,
486 },
487};
488
Jens Axboe972cfd22006-06-09 11:08:56 +0200489static int def_timeout = DEF_TIMEOUT;
Jens Axboe972cfd22006-06-09 11:08:56 +0200490
Jens Axboe5cd033b2007-01-09 08:19:01 +0100491static char fio_version_string[] = "fio 1.11";
Jens Axboeebac4652005-12-08 15:25:21 +0100492
Jens Axboe972cfd22006-06-09 11:08:56 +0200493static char **ini_file;
Jens Axboeebac4652005-12-08 15:25:21 +0100494static int max_jobs = MAX_JOBS;
495
496struct thread_data def_thread;
497struct thread_data *threads = NULL;
498
Jens Axboeebac4652005-12-08 15:25:21 +0100499int exitall_on_terminate = 0;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200500int terse_output = 0;
Jens Axboec04f7ec2006-05-31 10:13:16 +0200501unsigned long long mlock_size = 0;
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200502FILE *f_out = NULL;
503FILE *f_err = NULL;
Jens Axboeebac4652005-12-08 15:25:21 +0100504
Jens Axboeec94ec52006-10-20 10:59:19 +0200505static int write_lat_log = DEF_WRITE_LAT_LOG;
506static int write_bw_log = DEF_WRITE_BW_LOG;
507
Jens Axboe906c8d72006-06-13 09:37:56 +0200508/*
509 * Return a free job structure.
510 */
Jens Axboeebac4652005-12-08 15:25:21 +0100511static struct thread_data *get_new_job(int global, struct thread_data *parent)
512{
513 struct thread_data *td;
514
515 if (global)
516 return &def_thread;
517 if (thread_number >= max_jobs)
518 return NULL;
519
520 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200521 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100522
Jens Axboeebac4652005-12-08 15:25:21 +0100523 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100524 return td;
525}
526
527static void put_job(struct thread_data *td)
528{
Jens Axboe549577a2006-10-30 12:23:41 +0100529 if (td == &def_thread)
530 return;
531
Jens Axboeebac4652005-12-08 15:25:21 +0100532 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
533 thread_number--;
534}
535
Jens Axboedad915e2006-10-27 11:10:18 +0200536/*
537 * Lazy way of fixing up options that depend on each other. We could also
538 * define option callback handlers, but this is easier.
539 */
Jens Axboee1f36502006-10-27 10:54:08 +0200540static void fixup_options(struct thread_data *td)
541{
Jens Axboee1f36502006-10-27 10:54:08 +0200542 if (!td->rwmixread && td->rwmixwrite)
543 td->rwmixread = 100 - td->rwmixwrite;
Jens Axboedad915e2006-10-27 11:10:18 +0200544
Jens Axboe076efc72006-10-27 11:24:25 +0200545 if (td->write_iolog_file && td->read_iolog_file) {
546 log_err("fio: read iolog overrides write_iolog\n");
547 free(td->write_iolog_file);
548 td->write_iolog_file = NULL;
549 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100550
551 if (td->io_ops->flags & FIO_SYNCIO)
552 td->iodepth = 1;
553 else {
554 if (!td->iodepth)
555 td->iodepth = td->nr_files;
556 }
557
558 /*
559 * only really works for sequential io for now, and with 1 file
560 */
561 if (td->zone_size && !td->sequential && td->nr_files == 1)
562 td->zone_size = 0;
563
564 /*
565 * Reads can do overwrites, we always need to pre-create the file
566 */
567 if (td_read(td) || td_rw(td))
568 td->overwrite = 1;
569
Jens Axboea00735e2006-11-03 08:58:08 +0100570 if (!td->min_bs[DDIR_READ])
571 td->min_bs[DDIR_READ]= td->bs[DDIR_READ];
572 if (!td->max_bs[DDIR_READ])
573 td->max_bs[DDIR_READ] = td->bs[DDIR_READ];
574 if (!td->min_bs[DDIR_WRITE])
Jens Axboe75e6f362006-11-03 08:17:09 +0100575 td->min_bs[DDIR_WRITE]= td->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100576 if (!td->max_bs[DDIR_WRITE])
Jens Axboe75e6f362006-11-03 08:17:09 +0100577 td->max_bs[DDIR_WRITE] = td->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100578
579 td->rw_min_bs = min(td->min_bs[DDIR_READ], td->min_bs[DDIR_WRITE]);
580
Jens Axboe16b462a2006-10-30 12:35:18 +0100581 if (td_read(td) && !td_rw(td))
582 td->verify = 0;
Jens Axboebb8895e2006-10-30 15:14:48 +0100583
584 if (td->norandommap && td->verify != VERIFY_NONE) {
585 log_err("fio: norandommap given, verify disabled\n");
586 td->verify = VERIFY_NONE;
587 }
Jens Axboe690adba2006-10-30 15:25:09 +0100588 if (td->bs_unaligned && (td->odirect || td->io_ops->flags & FIO_RAWIO))
589 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100590
591 /*
592 * O_DIRECT and char doesn't mix, clear that flag if necessary.
593 */
594 if (td->filetype == FIO_TYPE_CHAR && td->odirect)
595 td->odirect = 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200596}
597
Jens Axboe906c8d72006-06-13 09:37:56 +0200598/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100599 * This function leaks the buffer
600 */
601static char *to_kmg(unsigned int val)
602{
603 char *buf = malloc(32);
Jens Axboe245142f2006-11-08 12:49:21 +0100604 char post[] = { 0, 'K', 'M', 'G', 'P', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100605 char *p = post;
606
Jens Axboe245142f2006-11-08 12:49:21 +0100607 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100608 if (val & 1023)
609 break;
610
611 val >>= 10;
612 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100613 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100614
615 snprintf(buf, 31, "%u%c", val, *p);
616 return buf;
617}
618
619/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200620 * Adds a job to the list of things todo. Sanitizes the various options
621 * to make sure we don't have conflicts, and initializes various
622 * members of td.
623 */
Jens Axboe75154842006-06-01 13:56:09 +0200624static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100625{
Jens Axboe3c9b60c2006-11-07 08:36:14 +0100626 const char *ddir_str[] = { "read", "write", "randread", "randwrite",
627 "rw", NULL, "randrw" };
Jens Axboeebac4652005-12-08 15:25:21 +0100628 struct stat sb;
Jens Axboe53cdc682006-10-18 11:50:58 +0200629 int numjobs, ddir, i;
630 struct fio_file *f;
Jens Axboeebac4652005-12-08 15:25:21 +0100631
Jens Axboeebac4652005-12-08 15:25:21 +0100632 /*
633 * the def_thread is just for options, it's not a real job
634 */
635 if (td == &def_thread)
636 return 0;
637
Jens Axboedf641192006-10-12 07:55:41 +0200638 /*
639 * Set default io engine, if none set
640 */
641 if (!td->io_ops) {
642 td->io_ops = load_ioengine(td, DEF_IO_ENGINE_NAME);
643 if (!td->io_ops) {
644 log_err("default engine %s not there?\n", DEF_IO_ENGINE_NAME);
645 return 1;
646 }
647 }
648
Jens Axboe690adba2006-10-30 15:25:09 +0100649 if (td->odirect)
650 td->io_ops->flags |= FIO_RAWIO;
651
Jens Axboeebac4652005-12-08 15:25:21 +0100652 td->filetype = FIO_TYPE_FILE;
Jens Axboe0af7b542006-02-17 10:10:12 +0100653 if (!stat(jobname, &sb)) {
654 if (S_ISBLK(sb.st_mode))
655 td->filetype = FIO_TYPE_BD;
656 else if (S_ISCHR(sb.st_mode))
657 td->filetype = FIO_TYPE_CHAR;
658 }
Jens Axboeebac4652005-12-08 15:25:21 +0100659
Jens Axboee0a22332006-12-20 12:54:25 +0100660 fixup_options(td);
661
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200662 if (td->filename)
663 td->nr_uniq_files = 1;
664 else
665 td->nr_uniq_files = td->nr_files;
666
667 if (td->filetype == FIO_TYPE_FILE || td->filename) {
Jens Axboee9c047a2006-06-07 21:13:04 +0200668 char tmp[PATH_MAX];
Jens Axboe53cdc682006-10-18 11:50:58 +0200669 int len = 0;
Jens Axboee9c047a2006-06-07 21:13:04 +0200670
Jens Axboeef899b62006-06-06 09:31:00 +0200671 if (td->directory && td->directory[0] != '\0')
Jens Axboe8aeebd52007-01-08 10:47:43 +0100672 len = sprintf(tmp, "%s/", td->directory);
Jens Axboeebac4652005-12-08 15:25:21 +0100673
Jens Axboe53cdc682006-10-18 11:50:58 +0200674 td->files = malloc(sizeof(struct fio_file) * td->nr_files);
675
676 for_each_file(td, f, i) {
677 memset(f, 0, sizeof(*f));
678 f->fd = -1;
679
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200680 if (td->filename)
681 sprintf(tmp + len, "%s", td->filename);
682 else
683 sprintf(tmp + len, "%s.%d.%d", jobname, td->thread_number, i);
Jens Axboe53cdc682006-10-18 11:50:58 +0200684 f->file_name = strdup(tmp);
685 }
686 } else {
687 td->nr_files = 1;
688 td->files = malloc(sizeof(struct fio_file));
689 f = &td->files[0];
690
691 memset(f, 0, sizeof(*f));
692 f->fd = -1;
693 f->file_name = strdup(jobname);
694 }
695
696 for_each_file(td, f, i) {
697 f->file_size = td->total_file_size / td->nr_files;
698 f->file_offset = td->start_offset;
699 }
700
Jens Axboebbfd6b02006-06-07 19:42:54 +0200701 fio_sem_init(&td->mutex, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100702
703 td->clat_stat[0].min_val = td->clat_stat[1].min_val = ULONG_MAX;
704 td->slat_stat[0].min_val = td->slat_stat[1].min_val = ULONG_MAX;
705 td->bw_stat[0].min_val = td->bw_stat[1].min_val = ULONG_MAX;
706
Jens Axboeebac4652005-12-08 15:25:21 +0100707 if (td->stonewall && td->thread_number > 1)
708 groupid++;
709
710 td->groupid = groupid;
711
712 if (setup_rate(td))
713 goto err;
714
Jens Axboeec94ec52006-10-20 10:59:19 +0200715 if (td->write_lat_log) {
Jens Axboeebac4652005-12-08 15:25:21 +0100716 setup_log(&td->slat_log);
717 setup_log(&td->clat_log);
718 }
Jens Axboeec94ec52006-10-20 10:59:19 +0200719 if (td->write_bw_log)
Jens Axboeebac4652005-12-08 15:25:21 +0100720 setup_log(&td->bw_log);
721
Jens Axboeb4692822006-10-27 13:43:22 +0200722 if (!td->name)
723 td->name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200724
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200725 ddir = td->ddir + (!td->sequential << 1) + (td->iomix << 2);
Jens Axboe75154842006-06-01 13:56:09 +0200726
Jens Axboec6ae0a52006-06-12 11:04:44 +0200727 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200728 if (!job_add_num) {
Jens Axboe2866c822006-10-09 15:57:48 +0200729 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200730 fprintf(f_out, "%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->name, td->cpuload, td->cpucycle);
Jens Axboef8977ee2006-11-06 14:03:03 +0100731 else {
732 char *c1, *c2, *c3, *c4;
733
734 c1 = to_kmg(td->min_bs[DDIR_READ]);
735 c2 = to_kmg(td->max_bs[DDIR_READ]);
736 c3 = to_kmg(td->min_bs[DDIR_WRITE]);
737 c4 = to_kmg(td->max_bs[DDIR_WRITE]);
738
Jens Axboe1e97cce2006-12-05 11:44:16 +0100739 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 +0100740
741 free(c1);
742 free(c2);
743 free(c3);
744 free(c4);
745 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200746 } else if (job_add_num == 1)
Jens Axboec6ae0a52006-06-12 11:04:44 +0200747 fprintf(f_out, "...\n");
748 }
Jens Axboeebac4652005-12-08 15:25:21 +0100749
750 /*
751 * recurse add identical jobs, clear numjobs and stonewall options
752 * as they don't apply to sub-jobs
753 */
754 numjobs = td->numjobs;
755 while (--numjobs) {
756 struct thread_data *td_new = get_new_job(0, td);
757
758 if (!td_new)
759 goto err;
760
761 td_new->numjobs = 1;
762 td_new->stonewall = 0;
Jens Axboe75154842006-06-01 13:56:09 +0200763 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100764
Jens Axboe75154842006-06-01 13:56:09 +0200765 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100766 goto err;
767 }
768 return 0;
769err:
770 put_job(td);
771 return -1;
772}
773
Jens Axboe906c8d72006-06-13 09:37:56 +0200774/*
775 * Initialize the various random states we need (random io, block size ranges,
776 * read/write mix, etc).
777 */
Jens Axboeebac4652005-12-08 15:25:21 +0100778int init_random_state(struct thread_data *td)
779{
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200780 unsigned long seeds[4];
Jens Axboe53cdc682006-10-18 11:50:58 +0200781 int fd, num_maps, blocks, i;
Jens Axboe0ab8db82006-10-18 17:16:23 +0200782 struct fio_file *f;
Jens Axboeebac4652005-12-08 15:25:21 +0100783
Jens Axboef48b4672006-10-27 11:30:07 +0200784 if (td->io_ops->flags & FIO_CPUIO)
785 return 0;
786
Jens Axboe1ac267b2006-05-31 20:29:00 +0200787 fd = open("/dev/urandom", O_RDONLY);
Jens Axboeebac4652005-12-08 15:25:21 +0100788 if (fd == -1) {
789 td_verror(td, errno);
790 return 1;
791 }
792
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200793 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
Jens Axboeebac4652005-12-08 15:25:21 +0100794 td_verror(td, EIO);
795 close(fd);
796 return 1;
797 }
798
799 close(fd);
800
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200801 os_random_seed(seeds[0], &td->bsrange_state);
802 os_random_seed(seeds[1], &td->verify_state);
803 os_random_seed(seeds[2], &td->rwmix_state);
Jens Axboeebac4652005-12-08 15:25:21 +0100804
805 if (td->sequential)
806 return 0;
807
Jens Axboe9ebc27e2006-06-12 10:21:50 +0200808 if (td->rand_repeatable)
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200809 seeds[3] = DEF_RANDSEED;
Jens Axboeebac4652005-12-08 15:25:21 +0100810
Jens Axboebb8895e2006-10-30 15:14:48 +0100811 if (!td->norandommap) {
812 for_each_file(td, f, i) {
Jens Axboea00735e2006-11-03 08:58:08 +0100813 blocks = (f->file_size + td->rw_min_bs - 1) / td->rw_min_bs;
Jens Axboec7c280e2006-11-02 20:10:33 +0100814 num_maps = (blocks + BLOCKS_PER_MAP-1)/ BLOCKS_PER_MAP;
Jens Axboebb8895e2006-10-30 15:14:48 +0100815 f->file_map = malloc(num_maps * sizeof(long));
816 f->num_maps = num_maps;
817 memset(f->file_map, 0, num_maps * sizeof(long));
818 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200819 }
Jens Axboeebac4652005-12-08 15:25:21 +0100820
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200821 os_random_seed(seeds[3], &td->random_state);
Jens Axboeebac4652005-12-08 15:25:21 +0100822 return 0;
823}
824
825static void fill_cpu_mask(os_cpu_mask_t cpumask, int cpu)
826{
827#ifdef FIO_HAVE_CPU_AFFINITY
828 unsigned int i;
829
830 CPU_ZERO(&cpumask);
831
832 for (i = 0; i < sizeof(int) * 8; i++) {
833 if ((1 << i) & cpu)
834 CPU_SET(i, &cpumask);
835 }
836#endif
837}
838
Jens Axboeebac4652005-12-08 15:25:21 +0100839static int is_empty_or_comment(char *line)
840{
841 unsigned int i;
842
843 for (i = 0; i < strlen(line); i++) {
844 if (line[i] == ';')
845 return 1;
846 if (!isspace(line[i]) && !iscntrl(line[i]))
847 return 0;
848 }
849
850 return 1;
851}
852
Jens Axboeb4692822006-10-27 13:43:22 +0200853static int str_rw_cb(void *data, const char *mem)
Jens Axboeebac4652005-12-08 15:25:21 +0100854{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200855 struct thread_data *td = data;
856
Jens Axboeebac4652005-12-08 15:25:21 +0100857 if (!strncmp(mem, "read", 4) || !strncmp(mem, "0", 1)) {
858 td->ddir = DDIR_READ;
859 td->sequential = 1;
860 return 0;
861 } else if (!strncmp(mem, "randread", 8)) {
862 td->ddir = DDIR_READ;
863 td->sequential = 0;
864 return 0;
865 } else if (!strncmp(mem, "write", 5) || !strncmp(mem, "1", 1)) {
866 td->ddir = DDIR_WRITE;
867 td->sequential = 1;
868 return 0;
869 } else if (!strncmp(mem, "randwrite", 9)) {
870 td->ddir = DDIR_WRITE;
871 td->sequential = 0;
872 return 0;
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200873 } else if (!strncmp(mem, "rw", 2)) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100874 td->ddir = DDIR_READ;
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200875 td->iomix = 1;
876 td->sequential = 1;
877 return 0;
878 } else if (!strncmp(mem, "randrw", 6)) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100879 td->ddir = DDIR_READ;
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200880 td->iomix = 1;
881 td->sequential = 0;
882 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100883 }
884
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200885 log_err("fio: data direction: read, write, randread, randwrite, rw, randrw\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100886 return 1;
887}
888
Jens Axboeb4692822006-10-27 13:43:22 +0200889static int str_verify_cb(void *data, const char *mem)
Jens Axboeebac4652005-12-08 15:25:21 +0100890{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200891 struct thread_data *td = data;
892
Jens Axboeebac4652005-12-08 15:25:21 +0100893 if (!strncmp(mem, "0", 1)) {
894 td->verify = VERIFY_NONE;
895 return 0;
896 } else if (!strncmp(mem, "md5", 3) || !strncmp(mem, "1", 1)) {
897 td->verify = VERIFY_MD5;
898 return 0;
899 } else if (!strncmp(mem, "crc32", 5)) {
900 td->verify = VERIFY_CRC32;
901 return 0;
902 }
903
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200904 log_err("fio: verify types: md5, crc32\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100905 return 1;
906}
907
Jens Axboe313cb202006-12-21 09:50:00 +0100908/*
909 * Check if mmap/mmaphuge has a :/foo/bar/file at the end. If so, return that.
910 */
911static char *get_mmap_file(const char *str)
912{
913 char *p = strstr(str, ":");
914
915 if (!p)
916 return NULL;
917
918 p++;
919 strip_blank_front(&p);
920 strip_blank_end(p);
921 return strdup(p);
922}
923
Jens Axboeb4692822006-10-27 13:43:22 +0200924static int str_mem_cb(void *data, const char *mem)
Jens Axboeebac4652005-12-08 15:25:21 +0100925{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200926 struct thread_data *td = data;
927
Jens Axboeebac4652005-12-08 15:25:21 +0100928 if (!strncmp(mem, "malloc", 6)) {
929 td->mem_type = MEM_MALLOC;
930 return 0;
Jens Axboed0bdaf42006-12-20 14:40:44 +0100931 } else if (!strncmp(mem, "mmaphuge", 8)) {
932#ifdef FIO_HAVE_HUGETLB
Jens Axboed0bdaf42006-12-20 14:40:44 +0100933 /*
934 * mmaphuge must be appended with the actual file
935 */
Jens Axboe313cb202006-12-21 09:50:00 +0100936 td->mmapfile = get_mmap_file(mem);
937 if (!td->mmapfile) {
Jens Axboed0bdaf42006-12-20 14:40:44 +0100938 log_err("fio: mmaphuge:/path/to/file\n");
939 return 1;
940 }
941
Jens Axboed0bdaf42006-12-20 14:40:44 +0100942 td->mem_type = MEM_MMAPHUGE;
943 return 0;
944#else
945 log_err("fio: mmaphuge not available\n");
946 return 1;
947#endif
Jens Axboeebac4652005-12-08 15:25:21 +0100948 } else if (!strncmp(mem, "mmap", 4)) {
Jens Axboe313cb202006-12-21 09:50:00 +0100949 /*
950 * Check if the user wants file backed memory. It's ok
951 * if there's no file given, we'll just use anon mamp then.
952 */
953 td->mmapfile = get_mmap_file(mem);
Jens Axboeebac4652005-12-08 15:25:21 +0100954 td->mem_type = MEM_MMAP;
955 return 0;
Jens Axboe74b025b2006-12-19 15:18:14 +0100956 } else if (!strncmp(mem, "shmhuge", 7)) {
957#ifdef FIO_HAVE_HUGETLB
958 td->mem_type = MEM_SHMHUGE;
959 return 0;
960#else
961 log_err("fio: shmhuge not available\n");
962 return 1;
963#endif
Jens Axboe0268b8b2006-12-20 12:48:23 +0100964 } else if (!strncmp(mem, "shm", 3)) {
965 td->mem_type = MEM_SHM;
966 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100967 }
968
Jens Axboed0bdaf42006-12-20 14:40:44 +0100969 log_err("fio: mem type: malloc, shm, shmhuge, mmap, mmaphuge\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100970 return 1;
971}
972
Jens Axboeb4692822006-10-27 13:43:22 +0200973static int str_ioengine_cb(void *data, const char *str)
Jens Axboeebac4652005-12-08 15:25:21 +0100974{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200975 struct thread_data *td = data;
976
Jens Axboe2866c822006-10-09 15:57:48 +0200977 td->io_ops = load_ioengine(td, str);
978 if (td->io_ops)
Jens Axboeebac4652005-12-08 15:25:21 +0100979 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100980
Jens Axboe08aae9a2006-11-24 12:43:49 +0100981 log_err("fio: ioengine= libaio, posixaio, sync, mmap, sgio, splice, cpu, null\n");
Jens Axboe5f350952006-11-07 15:20:59 +0100982 log_err("fio: or specify path to dynamic ioengine module\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100983 return 1;
984}
985
Jens Axboee1f36502006-10-27 10:54:08 +0200986static int str_lockmem_cb(void fio_unused *data, unsigned long *val)
987{
988 mlock_size = *val;
989 return 0;
990}
991
Jens Axboe34cfcda2006-11-03 14:00:45 +0100992#ifdef FIO_HAVE_IOPRIO
Jens Axboee1f36502006-10-27 10:54:08 +0200993static int str_prioclass_cb(void *data, unsigned int *val)
994{
995 struct thread_data *td = data;
996
997 td->ioprio |= *val << IOPRIO_CLASS_SHIFT;
998 return 0;
999}
1000
1001static int str_prio_cb(void *data, unsigned int *val)
1002{
1003 struct thread_data *td = data;
1004
1005 td->ioprio |= *val;
1006 return 0;
1007}
Jens Axboe34cfcda2006-11-03 14:00:45 +01001008#endif
Jens Axboee1f36502006-10-27 10:54:08 +02001009
1010static int str_exitall_cb(void)
1011{
1012 exitall_on_terminate = 1;
1013 return 0;
1014}
1015
1016static int str_cpumask_cb(void *data, unsigned int *val)
1017{
1018 struct thread_data *td = data;
1019
1020 fill_cpu_mask(td->cpumask, *val);
1021 return 0;
1022}
1023
Jens Axboe07261982006-06-07 10:51:12 +02001024/*
1025 * This is our [ini] type file parser.
1026 */
Jens Axboe1e97cce2006-12-05 11:44:16 +01001027static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +01001028{
Jens Axboee1f36502006-10-27 10:54:08 +02001029 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +01001030 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +01001031 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +01001032 fpos_t off;
1033 FILE *f;
1034 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001035 int ret = 0, stonewall;
Jens Axboeebac4652005-12-08 15:25:21 +01001036
1037 f = fopen(file, "r");
1038 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +02001039 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +01001040 return 1;
1041 }
1042
1043 string = malloc(4096);
1044 name = malloc(256);
Jens Axboefee3bb42006-10-30 13:32:08 +01001045 memset(name, 0, 256);
Jens Axboeebac4652005-12-08 15:25:21 +01001046
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001047 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001048 do {
1049 p = fgets(string, 4095, f);
1050 if (!p)
Jens Axboe45410ac2006-06-07 11:10:39 +02001051 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001052 if (is_empty_or_comment(p))
1053 continue;
Jens Axboefee3bb42006-10-30 13:32:08 +01001054 if (sscanf(p, "[%255s]", name) != 1)
Jens Axboeebac4652005-12-08 15:25:21 +01001055 continue;
1056
1057 global = !strncmp(name, "global", 6);
1058
1059 name[strlen(name) - 1] = '\0';
1060
1061 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +02001062 if (!td) {
1063 ret = 1;
1064 break;
1065 }
Jens Axboeebac4652005-12-08 15:25:21 +01001066
Jens Axboe972cfd22006-06-09 11:08:56 +02001067 /*
1068 * Seperate multiple job files by a stonewall
1069 */
Jens Axboef9481912006-06-09 11:37:28 +02001070 if (!global && stonewall) {
Jens Axboe972cfd22006-06-09 11:08:56 +02001071 td->stonewall = stonewall;
1072 stonewall = 0;
1073 }
1074
Jens Axboeebac4652005-12-08 15:25:21 +01001075 fgetpos(f, &off);
1076 while ((p = fgets(string, 4096, f)) != NULL) {
1077 if (is_empty_or_comment(p))
1078 continue;
Jens Axboee1f36502006-10-27 10:54:08 +02001079
Jens Axboeb6754f92006-05-30 14:29:32 +02001080 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +01001081
1082 if (p[0] == '[')
1083 break;
1084
Jens Axboe4ae3f762006-05-30 13:35:14 +02001085 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +02001086
Jens Axboee1f36502006-10-27 10:54:08 +02001087 fgetpos(f, &off);
Jens Axboeebac4652005-12-08 15:25:21 +01001088
Jens Axboe45410ac2006-06-07 11:10:39 +02001089 /*
1090 * Don't break here, continue parsing options so we
1091 * dump all the bad ones. Makes trial/error fixups
1092 * easier on the user.
1093 */
Jens Axboe7c124ac2006-10-30 13:36:52 +01001094 ret |= parse_option(p, options, td);
Jens Axboeebac4652005-12-08 15:25:21 +01001095 }
Jens Axboeebac4652005-12-08 15:25:21 +01001096
Jens Axboe45410ac2006-06-07 11:10:39 +02001097 if (!ret) {
1098 fsetpos(f, &off);
1099 ret = add_job(td, name, 0);
Jens Axboeb1508cf2006-11-02 09:12:40 +01001100 } else {
1101 log_err("fio: job %s dropped\n", name);
1102 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +02001103 }
Jens Axboe7c124ac2006-10-30 13:36:52 +01001104 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001105
1106 free(string);
1107 free(name);
1108 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +02001109 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001110}
1111
1112static int fill_def_thread(void)
1113{
1114 memset(&def_thread, 0, sizeof(def_thread));
1115
1116 if (fio_getaffinity(getpid(), &def_thread.cpumask) == -1) {
1117 perror("sched_getaffinity");
1118 return 1;
1119 }
1120
1121 /*
1122 * fill globals
1123 */
1124 def_thread.ddir = DDIR_READ;
Jens Axboe3d60d1e2006-05-25 06:31:06 +02001125 def_thread.iomix = 0;
Jens Axboea00735e2006-11-03 08:58:08 +01001126 def_thread.bs[DDIR_READ] = DEF_BS;
1127 def_thread.bs[DDIR_WRITE] = DEF_BS;
1128 def_thread.min_bs[DDIR_READ] = def_thread.min_bs[DDIR_WRITE] = 0;
1129 def_thread.max_bs[DDIR_READ] = def_thread.max_bs[DDIR_WRITE] = 0;
Jens Axboe9ebc27e2006-06-12 10:21:50 +02001130 def_thread.odirect = DEF_ODIRECT;
Jens Axboeebac4652005-12-08 15:25:21 +01001131 def_thread.ratecycle = DEF_RATE_CYCLE;
Jens Axboe9ebc27e2006-06-12 10:21:50 +02001132 def_thread.sequential = DEF_SEQUENTIAL;
Jens Axboe972cfd22006-06-09 11:08:56 +02001133 def_thread.timeout = def_timeout;
Jens Axboeebac4652005-12-08 15:25:21 +01001134 def_thread.overwrite = DEF_OVERWRITE;
1135 def_thread.invalidate_cache = DEF_INVALIDATE;
1136 def_thread.sync_io = DEF_SYNCIO;
1137 def_thread.mem_type = MEM_MALLOC;
1138 def_thread.bw_avg_time = DEF_BWAVGTIME;
1139 def_thread.create_serialize = DEF_CREATE_SER;
1140 def_thread.create_fsync = DEF_CREATE_FSYNC;
1141 def_thread.loops = DEF_LOOPS;
1142 def_thread.verify = DEF_VERIFY;
1143 def_thread.stonewall = DEF_STONEWALL;
1144 def_thread.numjobs = DEF_NUMJOBS;
1145 def_thread.use_thread = DEF_USE_THREAD;
Jens Axboea6ccc7b2006-06-02 10:14:15 +02001146 def_thread.rwmixcycle = DEF_RWMIX_CYCLE;
1147 def_thread.rwmixread = DEF_RWMIX_READ;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001148 def_thread.nice = DEF_NICE;
Jens Axboe9ebc27e2006-06-12 10:21:50 +02001149 def_thread.rand_repeatable = DEF_RAND_REPEAT;
Jens Axboe53cdc682006-10-18 11:50:58 +02001150 def_thread.nr_files = DEF_NR_FILES;
Jens Axboef6cbb262006-10-18 14:16:42 +02001151 def_thread.unlink = DEF_UNLINK;
Jens Axboeec94ec52006-10-20 10:59:19 +02001152 def_thread.write_bw_log = write_bw_log;
1153 def_thread.write_lat_log = write_lat_log;
Jens Axboebb8895e2006-10-30 15:14:48 +01001154 def_thread.norandommap = DEF_NO_RAND_MAP;
Jens Axboe56bb17f2006-12-20 20:27:36 +01001155 def_thread.hugepage_size = DEF_HUGEPAGE_SIZE;
Jens Axboe9c1f7432007-01-03 20:43:19 +01001156 def_thread.thinktime_blocks = DEF_THINKTIME_BLOCKS;
Jens Axboeebac4652005-12-08 15:25:21 +01001157#ifdef FIO_HAVE_DISK_UTIL
1158 def_thread.do_disk_util = 1;
1159#endif
1160
1161 return 0;
1162}
1163
Jens Axboe0ab8db82006-10-18 17:16:23 +02001164static void usage(void)
Jens Axboe4785f992006-05-26 03:59:10 +02001165{
1166 printf("%s\n", fio_version_string);
Jens Axboeb4692822006-10-27 13:43:22 +02001167 printf("\t--output\tWrite output to file\n");
1168 printf("\t--timeout\tRuntime in seconds\n");
1169 printf("\t--latency-log\tGenerate per-job latency logs\n");
1170 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
1171 printf("\t--minimal\tMinimal (terse) output\n");
1172 printf("\t--version\tPrint version info and exit\n");
Jens Axboefd28ca42007-01-09 21:20:13 +01001173 printf("\t--help\t\tPrint this page\n");
1174 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
Jens Axboe4785f992006-05-26 03:59:10 +02001175}
1176
Jens Axboe972cfd22006-06-09 11:08:56 +02001177static int parse_cmd_line(int argc, char *argv[])
Jens Axboeebac4652005-12-08 15:25:21 +01001178{
Jens Axboeb4692822006-10-27 13:43:22 +02001179 struct thread_data *td = NULL;
Jens Axboec2b1e752006-10-30 09:03:13 +01001180 int c, ini_idx = 0, lidx, ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001181
Jens Axboeb4692822006-10-27 13:43:22 +02001182 while ((c = getopt_long(argc, argv, "", long_options, &lidx)) != -1) {
Jens Axboeebac4652005-12-08 15:25:21 +01001183 switch (c) {
Jens Axboeb4692822006-10-27 13:43:22 +02001184 case 't':
1185 def_timeout = atoi(optarg);
1186 break;
1187 case 'l':
1188 write_lat_log = 1;
1189 break;
1190 case 'w':
1191 write_bw_log = 1;
1192 break;
1193 case 'o':
1194 f_out = fopen(optarg, "w+");
1195 if (!f_out) {
1196 perror("fopen output");
1197 exit(1);
1198 }
1199 f_err = f_out;
1200 break;
1201 case 'm':
1202 terse_output = 1;
1203 break;
1204 case 'h':
1205 usage();
1206 exit(0);
Jens Axboefd28ca42007-01-09 21:20:13 +01001207 case 'c':
Jens Axboe29fc6af2007-01-09 21:22:02 +01001208 ret = show_cmd_help(options, optarg);
1209 exit(ret);
Jens Axboeb4692822006-10-27 13:43:22 +02001210 case 'v':
1211 printf("%s\n", fio_version_string);
1212 exit(0);
1213 case FIO_GETOPT_JOB: {
1214 const char *opt = long_options[lidx].name;
1215 char *val = optarg;
1216
Jens Axboec2b1e752006-10-30 09:03:13 +01001217 if (!strncmp(opt, "name", 4) && td) {
1218 ret = add_job(td, td->name ?: "fio", 0);
1219 if (ret) {
1220 put_job(td);
1221 return 0;
1222 }
1223 td = NULL;
1224 }
Jens Axboeb4692822006-10-27 13:43:22 +02001225 if (!td) {
Jens Axboe38d0adb2006-10-30 12:21:25 +01001226 int global = !strncmp(val, "global", 6);
Jens Axboec2b1e752006-10-30 09:03:13 +01001227
1228 td = get_new_job(global, &def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001229 if (!td)
1230 return 0;
1231 }
Jens Axboe38d0adb2006-10-30 12:21:25 +01001232
Jens Axboeb1508cf2006-11-02 09:12:40 +01001233 ret = parse_cmd_option(opt, val, options, td);
1234 if (ret) {
1235 log_err("fio: job dropped\n");
1236 put_job(td);
1237 td = NULL;
1238 }
Jens Axboeb4692822006-10-27 13:43:22 +02001239 break;
1240 }
1241 default:
Jens Axboeb4692822006-10-27 13:43:22 +02001242 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001243 }
1244 }
Jens Axboec9fad892006-05-27 17:26:50 +02001245
Jens Axboeb4692822006-10-27 13:43:22 +02001246 if (td) {
Jens Axboec2b1e752006-10-30 09:03:13 +01001247 ret = add_job(td, td->name ?: "fio", 0);
Jens Axboeb4692822006-10-27 13:43:22 +02001248 if (ret)
1249 put_job(td);
Jens Axboe972cfd22006-06-09 11:08:56 +02001250 }
Jens Axboe774a6172006-08-24 08:44:26 +02001251
Jens Axboeb4692822006-10-27 13:43:22 +02001252 while (optind < argc) {
1253 ini_idx++;
1254 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1255 ini_file[ini_idx - 1] = strdup(argv[optind]);
1256 optind++;
Jens Axboeeb8bbf42006-06-08 21:40:11 +02001257 }
Jens Axboe972cfd22006-06-09 11:08:56 +02001258
1259 return ini_idx;
Jens Axboeebac4652005-12-08 15:25:21 +01001260}
1261
1262static void free_shm(void)
1263{
1264 struct shmid_ds sbuf;
1265
1266 if (threads) {
Jens Axboe2c0ecd22006-06-08 13:25:41 +02001267 shmdt((void *) threads);
Jens Axboeebac4652005-12-08 15:25:21 +01001268 threads = NULL;
1269 shmctl(shm_id, IPC_RMID, &sbuf);
1270 }
1271}
1272
Jens Axboe906c8d72006-06-13 09:37:56 +02001273/*
1274 * The thread area is shared between the main process and the job
1275 * threads/processes. So setup a shared memory segment that will hold
1276 * all the job info.
1277 */
Jens Axboeebac4652005-12-08 15:25:21 +01001278static int setup_thread_area(void)
1279{
1280 /*
1281 * 1024 is too much on some machines, scale max_jobs if
1282 * we get a failure that looks like too large a shm segment
1283 */
1284 do {
Jens Axboe906c8d72006-06-13 09:37:56 +02001285 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +01001286
Jens Axboe906c8d72006-06-13 09:37:56 +02001287 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +01001288 if (shm_id != -1)
1289 break;
1290 if (errno != EINVAL) {
1291 perror("shmget");
1292 break;
1293 }
1294
1295 max_jobs >>= 1;
1296 } while (max_jobs);
1297
1298 if (shm_id == -1)
1299 return 1;
1300
1301 threads = shmat(shm_id, NULL, 0);
1302 if (threads == (void *) -1) {
1303 perror("shmat");
1304 return 1;
1305 }
1306
1307 atexit(free_shm);
1308 return 0;
1309}
1310
Jens Axboeb4692822006-10-27 13:43:22 +02001311/*
1312 * Copy the fio options into the long options map, so we mirror
1313 * job and cmd line options.
1314 */
1315static void dupe_job_options(void)
1316{
1317 struct fio_option *o;
1318 unsigned int i;
1319
1320 i = 0;
1321 while (long_options[i].name)
1322 i++;
1323
1324 o = &options[0];
1325 while (o->name) {
1326 long_options[i].name = o->name;
1327 long_options[i].val = FIO_GETOPT_JOB;
1328 if (o->type == FIO_OPT_STR_SET)
1329 long_options[i].has_arg = no_argument;
1330 else
1331 long_options[i].has_arg = required_argument;
1332
1333 i++;
1334 o++;
1335 assert(i < FIO_JOB_OPTS + FIO_CMD_OPTS);
1336 }
1337}
1338
Jens Axboeebac4652005-12-08 15:25:21 +01001339int parse_options(int argc, char *argv[])
1340{
Jens Axboe972cfd22006-06-09 11:08:56 +02001341 int job_files, i;
1342
Jens Axboeb4692822006-10-27 13:43:22 +02001343 f_out = stdout;
1344 f_err = stderr;
1345
1346 dupe_job_options();
1347
Jens Axboeebac4652005-12-08 15:25:21 +01001348 if (setup_thread_area())
1349 return 1;
1350 if (fill_def_thread())
1351 return 1;
1352
Jens Axboe972cfd22006-06-09 11:08:56 +02001353 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001354
Jens Axboe972cfd22006-06-09 11:08:56 +02001355 for (i = 0; i < job_files; i++) {
1356 if (fill_def_thread())
1357 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001358 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001359 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001360 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001361 }
Jens Axboeebac4652005-12-08 15:25:21 +01001362
Jens Axboe88c6ed82006-06-09 11:28:10 +02001363 free(ini_file);
Jens Axboeb4692822006-10-27 13:43:22 +02001364
1365 if (!thread_number) {
1366 log_err("No jobs defined(s)\n");
Jens Axboeb4692822006-10-27 13:43:22 +02001367 return 1;
1368 }
1369
Jens Axboeebac4652005-12-08 15:25:21 +01001370 return 0;
1371}