fio: allow milliseconds on all time specifiers
[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>
11#include <sys/ipc.h>
ebac4655
JA
12#include <sys/types.h>
13#include <sys/stat.h>
14
15#include "fio.h"
a5e0ee11
O
16#ifndef FIO_NO_HAVE_SHM_H
17#include <sys/shm.h>
18#endif
19
cb2c86fd 20#include "parse.h"
2e5cdb11 21#include "smalloc.h"
380065aa 22#include "filehash.h"
4f5af7b2 23#include "verify.h"
79d16311 24#include "profile.h"
50d16976 25#include "server.h"
f2a2ce0e 26#include "idletime.h"
ebac4655 27
bf2e821a 28#include "lib/getopt.h"
e25b6d5a 29#include "lib/strcasestr.h"
bf2e821a 30
3d43382c 31const char fio_version_string[] = FIO_VERSION;
214e1eca 32
ee738499 33#define FIO_RANDSEED (0xb1899bedUL)
ebac4655 34
214e1eca 35static char **ini_file;
fca70358 36static int max_jobs = FIO_MAX_JOBS;
cca73aa7 37static int dump_cmdline;
8c029376 38static int def_timeout;
111e032d 39static int parse_only;
e1f36503 40
be4ecfdf 41static struct thread_data def_thread;
214e1eca 42struct thread_data *threads = NULL;
e1f36503 43
214e1eca 44int exitall_on_terminate = 0;
f3afa57e 45int output_format = FIO_OUTPUT_NORMAL;
5be4c944 46int eta_print = FIO_ETA_AUTO;
e382e661 47int eta_new_line = 0;
214e1eca
JA
48FILE *f_out = NULL;
49FILE *f_err = NULL;
ad0a2735
JA
50char **job_sections = NULL;
51int nr_job_sections = 0;
07b3232d 52char *exec_profile = NULL;
a9523c6f 53int warnings_fatal = 0;
4d658652 54int terse_version = 3;
50d16976 55int is_backend = 0;
a37f69b7 56int nr_clients = 0;
e46d8091 57int log_syslog = 0;
ee738499 58
214e1eca 59int write_bw_log = 0;
4241ea8f 60int read_only = 0;
06464907 61int status_interval = 0;
214e1eca 62
5ec10eaa 63static int write_lat_log;
e1f36503 64
214e1eca 65static int prev_group_jobs;
b4692828 66
ee56ad50 67unsigned long fio_debug = 0;
5e1d306e
JA
68unsigned int fio_debug_jobno = -1;
69unsigned int *fio_debug_jobp = NULL;
ee56ad50 70
4c6107ff 71static char cmd_optstr[256];
085399db 72static int did_arg;
4c6107ff 73
7a4b8240
JA
74#define FIO_CLIENT_FLAG (1 << 16)
75
b4692828
JA
76/*
77 * Command line options. These will contain the above, plus a few
78 * extra that only pertain to fio itself and not jobs.
79 */
5ec10eaa 80static struct option l_opts[FIO_NR_OPTIONS] = {
b4692828 81 {
08d2a19c 82 .name = (char *) "output",
b4692828 83 .has_arg = required_argument,
7a4b8240 84 .val = 'o' | FIO_CLIENT_FLAG,
b4692828
JA
85 },
86 {
08d2a19c 87 .name = (char *) "timeout",
b4692828 88 .has_arg = required_argument,
7a4b8240 89 .val = 't' | FIO_CLIENT_FLAG,
b4692828
JA
90 },
91 {
08d2a19c 92 .name = (char *) "latency-log",
b4692828 93 .has_arg = required_argument,
7a4b8240 94 .val = 'l' | FIO_CLIENT_FLAG,
b4692828
JA
95 },
96 {
08d2a19c 97 .name = (char *) "bandwidth-log",
b4692828 98 .has_arg = required_argument,
7a4b8240 99 .val = 'b' | FIO_CLIENT_FLAG,
b4692828
JA
100 },
101 {
08d2a19c 102 .name = (char *) "minimal",
c4ec0a1d 103 .has_arg = no_argument,
7a4b8240 104 .val = 'm' | FIO_CLIENT_FLAG,
b4692828 105 },
cc372b17 106 {
f3afa57e 107 .name = (char *) "output-format",
cc372b17 108 .has_arg = optional_argument,
f3afa57e 109 .val = 'F' | FIO_CLIENT_FLAG,
cc372b17 110 },
b4692828 111 {
08d2a19c 112 .name = (char *) "version",
b4692828 113 .has_arg = no_argument,
7a4b8240 114 .val = 'v' | FIO_CLIENT_FLAG,
b4692828 115 },
fd28ca49 116 {
08d2a19c 117 .name = (char *) "help",
fd28ca49 118 .has_arg = no_argument,
7a4b8240 119 .val = 'h' | FIO_CLIENT_FLAG,
fd28ca49
JA
120 },
121 {
08d2a19c 122 .name = (char *) "cmdhelp",
320beefe 123 .has_arg = optional_argument,
7a4b8240 124 .val = 'c' | FIO_CLIENT_FLAG,
fd28ca49 125 },
de890a1e 126 {
06464907 127 .name = (char *) "enghelp",
de890a1e 128 .has_arg = optional_argument,
06464907 129 .val = 'i' | FIO_CLIENT_FLAG,
de890a1e 130 },
cca73aa7 131 {
08d2a19c 132 .name = (char *) "showcmd",
cca73aa7 133 .has_arg = no_argument,
7a4b8240 134 .val = 's' | FIO_CLIENT_FLAG,
724e4435
JA
135 },
136 {
08d2a19c 137 .name = (char *) "readonly",
724e4435 138 .has_arg = no_argument,
7a4b8240 139 .val = 'r' | FIO_CLIENT_FLAG,
cca73aa7 140 },
e592a06b 141 {
08d2a19c 142 .name = (char *) "eta",
e592a06b 143 .has_arg = required_argument,
7a4b8240 144 .val = 'e' | FIO_CLIENT_FLAG,
e592a06b 145 },
e382e661
JA
146 {
147 .name = (char *) "eta-newline",
148 .has_arg = required_argument,
149 .val = 'E' | FIO_CLIENT_FLAG,
150 },
ee56ad50 151 {
08d2a19c 152 .name = (char *) "debug",
ee56ad50 153 .has_arg = required_argument,
7a4b8240 154 .val = 'd' | FIO_CLIENT_FLAG,
ee56ad50 155 },
111e032d
JA
156 {
157 .name = (char *) "parse-only",
158 .has_arg = no_argument,
159 .val = 'P' | FIO_CLIENT_FLAG,
160 },
01f06b63 161 {
08d2a19c 162 .name = (char *) "section",
01f06b63 163 .has_arg = required_argument,
7a4b8240 164 .val = 'x' | FIO_CLIENT_FLAG,
01f06b63 165 },
2b386d25 166 {
08d2a19c 167 .name = (char *) "alloc-size",
2b386d25 168 .has_arg = required_argument,
7a4b8240 169 .val = 'a' | FIO_CLIENT_FLAG,
2b386d25 170 },
9ac8a797 171 {
08d2a19c 172 .name = (char *) "profile",
9ac8a797 173 .has_arg = required_argument,
7a4b8240 174 .val = 'p' | FIO_CLIENT_FLAG,
9ac8a797 175 },
a9523c6f 176 {
08d2a19c 177 .name = (char *) "warnings-fatal",
a9523c6f 178 .has_arg = no_argument,
7a4b8240 179 .val = 'w' | FIO_CLIENT_FLAG,
a9523c6f 180 },
fca70358
JA
181 {
182 .name = (char *) "max-jobs",
183 .has_arg = required_argument,
7a4b8240 184 .val = 'j' | FIO_CLIENT_FLAG,
fca70358 185 },
f57a9c59
JA
186 {
187 .name = (char *) "terse-version",
188 .has_arg = required_argument,
7a4b8240 189 .val = 'V' | FIO_CLIENT_FLAG,
f57a9c59 190 },
50d16976
JA
191 {
192 .name = (char *) "server",
87aa8f19 193 .has_arg = optional_argument,
50d16976
JA
194 .val = 'S',
195 },
e46d8091 196 { .name = (char *) "daemonize",
402668f3 197 .has_arg = required_argument,
e46d8091
JA
198 .val = 'D',
199 },
132159a5
JA
200 {
201 .name = (char *) "client",
202 .has_arg = required_argument,
203 .val = 'C',
204 },
7d11f871
JA
205 {
206 .name = (char *) "cpuclock-test",
207 .has_arg = no_argument,
208 .val = 'T',
209 },
fec0f21c
JA
210 {
211 .name = (char *) "crctest",
212 .has_arg = optional_argument,
213 .val = 'G',
214 },
f2a2ce0e
HL
215 {
216 .name = (char *) "idle-prof",
217 .has_arg = required_argument,
218 .val = 'I',
219 },
06464907
JA
220 {
221 .name = (char *) "status-interval",
222 .has_arg = required_argument,
223 .val = 'L',
224 },
b4692828
JA
225 {
226 .name = NULL,
227 },
228};
229
2bb3f0a7 230void free_threads_shm(void)
9d9eb2e7
JA
231{
232 struct shmid_ds sbuf;
233
234 if (threads) {
235 void *tp = threads;
236
237 threads = NULL;
2bb3f0a7
JA
238 shmdt(tp);
239 shmctl(shm_id, IPC_RMID, &sbuf);
240 shm_id = -1;
241 }
242}
243
244void free_shm(void)
245{
246 if (threads) {
9d9eb2e7 247 file_hash_exit();
9e684a49 248 flow_exit();
9d9eb2e7 249 fio_debug_jobp = NULL;
2bb3f0a7 250 free_threads_shm();
9d9eb2e7
JA
251 }
252
eb0c74ae 253 options_free(fio_options, &def_thread);
9d9eb2e7
JA
254 scleanup();
255}
256
257/*
258 * The thread area is shared between the main process and the job
259 * threads/processes. So setup a shared memory segment that will hold
260 * all the job info. We use the end of the region for keeping track of
261 * open files across jobs, for file sharing.
262 */
263static int setup_thread_area(void)
264{
265 void *hash;
266
267 if (threads)
268 return 0;
269
270 /*
271 * 1024 is too much on some machines, scale max_jobs if
272 * we get a failure that looks like too large a shm segment
273 */
274 do {
275 size_t size = max_jobs * sizeof(struct thread_data);
276
277 size += file_hash_size;
278 size += sizeof(unsigned int);
279
280 shm_id = shmget(0, size, IPC_CREAT | 0600);
281 if (shm_id != -1)
282 break;
f0c77f03 283 if (errno != EINVAL && errno != ENOMEM && errno != ENOSPC) {
9d9eb2e7
JA
284 perror("shmget");
285 break;
286 }
287
288 max_jobs >>= 1;
289 } while (max_jobs);
290
291 if (shm_id == -1)
292 return 1;
293
294 threads = shmat(shm_id, NULL, 0);
295 if (threads == (void *) -1) {
296 perror("shmat");
297 return 1;
298 }
299
300 memset(threads, 0, max_jobs * sizeof(struct thread_data));
301 hash = (void *) threads + max_jobs * sizeof(struct thread_data);
302 fio_debug_jobp = (void *) hash + file_hash_size;
303 *fio_debug_jobp = -1;
304 file_hash_init(hash);
9e684a49
DE
305
306 flow_init();
307
9d9eb2e7
JA
308 return 0;
309}
310
906c8d75
JA
311/*
312 * Return a free job structure.
313 */
de890a1e
SL
314static struct thread_data *get_new_job(int global, struct thread_data *parent,
315 int preserve_eo)
ebac4655
JA
316{
317 struct thread_data *td;
318
319 if (global)
320 return &def_thread;
9d9eb2e7
JA
321 if (setup_thread_area()) {
322 log_err("error: failed to setup shm segment\n");
323 return NULL;
324 }
e61f1ec8
BC
325 if (thread_number >= max_jobs) {
326 log_err("error: maximum number of jobs (%d) reached.\n",
327 max_jobs);
ebac4655 328 return NULL;
e61f1ec8 329 }
ebac4655
JA
330
331 td = &threads[thread_number++];
ddaeaa5a 332 *td = *parent;
ebac4655 333
de890a1e
SL
334 td->io_ops = NULL;
335 if (!preserve_eo)
336 td->eo = NULL;
337
e0b0d892
JA
338 td->o.uid = td->o.gid = -1U;
339
cade3ef4 340 dup_files(td, parent);
de890a1e 341 fio_options_mem_dupe(td);
cade3ef4 342
15dc1934
JA
343 profile_add_hooks(td);
344
ebac4655 345 td->thread_number = thread_number;
108fea77
JA
346
347 if (!parent || !parent->o.group_reporting)
348 stat_number++;
349
ebac4655
JA
350 return td;
351}
352
353static void put_job(struct thread_data *td)
354{
549577a7
JA
355 if (td == &def_thread)
356 return;
84dd1886 357
58c55ba0 358 profile_td_exit(td);
9e684a49 359 flow_exit_job(td);
549577a7 360
16edf25d 361 if (td->error)
6d86144d 362 log_info("fio: %s\n", td->verror);
16edf25d 363
7e356b2d 364 fio_options_free(td);
de890a1e
SL
365 if (td->io_ops)
366 free_ioengine(td);
7e356b2d 367
ebac4655
JA
368 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
369 thread_number--;
370}
371
581e7141 372static int __setup_rate(struct thread_data *td, enum fio_ddir ddir)
127f6865 373{
581e7141 374 unsigned int bs = td->o.min_bs[ddir];
127f6865 375
ff58fced
JA
376 assert(ddir_rw(ddir));
377
ba3e4e0c 378 if (td->o.rate[ddir])
1b8dbf25 379 td->rate_bps[ddir] = td->o.rate[ddir];
ba3e4e0c 380 else
1b8dbf25 381 td->rate_bps[ddir] = td->o.rate_iops[ddir] * bs;
127f6865 382
1b8dbf25 383 if (!td->rate_bps[ddir]) {
127f6865
JA
384 log_err("rate lower than supported\n");
385 return -1;
386 }
387
581e7141 388 td->rate_pending_usleep[ddir] = 0;
127f6865
JA
389 return 0;
390}
391
581e7141
JA
392static int setup_rate(struct thread_data *td)
393{
394 int ret = 0;
395
396 if (td->o.rate[DDIR_READ] || td->o.rate_iops[DDIR_READ])
397 ret = __setup_rate(td, DDIR_READ);
398 if (td->o.rate[DDIR_WRITE] || td->o.rate_iops[DDIR_WRITE])
399 ret |= __setup_rate(td, DDIR_WRITE);
6eaf09d6
SL
400 if (td->o.rate[DDIR_TRIM] || td->o.rate_iops[DDIR_TRIM])
401 ret |= __setup_rate(td, DDIR_TRIM);
581e7141
JA
402
403 return ret;
404}
405
8347239a
JA
406static int fixed_block_size(struct thread_options *o)
407{
408 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
409 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
6eaf09d6
SL
410 o->min_bs[DDIR_TRIM] == o->max_bs[DDIR_TRIM] &&
411 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE] &&
412 o->min_bs[DDIR_READ] == o->min_bs[DDIR_TRIM];
8347239a
JA
413}
414
dad915e3
JA
415/*
416 * Lazy way of fixing up options that depend on each other. We could also
417 * define option callback handlers, but this is easier.
418 */
4e991c23 419static int fixup_options(struct thread_data *td)
e1f36503 420{
2dc1bbeb 421 struct thread_options *o = &td->o;
eefd98b1 422 int ret = 0;
dad915e3 423
f356d01d 424#ifndef FIO_HAVE_PSHARED_MUTEX
9bbf57cc 425 if (!o->use_thread) {
f356d01d
JA
426 log_info("fio: this platform does not support process shared"
427 " mutexes, forcing use of threads. Use the 'thread'"
428 " option to get rid of this warning.\n");
9bbf57cc 429 o->use_thread = 1;
a9523c6f 430 ret = warnings_fatal;
f356d01d
JA
431 }
432#endif
433
2dc1bbeb 434 if (o->write_iolog_file && o->read_iolog_file) {
076efc7c 435 log_err("fio: read iolog overrides write_iolog\n");
2dc1bbeb
JA
436 free(o->write_iolog_file);
437 o->write_iolog_file = NULL;
a9523c6f 438 ret = warnings_fatal;
076efc7c 439 }
16b462ae 440
16b462ae 441 /*
ed335855 442 * only really works with 1 file
16b462ae 443 */
627aa1a8 444 if (o->zone_size && o->open_files > 1)
2dc1bbeb 445 o->zone_size = 0;
16b462ae 446
ed335855
SN
447 /*
448 * If zone_range isn't specified, backward compatibility dictates it
449 * should be made equal to zone_size.
450 */
451 if (o->zone_size && !o->zone_range)
452 o->zone_range = o->zone_size;
453
16b462ae
JA
454 /*
455 * Reads can do overwrites, we always need to pre-create the file
456 */
457 if (td_read(td) || td_rw(td))
2dc1bbeb 458 o->overwrite = 1;
16b462ae 459
2dc1bbeb 460 if (!o->min_bs[DDIR_READ])
5ec10eaa 461 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
2dc1bbeb
JA
462 if (!o->max_bs[DDIR_READ])
463 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
464 if (!o->min_bs[DDIR_WRITE])
5ec10eaa 465 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
2dc1bbeb
JA
466 if (!o->max_bs[DDIR_WRITE])
467 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
6eaf09d6
SL
468 if (!o->min_bs[DDIR_TRIM])
469 o->min_bs[DDIR_TRIM] = o->bs[DDIR_TRIM];
470 if (!o->max_bs[DDIR_TRIM])
471 o->max_bs[DDIR_TRIM] = o->bs[DDIR_TRIM];
472
a00735e6 473
2dc1bbeb 474 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
6eaf09d6 475 o->rw_min_bs = min(o->min_bs[DDIR_TRIM], o->rw_min_bs);
a00735e6 476
2b7a01d0
JA
477 /*
478 * For random IO, allow blockalign offset other than min_bs.
479 */
480 if (!o->ba[DDIR_READ] || !td_random(td))
481 o->ba[DDIR_READ] = o->min_bs[DDIR_READ];
482 if (!o->ba[DDIR_WRITE] || !td_random(td))
483 o->ba[DDIR_WRITE] = o->min_bs[DDIR_WRITE];
6eaf09d6
SL
484 if (!o->ba[DDIR_TRIM] || !td_random(td))
485 o->ba[DDIR_TRIM] = o->min_bs[DDIR_TRIM];
2b7a01d0
JA
486
487 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
6eaf09d6
SL
488 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE] ||
489 o->ba[DDIR_TRIM] != o->min_bs[DDIR_TRIM]) &&
9bbf57cc 490 !o->norandommap) {
2b7a01d0 491 log_err("fio: Any use of blockalign= turns off randommap\n");
9bbf57cc 492 o->norandommap = 1;
a9523c6f 493 ret = warnings_fatal;
2b7a01d0
JA
494 }
495
2dc1bbeb
JA
496 if (!o->file_size_high)
497 o->file_size_high = o->file_size_low;
9c60ce64 498
8347239a
JA
499 if (o->norandommap && o->verify != VERIFY_NONE
500 && !fixed_block_size(o)) {
501 log_err("fio: norandommap given for variable block sizes, "
502 "verify disabled\n");
2dc1bbeb 503 o->verify = VERIFY_NONE;
a9523c6f 504 ret = warnings_fatal;
bb8895e0 505 }
2dc1bbeb 506 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
690adba3 507 log_err("fio: bs_unaligned may not work with raw io\n");
e0a22335 508
48097d5c
JA
509 /*
510 * thinktime_spin must be less than thinktime
511 */
2dc1bbeb
JA
512 if (o->thinktime_spin > o->thinktime)
513 o->thinktime_spin = o->thinktime;
e916b390
JA
514
515 /*
516 * The low water mark cannot be bigger than the iodepth
517 */
67bf9823
JA
518 if (o->iodepth_low > o->iodepth || !o->iodepth_low)
519 o->iodepth_low = o->iodepth;
cb5ab512
JA
520
521 /*
522 * If batch number isn't set, default to the same as iodepth
523 */
2dc1bbeb
JA
524 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
525 o->iodepth_batch = o->iodepth;
b5af8293 526
2dc1bbeb
JA
527 if (o->nr_files > td->files_index)
528 o->nr_files = td->files_index;
9f9214f2 529
2dc1bbeb
JA
530 if (o->open_files > o->nr_files || !o->open_files)
531 o->open_files = o->nr_files;
4e991c23 532
6eaf09d6
SL
533 if (((o->rate[DDIR_READ] + o->rate[DDIR_WRITE] + o->rate[DDIR_TRIM]) &&
534 (o->rate_iops[DDIR_READ] + o->rate_iops[DDIR_WRITE] + o->rate_iops[DDIR_TRIM])) ||
535 ((o->ratemin[DDIR_READ] + o->ratemin[DDIR_WRITE] + o->ratemin[DDIR_TRIM]) &&
536 (o->rate_iops_min[DDIR_READ] + o->rate_iops_min[DDIR_WRITE] + o->rate_iops_min[DDIR_TRIM]))) {
4e991c23 537 log_err("fio: rate and rate_iops are mutually exclusive\n");
a9523c6f 538 ret = 1;
4e991c23 539 }
6eaf09d6
SL
540 if ((o->rate[DDIR_READ] < o->ratemin[DDIR_READ]) ||
541 (o->rate[DDIR_WRITE] < o->ratemin[DDIR_WRITE]) ||
542 (o->rate[DDIR_TRIM] < o->ratemin[DDIR_TRIM]) ||
543 (o->rate_iops[DDIR_READ] < o->rate_iops_min[DDIR_READ]) ||
544 (o->rate_iops[DDIR_WRITE] < o->rate_iops_min[DDIR_WRITE]) ||
545 (o->rate_iops[DDIR_TRIM] < o->rate_iops_min[DDIR_TRIM])) {
4e991c23 546 log_err("fio: minimum rate exceeds rate\n");
a9523c6f 547 ret = 1;
4e991c23
JA
548 }
549
cf4464ca
JA
550 if (!o->timeout && o->time_based) {
551 log_err("fio: time_based requires a runtime/timeout setting\n");
552 o->time_based = 0;
a9523c6f 553 ret = warnings_fatal;
cf4464ca
JA
554 }
555
aa31f1f1 556 if (o->fill_device && !o->size)
5921e80c 557 o->size = -1ULL;
5ec10eaa 558
9bbf57cc 559 if (o->verify != VERIFY_NONE) {
996936f9 560 if (td_write(td) && o->do_verify && o->numjobs > 1) {
a9523c6f
JA
561 log_info("Multiple writers may overwrite blocks that "
562 "belong to other jobs. This can cause "
563 "verification failures.\n");
564 ret = warnings_fatal;
565 }
566
9bbf57cc 567 o->refill_buffers = 1;
2f1b8e8b
JA
568 if (o->max_bs[DDIR_WRITE] != o->min_bs[DDIR_WRITE] &&
569 !o->verify_interval)
570 o->verify_interval = o->min_bs[DDIR_WRITE];
d990588e 571 }
41ccd845 572
9bbf57cc
JA
573 if (o->pre_read) {
574 o->invalidate_cache = 0;
a9523c6f 575 if (td->io_ops->flags & FIO_PIPEIO) {
9c0d2241
JA
576 log_info("fio: cannot pre-read files with an IO engine"
577 " that isn't seekable. Pre-read disabled.\n");
a9523c6f
JA
578 ret = warnings_fatal;
579 }
9c0d2241 580 }
34f1c044 581
ad705bcb
SN
582 if (!o->unit_base) {
583 if (td->io_ops->flags & FIO_BIT_BASED)
584 o->unit_base = 1;
585 else
586 o->unit_base = 8;
587 }
588
67bf9823 589#ifndef CONFIG_FDATASYNC
9bbf57cc 590 if (o->fdatasync_blocks) {
e72fa4d4
JA
591 log_info("fio: this platform does not support fdatasync()"
592 " falling back to using fsync(). Use the 'fsync'"
593 " option instead of 'fdatasync' to get rid of"
594 " this warning\n");
9bbf57cc
JA
595 o->fsync_blocks = o->fdatasync_blocks;
596 o->fdatasync_blocks = 0;
a9523c6f 597 ret = warnings_fatal;
e72fa4d4
JA
598 }
599#endif
600
93bcfd20
BC
601#ifdef WIN32
602 /*
603 * Windows doesn't support O_DIRECT or O_SYNC with the _open interface,
604 * so fail if we're passed those flags
605 */
606 if ((td->io_ops->flags & FIO_SYNCIO) && (td->o.odirect || td->o.sync_io)) {
607 log_err("fio: Windows does not support direct or non-buffered io with"
608 " the synchronous ioengines. Use the 'windowsaio' ioengine"
609 " with 'direct=1' and 'iodepth=1' instead.\n");
610 ret = 1;
611 }
612#endif
613
811ac503
JA
614 /*
615 * For fully compressible data, just zero them at init time.
616 * It's faster than repeatedly filling it.
617 */
618 if (td->o.compress_percentage == 100) {
619 td->o.zero_buffers = 1;
620 td->o.compress_percentage = 0;
621 }
622
5881fda4
JA
623 /*
624 * Using a non-uniform random distribution excludes usage of
625 * a random map
626 */
627 if (td->o.random_distribution != FIO_RAND_DIST_RANDOM)
628 td->o.norandommap = 1;
629
8d916c94
JA
630 /*
631 * If size is set but less than the min block size, complain
632 */
633 if (o->size && o->size < td_min_bs(td)) {
634 log_err("fio: size too small, must be larger than the IO size: %llu\n", (unsigned long long) o->size);
635 ret = 1;
636 }
637
d01612f3
CM
638 /*
639 * O_ATOMIC implies O_DIRECT
640 */
641 if (td->o.oatomic)
642 td->o.odirect = 1;
643
04778baf
JA
644 /*
645 * If randseed is set, that overrides randrepeat
646 */
647 if (td->o.rand_seed)
648 td->o.rand_repeatable = 0;
649
a9523c6f 650 return ret;
e1f36503
JA
651}
652
f8977ee6
JA
653/*
654 * This function leaks the buffer
655 */
99d633af 656char *fio_uint_to_kmg(unsigned int val)
f8977ee6
JA
657{
658 char *buf = malloc(32);
f3502ba2 659 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
f8977ee6
JA
660 char *p = post;
661
245142ff 662 do {
f8977ee6
JA
663 if (val & 1023)
664 break;
665
666 val >>= 10;
667 p++;
245142ff 668 } while (*p);
f8977ee6 669
98ffb8f3 670 snprintf(buf, 32, "%u%c", val, *p);
f8977ee6
JA
671 return buf;
672}
673
09629a90
JA
674/* External engines are specified by "external:name.o") */
675static const char *get_engine_name(const char *str)
676{
677 char *p = strstr(str, ":");
678
679 if (!p)
680 return str;
681
682 p++;
683 strip_blank_front(&p);
684 strip_blank_end(p);
685 return p;
686}
687
e132cbae
JA
688static int exists_and_not_file(const char *filename)
689{
690 struct stat sb;
691
692 if (lstat(filename, &sb) == -1)
693 return 0;
694
ecc314ba
BC
695 /* \\.\ is the device namespace in Windows, where every file
696 * is a device node */
697 if (S_ISREG(sb.st_mode) && strncmp(filename, "\\\\.\\", 4) != 0)
e132cbae
JA
698 return 0;
699
700 return 1;
701}
702
4c07ad86 703static void td_fill_rand_seeds_os(struct thread_data *td)
5bfc35d7 704{
d24945f0
JA
705 os_random_seed(td->rand_seeds[FIO_RAND_BS_OFF], &td->bsrange_state);
706 os_random_seed(td->rand_seeds[FIO_RAND_VER_OFF], &td->verify_state);
707 os_random_seed(td->rand_seeds[FIO_RAND_MIX_OFF], &td->rwmix_state);
5bfc35d7
JA
708
709 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
d24945f0 710 os_random_seed(td->rand_seeds[FIO_RAND_FILE_OFF], &td->next_file_state);
5bfc35d7 711
d24945f0
JA
712 os_random_seed(td->rand_seeds[FIO_RAND_FILE_SIZE_OFF], &td->file_size_state);
713 os_random_seed(td->rand_seeds[FIO_RAND_TRIM_OFF], &td->trim_state);
5bfc35d7
JA
714
715 if (!td_random(td))
716 return;
717
718 if (td->o.rand_repeatable)
d24945f0 719 td->rand_seeds[FIO_RAND_BLOCK_OFF] = FIO_RANDSEED * td->thread_number;
5bfc35d7 720
d24945f0 721 os_random_seed(td->rand_seeds[FIO_RAND_BLOCK_OFF], &td->random_state);
d9472271
JA
722
723 os_random_seed(td->rand_seeds[FIO_RAND_SEQ_RAND_READ_OFF], &td->seq_rand_state[DDIR_READ]);
724 os_random_seed(td->rand_seeds[FIO_RAND_SEQ_RAND_WRITE_OFF], &td->seq_rand_state[DDIR_WRITE]);
725 os_random_seed(td->rand_seeds[FIO_RAND_SEQ_RAND_TRIM_OFF], &td->seq_rand_state[DDIR_TRIM]);
4c07ad86
JA
726}
727
728static void td_fill_rand_seeds_internal(struct thread_data *td)
729{
d24945f0
JA
730 init_rand_seed(&td->__bsrange_state, td->rand_seeds[FIO_RAND_BS_OFF]);
731 init_rand_seed(&td->__verify_state, td->rand_seeds[FIO_RAND_VER_OFF]);
732 init_rand_seed(&td->__rwmix_state, td->rand_seeds[FIO_RAND_MIX_OFF]);
4c07ad86
JA
733
734 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
d24945f0 735 init_rand_seed(&td->__next_file_state, td->rand_seeds[FIO_RAND_FILE_OFF]);
4c07ad86 736
d24945f0
JA
737 init_rand_seed(&td->__file_size_state, td->rand_seeds[FIO_RAND_FILE_SIZE_OFF]);
738 init_rand_seed(&td->__trim_state, td->rand_seeds[FIO_RAND_TRIM_OFF]);
4c07ad86
JA
739
740 if (!td_random(td))
741 return;
742
743 if (td->o.rand_repeatable)
d24945f0 744 td->rand_seeds[FIO_RAND_BLOCK_OFF] = FIO_RANDSEED * td->thread_number;
4c07ad86 745
d24945f0 746 init_rand_seed(&td->__random_state, td->rand_seeds[FIO_RAND_BLOCK_OFF]);
d9472271
JA
747 init_rand_seed(&td->__seq_rand_state[DDIR_READ], td->rand_seeds[FIO_RAND_SEQ_RAND_READ_OFF]);
748 init_rand_seed(&td->__seq_rand_state[DDIR_WRITE], td->rand_seeds[FIO_RAND_SEQ_RAND_WRITE_OFF]);
749 init_rand_seed(&td->__seq_rand_state[DDIR_TRIM], td->rand_seeds[FIO_RAND_SEQ_RAND_TRIM_OFF]);
5bfc35d7
JA
750}
751
4c07ad86
JA
752void td_fill_rand_seeds(struct thread_data *td)
753{
56e2a5fc
CE
754 if (td->o.allrand_repeatable) {
755 for (int i = 0; i < FIO_RAND_NR_OFFS; i++)
756 td->rand_seeds[i] = FIO_RANDSEED * td->thread_number
757 + i;
758 }
759
4c07ad86
JA
760 if (td->o.use_os_rand)
761 td_fill_rand_seeds_os(td);
762 else
763 td_fill_rand_seeds_internal(td);
3545a109 764
d24945f0 765 init_rand_seed(&td->buf_state, td->rand_seeds[FIO_RAND_BUF_OFF]);
4c07ad86
JA
766}
767
de890a1e
SL
768/*
769 * Initializes the ioengine configured for a job, if it has not been done so
770 * already.
771 */
772int ioengine_load(struct thread_data *td)
773{
774 const char *engine;
775
776 /*
777 * Engine has already been loaded.
778 */
779 if (td->io_ops)
780 return 0;
6e5c4b8e
JA
781 if (!td->o.ioengine) {
782 log_err("fio: internal fault, no IO engine specified\n");
783 return 1;
784 }
de890a1e
SL
785
786 engine = get_engine_name(td->o.ioengine);
787 td->io_ops = load_ioengine(td, engine);
788 if (!td->io_ops) {
789 log_err("fio: failed to load engine %s\n", engine);
790 return 1;
791 }
792
793 if (td->io_ops->option_struct_size && td->io_ops->options) {
794 /*
795 * In cases where td->eo is set, clone it for a child thread.
796 * This requires that the parent thread has the same ioengine,
797 * but that requirement must be enforced by the code which
798 * cloned the thread.
799 */
800 void *origeo = td->eo;
801 /*
802 * Otherwise use the default thread options.
803 */
804 if (!origeo && td != &def_thread && def_thread.eo &&
805 def_thread.io_ops->options == td->io_ops->options)
806 origeo = def_thread.eo;
807
808 options_init(td->io_ops->options);
809 td->eo = malloc(td->io_ops->option_struct_size);
810 /*
811 * Use the default thread as an option template if this uses the
812 * same options structure and there are non-default options
813 * used.
814 */
815 if (origeo) {
816 memcpy(td->eo, origeo, td->io_ops->option_struct_size);
817 options_mem_dupe(td->eo, td->io_ops->options);
818 } else {
819 memset(td->eo, 0, td->io_ops->option_struct_size);
820 fill_default_options(td->eo, td->io_ops->options);
821 }
822 *(struct thread_data **)td->eo = td;
823 }
824
825 return 0;
826}
827
d72be545
JA
828static void init_flags(struct thread_data *td)
829{
830 struct thread_options *o = &td->o;
831
832 if (o->verify_backlog)
833 td->flags |= TD_F_VER_BACKLOG;
834 if (o->trim_backlog)
835 td->flags |= TD_F_TRIM_BACKLOG;
836 if (o->read_iolog_file)
837 td->flags |= TD_F_READ_IOLOG;
838 if (o->refill_buffers)
839 td->flags |= TD_F_REFILL_BUFFERS;
840 if (o->scramble_buffers)
841 td->flags |= TD_F_SCRAMBLE_BUFFERS;
842 if (o->verify != VERIFY_NONE)
843 td->flags |= TD_F_VER_NONE;
844}
845
9dbc7bfe
JA
846static int setup_random_seeds(struct thread_data *td)
847{
848 unsigned long seed;
849 unsigned int i;
850
04778baf 851 if (!td->o.rand_repeatable && !td->o.rand_seed)
9dbc7bfe
JA
852 return init_random_state(td, td->rand_seeds, sizeof(td->rand_seeds));
853
04778baf
JA
854 if (!td->o.rand_seed)
855 seed = 0x89;
856 else
857 seed = td->o.rand_seed;
858
859 for (i = 0; i < 4; i++)
9dbc7bfe
JA
860 seed *= 0x9e370001UL;
861
862 for (i = 0; i < FIO_RAND_NR_OFFS; i++) {
863 td->rand_seeds[i] = seed;
864 seed *= 0x9e370001UL;
865 }
866
867 td_fill_rand_seeds(td);
868 return 0;
869}
870
de98bd30
JA
871enum {
872 FPRE_NONE = 0,
873 FPRE_JOBNAME,
874 FPRE_JOBNUM,
875 FPRE_FILENUM
876};
877
878static struct fpre_keyword {
879 const char *keyword;
880 size_t strlen;
881 int key;
882} fpre_keywords[] = {
883 { .keyword = "$jobname", .key = FPRE_JOBNAME, },
884 { .keyword = "$jobnum", .key = FPRE_JOBNUM, },
885 { .keyword = "$filenum", .key = FPRE_FILENUM, },
886 { .keyword = NULL, },
887 };
888
889static char *make_filename(char *buf, struct thread_options *o,
890 const char *jobname, int jobnum, int filenum)
891{
892 struct fpre_keyword *f;
893 char copy[PATH_MAX];
894
895 if (!o->filename_format || !strlen(o->filename_format)) {
896 sprintf(buf, "%s.%d.%d", jobname, jobnum, filenum);
897 return NULL;
898 }
899
900 for (f = &fpre_keywords[0]; f->keyword; f++)
901 f->strlen = strlen(f->keyword);
902
903 strcpy(buf, o->filename_format);
904 memset(copy, 0, sizeof(copy));
905 for (f = &fpre_keywords[0]; f->keyword; f++) {
906 do {
907 size_t pre_len, post_start = 0;
908 char *str, *dst = copy;
909
e25b6d5a 910 str = strcasestr(buf, f->keyword);
de98bd30
JA
911 if (!str)
912 break;
913
914 pre_len = str - buf;
915 if (strlen(str) != f->strlen)
916 post_start = pre_len + f->strlen;
917
918 if (pre_len) {
919 strncpy(dst, buf, pre_len);
920 dst += pre_len;
921 }
922
923 switch (f->key) {
924 case FPRE_JOBNAME:
925 dst += sprintf(dst, "%s", jobname);
926 break;
927 case FPRE_JOBNUM:
928 dst += sprintf(dst, "%d", jobnum);
929 break;
930 case FPRE_FILENUM:
931 dst += sprintf(dst, "%d", filenum);
932 break;
933 default:
934 assert(0);
935 break;
936 }
937
938 if (post_start)
939 strcpy(dst, buf + post_start);
940
941 strcpy(buf, copy);
942 } while (1);
943 }
944
945 return buf;
946}
f9633d72
JA
947
948int parse_dryrun(void)
949{
950 return dump_cmdline || parse_only;
951}
952
906c8d75
JA
953/*
954 * Adds a job to the list of things todo. Sanitizes the various options
955 * to make sure we don't have conflicts, and initializes various
956 * members of td.
957 */
b7cfb2e1 958static int add_job(struct thread_data *td, const char *jobname, int job_add_num,
46bcd498 959 int recursed, int client_type)
ebac4655 960{
af52b345 961 unsigned int i;
af52b345 962 char fname[PATH_MAX];
e132cbae 963 int numjobs, file_alloced;
de98bd30 964 struct thread_options *o = &td->o;
ebac4655 965
ebac4655
JA
966 /*
967 * the def_thread is just for options, it's not a real job
968 */
969 if (td == &def_thread)
970 return 0;
971
d72be545
JA
972 init_flags(td);
973
cca73aa7
JA
974 /*
975 * if we are just dumping the output command line, don't add the job
976 */
f9633d72 977 if (parse_dryrun()) {
cca73aa7
JA
978 put_job(td);
979 return 0;
980 }
981
46bcd498
JA
982 td->client_type = client_type;
983
58c55ba0 984 if (profile_td_init(td))
66251554 985 goto err;
58c55ba0 986
de890a1e 987 if (ioengine_load(td))
205927a3 988 goto err;
df64119d 989
de98bd30 990 if (o->odirect)
690adba3
JA
991 td->io_ops->flags |= FIO_RAWIO;
992
e132cbae 993 file_alloced = 0;
de98bd30 994 if (!o->filename && !td->files_index && !o->read_iolog_file) {
e132cbae 995 file_alloced = 1;
80be24f4 996
de98bd30 997 if (o->nr_files == 1 && exists_and_not_file(jobname))
e132cbae 998 add_file(td, jobname);
7b05a215 999 else {
de98bd30
JA
1000 for (i = 0; i < o->nr_files; i++)
1001 add_file(td, make_filename(fname, o, jobname, td->thread_number, i));
af52b345 1002 }
0af7b542 1003 }
ebac4655 1004
4e991c23
JA
1005 if (fixup_options(td))
1006 goto err;
e0a22335 1007
9e684a49
DE
1008 flow_init_job(td);
1009
de890a1e
SL
1010 /*
1011 * IO engines only need this for option callbacks, and the address may
1012 * change in subprocesses.
1013 */
1014 if (td->eo)
1015 *(struct thread_data **)td->eo = NULL;
1016
07eb79df
JA
1017 if (td->io_ops->flags & FIO_DISKLESSIO) {
1018 struct fio_file *f;
1019
1020 for_each_file(td, f, i)
1021 f->real_file_size = -1ULL;
1022 }
1023
521da527 1024 td->mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
ebac4655 1025
de98bd30
JA
1026 td->ts.clat_percentiles = o->clat_percentiles;
1027 td->ts.percentile_precision = o->percentile_precision;
1028 memcpy(td->ts.percentile_list, o->percentile_list, sizeof(o->percentile_list));
83349190 1029
6eaf09d6
SL
1030 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1031 td->ts.clat_stat[i].min_val = ULONG_MAX;
1032 td->ts.slat_stat[i].min_val = ULONG_MAX;
1033 td->ts.lat_stat[i].min_val = ULONG_MAX;
1034 td->ts.bw_stat[i].min_val = ULONG_MAX;
1035 }
de98bd30 1036 td->ddir_seq_nr = o->ddir_seq_nr;
ebac4655 1037
de98bd30 1038 if ((o->stonewall || o->new_group) && prev_group_jobs) {
3c5df6fa 1039 prev_group_jobs = 0;
ebac4655 1040 groupid++;
3c5df6fa 1041 }
ebac4655
JA
1042
1043 td->groupid = groupid;
3c5df6fa 1044 prev_group_jobs++;
ebac4655 1045
9dbc7bfe 1046 if (setup_random_seeds(td)) {
93bcfd20 1047 td_verror(td, errno, "init_random_state");
9c60ce64 1048 goto err;
93bcfd20 1049 }
9c60ce64 1050
ebac4655
JA
1051 if (setup_rate(td))
1052 goto err;
1053
22f80458
JA
1054 if (o->lat_log_file) {
1055 setup_log(&td->lat_log, o->log_avg_msec, IO_LOG_TYPE_LAT);
1056 setup_log(&td->slat_log, o->log_avg_msec, IO_LOG_TYPE_SLAT);
1057 setup_log(&td->clat_log, o->log_avg_msec, IO_LOG_TYPE_CLAT);
ebac4655 1058 }
22f80458
JA
1059 if (o->bw_log_file)
1060 setup_log(&td->bw_log, o->log_avg_msec, IO_LOG_TYPE_BW);
1061 if (o->iops_log_file)
1062 setup_log(&td->iops_log, o->log_avg_msec, IO_LOG_TYPE_IOPS);
ebac4655 1063
de98bd30
JA
1064 if (!o->name)
1065 o->name = strdup(jobname);
01452055 1066
f3afa57e 1067 if (output_format == FIO_OUTPUT_NORMAL) {
b990b5c0 1068 if (!job_add_num) {
b7cfb2e1 1069 if (is_backend && !recursed)
2f122b13 1070 fio_server_send_add_job(td);
807f9971 1071
0353050f 1072 if (!(td->io_ops->flags & FIO_NOIO)) {
d21e2535
JA
1073 char *c1, *c2, *c3, *c4;
1074 char *c5 = NULL, *c6 = NULL;
f8977ee6 1075
22f80458
JA
1076 c1 = fio_uint_to_kmg(o->min_bs[DDIR_READ]);
1077 c2 = fio_uint_to_kmg(o->max_bs[DDIR_READ]);
1078 c3 = fio_uint_to_kmg(o->min_bs[DDIR_WRITE]);
1079 c4 = fio_uint_to_kmg(o->max_bs[DDIR_WRITE]);
d21e2535
JA
1080
1081 if (!o->bs_is_seq_rand) {
1082 c5 = fio_uint_to_kmg(o->min_bs[DDIR_TRIM]);
1083 c6 = fio_uint_to_kmg(o->max_bs[DDIR_TRIM]);
1084 }
1085
1086 log_info("%s: (g=%d): rw=%s, ", td->o.name,
1087 td->groupid,
1088 ddir_str(o->td_ddir));
1089
1090 if (o->bs_is_seq_rand)
1091 log_info("bs(seq/rand)=%s-%s/%s-%s, ",
1092 c1, c2, c3, c4);
1093 else
1094 log_info("bs=%s-%s/%s-%s/%s-%s, ",
1095 c1, c2, c3, c4, c5, c6);
1096
1097 log_info("ioengine=%s, iodepth=%u\n",
de98bd30 1098 td->io_ops->name, o->iodepth);
f8977ee6
JA
1099
1100 free(c1);
1101 free(c2);
1102 free(c3);
1103 free(c4);
6eaf09d6
SL
1104 free(c5);
1105 free(c6);
f8977ee6 1106 }
b990b5c0 1107 } else if (job_add_num == 1)
6d86144d 1108 log_info("...\n");
c6ae0a5b 1109 }
ebac4655
JA
1110
1111 /*
1112 * recurse add identical jobs, clear numjobs and stonewall options
1113 * as they don't apply to sub-jobs
1114 */
de98bd30 1115 numjobs = o->numjobs;
ebac4655 1116 while (--numjobs) {
de890a1e 1117 struct thread_data *td_new = get_new_job(0, td, 1);
ebac4655
JA
1118
1119 if (!td_new)
1120 goto err;
1121
2dc1bbeb
JA
1122 td_new->o.numjobs = 1;
1123 td_new->o.stonewall = 0;
92c1d41f 1124 td_new->o.new_group = 0;
e132cbae
JA
1125
1126 if (file_alloced) {
e132cbae 1127 td_new->files_index = 0;
4e6ea2f1 1128 td_new->files_size = 0;
455a50fa
CE
1129 if (td_new->files) {
1130 struct fio_file *f;
1131 for_each_file(td_new, f, i) {
1132 if (f->file_name)
1133 free(f->file_name);
1134 free(f);
1135 }
1136 td_new->files = NULL;
1137 }
1138 if (td_new->o.filename) {
1139 free(td_new->o.filename);
1140 td_new->o.filename = NULL;
1141 }
e132cbae
JA
1142 }
1143
75154845 1144 job_add_num = numjobs - 1;
ebac4655 1145
46bcd498 1146 if (add_job(td_new, jobname, job_add_num, 1, client_type))
ebac4655
JA
1147 goto err;
1148 }
3c5df6fa 1149
ebac4655
JA
1150 return 0;
1151err:
1152 put_job(td);
1153 return -1;
1154}
1155
79d16311
JA
1156/*
1157 * Parse as if 'o' was a command line
1158 */
46bcd498 1159void add_job_opts(const char **o, int client_type)
79d16311
JA
1160{
1161 struct thread_data *td, *td_parent;
1162 int i, in_global = 1;
1163 char jobname[32];
1164
1165 i = 0;
1166 td_parent = td = NULL;
1167 while (o[i]) {
1168 if (!strncmp(o[i], "name", 4)) {
1169 in_global = 0;
1170 if (td)
46bcd498 1171 add_job(td, jobname, 0, 0, client_type);
79d16311
JA
1172 td = NULL;
1173 sprintf(jobname, "%s", o[i] + 5);
1174 }
1175 if (in_global && !td_parent)
de890a1e 1176 td_parent = get_new_job(1, &def_thread, 0);
79d16311
JA
1177 else if (!in_global && !td) {
1178 if (!td_parent)
1179 td_parent = &def_thread;
de890a1e 1180 td = get_new_job(0, td_parent, 0);
79d16311
JA
1181 }
1182 if (in_global)
292cc475 1183 fio_options_parse(td_parent, (char **) &o[i], 1, 0);
79d16311 1184 else
292cc475 1185 fio_options_parse(td, (char **) &o[i], 1, 0);
79d16311
JA
1186 i++;
1187 }
1188
1189 if (td)
46bcd498 1190 add_job(td, jobname, 0, 0, client_type);
79d16311
JA
1191}
1192
01f06b63
JA
1193static int skip_this_section(const char *name)
1194{
ad0a2735
JA
1195 int i;
1196
1197 if (!nr_job_sections)
01f06b63
JA
1198 return 0;
1199 if (!strncmp(name, "global", 6))
1200 return 0;
1201
ad0a2735
JA
1202 for (i = 0; i < nr_job_sections; i++)
1203 if (!strcmp(job_sections[i], name))
1204 return 0;
1205
1206 return 1;
01f06b63
JA
1207}
1208
ebac4655
JA
1209static int is_empty_or_comment(char *line)
1210{
1211 unsigned int i;
1212
1213 for (i = 0; i < strlen(line); i++) {
1214 if (line[i] == ';')
1215 return 1;
5cc2da30
IM
1216 if (line[i] == '#')
1217 return 1;
76cd9378 1218 if (!isspace((int) line[i]) && !iscntrl((int) line[i]))
ebac4655
JA
1219 return 0;
1220 }
1221
1222 return 1;
1223}
1224
07261983
JA
1225/*
1226 * This is our [ini] type file parser.
1227 */
46bcd498 1228int parse_jobs_ini(char *file, int is_buf, int stonewall_flag, int type)
ebac4655 1229{
e1f36503 1230 unsigned int global;
ebac4655 1231 struct thread_data *td;
fee3bb48 1232 char *string, *name;
ebac4655
JA
1233 FILE *f;
1234 char *p;
0c7e37a0 1235 int ret = 0, stonewall;
097b2991 1236 int first_sect = 1;
ccf8f127 1237 int skip_fgets = 0;
01f06b63 1238 int inside_skip = 0;
3b8b7135
JA
1239 char **opts;
1240 int i, alloc_opts, num_opts;
ebac4655 1241
50d16976
JA
1242 if (is_buf)
1243 f = NULL;
1244 else {
1245 if (!strcmp(file, "-"))
1246 f = stdin;
1247 else
1248 f = fopen(file, "r");
5a729cbe 1249
50d16976
JA
1250 if (!f) {
1251 perror("fopen job file");
1252 return 1;
1253 }
ebac4655
JA
1254 }
1255
1256 string = malloc(4096);
7f7e6e59
JA
1257
1258 /*
1259 * it's really 256 + small bit, 280 should suffice
1260 */
1261 name = malloc(280);
1262 memset(name, 0, 280);
ebac4655 1263
3b8b7135
JA
1264 alloc_opts = 8;
1265 opts = malloc(sizeof(char *) * alloc_opts);
b7c6302d 1266 num_opts = 0;
3b8b7135 1267
0c7e37a0 1268 stonewall = stonewall_flag;
7c124ac1 1269 do {
ccf8f127
JA
1270 /*
1271 * if skip_fgets is set, we already have loaded a line we
1272 * haven't handled.
1273 */
1274 if (!skip_fgets) {
50d16976
JA
1275 if (is_buf)
1276 p = strsep(&file, "\n");
1277 else
43f74792 1278 p = fgets(string, 4096, f);
ccf8f127
JA
1279 if (!p)
1280 break;
1281 }
cdc7f193 1282
ccf8f127 1283 skip_fgets = 0;
cdc7f193 1284 strip_blank_front(&p);
6c7c7da1 1285 strip_blank_end(p);
cdc7f193 1286
ebac4655
JA
1287 if (is_empty_or_comment(p))
1288 continue;
84dd1886 1289 if (sscanf(p, "[%255[^\n]]", name) != 1) {
01f06b63
JA
1290 if (inside_skip)
1291 continue;
5ec10eaa
JA
1292 log_err("fio: option <%s> outside of [] job section\n",
1293 p);
088b4207 1294 break;
6c7c7da1 1295 }
ebac4655 1296
7a4b80a1
JA
1297 name[strlen(name) - 1] = '\0';
1298
01f06b63
JA
1299 if (skip_this_section(name)) {
1300 inside_skip = 1;
1301 continue;
1302 } else
1303 inside_skip = 0;
1304
ebac4655
JA
1305 global = !strncmp(name, "global", 6);
1306
cca73aa7 1307 if (dump_cmdline) {
097b2991
JA
1308 if (first_sect)
1309 log_info("fio ");
cca73aa7
JA
1310 if (!global)
1311 log_info("--name=%s ", name);
097b2991 1312 first_sect = 0;
cca73aa7
JA
1313 }
1314
de890a1e 1315 td = get_new_job(global, &def_thread, 0);
45410acb
JA
1316 if (!td) {
1317 ret = 1;
1318 break;
1319 }
ebac4655 1320
972cfd25 1321 /*
de8f6de9 1322 * Separate multiple job files by a stonewall
972cfd25 1323 */
f9481919 1324 if (!global && stonewall) {
2dc1bbeb 1325 td->o.stonewall = stonewall;
972cfd25
JA
1326 stonewall = 0;
1327 }
1328
3b8b7135
JA
1329 num_opts = 0;
1330 memset(opts, 0, alloc_opts * sizeof(char *));
1331
50d16976
JA
1332 while (1) {
1333 if (is_buf)
1334 p = strsep(&file, "\n");
1335 else
1336 p = fgets(string, 4096, f);
1337 if (!p)
1338 break;
1339
ebac4655
JA
1340 if (is_empty_or_comment(p))
1341 continue;
e1f36503 1342
b6754f9d 1343 strip_blank_front(&p);
7c124ac1 1344
ccf8f127
JA
1345 /*
1346 * new section, break out and make sure we don't
1347 * fgets() a new line at the top.
1348 */
1349 if (p[0] == '[') {
1350 skip_fgets = 1;
7c124ac1 1351 break;
ccf8f127 1352 }
7c124ac1 1353
4ae3f763 1354 strip_blank_end(p);
aea47d44 1355
3b8b7135
JA
1356 if (num_opts == alloc_opts) {
1357 alloc_opts <<= 1;
1358 opts = realloc(opts,
1359 alloc_opts * sizeof(char *));
1360 }
1361
1362 opts[num_opts] = strdup(p);
1363 num_opts++;
ebac4655 1364 }
ebac4655 1365
292cc475
JA
1366 ret = fio_options_parse(td, opts, num_opts, dump_cmdline);
1367 if (!ret)
46bcd498 1368 ret = add_job(td, name, 0, 0, type);
292cc475 1369 else {
b1508cf9
JA
1370 log_err("fio: job %s dropped\n", name);
1371 put_job(td);
45410acb 1372 }
3b8b7135
JA
1373
1374 for (i = 0; i < num_opts; i++)
1375 free(opts[i]);
1376 num_opts = 0;
7c124ac1 1377 } while (!ret);
ebac4655 1378
cca73aa7
JA
1379 if (dump_cmdline)
1380 log_info("\n");
1381
7e356b2d
JA
1382 i = 0;
1383 while (i < nr_job_sections) {
1384 free(job_sections[i]);
1385 i++;
1386 }
1387
3b8b7135
JA
1388 for (i = 0; i < num_opts; i++)
1389 free(opts[i]);
1390
ebac4655
JA
1391 free(string);
1392 free(name);
2577594d 1393 free(opts);
50d16976 1394 if (!is_buf && f != stdin)
5a729cbe 1395 fclose(f);
45410acb 1396 return ret;
ebac4655
JA
1397}
1398
1399static int fill_def_thread(void)
1400{
1401 memset(&def_thread, 0, sizeof(def_thread));
1402
375b2695 1403 fio_getaffinity(getpid(), &def_thread.o.cpumask);
8c029376 1404 def_thread.o.timeout = def_timeout;
8b28bd41 1405 def_thread.o.error_dump = 1;
ebac4655 1406 /*
ee738499 1407 * fill default options
ebac4655 1408 */
214e1eca 1409 fio_fill_default_options(&def_thread);
ebac4655
JA
1410 return 0;
1411}
1412
45378b35 1413static void usage(const char *name)
4785f995 1414{
3d43382c 1415 printf("%s\n", fio_version_string);
45378b35 1416 printf("%s [options] [job options] <job file(s)>\n", name);
83881283
JA
1417 printf(" --debug=options\tEnable debug logging. May be one/more of:\n"
1418 "\t\t\tprocess,file,io,mem,blktrace,verify,random,parse,\n"
3e260a46 1419 "\t\t\tdiskutil,job,mutex,profile,time,net,rate\n");
111e032d 1420 printf(" --parse-only\t\tParse options only, don't start any IO\n");
83881283 1421 printf(" --output\t\tWrite output to file\n");
b2cecdc2 1422 printf(" --runtime\t\tRuntime in seconds\n");
83881283
JA
1423 printf(" --latency-log\t\tGenerate per-job latency logs\n");
1424 printf(" --bandwidth-log\tGenerate per-job bandwidth logs\n");
1425 printf(" --minimal\t\tMinimal (terse) output\n");
f3afa57e 1426 printf(" --output-format=x\tOutput format (terse,json,normal)\n");
75db6e2c 1427 printf(" --terse-version=x\tSet terse version output format to 'x'\n");
f3afa57e 1428 printf(" --version\t\tPrint version info and exit\n");
83881283 1429 printf(" --help\t\tPrint this page\n");
23893646 1430 printf(" --cpuclock-test\tPerform test/validation of CPU clock\n");
fec0f21c 1431 printf(" --crctest\t\tTest speed of checksum functions\n");
83881283 1432 printf(" --cmdhelp=cmd\t\tPrint command help, \"all\" for all of"
5ec10eaa 1433 " them\n");
de890a1e
SL
1434 printf(" --enghelp=engine\tPrint ioengine help, or list"
1435 " available ioengines\n");
1436 printf(" --enghelp=engine,cmd\tPrint help for an ioengine"
1437 " cmd\n");
83881283
JA
1438 printf(" --showcmd\t\tTurn a job file into command line options\n");
1439 printf(" --eta=when\t\tWhen ETA estimate should be printed\n");
1440 printf(" \t\tMay be \"always\", \"never\" or \"auto\"\n");
e382e661
JA
1441 printf(" --eta-newline=time\tForce a new line for every 'time'");
1442 printf(" period passed\n");
06464907
JA
1443 printf(" --status-interval=t\tForce full status dump every");
1444 printf(" 't' period passed\n");
83881283 1445 printf(" --readonly\t\tTurn on safety read-only checks, preventing"
5ec10eaa 1446 " writes\n");
83881283
JA
1447 printf(" --section=name\tOnly run specified section in job file\n");
1448 printf(" --alloc-size=kb\tSet smalloc pool to this size in kb"
2b386d25 1449 " (def 1024)\n");
83881283
JA
1450 printf(" --warnings-fatal\tFio parser warnings are fatal\n");
1451 printf(" --max-jobs=nr\t\tMaximum number of threads/processes to support\n");
1452 printf(" --server=args\t\tStart a backend fio server\n");
1453 printf(" --daemonize=pidfile\tBackground fio server, write pid to file\n");
1454 printf(" --client=hostname\tTalk to remote backend fio server at hostname\n");
f2a2ce0e
HL
1455 printf(" --idle-prof=option\tReport cpu idleness on a system or percpu basis\n"
1456 "\t\t\t(option=system,percpu) or run unit work\n"
1457 "\t\t\tcalibration only (option=calibrate)\n");
aa58d252 1458 printf("\nFio was written by Jens Axboe <jens.axboe@oracle.com>");
bfca2c74
JA
1459 printf("\n Jens Axboe <jaxboe@fusionio.com>");
1460 printf("\n Jens Axboe <axboe@fb.com>\n");
4785f995
JA
1461}
1462
79e48f72 1463#ifdef FIO_INC_DEBUG
ee56ad50 1464struct debug_level debug_levels[] = {
0b8d11ed
JA
1465 { .name = "process",
1466 .help = "Process creation/exit logging",
1467 .shift = FD_PROCESS,
1468 },
1469 { .name = "file",
1470 .help = "File related action logging",
1471 .shift = FD_FILE,
1472 },
1473 { .name = "io",
1474 .help = "IO and IO engine action logging (offsets, queue, completions, etc)",
1475 .shift = FD_IO,
1476 },
1477 { .name = "mem",
1478 .help = "Memory allocation/freeing logging",
1479 .shift = FD_MEM,
1480 },
1481 { .name = "blktrace",
1482 .help = "blktrace action logging",
1483 .shift = FD_BLKTRACE,
1484 },
1485 { .name = "verify",
1486 .help = "IO verification action logging",
1487 .shift = FD_VERIFY,
1488 },
1489 { .name = "random",
1490 .help = "Random generation logging",
1491 .shift = FD_RANDOM,
1492 },
1493 { .name = "parse",
1494 .help = "Parser logging",
1495 .shift = FD_PARSE,
1496 },
1497 { .name = "diskutil",
1498 .help = "Disk utility logging actions",
1499 .shift = FD_DISKUTIL,
1500 },
1501 { .name = "job",
1502 .help = "Logging related to creating/destroying jobs",
1503 .shift = FD_JOB,
1504 },
1505 { .name = "mutex",
1506 .help = "Mutex logging",
1507 .shift = FD_MUTEX
1508 },
1509 { .name = "profile",
1510 .help = "Logging related to profiles",
1511 .shift = FD_PROFILE,
1512 },
1513 { .name = "time",
1514 .help = "Logging related to time keeping functions",
1515 .shift = FD_TIME,
1516 },
1517 { .name = "net",
1518 .help = "Network logging",
1519 .shift = FD_NET,
1520 },
3e260a46
JA
1521 { .name = "rate",
1522 .help = "Rate logging",
1523 .shift = FD_RATE,
1524 },
02444ad1 1525 { .name = NULL, },
ee56ad50
JA
1526};
1527
c09823ab 1528static int set_debug(const char *string)
ee56ad50
JA
1529{
1530 struct debug_level *dl;
1531 char *p = (char *) string;
1532 char *opt;
1533 int i;
1534
1535 if (!strcmp(string, "?") || !strcmp(string, "help")) {
ee56ad50
JA
1536 log_info("fio: dumping debug options:");
1537 for (i = 0; debug_levels[i].name; i++) {
1538 dl = &debug_levels[i];
1539 log_info("%s,", dl->name);
1540 }
bd6f78b2 1541 log_info("all\n");
c09823ab 1542 return 1;
ee56ad50
JA
1543 }
1544
1545 while ((opt = strsep(&p, ",")) != NULL) {
1546 int found = 0;
1547
5e1d306e
JA
1548 if (!strncmp(opt, "all", 3)) {
1549 log_info("fio: set all debug options\n");
1550 fio_debug = ~0UL;
1551 continue;
1552 }
1553
ee56ad50
JA
1554 for (i = 0; debug_levels[i].name; i++) {
1555 dl = &debug_levels[i];
5e1d306e
JA
1556 found = !strncmp(opt, dl->name, strlen(dl->name));
1557 if (!found)
1558 continue;
1559
1560 if (dl->shift == FD_JOB) {
1561 opt = strchr(opt, ':');
1562 if (!opt) {
1563 log_err("fio: missing job number\n");
1564 break;
1565 }
1566 opt++;
1567 fio_debug_jobno = atoi(opt);
1568 log_info("fio: set debug jobno %d\n",
1569 fio_debug_jobno);
1570 } else {
ee56ad50 1571 log_info("fio: set debug option %s\n", opt);
bd6f78b2 1572 fio_debug |= (1UL << dl->shift);
ee56ad50 1573 }
5e1d306e 1574 break;
ee56ad50
JA
1575 }
1576
1577 if (!found)
1578 log_err("fio: debug mask %s not found\n", opt);
1579 }
c09823ab 1580 return 0;
ee56ad50 1581}
79e48f72 1582#else
69b98d4c 1583static int set_debug(const char *string)
79e48f72
JA
1584{
1585 log_err("fio: debug tracing not included in build\n");
c09823ab 1586 return 1;
79e48f72
JA
1587}
1588#endif
9ac8a797 1589
4c6107ff
JA
1590static void fio_options_fill_optstring(void)
1591{
1592 char *ostr = cmd_optstr;
1593 int i, c;
1594
1595 c = i = 0;
1596 while (l_opts[i].name) {
1597 ostr[c++] = l_opts[i].val;
1598 if (l_opts[i].has_arg == required_argument)
1599 ostr[c++] = ':';
1600 else if (l_opts[i].has_arg == optional_argument) {
1601 ostr[c++] = ':';
1602 ostr[c++] = ':';
1603 }
1604 i++;
1605 }
1606 ostr[c] = '\0';
1607}
1608
c2c94585
JA
1609static int client_flag_set(char c)
1610{
1611 int i;
1612
1613 i = 0;
1614 while (l_opts[i].name) {
1615 int val = l_opts[i].val;
1616
1617 if (c == (val & 0xff))
1618 return (val & FIO_CLIENT_FLAG);
1619
1620 i++;
1621 }
1622
1623 return 0;
1624}
1625
fa2ea806 1626void parse_cmd_client(void *client, char *opt)
7a4b8240 1627{
fa2ea806 1628 fio_client_add_cmd_option(client, opt);
7a4b8240
JA
1629}
1630
fec0f21c
JA
1631extern int fio_crctest(const char *);
1632
46bcd498 1633int parse_cmd_line(int argc, char *argv[], int client_type)
ebac4655 1634{
b4692828 1635 struct thread_data *td = NULL;
c09823ab 1636 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
4c6107ff 1637 char *ostr = cmd_optstr;
402668f3 1638 void *pid_file = NULL;
9bae26e8 1639 void *cur_client = NULL;
81179eec 1640 int backend = 0;
ebac4655 1641
c2c94585
JA
1642 /*
1643 * Reset optind handling, since we may call this multiple times
1644 * for the backend.
1645 */
1646 optind = 1;
7a4b8240 1647
c2c94585 1648 while ((c = getopt_long_only(argc, argv, ostr, l_opts, &lidx)) != -1) {
085399db
JA
1649 did_arg = 1;
1650
c2c94585 1651 if ((c & FIO_CLIENT_FLAG) || client_flag_set(c)) {
fa2ea806 1652 parse_cmd_client(cur_client, argv[optind - 1]);
7a4b8240
JA
1653 c &= ~FIO_CLIENT_FLAG;
1654 }
1655
ebac4655 1656 switch (c) {
2b386d25
JA
1657 case 'a':
1658 smalloc_pool_size = atoi(optarg);
1659 break;
b4692828 1660 case 't':
8c029376 1661 def_timeout = atoi(optarg);
b4692828
JA
1662 break;
1663 case 'l':
1664 write_lat_log = 1;
1665 break;
3d73e5a9 1666 case 'b':
b4692828
JA
1667 write_bw_log = 1;
1668 break;
1669 case 'o':
1670 f_out = fopen(optarg, "w+");
1671 if (!f_out) {
1672 perror("fopen output");
1673 exit(1);
1674 }
1675 f_err = f_out;
1676 break;
1677 case 'm':
f3afa57e 1678 output_format = FIO_OUTPUT_TERSE;
b4692828 1679 break;
f3afa57e 1680 case 'F':
d10983d7
SH
1681 if (!optarg) {
1682 log_err("fio: missing --output-format argument\n");
1683 exit_val = 1;
1684 do_exit++;
1685 break;
1686 }
f3afa57e
JA
1687 if (!strcmp(optarg, "minimal") ||
1688 !strcmp(optarg, "terse") ||
1689 !strcmp(optarg, "csv"))
1690 output_format = FIO_OUTPUT_TERSE;
1691 else if (!strcmp(optarg, "json"))
1692 output_format = FIO_OUTPUT_JSON;
1693 else
1694 output_format = FIO_OUTPUT_NORMAL;
b4692828
JA
1695 break;
1696 case 'h':
7874f8b7 1697 if (!cur_client) {
c2c94585 1698 usage(argv[0]);
7874f8b7
JA
1699 do_exit++;
1700 }
c2c94585 1701 break;
fd28ca49 1702 case 'c':
7874f8b7 1703 if (!cur_client) {
c2c94585 1704 fio_show_option_help(optarg);
7874f8b7
JA
1705 do_exit++;
1706 }
c2c94585 1707 break;
de890a1e
SL
1708 case 'i':
1709 if (!cur_client) {
1710 fio_show_ioengine_help(optarg);
1711 do_exit++;
1712 }
1713 break;
cca73aa7
JA
1714 case 's':
1715 dump_cmdline = 1;
1716 break;
724e4435
JA
1717 case 'r':
1718 read_only = 1;
1719 break;
b4692828 1720 case 'v':
7874f8b7 1721 if (!cur_client) {
3d43382c 1722 log_info("%s\n", fio_version_string);
7874f8b7
JA
1723 do_exit++;
1724 }
c2c94585 1725 break;
f57a9c59
JA
1726 case 'V':
1727 terse_version = atoi(optarg);
09786f5f
JA
1728 if (!(terse_version == 2 || terse_version == 3 ||
1729 terse_version == 4)) {
f57a9c59
JA
1730 log_err("fio: bad terse version format\n");
1731 exit_val = 1;
1732 do_exit++;
1733 }
1734 break;
e592a06b
AC
1735 case 'e':
1736 if (!strcmp("always", optarg))
1737 eta_print = FIO_ETA_ALWAYS;
1738 else if (!strcmp("never", optarg))
1739 eta_print = FIO_ETA_NEVER;
1740 break;
e382e661
JA
1741 case 'E': {
1742 long long t = 0;
1743
1744 if (str_to_decimal(optarg, &t, 0, NULL)) {
1745 log_err("fio: failed parsing eta time %s\n", optarg);
1746 exit_val = 1;
1747 do_exit++;
1748 }
1749 eta_new_line = t;
1750 break;
1751 }
ee56ad50 1752 case 'd':
c09823ab
JA
1753 if (set_debug(optarg))
1754 do_exit++;
ee56ad50 1755 break;
111e032d
JA
1756 case 'P':
1757 parse_only = 1;
1758 break;
ad0a2735
JA
1759 case 'x': {
1760 size_t new_size;
1761
01f06b63 1762 if (!strcmp(optarg, "global")) {
5ec10eaa
JA
1763 log_err("fio: can't use global as only "
1764 "section\n");
c09823ab
JA
1765 do_exit++;
1766 exit_val = 1;
01f06b63
JA
1767 break;
1768 }
ad0a2735
JA
1769 new_size = (nr_job_sections + 1) * sizeof(char *);
1770 job_sections = realloc(job_sections, new_size);
1771 job_sections[nr_job_sections] = strdup(optarg);
1772 nr_job_sections++;
01f06b63 1773 break;
ad0a2735 1774 }
9ac8a797 1775 case 'p':
07b3232d 1776 exec_profile = strdup(optarg);
9ac8a797 1777 break;
b4692828 1778 case FIO_GETOPT_JOB: {
5ec10eaa 1779 const char *opt = l_opts[lidx].name;
b4692828
JA
1780 char *val = optarg;
1781
c2b1e753 1782 if (!strncmp(opt, "name", 4) && td) {
46bcd498 1783 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
66251554 1784 if (ret)
c2b1e753 1785 return 0;
c2b1e753
JA
1786 td = NULL;
1787 }
b4692828 1788 if (!td) {
01f06b63 1789 int is_section = !strncmp(opt, "name", 4);
3106f220
JA
1790 int global = 0;
1791
01f06b63 1792 if (!is_section || !strncmp(val, "global", 6))
3106f220 1793 global = 1;
c2b1e753 1794
01f06b63
JA
1795 if (is_section && skip_this_section(val))
1796 continue;
1797
de890a1e
SL
1798 td = get_new_job(global, &def_thread, 1);
1799 if (!td || ioengine_load(td))
b4692828 1800 return 0;
de890a1e 1801 fio_options_set_ioengine_opts(l_opts, td);
b4692828 1802 }
38d0adb0 1803
9d918187
JA
1804 if ((!val || !strlen(val)) &&
1805 l_opts[lidx].has_arg == required_argument) {
1806 log_err("fio: option %s requires an argument\n", opt);
1807 ret = 1;
1808 } else
1809 ret = fio_cmd_option_parse(td, opt, val);
1810
bfb3ea22
JA
1811 if (ret) {
1812 if (td) {
1813 put_job(td);
1814 td = NULL;
1815 }
a88c8c14 1816 do_exit++;
bfb3ea22 1817 }
de890a1e
SL
1818
1819 if (!ret && !strcmp(opt, "ioengine")) {
1820 free_ioengine(td);
1821 if (ioengine_load(td))
1822 return 0;
1823 fio_options_set_ioengine_opts(l_opts, td);
1824 }
1825 break;
1826 }
1827 case FIO_GETOPT_IOENGINE: {
1828 const char *opt = l_opts[lidx].name;
1829 char *val = optarg;
de890a1e 1830 ret = fio_cmd_ioengine_option_parse(td, opt, val);
b4692828
JA
1831 break;
1832 }
a9523c6f
JA
1833 case 'w':
1834 warnings_fatal = 1;
1835 break;
fca70358
JA
1836 case 'j':
1837 max_jobs = atoi(optarg);
1838 if (!max_jobs || max_jobs > REAL_MAX_JOBS) {
1839 log_err("fio: invalid max jobs: %d\n", max_jobs);
1840 do_exit++;
1841 exit_val = 1;
1842 }
1843 break;
50d16976 1844 case 'S':
a37f69b7 1845 if (nr_clients) {
132159a5
JA
1846 log_err("fio: can't be both client and server\n");
1847 do_exit++;
1848 exit_val = 1;
1849 break;
1850 }
87aa8f19 1851 if (optarg)
bebe6398 1852 fio_server_set_arg(optarg);
50d16976 1853 is_backend = 1;
81179eec 1854 backend = 1;
50d16976 1855 break;
e46d8091 1856 case 'D':
402668f3 1857 pid_file = strdup(optarg);
e46d8091 1858 break;
f2a2ce0e
HL
1859 case 'I':
1860 if ((ret = fio_idle_prof_parse_opt(optarg))) {
1861 /* exit on error and calibration only */
1862 do_exit++;
1863 if (ret == -1)
1864 exit_val = 1;
1865 }
1866 break;
132159a5
JA
1867 case 'C':
1868 if (is_backend) {
1869 log_err("fio: can't be both client and server\n");
1870 do_exit++;
1871 exit_val = 1;
1872 break;
1873 }
a5276616 1874 if (fio_client_add(&fio_client_ops, optarg, &cur_client)) {
bebe6398
JA
1875 log_err("fio: failed adding client %s\n", optarg);
1876 do_exit++;
1877 exit_val = 1;
1878 break;
1879 }
14ea90ed
JA
1880 /*
1881 * If the next argument exists and isn't an option,
1882 * assume it's a job file for this client only.
1883 */
1884 while (optind < argc) {
1885 if (!strncmp(argv[optind], "--", 2) ||
1886 !strncmp(argv[optind], "-", 1))
1887 break;
1888
1889 fio_client_add_ini_file(cur_client, argv[optind]);
1890 optind++;
1891 }
132159a5 1892 break;
7d11f871
JA
1893 case 'T':
1894 do_exit++;
1895 exit_val = fio_monotonic_clocktest();
1896 break;
fec0f21c
JA
1897 case 'G':
1898 do_exit++;
1899 exit_val = fio_crctest(optarg);
1900 break;
06464907
JA
1901 case 'L': {
1902 long long val;
1903
1904 if (check_str_time(optarg, &val)) {
1905 log_err("fio: failed parsing time %s\n", optarg);
1906 do_exit++;
1907 exit_val = 1;
1908 break;
1909 }
1910 status_interval = val * 1000;
1911 break;
1912 }
798827c8
JA
1913 case '?':
1914 log_err("%s: unrecognized option '%s'\n", argv[0],
1915 argv[optind - 1]);
b4692828 1916 default:
c09823ab
JA
1917 do_exit++;
1918 exit_val = 1;
b4692828 1919 break;
ebac4655 1920 }
c7d5c941
JA
1921 if (do_exit)
1922 break;
ebac4655 1923 }
c9fad893 1924
0b14f0a8
JA
1925 if (do_exit && !(is_backend || nr_clients))
1926 exit(exit_val);
536582bf 1927
a37f69b7 1928 if (nr_clients && fio_clients_connect()) {
132159a5
JA
1929 do_exit++;
1930 exit_val = 1;
cdf54d85 1931 return -1;
132159a5
JA
1932 }
1933
81179eec 1934 if (is_backend && backend)
402668f3 1935 return fio_start_server(pid_file);
50d16976 1936
b4692828 1937 if (td) {
7d6a8904 1938 if (!ret)
46bcd498 1939 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
972cfd25 1940 }
774a6177 1941
7874f8b7 1942 while (!ret && optind < argc) {
b4692828
JA
1943 ini_idx++;
1944 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1945 ini_file[ini_idx - 1] = strdup(argv[optind]);
1946 optind++;
eb8bbf48 1947 }
972cfd25
JA
1948
1949 return ini_idx;
ebac4655
JA
1950}
1951
0420ba6a 1952int fio_init_options(void)
ebac4655 1953{
b4692828
JA
1954 f_out = stdout;
1955 f_err = stderr;
1956
4c6107ff 1957 fio_options_fill_optstring();
5ec10eaa 1958 fio_options_dup_and_init(l_opts);
b4692828 1959
9d9eb2e7
JA
1960 atexit(free_shm);
1961
ebac4655
JA
1962 if (fill_def_thread())
1963 return 1;
1964
0420ba6a
JA
1965 return 0;
1966}
1967
51167799
JA
1968extern int fio_check_options(struct thread_options *);
1969
0420ba6a
JA
1970int parse_options(int argc, char *argv[])
1971{
46bcd498 1972 const int type = FIO_CLIENT_TYPE_CLI;
0420ba6a
JA
1973 int job_files, i;
1974
1975 if (fio_init_options())
1976 return 1;
51167799
JA
1977 if (fio_test_cconv(&def_thread.o))
1978 log_err("fio: failed internal cconv test\n");
0420ba6a 1979
46bcd498 1980 job_files = parse_cmd_line(argc, argv, type);
ebac4655 1981
cdf54d85
JA
1982 if (job_files > 0) {
1983 for (i = 0; i < job_files; i++) {
1984 if (fill_def_thread())
132159a5 1985 return 1;
cdf54d85
JA
1986 if (nr_clients) {
1987 if (fio_clients_send_ini(ini_file[i]))
1988 return 1;
1989 free(ini_file[i]);
1990 } else if (!is_backend) {
46bcd498 1991 if (parse_jobs_ini(ini_file[i], 0, i, type))
cdf54d85
JA
1992 return 1;
1993 free(ini_file[i]);
1994 }
132159a5 1995 }
14ea90ed
JA
1996 } else if (nr_clients) {
1997 if (fill_def_thread())
1998 return 1;
1999 if (fio_clients_send_ini(NULL))
2000 return 1;
972cfd25 2001 }
ebac4655 2002
88c6ed80 2003 free(ini_file);
7e356b2d 2004 fio_options_free(&def_thread);
b4692828
JA
2005
2006 if (!thread_number) {
f9633d72 2007 if (parse_dryrun())
cca73aa7 2008 return 0;
07b3232d
JA
2009 if (exec_profile)
2010 return 0;
a37f69b7 2011 if (is_backend || nr_clients)
5c341e9a 2012 return 0;
085399db
JA
2013 if (did_arg)
2014 return 0;
cca73aa7 2015
d65e11c6 2016 log_err("No jobs(s) defined\n\n");
085399db
JA
2017
2018 if (!did_arg) {
2019 usage(argv[0]);
2020 return 1;
2021 }
2022
2023 return 0;
b4692828
JA
2024 }
2025
be4ecfdf
JA
2026 if (def_thread.o.gtod_offload) {
2027 fio_gtod_init();
2028 fio_gtod_offload = 1;
2029 fio_gtod_cpu = def_thread.o.gtod_cpu;
2030 }
2031
f3afa57e 2032 if (output_format == FIO_OUTPUT_NORMAL)
3d43382c 2033 log_info("%s\n", fio_version_string);
f6dea4d3 2034
ebac4655
JA
2035 return 0;
2036}
588b7f09
JA
2037
2038void options_default_fill(struct thread_options *o)
2039{
2040 memcpy(o, &def_thread.o, sizeof(*o));
2041}