Fio 1.18
[fio.git] / init.c
CommitLineData
906c8d75 1/*
cb2c86fd 2 * This file contains job initialization and setup functions.
906c8d75 3 */
ebac4655
JA
4#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>
b4692828 11#include <getopt.h>
ebac4655
JA
12#include <sys/ipc.h>
13#include <sys/shm.h>
14#include <sys/types.h>
15#include <sys/stat.h>
16
17#include "fio.h"
cb2c86fd 18#include "parse.h"
ebac4655 19
dbe1a018 20static char fio_version_string[] = "fio 1.18";
214e1eca 21
ee738499 22#define FIO_RANDSEED (0xb1899bedUL)
ebac4655 23
214e1eca
JA
24static char **ini_file;
25static int max_jobs = MAX_JOBS;
cca73aa7 26static int dump_cmdline;
e1f36503 27
214e1eca
JA
28struct thread_data def_thread;
29struct thread_data *threads = NULL;
e1f36503 30
214e1eca
JA
31int exitall_on_terminate = 0;
32int terse_output = 0;
e592a06b 33int eta_print;
214e1eca
JA
34unsigned long long mlock_size = 0;
35FILE *f_out = NULL;
36FILE *f_err = NULL;
ee738499 37
214e1eca 38int write_bw_log = 0;
4241ea8f 39int read_only = 0;
214e1eca
JA
40
41static int def_timeout = 0;
42static int write_lat_log = 0;
e1f36503 43
214e1eca 44static int prev_group_jobs;
b4692828 45
ee56ad50
JA
46unsigned long fio_debug = 0;
47
b4692828
JA
48/*
49 * Command line options. These will contain the above, plus a few
50 * extra that only pertain to fio itself and not jobs.
51 */
214e1eca 52static struct option long_options[FIO_NR_OPTIONS] = {
b4692828
JA
53 {
54 .name = "output",
55 .has_arg = required_argument,
56 .val = 'o',
57 },
58 {
59 .name = "timeout",
60 .has_arg = required_argument,
61 .val = 't',
62 },
63 {
64 .name = "latency-log",
65 .has_arg = required_argument,
66 .val = 'l',
67 },
68 {
69 .name = "bandwidth-log",
70 .has_arg = required_argument,
71 .val = 'b',
72 },
73 {
74 .name = "minimal",
75 .has_arg = optional_argument,
76 .val = 'm',
77 },
78 {
79 .name = "version",
80 .has_arg = no_argument,
81 .val = 'v',
82 },
fd28ca49
JA
83 {
84 .name = "help",
85 .has_arg = no_argument,
86 .val = 'h',
87 },
88 {
89 .name = "cmdhelp",
320beefe 90 .has_arg = optional_argument,
fd28ca49
JA
91 .val = 'c',
92 },
cca73aa7
JA
93 {
94 .name = "showcmd",
95 .has_arg = no_argument,
724e4435
JA
96 .val = 's',
97 },
98 {
99 .name = "readonly",
100 .has_arg = no_argument,
101 .val = 'r',
cca73aa7 102 },
e592a06b
AC
103 {
104 .name = "eta",
105 .has_arg = required_argument,
106 .val = 'e',
107 },
ee56ad50
JA
108 {
109 .name = "debug",
110 .has_arg = required_argument,
111 .val = 'd',
112 },
b4692828
JA
113 {
114 .name = NULL,
115 },
116};
117
9728ce37
JB
118FILE *get_f_out()
119{
120 return f_out;
121}
122
123FILE *get_f_err()
124{
125 return f_err;
126}
127
906c8d75
JA
128/*
129 * Return a free job structure.
130 */
ebac4655
JA
131static struct thread_data *get_new_job(int global, struct thread_data *parent)
132{
133 struct thread_data *td;
134
135 if (global)
136 return &def_thread;
137 if (thread_number >= max_jobs)
138 return NULL;
139
140 td = &threads[thread_number++];
ddaeaa5a 141 *td = *parent;
ebac4655 142
cade3ef4 143 dup_files(td, parent);
d23bb327 144 options_mem_dupe(td);
cade3ef4 145
ebac4655 146 td->thread_number = thread_number;
ebac4655
JA
147 return td;
148}
149
150static void put_job(struct thread_data *td)
151{
549577a7
JA
152 if (td == &def_thread)
153 return;
154
16edf25d 155 if (td->error)
6d86144d 156 log_info("fio: %s\n", td->verror);
16edf25d 157
ebac4655
JA
158 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
159 thread_number--;
160}
161
127f6865
JA
162static int setup_rate(struct thread_data *td)
163{
164 unsigned long nr_reads_per_msec;
165 unsigned long long rate;
166 unsigned int bs;
167
2dc1bbeb 168 if (!td->o.rate && !td->o.rate_iops)
127f6865
JA
169 return 0;
170
171 if (td_rw(td))
2dc1bbeb 172 bs = td->o.rw_min_bs;
127f6865 173 else if (td_read(td))
2dc1bbeb 174 bs = td->o.min_bs[DDIR_READ];
127f6865 175 else
2dc1bbeb 176 bs = td->o.min_bs[DDIR_WRITE];
127f6865 177
2dc1bbeb
JA
178 if (td->o.rate) {
179 rate = td->o.rate;
127f6865
JA
180 nr_reads_per_msec = (rate * 1024 * 1000LL) / bs;
181 } else
2dc1bbeb 182 nr_reads_per_msec = td->o.rate_iops * 1000UL;
127f6865
JA
183
184 if (!nr_reads_per_msec) {
185 log_err("rate lower than supported\n");
186 return -1;
187 }
188
189 td->rate_usec_cycle = 1000000000ULL / nr_reads_per_msec;
190 td->rate_pending_usleep = 0;
191 return 0;
192}
193
dad915e3
JA
194/*
195 * Lazy way of fixing up options that depend on each other. We could also
196 * define option callback handlers, but this is easier.
197 */
4e991c23 198static int fixup_options(struct thread_data *td)
e1f36503 199{
2dc1bbeb 200 struct thread_options *o = &td->o;
dad915e3 201
724e4435
JA
202 if (read_only && td_write(td)) {
203 log_err("fio: job <%s> has write bit set, but fio is in read-only mode\n", td->o.name);
204 return 1;
205 }
206
e47f799f
JA
207 if (o->rwmix[DDIR_READ] + o->rwmix[DDIR_WRITE] > 100)
208 o->rwmix[DDIR_WRITE] = 100 - o->rwmix[DDIR_READ];
2dc1bbeb
JA
209
210 if (o->write_iolog_file && o->read_iolog_file) {
076efc7c 211 log_err("fio: read iolog overrides write_iolog\n");
2dc1bbeb
JA
212 free(o->write_iolog_file);
213 o->write_iolog_file = NULL;
076efc7c 214 }
16b462ae 215
16b462ae
JA
216 /*
217 * only really works for sequential io for now, and with 1 file
218 */
2dc1bbeb
JA
219 if (o->zone_size && td_random(td) && o->open_files == 1)
220 o->zone_size = 0;
16b462ae
JA
221
222 /*
223 * Reads can do overwrites, we always need to pre-create the file
224 */
225 if (td_read(td) || td_rw(td))
2dc1bbeb 226 o->overwrite = 1;
16b462ae 227
2dc1bbeb
JA
228 if (!o->min_bs[DDIR_READ])
229 o->min_bs[DDIR_READ]= o->bs[DDIR_READ];
230 if (!o->max_bs[DDIR_READ])
231 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
232 if (!o->min_bs[DDIR_WRITE])
233 o->min_bs[DDIR_WRITE]= o->bs[DDIR_WRITE];
234 if (!o->max_bs[DDIR_WRITE])
235 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
a00735e6 236
2dc1bbeb 237 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
a00735e6 238
2dc1bbeb
JA
239 if (!o->file_size_high)
240 o->file_size_high = o->file_size_low;
9c60ce64 241
2dc1bbeb 242 if (o->norandommap && o->verify != VERIFY_NONE) {
bb8895e0 243 log_err("fio: norandommap given, verify disabled\n");
2dc1bbeb 244 o->verify = VERIFY_NONE;
bb8895e0 245 }
2dc1bbeb 246 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
690adba3 247 log_err("fio: bs_unaligned may not work with raw io\n");
e0a22335 248
48097d5c
JA
249 /*
250 * thinktime_spin must be less than thinktime
251 */
2dc1bbeb
JA
252 if (o->thinktime_spin > o->thinktime)
253 o->thinktime_spin = o->thinktime;
e916b390
JA
254
255 /*
256 * The low water mark cannot be bigger than the iodepth
257 */
2dc1bbeb 258 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
9467b77c
JA
259 /*
260 * syslet work around - if the workload is sequential,
261 * we want to let the queue drain all the way down to
262 * avoid seeking between async threads
263 */
264 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
2dc1bbeb 265 o->iodepth_low = 1;
9467b77c 266 else
2dc1bbeb 267 o->iodepth_low = o->iodepth;
9467b77c 268 }
cb5ab512
JA
269
270 /*
271 * If batch number isn't set, default to the same as iodepth
272 */
2dc1bbeb
JA
273 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
274 o->iodepth_batch = o->iodepth;
b5af8293 275
2dc1bbeb
JA
276 if (o->nr_files > td->files_index)
277 o->nr_files = td->files_index;
9f9214f2 278
2dc1bbeb
JA
279 if (o->open_files > o->nr_files || !o->open_files)
280 o->open_files = o->nr_files;
4e991c23 281
2dc1bbeb 282 if ((o->rate && o->rate_iops) || (o->ratemin && o->rate_iops_min)) {
4e991c23
JA
283 log_err("fio: rate and rate_iops are mutually exclusive\n");
284 return 1;
285 }
2dc1bbeb 286 if ((o->rate < o->ratemin) || (o->rate_iops < o->rate_iops_min)) {
4e991c23
JA
287 log_err("fio: minimum rate exceeds rate\n");
288 return 1;
289 }
290
cf4464ca
JA
291 if (!o->timeout && o->time_based) {
292 log_err("fio: time_based requires a runtime/timeout setting\n");
293 o->time_based = 0;
294 }
295
aa31f1f1
SL
296 if (o->fill_device && !o->size)
297 o->size = ULONG_LONG_MAX;
298
4e991c23 299 return 0;
e1f36503
JA
300}
301
f8977ee6
JA
302/*
303 * This function leaks the buffer
304 */
305static char *to_kmg(unsigned int val)
306{
307 char *buf = malloc(32);
f3502ba2 308 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
f8977ee6
JA
309 char *p = post;
310
245142ff 311 do {
f8977ee6
JA
312 if (val & 1023)
313 break;
314
315 val >>= 10;
316 p++;
245142ff 317 } while (*p);
f8977ee6
JA
318
319 snprintf(buf, 31, "%u%c", val, *p);
320 return buf;
321}
322
09629a90
JA
323/* External engines are specified by "external:name.o") */
324static const char *get_engine_name(const char *str)
325{
326 char *p = strstr(str, ":");
327
328 if (!p)
329 return str;
330
331 p++;
332 strip_blank_front(&p);
333 strip_blank_end(p);
334 return p;
335}
336
e132cbae
JA
337static int exists_and_not_file(const char *filename)
338{
339 struct stat sb;
340
341 if (lstat(filename, &sb) == -1)
342 return 0;
343
344 if (S_ISREG(sb.st_mode))
345 return 0;
346
347 return 1;
348}
349
9c60ce64
JA
350/*
351 * Initialize the various random states we need (random io, block size ranges,
352 * read/write mix, etc).
353 */
354static int init_random_state(struct thread_data *td)
355{
356 unsigned long seeds[6];
68727076 357 int fd;
9c60ce64
JA
358
359 fd = open("/dev/urandom", O_RDONLY);
360 if (fd == -1) {
361 td_verror(td, errno, "open");
362 return 1;
363 }
364
365 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
366 td_verror(td, EIO, "read");
367 close(fd);
368 return 1;
369 }
370
371 close(fd);
372
373 os_random_seed(seeds[0], &td->bsrange_state);
374 os_random_seed(seeds[1], &td->verify_state);
375 os_random_seed(seeds[2], &td->rwmix_state);
376
2dc1bbeb 377 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
9c60ce64
JA
378 os_random_seed(seeds[3], &td->next_file_state);
379
380 os_random_seed(seeds[5], &td->file_size_state);
381
382 if (!td_random(td))
383 return 0;
384
2dc1bbeb 385 if (td->o.rand_repeatable)
9c60ce64
JA
386 seeds[4] = FIO_RANDSEED * td->thread_number;
387
9c60ce64
JA
388 os_random_seed(seeds[4], &td->random_state);
389 return 0;
390}
391
906c8d75
JA
392/*
393 * Adds a job to the list of things todo. Sanitizes the various options
394 * to make sure we don't have conflicts, and initializes various
395 * members of td.
396 */
75154845 397static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
ebac4655 398{
413dd459
JA
399 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
400 "randread", "randwrite", "randrw" };
af52b345 401 unsigned int i;
09629a90 402 const char *engine;
af52b345 403 char fname[PATH_MAX];
e132cbae 404 int numjobs, file_alloced;
ebac4655 405
ebac4655
JA
406 /*
407 * the def_thread is just for options, it's not a real job
408 */
409 if (td == &def_thread)
410 return 0;
411
cca73aa7
JA
412 /*
413 * if we are just dumping the output command line, don't add the job
414 */
415 if (dump_cmdline) {
416 put_job(td);
417 return 0;
418 }
419
2dc1bbeb 420 engine = get_engine_name(td->o.ioengine);
09629a90
JA
421 td->io_ops = load_ioengine(td, engine);
422 if (!td->io_ops) {
423 log_err("fio: failed to load engine %s\n", engine);
205927a3 424 goto err;
09629a90 425 }
df64119d 426
2dc1bbeb 427 if (td->o.use_thread)
9cedf167
JA
428 nr_thread++;
429 else
430 nr_process++;
431
2dc1bbeb 432 if (td->o.odirect)
690adba3
JA
433 td->io_ops->flags |= FIO_RAWIO;
434
e132cbae 435 file_alloced = 0;
2dc1bbeb 436 if (!td->o.filename && !td->files_index) {
e132cbae 437 file_alloced = 1;
80be24f4 438
2dc1bbeb 439 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
e132cbae 440 add_file(td, jobname);
7b05a215 441 else {
2dc1bbeb 442 for (i = 0; i < td->o.nr_files; i++) {
e132cbae 443 sprintf(fname, "%s.%d.%d", jobname, td->thread_number, i);
7b05a215
JA
444 add_file(td, fname);
445 }
af52b345 446 }
0af7b542 447 }
ebac4655 448
4e991c23
JA
449 if (fixup_options(td))
450 goto err;
e0a22335 451
07eb79df
JA
452 if (td->io_ops->flags & FIO_DISKLESSIO) {
453 struct fio_file *f;
454
455 for_each_file(td, f, i)
456 f->real_file_size = -1ULL;
457 }
458
07739b57 459 td->mutex = fio_sem_init(0);
ebac4655 460
756867bd
JA
461 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
462 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
463 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
1e3d53ac 464 td->ddir_nr = td->o.ddir_nr;
ebac4655 465
b3d62a75
JA
466 if ((td->o.stonewall || td->o.numjobs > 1 || td->o.new_group)
467 && prev_group_jobs) {
3c5df6fa 468 prev_group_jobs = 0;
ebac4655 469 groupid++;
3c5df6fa 470 }
ebac4655
JA
471
472 td->groupid = groupid;
3c5df6fa 473 prev_group_jobs++;
ebac4655 474
9c60ce64
JA
475 if (init_random_state(td))
476 goto err;
477
ebac4655
JA
478 if (setup_rate(td))
479 goto err;
480
2dc1bbeb 481 if (td->o.write_lat_log) {
756867bd
JA
482 setup_log(&td->ts.slat_log);
483 setup_log(&td->ts.clat_log);
ebac4655 484 }
2dc1bbeb 485 if (td->o.write_bw_log)
756867bd 486 setup_log(&td->ts.bw_log);
ebac4655 487
2dc1bbeb
JA
488 if (!td->o.name)
489 td->o.name = strdup(jobname);
01452055 490
c6ae0a5b 491 if (!terse_output) {
b990b5c0 492 if (!job_add_num) {
ba0fbe10 493 if (!strcmp(td->io_ops->name, "cpuio"))
2dc1bbeb 494 log_info("%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->o.name, td->o.cpuload, td->o.cpucycle);
f8977ee6
JA
495 else {
496 char *c1, *c2, *c3, *c4;
497
2dc1bbeb
JA
498 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
499 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
500 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
501 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
f8977ee6 502
2dc1bbeb 503 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);
f8977ee6
JA
504
505 free(c1);
506 free(c2);
507 free(c3);
508 free(c4);
509 }
b990b5c0 510 } else if (job_add_num == 1)
6d86144d 511 log_info("...\n");
c6ae0a5b 512 }
ebac4655
JA
513
514 /*
515 * recurse add identical jobs, clear numjobs and stonewall options
516 * as they don't apply to sub-jobs
517 */
2dc1bbeb 518 numjobs = td->o.numjobs;
ebac4655
JA
519 while (--numjobs) {
520 struct thread_data *td_new = get_new_job(0, td);
521
522 if (!td_new)
523 goto err;
524
2dc1bbeb
JA
525 td_new->o.numjobs = 1;
526 td_new->o.stonewall = 0;
92c1d41f 527 td_new->o.new_group = 0;
e132cbae
JA
528
529 if (file_alloced) {
2dc1bbeb 530 td_new->o.filename = NULL;
e132cbae
JA
531 td_new->files_index = 0;
532 td_new->files = NULL;
533 }
534
75154845 535 job_add_num = numjobs - 1;
ebac4655 536
75154845 537 if (add_job(td_new, jobname, job_add_num))
ebac4655
JA
538 goto err;
539 }
3c5df6fa 540
ebac4655
JA
541 return 0;
542err:
543 put_job(td);
544 return -1;
545}
546
ebac4655
JA
547static int is_empty_or_comment(char *line)
548{
549 unsigned int i;
550
551 for (i = 0; i < strlen(line); i++) {
552 if (line[i] == ';')
553 return 1;
5cc2da30
IM
554 if (line[i] == '#')
555 return 1;
ebac4655
JA
556 if (!isspace(line[i]) && !iscntrl(line[i]))
557 return 0;
558 }
559
560 return 1;
561}
562
07261983
JA
563/*
564 * This is our [ini] type file parser.
565 */
1e97cce9 566static int parse_jobs_ini(char *file, int stonewall_flag)
ebac4655 567{
e1f36503 568 unsigned int global;
ebac4655 569 struct thread_data *td;
fee3bb48 570 char *string, *name;
ebac4655
JA
571 FILE *f;
572 char *p;
0c7e37a0 573 int ret = 0, stonewall;
097b2991 574 int first_sect = 1;
ccf8f127 575 int skip_fgets = 0;
ebac4655 576
5a729cbe
AC
577 if (!strcmp(file, "-"))
578 f = stdin;
579 else
580 f = fopen(file, "r");
581
ebac4655 582 if (!f) {
aea47d44 583 perror("fopen job file");
ebac4655
JA
584 return 1;
585 }
586
587 string = malloc(4096);
7f7e6e59
JA
588
589 /*
590 * it's really 256 + small bit, 280 should suffice
591 */
592 name = malloc(280);
593 memset(name, 0, 280);
ebac4655 594
0c7e37a0 595 stonewall = stonewall_flag;
7c124ac1 596 do {
ccf8f127
JA
597 /*
598 * if skip_fgets is set, we already have loaded a line we
599 * haven't handled.
600 */
601 if (!skip_fgets) {
602 p = fgets(string, 4095, f);
603 if (!p)
604 break;
605 }
cdc7f193 606
ccf8f127 607 skip_fgets = 0;
cdc7f193 608 strip_blank_front(&p);
6c7c7da1 609 strip_blank_end(p);
cdc7f193 610
ebac4655
JA
611 if (is_empty_or_comment(p))
612 continue;
6c7c7da1 613 if (sscanf(p, "[%255s]", name) != 1) {
088b4207
JA
614 log_err("fio: option <%s> outside of [] job section\n", p);
615 break;
6c7c7da1 616 }
ebac4655
JA
617
618 global = !strncmp(name, "global", 6);
619
620 name[strlen(name) - 1] = '\0';
621
cca73aa7 622 if (dump_cmdline) {
097b2991
JA
623 if (first_sect)
624 log_info("fio ");
cca73aa7
JA
625 if (!global)
626 log_info("--name=%s ", name);
097b2991 627 first_sect = 0;
cca73aa7
JA
628 }
629
ebac4655 630 td = get_new_job(global, &def_thread);
45410acb
JA
631 if (!td) {
632 ret = 1;
633 break;
634 }
ebac4655 635
972cfd25
JA
636 /*
637 * Seperate multiple job files by a stonewall
638 */
f9481919 639 if (!global && stonewall) {
2dc1bbeb 640 td->o.stonewall = stonewall;
972cfd25
JA
641 stonewall = 0;
642 }
643
ebac4655
JA
644 while ((p = fgets(string, 4096, f)) != NULL) {
645 if (is_empty_or_comment(p))
646 continue;
e1f36503 647
b6754f9d 648 strip_blank_front(&p);
7c124ac1 649
ccf8f127
JA
650 /*
651 * new section, break out and make sure we don't
652 * fgets() a new line at the top.
653 */
654 if (p[0] == '[') {
655 skip_fgets = 1;
7c124ac1 656 break;
ccf8f127 657 }
7c124ac1 658
4ae3f763 659 strip_blank_end(p);
aea47d44 660
45410acb
JA
661 /*
662 * Don't break here, continue parsing options so we
663 * dump all the bad ones. Makes trial/error fixups
664 * easier on the user.
665 */
214e1eca 666 ret |= fio_option_parse(td, p);
cca73aa7
JA
667 if (!ret && dump_cmdline)
668 log_info("--%s ", p);
ebac4655 669 }
ebac4655 670
ccf8f127 671 if (!ret)
45410acb 672 ret = add_job(td, name, 0);
ccf8f127 673 else {
b1508cf9
JA
674 log_err("fio: job %s dropped\n", name);
675 put_job(td);
45410acb 676 }
7c124ac1 677 } while (!ret);
ebac4655 678
cca73aa7
JA
679 if (dump_cmdline)
680 log_info("\n");
681
ebac4655
JA
682 free(string);
683 free(name);
5a729cbe
AC
684 if (f != stdin)
685 fclose(f);
45410acb 686 return ret;
ebac4655
JA
687}
688
689static int fill_def_thread(void)
690{
691 memset(&def_thread, 0, sizeof(def_thread));
692
375b2695 693 fio_getaffinity(getpid(), &def_thread.o.cpumask);
ebac4655
JA
694
695 /*
ee738499 696 * fill default options
ebac4655 697 */
214e1eca 698 fio_fill_default_options(&def_thread);
ee738499 699
2dc1bbeb
JA
700 def_thread.o.timeout = def_timeout;
701 def_thread.o.write_bw_log = write_bw_log;
702 def_thread.o.write_lat_log = write_lat_log;
ee738499 703
ebac4655
JA
704 return 0;
705}
706
214e1eca
JA
707static void free_shm(void)
708{
709 struct shmid_ds sbuf;
710
711 if (threads) {
712 shmdt((void *) threads);
713 threads = NULL;
714 shmctl(shm_id, IPC_RMID, &sbuf);
715 }
716}
717
718/*
719 * The thread area is shared between the main process and the job
720 * threads/processes. So setup a shared memory segment that will hold
721 * all the job info.
722 */
723static int setup_thread_area(void)
724{
725 /*
726 * 1024 is too much on some machines, scale max_jobs if
727 * we get a failure that looks like too large a shm segment
728 */
729 do {
730 size_t size = max_jobs * sizeof(struct thread_data);
731
732 shm_id = shmget(0, size, IPC_CREAT | 0600);
733 if (shm_id != -1)
734 break;
735 if (errno != EINVAL) {
736 perror("shmget");
737 break;
738 }
739
740 max_jobs >>= 1;
741 } while (max_jobs);
742
743 if (shm_id == -1)
744 return 1;
745
746 threads = shmat(shm_id, NULL, 0);
747 if (threads == (void *) -1) {
748 perror("shmat");
749 return 1;
750 }
751
1f809d15 752 memset(threads, 0, max_jobs * sizeof(struct thread_data));
214e1eca
JA
753 atexit(free_shm);
754 return 0;
755}
756
45378b35 757static void usage(const char *name)
4785f995
JA
758{
759 printf("%s\n", fio_version_string);
45378b35 760 printf("%s [options] [job options] <job file(s)>\n", name);
ee56ad50 761 printf("\t--debug=options\tEnable debug logging\n");
b4692828
JA
762 printf("\t--output\tWrite output to file\n");
763 printf("\t--timeout\tRuntime in seconds\n");
764 printf("\t--latency-log\tGenerate per-job latency logs\n");
765 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
766 printf("\t--minimal\tMinimal (terse) output\n");
767 printf("\t--version\tPrint version info and exit\n");
fd28ca49
JA
768 printf("\t--help\t\tPrint this page\n");
769 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
cca73aa7 770 printf("\t--showcmd\tTurn a job file into command line options\n");
e592a06b
AC
771 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
772 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
4785f995
JA
773}
774
79e48f72 775#ifdef FIO_INC_DEBUG
ee56ad50 776struct debug_level debug_levels[] = {
bd6f78b2
JA
777 { .name = "process", .shift = FD_PROCESS, },
778 { .name = "file", .shift = FD_FILE, },
779 { .name = "io", .shift = FD_IO, },
780 { .name = "mem", .shift = FD_MEM, },
781 { .name = "blktrace", .shift = FD_BLKTRACE },
782 { .name = "verify", .shift = FD_VERIFY },
ee56ad50
JA
783 { },
784};
785
786static void set_debug(const char *string)
787{
788 struct debug_level *dl;
789 char *p = (char *) string;
790 char *opt;
791 int i;
792
793 if (!strcmp(string, "?") || !strcmp(string, "help")) {
794 int i;
795
796 log_info("fio: dumping debug options:");
797 for (i = 0; debug_levels[i].name; i++) {
798 dl = &debug_levels[i];
799 log_info("%s,", dl->name);
800 }
bd6f78b2
JA
801 log_info("all\n");
802 return;
803 } else if (!strcmp(string, "all")) {
804 fio_debug = ~0UL;
ee56ad50
JA
805 return;
806 }
807
808 while ((opt = strsep(&p, ",")) != NULL) {
809 int found = 0;
810
811 for (i = 0; debug_levels[i].name; i++) {
812 dl = &debug_levels[i];
813 if (!strncmp(opt, dl->name, strlen(opt))) {
814 log_info("fio: set debug option %s\n", opt);
815 found = 1;
bd6f78b2 816 fio_debug |= (1UL << dl->shift);
ee56ad50
JA
817 break;
818 }
819 }
820
821 if (!found)
822 log_err("fio: debug mask %s not found\n", opt);
823 }
824}
79e48f72
JA
825#else
826static void set_debug(const char *string)
827{
828 log_err("fio: debug tracing not included in build\n");
829}
830#endif
ee56ad50 831
972cfd25 832static int parse_cmd_line(int argc, char *argv[])
ebac4655 833{
b4692828 834 struct thread_data *td = NULL;
b1ec1da6 835 int c, ini_idx = 0, lidx, ret, dont_add_job = 0;
ebac4655 836
0be06ea2 837 while ((c = getopt_long_only(argc, argv, "", long_options, &lidx)) != -1) {
ebac4655 838 switch (c) {
b4692828
JA
839 case 't':
840 def_timeout = atoi(optarg);
841 break;
842 case 'l':
843 write_lat_log = 1;
844 break;
845 case 'w':
846 write_bw_log = 1;
847 break;
848 case 'o':
849 f_out = fopen(optarg, "w+");
850 if (!f_out) {
851 perror("fopen output");
852 exit(1);
853 }
854 f_err = f_out;
855 break;
856 case 'm':
857 terse_output = 1;
858 break;
859 case 'h':
45378b35 860 usage(argv[0]);
b4692828 861 exit(0);
fd28ca49 862 case 'c':
214e1eca 863 exit(fio_show_option_help(optarg));
cca73aa7
JA
864 case 's':
865 dump_cmdline = 1;
866 break;
724e4435
JA
867 case 'r':
868 read_only = 1;
869 break;
b4692828
JA
870 case 'v':
871 printf("%s\n", fio_version_string);
872 exit(0);
e592a06b
AC
873 case 'e':
874 if (!strcmp("always", optarg))
875 eta_print = FIO_ETA_ALWAYS;
876 else if (!strcmp("never", optarg))
877 eta_print = FIO_ETA_NEVER;
878 break;
ee56ad50
JA
879 case 'd':
880 set_debug(optarg);
881 break;
b4692828
JA
882 case FIO_GETOPT_JOB: {
883 const char *opt = long_options[lidx].name;
884 char *val = optarg;
885
c2b1e753 886 if (!strncmp(opt, "name", 4) && td) {
2dc1bbeb 887 ret = add_job(td, td->o.name ?: "fio", 0);
c2b1e753
JA
888 if (ret) {
889 put_job(td);
890 return 0;
891 }
892 td = NULL;
893 }
b4692828 894 if (!td) {
3106f220
JA
895 int global = 0;
896
897 if (strncmp(opt, "name", 4) ||
898 !strncmp(val, "global", 6))
899 global = 1;
c2b1e753
JA
900
901 td = get_new_job(global, &def_thread);
b4692828
JA
902 if (!td)
903 return 0;
904 }
38d0adb0 905
214e1eca 906 ret = fio_cmd_option_parse(td, opt, val);
78217dfa 907 if (ret)
b1ec1da6 908 dont_add_job = 1;
b4692828
JA
909 break;
910 }
911 default:
b4692828 912 break;
ebac4655
JA
913 }
914 }
c9fad893 915
b4692828 916 if (td) {
b1ec1da6 917 if (dont_add_job)
b4692828 918 put_job(td);
b1ec1da6 919 else {
2dc1bbeb 920 ret = add_job(td, td->o.name ?: "fio", 0);
b1ec1da6
JA
921 if (ret)
922 put_job(td);
923 }
972cfd25 924 }
774a6177 925
b4692828
JA
926 while (optind < argc) {
927 ini_idx++;
928 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
929 ini_file[ini_idx - 1] = strdup(argv[optind]);
930 optind++;
eb8bbf48 931 }
972cfd25
JA
932
933 return ini_idx;
ebac4655
JA
934}
935
ebac4655
JA
936int parse_options(int argc, char *argv[])
937{
972cfd25
JA
938 int job_files, i;
939
b4692828
JA
940 f_out = stdout;
941 f_err = stderr;
942
214e1eca 943 fio_options_dup_and_init(long_options);
b4692828 944
ebac4655
JA
945 if (setup_thread_area())
946 return 1;
947 if (fill_def_thread())
948 return 1;
949
972cfd25 950 job_files = parse_cmd_line(argc, argv);
ebac4655 951
972cfd25
JA
952 for (i = 0; i < job_files; i++) {
953 if (fill_def_thread())
954 return 1;
0c7e37a0 955 if (parse_jobs_ini(ini_file[i], i))
972cfd25 956 return 1;
88c6ed80 957 free(ini_file[i]);
972cfd25 958 }
ebac4655 959
88c6ed80 960 free(ini_file);
d23bb327 961 options_mem_free(&def_thread);
b4692828
JA
962
963 if (!thread_number) {
cca73aa7
JA
964 if (dump_cmdline)
965 return 0;
966
b4692828 967 log_err("No jobs defined(s)\n");
45378b35 968 usage(argv[0]);
b4692828
JA
969 return 1;
970 }
971
ebac4655
JA
972 return 0;
973}