blob: ee0f36fdee54b2e6e2838df4d9d02eeab70f642b [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 Axboeaf52b342007-03-13 10:07:47 +010034static int str_filename_cb(void *, const char *);
35static int str_directory_cb(void *, const char *);
Jens Axboebbf6b542007-03-13 15:28:55 +010036static int str_opendir_cb(void *, const char *);
Jens Axboee1f36502006-10-27 10:54:08 +020037
Jens Axboeee738492007-01-10 11:23:16 +010038#define __stringify_1(x) #x
39#define __stringify(x) __stringify_1(x)
40
Jens Axboee1f36502006-10-27 10:54:08 +020041/*
42 * Map of job/command line options
43 */
44static struct fio_option options[] = {
45 {
Jens Axboe61697c32007-02-05 15:04:46 +010046 .name = "description",
47 .type = FIO_OPT_STR_STORE,
48 .off1 = td_var_offset(description),
49 .help = "Text job description",
50 },
51 {
Jens Axboee1f36502006-10-27 10:54:08 +020052 .name = "name",
53 .type = FIO_OPT_STR_STORE,
54 .off1 = td_var_offset(name),
Jens Axboefd28ca42007-01-09 21:20:13 +010055 .help = "Name of this job",
Jens Axboee1f36502006-10-27 10:54:08 +020056 },
57 {
58 .name = "directory",
59 .type = FIO_OPT_STR_STORE,
60 .off1 = td_var_offset(directory),
Jens Axboeaf52b342007-03-13 10:07:47 +010061 .cb = str_directory_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +010062 .help = "Directory to store files in",
Jens Axboee1f36502006-10-27 10:54:08 +020063 },
64 {
65 .name = "filename",
66 .type = FIO_OPT_STR_STORE,
67 .off1 = td_var_offset(filename),
Jens Axboeaf52b342007-03-13 10:07:47 +010068 .cb = str_filename_cb,
69 .help = "File(s) to use for the workload",
Jens Axboee1f36502006-10-27 10:54:08 +020070 },
71 {
Jens Axboebbf6b542007-03-13 15:28:55 +010072 .name = "opendir",
73 .type = FIO_OPT_STR_STORE,
74 .off1 = td_var_offset(opendir),
75 .cb = str_opendir_cb,
76 .help = "Recursively add files from this directory and down",
77 },
78 {
Jens Axboee1f36502006-10-27 10:54:08 +020079 .name = "rw",
80 .type = FIO_OPT_STR,
Jens Axboeb1ec1da2007-02-23 10:29:16 +010081 .off1 = td_var_offset(td_ddir),
Jens Axboe15f79182007-01-10 12:26:18 +010082 .help = "IO direction",
Jens Axboeee738492007-01-10 11:23:16 +010083 .def = "read",
Jens Axboeb1ec1da2007-02-23 10:29:16 +010084 .posval = {
85 { .ival = "read", .oval = TD_DDIR_READ },
86 { .ival = "write", .oval = TD_DDIR_WRITE },
87 { .ival = "randread", .oval = TD_DDIR_RANDREAD },
88 { .ival = "randwrite", .oval = TD_DDIR_RANDWRITE },
89 { .ival = "rw", .oval = TD_DDIR_RW },
90 { .ival = "randrw", .oval = TD_DDIR_RANDRW },
91 },
Jens Axboee1f36502006-10-27 10:54:08 +020092 },
93 {
94 .name = "ioengine",
Jens Axboe09629a92007-03-09 09:00:06 +010095 .type = FIO_OPT_STR_STORE,
96 .off1 = td_var_offset(ioengine),
Jens Axboe15f79182007-01-10 12:26:18 +010097 .help = "IO engine to use",
Jens Axboeee738492007-01-10 11:23:16 +010098 .def = "sync",
Jens Axboeb1ec1da2007-02-23 10:29:16 +010099 .posval = {
Jens Axboe10cad1a2007-02-23 11:23:03 +0100100 { .ival = "sync", },
101#ifdef FIO_HAVE_LIBAIO
102 { .ival = "libaio", },
103#endif
104#ifdef FIO_HAVE_POSIXAIO
105 { .ival = "posixaio", },
106#endif
107 { .ival = "mmap", },
108#ifdef FIO_HAVE_SPLICE
109 { .ival = "splice", },
110#endif
111#ifdef FIO_HAVE_SGIO
112 { .ival = "sg", },
113#endif
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100114 { .ival = "null", }, { .ival = "net", },
Jens Axboe10cad1a2007-02-23 11:23:03 +0100115#ifdef FIO_HAVE_SYSLET
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100116 { .ival = "syslet-rw", },
Jens Axboe10cad1a2007-02-23 11:23:03 +0100117#endif
Jens Axboeba0fbe12007-03-09 14:34:23 +0100118 { .ival = "cpuio", },
Joel Becker7b395ca2007-02-28 11:10:58 +0100119 { .ival = "external", },
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100120 },
Jens Axboee1f36502006-10-27 10:54:08 +0200121 },
122 {
Jens Axboe03b74b32007-01-11 11:04:31 +0100123 .name = "iodepth",
124 .type = FIO_OPT_INT,
125 .off1 = td_var_offset(iodepth),
126 .help = "Amount of IO buffers to keep in flight",
127 .def = "1",
128 },
129 {
Jens Axboecb5ab512007-02-26 12:57:09 +0100130 .name = "iodepth_batch",
131 .type = FIO_OPT_INT,
132 .off1 = td_var_offset(iodepth_batch),
133 .help = "Number of IO to submit in one go",
134 },
135 {
Jens Axboee916b392007-02-20 14:37:26 +0100136 .name = "iodepth_low",
137 .type = FIO_OPT_INT,
138 .off1 = td_var_offset(iodepth_low),
139 .help = "Low water mark for queuing depth",
140 },
141 {
Jens Axboe03b74b32007-01-11 11:04:31 +0100142 .name = "size",
143 .type = FIO_OPT_STR_VAL,
144 .off1 = td_var_offset(total_file_size),
145 .help = "Size of device or file",
146 },
147 {
148 .name = "bs",
149 .type = FIO_OPT_STR_VAL_INT,
150 .off1 = td_var_offset(bs[DDIR_READ]),
151 .off2 = td_var_offset(bs[DDIR_WRITE]),
152 .help = "Block size unit",
153 .def = "4k",
154 },
155 {
156 .name = "bsrange",
157 .type = FIO_OPT_RANGE,
158 .off1 = td_var_offset(min_bs[DDIR_READ]),
159 .off2 = td_var_offset(max_bs[DDIR_READ]),
160 .off3 = td_var_offset(min_bs[DDIR_WRITE]),
161 .off4 = td_var_offset(max_bs[DDIR_WRITE]),
162 .help = "Set block size range (in more detail than bs)",
163 },
164 {
165 .name = "bs_unaligned",
166 .type = FIO_OPT_STR_SET,
167 .off1 = td_var_offset(bs_unaligned),
168 .help = "Don't sector align IO buffer sizes",
169 },
170 {
171 .name = "offset",
172 .type = FIO_OPT_STR_VAL,
173 .off1 = td_var_offset(start_offset),
174 .help = "Start IO from this offset",
175 .def = "0",
176 },
177 {
178 .name = "randrepeat",
179 .type = FIO_OPT_BOOL,
180 .off1 = td_var_offset(rand_repeatable),
181 .help = "Use repeatable random IO pattern",
182 .def = "1",
183 },
184 {
185 .name = "norandommap",
186 .type = FIO_OPT_STR_SET,
187 .off1 = td_var_offset(norandommap),
188 .help = "Accept potential duplicate random blocks",
189 },
190 {
191 .name = "nrfiles",
192 .type = FIO_OPT_INT,
193 .off1 = td_var_offset(nr_files),
194 .help = "Split job workload between this number of files",
195 .def = "1",
196 },
197 {
Jens Axboeb5af8292007-03-08 12:43:13 +0100198 .name = "openfiles",
199 .type = FIO_OPT_INT,
200 .off1 = td_var_offset(open_files),
201 .help = "Number of files to keep open at the same time",
202 },
203 {
Jens Axboe0aabe162007-02-23 08:45:55 +0100204 .name = "file_service_type",
205 .type = FIO_OPT_STR,
Jens Axboe1907dbc2007-03-12 11:44:28 +0100206 .cb = str_fst_cb,
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100207 .off1 = td_var_offset(file_service_type),
Jens Axboe0aabe162007-02-23 08:45:55 +0100208 .help = "How to select which file to service next",
209 .def = "roundrobin",
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100210 .posval = {
211 { .ival = "random", .oval = FIO_FSERVICE_RANDOM },
212 { .ival = "roundrobin", .oval = FIO_FSERVICE_RR },
213 },
Jens Axboe0aabe162007-02-23 08:45:55 +0100214 },
215 {
Jens Axboe03b74b32007-01-11 11:04:31 +0100216 .name = "fsync",
217 .type = FIO_OPT_INT,
218 .off1 = td_var_offset(fsync_blocks),
219 .help = "Issue fsync for writes every given number of blocks",
220 .def = "0",
221 },
222 {
223 .name = "direct",
224 .type = FIO_OPT_BOOL,
225 .off1 = td_var_offset(odirect),
Jens Axboe76a43db2007-01-11 13:24:44 +0100226 .help = "Use O_DIRECT IO (negates buffered)",
227 .def = "0",
228 },
229 {
230 .name = "buffered",
231 .type = FIO_OPT_BOOL,
232 .off1 = td_var_offset(odirect),
233 .neg = 1,
234 .help = "Use buffered IO (negates direct)",
Jens Axboe03b74b32007-01-11 11:04:31 +0100235 .def = "1",
236 },
237 {
238 .name = "overwrite",
239 .type = FIO_OPT_BOOL,
240 .off1 = td_var_offset(overwrite),
241 .help = "When writing, set whether to overwrite current data",
242 .def = "0",
243 },
244 {
245 .name = "loops",
246 .type = FIO_OPT_INT,
247 .off1 = td_var_offset(loops),
248 .help = "Number of times to run the job",
249 .def = "1",
250 },
251 {
252 .name = "numjobs",
253 .type = FIO_OPT_INT,
254 .off1 = td_var_offset(numjobs),
255 .help = "Duplicate this job this many times",
256 .def = "1",
257 },
258 {
259 .name = "startdelay",
260 .type = FIO_OPT_INT,
261 .off1 = td_var_offset(start_delay),
262 .help = "Only start job when this period has passed",
263 .def = "0",
264 },
265 {
266 .name = "runtime",
267 .alias = "timeout",
268 .type = FIO_OPT_STR_VAL_TIME,
269 .off1 = td_var_offset(timeout),
270 .help = "Stop workload when this amount of time has passed",
271 .def = "0",
272 },
273 {
Jens Axboee1f36502006-10-27 10:54:08 +0200274 .name = "mem",
275 .type = FIO_OPT_STR,
276 .cb = str_mem_cb,
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100277 .off1 = td_var_offset(mem_type),
Jens Axboe15f79182007-01-10 12:26:18 +0100278 .help = "Backing type for IO buffers",
Jens Axboeee738492007-01-10 11:23:16 +0100279 .def = "malloc",
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100280 .posval = {
281 { .ival = "malloc", .oval = MEM_MALLOC },
282 { .ival = "shm", .oval = MEM_SHM },
283#ifdef FIO_HAVE_HUGETLB
284 { .ival = "shmhuge", .oval = MEM_SHMHUGE },
285#endif
286 { .ival = "mmap", .oval = MEM_MMAP },
287#ifdef FIO_HAVE_HUGETLB
288 { .ival = "mmaphuge", .oval = MEM_MMAPHUGE },
289#endif
290 },
Jens Axboee1f36502006-10-27 10:54:08 +0200291 },
292 {
293 .name = "verify",
294 .type = FIO_OPT_STR,
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100295 .off1 = td_var_offset(verify),
Jens Axboe15f79182007-01-10 12:26:18 +0100296 .help = "Verify sum function",
Jens Axboeee738492007-01-10 11:23:16 +0100297 .def = "0",
Jens Axboeb1ec1da2007-02-23 10:29:16 +0100298 .posval = {
299 { .ival = "0", .oval = VERIFY_NONE },
300 { .ival = "crc32", .oval = VERIFY_CRC32 },
301 { .ival = "md5", .oval = VERIFY_MD5 },
302 },
Jens Axboee1f36502006-10-27 10:54:08 +0200303 },
304 {
305 .name = "write_iolog",
Jens Axboe076efc72006-10-27 11:24:25 +0200306 .type = FIO_OPT_STR_STORE,
307 .off1 = td_var_offset(write_iolog_file),
Jens Axboefd28ca42007-01-09 21:20:13 +0100308 .help = "Store IO pattern to file",
Jens Axboee1f36502006-10-27 10:54:08 +0200309 },
310 {
Jens Axboe076efc72006-10-27 11:24:25 +0200311 .name = "read_iolog",
Jens Axboee1f36502006-10-27 10:54:08 +0200312 .type = FIO_OPT_STR_STORE,
Jens Axboe076efc72006-10-27 11:24:25 +0200313 .off1 = td_var_offset(read_iolog_file),
Jens Axboefd28ca42007-01-09 21:20:13 +0100314 .help = "Playback IO pattern from file",
Jens Axboee1f36502006-10-27 10:54:08 +0200315 },
316 {
317 .name = "exec_prerun",
318 .type = FIO_OPT_STR_STORE,
319 .off1 = td_var_offset(exec_prerun),
Jens Axboefd28ca42007-01-09 21:20:13 +0100320 .help = "Execute this file prior to running job",
Jens Axboee1f36502006-10-27 10:54:08 +0200321 },
322 {
323 .name = "exec_postrun",
324 .type = FIO_OPT_STR_STORE,
325 .off1 = td_var_offset(exec_postrun),
Jens Axboefd28ca42007-01-09 21:20:13 +0100326 .help = "Execute this file after running job",
Jens Axboee1f36502006-10-27 10:54:08 +0200327 },
328#ifdef FIO_HAVE_IOSCHED_SWITCH
329 {
330 .name = "ioscheduler",
331 .type = FIO_OPT_STR_STORE,
332 .off1 = td_var_offset(ioscheduler),
Jens Axboefd28ca42007-01-09 21:20:13 +0100333 .help = "Use this IO scheduler on the backing device",
Jens Axboee1f36502006-10-27 10:54:08 +0200334 },
335#endif
336 {
Jens Axboee1f36502006-10-27 10:54:08 +0200337 .name = "zonesize",
338 .type = FIO_OPT_STR_VAL,
339 .off1 = td_var_offset(zone_size),
Jens Axboefd28ca42007-01-09 21:20:13 +0100340 .help = "Give size of an IO zone",
Jens Axboeee738492007-01-10 11:23:16 +0100341 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200342 },
343 {
344 .name = "zoneskip",
345 .type = FIO_OPT_STR_VAL,
346 .off1 = td_var_offset(zone_skip),
Jens Axboefd28ca42007-01-09 21:20:13 +0100347 .help = "Space between IO zones",
Jens Axboeee738492007-01-10 11:23:16 +0100348 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200349 },
350 {
351 .name = "lockmem",
352 .type = FIO_OPT_STR_VAL,
353 .cb = str_lockmem_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100354 .help = "Lock down this amount of memory",
Jens Axboeee738492007-01-10 11:23:16 +0100355 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200356 },
357 {
Jens Axboee1f36502006-10-27 10:54:08 +0200358 .name = "rwmixcycle",
359 .type = FIO_OPT_INT,
360 .off1 = td_var_offset(rwmixcycle),
Jens Axboeee738492007-01-10 11:23:16 +0100361 .help = "Cycle period for mixed read/write workloads (msec)",
362 .def = "500",
Jens Axboee1f36502006-10-27 10:54:08 +0200363 },
364 {
365 .name = "rwmixread",
366 .type = FIO_OPT_INT,
367 .off1 = td_var_offset(rwmixread),
Jens Axboeee738492007-01-10 11:23:16 +0100368 .maxval = 100,
Jens Axboefd28ca42007-01-09 21:20:13 +0100369 .help = "Percentage of mixed workload that is reads",
Jens Axboeee738492007-01-10 11:23:16 +0100370 .def = "50",
Jens Axboee1f36502006-10-27 10:54:08 +0200371 },
372 {
373 .name = "rwmixwrite",
374 .type = FIO_OPT_INT,
375 .off1 = td_var_offset(rwmixwrite),
Jens Axboeee738492007-01-10 11:23:16 +0100376 .maxval = 100,
Jens Axboefd28ca42007-01-09 21:20:13 +0100377 .help = "Percentage of mixed workload that is writes",
Jens Axboeee738492007-01-10 11:23:16 +0100378 .def = "50",
Jens Axboee1f36502006-10-27 10:54:08 +0200379 },
380 {
381 .name = "nice",
382 .type = FIO_OPT_INT,
383 .off1 = td_var_offset(nice),
Jens Axboefd28ca42007-01-09 21:20:13 +0100384 .help = "Set job CPU nice value",
Jens Axboe15f79182007-01-10 12:26:18 +0100385 .minval = -19,
Jens Axboeee738492007-01-10 11:23:16 +0100386 .maxval = 20,
387 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200388 },
389#ifdef FIO_HAVE_IOPRIO
390 {
391 .name = "prio",
392 .type = FIO_OPT_INT,
393 .cb = str_prio_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100394 .help = "Set job IO priority value",
Jens Axboe15f79182007-01-10 12:26:18 +0100395 .minval = 0,
396 .maxval = 7,
Jens Axboee1f36502006-10-27 10:54:08 +0200397 },
398 {
399 .name = "prioclass",
400 .type = FIO_OPT_INT,
401 .cb = str_prioclass_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100402 .help = "Set job IO priority class",
Jens Axboe15f79182007-01-10 12:26:18 +0100403 .minval = 0,
404 .maxval = 3,
Jens Axboee1f36502006-10-27 10:54:08 +0200405 },
406#endif
407 {
408 .name = "thinktime",
409 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100410 .off1 = td_var_offset(thinktime),
Jens Axboe5fa0f812007-01-11 14:06:35 +0100411 .help = "Idle time between IO buffers (usec)",
Jens Axboeee738492007-01-10 11:23:16 +0100412 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200413 },
414 {
Jens Axboe48097d52007-02-17 06:30:44 +0100415 .name = "thinktime_spin",
416 .type = FIO_OPT_INT,
417 .off1 = td_var_offset(thinktime_spin),
Jens Axboe34403fb2007-03-02 21:43:25 +0100418 .help = "Start think time by spinning this amount (usec)",
Jens Axboe48097d52007-02-17 06:30:44 +0100419 .def = "0",
420 },
421 {
Jens Axboe9c1f7432007-01-03 20:43:19 +0100422 .name = "thinktime_blocks",
423 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100424 .off1 = td_var_offset(thinktime_blocks),
Jens Axboefd28ca42007-01-09 21:20:13 +0100425 .help = "IO buffer period between 'thinktime'",
Jens Axboeee738492007-01-10 11:23:16 +0100426 .def = "1",
Jens Axboe9c1f7432007-01-03 20:43:19 +0100427 },
428 {
Jens Axboee1f36502006-10-27 10:54:08 +0200429 .name = "rate",
430 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100431 .off1 = td_var_offset(rate),
Jens Axboefd28ca42007-01-09 21:20:13 +0100432 .help = "Set bandwidth rate",
Jens Axboee1f36502006-10-27 10:54:08 +0200433 },
434 {
435 .name = "ratemin",
436 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100437 .off1 = td_var_offset(ratemin),
Jens Axboefd28ca42007-01-09 21:20:13 +0100438 .help = "The bottom limit accepted",
Jens Axboee1f36502006-10-27 10:54:08 +0200439 },
440 {
441 .name = "ratecycle",
442 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100443 .off1 = td_var_offset(ratecycle),
Jens Axboe6da1fa72007-01-10 11:27:48 +0100444 .help = "Window average for rate limits (msec)",
Jens Axboeee738492007-01-10 11:23:16 +0100445 .def = "1000",
Jens Axboee1f36502006-10-27 10:54:08 +0200446 },
447 {
Jens Axboee1f36502006-10-27 10:54:08 +0200448 .name = "invalidate",
Jens Axboe13335dd2007-01-10 13:14:02 +0100449 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100450 .off1 = td_var_offset(invalidate_cache),
Jens Axboefd28ca42007-01-09 21:20:13 +0100451 .help = "Invalidate buffer/page cache prior to running job",
Jens Axboeee738492007-01-10 11:23:16 +0100452 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200453 },
454 {
455 .name = "sync",
Jens Axboe13335dd2007-01-10 13:14:02 +0100456 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100457 .off1 = td_var_offset(sync_io),
Jens Axboefd28ca42007-01-09 21:20:13 +0100458 .help = "Use O_SYNC for buffered writes",
Jens Axboeee738492007-01-10 11:23:16 +0100459 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200460 },
461 {
462 .name = "bwavgtime",
463 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100464 .off1 = td_var_offset(bw_avg_time),
Jens Axboeee738492007-01-10 11:23:16 +0100465 .help = "Time window over which to calculate bandwidth (msec)",
466 .def = "500",
Jens Axboee1f36502006-10-27 10:54:08 +0200467 },
468 {
469 .name = "create_serialize",
Jens Axboe13335dd2007-01-10 13:14:02 +0100470 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100471 .off1 = td_var_offset(create_serialize),
Jens Axboefd28ca42007-01-09 21:20:13 +0100472 .help = "Serialize creating of job files",
Jens Axboeee738492007-01-10 11:23:16 +0100473 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200474 },
475 {
476 .name = "create_fsync",
Jens Axboe13335dd2007-01-10 13:14:02 +0100477 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100478 .off1 = td_var_offset(create_fsync),
Jens Axboefd28ca42007-01-09 21:20:13 +0100479 .help = "Fsync file after creation",
Jens Axboeee738492007-01-10 11:23:16 +0100480 .def = "1",
Jens Axboee1f36502006-10-27 10:54:08 +0200481 },
482 {
Jens Axboee1f36502006-10-27 10:54:08 +0200483 .name = "cpuload",
484 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100485 .off1 = td_var_offset(cpuload),
Jens Axboefd28ca42007-01-09 21:20:13 +0100486 .help = "Use this percentage of CPU",
Jens Axboee1f36502006-10-27 10:54:08 +0200487 },
488 {
489 .name = "cpuchunks",
490 .type = FIO_OPT_INT,
Jens Axboe13049232007-01-03 20:45:09 +0100491 .off1 = td_var_offset(cpucycle),
Jens Axboeba0fbe12007-03-09 14:34:23 +0100492 .help = "Length of the CPU burn cycles (usecs)",
493 .def = "50000",
Jens Axboee1f36502006-10-27 10:54:08 +0200494 },
Jens Axboee1f36502006-10-27 10:54:08 +0200495#ifdef FIO_HAVE_CPU_AFFINITY
496 {
497 .name = "cpumask",
498 .type = FIO_OPT_INT,
499 .cb = str_cpumask_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100500 .help = "CPU affinity mask",
Jens Axboee1f36502006-10-27 10:54:08 +0200501 },
502#endif
503 {
504 .name = "end_fsync",
Jens Axboe13335dd2007-01-10 13:14:02 +0100505 .type = FIO_OPT_BOOL,
Jens Axboe13049232007-01-03 20:45:09 +0100506 .off1 = td_var_offset(end_fsync),
Jens Axboefd28ca42007-01-09 21:20:13 +0100507 .help = "Include fsync at the end of job",
Jens Axboeee738492007-01-10 11:23:16 +0100508 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200509 },
510 {
Jens Axboeebb14152007-03-13 14:42:15 +0100511 .name = "fsync_on_close",
512 .type = FIO_OPT_BOOL,
513 .off1 = td_var_offset(fsync_on_close),
514 .help = "fsync files on close",
515 .def = "0",
516 },
517 {
Jens Axboee1f36502006-10-27 10:54:08 +0200518 .name = "unlink",
Jens Axboe13335dd2007-01-10 13:14:02 +0100519 .type = FIO_OPT_BOOL,
Jens Axboee1f36502006-10-27 10:54:08 +0200520 .off1 = td_var_offset(unlink),
Jens Axboeee738492007-01-10 11:23:16 +0100521 .help = "Unlink created files after job has completed",
Jens Axboee545a6c2007-01-14 00:00:29 +0100522 .def = "0",
Jens Axboee1f36502006-10-27 10:54:08 +0200523 },
524 {
525 .name = "exitall",
526 .type = FIO_OPT_STR_SET,
527 .cb = str_exitall_cb,
Jens Axboefd28ca42007-01-09 21:20:13 +0100528 .help = "Terminate all jobs when one exits",
Jens Axboee1f36502006-10-27 10:54:08 +0200529 },
530 {
531 .name = "stonewall",
532 .type = FIO_OPT_STR_SET,
533 .off1 = td_var_offset(stonewall),
Jens Axboefd28ca42007-01-09 21:20:13 +0100534 .help = "Insert a hard barrier between this job and previous",
Jens Axboee1f36502006-10-27 10:54:08 +0200535 },
536 {
537 .name = "thread",
538 .type = FIO_OPT_STR_SET,
Jens Axboed9bb3b82007-01-10 20:30:53 +0100539 .off1 = td_var_offset(use_thread),
Jens Axboefd28ca42007-01-09 21:20:13 +0100540 .help = "Use threads instead of forks",
Jens Axboee1f36502006-10-27 10:54:08 +0200541 },
542 {
543 .name = "write_bw_log",
544 .type = FIO_OPT_STR_SET,
545 .off1 = td_var_offset(write_bw_log),
Jens Axboefd28ca42007-01-09 21:20:13 +0100546 .help = "Write log of bandwidth during run",
Jens Axboee1f36502006-10-27 10:54:08 +0200547 },
548 {
549 .name = "write_lat_log",
550 .type = FIO_OPT_STR_SET,
551 .off1 = td_var_offset(write_lat_log),
Jens Axboefd28ca42007-01-09 21:20:13 +0100552 .help = "Write log of latency during run",
Jens Axboee1f36502006-10-27 10:54:08 +0200553 },
554 {
Jens Axboe56bb17f2006-12-20 20:27:36 +0100555 .name = "hugepage-size",
556 .type = FIO_OPT_STR_VAL,
557 .off1 = td_var_offset(hugepage_size),
Jens Axboefd28ca42007-01-09 21:20:13 +0100558 .help = "When using hugepages, specify size of each page",
Jens Axboeee738492007-01-10 11:23:16 +0100559 .def = __stringify(FIO_HUGE_PAGE),
Jens Axboe56bb17f2006-12-20 20:27:36 +0100560 },
561 {
Jens Axboeb2560f32007-03-06 12:43:03 +0100562 .name = "group_reporting",
563 .type = FIO_OPT_STR_SET,
564 .off1 = td_var_offset(group_reporting),
565 .help = "Do reporting on a per-group basis",
566 },
567 {
Jens Axboee1f36502006-10-27 10:54:08 +0200568 .name = NULL,
569 },
570};
571
Jens Axboeb4692822006-10-27 13:43:22 +0200572#define FIO_JOB_OPTS (sizeof(options) / sizeof(struct fio_option))
573#define FIO_CMD_OPTS (16)
574#define FIO_GETOPT_JOB (0x89988998)
575
576/*
577 * Command line options. These will contain the above, plus a few
578 * extra that only pertain to fio itself and not jobs.
579 */
580static struct option long_options[FIO_JOB_OPTS + FIO_CMD_OPTS] = {
581 {
582 .name = "output",
583 .has_arg = required_argument,
584 .val = 'o',
585 },
586 {
587 .name = "timeout",
588 .has_arg = required_argument,
589 .val = 't',
590 },
591 {
592 .name = "latency-log",
593 .has_arg = required_argument,
594 .val = 'l',
595 },
596 {
597 .name = "bandwidth-log",
598 .has_arg = required_argument,
599 .val = 'b',
600 },
601 {
602 .name = "minimal",
603 .has_arg = optional_argument,
604 .val = 'm',
605 },
606 {
607 .name = "version",
608 .has_arg = no_argument,
609 .val = 'v',
610 },
611 {
Jens Axboefd28ca42007-01-09 21:20:13 +0100612 .name = "help",
613 .has_arg = no_argument,
614 .val = 'h',
615 },
616 {
617 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +0100618 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +0100619 .val = 'c',
620 },
621 {
Jens Axboeb4692822006-10-27 13:43:22 +0200622 .name = NULL,
623 },
624};
625
Jens Axboeee738492007-01-10 11:23:16 +0100626static int def_timeout = 0;
Jens Axboe972cfd22006-06-09 11:08:56 +0200627
Jens Axboefdf3de22007-03-03 12:21:34 +0100628static char fio_version_string[] = "fio 1.13";
Jens Axboeebac4652005-12-08 15:25:21 +0100629
Jens Axboe972cfd22006-06-09 11:08:56 +0200630static char **ini_file;
Jens Axboeebac4652005-12-08 15:25:21 +0100631static int max_jobs = MAX_JOBS;
632
633struct thread_data def_thread;
634struct thread_data *threads = NULL;
635
Jens Axboeebac4652005-12-08 15:25:21 +0100636int exitall_on_terminate = 0;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200637int terse_output = 0;
Jens Axboec04f7ec2006-05-31 10:13:16 +0200638unsigned long long mlock_size = 0;
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200639FILE *f_out = NULL;
640FILE *f_err = NULL;
Jens Axboeebac4652005-12-08 15:25:21 +0100641
Jens Axboeee738492007-01-10 11:23:16 +0100642static int write_lat_log = 0;
Jens Axboebb3884d2007-01-17 17:23:11 +1100643int write_bw_log = 0;
Jens Axboeec94ec52006-10-20 10:59:19 +0200644
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100645static int prev_group_jobs;
646
Joel Becker9728ce32007-03-01 08:24:39 +0100647FILE *get_f_out()
648{
649 return f_out;
650}
651
652FILE *get_f_err()
653{
654 return f_err;
655}
656
Jens Axboe906c8d72006-06-13 09:37:56 +0200657/*
658 * Return a free job structure.
659 */
Jens Axboeebac4652005-12-08 15:25:21 +0100660static struct thread_data *get_new_job(int global, struct thread_data *parent)
661{
662 struct thread_data *td;
663
664 if (global)
665 return &def_thread;
666 if (thread_number >= max_jobs)
667 return NULL;
668
669 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200670 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100671
Jens Axboeebac4652005-12-08 15:25:21 +0100672 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100673 return td;
674}
675
676static void put_job(struct thread_data *td)
677{
Jens Axboe549577a2006-10-30 12:23:41 +0100678 if (td == &def_thread)
679 return;
680
Jens Axboe16edf252007-02-10 14:59:22 +0100681 if (td->error)
682 fprintf(f_out, "fio: %s\n", td->verror);
683
Jens Axboeebac4652005-12-08 15:25:21 +0100684 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
685 thread_number--;
686}
687
Jens Axboedad915e2006-10-27 11:10:18 +0200688/*
689 * Lazy way of fixing up options that depend on each other. We could also
690 * define option callback handlers, but this is easier.
691 */
Jens Axboee1f36502006-10-27 10:54:08 +0200692static void fixup_options(struct thread_data *td)
693{
Jens Axboee1f36502006-10-27 10:54:08 +0200694 if (!td->rwmixread && td->rwmixwrite)
695 td->rwmixread = 100 - td->rwmixwrite;
Jens Axboedad915e2006-10-27 11:10:18 +0200696
Jens Axboe076efc72006-10-27 11:24:25 +0200697 if (td->write_iolog_file && td->read_iolog_file) {
698 log_err("fio: read iolog overrides write_iolog\n");
699 free(td->write_iolog_file);
700 td->write_iolog_file = NULL;
701 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100702
703 if (td->io_ops->flags & FIO_SYNCIO)
704 td->iodepth = 1;
705 else {
706 if (!td->iodepth)
Jens Axboeb5af8292007-03-08 12:43:13 +0100707 td->iodepth = td->open_files;
Jens Axboe16b462a2006-10-30 12:35:18 +0100708 }
709
710 /*
711 * only really works for sequential io for now, and with 1 file
712 */
Jens Axboeb5af8292007-03-08 12:43:13 +0100713 if (td->zone_size && td_random(td) && td->open_files == 1)
Jens Axboe16b462a2006-10-30 12:35:18 +0100714 td->zone_size = 0;
715
716 /*
717 * Reads can do overwrites, we always need to pre-create the file
718 */
719 if (td_read(td) || td_rw(td))
720 td->overwrite = 1;
721
Jens Axboea00735e2006-11-03 08:58:08 +0100722 if (!td->min_bs[DDIR_READ])
723 td->min_bs[DDIR_READ]= td->bs[DDIR_READ];
724 if (!td->max_bs[DDIR_READ])
725 td->max_bs[DDIR_READ] = td->bs[DDIR_READ];
726 if (!td->min_bs[DDIR_WRITE])
Jens Axboe75e6f362006-11-03 08:17:09 +0100727 td->min_bs[DDIR_WRITE]= td->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100728 if (!td->max_bs[DDIR_WRITE])
Jens Axboe75e6f362006-11-03 08:17:09 +0100729 td->max_bs[DDIR_WRITE] = td->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100730
731 td->rw_min_bs = min(td->min_bs[DDIR_READ], td->min_bs[DDIR_WRITE]);
732
Jens Axboe16b462a2006-10-30 12:35:18 +0100733 if (td_read(td) && !td_rw(td))
734 td->verify = 0;
Jens Axboebb8895e2006-10-30 15:14:48 +0100735
736 if (td->norandommap && td->verify != VERIFY_NONE) {
737 log_err("fio: norandommap given, verify disabled\n");
738 td->verify = VERIFY_NONE;
739 }
Jens Axboe690adba2006-10-30 15:25:09 +0100740 if (td->bs_unaligned && (td->odirect || td->io_ops->flags & FIO_RAWIO))
741 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100742
743 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100744 * thinktime_spin must be less than thinktime
745 */
746 if (td->thinktime_spin > td->thinktime)
747 td->thinktime_spin = td->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100748
749 /*
750 * The low water mark cannot be bigger than the iodepth
751 */
Jens Axboe9467b772007-02-27 19:56:43 +0100752 if (td->iodepth_low > td->iodepth || !td->iodepth_low) {
753 /*
754 * syslet work around - if the workload is sequential,
755 * we want to let the queue drain all the way down to
756 * avoid seeking between async threads
757 */
758 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
759 td->iodepth_low = 1;
760 else
761 td->iodepth_low = td->iodepth;
762 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100763
764 /*
765 * If batch number isn't set, default to the same as iodepth
766 */
767 if (td->iodepth_batch > td->iodepth || !td->iodepth_batch)
768 td->iodepth_batch = td->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100769
Jens Axboebbf6b542007-03-13 15:28:55 +0100770 if (td->nr_files > td->files_index)
Jens Axboe9f9214f2007-03-13 14:02:16 +0100771 td->nr_files = td->files_index;
772
773 if (td->open_files > td->nr_files || !td->open_files)
Jens Axboeb5af8292007-03-08 12:43:13 +0100774 td->open_files = td->nr_files;
Jens Axboee1f36502006-10-27 10:54:08 +0200775}
776
Jens Axboe906c8d72006-06-13 09:37:56 +0200777/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100778 * This function leaks the buffer
779 */
780static char *to_kmg(unsigned int val)
781{
782 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100783 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100784 char *p = post;
785
Jens Axboe245142f2006-11-08 12:49:21 +0100786 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100787 if (val & 1023)
788 break;
789
790 val >>= 10;
791 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100792 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100793
794 snprintf(buf, 31, "%u%c", val, *p);
795 return buf;
796}
797
Jens Axboe09629a92007-03-09 09:00:06 +0100798/* External engines are specified by "external:name.o") */
799static const char *get_engine_name(const char *str)
800{
801 char *p = strstr(str, ":");
802
803 if (!p)
804 return str;
805
806 p++;
807 strip_blank_front(&p);
808 strip_blank_end(p);
809 return p;
810}
811
Jens Axboef8977ee2006-11-06 14:03:03 +0100812/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200813 * Adds a job to the list of things todo. Sanitizes the various options
814 * to make sure we don't have conflicts, and initializes various
815 * members of td.
816 */
Jens Axboe75154842006-06-01 13:56:09 +0200817static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100818{
Jens Axboe413dd452007-02-23 09:26:09 +0100819 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
820 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100821 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200822 struct fio_file *f;
Jens Axboe09629a92007-03-09 09:00:06 +0100823 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100824 char fname[PATH_MAX];
825 int numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100826
Jens Axboeebac4652005-12-08 15:25:21 +0100827 /*
828 * the def_thread is just for options, it's not a real job
829 */
830 if (td == &def_thread)
831 return 0;
832
Jens Axboe09629a92007-03-09 09:00:06 +0100833 engine = get_engine_name(td->ioengine);
834 td->io_ops = load_ioengine(td, engine);
835 if (!td->io_ops) {
836 log_err("fio: failed to load engine %s\n", engine);
837 return 1;
838 }
Jens Axboedf641192006-10-12 07:55:41 +0200839
Jens Axboe9cedf162007-03-12 11:29:30 +0100840 if (td->use_thread)
841 nr_thread++;
842 else
843 nr_process++;
844
Jens Axboe690adba2006-10-30 15:25:09 +0100845 if (td->odirect)
846 td->io_ops->flags |= FIO_RAWIO;
847
Jens Axboebbf6b542007-03-13 15:28:55 +0100848 if (!td->filename && !td->files_index) {
Jens Axboe80be24f2007-03-12 11:01:25 +0100849 td->filename = strdup(jobname);
850
Jens Axboe7b05a212007-03-13 11:17:07 +0100851 if (td->nr_files == 1)
852 add_file(td, td->filename);
853 else {
854 for (i = 0; i < td->nr_files; i++) {
855 sprintf(fname, "%s.%d.%d", td->filename, td->thread_number, i);
856 add_file(td, fname);
857 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100858 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100859 }
Jens Axboeebac4652005-12-08 15:25:21 +0100860
Jens Axboee0a22332006-12-20 12:54:25 +0100861 fixup_options(td);
862
Jens Axboe53cdc682006-10-18 11:50:58 +0200863 for_each_file(td, f, i) {
Jens Axboeaf52b342007-03-13 10:07:47 +0100864 if (td->directory && f->filetype == FIO_TYPE_FILE) {
865 sprintf(fname, "%s/%s", td->directory, f->file_name);
866 f->file_name = strdup(fname);
867 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200868 }
869
Jens Axboe07739b52007-03-08 20:25:46 +0100870 td->mutex = fio_sem_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100871
Jens Axboe756867b2007-03-06 15:19:24 +0100872 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
873 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
874 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboeebac4652005-12-08 15:25:21 +0100875
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100876 if ((td->stonewall || td->numjobs > 1) && prev_group_jobs) {
877 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100878 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100879 }
Jens Axboeebac4652005-12-08 15:25:21 +0100880
881 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100882 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100883
884 if (setup_rate(td))
885 goto err;
886
Jens Axboeec94ec52006-10-20 10:59:19 +0200887 if (td->write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100888 setup_log(&td->ts.slat_log);
889 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100890 }
Jens Axboeec94ec52006-10-20 10:59:19 +0200891 if (td->write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100892 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100893
Jens Axboeb4692822006-10-27 13:43:22 +0200894 if (!td->name)
895 td->name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200896
Jens Axboec6ae0a52006-06-12 11:04:44 +0200897 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200898 if (!job_add_num) {
Jens Axboeba0fbe12007-03-09 14:34:23 +0100899 if (!strcmp(td->io_ops->name, "cpuio"))
Jens Axboeb990b5c2006-09-14 09:48:22 +0200900 fprintf(f_out, "%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->name, td->cpuload, td->cpucycle);
Jens Axboef8977ee2006-11-06 14:03:03 +0100901 else {
902 char *c1, *c2, *c3, *c4;
903
904 c1 = to_kmg(td->min_bs[DDIR_READ]);
905 c2 = to_kmg(td->max_bs[DDIR_READ]);
906 c3 = to_kmg(td->min_bs[DDIR_WRITE]);
907 c4 = to_kmg(td->max_bs[DDIR_WRITE]);
908
Jens Axboe413dd452007-02-23 09:26:09 +0100909 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 +0100910
911 free(c1);
912 free(c2);
913 free(c3);
914 free(c4);
915 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200916 } else if (job_add_num == 1)
Jens Axboec6ae0a52006-06-12 11:04:44 +0200917 fprintf(f_out, "...\n");
918 }
Jens Axboeebac4652005-12-08 15:25:21 +0100919
920 /*
921 * recurse add identical jobs, clear numjobs and stonewall options
922 * as they don't apply to sub-jobs
923 */
924 numjobs = td->numjobs;
925 while (--numjobs) {
926 struct thread_data *td_new = get_new_job(0, td);
927
928 if (!td_new)
929 goto err;
930
931 td_new->numjobs = 1;
932 td_new->stonewall = 0;
Jens Axboe75154842006-06-01 13:56:09 +0200933 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100934
Jens Axboe75154842006-06-01 13:56:09 +0200935 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100936 goto err;
937 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100938
939 if (td->numjobs > 1) {
940 groupid++;
941 prev_group_jobs = 0;
942 }
943
Jens Axboeebac4652005-12-08 15:25:21 +0100944 return 0;
945err:
946 put_job(td);
947 return -1;
948}
949
Jens Axboe906c8d72006-06-13 09:37:56 +0200950/*
951 * Initialize the various random states we need (random io, block size ranges,
952 * read/write mix, etc).
953 */
Jens Axboeebac4652005-12-08 15:25:21 +0100954int init_random_state(struct thread_data *td)
955{
Jens Axboe0aabe162007-02-23 08:45:55 +0100956 unsigned long seeds[5];
Jens Axboeaf52b342007-03-13 10:07:47 +0100957 int fd, num_maps, blocks;
Jens Axboe0ab8db82006-10-18 17:16:23 +0200958 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100959 unsigned int i;
Jens Axboeebac4652005-12-08 15:25:21 +0100960
Jens Axboeba0fbe12007-03-09 14:34:23 +0100961 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200962 return 0;
963
Jens Axboe1ac267b2006-05-31 20:29:00 +0200964 fd = open("/dev/urandom", O_RDONLY);
Jens Axboeebac4652005-12-08 15:25:21 +0100965 if (fd == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100966 td_verror(td, errno, "open");
Jens Axboeebac4652005-12-08 15:25:21 +0100967 return 1;
968 }
969
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200970 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
Jens Axboee1161c32007-02-22 19:36:48 +0100971 td_verror(td, EIO, "read");
Jens Axboeebac4652005-12-08 15:25:21 +0100972 close(fd);
973 return 1;
974 }
975
976 close(fd);
977
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200978 os_random_seed(seeds[0], &td->bsrange_state);
979 os_random_seed(seeds[1], &td->verify_state);
980 os_random_seed(seeds[2], &td->rwmix_state);
Jens Axboeebac4652005-12-08 15:25:21 +0100981
Jens Axboe413dd452007-02-23 09:26:09 +0100982 if (td->file_service_type == FIO_FSERVICE_RANDOM)
983 os_random_seed(seeds[3], &td->next_file_state);
984
985 if (!td_random(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100986 return 0;
987
Jens Axboe9ebc27e2006-06-12 10:21:50 +0200988 if (td->rand_repeatable)
Jens Axboe0aabe162007-02-23 08:45:55 +0100989 seeds[4] = FIO_RANDSEED * td->thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100990
Jens Axboebb8895e2006-10-30 15:14:48 +0100991 if (!td->norandommap) {
992 for_each_file(td, f, i) {
Jens Axboea4a81712007-02-13 20:07:26 +0100993 blocks = (f->real_file_size + td->rw_min_bs - 1) / td->rw_min_bs;
Jens Axboec7c280e2006-11-02 20:10:33 +0100994 num_maps = (blocks + BLOCKS_PER_MAP-1)/ BLOCKS_PER_MAP;
Jens Axboebb8895e2006-10-30 15:14:48 +0100995 f->file_map = malloc(num_maps * sizeof(long));
Jens Axboebda4fd92007-03-12 11:21:48 +0100996 if (!f->file_map) {
997 log_err("fio: failed allocating random map. If running a large number of jobs, try the 'norandommap' option\n");
998 return 1;
999 }
Jens Axboebb8895e2006-10-30 15:14:48 +01001000 f->num_maps = num_maps;
1001 memset(f->file_map, 0, num_maps * sizeof(long));
1002 }
Jens Axboe53cdc682006-10-18 11:50:58 +02001003 }
Jens Axboeebac4652005-12-08 15:25:21 +01001004
Jens Axboe0aabe162007-02-23 08:45:55 +01001005 os_random_seed(seeds[4], &td->random_state);
Jens Axboeebac4652005-12-08 15:25:21 +01001006 return 0;
1007}
1008
1009static void fill_cpu_mask(os_cpu_mask_t cpumask, int cpu)
1010{
1011#ifdef FIO_HAVE_CPU_AFFINITY
1012 unsigned int i;
1013
1014 CPU_ZERO(&cpumask);
1015
1016 for (i = 0; i < sizeof(int) * 8; i++) {
1017 if ((1 << i) & cpu)
1018 CPU_SET(i, &cpumask);
1019 }
1020#endif
1021}
1022
Jens Axboeebac4652005-12-08 15:25:21 +01001023static int is_empty_or_comment(char *line)
1024{
1025 unsigned int i;
1026
1027 for (i = 0; i < strlen(line); i++) {
1028 if (line[i] == ';')
1029 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +01001030 if (line[i] == '#')
1031 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +01001032 if (!isspace(line[i]) && !iscntrl(line[i]))
1033 return 0;
1034 }
1035
1036 return 1;
1037}
1038
Jens Axboe313cb202006-12-21 09:50:00 +01001039/*
1040 * Check if mmap/mmaphuge has a :/foo/bar/file at the end. If so, return that.
1041 */
Jens Axboe1907dbc2007-03-12 11:44:28 +01001042static char *get_opt_postfix(const char *str)
Jens Axboe313cb202006-12-21 09:50:00 +01001043{
1044 char *p = strstr(str, ":");
1045
1046 if (!p)
1047 return NULL;
1048
1049 p++;
1050 strip_blank_front(&p);
1051 strip_blank_end(p);
1052 return strdup(p);
1053}
1054
Jens Axboeb4692822006-10-27 13:43:22 +02001055static int str_mem_cb(void *data, const char *mem)
Jens Axboeebac4652005-12-08 15:25:21 +01001056{
Jens Axboecb2c86f2006-10-26 13:48:34 +02001057 struct thread_data *td = data;
1058
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001059 if (td->mem_type == MEM_MMAPHUGE || td->mem_type == MEM_MMAP) {
Jens Axboe1907dbc2007-03-12 11:44:28 +01001060 td->mmapfile = get_opt_postfix(mem);
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001061 if (td->mem_type == MEM_MMAPHUGE && !td->mmapfile) {
Jens Axboed0bdaf42006-12-20 14:40:44 +01001062 log_err("fio: mmaphuge:/path/to/file\n");
1063 return 1;
1064 }
Jens Axboeebac4652005-12-08 15:25:21 +01001065 }
1066
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001067 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001068}
1069
Jens Axboee1f36502006-10-27 10:54:08 +02001070static int str_lockmem_cb(void fio_unused *data, unsigned long *val)
1071{
1072 mlock_size = *val;
1073 return 0;
1074}
1075
Jens Axboe34cfcda2006-11-03 14:00:45 +01001076#ifdef FIO_HAVE_IOPRIO
Jens Axboee1f36502006-10-27 10:54:08 +02001077static int str_prioclass_cb(void *data, unsigned int *val)
1078{
1079 struct thread_data *td = data;
1080
1081 td->ioprio |= *val << IOPRIO_CLASS_SHIFT;
1082 return 0;
1083}
1084
1085static int str_prio_cb(void *data, unsigned int *val)
1086{
1087 struct thread_data *td = data;
1088
1089 td->ioprio |= *val;
1090 return 0;
1091}
Jens Axboe34cfcda2006-11-03 14:00:45 +01001092#endif
Jens Axboee1f36502006-10-27 10:54:08 +02001093
1094static int str_exitall_cb(void)
1095{
1096 exitall_on_terminate = 1;
1097 return 0;
1098}
1099
1100static int str_cpumask_cb(void *data, unsigned int *val)
1101{
1102 struct thread_data *td = data;
1103
1104 fill_cpu_mask(td->cpumask, *val);
1105 return 0;
1106}
1107
Jens Axboe1907dbc2007-03-12 11:44:28 +01001108static int str_fst_cb(void *data, const char *str)
1109{
1110 struct thread_data *td = data;
1111 char *nr = get_opt_postfix(str);
1112
1113 td->file_service_nr = 1;
1114 if (nr)
1115 td->file_service_nr = atoi(nr);
1116
1117 return 0;
1118}
1119
Jens Axboeaf52b342007-03-13 10:07:47 +01001120static int str_filename_cb(void *data, const char *input)
1121{
1122 struct thread_data *td = data;
Jens Axboecae61952007-03-13 11:12:14 +01001123 char *fname, *str, *p;
Jens Axboeaf52b342007-03-13 10:07:47 +01001124
Jens Axboecae61952007-03-13 11:12:14 +01001125 p = str = strdup(input);
Jens Axboee13363e2007-03-13 11:18:57 +01001126
1127 strip_blank_front(&str);
1128 strip_blank_end(str);
1129
Jens Axboebbf6b542007-03-13 15:28:55 +01001130 if (!td->files_index)
1131 td->nr_files = 0;
1132
Jens Axboe0ad920e2007-03-13 11:06:45 +01001133 while ((fname = strsep(&str, ":")) != NULL) {
Jens Axboee13363e2007-03-13 11:18:57 +01001134 if (!strlen(fname))
1135 break;
Jens Axboeaf52b342007-03-13 10:07:47 +01001136 add_file(td, fname);
Jens Axboebbf6b542007-03-13 15:28:55 +01001137 td->nr_files++;
Jens Axboe0ad920e2007-03-13 11:06:45 +01001138 }
Jens Axboeaf52b342007-03-13 10:07:47 +01001139
Jens Axboecae61952007-03-13 11:12:14 +01001140 free(p);
Jens Axboeaf52b342007-03-13 10:07:47 +01001141 return 0;
1142}
1143
1144static int str_directory_cb(void *data, const char fio_unused *str)
1145{
1146 struct thread_data *td = data;
1147 struct stat sb;
1148
1149 if (lstat(td->directory, &sb) < 0) {
1150 log_err("fio: %s is not a directory\n", td->directory);
1151 td_verror(td, errno, "lstat");
1152 return 1;
1153 }
1154 if (!S_ISDIR(sb.st_mode)) {
1155 log_err("fio: %s is not a directory\n", td->directory);
1156 return 1;
1157 }
1158
1159 return 0;
1160}
1161
Jens Axboebbf6b542007-03-13 15:28:55 +01001162static int str_opendir_cb(void *data, const char fio_unused *str)
1163{
1164 struct thread_data *td = data;
1165
1166 if (!td->files_index)
1167 td->nr_files = 0;
1168
1169 return add_dir_files(td, td->opendir);
1170}
1171
Jens Axboe07261982006-06-07 10:51:12 +02001172/*
1173 * This is our [ini] type file parser.
1174 */
Jens Axboe1e97cce2006-12-05 11:44:16 +01001175static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +01001176{
Jens Axboee1f36502006-10-27 10:54:08 +02001177 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +01001178 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +01001179 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +01001180 fpos_t off;
1181 FILE *f;
1182 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001183 int ret = 0, stonewall;
Jens Axboeebac4652005-12-08 15:25:21 +01001184
1185 f = fopen(file, "r");
1186 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +02001187 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +01001188 return 1;
1189 }
1190
1191 string = malloc(4096);
1192 name = malloc(256);
Jens Axboefee3bb42006-10-30 13:32:08 +01001193 memset(name, 0, 256);
Jens Axboeebac4652005-12-08 15:25:21 +01001194
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001195 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001196 do {
1197 p = fgets(string, 4095, f);
1198 if (!p)
Jens Axboe45410ac2006-06-07 11:10:39 +02001199 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001200 if (is_empty_or_comment(p))
1201 continue;
Jens Axboefee3bb42006-10-30 13:32:08 +01001202 if (sscanf(p, "[%255s]", name) != 1)
Jens Axboeebac4652005-12-08 15:25:21 +01001203 continue;
1204
1205 global = !strncmp(name, "global", 6);
1206
1207 name[strlen(name) - 1] = '\0';
1208
1209 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +02001210 if (!td) {
1211 ret = 1;
1212 break;
1213 }
Jens Axboeebac4652005-12-08 15:25:21 +01001214
Jens Axboe972cfd22006-06-09 11:08:56 +02001215 /*
1216 * Seperate multiple job files by a stonewall
1217 */
Jens Axboef9481912006-06-09 11:37:28 +02001218 if (!global && stonewall) {
Jens Axboe972cfd22006-06-09 11:08:56 +02001219 td->stonewall = stonewall;
1220 stonewall = 0;
1221 }
1222
Jens Axboeebac4652005-12-08 15:25:21 +01001223 fgetpos(f, &off);
1224 while ((p = fgets(string, 4096, f)) != NULL) {
1225 if (is_empty_or_comment(p))
1226 continue;
Jens Axboee1f36502006-10-27 10:54:08 +02001227
Jens Axboeb6754f92006-05-30 14:29:32 +02001228 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +01001229
1230 if (p[0] == '[')
1231 break;
1232
Jens Axboe4ae3f762006-05-30 13:35:14 +02001233 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +02001234
Jens Axboee1f36502006-10-27 10:54:08 +02001235 fgetpos(f, &off);
Jens Axboeebac4652005-12-08 15:25:21 +01001236
Jens Axboe45410ac2006-06-07 11:10:39 +02001237 /*
1238 * Don't break here, continue parsing options so we
1239 * dump all the bad ones. Makes trial/error fixups
1240 * easier on the user.
1241 */
Jens Axboe7c124ac2006-10-30 13:36:52 +01001242 ret |= parse_option(p, options, td);
Jens Axboeebac4652005-12-08 15:25:21 +01001243 }
Jens Axboeebac4652005-12-08 15:25:21 +01001244
Jens Axboe45410ac2006-06-07 11:10:39 +02001245 if (!ret) {
1246 fsetpos(f, &off);
1247 ret = add_job(td, name, 0);
Jens Axboeb1508cf2006-11-02 09:12:40 +01001248 } else {
1249 log_err("fio: job %s dropped\n", name);
1250 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +02001251 }
Jens Axboe7c124ac2006-10-30 13:36:52 +01001252 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001253
1254 free(string);
1255 free(name);
1256 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +02001257 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001258}
1259
1260static int fill_def_thread(void)
1261{
1262 memset(&def_thread, 0, sizeof(def_thread));
1263
1264 if (fio_getaffinity(getpid(), &def_thread.cpumask) == -1) {
1265 perror("sched_getaffinity");
1266 return 1;
1267 }
1268
1269 /*
Jens Axboeee738492007-01-10 11:23:16 +01001270 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +01001271 */
Jens Axboeee738492007-01-10 11:23:16 +01001272 fill_default_options(&def_thread, options);
1273
Jens Axboe972cfd22006-06-09 11:08:56 +02001274 def_thread.timeout = def_timeout;
Jens Axboeec94ec52006-10-20 10:59:19 +02001275 def_thread.write_bw_log = write_bw_log;
1276 def_thread.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +01001277
Jens Axboeebac4652005-12-08 15:25:21 +01001278#ifdef FIO_HAVE_DISK_UTIL
1279 def_thread.do_disk_util = 1;
1280#endif
1281
1282 return 0;
1283}
1284
Jens Axboe0ab8db82006-10-18 17:16:23 +02001285static void usage(void)
Jens Axboe4785f992006-05-26 03:59:10 +02001286{
1287 printf("%s\n", fio_version_string);
Jens Axboeb4692822006-10-27 13:43:22 +02001288 printf("\t--output\tWrite output to file\n");
1289 printf("\t--timeout\tRuntime in seconds\n");
1290 printf("\t--latency-log\tGenerate per-job latency logs\n");
1291 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
1292 printf("\t--minimal\tMinimal (terse) output\n");
1293 printf("\t--version\tPrint version info and exit\n");
Jens Axboefd28ca42007-01-09 21:20:13 +01001294 printf("\t--help\t\tPrint this page\n");
1295 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
Jens Axboe4785f992006-05-26 03:59:10 +02001296}
1297
Jens Axboe972cfd22006-06-09 11:08:56 +02001298static int parse_cmd_line(int argc, char *argv[])
Jens Axboeebac4652005-12-08 15:25:21 +01001299{
Jens Axboeb4692822006-10-27 13:43:22 +02001300 struct thread_data *td = NULL;
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001301 int c, ini_idx = 0, lidx, ret, dont_add_job = 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001302
Jens Axboe0be06ea2007-03-01 14:23:28 +01001303 while ((c = getopt_long_only(argc, argv, "", long_options, &lidx)) != -1) {
Jens Axboeebac4652005-12-08 15:25:21 +01001304 switch (c) {
Jens Axboeb4692822006-10-27 13:43:22 +02001305 case 't':
1306 def_timeout = atoi(optarg);
1307 break;
1308 case 'l':
1309 write_lat_log = 1;
1310 break;
1311 case 'w':
1312 write_bw_log = 1;
1313 break;
1314 case 'o':
1315 f_out = fopen(optarg, "w+");
1316 if (!f_out) {
1317 perror("fopen output");
1318 exit(1);
1319 }
1320 f_err = f_out;
1321 break;
1322 case 'm':
1323 terse_output = 1;
1324 break;
1325 case 'h':
1326 usage();
1327 exit(0);
Jens Axboefd28ca42007-01-09 21:20:13 +01001328 case 'c':
Jens Axboe29fc6af2007-01-09 21:22:02 +01001329 ret = show_cmd_help(options, optarg);
1330 exit(ret);
Jens Axboeb4692822006-10-27 13:43:22 +02001331 case 'v':
1332 printf("%s\n", fio_version_string);
1333 exit(0);
1334 case FIO_GETOPT_JOB: {
1335 const char *opt = long_options[lidx].name;
1336 char *val = optarg;
1337
Jens Axboec2b1e752006-10-30 09:03:13 +01001338 if (!strncmp(opt, "name", 4) && td) {
1339 ret = add_job(td, td->name ?: "fio", 0);
1340 if (ret) {
1341 put_job(td);
1342 return 0;
1343 }
1344 td = NULL;
1345 }
Jens Axboeb4692822006-10-27 13:43:22 +02001346 if (!td) {
Jens Axboe38d0adb2006-10-30 12:21:25 +01001347 int global = !strncmp(val, "global", 6);
Jens Axboec2b1e752006-10-30 09:03:13 +01001348
1349 td = get_new_job(global, &def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +02001350 if (!td)
1351 return 0;
1352 }
Jens Axboe38d0adb2006-10-30 12:21:25 +01001353
Jens Axboeb1508cf2006-11-02 09:12:40 +01001354 ret = parse_cmd_option(opt, val, options, td);
Jens Axboe78217df2007-02-23 11:18:30 +01001355 if (ret)
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001356 dont_add_job = 1;
Jens Axboeb4692822006-10-27 13:43:22 +02001357 break;
1358 }
1359 default:
Jens Axboeb4692822006-10-27 13:43:22 +02001360 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001361 }
1362 }
Jens Axboec9fad892006-05-27 17:26:50 +02001363
Jens Axboeb4692822006-10-27 13:43:22 +02001364 if (td) {
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001365 if (dont_add_job)
Jens Axboeb4692822006-10-27 13:43:22 +02001366 put_job(td);
Jens Axboeb1ec1da2007-02-23 10:29:16 +01001367 else {
1368 ret = add_job(td, td->name ?: "fio", 0);
1369 if (ret)
1370 put_job(td);
1371 }
Jens Axboe972cfd22006-06-09 11:08:56 +02001372 }
Jens Axboe774a6172006-08-24 08:44:26 +02001373
Jens Axboeb4692822006-10-27 13:43:22 +02001374 while (optind < argc) {
1375 ini_idx++;
1376 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1377 ini_file[ini_idx - 1] = strdup(argv[optind]);
1378 optind++;
Jens Axboeeb8bbf42006-06-08 21:40:11 +02001379 }
Jens Axboe972cfd22006-06-09 11:08:56 +02001380
1381 return ini_idx;
Jens Axboeebac4652005-12-08 15:25:21 +01001382}
1383
1384static void free_shm(void)
1385{
1386 struct shmid_ds sbuf;
1387
1388 if (threads) {
Jens Axboe2c0ecd22006-06-08 13:25:41 +02001389 shmdt((void *) threads);
Jens Axboeebac4652005-12-08 15:25:21 +01001390 threads = NULL;
1391 shmctl(shm_id, IPC_RMID, &sbuf);
1392 }
1393}
1394
Jens Axboe906c8d72006-06-13 09:37:56 +02001395/*
1396 * The thread area is shared between the main process and the job
1397 * threads/processes. So setup a shared memory segment that will hold
1398 * all the job info.
1399 */
Jens Axboeebac4652005-12-08 15:25:21 +01001400static int setup_thread_area(void)
1401{
1402 /*
1403 * 1024 is too much on some machines, scale max_jobs if
1404 * we get a failure that looks like too large a shm segment
1405 */
1406 do {
Jens Axboe906c8d72006-06-13 09:37:56 +02001407 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +01001408
Jens Axboe906c8d72006-06-13 09:37:56 +02001409 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +01001410 if (shm_id != -1)
1411 break;
1412 if (errno != EINVAL) {
1413 perror("shmget");
1414 break;
1415 }
1416
1417 max_jobs >>= 1;
1418 } while (max_jobs);
1419
1420 if (shm_id == -1)
1421 return 1;
1422
1423 threads = shmat(shm_id, NULL, 0);
1424 if (threads == (void *) -1) {
1425 perror("shmat");
1426 return 1;
1427 }
1428
1429 atexit(free_shm);
1430 return 0;
1431}
1432
Jens Axboeb4692822006-10-27 13:43:22 +02001433/*
1434 * Copy the fio options into the long options map, so we mirror
1435 * job and cmd line options.
1436 */
1437static void dupe_job_options(void)
1438{
1439 struct fio_option *o;
1440 unsigned int i;
1441
1442 i = 0;
1443 while (long_options[i].name)
1444 i++;
1445
1446 o = &options[0];
1447 while (o->name) {
1448 long_options[i].name = o->name;
1449 long_options[i].val = FIO_GETOPT_JOB;
1450 if (o->type == FIO_OPT_STR_SET)
1451 long_options[i].has_arg = no_argument;
1452 else
1453 long_options[i].has_arg = required_argument;
1454
1455 i++;
1456 o++;
1457 assert(i < FIO_JOB_OPTS + FIO_CMD_OPTS);
1458 }
1459}
1460
Jens Axboeebac4652005-12-08 15:25:21 +01001461int parse_options(int argc, char *argv[])
1462{
Jens Axboe972cfd22006-06-09 11:08:56 +02001463 int job_files, i;
1464
Jens Axboeb4692822006-10-27 13:43:22 +02001465 f_out = stdout;
1466 f_err = stderr;
1467
Jens Axboe13335dd2007-01-10 13:14:02 +01001468 options_init(options);
1469
Jens Axboeb4692822006-10-27 13:43:22 +02001470 dupe_job_options();
1471
Jens Axboeebac4652005-12-08 15:25:21 +01001472 if (setup_thread_area())
1473 return 1;
1474 if (fill_def_thread())
1475 return 1;
1476
Jens Axboe972cfd22006-06-09 11:08:56 +02001477 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +01001478
Jens Axboe972cfd22006-06-09 11:08:56 +02001479 for (i = 0; i < job_files; i++) {
1480 if (fill_def_thread())
1481 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001482 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +02001483 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +02001484 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +02001485 }
Jens Axboeebac4652005-12-08 15:25:21 +01001486
Jens Axboe88c6ed82006-06-09 11:28:10 +02001487 free(ini_file);
Jens Axboeb4692822006-10-27 13:43:22 +02001488
1489 if (!thread_number) {
1490 log_err("No jobs defined(s)\n");
Jens Axboeb4692822006-10-27 13:43:22 +02001491 return 1;
1492 }
1493
Jens Axboeebac4652005-12-08 15:25:21 +01001494 return 0;
1495}