blob: 4c5a8dd8ebab33bd28bb6c1a6b12864910cb7aff [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
Jens Axboe3660cea2014-04-15 08:18:08 -0600940static char *make_filename(char *buf, size_t buf_size,struct thread_options *o,
Jens Axboede98bd32013-04-05 11:09:20 +0200941 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
Jens Axboe3660cea2014-04-15 08:18:08 -0600955 buf[buf_size - 1] = '\0';
956 strncpy(buf, o->filename_format, buf_size - 1);
957
Jens Axboede98bd32013-04-05 11:09:20 +0200958 memset(copy, 0, sizeof(copy));
959 for (f = &fpre_keywords[0]; f->keyword; f++) {
960 do {
961 size_t pre_len, post_start = 0;
962 char *str, *dst = copy;
963
Jens Axboee25b6d52013-04-05 14:44:51 +0200964 str = strcasestr(buf, f->keyword);
Jens Axboede98bd32013-04-05 11:09:20 +0200965 if (!str)
966 break;
967
968 pre_len = str - buf;
969 if (strlen(str) != f->strlen)
970 post_start = pre_len + f->strlen;
971
972 if (pre_len) {
973 strncpy(dst, buf, pre_len);
974 dst += pre_len;
Jens Axboe73a467e2014-04-14 08:34:43 -0600975 dst_left -= pre_len;
Jens Axboede98bd32013-04-05 11:09:20 +0200976 }
977
978 switch (f->key) {
Jens Axboe73a467e2014-04-14 08:34:43 -0600979 case FPRE_JOBNAME: {
980 int ret;
981
982 ret = snprintf(dst, dst_left, "%s", jobname);
983 if (ret < 0)
984 break;
985 dst += ret;
986 dst_left -= ret;
Jens Axboede98bd32013-04-05 11:09:20 +0200987 break;
Jens Axboe73a467e2014-04-14 08:34:43 -0600988 }
989 case FPRE_JOBNUM: {
990 int ret;
991
992 ret = snprintf(dst, dst_left, "%d", jobnum);
993 if (ret < 0)
994 break;
995 dst += ret;
996 dst_left -= ret;
Jens Axboede98bd32013-04-05 11:09:20 +0200997 break;
Jens Axboe73a467e2014-04-14 08:34:43 -0600998 }
999 case FPRE_FILENUM: {
1000 int ret;
1001
1002 ret = snprintf(dst, dst_left, "%d", filenum);
1003 if (ret < 0)
1004 break;
1005 dst += ret;
1006 dst_left -= ret;
Jens Axboede98bd32013-04-05 11:09:20 +02001007 break;
Jens Axboe73a467e2014-04-14 08:34:43 -06001008 }
Jens Axboede98bd32013-04-05 11:09:20 +02001009 default:
1010 assert(0);
1011 break;
1012 }
1013
1014 if (post_start)
Jens Axboe73a467e2014-04-14 08:34:43 -06001015 strncpy(dst, buf + post_start, dst_left);
Jens Axboede98bd32013-04-05 11:09:20 +02001016
Jens Axboe3660cea2014-04-15 08:18:08 -06001017 strncpy(buf, copy, buf_size - 1);
Jens Axboede98bd32013-04-05 11:09:20 +02001018 } while (1);
1019 }
1020
1021 return buf;
1022}
Jens Axboef9633d72013-09-06 09:59:56 -06001023
1024int parse_dryrun(void)
1025{
1026 return dump_cmdline || parse_only;
1027}
1028
Steven Langde890a12011-11-09 14:03:34 +01001029/*
Jens Axboe906c8d72006-06-13 09:37:56 +02001030 * Adds a job to the list of things todo. Sanitizes the various options
1031 * to make sure we don't have conflicts, and initializes various
1032 * members of td.
1033 */
Jens Axboeb7cfb2e2012-03-12 07:47:27 +01001034static int add_job(struct thread_data *td, const char *jobname, int job_add_num,
Jens Axboe46bcd492012-03-14 11:31:21 +01001035 int recursed, int client_type)
Jens Axboeebac4652005-12-08 15:25:21 +01001036{
Jens Axboeaf52b342007-03-13 10:07:47 +01001037 unsigned int i;
Jens Axboeaf52b342007-03-13 10:07:47 +01001038 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +01001039 int numjobs, file_alloced;
Jens Axboede98bd32013-04-05 11:09:20 +02001040 struct thread_options *o = &td->o;
Jens Axboeebac4652005-12-08 15:25:21 +01001041
Jens Axboeebac4652005-12-08 15:25:21 +01001042 /*
1043 * the def_thread is just for options, it's not a real job
1044 */
1045 if (td == &def_thread)
1046 return 0;
1047
Jens Axboed72be542012-11-30 19:37:46 +01001048 init_flags(td);
1049
Jens Axboecca73aa2007-04-04 11:09:19 +02001050 /*
1051 * if we are just dumping the output command line, don't add the job
1052 */
Jens Axboef9633d72013-09-06 09:59:56 -06001053 if (parse_dryrun()) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001054 put_job(td);
1055 return 0;
1056 }
1057
Jens Axboe46bcd492012-03-14 11:31:21 +01001058 td->client_type = client_type;
1059
Jens Axboe58c55ba2010-03-09 12:20:08 +01001060 if (profile_td_init(td))
Jens Axboe66251552011-05-12 10:14:57 +02001061 goto err;
Jens Axboe58c55ba2010-03-09 12:20:08 +01001062
Steven Langde890a12011-11-09 14:03:34 +01001063 if (ioengine_load(td))
Jens Axboe205927a2007-03-15 11:06:32 +01001064 goto err;
Jens Axboedf641192006-10-12 07:55:41 +02001065
Jens Axboede98bd32013-04-05 11:09:20 +02001066 if (o->odirect)
Jens Axboe690adba2006-10-30 15:25:09 +01001067 td->io_ops->flags |= FIO_RAWIO;
1068
Jens Axboee132cba2007-03-14 14:23:54 +01001069 file_alloced = 0;
Jens Axboede98bd32013-04-05 11:09:20 +02001070 if (!o->filename && !td->files_index && !o->read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +01001071 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +01001072
Jens Axboede98bd32013-04-05 11:09:20 +02001073 if (o->nr_files == 1 && exists_and_not_file(jobname))
Jens Axboe5903e7b2014-02-26 13:42:13 -08001074 add_file(td, jobname, job_add_num, 0);
Jens Axboe7b05a212007-03-13 11:17:07 +01001075 else {
Jens Axboede98bd32013-04-05 11:09:20 +02001076 for (i = 0; i < o->nr_files; i++)
Jens Axboe3660cea2014-04-15 08:18:08 -06001077 add_file(td, make_filename(fname, sizeof(fname), o, jobname, job_add_num, i), job_add_num, 0);
Jens Axboeaf52b342007-03-13 10:07:47 +01001078 }
Jens Axboe0af7b542006-02-17 10:10:12 +01001079 }
Jens Axboeebac4652005-12-08 15:25:21 +01001080
Jens Axboe4e991c22007-03-15 11:41:11 +01001081 if (fixup_options(td))
1082 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +01001083
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01001084 flow_init_job(td);
1085
Steven Langde890a12011-11-09 14:03:34 +01001086 /*
1087 * IO engines only need this for option callbacks, and the address may
1088 * change in subprocesses.
1089 */
1090 if (td->eo)
1091 *(struct thread_data **)td->eo = NULL;
1092
Jens Axboe07eb79d2007-04-12 13:02:38 +02001093 if (td->io_ops->flags & FIO_DISKLESSIO) {
1094 struct fio_file *f;
1095
1096 for_each_file(td, f, i)
1097 f->real_file_size = -1ULL;
1098 }
1099
Jens Axboe521da522012-08-02 11:21:36 +02001100 td->mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
Jens Axboeebac4652005-12-08 15:25:21 +01001101
Jens Axboede98bd32013-04-05 11:09:20 +02001102 td->ts.clat_percentiles = o->clat_percentiles;
1103 td->ts.percentile_precision = o->percentile_precision;
1104 memcpy(td->ts.percentile_list, o->percentile_list, sizeof(o->percentile_list));
Yu-ju Hong83349192011-08-13 00:53:44 +02001105
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001106 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1107 td->ts.clat_stat[i].min_val = ULONG_MAX;
1108 td->ts.slat_stat[i].min_val = ULONG_MAX;
1109 td->ts.lat_stat[i].min_val = ULONG_MAX;
1110 td->ts.bw_stat[i].min_val = ULONG_MAX;
1111 }
Jens Axboede98bd32013-04-05 11:09:20 +02001112 td->ddir_seq_nr = o->ddir_seq_nr;
Jens Axboeebac4652005-12-08 15:25:21 +01001113
Jens Axboede98bd32013-04-05 11:09:20 +02001114 if ((o->stonewall || o->new_group) && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001115 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001116 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001117 }
Jens Axboeebac4652005-12-08 15:25:21 +01001118
1119 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001120 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +01001121
Jens Axboe9dbc7bf2013-01-23 09:26:53 -07001122 if (setup_random_seeds(td)) {
Bruce Cran93bcfd22012-02-20 20:18:19 +01001123 td_verror(td, errno, "init_random_state");
Jens Axboe9c60ce62007-03-15 09:14:47 +01001124 goto err;
Bruce Cran93bcfd22012-02-20 20:18:19 +01001125 }
Jens Axboe9c60ce62007-03-15 09:14:47 +01001126
Jens Axboeebac4652005-12-08 15:25:21 +01001127 if (setup_rate(td))
1128 goto err;
1129
Jens Axboe8e255772014-04-01 13:34:49 -06001130 if (o->lat_log_file || write_lat_log) {
Jens Axboe22f80452013-04-09 20:29:16 +02001131 setup_log(&td->lat_log, o->log_avg_msec, IO_LOG_TYPE_LAT);
1132 setup_log(&td->slat_log, o->log_avg_msec, IO_LOG_TYPE_SLAT);
1133 setup_log(&td->clat_log, o->log_avg_msec, IO_LOG_TYPE_CLAT);
Jens Axboeebac4652005-12-08 15:25:21 +01001134 }
Jens Axboe8e255772014-04-01 13:34:49 -06001135 if (o->bw_log_file || write_bw_log)
Jens Axboe22f80452013-04-09 20:29:16 +02001136 setup_log(&td->bw_log, o->log_avg_msec, IO_LOG_TYPE_BW);
1137 if (o->iops_log_file)
1138 setup_log(&td->iops_log, o->log_avg_msec, IO_LOG_TYPE_IOPS);
Jens Axboeebac4652005-12-08 15:25:21 +01001139
Jens Axboede98bd32013-04-05 11:09:20 +02001140 if (!o->name)
1141 o->name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +02001142
Jens Axboef3afa572012-09-17 13:34:16 +02001143 if (output_format == FIO_OUTPUT_NORMAL) {
Jens Axboeb990b5c2006-09-14 09:48:22 +02001144 if (!job_add_num) {
Jens Axboeb7cfb2e2012-03-12 07:47:27 +01001145 if (is_backend && !recursed)
Jens Axboe2f122b12012-03-15 13:10:19 +01001146 fio_server_send_add_job(td);
Jens Axboe807f9972012-03-02 10:25:24 +01001147
Jens Axboe03530502012-03-19 21:45:12 +01001148 if (!(td->io_ops->flags & FIO_NOIO)) {
Jens Axboed21e2532013-07-25 13:01:11 -06001149 char *c1, *c2, *c3, *c4;
1150 char *c5 = NULL, *c6 = NULL;
Jens Axboef8977ee2006-11-06 14:03:03 +01001151
Jens Axboe22f80452013-04-09 20:29:16 +02001152 c1 = fio_uint_to_kmg(o->min_bs[DDIR_READ]);
1153 c2 = fio_uint_to_kmg(o->max_bs[DDIR_READ]);
1154 c3 = fio_uint_to_kmg(o->min_bs[DDIR_WRITE]);
1155 c4 = fio_uint_to_kmg(o->max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +01001156
Jens Axboed21e2532013-07-25 13:01:11 -06001157 if (!o->bs_is_seq_rand) {
1158 c5 = fio_uint_to_kmg(o->min_bs[DDIR_TRIM]);
1159 c6 = fio_uint_to_kmg(o->max_bs[DDIR_TRIM]);
1160 }
1161
1162 log_info("%s: (g=%d): rw=%s, ", td->o.name,
1163 td->groupid,
1164 ddir_str(o->td_ddir));
1165
1166 if (o->bs_is_seq_rand)
1167 log_info("bs(seq/rand)=%s-%s/%s-%s, ",
1168 c1, c2, c3, c4);
1169 else
1170 log_info("bs=%s-%s/%s-%s/%s-%s, ",
1171 c1, c2, c3, c4, c5, c6);
1172
1173 log_info("ioengine=%s, iodepth=%u\n",
Jens Axboede98bd32013-04-05 11:09:20 +02001174 td->io_ops->name, o->iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +01001175
1176 free(c1);
1177 free(c2);
1178 free(c3);
1179 free(c4);
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001180 free(c5);
1181 free(c6);
Jens Axboef8977ee2006-11-06 14:03:03 +01001182 }
Jens Axboeb990b5c2006-09-14 09:48:22 +02001183 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +01001184 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +02001185 }
Jens Axboeebac4652005-12-08 15:25:21 +01001186
1187 /*
1188 * recurse add identical jobs, clear numjobs and stonewall options
1189 * as they don't apply to sub-jobs
1190 */
Jens Axboede98bd32013-04-05 11:09:20 +02001191 numjobs = o->numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +01001192 while (--numjobs) {
Steven Langde890a12011-11-09 14:03:34 +01001193 struct thread_data *td_new = get_new_job(0, td, 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001194
1195 if (!td_new)
1196 goto err;
1197
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001198 td_new->o.numjobs = 1;
1199 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +02001200 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +01001201
1202 if (file_alloced) {
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001203 if (td_new->files) {
1204 struct fio_file *f;
1205 for_each_file(td_new, f, i) {
1206 if (f->file_name)
Andrey Kuzminece6d642014-04-01 12:27:04 -06001207 sfree(f->file_name);
1208 sfree(f);
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001209 }
Andrey Kuzminece6d642014-04-01 12:27:04 -06001210 free(td_new->files);
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001211 td_new->files = NULL;
1212 }
Andrey Kuzminece6d642014-04-01 12:27:04 -06001213 td_new->files_index = 0;
1214 td_new->files_size = 0;
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001215 if (td_new->o.filename) {
1216 free(td_new->o.filename);
1217 td_new->o.filename = NULL;
1218 }
Jens Axboee132cba2007-03-14 14:23:54 +01001219 }
1220
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001221 if (add_job(td_new, jobname, numjobs, 1, client_type))
Jens Axboeebac4652005-12-08 15:25:21 +01001222 goto err;
1223 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001224
Jens Axboeebac4652005-12-08 15:25:21 +01001225 return 0;
1226err:
1227 put_job(td);
1228 return -1;
1229}
1230
Jens Axboe79d16312010-03-04 12:43:20 +01001231/*
1232 * Parse as if 'o' was a command line
1233 */
Jens Axboe46bcd492012-03-14 11:31:21 +01001234void add_job_opts(const char **o, int client_type)
Jens Axboe79d16312010-03-04 12:43:20 +01001235{
1236 struct thread_data *td, *td_parent;
1237 int i, in_global = 1;
1238 char jobname[32];
1239
1240 i = 0;
1241 td_parent = td = NULL;
1242 while (o[i]) {
1243 if (!strncmp(o[i], "name", 4)) {
1244 in_global = 0;
1245 if (td)
Jens Axboe46bcd492012-03-14 11:31:21 +01001246 add_job(td, jobname, 0, 0, client_type);
Jens Axboe79d16312010-03-04 12:43:20 +01001247 td = NULL;
1248 sprintf(jobname, "%s", o[i] + 5);
1249 }
1250 if (in_global && !td_parent)
Steven Langde890a12011-11-09 14:03:34 +01001251 td_parent = get_new_job(1, &def_thread, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001252 else if (!in_global && !td) {
1253 if (!td_parent)
1254 td_parent = &def_thread;
Steven Langde890a12011-11-09 14:03:34 +01001255 td = get_new_job(0, td_parent, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001256 }
1257 if (in_global)
Jens Axboe292cc472013-11-26 20:39:35 -07001258 fio_options_parse(td_parent, (char **) &o[i], 1, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001259 else
Jens Axboe292cc472013-11-26 20:39:35 -07001260 fio_options_parse(td, (char **) &o[i], 1, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001261 i++;
1262 }
1263
1264 if (td)
Jens Axboe46bcd492012-03-14 11:31:21 +01001265 add_job(td, jobname, 0, 0, client_type);
Jens Axboe79d16312010-03-04 12:43:20 +01001266}
1267
Jens Axboe01f06b62008-02-18 20:53:47 +01001268static int skip_this_section(const char *name)
1269{
Jens Axboead0a2732011-03-11 10:16:17 +01001270 int i;
1271
1272 if (!nr_job_sections)
Jens Axboe01f06b62008-02-18 20:53:47 +01001273 return 0;
1274 if (!strncmp(name, "global", 6))
1275 return 0;
1276
Jens Axboead0a2732011-03-11 10:16:17 +01001277 for (i = 0; i < nr_job_sections; i++)
1278 if (!strcmp(job_sections[i], name))
1279 return 0;
1280
1281 return 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001282}
1283
Jens Axboeebac4652005-12-08 15:25:21 +01001284static int is_empty_or_comment(char *line)
1285{
1286 unsigned int i;
1287
1288 for (i = 0; i < strlen(line); i++) {
1289 if (line[i] == ';')
1290 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +01001291 if (line[i] == '#')
1292 return 1;
Jens Axboe76cd9372011-07-08 21:14:57 +02001293 if (!isspace((int) line[i]) && !iscntrl((int) line[i]))
Jens Axboeebac4652005-12-08 15:25:21 +01001294 return 0;
1295 }
1296
1297 return 1;
1298}
1299
Jens Axboe313cb202006-12-21 09:50:00 +01001300/*
Jens Axboe07261982006-06-07 10:51:12 +02001301 * This is our [ini] type file parser.
1302 */
Jens Axboe46bcd492012-03-14 11:31:21 +01001303int parse_jobs_ini(char *file, int is_buf, int stonewall_flag, int type)
Jens Axboeebac4652005-12-08 15:25:21 +01001304{
Jens Axboee1f36502006-10-27 10:54:08 +02001305 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +01001306 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +01001307 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +01001308 FILE *f;
1309 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001310 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +02001311 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +02001312 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +01001313 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +02001314 char **opts;
1315 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +01001316
Jens Axboe50d16972011-09-29 17:45:28 -06001317 if (is_buf)
1318 f = NULL;
1319 else {
1320 if (!strcmp(file, "-"))
1321 f = stdin;
1322 else
1323 f = fopen(file, "r");
Aaron Carroll5a729cb2007-09-27 09:03:55 +02001324
Jens Axboe50d16972011-09-29 17:45:28 -06001325 if (!f) {
1326 perror("fopen job file");
1327 return 1;
1328 }
Jens Axboeebac4652005-12-08 15:25:21 +01001329 }
1330
1331 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +02001332
1333 /*
1334 * it's really 256 + small bit, 280 should suffice
1335 */
1336 name = malloc(280);
1337 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +01001338
Jens Axboe3b8b7132008-06-10 19:46:23 +02001339 alloc_opts = 8;
1340 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +02001341 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +02001342
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001343 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001344 do {
Jens Axboeccf8f122007-09-27 10:48:55 +02001345 /*
1346 * if skip_fgets is set, we already have loaded a line we
1347 * haven't handled.
1348 */
1349 if (!skip_fgets) {
Jens Axboe50d16972011-09-29 17:45:28 -06001350 if (is_buf)
1351 p = strsep(&file, "\n");
1352 else
Jens Axboe43f74792011-10-15 14:37:26 +02001353 p = fgets(string, 4096, f);
Jens Axboeccf8f122007-09-27 10:48:55 +02001354 if (!p)
1355 break;
1356 }
gurudas paicdc7f192007-03-29 10:10:56 +02001357
Jens Axboeccf8f122007-09-27 10:48:55 +02001358 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +02001359 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -08001360 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +02001361
Jens Axboeebac4652005-12-08 15:25:21 +01001362 if (is_empty_or_comment(p))
1363 continue;
Bruce Cran84dd1882011-05-05 08:14:09 -06001364 if (sscanf(p, "[%255[^\n]]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001365 if (inside_skip)
1366 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001367 log_err("fio: option <%s> outside of [] job section\n",
1368 p);
Jens Axboe088b4202007-07-19 14:53:01 +02001369 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -08001370 }
Jens Axboeebac4652005-12-08 15:25:21 +01001371
Jens Axboe7a4b80a2010-05-22 20:43:11 +02001372 name[strlen(name) - 1] = '\0';
1373
Jens Axboe01f06b62008-02-18 20:53:47 +01001374 if (skip_this_section(name)) {
1375 inside_skip = 1;
1376 continue;
1377 } else
1378 inside_skip = 0;
1379
Jens Axboeebac4652005-12-08 15:25:21 +01001380 global = !strncmp(name, "global", 6);
1381
Jens Axboecca73aa2007-04-04 11:09:19 +02001382 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +02001383 if (first_sect)
1384 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +02001385 if (!global)
1386 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +02001387 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02001388 }
1389
Steven Langde890a12011-11-09 14:03:34 +01001390 td = get_new_job(global, &def_thread, 0);
Jens Axboe45410ac2006-06-07 11:10:39 +02001391 if (!td) {
1392 ret = 1;
1393 break;
1394 }
Jens Axboeebac4652005-12-08 15:25:21 +01001395
Jens Axboe972cfd22006-06-09 11:08:56 +02001396 /*
Anatol Pomozovde8f6de2013-09-26 16:31:34 -07001397 * Separate multiple job files by a stonewall
Jens Axboe972cfd22006-06-09 11:08:56 +02001398 */
Jens Axboef9481912006-06-09 11:37:28 +02001399 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001400 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +02001401 stonewall = 0;
1402 }
1403
Jens Axboe3b8b7132008-06-10 19:46:23 +02001404 num_opts = 0;
1405 memset(opts, 0, alloc_opts * sizeof(char *));
1406
Jens Axboe50d16972011-09-29 17:45:28 -06001407 while (1) {
1408 if (is_buf)
1409 p = strsep(&file, "\n");
1410 else
1411 p = fgets(string, 4096, f);
1412 if (!p)
1413 break;
1414
Jens Axboeebac4652005-12-08 15:25:21 +01001415 if (is_empty_or_comment(p))
1416 continue;
Jens Axboee1f36502006-10-27 10:54:08 +02001417
Jens Axboeb6754f92006-05-30 14:29:32 +02001418 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +01001419
Jens Axboeccf8f122007-09-27 10:48:55 +02001420 /*
1421 * new section, break out and make sure we don't
1422 * fgets() a new line at the top.
1423 */
1424 if (p[0] == '[') {
1425 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001426 break;
Jens Axboeccf8f122007-09-27 10:48:55 +02001427 }
Jens Axboe7c124ac2006-10-30 13:36:52 +01001428
Jens Axboe4ae3f762006-05-30 13:35:14 +02001429 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +02001430
Jens Axboe3b8b7132008-06-10 19:46:23 +02001431 if (num_opts == alloc_opts) {
1432 alloc_opts <<= 1;
1433 opts = realloc(opts,
1434 alloc_opts * sizeof(char *));
1435 }
1436
1437 opts[num_opts] = strdup(p);
1438 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +01001439 }
Jens Axboeebac4652005-12-08 15:25:21 +01001440
Jens Axboe292cc472013-11-26 20:39:35 -07001441 ret = fio_options_parse(td, opts, num_opts, dump_cmdline);
1442 if (!ret)
Jens Axboe46bcd492012-03-14 11:31:21 +01001443 ret = add_job(td, name, 0, 0, type);
Jens Axboe292cc472013-11-26 20:39:35 -07001444 else {
Jens Axboeb1508cf2006-11-02 09:12:40 +01001445 log_err("fio: job %s dropped\n", name);
1446 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +02001447 }
Jens Axboe3b8b7132008-06-10 19:46:23 +02001448
1449 for (i = 0; i < num_opts; i++)
1450 free(opts[i]);
1451 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001452 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001453
Jens Axboecca73aa2007-04-04 11:09:19 +02001454 if (dump_cmdline)
1455 log_info("\n");
1456
Jens Axboe7e356b22011-10-14 10:55:16 +02001457 i = 0;
1458 while (i < nr_job_sections) {
1459 free(job_sections[i]);
1460 i++;
1461 }
1462
Jens Axboeebac4652005-12-08 15:25:21 +01001463 free(string);
1464 free(name);
Jens Axboe25775942008-06-10 20:26:06 +02001465 free(opts);
Jens Axboe50d16972011-09-29 17:45:28 -06001466 if (!is_buf && f != stdin)
Aaron Carroll5a729cb2007-09-27 09:03:55 +02001467 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +02001468 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001469}
1470
1471static int fill_def_thread(void)
1472{
1473 memset(&def_thread, 0, sizeof(def_thread));
1474
Jens Axboe375b2692007-05-22 09:13:02 +02001475 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04001476 def_thread.o.error_dump = 1;
Jens Axboe25bd16c2014-04-06 10:09:30 -06001477
Jens Axboeebac4652005-12-08 15:25:21 +01001478 /*
Jens Axboeee738492007-01-10 11:23:16 +01001479 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +01001480 */
Jens Axboe214e1ec2007-03-15 10:48:13 +01001481 fio_fill_default_options(&def_thread);
Jens Axboeebac4652005-12-08 15:25:21 +01001482 return 0;
1483}
1484
Jens Axboe45378b32007-12-19 13:54:38 +01001485static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +02001486{
Jens Axboe3d433822012-03-21 22:25:22 +01001487 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +01001488 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboe83881282011-10-17 19:58:51 +02001489 printf(" --debug=options\tEnable debug logging. May be one/more of:\n"
1490 "\t\t\tprocess,file,io,mem,blktrace,verify,random,parse,\n"
Jens Axboe3e260a42013-12-09 12:38:53 -07001491 "\t\t\tdiskutil,job,mutex,profile,time,net,rate\n");
Jens Axboe111e0322013-03-07 11:31:20 +01001492 printf(" --parse-only\t\tParse options only, don't start any IO\n");
Jens Axboe83881282011-10-17 19:58:51 +02001493 printf(" --output\t\tWrite output to file\n");
liang xieb2cecdc2012-08-31 08:22:42 -07001494 printf(" --runtime\t\tRuntime in seconds\n");
Jens Axboe83881282011-10-17 19:58:51 +02001495 printf(" --latency-log\t\tGenerate per-job latency logs\n");
1496 printf(" --bandwidth-log\tGenerate per-job bandwidth logs\n");
1497 printf(" --minimal\t\tMinimal (terse) output\n");
Jens Axboef3afa572012-09-17 13:34:16 +02001498 printf(" --output-format=x\tOutput format (terse,json,normal)\n");
Jens Axboe75db6e22011-11-07 22:07:36 +01001499 printf(" --terse-version=x\tSet terse version output format to 'x'\n");
Jens Axboef3afa572012-09-17 13:34:16 +02001500 printf(" --version\t\tPrint version info and exit\n");
Jens Axboe83881282011-10-17 19:58:51 +02001501 printf(" --help\t\tPrint this page\n");
Jens Axboe23893642012-12-17 14:44:08 +01001502 printf(" --cpuclock-test\tPerform test/validation of CPU clock\n");
Jens Axboefec0f212014-02-07 14:39:33 -07001503 printf(" --crctest\t\tTest speed of checksum functions\n");
Jens Axboe83881282011-10-17 19:58:51 +02001504 printf(" --cmdhelp=cmd\t\tPrint command help, \"all\" for all of"
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001505 " them\n");
Steven Langde890a12011-11-09 14:03:34 +01001506 printf(" --enghelp=engine\tPrint ioengine help, or list"
1507 " available ioengines\n");
1508 printf(" --enghelp=engine,cmd\tPrint help for an ioengine"
1509 " cmd\n");
Jens Axboe83881282011-10-17 19:58:51 +02001510 printf(" --showcmd\t\tTurn a job file into command line options\n");
1511 printf(" --eta=when\t\tWhen ETA estimate should be printed\n");
1512 printf(" \t\tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboee382e662013-02-22 20:48:56 +01001513 printf(" --eta-newline=time\tForce a new line for every 'time'");
1514 printf(" period passed\n");
Jens Axboe06464902013-04-24 20:38:54 -06001515 printf(" --status-interval=t\tForce full status dump every");
1516 printf(" 't' period passed\n");
Jens Axboe83881282011-10-17 19:58:51 +02001517 printf(" --readonly\t\tTurn on safety read-only checks, preventing"
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001518 " writes\n");
Jens Axboe83881282011-10-17 19:58:51 +02001519 printf(" --section=name\tOnly run specified section in job file\n");
1520 printf(" --alloc-size=kb\tSet smalloc pool to this size in kb"
Jens Axboe2b386d22008-03-26 10:32:57 +01001521 " (def 1024)\n");
Jens Axboe83881282011-10-17 19:58:51 +02001522 printf(" --warnings-fatal\tFio parser warnings are fatal\n");
1523 printf(" --max-jobs=nr\t\tMaximum number of threads/processes to support\n");
1524 printf(" --server=args\t\tStart a backend fio server\n");
1525 printf(" --daemonize=pidfile\tBackground fio server, write pid to file\n");
1526 printf(" --client=hostname\tTalk to remote backend fio server at hostname\n");
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001527 printf(" --idle-prof=option\tReport cpu idleness on a system or percpu basis\n"
1528 "\t\t\t(option=system,percpu) or run unit work\n"
1529 "\t\t\tcalibration only (option=calibrate)\n");
Jens Axboeaa58d252010-06-09 09:49:38 +02001530 printf("\nFio was written by Jens Axboe <jens.axboe@oracle.com>");
Jens Axboebfca2c72014-01-29 16:39:04 -07001531 printf("\n Jens Axboe <jaxboe@fusionio.com>");
1532 printf("\n Jens Axboe <axboe@fb.com>\n");
Jens Axboeb4692822006-10-27 13:43:22 +02001533}
1534
Jens Axboe79e48f72008-02-01 20:37:09 +01001535#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +01001536struct debug_level debug_levels[] = {
Jens Axboe0b8d11e2012-03-02 19:44:15 +01001537 { .name = "process",
1538 .help = "Process creation/exit logging",
1539 .shift = FD_PROCESS,
1540 },
1541 { .name = "file",
1542 .help = "File related action logging",
1543 .shift = FD_FILE,
1544 },
1545 { .name = "io",
1546 .help = "IO and IO engine action logging (offsets, queue, completions, etc)",
1547 .shift = FD_IO,
1548 },
1549 { .name = "mem",
1550 .help = "Memory allocation/freeing logging",
1551 .shift = FD_MEM,
1552 },
1553 { .name = "blktrace",
1554 .help = "blktrace action logging",
1555 .shift = FD_BLKTRACE,
1556 },
1557 { .name = "verify",
1558 .help = "IO verification action logging",
1559 .shift = FD_VERIFY,
1560 },
1561 { .name = "random",
1562 .help = "Random generation logging",
1563 .shift = FD_RANDOM,
1564 },
1565 { .name = "parse",
1566 .help = "Parser logging",
1567 .shift = FD_PARSE,
1568 },
1569 { .name = "diskutil",
1570 .help = "Disk utility logging actions",
1571 .shift = FD_DISKUTIL,
1572 },
1573 { .name = "job",
1574 .help = "Logging related to creating/destroying jobs",
1575 .shift = FD_JOB,
1576 },
1577 { .name = "mutex",
1578 .help = "Mutex logging",
1579 .shift = FD_MUTEX
1580 },
1581 { .name = "profile",
1582 .help = "Logging related to profiles",
1583 .shift = FD_PROFILE,
1584 },
1585 { .name = "time",
1586 .help = "Logging related to time keeping functions",
1587 .shift = FD_TIME,
1588 },
1589 { .name = "net",
1590 .help = "Network logging",
1591 .shift = FD_NET,
1592 },
Jens Axboe3e260a42013-12-09 12:38:53 -07001593 { .name = "rate",
1594 .help = "Rate logging",
1595 .shift = FD_RATE,
1596 },
Jens Axboe02444ad2008-10-07 11:33:00 +02001597 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +01001598};
1599
Jens Axboec09823a2008-02-19 20:16:57 +01001600static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +01001601{
1602 struct debug_level *dl;
1603 char *p = (char *) string;
1604 char *opt;
1605 int i;
1606
1607 if (!strcmp(string, "?") || !strcmp(string, "help")) {
Jens Axboeee56ad52008-02-01 10:30:20 +01001608 log_info("fio: dumping debug options:");
1609 for (i = 0; debug_levels[i].name; i++) {
1610 dl = &debug_levels[i];
1611 log_info("%s,", dl->name);
1612 }
Jens Axboebd6f78b2008-02-01 20:27:52 +01001613 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001614 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +01001615 }
1616
1617 while ((opt = strsep(&p, ",")) != NULL) {
1618 int found = 0;
1619
Jens Axboe5e1d3062008-05-23 11:55:53 +02001620 if (!strncmp(opt, "all", 3)) {
1621 log_info("fio: set all debug options\n");
1622 fio_debug = ~0UL;
1623 continue;
1624 }
1625
Jens Axboeee56ad52008-02-01 10:30:20 +01001626 for (i = 0; debug_levels[i].name; i++) {
1627 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +02001628 found = !strncmp(opt, dl->name, strlen(dl->name));
1629 if (!found)
1630 continue;
1631
1632 if (dl->shift == FD_JOB) {
1633 opt = strchr(opt, ':');
1634 if (!opt) {
1635 log_err("fio: missing job number\n");
1636 break;
1637 }
1638 opt++;
1639 fio_debug_jobno = atoi(opt);
1640 log_info("fio: set debug jobno %d\n",
1641 fio_debug_jobno);
1642 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001643 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001644 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +01001645 }
Jens Axboe5e1d3062008-05-23 11:55:53 +02001646 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001647 }
1648
1649 if (!found)
1650 log_err("fio: debug mask %s not found\n", opt);
1651 }
Jens Axboec09823a2008-02-19 20:16:57 +01001652 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +01001653}
Jens Axboe79e48f72008-02-01 20:37:09 +01001654#else
Jens Axboe69b98d42008-05-30 22:25:32 +02001655static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +01001656{
1657 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001658 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +01001659}
1660#endif
Jens Axboeee56ad52008-02-01 10:30:20 +01001661
Jens Axboe4c6107f2011-01-18 05:22:22 -07001662static void fio_options_fill_optstring(void)
1663{
1664 char *ostr = cmd_optstr;
1665 int i, c;
1666
1667 c = i = 0;
1668 while (l_opts[i].name) {
1669 ostr[c++] = l_opts[i].val;
1670 if (l_opts[i].has_arg == required_argument)
1671 ostr[c++] = ':';
1672 else if (l_opts[i].has_arg == optional_argument) {
1673 ostr[c++] = ':';
1674 ostr[c++] = ':';
1675 }
1676 i++;
1677 }
1678 ostr[c] = '\0';
1679}
1680
Jens Axboec2c94582011-10-05 20:31:30 +02001681static int client_flag_set(char c)
1682{
1683 int i;
1684
1685 i = 0;
1686 while (l_opts[i].name) {
1687 int val = l_opts[i].val;
1688
1689 if (c == (val & 0xff))
1690 return (val & FIO_CLIENT_FLAG);
1691
1692 i++;
1693 }
1694
1695 return 0;
1696}
1697
Jens Axboe10aa1362014-04-01 21:10:36 -06001698static void parse_cmd_client(void *client, char *opt)
Jens Axboe7a4b8242011-10-05 17:35:15 +02001699{
Jens Axboefa2ea802011-10-08 21:07:29 +02001700 fio_client_add_cmd_option(client, opt);
Jens Axboe7a4b8242011-10-05 17:35:15 +02001701}
1702
Jens Axboe46bcd492012-03-14 11:31:21 +01001703int parse_cmd_line(int argc, char *argv[], int client_type)
Jens Axboe214e1ec2007-03-15 10:48:13 +01001704{
1705 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +01001706 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe4c6107f2011-01-18 05:22:22 -07001707 char *ostr = cmd_optstr;
Jens Axboe402668f2011-10-10 15:28:58 +02001708 void *pid_file = NULL;
Jens Axboe9bae26e2011-10-07 10:07:22 +02001709 void *cur_client = NULL;
Jens Axboe81179ee2011-10-04 12:42:06 +02001710 int backend = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001711
Jens Axboec2c94582011-10-05 20:31:30 +02001712 /*
1713 * Reset optind handling, since we may call this multiple times
1714 * for the backend.
1715 */
1716 optind = 1;
Jens Axboe7a4b8242011-10-05 17:35:15 +02001717
Jens Axboec2c94582011-10-05 20:31:30 +02001718 while ((c = getopt_long_only(argc, argv, ostr, l_opts, &lidx)) != -1) {
1719 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 Axboe7d8ea972014-04-14 13:37:46 -06001775 did_arg = 1;
Jens Axboe7874f8b2011-10-06 09:18:20 +02001776 if (!cur_client) {
Jens Axboec2c94582011-10-05 20:31:30 +02001777 usage(argv[0]);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001778 do_exit++;
1779 }
Jens Axboec2c94582011-10-05 20:31:30 +02001780 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001781 case 'c':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001782 did_arg = 1;
Jens Axboe7874f8b2011-10-06 09:18:20 +02001783 if (!cur_client) {
Jens Axboec2c94582011-10-05 20:31:30 +02001784 fio_show_option_help(optarg);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001785 do_exit++;
1786 }
Jens Axboec2c94582011-10-05 20:31:30 +02001787 break;
Steven Langde890a12011-11-09 14:03:34 +01001788 case 'i':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001789 did_arg = 1;
Steven Langde890a12011-11-09 14:03:34 +01001790 if (!cur_client) {
1791 fio_show_ioengine_help(optarg);
1792 do_exit++;
1793 }
1794 break;
Jens Axboecca73aa2007-04-04 11:09:19 +02001795 case 's':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001796 did_arg = 1;
Jens Axboecca73aa2007-04-04 11:09:19 +02001797 dump_cmdline = 1;
1798 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001799 case 'r':
1800 read_only = 1;
1801 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001802 case 'v':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001803 did_arg = 1;
Jens Axboe7874f8b2011-10-06 09:18:20 +02001804 if (!cur_client) {
Jens Axboe3d433822012-03-21 22:25:22 +01001805 log_info("%s\n", fio_version_string);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001806 do_exit++;
1807 }
Jens Axboec2c94582011-10-05 20:31:30 +02001808 break;
Jens Axboef57a9c52011-09-09 21:01:37 +02001809 case 'V':
1810 terse_version = atoi(optarg);
Jens Axboe09786f52012-10-04 17:06:49 +02001811 if (!(terse_version == 2 || terse_version == 3 ||
1812 terse_version == 4)) {
Jens Axboef57a9c52011-09-09 21:01:37 +02001813 log_err("fio: bad terse version format\n");
1814 exit_val = 1;
1815 do_exit++;
1816 }
1817 break;
Aaron Carrolle592a062007-09-14 09:49:41 +02001818 case 'e':
1819 if (!strcmp("always", optarg))
1820 eta_print = FIO_ETA_ALWAYS;
1821 else if (!strcmp("never", optarg))
1822 eta_print = FIO_ETA_NEVER;
1823 break;
Jens Axboee382e662013-02-22 20:48:56 +01001824 case 'E': {
1825 long long t = 0;
1826
Jens Axboe0de5b262014-02-21 15:26:01 -08001827 if (str_to_decimal(optarg, &t, 0, NULL, 1)) {
Jens Axboee382e662013-02-22 20:48:56 +01001828 log_err("fio: failed parsing eta time %s\n", optarg);
1829 exit_val = 1;
1830 do_exit++;
1831 }
1832 eta_new_line = t;
1833 break;
1834 }
Jens Axboeee56ad52008-02-01 10:30:20 +01001835 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001836 if (set_debug(optarg))
1837 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001838 break;
Jens Axboe111e0322013-03-07 11:31:20 +01001839 case 'P':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001840 did_arg = 1;
Jens Axboe111e0322013-03-07 11:31:20 +01001841 parse_only = 1;
1842 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001843 case 'x': {
1844 size_t new_size;
1845
Jens Axboe01f06b62008-02-18 20:53:47 +01001846 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001847 log_err("fio: can't use global as only "
1848 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001849 do_exit++;
1850 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001851 break;
1852 }
Jens Axboead0a2732011-03-11 10:16:17 +01001853 new_size = (nr_job_sections + 1) * sizeof(char *);
1854 job_sections = realloc(job_sections, new_size);
1855 job_sections[nr_job_sections] = strdup(optarg);
1856 nr_job_sections++;
Jens Axboe01f06b62008-02-18 20:53:47 +01001857 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001858 }
Jens Axboe9ac8a792009-11-13 21:23:07 +01001859 case 'p':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001860 did_arg = 1;
Jens Axboe4af7c002014-04-11 11:38:38 -06001861 if (exec_profile)
1862 free(exec_profile);
Jens Axboe07b32322010-03-05 09:48:44 +01001863 exec_profile = strdup(optarg);
Jens Axboe9ac8a792009-11-13 21:23:07 +01001864 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001865 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001866 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001867 char *val = optarg;
1868
1869 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe46bcd492012-03-14 11:31:21 +01001870 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
Jens Axboe66251552011-05-12 10:14:57 +02001871 if (ret)
Jens Axboe4a4ac4e2014-04-14 08:17:30 -06001872 goto out_free;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001873 td = NULL;
Jens Axboe7d8ea972014-04-14 13:37:46 -06001874 did_arg = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001875 }
1876 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001877 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001878 int global = 0;
1879
Jens Axboe01f06b62008-02-18 20:53:47 +01001880 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001881 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001882
Jens Axboe01f06b62008-02-18 20:53:47 +01001883 if (is_section && skip_this_section(val))
1884 continue;
1885
Steven Langde890a12011-11-09 14:03:34 +01001886 td = get_new_job(global, &def_thread, 1);
1887 if (!td || ioengine_load(td))
Jens Axboe4a4ac4e2014-04-14 08:17:30 -06001888 goto out_free;
Steven Langde890a12011-11-09 14:03:34 +01001889 fio_options_set_ioengine_opts(l_opts, td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001890 }
1891
Jens Axboe9d918182013-05-23 20:00:35 +02001892 if ((!val || !strlen(val)) &&
1893 l_opts[lidx].has_arg == required_argument) {
1894 log_err("fio: option %s requires an argument\n", opt);
1895 ret = 1;
1896 } else
1897 ret = fio_cmd_option_parse(td, opt, val);
1898
Jens Axboebfb3ea22013-05-23 19:54:43 +02001899 if (ret) {
1900 if (td) {
1901 put_job(td);
1902 td = NULL;
1903 }
Jens Axboea88c8c12013-04-24 22:25:22 -06001904 do_exit++;
Jens Axboebfb3ea22013-05-23 19:54:43 +02001905 }
Steven Langde890a12011-11-09 14:03:34 +01001906
1907 if (!ret && !strcmp(opt, "ioengine")) {
1908 free_ioengine(td);
1909 if (ioengine_load(td))
Jens Axboe4a4ac4e2014-04-14 08:17:30 -06001910 goto out_free;
Steven Langde890a12011-11-09 14:03:34 +01001911 fio_options_set_ioengine_opts(l_opts, td);
1912 }
1913 break;
1914 }
1915 case FIO_GETOPT_IOENGINE: {
1916 const char *opt = l_opts[lidx].name;
1917 char *val = optarg;
Jens Axboeb1ed74e2014-04-14 12:07:36 -06001918
1919 if (!td)
1920 break;
1921
Steven Langde890a12011-11-09 14:03:34 +01001922 ret = fio_cmd_ioengine_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001923 break;
1924 }
Jens Axboea9523c62011-01-17 16:49:54 -07001925 case 'w':
1926 warnings_fatal = 1;
1927 break;
Jens Axboefca70352011-07-06 20:12:54 +02001928 case 'j':
1929 max_jobs = atoi(optarg);
1930 if (!max_jobs || max_jobs > REAL_MAX_JOBS) {
1931 log_err("fio: invalid max jobs: %d\n", max_jobs);
1932 do_exit++;
1933 exit_val = 1;
1934 }
1935 break;
Jens Axboe50d16972011-09-29 17:45:28 -06001936 case 'S':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001937 did_arg = 1;
Jens Axboea37f69b2011-10-01 12:24:21 -06001938 if (nr_clients) {
Jens Axboe132159a2011-09-30 15:01:32 -06001939 log_err("fio: can't be both client and server\n");
1940 do_exit++;
1941 exit_val = 1;
1942 break;
1943 }
Jens Axboe87aa8f12011-10-06 21:24:13 +02001944 if (optarg)
Jens Axboebebe6392011-10-07 10:00:51 +02001945 fio_server_set_arg(optarg);
Jens Axboe50d16972011-09-29 17:45:28 -06001946 is_backend = 1;
Jens Axboe81179ee2011-10-04 12:42:06 +02001947 backend = 1;
Jens Axboe50d16972011-09-29 17:45:28 -06001948 break;
Jens Axboee46d8092011-10-03 09:11:02 +02001949 case 'D':
Jens Axboe6cfe9a82014-04-14 13:29:52 -06001950 if (pid_file)
1951 free(pid_file);
Jens Axboe402668f2011-10-10 15:28:58 +02001952 pid_file = strdup(optarg);
Jens Axboee46d8092011-10-03 09:11:02 +02001953 break;
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001954 case 'I':
1955 if ((ret = fio_idle_prof_parse_opt(optarg))) {
1956 /* exit on error and calibration only */
Jens Axboe7d8ea972014-04-14 13:37:46 -06001957 did_arg = 1;
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001958 do_exit++;
Jens Axboe7d8ea972014-04-14 13:37:46 -06001959 if (ret == -1)
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001960 exit_val = 1;
1961 }
1962 break;
Jens Axboe132159a2011-09-30 15:01:32 -06001963 case 'C':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001964 did_arg = 1;
Jens Axboe132159a2011-09-30 15:01:32 -06001965 if (is_backend) {
1966 log_err("fio: can't be both client and server\n");
1967 do_exit++;
1968 exit_val = 1;
1969 break;
1970 }
Jens Axboea5276612012-03-04 15:15:08 +01001971 if (fio_client_add(&fio_client_ops, optarg, &cur_client)) {
Jens Axboebebe6392011-10-07 10:00:51 +02001972 log_err("fio: failed adding client %s\n", optarg);
1973 do_exit++;
1974 exit_val = 1;
1975 break;
1976 }
Jens Axboe14ea90e2012-08-26 17:33:34 +02001977 /*
1978 * If the next argument exists and isn't an option,
1979 * assume it's a job file for this client only.
1980 */
1981 while (optind < argc) {
1982 if (!strncmp(argv[optind], "--", 2) ||
1983 !strncmp(argv[optind], "-", 1))
1984 break;
1985
1986 fio_client_add_ini_file(cur_client, argv[optind]);
1987 optind++;
1988 }
Jens Axboe132159a2011-09-30 15:01:32 -06001989 break;
Jens Axboe7d11f872012-12-17 12:03:29 +01001990 case 'T':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001991 did_arg = 1;
Jens Axboe7d11f872012-12-17 12:03:29 +01001992 do_exit++;
1993 exit_val = fio_monotonic_clocktest();
1994 break;
Jens Axboefec0f212014-02-07 14:39:33 -07001995 case 'G':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001996 did_arg = 1;
Jens Axboefec0f212014-02-07 14:39:33 -07001997 do_exit++;
1998 exit_val = fio_crctest(optarg);
1999 break;
Jens Axboe06464902013-04-24 20:38:54 -06002000 case 'L': {
2001 long long val;
2002
Jens Axboe7cd0ec52014-03-28 08:09:10 -06002003 if (check_str_time(optarg, &val, 0)) {
Jens Axboe06464902013-04-24 20:38:54 -06002004 log_err("fio: failed parsing time %s\n", optarg);
2005 do_exit++;
2006 exit_val = 1;
2007 break;
2008 }
2009 status_interval = val * 1000;
2010 break;
2011 }
Jens Axboe798827c2013-01-23 18:11:48 -07002012 case '?':
2013 log_err("%s: unrecognized option '%s'\n", argv[0],
2014 argv[optind - 1]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01002015 default:
Jens Axboec09823a2008-02-19 20:16:57 +01002016 do_exit++;
2017 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01002018 break;
2019 }
Jens Axboec7d5c942011-10-03 11:48:17 +02002020 if (do_exit)
2021 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01002022 }
2023
Jens Axboe0b14f0a2013-05-23 21:27:54 +02002024 if (do_exit && !(is_backend || nr_clients))
2025 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01002026
Jens Axboefb296042014-04-02 08:28:49 -06002027 if (nr_clients && fio_clients_connect())
2028 exit(1);
Jens Axboe132159a2011-09-30 15:01:32 -06002029
Jens Axboe81179ee2011-10-04 12:42:06 +02002030 if (is_backend && backend)
Jens Axboe402668f2011-10-10 15:28:58 +02002031 return fio_start_server(pid_file);
Jens Axboeb8ba87a2014-04-11 11:37:34 -06002032 else if (pid_file)
2033 free(pid_file);
Jens Axboe50d16972011-09-29 17:45:28 -06002034
Jens Axboe214e1ec2007-03-15 10:48:13 +01002035 if (td) {
Jens Axboe7d8ea972014-04-14 13:37:46 -06002036 if (!ret) {
Jens Axboe46bcd492012-03-14 11:31:21 +01002037 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
Jens Axboe7d8ea972014-04-14 13:37:46 -06002038 if (ret)
2039 did_arg = 1;
2040 }
Jens Axboe214e1ec2007-03-15 10:48:13 +01002041 }
2042
Jens Axboe7874f8b2011-10-06 09:18:20 +02002043 while (!ret && optind < argc) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002044 ini_idx++;
2045 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
2046 ini_file[ini_idx - 1] = strdup(argv[optind]);
2047 optind++;
2048 }
2049
Jens Axboe4a4ac4e2014-04-14 08:17:30 -06002050out_free:
2051 if (pid_file)
2052 free(pid_file);
2053
Jens Axboe214e1ec2007-03-15 10:48:13 +01002054 return ini_idx;
2055}
2056
Jens Axboe0420ba62012-02-29 11:16:52 +01002057int fio_init_options(void)
Jens Axboeebac4652005-12-08 15:25:21 +01002058{
Jens Axboeb4692822006-10-27 13:43:22 +02002059 f_out = stdout;
2060 f_err = stderr;
2061
Jens Axboe4c6107f2011-01-18 05:22:22 -07002062 fio_options_fill_optstring();
Jens Axboe5ec10ea2008-03-06 15:42:00 +01002063 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02002064
Jens Axboe9d9eb2e2011-10-03 12:01:42 +02002065 atexit(free_shm);
2066
Jens Axboeebac4652005-12-08 15:25:21 +01002067 if (fill_def_thread())
2068 return 1;
2069
Jens Axboe0420ba62012-02-29 11:16:52 +01002070 return 0;
2071}
2072
Jens Axboe51167792012-03-08 21:34:18 +01002073extern int fio_check_options(struct thread_options *);
2074
Jens Axboe0420ba62012-02-29 11:16:52 +01002075int parse_options(int argc, char *argv[])
2076{
Jens Axboe46bcd492012-03-14 11:31:21 +01002077 const int type = FIO_CLIENT_TYPE_CLI;
Jens Axboe0420ba62012-02-29 11:16:52 +01002078 int job_files, i;
2079
2080 if (fio_init_options())
2081 return 1;
Jens Axboe51167792012-03-08 21:34:18 +01002082 if (fio_test_cconv(&def_thread.o))
2083 log_err("fio: failed internal cconv test\n");
Jens Axboe0420ba62012-02-29 11:16:52 +01002084
Jens Axboe46bcd492012-03-14 11:31:21 +01002085 job_files = parse_cmd_line(argc, argv, type);
Jens Axboeebac4652005-12-08 15:25:21 +01002086
Jens Axboecdf54d82011-10-04 08:31:40 +02002087 if (job_files > 0) {
2088 for (i = 0; i < job_files; i++) {
Jens Axboebc4f5ef2014-04-06 10:10:32 -06002089 if (i && fill_def_thread())
Jens Axboe132159a2011-09-30 15:01:32 -06002090 return 1;
Jens Axboecdf54d82011-10-04 08:31:40 +02002091 if (nr_clients) {
2092 if (fio_clients_send_ini(ini_file[i]))
2093 return 1;
2094 free(ini_file[i]);
2095 } else if (!is_backend) {
Jens Axboe46bcd492012-03-14 11:31:21 +01002096 if (parse_jobs_ini(ini_file[i], 0, i, type))
Jens Axboecdf54d82011-10-04 08:31:40 +02002097 return 1;
2098 free(ini_file[i]);
2099 }
Jens Axboe132159a2011-09-30 15:01:32 -06002100 }
Jens Axboe14ea90e2012-08-26 17:33:34 +02002101 } else if (nr_clients) {
2102 if (fill_def_thread())
2103 return 1;
2104 if (fio_clients_send_ini(NULL))
2105 return 1;
Jens Axboe972cfd22006-06-09 11:08:56 +02002106 }
Jens Axboeebac4652005-12-08 15:25:21 +01002107
Jens Axboe88c6ed82006-06-09 11:28:10 +02002108 free(ini_file);
Jens Axboe7e356b22011-10-14 10:55:16 +02002109 fio_options_free(&def_thread);
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08002110 filesetup_mem_free();
Jens Axboeb4692822006-10-27 13:43:22 +02002111
2112 if (!thread_number) {
Jens Axboef9633d72013-09-06 09:59:56 -06002113 if (parse_dryrun())
Jens Axboecca73aa2007-04-04 11:09:19 +02002114 return 0;
Jens Axboe07b32322010-03-05 09:48:44 +01002115 if (exec_profile)
2116 return 0;
Jens Axboea37f69b2011-10-01 12:24:21 -06002117 if (is_backend || nr_clients)
Jens Axboe5c341e92011-09-29 18:00:35 -06002118 return 0;
Jens Axboe085399d2011-10-06 09:01:22 +02002119 if (did_arg)
2120 return 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02002121
Jens Axboed65e11c2011-10-05 09:56:53 +02002122 log_err("No jobs(s) defined\n\n");
Jens Axboe085399d2011-10-06 09:01:22 +02002123
2124 if (!did_arg) {
2125 usage(argv[0]);
2126 return 1;
2127 }
2128
2129 return 0;
Jens Axboeb4692822006-10-27 13:43:22 +02002130 }
2131
Jens Axboebe4ecfd2008-12-08 14:10:52 +01002132 if (def_thread.o.gtod_offload) {
2133 fio_gtod_init();
2134 fio_gtod_offload = 1;
2135 fio_gtod_cpu = def_thread.o.gtod_cpu;
2136 }
2137
Jens Axboef3afa572012-09-17 13:34:16 +02002138 if (output_format == FIO_OUTPUT_NORMAL)
Jens Axboe3d433822012-03-21 22:25:22 +01002139 log_info("%s\n", fio_version_string);
Jens Axboef6dea4d2011-10-13 13:37:07 +02002140
Jens Axboeebac4652005-12-08 15:25:21 +01002141 return 0;
2142}
Jens Axboe588b7f02012-03-19 20:37:41 +01002143
2144void options_default_fill(struct thread_options *o)
2145{
2146 memcpy(o, &def_thread.o, sizeof(*o));
2147}