blob: 35fbdf15365b3661b4dea465b2ae978be096cb59 [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 Axboe243bfe12014-04-02 15:46:58 -060027#include "filelock.h"
Jens Axboeebac4652005-12-08 15:25:21 +010028
Cigy Cyriacbf2e8212010-08-10 19:51:11 -040029#include "lib/getopt.h"
Jens Axboee25b6d52013-04-05 14:44:51 +020030#include "lib/strcasestr.h"
Cigy Cyriacbf2e8212010-08-10 19:51:11 -040031
Jens Axboe10aa1362014-04-01 21:10:36 -060032#include "crc/test.h"
33
Jens Axboe3d433822012-03-21 22:25:22 +010034const char fio_version_string[] = FIO_VERSION;
Jens Axboe214e1ec2007-03-15 10:48:13 +010035
Jens Axboeee738492007-01-10 11:23:16 +010036#define FIO_RANDSEED (0xb1899bedUL)
Jens Axboeebac4652005-12-08 15:25:21 +010037
Jens Axboe214e1ec2007-03-15 10:48:13 +010038static char **ini_file;
Jens Axboefca70352011-07-06 20:12:54 +020039static int max_jobs = FIO_MAX_JOBS;
Jens Axboecca73aa2007-04-04 11:09:19 +020040static int dump_cmdline;
Jens Axboe25bd16c2014-04-06 10:09:30 -060041static long long def_timeout;
Jens Axboe111e0322013-03-07 11:31:20 +010042static int parse_only;
Jens Axboee1f36502006-10-27 10:54:08 +020043
Jens Axboebe4ecfd2008-12-08 14:10:52 +010044static struct thread_data def_thread;
Jens Axboe214e1ec2007-03-15 10:48:13 +010045struct thread_data *threads = NULL;
Jens Axboe10aa1362014-04-01 21:10:36 -060046static char **job_sections;
47static int nr_job_sections;
Jens Axboee1f36502006-10-27 10:54:08 +020048
Jens Axboe214e1ec2007-03-15 10:48:13 +010049int exitall_on_terminate = 0;
Jens Axboef3afa572012-09-17 13:34:16 +020050int output_format = FIO_OUTPUT_NORMAL;
Christian Ehrhardt2b8c71b2014-02-20 14:20:04 +010051int append_terse_output = 0;
Jens Axboe5be4c942013-02-11 16:33:25 +010052int eta_print = FIO_ETA_AUTO;
Jens Axboee382e662013-02-22 20:48:56 +010053int eta_new_line = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +010054FILE *f_out = NULL;
55FILE *f_err = NULL;
Jens Axboe07b32322010-03-05 09:48:44 +010056char *exec_profile = NULL;
Jens Axboea9523c62011-01-17 16:49:54 -070057int warnings_fatal = 0;
Jens Axboe4d658652011-10-17 15:05:47 +020058int terse_version = 3;
Jens Axboe50d16972011-09-29 17:45:28 -060059int is_backend = 0;
Jens Axboea37f69b2011-10-01 12:24:21 -060060int nr_clients = 0;
Jens Axboee46d8092011-10-03 09:11:02 +020061int log_syslog = 0;
Jens Axboeee738492007-01-10 11:23:16 +010062
Jens Axboe214e1ec2007-03-15 10:48:13 +010063int write_bw_log = 0;
Jens Axboe4241ea82007-09-12 08:18:36 +020064int read_only = 0;
Jens Axboe06464902013-04-24 20:38:54 -060065int status_interval = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020066
Jens Axboe5ec10ea2008-03-06 15:42:00 +010067static int write_lat_log;
Jens Axboe214e1ec2007-03-15 10:48:13 +010068
69static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020070
Jens Axboeee56ad52008-02-01 10:30:20 +010071unsigned long fio_debug = 0;
Jens Axboe5e1d3062008-05-23 11:55:53 +020072unsigned int fio_debug_jobno = -1;
73unsigned int *fio_debug_jobp = NULL;
Jens Axboeee56ad52008-02-01 10:30:20 +010074
Jens Axboe4c6107f2011-01-18 05:22:22 -070075static char cmd_optstr[256];
Jens Axboe085399d2011-10-06 09:01:22 +020076static int did_arg;
Jens Axboe4c6107f2011-01-18 05:22:22 -070077
Jens Axboe7a4b8242011-10-05 17:35:15 +020078#define FIO_CLIENT_FLAG (1 << 16)
79
Jens Axboeb4692822006-10-27 13:43:22 +020080/*
81 * Command line options. These will contain the above, plus a few
82 * extra that only pertain to fio itself and not jobs.
83 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +010084static struct option l_opts[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020085 {
Jens Axboe08d2a192011-05-11 13:28:30 +020086 .name = (char *) "output",
Jens Axboeb4692822006-10-27 13:43:22 +020087 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +020088 .val = 'o' | FIO_CLIENT_FLAG,
Jens Axboeb4692822006-10-27 13:43:22 +020089 },
90 {
Jens Axboe08d2a192011-05-11 13:28:30 +020091 .name = (char *) "timeout",
Jens Axboeb4692822006-10-27 13:43:22 +020092 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +020093 .val = 't' | FIO_CLIENT_FLAG,
Jens Axboeb4692822006-10-27 13:43:22 +020094 },
95 {
Jens Axboe08d2a192011-05-11 13:28:30 +020096 .name = (char *) "latency-log",
Jens Axboeb4692822006-10-27 13:43:22 +020097 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +020098 .val = 'l' | FIO_CLIENT_FLAG,
Jens Axboeb4692822006-10-27 13:43:22 +020099 },
100 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200101 .name = (char *) "bandwidth-log",
Jens Axboeb4692822006-10-27 13:43:22 +0200102 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200103 .val = 'b' | FIO_CLIENT_FLAG,
Jens Axboeb4692822006-10-27 13:43:22 +0200104 },
105 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200106 .name = (char *) "minimal",
Stefan Hajnoczic4ec0a12014-02-04 14:27:10 +0100107 .has_arg = no_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200108 .val = 'm' | FIO_CLIENT_FLAG,
Jens Axboeb4692822006-10-27 13:43:22 +0200109 },
110 {
Jens Axboef3afa572012-09-17 13:34:16 +0200111 .name = (char *) "output-format",
Shaohua Licc372b12012-09-17 09:12:18 +0200112 .has_arg = optional_argument,
Jens Axboef3afa572012-09-17 13:34:16 +0200113 .val = 'F' | FIO_CLIENT_FLAG,
Shaohua Licc372b12012-09-17 09:12:18 +0200114 },
115 {
Christian Ehrhardt2b8c71b2014-02-20 14:20:04 +0100116 .name = (char *) "append-terse",
117 .has_arg = optional_argument,
118 .val = 'f',
119 },
120 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200121 .name = (char *) "version",
Jens Axboeb4692822006-10-27 13:43:22 +0200122 .has_arg = no_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200123 .val = 'v' | FIO_CLIENT_FLAG,
Jens Axboeb4692822006-10-27 13:43:22 +0200124 },
125 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200126 .name = (char *) "help",
Jens Axboefd28ca42007-01-09 21:20:13 +0100127 .has_arg = no_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200128 .val = 'h' | FIO_CLIENT_FLAG,
Jens Axboefd28ca42007-01-09 21:20:13 +0100129 },
130 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200131 .name = (char *) "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +0100132 .has_arg = optional_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200133 .val = 'c' | FIO_CLIENT_FLAG,
Jens Axboefd28ca42007-01-09 21:20:13 +0100134 },
135 {
Jens Axboe06464902013-04-24 20:38:54 -0600136 .name = (char *) "enghelp",
Steven Langde890a12011-11-09 14:03:34 +0100137 .has_arg = optional_argument,
Jens Axboe06464902013-04-24 20:38:54 -0600138 .val = 'i' | FIO_CLIENT_FLAG,
Steven Langde890a12011-11-09 14:03:34 +0100139 },
140 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200141 .name = (char *) "showcmd",
Jens Axboecca73aa2007-04-04 11:09:19 +0200142 .has_arg = no_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200143 .val = 's' | FIO_CLIENT_FLAG,
Jens Axboe724e4432007-09-11 20:02:05 +0200144 },
145 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200146 .name = (char *) "readonly",
Jens Axboe724e4432007-09-11 20:02:05 +0200147 .has_arg = no_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200148 .val = 'r' | FIO_CLIENT_FLAG,
Jens Axboecca73aa2007-04-04 11:09:19 +0200149 },
150 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200151 .name = (char *) "eta",
Aaron Carrolle592a062007-09-14 09:49:41 +0200152 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200153 .val = 'e' | FIO_CLIENT_FLAG,
Aaron Carrolle592a062007-09-14 09:49:41 +0200154 },
155 {
Jens Axboee382e662013-02-22 20:48:56 +0100156 .name = (char *) "eta-newline",
157 .has_arg = required_argument,
158 .val = 'E' | FIO_CLIENT_FLAG,
159 },
160 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200161 .name = (char *) "debug",
Jens Axboeee56ad52008-02-01 10:30:20 +0100162 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200163 .val = 'd' | FIO_CLIENT_FLAG,
Jens Axboeee56ad52008-02-01 10:30:20 +0100164 },
165 {
Jens Axboe111e0322013-03-07 11:31:20 +0100166 .name = (char *) "parse-only",
167 .has_arg = no_argument,
168 .val = 'P' | FIO_CLIENT_FLAG,
169 },
170 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200171 .name = (char *) "section",
Jens Axboe01f06b62008-02-18 20:53:47 +0100172 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200173 .val = 'x' | FIO_CLIENT_FLAG,
Jens Axboe01f06b62008-02-18 20:53:47 +0100174 },
175 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200176 .name = (char *) "alloc-size",
Jens Axboe2b386d22008-03-26 10:32:57 +0100177 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200178 .val = 'a' | FIO_CLIENT_FLAG,
Jens Axboe2b386d22008-03-26 10:32:57 +0100179 },
180 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200181 .name = (char *) "profile",
Jens Axboe9ac8a792009-11-13 21:23:07 +0100182 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200183 .val = 'p' | FIO_CLIENT_FLAG,
Jens Axboe9ac8a792009-11-13 21:23:07 +0100184 },
185 {
Jens Axboe08d2a192011-05-11 13:28:30 +0200186 .name = (char *) "warnings-fatal",
Jens Axboea9523c62011-01-17 16:49:54 -0700187 .has_arg = no_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200188 .val = 'w' | FIO_CLIENT_FLAG,
Jens Axboea9523c62011-01-17 16:49:54 -0700189 },
190 {
Jens Axboefca70352011-07-06 20:12:54 +0200191 .name = (char *) "max-jobs",
192 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200193 .val = 'j' | FIO_CLIENT_FLAG,
Jens Axboefca70352011-07-06 20:12:54 +0200194 },
195 {
Jens Axboef57a9c52011-09-09 21:01:37 +0200196 .name = (char *) "terse-version",
197 .has_arg = required_argument,
Jens Axboe7a4b8242011-10-05 17:35:15 +0200198 .val = 'V' | FIO_CLIENT_FLAG,
Jens Axboef57a9c52011-09-09 21:01:37 +0200199 },
200 {
Jens Axboe50d16972011-09-29 17:45:28 -0600201 .name = (char *) "server",
Jens Axboe87aa8f12011-10-06 21:24:13 +0200202 .has_arg = optional_argument,
Jens Axboe50d16972011-09-29 17:45:28 -0600203 .val = 'S',
204 },
Jens Axboee46d8092011-10-03 09:11:02 +0200205 { .name = (char *) "daemonize",
Jens Axboe402668f2011-10-10 15:28:58 +0200206 .has_arg = required_argument,
Jens Axboee46d8092011-10-03 09:11:02 +0200207 .val = 'D',
208 },
Jens Axboe50d16972011-09-29 17:45:28 -0600209 {
Jens Axboe132159a2011-09-30 15:01:32 -0600210 .name = (char *) "client",
211 .has_arg = required_argument,
212 .val = 'C',
213 },
214 {
Jens Axboe7d11f872012-12-17 12:03:29 +0100215 .name = (char *) "cpuclock-test",
216 .has_arg = no_argument,
217 .val = 'T',
218 },
219 {
Jens Axboefec0f212014-02-07 14:39:33 -0700220 .name = (char *) "crctest",
221 .has_arg = optional_argument,
222 .val = 'G',
223 },
224 {
Huadong Liuf2a2ce02013-01-30 13:22:24 +0100225 .name = (char *) "idle-prof",
226 .has_arg = required_argument,
227 .val = 'I',
228 },
229 {
Jens Axboe06464902013-04-24 20:38:54 -0600230 .name = (char *) "status-interval",
231 .has_arg = required_argument,
232 .val = 'L',
233 },
234 {
Jens Axboeb4692822006-10-27 13:43:22 +0200235 .name = NULL,
236 },
237};
238
Jens Axboe2bb3f0a2012-03-28 12:22:40 +0200239void free_threads_shm(void)
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200240{
241 struct shmid_ds sbuf;
242
243 if (threads) {
244 void *tp = threads;
245
246 threads = NULL;
Jens Axboe2bb3f0a2012-03-28 12:22:40 +0200247 shmdt(tp);
248 shmctl(shm_id, IPC_RMID, &sbuf);
249 shm_id = -1;
250 }
251}
252
Jens Axboe10aa1362014-04-01 21:10:36 -0600253static void free_shm(void)
Jens Axboe2bb3f0a2012-03-28 12:22:40 +0200254{
255 if (threads) {
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200256 file_hash_exit();
Dan Ehrenberg9e684a42012-02-20 11:05:14 +0100257 flow_exit();
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200258 fio_debug_jobp = NULL;
Jens Axboe2bb3f0a2012-03-28 12:22:40 +0200259 free_threads_shm();
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200260 }
261
Jens Axboeeb0c74a2014-02-11 10:33:06 -0700262 options_free(fio_options, &def_thread);
Jens Axboe243bfe12014-04-02 15:46:58 -0600263 fio_filelock_exit();
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200264 scleanup();
265}
266
267/*
268 * The thread area is shared between the main process and the job
269 * threads/processes. So setup a shared memory segment that will hold
270 * all the job info. We use the end of the region for keeping track of
271 * open files across jobs, for file sharing.
272 */
273static int setup_thread_area(void)
274{
275 void *hash;
276
277 if (threads)
278 return 0;
279
280 /*
281 * 1024 is too much on some machines, scale max_jobs if
282 * we get a failure that looks like too large a shm segment
283 */
284 do {
285 size_t size = max_jobs * sizeof(struct thread_data);
286
287 size += file_hash_size;
288 size += sizeof(unsigned int);
289
290 shm_id = shmget(0, size, IPC_CREAT | 0600);
291 if (shm_id != -1)
292 break;
Jens Axboef0c77f02012-09-21 15:05:45 +0200293 if (errno != EINVAL && errno != ENOMEM && errno != ENOSPC) {
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200294 perror("shmget");
295 break;
296 }
297
298 max_jobs >>= 1;
299 } while (max_jobs);
300
301 if (shm_id == -1)
302 return 1;
303
304 threads = shmat(shm_id, NULL, 0);
305 if (threads == (void *) -1) {
306 perror("shmat");
307 return 1;
308 }
309
310 memset(threads, 0, max_jobs * sizeof(struct thread_data));
311 hash = (void *) threads + max_jobs * sizeof(struct thread_data);
312 fio_debug_jobp = (void *) hash + file_hash_size;
313 *fio_debug_jobp = -1;
314 file_hash_init(hash);
Dan Ehrenberg9e684a42012-02-20 11:05:14 +0100315
316 flow_init();
317
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200318 return 0;
319}
320
Jens Axboe25bd16c2014-04-06 10:09:30 -0600321static void set_cmd_options(struct thread_data *td)
322{
323 struct thread_options *o = &td->o;
324
325 if (!o->timeout)
326 o->timeout = def_timeout;
327}
328
Jens Axboe906c8d72006-06-13 09:37:56 +0200329/*
330 * Return a free job structure.
331 */
Steven Langde890a12011-11-09 14:03:34 +0100332static struct thread_data *get_new_job(int global, struct thread_data *parent,
333 int preserve_eo)
Jens Axboeebac4652005-12-08 15:25:21 +0100334{
335 struct thread_data *td;
336
Jens Axboe25bd16c2014-04-06 10:09:30 -0600337 if (global) {
338 set_cmd_options(&def_thread);
Jens Axboeebac4652005-12-08 15:25:21 +0100339 return &def_thread;
Jens Axboe25bd16c2014-04-06 10:09:30 -0600340 }
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200341 if (setup_thread_area()) {
342 log_err("error: failed to setup shm segment\n");
343 return NULL;
344 }
Bruce Crane61f1ec2011-01-14 18:30:26 +0100345 if (thread_number >= max_jobs) {
346 log_err("error: maximum number of jobs (%d) reached.\n",
347 max_jobs);
Jens Axboeebac4652005-12-08 15:25:21 +0100348 return NULL;
Bruce Crane61f1ec2011-01-14 18:30:26 +0100349 }
Jens Axboeebac4652005-12-08 15:25:21 +0100350
351 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200352 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100353
Steven Langde890a12011-11-09 14:03:34 +0100354 td->io_ops = NULL;
355 if (!preserve_eo)
356 td->eo = NULL;
357
Jens Axboee0b0d892009-12-08 10:10:14 +0100358 td->o.uid = td->o.gid = -1U;
359
Jens Axboecade3ef2007-03-23 15:29:45 +0100360 dup_files(td, parent);
Steven Langde890a12011-11-09 14:03:34 +0100361 fio_options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100362
Jens Axboe15dc1932010-03-05 10:59:06 +0100363 profile_add_hooks(td);
364
Jens Axboeebac4652005-12-08 15:25:21 +0100365 td->thread_number = thread_number;
Jens Axboe108fea72012-11-14 13:09:45 -0700366
367 if (!parent || !parent->o.group_reporting)
368 stat_number++;
369
Jens Axboe25bd16c2014-04-06 10:09:30 -0600370 set_cmd_options(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100371 return td;
372}
373
374static void put_job(struct thread_data *td)
375{
Jens Axboe549577a2006-10-30 12:23:41 +0100376 if (td == &def_thread)
377 return;
Bruce Cran84dd1882011-05-05 08:14:09 -0600378
Jens Axboe58c55ba2010-03-09 12:20:08 +0100379 profile_td_exit(td);
Dan Ehrenberg9e684a42012-02-20 11:05:14 +0100380 flow_exit_job(td);
Jens Axboe549577a2006-10-30 12:23:41 +0100381
Jens Axboe16edf252007-02-10 14:59:22 +0100382 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100383 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100384
Jens Axboe7e356b22011-10-14 10:55:16 +0200385 fio_options_free(td);
Steven Langde890a12011-11-09 14:03:34 +0100386 if (td->io_ops)
387 free_ioengine(td);
Jens Axboe7e356b22011-10-14 10:55:16 +0200388
Jens Axboeebac4652005-12-08 15:25:21 +0100389 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
390 thread_number--;
391}
392
Jens Axboe581e7142009-06-09 12:47:16 +0200393static int __setup_rate(struct thread_data *td, enum fio_ddir ddir)
Jens Axboe127f6862007-03-15 12:09:57 +0100394{
Jens Axboe581e7142009-06-09 12:47:16 +0200395 unsigned int bs = td->o.min_bs[ddir];
Jens Axboe127f6862007-03-15 12:09:57 +0100396
Jens Axboeff58fce2010-08-25 12:02:08 +0200397 assert(ddir_rw(ddir));
398
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100399 if (td->o.rate[ddir])
Steven Lang1b8dbf22011-11-09 13:48:01 +0100400 td->rate_bps[ddir] = td->o.rate[ddir];
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100401 else
Steven Lang1b8dbf22011-11-09 13:48:01 +0100402 td->rate_bps[ddir] = td->o.rate_iops[ddir] * bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100403
Steven Lang1b8dbf22011-11-09 13:48:01 +0100404 if (!td->rate_bps[ddir]) {
Jens Axboe127f6862007-03-15 12:09:57 +0100405 log_err("rate lower than supported\n");
406 return -1;
407 }
408
Jens Axboe581e7142009-06-09 12:47:16 +0200409 td->rate_pending_usleep[ddir] = 0;
Jens Axboe127f6862007-03-15 12:09:57 +0100410 return 0;
411}
412
Jens Axboe581e7142009-06-09 12:47:16 +0200413static int setup_rate(struct thread_data *td)
414{
415 int ret = 0;
416
417 if (td->o.rate[DDIR_READ] || td->o.rate_iops[DDIR_READ])
418 ret = __setup_rate(td, DDIR_READ);
419 if (td->o.rate[DDIR_WRITE] || td->o.rate_iops[DDIR_WRITE])
420 ret |= __setup_rate(td, DDIR_WRITE);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200421 if (td->o.rate[DDIR_TRIM] || td->o.rate_iops[DDIR_TRIM])
422 ret |= __setup_rate(td, DDIR_TRIM);
Jens Axboe581e7142009-06-09 12:47:16 +0200423
424 return ret;
425}
426
Jens Axboe83472392009-02-19 21:32:12 +0100427static int fixed_block_size(struct thread_options *o)
428{
429 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
430 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200431 o->min_bs[DDIR_TRIM] == o->max_bs[DDIR_TRIM] &&
432 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE] &&
433 o->min_bs[DDIR_READ] == o->min_bs[DDIR_TRIM];
Jens Axboe83472392009-02-19 21:32:12 +0100434}
435
Christian Ehrhardt23ed19b2014-02-20 09:07:02 -0800436
437static unsigned long long get_rand_start_delay(struct thread_data *td)
438{
439 unsigned long long delayrange;
440 unsigned long r;
441
442 delayrange = td->o.start_delay_high - td->o.start_delay;
443
444 if (td->o.use_os_rand) {
445 r = os_random_long(&td->delay_state);
446 delayrange = (unsigned long long) ((double) delayrange * (r / (OS_RAND_MAX + 1.0)));
447 } else {
448 r = __rand(&td->__delay_state);
449 delayrange = (unsigned long long) ((double) delayrange * (r / (FRAND_MAX + 1.0)));
450 }
451
452 delayrange += td->o.start_delay;
453 return delayrange;
454}
455
Jens Axboedad915e2006-10-27 11:10:18 +0200456/*
457 * Lazy way of fixing up options that depend on each other. We could also
458 * define option callback handlers, but this is easier.
459 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100460static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200461{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100462 struct thread_options *o = &td->o;
Jens Axboeeefd98b2013-07-25 12:30:06 -0600463 int ret = 0;
Jens Axboedad915e2006-10-27 11:10:18 +0200464
Jens Axboef356d012009-01-05 09:56:29 +0100465#ifndef FIO_HAVE_PSHARED_MUTEX
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100466 if (!o->use_thread) {
Jens Axboef356d012009-01-05 09:56:29 +0100467 log_info("fio: this platform does not support process shared"
468 " mutexes, forcing use of threads. Use the 'thread'"
469 " option to get rid of this warning.\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100470 o->use_thread = 1;
Jens Axboea9523c62011-01-17 16:49:54 -0700471 ret = warnings_fatal;
Jens Axboef356d012009-01-05 09:56:29 +0100472 }
473#endif
474
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100475 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200476 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100477 free(o->write_iolog_file);
478 o->write_iolog_file = NULL;
Jens Axboea9523c62011-01-17 16:49:54 -0700479 ret = warnings_fatal;
Jens Axboe076efc72006-10-27 11:24:25 +0200480 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100481
Jens Axboe16b462a2006-10-30 12:35:18 +0100482 /*
Steven Noonaned335852012-01-31 13:58:00 +0100483 * only really works with 1 file
Jens Axboe16b462a2006-10-30 12:35:18 +0100484 */
Jens Axboe627aa1a2013-02-07 13:06:18 +0100485 if (o->zone_size && o->open_files > 1)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100486 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100487
488 /*
Steven Noonaned335852012-01-31 13:58:00 +0100489 * If zone_range isn't specified, backward compatibility dictates it
490 * should be made equal to zone_size.
491 */
492 if (o->zone_size && !o->zone_range)
493 o->zone_range = o->zone_size;
494
495 /*
Jens Axboe16b462a2006-10-30 12:35:18 +0100496 * Reads can do overwrites, we always need to pre-create the file
497 */
498 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100499 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100500
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100501 if (!o->min_bs[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100502 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100503 if (!o->max_bs[DDIR_READ])
504 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
505 if (!o->min_bs[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100506 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100507 if (!o->max_bs[DDIR_WRITE])
508 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200509 if (!o->min_bs[DDIR_TRIM])
510 o->min_bs[DDIR_TRIM] = o->bs[DDIR_TRIM];
511 if (!o->max_bs[DDIR_TRIM])
512 o->max_bs[DDIR_TRIM] = o->bs[DDIR_TRIM];
513
Jens Axboea00735e2006-11-03 08:58:08 +0100514
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100515 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200516 o->rw_min_bs = min(o->min_bs[DDIR_TRIM], o->rw_min_bs);
Jens Axboea00735e2006-11-03 08:58:08 +0100517
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100518 /*
519 * For random IO, allow blockalign offset other than min_bs.
520 */
521 if (!o->ba[DDIR_READ] || !td_random(td))
522 o->ba[DDIR_READ] = o->min_bs[DDIR_READ];
523 if (!o->ba[DDIR_WRITE] || !td_random(td))
524 o->ba[DDIR_WRITE] = o->min_bs[DDIR_WRITE];
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200525 if (!o->ba[DDIR_TRIM] || !td_random(td))
526 o->ba[DDIR_TRIM] = o->min_bs[DDIR_TRIM];
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100527
528 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200529 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE] ||
530 o->ba[DDIR_TRIM] != o->min_bs[DDIR_TRIM]) &&
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100531 !o->norandommap) {
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100532 log_err("fio: Any use of blockalign= turns off randommap\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100533 o->norandommap = 1;
Jens Axboea9523c62011-01-17 16:49:54 -0700534 ret = warnings_fatal;
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100535 }
536
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100537 if (!o->file_size_high)
538 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100539
Christian Ehrhardt23ed19b2014-02-20 09:07:02 -0800540 if (o->start_delay_high)
541 o->start_delay = get_rand_start_delay(td);
542
Jens Axboe83472392009-02-19 21:32:12 +0100543 if (o->norandommap && o->verify != VERIFY_NONE
544 && !fixed_block_size(o)) {
545 log_err("fio: norandommap given for variable block sizes, "
546 "verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100547 o->verify = VERIFY_NONE;
Jens Axboea9523c62011-01-17 16:49:54 -0700548 ret = warnings_fatal;
Jens Axboebb8895e2006-10-30 15:14:48 +0100549 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100550 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100551 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100552
553 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100554 * thinktime_spin must be less than thinktime
555 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100556 if (o->thinktime_spin > o->thinktime)
557 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100558
559 /*
560 * The low water mark cannot be bigger than the iodepth
561 */
Jens Axboe67bf9822013-01-10 11:23:19 +0100562 if (o->iodepth_low > o->iodepth || !o->iodepth_low)
563 o->iodepth_low = o->iodepth;
Jens Axboecb5ab512007-02-26 12:57:09 +0100564
565 /*
566 * If batch number isn't set, default to the same as iodepth
567 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100568 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
569 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100570
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100571 if (o->nr_files > td->files_index)
572 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100573
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100574 if (o->open_files > o->nr_files || !o->open_files)
575 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100576
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200577 if (((o->rate[DDIR_READ] + o->rate[DDIR_WRITE] + o->rate[DDIR_TRIM]) &&
578 (o->rate_iops[DDIR_READ] + o->rate_iops[DDIR_WRITE] + o->rate_iops[DDIR_TRIM])) ||
579 ((o->ratemin[DDIR_READ] + o->ratemin[DDIR_WRITE] + o->ratemin[DDIR_TRIM]) &&
580 (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 +0100581 log_err("fio: rate and rate_iops are mutually exclusive\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700582 ret = 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100583 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200584 if ((o->rate[DDIR_READ] < o->ratemin[DDIR_READ]) ||
585 (o->rate[DDIR_WRITE] < o->ratemin[DDIR_WRITE]) ||
586 (o->rate[DDIR_TRIM] < o->ratemin[DDIR_TRIM]) ||
587 (o->rate_iops[DDIR_READ] < o->rate_iops_min[DDIR_READ]) ||
588 (o->rate_iops[DDIR_WRITE] < o->rate_iops_min[DDIR_WRITE]) ||
589 (o->rate_iops[DDIR_TRIM] < o->rate_iops_min[DDIR_TRIM])) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100590 log_err("fio: minimum rate exceeds rate\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700591 ret = 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100592 }
593
Jens Axboecf4464c2007-04-17 20:14:42 +0200594 if (!o->timeout && o->time_based) {
595 log_err("fio: time_based requires a runtime/timeout setting\n");
596 o->time_based = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700597 ret = warnings_fatal;
Jens Axboecf4464c2007-04-17 20:14:42 +0200598 }
599
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100600 if (o->fill_device && !o->size)
Jens Axboe5921e802008-05-30 15:02:38 +0200601 o->size = -1ULL;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100602
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100603 if (o->verify != VERIFY_NONE) {
Jens Axboe996936f2011-01-18 05:41:39 -0700604 if (td_write(td) && o->do_verify && o->numjobs > 1) {
Jens Axboea9523c62011-01-17 16:49:54 -0700605 log_info("Multiple writers may overwrite blocks that "
606 "belong to other jobs. This can cause "
607 "verification failures.\n");
608 ret = warnings_fatal;
609 }
610
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100611 o->refill_buffers = 1;
Jens Axboe2f1b8e82010-06-18 09:22:56 +0200612 if (o->max_bs[DDIR_WRITE] != o->min_bs[DDIR_WRITE] &&
613 !o->verify_interval)
614 o->verify_interval = o->min_bs[DDIR_WRITE];
Jens Axboed9905882010-03-18 20:43:00 +0100615 }
Jens Axboe41ccd842008-05-22 09:17:33 +0200616
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100617 if (o->pre_read) {
618 o->invalidate_cache = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700619 if (td->io_ops->flags & FIO_PIPEIO) {
Jens Axboe9c0d2242009-07-01 12:26:28 +0200620 log_info("fio: cannot pre-read files with an IO engine"
621 " that isn't seekable. Pre-read disabled.\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700622 ret = warnings_fatal;
623 }
Jens Axboe9c0d2242009-07-01 12:26:28 +0200624 }
Jens Axboe34f1c042009-06-02 14:19:25 +0200625
Steven Noonanad705bc2013-04-08 15:05:25 -0700626 if (!o->unit_base) {
627 if (td->io_ops->flags & FIO_BIT_BASED)
628 o->unit_base = 1;
629 else
630 o->unit_base = 8;
631 }
632
Jens Axboe67bf9822013-01-10 11:23:19 +0100633#ifndef CONFIG_FDATASYNC
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100634 if (o->fdatasync_blocks) {
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700635 log_info("fio: this platform does not support fdatasync()"
636 " falling back to using fsync(). Use the 'fsync'"
637 " option instead of 'fdatasync' to get rid of"
638 " this warning\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100639 o->fsync_blocks = o->fdatasync_blocks;
640 o->fdatasync_blocks = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700641 ret = warnings_fatal;
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700642 }
643#endif
644
Bruce Cran93bcfd22012-02-20 20:18:19 +0100645#ifdef WIN32
646 /*
647 * Windows doesn't support O_DIRECT or O_SYNC with the _open interface,
648 * so fail if we're passed those flags
649 */
650 if ((td->io_ops->flags & FIO_SYNCIO) && (td->o.odirect || td->o.sync_io)) {
651 log_err("fio: Windows does not support direct or non-buffered io with"
652 " the synchronous ioengines. Use the 'windowsaio' ioengine"
653 " with 'direct=1' and 'iodepth=1' instead.\n");
654 ret = 1;
655 }
656#endif
657
Jens Axboe811ac502012-03-02 22:23:36 +0100658 /*
659 * For fully compressible data, just zero them at init time.
660 * It's faster than repeatedly filling it.
661 */
662 if (td->o.compress_percentage == 100) {
663 td->o.zero_buffers = 1;
664 td->o.compress_percentage = 0;
665 }
666
Jens Axboe5881fda2012-11-15 15:21:23 -0700667 /*
668 * Using a non-uniform random distribution excludes usage of
669 * a random map
670 */
671 if (td->o.random_distribution != FIO_RAND_DIST_RANDOM)
672 td->o.norandommap = 1;
673
Jens Axboe8d916c92013-04-25 10:11:41 -0600674 /*
675 * If size is set but less than the min block size, complain
676 */
677 if (o->size && o->size < td_min_bs(td)) {
678 log_err("fio: size too small, must be larger than the IO size: %llu\n", (unsigned long long) o->size);
679 ret = 1;
680 }
681
Chris Masond01612f2013-11-15 15:52:58 -0700682 /*
683 * O_ATOMIC implies O_DIRECT
684 */
685 if (td->o.oatomic)
686 td->o.odirect = 1;
687
Jens Axboe04778ba2014-01-10 20:57:01 -0700688 /*
689 * If randseed is set, that overrides randrepeat
690 */
691 if (td->o.rand_seed)
692 td->o.rand_repeatable = 0;
693
Jens Axboeb1bebc32014-03-18 13:30:32 -0600694 if ((td->io_ops->flags & FIO_NOEXTEND) && td->o.file_append) {
695 log_err("fio: can't append/extent with IO engine %s\n", td->io_ops->name);
696 ret = 1;
697 }
698
Jens Axboea9523c62011-01-17 16:49:54 -0700699 return ret;
Jens Axboee1f36502006-10-27 10:54:08 +0200700}
701
Jens Axboe906c8d72006-06-13 09:37:56 +0200702/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100703 * This function leaks the buffer
704 */
Jens Axboe99d633a2012-03-15 15:55:04 +0100705char *fio_uint_to_kmg(unsigned int val)
Jens Axboef8977ee2006-11-06 14:03:03 +0100706{
707 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100708 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100709 char *p = post;
710
Jens Axboe245142f2006-11-08 12:49:21 +0100711 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100712 if (val & 1023)
713 break;
714
715 val >>= 10;
716 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100717 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100718
Ken Raeburn98ffb8f2013-01-30 22:31:09 +0100719 snprintf(buf, 32, "%u%c", val, *p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100720 return buf;
721}
722
Jens Axboe09629a92007-03-09 09:00:06 +0100723/* External engines are specified by "external:name.o") */
724static const char *get_engine_name(const char *str)
725{
726 char *p = strstr(str, ":");
727
728 if (!p)
729 return str;
730
731 p++;
732 strip_blank_front(&p);
733 strip_blank_end(p);
734 return p;
735}
736
Jens Axboee132cba2007-03-14 14:23:54 +0100737static int exists_and_not_file(const char *filename)
738{
739 struct stat sb;
740
741 if (lstat(filename, &sb) == -1)
742 return 0;
743
Bruce Cranecc314b2011-01-04 10:59:30 +0100744 /* \\.\ is the device namespace in Windows, where every file
745 * is a device node */
746 if (S_ISREG(sb.st_mode) && strncmp(filename, "\\\\.\\", 4) != 0)
Jens Axboee132cba2007-03-14 14:23:54 +0100747 return 0;
748
749 return 1;
750}
751
Jens Axboe4c07ad82011-03-28 09:51:09 +0200752static void td_fill_rand_seeds_os(struct thread_data *td)
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200753{
Jens Axboed24945f2012-12-04 13:10:29 +0100754 os_random_seed(td->rand_seeds[FIO_RAND_BS_OFF], &td->bsrange_state);
755 os_random_seed(td->rand_seeds[FIO_RAND_VER_OFF], &td->verify_state);
756 os_random_seed(td->rand_seeds[FIO_RAND_MIX_OFF], &td->rwmix_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200757
758 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboed24945f2012-12-04 13:10:29 +0100759 os_random_seed(td->rand_seeds[FIO_RAND_FILE_OFF], &td->next_file_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200760
Jens Axboed24945f2012-12-04 13:10:29 +0100761 os_random_seed(td->rand_seeds[FIO_RAND_FILE_SIZE_OFF], &td->file_size_state);
762 os_random_seed(td->rand_seeds[FIO_RAND_TRIM_OFF], &td->trim_state);
Christian Ehrhardt23ed19b2014-02-20 09:07:02 -0800763 os_random_seed(td->rand_seeds[FIO_RAND_START_DELAY], &td->delay_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200764
765 if (!td_random(td))
766 return;
767
768 if (td->o.rand_repeatable)
Jens Axboed24945f2012-12-04 13:10:29 +0100769 td->rand_seeds[FIO_RAND_BLOCK_OFF] = FIO_RANDSEED * td->thread_number;
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200770
Jens Axboed24945f2012-12-04 13:10:29 +0100771 os_random_seed(td->rand_seeds[FIO_RAND_BLOCK_OFF], &td->random_state);
Jens Axboed9472272013-07-25 10:20:45 -0600772
773 os_random_seed(td->rand_seeds[FIO_RAND_SEQ_RAND_READ_OFF], &td->seq_rand_state[DDIR_READ]);
774 os_random_seed(td->rand_seeds[FIO_RAND_SEQ_RAND_WRITE_OFF], &td->seq_rand_state[DDIR_WRITE]);
775 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 +0200776}
777
778static void td_fill_rand_seeds_internal(struct thread_data *td)
779{
Jens Axboed24945f2012-12-04 13:10:29 +0100780 init_rand_seed(&td->__bsrange_state, td->rand_seeds[FIO_RAND_BS_OFF]);
781 init_rand_seed(&td->__verify_state, td->rand_seeds[FIO_RAND_VER_OFF]);
782 init_rand_seed(&td->__rwmix_state, td->rand_seeds[FIO_RAND_MIX_OFF]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200783
784 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboed24945f2012-12-04 13:10:29 +0100785 init_rand_seed(&td->__next_file_state, td->rand_seeds[FIO_RAND_FILE_OFF]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200786
Jens Axboed24945f2012-12-04 13:10:29 +0100787 init_rand_seed(&td->__file_size_state, td->rand_seeds[FIO_RAND_FILE_SIZE_OFF]);
788 init_rand_seed(&td->__trim_state, td->rand_seeds[FIO_RAND_TRIM_OFF]);
Christian Ehrhardt23ed19b2014-02-20 09:07:02 -0800789 init_rand_seed(&td->__delay_state, td->rand_seeds[FIO_RAND_START_DELAY]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200790
791 if (!td_random(td))
792 return;
793
794 if (td->o.rand_repeatable)
Jens Axboed24945f2012-12-04 13:10:29 +0100795 td->rand_seeds[FIO_RAND_BLOCK_OFF] = FIO_RANDSEED * td->thread_number;
Jens Axboe4c07ad82011-03-28 09:51:09 +0200796
Jens Axboed24945f2012-12-04 13:10:29 +0100797 init_rand_seed(&td->__random_state, td->rand_seeds[FIO_RAND_BLOCK_OFF]);
Jens Axboed9472272013-07-25 10:20:45 -0600798 init_rand_seed(&td->__seq_rand_state[DDIR_READ], td->rand_seeds[FIO_RAND_SEQ_RAND_READ_OFF]);
799 init_rand_seed(&td->__seq_rand_state[DDIR_WRITE], td->rand_seeds[FIO_RAND_SEQ_RAND_WRITE_OFF]);
800 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 +0200801}
802
Jens Axboe4c07ad82011-03-28 09:51:09 +0200803void td_fill_rand_seeds(struct thread_data *td)
804{
Christian Ehrhardt56e2a5f2014-02-20 09:10:17 -0800805 if (td->o.allrand_repeatable) {
806 for (int i = 0; i < FIO_RAND_NR_OFFS; i++)
807 td->rand_seeds[i] = FIO_RANDSEED * td->thread_number
808 + i;
809 }
810
Jens Axboe4c07ad82011-03-28 09:51:09 +0200811 if (td->o.use_os_rand)
812 td_fill_rand_seeds_os(td);
813 else
814 td_fill_rand_seeds_internal(td);
Jens Axboe3545a102011-08-31 15:20:15 -0600815
Jens Axboed24945f2012-12-04 13:10:29 +0100816 init_rand_seed(&td->buf_state, td->rand_seeds[FIO_RAND_BUF_OFF]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200817}
818
Jens Axboe9c60ce62007-03-15 09:14:47 +0100819/*
Steven Langde890a12011-11-09 14:03:34 +0100820 * Initializes the ioengine configured for a job, if it has not been done so
821 * already.
822 */
823int ioengine_load(struct thread_data *td)
824{
825 const char *engine;
826
827 /*
828 * Engine has already been loaded.
829 */
830 if (td->io_ops)
831 return 0;
Jens Axboe6e5c4b82013-05-27 09:50:31 +0200832 if (!td->o.ioengine) {
833 log_err("fio: internal fault, no IO engine specified\n");
834 return 1;
835 }
Steven Langde890a12011-11-09 14:03:34 +0100836
837 engine = get_engine_name(td->o.ioengine);
838 td->io_ops = load_ioengine(td, engine);
839 if (!td->io_ops) {
840 log_err("fio: failed to load engine %s\n", engine);
841 return 1;
842 }
843
844 if (td->io_ops->option_struct_size && td->io_ops->options) {
845 /*
846 * In cases where td->eo is set, clone it for a child thread.
847 * This requires that the parent thread has the same ioengine,
848 * but that requirement must be enforced by the code which
849 * cloned the thread.
850 */
851 void *origeo = td->eo;
852 /*
853 * Otherwise use the default thread options.
854 */
855 if (!origeo && td != &def_thread && def_thread.eo &&
856 def_thread.io_ops->options == td->io_ops->options)
857 origeo = def_thread.eo;
858
859 options_init(td->io_ops->options);
860 td->eo = malloc(td->io_ops->option_struct_size);
861 /*
862 * Use the default thread as an option template if this uses the
863 * same options structure and there are non-default options
864 * used.
865 */
866 if (origeo) {
867 memcpy(td->eo, origeo, td->io_ops->option_struct_size);
868 options_mem_dupe(td->eo, td->io_ops->options);
869 } else {
870 memset(td->eo, 0, td->io_ops->option_struct_size);
871 fill_default_options(td->eo, td->io_ops->options);
872 }
873 *(struct thread_data **)td->eo = td;
874 }
875
876 return 0;
877}
878
Jens Axboed72be542012-11-30 19:37:46 +0100879static void init_flags(struct thread_data *td)
880{
881 struct thread_options *o = &td->o;
882
883 if (o->verify_backlog)
884 td->flags |= TD_F_VER_BACKLOG;
885 if (o->trim_backlog)
886 td->flags |= TD_F_TRIM_BACKLOG;
887 if (o->read_iolog_file)
888 td->flags |= TD_F_READ_IOLOG;
889 if (o->refill_buffers)
890 td->flags |= TD_F_REFILL_BUFFERS;
Jens Axboebedc9dc2014-03-17 12:51:09 -0600891 if (o->scramble_buffers)
Jens Axboed72be542012-11-30 19:37:46 +0100892 td->flags |= TD_F_SCRAMBLE_BUFFERS;
893 if (o->verify != VERIFY_NONE)
894 td->flags |= TD_F_VER_NONE;
895}
896
Jens Axboe9dbc7bf2013-01-23 09:26:53 -0700897static int setup_random_seeds(struct thread_data *td)
898{
899 unsigned long seed;
900 unsigned int i;
901
Jens Axboe04778ba2014-01-10 20:57:01 -0700902 if (!td->o.rand_repeatable && !td->o.rand_seed)
Jens Axboe9dbc7bf2013-01-23 09:26:53 -0700903 return init_random_state(td, td->rand_seeds, sizeof(td->rand_seeds));
904
Jens Axboe04778ba2014-01-10 20:57:01 -0700905 if (!td->o.rand_seed)
906 seed = 0x89;
907 else
908 seed = td->o.rand_seed;
909
910 for (i = 0; i < 4; i++)
Jens Axboe9dbc7bf2013-01-23 09:26:53 -0700911 seed *= 0x9e370001UL;
912
913 for (i = 0; i < FIO_RAND_NR_OFFS; i++) {
914 td->rand_seeds[i] = seed;
915 seed *= 0x9e370001UL;
916 }
917
918 td_fill_rand_seeds(td);
919 return 0;
920}
921
Jens Axboede98bd32013-04-05 11:09:20 +0200922enum {
923 FPRE_NONE = 0,
924 FPRE_JOBNAME,
925 FPRE_JOBNUM,
926 FPRE_FILENUM
927};
928
929static struct fpre_keyword {
930 const char *keyword;
931 size_t strlen;
932 int key;
933} fpre_keywords[] = {
934 { .keyword = "$jobname", .key = FPRE_JOBNAME, },
935 { .keyword = "$jobnum", .key = FPRE_JOBNUM, },
936 { .keyword = "$filenum", .key = FPRE_FILENUM, },
937 { .keyword = NULL, },
938 };
939
940static char *make_filename(char *buf, struct thread_options *o,
941 const char *jobname, int jobnum, int filenum)
942{
943 struct fpre_keyword *f;
944 char copy[PATH_MAX];
945
946 if (!o->filename_format || !strlen(o->filename_format)) {
947 sprintf(buf, "%s.%d.%d", jobname, jobnum, filenum);
948 return NULL;
949 }
950
951 for (f = &fpre_keywords[0]; f->keyword; f++)
952 f->strlen = strlen(f->keyword);
953
954 strcpy(buf, o->filename_format);
955 memset(copy, 0, sizeof(copy));
956 for (f = &fpre_keywords[0]; f->keyword; f++) {
957 do {
958 size_t pre_len, post_start = 0;
959 char *str, *dst = copy;
960
Jens Axboee25b6d52013-04-05 14:44:51 +0200961 str = strcasestr(buf, f->keyword);
Jens Axboede98bd32013-04-05 11:09:20 +0200962 if (!str)
963 break;
964
965 pre_len = str - buf;
966 if (strlen(str) != f->strlen)
967 post_start = pre_len + f->strlen;
968
969 if (pre_len) {
970 strncpy(dst, buf, pre_len);
971 dst += pre_len;
972 }
973
974 switch (f->key) {
975 case FPRE_JOBNAME:
976 dst += sprintf(dst, "%s", jobname);
977 break;
978 case FPRE_JOBNUM:
979 dst += sprintf(dst, "%d", jobnum);
980 break;
981 case FPRE_FILENUM:
982 dst += sprintf(dst, "%d", filenum);
983 break;
984 default:
985 assert(0);
986 break;
987 }
988
989 if (post_start)
990 strcpy(dst, buf + post_start);
991
992 strcpy(buf, copy);
993 } while (1);
994 }
995
996 return buf;
997}
Jens Axboef9633d72013-09-06 09:59:56 -0600998
999int parse_dryrun(void)
1000{
1001 return dump_cmdline || parse_only;
1002}
1003
Steven Langde890a12011-11-09 14:03:34 +01001004/*
Jens Axboe906c8d72006-06-13 09:37:56 +02001005 * Adds a job to the list of things todo. Sanitizes the various options
1006 * to make sure we don't have conflicts, and initializes various
1007 * members of td.
1008 */
Jens Axboeb7cfb2e2012-03-12 07:47:27 +01001009static int add_job(struct thread_data *td, const char *jobname, int job_add_num,
Jens Axboe46bcd492012-03-14 11:31:21 +01001010 int recursed, int client_type)
Jens Axboeebac4652005-12-08 15:25:21 +01001011{
Jens Axboeaf52b342007-03-13 10:07:47 +01001012 unsigned int i;
Jens Axboeaf52b342007-03-13 10:07:47 +01001013 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +01001014 int numjobs, file_alloced;
Jens Axboede98bd32013-04-05 11:09:20 +02001015 struct thread_options *o = &td->o;
Jens Axboeebac4652005-12-08 15:25:21 +01001016
Jens Axboeebac4652005-12-08 15:25:21 +01001017 /*
1018 * the def_thread is just for options, it's not a real job
1019 */
1020 if (td == &def_thread)
1021 return 0;
1022
Jens Axboed72be542012-11-30 19:37:46 +01001023 init_flags(td);
1024
Jens Axboecca73aa2007-04-04 11:09:19 +02001025 /*
1026 * if we are just dumping the output command line, don't add the job
1027 */
Jens Axboef9633d72013-09-06 09:59:56 -06001028 if (parse_dryrun()) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001029 put_job(td);
1030 return 0;
1031 }
1032
Jens Axboe46bcd492012-03-14 11:31:21 +01001033 td->client_type = client_type;
1034
Jens Axboe58c55ba2010-03-09 12:20:08 +01001035 if (profile_td_init(td))
Jens Axboe66251552011-05-12 10:14:57 +02001036 goto err;
Jens Axboe58c55ba2010-03-09 12:20:08 +01001037
Steven Langde890a12011-11-09 14:03:34 +01001038 if (ioengine_load(td))
Jens Axboe205927a2007-03-15 11:06:32 +01001039 goto err;
Jens Axboedf641192006-10-12 07:55:41 +02001040
Jens Axboede98bd32013-04-05 11:09:20 +02001041 if (o->odirect)
Jens Axboe690adba2006-10-30 15:25:09 +01001042 td->io_ops->flags |= FIO_RAWIO;
1043
Jens Axboee132cba2007-03-14 14:23:54 +01001044 file_alloced = 0;
Jens Axboede98bd32013-04-05 11:09:20 +02001045 if (!o->filename && !td->files_index && !o->read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +01001046 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +01001047
Jens Axboede98bd32013-04-05 11:09:20 +02001048 if (o->nr_files == 1 && exists_and_not_file(jobname))
Jens Axboe5903e7b2014-02-26 13:42:13 -08001049 add_file(td, jobname, job_add_num, 0);
Jens Axboe7b05a212007-03-13 11:17:07 +01001050 else {
Jens Axboede98bd32013-04-05 11:09:20 +02001051 for (i = 0; i < o->nr_files; i++)
Jens Axboe5903e7b2014-02-26 13:42:13 -08001052 add_file(td, make_filename(fname, o, jobname, job_add_num, i), job_add_num, 0);
Jens Axboeaf52b342007-03-13 10:07:47 +01001053 }
Jens Axboe0af7b542006-02-17 10:10:12 +01001054 }
Jens Axboeebac4652005-12-08 15:25:21 +01001055
Jens Axboe4e991c22007-03-15 11:41:11 +01001056 if (fixup_options(td))
1057 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +01001058
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01001059 flow_init_job(td);
1060
Steven Langde890a12011-11-09 14:03:34 +01001061 /*
1062 * IO engines only need this for option callbacks, and the address may
1063 * change in subprocesses.
1064 */
1065 if (td->eo)
1066 *(struct thread_data **)td->eo = NULL;
1067
Jens Axboe07eb79d2007-04-12 13:02:38 +02001068 if (td->io_ops->flags & FIO_DISKLESSIO) {
1069 struct fio_file *f;
1070
1071 for_each_file(td, f, i)
1072 f->real_file_size = -1ULL;
1073 }
1074
Jens Axboe521da522012-08-02 11:21:36 +02001075 td->mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
Jens Axboeebac4652005-12-08 15:25:21 +01001076
Jens Axboede98bd32013-04-05 11:09:20 +02001077 td->ts.clat_percentiles = o->clat_percentiles;
1078 td->ts.percentile_precision = o->percentile_precision;
1079 memcpy(td->ts.percentile_list, o->percentile_list, sizeof(o->percentile_list));
Yu-ju Hong83349192011-08-13 00:53:44 +02001080
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001081 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1082 td->ts.clat_stat[i].min_val = ULONG_MAX;
1083 td->ts.slat_stat[i].min_val = ULONG_MAX;
1084 td->ts.lat_stat[i].min_val = ULONG_MAX;
1085 td->ts.bw_stat[i].min_val = ULONG_MAX;
1086 }
Jens Axboede98bd32013-04-05 11:09:20 +02001087 td->ddir_seq_nr = o->ddir_seq_nr;
Jens Axboeebac4652005-12-08 15:25:21 +01001088
Jens Axboede98bd32013-04-05 11:09:20 +02001089 if ((o->stonewall || o->new_group) && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001090 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001091 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001092 }
Jens Axboeebac4652005-12-08 15:25:21 +01001093
1094 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001095 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +01001096
Jens Axboe9dbc7bf2013-01-23 09:26:53 -07001097 if (setup_random_seeds(td)) {
Bruce Cran93bcfd22012-02-20 20:18:19 +01001098 td_verror(td, errno, "init_random_state");
Jens Axboe9c60ce62007-03-15 09:14:47 +01001099 goto err;
Bruce Cran93bcfd22012-02-20 20:18:19 +01001100 }
Jens Axboe9c60ce62007-03-15 09:14:47 +01001101
Jens Axboeebac4652005-12-08 15:25:21 +01001102 if (setup_rate(td))
1103 goto err;
1104
Jens Axboe8e255772014-04-01 13:34:49 -06001105 if (o->lat_log_file || write_lat_log) {
Jens Axboe22f80452013-04-09 20:29:16 +02001106 setup_log(&td->lat_log, o->log_avg_msec, IO_LOG_TYPE_LAT);
1107 setup_log(&td->slat_log, o->log_avg_msec, IO_LOG_TYPE_SLAT);
1108 setup_log(&td->clat_log, o->log_avg_msec, IO_LOG_TYPE_CLAT);
Jens Axboeebac4652005-12-08 15:25:21 +01001109 }
Jens Axboe8e255772014-04-01 13:34:49 -06001110 if (o->bw_log_file || write_bw_log)
Jens Axboe22f80452013-04-09 20:29:16 +02001111 setup_log(&td->bw_log, o->log_avg_msec, IO_LOG_TYPE_BW);
1112 if (o->iops_log_file)
1113 setup_log(&td->iops_log, o->log_avg_msec, IO_LOG_TYPE_IOPS);
Jens Axboeebac4652005-12-08 15:25:21 +01001114
Jens Axboede98bd32013-04-05 11:09:20 +02001115 if (!o->name)
1116 o->name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +02001117
Jens Axboef3afa572012-09-17 13:34:16 +02001118 if (output_format == FIO_OUTPUT_NORMAL) {
Jens Axboeb990b5c2006-09-14 09:48:22 +02001119 if (!job_add_num) {
Jens Axboeb7cfb2e2012-03-12 07:47:27 +01001120 if (is_backend && !recursed)
Jens Axboe2f122b12012-03-15 13:10:19 +01001121 fio_server_send_add_job(td);
Jens Axboe807f9972012-03-02 10:25:24 +01001122
Jens Axboe03530502012-03-19 21:45:12 +01001123 if (!(td->io_ops->flags & FIO_NOIO)) {
Jens Axboed21e2532013-07-25 13:01:11 -06001124 char *c1, *c2, *c3, *c4;
1125 char *c5 = NULL, *c6 = NULL;
Jens Axboef8977ee2006-11-06 14:03:03 +01001126
Jens Axboe22f80452013-04-09 20:29:16 +02001127 c1 = fio_uint_to_kmg(o->min_bs[DDIR_READ]);
1128 c2 = fio_uint_to_kmg(o->max_bs[DDIR_READ]);
1129 c3 = fio_uint_to_kmg(o->min_bs[DDIR_WRITE]);
1130 c4 = fio_uint_to_kmg(o->max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +01001131
Jens Axboed21e2532013-07-25 13:01:11 -06001132 if (!o->bs_is_seq_rand) {
1133 c5 = fio_uint_to_kmg(o->min_bs[DDIR_TRIM]);
1134 c6 = fio_uint_to_kmg(o->max_bs[DDIR_TRIM]);
1135 }
1136
1137 log_info("%s: (g=%d): rw=%s, ", td->o.name,
1138 td->groupid,
1139 ddir_str(o->td_ddir));
1140
1141 if (o->bs_is_seq_rand)
1142 log_info("bs(seq/rand)=%s-%s/%s-%s, ",
1143 c1, c2, c3, c4);
1144 else
1145 log_info("bs=%s-%s/%s-%s/%s-%s, ",
1146 c1, c2, c3, c4, c5, c6);
1147
1148 log_info("ioengine=%s, iodepth=%u\n",
Jens Axboede98bd32013-04-05 11:09:20 +02001149 td->io_ops->name, o->iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +01001150
1151 free(c1);
1152 free(c2);
1153 free(c3);
1154 free(c4);
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001155 free(c5);
1156 free(c6);
Jens Axboef8977ee2006-11-06 14:03:03 +01001157 }
Jens Axboeb990b5c2006-09-14 09:48:22 +02001158 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +01001159 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +02001160 }
Jens Axboeebac4652005-12-08 15:25:21 +01001161
1162 /*
1163 * recurse add identical jobs, clear numjobs and stonewall options
1164 * as they don't apply to sub-jobs
1165 */
Jens Axboede98bd32013-04-05 11:09:20 +02001166 numjobs = o->numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +01001167 while (--numjobs) {
Steven Langde890a12011-11-09 14:03:34 +01001168 struct thread_data *td_new = get_new_job(0, td, 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001169
1170 if (!td_new)
1171 goto err;
1172
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001173 td_new->o.numjobs = 1;
1174 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +02001175 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +01001176
1177 if (file_alloced) {
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001178 if (td_new->files) {
1179 struct fio_file *f;
1180 for_each_file(td_new, f, i) {
1181 if (f->file_name)
Andrey Kuzminece6d642014-04-01 12:27:04 -06001182 sfree(f->file_name);
1183 sfree(f);
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001184 }
Andrey Kuzminece6d642014-04-01 12:27:04 -06001185 free(td_new->files);
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001186 td_new->files = NULL;
1187 }
Andrey Kuzminece6d642014-04-01 12:27:04 -06001188 td_new->files_index = 0;
1189 td_new->files_size = 0;
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001190 if (td_new->o.filename) {
1191 free(td_new->o.filename);
1192 td_new->o.filename = NULL;
1193 }
Jens Axboee132cba2007-03-14 14:23:54 +01001194 }
1195
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001196 if (add_job(td_new, jobname, numjobs, 1, client_type))
Jens Axboeebac4652005-12-08 15:25:21 +01001197 goto err;
1198 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001199
Jens Axboeebac4652005-12-08 15:25:21 +01001200 return 0;
1201err:
1202 put_job(td);
1203 return -1;
1204}
1205
Jens Axboe79d16312010-03-04 12:43:20 +01001206/*
1207 * Parse as if 'o' was a command line
1208 */
Jens Axboe46bcd492012-03-14 11:31:21 +01001209void add_job_opts(const char **o, int client_type)
Jens Axboe79d16312010-03-04 12:43:20 +01001210{
1211 struct thread_data *td, *td_parent;
1212 int i, in_global = 1;
1213 char jobname[32];
1214
1215 i = 0;
1216 td_parent = td = NULL;
1217 while (o[i]) {
1218 if (!strncmp(o[i], "name", 4)) {
1219 in_global = 0;
1220 if (td)
Jens Axboe46bcd492012-03-14 11:31:21 +01001221 add_job(td, jobname, 0, 0, client_type);
Jens Axboe79d16312010-03-04 12:43:20 +01001222 td = NULL;
1223 sprintf(jobname, "%s", o[i] + 5);
1224 }
1225 if (in_global && !td_parent)
Steven Langde890a12011-11-09 14:03:34 +01001226 td_parent = get_new_job(1, &def_thread, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001227 else if (!in_global && !td) {
1228 if (!td_parent)
1229 td_parent = &def_thread;
Steven Langde890a12011-11-09 14:03:34 +01001230 td = get_new_job(0, td_parent, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001231 }
1232 if (in_global)
Jens Axboe292cc472013-11-26 20:39:35 -07001233 fio_options_parse(td_parent, (char **) &o[i], 1, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001234 else
Jens Axboe292cc472013-11-26 20:39:35 -07001235 fio_options_parse(td, (char **) &o[i], 1, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001236 i++;
1237 }
1238
1239 if (td)
Jens Axboe46bcd492012-03-14 11:31:21 +01001240 add_job(td, jobname, 0, 0, client_type);
Jens Axboe79d16312010-03-04 12:43:20 +01001241}
1242
Jens Axboe01f06b62008-02-18 20:53:47 +01001243static int skip_this_section(const char *name)
1244{
Jens Axboead0a2732011-03-11 10:16:17 +01001245 int i;
1246
1247 if (!nr_job_sections)
Jens Axboe01f06b62008-02-18 20:53:47 +01001248 return 0;
1249 if (!strncmp(name, "global", 6))
1250 return 0;
1251
Jens Axboead0a2732011-03-11 10:16:17 +01001252 for (i = 0; i < nr_job_sections; i++)
1253 if (!strcmp(job_sections[i], name))
1254 return 0;
1255
1256 return 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001257}
1258
Jens Axboeebac4652005-12-08 15:25:21 +01001259static int is_empty_or_comment(char *line)
1260{
1261 unsigned int i;
1262
1263 for (i = 0; i < strlen(line); i++) {
1264 if (line[i] == ';')
1265 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +01001266 if (line[i] == '#')
1267 return 1;
Jens Axboe76cd9372011-07-08 21:14:57 +02001268 if (!isspace((int) line[i]) && !iscntrl((int) line[i]))
Jens Axboeebac4652005-12-08 15:25:21 +01001269 return 0;
1270 }
1271
1272 return 1;
1273}
1274
Jens Axboe313cb202006-12-21 09:50:00 +01001275/*
Jens Axboe07261982006-06-07 10:51:12 +02001276 * This is our [ini] type file parser.
1277 */
Jens Axboe46bcd492012-03-14 11:31:21 +01001278int parse_jobs_ini(char *file, int is_buf, int stonewall_flag, int type)
Jens Axboeebac4652005-12-08 15:25:21 +01001279{
Jens Axboee1f36502006-10-27 10:54:08 +02001280 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +01001281 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +01001282 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +01001283 FILE *f;
1284 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001285 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +02001286 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +02001287 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +01001288 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +02001289 char **opts;
1290 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +01001291
Jens Axboe50d16972011-09-29 17:45:28 -06001292 if (is_buf)
1293 f = NULL;
1294 else {
1295 if (!strcmp(file, "-"))
1296 f = stdin;
1297 else
1298 f = fopen(file, "r");
Aaron Carroll5a729cb2007-09-27 09:03:55 +02001299
Jens Axboe50d16972011-09-29 17:45:28 -06001300 if (!f) {
1301 perror("fopen job file");
1302 return 1;
1303 }
Jens Axboeebac4652005-12-08 15:25:21 +01001304 }
1305
1306 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +02001307
1308 /*
1309 * it's really 256 + small bit, 280 should suffice
1310 */
1311 name = malloc(280);
1312 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +01001313
Jens Axboe3b8b7132008-06-10 19:46:23 +02001314 alloc_opts = 8;
1315 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +02001316 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +02001317
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001318 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001319 do {
Jens Axboeccf8f122007-09-27 10:48:55 +02001320 /*
1321 * if skip_fgets is set, we already have loaded a line we
1322 * haven't handled.
1323 */
1324 if (!skip_fgets) {
Jens Axboe50d16972011-09-29 17:45:28 -06001325 if (is_buf)
1326 p = strsep(&file, "\n");
1327 else
Jens Axboe43f74792011-10-15 14:37:26 +02001328 p = fgets(string, 4096, f);
Jens Axboeccf8f122007-09-27 10:48:55 +02001329 if (!p)
1330 break;
1331 }
gurudas paicdc7f192007-03-29 10:10:56 +02001332
Jens Axboeccf8f122007-09-27 10:48:55 +02001333 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +02001334 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -08001335 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +02001336
Jens Axboeebac4652005-12-08 15:25:21 +01001337 if (is_empty_or_comment(p))
1338 continue;
Bruce Cran84dd1882011-05-05 08:14:09 -06001339 if (sscanf(p, "[%255[^\n]]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001340 if (inside_skip)
1341 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001342 log_err("fio: option <%s> outside of [] job section\n",
1343 p);
Jens Axboe088b4202007-07-19 14:53:01 +02001344 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -08001345 }
Jens Axboeebac4652005-12-08 15:25:21 +01001346
Jens Axboe7a4b80a2010-05-22 20:43:11 +02001347 name[strlen(name) - 1] = '\0';
1348
Jens Axboe01f06b62008-02-18 20:53:47 +01001349 if (skip_this_section(name)) {
1350 inside_skip = 1;
1351 continue;
1352 } else
1353 inside_skip = 0;
1354
Jens Axboeebac4652005-12-08 15:25:21 +01001355 global = !strncmp(name, "global", 6);
1356
Jens Axboecca73aa2007-04-04 11:09:19 +02001357 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +02001358 if (first_sect)
1359 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +02001360 if (!global)
1361 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +02001362 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02001363 }
1364
Steven Langde890a12011-11-09 14:03:34 +01001365 td = get_new_job(global, &def_thread, 0);
Jens Axboe45410ac2006-06-07 11:10:39 +02001366 if (!td) {
1367 ret = 1;
1368 break;
1369 }
Jens Axboeebac4652005-12-08 15:25:21 +01001370
Jens Axboe972cfd22006-06-09 11:08:56 +02001371 /*
Anatol Pomozovde8f6de2013-09-26 16:31:34 -07001372 * Separate multiple job files by a stonewall
Jens Axboe972cfd22006-06-09 11:08:56 +02001373 */
Jens Axboef9481912006-06-09 11:37:28 +02001374 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001375 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +02001376 stonewall = 0;
1377 }
1378
Jens Axboe3b8b7132008-06-10 19:46:23 +02001379 num_opts = 0;
1380 memset(opts, 0, alloc_opts * sizeof(char *));
1381
Jens Axboe50d16972011-09-29 17:45:28 -06001382 while (1) {
1383 if (is_buf)
1384 p = strsep(&file, "\n");
1385 else
1386 p = fgets(string, 4096, f);
1387 if (!p)
1388 break;
1389
Jens Axboeebac4652005-12-08 15:25:21 +01001390 if (is_empty_or_comment(p))
1391 continue;
Jens Axboee1f36502006-10-27 10:54:08 +02001392
Jens Axboeb6754f92006-05-30 14:29:32 +02001393 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +01001394
Jens Axboeccf8f122007-09-27 10:48:55 +02001395 /*
1396 * new section, break out and make sure we don't
1397 * fgets() a new line at the top.
1398 */
1399 if (p[0] == '[') {
1400 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001401 break;
Jens Axboeccf8f122007-09-27 10:48:55 +02001402 }
Jens Axboe7c124ac2006-10-30 13:36:52 +01001403
Jens Axboe4ae3f762006-05-30 13:35:14 +02001404 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +02001405
Jens Axboe3b8b7132008-06-10 19:46:23 +02001406 if (num_opts == alloc_opts) {
1407 alloc_opts <<= 1;
1408 opts = realloc(opts,
1409 alloc_opts * sizeof(char *));
1410 }
1411
1412 opts[num_opts] = strdup(p);
1413 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +01001414 }
Jens Axboeebac4652005-12-08 15:25:21 +01001415
Jens Axboe292cc472013-11-26 20:39:35 -07001416 ret = fio_options_parse(td, opts, num_opts, dump_cmdline);
1417 if (!ret)
Jens Axboe46bcd492012-03-14 11:31:21 +01001418 ret = add_job(td, name, 0, 0, type);
Jens Axboe292cc472013-11-26 20:39:35 -07001419 else {
Jens Axboeb1508cf2006-11-02 09:12:40 +01001420 log_err("fio: job %s dropped\n", name);
1421 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +02001422 }
Jens Axboe3b8b7132008-06-10 19:46:23 +02001423
1424 for (i = 0; i < num_opts; i++)
1425 free(opts[i]);
1426 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001427 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001428
Jens Axboecca73aa2007-04-04 11:09:19 +02001429 if (dump_cmdline)
1430 log_info("\n");
1431
Jens Axboe7e356b22011-10-14 10:55:16 +02001432 i = 0;
1433 while (i < nr_job_sections) {
1434 free(job_sections[i]);
1435 i++;
1436 }
1437
Jens Axboe3b8b7132008-06-10 19:46:23 +02001438 for (i = 0; i < num_opts; i++)
1439 free(opts[i]);
1440
Jens Axboeebac4652005-12-08 15:25:21 +01001441 free(string);
1442 free(name);
Jens Axboe25775942008-06-10 20:26:06 +02001443 free(opts);
Jens Axboe50d16972011-09-29 17:45:28 -06001444 if (!is_buf && f != stdin)
Aaron Carroll5a729cb2007-09-27 09:03:55 +02001445 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +02001446 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001447}
1448
1449static int fill_def_thread(void)
1450{
1451 memset(&def_thread, 0, sizeof(def_thread));
1452
Jens Axboe375b2692007-05-22 09:13:02 +02001453 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04001454 def_thread.o.error_dump = 1;
Jens Axboe25bd16c2014-04-06 10:09:30 -06001455
Jens Axboeebac4652005-12-08 15:25:21 +01001456 /*
Jens Axboeee738492007-01-10 11:23:16 +01001457 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +01001458 */
Jens Axboe214e1ec2007-03-15 10:48:13 +01001459 fio_fill_default_options(&def_thread);
Jens Axboeebac4652005-12-08 15:25:21 +01001460 return 0;
1461}
1462
Jens Axboe45378b32007-12-19 13:54:38 +01001463static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +02001464{
Jens Axboe3d433822012-03-21 22:25:22 +01001465 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +01001466 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboe83881282011-10-17 19:58:51 +02001467 printf(" --debug=options\tEnable debug logging. May be one/more of:\n"
1468 "\t\t\tprocess,file,io,mem,blktrace,verify,random,parse,\n"
Jens Axboe3e260a42013-12-09 12:38:53 -07001469 "\t\t\tdiskutil,job,mutex,profile,time,net,rate\n");
Jens Axboe111e0322013-03-07 11:31:20 +01001470 printf(" --parse-only\t\tParse options only, don't start any IO\n");
Jens Axboe83881282011-10-17 19:58:51 +02001471 printf(" --output\t\tWrite output to file\n");
liang xieb2cecdc2012-08-31 08:22:42 -07001472 printf(" --runtime\t\tRuntime in seconds\n");
Jens Axboe83881282011-10-17 19:58:51 +02001473 printf(" --latency-log\t\tGenerate per-job latency logs\n");
1474 printf(" --bandwidth-log\tGenerate per-job bandwidth logs\n");
1475 printf(" --minimal\t\tMinimal (terse) output\n");
Jens Axboef3afa572012-09-17 13:34:16 +02001476 printf(" --output-format=x\tOutput format (terse,json,normal)\n");
Jens Axboe75db6e22011-11-07 22:07:36 +01001477 printf(" --terse-version=x\tSet terse version output format to 'x'\n");
Jens Axboef3afa572012-09-17 13:34:16 +02001478 printf(" --version\t\tPrint version info and exit\n");
Jens Axboe83881282011-10-17 19:58:51 +02001479 printf(" --help\t\tPrint this page\n");
Jens Axboe23893642012-12-17 14:44:08 +01001480 printf(" --cpuclock-test\tPerform test/validation of CPU clock\n");
Jens Axboefec0f212014-02-07 14:39:33 -07001481 printf(" --crctest\t\tTest speed of checksum functions\n");
Jens Axboe83881282011-10-17 19:58:51 +02001482 printf(" --cmdhelp=cmd\t\tPrint command help, \"all\" for all of"
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001483 " them\n");
Steven Langde890a12011-11-09 14:03:34 +01001484 printf(" --enghelp=engine\tPrint ioengine help, or list"
1485 " available ioengines\n");
1486 printf(" --enghelp=engine,cmd\tPrint help for an ioengine"
1487 " cmd\n");
Jens Axboe83881282011-10-17 19:58:51 +02001488 printf(" --showcmd\t\tTurn a job file into command line options\n");
1489 printf(" --eta=when\t\tWhen ETA estimate should be printed\n");
1490 printf(" \t\tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboee382e662013-02-22 20:48:56 +01001491 printf(" --eta-newline=time\tForce a new line for every 'time'");
1492 printf(" period passed\n");
Jens Axboe06464902013-04-24 20:38:54 -06001493 printf(" --status-interval=t\tForce full status dump every");
1494 printf(" 't' period passed\n");
Jens Axboe83881282011-10-17 19:58:51 +02001495 printf(" --readonly\t\tTurn on safety read-only checks, preventing"
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001496 " writes\n");
Jens Axboe83881282011-10-17 19:58:51 +02001497 printf(" --section=name\tOnly run specified section in job file\n");
1498 printf(" --alloc-size=kb\tSet smalloc pool to this size in kb"
Jens Axboe2b386d22008-03-26 10:32:57 +01001499 " (def 1024)\n");
Jens Axboe83881282011-10-17 19:58:51 +02001500 printf(" --warnings-fatal\tFio parser warnings are fatal\n");
1501 printf(" --max-jobs=nr\t\tMaximum number of threads/processes to support\n");
1502 printf(" --server=args\t\tStart a backend fio server\n");
1503 printf(" --daemonize=pidfile\tBackground fio server, write pid to file\n");
1504 printf(" --client=hostname\tTalk to remote backend fio server at hostname\n");
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001505 printf(" --idle-prof=option\tReport cpu idleness on a system or percpu basis\n"
1506 "\t\t\t(option=system,percpu) or run unit work\n"
1507 "\t\t\tcalibration only (option=calibrate)\n");
Jens Axboeaa58d252010-06-09 09:49:38 +02001508 printf("\nFio was written by Jens Axboe <jens.axboe@oracle.com>");
Jens Axboebfca2c72014-01-29 16:39:04 -07001509 printf("\n Jens Axboe <jaxboe@fusionio.com>");
1510 printf("\n Jens Axboe <axboe@fb.com>\n");
Jens Axboeb4692822006-10-27 13:43:22 +02001511}
1512
Jens Axboe79e48f72008-02-01 20:37:09 +01001513#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +01001514struct debug_level debug_levels[] = {
Jens Axboe0b8d11e2012-03-02 19:44:15 +01001515 { .name = "process",
1516 .help = "Process creation/exit logging",
1517 .shift = FD_PROCESS,
1518 },
1519 { .name = "file",
1520 .help = "File related action logging",
1521 .shift = FD_FILE,
1522 },
1523 { .name = "io",
1524 .help = "IO and IO engine action logging (offsets, queue, completions, etc)",
1525 .shift = FD_IO,
1526 },
1527 { .name = "mem",
1528 .help = "Memory allocation/freeing logging",
1529 .shift = FD_MEM,
1530 },
1531 { .name = "blktrace",
1532 .help = "blktrace action logging",
1533 .shift = FD_BLKTRACE,
1534 },
1535 { .name = "verify",
1536 .help = "IO verification action logging",
1537 .shift = FD_VERIFY,
1538 },
1539 { .name = "random",
1540 .help = "Random generation logging",
1541 .shift = FD_RANDOM,
1542 },
1543 { .name = "parse",
1544 .help = "Parser logging",
1545 .shift = FD_PARSE,
1546 },
1547 { .name = "diskutil",
1548 .help = "Disk utility logging actions",
1549 .shift = FD_DISKUTIL,
1550 },
1551 { .name = "job",
1552 .help = "Logging related to creating/destroying jobs",
1553 .shift = FD_JOB,
1554 },
1555 { .name = "mutex",
1556 .help = "Mutex logging",
1557 .shift = FD_MUTEX
1558 },
1559 { .name = "profile",
1560 .help = "Logging related to profiles",
1561 .shift = FD_PROFILE,
1562 },
1563 { .name = "time",
1564 .help = "Logging related to time keeping functions",
1565 .shift = FD_TIME,
1566 },
1567 { .name = "net",
1568 .help = "Network logging",
1569 .shift = FD_NET,
1570 },
Jens Axboe3e260a42013-12-09 12:38:53 -07001571 { .name = "rate",
1572 .help = "Rate logging",
1573 .shift = FD_RATE,
1574 },
Jens Axboe02444ad2008-10-07 11:33:00 +02001575 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +01001576};
1577
Jens Axboec09823a2008-02-19 20:16:57 +01001578static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +01001579{
1580 struct debug_level *dl;
1581 char *p = (char *) string;
1582 char *opt;
1583 int i;
1584
1585 if (!strcmp(string, "?") || !strcmp(string, "help")) {
Jens Axboeee56ad52008-02-01 10:30:20 +01001586 log_info("fio: dumping debug options:");
1587 for (i = 0; debug_levels[i].name; i++) {
1588 dl = &debug_levels[i];
1589 log_info("%s,", dl->name);
1590 }
Jens Axboebd6f78b2008-02-01 20:27:52 +01001591 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001592 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +01001593 }
1594
1595 while ((opt = strsep(&p, ",")) != NULL) {
1596 int found = 0;
1597
Jens Axboe5e1d3062008-05-23 11:55:53 +02001598 if (!strncmp(opt, "all", 3)) {
1599 log_info("fio: set all debug options\n");
1600 fio_debug = ~0UL;
1601 continue;
1602 }
1603
Jens Axboeee56ad52008-02-01 10:30:20 +01001604 for (i = 0; debug_levels[i].name; i++) {
1605 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +02001606 found = !strncmp(opt, dl->name, strlen(dl->name));
1607 if (!found)
1608 continue;
1609
1610 if (dl->shift == FD_JOB) {
1611 opt = strchr(opt, ':');
1612 if (!opt) {
1613 log_err("fio: missing job number\n");
1614 break;
1615 }
1616 opt++;
1617 fio_debug_jobno = atoi(opt);
1618 log_info("fio: set debug jobno %d\n",
1619 fio_debug_jobno);
1620 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001621 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001622 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +01001623 }
Jens Axboe5e1d3062008-05-23 11:55:53 +02001624 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001625 }
1626
1627 if (!found)
1628 log_err("fio: debug mask %s not found\n", opt);
1629 }
Jens Axboec09823a2008-02-19 20:16:57 +01001630 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +01001631}
Jens Axboe79e48f72008-02-01 20:37:09 +01001632#else
Jens Axboe69b98d42008-05-30 22:25:32 +02001633static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +01001634{
1635 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001636 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +01001637}
1638#endif
Jens Axboeee56ad52008-02-01 10:30:20 +01001639
Jens Axboe4c6107f2011-01-18 05:22:22 -07001640static void fio_options_fill_optstring(void)
1641{
1642 char *ostr = cmd_optstr;
1643 int i, c;
1644
1645 c = i = 0;
1646 while (l_opts[i].name) {
1647 ostr[c++] = l_opts[i].val;
1648 if (l_opts[i].has_arg == required_argument)
1649 ostr[c++] = ':';
1650 else if (l_opts[i].has_arg == optional_argument) {
1651 ostr[c++] = ':';
1652 ostr[c++] = ':';
1653 }
1654 i++;
1655 }
1656 ostr[c] = '\0';
1657}
1658
Jens Axboec2c94582011-10-05 20:31:30 +02001659static int client_flag_set(char c)
1660{
1661 int i;
1662
1663 i = 0;
1664 while (l_opts[i].name) {
1665 int val = l_opts[i].val;
1666
1667 if (c == (val & 0xff))
1668 return (val & FIO_CLIENT_FLAG);
1669
1670 i++;
1671 }
1672
1673 return 0;
1674}
1675
Jens Axboe10aa1362014-04-01 21:10:36 -06001676static void parse_cmd_client(void *client, char *opt)
Jens Axboe7a4b8242011-10-05 17:35:15 +02001677{
Jens Axboefa2ea802011-10-08 21:07:29 +02001678 fio_client_add_cmd_option(client, opt);
Jens Axboe7a4b8242011-10-05 17:35:15 +02001679}
1680
Jens Axboe46bcd492012-03-14 11:31:21 +01001681int parse_cmd_line(int argc, char *argv[], int client_type)
Jens Axboe214e1ec2007-03-15 10:48:13 +01001682{
1683 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +01001684 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe4c6107f2011-01-18 05:22:22 -07001685 char *ostr = cmd_optstr;
Jens Axboe402668f2011-10-10 15:28:58 +02001686 void *pid_file = NULL;
Jens Axboe9bae26e2011-10-07 10:07:22 +02001687 void *cur_client = NULL;
Jens Axboe81179ee2011-10-04 12:42:06 +02001688 int backend = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001689
Jens Axboec2c94582011-10-05 20:31:30 +02001690 /*
1691 * Reset optind handling, since we may call this multiple times
1692 * for the backend.
1693 */
1694 optind = 1;
Jens Axboe7a4b8242011-10-05 17:35:15 +02001695
Jens Axboec2c94582011-10-05 20:31:30 +02001696 while ((c = getopt_long_only(argc, argv, ostr, l_opts, &lidx)) != -1) {
Jens Axboe085399d2011-10-06 09:01:22 +02001697 did_arg = 1;
1698
Jens Axboec2c94582011-10-05 20:31:30 +02001699 if ((c & FIO_CLIENT_FLAG) || client_flag_set(c)) {
Jens Axboefa2ea802011-10-08 21:07:29 +02001700 parse_cmd_client(cur_client, argv[optind - 1]);
Jens Axboe7a4b8242011-10-05 17:35:15 +02001701 c &= ~FIO_CLIENT_FLAG;
1702 }
1703
Jens Axboe214e1ec2007-03-15 10:48:13 +01001704 switch (c) {
Jens Axboe2b386d22008-03-26 10:32:57 +01001705 case 'a':
1706 smalloc_pool_size = atoi(optarg);
1707 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001708 case 't':
Jens Axboe25bd16c2014-04-06 10:09:30 -06001709 if (check_str_time(optarg, &def_timeout, 1)) {
1710 log_err("fio: failed parsing time %s\n", optarg);
1711 do_exit++;
1712 exit_val = 1;
1713 }
Jens Axboe214e1ec2007-03-15 10:48:13 +01001714 break;
1715 case 'l':
1716 write_lat_log = 1;
1717 break;
Jens Axboe3d73e5a2010-03-25 10:38:07 +01001718 case 'b':
Jens Axboe214e1ec2007-03-15 10:48:13 +01001719 write_bw_log = 1;
1720 break;
1721 case 'o':
Jens Axboe5e1d8742014-04-11 11:39:46 -06001722 if (f_out)
1723 fclose(f_out);
1724
Jens Axboe214e1ec2007-03-15 10:48:13 +01001725 f_out = fopen(optarg, "w+");
1726 if (!f_out) {
1727 perror("fopen output");
1728 exit(1);
1729 }
1730 f_err = f_out;
1731 break;
1732 case 'm':
Jens Axboef3afa572012-09-17 13:34:16 +02001733 output_format = FIO_OUTPUT_TERSE;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001734 break;
Jens Axboef3afa572012-09-17 13:34:16 +02001735 case 'F':
Stefan Hajnoczid10983d2014-02-04 14:27:11 +01001736 if (!optarg) {
1737 log_err("fio: missing --output-format argument\n");
1738 exit_val = 1;
1739 do_exit++;
1740 break;
1741 }
Jens Axboef3afa572012-09-17 13:34:16 +02001742 if (!strcmp(optarg, "minimal") ||
1743 !strcmp(optarg, "terse") ||
1744 !strcmp(optarg, "csv"))
1745 output_format = FIO_OUTPUT_TERSE;
1746 else if (!strcmp(optarg, "json"))
1747 output_format = FIO_OUTPUT_JSON;
1748 else
1749 output_format = FIO_OUTPUT_NORMAL;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001750 break;
Christian Ehrhardt2b8c71b2014-02-20 14:20:04 +01001751 case 'f':
1752 append_terse_output = 1;
1753 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001754 case 'h':
Jens Axboe7874f8b2011-10-06 09:18:20 +02001755 if (!cur_client) {
Jens Axboec2c94582011-10-05 20:31:30 +02001756 usage(argv[0]);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001757 do_exit++;
1758 }
Jens Axboec2c94582011-10-05 20:31:30 +02001759 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001760 case 'c':
Jens Axboe7874f8b2011-10-06 09:18:20 +02001761 if (!cur_client) {
Jens Axboec2c94582011-10-05 20:31:30 +02001762 fio_show_option_help(optarg);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001763 do_exit++;
1764 }
Jens Axboec2c94582011-10-05 20:31:30 +02001765 break;
Steven Langde890a12011-11-09 14:03:34 +01001766 case 'i':
1767 if (!cur_client) {
1768 fio_show_ioengine_help(optarg);
1769 do_exit++;
1770 }
1771 break;
Jens Axboecca73aa2007-04-04 11:09:19 +02001772 case 's':
1773 dump_cmdline = 1;
1774 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001775 case 'r':
1776 read_only = 1;
1777 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001778 case 'v':
Jens Axboe7874f8b2011-10-06 09:18:20 +02001779 if (!cur_client) {
Jens Axboe3d433822012-03-21 22:25:22 +01001780 log_info("%s\n", fio_version_string);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001781 do_exit++;
1782 }
Jens Axboec2c94582011-10-05 20:31:30 +02001783 break;
Jens Axboef57a9c52011-09-09 21:01:37 +02001784 case 'V':
1785 terse_version = atoi(optarg);
Jens Axboe09786f52012-10-04 17:06:49 +02001786 if (!(terse_version == 2 || terse_version == 3 ||
1787 terse_version == 4)) {
Jens Axboef57a9c52011-09-09 21:01:37 +02001788 log_err("fio: bad terse version format\n");
1789 exit_val = 1;
1790 do_exit++;
1791 }
1792 break;
Aaron Carrolle592a062007-09-14 09:49:41 +02001793 case 'e':
1794 if (!strcmp("always", optarg))
1795 eta_print = FIO_ETA_ALWAYS;
1796 else if (!strcmp("never", optarg))
1797 eta_print = FIO_ETA_NEVER;
1798 break;
Jens Axboee382e662013-02-22 20:48:56 +01001799 case 'E': {
1800 long long t = 0;
1801
Jens Axboe0de5b262014-02-21 15:26:01 -08001802 if (str_to_decimal(optarg, &t, 0, NULL, 1)) {
Jens Axboee382e662013-02-22 20:48:56 +01001803 log_err("fio: failed parsing eta time %s\n", optarg);
1804 exit_val = 1;
1805 do_exit++;
1806 }
1807 eta_new_line = t;
1808 break;
1809 }
Jens Axboeee56ad52008-02-01 10:30:20 +01001810 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001811 if (set_debug(optarg))
1812 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001813 break;
Jens Axboe111e0322013-03-07 11:31:20 +01001814 case 'P':
1815 parse_only = 1;
1816 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001817 case 'x': {
1818 size_t new_size;
1819
Jens Axboe01f06b62008-02-18 20:53:47 +01001820 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001821 log_err("fio: can't use global as only "
1822 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001823 do_exit++;
1824 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001825 break;
1826 }
Jens Axboead0a2732011-03-11 10:16:17 +01001827 new_size = (nr_job_sections + 1) * sizeof(char *);
1828 job_sections = realloc(job_sections, new_size);
1829 job_sections[nr_job_sections] = strdup(optarg);
1830 nr_job_sections++;
Jens Axboe01f06b62008-02-18 20:53:47 +01001831 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001832 }
Jens Axboe9ac8a792009-11-13 21:23:07 +01001833 case 'p':
Jens Axboe4af7c002014-04-11 11:38:38 -06001834 if (exec_profile)
1835 free(exec_profile);
Jens Axboe07b32322010-03-05 09:48:44 +01001836 exec_profile = strdup(optarg);
Jens Axboe9ac8a792009-11-13 21:23:07 +01001837 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001838 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001839 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001840 char *val = optarg;
1841
1842 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe46bcd492012-03-14 11:31:21 +01001843 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
Jens Axboe66251552011-05-12 10:14:57 +02001844 if (ret)
Jens Axboe214e1ec2007-03-15 10:48:13 +01001845 return 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001846 td = NULL;
1847 }
1848 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001849 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001850 int global = 0;
1851
Jens Axboe01f06b62008-02-18 20:53:47 +01001852 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001853 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001854
Jens Axboe01f06b62008-02-18 20:53:47 +01001855 if (is_section && skip_this_section(val))
1856 continue;
1857
Steven Langde890a12011-11-09 14:03:34 +01001858 td = get_new_job(global, &def_thread, 1);
1859 if (!td || ioengine_load(td))
Jens Axboe214e1ec2007-03-15 10:48:13 +01001860 return 0;
Steven Langde890a12011-11-09 14:03:34 +01001861 fio_options_set_ioengine_opts(l_opts, td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001862 }
1863
Jens Axboe9d918182013-05-23 20:00:35 +02001864 if ((!val || !strlen(val)) &&
1865 l_opts[lidx].has_arg == required_argument) {
1866 log_err("fio: option %s requires an argument\n", opt);
1867 ret = 1;
1868 } else
1869 ret = fio_cmd_option_parse(td, opt, val);
1870
Jens Axboebfb3ea22013-05-23 19:54:43 +02001871 if (ret) {
1872 if (td) {
1873 put_job(td);
1874 td = NULL;
1875 }
Jens Axboea88c8c12013-04-24 22:25:22 -06001876 do_exit++;
Jens Axboebfb3ea22013-05-23 19:54:43 +02001877 }
Steven Langde890a12011-11-09 14:03:34 +01001878
1879 if (!ret && !strcmp(opt, "ioengine")) {
1880 free_ioengine(td);
1881 if (ioengine_load(td))
1882 return 0;
1883 fio_options_set_ioengine_opts(l_opts, td);
1884 }
1885 break;
1886 }
1887 case FIO_GETOPT_IOENGINE: {
1888 const char *opt = l_opts[lidx].name;
1889 char *val = optarg;
Steven Langde890a12011-11-09 14:03:34 +01001890 ret = fio_cmd_ioengine_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001891 break;
1892 }
Jens Axboea9523c62011-01-17 16:49:54 -07001893 case 'w':
1894 warnings_fatal = 1;
1895 break;
Jens Axboefca70352011-07-06 20:12:54 +02001896 case 'j':
1897 max_jobs = atoi(optarg);
1898 if (!max_jobs || max_jobs > REAL_MAX_JOBS) {
1899 log_err("fio: invalid max jobs: %d\n", max_jobs);
1900 do_exit++;
1901 exit_val = 1;
1902 }
1903 break;
Jens Axboe50d16972011-09-29 17:45:28 -06001904 case 'S':
Jens Axboea37f69b2011-10-01 12:24:21 -06001905 if (nr_clients) {
Jens Axboe132159a2011-09-30 15:01:32 -06001906 log_err("fio: can't be both client and server\n");
1907 do_exit++;
1908 exit_val = 1;
1909 break;
1910 }
Jens Axboe87aa8f12011-10-06 21:24:13 +02001911 if (optarg)
Jens Axboebebe6392011-10-07 10:00:51 +02001912 fio_server_set_arg(optarg);
Jens Axboe50d16972011-09-29 17:45:28 -06001913 is_backend = 1;
Jens Axboe81179ee2011-10-04 12:42:06 +02001914 backend = 1;
Jens Axboe50d16972011-09-29 17:45:28 -06001915 break;
Jens Axboee46d8092011-10-03 09:11:02 +02001916 case 'D':
Jens Axboe402668f2011-10-10 15:28:58 +02001917 pid_file = strdup(optarg);
Jens Axboee46d8092011-10-03 09:11:02 +02001918 break;
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001919 case 'I':
1920 if ((ret = fio_idle_prof_parse_opt(optarg))) {
1921 /* exit on error and calibration only */
1922 do_exit++;
1923 if (ret == -1)
1924 exit_val = 1;
1925 }
1926 break;
Jens Axboe132159a2011-09-30 15:01:32 -06001927 case 'C':
1928 if (is_backend) {
1929 log_err("fio: can't be both client and server\n");
1930 do_exit++;
1931 exit_val = 1;
1932 break;
1933 }
Jens Axboea5276612012-03-04 15:15:08 +01001934 if (fio_client_add(&fio_client_ops, optarg, &cur_client)) {
Jens Axboebebe6392011-10-07 10:00:51 +02001935 log_err("fio: failed adding client %s\n", optarg);
1936 do_exit++;
1937 exit_val = 1;
1938 break;
1939 }
Jens Axboe14ea90e2012-08-26 17:33:34 +02001940 /*
1941 * If the next argument exists and isn't an option,
1942 * assume it's a job file for this client only.
1943 */
1944 while (optind < argc) {
1945 if (!strncmp(argv[optind], "--", 2) ||
1946 !strncmp(argv[optind], "-", 1))
1947 break;
1948
1949 fio_client_add_ini_file(cur_client, argv[optind]);
1950 optind++;
1951 }
Jens Axboe132159a2011-09-30 15:01:32 -06001952 break;
Jens Axboe7d11f872012-12-17 12:03:29 +01001953 case 'T':
1954 do_exit++;
1955 exit_val = fio_monotonic_clocktest();
1956 break;
Jens Axboefec0f212014-02-07 14:39:33 -07001957 case 'G':
1958 do_exit++;
1959 exit_val = fio_crctest(optarg);
1960 break;
Jens Axboe06464902013-04-24 20:38:54 -06001961 case 'L': {
1962 long long val;
1963
Jens Axboe7cd0ec52014-03-28 08:09:10 -06001964 if (check_str_time(optarg, &val, 0)) {
Jens Axboe06464902013-04-24 20:38:54 -06001965 log_err("fio: failed parsing time %s\n", optarg);
1966 do_exit++;
1967 exit_val = 1;
1968 break;
1969 }
1970 status_interval = val * 1000;
1971 break;
1972 }
Jens Axboe798827c2013-01-23 18:11:48 -07001973 case '?':
1974 log_err("%s: unrecognized option '%s'\n", argv[0],
1975 argv[optind - 1]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001976 default:
Jens Axboec09823a2008-02-19 20:16:57 +01001977 do_exit++;
1978 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001979 break;
1980 }
Jens Axboec7d5c942011-10-03 11:48:17 +02001981 if (do_exit)
1982 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001983 }
1984
Jens Axboe0b14f0a2013-05-23 21:27:54 +02001985 if (do_exit && !(is_backend || nr_clients))
1986 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01001987
Jens Axboefb296042014-04-02 08:28:49 -06001988 if (nr_clients && fio_clients_connect())
1989 exit(1);
Jens Axboe132159a2011-09-30 15:01:32 -06001990
Jens Axboe81179ee2011-10-04 12:42:06 +02001991 if (is_backend && backend)
Jens Axboe402668f2011-10-10 15:28:58 +02001992 return fio_start_server(pid_file);
Jens Axboeb8ba87a2014-04-11 11:37:34 -06001993 else if (pid_file)
1994 free(pid_file);
Jens Axboe50d16972011-09-29 17:45:28 -06001995
Jens Axboe214e1ec2007-03-15 10:48:13 +01001996 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +01001997 if (!ret)
Jens Axboe46bcd492012-03-14 11:31:21 +01001998 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001999 }
2000
Jens Axboe7874f8b2011-10-06 09:18:20 +02002001 while (!ret && optind < argc) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002002 ini_idx++;
2003 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
2004 ini_file[ini_idx - 1] = strdup(argv[optind]);
2005 optind++;
2006 }
2007
2008 return ini_idx;
2009}
2010
Jens Axboe0420ba62012-02-29 11:16:52 +01002011int fio_init_options(void)
Jens Axboeebac4652005-12-08 15:25:21 +01002012{
Jens Axboeb4692822006-10-27 13:43:22 +02002013 f_out = stdout;
2014 f_err = stderr;
2015
Jens Axboe4c6107f2011-01-18 05:22:22 -07002016 fio_options_fill_optstring();
Jens Axboe5ec10ea2008-03-06 15:42:00 +01002017 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02002018
Jens Axboe9d9eb2e2011-10-03 12:01:42 +02002019 atexit(free_shm);
2020
Jens Axboeebac4652005-12-08 15:25:21 +01002021 if (fill_def_thread())
2022 return 1;
2023
Jens Axboe0420ba62012-02-29 11:16:52 +01002024 return 0;
2025}
2026
Jens Axboe51167792012-03-08 21:34:18 +01002027extern int fio_check_options(struct thread_options *);
2028
Jens Axboe0420ba62012-02-29 11:16:52 +01002029int parse_options(int argc, char *argv[])
2030{
Jens Axboe46bcd492012-03-14 11:31:21 +01002031 const int type = FIO_CLIENT_TYPE_CLI;
Jens Axboe0420ba62012-02-29 11:16:52 +01002032 int job_files, i;
2033
2034 if (fio_init_options())
2035 return 1;
Jens Axboe51167792012-03-08 21:34:18 +01002036 if (fio_test_cconv(&def_thread.o))
2037 log_err("fio: failed internal cconv test\n");
Jens Axboe0420ba62012-02-29 11:16:52 +01002038
Jens Axboe46bcd492012-03-14 11:31:21 +01002039 job_files = parse_cmd_line(argc, argv, type);
Jens Axboeebac4652005-12-08 15:25:21 +01002040
Jens Axboecdf54d82011-10-04 08:31:40 +02002041 if (job_files > 0) {
2042 for (i = 0; i < job_files; i++) {
Jens Axboebc4f5ef2014-04-06 10:10:32 -06002043 if (i && fill_def_thread())
Jens Axboe132159a2011-09-30 15:01:32 -06002044 return 1;
Jens Axboecdf54d82011-10-04 08:31:40 +02002045 if (nr_clients) {
2046 if (fio_clients_send_ini(ini_file[i]))
2047 return 1;
2048 free(ini_file[i]);
2049 } else if (!is_backend) {
Jens Axboe46bcd492012-03-14 11:31:21 +01002050 if (parse_jobs_ini(ini_file[i], 0, i, type))
Jens Axboecdf54d82011-10-04 08:31:40 +02002051 return 1;
2052 free(ini_file[i]);
2053 }
Jens Axboe132159a2011-09-30 15:01:32 -06002054 }
Jens Axboe14ea90e2012-08-26 17:33:34 +02002055 } else if (nr_clients) {
2056 if (fill_def_thread())
2057 return 1;
2058 if (fio_clients_send_ini(NULL))
2059 return 1;
Jens Axboe972cfd22006-06-09 11:08:56 +02002060 }
Jens Axboeebac4652005-12-08 15:25:21 +01002061
Jens Axboe88c6ed82006-06-09 11:28:10 +02002062 free(ini_file);
Jens Axboe7e356b22011-10-14 10:55:16 +02002063 fio_options_free(&def_thread);
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08002064 filesetup_mem_free();
Jens Axboeb4692822006-10-27 13:43:22 +02002065
2066 if (!thread_number) {
Jens Axboef9633d72013-09-06 09:59:56 -06002067 if (parse_dryrun())
Jens Axboecca73aa2007-04-04 11:09:19 +02002068 return 0;
Jens Axboe07b32322010-03-05 09:48:44 +01002069 if (exec_profile)
2070 return 0;
Jens Axboea37f69b2011-10-01 12:24:21 -06002071 if (is_backend || nr_clients)
Jens Axboe5c341e92011-09-29 18:00:35 -06002072 return 0;
Jens Axboe085399d2011-10-06 09:01:22 +02002073 if (did_arg)
2074 return 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02002075
Jens Axboed65e11c2011-10-05 09:56:53 +02002076 log_err("No jobs(s) defined\n\n");
Jens Axboe085399d2011-10-06 09:01:22 +02002077
2078 if (!did_arg) {
2079 usage(argv[0]);
2080 return 1;
2081 }
2082
2083 return 0;
Jens Axboeb4692822006-10-27 13:43:22 +02002084 }
2085
Jens Axboebe4ecfd2008-12-08 14:10:52 +01002086 if (def_thread.o.gtod_offload) {
2087 fio_gtod_init();
2088 fio_gtod_offload = 1;
2089 fio_gtod_cpu = def_thread.o.gtod_cpu;
2090 }
2091
Jens Axboef3afa572012-09-17 13:34:16 +02002092 if (output_format == FIO_OUTPUT_NORMAL)
Jens Axboe3d433822012-03-21 22:25:22 +01002093 log_info("%s\n", fio_version_string);
Jens Axboef6dea4d2011-10-13 13:37:07 +02002094
Jens Axboeebac4652005-12-08 15:25:21 +01002095 return 0;
2096}
Jens Axboe588b7f02012-03-19 20:37:41 +01002097
2098void options_default_fill(struct thread_options *o)
2099{
2100 memcpy(o, &def_thread.o, sizeof(*o));
2101}