Botch edit in files setup
[fio.git] / init.c
1 /*
2  * This file contains job initialization and setup functions.
3  */
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 <getopt.h>
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"
18 #include "parse.h"
19 #include "smalloc.h"
20 #include "filehash.h"
21
22 static char fio_version_string[] = "fio 1.24";
23
24 #define FIO_RANDSEED            (0xb1899bedUL)
25
26 static char **ini_file;
27 static int max_jobs = MAX_JOBS;
28 static int dump_cmdline;
29
30 static struct thread_data def_thread;
31 struct thread_data *threads = NULL;
32
33 int exitall_on_terminate = 0;
34 int terse_output = 0;
35 int eta_print;
36 unsigned long long mlock_size = 0;
37 FILE *f_out = NULL;
38 FILE *f_err = NULL;
39 char *job_section = NULL;
40
41 int write_bw_log = 0;
42 int read_only = 0;
43
44 static int def_timeout;
45 static int write_lat_log;
46
47 static int prev_group_jobs;
48
49 unsigned long fio_debug = 0;
50 unsigned int fio_debug_jobno = -1;
51 unsigned int *fio_debug_jobp = NULL;
52
53 /*
54  * Command line options. These will contain the above, plus a few
55  * extra that only pertain to fio itself and not jobs.
56  */
57 static struct option l_opts[FIO_NR_OPTIONS] = {
58         {
59                 .name           = "output",
60                 .has_arg        = required_argument,
61                 .val            = 'o',
62         },
63         {
64                 .name           = "timeout",
65                 .has_arg        = required_argument,
66                 .val            = 't',
67         },
68         {
69                 .name           = "latency-log",
70                 .has_arg        = required_argument,
71                 .val            = 'l',
72         },
73         {
74                 .name           = "bandwidth-log",
75                 .has_arg        = required_argument,
76                 .val            = 'b',
77         },
78         {
79                 .name           = "minimal",
80                 .has_arg        = optional_argument,
81                 .val            = 'm',
82         },
83         {
84                 .name           = "version",
85                 .has_arg        = no_argument,
86                 .val            = 'v',
87         },
88         {
89                 .name           = "help",
90                 .has_arg        = no_argument,
91                 .val            = 'h',
92         },
93         {
94                 .name           = "cmdhelp",
95                 .has_arg        = optional_argument,
96                 .val            = 'c',
97         },
98         {
99                 .name           = "showcmd",
100                 .has_arg        = no_argument,
101                 .val            = 's',
102         },
103         {
104                 .name           = "readonly",
105                 .has_arg        = no_argument,
106                 .val            = 'r',
107         },
108         {
109                 .name           = "eta",
110                 .has_arg        = required_argument,
111                 .val            = 'e',
112         },
113         {
114                 .name           = "debug",
115                 .has_arg        = required_argument,
116                 .val            = 'd',
117         },
118         {
119                 .name           = "section",
120                 .has_arg        = required_argument,
121                 .val            = 'x',
122         },
123         {
124                 .name           = "alloc-size",
125                 .has_arg        = required_argument,
126                 .val            = 'a',
127         },
128         {
129                 .name           = NULL,
130         },
131 };
132
133 FILE *get_f_out()
134 {
135         return f_out;
136 }
137
138 FILE *get_f_err()
139 {
140         return f_err;
141 }
142
143 /*
144  * Return a free job structure.
145  */
146 static struct thread_data *get_new_job(int global, struct thread_data *parent)
147 {
148         struct thread_data *td;
149
150         if (global)
151                 return &def_thread;
152         if (thread_number >= max_jobs)
153                 return NULL;
154
155         td = &threads[thread_number++];
156         *td = *parent;
157
158         dup_files(td, parent);
159         options_mem_dupe(td);
160
161         td->thread_number = thread_number;
162         return td;
163 }
164
165 static void put_job(struct thread_data *td)
166 {
167         if (td == &def_thread)
168                 return;
169
170         if (td->error)
171                 log_info("fio: %s\n", td->verror);
172
173         memset(&threads[td->thread_number - 1], 0, sizeof(*td));
174         thread_number--;
175 }
176
177 static int setup_rate(struct thread_data *td)
178 {
179         unsigned long nr_reads_per_msec;
180         unsigned long long rate;
181         unsigned int bs;
182
183         if (!td->o.rate && !td->o.rate_iops)
184                 return 0;
185
186         if (td_rw(td))
187                 bs = td->o.rw_min_bs;
188         else if (td_read(td))
189                 bs = td->o.min_bs[DDIR_READ];
190         else
191                 bs = td->o.min_bs[DDIR_WRITE];
192
193         if (td->o.rate) {
194                 rate = td->o.rate;
195                 nr_reads_per_msec = (rate * 1024 * 1000LL) / bs;
196         } else
197                 nr_reads_per_msec = td->o.rate_iops * 1000UL;
198
199         if (!nr_reads_per_msec) {
200                 log_err("rate lower than supported\n");
201                 return -1;
202         }
203
204         td->rate_usec_cycle = 1000000000ULL / nr_reads_per_msec;
205         td->rate_pending_usleep = 0;
206         return 0;
207 }
208
209 static int fixed_block_size(struct thread_options *o)
210 {
211         return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
212                 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
213                 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE];
214 }
215
216 /*
217  * Lazy way of fixing up options that depend on each other. We could also
218  * define option callback handlers, but this is easier.
219  */
220 static int fixup_options(struct thread_data *td)
221 {
222         struct thread_options *o = &td->o;
223
224 #ifndef FIO_HAVE_PSHARED_MUTEX
225         if (!td->o.use_thread) {
226                 log_info("fio: this platform does not support process shared"
227                          " mutexes, forcing use of threads. Use the 'thread'"
228                          " option to get rid of this warning.\n");
229                 td->o.use_thread = 1;
230         }
231 #endif
232
233 #ifndef FIO_HAVE_CPU_AFFINITY
234         if (td->o.gtod_cpu) {
235                 log_err("fio: platform must support CPU affinity for"
236                         "gettimeofday() offloading\n");
237                 return 1;
238         }
239 #endif
240
241         if (read_only && td_write(td)) {
242                 log_err("fio: job <%s> has write bit set, but fio is in"
243                         " read-only mode\n", td->o.name);
244                 return 1;
245         }
246
247         if (o->write_iolog_file && o->read_iolog_file) {
248                 log_err("fio: read iolog overrides write_iolog\n");
249                 free(o->write_iolog_file);
250                 o->write_iolog_file = NULL;
251         }
252
253         /*
254          * only really works for sequential io for now, and with 1 file
255          */
256         if (o->zone_size && td_random(td) && o->open_files == 1)
257                 o->zone_size = 0;
258
259         /*
260          * Reads can do overwrites, we always need to pre-create the file
261          */
262         if (td_read(td) || td_rw(td))
263                 o->overwrite = 1;
264
265         if (!o->min_bs[DDIR_READ])
266                 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
267         if (!o->max_bs[DDIR_READ])
268                 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
269         if (!o->min_bs[DDIR_WRITE])
270                 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
271         if (!o->max_bs[DDIR_WRITE])
272                 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
273
274         o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
275
276         if (!o->file_size_high)
277                 o->file_size_high = o->file_size_low;
278
279         if (o->norandommap && o->verify != VERIFY_NONE
280             && !fixed_block_size(o))  {
281                 log_err("fio: norandommap given for variable block sizes, "
282                         "verify disabled\n");
283                 o->verify = VERIFY_NONE;
284         }
285         if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
286                 log_err("fio: bs_unaligned may not work with raw io\n");
287
288         /*
289          * thinktime_spin must be less than thinktime
290          */
291         if (o->thinktime_spin > o->thinktime)
292                 o->thinktime_spin = o->thinktime;
293
294         /*
295          * The low water mark cannot be bigger than the iodepth
296          */
297         if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
298                 /*
299                  * syslet work around - if the workload is sequential,
300                  * we want to let the queue drain all the way down to
301                  * avoid seeking between async threads
302                  */
303                 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
304                         o->iodepth_low = 1;
305                 else
306                         o->iodepth_low = o->iodepth;
307         }
308
309         /*
310          * If batch number isn't set, default to the same as iodepth
311          */
312         if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
313                 o->iodepth_batch = o->iodepth;
314
315         if (o->nr_files > td->files_index)
316                 o->nr_files = td->files_index;
317
318         if (o->open_files > o->nr_files || !o->open_files)
319                 o->open_files = o->nr_files;
320
321         if ((o->rate && o->rate_iops) || (o->ratemin && o->rate_iops_min)) {
322                 log_err("fio: rate and rate_iops are mutually exclusive\n");
323                 return 1;
324         }
325         if ((o->rate < o->ratemin) || (o->rate_iops < o->rate_iops_min)) {
326                 log_err("fio: minimum rate exceeds rate\n");
327                 return 1;
328         }
329
330         if (!o->timeout && o->time_based) {
331                 log_err("fio: time_based requires a runtime/timeout setting\n");
332                 o->time_based = 0;
333         }
334
335         if (o->fill_device && !o->size)
336                 o->size = -1ULL;
337
338         if (td_rw(td) && td->o.verify != VERIFY_NONE)
339                 log_info("fio: mixed read/write workload with verify. May not "
340                  "work as expected, unless you pre-populated the file\n");
341
342         if (td->o.verify != VERIFY_NONE)
343                 td->o.refill_buffers = 1;
344
345         return 0;
346 }
347
348 /*
349  * This function leaks the buffer
350  */
351 static char *to_kmg(unsigned int val)
352 {
353         char *buf = malloc(32);
354         char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
355         char *p = post;
356
357         do {
358                 if (val & 1023)
359                         break;
360
361                 val >>= 10;
362                 p++;
363         } while (*p);
364
365         snprintf(buf, 31, "%u%c", val, *p);
366         return buf;
367 }
368
369 /* External engines are specified by "external:name.o") */
370 static const char *get_engine_name(const char *str)
371 {
372         char *p = strstr(str, ":");
373
374         if (!p)
375                 return str;
376
377         p++;
378         strip_blank_front(&p);
379         strip_blank_end(p);
380         return p;
381 }
382
383 static int exists_and_not_file(const char *filename)
384 {
385         struct stat sb;
386
387         if (lstat(filename, &sb) == -1)
388                 return 0;
389
390         if (S_ISREG(sb.st_mode))
391                 return 0;
392
393         return 1;
394 }
395
396 /*
397  * Initialize the various random states we need (random io, block size ranges,
398  * read/write mix, etc).
399  */
400 static int init_random_state(struct thread_data *td)
401 {
402         unsigned long seeds[6];
403         int fd;
404
405         fd = open("/dev/urandom", O_RDONLY);
406         if (fd == -1) {
407                 td_verror(td, errno, "open");
408                 return 1;
409         }
410
411         if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
412                 td_verror(td, EIO, "read");
413                 close(fd);
414                 return 1;
415         }
416
417         close(fd);
418
419         os_random_seed(seeds[0], &td->bsrange_state);
420         os_random_seed(seeds[1], &td->verify_state);
421         os_random_seed(seeds[2], &td->rwmix_state);
422
423         if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
424                 os_random_seed(seeds[3], &td->next_file_state);
425
426         os_random_seed(seeds[5], &td->file_size_state);
427
428         if (!td_random(td))
429                 return 0;
430
431         if (td->o.rand_repeatable)
432                 seeds[4] = FIO_RANDSEED * td->thread_number;
433
434         os_random_seed(seeds[4], &td->random_state);
435         return 0;
436 }
437
438 /*
439  * Adds a job to the list of things todo. Sanitizes the various options
440  * to make sure we don't have conflicts, and initializes various
441  * members of td.
442  */
443 static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
444 {
445         const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
446                                    "randread", "randwrite", "randrw" };
447         unsigned int i;
448         const char *engine;
449         char fname[PATH_MAX];
450         int numjobs, file_alloced;
451
452         /*
453          * the def_thread is just for options, it's not a real job
454          */
455         if (td == &def_thread)
456                 return 0;
457
458         /*
459          * if we are just dumping the output command line, don't add the job
460          */
461         if (dump_cmdline) {
462                 put_job(td);
463                 return 0;
464         }
465
466         engine = get_engine_name(td->o.ioengine);
467         td->io_ops = load_ioengine(td, engine);
468         if (!td->io_ops) {
469                 log_err("fio: failed to load engine %s\n", engine);
470                 goto err;
471         }
472
473         if (td->o.use_thread)
474                 nr_thread++;
475         else
476                 nr_process++;
477
478         if (td->o.odirect)
479                 td->io_ops->flags |= FIO_RAWIO;
480
481         file_alloced = 0;
482         if (!td->o.filename && !td->files_index && !td->o.read_iolog_file) {
483                 file_alloced = 1;
484
485                 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
486                         add_file(td, jobname);
487                 else {
488                         for (i = 0; i < td->o.nr_files; i++) {
489                                 sprintf(fname, "%s.%d.%d", jobname,
490                                                         td->thread_number, i);
491                                 add_file(td, fname);
492                         }
493                 }
494         }
495
496         if (fixup_options(td))
497                 goto err;
498
499         if (td->io_ops->flags & FIO_DISKLESSIO) {
500                 struct fio_file *f;
501
502                 for_each_file(td, f, i)
503                         f->real_file_size = -1ULL;
504         }
505
506         td->mutex = fio_mutex_init(0);
507
508         td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
509         td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
510         td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
511         td->ddir_nr = td->o.ddir_nr;
512
513         if ((td->o.stonewall || td->o.numjobs > 1 || td->o.new_group)
514              && prev_group_jobs) {
515                 prev_group_jobs = 0;
516                 groupid++;
517         }
518
519         td->groupid = groupid;
520         prev_group_jobs++;
521
522         if (init_random_state(td))
523                 goto err;
524
525         if (setup_rate(td))
526                 goto err;
527
528         if (td->o.write_lat_log) {
529                 setup_log(&td->ts.slat_log);
530                 setup_log(&td->ts.clat_log);
531         }
532         if (td->o.write_bw_log)
533                 setup_log(&td->ts.bw_log);
534
535         if (!td->o.name)
536                 td->o.name = strdup(jobname);
537
538         if (!terse_output) {
539                 if (!job_add_num) {
540                         if (!strcmp(td->io_ops->name, "cpuio")) {
541                                 log_info("%s: ioengine=cpu, cpuload=%u,"
542                                          " cpucycle=%u\n", td->o.name,
543                                                         td->o.cpuload,
544                                                         td->o.cpucycle);
545                         } else {
546                                 char *c1, *c2, *c3, *c4;
547
548                                 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
549                                 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
550                                 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
551                                 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
552
553                                 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s,"
554                                          " ioengine=%s, iodepth=%u\n",
555                                                 td->o.name, td->groupid,
556                                                 ddir_str[td->o.td_ddir],
557                                                 c1, c2, c3, c4,
558                                                 td->io_ops->name,
559                                                 td->o.iodepth);
560
561                                 free(c1);
562                                 free(c2);
563                                 free(c3);
564                                 free(c4);
565                         }
566                 } else if (job_add_num == 1)
567                         log_info("...\n");
568         }
569
570         /*
571          * recurse add identical jobs, clear numjobs and stonewall options
572          * as they don't apply to sub-jobs
573          */
574         numjobs = td->o.numjobs;
575         while (--numjobs) {
576                 struct thread_data *td_new = get_new_job(0, td);
577
578                 if (!td_new)
579                         goto err;
580
581                 td_new->o.numjobs = 1;
582                 td_new->o.stonewall = 0;
583                 td_new->o.new_group = 0;
584
585                 if (file_alloced) {
586                         td_new->o.filename = NULL;
587                         td_new->files_index = 0;
588                         td_new->files = NULL;
589                 }
590
591                 job_add_num = numjobs - 1;
592
593                 if (add_job(td_new, jobname, job_add_num))
594                         goto err;
595         }
596
597         return 0;
598 err:
599         put_job(td);
600         return -1;
601 }
602
603 static int skip_this_section(const char *name)
604 {
605         if (!job_section)
606                 return 0;
607         if (!strncmp(name, "global", 6))
608                 return 0;
609
610         return strncmp(job_section, name, strlen(job_section));
611 }
612
613 static int is_empty_or_comment(char *line)
614 {
615         unsigned int i;
616
617         for (i = 0; i < strlen(line); i++) {
618                 if (line[i] == ';')
619                         return 1;
620                 if (line[i] == '#')
621                         return 1;
622                 if (!isspace(line[i]) && !iscntrl(line[i]))
623                         return 0;
624         }
625
626         return 1;
627 }
628
629 /*
630  * This is our [ini] type file parser.
631  */
632 static int parse_jobs_ini(char *file, int stonewall_flag)
633 {
634         unsigned int global;
635         struct thread_data *td;
636         char *string, *name;
637         FILE *f;
638         char *p;
639         int ret = 0, stonewall;
640         int first_sect = 1;
641         int skip_fgets = 0;
642         int inside_skip = 0;
643         char **opts;
644         int i, alloc_opts, num_opts;
645
646         if (!strcmp(file, "-"))
647                 f = stdin;
648         else
649                 f = fopen(file, "r");
650
651         if (!f) {
652                 perror("fopen job file");
653                 return 1;
654         }
655
656         string = malloc(4096);
657
658         /*
659          * it's really 256 + small bit, 280 should suffice
660          */
661         name = malloc(280);
662         memset(name, 0, 280);
663
664         alloc_opts = 8;
665         opts = malloc(sizeof(char *) * alloc_opts);
666         num_opts = 0;
667
668         stonewall = stonewall_flag;
669         do {
670                 /*
671                  * if skip_fgets is set, we already have loaded a line we
672                  * haven't handled.
673                  */
674                 if (!skip_fgets) {
675                         p = fgets(string, 4095, f);
676                         if (!p)
677                                 break;
678                 }
679
680                 skip_fgets = 0;
681                 strip_blank_front(&p);
682                 strip_blank_end(p);
683
684                 if (is_empty_or_comment(p))
685                         continue;
686                 if (sscanf(p, "[%255s]", name) != 1) {
687                         if (inside_skip)
688                                 continue;
689                         log_err("fio: option <%s> outside of [] job section\n",
690                                                                         p);
691                         break;
692                 }
693
694                 if (skip_this_section(name)) {
695                         inside_skip = 1;
696                         continue;
697                 } else
698                         inside_skip = 0;
699
700                 global = !strncmp(name, "global", 6);
701
702                 name[strlen(name) - 1] = '\0';
703
704                 if (dump_cmdline) {
705                         if (first_sect)
706                                 log_info("fio ");
707                         if (!global)
708                                 log_info("--name=%s ", name);
709                         first_sect = 0;
710                 }
711
712                 td = get_new_job(global, &def_thread);
713                 if (!td) {
714                         ret = 1;
715                         break;
716                 }
717
718                 /*
719                  * Seperate multiple job files by a stonewall
720                  */
721                 if (!global && stonewall) {
722                         td->o.stonewall = stonewall;
723                         stonewall = 0;
724                 }
725
726                 num_opts = 0;
727                 memset(opts, 0, alloc_opts * sizeof(char *));
728
729                 while ((p = fgets(string, 4096, f)) != NULL) {
730                         if (is_empty_or_comment(p))
731                                 continue;
732
733                         strip_blank_front(&p);
734
735                         /*
736                          * new section, break out and make sure we don't
737                          * fgets() a new line at the top.
738                          */
739                         if (p[0] == '[') {
740                                 skip_fgets = 1;
741                                 break;
742                         }
743
744                         strip_blank_end(p);
745
746                         if (num_opts == alloc_opts) {
747                                 alloc_opts <<= 1;
748                                 opts = realloc(opts,
749                                                 alloc_opts * sizeof(char *));
750                         }
751
752                         opts[num_opts] = strdup(p);
753                         num_opts++;
754                 }
755
756                 ret = fio_options_parse(td, opts, num_opts);
757                 if (!ret) {
758                         if (dump_cmdline)
759                                 for (i = 0; i < num_opts; i++)
760                                         log_info("--%s ", opts[i]);
761
762                         ret = add_job(td, name, 0);
763                 } else {
764                         log_err("fio: job %s dropped\n", name);
765                         put_job(td);
766                 }
767
768                 for (i = 0; i < num_opts; i++)
769                         free(opts[i]);
770                 num_opts = 0;
771         } while (!ret);
772
773         if (dump_cmdline)
774                 log_info("\n");
775
776         for (i = 0; i < num_opts; i++)
777                 free(opts[i]);
778
779         free(string);
780         free(name);
781         free(opts);
782         if (f != stdin)
783                 fclose(f);
784         return ret;
785 }
786
787 static int fill_def_thread(void)
788 {
789         memset(&def_thread, 0, sizeof(def_thread));
790
791         fio_getaffinity(getpid(), &def_thread.o.cpumask);
792
793         /*
794          * fill default options
795          */
796         fio_fill_default_options(&def_thread);
797
798         def_thread.o.timeout = def_timeout;
799         def_thread.o.write_bw_log = write_bw_log;
800         def_thread.o.write_lat_log = write_lat_log;
801
802         return 0;
803 }
804
805 static void free_shm(void)
806 {
807         struct shmid_ds sbuf;
808
809         if (threads) {
810                 void *tp = threads;
811
812                 threads = NULL;
813                 file_hash_exit();
814                 fio_debug_jobp = NULL;
815                 shmdt(tp);
816                 shmctl(shm_id, IPC_RMID, &sbuf);
817         }
818
819         scleanup();
820 }
821
822 /*
823  * The thread area is shared between the main process and the job
824  * threads/processes. So setup a shared memory segment that will hold
825  * all the job info. We use the end of the region for keeping track of
826  * open files across jobs, for file sharing.
827  */
828 static int setup_thread_area(void)
829 {
830         void *hash;
831
832         /*
833          * 1024 is too much on some machines, scale max_jobs if
834          * we get a failure that looks like too large a shm segment
835          */
836         do {
837                 size_t size = max_jobs * sizeof(struct thread_data);
838
839                 size += file_hash_size;
840                 size += sizeof(unsigned int);
841
842                 shm_id = shmget(0, size, IPC_CREAT | 0600);
843                 if (shm_id != -1)
844                         break;
845                 if (errno != EINVAL) {
846                         perror("shmget");
847                         break;
848                 }
849
850                 max_jobs >>= 1;
851         } while (max_jobs);
852
853         if (shm_id == -1)
854                 return 1;
855
856         threads = shmat(shm_id, NULL, 0);
857         if (threads == (void *) -1) {
858                 perror("shmat");
859                 return 1;
860         }
861
862         memset(threads, 0, max_jobs * sizeof(struct thread_data));
863         hash = (void *) threads + max_jobs * sizeof(struct thread_data);
864         fio_debug_jobp = (void *) hash + file_hash_size;
865         *fio_debug_jobp = -1;
866         file_hash_init(hash);
867         atexit(free_shm);
868         return 0;
869 }
870
871 static void usage(const char *name)
872 {
873         printf("%s\n", fio_version_string);
874         printf("%s [options] [job options] <job file(s)>\n", name);
875         printf("\t--debug=options\tEnable debug logging\n");
876         printf("\t--output\tWrite output to file\n");
877         printf("\t--timeout\tRuntime in seconds\n");
878         printf("\t--latency-log\tGenerate per-job latency logs\n");
879         printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
880         printf("\t--minimal\tMinimal (terse) output\n");
881         printf("\t--version\tPrint version info and exit\n");
882         printf("\t--help\t\tPrint this page\n");
883         printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of"
884                 " them\n");
885         printf("\t--showcmd\tTurn a job file into command line options\n");
886         printf("\t--eta=when\tWhen ETA estimate should be printed\n");
887         printf("\t          \tMay be \"always\", \"never\" or \"auto\"\n");
888         printf("\t--readonly\tTurn on safety read-only checks, preventing"
889                 " writes\n");
890         printf("\t--section=name\tOnly run specified section in job file\n");
891         printf("\t--alloc-size=kb\tSet smalloc pool to this size in kb"
892                 " (def 1024)\n");
893 }
894
895 #ifdef FIO_INC_DEBUG
896 struct debug_level debug_levels[] = {
897         { .name = "process",    .shift = FD_PROCESS, },
898         { .name = "file",       .shift = FD_FILE, },
899         { .name = "io",         .shift = FD_IO, },
900         { .name = "mem",        .shift = FD_MEM, },
901         { .name = "blktrace",   .shift = FD_BLKTRACE },
902         { .name = "verify",     .shift = FD_VERIFY },
903         { .name = "random",     .shift = FD_RANDOM },
904         { .name = "parse",      .shift = FD_PARSE },
905         { .name = "diskutil",   .shift = FD_DISKUTIL },
906         { .name = "job",        .shift = FD_JOB },
907         { .name = "mutex",      .shift = FD_MUTEX },
908         { .name = NULL, },
909 };
910
911 static int set_debug(const char *string)
912 {
913         struct debug_level *dl;
914         char *p = (char *) string;
915         char *opt;
916         int i;
917
918         if (!strcmp(string, "?") || !strcmp(string, "help")) {
919                 int i;
920
921                 log_info("fio: dumping debug options:");
922                 for (i = 0; debug_levels[i].name; i++) {
923                         dl = &debug_levels[i];
924                         log_info("%s,", dl->name);
925                 }
926                 log_info("all\n");
927                 return 1;
928         }
929
930         while ((opt = strsep(&p, ",")) != NULL) {
931                 int found = 0;
932
933                 if (!strncmp(opt, "all", 3)) {
934                         log_info("fio: set all debug options\n");
935                         fio_debug = ~0UL;
936                         continue;
937                 }
938
939                 for (i = 0; debug_levels[i].name; i++) {
940                         dl = &debug_levels[i];
941                         found = !strncmp(opt, dl->name, strlen(dl->name));
942                         if (!found)
943                                 continue;
944
945                         if (dl->shift == FD_JOB) {
946                                 opt = strchr(opt, ':');
947                                 if (!opt) {
948                                         log_err("fio: missing job number\n");
949                                         break;
950                                 }
951                                 opt++;
952                                 fio_debug_jobno = atoi(opt);
953                                 log_info("fio: set debug jobno %d\n",
954                                                         fio_debug_jobno);
955                         } else {
956                                 log_info("fio: set debug option %s\n", opt);
957                                 fio_debug |= (1UL << dl->shift);
958                         }
959                         break;
960                 }
961
962                 if (!found)
963                         log_err("fio: debug mask %s not found\n", opt);
964         }
965         return 0;
966 }
967 #else
968 static int set_debug(const char *string)
969 {
970         log_err("fio: debug tracing not included in build\n");
971         return 1;
972 }
973 #endif
974
975 static int parse_cmd_line(int argc, char *argv[])
976 {
977         struct thread_data *td = NULL;
978         int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
979
980         while ((c = getopt_long_only(argc, argv, "", l_opts, &lidx)) != -1) {
981                 switch (c) {
982                 case 'a':
983                         smalloc_pool_size = atoi(optarg);
984                         break;
985                 case 't':
986                         def_timeout = atoi(optarg);
987                         break;
988                 case 'l':
989                         write_lat_log = 1;
990                         break;
991                 case 'w':
992                         write_bw_log = 1;
993                         break;
994                 case 'o':
995                         f_out = fopen(optarg, "w+");
996                         if (!f_out) {
997                                 perror("fopen output");
998                                 exit(1);
999                         }
1000                         f_err = f_out;
1001                         break;
1002                 case 'm':
1003                         terse_output = 1;
1004                         break;
1005                 case 'h':
1006                         usage(argv[0]);
1007                         exit(0);
1008                 case 'c':
1009                         exit(fio_show_option_help(optarg));
1010                 case 's':
1011                         dump_cmdline = 1;
1012                         break;
1013                 case 'r':
1014                         read_only = 1;
1015                         break;
1016                 case 'v':
1017                         printf("%s\n", fio_version_string);
1018                         exit(0);
1019                 case 'e':
1020                         if (!strcmp("always", optarg))
1021                                 eta_print = FIO_ETA_ALWAYS;
1022                         else if (!strcmp("never", optarg))
1023                                 eta_print = FIO_ETA_NEVER;
1024                         break;
1025                 case 'd':
1026                         if (set_debug(optarg))
1027                                 do_exit++;
1028                         break;
1029                 case 'x':
1030                         if (!strcmp(optarg, "global")) {
1031                                 log_err("fio: can't use global as only "
1032                                         "section\n");
1033                                 do_exit++;
1034                                 exit_val = 1;
1035                                 break;
1036                         }
1037                         if (job_section)
1038                                 free(job_section);
1039                         job_section = strdup(optarg);
1040                         break;
1041                 case FIO_GETOPT_JOB: {
1042                         const char *opt = l_opts[lidx].name;
1043                         char *val = optarg;
1044
1045                         if (!strncmp(opt, "name", 4) && td) {
1046                                 ret = add_job(td, td->o.name ?: "fio", 0);
1047                                 if (ret) {
1048                                         put_job(td);
1049                                         return 0;
1050                                 }
1051                                 td = NULL;
1052                         }
1053                         if (!td) {
1054                                 int is_section = !strncmp(opt, "name", 4);
1055                                 int global = 0;
1056
1057                                 if (!is_section || !strncmp(val, "global", 6))
1058                                         global = 1;
1059
1060                                 if (is_section && skip_this_section(val))
1061                                         continue;
1062
1063                                 td = get_new_job(global, &def_thread);
1064                                 if (!td)
1065                                         return 0;
1066                         }
1067
1068                         ret = fio_cmd_option_parse(td, opt, val);
1069                         break;
1070                 }
1071                 default:
1072                         do_exit++;
1073                         exit_val = 1;
1074                         break;
1075                 }
1076         }
1077
1078         if (do_exit)
1079                 exit(exit_val);
1080
1081         if (td) {
1082                 if (!ret)
1083                         ret = add_job(td, td->o.name ?: "fio", 0);
1084                 if (ret)
1085                         put_job(td);
1086         }
1087
1088         while (optind < argc) {
1089                 ini_idx++;
1090                 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1091                 ini_file[ini_idx - 1] = strdup(argv[optind]);
1092                 optind++;
1093         }
1094
1095         return ini_idx;
1096 }
1097
1098 int parse_options(int argc, char *argv[])
1099 {
1100         int job_files, i;
1101
1102         f_out = stdout;
1103         f_err = stderr;
1104
1105         fio_options_dup_and_init(l_opts);
1106
1107         if (setup_thread_area())
1108                 return 1;
1109         if (fill_def_thread())
1110                 return 1;
1111
1112         job_files = parse_cmd_line(argc, argv);
1113
1114         for (i = 0; i < job_files; i++) {
1115                 if (fill_def_thread())
1116                         return 1;
1117                 if (parse_jobs_ini(ini_file[i], i))
1118                         return 1;
1119                 free(ini_file[i]);
1120         }
1121
1122         free(ini_file);
1123         options_mem_free(&def_thread);
1124
1125         if (!thread_number) {
1126                 if (dump_cmdline)
1127                         return 0;
1128
1129                 log_err("No jobs defined(s)\n");
1130                 usage(argv[0]);
1131                 return 1;
1132         }
1133
1134         if (def_thread.o.gtod_offload) {
1135                 fio_gtod_init();
1136                 fio_gtod_offload = 1;
1137                 fio_gtod_cpu = def_thread.o.gtod_cpu;
1138         }
1139
1140         return 0;
1141 }