blob: 73ec9eb22a8d2f36ff773f4e468fb1c4e3744bd5 [file] [log] [blame]
Jens Axboe906c8d72006-06-13 09:37:56 +02001/*
Jens Axboecb2c86f2006-10-26 13:48:34 +02002 * This file contains job initialization and setup functions.
Jens Axboe906c8d72006-06-13 09:37:56 +02003 */
Jens Axboeebac4652005-12-08 15:25:21 +01004#include <stdio.h>
5#include <stdlib.h>
6#include <unistd.h>
7#include <fcntl.h>
8#include <ctype.h>
9#include <string.h>
10#include <errno.h>
11#include <sys/ipc.h>
Jens Axboeebac4652005-12-08 15:25:21 +010012#include <sys/types.h>
13#include <sys/stat.h>
14
15#include "fio.h"
Olega5e0ee12013-03-12 00:06:53 -070016#ifndef FIO_NO_HAVE_SHM_H
17#include <sys/shm.h>
18#endif
19
Jens Axboecb2c86f2006-10-26 13:48:34 +020020#include "parse.h"
Jens Axboe2e5cdb12008-03-01 18:52:49 +010021#include "smalloc.h"
Jens Axboe380065a2008-03-01 18:56:24 +010022#include "filehash.h"
Jens Axboe4f5af7b2009-06-03 08:45:40 +020023#include "verify.h"
Jens Axboe79d16312010-03-04 12:43:20 +010024#include "profile.h"
Jens Axboe50d16972011-09-29 17:45:28 -060025#include "server.h"
Huadong Liuf2a2ce02013-01-30 13:22:24 +010026#include "idletime.h"
Jens Axboeebac4652005-12-08 15:25:21 +010027
Cigy Cyriacbf2e8212010-08-10 19:51:11 -040028#include "lib/getopt.h"
Jens Axboee25b6d52013-04-05 14:44:51 +020029#include "lib/strcasestr.h"
Cigy Cyriacbf2e8212010-08-10 19:51:11 -040030
Jens Axboe3d433822012-03-21 22:25:22 +010031const char fio_version_string[] = FIO_VERSION;
Jens Axboe214e1ec2007-03-15 10:48:13 +010032
Jens Axboeee738492007-01-10 11:23:16 +010033#define FIO_RANDSEED (0xb1899bedUL)
Jens Axboeebac4652005-12-08 15:25:21 +010034
Jens Axboe214e1ec2007-03-15 10:48:13 +010035static char **ini_file;
Jens Axboefca70352011-07-06 20:12:54 +020036static int max_jobs = FIO_MAX_JOBS;
Jens Axboecca73aa2007-04-04 11:09:19 +020037static int dump_cmdline;
Jens Axboe8c029372011-10-05 09:54:30 +020038static int def_timeout;
Jens Axboe111e0322013-03-07 11:31:20 +010039static int parse_only;
Jens Axboee1f36502006-10-27 10:54:08 +020040
Jens Axboebe4ecfd2008-12-08 14:10:52 +010041static struct thread_data def_thread;
Jens Axboe214e1ec2007-03-15 10:48:13 +010042struct thread_data *threads = NULL;
Jens Axboee1f36502006-10-27 10:54:08 +020043
Jens Axboe214e1ec2007-03-15 10:48:13 +010044int exitall_on_terminate = 0;
Jens Axboef3afa572012-09-17 13:34:16 +020045int output_format = FIO_OUTPUT_NORMAL;
Christian Ehrhardt2b8c71b2014-02-20 14:20:04 +010046int append_terse_output = 0;
Jens Axboe5be4c942013-02-11 16:33:25 +010047int eta_print = FIO_ETA_AUTO;
Jens Axboee382e662013-02-22 20:48:56 +010048int eta_new_line = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +010049FILE *f_out = NULL;
50FILE *f_err = NULL;
Jens Axboead0a2732011-03-11 10:16:17 +010051char **job_sections = NULL;
52int nr_job_sections = 0;
Jens Axboe07b32322010-03-05 09:48:44 +010053char *exec_profile = NULL;
Jens Axboea9523c62011-01-17 16:49:54 -070054int warnings_fatal = 0;
Jens Axboe4d658652011-10-17 15:05:47 +020055int terse_version = 3;
Jens Axboe50d16972011-09-29 17:45:28 -060056int is_backend = 0;
Jens Axboea37f69b2011-10-01 12:24:21 -060057int nr_clients = 0;
Jens Axboee46d8092011-10-03 09:11:02 +020058int log_syslog = 0;
Jens Axboeee738492007-01-10 11:23:16 +010059
Jens Axboe214e1ec2007-03-15 10:48:13 +010060int write_bw_log = 0;
Jens Axboe4241ea82007-09-12 08:18:36 +020061int read_only = 0;
Jens Axboe06464902013-04-24 20:38:54 -060062int status_interval = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020063
Jens Axboe5ec10ea2008-03-06 15:42:00 +010064static int write_lat_log;
Jens Axboe214e1ec2007-03-15 10:48:13 +010065
66static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020067
Jens Axboeee56ad52008-02-01 10:30:20 +010068unsigned long fio_debug = 0;
Jens Axboe5e1d3062008-05-23 11:55:53 +020069unsigned int fio_debug_jobno = -1;
70unsigned int *fio_debug_jobp = NULL;
Jens Axboeee56ad52008-02-01 10:30:20 +010071
Jens Axboe4c6107f2011-01-18 05:22:22 -070072static char cmd_optstr[256];
Jens Axboe085399d2011-10-06 09:01:22 +020073static int did_arg;
Jens Axboe4c6107f2011-01-18 05:22:22 -070074
Jens Axboe7a4b8242011-10-05 17:35:15 +020075#define FIO_CLIENT_FLAG (1 << 16)
76
Jens Axboeb4692822006-10-27 13:43:22 +020077/*
78 * Command line options. These will contain the above, plus a few
79 * extra that only pertain to fio itself and not jobs.
80 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +010081static struct option l_opts[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020082 {
Jens Axboe08d2a192011-05-11 13:28:30 +020083 .name = (char *) "output",
Jens Axboeb4692822006-10-27 13:43:22 +020084 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +020085 .val = 'o' | FIO_CLIENT_FLAG,
Jens Axboeb4692822006-10-27 13:43:22 +020086 },
87 {
Jens Axboe08d2a192011-05-11 13:28:30 +020088 .name = (char *) "timeout",
Jens Axboeb4692822006-10-27 13:43:22 +020089 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +020090 .val = 't' | FIO_CLIENT_FLAG,
Jens Axboeb4692822006-10-27 13:43:22 +020091 },
92 {
Jens Axboe08d2a192011-05-11 13:28:30 +020093 .name = (char *) "latency-log",
Jens Axboeb4692822006-10-27 13:43:22 +020094 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +020095 .val = 'l' | FIO_CLIENT_FLAG,
Jens Axboeb4692822006-10-27 13:43:22 +020096 },
97 {
Jens Axboe08d2a192011-05-11 13:28:30 +020098 .name = (char *) "bandwidth-log",
Jens Axboeb4692822006-10-27 13:43:22 +020099 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200100 .val = 'b' | FIO_CLIENT_FLAG,
Jens Axboeb4692822006-10-27 13:43:22 +0200101 },
102 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200103 .name = (char *) "minimal",
Stefan Hajnoczic4ec0a12014-02-04 14:27:10 +0100104 .has_arg = no_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200105 .val = 'm' | FIO_CLIENT_FLAG,
Jens Axboeb4692822006-10-27 13:43:22 +0200106 },
107 {
Jens Axboef3afa572012-09-17 13:34:16 +0200108 .name = (char *) "output-format",
Shaohua Licc372b12012-09-17 09:12:18 +0200109 .has_arg = optional_argument,
Jens Axboef3afa572012-09-17 13:34:16 +0200110 .val = 'F' | FIO_CLIENT_FLAG,
Shaohua Licc372b12012-09-17 09:12:18 +0200111 },
112 {
Christian Ehrhardt2b8c71b2014-02-20 14:20:04 +0100113 .name = (char *) "append-terse",
114 .has_arg = optional_argument,
115 .val = 'f',
116 },
117 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200118 .name = (char *) "version",
Jens Axboeb4692822006-10-27 13:43:22 +0200119 .has_arg = no_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200120 .val = 'v' | FIO_CLIENT_FLAG,
Jens Axboeb4692822006-10-27 13:43:22 +0200121 },
122 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200123 .name = (char *) "help",
Jens Axboefd28ca42007-01-09 21:20:13 +0100124 .has_arg = no_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200125 .val = 'h' | FIO_CLIENT_FLAG,
Jens Axboefd28ca42007-01-09 21:20:13 +0100126 },
127 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200128 .name = (char *) "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +0100129 .has_arg = optional_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200130 .val = 'c' | FIO_CLIENT_FLAG,
Jens Axboefd28ca42007-01-09 21:20:13 +0100131 },
132 {
Jens Axboe06464902013-04-24 20:38:54 -0600133 .name = (char *) "enghelp",
Steven Langde890a12011-11-09 14:03:34 +0100134 .has_arg = optional_argument,
Jens Axboe06464902013-04-24 20:38:54 -0600135 .val = 'i' | FIO_CLIENT_FLAG,
Steven Langde890a12011-11-09 14:03:34 +0100136 },
137 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200138 .name = (char *) "showcmd",
Jens Axboecca73aa2007-04-04 11:09:19 +0200139 .has_arg = no_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200140 .val = 's' | FIO_CLIENT_FLAG,
Jens Axboe724e4432007-09-11 20:02:05 +0200141 },
142 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200143 .name = (char *) "readonly",
Jens Axboe724e4432007-09-11 20:02:05 +0200144 .has_arg = no_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200145 .val = 'r' | FIO_CLIENT_FLAG,
Jens Axboecca73aa2007-04-04 11:09:19 +0200146 },
147 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200148 .name = (char *) "eta",
Aaron Carrolle592a062007-09-14 09:49:41 +0200149 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200150 .val = 'e' | FIO_CLIENT_FLAG,
Aaron Carrolle592a062007-09-14 09:49:41 +0200151 },
152 {
Jens Axboee382e662013-02-22 20:48:56 +0100153 .name = (char *) "eta-newline",
154 .has_arg = required_argument,
155 .val = 'E' | FIO_CLIENT_FLAG,
156 },
157 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200158 .name = (char *) "debug",
Jens Axboeee56ad52008-02-01 10:30:20 +0100159 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200160 .val = 'd' | FIO_CLIENT_FLAG,
Jens Axboeee56ad52008-02-01 10:30:20 +0100161 },
162 {
Jens Axboe111e0322013-03-07 11:31:20 +0100163 .name = (char *) "parse-only",
164 .has_arg = no_argument,
165 .val = 'P' | FIO_CLIENT_FLAG,
166 },
167 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200168 .name = (char *) "section",
Jens Axboe01f06b62008-02-18 20:53:47 +0100169 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200170 .val = 'x' | FIO_CLIENT_FLAG,
Jens Axboe01f06b62008-02-18 20:53:47 +0100171 },
172 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200173 .name = (char *) "alloc-size",
Jens Axboe2b386d22008-03-26 10:32:57 +0100174 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200175 .val = 'a' | FIO_CLIENT_FLAG,
Jens Axboe2b386d22008-03-26 10:32:57 +0100176 },
177 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200178 .name = (char *) "profile",
Jens Axboe9ac8a792009-11-13 21:23:07 +0100179 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200180 .val = 'p' | FIO_CLIENT_FLAG,
Jens Axboe9ac8a792009-11-13 21:23:07 +0100181 },
182 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200183 .name = (char *) "warnings-fatal",
Jens Axboea9523c62011-01-17 16:49:54 -0700184 .has_arg = no_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200185 .val = 'w' | FIO_CLIENT_FLAG,
Jens Axboea9523c62011-01-17 16:49:54 -0700186 },
187 {
Jens Axboefca70352011-07-06 20:12:54 +0200188 .name = (char *) "max-jobs",
189 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200190 .val = 'j' | FIO_CLIENT_FLAG,
Jens Axboefca70352011-07-06 20:12:54 +0200191 },
192 {
Jens Axboef57a9c52011-09-09 21:01:37 +0200193 .name = (char *) "terse-version",
194 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200195 .val = 'V' | FIO_CLIENT_FLAG,
Jens Axboef57a9c52011-09-09 21:01:37 +0200196 },
197 {
Jens Axboe50d16972011-09-29 17:45:28 -0600198 .name = (char *) "server",
Jens Axboe87aa8f12011-10-06 21:24:13 +0200199 .has_arg = optional_argument,
Jens Axboe50d16972011-09-29 17:45:28 -0600200 .val = 'S',
201 },
Jens Axboee46d8092011-10-03 09:11:02 +0200202 { .name = (char *) "daemonize",
Jens Axboe402668f2011-10-10 15:28:58 +0200203 .has_arg = required_argument,
Jens Axboee46d8092011-10-03 09:11:02 +0200204 .val = 'D',
205 },
Jens Axboe50d16972011-09-29 17:45:28 -0600206 {
Jens Axboe132159a2011-09-30 15:01:32 -0600207 .name = (char *) "client",
208 .has_arg = required_argument,
209 .val = 'C',
210 },
211 {
Jens Axboe7d11f872012-12-17 12:03:29 +0100212 .name = (char *) "cpuclock-test",
213 .has_arg = no_argument,
214 .val = 'T',
215 },
216 {
Jens Axboefec0f212014-02-07 14:39:33 -0700217 .name = (char *) "crctest",
218 .has_arg = optional_argument,
219 .val = 'G',
220 },
221 {
Huadong Liuf2a2ce02013-01-30 13:22:24 +0100222 .name = (char *) "idle-prof",
223 .has_arg = required_argument,
224 .val = 'I',
225 },
226 {
Jens Axboe06464902013-04-24 20:38:54 -0600227 .name = (char *) "status-interval",
228 .has_arg = required_argument,
229 .val = 'L',
230 },
231 {
Jens Axboeb4692822006-10-27 13:43:22 +0200232 .name = NULL,
233 },
234};
235
Jens Axboe2bb3f0a2012-03-28 12:22:40 +0200236void free_threads_shm(void)
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200237{
238 struct shmid_ds sbuf;
239
240 if (threads) {
241 void *tp = threads;
242
243 threads = NULL;
Jens Axboe2bb3f0a2012-03-28 12:22:40 +0200244 shmdt(tp);
245 shmctl(shm_id, IPC_RMID, &sbuf);
246 shm_id = -1;
247 }
248}
249
250void free_shm(void)
251{
252 if (threads) {
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200253 file_hash_exit();
Dan Ehrenberg9e684a42012-02-20 11:05:14 +0100254 flow_exit();
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200255 fio_debug_jobp = NULL;
Jens Axboe2bb3f0a2012-03-28 12:22:40 +0200256 free_threads_shm();
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200257 }
258
Jens Axboeeb0c74a2014-02-11 10:33:06 -0700259 options_free(fio_options, &def_thread);
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200260 scleanup();
261}
262
263/*
264 * The thread area is shared between the main process and the job
265 * threads/processes. So setup a shared memory segment that will hold
266 * all the job info. We use the end of the region for keeping track of
267 * open files across jobs, for file sharing.
268 */
269static int setup_thread_area(void)
270{
271 void *hash;
272
273 if (threads)
274 return 0;
275
276 /*
277 * 1024 is too much on some machines, scale max_jobs if
278 * we get a failure that looks like too large a shm segment
279 */
280 do {
281 size_t size = max_jobs * sizeof(struct thread_data);
282
283 size += file_hash_size;
284 size += sizeof(unsigned int);
285
286 shm_id = shmget(0, size, IPC_CREAT | 0600);
287 if (shm_id != -1)
288 break;
Jens Axboef0c77f02012-09-21 15:05:45 +0200289 if (errno != EINVAL && errno != ENOMEM && errno != ENOSPC) {
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200290 perror("shmget");
291 break;
292 }
293
294 max_jobs >>= 1;
295 } while (max_jobs);
296
297 if (shm_id == -1)
298 return 1;
299
300 threads = shmat(shm_id, NULL, 0);
301 if (threads == (void *) -1) {
302 perror("shmat");
303 return 1;
304 }
305
306 memset(threads, 0, max_jobs * sizeof(struct thread_data));
307 hash = (void *) threads + max_jobs * sizeof(struct thread_data);
308 fio_debug_jobp = (void *) hash + file_hash_size;
309 *fio_debug_jobp = -1;
310 file_hash_init(hash);
Dan Ehrenberg9e684a42012-02-20 11:05:14 +0100311
312 flow_init();
313
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200314 return 0;
315}
316
Jens Axboe906c8d72006-06-13 09:37:56 +0200317/*
318 * Return a free job structure.
319 */
Steven Langde890a12011-11-09 14:03:34 +0100320static struct thread_data *get_new_job(int global, struct thread_data *parent,
321 int preserve_eo)
Jens Axboeebac4652005-12-08 15:25:21 +0100322{
323 struct thread_data *td;
324
325 if (global)
326 return &def_thread;
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200327 if (setup_thread_area()) {
328 log_err("error: failed to setup shm segment\n");
329 return NULL;
330 }
Bruce Crane61f1ec2011-01-14 18:30:26 +0100331 if (thread_number >= max_jobs) {
332 log_err("error: maximum number of jobs (%d) reached.\n",
333 max_jobs);
Jens Axboeebac4652005-12-08 15:25:21 +0100334 return NULL;
Bruce Crane61f1ec2011-01-14 18:30:26 +0100335 }
Jens Axboeebac4652005-12-08 15:25:21 +0100336
337 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200338 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100339
Steven Langde890a12011-11-09 14:03:34 +0100340 td->io_ops = NULL;
341 if (!preserve_eo)
342 td->eo = NULL;
343
Jens Axboee0b0d892009-12-08 10:10:14 +0100344 td->o.uid = td->o.gid = -1U;
345
Jens Axboecade3ef2007-03-23 15:29:45 +0100346 dup_files(td, parent);
Steven Langde890a12011-11-09 14:03:34 +0100347 fio_options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100348
Jens Axboe15dc1932010-03-05 10:59:06 +0100349 profile_add_hooks(td);
350
Jens Axboeebac4652005-12-08 15:25:21 +0100351 td->thread_number = thread_number;
Jens Axboe108fea72012-11-14 13:09:45 -0700352
353 if (!parent || !parent->o.group_reporting)
354 stat_number++;
355
Jens Axboeebac4652005-12-08 15:25:21 +0100356 return td;
357}
358
359static void put_job(struct thread_data *td)
360{
Jens Axboe549577a2006-10-30 12:23:41 +0100361 if (td == &def_thread)
362 return;
Bruce Cran84dd1882011-05-05 08:14:09 -0600363
Jens Axboe58c55ba2010-03-09 12:20:08 +0100364 profile_td_exit(td);
Dan Ehrenberg9e684a42012-02-20 11:05:14 +0100365 flow_exit_job(td);
Jens Axboe549577a2006-10-30 12:23:41 +0100366
Jens Axboe16edf252007-02-10 14:59:22 +0100367 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100368 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100369
Jens Axboe7e356b22011-10-14 10:55:16 +0200370 fio_options_free(td);
Steven Langde890a12011-11-09 14:03:34 +0100371 if (td->io_ops)
372 free_ioengine(td);
Jens Axboe7e356b22011-10-14 10:55:16 +0200373
Jens Axboeebac4652005-12-08 15:25:21 +0100374 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
375 thread_number--;
376}
377
Jens Axboe581e7142009-06-09 12:47:16 +0200378static int __setup_rate(struct thread_data *td, enum fio_ddir ddir)
Jens Axboe127f6862007-03-15 12:09:57 +0100379{
Jens Axboe581e7142009-06-09 12:47:16 +0200380 unsigned int bs = td->o.min_bs[ddir];
Jens Axboe127f6862007-03-15 12:09:57 +0100381
Jens Axboeff58fce2010-08-25 12:02:08 +0200382 assert(ddir_rw(ddir));
383
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100384 if (td->o.rate[ddir])
Steven Lang1b8dbf22011-11-09 13:48:01 +0100385 td->rate_bps[ddir] = td->o.rate[ddir];
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100386 else
Steven Lang1b8dbf22011-11-09 13:48:01 +0100387 td->rate_bps[ddir] = td->o.rate_iops[ddir] * bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100388
Steven Lang1b8dbf22011-11-09 13:48:01 +0100389 if (!td->rate_bps[ddir]) {
Jens Axboe127f6862007-03-15 12:09:57 +0100390 log_err("rate lower than supported\n");
391 return -1;
392 }
393
Jens Axboe581e7142009-06-09 12:47:16 +0200394 td->rate_pending_usleep[ddir] = 0;
Jens Axboe127f6862007-03-15 12:09:57 +0100395 return 0;
396}
397
Jens Axboe581e7142009-06-09 12:47:16 +0200398static int setup_rate(struct thread_data *td)
399{
400 int ret = 0;
401
402 if (td->o.rate[DDIR_READ] || td->o.rate_iops[DDIR_READ])
403 ret = __setup_rate(td, DDIR_READ);
404 if (td->o.rate[DDIR_WRITE] || td->o.rate_iops[DDIR_WRITE])
405 ret |= __setup_rate(td, DDIR_WRITE);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200406 if (td->o.rate[DDIR_TRIM] || td->o.rate_iops[DDIR_TRIM])
407 ret |= __setup_rate(td, DDIR_TRIM);
Jens Axboe581e7142009-06-09 12:47:16 +0200408
409 return ret;
410}
411
Jens Axboe83472392009-02-19 21:32:12 +0100412static int fixed_block_size(struct thread_options *o)
413{
414 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
415 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200416 o->min_bs[DDIR_TRIM] == o->max_bs[DDIR_TRIM] &&
417 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE] &&
418 o->min_bs[DDIR_READ] == o->min_bs[DDIR_TRIM];
Jens Axboe83472392009-02-19 21:32:12 +0100419}
420
Christian Ehrhardt23ed19b2014-02-20 09:07:02 -0800421
422static unsigned long long get_rand_start_delay(struct thread_data *td)
423{
424 unsigned long long delayrange;
425 unsigned long r;
426
427 delayrange = td->o.start_delay_high - td->o.start_delay;
428
429 if (td->o.use_os_rand) {
430 r = os_random_long(&td->delay_state);
431 delayrange = (unsigned long long) ((double) delayrange * (r / (OS_RAND_MAX + 1.0)));
432 } else {
433 r = __rand(&td->__delay_state);
434 delayrange = (unsigned long long) ((double) delayrange * (r / (FRAND_MAX + 1.0)));
435 }
436
437 delayrange += td->o.start_delay;
438 return delayrange;
439}
440
Jens Axboedad915e2006-10-27 11:10:18 +0200441/*
442 * Lazy way of fixing up options that depend on each other. We could also
443 * define option callback handlers, but this is easier.
444 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100445static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200446{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100447 struct thread_options *o = &td->o;
Jens Axboeeefd98b2013-07-25 12:30:06 -0600448 int ret = 0;
Jens Axboedad915e2006-10-27 11:10:18 +0200449
Jens Axboef356d012009-01-05 09:56:29 +0100450#ifndef FIO_HAVE_PSHARED_MUTEX
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100451 if (!o->use_thread) {
Jens Axboef356d012009-01-05 09:56:29 +0100452 log_info("fio: this platform does not support process shared"
453 " mutexes, forcing use of threads. Use the 'thread'"
454 " option to get rid of this warning.\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100455 o->use_thread = 1;
Jens Axboea9523c62011-01-17 16:49:54 -0700456 ret = warnings_fatal;
Jens Axboef356d012009-01-05 09:56:29 +0100457 }
458#endif
459
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100460 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200461 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100462 free(o->write_iolog_file);
463 o->write_iolog_file = NULL;
Jens Axboea9523c62011-01-17 16:49:54 -0700464 ret = warnings_fatal;
Jens Axboe076efc72006-10-27 11:24:25 +0200465 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100466
Jens Axboe16b462a2006-10-30 12:35:18 +0100467 /*
Steven Noonaned335852012-01-31 13:58:00 +0100468 * only really works with 1 file
Jens Axboe16b462a2006-10-30 12:35:18 +0100469 */
Jens Axboe627aa1a2013-02-07 13:06:18 +0100470 if (o->zone_size && o->open_files > 1)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100471 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100472
473 /*
Steven Noonaned335852012-01-31 13:58:00 +0100474 * If zone_range isn't specified, backward compatibility dictates it
475 * should be made equal to zone_size.
476 */
477 if (o->zone_size && !o->zone_range)
478 o->zone_range = o->zone_size;
479
480 /*
Jens Axboe16b462a2006-10-30 12:35:18 +0100481 * Reads can do overwrites, we always need to pre-create the file
482 */
483 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100484 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100485
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100486 if (!o->min_bs[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100487 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100488 if (!o->max_bs[DDIR_READ])
489 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
490 if (!o->min_bs[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100491 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100492 if (!o->max_bs[DDIR_WRITE])
493 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200494 if (!o->min_bs[DDIR_TRIM])
495 o->min_bs[DDIR_TRIM] = o->bs[DDIR_TRIM];
496 if (!o->max_bs[DDIR_TRIM])
497 o->max_bs[DDIR_TRIM] = o->bs[DDIR_TRIM];
498
Jens Axboea00735e2006-11-03 08:58:08 +0100499
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100500 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200501 o->rw_min_bs = min(o->min_bs[DDIR_TRIM], o->rw_min_bs);
Jens Axboea00735e2006-11-03 08:58:08 +0100502
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100503 /*
504 * For random IO, allow blockalign offset other than min_bs.
505 */
506 if (!o->ba[DDIR_READ] || !td_random(td))
507 o->ba[DDIR_READ] = o->min_bs[DDIR_READ];
508 if (!o->ba[DDIR_WRITE] || !td_random(td))
509 o->ba[DDIR_WRITE] = o->min_bs[DDIR_WRITE];
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200510 if (!o->ba[DDIR_TRIM] || !td_random(td))
511 o->ba[DDIR_TRIM] = o->min_bs[DDIR_TRIM];
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100512
513 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200514 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE] ||
515 o->ba[DDIR_TRIM] != o->min_bs[DDIR_TRIM]) &&
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100516 !o->norandommap) {
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100517 log_err("fio: Any use of blockalign= turns off randommap\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100518 o->norandommap = 1;
Jens Axboea9523c62011-01-17 16:49:54 -0700519 ret = warnings_fatal;
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100520 }
521
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100522 if (!o->file_size_high)
523 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100524
Christian Ehrhardt23ed19b2014-02-20 09:07:02 -0800525 if (o->start_delay_high)
526 o->start_delay = get_rand_start_delay(td);
527
Jens Axboe83472392009-02-19 21:32:12 +0100528 if (o->norandommap && o->verify != VERIFY_NONE
529 && !fixed_block_size(o)) {
530 log_err("fio: norandommap given for variable block sizes, "
531 "verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100532 o->verify = VERIFY_NONE;
Jens Axboea9523c62011-01-17 16:49:54 -0700533 ret = warnings_fatal;
Jens Axboebb8895e2006-10-30 15:14:48 +0100534 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100535 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100536 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100537
538 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100539 * thinktime_spin must be less than thinktime
540 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100541 if (o->thinktime_spin > o->thinktime)
542 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100543
544 /*
545 * The low water mark cannot be bigger than the iodepth
546 */
Jens Axboe67bf9822013-01-10 11:23:19 +0100547 if (o->iodepth_low > o->iodepth || !o->iodepth_low)
548 o->iodepth_low = o->iodepth;
Jens Axboecb5ab512007-02-26 12:57:09 +0100549
550 /*
551 * If batch number isn't set, default to the same as iodepth
552 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100553 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
554 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100555
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100556 if (o->nr_files > td->files_index)
557 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100558
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100559 if (o->open_files > o->nr_files || !o->open_files)
560 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100561
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200562 if (((o->rate[DDIR_READ] + o->rate[DDIR_WRITE] + o->rate[DDIR_TRIM]) &&
563 (o->rate_iops[DDIR_READ] + o->rate_iops[DDIR_WRITE] + o->rate_iops[DDIR_TRIM])) ||
564 ((o->ratemin[DDIR_READ] + o->ratemin[DDIR_WRITE] + o->ratemin[DDIR_TRIM]) &&
565 (o->rate_iops_min[DDIR_READ] + o->rate_iops_min[DDIR_WRITE] + o->rate_iops_min[DDIR_TRIM]))) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100566 log_err("fio: rate and rate_iops are mutually exclusive\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700567 ret = 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100568 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200569 if ((o->rate[DDIR_READ] < o->ratemin[DDIR_READ]) ||
570 (o->rate[DDIR_WRITE] < o->ratemin[DDIR_WRITE]) ||
571 (o->rate[DDIR_TRIM] < o->ratemin[DDIR_TRIM]) ||
572 (o->rate_iops[DDIR_READ] < o->rate_iops_min[DDIR_READ]) ||
573 (o->rate_iops[DDIR_WRITE] < o->rate_iops_min[DDIR_WRITE]) ||
574 (o->rate_iops[DDIR_TRIM] < o->rate_iops_min[DDIR_TRIM])) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100575 log_err("fio: minimum rate exceeds rate\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700576 ret = 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100577 }
578
Jens Axboecf4464c2007-04-17 20:14:42 +0200579 if (!o->timeout && o->time_based) {
580 log_err("fio: time_based requires a runtime/timeout setting\n");
581 o->time_based = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700582 ret = warnings_fatal;
Jens Axboecf4464c2007-04-17 20:14:42 +0200583 }
584
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100585 if (o->fill_device && !o->size)
Jens Axboe5921e802008-05-30 15:02:38 +0200586 o->size = -1ULL;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100587
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100588 if (o->verify != VERIFY_NONE) {
Jens Axboe996936f2011-01-18 05:41:39 -0700589 if (td_write(td) && o->do_verify && o->numjobs > 1) {
Jens Axboea9523c62011-01-17 16:49:54 -0700590 log_info("Multiple writers may overwrite blocks that "
591 "belong to other jobs. This can cause "
592 "verification failures.\n");
593 ret = warnings_fatal;
594 }
595
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100596 o->refill_buffers = 1;
Jens Axboe2f1b8e82010-06-18 09:22:56 +0200597 if (o->max_bs[DDIR_WRITE] != o->min_bs[DDIR_WRITE] &&
598 !o->verify_interval)
599 o->verify_interval = o->min_bs[DDIR_WRITE];
Jens Axboed9905882010-03-18 20:43:00 +0100600 }
Jens Axboe41ccd842008-05-22 09:17:33 +0200601
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100602 if (o->pre_read) {
603 o->invalidate_cache = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700604 if (td->io_ops->flags & FIO_PIPEIO) {
Jens Axboe9c0d2242009-07-01 12:26:28 +0200605 log_info("fio: cannot pre-read files with an IO engine"
606 " that isn't seekable. Pre-read disabled.\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700607 ret = warnings_fatal;
608 }
Jens Axboe9c0d2242009-07-01 12:26:28 +0200609 }
Jens Axboe34f1c042009-06-02 14:19:25 +0200610
Steven Noonanad705bc2013-04-08 15:05:25 -0700611 if (!o->unit_base) {
612 if (td->io_ops->flags & FIO_BIT_BASED)
613 o->unit_base = 1;
614 else
615 o->unit_base = 8;
616 }
617
Jens Axboe67bf9822013-01-10 11:23:19 +0100618#ifndef CONFIG_FDATASYNC
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100619 if (o->fdatasync_blocks) {
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700620 log_info("fio: this platform does not support fdatasync()"
621 " falling back to using fsync(). Use the 'fsync'"
622 " option instead of 'fdatasync' to get rid of"
623 " this warning\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100624 o->fsync_blocks = o->fdatasync_blocks;
625 o->fdatasync_blocks = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700626 ret = warnings_fatal;
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700627 }
628#endif
629
Bruce Cran93bcfd22012-02-20 20:18:19 +0100630#ifdef WIN32
631 /*
632 * Windows doesn't support O_DIRECT or O_SYNC with the _open interface,
633 * so fail if we're passed those flags
634 */
635 if ((td->io_ops->flags & FIO_SYNCIO) && (td->o.odirect || td->o.sync_io)) {
636 log_err("fio: Windows does not support direct or non-buffered io with"
637 " the synchronous ioengines. Use the 'windowsaio' ioengine"
638 " with 'direct=1' and 'iodepth=1' instead.\n");
639 ret = 1;
640 }
641#endif
642
Jens Axboe811ac502012-03-02 22:23:36 +0100643 /*
644 * For fully compressible data, just zero them at init time.
645 * It's faster than repeatedly filling it.
646 */
647 if (td->o.compress_percentage == 100) {
648 td->o.zero_buffers = 1;
649 td->o.compress_percentage = 0;
650 }
651
Jens Axboe5881fda2012-11-15 15:21:23 -0700652 /*
653 * Using a non-uniform random distribution excludes usage of
654 * a random map
655 */
656 if (td->o.random_distribution != FIO_RAND_DIST_RANDOM)
657 td->o.norandommap = 1;
658
Jens Axboe8d916c92013-04-25 10:11:41 -0600659 /*
660 * If size is set but less than the min block size, complain
661 */
662 if (o->size && o->size < td_min_bs(td)) {
663 log_err("fio: size too small, must be larger than the IO size: %llu\n", (unsigned long long) o->size);
664 ret = 1;
665 }
666
Chris Masond01612f2013-11-15 15:52:58 -0700667 /*
668 * O_ATOMIC implies O_DIRECT
669 */
670 if (td->o.oatomic)
671 td->o.odirect = 1;
672
Jens Axboe04778ba2014-01-10 20:57:01 -0700673 /*
674 * If randseed is set, that overrides randrepeat
675 */
676 if (td->o.rand_seed)
677 td->o.rand_repeatable = 0;
678
Jens Axboea9523c62011-01-17 16:49:54 -0700679 return ret;
Jens Axboee1f36502006-10-27 10:54:08 +0200680}
681
Jens Axboe906c8d72006-06-13 09:37:56 +0200682/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100683 * This function leaks the buffer
684 */
Jens Axboe99d633a2012-03-15 15:55:04 +0100685char *fio_uint_to_kmg(unsigned int val)
Jens Axboef8977ee2006-11-06 14:03:03 +0100686{
687 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100688 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100689 char *p = post;
690
Jens Axboe245142f2006-11-08 12:49:21 +0100691 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100692 if (val & 1023)
693 break;
694
695 val >>= 10;
696 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100697 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100698
Ken Raeburn98ffb8f2013-01-30 22:31:09 +0100699 snprintf(buf, 32, "%u%c", val, *p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100700 return buf;
701}
702
Jens Axboe09629a92007-03-09 09:00:06 +0100703/* External engines are specified by "external:name.o") */
704static const char *get_engine_name(const char *str)
705{
706 char *p = strstr(str, ":");
707
708 if (!p)
709 return str;
710
711 p++;
712 strip_blank_front(&p);
713 strip_blank_end(p);
714 return p;
715}
716
Jens Axboee132cba2007-03-14 14:23:54 +0100717static int exists_and_not_file(const char *filename)
718{
719 struct stat sb;
720
721 if (lstat(filename, &sb) == -1)
722 return 0;
723
Bruce Cranecc314b2011-01-04 10:59:30 +0100724 /* \\.\ is the device namespace in Windows, where every file
725 * is a device node */
726 if (S_ISREG(sb.st_mode) && strncmp(filename, "\\\\.\\", 4) != 0)
Jens Axboee132cba2007-03-14 14:23:54 +0100727 return 0;
728
729 return 1;
730}
731
Jens Axboe4c07ad82011-03-28 09:51:09 +0200732static void td_fill_rand_seeds_os(struct thread_data *td)
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200733{
Jens Axboed24945f2012-12-04 13:10:29 +0100734 os_random_seed(td->rand_seeds[FIO_RAND_BS_OFF], &td->bsrange_state);
735 os_random_seed(td->rand_seeds[FIO_RAND_VER_OFF], &td->verify_state);
736 os_random_seed(td->rand_seeds[FIO_RAND_MIX_OFF], &td->rwmix_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200737
738 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboed24945f2012-12-04 13:10:29 +0100739 os_random_seed(td->rand_seeds[FIO_RAND_FILE_OFF], &td->next_file_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200740
Jens Axboed24945f2012-12-04 13:10:29 +0100741 os_random_seed(td->rand_seeds[FIO_RAND_FILE_SIZE_OFF], &td->file_size_state);
742 os_random_seed(td->rand_seeds[FIO_RAND_TRIM_OFF], &td->trim_state);
Christian Ehrhardt23ed19b2014-02-20 09:07:02 -0800743 os_random_seed(td->rand_seeds[FIO_RAND_START_DELAY], &td->delay_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200744
745 if (!td_random(td))
746 return;
747
748 if (td->o.rand_repeatable)
Jens Axboed24945f2012-12-04 13:10:29 +0100749 td->rand_seeds[FIO_RAND_BLOCK_OFF] = FIO_RANDSEED * td->thread_number;
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200750
Jens Axboed24945f2012-12-04 13:10:29 +0100751 os_random_seed(td->rand_seeds[FIO_RAND_BLOCK_OFF], &td->random_state);
Jens Axboed9472272013-07-25 10:20:45 -0600752
753 os_random_seed(td->rand_seeds[FIO_RAND_SEQ_RAND_READ_OFF], &td->seq_rand_state[DDIR_READ]);
754 os_random_seed(td->rand_seeds[FIO_RAND_SEQ_RAND_WRITE_OFF], &td->seq_rand_state[DDIR_WRITE]);
755 os_random_seed(td->rand_seeds[FIO_RAND_SEQ_RAND_TRIM_OFF], &td->seq_rand_state[DDIR_TRIM]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200756}
757
758static void td_fill_rand_seeds_internal(struct thread_data *td)
759{
Jens Axboed24945f2012-12-04 13:10:29 +0100760 init_rand_seed(&td->__bsrange_state, td->rand_seeds[FIO_RAND_BS_OFF]);
761 init_rand_seed(&td->__verify_state, td->rand_seeds[FIO_RAND_VER_OFF]);
762 init_rand_seed(&td->__rwmix_state, td->rand_seeds[FIO_RAND_MIX_OFF]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200763
764 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboed24945f2012-12-04 13:10:29 +0100765 init_rand_seed(&td->__next_file_state, td->rand_seeds[FIO_RAND_FILE_OFF]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200766
Jens Axboed24945f2012-12-04 13:10:29 +0100767 init_rand_seed(&td->__file_size_state, td->rand_seeds[FIO_RAND_FILE_SIZE_OFF]);
768 init_rand_seed(&td->__trim_state, td->rand_seeds[FIO_RAND_TRIM_OFF]);
Christian Ehrhardt23ed19b2014-02-20 09:07:02 -0800769 init_rand_seed(&td->__delay_state, td->rand_seeds[FIO_RAND_START_DELAY]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200770
771 if (!td_random(td))
772 return;
773
774 if (td->o.rand_repeatable)
Jens Axboed24945f2012-12-04 13:10:29 +0100775 td->rand_seeds[FIO_RAND_BLOCK_OFF] = FIO_RANDSEED * td->thread_number;
Jens Axboe4c07ad82011-03-28 09:51:09 +0200776
Jens Axboed24945f2012-12-04 13:10:29 +0100777 init_rand_seed(&td->__random_state, td->rand_seeds[FIO_RAND_BLOCK_OFF]);
Jens Axboed9472272013-07-25 10:20:45 -0600778 init_rand_seed(&td->__seq_rand_state[DDIR_READ], td->rand_seeds[FIO_RAND_SEQ_RAND_READ_OFF]);
779 init_rand_seed(&td->__seq_rand_state[DDIR_WRITE], td->rand_seeds[FIO_RAND_SEQ_RAND_WRITE_OFF]);
780 init_rand_seed(&td->__seq_rand_state[DDIR_TRIM], td->rand_seeds[FIO_RAND_SEQ_RAND_TRIM_OFF]);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200781}
782
Jens Axboe4c07ad82011-03-28 09:51:09 +0200783void td_fill_rand_seeds(struct thread_data *td)
784{
Christian Ehrhardt56e2a5f2014-02-20 09:10:17 -0800785 if (td->o.allrand_repeatable) {
786 for (int i = 0; i < FIO_RAND_NR_OFFS; i++)
787 td->rand_seeds[i] = FIO_RANDSEED * td->thread_number
788 + i;
789 }
790
Jens Axboe4c07ad82011-03-28 09:51:09 +0200791 if (td->o.use_os_rand)
792 td_fill_rand_seeds_os(td);
793 else
794 td_fill_rand_seeds_internal(td);
Jens Axboe3545a102011-08-31 15:20:15 -0600795
Jens Axboed24945f2012-12-04 13:10:29 +0100796 init_rand_seed(&td->buf_state, td->rand_seeds[FIO_RAND_BUF_OFF]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200797}
798
Jens Axboe9c60ce62007-03-15 09:14:47 +0100799/*
Steven Langde890a12011-11-09 14:03:34 +0100800 * Initializes the ioengine configured for a job, if it has not been done so
801 * already.
802 */
803int ioengine_load(struct thread_data *td)
804{
805 const char *engine;
806
807 /*
808 * Engine has already been loaded.
809 */
810 if (td->io_ops)
811 return 0;
Jens Axboe6e5c4b82013-05-27 09:50:31 +0200812 if (!td->o.ioengine) {
813 log_err("fio: internal fault, no IO engine specified\n");
814 return 1;
815 }
Steven Langde890a12011-11-09 14:03:34 +0100816
817 engine = get_engine_name(td->o.ioengine);
818 td->io_ops = load_ioengine(td, engine);
819 if (!td->io_ops) {
820 log_err("fio: failed to load engine %s\n", engine);
821 return 1;
822 }
823
824 if (td->io_ops->option_struct_size && td->io_ops->options) {
825 /*
826 * In cases where td->eo is set, clone it for a child thread.
827 * This requires that the parent thread has the same ioengine,
828 * but that requirement must be enforced by the code which
829 * cloned the thread.
830 */
831 void *origeo = td->eo;
832 /*
833 * Otherwise use the default thread options.
834 */
835 if (!origeo && td != &def_thread && def_thread.eo &&
836 def_thread.io_ops->options == td->io_ops->options)
837 origeo = def_thread.eo;
838
839 options_init(td->io_ops->options);
840 td->eo = malloc(td->io_ops->option_struct_size);
841 /*
842 * Use the default thread as an option template if this uses the
843 * same options structure and there are non-default options
844 * used.
845 */
846 if (origeo) {
847 memcpy(td->eo, origeo, td->io_ops->option_struct_size);
848 options_mem_dupe(td->eo, td->io_ops->options);
849 } else {
850 memset(td->eo, 0, td->io_ops->option_struct_size);
851 fill_default_options(td->eo, td->io_ops->options);
852 }
853 *(struct thread_data **)td->eo = td;
854 }
855
856 return 0;
857}
858
Jens Axboed72be542012-11-30 19:37:46 +0100859static void init_flags(struct thread_data *td)
860{
861 struct thread_options *o = &td->o;
862
863 if (o->verify_backlog)
864 td->flags |= TD_F_VER_BACKLOG;
865 if (o->trim_backlog)
866 td->flags |= TD_F_TRIM_BACKLOG;
867 if (o->read_iolog_file)
868 td->flags |= TD_F_READ_IOLOG;
869 if (o->refill_buffers)
870 td->flags |= TD_F_REFILL_BUFFERS;
871 if (o->scramble_buffers)
872 td->flags |= TD_F_SCRAMBLE_BUFFERS;
873 if (o->verify != VERIFY_NONE)
874 td->flags |= TD_F_VER_NONE;
875}
876
Jens Axboe9dbc7bf2013-01-23 09:26:53 -0700877static int setup_random_seeds(struct thread_data *td)
878{
879 unsigned long seed;
880 unsigned int i;
881
Jens Axboe04778ba2014-01-10 20:57:01 -0700882 if (!td->o.rand_repeatable && !td->o.rand_seed)
Jens Axboe9dbc7bf2013-01-23 09:26:53 -0700883 return init_random_state(td, td->rand_seeds, sizeof(td->rand_seeds));
884
Jens Axboe04778ba2014-01-10 20:57:01 -0700885 if (!td->o.rand_seed)
886 seed = 0x89;
887 else
888 seed = td->o.rand_seed;
889
890 for (i = 0; i < 4; i++)
Jens Axboe9dbc7bf2013-01-23 09:26:53 -0700891 seed *= 0x9e370001UL;
892
893 for (i = 0; i < FIO_RAND_NR_OFFS; i++) {
894 td->rand_seeds[i] = seed;
895 seed *= 0x9e370001UL;
896 }
897
898 td_fill_rand_seeds(td);
899 return 0;
900}
901
Jens Axboede98bd32013-04-05 11:09:20 +0200902enum {
903 FPRE_NONE = 0,
904 FPRE_JOBNAME,
905 FPRE_JOBNUM,
906 FPRE_FILENUM
907};
908
909static struct fpre_keyword {
910 const char *keyword;
911 size_t strlen;
912 int key;
913} fpre_keywords[] = {
914 { .keyword = "$jobname", .key = FPRE_JOBNAME, },
915 { .keyword = "$jobnum", .key = FPRE_JOBNUM, },
916 { .keyword = "$filenum", .key = FPRE_FILENUM, },
917 { .keyword = NULL, },
918 };
919
920static char *make_filename(char *buf, struct thread_options *o,
921 const char *jobname, int jobnum, int filenum)
922{
923 struct fpre_keyword *f;
924 char copy[PATH_MAX];
925
926 if (!o->filename_format || !strlen(o->filename_format)) {
927 sprintf(buf, "%s.%d.%d", jobname, jobnum, filenum);
928 return NULL;
929 }
930
931 for (f = &fpre_keywords[0]; f->keyword; f++)
932 f->strlen = strlen(f->keyword);
933
934 strcpy(buf, o->filename_format);
935 memset(copy, 0, sizeof(copy));
936 for (f = &fpre_keywords[0]; f->keyword; f++) {
937 do {
938 size_t pre_len, post_start = 0;
939 char *str, *dst = copy;
940
Jens Axboee25b6d52013-04-05 14:44:51 +0200941 str = strcasestr(buf, f->keyword);
Jens Axboede98bd32013-04-05 11:09:20 +0200942 if (!str)
943 break;
944
945 pre_len = str - buf;
946 if (strlen(str) != f->strlen)
947 post_start = pre_len + f->strlen;
948
949 if (pre_len) {
950 strncpy(dst, buf, pre_len);
951 dst += pre_len;
952 }
953
954 switch (f->key) {
955 case FPRE_JOBNAME:
956 dst += sprintf(dst, "%s", jobname);
957 break;
958 case FPRE_JOBNUM:
959 dst += sprintf(dst, "%d", jobnum);
960 break;
961 case FPRE_FILENUM:
962 dst += sprintf(dst, "%d", filenum);
963 break;
964 default:
965 assert(0);
966 break;
967 }
968
969 if (post_start)
970 strcpy(dst, buf + post_start);
971
972 strcpy(buf, copy);
973 } while (1);
974 }
975
976 return buf;
977}
Jens Axboef9633d72013-09-06 09:59:56 -0600978
979int parse_dryrun(void)
980{
981 return dump_cmdline || parse_only;
982}
983
Steven Langde890a12011-11-09 14:03:34 +0100984/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200985 * Adds a job to the list of things todo. Sanitizes the various options
986 * to make sure we don't have conflicts, and initializes various
987 * members of td.
988 */
Jens Axboeb7cfb2e2012-03-12 07:47:27 +0100989static int add_job(struct thread_data *td, const char *jobname, int job_add_num,
Jens Axboe46bcd492012-03-14 11:31:21 +0100990 int recursed, int client_type)
Jens Axboeebac4652005-12-08 15:25:21 +0100991{
Jens Axboeaf52b342007-03-13 10:07:47 +0100992 unsigned int i;
Jens Axboeaf52b342007-03-13 10:07:47 +0100993 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100994 int numjobs, file_alloced;
Jens Axboede98bd32013-04-05 11:09:20 +0200995 struct thread_options *o = &td->o;
Jens Axboeebac4652005-12-08 15:25:21 +0100996
Jens Axboeebac4652005-12-08 15:25:21 +0100997 /*
998 * the def_thread is just for options, it's not a real job
999 */
1000 if (td == &def_thread)
1001 return 0;
1002
Jens Axboed72be542012-11-30 19:37:46 +01001003 init_flags(td);
1004
Jens Axboecca73aa2007-04-04 11:09:19 +02001005 /*
1006 * if we are just dumping the output command line, don't add the job
1007 */
Jens Axboef9633d72013-09-06 09:59:56 -06001008 if (parse_dryrun()) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001009 put_job(td);
1010 return 0;
1011 }
1012
Jens Axboe46bcd492012-03-14 11:31:21 +01001013 td->client_type = client_type;
1014
Jens Axboe58c55ba2010-03-09 12:20:08 +01001015 if (profile_td_init(td))
Jens Axboe66251552011-05-12 10:14:57 +02001016 goto err;
Jens Axboe58c55ba2010-03-09 12:20:08 +01001017
Steven Langde890a12011-11-09 14:03:34 +01001018 if (ioengine_load(td))
Jens Axboe205927a2007-03-15 11:06:32 +01001019 goto err;
Jens Axboedf641192006-10-12 07:55:41 +02001020
Jens Axboede98bd32013-04-05 11:09:20 +02001021 if (o->odirect)
Jens Axboe690adba2006-10-30 15:25:09 +01001022 td->io_ops->flags |= FIO_RAWIO;
1023
Jens Axboee132cba2007-03-14 14:23:54 +01001024 file_alloced = 0;
Jens Axboede98bd32013-04-05 11:09:20 +02001025 if (!o->filename && !td->files_index && !o->read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +01001026 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +01001027
Jens Axboede98bd32013-04-05 11:09:20 +02001028 if (o->nr_files == 1 && exists_and_not_file(jobname))
Jens Axboe5903e7b2014-02-26 13:42:13 -08001029 add_file(td, jobname, job_add_num, 0);
Jens Axboe7b05a212007-03-13 11:17:07 +01001030 else {
Jens Axboede98bd32013-04-05 11:09:20 +02001031 for (i = 0; i < o->nr_files; i++)
Jens Axboe5903e7b2014-02-26 13:42:13 -08001032 add_file(td, make_filename(fname, o, jobname, job_add_num, i), job_add_num, 0);
Jens Axboeaf52b342007-03-13 10:07:47 +01001033 }
Jens Axboe0af7b542006-02-17 10:10:12 +01001034 }
Jens Axboeebac4652005-12-08 15:25:21 +01001035
Jens Axboe4e991c22007-03-15 11:41:11 +01001036 if (fixup_options(td))
1037 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +01001038
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01001039 flow_init_job(td);
1040
Steven Langde890a12011-11-09 14:03:34 +01001041 /*
1042 * IO engines only need this for option callbacks, and the address may
1043 * change in subprocesses.
1044 */
1045 if (td->eo)
1046 *(struct thread_data **)td->eo = NULL;
1047
Jens Axboe07eb79d2007-04-12 13:02:38 +02001048 if (td->io_ops->flags & FIO_DISKLESSIO) {
1049 struct fio_file *f;
1050
1051 for_each_file(td, f, i)
1052 f->real_file_size = -1ULL;
1053 }
1054
Jens Axboe521da522012-08-02 11:21:36 +02001055 td->mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
Jens Axboeebac4652005-12-08 15:25:21 +01001056
Jens Axboede98bd32013-04-05 11:09:20 +02001057 td->ts.clat_percentiles = o->clat_percentiles;
1058 td->ts.percentile_precision = o->percentile_precision;
1059 memcpy(td->ts.percentile_list, o->percentile_list, sizeof(o->percentile_list));
Yu-ju Hong83349192011-08-13 00:53:44 +02001060
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001061 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1062 td->ts.clat_stat[i].min_val = ULONG_MAX;
1063 td->ts.slat_stat[i].min_val = ULONG_MAX;
1064 td->ts.lat_stat[i].min_val = ULONG_MAX;
1065 td->ts.bw_stat[i].min_val = ULONG_MAX;
1066 }
Jens Axboede98bd32013-04-05 11:09:20 +02001067 td->ddir_seq_nr = o->ddir_seq_nr;
Jens Axboeebac4652005-12-08 15:25:21 +01001068
Jens Axboede98bd32013-04-05 11:09:20 +02001069 if ((o->stonewall || o->new_group) && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001070 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001071 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001072 }
Jens Axboeebac4652005-12-08 15:25:21 +01001073
1074 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001075 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +01001076
Jens Axboe9dbc7bf2013-01-23 09:26:53 -07001077 if (setup_random_seeds(td)) {
Bruce Cran93bcfd22012-02-20 20:18:19 +01001078 td_verror(td, errno, "init_random_state");
Jens Axboe9c60ce62007-03-15 09:14:47 +01001079 goto err;
Bruce Cran93bcfd22012-02-20 20:18:19 +01001080 }
Jens Axboe9c60ce62007-03-15 09:14:47 +01001081
Jens Axboeebac4652005-12-08 15:25:21 +01001082 if (setup_rate(td))
1083 goto err;
1084
Jens Axboe22f80452013-04-09 20:29:16 +02001085 if (o->lat_log_file) {
1086 setup_log(&td->lat_log, o->log_avg_msec, IO_LOG_TYPE_LAT);
1087 setup_log(&td->slat_log, o->log_avg_msec, IO_LOG_TYPE_SLAT);
1088 setup_log(&td->clat_log, o->log_avg_msec, IO_LOG_TYPE_CLAT);
Jens Axboeebac4652005-12-08 15:25:21 +01001089 }
Jens Axboe22f80452013-04-09 20:29:16 +02001090 if (o->bw_log_file)
1091 setup_log(&td->bw_log, o->log_avg_msec, IO_LOG_TYPE_BW);
1092 if (o->iops_log_file)
1093 setup_log(&td->iops_log, o->log_avg_msec, IO_LOG_TYPE_IOPS);
Jens Axboeebac4652005-12-08 15:25:21 +01001094
Jens Axboede98bd32013-04-05 11:09:20 +02001095 if (!o->name)
1096 o->name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +02001097
Jens Axboef3afa572012-09-17 13:34:16 +02001098 if (output_format == FIO_OUTPUT_NORMAL) {
Jens Axboeb990b5c2006-09-14 09:48:22 +02001099 if (!job_add_num) {
Jens Axboeb7cfb2e2012-03-12 07:47:27 +01001100 if (is_backend && !recursed)
Jens Axboe2f122b12012-03-15 13:10:19 +01001101 fio_server_send_add_job(td);
Jens Axboe807f9972012-03-02 10:25:24 +01001102
Jens Axboe03530502012-03-19 21:45:12 +01001103 if (!(td->io_ops->flags & FIO_NOIO)) {
Jens Axboed21e2532013-07-25 13:01:11 -06001104 char *c1, *c2, *c3, *c4;
1105 char *c5 = NULL, *c6 = NULL;
Jens Axboef8977ee2006-11-06 14:03:03 +01001106
Jens Axboe22f80452013-04-09 20:29:16 +02001107 c1 = fio_uint_to_kmg(o->min_bs[DDIR_READ]);
1108 c2 = fio_uint_to_kmg(o->max_bs[DDIR_READ]);
1109 c3 = fio_uint_to_kmg(o->min_bs[DDIR_WRITE]);
1110 c4 = fio_uint_to_kmg(o->max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +01001111
Jens Axboed21e2532013-07-25 13:01:11 -06001112 if (!o->bs_is_seq_rand) {
1113 c5 = fio_uint_to_kmg(o->min_bs[DDIR_TRIM]);
1114 c6 = fio_uint_to_kmg(o->max_bs[DDIR_TRIM]);
1115 }
1116
1117 log_info("%s: (g=%d): rw=%s, ", td->o.name,
1118 td->groupid,
1119 ddir_str(o->td_ddir));
1120
1121 if (o->bs_is_seq_rand)
1122 log_info("bs(seq/rand)=%s-%s/%s-%s, ",
1123 c1, c2, c3, c4);
1124 else
1125 log_info("bs=%s-%s/%s-%s/%s-%s, ",
1126 c1, c2, c3, c4, c5, c6);
1127
1128 log_info("ioengine=%s, iodepth=%u\n",
Jens Axboede98bd32013-04-05 11:09:20 +02001129 td->io_ops->name, o->iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +01001130
1131 free(c1);
1132 free(c2);
1133 free(c3);
1134 free(c4);
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001135 free(c5);
1136 free(c6);
Jens Axboef8977ee2006-11-06 14:03:03 +01001137 }
Jens Axboeb990b5c2006-09-14 09:48:22 +02001138 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +01001139 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +02001140 }
Jens Axboeebac4652005-12-08 15:25:21 +01001141
1142 /*
1143 * recurse add identical jobs, clear numjobs and stonewall options
1144 * as they don't apply to sub-jobs
1145 */
Jens Axboede98bd32013-04-05 11:09:20 +02001146 numjobs = o->numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +01001147 while (--numjobs) {
Steven Langde890a12011-11-09 14:03:34 +01001148 struct thread_data *td_new = get_new_job(0, td, 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001149
1150 if (!td_new)
1151 goto err;
1152
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001153 td_new->o.numjobs = 1;
1154 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +02001155 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +01001156
1157 if (file_alloced) {
Jens Axboee132cba2007-03-14 14:23:54 +01001158 td_new->files_index = 0;
Jens Axboe4e6ea2f2009-03-04 20:17:22 +01001159 td_new->files_size = 0;
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001160 if (td_new->files) {
1161 struct fio_file *f;
1162 for_each_file(td_new, f, i) {
1163 if (f->file_name)
1164 free(f->file_name);
1165 free(f);
1166 }
1167 td_new->files = NULL;
1168 }
1169 if (td_new->o.filename) {
1170 free(td_new->o.filename);
1171 td_new->o.filename = NULL;
1172 }
Jens Axboee132cba2007-03-14 14:23:54 +01001173 }
1174
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001175 if (add_job(td_new, jobname, numjobs, 1, client_type))
Jens Axboeebac4652005-12-08 15:25:21 +01001176 goto err;
1177 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001178
Jens Axboeebac4652005-12-08 15:25:21 +01001179 return 0;
1180err:
1181 put_job(td);
1182 return -1;
1183}
1184
Jens Axboe79d16312010-03-04 12:43:20 +01001185/*
1186 * Parse as if 'o' was a command line
1187 */
Jens Axboe46bcd492012-03-14 11:31:21 +01001188void add_job_opts(const char **o, int client_type)
Jens Axboe79d16312010-03-04 12:43:20 +01001189{
1190 struct thread_data *td, *td_parent;
1191 int i, in_global = 1;
1192 char jobname[32];
1193
1194 i = 0;
1195 td_parent = td = NULL;
1196 while (o[i]) {
1197 if (!strncmp(o[i], "name", 4)) {
1198 in_global = 0;
1199 if (td)
Jens Axboe46bcd492012-03-14 11:31:21 +01001200 add_job(td, jobname, 0, 0, client_type);
Jens Axboe79d16312010-03-04 12:43:20 +01001201 td = NULL;
1202 sprintf(jobname, "%s", o[i] + 5);
1203 }
1204 if (in_global && !td_parent)
Steven Langde890a12011-11-09 14:03:34 +01001205 td_parent = get_new_job(1, &def_thread, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001206 else if (!in_global && !td) {
1207 if (!td_parent)
1208 td_parent = &def_thread;
Steven Langde890a12011-11-09 14:03:34 +01001209 td = get_new_job(0, td_parent, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001210 }
1211 if (in_global)
Jens Axboe292cc472013-11-26 20:39:35 -07001212 fio_options_parse(td_parent, (char **) &o[i], 1, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001213 else
Jens Axboe292cc472013-11-26 20:39:35 -07001214 fio_options_parse(td, (char **) &o[i], 1, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001215 i++;
1216 }
1217
1218 if (td)
Jens Axboe46bcd492012-03-14 11:31:21 +01001219 add_job(td, jobname, 0, 0, client_type);
Jens Axboe79d16312010-03-04 12:43:20 +01001220}
1221
Jens Axboe01f06b62008-02-18 20:53:47 +01001222static int skip_this_section(const char *name)
1223{
Jens Axboead0a2732011-03-11 10:16:17 +01001224 int i;
1225
1226 if (!nr_job_sections)
Jens Axboe01f06b62008-02-18 20:53:47 +01001227 return 0;
1228 if (!strncmp(name, "global", 6))
1229 return 0;
1230
Jens Axboead0a2732011-03-11 10:16:17 +01001231 for (i = 0; i < nr_job_sections; i++)
1232 if (!strcmp(job_sections[i], name))
1233 return 0;
1234
1235 return 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001236}
1237
Jens Axboeebac4652005-12-08 15:25:21 +01001238static int is_empty_or_comment(char *line)
1239{
1240 unsigned int i;
1241
1242 for (i = 0; i < strlen(line); i++) {
1243 if (line[i] == ';')
1244 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +01001245 if (line[i] == '#')
1246 return 1;
Jens Axboe76cd9372011-07-08 21:14:57 +02001247 if (!isspace((int) line[i]) && !iscntrl((int) line[i]))
Jens Axboeebac4652005-12-08 15:25:21 +01001248 return 0;
1249 }
1250
1251 return 1;
1252}
1253
Jens Axboe313cb202006-12-21 09:50:00 +01001254/*
Jens Axboe07261982006-06-07 10:51:12 +02001255 * This is our [ini] type file parser.
1256 */
Jens Axboe46bcd492012-03-14 11:31:21 +01001257int parse_jobs_ini(char *file, int is_buf, int stonewall_flag, int type)
Jens Axboeebac4652005-12-08 15:25:21 +01001258{
Jens Axboee1f36502006-10-27 10:54:08 +02001259 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +01001260 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +01001261 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +01001262 FILE *f;
1263 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001264 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +02001265 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +02001266 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +01001267 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +02001268 char **opts;
1269 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +01001270
Jens Axboe50d16972011-09-29 17:45:28 -06001271 if (is_buf)
1272 f = NULL;
1273 else {
1274 if (!strcmp(file, "-"))
1275 f = stdin;
1276 else
1277 f = fopen(file, "r");
Aaron Carroll5a729cb2007-09-27 09:03:55 +02001278
Jens Axboe50d16972011-09-29 17:45:28 -06001279 if (!f) {
1280 perror("fopen job file");
1281 return 1;
1282 }
Jens Axboeebac4652005-12-08 15:25:21 +01001283 }
1284
1285 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +02001286
1287 /*
1288 * it's really 256 + small bit, 280 should suffice
1289 */
1290 name = malloc(280);
1291 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +01001292
Jens Axboe3b8b7132008-06-10 19:46:23 +02001293 alloc_opts = 8;
1294 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +02001295 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +02001296
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001297 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001298 do {
Jens Axboeccf8f122007-09-27 10:48:55 +02001299 /*
1300 * if skip_fgets is set, we already have loaded a line we
1301 * haven't handled.
1302 */
1303 if (!skip_fgets) {
Jens Axboe50d16972011-09-29 17:45:28 -06001304 if (is_buf)
1305 p = strsep(&file, "\n");
1306 else
Jens Axboe43f74792011-10-15 14:37:26 +02001307 p = fgets(string, 4096, f);
Jens Axboeccf8f122007-09-27 10:48:55 +02001308 if (!p)
1309 break;
1310 }
gurudas paicdc7f192007-03-29 10:10:56 +02001311
Jens Axboeccf8f122007-09-27 10:48:55 +02001312 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +02001313 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -08001314 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +02001315
Jens Axboeebac4652005-12-08 15:25:21 +01001316 if (is_empty_or_comment(p))
1317 continue;
Bruce Cran84dd1882011-05-05 08:14:09 -06001318 if (sscanf(p, "[%255[^\n]]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001319 if (inside_skip)
1320 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001321 log_err("fio: option <%s> outside of [] job section\n",
1322 p);
Jens Axboe088b4202007-07-19 14:53:01 +02001323 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -08001324 }
Jens Axboeebac4652005-12-08 15:25:21 +01001325
Jens Axboe7a4b80a2010-05-22 20:43:11 +02001326 name[strlen(name) - 1] = '\0';
1327
Jens Axboe01f06b62008-02-18 20:53:47 +01001328 if (skip_this_section(name)) {
1329 inside_skip = 1;
1330 continue;
1331 } else
1332 inside_skip = 0;
1333
Jens Axboeebac4652005-12-08 15:25:21 +01001334 global = !strncmp(name, "global", 6);
1335
Jens Axboecca73aa2007-04-04 11:09:19 +02001336 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +02001337 if (first_sect)
1338 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +02001339 if (!global)
1340 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +02001341 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02001342 }
1343
Steven Langde890a12011-11-09 14:03:34 +01001344 td = get_new_job(global, &def_thread, 0);
Jens Axboe45410ac2006-06-07 11:10:39 +02001345 if (!td) {
1346 ret = 1;
1347 break;
1348 }
Jens Axboeebac4652005-12-08 15:25:21 +01001349
Jens Axboe972cfd22006-06-09 11:08:56 +02001350 /*
Anatol Pomozovde8f6de2013-09-26 16:31:34 -07001351 * Separate multiple job files by a stonewall
Jens Axboe972cfd22006-06-09 11:08:56 +02001352 */
Jens Axboef9481912006-06-09 11:37:28 +02001353 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001354 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +02001355 stonewall = 0;
1356 }
1357
Jens Axboe3b8b7132008-06-10 19:46:23 +02001358 num_opts = 0;
1359 memset(opts, 0, alloc_opts * sizeof(char *));
1360
Jens Axboe50d16972011-09-29 17:45:28 -06001361 while (1) {
1362 if (is_buf)
1363 p = strsep(&file, "\n");
1364 else
1365 p = fgets(string, 4096, f);
1366 if (!p)
1367 break;
1368
Jens Axboeebac4652005-12-08 15:25:21 +01001369 if (is_empty_or_comment(p))
1370 continue;
Jens Axboee1f36502006-10-27 10:54:08 +02001371
Jens Axboeb6754f92006-05-30 14:29:32 +02001372 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +01001373
Jens Axboeccf8f122007-09-27 10:48:55 +02001374 /*
1375 * new section, break out and make sure we don't
1376 * fgets() a new line at the top.
1377 */
1378 if (p[0] == '[') {
1379 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001380 break;
Jens Axboeccf8f122007-09-27 10:48:55 +02001381 }
Jens Axboe7c124ac2006-10-30 13:36:52 +01001382
Jens Axboe4ae3f762006-05-30 13:35:14 +02001383 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +02001384
Jens Axboe3b8b7132008-06-10 19:46:23 +02001385 if (num_opts == alloc_opts) {
1386 alloc_opts <<= 1;
1387 opts = realloc(opts,
1388 alloc_opts * sizeof(char *));
1389 }
1390
1391 opts[num_opts] = strdup(p);
1392 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +01001393 }
Jens Axboeebac4652005-12-08 15:25:21 +01001394
Jens Axboe292cc472013-11-26 20:39:35 -07001395 ret = fio_options_parse(td, opts, num_opts, dump_cmdline);
1396 if (!ret)
Jens Axboe46bcd492012-03-14 11:31:21 +01001397 ret = add_job(td, name, 0, 0, type);
Jens Axboe292cc472013-11-26 20:39:35 -07001398 else {
Jens Axboeb1508cf2006-11-02 09:12:40 +01001399 log_err("fio: job %s dropped\n", name);
1400 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +02001401 }
Jens Axboe3b8b7132008-06-10 19:46:23 +02001402
1403 for (i = 0; i < num_opts; i++)
1404 free(opts[i]);
1405 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001406 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001407
Jens Axboecca73aa2007-04-04 11:09:19 +02001408 if (dump_cmdline)
1409 log_info("\n");
1410
Jens Axboe7e356b22011-10-14 10:55:16 +02001411 i = 0;
1412 while (i < nr_job_sections) {
1413 free(job_sections[i]);
1414 i++;
1415 }
1416
Jens Axboe3b8b7132008-06-10 19:46:23 +02001417 for (i = 0; i < num_opts; i++)
1418 free(opts[i]);
1419
Jens Axboeebac4652005-12-08 15:25:21 +01001420 free(string);
1421 free(name);
Jens Axboe25775942008-06-10 20:26:06 +02001422 free(opts);
Jens Axboe50d16972011-09-29 17:45:28 -06001423 if (!is_buf && f != stdin)
Aaron Carroll5a729cb2007-09-27 09:03:55 +02001424 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +02001425 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001426}
1427
1428static int fill_def_thread(void)
1429{
1430 memset(&def_thread, 0, sizeof(def_thread));
1431
Jens Axboe375b2692007-05-22 09:13:02 +02001432 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboe8c029372011-10-05 09:54:30 +02001433 def_thread.o.timeout = def_timeout;
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04001434 def_thread.o.error_dump = 1;
Jens Axboeebac4652005-12-08 15:25:21 +01001435 /*
Jens Axboeee738492007-01-10 11:23:16 +01001436 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +01001437 */
Jens Axboe214e1ec2007-03-15 10:48:13 +01001438 fio_fill_default_options(&def_thread);
Jens Axboeebac4652005-12-08 15:25:21 +01001439 return 0;
1440}
1441
Jens Axboe45378b32007-12-19 13:54:38 +01001442static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +02001443{
Jens Axboe3d433822012-03-21 22:25:22 +01001444 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +01001445 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboe83881282011-10-17 19:58:51 +02001446 printf(" --debug=options\tEnable debug logging. May be one/more of:\n"
1447 "\t\t\tprocess,file,io,mem,blktrace,verify,random,parse,\n"
Jens Axboe3e260a42013-12-09 12:38:53 -07001448 "\t\t\tdiskutil,job,mutex,profile,time,net,rate\n");
Jens Axboe111e0322013-03-07 11:31:20 +01001449 printf(" --parse-only\t\tParse options only, don't start any IO\n");
Jens Axboe83881282011-10-17 19:58:51 +02001450 printf(" --output\t\tWrite output to file\n");
liang xieb2cecdc2012-08-31 08:22:42 -07001451 printf(" --runtime\t\tRuntime in seconds\n");
Jens Axboe83881282011-10-17 19:58:51 +02001452 printf(" --latency-log\t\tGenerate per-job latency logs\n");
1453 printf(" --bandwidth-log\tGenerate per-job bandwidth logs\n");
1454 printf(" --minimal\t\tMinimal (terse) output\n");
Jens Axboef3afa572012-09-17 13:34:16 +02001455 printf(" --output-format=x\tOutput format (terse,json,normal)\n");
Jens Axboe75db6e22011-11-07 22:07:36 +01001456 printf(" --terse-version=x\tSet terse version output format to 'x'\n");
Jens Axboef3afa572012-09-17 13:34:16 +02001457 printf(" --version\t\tPrint version info and exit\n");
Jens Axboe83881282011-10-17 19:58:51 +02001458 printf(" --help\t\tPrint this page\n");
Jens Axboe23893642012-12-17 14:44:08 +01001459 printf(" --cpuclock-test\tPerform test/validation of CPU clock\n");
Jens Axboefec0f212014-02-07 14:39:33 -07001460 printf(" --crctest\t\tTest speed of checksum functions\n");
Jens Axboe83881282011-10-17 19:58:51 +02001461 printf(" --cmdhelp=cmd\t\tPrint command help, \"all\" for all of"
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001462 " them\n");
Steven Langde890a12011-11-09 14:03:34 +01001463 printf(" --enghelp=engine\tPrint ioengine help, or list"
1464 " available ioengines\n");
1465 printf(" --enghelp=engine,cmd\tPrint help for an ioengine"
1466 " cmd\n");
Jens Axboe83881282011-10-17 19:58:51 +02001467 printf(" --showcmd\t\tTurn a job file into command line options\n");
1468 printf(" --eta=when\t\tWhen ETA estimate should be printed\n");
1469 printf(" \t\tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboee382e662013-02-22 20:48:56 +01001470 printf(" --eta-newline=time\tForce a new line for every 'time'");
1471 printf(" period passed\n");
Jens Axboe06464902013-04-24 20:38:54 -06001472 printf(" --status-interval=t\tForce full status dump every");
1473 printf(" 't' period passed\n");
Jens Axboe83881282011-10-17 19:58:51 +02001474 printf(" --readonly\t\tTurn on safety read-only checks, preventing"
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001475 " writes\n");
Jens Axboe83881282011-10-17 19:58:51 +02001476 printf(" --section=name\tOnly run specified section in job file\n");
1477 printf(" --alloc-size=kb\tSet smalloc pool to this size in kb"
Jens Axboe2b386d22008-03-26 10:32:57 +01001478 " (def 1024)\n");
Jens Axboe83881282011-10-17 19:58:51 +02001479 printf(" --warnings-fatal\tFio parser warnings are fatal\n");
1480 printf(" --max-jobs=nr\t\tMaximum number of threads/processes to support\n");
1481 printf(" --server=args\t\tStart a backend fio server\n");
1482 printf(" --daemonize=pidfile\tBackground fio server, write pid to file\n");
1483 printf(" --client=hostname\tTalk to remote backend fio server at hostname\n");
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001484 printf(" --idle-prof=option\tReport cpu idleness on a system or percpu basis\n"
1485 "\t\t\t(option=system,percpu) or run unit work\n"
1486 "\t\t\tcalibration only (option=calibrate)\n");
Jens Axboeaa58d252010-06-09 09:49:38 +02001487 printf("\nFio was written by Jens Axboe <jens.axboe@oracle.com>");
Jens Axboebfca2c72014-01-29 16:39:04 -07001488 printf("\n Jens Axboe <jaxboe@fusionio.com>");
1489 printf("\n Jens Axboe <axboe@fb.com>\n");
Jens Axboeb4692822006-10-27 13:43:22 +02001490}
1491
Jens Axboe79e48f72008-02-01 20:37:09 +01001492#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +01001493struct debug_level debug_levels[] = {
Jens Axboe0b8d11e2012-03-02 19:44:15 +01001494 { .name = "process",
1495 .help = "Process creation/exit logging",
1496 .shift = FD_PROCESS,
1497 },
1498 { .name = "file",
1499 .help = "File related action logging",
1500 .shift = FD_FILE,
1501 },
1502 { .name = "io",
1503 .help = "IO and IO engine action logging (offsets, queue, completions, etc)",
1504 .shift = FD_IO,
1505 },
1506 { .name = "mem",
1507 .help = "Memory allocation/freeing logging",
1508 .shift = FD_MEM,
1509 },
1510 { .name = "blktrace",
1511 .help = "blktrace action logging",
1512 .shift = FD_BLKTRACE,
1513 },
1514 { .name = "verify",
1515 .help = "IO verification action logging",
1516 .shift = FD_VERIFY,
1517 },
1518 { .name = "random",
1519 .help = "Random generation logging",
1520 .shift = FD_RANDOM,
1521 },
1522 { .name = "parse",
1523 .help = "Parser logging",
1524 .shift = FD_PARSE,
1525 },
1526 { .name = "diskutil",
1527 .help = "Disk utility logging actions",
1528 .shift = FD_DISKUTIL,
1529 },
1530 { .name = "job",
1531 .help = "Logging related to creating/destroying jobs",
1532 .shift = FD_JOB,
1533 },
1534 { .name = "mutex",
1535 .help = "Mutex logging",
1536 .shift = FD_MUTEX
1537 },
1538 { .name = "profile",
1539 .help = "Logging related to profiles",
1540 .shift = FD_PROFILE,
1541 },
1542 { .name = "time",
1543 .help = "Logging related to time keeping functions",
1544 .shift = FD_TIME,
1545 },
1546 { .name = "net",
1547 .help = "Network logging",
1548 .shift = FD_NET,
1549 },
Jens Axboe3e260a42013-12-09 12:38:53 -07001550 { .name = "rate",
1551 .help = "Rate logging",
1552 .shift = FD_RATE,
1553 },
Jens Axboe02444ad2008-10-07 11:33:00 +02001554 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +01001555};
1556
Jens Axboec09823a2008-02-19 20:16:57 +01001557static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +01001558{
1559 struct debug_level *dl;
1560 char *p = (char *) string;
1561 char *opt;
1562 int i;
1563
1564 if (!strcmp(string, "?") || !strcmp(string, "help")) {
Jens Axboeee56ad52008-02-01 10:30:20 +01001565 log_info("fio: dumping debug options:");
1566 for (i = 0; debug_levels[i].name; i++) {
1567 dl = &debug_levels[i];
1568 log_info("%s,", dl->name);
1569 }
Jens Axboebd6f78b2008-02-01 20:27:52 +01001570 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001571 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +01001572 }
1573
1574 while ((opt = strsep(&p, ",")) != NULL) {
1575 int found = 0;
1576
Jens Axboe5e1d3062008-05-23 11:55:53 +02001577 if (!strncmp(opt, "all", 3)) {
1578 log_info("fio: set all debug options\n");
1579 fio_debug = ~0UL;
1580 continue;
1581 }
1582
Jens Axboeee56ad52008-02-01 10:30:20 +01001583 for (i = 0; debug_levels[i].name; i++) {
1584 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +02001585 found = !strncmp(opt, dl->name, strlen(dl->name));
1586 if (!found)
1587 continue;
1588
1589 if (dl->shift == FD_JOB) {
1590 opt = strchr(opt, ':');
1591 if (!opt) {
1592 log_err("fio: missing job number\n");
1593 break;
1594 }
1595 opt++;
1596 fio_debug_jobno = atoi(opt);
1597 log_info("fio: set debug jobno %d\n",
1598 fio_debug_jobno);
1599 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001600 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001601 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +01001602 }
Jens Axboe5e1d3062008-05-23 11:55:53 +02001603 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001604 }
1605
1606 if (!found)
1607 log_err("fio: debug mask %s not found\n", opt);
1608 }
Jens Axboec09823a2008-02-19 20:16:57 +01001609 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +01001610}
Jens Axboe79e48f72008-02-01 20:37:09 +01001611#else
Jens Axboe69b98d42008-05-30 22:25:32 +02001612static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +01001613{
1614 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001615 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +01001616}
1617#endif
Jens Axboeee56ad52008-02-01 10:30:20 +01001618
Jens Axboe4c6107f2011-01-18 05:22:22 -07001619static void fio_options_fill_optstring(void)
1620{
1621 char *ostr = cmd_optstr;
1622 int i, c;
1623
1624 c = i = 0;
1625 while (l_opts[i].name) {
1626 ostr[c++] = l_opts[i].val;
1627 if (l_opts[i].has_arg == required_argument)
1628 ostr[c++] = ':';
1629 else if (l_opts[i].has_arg == optional_argument) {
1630 ostr[c++] = ':';
1631 ostr[c++] = ':';
1632 }
1633 i++;
1634 }
1635 ostr[c] = '\0';
1636}
1637
Jens Axboec2c94582011-10-05 20:31:30 +02001638static int client_flag_set(char c)
1639{
1640 int i;
1641
1642 i = 0;
1643 while (l_opts[i].name) {
1644 int val = l_opts[i].val;
1645
1646 if (c == (val & 0xff))
1647 return (val & FIO_CLIENT_FLAG);
1648
1649 i++;
1650 }
1651
1652 return 0;
1653}
1654
Jens Axboefa2ea802011-10-08 21:07:29 +02001655void parse_cmd_client(void *client, char *opt)
Jens Axboe7a4b8242011-10-05 17:35:15 +02001656{
Jens Axboefa2ea802011-10-08 21:07:29 +02001657 fio_client_add_cmd_option(client, opt);
Jens Axboe7a4b8242011-10-05 17:35:15 +02001658}
1659
Jens Axboefec0f212014-02-07 14:39:33 -07001660extern int fio_crctest(const char *);
1661
Jens Axboe46bcd492012-03-14 11:31:21 +01001662int parse_cmd_line(int argc, char *argv[], int client_type)
Jens Axboe214e1ec2007-03-15 10:48:13 +01001663{
1664 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +01001665 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe4c6107f2011-01-18 05:22:22 -07001666 char *ostr = cmd_optstr;
Jens Axboe402668f2011-10-10 15:28:58 +02001667 void *pid_file = NULL;
Jens Axboe9bae26e2011-10-07 10:07:22 +02001668 void *cur_client = NULL;
Jens Axboe81179ee2011-10-04 12:42:06 +02001669 int backend = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001670
Jens Axboec2c94582011-10-05 20:31:30 +02001671 /*
1672 * Reset optind handling, since we may call this multiple times
1673 * for the backend.
1674 */
1675 optind = 1;
Jens Axboe7a4b8242011-10-05 17:35:15 +02001676
Jens Axboec2c94582011-10-05 20:31:30 +02001677 while ((c = getopt_long_only(argc, argv, ostr, l_opts, &lidx)) != -1) {
Jens Axboe085399d2011-10-06 09:01:22 +02001678 did_arg = 1;
1679
Jens Axboec2c94582011-10-05 20:31:30 +02001680 if ((c & FIO_CLIENT_FLAG) || client_flag_set(c)) {
Jens Axboefa2ea802011-10-08 21:07:29 +02001681 parse_cmd_client(cur_client, argv[optind - 1]);
Jens Axboe7a4b8242011-10-05 17:35:15 +02001682 c &= ~FIO_CLIENT_FLAG;
1683 }
1684
Jens Axboe214e1ec2007-03-15 10:48:13 +01001685 switch (c) {
Jens Axboe2b386d22008-03-26 10:32:57 +01001686 case 'a':
1687 smalloc_pool_size = atoi(optarg);
1688 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001689 case 't':
Jens Axboe8c029372011-10-05 09:54:30 +02001690 def_timeout = atoi(optarg);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001691 break;
1692 case 'l':
1693 write_lat_log = 1;
1694 break;
Jens Axboe3d73e5a2010-03-25 10:38:07 +01001695 case 'b':
Jens Axboe214e1ec2007-03-15 10:48:13 +01001696 write_bw_log = 1;
1697 break;
1698 case 'o':
1699 f_out = fopen(optarg, "w+");
1700 if (!f_out) {
1701 perror("fopen output");
1702 exit(1);
1703 }
1704 f_err = f_out;
1705 break;
1706 case 'm':
Jens Axboef3afa572012-09-17 13:34:16 +02001707 output_format = FIO_OUTPUT_TERSE;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001708 break;
Jens Axboef3afa572012-09-17 13:34:16 +02001709 case 'F':
Stefan Hajnoczid10983d2014-02-04 14:27:11 +01001710 if (!optarg) {
1711 log_err("fio: missing --output-format argument\n");
1712 exit_val = 1;
1713 do_exit++;
1714 break;
1715 }
Jens Axboef3afa572012-09-17 13:34:16 +02001716 if (!strcmp(optarg, "minimal") ||
1717 !strcmp(optarg, "terse") ||
1718 !strcmp(optarg, "csv"))
1719 output_format = FIO_OUTPUT_TERSE;
1720 else if (!strcmp(optarg, "json"))
1721 output_format = FIO_OUTPUT_JSON;
1722 else
1723 output_format = FIO_OUTPUT_NORMAL;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001724 break;
Christian Ehrhardt2b8c71b2014-02-20 14:20:04 +01001725 case 'f':
1726 append_terse_output = 1;
1727 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001728 case 'h':
Jens Axboe7874f8b2011-10-06 09:18:20 +02001729 if (!cur_client) {
Jens Axboec2c94582011-10-05 20:31:30 +02001730 usage(argv[0]);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001731 do_exit++;
1732 }
Jens Axboec2c94582011-10-05 20:31:30 +02001733 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001734 case 'c':
Jens Axboe7874f8b2011-10-06 09:18:20 +02001735 if (!cur_client) {
Jens Axboec2c94582011-10-05 20:31:30 +02001736 fio_show_option_help(optarg);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001737 do_exit++;
1738 }
Jens Axboec2c94582011-10-05 20:31:30 +02001739 break;
Steven Langde890a12011-11-09 14:03:34 +01001740 case 'i':
1741 if (!cur_client) {
1742 fio_show_ioengine_help(optarg);
1743 do_exit++;
1744 }
1745 break;
Jens Axboecca73aa2007-04-04 11:09:19 +02001746 case 's':
1747 dump_cmdline = 1;
1748 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001749 case 'r':
1750 read_only = 1;
1751 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001752 case 'v':
Jens Axboe7874f8b2011-10-06 09:18:20 +02001753 if (!cur_client) {
Jens Axboe3d433822012-03-21 22:25:22 +01001754 log_info("%s\n", fio_version_string);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001755 do_exit++;
1756 }
Jens Axboec2c94582011-10-05 20:31:30 +02001757 break;
Jens Axboef57a9c52011-09-09 21:01:37 +02001758 case 'V':
1759 terse_version = atoi(optarg);
Jens Axboe09786f52012-10-04 17:06:49 +02001760 if (!(terse_version == 2 || terse_version == 3 ||
1761 terse_version == 4)) {
Jens Axboef57a9c52011-09-09 21:01:37 +02001762 log_err("fio: bad terse version format\n");
1763 exit_val = 1;
1764 do_exit++;
1765 }
1766 break;
Aaron Carrolle592a062007-09-14 09:49:41 +02001767 case 'e':
1768 if (!strcmp("always", optarg))
1769 eta_print = FIO_ETA_ALWAYS;
1770 else if (!strcmp("never", optarg))
1771 eta_print = FIO_ETA_NEVER;
1772 break;
Jens Axboee382e662013-02-22 20:48:56 +01001773 case 'E': {
1774 long long t = 0;
1775
Jens Axboe0de5b262014-02-21 15:26:01 -08001776 if (str_to_decimal(optarg, &t, 0, NULL, 1)) {
Jens Axboee382e662013-02-22 20:48:56 +01001777 log_err("fio: failed parsing eta time %s\n", optarg);
1778 exit_val = 1;
1779 do_exit++;
1780 }
1781 eta_new_line = t;
1782 break;
1783 }
Jens Axboeee56ad52008-02-01 10:30:20 +01001784 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001785 if (set_debug(optarg))
1786 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001787 break;
Jens Axboe111e0322013-03-07 11:31:20 +01001788 case 'P':
1789 parse_only = 1;
1790 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001791 case 'x': {
1792 size_t new_size;
1793
Jens Axboe01f06b62008-02-18 20:53:47 +01001794 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001795 log_err("fio: can't use global as only "
1796 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001797 do_exit++;
1798 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001799 break;
1800 }
Jens Axboead0a2732011-03-11 10:16:17 +01001801 new_size = (nr_job_sections + 1) * sizeof(char *);
1802 job_sections = realloc(job_sections, new_size);
1803 job_sections[nr_job_sections] = strdup(optarg);
1804 nr_job_sections++;
Jens Axboe01f06b62008-02-18 20:53:47 +01001805 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001806 }
Jens Axboe9ac8a792009-11-13 21:23:07 +01001807 case 'p':
Jens Axboe07b32322010-03-05 09:48:44 +01001808 exec_profile = strdup(optarg);
Jens Axboe9ac8a792009-11-13 21:23:07 +01001809 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001810 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001811 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001812 char *val = optarg;
1813
1814 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe46bcd492012-03-14 11:31:21 +01001815 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
Jens Axboe66251552011-05-12 10:14:57 +02001816 if (ret)
Jens Axboe214e1ec2007-03-15 10:48:13 +01001817 return 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001818 td = NULL;
1819 }
1820 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001821 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001822 int global = 0;
1823
Jens Axboe01f06b62008-02-18 20:53:47 +01001824 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001825 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001826
Jens Axboe01f06b62008-02-18 20:53:47 +01001827 if (is_section && skip_this_section(val))
1828 continue;
1829
Steven Langde890a12011-11-09 14:03:34 +01001830 td = get_new_job(global, &def_thread, 1);
1831 if (!td || ioengine_load(td))
Jens Axboe214e1ec2007-03-15 10:48:13 +01001832 return 0;
Steven Langde890a12011-11-09 14:03:34 +01001833 fio_options_set_ioengine_opts(l_opts, td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001834 }
1835
Jens Axboe9d918182013-05-23 20:00:35 +02001836 if ((!val || !strlen(val)) &&
1837 l_opts[lidx].has_arg == required_argument) {
1838 log_err("fio: option %s requires an argument\n", opt);
1839 ret = 1;
1840 } else
1841 ret = fio_cmd_option_parse(td, opt, val);
1842
Jens Axboebfb3ea22013-05-23 19:54:43 +02001843 if (ret) {
1844 if (td) {
1845 put_job(td);
1846 td = NULL;
1847 }
Jens Axboea88c8c12013-04-24 22:25:22 -06001848 do_exit++;
Jens Axboebfb3ea22013-05-23 19:54:43 +02001849 }
Steven Langde890a12011-11-09 14:03:34 +01001850
1851 if (!ret && !strcmp(opt, "ioengine")) {
1852 free_ioengine(td);
1853 if (ioengine_load(td))
1854 return 0;
1855 fio_options_set_ioengine_opts(l_opts, td);
1856 }
1857 break;
1858 }
1859 case FIO_GETOPT_IOENGINE: {
1860 const char *opt = l_opts[lidx].name;
1861 char *val = optarg;
Steven Langde890a12011-11-09 14:03:34 +01001862 ret = fio_cmd_ioengine_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001863 break;
1864 }
Jens Axboea9523c62011-01-17 16:49:54 -07001865 case 'w':
1866 warnings_fatal = 1;
1867 break;
Jens Axboefca70352011-07-06 20:12:54 +02001868 case 'j':
1869 max_jobs = atoi(optarg);
1870 if (!max_jobs || max_jobs > REAL_MAX_JOBS) {
1871 log_err("fio: invalid max jobs: %d\n", max_jobs);
1872 do_exit++;
1873 exit_val = 1;
1874 }
1875 break;
Jens Axboe50d16972011-09-29 17:45:28 -06001876 case 'S':
Jens Axboea37f69b2011-10-01 12:24:21 -06001877 if (nr_clients) {
Jens Axboe132159a2011-09-30 15:01:32 -06001878 log_err("fio: can't be both client and server\n");
1879 do_exit++;
1880 exit_val = 1;
1881 break;
1882 }
Jens Axboe87aa8f12011-10-06 21:24:13 +02001883 if (optarg)
Jens Axboebebe6392011-10-07 10:00:51 +02001884 fio_server_set_arg(optarg);
Jens Axboe50d16972011-09-29 17:45:28 -06001885 is_backend = 1;
Jens Axboe81179ee2011-10-04 12:42:06 +02001886 backend = 1;
Jens Axboe50d16972011-09-29 17:45:28 -06001887 break;
Jens Axboee46d8092011-10-03 09:11:02 +02001888 case 'D':
Jens Axboe402668f2011-10-10 15:28:58 +02001889 pid_file = strdup(optarg);
Jens Axboee46d8092011-10-03 09:11:02 +02001890 break;
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001891 case 'I':
1892 if ((ret = fio_idle_prof_parse_opt(optarg))) {
1893 /* exit on error and calibration only */
1894 do_exit++;
1895 if (ret == -1)
1896 exit_val = 1;
1897 }
1898 break;
Jens Axboe132159a2011-09-30 15:01:32 -06001899 case 'C':
1900 if (is_backend) {
1901 log_err("fio: can't be both client and server\n");
1902 do_exit++;
1903 exit_val = 1;
1904 break;
1905 }
Jens Axboea5276612012-03-04 15:15:08 +01001906 if (fio_client_add(&fio_client_ops, optarg, &cur_client)) {
Jens Axboebebe6392011-10-07 10:00:51 +02001907 log_err("fio: failed adding client %s\n", optarg);
1908 do_exit++;
1909 exit_val = 1;
1910 break;
1911 }
Jens Axboe14ea90e2012-08-26 17:33:34 +02001912 /*
1913 * If the next argument exists and isn't an option,
1914 * assume it's a job file for this client only.
1915 */
1916 while (optind < argc) {
1917 if (!strncmp(argv[optind], "--", 2) ||
1918 !strncmp(argv[optind], "-", 1))
1919 break;
1920
1921 fio_client_add_ini_file(cur_client, argv[optind]);
1922 optind++;
1923 }
Jens Axboe132159a2011-09-30 15:01:32 -06001924 break;
Jens Axboe7d11f872012-12-17 12:03:29 +01001925 case 'T':
1926 do_exit++;
1927 exit_val = fio_monotonic_clocktest();
1928 break;
Jens Axboefec0f212014-02-07 14:39:33 -07001929 case 'G':
1930 do_exit++;
1931 exit_val = fio_crctest(optarg);
1932 break;
Jens Axboe06464902013-04-24 20:38:54 -06001933 case 'L': {
1934 long long val;
1935
Jens Axboe0de5b262014-02-21 15:26:01 -08001936 if (check_str_time(optarg, &val, 1)) {
Jens Axboe06464902013-04-24 20:38:54 -06001937 log_err("fio: failed parsing time %s\n", optarg);
1938 do_exit++;
1939 exit_val = 1;
1940 break;
1941 }
1942 status_interval = val * 1000;
1943 break;
1944 }
Jens Axboe798827c2013-01-23 18:11:48 -07001945 case '?':
1946 log_err("%s: unrecognized option '%s'\n", argv[0],
1947 argv[optind - 1]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001948 default:
Jens Axboec09823a2008-02-19 20:16:57 +01001949 do_exit++;
1950 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001951 break;
1952 }
Jens Axboec7d5c942011-10-03 11:48:17 +02001953 if (do_exit)
1954 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001955 }
1956
Jens Axboe0b14f0a2013-05-23 21:27:54 +02001957 if (do_exit && !(is_backend || nr_clients))
1958 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01001959
Jens Axboea37f69b2011-10-01 12:24:21 -06001960 if (nr_clients && fio_clients_connect()) {
Jens Axboe132159a2011-09-30 15:01:32 -06001961 do_exit++;
1962 exit_val = 1;
Jens Axboecdf54d82011-10-04 08:31:40 +02001963 return -1;
Jens Axboe132159a2011-09-30 15:01:32 -06001964 }
1965
Jens Axboe81179ee2011-10-04 12:42:06 +02001966 if (is_backend && backend)
Jens Axboe402668f2011-10-10 15:28:58 +02001967 return fio_start_server(pid_file);
Jens Axboe50d16972011-09-29 17:45:28 -06001968
Jens Axboe214e1ec2007-03-15 10:48:13 +01001969 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +01001970 if (!ret)
Jens Axboe46bcd492012-03-14 11:31:21 +01001971 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001972 }
1973
Jens Axboe7874f8b2011-10-06 09:18:20 +02001974 while (!ret && optind < argc) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001975 ini_idx++;
1976 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1977 ini_file[ini_idx - 1] = strdup(argv[optind]);
1978 optind++;
1979 }
1980
1981 return ini_idx;
1982}
1983
Jens Axboe0420ba62012-02-29 11:16:52 +01001984int fio_init_options(void)
Jens Axboeebac4652005-12-08 15:25:21 +01001985{
Jens Axboeb4692822006-10-27 13:43:22 +02001986 f_out = stdout;
1987 f_err = stderr;
1988
Jens Axboe4c6107f2011-01-18 05:22:22 -07001989 fio_options_fill_optstring();
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001990 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02001991
Jens Axboe9d9eb2e2011-10-03 12:01:42 +02001992 atexit(free_shm);
1993
Jens Axboeebac4652005-12-08 15:25:21 +01001994 if (fill_def_thread())
1995 return 1;
1996
Jens Axboe0420ba62012-02-29 11:16:52 +01001997 return 0;
1998}
1999
Jens Axboe51167792012-03-08 21:34:18 +01002000extern int fio_check_options(struct thread_options *);
2001
Jens Axboe0420ba62012-02-29 11:16:52 +01002002int parse_options(int argc, char *argv[])
2003{
Jens Axboe46bcd492012-03-14 11:31:21 +01002004 const int type = FIO_CLIENT_TYPE_CLI;
Jens Axboe0420ba62012-02-29 11:16:52 +01002005 int job_files, i;
2006
2007 if (fio_init_options())
2008 return 1;
Jens Axboe51167792012-03-08 21:34:18 +01002009 if (fio_test_cconv(&def_thread.o))
2010 log_err("fio: failed internal cconv test\n");
Jens Axboe0420ba62012-02-29 11:16:52 +01002011
Jens Axboe46bcd492012-03-14 11:31:21 +01002012 job_files = parse_cmd_line(argc, argv, type);
Jens Axboeebac4652005-12-08 15:25:21 +01002013
Jens Axboecdf54d82011-10-04 08:31:40 +02002014 if (job_files > 0) {
2015 for (i = 0; i < job_files; i++) {
2016 if (fill_def_thread())
Jens Axboe132159a2011-09-30 15:01:32 -06002017 return 1;
Jens Axboecdf54d82011-10-04 08:31:40 +02002018 if (nr_clients) {
2019 if (fio_clients_send_ini(ini_file[i]))
2020 return 1;
2021 free(ini_file[i]);
2022 } else if (!is_backend) {
Jens Axboe46bcd492012-03-14 11:31:21 +01002023 if (parse_jobs_ini(ini_file[i], 0, i, type))
Jens Axboecdf54d82011-10-04 08:31:40 +02002024 return 1;
2025 free(ini_file[i]);
2026 }
Jens Axboe132159a2011-09-30 15:01:32 -06002027 }
Jens Axboe14ea90e2012-08-26 17:33:34 +02002028 } else if (nr_clients) {
2029 if (fill_def_thread())
2030 return 1;
2031 if (fio_clients_send_ini(NULL))
2032 return 1;
Jens Axboe972cfd22006-06-09 11:08:56 +02002033 }
Jens Axboeebac4652005-12-08 15:25:21 +01002034
Jens Axboe88c6ed82006-06-09 11:28:10 +02002035 free(ini_file);
Jens Axboe7e356b22011-10-14 10:55:16 +02002036 fio_options_free(&def_thread);
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08002037 filesetup_mem_free();
Jens Axboeb4692822006-10-27 13:43:22 +02002038
2039 if (!thread_number) {
Jens Axboef9633d72013-09-06 09:59:56 -06002040 if (parse_dryrun())
Jens Axboecca73aa2007-04-04 11:09:19 +02002041 return 0;
Jens Axboe07b32322010-03-05 09:48:44 +01002042 if (exec_profile)
2043 return 0;
Jens Axboea37f69b2011-10-01 12:24:21 -06002044 if (is_backend || nr_clients)
Jens Axboe5c341e92011-09-29 18:00:35 -06002045 return 0;
Jens Axboe085399d2011-10-06 09:01:22 +02002046 if (did_arg)
2047 return 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02002048
Jens Axboed65e11c2011-10-05 09:56:53 +02002049 log_err("No jobs(s) defined\n\n");
Jens Axboe085399d2011-10-06 09:01:22 +02002050
2051 if (!did_arg) {
2052 usage(argv[0]);
2053 return 1;
2054 }
2055
2056 return 0;
Jens Axboeb4692822006-10-27 13:43:22 +02002057 }
2058
Jens Axboebe4ecfd2008-12-08 14:10:52 +01002059 if (def_thread.o.gtod_offload) {
2060 fio_gtod_init();
2061 fio_gtod_offload = 1;
2062 fio_gtod_cpu = def_thread.o.gtod_cpu;
2063 }
2064
Jens Axboef3afa572012-09-17 13:34:16 +02002065 if (output_format == FIO_OUTPUT_NORMAL)
Jens Axboe3d433822012-03-21 22:25:22 +01002066 log_info("%s\n", fio_version_string);
Jens Axboef6dea4d2011-10-13 13:37:07 +02002067
Jens Axboeebac4652005-12-08 15:25:21 +01002068 return 0;
2069}
Jens Axboe588b7f02012-03-19 20:37:41 +01002070
2071void options_default_fill(struct thread_options *o)
2072{
2073 memcpy(o, &def_thread.o, sizeof(*o));
2074}