blob: 8ed1de6f965f5f3357da6265d40c623ed4749036 [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
Jens Axboebcdcb5a2014-04-11 11:42:13 -0600367 if (!parent->o.group_reporting)
Jens Axboe108fea72012-11-14 13:09:45 -0700368 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];
Jens Axboeb400a202014-04-14 10:13:46 -0600945 size_t dst_left = PATH_MAX - 1;
Jens Axboede98bd32013-04-05 11:09:20 +0200946
947 if (!o->filename_format || !strlen(o->filename_format)) {
948 sprintf(buf, "%s.%d.%d", jobname, jobnum, filenum);
949 return NULL;
950 }
951
952 for (f = &fpre_keywords[0]; f->keyword; f++)
953 f->strlen = strlen(f->keyword);
954
955 strcpy(buf, o->filename_format);
956 memset(copy, 0, sizeof(copy));
957 for (f = &fpre_keywords[0]; f->keyword; f++) {
958 do {
959 size_t pre_len, post_start = 0;
960 char *str, *dst = copy;
961
Jens Axboee25b6d52013-04-05 14:44:51 +0200962 str = strcasestr(buf, f->keyword);
Jens Axboede98bd32013-04-05 11:09:20 +0200963 if (!str)
964 break;
965
966 pre_len = str - buf;
967 if (strlen(str) != f->strlen)
968 post_start = pre_len + f->strlen;
969
970 if (pre_len) {
971 strncpy(dst, buf, pre_len);
972 dst += pre_len;
Jens Axboe73a467e2014-04-14 08:34:43 -0600973 dst_left -= pre_len;
Jens Axboede98bd32013-04-05 11:09:20 +0200974 }
975
976 switch (f->key) {
Jens Axboe73a467e2014-04-14 08:34:43 -0600977 case FPRE_JOBNAME: {
978 int ret;
979
980 ret = snprintf(dst, dst_left, "%s", jobname);
981 if (ret < 0)
982 break;
983 dst += ret;
984 dst_left -= ret;
Jens Axboede98bd32013-04-05 11:09:20 +0200985 break;
Jens Axboe73a467e2014-04-14 08:34:43 -0600986 }
987 case FPRE_JOBNUM: {
988 int ret;
989
990 ret = snprintf(dst, dst_left, "%d", jobnum);
991 if (ret < 0)
992 break;
993 dst += ret;
994 dst_left -= ret;
Jens Axboede98bd32013-04-05 11:09:20 +0200995 break;
Jens Axboe73a467e2014-04-14 08:34:43 -0600996 }
997 case FPRE_FILENUM: {
998 int ret;
999
1000 ret = snprintf(dst, dst_left, "%d", filenum);
1001 if (ret < 0)
1002 break;
1003 dst += ret;
1004 dst_left -= ret;
Jens Axboede98bd32013-04-05 11:09:20 +02001005 break;
Jens Axboe73a467e2014-04-14 08:34:43 -06001006 }
Jens Axboede98bd32013-04-05 11:09:20 +02001007 default:
1008 assert(0);
1009 break;
1010 }
1011
1012 if (post_start)
Jens Axboe73a467e2014-04-14 08:34:43 -06001013 strncpy(dst, buf + post_start, dst_left);
Jens Axboede98bd32013-04-05 11:09:20 +02001014
1015 strcpy(buf, copy);
1016 } while (1);
1017 }
1018
1019 return buf;
1020}
Jens Axboef9633d72013-09-06 09:59:56 -06001021
1022int parse_dryrun(void)
1023{
1024 return dump_cmdline || parse_only;
1025}
1026
Steven Langde890a12011-11-09 14:03:34 +01001027/*
Jens Axboe906c8d72006-06-13 09:37:56 +02001028 * Adds a job to the list of things todo. Sanitizes the various options
1029 * to make sure we don't have conflicts, and initializes various
1030 * members of td.
1031 */
Jens Axboeb7cfb2e2012-03-12 07:47:27 +01001032static int add_job(struct thread_data *td, const char *jobname, int job_add_num,
Jens Axboe46bcd492012-03-14 11:31:21 +01001033 int recursed, int client_type)
Jens Axboeebac4652005-12-08 15:25:21 +01001034{
Jens Axboeaf52b342007-03-13 10:07:47 +01001035 unsigned int i;
Jens Axboeaf52b342007-03-13 10:07:47 +01001036 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +01001037 int numjobs, file_alloced;
Jens Axboede98bd32013-04-05 11:09:20 +02001038 struct thread_options *o = &td->o;
Jens Axboeebac4652005-12-08 15:25:21 +01001039
Jens Axboeebac4652005-12-08 15:25:21 +01001040 /*
1041 * the def_thread is just for options, it's not a real job
1042 */
1043 if (td == &def_thread)
1044 return 0;
1045
Jens Axboed72be542012-11-30 19:37:46 +01001046 init_flags(td);
1047
Jens Axboecca73aa2007-04-04 11:09:19 +02001048 /*
1049 * if we are just dumping the output command line, don't add the job
1050 */
Jens Axboef9633d72013-09-06 09:59:56 -06001051 if (parse_dryrun()) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001052 put_job(td);
1053 return 0;
1054 }
1055
Jens Axboe46bcd492012-03-14 11:31:21 +01001056 td->client_type = client_type;
1057
Jens Axboe58c55ba2010-03-09 12:20:08 +01001058 if (profile_td_init(td))
Jens Axboe66251552011-05-12 10:14:57 +02001059 goto err;
Jens Axboe58c55ba2010-03-09 12:20:08 +01001060
Steven Langde890a12011-11-09 14:03:34 +01001061 if (ioengine_load(td))
Jens Axboe205927a2007-03-15 11:06:32 +01001062 goto err;
Jens Axboedf641192006-10-12 07:55:41 +02001063
Jens Axboede98bd32013-04-05 11:09:20 +02001064 if (o->odirect)
Jens Axboe690adba2006-10-30 15:25:09 +01001065 td->io_ops->flags |= FIO_RAWIO;
1066
Jens Axboee132cba2007-03-14 14:23:54 +01001067 file_alloced = 0;
Jens Axboede98bd32013-04-05 11:09:20 +02001068 if (!o->filename && !td->files_index && !o->read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +01001069 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +01001070
Jens Axboede98bd32013-04-05 11:09:20 +02001071 if (o->nr_files == 1 && exists_and_not_file(jobname))
Jens Axboe5903e7b2014-02-26 13:42:13 -08001072 add_file(td, jobname, job_add_num, 0);
Jens Axboe7b05a212007-03-13 11:17:07 +01001073 else {
Jens Axboede98bd32013-04-05 11:09:20 +02001074 for (i = 0; i < o->nr_files; i++)
Jens Axboe5903e7b2014-02-26 13:42:13 -08001075 add_file(td, make_filename(fname, o, jobname, job_add_num, i), job_add_num, 0);
Jens Axboeaf52b342007-03-13 10:07:47 +01001076 }
Jens Axboe0af7b542006-02-17 10:10:12 +01001077 }
Jens Axboeebac4652005-12-08 15:25:21 +01001078
Jens Axboe4e991c22007-03-15 11:41:11 +01001079 if (fixup_options(td))
1080 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +01001081
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01001082 flow_init_job(td);
1083
Steven Langde890a12011-11-09 14:03:34 +01001084 /*
1085 * IO engines only need this for option callbacks, and the address may
1086 * change in subprocesses.
1087 */
1088 if (td->eo)
1089 *(struct thread_data **)td->eo = NULL;
1090
Jens Axboe07eb79d2007-04-12 13:02:38 +02001091 if (td->io_ops->flags & FIO_DISKLESSIO) {
1092 struct fio_file *f;
1093
1094 for_each_file(td, f, i)
1095 f->real_file_size = -1ULL;
1096 }
1097
Jens Axboe521da522012-08-02 11:21:36 +02001098 td->mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
Jens Axboeebac4652005-12-08 15:25:21 +01001099
Jens Axboede98bd32013-04-05 11:09:20 +02001100 td->ts.clat_percentiles = o->clat_percentiles;
1101 td->ts.percentile_precision = o->percentile_precision;
1102 memcpy(td->ts.percentile_list, o->percentile_list, sizeof(o->percentile_list));
Yu-ju Hong83349192011-08-13 00:53:44 +02001103
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001104 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1105 td->ts.clat_stat[i].min_val = ULONG_MAX;
1106 td->ts.slat_stat[i].min_val = ULONG_MAX;
1107 td->ts.lat_stat[i].min_val = ULONG_MAX;
1108 td->ts.bw_stat[i].min_val = ULONG_MAX;
1109 }
Jens Axboede98bd32013-04-05 11:09:20 +02001110 td->ddir_seq_nr = o->ddir_seq_nr;
Jens Axboeebac4652005-12-08 15:25:21 +01001111
Jens Axboede98bd32013-04-05 11:09:20 +02001112 if ((o->stonewall || o->new_group) && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001113 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001114 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001115 }
Jens Axboeebac4652005-12-08 15:25:21 +01001116
1117 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001118 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +01001119
Jens Axboe9dbc7bf2013-01-23 09:26:53 -07001120 if (setup_random_seeds(td)) {
Bruce Cran93bcfd22012-02-20 20:18:19 +01001121 td_verror(td, errno, "init_random_state");
Jens Axboe9c60ce62007-03-15 09:14:47 +01001122 goto err;
Bruce Cran93bcfd22012-02-20 20:18:19 +01001123 }
Jens Axboe9c60ce62007-03-15 09:14:47 +01001124
Jens Axboeebac4652005-12-08 15:25:21 +01001125 if (setup_rate(td))
1126 goto err;
1127
Jens Axboe8e255772014-04-01 13:34:49 -06001128 if (o->lat_log_file || write_lat_log) {
Jens Axboe22f80452013-04-09 20:29:16 +02001129 setup_log(&td->lat_log, o->log_avg_msec, IO_LOG_TYPE_LAT);
1130 setup_log(&td->slat_log, o->log_avg_msec, IO_LOG_TYPE_SLAT);
1131 setup_log(&td->clat_log, o->log_avg_msec, IO_LOG_TYPE_CLAT);
Jens Axboeebac4652005-12-08 15:25:21 +01001132 }
Jens Axboe8e255772014-04-01 13:34:49 -06001133 if (o->bw_log_file || write_bw_log)
Jens Axboe22f80452013-04-09 20:29:16 +02001134 setup_log(&td->bw_log, o->log_avg_msec, IO_LOG_TYPE_BW);
1135 if (o->iops_log_file)
1136 setup_log(&td->iops_log, o->log_avg_msec, IO_LOG_TYPE_IOPS);
Jens Axboeebac4652005-12-08 15:25:21 +01001137
Jens Axboede98bd32013-04-05 11:09:20 +02001138 if (!o->name)
1139 o->name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +02001140
Jens Axboef3afa572012-09-17 13:34:16 +02001141 if (output_format == FIO_OUTPUT_NORMAL) {
Jens Axboeb990b5c2006-09-14 09:48:22 +02001142 if (!job_add_num) {
Jens Axboeb7cfb2e2012-03-12 07:47:27 +01001143 if (is_backend && !recursed)
Jens Axboe2f122b12012-03-15 13:10:19 +01001144 fio_server_send_add_job(td);
Jens Axboe807f9972012-03-02 10:25:24 +01001145
Jens Axboe03530502012-03-19 21:45:12 +01001146 if (!(td->io_ops->flags & FIO_NOIO)) {
Jens Axboed21e2532013-07-25 13:01:11 -06001147 char *c1, *c2, *c3, *c4;
1148 char *c5 = NULL, *c6 = NULL;
Jens Axboef8977ee2006-11-06 14:03:03 +01001149
Jens Axboe22f80452013-04-09 20:29:16 +02001150 c1 = fio_uint_to_kmg(o->min_bs[DDIR_READ]);
1151 c2 = fio_uint_to_kmg(o->max_bs[DDIR_READ]);
1152 c3 = fio_uint_to_kmg(o->min_bs[DDIR_WRITE]);
1153 c4 = fio_uint_to_kmg(o->max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +01001154
Jens Axboed21e2532013-07-25 13:01:11 -06001155 if (!o->bs_is_seq_rand) {
1156 c5 = fio_uint_to_kmg(o->min_bs[DDIR_TRIM]);
1157 c6 = fio_uint_to_kmg(o->max_bs[DDIR_TRIM]);
1158 }
1159
1160 log_info("%s: (g=%d): rw=%s, ", td->o.name,
1161 td->groupid,
1162 ddir_str(o->td_ddir));
1163
1164 if (o->bs_is_seq_rand)
1165 log_info("bs(seq/rand)=%s-%s/%s-%s, ",
1166 c1, c2, c3, c4);
1167 else
1168 log_info("bs=%s-%s/%s-%s/%s-%s, ",
1169 c1, c2, c3, c4, c5, c6);
1170
1171 log_info("ioengine=%s, iodepth=%u\n",
Jens Axboede98bd32013-04-05 11:09:20 +02001172 td->io_ops->name, o->iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +01001173
1174 free(c1);
1175 free(c2);
1176 free(c3);
1177 free(c4);
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001178 free(c5);
1179 free(c6);
Jens Axboef8977ee2006-11-06 14:03:03 +01001180 }
Jens Axboeb990b5c2006-09-14 09:48:22 +02001181 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +01001182 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +02001183 }
Jens Axboeebac4652005-12-08 15:25:21 +01001184
1185 /*
1186 * recurse add identical jobs, clear numjobs and stonewall options
1187 * as they don't apply to sub-jobs
1188 */
Jens Axboede98bd32013-04-05 11:09:20 +02001189 numjobs = o->numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +01001190 while (--numjobs) {
Steven Langde890a12011-11-09 14:03:34 +01001191 struct thread_data *td_new = get_new_job(0, td, 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001192
1193 if (!td_new)
1194 goto err;
1195
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001196 td_new->o.numjobs = 1;
1197 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +02001198 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +01001199
1200 if (file_alloced) {
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001201 if (td_new->files) {
1202 struct fio_file *f;
1203 for_each_file(td_new, f, i) {
1204 if (f->file_name)
Andrey Kuzminece6d642014-04-01 12:27:04 -06001205 sfree(f->file_name);
1206 sfree(f);
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001207 }
Andrey Kuzminece6d642014-04-01 12:27:04 -06001208 free(td_new->files);
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001209 td_new->files = NULL;
1210 }
Andrey Kuzminece6d642014-04-01 12:27:04 -06001211 td_new->files_index = 0;
1212 td_new->files_size = 0;
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001213 if (td_new->o.filename) {
1214 free(td_new->o.filename);
1215 td_new->o.filename = NULL;
1216 }
Jens Axboee132cba2007-03-14 14:23:54 +01001217 }
1218
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001219 if (add_job(td_new, jobname, numjobs, 1, client_type))
Jens Axboeebac4652005-12-08 15:25:21 +01001220 goto err;
1221 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001222
Jens Axboeebac4652005-12-08 15:25:21 +01001223 return 0;
1224err:
1225 put_job(td);
1226 return -1;
1227}
1228
Jens Axboe79d16312010-03-04 12:43:20 +01001229/*
1230 * Parse as if 'o' was a command line
1231 */
Jens Axboe46bcd492012-03-14 11:31:21 +01001232void add_job_opts(const char **o, int client_type)
Jens Axboe79d16312010-03-04 12:43:20 +01001233{
1234 struct thread_data *td, *td_parent;
1235 int i, in_global = 1;
1236 char jobname[32];
1237
1238 i = 0;
1239 td_parent = td = NULL;
1240 while (o[i]) {
1241 if (!strncmp(o[i], "name", 4)) {
1242 in_global = 0;
1243 if (td)
Jens Axboe46bcd492012-03-14 11:31:21 +01001244 add_job(td, jobname, 0, 0, client_type);
Jens Axboe79d16312010-03-04 12:43:20 +01001245 td = NULL;
1246 sprintf(jobname, "%s", o[i] + 5);
1247 }
1248 if (in_global && !td_parent)
Steven Langde890a12011-11-09 14:03:34 +01001249 td_parent = get_new_job(1, &def_thread, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001250 else if (!in_global && !td) {
1251 if (!td_parent)
1252 td_parent = &def_thread;
Steven Langde890a12011-11-09 14:03:34 +01001253 td = get_new_job(0, td_parent, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001254 }
1255 if (in_global)
Jens Axboe292cc472013-11-26 20:39:35 -07001256 fio_options_parse(td_parent, (char **) &o[i], 1, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001257 else
Jens Axboe292cc472013-11-26 20:39:35 -07001258 fio_options_parse(td, (char **) &o[i], 1, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001259 i++;
1260 }
1261
1262 if (td)
Jens Axboe46bcd492012-03-14 11:31:21 +01001263 add_job(td, jobname, 0, 0, client_type);
Jens Axboe79d16312010-03-04 12:43:20 +01001264}
1265
Jens Axboe01f06b62008-02-18 20:53:47 +01001266static int skip_this_section(const char *name)
1267{
Jens Axboead0a2732011-03-11 10:16:17 +01001268 int i;
1269
1270 if (!nr_job_sections)
Jens Axboe01f06b62008-02-18 20:53:47 +01001271 return 0;
1272 if (!strncmp(name, "global", 6))
1273 return 0;
1274
Jens Axboead0a2732011-03-11 10:16:17 +01001275 for (i = 0; i < nr_job_sections; i++)
1276 if (!strcmp(job_sections[i], name))
1277 return 0;
1278
1279 return 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001280}
1281
Jens Axboeebac4652005-12-08 15:25:21 +01001282static int is_empty_or_comment(char *line)
1283{
1284 unsigned int i;
1285
1286 for (i = 0; i < strlen(line); i++) {
1287 if (line[i] == ';')
1288 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +01001289 if (line[i] == '#')
1290 return 1;
Jens Axboe76cd9372011-07-08 21:14:57 +02001291 if (!isspace((int) line[i]) && !iscntrl((int) line[i]))
Jens Axboeebac4652005-12-08 15:25:21 +01001292 return 0;
1293 }
1294
1295 return 1;
1296}
1297
Jens Axboe313cb202006-12-21 09:50:00 +01001298/*
Jens Axboe07261982006-06-07 10:51:12 +02001299 * This is our [ini] type file parser.
1300 */
Jens Axboe46bcd492012-03-14 11:31:21 +01001301int parse_jobs_ini(char *file, int is_buf, int stonewall_flag, int type)
Jens Axboeebac4652005-12-08 15:25:21 +01001302{
Jens Axboee1f36502006-10-27 10:54:08 +02001303 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +01001304 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +01001305 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +01001306 FILE *f;
1307 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001308 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +02001309 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +02001310 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +01001311 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +02001312 char **opts;
1313 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +01001314
Jens Axboe50d16972011-09-29 17:45:28 -06001315 if (is_buf)
1316 f = NULL;
1317 else {
1318 if (!strcmp(file, "-"))
1319 f = stdin;
1320 else
1321 f = fopen(file, "r");
Aaron Carroll5a729cb2007-09-27 09:03:55 +02001322
Jens Axboe50d16972011-09-29 17:45:28 -06001323 if (!f) {
1324 perror("fopen job file");
1325 return 1;
1326 }
Jens Axboeebac4652005-12-08 15:25:21 +01001327 }
1328
1329 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +02001330
1331 /*
1332 * it's really 256 + small bit, 280 should suffice
1333 */
1334 name = malloc(280);
1335 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +01001336
Jens Axboe3b8b7132008-06-10 19:46:23 +02001337 alloc_opts = 8;
1338 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +02001339 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +02001340
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001341 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001342 do {
Jens Axboeccf8f122007-09-27 10:48:55 +02001343 /*
1344 * if skip_fgets is set, we already have loaded a line we
1345 * haven't handled.
1346 */
1347 if (!skip_fgets) {
Jens Axboe50d16972011-09-29 17:45:28 -06001348 if (is_buf)
1349 p = strsep(&file, "\n");
1350 else
Jens Axboe43f74792011-10-15 14:37:26 +02001351 p = fgets(string, 4096, f);
Jens Axboeccf8f122007-09-27 10:48:55 +02001352 if (!p)
1353 break;
1354 }
gurudas paicdc7f192007-03-29 10:10:56 +02001355
Jens Axboeccf8f122007-09-27 10:48:55 +02001356 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +02001357 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -08001358 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +02001359
Jens Axboeebac4652005-12-08 15:25:21 +01001360 if (is_empty_or_comment(p))
1361 continue;
Bruce Cran84dd1882011-05-05 08:14:09 -06001362 if (sscanf(p, "[%255[^\n]]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001363 if (inside_skip)
1364 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001365 log_err("fio: option <%s> outside of [] job section\n",
1366 p);
Jens Axboe088b4202007-07-19 14:53:01 +02001367 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -08001368 }
Jens Axboeebac4652005-12-08 15:25:21 +01001369
Jens Axboe7a4b80a2010-05-22 20:43:11 +02001370 name[strlen(name) - 1] = '\0';
1371
Jens Axboe01f06b62008-02-18 20:53:47 +01001372 if (skip_this_section(name)) {
1373 inside_skip = 1;
1374 continue;
1375 } else
1376 inside_skip = 0;
1377
Jens Axboeebac4652005-12-08 15:25:21 +01001378 global = !strncmp(name, "global", 6);
1379
Jens Axboecca73aa2007-04-04 11:09:19 +02001380 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +02001381 if (first_sect)
1382 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +02001383 if (!global)
1384 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +02001385 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02001386 }
1387
Steven Langde890a12011-11-09 14:03:34 +01001388 td = get_new_job(global, &def_thread, 0);
Jens Axboe45410ac2006-06-07 11:10:39 +02001389 if (!td) {
1390 ret = 1;
1391 break;
1392 }
Jens Axboeebac4652005-12-08 15:25:21 +01001393
Jens Axboe972cfd22006-06-09 11:08:56 +02001394 /*
Anatol Pomozovde8f6de2013-09-26 16:31:34 -07001395 * Separate multiple job files by a stonewall
Jens Axboe972cfd22006-06-09 11:08:56 +02001396 */
Jens Axboef9481912006-06-09 11:37:28 +02001397 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001398 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +02001399 stonewall = 0;
1400 }
1401
Jens Axboe3b8b7132008-06-10 19:46:23 +02001402 num_opts = 0;
1403 memset(opts, 0, alloc_opts * sizeof(char *));
1404
Jens Axboe50d16972011-09-29 17:45:28 -06001405 while (1) {
1406 if (is_buf)
1407 p = strsep(&file, "\n");
1408 else
1409 p = fgets(string, 4096, f);
1410 if (!p)
1411 break;
1412
Jens Axboeebac4652005-12-08 15:25:21 +01001413 if (is_empty_or_comment(p))
1414 continue;
Jens Axboee1f36502006-10-27 10:54:08 +02001415
Jens Axboeb6754f92006-05-30 14:29:32 +02001416 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +01001417
Jens Axboeccf8f122007-09-27 10:48:55 +02001418 /*
1419 * new section, break out and make sure we don't
1420 * fgets() a new line at the top.
1421 */
1422 if (p[0] == '[') {
1423 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001424 break;
Jens Axboeccf8f122007-09-27 10:48:55 +02001425 }
Jens Axboe7c124ac2006-10-30 13:36:52 +01001426
Jens Axboe4ae3f762006-05-30 13:35:14 +02001427 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +02001428
Jens Axboe3b8b7132008-06-10 19:46:23 +02001429 if (num_opts == alloc_opts) {
1430 alloc_opts <<= 1;
1431 opts = realloc(opts,
1432 alloc_opts * sizeof(char *));
1433 }
1434
1435 opts[num_opts] = strdup(p);
1436 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +01001437 }
Jens Axboeebac4652005-12-08 15:25:21 +01001438
Jens Axboe292cc472013-11-26 20:39:35 -07001439 ret = fio_options_parse(td, opts, num_opts, dump_cmdline);
1440 if (!ret)
Jens Axboe46bcd492012-03-14 11:31:21 +01001441 ret = add_job(td, name, 0, 0, type);
Jens Axboe292cc472013-11-26 20:39:35 -07001442 else {
Jens Axboeb1508cf2006-11-02 09:12:40 +01001443 log_err("fio: job %s dropped\n", name);
1444 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +02001445 }
Jens Axboe3b8b7132008-06-10 19:46:23 +02001446
1447 for (i = 0; i < num_opts; i++)
1448 free(opts[i]);
1449 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001450 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001451
Jens Axboecca73aa2007-04-04 11:09:19 +02001452 if (dump_cmdline)
1453 log_info("\n");
1454
Jens Axboe7e356b22011-10-14 10:55:16 +02001455 i = 0;
1456 while (i < nr_job_sections) {
1457 free(job_sections[i]);
1458 i++;
1459 }
1460
Jens Axboeebac4652005-12-08 15:25:21 +01001461 free(string);
1462 free(name);
Jens Axboe25775942008-06-10 20:26:06 +02001463 free(opts);
Jens Axboe50d16972011-09-29 17:45:28 -06001464 if (!is_buf && f != stdin)
Aaron Carroll5a729cb2007-09-27 09:03:55 +02001465 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +02001466 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001467}
1468
1469static int fill_def_thread(void)
1470{
1471 memset(&def_thread, 0, sizeof(def_thread));
1472
Jens Axboe375b2692007-05-22 09:13:02 +02001473 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04001474 def_thread.o.error_dump = 1;
Jens Axboe25bd16c2014-04-06 10:09:30 -06001475
Jens Axboeebac4652005-12-08 15:25:21 +01001476 /*
Jens Axboeee738492007-01-10 11:23:16 +01001477 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +01001478 */
Jens Axboe214e1ec2007-03-15 10:48:13 +01001479 fio_fill_default_options(&def_thread);
Jens Axboeebac4652005-12-08 15:25:21 +01001480 return 0;
1481}
1482
Jens Axboe45378b32007-12-19 13:54:38 +01001483static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +02001484{
Jens Axboe3d433822012-03-21 22:25:22 +01001485 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +01001486 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboe83881282011-10-17 19:58:51 +02001487 printf(" --debug=options\tEnable debug logging. May be one/more of:\n"
1488 "\t\t\tprocess,file,io,mem,blktrace,verify,random,parse,\n"
Jens Axboe3e260a42013-12-09 12:38:53 -07001489 "\t\t\tdiskutil,job,mutex,profile,time,net,rate\n");
Jens Axboe111e0322013-03-07 11:31:20 +01001490 printf(" --parse-only\t\tParse options only, don't start any IO\n");
Jens Axboe83881282011-10-17 19:58:51 +02001491 printf(" --output\t\tWrite output to file\n");
liang xieb2cecdc2012-08-31 08:22:42 -07001492 printf(" --runtime\t\tRuntime in seconds\n");
Jens Axboe83881282011-10-17 19:58:51 +02001493 printf(" --latency-log\t\tGenerate per-job latency logs\n");
1494 printf(" --bandwidth-log\tGenerate per-job bandwidth logs\n");
1495 printf(" --minimal\t\tMinimal (terse) output\n");
Jens Axboef3afa572012-09-17 13:34:16 +02001496 printf(" --output-format=x\tOutput format (terse,json,normal)\n");
Jens Axboe75db6e22011-11-07 22:07:36 +01001497 printf(" --terse-version=x\tSet terse version output format to 'x'\n");
Jens Axboef3afa572012-09-17 13:34:16 +02001498 printf(" --version\t\tPrint version info and exit\n");
Jens Axboe83881282011-10-17 19:58:51 +02001499 printf(" --help\t\tPrint this page\n");
Jens Axboe23893642012-12-17 14:44:08 +01001500 printf(" --cpuclock-test\tPerform test/validation of CPU clock\n");
Jens Axboefec0f212014-02-07 14:39:33 -07001501 printf(" --crctest\t\tTest speed of checksum functions\n");
Jens Axboe83881282011-10-17 19:58:51 +02001502 printf(" --cmdhelp=cmd\t\tPrint command help, \"all\" for all of"
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001503 " them\n");
Steven Langde890a12011-11-09 14:03:34 +01001504 printf(" --enghelp=engine\tPrint ioengine help, or list"
1505 " available ioengines\n");
1506 printf(" --enghelp=engine,cmd\tPrint help for an ioengine"
1507 " cmd\n");
Jens Axboe83881282011-10-17 19:58:51 +02001508 printf(" --showcmd\t\tTurn a job file into command line options\n");
1509 printf(" --eta=when\t\tWhen ETA estimate should be printed\n");
1510 printf(" \t\tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboee382e662013-02-22 20:48:56 +01001511 printf(" --eta-newline=time\tForce a new line for every 'time'");
1512 printf(" period passed\n");
Jens Axboe06464902013-04-24 20:38:54 -06001513 printf(" --status-interval=t\tForce full status dump every");
1514 printf(" 't' period passed\n");
Jens Axboe83881282011-10-17 19:58:51 +02001515 printf(" --readonly\t\tTurn on safety read-only checks, preventing"
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001516 " writes\n");
Jens Axboe83881282011-10-17 19:58:51 +02001517 printf(" --section=name\tOnly run specified section in job file\n");
1518 printf(" --alloc-size=kb\tSet smalloc pool to this size in kb"
Jens Axboe2b386d22008-03-26 10:32:57 +01001519 " (def 1024)\n");
Jens Axboe83881282011-10-17 19:58:51 +02001520 printf(" --warnings-fatal\tFio parser warnings are fatal\n");
1521 printf(" --max-jobs=nr\t\tMaximum number of threads/processes to support\n");
1522 printf(" --server=args\t\tStart a backend fio server\n");
1523 printf(" --daemonize=pidfile\tBackground fio server, write pid to file\n");
1524 printf(" --client=hostname\tTalk to remote backend fio server at hostname\n");
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001525 printf(" --idle-prof=option\tReport cpu idleness on a system or percpu basis\n"
1526 "\t\t\t(option=system,percpu) or run unit work\n"
1527 "\t\t\tcalibration only (option=calibrate)\n");
Jens Axboeaa58d252010-06-09 09:49:38 +02001528 printf("\nFio was written by Jens Axboe <jens.axboe@oracle.com>");
Jens Axboebfca2c72014-01-29 16:39:04 -07001529 printf("\n Jens Axboe <jaxboe@fusionio.com>");
1530 printf("\n Jens Axboe <axboe@fb.com>\n");
Jens Axboeb4692822006-10-27 13:43:22 +02001531}
1532
Jens Axboe79e48f72008-02-01 20:37:09 +01001533#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +01001534struct debug_level debug_levels[] = {
Jens Axboe0b8d11e2012-03-02 19:44:15 +01001535 { .name = "process",
1536 .help = "Process creation/exit logging",
1537 .shift = FD_PROCESS,
1538 },
1539 { .name = "file",
1540 .help = "File related action logging",
1541 .shift = FD_FILE,
1542 },
1543 { .name = "io",
1544 .help = "IO and IO engine action logging (offsets, queue, completions, etc)",
1545 .shift = FD_IO,
1546 },
1547 { .name = "mem",
1548 .help = "Memory allocation/freeing logging",
1549 .shift = FD_MEM,
1550 },
1551 { .name = "blktrace",
1552 .help = "blktrace action logging",
1553 .shift = FD_BLKTRACE,
1554 },
1555 { .name = "verify",
1556 .help = "IO verification action logging",
1557 .shift = FD_VERIFY,
1558 },
1559 { .name = "random",
1560 .help = "Random generation logging",
1561 .shift = FD_RANDOM,
1562 },
1563 { .name = "parse",
1564 .help = "Parser logging",
1565 .shift = FD_PARSE,
1566 },
1567 { .name = "diskutil",
1568 .help = "Disk utility logging actions",
1569 .shift = FD_DISKUTIL,
1570 },
1571 { .name = "job",
1572 .help = "Logging related to creating/destroying jobs",
1573 .shift = FD_JOB,
1574 },
1575 { .name = "mutex",
1576 .help = "Mutex logging",
1577 .shift = FD_MUTEX
1578 },
1579 { .name = "profile",
1580 .help = "Logging related to profiles",
1581 .shift = FD_PROFILE,
1582 },
1583 { .name = "time",
1584 .help = "Logging related to time keeping functions",
1585 .shift = FD_TIME,
1586 },
1587 { .name = "net",
1588 .help = "Network logging",
1589 .shift = FD_NET,
1590 },
Jens Axboe3e260a42013-12-09 12:38:53 -07001591 { .name = "rate",
1592 .help = "Rate logging",
1593 .shift = FD_RATE,
1594 },
Jens Axboe02444ad2008-10-07 11:33:00 +02001595 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +01001596};
1597
Jens Axboec09823a2008-02-19 20:16:57 +01001598static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +01001599{
1600 struct debug_level *dl;
1601 char *p = (char *) string;
1602 char *opt;
1603 int i;
1604
1605 if (!strcmp(string, "?") || !strcmp(string, "help")) {
Jens Axboeee56ad52008-02-01 10:30:20 +01001606 log_info("fio: dumping debug options:");
1607 for (i = 0; debug_levels[i].name; i++) {
1608 dl = &debug_levels[i];
1609 log_info("%s,", dl->name);
1610 }
Jens Axboebd6f78b2008-02-01 20:27:52 +01001611 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001612 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +01001613 }
1614
1615 while ((opt = strsep(&p, ",")) != NULL) {
1616 int found = 0;
1617
Jens Axboe5e1d3062008-05-23 11:55:53 +02001618 if (!strncmp(opt, "all", 3)) {
1619 log_info("fio: set all debug options\n");
1620 fio_debug = ~0UL;
1621 continue;
1622 }
1623
Jens Axboeee56ad52008-02-01 10:30:20 +01001624 for (i = 0; debug_levels[i].name; i++) {
1625 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +02001626 found = !strncmp(opt, dl->name, strlen(dl->name));
1627 if (!found)
1628 continue;
1629
1630 if (dl->shift == FD_JOB) {
1631 opt = strchr(opt, ':');
1632 if (!opt) {
1633 log_err("fio: missing job number\n");
1634 break;
1635 }
1636 opt++;
1637 fio_debug_jobno = atoi(opt);
1638 log_info("fio: set debug jobno %d\n",
1639 fio_debug_jobno);
1640 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001641 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001642 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +01001643 }
Jens Axboe5e1d3062008-05-23 11:55:53 +02001644 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001645 }
1646
1647 if (!found)
1648 log_err("fio: debug mask %s not found\n", opt);
1649 }
Jens Axboec09823a2008-02-19 20:16:57 +01001650 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +01001651}
Jens Axboe79e48f72008-02-01 20:37:09 +01001652#else
Jens Axboe69b98d42008-05-30 22:25:32 +02001653static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +01001654{
1655 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001656 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +01001657}
1658#endif
Jens Axboeee56ad52008-02-01 10:30:20 +01001659
Jens Axboe4c6107f2011-01-18 05:22:22 -07001660static void fio_options_fill_optstring(void)
1661{
1662 char *ostr = cmd_optstr;
1663 int i, c;
1664
1665 c = i = 0;
1666 while (l_opts[i].name) {
1667 ostr[c++] = l_opts[i].val;
1668 if (l_opts[i].has_arg == required_argument)
1669 ostr[c++] = ':';
1670 else if (l_opts[i].has_arg == optional_argument) {
1671 ostr[c++] = ':';
1672 ostr[c++] = ':';
1673 }
1674 i++;
1675 }
1676 ostr[c] = '\0';
1677}
1678
Jens Axboec2c94582011-10-05 20:31:30 +02001679static int client_flag_set(char c)
1680{
1681 int i;
1682
1683 i = 0;
1684 while (l_opts[i].name) {
1685 int val = l_opts[i].val;
1686
1687 if (c == (val & 0xff))
1688 return (val & FIO_CLIENT_FLAG);
1689
1690 i++;
1691 }
1692
1693 return 0;
1694}
1695
Jens Axboe10aa1362014-04-01 21:10:36 -06001696static void parse_cmd_client(void *client, char *opt)
Jens Axboe7a4b8242011-10-05 17:35:15 +02001697{
Jens Axboefa2ea802011-10-08 21:07:29 +02001698 fio_client_add_cmd_option(client, opt);
Jens Axboe7a4b8242011-10-05 17:35:15 +02001699}
1700
Jens Axboe46bcd492012-03-14 11:31:21 +01001701int parse_cmd_line(int argc, char *argv[], int client_type)
Jens Axboe214e1ec2007-03-15 10:48:13 +01001702{
1703 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +01001704 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe4c6107f2011-01-18 05:22:22 -07001705 char *ostr = cmd_optstr;
Jens Axboe402668f2011-10-10 15:28:58 +02001706 void *pid_file = NULL;
Jens Axboe9bae26e2011-10-07 10:07:22 +02001707 void *cur_client = NULL;
Jens Axboe81179ee2011-10-04 12:42:06 +02001708 int backend = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001709
Jens Axboec2c94582011-10-05 20:31:30 +02001710 /*
1711 * Reset optind handling, since we may call this multiple times
1712 * for the backend.
1713 */
1714 optind = 1;
Jens Axboe7a4b8242011-10-05 17:35:15 +02001715
Jens Axboec2c94582011-10-05 20:31:30 +02001716 while ((c = getopt_long_only(argc, argv, ostr, l_opts, &lidx)) != -1) {
Jens Axboe085399d2011-10-06 09:01:22 +02001717 did_arg = 1;
1718
Jens Axboec2c94582011-10-05 20:31:30 +02001719 if ((c & FIO_CLIENT_FLAG) || client_flag_set(c)) {
Jens Axboefa2ea802011-10-08 21:07:29 +02001720 parse_cmd_client(cur_client, argv[optind - 1]);
Jens Axboe7a4b8242011-10-05 17:35:15 +02001721 c &= ~FIO_CLIENT_FLAG;
1722 }
1723
Jens Axboe214e1ec2007-03-15 10:48:13 +01001724 switch (c) {
Jens Axboe2b386d22008-03-26 10:32:57 +01001725 case 'a':
1726 smalloc_pool_size = atoi(optarg);
1727 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001728 case 't':
Jens Axboe25bd16c2014-04-06 10:09:30 -06001729 if (check_str_time(optarg, &def_timeout, 1)) {
1730 log_err("fio: failed parsing time %s\n", optarg);
1731 do_exit++;
1732 exit_val = 1;
1733 }
Jens Axboe214e1ec2007-03-15 10:48:13 +01001734 break;
1735 case 'l':
1736 write_lat_log = 1;
1737 break;
Jens Axboe3d73e5a2010-03-25 10:38:07 +01001738 case 'b':
Jens Axboe214e1ec2007-03-15 10:48:13 +01001739 write_bw_log = 1;
1740 break;
1741 case 'o':
Jens Axboe5e1d8742014-04-11 11:39:46 -06001742 if (f_out)
1743 fclose(f_out);
1744
Jens Axboe214e1ec2007-03-15 10:48:13 +01001745 f_out = fopen(optarg, "w+");
1746 if (!f_out) {
1747 perror("fopen output");
1748 exit(1);
1749 }
1750 f_err = f_out;
1751 break;
1752 case 'm':
Jens Axboef3afa572012-09-17 13:34:16 +02001753 output_format = FIO_OUTPUT_TERSE;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001754 break;
Jens Axboef3afa572012-09-17 13:34:16 +02001755 case 'F':
Stefan Hajnoczid10983d2014-02-04 14:27:11 +01001756 if (!optarg) {
1757 log_err("fio: missing --output-format argument\n");
1758 exit_val = 1;
1759 do_exit++;
1760 break;
1761 }
Jens Axboef3afa572012-09-17 13:34:16 +02001762 if (!strcmp(optarg, "minimal") ||
1763 !strcmp(optarg, "terse") ||
1764 !strcmp(optarg, "csv"))
1765 output_format = FIO_OUTPUT_TERSE;
1766 else if (!strcmp(optarg, "json"))
1767 output_format = FIO_OUTPUT_JSON;
1768 else
1769 output_format = FIO_OUTPUT_NORMAL;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001770 break;
Christian Ehrhardt2b8c71b2014-02-20 14:20:04 +01001771 case 'f':
1772 append_terse_output = 1;
1773 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001774 case 'h':
Jens Axboe7874f8b2011-10-06 09:18:20 +02001775 if (!cur_client) {
Jens Axboec2c94582011-10-05 20:31:30 +02001776 usage(argv[0]);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001777 do_exit++;
1778 }
Jens Axboec2c94582011-10-05 20:31:30 +02001779 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001780 case 'c':
Jens Axboe7874f8b2011-10-06 09:18:20 +02001781 if (!cur_client) {
Jens Axboec2c94582011-10-05 20:31:30 +02001782 fio_show_option_help(optarg);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001783 do_exit++;
1784 }
Jens Axboec2c94582011-10-05 20:31:30 +02001785 break;
Steven Langde890a12011-11-09 14:03:34 +01001786 case 'i':
1787 if (!cur_client) {
1788 fio_show_ioengine_help(optarg);
1789 do_exit++;
1790 }
1791 break;
Jens Axboecca73aa2007-04-04 11:09:19 +02001792 case 's':
1793 dump_cmdline = 1;
1794 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001795 case 'r':
1796 read_only = 1;
1797 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001798 case 'v':
Jens Axboe7874f8b2011-10-06 09:18:20 +02001799 if (!cur_client) {
Jens Axboe3d433822012-03-21 22:25:22 +01001800 log_info("%s\n", fio_version_string);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001801 do_exit++;
1802 }
Jens Axboec2c94582011-10-05 20:31:30 +02001803 break;
Jens Axboef57a9c52011-09-09 21:01:37 +02001804 case 'V':
1805 terse_version = atoi(optarg);
Jens Axboe09786f52012-10-04 17:06:49 +02001806 if (!(terse_version == 2 || terse_version == 3 ||
1807 terse_version == 4)) {
Jens Axboef57a9c52011-09-09 21:01:37 +02001808 log_err("fio: bad terse version format\n");
1809 exit_val = 1;
1810 do_exit++;
1811 }
1812 break;
Aaron Carrolle592a062007-09-14 09:49:41 +02001813 case 'e':
1814 if (!strcmp("always", optarg))
1815 eta_print = FIO_ETA_ALWAYS;
1816 else if (!strcmp("never", optarg))
1817 eta_print = FIO_ETA_NEVER;
1818 break;
Jens Axboee382e662013-02-22 20:48:56 +01001819 case 'E': {
1820 long long t = 0;
1821
Jens Axboe0de5b262014-02-21 15:26:01 -08001822 if (str_to_decimal(optarg, &t, 0, NULL, 1)) {
Jens Axboee382e662013-02-22 20:48:56 +01001823 log_err("fio: failed parsing eta time %s\n", optarg);
1824 exit_val = 1;
1825 do_exit++;
1826 }
1827 eta_new_line = t;
1828 break;
1829 }
Jens Axboeee56ad52008-02-01 10:30:20 +01001830 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001831 if (set_debug(optarg))
1832 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001833 break;
Jens Axboe111e0322013-03-07 11:31:20 +01001834 case 'P':
1835 parse_only = 1;
1836 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001837 case 'x': {
1838 size_t new_size;
1839
Jens Axboe01f06b62008-02-18 20:53:47 +01001840 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001841 log_err("fio: can't use global as only "
1842 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001843 do_exit++;
1844 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001845 break;
1846 }
Jens Axboead0a2732011-03-11 10:16:17 +01001847 new_size = (nr_job_sections + 1) * sizeof(char *);
1848 job_sections = realloc(job_sections, new_size);
1849 job_sections[nr_job_sections] = strdup(optarg);
1850 nr_job_sections++;
Jens Axboe01f06b62008-02-18 20:53:47 +01001851 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001852 }
Jens Axboe9ac8a792009-11-13 21:23:07 +01001853 case 'p':
Jens Axboe4af7c002014-04-11 11:38:38 -06001854 if (exec_profile)
1855 free(exec_profile);
Jens Axboe07b32322010-03-05 09:48:44 +01001856 exec_profile = strdup(optarg);
Jens Axboe9ac8a792009-11-13 21:23:07 +01001857 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001858 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001859 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001860 char *val = optarg;
1861
1862 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe46bcd492012-03-14 11:31:21 +01001863 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
Jens Axboe66251552011-05-12 10:14:57 +02001864 if (ret)
Jens Axboe4a4ac4e2014-04-14 08:17:30 -06001865 goto out_free;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001866 td = NULL;
1867 }
1868 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001869 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001870 int global = 0;
1871
Jens Axboe01f06b62008-02-18 20:53:47 +01001872 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001873 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001874
Jens Axboe01f06b62008-02-18 20:53:47 +01001875 if (is_section && skip_this_section(val))
1876 continue;
1877
Steven Langde890a12011-11-09 14:03:34 +01001878 td = get_new_job(global, &def_thread, 1);
1879 if (!td || ioengine_load(td))
Jens Axboe4a4ac4e2014-04-14 08:17:30 -06001880 goto out_free;
Steven Langde890a12011-11-09 14:03:34 +01001881 fio_options_set_ioengine_opts(l_opts, td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001882 }
1883
Jens Axboe9d918182013-05-23 20:00:35 +02001884 if ((!val || !strlen(val)) &&
1885 l_opts[lidx].has_arg == required_argument) {
1886 log_err("fio: option %s requires an argument\n", opt);
1887 ret = 1;
1888 } else
1889 ret = fio_cmd_option_parse(td, opt, val);
1890
Jens Axboebfb3ea22013-05-23 19:54:43 +02001891 if (ret) {
1892 if (td) {
1893 put_job(td);
1894 td = NULL;
1895 }
Jens Axboea88c8c12013-04-24 22:25:22 -06001896 do_exit++;
Jens Axboebfb3ea22013-05-23 19:54:43 +02001897 }
Steven Langde890a12011-11-09 14:03:34 +01001898
1899 if (!ret && !strcmp(opt, "ioengine")) {
1900 free_ioengine(td);
1901 if (ioengine_load(td))
Jens Axboe4a4ac4e2014-04-14 08:17:30 -06001902 goto out_free;
Steven Langde890a12011-11-09 14:03:34 +01001903 fio_options_set_ioengine_opts(l_opts, td);
1904 }
1905 break;
1906 }
1907 case FIO_GETOPT_IOENGINE: {
1908 const char *opt = l_opts[lidx].name;
1909 char *val = optarg;
Jens Axboeb1ed74e2014-04-14 12:07:36 -06001910
1911 if (!td)
1912 break;
1913
Steven Langde890a12011-11-09 14:03:34 +01001914 ret = fio_cmd_ioengine_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001915 break;
1916 }
Jens Axboea9523c62011-01-17 16:49:54 -07001917 case 'w':
1918 warnings_fatal = 1;
1919 break;
Jens Axboefca70352011-07-06 20:12:54 +02001920 case 'j':
1921 max_jobs = atoi(optarg);
1922 if (!max_jobs || max_jobs > REAL_MAX_JOBS) {
1923 log_err("fio: invalid max jobs: %d\n", max_jobs);
1924 do_exit++;
1925 exit_val = 1;
1926 }
1927 break;
Jens Axboe50d16972011-09-29 17:45:28 -06001928 case 'S':
Jens Axboea37f69b2011-10-01 12:24:21 -06001929 if (nr_clients) {
Jens Axboe132159a2011-09-30 15:01:32 -06001930 log_err("fio: can't be both client and server\n");
1931 do_exit++;
1932 exit_val = 1;
1933 break;
1934 }
Jens Axboe87aa8f12011-10-06 21:24:13 +02001935 if (optarg)
Jens Axboebebe6392011-10-07 10:00:51 +02001936 fio_server_set_arg(optarg);
Jens Axboe50d16972011-09-29 17:45:28 -06001937 is_backend = 1;
Jens Axboe81179ee2011-10-04 12:42:06 +02001938 backend = 1;
Jens Axboe50d16972011-09-29 17:45:28 -06001939 break;
Jens Axboee46d8092011-10-03 09:11:02 +02001940 case 'D':
Jens Axboe402668f2011-10-10 15:28:58 +02001941 pid_file = strdup(optarg);
Jens Axboee46d8092011-10-03 09:11:02 +02001942 break;
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001943 case 'I':
1944 if ((ret = fio_idle_prof_parse_opt(optarg))) {
1945 /* exit on error and calibration only */
1946 do_exit++;
1947 if (ret == -1)
1948 exit_val = 1;
1949 }
1950 break;
Jens Axboe132159a2011-09-30 15:01:32 -06001951 case 'C':
1952 if (is_backend) {
1953 log_err("fio: can't be both client and server\n");
1954 do_exit++;
1955 exit_val = 1;
1956 break;
1957 }
Jens Axboea5276612012-03-04 15:15:08 +01001958 if (fio_client_add(&fio_client_ops, optarg, &cur_client)) {
Jens Axboebebe6392011-10-07 10:00:51 +02001959 log_err("fio: failed adding client %s\n", optarg);
1960 do_exit++;
1961 exit_val = 1;
1962 break;
1963 }
Jens Axboe14ea90e2012-08-26 17:33:34 +02001964 /*
1965 * If the next argument exists and isn't an option,
1966 * assume it's a job file for this client only.
1967 */
1968 while (optind < argc) {
1969 if (!strncmp(argv[optind], "--", 2) ||
1970 !strncmp(argv[optind], "-", 1))
1971 break;
1972
1973 fio_client_add_ini_file(cur_client, argv[optind]);
1974 optind++;
1975 }
Jens Axboe132159a2011-09-30 15:01:32 -06001976 break;
Jens Axboe7d11f872012-12-17 12:03:29 +01001977 case 'T':
1978 do_exit++;
1979 exit_val = fio_monotonic_clocktest();
1980 break;
Jens Axboefec0f212014-02-07 14:39:33 -07001981 case 'G':
1982 do_exit++;
1983 exit_val = fio_crctest(optarg);
1984 break;
Jens Axboe06464902013-04-24 20:38:54 -06001985 case 'L': {
1986 long long val;
1987
Jens Axboe7cd0ec52014-03-28 08:09:10 -06001988 if (check_str_time(optarg, &val, 0)) {
Jens Axboe06464902013-04-24 20:38:54 -06001989 log_err("fio: failed parsing time %s\n", optarg);
1990 do_exit++;
1991 exit_val = 1;
1992 break;
1993 }
1994 status_interval = val * 1000;
1995 break;
1996 }
Jens Axboe798827c2013-01-23 18:11:48 -07001997 case '?':
1998 log_err("%s: unrecognized option '%s'\n", argv[0],
1999 argv[optind - 1]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01002000 default:
Jens Axboec09823a2008-02-19 20:16:57 +01002001 do_exit++;
2002 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01002003 break;
2004 }
Jens Axboec7d5c942011-10-03 11:48:17 +02002005 if (do_exit)
2006 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01002007 }
2008
Jens Axboe0b14f0a2013-05-23 21:27:54 +02002009 if (do_exit && !(is_backend || nr_clients))
2010 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01002011
Jens Axboefb296042014-04-02 08:28:49 -06002012 if (nr_clients && fio_clients_connect())
2013 exit(1);
Jens Axboe132159a2011-09-30 15:01:32 -06002014
Jens Axboe81179ee2011-10-04 12:42:06 +02002015 if (is_backend && backend)
Jens Axboe402668f2011-10-10 15:28:58 +02002016 return fio_start_server(pid_file);
Jens Axboeb8ba87a2014-04-11 11:37:34 -06002017 else if (pid_file)
2018 free(pid_file);
Jens Axboe50d16972011-09-29 17:45:28 -06002019
Jens Axboe214e1ec2007-03-15 10:48:13 +01002020 if (td) {
Jens Axboe7d6a8902008-02-18 20:59:18 +01002021 if (!ret)
Jens Axboe46bcd492012-03-14 11:31:21 +01002022 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
Jens Axboe214e1ec2007-03-15 10:48:13 +01002023 }
2024
Jens Axboe7874f8b2011-10-06 09:18:20 +02002025 while (!ret && optind < argc) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002026 ini_idx++;
2027 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
2028 ini_file[ini_idx - 1] = strdup(argv[optind]);
2029 optind++;
2030 }
2031
Jens Axboe4a4ac4e2014-04-14 08:17:30 -06002032out_free:
2033 if (pid_file)
2034 free(pid_file);
2035
Jens Axboe214e1ec2007-03-15 10:48:13 +01002036 return ini_idx;
2037}
2038
Jens Axboe0420ba62012-02-29 11:16:52 +01002039int fio_init_options(void)
Jens Axboeebac4652005-12-08 15:25:21 +01002040{
Jens Axboeb4692822006-10-27 13:43:22 +02002041 f_out = stdout;
2042 f_err = stderr;
2043
Jens Axboe4c6107f2011-01-18 05:22:22 -07002044 fio_options_fill_optstring();
Jens Axboe5ec10ea2008-03-06 15:42:00 +01002045 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02002046
Jens Axboe9d9eb2e2011-10-03 12:01:42 +02002047 atexit(free_shm);
2048
Jens Axboeebac4652005-12-08 15:25:21 +01002049 if (fill_def_thread())
2050 return 1;
2051
Jens Axboe0420ba62012-02-29 11:16:52 +01002052 return 0;
2053}
2054
Jens Axboe51167792012-03-08 21:34:18 +01002055extern int fio_check_options(struct thread_options *);
2056
Jens Axboe0420ba62012-02-29 11:16:52 +01002057int parse_options(int argc, char *argv[])
2058{
Jens Axboe46bcd492012-03-14 11:31:21 +01002059 const int type = FIO_CLIENT_TYPE_CLI;
Jens Axboe0420ba62012-02-29 11:16:52 +01002060 int job_files, i;
2061
2062 if (fio_init_options())
2063 return 1;
Jens Axboe51167792012-03-08 21:34:18 +01002064 if (fio_test_cconv(&def_thread.o))
2065 log_err("fio: failed internal cconv test\n");
Jens Axboe0420ba62012-02-29 11:16:52 +01002066
Jens Axboe46bcd492012-03-14 11:31:21 +01002067 job_files = parse_cmd_line(argc, argv, type);
Jens Axboeebac4652005-12-08 15:25:21 +01002068
Jens Axboecdf54d82011-10-04 08:31:40 +02002069 if (job_files > 0) {
2070 for (i = 0; i < job_files; i++) {
Jens Axboebc4f5ef2014-04-06 10:10:32 -06002071 if (i && fill_def_thread())
Jens Axboe132159a2011-09-30 15:01:32 -06002072 return 1;
Jens Axboecdf54d82011-10-04 08:31:40 +02002073 if (nr_clients) {
2074 if (fio_clients_send_ini(ini_file[i]))
2075 return 1;
2076 free(ini_file[i]);
2077 } else if (!is_backend) {
Jens Axboe46bcd492012-03-14 11:31:21 +01002078 if (parse_jobs_ini(ini_file[i], 0, i, type))
Jens Axboecdf54d82011-10-04 08:31:40 +02002079 return 1;
2080 free(ini_file[i]);
2081 }
Jens Axboe132159a2011-09-30 15:01:32 -06002082 }
Jens Axboe14ea90e2012-08-26 17:33:34 +02002083 } else if (nr_clients) {
2084 if (fill_def_thread())
2085 return 1;
2086 if (fio_clients_send_ini(NULL))
2087 return 1;
Jens Axboe972cfd22006-06-09 11:08:56 +02002088 }
Jens Axboeebac4652005-12-08 15:25:21 +01002089
Jens Axboe88c6ed82006-06-09 11:28:10 +02002090 free(ini_file);
Jens Axboe7e356b22011-10-14 10:55:16 +02002091 fio_options_free(&def_thread);
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08002092 filesetup_mem_free();
Jens Axboeb4692822006-10-27 13:43:22 +02002093
2094 if (!thread_number) {
Jens Axboef9633d72013-09-06 09:59:56 -06002095 if (parse_dryrun())
Jens Axboecca73aa2007-04-04 11:09:19 +02002096 return 0;
Jens Axboe07b32322010-03-05 09:48:44 +01002097 if (exec_profile)
2098 return 0;
Jens Axboea37f69b2011-10-01 12:24:21 -06002099 if (is_backend || nr_clients)
Jens Axboe5c341e92011-09-29 18:00:35 -06002100 return 0;
Jens Axboe085399d2011-10-06 09:01:22 +02002101 if (did_arg)
2102 return 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02002103
Jens Axboed65e11c2011-10-05 09:56:53 +02002104 log_err("No jobs(s) defined\n\n");
Jens Axboe085399d2011-10-06 09:01:22 +02002105
2106 if (!did_arg) {
2107 usage(argv[0]);
2108 return 1;
2109 }
2110
2111 return 0;
Jens Axboeb4692822006-10-27 13:43:22 +02002112 }
2113
Jens Axboebe4ecfd2008-12-08 14:10:52 +01002114 if (def_thread.o.gtod_offload) {
2115 fio_gtod_init();
2116 fio_gtod_offload = 1;
2117 fio_gtod_cpu = def_thread.o.gtod_cpu;
2118 }
2119
Jens Axboef3afa572012-09-17 13:34:16 +02002120 if (output_format == FIO_OUTPUT_NORMAL)
Jens Axboe3d433822012-03-21 22:25:22 +01002121 log_info("%s\n", fio_version_string);
Jens Axboef6dea4d2011-10-13 13:37:07 +02002122
Jens Axboeebac4652005-12-08 15:25:21 +01002123 return 0;
2124}
Jens Axboe588b7f02012-03-19 20:37:41 +01002125
2126void options_default_fill(struct thread_options *o)
2127{
2128 memcpy(o, &def_thread.o, sizeof(*o));
2129}