blob: a2ff7bc5593063d2964e4f8a23632ae221ceca73 [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 *);
Jens Axboe1907dbc2007-03-12 11:44:28 +010033static int str_fst_cb(void *, const char *);
Jens Axboee1f36502006-10-27 10:54:08 +020034
Jens Axboeee738492007-01-10 11:23:16 +010035#define __stringify_1(x) #x
36#define __stringify(x) __stringify_1(x)
37
Jens Axboee1f36502006-10-27 10:54:08 +020038/*
39 * Map of job/command line options
40 */
41static struct fio_option options[] = {
42 {
Jens Axboe61697c32007-02-05 15:04:46 +010043 .name = "description",
44 .type = FIO_OPT_STR_STORE,
45 .off1 = td_var_offset(description),
46 .help = "Text job description",
47 },
48 {
Jens Axboee1f36502006-10-27 10:54:08 +020049 .name = "name",
50 .type = FIO_OPT_STR_STORE,
51 .off1 = td_var_offset(name),
Jens Axboefd28ca42007-01-09 21:20:13 +010052 .help = "Name of this job",
Jens Axboee1f36502006-10-27 10:54:08 +020053 },
54 {
55 .name = "directory",
56 .type = FIO_OPT_STR_STORE,
57 .off1 = td_var_offset(directory),
Jens Axboefd28ca42007-01-09 21:20:13 +010058 .help = "Directory to store files in",
Jens Axboee1f36502006-10-27 10:54:08 +020059 },
60 {
61 .name = "filename",
62 .type = FIO_OPT_STR_STORE,
63 .off1 = td_var_offset(filename),
Jens Axboefd28ca42007-01-09 21:20:13 +010064 .help = "Force the use of a specific file",
Jens Axboee1f36502006-10-27 10:54:08 +020065 },
66 {
67 .name = "rw",
68 .type = FIO_OPT_STR,
Jens Axboeb1ec1da2007-02-23 10:29:16 +010069 .off1 = td_var_offset(td_ddir),
Jens Axboe15f79182007-01-10 12:26:18 +010070 .help = "IO direction",
Jens Axboeee738492007-01-10 11:23:16 +010071 .def = "read",
Jens Axboeb1ec1da2007-02-23 10:29:16 +010072 .posval = {
73 { .ival = "read", .oval = TD_DDIR_READ },
74 { .ival = "write", .oval = TD_DDIR_WRITE },
75 { .ival = "randread", .oval = TD_DDIR_RANDREAD },
76 { .ival = "randwrite", .oval = TD_DDIR_RANDWRITE },
77 { .ival = "rw", .oval = TD_DDIR_RW },
78 { .ival = "randrw", .oval = TD_DDIR_RANDRW },
79 },
Jens Axboee1f36502006-10-27 10:54:08 +020080 },
81 {
82 .name = "ioengine",
Jens Axboe09629a92007-03-09 09:00:06 +010083 .type = FIO_OPT_STR_STORE,
84 .off1 = td_var_offset(ioengine),
Jens Axboe15f79182007-01-10 12:26:18 +010085 .help = "IO engine to use",
Jens Axboeee738492007-01-10 11:23:16 +010086 .def = "sync",
Jens Axboeb1ec1da2007-02-23 10:29:16 +010087 .posval = {
Jens Axboe10cad1a2007-02-23 11:23:03 +010088 { .ival = "sync", },
89#ifdef FIO_HAVE_LIBAIO
90 { .ival = "libaio", },
91#endif
92#ifdef FIO_HAVE_POSIXAIO
93 { .ival = "posixaio", },
94#endif
95 { .ival = "mmap", },
96#ifdef FIO_HAVE_SPLICE
97 { .ival = "splice", },
98#endif
99#ifdef FIO_HAVE_SGIO
100 { .ival = "sg", },
101#endif
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100102 { .ival = "null", }, { .ival = "net", },
Jens Axboe10cad1a2007-02-23 11:23:03 +0100103#ifdef FIO_HAVE_SYSLET
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100104 { .ival = "syslet-rw", },
Jens Axboe10cad1a2007-02-23 11:23:03 +0100105#endif
Jens Axboeba0fbe12007-03-09 14:34:23 +0100106 { .ival = "cpuio", },
Joel Becker7b395ca2007-02-28 11:10:58 +0100107 { .ival = "external", },
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100108 },
Jens Axboee1f36502006-10-27 10:54:08 +0200109 },
110 {
Jens Axboe03b74b32007-01-11 11:04:31 +0100111 .name = "iodepth",
112 .type = FIO_OPT_INT,
113 .off1 = td_var_offset(iodepth),
114 .help = "Amount of IO buffers to keep in flight",
115 .def = "1",
116 },
117 {
Jens Axboecb5ab512007-02-26 12:57:09 +0100118 .name = "iodepth_batch",
119 .type = FIO_OPT_INT,
120 .off1 = td_var_offset(iodepth_batch),
121 .help = "Number of IO to submit in one go",
122 },
123 {
Jens Axboee916b392007-02-20 14:37:26 +0100124 .name = "iodepth_low",
125 .type = FIO_OPT_INT,
126 .off1 = td_var_offset(iodepth_low),
127 .help = "Low water mark for queuing depth",
128 },
129 {
Jens Axboe03b74b32007-01-11 11:04:31 +0100130 .name = "size",
131 .type = FIO_OPT_STR_VAL,
132 .off1 = td_var_offset(total_file_size),
133 .help = "Size of device or file",
134 },
135 {
136 .name = "bs",
137 .type = FIO_OPT_STR_VAL_INT,
138 .off1 = td_var_offset(bs[DDIR_READ]),
139 .off2 = td_var_offset(bs[DDIR_WRITE]),
140 .help = "Block size unit",
141 .def = "4k",
142 },
143 {
144 .name = "bsrange",
145 .type = FIO_OPT_RANGE,
146 .off1 = td_var_offset(min_bs[DDIR_READ]),
147 .off2 = td_var_offset(max_bs[DDIR_READ]),
148 .off3 = td_var_offset(min_bs[DDIR_WRITE]),
149 .off4 = td_var_offset(max_bs[DDIR_WRITE]),
150 .help = "Set block size range (in more detail than bs)",
151 },
152 {
153 .name = "bs_unaligned",
154 .type = FIO_OPT_STR_SET,
155 .off1 = td_var_offset(bs_unaligned),
156 .help = "Don't sector align IO buffer sizes",
157 },
158 {
159 .name = "offset",
160 .type = FIO_OPT_STR_VAL,
161 .off1 = td_var_offset(start_offset),
162 .help = "Start IO from this offset",
163 .def = "0",
164 },
165 {
166 .name = "randrepeat",
167 .type = FIO_OPT_BOOL,
168 .off1 = td_var_offset(rand_repeatable),
169 .help = "Use repeatable random IO pattern",
170 .def = "1",
171 },
172 {
173 .name = "norandommap",
174 .type = FIO_OPT_STR_SET,
175 .off1 = td_var_offset(norandommap),
176 .help = "Accept potential duplicate random blocks",
177 },
178 {
179 .name = "nrfiles",
180 .type = FIO_OPT_INT,
181 .off1 = td_var_offset(nr_files),
182 .help = "Split job workload between this number of files",
183 .def = "1",
184 },
185 {
Jens Axboeb5af8292007-03-08 12:43:13 +0100186 .name = "openfiles",
187 .type = FIO_OPT_INT,
188 .off1 = td_var_offset(open_files),
189 .help = "Number of files to keep open at the same time",
190 },
191 {
Jens Axboe0aabe162007-02-23 08:45:55 +0100192 .name = "file_service_type",
193 .type = FIO_OPT_STR,
Jens Axboe1907dbc2007-03-12 11:44:28 +0100194 .cb = str_fst_cb,
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100195 .off1 = td_var_offset(file_service_type),
Jens Axboe0aabe162007-02-23 08:45:55 +0100196 .help = "How to select which file to service next",
197 .def = "roundrobin",
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100198 .posval = {
199 { .ival = "random", .oval = FIO_FSERVICE_RANDOM },
200 { .ival = "roundrobin", .oval = FIO_FSERVICE_RR },
201 },
Jens Axboe0aabe162007-02-23 08:45:55 +0100202 },
203 {
Jens Axboe03b74b32007-01-11 11:04:31 +0100204 .name = "fsync",
205 .type = FIO_OPT_INT,
206 .off1 = td_var_offset(fsync_blocks),
207 .help = "Issue fsync for writes every given number of blocks",
208 .def = "0",
209 },
210 {
211 .name = "direct",
212 .type = FIO_OPT_BOOL,
213 .off1 = td_var_offset(odirect),
Jens Axboe76a43db2007-01-11 13:24:44 +0100214 .help = "Use O_DIRECT IO (negates buffered)",
215 .def = "0",
216 },
217 {
218 .name = "buffered",
219 .type = FIO_OPT_BOOL,
220 .off1 = td_var_offset(odirect),
221 .neg = 1,
222 .help = "Use buffered IO (negates direct)",
Jens Axboe03b74b32007-01-11 11:04:31 +0100223 .def = "1",
224 },
225 {
226 .name = "overwrite",
227 .type = FIO_OPT_BOOL,
228 .off1 = td_var_offset(overwrite),
229 .help = "When writing, set whether to overwrite current data",
230 .def = "0",
231 },
232 {
233 .name = "loops",
234 .type = FIO_OPT_INT,
235 .off1 = td_var_offset(loops),
236 .help = "Number of times to run the job",
237 .def = "1",
238 },
239 {
240 .name = "numjobs",
241 .type = FIO_OPT_INT,
242 .off1 = td_var_offset(numjobs),
243 .help = "Duplicate this job this many times",
244 .def = "1",
245 },
246 {
247 .name = "startdelay",
248 .type = FIO_OPT_INT,
249 .off1 = td_var_offset(start_delay),
250 .help = "Only start job when this period has passed",
251 .def = "0",
252 },
253 {
254 .name = "runtime",
255 .alias = "timeout",
256 .type = FIO_OPT_STR_VAL_TIME,
257 .off1 = td_var_offset(timeout),
258 .help = "Stop workload when this amount of time has passed",
259 .def = "0",
260 },
261 {
Jens Axboee1f36502006-10-27 10:54:08 +0200262 .name = "mem",
263 .type = FIO_OPT_STR,
264 .cb = str_mem_cb,
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100265 .off1 = td_var_offset(mem_type),
Jens Axboe15f79182007-01-10 12:26:18 +0100266 .help = "Backing type for IO buffers",
Jens Axboeee738492007-01-10 11:23:16 +0100267 .def = "malloc",
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100268 .posval = {
269 { .ival = "malloc", .oval = MEM_MALLOC },
270 { .ival = "shm", .oval = MEM_SHM },
271#ifdef FIO_HAVE_HUGETLB
272 { .ival = "shmhuge", .oval = MEM_SHMHUGE },
273#endif
274 { .ival = "mmap", .oval = MEM_MMAP },
275#ifdef FIO_HAVE_HUGETLB
276 { .ival = "mmaphuge", .oval = MEM_MMAPHUGE },
277#endif
278 },
Jens Axboee1f36502006-10-27 10:54:08 +0200279 },
280 {
281 .name = "verify",
282 .type = FIO_OPT_STR,
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100283 .off1 = td_var_offset(verify),
Jens Axboe15f79182007-01-10 12:26:18 +0100284 .help = "Verify sum function",
Jens Axboeee738492007-01-10 11:23:16 +0100285 .def = "0",
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100286 .posval = {
287 { .ival = "0", .oval = VERIFY_NONE },
288 { .ival = "crc32", .oval = VERIFY_CRC32 },
289 { .ival = "md5", .oval = VERIFY_MD5 },
290 },
Jens Axboee1f36502006-10-27 10:54:08 +0200291 },
292 {
293 .name = "write_iolog",
Jens Axboe076efc72006-10-27 11:24:25 +0200294 .type = FIO_OPT_STR_STORE,
295 .off1 = td_var_offset(write_iolog_file),
Jens Axboefd28ca42007-01-09 21:20:13 +0100296 .help = "Store IO pattern to file",
Jens Axboee1f36502006-10-27 10:54:08 +0200297 },
298 {
Jens Axboe076efc72006-10-27 11:24:25 +0200299 .name = "read_iolog",
Jens Axboee1f36502006-10-27 10:54:08 +0200300 .type = FIO_OPT_STR_STORE,
Jens Axboe076efc72006-10-27 11:24:25 +0200301 .off1 = td_var_offset(read_iolog_file),
Jens Axboefd28ca42007-01-09 21:20:13 +0100302 .help = "Playback IO pattern from file",
Jens Axboee1f36502006-10-27 10:54:08 +0200303 },
304 {
305 .name = "exec_prerun",
306 .type = FIO_OPT_STR_STORE,
307 .off1 = td_var_offset(exec_prerun),
Jens Axboefd28ca42007-01-09 21:20:13 +0100308 .help = "Execute this file prior to running job",
Jens Axboee1f36502006-10-27 10:54:08 +0200309 },
310 {
311 .name = "exec_postrun",
312 .type = FIO_OPT_STR_STORE,
313 .off1 = td_var_offset(exec_postrun),
Jens Axboefd28ca42007-01-09 21:20:13 +0100314 .help = "Execute this file after running job",
Jens Axboee1f36502006-10-27 10:54:08 +0200315 },
316#ifdef FIO_HAVE_IOSCHED_SWITCH
317 {
318 .name = "ioscheduler",
319 .type = FIO_OPT_STR_STORE,
320 .off1 = td_var_offset(ioscheduler),
Jens Axboefd28ca42007-01-09 21:20:13 +0100321 .help = "Use this IO scheduler on the backing device",
Jens Axboee1f36502006-10-27 10:54:08 +0200322 },
323#endif
324 {
Jens Axboee1f36502006-10-27 10:54:08 +0200325 .name = "zonesize",
326 .type = FIO_OPT_STR_VAL,
327 .off1 = td_var_offset(zone_size),
Jens Axboefd28ca42007-01-09 21:20:13 +0100328 .help = "Give size of an IO zone",
Jens Axboeee738492007-01-10 11:23:16 +0100329 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200330 },
331 {
332 .name = "zoneskip",
333 .type = FIO_OPT_STR_VAL,
334 .off1 = td_var_offset(zone_skip),
Jens Axboefd28ca42007-01-09 21:20:13 +0100335 .help = "Space between IO zones",
Jens Axboeee738492007-01-10 11:23:16 +0100336 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200337 },
338 {
339 .name = "lockmem",
340 .type = FIO_OPT_STR_VAL,
341 .cb = str_lockmem_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100342 .help = "Lock down this amount of memory",
Jens Axboeee738492007-01-10 11:23:16 +0100343 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200344 },
345 {
Jens Axboee1f36502006-10-27 10:54:08 +0200346 .name = "rwmixcycle",
347 .type = FIO_OPT_INT,
348 .off1 = td_var_offset(rwmixcycle),
Jens Axboeee738492007-01-10 11:23:16 +0100349 .help = "Cycle period for mixed read/write workloads (msec)",
350 .def = "500",
Jens Axboee1f36502006-10-27 10:54:08 +0200351 },
352 {
353 .name = "rwmixread",
354 .type = FIO_OPT_INT,
355 .off1 = td_var_offset(rwmixread),
Jens Axboeee738492007-01-10 11:23:16 +0100356 .maxval = 100,
Jens Axboefd28ca42007-01-09 21:20:13 +0100357 .help = "Percentage of mixed workload that is reads",
Jens Axboeee738492007-01-10 11:23:16 +0100358 .def = "50",
Jens Axboee1f36502006-10-27 10:54:08 +0200359 },
360 {
361 .name = "rwmixwrite",
362 .type = FIO_OPT_INT,
363 .off1 = td_var_offset(rwmixwrite),
Jens Axboeee738492007-01-10 11:23:16 +0100364 .maxval = 100,
Jens Axboefd28ca42007-01-09 21:20:13 +0100365 .help = "Percentage of mixed workload that is writes",
Jens Axboeee738492007-01-10 11:23:16 +0100366 .def = "50",
Jens Axboee1f36502006-10-27 10:54:08 +0200367 },
368 {
369 .name = "nice",
370 .type = FIO_OPT_INT,
371 .off1 = td_var_offset(nice),
Jens Axboefd28ca42007-01-09 21:20:13 +0100372 .help = "Set job CPU nice value",
Jens Axboe15f79182007-01-10 12:26:18 +0100373 .minval = -19,
Jens Axboeee738492007-01-10 11:23:16 +0100374 .maxval = 20,
375 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200376 },
377#ifdef FIO_HAVE_IOPRIO
378 {
379 .name = "prio",
380 .type = FIO_OPT_INT,
381 .cb = str_prio_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100382 .help = "Set job IO priority value",
Jens Axboe15f79182007-01-10 12:26:18 +0100383 .minval = 0,
384 .maxval = 7,
Jens Axboee1f36502006-10-27 10:54:08 +0200385 },
386 {
387 .name = "prioclass",
388 .type = FIO_OPT_INT,
389 .cb = str_prioclass_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100390 .help = "Set job IO priority class",
Jens Axboe15f79182007-01-10 12:26:18 +0100391 .minval = 0,
392 .maxval = 3,
Jens Axboee1f36502006-10-27 10:54:08 +0200393 },
394#endif
395 {
396 .name = "thinktime",
397 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100398 .off1 = td_var_offset(thinktime),
Jens Axboe5fa0f812007-01-11 14:06:35 +0100399 .help = "Idle time between IO buffers (usec)",
Jens Axboeee738492007-01-10 11:23:16 +0100400 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200401 },
402 {
Jens Axboe48097d52007-02-17 06:30:44 +0100403 .name = "thinktime_spin",
404 .type = FIO_OPT_INT,
405 .off1 = td_var_offset(thinktime_spin),
Jens Axboe34403fb2007-03-02 21:43:25 +0100406 .help = "Start think time by spinning this amount (usec)",
Jens Axboe48097d52007-02-17 06:30:44 +0100407 .def = "0",
408 },
409 {
Jens Axboe9c1f7432007-01-03 20:43:19 +0100410 .name = "thinktime_blocks",
411 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100412 .off1 = td_var_offset(thinktime_blocks),
Jens Axboefd28ca42007-01-09 21:20:13 +0100413 .help = "IO buffer period between 'thinktime'",
Jens Axboeee738492007-01-10 11:23:16 +0100414 .def = "1",
Jens Axboe9c1f7432007-01-03 20:43:19 +0100415 },
416 {
Jens Axboee1f36502006-10-27 10:54:08 +0200417 .name = "rate",
418 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100419 .off1 = td_var_offset(rate),
Jens Axboefd28ca42007-01-09 21:20:13 +0100420 .help = "Set bandwidth rate",
Jens Axboee1f36502006-10-27 10:54:08 +0200421 },
422 {
423 .name = "ratemin",
424 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100425 .off1 = td_var_offset(ratemin),
Jens Axboefd28ca42007-01-09 21:20:13 +0100426 .help = "The bottom limit accepted",
Jens Axboee1f36502006-10-27 10:54:08 +0200427 },
428 {
429 .name = "ratecycle",
430 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100431 .off1 = td_var_offset(ratecycle),
Jens Axboe6da1fa72007-01-10 11:27:48 +0100432 .help = "Window average for rate limits (msec)",
Jens Axboeee738492007-01-10 11:23:16 +0100433 .def = "1000",
Jens Axboee1f36502006-10-27 10:54:08 +0200434 },
435 {
Jens Axboee1f36502006-10-27 10:54:08 +0200436 .name = "invalidate",
Jens Axboe13335dd2007-01-10 13:14:02 +0100437 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100438 .off1 = td_var_offset(invalidate_cache),
Jens Axboefd28ca42007-01-09 21:20:13 +0100439 .help = "Invalidate buffer/page cache prior to running job",
Jens Axboeee738492007-01-10 11:23:16 +0100440 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200441 },
442 {
443 .name = "sync",
Jens Axboe13335dd2007-01-10 13:14:02 +0100444 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100445 .off1 = td_var_offset(sync_io),
Jens Axboefd28ca42007-01-09 21:20:13 +0100446 .help = "Use O_SYNC for buffered writes",
Jens Axboeee738492007-01-10 11:23:16 +0100447 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200448 },
449 {
450 .name = "bwavgtime",
451 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100452 .off1 = td_var_offset(bw_avg_time),
Jens Axboeee738492007-01-10 11:23:16 +0100453 .help = "Time window over which to calculate bandwidth (msec)",
454 .def = "500",
Jens Axboee1f36502006-10-27 10:54:08 +0200455 },
456 {
457 .name = "create_serialize",
Jens Axboe13335dd2007-01-10 13:14:02 +0100458 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100459 .off1 = td_var_offset(create_serialize),
Jens Axboefd28ca42007-01-09 21:20:13 +0100460 .help = "Serialize creating of job files",
Jens Axboeee738492007-01-10 11:23:16 +0100461 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200462 },
463 {
464 .name = "create_fsync",
Jens Axboe13335dd2007-01-10 13:14:02 +0100465 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100466 .off1 = td_var_offset(create_fsync),
Jens Axboefd28ca42007-01-09 21:20:13 +0100467 .help = "Fsync file after creation",
Jens Axboeee738492007-01-10 11:23:16 +0100468 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200469 },
470 {
Jens Axboee1f36502006-10-27 10:54:08 +0200471 .name = "cpuload",
472 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100473 .off1 = td_var_offset(cpuload),
Jens Axboefd28ca42007-01-09 21:20:13 +0100474 .help = "Use this percentage of CPU",
Jens Axboee1f36502006-10-27 10:54:08 +0200475 },
476 {
477 .name = "cpuchunks",
478 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100479 .off1 = td_var_offset(cpucycle),
Jens Axboeba0fbe12007-03-09 14:34:23 +0100480 .help = "Length of the CPU burn cycles (usecs)",
481 .def = "50000",
Jens Axboee1f36502006-10-27 10:54:08 +0200482 },
Jens Axboee1f36502006-10-27 10:54:08 +0200483#ifdef FIO_HAVE_CPU_AFFINITY
484 {
485 .name = "cpumask",
486 .type = FIO_OPT_INT,
487 .cb = str_cpumask_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100488 .help = "CPU affinity mask",
Jens Axboee1f36502006-10-27 10:54:08 +0200489 },
490#endif
491 {
492 .name = "end_fsync",
Jens Axboe13335dd2007-01-10 13:14:02 +0100493 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100494 .off1 = td_var_offset(end_fsync),
Jens Axboefd28ca42007-01-09 21:20:13 +0100495 .help = "Include fsync at the end of job",
Jens Axboeee738492007-01-10 11:23:16 +0100496 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200497 },
498 {
499 .name = "unlink",
Jens Axboe13335dd2007-01-10 13:14:02 +0100500 .type = FIO_OPT_BOOL,
Jens Axboee1f36502006-10-27 10:54:08 +0200501 .off1 = td_var_offset(unlink),
Jens Axboeee738492007-01-10 11:23:16 +0100502 .help = "Unlink created files after job has completed",
Jens Axboee545a6c2007-01-14 00:00:29 +0100503 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200504 },
505 {
506 .name = "exitall",
507 .type = FIO_OPT_STR_SET,
508 .cb = str_exitall_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100509 .help = "Terminate all jobs when one exits",
Jens Axboee1f36502006-10-27 10:54:08 +0200510 },
511 {
512 .name = "stonewall",
513 .type = FIO_OPT_STR_SET,
514 .off1 = td_var_offset(stonewall),
Jens Axboefd28ca42007-01-09 21:20:13 +0100515 .help = "Insert a hard barrier between this job and previous",
Jens Axboee1f36502006-10-27 10:54:08 +0200516 },
517 {
518 .name = "thread",
519 .type = FIO_OPT_STR_SET,
Jens Axboed9bb3b82007-01-10 20:30:53 +0100520 .off1 = td_var_offset(use_thread),
Jens Axboefd28ca42007-01-09 21:20:13 +0100521 .help = "Use threads instead of forks",
Jens Axboee1f36502006-10-27 10:54:08 +0200522 },
523 {
524 .name = "write_bw_log",
525 .type = FIO_OPT_STR_SET,
526 .off1 = td_var_offset(write_bw_log),
Jens Axboefd28ca42007-01-09 21:20:13 +0100527 .help = "Write log of bandwidth during run",
Jens Axboee1f36502006-10-27 10:54:08 +0200528 },
529 {
530 .name = "write_lat_log",
531 .type = FIO_OPT_STR_SET,
532 .off1 = td_var_offset(write_lat_log),
Jens Axboefd28ca42007-01-09 21:20:13 +0100533 .help = "Write log of latency during run",
Jens Axboee1f36502006-10-27 10:54:08 +0200534 },
535 {
Jens Axboe56bb17f2006-12-20 20:27:36 +0100536 .name = "hugepage-size",
537 .type = FIO_OPT_STR_VAL,
538 .off1 = td_var_offset(hugepage_size),
Jens Axboefd28ca42007-01-09 21:20:13 +0100539 .help = "When using hugepages, specify size of each page",
Jens Axboeee738492007-01-10 11:23:16 +0100540 .def = __stringify(FIO_HUGE_PAGE),
Jens Axboe56bb17f2006-12-20 20:27:36 +0100541 },
542 {
Jens Axboeb2560f32007-03-06 12:43:03 +0100543 .name = "group_reporting",
544 .type = FIO_OPT_STR_SET,
545 .off1 = td_var_offset(group_reporting),
546 .help = "Do reporting on a per-group basis",
547 },
548 {
Jens Axboee1f36502006-10-27 10:54:08 +0200549 .name = NULL,
550 },
551};
552
Jens Axboeb4692822006-10-27 13:43:22 +0200553#define FIO_JOB_OPTS (sizeof(options) / sizeof(struct fio_option))
554#define FIO_CMD_OPTS (16)
555#define FIO_GETOPT_JOB (0x89988998)
556
557/*
558 * Command line options. These will contain the above, plus a few
559 * extra that only pertain to fio itself and not jobs.
560 */
561static struct option long_options[FIO_JOB_OPTS + FIO_CMD_OPTS] = {
562 {
563 .name = "output",
564 .has_arg = required_argument,
565 .val = 'o',
566 },
567 {
568 .name = "timeout",
569 .has_arg = required_argument,
570 .val = 't',
571 },
572 {
573 .name = "latency-log",
574 .has_arg = required_argument,
575 .val = 'l',
576 },
577 {
578 .name = "bandwidth-log",
579 .has_arg = required_argument,
580 .val = 'b',
581 },
582 {
583 .name = "minimal",
584 .has_arg = optional_argument,
585 .val = 'm',
586 },
587 {
588 .name = "version",
589 .has_arg = no_argument,
590 .val = 'v',
591 },
592 {
Jens Axboefd28ca42007-01-09 21:20:13 +0100593 .name = "help",
594 .has_arg = no_argument,
595 .val = 'h',
596 },
597 {
598 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +0100599 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +0100600 .val = 'c',
601 },
602 {
Jens Axboeb4692822006-10-27 13:43:22 +0200603 .name = NULL,
604 },
605};
606
Jens Axboeee738492007-01-10 11:23:16 +0100607static int def_timeout = 0;
Jens Axboe972cfd22006-06-09 11:08:56 +0200608
Jens Axboefdf3de22007-03-03 12:21:34 +0100609static char fio_version_string[] = "fio 1.13";
Jens Axboeebac4652005-12-08 15:25:21 +0100610
Jens Axboe972cfd22006-06-09 11:08:56 +0200611static char **ini_file;
Jens Axboeebac4652005-12-08 15:25:21 +0100612static int max_jobs = MAX_JOBS;
613
614struct thread_data def_thread;
615struct thread_data *threads = NULL;
616
Jens Axboeebac4652005-12-08 15:25:21 +0100617int exitall_on_terminate = 0;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200618int terse_output = 0;
Jens Axboec04f7ec2006-05-31 10:13:16 +0200619unsigned long long mlock_size = 0;
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200620FILE *f_out = NULL;
621FILE *f_err = NULL;
Jens Axboeebac4652005-12-08 15:25:21 +0100622
Jens Axboeee738492007-01-10 11:23:16 +0100623static int write_lat_log = 0;
Jens Axboebb3884d2007-01-17 17:23:11 +1100624int write_bw_log = 0;
Jens Axboeec94ec52006-10-20 10:59:19 +0200625
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100626static int prev_group_jobs;
627
Joel Becker9728ce32007-03-01 08:24:39 +0100628FILE *get_f_out()
629{
630 return f_out;
631}
632
633FILE *get_f_err()
634{
635 return f_err;
636}
637
Jens Axboe906c8d72006-06-13 09:37:56 +0200638/*
639 * Return a free job structure.
640 */
Jens Axboeebac4652005-12-08 15:25:21 +0100641static struct thread_data *get_new_job(int global, struct thread_data *parent)
642{
643 struct thread_data *td;
644
645 if (global)
646 return &def_thread;
647 if (thread_number >= max_jobs)
648 return NULL;
649
650 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200651 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100652
Jens Axboeebac4652005-12-08 15:25:21 +0100653 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100654 return td;
655}
656
657static void put_job(struct thread_data *td)
658{
Jens Axboe549577a2006-10-30 12:23:41 +0100659 if (td == &def_thread)
660 return;
661
Jens Axboe16edf252007-02-10 14:59:22 +0100662 if (td->error)
663 fprintf(f_out, "fio: %s\n", td->verror);
664
Jens Axboeebac4652005-12-08 15:25:21 +0100665 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
666 thread_number--;
667}
668
Jens Axboedad915e2006-10-27 11:10:18 +0200669/*
670 * Lazy way of fixing up options that depend on each other. We could also
671 * define option callback handlers, but this is easier.
672 */
Jens Axboee1f36502006-10-27 10:54:08 +0200673static void fixup_options(struct thread_data *td)
674{
Jens Axboee1f36502006-10-27 10:54:08 +0200675 if (!td->rwmixread && td->rwmixwrite)
676 td->rwmixread = 100 - td->rwmixwrite;
Jens Axboedad915e2006-10-27 11:10:18 +0200677
Jens Axboe076efc72006-10-27 11:24:25 +0200678 if (td->write_iolog_file && td->read_iolog_file) {
679 log_err("fio: read iolog overrides write_iolog\n");
680 free(td->write_iolog_file);
681 td->write_iolog_file = NULL;
682 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100683
684 if (td->io_ops->flags & FIO_SYNCIO)
685 td->iodepth = 1;
686 else {
687 if (!td->iodepth)
Jens Axboeb5af8292007-03-08 12:43:13 +0100688 td->iodepth = td->open_files;
Jens Axboe16b462a2006-10-30 12:35:18 +0100689 }
690
691 /*
692 * only really works for sequential io for now, and with 1 file
693 */
Jens Axboeb5af8292007-03-08 12:43:13 +0100694 if (td->zone_size && td_random(td) && td->open_files == 1)
Jens Axboe16b462a2006-10-30 12:35:18 +0100695 td->zone_size = 0;
696
697 /*
698 * Reads can do overwrites, we always need to pre-create the file
699 */
700 if (td_read(td) || td_rw(td))
701 td->overwrite = 1;
702
Jens Axboea00735e2006-11-03 08:58:08 +0100703 if (!td->min_bs[DDIR_READ])
704 td->min_bs[DDIR_READ]= td->bs[DDIR_READ];
705 if (!td->max_bs[DDIR_READ])
706 td->max_bs[DDIR_READ] = td->bs[DDIR_READ];
707 if (!td->min_bs[DDIR_WRITE])
Jens Axboe75e6f362006-11-03 08:17:09 +0100708 td->min_bs[DDIR_WRITE]= td->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100709 if (!td->max_bs[DDIR_WRITE])
Jens Axboe75e6f362006-11-03 08:17:09 +0100710 td->max_bs[DDIR_WRITE] = td->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100711
712 td->rw_min_bs = min(td->min_bs[DDIR_READ], td->min_bs[DDIR_WRITE]);
713
Jens Axboe16b462a2006-10-30 12:35:18 +0100714 if (td_read(td) && !td_rw(td))
715 td->verify = 0;
Jens Axboebb8895e2006-10-30 15:14:48 +0100716
717 if (td->norandommap && td->verify != VERIFY_NONE) {
718 log_err("fio: norandommap given, verify disabled\n");
719 td->verify = VERIFY_NONE;
720 }
Jens Axboe690adba2006-10-30 15:25:09 +0100721 if (td->bs_unaligned && (td->odirect || td->io_ops->flags & FIO_RAWIO))
722 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100723
724 /*
725 * O_DIRECT and char doesn't mix, clear that flag if necessary.
726 */
727 if (td->filetype == FIO_TYPE_CHAR && td->odirect)
728 td->odirect = 0;
Jens Axboe48097d52007-02-17 06:30:44 +0100729
730 /*
731 * thinktime_spin must be less than thinktime
732 */
733 if (td->thinktime_spin > td->thinktime)
734 td->thinktime_spin = td->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100735
736 /*
737 * The low water mark cannot be bigger than the iodepth
738 */
Jens Axboe9467b772007-02-27 19:56:43 +0100739 if (td->iodepth_low > td->iodepth || !td->iodepth_low) {
740 /*
741 * syslet work around - if the workload is sequential,
742 * we want to let the queue drain all the way down to
743 * avoid seeking between async threads
744 */
745 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
746 td->iodepth_low = 1;
747 else
748 td->iodepth_low = td->iodepth;
749 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100750
751 /*
752 * If batch number isn't set, default to the same as iodepth
753 */
754 if (td->iodepth_batch > td->iodepth || !td->iodepth_batch)
755 td->iodepth_batch = td->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100756
757 if (td->open_files > td->nr_files || !td->open_files)
758 td->open_files = td->nr_files;
Jens Axboee1f36502006-10-27 10:54:08 +0200759}
760
Jens Axboe906c8d72006-06-13 09:37:56 +0200761/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100762 * This function leaks the buffer
763 */
764static char *to_kmg(unsigned int val)
765{
766 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100767 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100768 char *p = post;
769
Jens Axboe245142f2006-11-08 12:49:21 +0100770 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100771 if (val & 1023)
772 break;
773
774 val >>= 10;
775 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100776 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100777
778 snprintf(buf, 31, "%u%c", val, *p);
779 return buf;
780}
781
Jens Axboe09629a92007-03-09 09:00:06 +0100782/* External engines are specified by "external:name.o") */
783static const char *get_engine_name(const char *str)
784{
785 char *p = strstr(str, ":");
786
787 if (!p)
788 return str;
789
790 p++;
791 strip_blank_front(&p);
792 strip_blank_end(p);
793 return p;
794}
795
Jens Axboef8977ee2006-11-06 14:03:03 +0100796/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200797 * Adds a job to the list of things todo. Sanitizes the various options
798 * to make sure we don't have conflicts, and initializes various
799 * members of td.
800 */
Jens Axboe75154842006-06-01 13:56:09 +0200801static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100802{
Jens Axboe413dd452007-02-23 09:26:09 +0100803 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
804 "randread", "randwrite", "randrw" };
Jens Axboeebac4652005-12-08 15:25:21 +0100805 struct stat sb;
Jens Axboe413dd452007-02-23 09:26:09 +0100806 int numjobs, i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200807 struct fio_file *f;
Jens Axboe09629a92007-03-09 09:00:06 +0100808 const char *engine;
Jens Axboe01ef57c2007-03-12 12:40:26 +0100809 int fn_given;
Jens Axboeebac4652005-12-08 15:25:21 +0100810
Jens Axboeebac4652005-12-08 15:25:21 +0100811 /*
812 * the def_thread is just for options, it's not a real job
813 */
814 if (td == &def_thread)
815 return 0;
816
Jens Axboe09629a92007-03-09 09:00:06 +0100817 engine = get_engine_name(td->ioengine);
818 td->io_ops = load_ioengine(td, engine);
819 if (!td->io_ops) {
820 log_err("fio: failed to load engine %s\n", engine);
821 return 1;
822 }
Jens Axboedf641192006-10-12 07:55:41 +0200823
Jens Axboe9cedf162007-03-12 11:29:30 +0100824 if (td->use_thread)
825 nr_thread++;
826 else
827 nr_process++;
828
Jens Axboe690adba2006-10-30 15:25:09 +0100829 if (td->odirect)
830 td->io_ops->flags |= FIO_RAWIO;
831
Jens Axboe9f8eb802007-03-12 13:22:05 +0100832 fn_given = (long) td->filename;
Jens Axboe80be24f2007-03-12 11:01:25 +0100833 if (!td->filename)
834 td->filename = strdup(jobname);
835
Jens Axboeebac4652005-12-08 15:25:21 +0100836 td->filetype = FIO_TYPE_FILE;
Jens Axboe80be24f2007-03-12 11:01:25 +0100837 if (!lstat(td->filename, &sb)) {
Jens Axboe0af7b542006-02-17 10:10:12 +0100838 if (S_ISBLK(sb.st_mode))
839 td->filetype = FIO_TYPE_BD;
840 else if (S_ISCHR(sb.st_mode))
841 td->filetype = FIO_TYPE_CHAR;
842 }
Jens Axboeebac4652005-12-08 15:25:21 +0100843
Jens Axboee0a22332006-12-20 12:54:25 +0100844 fixup_options(td);
845
Jens Axboe5be84f22007-03-12 12:42:21 +0100846 if (fn_given)
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200847 td->nr_uniq_files = 1;
848 else
Jens Axboe0f14fef2007-03-08 13:08:24 +0100849 td->nr_uniq_files = td->open_files;
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200850
Jens Axboe01ef57c2007-03-12 12:40:26 +0100851 if (td->filetype == FIO_TYPE_FILE) {
Jens Axboee9c047a2006-06-07 21:13:04 +0200852 char tmp[PATH_MAX];
Jens Axboe53cdc682006-10-18 11:50:58 +0200853 int len = 0;
Jens Axboee9c047a2006-06-07 21:13:04 +0200854
Jens Axboe16edf252007-02-10 14:59:22 +0100855 if (td->directory && td->directory[0] != '\0') {
856 if (lstat(td->directory, &sb) < 0) {
857 log_err("fio: %s is not a directory\n", td->directory);
Jens Axboee1161c32007-02-22 19:36:48 +0100858 td_verror(td, errno, "lstat");
Jens Axboe16edf252007-02-10 14:59:22 +0100859 return 1;
860 }
861 if (!S_ISDIR(sb.st_mode)) {
862 log_err("fio: %s is not a directory\n", td->directory);
863 return 1;
864 }
Jens Axboe8aeebd52007-01-08 10:47:43 +0100865 len = sprintf(tmp, "%s/", td->directory);
Jens Axboe16edf252007-02-10 14:59:22 +0100866 }
Jens Axboeebac4652005-12-08 15:25:21 +0100867
Jens Axboeb5af8292007-03-08 12:43:13 +0100868 td->files = malloc(sizeof(struct fio_file) * td->open_files);
Jens Axboe53cdc682006-10-18 11:50:58 +0200869
870 for_each_file(td, f, i) {
871 memset(f, 0, sizeof(*f));
872 f->fd = -1;
873
Jens Axboe01ef57c2007-03-12 12:40:26 +0100874 if (fn_given)
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200875 sprintf(tmp + len, "%s", td->filename);
876 else
Jens Axboe01ef57c2007-03-12 12:40:26 +0100877 sprintf(tmp + len, "%s.%d.%d", td->filename, td->thread_number, i);
Jens Axboe53cdc682006-10-18 11:50:58 +0200878 f->file_name = strdup(tmp);
879 }
880 } else {
Jens Axboeb5af8292007-03-08 12:43:13 +0100881 td->open_files = td->nr_files = 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200882 td->files = malloc(sizeof(struct fio_file));
883 f = &td->files[0];
884
885 memset(f, 0, sizeof(*f));
886 f->fd = -1;
887 f->file_name = strdup(jobname);
888 }
889
890 for_each_file(td, f, i) {
891 f->file_size = td->total_file_size / td->nr_files;
892 f->file_offset = td->start_offset;
893 }
894
Jens Axboe07739b52007-03-08 20:25:46 +0100895 td->mutex = fio_sem_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100896
Jens Axboe756867b2007-03-06 15:19:24 +0100897 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
898 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
899 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboeebac4652005-12-08 15:25:21 +0100900
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100901 if ((td->stonewall || td->numjobs > 1) && prev_group_jobs) {
902 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100903 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100904 }
Jens Axboeebac4652005-12-08 15:25:21 +0100905
906 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100907 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100908
909 if (setup_rate(td))
910 goto err;
911
Jens Axboeec94ec52006-10-20 10:59:19 +0200912 if (td->write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100913 setup_log(&td->ts.slat_log);
914 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100915 }
Jens Axboeec94ec52006-10-20 10:59:19 +0200916 if (td->write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100917 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100918
Jens Axboeb4692822006-10-27 13:43:22 +0200919 if (!td->name)
920 td->name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200921
Jens Axboec6ae0a52006-06-12 11:04:44 +0200922 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200923 if (!job_add_num) {
Jens Axboeba0fbe12007-03-09 14:34:23 +0100924 if (!strcmp(td->io_ops->name, "cpuio"))
Jens Axboeb990b5c2006-09-14 09:48:22 +0200925 fprintf(f_out, "%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->name, td->cpuload, td->cpucycle);
Jens Axboef8977ee2006-11-06 14:03:03 +0100926 else {
927 char *c1, *c2, *c3, *c4;
928
929 c1 = to_kmg(td->min_bs[DDIR_READ]);
930 c2 = to_kmg(td->max_bs[DDIR_READ]);
931 c3 = to_kmg(td->min_bs[DDIR_WRITE]);
932 c4 = to_kmg(td->max_bs[DDIR_WRITE]);
933
Jens Axboe413dd452007-02-23 09:26:09 +0100934 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 +0100935
936 free(c1);
937 free(c2);
938 free(c3);
939 free(c4);
940 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200941 } else if (job_add_num == 1)
Jens Axboec6ae0a52006-06-12 11:04:44 +0200942 fprintf(f_out, "...\n");
943 }
Jens Axboeebac4652005-12-08 15:25:21 +0100944
945 /*
946 * recurse add identical jobs, clear numjobs and stonewall options
947 * as they don't apply to sub-jobs
948 */
949 numjobs = td->numjobs;
950 while (--numjobs) {
951 struct thread_data *td_new = get_new_job(0, td);
952
953 if (!td_new)
954 goto err;
955
956 td_new->numjobs = 1;
957 td_new->stonewall = 0;
Jens Axboe75154842006-06-01 13:56:09 +0200958 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100959
Jens Axboe75154842006-06-01 13:56:09 +0200960 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100961 goto err;
962 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100963
964 if (td->numjobs > 1) {
965 groupid++;
966 prev_group_jobs = 0;
967 }
968
Jens Axboeebac4652005-12-08 15:25:21 +0100969 return 0;
970err:
971 put_job(td);
972 return -1;
973}
974
Jens Axboe906c8d72006-06-13 09:37:56 +0200975/*
976 * Initialize the various random states we need (random io, block size ranges,
977 * read/write mix, etc).
978 */
Jens Axboeebac4652005-12-08 15:25:21 +0100979int init_random_state(struct thread_data *td)
980{
Jens Axboe0aabe162007-02-23 08:45:55 +0100981 unsigned long seeds[5];
Jens Axboe53cdc682006-10-18 11:50:58 +0200982 int fd, num_maps, blocks, i;
Jens Axboe0ab8db82006-10-18 17:16:23 +0200983 struct fio_file *f;
Jens Axboeebac4652005-12-08 15:25:21 +0100984
Jens Axboeba0fbe12007-03-09 14:34:23 +0100985 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200986 return 0;
987
Jens Axboe1ac267b2006-05-31 20:29:00 +0200988 fd = open("/dev/urandom", O_RDONLY);
Jens Axboeebac4652005-12-08 15:25:21 +0100989 if (fd == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100990 td_verror(td, errno, "open");
Jens Axboeebac4652005-12-08 15:25:21 +0100991 return 1;
992 }
993
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200994 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
Jens Axboee1161c32007-02-22 19:36:48 +0100995 td_verror(td, EIO, "read");
Jens Axboeebac4652005-12-08 15:25:21 +0100996 close(fd);
997 return 1;
998 }
999
1000 close(fd);
1001
Jens Axboe6dfd46b2006-06-07 13:57:06 +02001002 os_random_seed(seeds[0], &td->bsrange_state);
1003 os_random_seed(seeds[1], &td->verify_state);
1004 os_random_seed(seeds[2], &td->rwmix_state);
Jens Axboeebac4652005-12-08 15:25:21 +01001005
Jens Axboe413dd452007-02-23 09:26:09 +01001006 if (td->file_service_type == FIO_FSERVICE_RANDOM)
1007 os_random_seed(seeds[3], &td->next_file_state);
1008
1009 if (!td_random(td))
Jens Axboeebac4652005-12-08 15:25:21 +01001010 return 0;
1011
Jens Axboe9ebc27e2006-06-12 10:21:50 +02001012 if (td->rand_repeatable)
Jens Axboe0aabe162007-02-23 08:45:55 +01001013 seeds[4] = FIO_RANDSEED * td->thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +01001014
Jens Axboebb8895e2006-10-30 15:14:48 +01001015 if (!td->norandommap) {
1016 for_each_file(td, f, i) {
Jens Axboea4a81712007-02-13 20:07:26 +01001017 blocks = (f->real_file_size + td->rw_min_bs - 1) / td->rw_min_bs;
Jens Axboec7c280e2006-11-02 20:10:33 +01001018 num_maps = (blocks + BLOCKS_PER_MAP-1)/ BLOCKS_PER_MAP;
Jens Axboebb8895e2006-10-30 15:14:48 +01001019 f->file_map = malloc(num_maps * sizeof(long));
Jens Axboebda4fd92007-03-12 11:21:48 +01001020 if (!f->file_map) {
1021 log_err("fio: failed allocating random map. If running a large number of jobs, try the 'norandommap' option\n");
1022 return 1;
1023 }
Jens Axboebb8895e2006-10-30 15:14:48 +01001024 f->num_maps = num_maps;
1025 memset(f->file_map, 0, num_maps * sizeof(long));
1026 }
Jens Axboe53cdc682006-10-18 11:50:58 +02001027 }
Jens Axboeebac4652005-12-08 15:25:21 +01001028
Jens Axboe0aabe162007-02-23 08:45:55 +01001029 os_random_seed(seeds[4], &td->random_state);
Jens Axboeebac4652005-12-08 15:25:21 +01001030 return 0;
1031}
1032
1033static void fill_cpu_mask(os_cpu_mask_t cpumask, int cpu)
1034{
1035#ifdef FIO_HAVE_CPU_AFFINITY
1036 unsigned int i;
1037
1038 CPU_ZERO(&cpumask);
1039
1040 for (i = 0; i < sizeof(int) * 8; i++) {
1041 if ((1 << i) & cpu)
1042 CPU_SET(i, &cpumask);
1043 }
1044#endif
1045}
1046
Jens Axboeebac4652005-12-08 15:25:21 +01001047static int is_empty_or_comment(char *line)
1048{
1049 unsigned int i;
1050
1051 for (i = 0; i < strlen(line); i++) {
1052 if (line[i] == ';')
1053 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +01001054 if (line[i] == '#')
1055 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +01001056 if (!isspace(line[i]) && !iscntrl(line[i]))
1057 return 0;
1058 }
1059
1060 return 1;
1061}
1062
Jens Axboe313cb202006-12-21 09:50:00 +01001063/*
1064 * Check if mmap/mmaphuge has a :/foo/bar/file at the end. If so, return that.
1065 */
Jens Axboe1907dbc2007-03-12 11:44:28 +01001066static char *get_opt_postfix(const char *str)
Jens Axboe313cb202006-12-21 09:50:00 +01001067{
1068 char *p = strstr(str, ":");
1069
1070 if (!p)
1071 return NULL;
1072
1073 p++;
1074 strip_blank_front(&p);
1075 strip_blank_end(p);
1076 return strdup(p);
1077}
1078
Jens Axboeb4692822006-10-27 13:43:22 +02001079static int str_mem_cb(void *data, const char *mem)
Jens Axboeebac4652005-12-08 15:25:21 +01001080{
Jens Axboecb2c86f2006-10-26 13:48:34 +02001081 struct thread_data *td = data;
1082
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001083 if (td->mem_type == MEM_MMAPHUGE || td->mem_type == MEM_MMAP) {
Jens Axboe1907dbc2007-03-12 11:44:28 +01001084 td->mmapfile = get_opt_postfix(mem);
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001085 if (td->mem_type == MEM_MMAPHUGE && !td->mmapfile) {
Jens Axboed0bdaf42006-12-20 14:40:44 +01001086 log_err("fio: mmaphuge:/path/to/file\n");
1087 return 1;
1088 }
Jens Axboeebac4652005-12-08 15:25:21 +01001089 }
1090
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001091 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001092}
1093
Jens Axboee1f36502006-10-27 10:54:08 +02001094static int str_lockmem_cb(void fio_unused *data, unsigned long *val)
1095{
1096 mlock_size = *val;
1097 return 0;
1098}
1099
Jens Axboe34cfcda2006-11-03 14:00:45 +01001100#ifdef FIO_HAVE_IOPRIO
Jens Axboee1f36502006-10-27 10:54:08 +02001101static int str_prioclass_cb(void *data, unsigned int *val)
1102{
1103 struct thread_data *td = data;
1104
1105 td->ioprio |= *val << IOPRIO_CLASS_SHIFT;
1106 return 0;
1107}
1108
1109static int str_prio_cb(void *data, unsigned int *val)
1110{
1111 struct thread_data *td = data;
1112
1113 td->ioprio |= *val;
1114 return 0;
1115}
Jens Axboe34cfcda2006-11-03 14:00:45 +01001116#endif
Jens Axboee1f36502006-10-27 10:54:08 +02001117
1118static int str_exitall_cb(void)
1119{
1120 exitall_on_terminate = 1;
1121 return 0;
1122}
1123
1124static int str_cpumask_cb(void *data, unsigned int *val)
1125{
1126 struct thread_data *td = data;
1127
1128 fill_cpu_mask(td->cpumask, *val);
1129 return 0;
1130}
1131
Jens Axboe1907dbc2007-03-12 11:44:28 +01001132static int str_fst_cb(void *data, const char *str)
1133{
1134 struct thread_data *td = data;
1135 char *nr = get_opt_postfix(str);
1136
1137 td->file_service_nr = 1;
1138 if (nr)
1139 td->file_service_nr = atoi(nr);
1140
1141 return 0;
1142}
1143
Jens Axboe07261982006-06-07 10:51:12 +02001144/*
1145 * This is our [ini] type file parser.
1146 */
Jens Axboe1e97cce2006-12-05 11:44:16 +01001147static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +01001148{
Jens Axboee1f36502006-10-27 10:54:08 +02001149 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +01001150 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +01001151 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +01001152 fpos_t off;
1153 FILE *f;
1154 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001155 int ret = 0, stonewall;
Jens Axboeebac4652005-12-08 15:25:21 +01001156
1157 f = fopen(file, "r");
1158 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +02001159 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +01001160 return 1;
1161 }
1162
1163 string = malloc(4096);
1164 name = malloc(256);
Jens Axboefee3bb42006-10-30 13:32:08 +01001165 memset(name, 0, 256);
Jens Axboeebac4652005-12-08 15:25:21 +01001166
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001167 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001168 do {
1169 p = fgets(string, 4095, f);
1170 if (!p)
Jens Axboe45410ac2006-06-07 11:10:39 +02001171 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001172 if (is_empty_or_comment(p))
1173 continue;
Jens Axboefee3bb42006-10-30 13:32:08 +01001174 if (sscanf(p, "[%255s]", name) != 1)
Jens Axboeebac4652005-12-08 15:25:21 +01001175 continue;
1176
1177 global = !strncmp(name, "global", 6);
1178
1179 name[strlen(name) - 1] = '\0';
1180
1181 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +02001182 if (!td) {
1183 ret = 1;
1184 break;
1185 }
Jens Axboeebac4652005-12-08 15:25:21 +01001186
Jens Axboe972cfd22006-06-09 11:08:56 +02001187 /*
1188 * Seperate multiple job files by a stonewall
1189 */
Jens Axboef9481912006-06-09 11:37:28 +02001190 if (!global && stonewall) {
Jens Axboe972cfd22006-06-09 11:08:56 +02001191 td->stonewall = stonewall;
1192 stonewall = 0;
1193 }
1194
Jens Axboeebac4652005-12-08 15:25:21 +01001195 fgetpos(f, &off);
1196 while ((p = fgets(string, 4096, f)) != NULL) {
1197 if (is_empty_or_comment(p))
1198 continue;
Jens Axboee1f36502006-10-27 10:54:08 +02001199
Jens Axboeb6754f92006-05-30 14:29:32 +02001200 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +01001201
1202 if (p[0] == '[')
1203 break;
1204
Jens Axboe4ae3f762006-05-30 13:35:14 +02001205 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +02001206
Jens Axboee1f36502006-10-27 10:54:08 +02001207 fgetpos(f, &off);
Jens Axboeebac4652005-12-08 15:25:21 +01001208
Jens Axboe45410ac2006-06-07 11:10:39 +02001209 /*
1210 * Don't break here, continue parsing options so we
1211 * dump all the bad ones. Makes trial/error fixups
1212 * easier on the user.
1213 */
Jens Axboe7c124ac2006-10-30 13:36:52 +01001214 ret |= parse_option(p, options, td);
Jens Axboeebac4652005-12-08 15:25:21 +01001215 }
Jens Axboeebac4652005-12-08 15:25:21 +01001216
Jens Axboe45410ac2006-06-07 11:10:39 +02001217 if (!ret) {
1218 fsetpos(f, &off);
1219 ret = add_job(td, name, 0);
Jens Axboeb1508cf2006-11-02 09:12:40 +01001220 } else {
1221 log_err("fio: job %s dropped\n", name);
1222 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +02001223 }
Jens Axboe7c124ac2006-10-30 13:36:52 +01001224 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001225
1226 free(string);
1227 free(name);
1228 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +02001229 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001230}
1231
1232static int fill_def_thread(void)
1233{
1234 memset(&def_thread, 0, sizeof(def_thread));
1235
1236 if (fio_getaffinity(getpid(), &def_thread.cpumask) == -1) {
1237 perror("sched_getaffinity");
1238 return 1;
1239 }
1240
1241 /*
Jens Axboeee738492007-01-10 11:23:16 +01001242 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +01001243 */
Jens Axboeee738492007-01-10 11:23:16 +01001244 fill_default_options(&def_thread, options);
1245
Jens Axboe972cfd22006-06-09 11:08:56 +02001246 def_thread.timeout = def_timeout;
Jens Axboeec94ec52006-10-20 10:59:19 +02001247 def_thread.write_bw_log = write_bw_log;
1248 def_thread.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +01001249
Jens Axboeebac4652005-12-08 15:25:21 +01001250#ifdef FIO_HAVE_DISK_UTIL
1251 def_thread.do_disk_util = 1;
1252#endif
1253
1254 return 0;
1255}
1256
Jens Axboe0ab8db82006-10-18 17:16:23 +02001257static void usage(void)
Jens Axboe4785f992006-05-26 03:59:10 +02001258{
1259 printf("%s\n", fio_version_string);
Jens Axboeb4692822006-10-27 13:43:22 +02001260 printf("\t--output\tWrite output to file\n");
1261 printf("\t--timeout\tRuntime in seconds\n");
1262 printf("\t--latency-log\tGenerate per-job latency logs\n");
1263 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
1264 printf("\t--minimal\tMinimal (terse) output\n");
1265 printf("\t--version\tPrint version info and exit\n");
Jens Axboefd28ca42007-01-09 21:20:13 +01001266 printf("\t--help\t\tPrint this page\n");
1267 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
Jens Axboe4785f992006-05-26 03:59:10 +02001268}
1269
Jens Axboe972cfd22006-06-09 11:08:56 +02001270static int parse_cmd_line(int argc, char *argv[])
Jens Axboeebac4652005-12-08 15:25:21 +01001271{
Jens Axboeb4692822006-10-27 13:43:22 +02001272 struct thread_data *td = NULL;
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001273 int c, ini_idx = 0, lidx, ret, dont_add_job = 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001274
Jens Axboe0be06ea2007-03-01 14:23:28 +01001275 while ((c = getopt_long_only(argc, argv, "", long_options, &lidx)) != -1) {
Jens Axboeebac4652005-12-08 15:25:21 +01001276 switch (c) {
Jens Axboeb4692822006-10-27 13:43:22 +02001277 case 't':
1278 def_timeout = atoi(optarg);
1279 break;
1280 case 'l':
1281 write_lat_log = 1;
1282 break;
1283 case 'w':
1284 write_bw_log = 1;
1285 break;
1286 case 'o':
1287 f_out = fopen(optarg, "w+");
1288 if (!f_out) {
1289 perror("fopen output");
1290 exit(1);
1291 }
1292 f_err = f_out;
1293 break;
1294 case 'm':
1295 terse_output = 1;
1296 break;
1297 case 'h':
1298 usage();
1299 exit(0);
Jens Axboefd28ca42007-01-09 21:20:13 +01001300 case 'c':
Jens Axboe29fc6af2007-01-09 21:22:02 +01001301 ret = show_cmd_help(options, optarg);
1302 exit(ret);
Jens Axboeb4692822006-10-27 13:43:22 +02001303 case 'v':
1304 printf("%s\n", fio_version_string);
1305 exit(0);
1306 case FIO_GETOPT_JOB: {
1307 const char *opt = long_options[lidx].name;
1308 char *val = optarg;
1309
Jens Axboec2b1e752006-10-30 09:03:13 +01001310 if (!strncmp(opt, "name", 4) && td) {
1311 ret = add_job(td, td->name ?: "fio", 0);
1312 if (ret) {
1313 put_job(td);
1314 return 0;
1315 }
1316 td = NULL;
1317 }
Jens Axboeb4692822006-10-27 13:43:22 +02001318 if (!td) {
Jens Axboe38d0adb2006-10-30 12:21:25 +01001319 int global = !strncmp(val, "global", 6);
Jens Axboec2b1e752006-10-30 09:03:13 +01001320
1321 td = get_new_job(global, &def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001322 if (!td)
1323 return 0;
1324 }
Jens Axboe38d0adb2006-10-30 12:21:25 +01001325
Jens Axboeb1508cf2006-11-02 09:12:40 +01001326 ret = parse_cmd_option(opt, val, options, td);
Jens Axboe78217df2007-02-23 11:18:30 +01001327 if (ret)
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001328 dont_add_job = 1;
Jens Axboeb4692822006-10-27 13:43:22 +02001329 break;
1330 }
1331 default:
Jens Axboeb4692822006-10-27 13:43:22 +02001332 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001333 }
1334 }
Jens Axboec9fad892006-05-27 17:26:50 +02001335
Jens Axboeb4692822006-10-27 13:43:22 +02001336 if (td) {
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001337 if (dont_add_job)
Jens Axboeb4692822006-10-27 13:43:22 +02001338 put_job(td);
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001339 else {
1340 ret = add_job(td, td->name ?: "fio", 0);
1341 if (ret)
1342 put_job(td);
1343 }
Jens Axboe972cfd22006-06-09 11:08:56 +02001344 }
Jens Axboe774a6172006-08-24 08:44:26 +02001345
Jens Axboeb4692822006-10-27 13:43:22 +02001346 while (optind < argc) {
1347 ini_idx++;
1348 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1349 ini_file[ini_idx - 1] = strdup(argv[optind]);
1350 optind++;
Jens Axboeeb8bbf42006-06-08 21:40:11 +02001351 }
Jens Axboe972cfd22006-06-09 11:08:56 +02001352
1353 return ini_idx;
Jens Axboeebac4652005-12-08 15:25:21 +01001354}
1355
1356static void free_shm(void)
1357{
1358 struct shmid_ds sbuf;
1359
1360 if (threads) {
Jens Axboe2c0ecd22006-06-08 13:25:41 +02001361 shmdt((void *) threads);
Jens Axboeebac4652005-12-08 15:25:21 +01001362 threads = NULL;
1363 shmctl(shm_id, IPC_RMID, &sbuf);
1364 }
1365}
1366
Jens Axboe906c8d72006-06-13 09:37:56 +02001367/*
1368 * The thread area is shared between the main process and the job
1369 * threads/processes. So setup a shared memory segment that will hold
1370 * all the job info.
1371 */
Jens Axboeebac4652005-12-08 15:25:21 +01001372static int setup_thread_area(void)
1373{
1374 /*
1375 * 1024 is too much on some machines, scale max_jobs if
1376 * we get a failure that looks like too large a shm segment
1377 */
1378 do {
Jens Axboe906c8d72006-06-13 09:37:56 +02001379 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +01001380
Jens Axboe906c8d72006-06-13 09:37:56 +02001381 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +01001382 if (shm_id != -1)
1383 break;
1384 if (errno != EINVAL) {
1385 perror("shmget");
1386 break;
1387 }
1388
1389 max_jobs >>= 1;
1390 } while (max_jobs);
1391
1392 if (shm_id == -1)
1393 return 1;
1394
1395 threads = shmat(shm_id, NULL, 0);
1396 if (threads == (void *) -1) {
1397 perror("shmat");
1398 return 1;
1399 }
1400
1401 atexit(free_shm);
1402 return 0;
1403}
1404
Jens Axboeb4692822006-10-27 13:43:22 +02001405/*
1406 * Copy the fio options into the long options map, so we mirror
1407 * job and cmd line options.
1408 */
1409static void dupe_job_options(void)
1410{
1411 struct fio_option *o;
1412 unsigned int i;
1413
1414 i = 0;
1415 while (long_options[i].name)
1416 i++;
1417
1418 o = &options[0];
1419 while (o->name) {
1420 long_options[i].name = o->name;
1421 long_options[i].val = FIO_GETOPT_JOB;
1422 if (o->type == FIO_OPT_STR_SET)
1423 long_options[i].has_arg = no_argument;
1424 else
1425 long_options[i].has_arg = required_argument;
1426
1427 i++;
1428 o++;
1429 assert(i < FIO_JOB_OPTS + FIO_CMD_OPTS);
1430 }
1431}
1432
Jens Axboeebac4652005-12-08 15:25:21 +01001433int parse_options(int argc, char *argv[])
1434{
Jens Axboe972cfd22006-06-09 11:08:56 +02001435 int job_files, i;
1436
Jens Axboeb4692822006-10-27 13:43:22 +02001437 f_out = stdout;
1438 f_err = stderr;
1439
Jens Axboe13335dd2007-01-10 13:14:02 +01001440 options_init(options);
1441
Jens Axboeb4692822006-10-27 13:43:22 +02001442 dupe_job_options();
1443
Jens Axboeebac4652005-12-08 15:25:21 +01001444 if (setup_thread_area())
1445 return 1;
1446 if (fill_def_thread())
1447 return 1;
1448
Jens Axboe972cfd22006-06-09 11:08:56 +02001449 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001450
Jens Axboe972cfd22006-06-09 11:08:56 +02001451 for (i = 0; i < job_files; i++) {
1452 if (fill_def_thread())
1453 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001454 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001455 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001456 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001457 }
Jens Axboeebac4652005-12-08 15:25:21 +01001458
Jens Axboe88c6ed82006-06-09 11:28:10 +02001459 free(ini_file);
Jens Axboeb4692822006-10-27 13:43:22 +02001460
1461 if (!thread_number) {
1462 log_err("No jobs defined(s)\n");
Jens Axboeb4692822006-10-27 13:43:22 +02001463 return 1;
1464 }
1465
Jens Axboeebac4652005-12-08 15:25:21 +01001466 return 0;
1467}