blob: b044e28903a24f16bb549f647fba4a2b144b0cd1 [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>
Jens Axboeebac4652005-12-08 15:25:21 +010012#include <sys/ipc.h>
13#include <sys/shm.h>
14#include <sys/types.h>
15#include <sys/stat.h>
16
17#include "fio.h"
Jens Axboecb2c86f2006-10-26 13:48:34 +020018#include "parse.h"
Jens Axboeebac4652005-12-08 15:25:21 +010019
Jens Axboe214e1ec2007-03-15 10:48:13 +010020static char fio_version_string[] = "fio 1.14a";
21
Jens Axboeee738492007-01-10 11:23:16 +010022#define FIO_RANDSEED (0xb1899bedUL)
Jens Axboeebac4652005-12-08 15:25:21 +010023
Jens Axboe214e1ec2007-03-15 10:48:13 +010024static char **ini_file;
25static int max_jobs = MAX_JOBS;
Jens Axboee1f36502006-10-27 10:54:08 +020026
Jens Axboe214e1ec2007-03-15 10:48:13 +010027struct thread_data def_thread;
28struct thread_data *threads = NULL;
Jens Axboee1f36502006-10-27 10:54:08 +020029
Jens Axboe214e1ec2007-03-15 10:48:13 +010030int exitall_on_terminate = 0;
31int terse_output = 0;
32unsigned long long mlock_size = 0;
33FILE *f_out = NULL;
34FILE *f_err = NULL;
Jens Axboeee738492007-01-10 11:23:16 +010035
Jens Axboe214e1ec2007-03-15 10:48:13 +010036int write_bw_log = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020037
Jens Axboe214e1ec2007-03-15 10:48:13 +010038static int def_timeout = 0;
39static int write_lat_log = 0;
40
41static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020042
43/*
44 * Command line options. These will contain the above, plus a few
45 * extra that only pertain to fio itself and not jobs.
46 */
Jens Axboe214e1ec2007-03-15 10:48:13 +010047static struct option long_options[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020048 {
49 .name = "output",
50 .has_arg = required_argument,
51 .val = 'o',
52 },
53 {
54 .name = "timeout",
55 .has_arg = required_argument,
56 .val = 't',
57 },
58 {
59 .name = "latency-log",
60 .has_arg = required_argument,
61 .val = 'l',
62 },
63 {
64 .name = "bandwidth-log",
65 .has_arg = required_argument,
66 .val = 'b',
67 },
68 {
69 .name = "minimal",
70 .has_arg = optional_argument,
71 .val = 'm',
72 },
73 {
74 .name = "version",
75 .has_arg = no_argument,
76 .val = 'v',
77 },
78 {
Jens Axboefd28ca42007-01-09 21:20:13 +010079 .name = "help",
80 .has_arg = no_argument,
81 .val = 'h',
82 },
83 {
84 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +010085 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +010086 .val = 'c',
87 },
88 {
Jens Axboeb4692822006-10-27 13:43:22 +020089 .name = NULL,
90 },
91};
92
Joel Becker9728ce32007-03-01 08:24:39 +010093FILE *get_f_out()
94{
95 return f_out;
96}
97
98FILE *get_f_err()
99{
100 return f_err;
101}
102
Jens Axboe906c8d72006-06-13 09:37:56 +0200103/*
104 * Return a free job structure.
105 */
Jens Axboeebac4652005-12-08 15:25:21 +0100106static struct thread_data *get_new_job(int global, struct thread_data *parent)
107{
108 struct thread_data *td;
109
110 if (global)
111 return &def_thread;
112 if (thread_number >= max_jobs)
113 return NULL;
114
115 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200116 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100117
Jens Axboeebac4652005-12-08 15:25:21 +0100118 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100119 return td;
120}
121
122static void put_job(struct thread_data *td)
123{
Jens Axboe549577a2006-10-30 12:23:41 +0100124 if (td == &def_thread)
125 return;
126
Jens Axboe16edf252007-02-10 14:59:22 +0100127 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100128 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100129
Jens Axboeebac4652005-12-08 15:25:21 +0100130 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
131 thread_number--;
132}
133
Jens Axboe127f6862007-03-15 12:09:57 +0100134static int setup_rate(struct thread_data *td)
135{
136 unsigned long nr_reads_per_msec;
137 unsigned long long rate;
138 unsigned int bs;
139
140 if (!td->rate && !td->rate_iops)
141 return 0;
142
143 if (td_rw(td))
144 bs = td->rw_min_bs;
145 else if (td_read(td))
146 bs = td->min_bs[DDIR_READ];
147 else
148 bs = td->min_bs[DDIR_WRITE];
149
150 if (td->rate) {
151 rate = td->rate;
152 nr_reads_per_msec = (rate * 1024 * 1000LL) / bs;
153 } else
154 nr_reads_per_msec = td->rate_iops * 1000UL;
155
156 if (!nr_reads_per_msec) {
157 log_err("rate lower than supported\n");
158 return -1;
159 }
160
161 td->rate_usec_cycle = 1000000000ULL / nr_reads_per_msec;
162 td->rate_pending_usleep = 0;
163 return 0;
164}
165
Jens Axboedad915e2006-10-27 11:10:18 +0200166/*
167 * Lazy way of fixing up options that depend on each other. We could also
168 * define option callback handlers, but this is easier.
169 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100170static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200171{
Jens Axboee1f36502006-10-27 10:54:08 +0200172 if (!td->rwmixread && td->rwmixwrite)
173 td->rwmixread = 100 - td->rwmixwrite;
Jens Axboedad915e2006-10-27 11:10:18 +0200174
Jens Axboe076efc72006-10-27 11:24:25 +0200175 if (td->write_iolog_file && td->read_iolog_file) {
176 log_err("fio: read iolog overrides write_iolog\n");
177 free(td->write_iolog_file);
178 td->write_iolog_file = NULL;
179 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100180
181 if (td->io_ops->flags & FIO_SYNCIO)
182 td->iodepth = 1;
183 else {
184 if (!td->iodepth)
Jens Axboeb5af8292007-03-08 12:43:13 +0100185 td->iodepth = td->open_files;
Jens Axboe16b462a2006-10-30 12:35:18 +0100186 }
187
188 /*
189 * only really works for sequential io for now, and with 1 file
190 */
Jens Axboeb5af8292007-03-08 12:43:13 +0100191 if (td->zone_size && td_random(td) && td->open_files == 1)
Jens Axboe16b462a2006-10-30 12:35:18 +0100192 td->zone_size = 0;
193
194 /*
195 * Reads can do overwrites, we always need to pre-create the file
196 */
197 if (td_read(td) || td_rw(td))
198 td->overwrite = 1;
199
Jens Axboea00735e2006-11-03 08:58:08 +0100200 if (!td->min_bs[DDIR_READ])
201 td->min_bs[DDIR_READ]= td->bs[DDIR_READ];
202 if (!td->max_bs[DDIR_READ])
203 td->max_bs[DDIR_READ] = td->bs[DDIR_READ];
204 if (!td->min_bs[DDIR_WRITE])
Jens Axboe75e6f362006-11-03 08:17:09 +0100205 td->min_bs[DDIR_WRITE]= td->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100206 if (!td->max_bs[DDIR_WRITE])
Jens Axboe75e6f362006-11-03 08:17:09 +0100207 td->max_bs[DDIR_WRITE] = td->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100208
209 td->rw_min_bs = min(td->min_bs[DDIR_READ], td->min_bs[DDIR_WRITE]);
210
Jens Axboe9c60ce62007-03-15 09:14:47 +0100211 if (!td->file_size_high)
212 td->file_size_high = td->file_size_low;
213
Jens Axboe16b462a2006-10-30 12:35:18 +0100214 if (td_read(td) && !td_rw(td))
215 td->verify = 0;
Jens Axboebb8895e2006-10-30 15:14:48 +0100216
217 if (td->norandommap && td->verify != VERIFY_NONE) {
218 log_err("fio: norandommap given, verify disabled\n");
219 td->verify = VERIFY_NONE;
220 }
Jens Axboe690adba2006-10-30 15:25:09 +0100221 if (td->bs_unaligned && (td->odirect || td->io_ops->flags & FIO_RAWIO))
222 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100223
224 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100225 * thinktime_spin must be less than thinktime
226 */
227 if (td->thinktime_spin > td->thinktime)
228 td->thinktime_spin = td->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100229
230 /*
231 * The low water mark cannot be bigger than the iodepth
232 */
Jens Axboe9467b772007-02-27 19:56:43 +0100233 if (td->iodepth_low > td->iodepth || !td->iodepth_low) {
234 /*
235 * syslet work around - if the workload is sequential,
236 * we want to let the queue drain all the way down to
237 * avoid seeking between async threads
238 */
239 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
240 td->iodepth_low = 1;
241 else
242 td->iodepth_low = td->iodepth;
243 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100244
245 /*
246 * If batch number isn't set, default to the same as iodepth
247 */
248 if (td->iodepth_batch > td->iodepth || !td->iodepth_batch)
249 td->iodepth_batch = td->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100250
Jens Axboebbf6b542007-03-13 15:28:55 +0100251 if (td->nr_files > td->files_index)
Jens Axboe9f9214f2007-03-13 14:02:16 +0100252 td->nr_files = td->files_index;
253
254 if (td->open_files > td->nr_files || !td->open_files)
Jens Axboeb5af8292007-03-08 12:43:13 +0100255 td->open_files = td->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100256
257 if ((td->rate && td->rate_iops) || (td->ratemin && td->rate_iops_min)) {
258 log_err("fio: rate and rate_iops are mutually exclusive\n");
259 return 1;
260 }
261 if ((td->rate < td->ratemin) || (td->rate_iops < td->rate_iops_min)) {
262 log_err("fio: minimum rate exceeds rate\n");
263 return 1;
264 }
265
266 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200267}
268
Jens Axboe906c8d72006-06-13 09:37:56 +0200269/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100270 * This function leaks the buffer
271 */
272static char *to_kmg(unsigned int val)
273{
274 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100275 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100276 char *p = post;
277
Jens Axboe245142f2006-11-08 12:49:21 +0100278 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100279 if (val & 1023)
280 break;
281
282 val >>= 10;
283 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100284 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100285
286 snprintf(buf, 31, "%u%c", val, *p);
287 return buf;
288}
289
Jens Axboe09629a92007-03-09 09:00:06 +0100290/* External engines are specified by "external:name.o") */
291static const char *get_engine_name(const char *str)
292{
293 char *p = strstr(str, ":");
294
295 if (!p)
296 return str;
297
298 p++;
299 strip_blank_front(&p);
300 strip_blank_end(p);
301 return p;
302}
303
Jens Axboee132cba2007-03-14 14:23:54 +0100304static int exists_and_not_file(const char *filename)
305{
306 struct stat sb;
307
308 if (lstat(filename, &sb) == -1)
309 return 0;
310
311 if (S_ISREG(sb.st_mode))
312 return 0;
313
314 return 1;
315}
316
Jens Axboef8977ee2006-11-06 14:03:03 +0100317/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100318 * Initialize the various random states we need (random io, block size ranges,
319 * read/write mix, etc).
320 */
321static int init_random_state(struct thread_data *td)
322{
323 unsigned long seeds[6];
324 int fd, num_maps, blocks;
325 struct fio_file *f;
326 unsigned int i;
327
328 fd = open("/dev/urandom", O_RDONLY);
329 if (fd == -1) {
330 td_verror(td, errno, "open");
331 return 1;
332 }
333
334 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
335 td_verror(td, EIO, "read");
336 close(fd);
337 return 1;
338 }
339
340 close(fd);
341
342 os_random_seed(seeds[0], &td->bsrange_state);
343 os_random_seed(seeds[1], &td->verify_state);
344 os_random_seed(seeds[2], &td->rwmix_state);
345
346 if (td->file_service_type == FIO_FSERVICE_RANDOM)
347 os_random_seed(seeds[3], &td->next_file_state);
348
349 os_random_seed(seeds[5], &td->file_size_state);
350
351 if (!td_random(td))
352 return 0;
353
354 if (td->rand_repeatable)
355 seeds[4] = FIO_RANDSEED * td->thread_number;
356
357 if (!td->norandommap) {
358 for_each_file(td, f, i) {
359 blocks = (f->real_file_size + td->rw_min_bs - 1) / td->rw_min_bs;
360 num_maps = (blocks + BLOCKS_PER_MAP-1)/ BLOCKS_PER_MAP;
361 f->file_map = malloc(num_maps * sizeof(long));
362 if (!f->file_map) {
363 log_err("fio: failed allocating random map. If running a large number of jobs, try the 'norandommap' option\n");
364 return 1;
365 }
366 f->num_maps = num_maps;
367 memset(f->file_map, 0, num_maps * sizeof(long));
368 }
369 }
370
371 os_random_seed(seeds[4], &td->random_state);
372 return 0;
373}
374
375
376/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200377 * Adds a job to the list of things todo. Sanitizes the various options
378 * to make sure we don't have conflicts, and initializes various
379 * members of td.
380 */
Jens Axboe75154842006-06-01 13:56:09 +0200381static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100382{
Jens Axboe413dd452007-02-23 09:26:09 +0100383 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
384 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100385 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200386 struct fio_file *f;
Jens Axboe09629a92007-03-09 09:00:06 +0100387 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100388 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100389 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100390
Jens Axboeebac4652005-12-08 15:25:21 +0100391 /*
392 * the def_thread is just for options, it's not a real job
393 */
394 if (td == &def_thread)
395 return 0;
396
Jens Axboe09629a92007-03-09 09:00:06 +0100397 engine = get_engine_name(td->ioengine);
398 td->io_ops = load_ioengine(td, engine);
399 if (!td->io_ops) {
400 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100401 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100402 }
Jens Axboedf641192006-10-12 07:55:41 +0200403
Jens Axboe9cedf162007-03-12 11:29:30 +0100404 if (td->use_thread)
405 nr_thread++;
406 else
407 nr_process++;
408
Jens Axboe690adba2006-10-30 15:25:09 +0100409 if (td->odirect)
410 td->io_ops->flags |= FIO_RAWIO;
411
Jens Axboee132cba2007-03-14 14:23:54 +0100412 file_alloced = 0;
Jens Axboebbf6b542007-03-13 15:28:55 +0100413 if (!td->filename && !td->files_index) {
Jens Axboee132cba2007-03-14 14:23:54 +0100414 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100415
Jens Axboee132cba2007-03-14 14:23:54 +0100416 if (td->nr_files == 1 && exists_and_not_file(jobname))
417 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100418 else {
419 for (i = 0; i < td->nr_files; i++) {
Jens Axboee132cba2007-03-14 14:23:54 +0100420 sprintf(fname, "%s.%d.%d", jobname, td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100421 add_file(td, fname);
422 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100423 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100424 }
Jens Axboeebac4652005-12-08 15:25:21 +0100425
Jens Axboe4e991c22007-03-15 11:41:11 +0100426 if (fixup_options(td))
427 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100428
Jens Axboe53cdc682006-10-18 11:50:58 +0200429 for_each_file(td, f, i) {
Jens Axboeaf52b342007-03-13 10:07:47 +0100430 if (td->directory && f->filetype == FIO_TYPE_FILE) {
431 sprintf(fname, "%s/%s", td->directory, f->file_name);
432 f->file_name = strdup(fname);
433 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200434 }
435
Jens Axboe07739b52007-03-08 20:25:46 +0100436 td->mutex = fio_sem_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100437
Jens Axboe756867b2007-03-06 15:19:24 +0100438 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
439 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
440 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboeebac4652005-12-08 15:25:21 +0100441
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100442 if ((td->stonewall || td->numjobs > 1) && prev_group_jobs) {
443 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100444 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100445 }
Jens Axboeebac4652005-12-08 15:25:21 +0100446
447 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100448 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100449
Jens Axboe9c60ce62007-03-15 09:14:47 +0100450 if (init_random_state(td))
451 goto err;
452
Jens Axboeebac4652005-12-08 15:25:21 +0100453 if (setup_rate(td))
454 goto err;
455
Jens Axboeec94ec52006-10-20 10:59:19 +0200456 if (td->write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100457 setup_log(&td->ts.slat_log);
458 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100459 }
Jens Axboeec94ec52006-10-20 10:59:19 +0200460 if (td->write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100461 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100462
Jens Axboeb4692822006-10-27 13:43:22 +0200463 if (!td->name)
464 td->name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200465
Jens Axboec6ae0a52006-06-12 11:04:44 +0200466 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200467 if (!job_add_num) {
Jens Axboeba0fbe12007-03-09 14:34:23 +0100468 if (!strcmp(td->io_ops->name, "cpuio"))
Jens Axboe6d861442007-03-15 09:22:23 +0100469 log_info("%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->name, td->cpuload, td->cpucycle);
Jens Axboef8977ee2006-11-06 14:03:03 +0100470 else {
471 char *c1, *c2, *c3, *c4;
472
473 c1 = to_kmg(td->min_bs[DDIR_READ]);
474 c2 = to_kmg(td->max_bs[DDIR_READ]);
475 c3 = to_kmg(td->min_bs[DDIR_WRITE]);
476 c4 = to_kmg(td->max_bs[DDIR_WRITE]);
477
Jens Axboe6d861442007-03-15 09:22:23 +0100478 log_info("%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 +0100479
480 free(c1);
481 free(c2);
482 free(c3);
483 free(c4);
484 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200485 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100486 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200487 }
Jens Axboeebac4652005-12-08 15:25:21 +0100488
489 /*
490 * recurse add identical jobs, clear numjobs and stonewall options
491 * as they don't apply to sub-jobs
492 */
493 numjobs = td->numjobs;
494 while (--numjobs) {
495 struct thread_data *td_new = get_new_job(0, td);
496
497 if (!td_new)
498 goto err;
499
500 td_new->numjobs = 1;
501 td_new->stonewall = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100502
503 if (file_alloced) {
504 td_new->filename = NULL;
505 td_new->files_index = 0;
506 td_new->files = NULL;
507 }
508
Jens Axboe75154842006-06-01 13:56:09 +0200509 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100510
Jens Axboe75154842006-06-01 13:56:09 +0200511 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100512 goto err;
513 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100514
515 if (td->numjobs > 1) {
516 groupid++;
517 prev_group_jobs = 0;
518 }
519
Jens Axboeebac4652005-12-08 15:25:21 +0100520 return 0;
521err:
522 put_job(td);
523 return -1;
524}
525
Jens Axboeebac4652005-12-08 15:25:21 +0100526static int is_empty_or_comment(char *line)
527{
528 unsigned int i;
529
530 for (i = 0; i < strlen(line); i++) {
531 if (line[i] == ';')
532 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100533 if (line[i] == '#')
534 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100535 if (!isspace(line[i]) && !iscntrl(line[i]))
536 return 0;
537 }
538
539 return 1;
540}
541
Jens Axboe313cb202006-12-21 09:50:00 +0100542/*
Jens Axboe07261982006-06-07 10:51:12 +0200543 * This is our [ini] type file parser.
544 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100545static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100546{
Jens Axboee1f36502006-10-27 10:54:08 +0200547 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100548 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100549 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100550 fpos_t off;
551 FILE *f;
552 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200553 int ret = 0, stonewall;
Jens Axboeebac4652005-12-08 15:25:21 +0100554
555 f = fopen(file, "r");
556 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200557 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100558 return 1;
559 }
560
561 string = malloc(4096);
562 name = malloc(256);
Jens Axboefee3bb42006-10-30 13:32:08 +0100563 memset(name, 0, 256);
Jens Axboeebac4652005-12-08 15:25:21 +0100564
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200565 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100566 do {
567 p = fgets(string, 4095, f);
568 if (!p)
Jens Axboe45410ac2006-06-07 11:10:39 +0200569 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100570 if (is_empty_or_comment(p))
571 continue;
Jens Axboefee3bb42006-10-30 13:32:08 +0100572 if (sscanf(p, "[%255s]", name) != 1)
Jens Axboeebac4652005-12-08 15:25:21 +0100573 continue;
574
575 global = !strncmp(name, "global", 6);
576
577 name[strlen(name) - 1] = '\0';
578
579 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200580 if (!td) {
581 ret = 1;
582 break;
583 }
Jens Axboeebac4652005-12-08 15:25:21 +0100584
Jens Axboe972cfd22006-06-09 11:08:56 +0200585 /*
586 * Seperate multiple job files by a stonewall
587 */
Jens Axboef9481912006-06-09 11:37:28 +0200588 if (!global && stonewall) {
Jens Axboe972cfd22006-06-09 11:08:56 +0200589 td->stonewall = stonewall;
590 stonewall = 0;
591 }
592
Jens Axboeebac4652005-12-08 15:25:21 +0100593 fgetpos(f, &off);
594 while ((p = fgets(string, 4096, f)) != NULL) {
595 if (is_empty_or_comment(p))
596 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200597
Jens Axboeb6754f92006-05-30 14:29:32 +0200598 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100599
600 if (p[0] == '[')
601 break;
602
Jens Axboe4ae3f762006-05-30 13:35:14 +0200603 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200604
Jens Axboee1f36502006-10-27 10:54:08 +0200605 fgetpos(f, &off);
Jens Axboeebac4652005-12-08 15:25:21 +0100606
Jens Axboe45410ac2006-06-07 11:10:39 +0200607 /*
608 * Don't break here, continue parsing options so we
609 * dump all the bad ones. Makes trial/error fixups
610 * easier on the user.
611 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100612 ret |= fio_option_parse(td, p);
Jens Axboeebac4652005-12-08 15:25:21 +0100613 }
Jens Axboeebac4652005-12-08 15:25:21 +0100614
Jens Axboe45410ac2006-06-07 11:10:39 +0200615 if (!ret) {
616 fsetpos(f, &off);
617 ret = add_job(td, name, 0);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100618 } else {
619 log_err("fio: job %s dropped\n", name);
620 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200621 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100622 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100623
624 free(string);
625 free(name);
626 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200627 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100628}
629
630static int fill_def_thread(void)
631{
632 memset(&def_thread, 0, sizeof(def_thread));
633
634 if (fio_getaffinity(getpid(), &def_thread.cpumask) == -1) {
635 perror("sched_getaffinity");
636 return 1;
637 }
638
639 /*
Jens Axboeee738492007-01-10 11:23:16 +0100640 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100641 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100642 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100643
Jens Axboe972cfd22006-06-09 11:08:56 +0200644 def_thread.timeout = def_timeout;
Jens Axboeec94ec52006-10-20 10:59:19 +0200645 def_thread.write_bw_log = write_bw_log;
646 def_thread.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +0100647
Jens Axboeebac4652005-12-08 15:25:21 +0100648#ifdef FIO_HAVE_DISK_UTIL
649 def_thread.do_disk_util = 1;
650#endif
651
652 return 0;
653}
654
Jens Axboeebac4652005-12-08 15:25:21 +0100655static void free_shm(void)
656{
657 struct shmid_ds sbuf;
658
659 if (threads) {
Jens Axboe2c0ecd22006-06-08 13:25:41 +0200660 shmdt((void *) threads);
Jens Axboeebac4652005-12-08 15:25:21 +0100661 threads = NULL;
662 shmctl(shm_id, IPC_RMID, &sbuf);
663 }
664}
665
Jens Axboe906c8d72006-06-13 09:37:56 +0200666/*
667 * The thread area is shared between the main process and the job
668 * threads/processes. So setup a shared memory segment that will hold
669 * all the job info.
670 */
Jens Axboeebac4652005-12-08 15:25:21 +0100671static int setup_thread_area(void)
672{
673 /*
674 * 1024 is too much on some machines, scale max_jobs if
675 * we get a failure that looks like too large a shm segment
676 */
677 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200678 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100679
Jens Axboe906c8d72006-06-13 09:37:56 +0200680 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100681 if (shm_id != -1)
682 break;
683 if (errno != EINVAL) {
684 perror("shmget");
685 break;
686 }
687
688 max_jobs >>= 1;
689 } while (max_jobs);
690
691 if (shm_id == -1)
692 return 1;
693
694 threads = shmat(shm_id, NULL, 0);
695 if (threads == (void *) -1) {
696 perror("shmat");
697 return 1;
698 }
699
700 atexit(free_shm);
701 return 0;
702}
703
Jens Axboe214e1ec2007-03-15 10:48:13 +0100704static void usage(void)
Jens Axboeb4692822006-10-27 13:43:22 +0200705{
Jens Axboe214e1ec2007-03-15 10:48:13 +0100706 printf("%s\n", fio_version_string);
707 printf("\t--output\tWrite output to file\n");
708 printf("\t--timeout\tRuntime in seconds\n");
709 printf("\t--latency-log\tGenerate per-job latency logs\n");
710 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
711 printf("\t--minimal\tMinimal (terse) output\n");
712 printf("\t--version\tPrint version info and exit\n");
713 printf("\t--help\t\tPrint this page\n");
714 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200715}
716
Jens Axboe214e1ec2007-03-15 10:48:13 +0100717static int parse_cmd_line(int argc, char *argv[])
718{
719 struct thread_data *td = NULL;
720 int c, ini_idx = 0, lidx, ret, dont_add_job = 0;
721
722 while ((c = getopt_long_only(argc, argv, "", long_options, &lidx)) != -1) {
723 switch (c) {
724 case 't':
725 def_timeout = atoi(optarg);
726 break;
727 case 'l':
728 write_lat_log = 1;
729 break;
730 case 'w':
731 write_bw_log = 1;
732 break;
733 case 'o':
734 f_out = fopen(optarg, "w+");
735 if (!f_out) {
736 perror("fopen output");
737 exit(1);
738 }
739 f_err = f_out;
740 break;
741 case 'm':
742 terse_output = 1;
743 break;
744 case 'h':
745 usage();
746 exit(0);
747 case 'c':
748 exit(fio_show_option_help(optarg));
749 case 'v':
750 printf("%s\n", fio_version_string);
751 exit(0);
752 case FIO_GETOPT_JOB: {
753 const char *opt = long_options[lidx].name;
754 char *val = optarg;
755
756 if (!strncmp(opt, "name", 4) && td) {
757 ret = add_job(td, td->name ?: "fio", 0);
758 if (ret) {
759 put_job(td);
760 return 0;
761 }
762 td = NULL;
763 }
764 if (!td) {
765 int global = !strncmp(val, "global", 6);
766
767 td = get_new_job(global, &def_thread);
768 if (!td)
769 return 0;
770 }
771
772 ret = fio_cmd_option_parse(td, opt, val);
773 if (ret)
774 dont_add_job = 1;
775 break;
776 }
777 default:
778 break;
779 }
780 }
781
782 if (td) {
783 if (dont_add_job)
784 put_job(td);
785 else {
786 ret = add_job(td, td->name ?: "fio", 0);
787 if (ret)
788 put_job(td);
789 }
790 }
791
792 while (optind < argc) {
793 ini_idx++;
794 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
795 ini_file[ini_idx - 1] = strdup(argv[optind]);
796 optind++;
797 }
798
799 return ini_idx;
800}
801
802
Jens Axboeebac4652005-12-08 15:25:21 +0100803int parse_options(int argc, char *argv[])
804{
Jens Axboe972cfd22006-06-09 11:08:56 +0200805 int job_files, i;
806
Jens Axboeb4692822006-10-27 13:43:22 +0200807 f_out = stdout;
808 f_err = stderr;
809
Jens Axboe214e1ec2007-03-15 10:48:13 +0100810 fio_options_dup_and_init(long_options);
Jens Axboeb4692822006-10-27 13:43:22 +0200811
Jens Axboeebac4652005-12-08 15:25:21 +0100812 if (setup_thread_area())
813 return 1;
814 if (fill_def_thread())
815 return 1;
816
Jens Axboe972cfd22006-06-09 11:08:56 +0200817 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +0100818
Jens Axboe972cfd22006-06-09 11:08:56 +0200819 for (i = 0; i < job_files; i++) {
820 if (fill_def_thread())
821 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200822 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +0200823 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +0200824 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +0200825 }
Jens Axboeebac4652005-12-08 15:25:21 +0100826
Jens Axboe88c6ed82006-06-09 11:28:10 +0200827 free(ini_file);
Jens Axboeb4692822006-10-27 13:43:22 +0200828
829 if (!thread_number) {
830 log_err("No jobs defined(s)\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200831 return 1;
832 }
833
Jens Axboeebac4652005-12-08 15:25:21 +0100834 return 0;
835}