blob: ddca4c5f806b0227543241cfb1eca81d855b0a5f [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>
11#include <sys/ipc.h>
12#include <sys/shm.h>
13#include <sys/types.h>
14#include <sys/stat.h>
15
16#include "fio.h"
Jens Axboecb2c86f2006-10-26 13:48:34 +020017#include "parse.h"
Jens Axboeebac4652005-12-08 15:25:21 +010018
Jens Axboe906c8d72006-06-13 09:37:56 +020019/*
20 * The default options
21 */
Jens Axboe20dc95c2005-12-09 10:29:35 +010022#define DEF_BS (4096)
23#define DEF_TIMEOUT (0)
24#define DEF_RATE_CYCLE (1000)
25#define DEF_ODIRECT (1)
26#define DEF_IO_ENGINE (FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +010027#define DEF_IO_ENGINE_NAME "sync"
Jens Axboe20dc95c2005-12-09 10:29:35 +010028#define DEF_SEQUENTIAL (1)
29#define DEF_RAND_REPEAT (1)
30#define DEF_OVERWRITE (1)
Jens Axboe20dc95c2005-12-09 10:29:35 +010031#define DEF_INVALIDATE (1)
32#define DEF_SYNCIO (0)
33#define DEF_RANDSEED (0xb1899bedUL)
34#define DEF_BWAVGTIME (500)
35#define DEF_CREATE_SER (1)
Jens Axboeebac4652005-12-08 15:25:21 +010036#define DEF_CREATE_FSYNC (1)
Jens Axboe20dc95c2005-12-09 10:29:35 +010037#define DEF_LOOPS (1)
38#define DEF_VERIFY (0)
39#define DEF_STONEWALL (0)
40#define DEF_NUMJOBS (1)
41#define DEF_USE_THREAD (0)
42#define DEF_FILE_SIZE (1024 * 1024 * 1024UL)
43#define DEF_ZONE_SIZE (0)
44#define DEF_ZONE_SKIP (0)
Jens Axboea6ccc7b2006-06-02 10:14:15 +020045#define DEF_RWMIX_CYCLE (500)
46#define DEF_RWMIX_READ (50)
Jens Axboeb6f4d882006-06-02 10:32:51 +020047#define DEF_NICE (0)
Jens Axboe53cdc682006-10-18 11:50:58 +020048#define DEF_NR_FILES (1)
Jens Axboef6cbb262006-10-18 14:16:42 +020049#define DEF_UNLINK (0)
Jens Axboeec94ec52006-10-20 10:59:19 +020050#define DEF_WRITE_BW_LOG (0)
51#define DEF_WRITE_LAT_LOG (0)
Jens Axboeebac4652005-12-08 15:25:21 +010052
Jens Axboe972cfd22006-06-09 11:08:56 +020053static int def_timeout = DEF_TIMEOUT;
Jens Axboe972cfd22006-06-09 11:08:56 +020054
Jens Axboef4866ec2006-06-13 09:38:36 +020055static char fio_version_string[] = "fio 1.5";
Jens Axboeebac4652005-12-08 15:25:21 +010056
Jens Axboe972cfd22006-06-09 11:08:56 +020057static char **ini_file;
Jens Axboeebac4652005-12-08 15:25:21 +010058static int max_jobs = MAX_JOBS;
59
60struct thread_data def_thread;
61struct thread_data *threads = NULL;
62
63int rate_quit = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010064int exitall_on_terminate = 0;
Jens Axboec6ae0a52006-06-12 11:04:44 +020065int terse_output = 0;
Jens Axboec04f7ec2006-05-31 10:13:16 +020066unsigned long long mlock_size = 0;
Jens Axboeeb8bbf42006-06-08 21:40:11 +020067FILE *f_out = NULL;
68FILE *f_err = NULL;
Jens Axboeebac4652005-12-08 15:25:21 +010069
Jens Axboeec94ec52006-10-20 10:59:19 +020070static int write_lat_log = DEF_WRITE_LAT_LOG;
71static int write_bw_log = DEF_WRITE_BW_LOG;
72
Jens Axboe906c8d72006-06-13 09:37:56 +020073/*
74 * Return a free job structure.
75 */
Jens Axboeebac4652005-12-08 15:25:21 +010076static struct thread_data *get_new_job(int global, struct thread_data *parent)
77{
78 struct thread_data *td;
79
80 if (global)
81 return &def_thread;
82 if (thread_number >= max_jobs)
83 return NULL;
84
85 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +020086 *td = *parent;
87 td->name[0] = '\0';
Jens Axboeebac4652005-12-08 15:25:21 +010088
Jens Axboeebac4652005-12-08 15:25:21 +010089 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +010090 return td;
91}
92
93static void put_job(struct thread_data *td)
94{
95 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
96 thread_number--;
97}
98
Jens Axboe906c8d72006-06-13 09:37:56 +020099/*
100 * Adds a job to the list of things todo. Sanitizes the various options
101 * to make sure we don't have conflicts, and initializes various
102 * members of td.
103 */
Jens Axboe75154842006-06-01 13:56:09 +0200104static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100105{
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200106 char *ddir_str[] = { "read", "write", "randread", "randwrite",
107 "rw", NULL, "randrw" };
Jens Axboeebac4652005-12-08 15:25:21 +0100108 struct stat sb;
Jens Axboe53cdc682006-10-18 11:50:58 +0200109 int numjobs, ddir, i;
110 struct fio_file *f;
Jens Axboeebac4652005-12-08 15:25:21 +0100111
112#ifndef FIO_HAVE_LIBAIO
113 if (td->io_engine == FIO_LIBAIO) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200114 log_err("Linux libaio not available\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100115 return 1;
116 }
117#endif
118#ifndef FIO_HAVE_POSIXAIO
119 if (td->io_engine == FIO_POSIXAIO) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200120 log_err("posix aio not available\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100121 return 1;
122 }
123#endif
Jens Axboeebac4652005-12-08 15:25:21 +0100124
125 /*
126 * the def_thread is just for options, it's not a real job
127 */
128 if (td == &def_thread)
129 return 0;
130
Jens Axboedf641192006-10-12 07:55:41 +0200131 /*
132 * Set default io engine, if none set
133 */
134 if (!td->io_ops) {
135 td->io_ops = load_ioengine(td, DEF_IO_ENGINE_NAME);
136 if (!td->io_ops) {
137 log_err("default engine %s not there?\n", DEF_IO_ENGINE_NAME);
138 return 1;
139 }
140 }
141
Jens Axboe2866c822006-10-09 15:57:48 +0200142 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100143 td->iodepth = 1;
144 else {
145 if (!td->iodepth)
Jens Axboe841ddd12006-10-20 09:07:46 +0200146 td->iodepth = td->nr_files;
Jens Axboeebac4652005-12-08 15:25:21 +0100147 }
148
Jens Axboe20dc95c2005-12-09 10:29:35 +0100149 /*
Jens Axboe53cdc682006-10-18 11:50:58 +0200150 * only really works for sequential io for now, and with 1 file
Jens Axboe20dc95c2005-12-09 10:29:35 +0100151 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200152 if (td->zone_size && !td->sequential && td->nr_files == 1)
Jens Axboe20dc95c2005-12-09 10:29:35 +0100153 td->zone_size = 0;
154
Jens Axboe9cc935a2006-06-13 09:11:18 +0200155 /*
156 * Reads can do overwrites, we always need to pre-create the file
157 */
158 if (td_read(td) || td_rw(td))
159 td->overwrite = 1;
160
Jens Axboeebac4652005-12-08 15:25:21 +0100161 td->filetype = FIO_TYPE_FILE;
Jens Axboe0af7b542006-02-17 10:10:12 +0100162 if (!stat(jobname, &sb)) {
163 if (S_ISBLK(sb.st_mode))
164 td->filetype = FIO_TYPE_BD;
165 else if (S_ISCHR(sb.st_mode))
166 td->filetype = FIO_TYPE_CHAR;
167 }
Jens Axboeebac4652005-12-08 15:25:21 +0100168
Jens Axboeb2a15192006-10-18 14:10:42 +0200169 if (td->odirect)
170 td->io_ops->flags |= FIO_RAWIO;
171
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200172 if (td->filename)
173 td->nr_uniq_files = 1;
174 else
175 td->nr_uniq_files = td->nr_files;
176
177 if (td->filetype == FIO_TYPE_FILE || td->filename) {
Jens Axboee9c047a2006-06-07 21:13:04 +0200178 char tmp[PATH_MAX];
Jens Axboe53cdc682006-10-18 11:50:58 +0200179 int len = 0;
180 int i;
Jens Axboee9c047a2006-06-07 21:13:04 +0200181
Jens Axboeef899b62006-06-06 09:31:00 +0200182 if (td->directory && td->directory[0] != '\0')
Jens Axboe53cdc682006-10-18 11:50:58 +0200183 sprintf(tmp, "%s/", td->directory);
Jens Axboeebac4652005-12-08 15:25:21 +0100184
Jens Axboe53cdc682006-10-18 11:50:58 +0200185 td->files = malloc(sizeof(struct fio_file) * td->nr_files);
186
187 for_each_file(td, f, i) {
188 memset(f, 0, sizeof(*f));
189 f->fd = -1;
190
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200191 if (td->filename)
192 sprintf(tmp + len, "%s", td->filename);
193 else
194 sprintf(tmp + len, "%s.%d.%d", jobname, td->thread_number, i);
Jens Axboe53cdc682006-10-18 11:50:58 +0200195 f->file_name = strdup(tmp);
196 }
197 } else {
198 td->nr_files = 1;
199 td->files = malloc(sizeof(struct fio_file));
200 f = &td->files[0];
201
202 memset(f, 0, sizeof(*f));
203 f->fd = -1;
204 f->file_name = strdup(jobname);
205 }
206
207 for_each_file(td, f, i) {
208 f->file_size = td->total_file_size / td->nr_files;
209 f->file_offset = td->start_offset;
210 }
211
Jens Axboebbfd6b02006-06-07 19:42:54 +0200212 fio_sem_init(&td->mutex, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100213
214 td->clat_stat[0].min_val = td->clat_stat[1].min_val = ULONG_MAX;
215 td->slat_stat[0].min_val = td->slat_stat[1].min_val = ULONG_MAX;
216 td->bw_stat[0].min_val = td->bw_stat[1].min_val = ULONG_MAX;
217
218 if (td->min_bs == -1U)
219 td->min_bs = td->bs;
220 if (td->max_bs == -1U)
221 td->max_bs = td->bs;
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200222 if (td_read(td) && !td_rw(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100223 td->verify = 0;
224
225 if (td->stonewall && td->thread_number > 1)
226 groupid++;
227
228 td->groupid = groupid;
229
230 if (setup_rate(td))
231 goto err;
232
Jens Axboeec94ec52006-10-20 10:59:19 +0200233 if (td->write_lat_log) {
Jens Axboeebac4652005-12-08 15:25:21 +0100234 setup_log(&td->slat_log);
235 setup_log(&td->clat_log);
236 }
Jens Axboeec94ec52006-10-20 10:59:19 +0200237 if (td->write_bw_log)
Jens Axboeebac4652005-12-08 15:25:21 +0100238 setup_log(&td->bw_log);
239
Jens Axboe01452052006-06-07 10:29:47 +0200240 if (td->name[0] == '\0')
241 snprintf(td->name, sizeof(td->name)-1, "client%d", td->thread_number);
242
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200243 ddir = td->ddir + (!td->sequential << 1) + (td->iomix << 2);
Jens Axboe75154842006-06-01 13:56:09 +0200244
Jens Axboec6ae0a52006-06-12 11:04:44 +0200245 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200246 if (!job_add_num) {
Jens Axboe2866c822006-10-09 15:57:48 +0200247 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200248 fprintf(f_out, "%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->name, td->cpuload, td->cpucycle);
249 else
Jens Axboe2866c822006-10-09 15:57:48 +0200250 fprintf(f_out, "%s: (g=%d): rw=%s, odir=%d, bs=%d-%d, rate=%d, ioengine=%s, iodepth=%d\n", td->name, td->groupid, ddir_str[ddir], td->odirect, td->min_bs, td->max_bs, td->rate, td->io_ops->name, td->iodepth);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200251 } else if (job_add_num == 1)
Jens Axboec6ae0a52006-06-12 11:04:44 +0200252 fprintf(f_out, "...\n");
253 }
Jens Axboeebac4652005-12-08 15:25:21 +0100254
255 /*
256 * recurse add identical jobs, clear numjobs and stonewall options
257 * as they don't apply to sub-jobs
258 */
259 numjobs = td->numjobs;
260 while (--numjobs) {
261 struct thread_data *td_new = get_new_job(0, td);
262
263 if (!td_new)
264 goto err;
265
266 td_new->numjobs = 1;
267 td_new->stonewall = 0;
Jens Axboe75154842006-06-01 13:56:09 +0200268 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100269
Jens Axboe75154842006-06-01 13:56:09 +0200270 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100271 goto err;
272 }
273 return 0;
274err:
275 put_job(td);
276 return -1;
277}
278
Jens Axboe906c8d72006-06-13 09:37:56 +0200279/*
280 * Initialize the various random states we need (random io, block size ranges,
281 * read/write mix, etc).
282 */
Jens Axboeebac4652005-12-08 15:25:21 +0100283int init_random_state(struct thread_data *td)
284{
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200285 unsigned long seeds[4];
Jens Axboe53cdc682006-10-18 11:50:58 +0200286 int fd, num_maps, blocks, i;
Jens Axboe0ab8db82006-10-18 17:16:23 +0200287 struct fio_file *f;
Jens Axboeebac4652005-12-08 15:25:21 +0100288
Jens Axboe1ac267b2006-05-31 20:29:00 +0200289 fd = open("/dev/urandom", O_RDONLY);
Jens Axboeebac4652005-12-08 15:25:21 +0100290 if (fd == -1) {
291 td_verror(td, errno);
292 return 1;
293 }
294
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200295 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
Jens Axboeebac4652005-12-08 15:25:21 +0100296 td_verror(td, EIO);
297 close(fd);
298 return 1;
299 }
300
301 close(fd);
302
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200303 os_random_seed(seeds[0], &td->bsrange_state);
304 os_random_seed(seeds[1], &td->verify_state);
305 os_random_seed(seeds[2], &td->rwmix_state);
Jens Axboeebac4652005-12-08 15:25:21 +0100306
307 if (td->sequential)
308 return 0;
309
Jens Axboe9ebc27e2006-06-12 10:21:50 +0200310 if (td->rand_repeatable)
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200311 seeds[3] = DEF_RANDSEED;
Jens Axboeebac4652005-12-08 15:25:21 +0100312
Jens Axboe0ab8db82006-10-18 17:16:23 +0200313 for_each_file(td, f, i) {
Jens Axboe53cdc682006-10-18 11:50:58 +0200314 blocks = (f->file_size + td->min_bs - 1) / td->min_bs;
315 num_maps = blocks / BLOCKS_PER_MAP;
316 f->file_map = malloc(num_maps * sizeof(long));
317 f->num_maps = num_maps;
318 memset(f->file_map, 0, num_maps * sizeof(long));
319 }
Jens Axboeebac4652005-12-08 15:25:21 +0100320
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200321 os_random_seed(seeds[3], &td->random_state);
Jens Axboeebac4652005-12-08 15:25:21 +0100322 return 0;
323}
324
325static void fill_cpu_mask(os_cpu_mask_t cpumask, int cpu)
326{
327#ifdef FIO_HAVE_CPU_AFFINITY
328 unsigned int i;
329
330 CPU_ZERO(&cpumask);
331
332 for (i = 0; i < sizeof(int) * 8; i++) {
333 if ((1 << i) & cpu)
334 CPU_SET(i, &cpumask);
335 }
336#endif
337}
338
Jens Axboeebac4652005-12-08 15:25:21 +0100339static int is_empty_or_comment(char *line)
340{
341 unsigned int i;
342
343 for (i = 0; i < strlen(line); i++) {
344 if (line[i] == ';')
345 return 1;
346 if (!isspace(line[i]) && !iscntrl(line[i]))
347 return 0;
348 }
349
350 return 1;
351}
352
Jens Axboecb2c86f2006-10-26 13:48:34 +0200353static int str_rw_cb(void *data, char *mem)
Jens Axboeebac4652005-12-08 15:25:21 +0100354{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200355 struct thread_data *td = data;
356
Jens Axboeebac4652005-12-08 15:25:21 +0100357 if (!strncmp(mem, "read", 4) || !strncmp(mem, "0", 1)) {
358 td->ddir = DDIR_READ;
359 td->sequential = 1;
360 return 0;
361 } else if (!strncmp(mem, "randread", 8)) {
362 td->ddir = DDIR_READ;
363 td->sequential = 0;
364 return 0;
365 } else if (!strncmp(mem, "write", 5) || !strncmp(mem, "1", 1)) {
366 td->ddir = DDIR_WRITE;
367 td->sequential = 1;
368 return 0;
369 } else if (!strncmp(mem, "randwrite", 9)) {
370 td->ddir = DDIR_WRITE;
371 td->sequential = 0;
372 return 0;
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200373 } else if (!strncmp(mem, "rw", 2)) {
374 td->ddir = 0;
375 td->iomix = 1;
376 td->sequential = 1;
377 return 0;
378 } else if (!strncmp(mem, "randrw", 6)) {
379 td->ddir = 0;
380 td->iomix = 1;
381 td->sequential = 0;
382 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100383 }
384
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200385 log_err("fio: data direction: read, write, randread, randwrite, rw, randrw\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100386 return 1;
387}
388
Jens Axboecb2c86f2006-10-26 13:48:34 +0200389static int str_verify_cb(void *data, char *mem)
Jens Axboeebac4652005-12-08 15:25:21 +0100390{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200391 struct thread_data *td = data;
392
Jens Axboeebac4652005-12-08 15:25:21 +0100393 if (!strncmp(mem, "0", 1)) {
394 td->verify = VERIFY_NONE;
395 return 0;
396 } else if (!strncmp(mem, "md5", 3) || !strncmp(mem, "1", 1)) {
397 td->verify = VERIFY_MD5;
398 return 0;
399 } else if (!strncmp(mem, "crc32", 5)) {
400 td->verify = VERIFY_CRC32;
401 return 0;
402 }
403
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200404 log_err("fio: verify types: md5, crc32\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100405 return 1;
406}
407
Jens Axboecb2c86f2006-10-26 13:48:34 +0200408static int str_mem_cb(void *data, char *mem)
Jens Axboeebac4652005-12-08 15:25:21 +0100409{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200410 struct thread_data *td = data;
411
Jens Axboeebac4652005-12-08 15:25:21 +0100412 if (!strncmp(mem, "malloc", 6)) {
413 td->mem_type = MEM_MALLOC;
414 return 0;
415 } else if (!strncmp(mem, "shm", 3)) {
416 td->mem_type = MEM_SHM;
417 return 0;
418 } else if (!strncmp(mem, "mmap", 4)) {
419 td->mem_type = MEM_MMAP;
420 return 0;
421 }
422
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200423 log_err("fio: mem type: malloc, shm, mmap\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100424 return 1;
425}
426
Jens Axboecb2c86f2006-10-26 13:48:34 +0200427static int str_ioengine_cb(void *data, char *str)
Jens Axboeebac4652005-12-08 15:25:21 +0100428{
Jens Axboecb2c86f2006-10-26 13:48:34 +0200429 struct thread_data *td = data;
430
Jens Axboe2866c822006-10-09 15:57:48 +0200431 td->io_ops = load_ioengine(td, str);
432 if (td->io_ops)
Jens Axboeebac4652005-12-08 15:25:21 +0100433 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100434
Jens Axboeb990b5c2006-09-14 09:48:22 +0200435 log_err("fio: ioengine: { linuxaio, aio, libaio }, posixaio, sync, mmap, sgio, splice, cpu\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100436 return 1;
437}
438
Jens Axboe07261982006-06-07 10:51:12 +0200439/*
440 * This is our [ini] type file parser.
441 */
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200442int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100443{
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200444 unsigned int prioclass, prio, cpu, global, il;
Jens Axboeebac4652005-12-08 15:25:21 +0100445 unsigned long long ull;
446 unsigned long ul1, ul2;
447 struct thread_data *td;
Jens Axboeef899b62006-06-06 09:31:00 +0200448 char *string, *name, *tmpbuf;
Jens Axboeebac4652005-12-08 15:25:21 +0100449 fpos_t off;
450 FILE *f;
451 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200452 int ret = 0, stonewall;
Jens Axboeebac4652005-12-08 15:25:21 +0100453
454 f = fopen(file, "r");
455 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200456 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100457 return 1;
458 }
459
460 string = malloc(4096);
461 name = malloc(256);
Jens Axboeef899b62006-06-06 09:31:00 +0200462 tmpbuf = malloc(4096);
Jens Axboeebac4652005-12-08 15:25:21 +0100463
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200464 stonewall = stonewall_flag;
Jens Axboeebac4652005-12-08 15:25:21 +0100465 while ((p = fgets(string, 4096, f)) != NULL) {
Jens Axboe45410ac2006-06-07 11:10:39 +0200466 if (ret)
467 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100468 if (is_empty_or_comment(p))
469 continue;
470 if (sscanf(p, "[%s]", name) != 1)
471 continue;
472
473 global = !strncmp(name, "global", 6);
474
475 name[strlen(name) - 1] = '\0';
476
477 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200478 if (!td) {
479 ret = 1;
480 break;
481 }
Jens Axboeebac4652005-12-08 15:25:21 +0100482
Jens Axboe972cfd22006-06-09 11:08:56 +0200483 /*
484 * Seperate multiple job files by a stonewall
485 */
Jens Axboef9481912006-06-09 11:37:28 +0200486 if (!global && stonewall) {
Jens Axboe972cfd22006-06-09 11:08:56 +0200487 td->stonewall = stonewall;
488 stonewall = 0;
489 }
490
Jens Axboeebac4652005-12-08 15:25:21 +0100491 fgetpos(f, &off);
492 while ((p = fgets(string, 4096, f)) != NULL) {
493 if (is_empty_or_comment(p))
494 continue;
495 if (strstr(p, "["))
496 break;
Jens Axboeb6754f92006-05-30 14:29:32 +0200497 strip_blank_front(&p);
Jens Axboe4ae3f762006-05-30 13:35:14 +0200498 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200499
Jens Axboeebac4652005-12-08 15:25:21 +0100500 if (!check_int(p, "prio", &prio)) {
501#ifndef FIO_HAVE_IOPRIO
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200502 log_err("io priorities not available\n");
Jens Axboe45410ac2006-06-07 11:10:39 +0200503 ret = 1;
504 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100505#endif
Jens Axboe8756e4d2006-05-27 20:24:53 +0200506 td->ioprio |= prio;
Jens Axboeebac4652005-12-08 15:25:21 +0100507 fgetpos(f, &off);
508 continue;
509 }
510 if (!check_int(p, "prioclass", &prioclass)) {
511#ifndef FIO_HAVE_IOPRIO
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200512 log_err("io priorities not available\n");
Jens Axboe45410ac2006-06-07 11:10:39 +0200513 ret = 1;
514 break;
Jens Axboe5c4e1db2006-06-07 14:17:08 +0200515#else
Jens Axboe8756e4d2006-05-27 20:24:53 +0200516 td->ioprio |= prioclass << IOPRIO_CLASS_SHIFT;
Jens Axboeebac4652005-12-08 15:25:21 +0100517 fgetpos(f, &off);
518 continue;
Jens Axboe5c4e1db2006-06-07 14:17:08 +0200519#endif
Jens Axboeebac4652005-12-08 15:25:21 +0100520 }
Jens Axboee9c047a2006-06-07 21:13:04 +0200521 if (!check_int(p, "direct", &il)) {
522 td->odirect = il;
Jens Axboeebac4652005-12-08 15:25:21 +0100523 fgetpos(f, &off);
524 continue;
525 }
Jens Axboe9ebc27e2006-06-12 10:21:50 +0200526 if (!check_int(p, "rand_repeatable", &il)) {
527 td->rand_repeatable = il;
528 fgetpos(f, &off);
529 continue;
530 }
Jens Axboeebac4652005-12-08 15:25:21 +0100531 if (!check_int(p, "rate", &td->rate)) {
532 fgetpos(f, &off);
533 continue;
534 }
535 if (!check_int(p, "ratemin", &td->ratemin)) {
536 fgetpos(f, &off);
537 continue;
538 }
539 if (!check_int(p, "ratecycle", &td->ratecycle)) {
540 fgetpos(f, &off);
541 continue;
542 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200543 if (!check_int(p, "cpuload", &td->cpuload)) {
544 fgetpos(f, &off);
545 continue;
546 }
547 if (!check_int(p, "cpuchunks", &td->cpucycle)) {
548 fgetpos(f, &off);
549 continue;
550 }
Jens Axboeebac4652005-12-08 15:25:21 +0100551 if (!check_int(p, "thinktime", &td->thinktime)) {
552 fgetpos(f, &off);
553 continue;
554 }
555 if (!check_int(p, "cpumask", &cpu)) {
556#ifndef FIO_HAVE_CPU_AFFINITY
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200557 log_err("cpu affinity not available\n");
Jens Axboe45410ac2006-06-07 11:10:39 +0200558 ret = 1;
559 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100560#endif
561 fill_cpu_mask(td->cpumask, cpu);
562 fgetpos(f, &off);
563 continue;
564 }
565 if (!check_int(p, "fsync", &td->fsync_blocks)) {
566 fgetpos(f, &off);
Jens Axboefc1a4712006-05-30 13:04:05 +0200567 td->end_fsync = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100568 continue;
569 }
570 if (!check_int(p, "startdelay", &td->start_delay)) {
571 fgetpos(f, &off);
572 continue;
573 }
Jens Axboe906c8d72006-06-13 09:37:56 +0200574 if (!check_str_time(p, "timeout", &ull)) {
Jens Axboeaf959a72006-07-13 14:36:02 -0700575 td->timeout = ull;
Jens Axboeebac4652005-12-08 15:25:21 +0100576 fgetpos(f, &off);
577 continue;
578 }
Jens Axboee9c047a2006-06-07 21:13:04 +0200579 if (!check_int(p, "invalidate", &il)) {
580 td->invalidate_cache = il;
Jens Axboeebac4652005-12-08 15:25:21 +0100581 fgetpos(f, &off);
582 continue;
583 }
584 if (!check_int(p, "iodepth", &td->iodepth)) {
585 fgetpos(f, &off);
586 continue;
587 }
Jens Axboee9c047a2006-06-07 21:13:04 +0200588 if (!check_int(p, "sync", &il)) {
589 td->sync_io = il;
Jens Axboeebac4652005-12-08 15:25:21 +0100590 fgetpos(f, &off);
591 continue;
592 }
593 if (!check_int(p, "bwavgtime", &td->bw_avg_time)) {
594 fgetpos(f, &off);
595 continue;
596 }
Jens Axboee9c047a2006-06-07 21:13:04 +0200597 if (!check_int(p, "create_serialize", &il)) {
598 td->create_serialize = il;
Jens Axboeebac4652005-12-08 15:25:21 +0100599 fgetpos(f, &off);
600 continue;
601 }
Jens Axboee9c047a2006-06-07 21:13:04 +0200602 if (!check_int(p, "create_fsync", &il)) {
603 td->create_fsync = il;
Jens Axboeebac4652005-12-08 15:25:21 +0100604 fgetpos(f, &off);
605 continue;
606 }
Jens Axboee9c047a2006-06-07 21:13:04 +0200607 if (!check_int(p, "end_fsync", &il)) {
608 td->end_fsync = il;
Jens Axboefc1a4712006-05-30 13:04:05 +0200609 fgetpos(f, &off);
610 continue;
611 }
Jens Axboeebac4652005-12-08 15:25:21 +0100612 if (!check_int(p, "loops", &td->loops)) {
613 fgetpos(f, &off);
614 continue;
615 }
616 if (!check_int(p, "numjobs", &td->numjobs)) {
617 fgetpos(f, &off);
618 continue;
619 }
Jens Axboee9c047a2006-06-07 21:13:04 +0200620 if (!check_int(p, "overwrite", &il)) {
621 td->overwrite = il;
Jens Axboeebac4652005-12-08 15:25:21 +0100622 fgetpos(f, &off);
623 continue;
624 }
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200625 if (!check_int(p, "rwmixcycle", &td->rwmixcycle)) {
626 fgetpos(f, &off);
627 continue;
628 }
629 if (!check_int(p, "rwmixread", &il)) {
630 if (il > 100)
631 il = 100;
632 td->rwmixread = il;
633 fgetpos(f, &off);
634 continue;
635 }
636 if (!check_int(p, "rwmixwrite", &il)) {
637 if (il > 100)
638 il = 100;
639 td->rwmixread = 100 - il;
640 fgetpos(f, &off);
641 continue;
642 }
Jens Axboeb6f4d882006-06-02 10:32:51 +0200643 if (!check_int(p, "nice", &td->nice)) {
644 fgetpos(f, &off);
645 continue;
646 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200647 if (!check_int(p, "nrfiles", &td->nr_files)) {
648 fgetpos(f, &off);
649 continue;
650 }
Jens Axboe906c8d72006-06-13 09:37:56 +0200651 if (!check_range_bytes(p, "bsrange", &ul1, &ul2)) {
Jens Axboeebac4652005-12-08 15:25:21 +0100652 if (ul1 > ul2) {
653 td->max_bs = ul1;
654 td->min_bs = ul2;
655 } else {
656 td->max_bs = ul2;
657 td->min_bs = ul1;
658 }
659 fgetpos(f, &off);
660 continue;
661 }
Jens Axboe906c8d72006-06-13 09:37:56 +0200662 if (!check_str_bytes(p, "bs", &ull)) {
Jens Axboeebac4652005-12-08 15:25:21 +0100663 td->bs = ull;
664 fgetpos(f, &off);
665 continue;
666 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200667 if (!check_str_bytes(p, "size", &td->total_file_size)) {
Jens Axboeebac4652005-12-08 15:25:21 +0100668 fgetpos(f, &off);
669 continue;
670 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200671 if (!check_str_bytes(p, "offset", &td->start_offset)) {
Jens Axboeebac4652005-12-08 15:25:21 +0100672 fgetpos(f, &off);
673 continue;
674 }
Jens Axboe906c8d72006-06-13 09:37:56 +0200675 if (!check_str_bytes(p, "zonesize", &td->zone_size)) {
Jens Axboe20dc95c2005-12-09 10:29:35 +0100676 fgetpos(f, &off);
677 continue;
678 }
Jens Axboe906c8d72006-06-13 09:37:56 +0200679 if (!check_str_bytes(p, "zoneskip", &td->zone_skip)) {
Jens Axboe20dc95c2005-12-09 10:29:35 +0100680 fgetpos(f, &off);
681 continue;
682 }
Jens Axboe906c8d72006-06-13 09:37:56 +0200683 if (!check_str_bytes(p, "lockmem", &mlock_size)) {
Jens Axboec04f7ec2006-05-31 10:13:16 +0200684 fgetpos(f, &off);
685 continue;
686 }
Jens Axboeef899b62006-06-06 09:31:00 +0200687 if (!check_strstore(p, "directory", tmpbuf)) {
688 td->directory = strdup(tmpbuf);
Jens Axboeebac4652005-12-08 15:25:21 +0100689 fgetpos(f, &off);
690 continue;
691 }
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200692 if (!check_strstore(p, "filename", tmpbuf)) {
693 td->filename = strdup(tmpbuf);
694 fgetpos(f, &off);
695 continue;
696 }
Jens Axboe01452052006-06-07 10:29:47 +0200697 if (!check_strstore(p, "name", tmpbuf)) {
698 snprintf(td->name, sizeof(td->name)-1, "%s%d", tmpbuf, td->thread_number);
699 fgetpos(f, &off);
700 continue;
701 }
Jens Axboeebac4652005-12-08 15:25:21 +0100702 if (!check_str(p, "mem", str_mem_cb, td)) {
703 fgetpos(f, &off);
704 continue;
705 }
706 if (!check_str(p, "verify", str_verify_cb, td)) {
707 fgetpos(f, &off);
708 continue;
709 }
710 if (!check_str(p, "rw", str_rw_cb, td)) {
711 fgetpos(f, &off);
712 continue;
713 }
714 if (!check_str(p, "ioengine", str_ioengine_cb, td)) {
715 fgetpos(f, &off);
716 continue;
717 }
Jens Axboeebac4652005-12-08 15:25:21 +0100718 if (!check_strset(p, "exitall")) {
719 exitall_on_terminate = 1;
720 fgetpos(f, &off);
721 continue;
722 }
723 if (!check_strset(p, "stonewall")) {
724 td->stonewall = 1;
725 fgetpos(f, &off);
726 continue;
727 }
728 if (!check_strset(p, "thread")) {
729 td->use_thread = 1;
730 fgetpos(f, &off);
731 continue;
732 }
Jens Axboef6cbb262006-10-18 14:16:42 +0200733 if (!check_strset(p, "unlink")) {
734 td->unlink = 1;
735 fgetpos(f, &off);
736 continue;
737 }
Jens Axboeec94ec52006-10-20 10:59:19 +0200738 if (!check_strset(p, "write_bw_log")) {
739 td->write_bw_log = 1;
740 fgetpos(f, &off);
741 continue;
742 }
743 if (!check_strset(p, "write_lat_log")) {
744 td->write_lat_log = 1;
745 fgetpos(f, &off);
746 continue;
747 }
Jens Axboe80b9feb2006-06-07 10:34:49 +0200748 if (!check_strstore(p, "iolog", tmpbuf)) {
Jens Axboe4f693b92006-06-07 22:52:28 +0200749 if (td->write_iolog) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200750 log_err("fio: read iolog overrides given write_iolog\n");
Jens Axboeaf8c0b42006-06-07 22:33:17 +0200751 free(td->iolog_file);
Jens Axboe4f693b92006-06-07 22:52:28 +0200752 td->write_iolog = 0;
753 }
Jens Axboe80b9feb2006-06-07 10:34:49 +0200754 td->iolog_file = strdup(tmpbuf);
Jens Axboe843a7412006-06-01 21:14:21 -0700755 td->read_iolog = 1;
Jens Axboe843a7412006-06-01 21:14:21 -0700756 fgetpos(f, &off);
757 continue;
758 }
Jens Axboeaf8c0b42006-06-07 22:33:17 +0200759 if (!check_strstore(p, "write_iolog", tmpbuf)) {
760 if (!td->read_iolog) {
761 td->iolog_file = strdup(tmpbuf);
762 td->write_iolog = 1;
Jens Axboe4f693b92006-06-07 22:52:28 +0200763 } else
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200764 log_err("fio: read iolog overrides given write_iolog\n");
Jens Axboeaea47d42006-05-26 19:27:29 +0200765 fgetpos(f, &off);
766 continue;
767 }
Jens Axboe80b9feb2006-06-07 10:34:49 +0200768 if (!check_strstore(p, "exec_prerun", tmpbuf)) {
769 td->exec_prerun = strdup(tmpbuf);
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200770 fgetpos(f, &off);
771 continue;
772 }
Jens Axboe80b9feb2006-06-07 10:34:49 +0200773 if (!check_strstore(p, "exec_postrun", tmpbuf)) {
774 td->exec_postrun = strdup(tmpbuf);
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200775 fgetpos(f, &off);
776 continue;
777 }
Jens Axboe80b9feb2006-06-07 10:34:49 +0200778 if (!check_strstore(p, "ioscheduler", tmpbuf)) {
Jens Axboe22f78b32006-06-07 11:30:07 +0200779#ifndef FIO_HAVE_IOSCHED_SWITCH
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200780 log_err("io scheduler switching not available\n");
Jens Axboe22f78b32006-06-07 11:30:07 +0200781 ret = 1;
782 break;
783#else
Jens Axboe80b9feb2006-06-07 10:34:49 +0200784 td->ioscheduler = strdup(tmpbuf);
Jens Axboeda867742006-06-06 10:39:10 -0700785 fgetpos(f, &off);
786 continue;
Jens Axboe22f78b32006-06-07 11:30:07 +0200787#endif
Jens Axboeda867742006-06-06 10:39:10 -0700788 }
Jens Axboeebac4652005-12-08 15:25:21 +0100789
Jens Axboe45410ac2006-06-07 11:10:39 +0200790 /*
791 * Don't break here, continue parsing options so we
792 * dump all the bad ones. Makes trial/error fixups
793 * easier on the user.
794 */
Jens Axboeebac4652005-12-08 15:25:21 +0100795 printf("Client%d: bad option %s\n",td->thread_number,p);
Jens Axboe45410ac2006-06-07 11:10:39 +0200796 ret = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100797 }
Jens Axboeebac4652005-12-08 15:25:21 +0100798
Jens Axboe45410ac2006-06-07 11:10:39 +0200799 if (!ret) {
800 fsetpos(f, &off);
801 ret = add_job(td, name, 0);
802 }
803 if (ret)
804 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100805 }
806
807 free(string);
808 free(name);
Jens Axboeef899b62006-06-06 09:31:00 +0200809 free(tmpbuf);
Jens Axboeebac4652005-12-08 15:25:21 +0100810 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200811 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100812}
813
814static int fill_def_thread(void)
815{
816 memset(&def_thread, 0, sizeof(def_thread));
817
818 if (fio_getaffinity(getpid(), &def_thread.cpumask) == -1) {
819 perror("sched_getaffinity");
820 return 1;
821 }
822
823 /*
824 * fill globals
825 */
826 def_thread.ddir = DDIR_READ;
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200827 def_thread.iomix = 0;
Jens Axboe9ebc27e2006-06-12 10:21:50 +0200828 def_thread.bs = DEF_BS;
Jens Axboeebac4652005-12-08 15:25:21 +0100829 def_thread.min_bs = -1;
830 def_thread.max_bs = -1;
Jens Axboe9ebc27e2006-06-12 10:21:50 +0200831 def_thread.odirect = DEF_ODIRECT;
Jens Axboeebac4652005-12-08 15:25:21 +0100832 def_thread.ratecycle = DEF_RATE_CYCLE;
Jens Axboe9ebc27e2006-06-12 10:21:50 +0200833 def_thread.sequential = DEF_SEQUENTIAL;
Jens Axboe972cfd22006-06-09 11:08:56 +0200834 def_thread.timeout = def_timeout;
Jens Axboeebac4652005-12-08 15:25:21 +0100835 def_thread.overwrite = DEF_OVERWRITE;
836 def_thread.invalidate_cache = DEF_INVALIDATE;
837 def_thread.sync_io = DEF_SYNCIO;
838 def_thread.mem_type = MEM_MALLOC;
839 def_thread.bw_avg_time = DEF_BWAVGTIME;
840 def_thread.create_serialize = DEF_CREATE_SER;
841 def_thread.create_fsync = DEF_CREATE_FSYNC;
842 def_thread.loops = DEF_LOOPS;
843 def_thread.verify = DEF_VERIFY;
844 def_thread.stonewall = DEF_STONEWALL;
845 def_thread.numjobs = DEF_NUMJOBS;
846 def_thread.use_thread = DEF_USE_THREAD;
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200847 def_thread.rwmixcycle = DEF_RWMIX_CYCLE;
848 def_thread.rwmixread = DEF_RWMIX_READ;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200849 def_thread.nice = DEF_NICE;
Jens Axboe9ebc27e2006-06-12 10:21:50 +0200850 def_thread.rand_repeatable = DEF_RAND_REPEAT;
Jens Axboe53cdc682006-10-18 11:50:58 +0200851 def_thread.nr_files = DEF_NR_FILES;
Jens Axboef6cbb262006-10-18 14:16:42 +0200852 def_thread.unlink = DEF_UNLINK;
Jens Axboeec94ec52006-10-20 10:59:19 +0200853 def_thread.write_bw_log = write_bw_log;
854 def_thread.write_lat_log = write_lat_log;
Jens Axboeebac4652005-12-08 15:25:21 +0100855#ifdef FIO_HAVE_DISK_UTIL
856 def_thread.do_disk_util = 1;
857#endif
858
859 return 0;
860}
861
Jens Axboe0ab8db82006-10-18 17:16:23 +0200862static void usage(void)
Jens Axboe4785f992006-05-26 03:59:10 +0200863{
864 printf("%s\n", fio_version_string);
Jens Axboe47623c72006-06-12 10:23:28 +0200865 printf("\t-o Write output to file\n");
Jens Axboe4785f992006-05-26 03:59:10 +0200866 printf("\t-t Runtime in seconds\n");
Jens Axboe4785f992006-05-26 03:59:10 +0200867 printf("\t-l Generate per-job latency logs\n");
868 printf("\t-w Generate per-job bandwidth logs\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200869 printf("\t-m Minimal (terse) output\n");
Jens Axboe4785f992006-05-26 03:59:10 +0200870 printf("\t-v Print version info and exit\n");
871}
872
Jens Axboe972cfd22006-06-09 11:08:56 +0200873static int parse_cmd_line(int argc, char *argv[])
Jens Axboeebac4652005-12-08 15:25:21 +0100874{
Jens Axboe972cfd22006-06-09 11:08:56 +0200875 int c, idx = 1, ini_idx = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100876
Jens Axboe2e778412006-06-16 10:00:50 +0200877 while ((c = getopt(argc, argv, "t:o:lwvhm")) != EOF) {
Jens Axboeebac4652005-12-08 15:25:21 +0100878 switch (c) {
Jens Axboeebac4652005-12-08 15:25:21 +0100879 case 't':
Jens Axboe972cfd22006-06-09 11:08:56 +0200880 def_timeout = atoi(optarg);
Jens Axboe774a6172006-08-24 08:44:26 +0200881 idx = optind;
Jens Axboeebac4652005-12-08 15:25:21 +0100882 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100883 case 'l':
884 write_lat_log = 1;
Jens Axboe774a6172006-08-24 08:44:26 +0200885 idx = optind;
Jens Axboeebac4652005-12-08 15:25:21 +0100886 break;
887 case 'w':
888 write_bw_log = 1;
Jens Axboe774a6172006-08-24 08:44:26 +0200889 idx = optind;
Jens Axboeebac4652005-12-08 15:25:21 +0100890 break;
Jens Axboe9ebc27e2006-06-12 10:21:50 +0200891 case 'o':
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200892 f_out = fopen(optarg, "w+");
893 if (!f_out) {
894 perror("fopen output");
895 exit(1);
896 }
897 f_err = f_out;
Jens Axboe774a6172006-08-24 08:44:26 +0200898 idx = optind;
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200899 break;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200900 case 'm':
901 terse_output = 1;
Jens Axboe774a6172006-08-24 08:44:26 +0200902 idx = optind;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200903 break;
Jens Axboe4785f992006-05-26 03:59:10 +0200904 case 'h':
Jens Axboe0ab8db82006-10-18 17:16:23 +0200905 usage();
Jens Axboe4785f992006-05-26 03:59:10 +0200906 exit(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100907 case 'v':
908 printf("%s\n", fio_version_string);
909 exit(0);
910 }
911 }
Jens Axboec9fad892006-05-27 17:26:50 +0200912
Jens Axboe972cfd22006-06-09 11:08:56 +0200913 while (idx < argc) {
914 ini_idx++;
915 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
916 ini_file[ini_idx - 1] = strdup(argv[idx]);
917 idx++;
918 }
Jens Axboe774a6172006-08-24 08:44:26 +0200919
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200920 if (!f_out) {
921 f_out = stdout;
922 f_err = stderr;
923 }
Jens Axboe972cfd22006-06-09 11:08:56 +0200924
925 return ini_idx;
Jens Axboeebac4652005-12-08 15:25:21 +0100926}
927
928static void free_shm(void)
929{
930 struct shmid_ds sbuf;
931
932 if (threads) {
Jens Axboe2c0ecd22006-06-08 13:25:41 +0200933 shmdt((void *) threads);
Jens Axboeebac4652005-12-08 15:25:21 +0100934 threads = NULL;
935 shmctl(shm_id, IPC_RMID, &sbuf);
936 }
937}
938
Jens Axboe906c8d72006-06-13 09:37:56 +0200939/*
940 * The thread area is shared between the main process and the job
941 * threads/processes. So setup a shared memory segment that will hold
942 * all the job info.
943 */
Jens Axboeebac4652005-12-08 15:25:21 +0100944static int setup_thread_area(void)
945{
946 /*
947 * 1024 is too much on some machines, scale max_jobs if
948 * we get a failure that looks like too large a shm segment
949 */
950 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200951 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100952
Jens Axboe906c8d72006-06-13 09:37:56 +0200953 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100954 if (shm_id != -1)
955 break;
956 if (errno != EINVAL) {
957 perror("shmget");
958 break;
959 }
960
961 max_jobs >>= 1;
962 } while (max_jobs);
963
964 if (shm_id == -1)
965 return 1;
966
967 threads = shmat(shm_id, NULL, 0);
968 if (threads == (void *) -1) {
969 perror("shmat");
970 return 1;
971 }
972
973 atexit(free_shm);
974 return 0;
975}
976
977int parse_options(int argc, char *argv[])
978{
Jens Axboe972cfd22006-06-09 11:08:56 +0200979 int job_files, i;
980
Jens Axboeebac4652005-12-08 15:25:21 +0100981 if (setup_thread_area())
982 return 1;
983 if (fill_def_thread())
984 return 1;
985
Jens Axboe972cfd22006-06-09 11:08:56 +0200986 job_files = parse_cmd_line(argc, argv);
987 if (!job_files) {
988 log_err("Need job file(s)\n");
Jens Axboe0ab8db82006-10-18 17:16:23 +0200989 usage();
Jens Axboeebac4652005-12-08 15:25:21 +0100990 return 1;
991 }
992
Jens Axboe972cfd22006-06-09 11:08:56 +0200993 for (i = 0; i < job_files; i++) {
994 if (fill_def_thread())
995 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200996 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +0200997 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +0200998 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +0200999 }
Jens Axboeebac4652005-12-08 15:25:21 +01001000
Jens Axboe88c6ed82006-06-09 11:28:10 +02001001 free(ini_file);
Jens Axboeebac4652005-12-08 15:25:21 +01001002 return 0;
1003}