blob: e38d67786a1a80284c1886a90b3e083a19afc5e1 [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
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100140 if (!td->o.rate && !td->o.rate_iops)
Jens Axboe127f6862007-03-15 12:09:57 +0100141 return 0;
142
143 if (td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100144 bs = td->o.rw_min_bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100145 else if (td_read(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100146 bs = td->o.min_bs[DDIR_READ];
Jens Axboe127f6862007-03-15 12:09:57 +0100147 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100148 bs = td->o.min_bs[DDIR_WRITE];
Jens Axboe127f6862007-03-15 12:09:57 +0100149
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100150 if (td->o.rate) {
151 rate = td->o.rate;
Jens Axboe127f6862007-03-15 12:09:57 +0100152 nr_reads_per_msec = (rate * 1024 * 1000LL) / bs;
153 } else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100154 nr_reads_per_msec = td->o.rate_iops * 1000UL;
Jens Axboe127f6862007-03-15 12:09:57 +0100155
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 Axboe2dc1bbe2007-03-15 15:01:33 +0100172 struct thread_options *o = &td->o;
Jens Axboedad915e2006-10-27 11:10:18 +0200173
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100174 if (!o->rwmixread && o->rwmixwrite)
175 o->rwmixread = 100 - o->rwmixwrite;
176
177 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200178 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100179 free(o->write_iolog_file);
180 o->write_iolog_file = NULL;
Jens Axboe076efc72006-10-27 11:24:25 +0200181 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100182
183 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100184 o->iodepth = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100185 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100186 if (!o->iodepth)
187 o->iodepth = o->open_files;
Jens Axboe16b462a2006-10-30 12:35:18 +0100188 }
189
190 /*
191 * only really works for sequential io for now, and with 1 file
192 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100193 if (o->zone_size && td_random(td) && o->open_files == 1)
194 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100195
196 /*
197 * Reads can do overwrites, we always need to pre-create the file
198 */
199 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100200 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100201
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100202 if (!o->min_bs[DDIR_READ])
203 o->min_bs[DDIR_READ]= o->bs[DDIR_READ];
204 if (!o->max_bs[DDIR_READ])
205 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
206 if (!o->min_bs[DDIR_WRITE])
207 o->min_bs[DDIR_WRITE]= o->bs[DDIR_WRITE];
208 if (!o->max_bs[DDIR_WRITE])
209 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100210
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100211 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100212
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100213 if (!o->file_size_high)
214 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100215
Jens Axboe16b462a2006-10-30 12:35:18 +0100216 if (td_read(td) && !td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100217 o->verify = 0;
Jens Axboebb8895e2006-10-30 15:14:48 +0100218
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100219 if (o->norandommap && o->verify != VERIFY_NONE) {
Jens Axboebb8895e2006-10-30 15:14:48 +0100220 log_err("fio: norandommap given, verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100221 o->verify = VERIFY_NONE;
Jens Axboebb8895e2006-10-30 15:14:48 +0100222 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100223 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100224 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100225
226 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100227 * thinktime_spin must be less than thinktime
228 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100229 if (o->thinktime_spin > o->thinktime)
230 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100231
232 /*
233 * The low water mark cannot be bigger than the iodepth
234 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100235 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100236 /*
237 * syslet work around - if the workload is sequential,
238 * we want to let the queue drain all the way down to
239 * avoid seeking between async threads
240 */
241 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100242 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100243 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100244 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100245 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100246
247 /*
248 * If batch number isn't set, default to the same as iodepth
249 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100250 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
251 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100252
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100253 if (o->nr_files > td->files_index)
254 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100255
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100256 if (o->open_files > o->nr_files || !o->open_files)
257 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100258
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100259 if ((o->rate && o->rate_iops) || (o->ratemin && o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100260 log_err("fio: rate and rate_iops are mutually exclusive\n");
261 return 1;
262 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100263 if ((o->rate < o->ratemin) || (o->rate_iops < o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100264 log_err("fio: minimum rate exceeds rate\n");
265 return 1;
266 }
267
268 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200269}
270
Jens Axboe906c8d72006-06-13 09:37:56 +0200271/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100272 * This function leaks the buffer
273 */
274static char *to_kmg(unsigned int val)
275{
276 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100277 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100278 char *p = post;
279
Jens Axboe245142f2006-11-08 12:49:21 +0100280 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100281 if (val & 1023)
282 break;
283
284 val >>= 10;
285 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100286 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100287
288 snprintf(buf, 31, "%u%c", val, *p);
289 return buf;
290}
291
Jens Axboe09629a92007-03-09 09:00:06 +0100292/* External engines are specified by "external:name.o") */
293static const char *get_engine_name(const char *str)
294{
295 char *p = strstr(str, ":");
296
297 if (!p)
298 return str;
299
300 p++;
301 strip_blank_front(&p);
302 strip_blank_end(p);
303 return p;
304}
305
Jens Axboee132cba2007-03-14 14:23:54 +0100306static int exists_and_not_file(const char *filename)
307{
308 struct stat sb;
309
310 if (lstat(filename, &sb) == -1)
311 return 0;
312
313 if (S_ISREG(sb.st_mode))
314 return 0;
315
316 return 1;
317}
318
Jens Axboef8977ee2006-11-06 14:03:03 +0100319/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100320 * Initialize the various random states we need (random io, block size ranges,
321 * read/write mix, etc).
322 */
323static int init_random_state(struct thread_data *td)
324{
325 unsigned long seeds[6];
326 int fd, num_maps, blocks;
327 struct fio_file *f;
328 unsigned int i;
329
330 fd = open("/dev/urandom", O_RDONLY);
331 if (fd == -1) {
332 td_verror(td, errno, "open");
333 return 1;
334 }
335
336 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
337 td_verror(td, EIO, "read");
338 close(fd);
339 return 1;
340 }
341
342 close(fd);
343
344 os_random_seed(seeds[0], &td->bsrange_state);
345 os_random_seed(seeds[1], &td->verify_state);
346 os_random_seed(seeds[2], &td->rwmix_state);
347
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100348 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100349 os_random_seed(seeds[3], &td->next_file_state);
350
351 os_random_seed(seeds[5], &td->file_size_state);
352
353 if (!td_random(td))
354 return 0;
355
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100356 if (td->o.rand_repeatable)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100357 seeds[4] = FIO_RANDSEED * td->thread_number;
358
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100359 if (!td->o.norandommap) {
Jens Axboe9c60ce62007-03-15 09:14:47 +0100360 for_each_file(td, f, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100361 blocks = (f->real_file_size + td->o.rw_min_bs - 1) / td->o.rw_min_bs;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100362 num_maps = (blocks + BLOCKS_PER_MAP-1)/ BLOCKS_PER_MAP;
363 f->file_map = malloc(num_maps * sizeof(long));
364 if (!f->file_map) {
365 log_err("fio: failed allocating random map. If running a large number of jobs, try the 'norandommap' option\n");
366 return 1;
367 }
368 f->num_maps = num_maps;
369 memset(f->file_map, 0, num_maps * sizeof(long));
370 }
371 }
372
373 os_random_seed(seeds[4], &td->random_state);
374 return 0;
375}
376
377
378/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200379 * Adds a job to the list of things todo. Sanitizes the various options
380 * to make sure we don't have conflicts, and initializes various
381 * members of td.
382 */
Jens Axboe75154842006-06-01 13:56:09 +0200383static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100384{
Jens Axboe413dd452007-02-23 09:26:09 +0100385 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
386 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100387 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200388 struct fio_file *f;
Jens Axboe09629a92007-03-09 09:00:06 +0100389 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100390 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100391 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100392
Jens Axboeebac4652005-12-08 15:25:21 +0100393 /*
394 * the def_thread is just for options, it's not a real job
395 */
396 if (td == &def_thread)
397 return 0;
398
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100399 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100400 td->io_ops = load_ioengine(td, engine);
401 if (!td->io_ops) {
402 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100403 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100404 }
Jens Axboedf641192006-10-12 07:55:41 +0200405
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100406 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100407 nr_thread++;
408 else
409 nr_process++;
410
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100411 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100412 td->io_ops->flags |= FIO_RAWIO;
413
Jens Axboee132cba2007-03-14 14:23:54 +0100414 file_alloced = 0;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100415 if (!td->o.filename && !td->files_index) {
Jens Axboee132cba2007-03-14 14:23:54 +0100416 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100417
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100418 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100419 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100420 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100421 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboee132cba2007-03-14 14:23:54 +0100422 sprintf(fname, "%s.%d.%d", jobname, td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100423 add_file(td, fname);
424 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100425 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100426 }
Jens Axboeebac4652005-12-08 15:25:21 +0100427
Jens Axboe4e991c22007-03-15 11:41:11 +0100428 if (fixup_options(td))
429 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100430
Jens Axboe53cdc682006-10-18 11:50:58 +0200431 for_each_file(td, f, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100432 if (td->o.directory && f->filetype == FIO_TYPE_FILE) {
433 sprintf(fname, "%s/%s", td->o.directory, f->file_name);
Jens Axboeaf52b342007-03-13 10:07:47 +0100434 f->file_name = strdup(fname);
435 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200436 }
437
Jens Axboe07739b52007-03-08 20:25:46 +0100438 td->mutex = fio_sem_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100439
Jens Axboe756867b2007-03-06 15:19:24 +0100440 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
441 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
442 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboeebac4652005-12-08 15:25:21 +0100443
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100444 if ((td->o.stonewall || td->o.numjobs > 1) && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100445 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100446 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100447 }
Jens Axboeebac4652005-12-08 15:25:21 +0100448
449 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100450 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100451
Jens Axboe9c60ce62007-03-15 09:14:47 +0100452 if (init_random_state(td))
453 goto err;
454
Jens Axboeebac4652005-12-08 15:25:21 +0100455 if (setup_rate(td))
456 goto err;
457
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100458 if (td->o.write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100459 setup_log(&td->ts.slat_log);
460 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100461 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100462 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100463 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100464
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100465 if (!td->o.name)
466 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200467
Jens Axboec6ae0a52006-06-12 11:04:44 +0200468 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200469 if (!job_add_num) {
Jens Axboeba0fbe12007-03-09 14:34:23 +0100470 if (!strcmp(td->io_ops->name, "cpuio"))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100471 log_info("%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->o.name, td->o.cpuload, td->o.cpucycle);
Jens Axboef8977ee2006-11-06 14:03:03 +0100472 else {
473 char *c1, *c2, *c3, *c4;
474
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100475 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
476 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
477 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
478 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100479
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100480 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s, ioengine=%s, iodepth=%u\n", td->o.name, td->groupid, ddir_str[td->o.td_ddir], c1, c2, c3, c4, td->io_ops->name, td->o.iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +0100481
482 free(c1);
483 free(c2);
484 free(c3);
485 free(c4);
486 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200487 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100488 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200489 }
Jens Axboeebac4652005-12-08 15:25:21 +0100490
491 /*
492 * recurse add identical jobs, clear numjobs and stonewall options
493 * as they don't apply to sub-jobs
494 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100495 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100496 while (--numjobs) {
497 struct thread_data *td_new = get_new_job(0, td);
498
499 if (!td_new)
500 goto err;
501
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100502 td_new->o.numjobs = 1;
503 td_new->o.stonewall = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100504
505 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100506 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100507 td_new->files_index = 0;
508 td_new->files = NULL;
509 }
510
Jens Axboe75154842006-06-01 13:56:09 +0200511 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100512
Jens Axboe75154842006-06-01 13:56:09 +0200513 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100514 goto err;
515 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100516
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100517 if (td->o.numjobs > 1) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100518 groupid++;
519 prev_group_jobs = 0;
520 }
521
Jens Axboeebac4652005-12-08 15:25:21 +0100522 return 0;
523err:
524 put_job(td);
525 return -1;
526}
527
Jens Axboeebac4652005-12-08 15:25:21 +0100528static int is_empty_or_comment(char *line)
529{
530 unsigned int i;
531
532 for (i = 0; i < strlen(line); i++) {
533 if (line[i] == ';')
534 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100535 if (line[i] == '#')
536 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100537 if (!isspace(line[i]) && !iscntrl(line[i]))
538 return 0;
539 }
540
541 return 1;
542}
543
Jens Axboe313cb202006-12-21 09:50:00 +0100544/*
Jens Axboe07261982006-06-07 10:51:12 +0200545 * This is our [ini] type file parser.
546 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100547static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100548{
Jens Axboee1f36502006-10-27 10:54:08 +0200549 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100550 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100551 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100552 fpos_t off;
553 FILE *f;
554 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200555 int ret = 0, stonewall;
Jens Axboeebac4652005-12-08 15:25:21 +0100556
557 f = fopen(file, "r");
558 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200559 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100560 return 1;
561 }
562
563 string = malloc(4096);
564 name = malloc(256);
Jens Axboefee3bb42006-10-30 13:32:08 +0100565 memset(name, 0, 256);
Jens Axboeebac4652005-12-08 15:25:21 +0100566
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200567 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100568 do {
569 p = fgets(string, 4095, f);
570 if (!p)
Jens Axboe45410ac2006-06-07 11:10:39 +0200571 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100572 if (is_empty_or_comment(p))
573 continue;
Jens Axboefee3bb42006-10-30 13:32:08 +0100574 if (sscanf(p, "[%255s]", name) != 1)
Jens Axboeebac4652005-12-08 15:25:21 +0100575 continue;
576
577 global = !strncmp(name, "global", 6);
578
579 name[strlen(name) - 1] = '\0';
580
581 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200582 if (!td) {
583 ret = 1;
584 break;
585 }
Jens Axboeebac4652005-12-08 15:25:21 +0100586
Jens Axboe972cfd22006-06-09 11:08:56 +0200587 /*
588 * Seperate multiple job files by a stonewall
589 */
Jens Axboef9481912006-06-09 11:37:28 +0200590 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100591 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200592 stonewall = 0;
593 }
594
Jens Axboeebac4652005-12-08 15:25:21 +0100595 fgetpos(f, &off);
596 while ((p = fgets(string, 4096, f)) != NULL) {
597 if (is_empty_or_comment(p))
598 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200599
Jens Axboeb6754f92006-05-30 14:29:32 +0200600 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100601
602 if (p[0] == '[')
603 break;
604
Jens Axboe4ae3f762006-05-30 13:35:14 +0200605 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200606
Jens Axboee1f36502006-10-27 10:54:08 +0200607 fgetpos(f, &off);
Jens Axboeebac4652005-12-08 15:25:21 +0100608
Jens Axboe45410ac2006-06-07 11:10:39 +0200609 /*
610 * Don't break here, continue parsing options so we
611 * dump all the bad ones. Makes trial/error fixups
612 * easier on the user.
613 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100614 ret |= fio_option_parse(td, p);
Jens Axboeebac4652005-12-08 15:25:21 +0100615 }
Jens Axboeebac4652005-12-08 15:25:21 +0100616
Jens Axboe45410ac2006-06-07 11:10:39 +0200617 if (!ret) {
618 fsetpos(f, &off);
619 ret = add_job(td, name, 0);
Jens Axboeb1508cf2006-11-02 09:12:40 +0100620 } else {
621 log_err("fio: job %s dropped\n", name);
622 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200623 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100624 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100625
626 free(string);
627 free(name);
628 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200629 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100630}
631
632static int fill_def_thread(void)
633{
634 memset(&def_thread, 0, sizeof(def_thread));
635
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100636 if (fio_getaffinity(getpid(), &def_thread.o.cpumask) == -1) {
Jens Axboeebac4652005-12-08 15:25:21 +0100637 perror("sched_getaffinity");
638 return 1;
639 }
640
641 /*
Jens Axboeee738492007-01-10 11:23:16 +0100642 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100643 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100644 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100645
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100646 def_thread.o.timeout = def_timeout;
647 def_thread.o.write_bw_log = write_bw_log;
648 def_thread.o.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +0100649
Jens Axboeebac4652005-12-08 15:25:21 +0100650#ifdef FIO_HAVE_DISK_UTIL
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100651 def_thread.o.do_disk_util = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100652#endif
653
654 return 0;
655}
656
Jens Axboeebac4652005-12-08 15:25:21 +0100657static void free_shm(void)
658{
659 struct shmid_ds sbuf;
660
661 if (threads) {
Jens Axboe2c0ecd22006-06-08 13:25:41 +0200662 shmdt((void *) threads);
Jens Axboeebac4652005-12-08 15:25:21 +0100663 threads = NULL;
664 shmctl(shm_id, IPC_RMID, &sbuf);
665 }
666}
667
Jens Axboe906c8d72006-06-13 09:37:56 +0200668/*
669 * The thread area is shared between the main process and the job
670 * threads/processes. So setup a shared memory segment that will hold
671 * all the job info.
672 */
Jens Axboeebac4652005-12-08 15:25:21 +0100673static int setup_thread_area(void)
674{
675 /*
676 * 1024 is too much on some machines, scale max_jobs if
677 * we get a failure that looks like too large a shm segment
678 */
679 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200680 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100681
Jens Axboe906c8d72006-06-13 09:37:56 +0200682 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100683 if (shm_id != -1)
684 break;
685 if (errno != EINVAL) {
686 perror("shmget");
687 break;
688 }
689
690 max_jobs >>= 1;
691 } while (max_jobs);
692
693 if (shm_id == -1)
694 return 1;
695
696 threads = shmat(shm_id, NULL, 0);
697 if (threads == (void *) -1) {
698 perror("shmat");
699 return 1;
700 }
701
702 atexit(free_shm);
703 return 0;
704}
705
Jens Axboe214e1ec2007-03-15 10:48:13 +0100706static void usage(void)
Jens Axboeb4692822006-10-27 13:43:22 +0200707{
Jens Axboe214e1ec2007-03-15 10:48:13 +0100708 printf("%s\n", fio_version_string);
709 printf("\t--output\tWrite output to file\n");
710 printf("\t--timeout\tRuntime in seconds\n");
711 printf("\t--latency-log\tGenerate per-job latency logs\n");
712 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
713 printf("\t--minimal\tMinimal (terse) output\n");
714 printf("\t--version\tPrint version info and exit\n");
715 printf("\t--help\t\tPrint this page\n");
716 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200717}
718
Jens Axboe214e1ec2007-03-15 10:48:13 +0100719static int parse_cmd_line(int argc, char *argv[])
720{
721 struct thread_data *td = NULL;
722 int c, ini_idx = 0, lidx, ret, dont_add_job = 0;
723
724 while ((c = getopt_long_only(argc, argv, "", long_options, &lidx)) != -1) {
725 switch (c) {
726 case 't':
727 def_timeout = atoi(optarg);
728 break;
729 case 'l':
730 write_lat_log = 1;
731 break;
732 case 'w':
733 write_bw_log = 1;
734 break;
735 case 'o':
736 f_out = fopen(optarg, "w+");
737 if (!f_out) {
738 perror("fopen output");
739 exit(1);
740 }
741 f_err = f_out;
742 break;
743 case 'm':
744 terse_output = 1;
745 break;
746 case 'h':
747 usage();
748 exit(0);
749 case 'c':
750 exit(fio_show_option_help(optarg));
751 case 'v':
752 printf("%s\n", fio_version_string);
753 exit(0);
754 case FIO_GETOPT_JOB: {
755 const char *opt = long_options[lidx].name;
756 char *val = optarg;
757
758 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100759 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100760 if (ret) {
761 put_job(td);
762 return 0;
763 }
764 td = NULL;
765 }
766 if (!td) {
767 int global = !strncmp(val, "global", 6);
768
769 td = get_new_job(global, &def_thread);
770 if (!td)
771 return 0;
772 }
773
774 ret = fio_cmd_option_parse(td, opt, val);
775 if (ret)
776 dont_add_job = 1;
777 break;
778 }
779 default:
780 break;
781 }
782 }
783
784 if (td) {
785 if (dont_add_job)
786 put_job(td);
787 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100788 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100789 if (ret)
790 put_job(td);
791 }
792 }
793
794 while (optind < argc) {
795 ini_idx++;
796 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
797 ini_file[ini_idx - 1] = strdup(argv[optind]);
798 optind++;
799 }
800
801 return ini_idx;
802}
803
804
Jens Axboeebac4652005-12-08 15:25:21 +0100805int parse_options(int argc, char *argv[])
806{
Jens Axboe972cfd22006-06-09 11:08:56 +0200807 int job_files, i;
808
Jens Axboeb4692822006-10-27 13:43:22 +0200809 f_out = stdout;
810 f_err = stderr;
811
Jens Axboe214e1ec2007-03-15 10:48:13 +0100812 fio_options_dup_and_init(long_options);
Jens Axboeb4692822006-10-27 13:43:22 +0200813
Jens Axboeebac4652005-12-08 15:25:21 +0100814 if (setup_thread_area())
815 return 1;
816 if (fill_def_thread())
817 return 1;
818
Jens Axboe972cfd22006-06-09 11:08:56 +0200819 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +0100820
Jens Axboe972cfd22006-06-09 11:08:56 +0200821 for (i = 0; i < job_files; i++) {
822 if (fill_def_thread())
823 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200824 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +0200825 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +0200826 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +0200827 }
Jens Axboeebac4652005-12-08 15:25:21 +0100828
Jens Axboe88c6ed82006-06-09 11:28:10 +0200829 free(ini_file);
Jens Axboeb4692822006-10-27 13:43:22 +0200830
831 if (!thread_number) {
832 log_err("No jobs defined(s)\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200833 return 1;
834 }
835
Jens Axboeebac4652005-12-08 15:25:21 +0100836 return 0;
837}