Print help info on huge page shmget() returning EINVAL
[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
214e1eca
JA
20static char fio_version_string[] = "fio 1.14a";
21
ee738499 22#define FIO_RANDSEED (0xb1899bedUL)
ebac4655 23
214e1eca
JA
24static char **ini_file;
25static int max_jobs = MAX_JOBS;
e1f36503 26
214e1eca
JA
27struct thread_data def_thread;
28struct thread_data *threads = NULL;
e1f36503 29
214e1eca
JA
30int exitall_on_terminate = 0;
31int terse_output = 0;
32unsigned long long mlock_size = 0;
33FILE *f_out = NULL;
34FILE *f_err = NULL;
ee738499 35
214e1eca
JA
36int write_bw_log = 0;
37
38static int def_timeout = 0;
39static int write_lat_log = 0;
e1f36503 40
214e1eca 41static int prev_group_jobs;
b4692828
JA
42
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 */
214e1eca 47static struct option long_options[FIO_NR_OPTIONS] = {
b4692828
JA
48 {
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 },
fd28ca49
JA
78 {
79 .name = "help",
80 .has_arg = no_argument,
81 .val = 'h',
82 },
83 {
84 .name = "cmdhelp",
320beefe 85 .has_arg = optional_argument,
fd28ca49
JA
86 .val = 'c',
87 },
b4692828
JA
88 {
89 .name = NULL,
90 },
91};
92
9728ce37
JB
93FILE *get_f_out()
94{
95 return f_out;
96}
97
98FILE *get_f_err()
99{
100 return f_err;
101}
102
906c8d75
JA
103/*
104 * Return a free job structure.
105 */
ebac4655
JA
106static 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++];
ddaeaa5a 116 *td = *parent;
ebac4655 117
ebac4655 118 td->thread_number = thread_number;
ebac4655
JA
119 return td;
120}
121
122static void put_job(struct thread_data *td)
123{
549577a7
JA
124 if (td == &def_thread)
125 return;
126
16edf25d 127 if (td->error)
6d86144d 128 log_info("fio: %s\n", td->verror);
16edf25d 129
ebac4655
JA
130 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
131 thread_number--;
132}
133
127f6865
JA
134static 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
2dc1bbeb 140 if (!td->o.rate && !td->o.rate_iops)
127f6865
JA
141 return 0;
142
143 if (td_rw(td))
2dc1bbeb 144 bs = td->o.rw_min_bs;
127f6865 145 else if (td_read(td))
2dc1bbeb 146 bs = td->o.min_bs[DDIR_READ];
127f6865 147 else
2dc1bbeb 148 bs = td->o.min_bs[DDIR_WRITE];
127f6865 149
2dc1bbeb
JA
150 if (td->o.rate) {
151 rate = td->o.rate;
127f6865
JA
152 nr_reads_per_msec = (rate * 1024 * 1000LL) / bs;
153 } else
2dc1bbeb 154 nr_reads_per_msec = td->o.rate_iops * 1000UL;
127f6865
JA
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
dad915e3
JA
166/*
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 */
4e991c23 170static int fixup_options(struct thread_data *td)
e1f36503 171{
2dc1bbeb 172 struct thread_options *o = &td->o;
dad915e3 173
e47f799f
JA
174 if (o->rwmix[DDIR_READ] + o->rwmix[DDIR_WRITE] > 100)
175 o->rwmix[DDIR_WRITE] = 100 - o->rwmix[DDIR_READ];
2dc1bbeb
JA
176
177 if (o->write_iolog_file && o->read_iolog_file) {
076efc7c 178 log_err("fio: read iolog overrides write_iolog\n");
2dc1bbeb
JA
179 free(o->write_iolog_file);
180 o->write_iolog_file = NULL;
076efc7c 181 }
16b462ae
JA
182
183 if (td->io_ops->flags & FIO_SYNCIO)
2dc1bbeb 184 o->iodepth = 1;
16b462ae 185 else {
2dc1bbeb
JA
186 if (!o->iodepth)
187 o->iodepth = o->open_files;
16b462ae
JA
188 }
189
190 /*
191 * only really works for sequential io for now, and with 1 file
192 */
2dc1bbeb
JA
193 if (o->zone_size && td_random(td) && o->open_files == 1)
194 o->zone_size = 0;
16b462ae
JA
195
196 /*
197 * Reads can do overwrites, we always need to pre-create the file
198 */
199 if (td_read(td) || td_rw(td))
2dc1bbeb 200 o->overwrite = 1;
16b462ae 201
2dc1bbeb
JA
202 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];
a00735e6 210
2dc1bbeb 211 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
a00735e6 212
2dc1bbeb
JA
213 if (!o->file_size_high)
214 o->file_size_high = o->file_size_low;
9c60ce64 215
16b462ae 216 if (td_read(td) && !td_rw(td))
2dc1bbeb 217 o->verify = 0;
bb8895e0 218
2dc1bbeb 219 if (o->norandommap && o->verify != VERIFY_NONE) {
bb8895e0 220 log_err("fio: norandommap given, verify disabled\n");
2dc1bbeb 221 o->verify = VERIFY_NONE;
bb8895e0 222 }
2dc1bbeb 223 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
690adba3 224 log_err("fio: bs_unaligned may not work with raw io\n");
e0a22335 225
48097d5c
JA
226 /*
227 * thinktime_spin must be less than thinktime
228 */
2dc1bbeb
JA
229 if (o->thinktime_spin > o->thinktime)
230 o->thinktime_spin = o->thinktime;
e916b390
JA
231
232 /*
233 * The low water mark cannot be bigger than the iodepth
234 */
2dc1bbeb 235 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
9467b77c
JA
236 /*
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))
2dc1bbeb 242 o->iodepth_low = 1;
9467b77c 243 else
2dc1bbeb 244 o->iodepth_low = o->iodepth;
9467b77c 245 }
cb5ab512
JA
246
247 /*
248 * If batch number isn't set, default to the same as iodepth
249 */
2dc1bbeb
JA
250 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
251 o->iodepth_batch = o->iodepth;
b5af8293 252
2dc1bbeb
JA
253 if (o->nr_files > td->files_index)
254 o->nr_files = td->files_index;
9f9214f2 255
2dc1bbeb
JA
256 if (o->open_files > o->nr_files || !o->open_files)
257 o->open_files = o->nr_files;
4e991c23 258
2dc1bbeb 259 if ((o->rate && o->rate_iops) || (o->ratemin && o->rate_iops_min)) {
4e991c23
JA
260 log_err("fio: rate and rate_iops are mutually exclusive\n");
261 return 1;
262 }
2dc1bbeb 263 if ((o->rate < o->ratemin) || (o->rate_iops < o->rate_iops_min)) {
4e991c23
JA
264 log_err("fio: minimum rate exceeds rate\n");
265 return 1;
266 }
267
268 return 0;
e1f36503
JA
269}
270
f8977ee6
JA
271/*
272 * This function leaks the buffer
273 */
274static char *to_kmg(unsigned int val)
275{
276 char *buf = malloc(32);
f3502ba2 277 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
f8977ee6
JA
278 char *p = post;
279
245142ff 280 do {
f8977ee6
JA
281 if (val & 1023)
282 break;
283
284 val >>= 10;
285 p++;
245142ff 286 } while (*p);
f8977ee6
JA
287
288 snprintf(buf, 31, "%u%c", val, *p);
289 return buf;
290}
291
09629a90
JA
292/* 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
e132cbae
JA
306static 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
9c60ce64
JA
319/*
320 * 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];
68727076 326 int fd;
9c60ce64
JA
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
2dc1bbeb 346 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
9c60ce64
JA
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
2dc1bbeb 354 if (td->o.rand_repeatable)
9c60ce64
JA
355 seeds[4] = FIO_RANDSEED * td->thread_number;
356
9c60ce64
JA
357 os_random_seed(seeds[4], &td->random_state);
358 return 0;
359}
360
361
906c8d75
JA
362/*
363 * Adds a job to the list of things todo. Sanitizes the various options
364 * to make sure we don't have conflicts, and initializes various
365 * members of td.
366 */
75154845 367static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
ebac4655 368{
413dd459
JA
369 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
370 "randread", "randwrite", "randrw" };
af52b345 371 unsigned int i;
53cdc686 372 struct fio_file *f;
09629a90 373 const char *engine;
af52b345 374 char fname[PATH_MAX];
e132cbae 375 int numjobs, file_alloced;
ebac4655 376
ebac4655
JA
377 /*
378 * the def_thread is just for options, it's not a real job
379 */
380 if (td == &def_thread)
381 return 0;
382
2dc1bbeb 383 engine = get_engine_name(td->o.ioengine);
09629a90
JA
384 td->io_ops = load_ioengine(td, engine);
385 if (!td->io_ops) {
386 log_err("fio: failed to load engine %s\n", engine);
205927a3 387 goto err;
09629a90 388 }
df64119d 389
2dc1bbeb 390 if (td->o.use_thread)
9cedf167
JA
391 nr_thread++;
392 else
393 nr_process++;
394
2dc1bbeb 395 if (td->o.odirect)
690adba3
JA
396 td->io_ops->flags |= FIO_RAWIO;
397
e132cbae 398 file_alloced = 0;
2dc1bbeb 399 if (!td->o.filename && !td->files_index) {
e132cbae 400 file_alloced = 1;
80be24f4 401
2dc1bbeb 402 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
e132cbae 403 add_file(td, jobname);
7b05a215 404 else {
2dc1bbeb 405 for (i = 0; i < td->o.nr_files; i++) {
e132cbae 406 sprintf(fname, "%s.%d.%d", jobname, td->thread_number, i);
7b05a215
JA
407 add_file(td, fname);
408 }
af52b345 409 }
0af7b542 410 }
ebac4655 411
4e991c23
JA
412 if (fixup_options(td))
413 goto err;
e0a22335 414
af52b345 415 for_each_file(td, f, i) {
2dc1bbeb
JA
416 if (td->o.directory && f->filetype == FIO_TYPE_FILE) {
417 sprintf(fname, "%s/%s", td->o.directory, f->file_name);
af52b345 418 f->file_name = strdup(fname);
53cdc686 419 }
53cdc686
JA
420 }
421
07739b57 422 td->mutex = fio_sem_init(0);
ebac4655 423
756867bd
JA
424 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
425 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
426 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
1e3d53ac 427 td->ddir_nr = td->o.ddir_nr;
ebac4655 428
b3d62a75
JA
429 if ((td->o.stonewall || td->o.numjobs > 1 || td->o.new_group)
430 && prev_group_jobs) {
3c5df6fa 431 prev_group_jobs = 0;
ebac4655 432 groupid++;
3c5df6fa 433 }
ebac4655
JA
434
435 td->groupid = groupid;
3c5df6fa 436 prev_group_jobs++;
ebac4655 437
9c60ce64
JA
438 if (init_random_state(td))
439 goto err;
440
ebac4655
JA
441 if (setup_rate(td))
442 goto err;
443
2dc1bbeb 444 if (td->o.write_lat_log) {
756867bd
JA
445 setup_log(&td->ts.slat_log);
446 setup_log(&td->ts.clat_log);
ebac4655 447 }
2dc1bbeb 448 if (td->o.write_bw_log)
756867bd 449 setup_log(&td->ts.bw_log);
ebac4655 450
2dc1bbeb
JA
451 if (!td->o.name)
452 td->o.name = strdup(jobname);
01452055 453
c6ae0a5b 454 if (!terse_output) {
b990b5c0 455 if (!job_add_num) {
ba0fbe10 456 if (!strcmp(td->io_ops->name, "cpuio"))
2dc1bbeb 457 log_info("%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->o.name, td->o.cpuload, td->o.cpucycle);
f8977ee6
JA
458 else {
459 char *c1, *c2, *c3, *c4;
460
2dc1bbeb
JA
461 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
462 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
463 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
464 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
f8977ee6 465
2dc1bbeb 466 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
467
468 free(c1);
469 free(c2);
470 free(c3);
471 free(c4);
472 }
b990b5c0 473 } else if (job_add_num == 1)
6d86144d 474 log_info("...\n");
c6ae0a5b 475 }
ebac4655
JA
476
477 /*
478 * recurse add identical jobs, clear numjobs and stonewall options
479 * as they don't apply to sub-jobs
480 */
2dc1bbeb 481 numjobs = td->o.numjobs;
ebac4655
JA
482 while (--numjobs) {
483 struct thread_data *td_new = get_new_job(0, td);
484
485 if (!td_new)
486 goto err;
487
2dc1bbeb
JA
488 td_new->o.numjobs = 1;
489 td_new->o.stonewall = 0;
e132cbae
JA
490
491 if (file_alloced) {
2dc1bbeb 492 td_new->o.filename = NULL;
e132cbae
JA
493 td_new->files_index = 0;
494 td_new->files = NULL;
495 }
496
75154845 497 job_add_num = numjobs - 1;
ebac4655 498
75154845 499 if (add_job(td_new, jobname, job_add_num))
ebac4655
JA
500 goto err;
501 }
3c5df6fa 502
ebac4655
JA
503 return 0;
504err:
505 put_job(td);
506 return -1;
507}
508
ebac4655
JA
509static int is_empty_or_comment(char *line)
510{
511 unsigned int i;
512
513 for (i = 0; i < strlen(line); i++) {
514 if (line[i] == ';')
515 return 1;
5cc2da30
IM
516 if (line[i] == '#')
517 return 1;
ebac4655
JA
518 if (!isspace(line[i]) && !iscntrl(line[i]))
519 return 0;
520 }
521
522 return 1;
523}
524
07261983
JA
525/*
526 * This is our [ini] type file parser.
527 */
1e97cce9 528static int parse_jobs_ini(char *file, int stonewall_flag)
ebac4655 529{
e1f36503 530 unsigned int global;
ebac4655 531 struct thread_data *td;
fee3bb48 532 char *string, *name;
ebac4655
JA
533 fpos_t off;
534 FILE *f;
535 char *p;
0c7e37a0 536 int ret = 0, stonewall;
ebac4655
JA
537
538 f = fopen(file, "r");
539 if (!f) {
aea47d44 540 perror("fopen job file");
ebac4655
JA
541 return 1;
542 }
543
544 string = malloc(4096);
545 name = malloc(256);
fee3bb48 546 memset(name, 0, 256);
ebac4655 547
0c7e37a0 548 stonewall = stonewall_flag;
7c124ac1
JA
549 do {
550 p = fgets(string, 4095, f);
551 if (!p)
45410acb 552 break;
ebac4655
JA
553 if (is_empty_or_comment(p))
554 continue;
fee3bb48 555 if (sscanf(p, "[%255s]", name) != 1)
ebac4655
JA
556 continue;
557
558 global = !strncmp(name, "global", 6);
559
560 name[strlen(name) - 1] = '\0';
561
562 td = get_new_job(global, &def_thread);
45410acb
JA
563 if (!td) {
564 ret = 1;
565 break;
566 }
ebac4655 567
972cfd25
JA
568 /*
569 * Seperate multiple job files by a stonewall
570 */
f9481919 571 if (!global && stonewall) {
2dc1bbeb 572 td->o.stonewall = stonewall;
972cfd25
JA
573 stonewall = 0;
574 }
575
ebac4655
JA
576 fgetpos(f, &off);
577 while ((p = fgets(string, 4096, f)) != NULL) {
578 if (is_empty_or_comment(p))
579 continue;
e1f36503 580
b6754f9d 581 strip_blank_front(&p);
7c124ac1
JA
582
583 if (p[0] == '[')
584 break;
585
4ae3f763 586 strip_blank_end(p);
aea47d44 587
e1f36503 588 fgetpos(f, &off);
ebac4655 589
45410acb
JA
590 /*
591 * Don't break here, continue parsing options so we
592 * dump all the bad ones. Makes trial/error fixups
593 * easier on the user.
594 */
214e1eca 595 ret |= fio_option_parse(td, p);
ebac4655 596 }
ebac4655 597
45410acb
JA
598 if (!ret) {
599 fsetpos(f, &off);
600 ret = add_job(td, name, 0);
b1508cf9
JA
601 } else {
602 log_err("fio: job %s dropped\n", name);
603 put_job(td);
45410acb 604 }
7c124ac1 605 } while (!ret);
ebac4655
JA
606
607 free(string);
608 free(name);
609 fclose(f);
45410acb 610 return ret;
ebac4655
JA
611}
612
613static int fill_def_thread(void)
614{
615 memset(&def_thread, 0, sizeof(def_thread));
616
2dc1bbeb 617 if (fio_getaffinity(getpid(), &def_thread.o.cpumask) == -1) {
ebac4655
JA
618 perror("sched_getaffinity");
619 return 1;
620 }
621
622 /*
ee738499 623 * fill default options
ebac4655 624 */
214e1eca 625 fio_fill_default_options(&def_thread);
ee738499 626
2dc1bbeb
JA
627 def_thread.o.timeout = def_timeout;
628 def_thread.o.write_bw_log = write_bw_log;
629 def_thread.o.write_lat_log = write_lat_log;
ee738499 630
ebac4655 631#ifdef FIO_HAVE_DISK_UTIL
2dc1bbeb 632 def_thread.o.do_disk_util = 1;
ebac4655
JA
633#endif
634
635 return 0;
636}
637
214e1eca
JA
638static void free_shm(void)
639{
640 struct shmid_ds sbuf;
641
642 if (threads) {
643 shmdt((void *) threads);
644 threads = NULL;
645 shmctl(shm_id, IPC_RMID, &sbuf);
646 }
647}
648
649/*
650 * The thread area is shared between the main process and the job
651 * threads/processes. So setup a shared memory segment that will hold
652 * all the job info.
653 */
654static int setup_thread_area(void)
655{
656 /*
657 * 1024 is too much on some machines, scale max_jobs if
658 * we get a failure that looks like too large a shm segment
659 */
660 do {
661 size_t size = max_jobs * sizeof(struct thread_data);
662
663 shm_id = shmget(0, size, IPC_CREAT | 0600);
664 if (shm_id != -1)
665 break;
666 if (errno != EINVAL) {
667 perror("shmget");
668 break;
669 }
670
671 max_jobs >>= 1;
672 } while (max_jobs);
673
674 if (shm_id == -1)
675 return 1;
676
677 threads = shmat(shm_id, NULL, 0);
678 if (threads == (void *) -1) {
679 perror("shmat");
680 return 1;
681 }
682
683 atexit(free_shm);
684 return 0;
685}
686
0ab8db89 687static void usage(void)
4785f995
JA
688{
689 printf("%s\n", fio_version_string);
b4692828
JA
690 printf("\t--output\tWrite output to file\n");
691 printf("\t--timeout\tRuntime in seconds\n");
692 printf("\t--latency-log\tGenerate per-job latency logs\n");
693 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
694 printf("\t--minimal\tMinimal (terse) output\n");
695 printf("\t--version\tPrint version info and exit\n");
fd28ca49
JA
696 printf("\t--help\t\tPrint this page\n");
697 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
4785f995
JA
698}
699
972cfd25 700static int parse_cmd_line(int argc, char *argv[])
ebac4655 701{
b4692828 702 struct thread_data *td = NULL;
b1ec1da6 703 int c, ini_idx = 0, lidx, ret, dont_add_job = 0;
ebac4655 704
0be06ea2 705 while ((c = getopt_long_only(argc, argv, "", long_options, &lidx)) != -1) {
ebac4655 706 switch (c) {
b4692828
JA
707 case 't':
708 def_timeout = atoi(optarg);
709 break;
710 case 'l':
711 write_lat_log = 1;
712 break;
713 case 'w':
714 write_bw_log = 1;
715 break;
716 case 'o':
717 f_out = fopen(optarg, "w+");
718 if (!f_out) {
719 perror("fopen output");
720 exit(1);
721 }
722 f_err = f_out;
723 break;
724 case 'm':
725 terse_output = 1;
726 break;
727 case 'h':
728 usage();
729 exit(0);
fd28ca49 730 case 'c':
214e1eca 731 exit(fio_show_option_help(optarg));
b4692828
JA
732 case 'v':
733 printf("%s\n", fio_version_string);
734 exit(0);
735 case FIO_GETOPT_JOB: {
736 const char *opt = long_options[lidx].name;
737 char *val = optarg;
738
c2b1e753 739 if (!strncmp(opt, "name", 4) && td) {
2dc1bbeb 740 ret = add_job(td, td->o.name ?: "fio", 0);
c2b1e753
JA
741 if (ret) {
742 put_job(td);
743 return 0;
744 }
745 td = NULL;
746 }
b4692828 747 if (!td) {
38d0adb0 748 int global = !strncmp(val, "global", 6);
c2b1e753
JA
749
750 td = get_new_job(global, &def_thread);
b4692828
JA
751 if (!td)
752 return 0;
753 }
38d0adb0 754
214e1eca 755 ret = fio_cmd_option_parse(td, opt, val);
78217dfa 756 if (ret)
b1ec1da6 757 dont_add_job = 1;
b4692828
JA
758 break;
759 }
760 default:
b4692828 761 break;
ebac4655
JA
762 }
763 }
c9fad893 764
b4692828 765 if (td) {
b1ec1da6 766 if (dont_add_job)
b4692828 767 put_job(td);
b1ec1da6 768 else {
2dc1bbeb 769 ret = add_job(td, td->o.name ?: "fio", 0);
b1ec1da6
JA
770 if (ret)
771 put_job(td);
772 }
972cfd25 773 }
774a6177 774
b4692828
JA
775 while (optind < argc) {
776 ini_idx++;
777 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
778 ini_file[ini_idx - 1] = strdup(argv[optind]);
779 optind++;
eb8bbf48 780 }
972cfd25
JA
781
782 return ini_idx;
ebac4655
JA
783}
784
b4692828 785
ebac4655
JA
786int parse_options(int argc, char *argv[])
787{
972cfd25
JA
788 int job_files, i;
789
b4692828
JA
790 f_out = stdout;
791 f_err = stderr;
792
214e1eca 793 fio_options_dup_and_init(long_options);
b4692828 794
ebac4655
JA
795 if (setup_thread_area())
796 return 1;
797 if (fill_def_thread())
798 return 1;
799
972cfd25 800 job_files = parse_cmd_line(argc, argv);
ebac4655 801
972cfd25
JA
802 for (i = 0; i < job_files; i++) {
803 if (fill_def_thread())
804 return 1;
0c7e37a0 805 if (parse_jobs_ini(ini_file[i], i))
972cfd25 806 return 1;
88c6ed80 807 free(ini_file[i]);
972cfd25 808 }
ebac4655 809
88c6ed80 810 free(ini_file);
b4692828
JA
811
812 if (!thread_number) {
813 log_err("No jobs defined(s)\n");
b4692828
JA
814 return 1;
815 }
816
ebac4655
JA
817 return 0;
818}