blob: d44eb5b1eaa2fb086afe25b3a6bda335320decf7 [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{
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200241 if (threads) {
242 void *tp = threads;
Jens Axboeef7035a2014-06-18 15:30:09 -0700243#ifndef CONFIG_NO_SHM
244 struct shmid_ds sbuf;
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200245
246 threads = NULL;
Jens Axboe2bb3f0a2012-03-28 12:22:40 +0200247 shmdt(tp);
248 shmctl(shm_id, IPC_RMID, &sbuf);
249 shm_id = -1;
Jens Axboeef7035a2014-06-18 15:30:09 -0700250#else
251 threads = NULL;
252 free(tp);
253#endif
Jens Axboe2bb3f0a2012-03-28 12:22:40 +0200254 }
255}
256
Jens Axboe10aa1362014-04-01 21:10:36 -0600257static void free_shm(void)
Jens Axboe2bb3f0a2012-03-28 12:22:40 +0200258{
259 if (threads) {
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200260 file_hash_exit();
Dan Ehrenberg9e684a42012-02-20 11:05:14 +0100261 flow_exit();
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200262 fio_debug_jobp = NULL;
Jens Axboe2bb3f0a2012-03-28 12:22:40 +0200263 free_threads_shm();
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200264 }
265
Jens Axboeeb0c74a2014-02-11 10:33:06 -0700266 options_free(fio_options, &def_thread);
Jens Axboe243bfe12014-04-02 15:46:58 -0600267 fio_filelock_exit();
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200268 scleanup();
269}
270
271/*
272 * The thread area is shared between the main process and the job
273 * threads/processes. So setup a shared memory segment that will hold
274 * all the job info. We use the end of the region for keeping track of
275 * open files across jobs, for file sharing.
276 */
277static int setup_thread_area(void)
278{
279 void *hash;
280
281 if (threads)
282 return 0;
283
284 /*
285 * 1024 is too much on some machines, scale max_jobs if
286 * we get a failure that looks like too large a shm segment
287 */
288 do {
289 size_t size = max_jobs * sizeof(struct thread_data);
290
291 size += file_hash_size;
292 size += sizeof(unsigned int);
293
Jens Axboeef7035a2014-06-18 15:30:09 -0700294#ifndef CONFIG_NO_SHM
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200295 shm_id = shmget(0, size, IPC_CREAT | 0600);
296 if (shm_id != -1)
297 break;
Jens Axboef0c77f02012-09-21 15:05:45 +0200298 if (errno != EINVAL && errno != ENOMEM && errno != ENOSPC) {
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200299 perror("shmget");
300 break;
301 }
Jens Axboeef7035a2014-06-18 15:30:09 -0700302#else
303 threads = malloc(size);
304 if (threads)
305 break;
306#endif
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200307
308 max_jobs >>= 1;
309 } while (max_jobs);
310
Jens Axboeef7035a2014-06-18 15:30:09 -0700311#ifndef CONFIG_NO_SHM
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200312 if (shm_id == -1)
313 return 1;
314
315 threads = shmat(shm_id, NULL, 0);
316 if (threads == (void *) -1) {
317 perror("shmat");
318 return 1;
319 }
Jens Axboeef7035a2014-06-18 15:30:09 -0700320#endif
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200321
322 memset(threads, 0, max_jobs * sizeof(struct thread_data));
323 hash = (void *) threads + max_jobs * sizeof(struct thread_data);
324 fio_debug_jobp = (void *) hash + file_hash_size;
325 *fio_debug_jobp = -1;
326 file_hash_init(hash);
Dan Ehrenberg9e684a42012-02-20 11:05:14 +0100327
328 flow_init();
329
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200330 return 0;
331}
332
Jens Axboe25bd16c2014-04-06 10:09:30 -0600333static void set_cmd_options(struct thread_data *td)
334{
335 struct thread_options *o = &td->o;
336
337 if (!o->timeout)
338 o->timeout = def_timeout;
339}
340
Jens Axboe906c8d72006-06-13 09:37:56 +0200341/*
342 * Return a free job structure.
343 */
Steven Langde890a12011-11-09 14:03:34 +0100344static struct thread_data *get_new_job(int global, struct thread_data *parent,
345 int preserve_eo)
Jens Axboeebac4652005-12-08 15:25:21 +0100346{
347 struct thread_data *td;
348
Jens Axboe25bd16c2014-04-06 10:09:30 -0600349 if (global) {
350 set_cmd_options(&def_thread);
Jens Axboeebac4652005-12-08 15:25:21 +0100351 return &def_thread;
Jens Axboe25bd16c2014-04-06 10:09:30 -0600352 }
Jens Axboe9d9eb2e2011-10-03 12:01:42 +0200353 if (setup_thread_area()) {
354 log_err("error: failed to setup shm segment\n");
355 return NULL;
356 }
Bruce Crane61f1ec2011-01-14 18:30:26 +0100357 if (thread_number >= max_jobs) {
358 log_err("error: maximum number of jobs (%d) reached.\n",
359 max_jobs);
Jens Axboeebac4652005-12-08 15:25:21 +0100360 return NULL;
Bruce Crane61f1ec2011-01-14 18:30:26 +0100361 }
Jens Axboeebac4652005-12-08 15:25:21 +0100362
363 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200364 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100365
Steven Langde890a12011-11-09 14:03:34 +0100366 td->io_ops = NULL;
367 if (!preserve_eo)
368 td->eo = NULL;
369
Jens Axboee0b0d892009-12-08 10:10:14 +0100370 td->o.uid = td->o.gid = -1U;
371
Jens Axboecade3ef2007-03-23 15:29:45 +0100372 dup_files(td, parent);
Steven Langde890a12011-11-09 14:03:34 +0100373 fio_options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100374
Jens Axboe15dc1932010-03-05 10:59:06 +0100375 profile_add_hooks(td);
376
Jens Axboeebac4652005-12-08 15:25:21 +0100377 td->thread_number = thread_number;
Jens Axboe108fea72012-11-14 13:09:45 -0700378
Jens Axboebcdcb5a2014-04-11 11:42:13 -0600379 if (!parent->o.group_reporting)
Jens Axboe108fea72012-11-14 13:09:45 -0700380 stat_number++;
381
Jens Axboe25bd16c2014-04-06 10:09:30 -0600382 set_cmd_options(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100383 return td;
384}
385
386static void put_job(struct thread_data *td)
387{
Jens Axboe549577a2006-10-30 12:23:41 +0100388 if (td == &def_thread)
389 return;
Bruce Cran84dd1882011-05-05 08:14:09 -0600390
Jens Axboe58c55ba2010-03-09 12:20:08 +0100391 profile_td_exit(td);
Dan Ehrenberg9e684a42012-02-20 11:05:14 +0100392 flow_exit_job(td);
Jens Axboe549577a2006-10-30 12:23:41 +0100393
Jens Axboe16edf252007-02-10 14:59:22 +0100394 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100395 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100396
Jens Axboe7e356b22011-10-14 10:55:16 +0200397 fio_options_free(td);
Steven Langde890a12011-11-09 14:03:34 +0100398 if (td->io_ops)
399 free_ioengine(td);
Jens Axboe7e356b22011-10-14 10:55:16 +0200400
Jens Axboeebac4652005-12-08 15:25:21 +0100401 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
402 thread_number--;
403}
404
Jens Axboe581e7142009-06-09 12:47:16 +0200405static int __setup_rate(struct thread_data *td, enum fio_ddir ddir)
Jens Axboe127f6862007-03-15 12:09:57 +0100406{
Jens Axboe581e7142009-06-09 12:47:16 +0200407 unsigned int bs = td->o.min_bs[ddir];
Jens Axboe127f6862007-03-15 12:09:57 +0100408
Jens Axboeff58fce2010-08-25 12:02:08 +0200409 assert(ddir_rw(ddir));
410
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100411 if (td->o.rate[ddir])
Steven Lang1b8dbf22011-11-09 13:48:01 +0100412 td->rate_bps[ddir] = td->o.rate[ddir];
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100413 else
Steven Lang1b8dbf22011-11-09 13:48:01 +0100414 td->rate_bps[ddir] = td->o.rate_iops[ddir] * bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100415
Steven Lang1b8dbf22011-11-09 13:48:01 +0100416 if (!td->rate_bps[ddir]) {
Jens Axboe127f6862007-03-15 12:09:57 +0100417 log_err("rate lower than supported\n");
418 return -1;
419 }
420
Jens Axboe581e7142009-06-09 12:47:16 +0200421 td->rate_pending_usleep[ddir] = 0;
Jens Axboe127f6862007-03-15 12:09:57 +0100422 return 0;
423}
424
Jens Axboe581e7142009-06-09 12:47:16 +0200425static int setup_rate(struct thread_data *td)
426{
427 int ret = 0;
428
429 if (td->o.rate[DDIR_READ] || td->o.rate_iops[DDIR_READ])
430 ret = __setup_rate(td, DDIR_READ);
431 if (td->o.rate[DDIR_WRITE] || td->o.rate_iops[DDIR_WRITE])
432 ret |= __setup_rate(td, DDIR_WRITE);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200433 if (td->o.rate[DDIR_TRIM] || td->o.rate_iops[DDIR_TRIM])
434 ret |= __setup_rate(td, DDIR_TRIM);
Jens Axboe581e7142009-06-09 12:47:16 +0200435
436 return ret;
437}
438
Jens Axboe83472392009-02-19 21:32:12 +0100439static int fixed_block_size(struct thread_options *o)
440{
441 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
442 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200443 o->min_bs[DDIR_TRIM] == o->max_bs[DDIR_TRIM] &&
444 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE] &&
445 o->min_bs[DDIR_READ] == o->min_bs[DDIR_TRIM];
Jens Axboe83472392009-02-19 21:32:12 +0100446}
447
Christian Ehrhardt23ed19b2014-02-20 09:07:02 -0800448
449static unsigned long long get_rand_start_delay(struct thread_data *td)
450{
451 unsigned long long delayrange;
452 unsigned long r;
453
454 delayrange = td->o.start_delay_high - td->o.start_delay;
455
456 if (td->o.use_os_rand) {
457 r = os_random_long(&td->delay_state);
458 delayrange = (unsigned long long) ((double) delayrange * (r / (OS_RAND_MAX + 1.0)));
459 } else {
460 r = __rand(&td->__delay_state);
461 delayrange = (unsigned long long) ((double) delayrange * (r / (FRAND_MAX + 1.0)));
462 }
463
464 delayrange += td->o.start_delay;
465 return delayrange;
466}
467
Jens Axboedad915e2006-10-27 11:10:18 +0200468/*
469 * Lazy way of fixing up options that depend on each other. We could also
470 * define option callback handlers, but this is easier.
471 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100472static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200473{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100474 struct thread_options *o = &td->o;
Jens Axboeeefd98b2013-07-25 12:30:06 -0600475 int ret = 0;
Jens Axboedad915e2006-10-27 11:10:18 +0200476
Jens Axboef356d012009-01-05 09:56:29 +0100477#ifndef FIO_HAVE_PSHARED_MUTEX
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100478 if (!o->use_thread) {
Jens Axboef356d012009-01-05 09:56:29 +0100479 log_info("fio: this platform does not support process shared"
480 " mutexes, forcing use of threads. Use the 'thread'"
481 " option to get rid of this warning.\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100482 o->use_thread = 1;
Jens Axboea9523c62011-01-17 16:49:54 -0700483 ret = warnings_fatal;
Jens Axboef356d012009-01-05 09:56:29 +0100484 }
485#endif
486
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100487 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200488 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100489 free(o->write_iolog_file);
490 o->write_iolog_file = NULL;
Jens Axboea9523c62011-01-17 16:49:54 -0700491 ret = warnings_fatal;
Jens Axboe076efc72006-10-27 11:24:25 +0200492 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100493
Jens Axboe16b462a2006-10-30 12:35:18 +0100494 /*
Steven Noonaned335852012-01-31 13:58:00 +0100495 * only really works with 1 file
Jens Axboe16b462a2006-10-30 12:35:18 +0100496 */
Jens Axboe627aa1a2013-02-07 13:06:18 +0100497 if (o->zone_size && o->open_files > 1)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100498 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100499
500 /*
Steven Noonaned335852012-01-31 13:58:00 +0100501 * If zone_range isn't specified, backward compatibility dictates it
502 * should be made equal to zone_size.
503 */
504 if (o->zone_size && !o->zone_range)
505 o->zone_range = o->zone_size;
506
507 /*
Jens Axboe16b462a2006-10-30 12:35:18 +0100508 * Reads can do overwrites, we always need to pre-create the file
509 */
510 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100511 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100512
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100513 if (!o->min_bs[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100514 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100515 if (!o->max_bs[DDIR_READ])
516 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
517 if (!o->min_bs[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100518 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100519 if (!o->max_bs[DDIR_WRITE])
520 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200521 if (!o->min_bs[DDIR_TRIM])
522 o->min_bs[DDIR_TRIM] = o->bs[DDIR_TRIM];
523 if (!o->max_bs[DDIR_TRIM])
524 o->max_bs[DDIR_TRIM] = o->bs[DDIR_TRIM];
525
Jens Axboea00735e2006-11-03 08:58:08 +0100526
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100527 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200528 o->rw_min_bs = min(o->min_bs[DDIR_TRIM], o->rw_min_bs);
Jens Axboea00735e2006-11-03 08:58:08 +0100529
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100530 /*
531 * For random IO, allow blockalign offset other than min_bs.
532 */
533 if (!o->ba[DDIR_READ] || !td_random(td))
534 o->ba[DDIR_READ] = o->min_bs[DDIR_READ];
535 if (!o->ba[DDIR_WRITE] || !td_random(td))
536 o->ba[DDIR_WRITE] = o->min_bs[DDIR_WRITE];
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200537 if (!o->ba[DDIR_TRIM] || !td_random(td))
538 o->ba[DDIR_TRIM] = o->min_bs[DDIR_TRIM];
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100539
540 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200541 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE] ||
542 o->ba[DDIR_TRIM] != o->min_bs[DDIR_TRIM]) &&
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100543 !o->norandommap) {
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100544 log_err("fio: Any use of blockalign= turns off randommap\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100545 o->norandommap = 1;
Jens Axboea9523c62011-01-17 16:49:54 -0700546 ret = warnings_fatal;
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100547 }
548
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100549 if (!o->file_size_high)
550 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100551
Christian Ehrhardt23ed19b2014-02-20 09:07:02 -0800552 if (o->start_delay_high)
553 o->start_delay = get_rand_start_delay(td);
554
Jens Axboe83472392009-02-19 21:32:12 +0100555 if (o->norandommap && o->verify != VERIFY_NONE
556 && !fixed_block_size(o)) {
557 log_err("fio: norandommap given for variable block sizes, "
558 "verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100559 o->verify = VERIFY_NONE;
Jens Axboea9523c62011-01-17 16:49:54 -0700560 ret = warnings_fatal;
Jens Axboebb8895e2006-10-30 15:14:48 +0100561 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100562 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100563 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100564
565 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100566 * thinktime_spin must be less than thinktime
567 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100568 if (o->thinktime_spin > o->thinktime)
569 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100570
571 /*
572 * The low water mark cannot be bigger than the iodepth
573 */
Jens Axboe67bf9822013-01-10 11:23:19 +0100574 if (o->iodepth_low > o->iodepth || !o->iodepth_low)
575 o->iodepth_low = o->iodepth;
Jens Axboecb5ab512007-02-26 12:57:09 +0100576
577 /*
578 * If batch number isn't set, default to the same as iodepth
579 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100580 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
581 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100582
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100583 if (o->nr_files > td->files_index)
584 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100585
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100586 if (o->open_files > o->nr_files || !o->open_files)
587 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100588
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200589 if (((o->rate[DDIR_READ] + o->rate[DDIR_WRITE] + o->rate[DDIR_TRIM]) &&
590 (o->rate_iops[DDIR_READ] + o->rate_iops[DDIR_WRITE] + o->rate_iops[DDIR_TRIM])) ||
591 ((o->ratemin[DDIR_READ] + o->ratemin[DDIR_WRITE] + o->ratemin[DDIR_TRIM]) &&
592 (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 +0100593 log_err("fio: rate and rate_iops are mutually exclusive\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700594 ret = 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100595 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200596 if ((o->rate[DDIR_READ] < o->ratemin[DDIR_READ]) ||
597 (o->rate[DDIR_WRITE] < o->ratemin[DDIR_WRITE]) ||
598 (o->rate[DDIR_TRIM] < o->ratemin[DDIR_TRIM]) ||
599 (o->rate_iops[DDIR_READ] < o->rate_iops_min[DDIR_READ]) ||
600 (o->rate_iops[DDIR_WRITE] < o->rate_iops_min[DDIR_WRITE]) ||
601 (o->rate_iops[DDIR_TRIM] < o->rate_iops_min[DDIR_TRIM])) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100602 log_err("fio: minimum rate exceeds rate\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700603 ret = 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100604 }
605
Jens Axboecf4464c2007-04-17 20:14:42 +0200606 if (!o->timeout && o->time_based) {
607 log_err("fio: time_based requires a runtime/timeout setting\n");
608 o->time_based = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700609 ret = warnings_fatal;
Jens Axboecf4464c2007-04-17 20:14:42 +0200610 }
611
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100612 if (o->fill_device && !o->size)
Jens Axboe5921e802008-05-30 15:02:38 +0200613 o->size = -1ULL;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100614
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100615 if (o->verify != VERIFY_NONE) {
Jens Axboe996936f2011-01-18 05:41:39 -0700616 if (td_write(td) && o->do_verify && o->numjobs > 1) {
Jens Axboea9523c62011-01-17 16:49:54 -0700617 log_info("Multiple writers may overwrite blocks that "
618 "belong to other jobs. This can cause "
619 "verification failures.\n");
620 ret = warnings_fatal;
621 }
622
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100623 o->refill_buffers = 1;
Jens Axboe2f1b8e82010-06-18 09:22:56 +0200624 if (o->max_bs[DDIR_WRITE] != o->min_bs[DDIR_WRITE] &&
625 !o->verify_interval)
626 o->verify_interval = o->min_bs[DDIR_WRITE];
Jens Axboed9905882010-03-18 20:43:00 +0100627 }
Jens Axboe41ccd842008-05-22 09:17:33 +0200628
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100629 if (o->pre_read) {
630 o->invalidate_cache = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700631 if (td->io_ops->flags & FIO_PIPEIO) {
Jens Axboe9c0d2242009-07-01 12:26:28 +0200632 log_info("fio: cannot pre-read files with an IO engine"
633 " that isn't seekable. Pre-read disabled.\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700634 ret = warnings_fatal;
635 }
Jens Axboe9c0d2242009-07-01 12:26:28 +0200636 }
Jens Axboe34f1c042009-06-02 14:19:25 +0200637
Steven Noonanad705bc2013-04-08 15:05:25 -0700638 if (!o->unit_base) {
639 if (td->io_ops->flags & FIO_BIT_BASED)
640 o->unit_base = 1;
641 else
642 o->unit_base = 8;
643 }
644
Jens Axboe67bf9822013-01-10 11:23:19 +0100645#ifndef CONFIG_FDATASYNC
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100646 if (o->fdatasync_blocks) {
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700647 log_info("fio: this platform does not support fdatasync()"
648 " falling back to using fsync(). Use the 'fsync'"
649 " option instead of 'fdatasync' to get rid of"
650 " this warning\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100651 o->fsync_blocks = o->fdatasync_blocks;
652 o->fdatasync_blocks = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700653 ret = warnings_fatal;
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700654 }
655#endif
656
Bruce Cran93bcfd22012-02-20 20:18:19 +0100657#ifdef WIN32
658 /*
659 * Windows doesn't support O_DIRECT or O_SYNC with the _open interface,
660 * so fail if we're passed those flags
661 */
662 if ((td->io_ops->flags & FIO_SYNCIO) && (td->o.odirect || td->o.sync_io)) {
663 log_err("fio: Windows does not support direct or non-buffered io with"
664 " the synchronous ioengines. Use the 'windowsaio' ioengine"
665 " with 'direct=1' and 'iodepth=1' instead.\n");
666 ret = 1;
667 }
668#endif
669
Jens Axboe811ac502012-03-02 22:23:36 +0100670 /*
671 * For fully compressible data, just zero them at init time.
672 * It's faster than repeatedly filling it.
673 */
674 if (td->o.compress_percentage == 100) {
675 td->o.zero_buffers = 1;
676 td->o.compress_percentage = 0;
677 }
678
Jens Axboe5881fda2012-11-15 15:21:23 -0700679 /*
680 * Using a non-uniform random distribution excludes usage of
681 * a random map
682 */
683 if (td->o.random_distribution != FIO_RAND_DIST_RANDOM)
684 td->o.norandommap = 1;
685
Jens Axboe8d916c92013-04-25 10:11:41 -0600686 /*
687 * If size is set but less than the min block size, complain
688 */
689 if (o->size && o->size < td_min_bs(td)) {
690 log_err("fio: size too small, must be larger than the IO size: %llu\n", (unsigned long long) o->size);
691 ret = 1;
692 }
693
Chris Masond01612f2013-11-15 15:52:58 -0700694 /*
695 * O_ATOMIC implies O_DIRECT
696 */
697 if (td->o.oatomic)
698 td->o.odirect = 1;
699
Jens Axboe04778ba2014-01-10 20:57:01 -0700700 /*
701 * If randseed is set, that overrides randrepeat
702 */
703 if (td->o.rand_seed)
704 td->o.rand_repeatable = 0;
705
Jens Axboeb1bebc32014-03-18 13:30:32 -0600706 if ((td->io_ops->flags & FIO_NOEXTEND) && td->o.file_append) {
707 log_err("fio: can't append/extent with IO engine %s\n", td->io_ops->name);
708 ret = 1;
709 }
710
Jens Axboea9523c62011-01-17 16:49:54 -0700711 return ret;
Jens Axboee1f36502006-10-27 10:54:08 +0200712}
713
Jens Axboe906c8d72006-06-13 09:37:56 +0200714/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100715 * This function leaks the buffer
716 */
Jens Axboe99d633a2012-03-15 15:55:04 +0100717char *fio_uint_to_kmg(unsigned int val)
Jens Axboef8977ee2006-11-06 14:03:03 +0100718{
719 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100720 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100721 char *p = post;
722
Jens Axboe245142f2006-11-08 12:49:21 +0100723 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100724 if (val & 1023)
725 break;
726
727 val >>= 10;
728 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100729 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100730
Ken Raeburn98ffb8f2013-01-30 22:31:09 +0100731 snprintf(buf, 32, "%u%c", val, *p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100732 return buf;
733}
734
Jens Axboe09629a92007-03-09 09:00:06 +0100735/* External engines are specified by "external:name.o") */
736static const char *get_engine_name(const char *str)
737{
738 char *p = strstr(str, ":");
739
740 if (!p)
741 return str;
742
743 p++;
744 strip_blank_front(&p);
745 strip_blank_end(p);
746 return p;
747}
748
Jens Axboee132cba2007-03-14 14:23:54 +0100749static int exists_and_not_file(const char *filename)
750{
751 struct stat sb;
752
753 if (lstat(filename, &sb) == -1)
754 return 0;
755
Bruce Cranecc314b2011-01-04 10:59:30 +0100756 /* \\.\ is the device namespace in Windows, where every file
757 * is a device node */
758 if (S_ISREG(sb.st_mode) && strncmp(filename, "\\\\.\\", 4) != 0)
Jens Axboee132cba2007-03-14 14:23:54 +0100759 return 0;
760
761 return 1;
762}
763
Jens Axboe4c07ad82011-03-28 09:51:09 +0200764static void td_fill_rand_seeds_os(struct thread_data *td)
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200765{
Jens Axboed24945f2012-12-04 13:10:29 +0100766 os_random_seed(td->rand_seeds[FIO_RAND_BS_OFF], &td->bsrange_state);
767 os_random_seed(td->rand_seeds[FIO_RAND_VER_OFF], &td->verify_state);
768 os_random_seed(td->rand_seeds[FIO_RAND_MIX_OFF], &td->rwmix_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200769
770 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboed24945f2012-12-04 13:10:29 +0100771 os_random_seed(td->rand_seeds[FIO_RAND_FILE_OFF], &td->next_file_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200772
Jens Axboed24945f2012-12-04 13:10:29 +0100773 os_random_seed(td->rand_seeds[FIO_RAND_FILE_SIZE_OFF], &td->file_size_state);
774 os_random_seed(td->rand_seeds[FIO_RAND_TRIM_OFF], &td->trim_state);
Christian Ehrhardt23ed19b2014-02-20 09:07:02 -0800775 os_random_seed(td->rand_seeds[FIO_RAND_START_DELAY], &td->delay_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200776
777 if (!td_random(td))
778 return;
779
780 if (td->o.rand_repeatable)
Jens Axboed24945f2012-12-04 13:10:29 +0100781 td->rand_seeds[FIO_RAND_BLOCK_OFF] = FIO_RANDSEED * td->thread_number;
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200782
Jens Axboed24945f2012-12-04 13:10:29 +0100783 os_random_seed(td->rand_seeds[FIO_RAND_BLOCK_OFF], &td->random_state);
Jens Axboed9472272013-07-25 10:20:45 -0600784
785 os_random_seed(td->rand_seeds[FIO_RAND_SEQ_RAND_READ_OFF], &td->seq_rand_state[DDIR_READ]);
786 os_random_seed(td->rand_seeds[FIO_RAND_SEQ_RAND_WRITE_OFF], &td->seq_rand_state[DDIR_WRITE]);
787 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 +0200788}
789
790static void td_fill_rand_seeds_internal(struct thread_data *td)
791{
Jens Axboed24945f2012-12-04 13:10:29 +0100792 init_rand_seed(&td->__bsrange_state, td->rand_seeds[FIO_RAND_BS_OFF]);
793 init_rand_seed(&td->__verify_state, td->rand_seeds[FIO_RAND_VER_OFF]);
794 init_rand_seed(&td->__rwmix_state, td->rand_seeds[FIO_RAND_MIX_OFF]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200795
796 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboed24945f2012-12-04 13:10:29 +0100797 init_rand_seed(&td->__next_file_state, td->rand_seeds[FIO_RAND_FILE_OFF]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200798
Jens Axboed24945f2012-12-04 13:10:29 +0100799 init_rand_seed(&td->__file_size_state, td->rand_seeds[FIO_RAND_FILE_SIZE_OFF]);
800 init_rand_seed(&td->__trim_state, td->rand_seeds[FIO_RAND_TRIM_OFF]);
Christian Ehrhardt23ed19b2014-02-20 09:07:02 -0800801 init_rand_seed(&td->__delay_state, td->rand_seeds[FIO_RAND_START_DELAY]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200802
803 if (!td_random(td))
804 return;
805
806 if (td->o.rand_repeatable)
Jens Axboed24945f2012-12-04 13:10:29 +0100807 td->rand_seeds[FIO_RAND_BLOCK_OFF] = FIO_RANDSEED * td->thread_number;
Jens Axboe4c07ad82011-03-28 09:51:09 +0200808
Jens Axboed24945f2012-12-04 13:10:29 +0100809 init_rand_seed(&td->__random_state, td->rand_seeds[FIO_RAND_BLOCK_OFF]);
Jens Axboed9472272013-07-25 10:20:45 -0600810 init_rand_seed(&td->__seq_rand_state[DDIR_READ], td->rand_seeds[FIO_RAND_SEQ_RAND_READ_OFF]);
811 init_rand_seed(&td->__seq_rand_state[DDIR_WRITE], td->rand_seeds[FIO_RAND_SEQ_RAND_WRITE_OFF]);
812 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 +0200813}
814
Jens Axboe4c07ad82011-03-28 09:51:09 +0200815void td_fill_rand_seeds(struct thread_data *td)
816{
Christian Ehrhardt56e2a5f2014-02-20 09:10:17 -0800817 if (td->o.allrand_repeatable) {
818 for (int i = 0; i < FIO_RAND_NR_OFFS; i++)
819 td->rand_seeds[i] = FIO_RANDSEED * td->thread_number
820 + i;
821 }
822
Jens Axboe4c07ad82011-03-28 09:51:09 +0200823 if (td->o.use_os_rand)
824 td_fill_rand_seeds_os(td);
825 else
826 td_fill_rand_seeds_internal(td);
Jens Axboe3545a102011-08-31 15:20:15 -0600827
Jens Axboed24945f2012-12-04 13:10:29 +0100828 init_rand_seed(&td->buf_state, td->rand_seeds[FIO_RAND_BUF_OFF]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200829}
830
Jens Axboe9c60ce62007-03-15 09:14:47 +0100831/*
Steven Langde890a12011-11-09 14:03:34 +0100832 * Initializes the ioengine configured for a job, if it has not been done so
833 * already.
834 */
835int ioengine_load(struct thread_data *td)
836{
837 const char *engine;
838
839 /*
840 * Engine has already been loaded.
841 */
842 if (td->io_ops)
843 return 0;
Jens Axboe6e5c4b82013-05-27 09:50:31 +0200844 if (!td->o.ioengine) {
845 log_err("fio: internal fault, no IO engine specified\n");
846 return 1;
847 }
Steven Langde890a12011-11-09 14:03:34 +0100848
849 engine = get_engine_name(td->o.ioengine);
850 td->io_ops = load_ioengine(td, engine);
851 if (!td->io_ops) {
852 log_err("fio: failed to load engine %s\n", engine);
853 return 1;
854 }
855
856 if (td->io_ops->option_struct_size && td->io_ops->options) {
857 /*
858 * In cases where td->eo is set, clone it for a child thread.
859 * This requires that the parent thread has the same ioengine,
860 * but that requirement must be enforced by the code which
861 * cloned the thread.
862 */
863 void *origeo = td->eo;
864 /*
865 * Otherwise use the default thread options.
866 */
867 if (!origeo && td != &def_thread && def_thread.eo &&
868 def_thread.io_ops->options == td->io_ops->options)
869 origeo = def_thread.eo;
870
871 options_init(td->io_ops->options);
872 td->eo = malloc(td->io_ops->option_struct_size);
873 /*
874 * Use the default thread as an option template if this uses the
875 * same options structure and there are non-default options
876 * used.
877 */
878 if (origeo) {
879 memcpy(td->eo, origeo, td->io_ops->option_struct_size);
880 options_mem_dupe(td->eo, td->io_ops->options);
881 } else {
882 memset(td->eo, 0, td->io_ops->option_struct_size);
883 fill_default_options(td->eo, td->io_ops->options);
884 }
885 *(struct thread_data **)td->eo = td;
886 }
887
888 return 0;
889}
890
Jens Axboed72be542012-11-30 19:37:46 +0100891static void init_flags(struct thread_data *td)
892{
893 struct thread_options *o = &td->o;
894
895 if (o->verify_backlog)
896 td->flags |= TD_F_VER_BACKLOG;
897 if (o->trim_backlog)
898 td->flags |= TD_F_TRIM_BACKLOG;
899 if (o->read_iolog_file)
900 td->flags |= TD_F_READ_IOLOG;
901 if (o->refill_buffers)
902 td->flags |= TD_F_REFILL_BUFFERS;
Jens Axboebedc9dc2014-03-17 12:51:09 -0600903 if (o->scramble_buffers)
Jens Axboed72be542012-11-30 19:37:46 +0100904 td->flags |= TD_F_SCRAMBLE_BUFFERS;
905 if (o->verify != VERIFY_NONE)
906 td->flags |= TD_F_VER_NONE;
907}
908
Jens Axboe9dbc7bf2013-01-23 09:26:53 -0700909static int setup_random_seeds(struct thread_data *td)
910{
911 unsigned long seed;
912 unsigned int i;
913
Jens Axboe04778ba2014-01-10 20:57:01 -0700914 if (!td->o.rand_repeatable && !td->o.rand_seed)
Jens Axboe9dbc7bf2013-01-23 09:26:53 -0700915 return init_random_state(td, td->rand_seeds, sizeof(td->rand_seeds));
916
Jens Axboe04778ba2014-01-10 20:57:01 -0700917 if (!td->o.rand_seed)
918 seed = 0x89;
919 else
920 seed = td->o.rand_seed;
921
922 for (i = 0; i < 4; i++)
Jens Axboe9dbc7bf2013-01-23 09:26:53 -0700923 seed *= 0x9e370001UL;
924
925 for (i = 0; i < FIO_RAND_NR_OFFS; i++) {
926 td->rand_seeds[i] = seed;
927 seed *= 0x9e370001UL;
928 }
929
930 td_fill_rand_seeds(td);
931 return 0;
932}
933
Jens Axboede98bd32013-04-05 11:09:20 +0200934enum {
935 FPRE_NONE = 0,
936 FPRE_JOBNAME,
937 FPRE_JOBNUM,
938 FPRE_FILENUM
939};
940
941static struct fpre_keyword {
942 const char *keyword;
943 size_t strlen;
944 int key;
945} fpre_keywords[] = {
946 { .keyword = "$jobname", .key = FPRE_JOBNAME, },
947 { .keyword = "$jobnum", .key = FPRE_JOBNUM, },
948 { .keyword = "$filenum", .key = FPRE_FILENUM, },
949 { .keyword = NULL, },
950 };
951
Jens Axboe3660cea2014-04-15 08:18:08 -0600952static char *make_filename(char *buf, size_t buf_size,struct thread_options *o,
Jens Axboede98bd32013-04-05 11:09:20 +0200953 const char *jobname, int jobnum, int filenum)
954{
955 struct fpre_keyword *f;
956 char copy[PATH_MAX];
Jens Axboeb400a202014-04-14 10:13:46 -0600957 size_t dst_left = PATH_MAX - 1;
Jens Axboede98bd32013-04-05 11:09:20 +0200958
959 if (!o->filename_format || !strlen(o->filename_format)) {
960 sprintf(buf, "%s.%d.%d", jobname, jobnum, filenum);
961 return NULL;
962 }
963
964 for (f = &fpre_keywords[0]; f->keyword; f++)
965 f->strlen = strlen(f->keyword);
966
Jens Axboe3660cea2014-04-15 08:18:08 -0600967 buf[buf_size - 1] = '\0';
968 strncpy(buf, o->filename_format, buf_size - 1);
969
Jens Axboede98bd32013-04-05 11:09:20 +0200970 memset(copy, 0, sizeof(copy));
971 for (f = &fpre_keywords[0]; f->keyword; f++) {
972 do {
973 size_t pre_len, post_start = 0;
974 char *str, *dst = copy;
975
Jens Axboee25b6d52013-04-05 14:44:51 +0200976 str = strcasestr(buf, f->keyword);
Jens Axboede98bd32013-04-05 11:09:20 +0200977 if (!str)
978 break;
979
980 pre_len = str - buf;
981 if (strlen(str) != f->strlen)
982 post_start = pre_len + f->strlen;
983
984 if (pre_len) {
985 strncpy(dst, buf, pre_len);
986 dst += pre_len;
Jens Axboe73a467e2014-04-14 08:34:43 -0600987 dst_left -= pre_len;
Jens Axboede98bd32013-04-05 11:09:20 +0200988 }
989
990 switch (f->key) {
Jens Axboe73a467e2014-04-14 08:34:43 -0600991 case FPRE_JOBNAME: {
992 int ret;
993
994 ret = snprintf(dst, dst_left, "%s", jobname);
995 if (ret < 0)
996 break;
997 dst += ret;
998 dst_left -= ret;
Jens Axboede98bd32013-04-05 11:09:20 +0200999 break;
Jens Axboe73a467e2014-04-14 08:34:43 -06001000 }
1001 case FPRE_JOBNUM: {
1002 int ret;
1003
1004 ret = snprintf(dst, dst_left, "%d", jobnum);
1005 if (ret < 0)
1006 break;
1007 dst += ret;
1008 dst_left -= ret;
Jens Axboede98bd32013-04-05 11:09:20 +02001009 break;
Jens Axboe73a467e2014-04-14 08:34:43 -06001010 }
1011 case FPRE_FILENUM: {
1012 int ret;
1013
1014 ret = snprintf(dst, dst_left, "%d", filenum);
1015 if (ret < 0)
1016 break;
1017 dst += ret;
1018 dst_left -= ret;
Jens Axboede98bd32013-04-05 11:09:20 +02001019 break;
Jens Axboe73a467e2014-04-14 08:34:43 -06001020 }
Jens Axboede98bd32013-04-05 11:09:20 +02001021 default:
1022 assert(0);
1023 break;
1024 }
1025
1026 if (post_start)
Jens Axboe73a467e2014-04-14 08:34:43 -06001027 strncpy(dst, buf + post_start, dst_left);
Jens Axboede98bd32013-04-05 11:09:20 +02001028
Jens Axboe3660cea2014-04-15 08:18:08 -06001029 strncpy(buf, copy, buf_size - 1);
Jens Axboede98bd32013-04-05 11:09:20 +02001030 } while (1);
1031 }
1032
1033 return buf;
1034}
Jens Axboef9633d72013-09-06 09:59:56 -06001035
1036int parse_dryrun(void)
1037{
1038 return dump_cmdline || parse_only;
1039}
1040
Steven Langde890a12011-11-09 14:03:34 +01001041/*
Jens Axboe906c8d72006-06-13 09:37:56 +02001042 * Adds a job to the list of things todo. Sanitizes the various options
1043 * to make sure we don't have conflicts, and initializes various
1044 * members of td.
1045 */
Jens Axboeb7cfb2e2012-03-12 07:47:27 +01001046static int add_job(struct thread_data *td, const char *jobname, int job_add_num,
Jens Axboe46bcd492012-03-14 11:31:21 +01001047 int recursed, int client_type)
Jens Axboeebac4652005-12-08 15:25:21 +01001048{
Jens Axboeaf52b342007-03-13 10:07:47 +01001049 unsigned int i;
Jens Axboeaf52b342007-03-13 10:07:47 +01001050 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +01001051 int numjobs, file_alloced;
Jens Axboede98bd32013-04-05 11:09:20 +02001052 struct thread_options *o = &td->o;
Jens Axboeebac4652005-12-08 15:25:21 +01001053
Jens Axboeebac4652005-12-08 15:25:21 +01001054 /*
1055 * the def_thread is just for options, it's not a real job
1056 */
1057 if (td == &def_thread)
1058 return 0;
1059
Jens Axboed72be542012-11-30 19:37:46 +01001060 init_flags(td);
1061
Jens Axboecca73aa2007-04-04 11:09:19 +02001062 /*
1063 * if we are just dumping the output command line, don't add the job
1064 */
Jens Axboef9633d72013-09-06 09:59:56 -06001065 if (parse_dryrun()) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001066 put_job(td);
1067 return 0;
1068 }
1069
Jens Axboe46bcd492012-03-14 11:31:21 +01001070 td->client_type = client_type;
1071
Jens Axboe58c55ba2010-03-09 12:20:08 +01001072 if (profile_td_init(td))
Jens Axboe66251552011-05-12 10:14:57 +02001073 goto err;
Jens Axboe58c55ba2010-03-09 12:20:08 +01001074
Steven Langde890a12011-11-09 14:03:34 +01001075 if (ioengine_load(td))
Jens Axboe205927a2007-03-15 11:06:32 +01001076 goto err;
Jens Axboedf641192006-10-12 07:55:41 +02001077
Jens Axboede98bd32013-04-05 11:09:20 +02001078 if (o->odirect)
Jens Axboe690adba2006-10-30 15:25:09 +01001079 td->io_ops->flags |= FIO_RAWIO;
1080
Jens Axboee132cba2007-03-14 14:23:54 +01001081 file_alloced = 0;
Jens Axboede98bd32013-04-05 11:09:20 +02001082 if (!o->filename && !td->files_index && !o->read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +01001083 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +01001084
Jens Axboede98bd32013-04-05 11:09:20 +02001085 if (o->nr_files == 1 && exists_and_not_file(jobname))
Jens Axboe5903e7b2014-02-26 13:42:13 -08001086 add_file(td, jobname, job_add_num, 0);
Jens Axboe7b05a212007-03-13 11:17:07 +01001087 else {
Jens Axboede98bd32013-04-05 11:09:20 +02001088 for (i = 0; i < o->nr_files; i++)
Jens Axboe3660cea2014-04-15 08:18:08 -06001089 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 +01001090 }
Jens Axboe0af7b542006-02-17 10:10:12 +01001091 }
Jens Axboeebac4652005-12-08 15:25:21 +01001092
Jens Axboe4e991c22007-03-15 11:41:11 +01001093 if (fixup_options(td))
1094 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +01001095
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01001096 flow_init_job(td);
1097
Steven Langde890a12011-11-09 14:03:34 +01001098 /*
1099 * IO engines only need this for option callbacks, and the address may
1100 * change in subprocesses.
1101 */
1102 if (td->eo)
1103 *(struct thread_data **)td->eo = NULL;
1104
Jens Axboe07eb79d2007-04-12 13:02:38 +02001105 if (td->io_ops->flags & FIO_DISKLESSIO) {
1106 struct fio_file *f;
1107
1108 for_each_file(td, f, i)
1109 f->real_file_size = -1ULL;
1110 }
1111
Jens Axboe521da522012-08-02 11:21:36 +02001112 td->mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
Jens Axboeebac4652005-12-08 15:25:21 +01001113
Jens Axboede98bd32013-04-05 11:09:20 +02001114 td->ts.clat_percentiles = o->clat_percentiles;
1115 td->ts.percentile_precision = o->percentile_precision;
1116 memcpy(td->ts.percentile_list, o->percentile_list, sizeof(o->percentile_list));
Yu-ju Hong83349192011-08-13 00:53:44 +02001117
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001118 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1119 td->ts.clat_stat[i].min_val = ULONG_MAX;
1120 td->ts.slat_stat[i].min_val = ULONG_MAX;
1121 td->ts.lat_stat[i].min_val = ULONG_MAX;
1122 td->ts.bw_stat[i].min_val = ULONG_MAX;
1123 }
Jens Axboede98bd32013-04-05 11:09:20 +02001124 td->ddir_seq_nr = o->ddir_seq_nr;
Jens Axboeebac4652005-12-08 15:25:21 +01001125
Jens Axboede98bd32013-04-05 11:09:20 +02001126 if ((o->stonewall || o->new_group) && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001127 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001128 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001129 }
Jens Axboeebac4652005-12-08 15:25:21 +01001130
1131 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001132 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +01001133
Jens Axboe9dbc7bf2013-01-23 09:26:53 -07001134 if (setup_random_seeds(td)) {
Bruce Cran93bcfd22012-02-20 20:18:19 +01001135 td_verror(td, errno, "init_random_state");
Jens Axboe9c60ce62007-03-15 09:14:47 +01001136 goto err;
Bruce Cran93bcfd22012-02-20 20:18:19 +01001137 }
Jens Axboe9c60ce62007-03-15 09:14:47 +01001138
Jens Axboeebac4652005-12-08 15:25:21 +01001139 if (setup_rate(td))
1140 goto err;
1141
Jens Axboe8e255772014-04-01 13:34:49 -06001142 if (o->lat_log_file || write_lat_log) {
Jens Axboe22f80452013-04-09 20:29:16 +02001143 setup_log(&td->lat_log, o->log_avg_msec, IO_LOG_TYPE_LAT);
1144 setup_log(&td->slat_log, o->log_avg_msec, IO_LOG_TYPE_SLAT);
1145 setup_log(&td->clat_log, o->log_avg_msec, IO_LOG_TYPE_CLAT);
Jens Axboeebac4652005-12-08 15:25:21 +01001146 }
Jens Axboe8e255772014-04-01 13:34:49 -06001147 if (o->bw_log_file || write_bw_log)
Jens Axboe22f80452013-04-09 20:29:16 +02001148 setup_log(&td->bw_log, o->log_avg_msec, IO_LOG_TYPE_BW);
1149 if (o->iops_log_file)
1150 setup_log(&td->iops_log, o->log_avg_msec, IO_LOG_TYPE_IOPS);
Jens Axboeebac4652005-12-08 15:25:21 +01001151
Jens Axboede98bd32013-04-05 11:09:20 +02001152 if (!o->name)
1153 o->name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +02001154
Jens Axboef3afa572012-09-17 13:34:16 +02001155 if (output_format == FIO_OUTPUT_NORMAL) {
Jens Axboeb990b5c2006-09-14 09:48:22 +02001156 if (!job_add_num) {
Jens Axboeb7cfb2e2012-03-12 07:47:27 +01001157 if (is_backend && !recursed)
Jens Axboe2f122b12012-03-15 13:10:19 +01001158 fio_server_send_add_job(td);
Jens Axboe807f9972012-03-02 10:25:24 +01001159
Jens Axboe03530502012-03-19 21:45:12 +01001160 if (!(td->io_ops->flags & FIO_NOIO)) {
Jens Axboed21e2532013-07-25 13:01:11 -06001161 char *c1, *c2, *c3, *c4;
1162 char *c5 = NULL, *c6 = NULL;
Jens Axboef8977ee2006-11-06 14:03:03 +01001163
Jens Axboe22f80452013-04-09 20:29:16 +02001164 c1 = fio_uint_to_kmg(o->min_bs[DDIR_READ]);
1165 c2 = fio_uint_to_kmg(o->max_bs[DDIR_READ]);
1166 c3 = fio_uint_to_kmg(o->min_bs[DDIR_WRITE]);
1167 c4 = fio_uint_to_kmg(o->max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +01001168
Jens Axboed21e2532013-07-25 13:01:11 -06001169 if (!o->bs_is_seq_rand) {
1170 c5 = fio_uint_to_kmg(o->min_bs[DDIR_TRIM]);
1171 c6 = fio_uint_to_kmg(o->max_bs[DDIR_TRIM]);
1172 }
1173
1174 log_info("%s: (g=%d): rw=%s, ", td->o.name,
1175 td->groupid,
1176 ddir_str(o->td_ddir));
1177
1178 if (o->bs_is_seq_rand)
1179 log_info("bs(seq/rand)=%s-%s/%s-%s, ",
1180 c1, c2, c3, c4);
1181 else
1182 log_info("bs=%s-%s/%s-%s/%s-%s, ",
1183 c1, c2, c3, c4, c5, c6);
1184
1185 log_info("ioengine=%s, iodepth=%u\n",
Jens Axboede98bd32013-04-05 11:09:20 +02001186 td->io_ops->name, o->iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +01001187
1188 free(c1);
1189 free(c2);
1190 free(c3);
1191 free(c4);
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001192 free(c5);
1193 free(c6);
Jens Axboef8977ee2006-11-06 14:03:03 +01001194 }
Jens Axboeb990b5c2006-09-14 09:48:22 +02001195 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +01001196 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +02001197 }
Jens Axboeebac4652005-12-08 15:25:21 +01001198
1199 /*
1200 * recurse add identical jobs, clear numjobs and stonewall options
1201 * as they don't apply to sub-jobs
1202 */
Jens Axboede98bd32013-04-05 11:09:20 +02001203 numjobs = o->numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +01001204 while (--numjobs) {
Steven Langde890a12011-11-09 14:03:34 +01001205 struct thread_data *td_new = get_new_job(0, td, 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001206
1207 if (!td_new)
1208 goto err;
1209
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001210 td_new->o.numjobs = 1;
1211 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +02001212 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +01001213
1214 if (file_alloced) {
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001215 if (td_new->files) {
1216 struct fio_file *f;
1217 for_each_file(td_new, f, i) {
1218 if (f->file_name)
Andrey Kuzminece6d642014-04-01 12:27:04 -06001219 sfree(f->file_name);
1220 sfree(f);
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001221 }
Andrey Kuzminece6d642014-04-01 12:27:04 -06001222 free(td_new->files);
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001223 td_new->files = NULL;
1224 }
Andrey Kuzminece6d642014-04-01 12:27:04 -06001225 td_new->files_index = 0;
1226 td_new->files_size = 0;
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001227 if (td_new->o.filename) {
1228 free(td_new->o.filename);
1229 td_new->o.filename = NULL;
1230 }
Jens Axboee132cba2007-03-14 14:23:54 +01001231 }
1232
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001233 if (add_job(td_new, jobname, numjobs, 1, client_type))
Jens Axboeebac4652005-12-08 15:25:21 +01001234 goto err;
1235 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001236
Jens Axboeebac4652005-12-08 15:25:21 +01001237 return 0;
1238err:
1239 put_job(td);
1240 return -1;
1241}
1242
Jens Axboe79d16312010-03-04 12:43:20 +01001243/*
1244 * Parse as if 'o' was a command line
1245 */
Jens Axboe46bcd492012-03-14 11:31:21 +01001246void add_job_opts(const char **o, int client_type)
Jens Axboe79d16312010-03-04 12:43:20 +01001247{
1248 struct thread_data *td, *td_parent;
1249 int i, in_global = 1;
1250 char jobname[32];
1251
1252 i = 0;
1253 td_parent = td = NULL;
1254 while (o[i]) {
1255 if (!strncmp(o[i], "name", 4)) {
1256 in_global = 0;
1257 if (td)
Jens Axboe46bcd492012-03-14 11:31:21 +01001258 add_job(td, jobname, 0, 0, client_type);
Jens Axboe79d16312010-03-04 12:43:20 +01001259 td = NULL;
1260 sprintf(jobname, "%s", o[i] + 5);
1261 }
1262 if (in_global && !td_parent)
Steven Langde890a12011-11-09 14:03:34 +01001263 td_parent = get_new_job(1, &def_thread, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001264 else if (!in_global && !td) {
1265 if (!td_parent)
1266 td_parent = &def_thread;
Steven Langde890a12011-11-09 14:03:34 +01001267 td = get_new_job(0, td_parent, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001268 }
1269 if (in_global)
Jens Axboe292cc472013-11-26 20:39:35 -07001270 fio_options_parse(td_parent, (char **) &o[i], 1, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001271 else
Jens Axboe292cc472013-11-26 20:39:35 -07001272 fio_options_parse(td, (char **) &o[i], 1, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001273 i++;
1274 }
1275
1276 if (td)
Jens Axboe46bcd492012-03-14 11:31:21 +01001277 add_job(td, jobname, 0, 0, client_type);
Jens Axboe79d16312010-03-04 12:43:20 +01001278}
1279
Jens Axboe01f06b62008-02-18 20:53:47 +01001280static int skip_this_section(const char *name)
1281{
Jens Axboead0a2732011-03-11 10:16:17 +01001282 int i;
1283
1284 if (!nr_job_sections)
Jens Axboe01f06b62008-02-18 20:53:47 +01001285 return 0;
1286 if (!strncmp(name, "global", 6))
1287 return 0;
1288
Jens Axboead0a2732011-03-11 10:16:17 +01001289 for (i = 0; i < nr_job_sections; i++)
1290 if (!strcmp(job_sections[i], name))
1291 return 0;
1292
1293 return 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001294}
1295
Jens Axboeebac4652005-12-08 15:25:21 +01001296static int is_empty_or_comment(char *line)
1297{
1298 unsigned int i;
1299
1300 for (i = 0; i < strlen(line); i++) {
1301 if (line[i] == ';')
1302 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +01001303 if (line[i] == '#')
1304 return 1;
Jens Axboe76cd9372011-07-08 21:14:57 +02001305 if (!isspace((int) line[i]) && !iscntrl((int) line[i]))
Jens Axboeebac4652005-12-08 15:25:21 +01001306 return 0;
1307 }
1308
1309 return 1;
1310}
1311
Jens Axboe313cb202006-12-21 09:50:00 +01001312/*
Jens Axboe07261982006-06-07 10:51:12 +02001313 * This is our [ini] type file parser.
1314 */
Jens Axboe46bcd492012-03-14 11:31:21 +01001315int parse_jobs_ini(char *file, int is_buf, int stonewall_flag, int type)
Jens Axboeebac4652005-12-08 15:25:21 +01001316{
Jens Axboee1f36502006-10-27 10:54:08 +02001317 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +01001318 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +01001319 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +01001320 FILE *f;
1321 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001322 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +02001323 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +02001324 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +01001325 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +02001326 char **opts;
1327 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +01001328
Jens Axboe50d16972011-09-29 17:45:28 -06001329 if (is_buf)
1330 f = NULL;
1331 else {
1332 if (!strcmp(file, "-"))
1333 f = stdin;
1334 else
1335 f = fopen(file, "r");
Aaron Carroll5a729cb2007-09-27 09:03:55 +02001336
Jens Axboe50d16972011-09-29 17:45:28 -06001337 if (!f) {
1338 perror("fopen job file");
1339 return 1;
1340 }
Jens Axboeebac4652005-12-08 15:25:21 +01001341 }
1342
1343 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +02001344
1345 /*
1346 * it's really 256 + small bit, 280 should suffice
1347 */
1348 name = malloc(280);
1349 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +01001350
Jens Axboe3b8b7132008-06-10 19:46:23 +02001351 alloc_opts = 8;
1352 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +02001353 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +02001354
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001355 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001356 do {
Jens Axboeccf8f122007-09-27 10:48:55 +02001357 /*
1358 * if skip_fgets is set, we already have loaded a line we
1359 * haven't handled.
1360 */
1361 if (!skip_fgets) {
Jens Axboe50d16972011-09-29 17:45:28 -06001362 if (is_buf)
1363 p = strsep(&file, "\n");
1364 else
Jens Axboe43f74792011-10-15 14:37:26 +02001365 p = fgets(string, 4096, f);
Jens Axboeccf8f122007-09-27 10:48:55 +02001366 if (!p)
1367 break;
1368 }
gurudas paicdc7f192007-03-29 10:10:56 +02001369
Jens Axboeccf8f122007-09-27 10:48:55 +02001370 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +02001371 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -08001372 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +02001373
Jens Axboeebac4652005-12-08 15:25:21 +01001374 if (is_empty_or_comment(p))
1375 continue;
Bruce Cran84dd1882011-05-05 08:14:09 -06001376 if (sscanf(p, "[%255[^\n]]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001377 if (inside_skip)
1378 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001379 log_err("fio: option <%s> outside of [] job section\n",
1380 p);
Jens Axboe088b4202007-07-19 14:53:01 +02001381 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -08001382 }
Jens Axboeebac4652005-12-08 15:25:21 +01001383
Jens Axboe7a4b80a2010-05-22 20:43:11 +02001384 name[strlen(name) - 1] = '\0';
1385
Jens Axboe01f06b62008-02-18 20:53:47 +01001386 if (skip_this_section(name)) {
1387 inside_skip = 1;
1388 continue;
1389 } else
1390 inside_skip = 0;
1391
Jens Axboeebac4652005-12-08 15:25:21 +01001392 global = !strncmp(name, "global", 6);
1393
Jens Axboecca73aa2007-04-04 11:09:19 +02001394 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +02001395 if (first_sect)
1396 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +02001397 if (!global)
1398 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +02001399 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02001400 }
1401
Steven Langde890a12011-11-09 14:03:34 +01001402 td = get_new_job(global, &def_thread, 0);
Jens Axboe45410ac2006-06-07 11:10:39 +02001403 if (!td) {
1404 ret = 1;
1405 break;
1406 }
Jens Axboeebac4652005-12-08 15:25:21 +01001407
Jens Axboe972cfd22006-06-09 11:08:56 +02001408 /*
Anatol Pomozovde8f6de2013-09-26 16:31:34 -07001409 * Separate multiple job files by a stonewall
Jens Axboe972cfd22006-06-09 11:08:56 +02001410 */
Jens Axboef9481912006-06-09 11:37:28 +02001411 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001412 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +02001413 stonewall = 0;
1414 }
1415
Jens Axboe3b8b7132008-06-10 19:46:23 +02001416 num_opts = 0;
1417 memset(opts, 0, alloc_opts * sizeof(char *));
1418
Jens Axboe50d16972011-09-29 17:45:28 -06001419 while (1) {
1420 if (is_buf)
1421 p = strsep(&file, "\n");
1422 else
1423 p = fgets(string, 4096, f);
1424 if (!p)
1425 break;
1426
Jens Axboeebac4652005-12-08 15:25:21 +01001427 if (is_empty_or_comment(p))
1428 continue;
Jens Axboee1f36502006-10-27 10:54:08 +02001429
Jens Axboeb6754f92006-05-30 14:29:32 +02001430 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +01001431
Jens Axboeccf8f122007-09-27 10:48:55 +02001432 /*
1433 * new section, break out and make sure we don't
1434 * fgets() a new line at the top.
1435 */
1436 if (p[0] == '[') {
1437 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001438 break;
Jens Axboeccf8f122007-09-27 10:48:55 +02001439 }
Jens Axboe7c124ac2006-10-30 13:36:52 +01001440
Jens Axboe4ae3f762006-05-30 13:35:14 +02001441 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +02001442
Jens Axboe3b8b7132008-06-10 19:46:23 +02001443 if (num_opts == alloc_opts) {
1444 alloc_opts <<= 1;
1445 opts = realloc(opts,
1446 alloc_opts * sizeof(char *));
1447 }
1448
1449 opts[num_opts] = strdup(p);
1450 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +01001451 }
Jens Axboeebac4652005-12-08 15:25:21 +01001452
Jens Axboe292cc472013-11-26 20:39:35 -07001453 ret = fio_options_parse(td, opts, num_opts, dump_cmdline);
1454 if (!ret)
Jens Axboe46bcd492012-03-14 11:31:21 +01001455 ret = add_job(td, name, 0, 0, type);
Jens Axboe292cc472013-11-26 20:39:35 -07001456 else {
Jens Axboeb1508cf2006-11-02 09:12:40 +01001457 log_err("fio: job %s dropped\n", name);
1458 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +02001459 }
Jens Axboe3b8b7132008-06-10 19:46:23 +02001460
1461 for (i = 0; i < num_opts; i++)
1462 free(opts[i]);
1463 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001464 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001465
Jens Axboecca73aa2007-04-04 11:09:19 +02001466 if (dump_cmdline)
1467 log_info("\n");
1468
Jens Axboe7e356b22011-10-14 10:55:16 +02001469 i = 0;
1470 while (i < nr_job_sections) {
1471 free(job_sections[i]);
1472 i++;
1473 }
1474
Jens Axboeebac4652005-12-08 15:25:21 +01001475 free(string);
1476 free(name);
Jens Axboe25775942008-06-10 20:26:06 +02001477 free(opts);
Jens Axboe50d16972011-09-29 17:45:28 -06001478 if (!is_buf && f != stdin)
Aaron Carroll5a729cb2007-09-27 09:03:55 +02001479 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +02001480 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001481}
1482
1483static int fill_def_thread(void)
1484{
1485 memset(&def_thread, 0, sizeof(def_thread));
1486
Jens Axboe375b2692007-05-22 09:13:02 +02001487 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04001488 def_thread.o.error_dump = 1;
Jens Axboe25bd16c2014-04-06 10:09:30 -06001489
Jens Axboeebac4652005-12-08 15:25:21 +01001490 /*
Jens Axboeee738492007-01-10 11:23:16 +01001491 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +01001492 */
Jens Axboe214e1ec2007-03-15 10:48:13 +01001493 fio_fill_default_options(&def_thread);
Jens Axboeebac4652005-12-08 15:25:21 +01001494 return 0;
1495}
1496
Jens Axboe45378b32007-12-19 13:54:38 +01001497static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +02001498{
Jens Axboe3d433822012-03-21 22:25:22 +01001499 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +01001500 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboe83881282011-10-17 19:58:51 +02001501 printf(" --debug=options\tEnable debug logging. May be one/more of:\n"
1502 "\t\t\tprocess,file,io,mem,blktrace,verify,random,parse,\n"
Jens Axboe3e260a42013-12-09 12:38:53 -07001503 "\t\t\tdiskutil,job,mutex,profile,time,net,rate\n");
Jens Axboe111e0322013-03-07 11:31:20 +01001504 printf(" --parse-only\t\tParse options only, don't start any IO\n");
Jens Axboe83881282011-10-17 19:58:51 +02001505 printf(" --output\t\tWrite output to file\n");
liang xieb2cecdc2012-08-31 08:22:42 -07001506 printf(" --runtime\t\tRuntime in seconds\n");
Jens Axboe83881282011-10-17 19:58:51 +02001507 printf(" --latency-log\t\tGenerate per-job latency logs\n");
1508 printf(" --bandwidth-log\tGenerate per-job bandwidth logs\n");
1509 printf(" --minimal\t\tMinimal (terse) output\n");
Jens Axboef3afa572012-09-17 13:34:16 +02001510 printf(" --output-format=x\tOutput format (terse,json,normal)\n");
Jens Axboe75db6e22011-11-07 22:07:36 +01001511 printf(" --terse-version=x\tSet terse version output format to 'x'\n");
Jens Axboef3afa572012-09-17 13:34:16 +02001512 printf(" --version\t\tPrint version info and exit\n");
Jens Axboe83881282011-10-17 19:58:51 +02001513 printf(" --help\t\tPrint this page\n");
Jens Axboe23893642012-12-17 14:44:08 +01001514 printf(" --cpuclock-test\tPerform test/validation of CPU clock\n");
Jens Axboefec0f212014-02-07 14:39:33 -07001515 printf(" --crctest\t\tTest speed of checksum functions\n");
Jens Axboe83881282011-10-17 19:58:51 +02001516 printf(" --cmdhelp=cmd\t\tPrint command help, \"all\" for all of"
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001517 " them\n");
Steven Langde890a12011-11-09 14:03:34 +01001518 printf(" --enghelp=engine\tPrint ioengine help, or list"
1519 " available ioengines\n");
1520 printf(" --enghelp=engine,cmd\tPrint help for an ioengine"
1521 " cmd\n");
Jens Axboe83881282011-10-17 19:58:51 +02001522 printf(" --showcmd\t\tTurn a job file into command line options\n");
1523 printf(" --eta=when\t\tWhen ETA estimate should be printed\n");
1524 printf(" \t\tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboee382e662013-02-22 20:48:56 +01001525 printf(" --eta-newline=time\tForce a new line for every 'time'");
1526 printf(" period passed\n");
Jens Axboe06464902013-04-24 20:38:54 -06001527 printf(" --status-interval=t\tForce full status dump every");
1528 printf(" 't' period passed\n");
Jens Axboe83881282011-10-17 19:58:51 +02001529 printf(" --readonly\t\tTurn on safety read-only checks, preventing"
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001530 " writes\n");
Jens Axboe83881282011-10-17 19:58:51 +02001531 printf(" --section=name\tOnly run specified section in job file\n");
1532 printf(" --alloc-size=kb\tSet smalloc pool to this size in kb"
Jens Axboe2b386d22008-03-26 10:32:57 +01001533 " (def 1024)\n");
Jens Axboe83881282011-10-17 19:58:51 +02001534 printf(" --warnings-fatal\tFio parser warnings are fatal\n");
1535 printf(" --max-jobs=nr\t\tMaximum number of threads/processes to support\n");
1536 printf(" --server=args\t\tStart a backend fio server\n");
1537 printf(" --daemonize=pidfile\tBackground fio server, write pid to file\n");
1538 printf(" --client=hostname\tTalk to remote backend fio server at hostname\n");
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001539 printf(" --idle-prof=option\tReport cpu idleness on a system or percpu basis\n"
1540 "\t\t\t(option=system,percpu) or run unit work\n"
1541 "\t\t\tcalibration only (option=calibrate)\n");
Jens Axboeaa58d252010-06-09 09:49:38 +02001542 printf("\nFio was written by Jens Axboe <jens.axboe@oracle.com>");
Jens Axboebfca2c72014-01-29 16:39:04 -07001543 printf("\n Jens Axboe <jaxboe@fusionio.com>");
1544 printf("\n Jens Axboe <axboe@fb.com>\n");
Jens Axboeb4692822006-10-27 13:43:22 +02001545}
1546
Jens Axboe79e48f72008-02-01 20:37:09 +01001547#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +01001548struct debug_level debug_levels[] = {
Jens Axboe0b8d11e2012-03-02 19:44:15 +01001549 { .name = "process",
1550 .help = "Process creation/exit logging",
1551 .shift = FD_PROCESS,
1552 },
1553 { .name = "file",
1554 .help = "File related action logging",
1555 .shift = FD_FILE,
1556 },
1557 { .name = "io",
1558 .help = "IO and IO engine action logging (offsets, queue, completions, etc)",
1559 .shift = FD_IO,
1560 },
1561 { .name = "mem",
1562 .help = "Memory allocation/freeing logging",
1563 .shift = FD_MEM,
1564 },
1565 { .name = "blktrace",
1566 .help = "blktrace action logging",
1567 .shift = FD_BLKTRACE,
1568 },
1569 { .name = "verify",
1570 .help = "IO verification action logging",
1571 .shift = FD_VERIFY,
1572 },
1573 { .name = "random",
1574 .help = "Random generation logging",
1575 .shift = FD_RANDOM,
1576 },
1577 { .name = "parse",
1578 .help = "Parser logging",
1579 .shift = FD_PARSE,
1580 },
1581 { .name = "diskutil",
1582 .help = "Disk utility logging actions",
1583 .shift = FD_DISKUTIL,
1584 },
1585 { .name = "job",
1586 .help = "Logging related to creating/destroying jobs",
1587 .shift = FD_JOB,
1588 },
1589 { .name = "mutex",
1590 .help = "Mutex logging",
1591 .shift = FD_MUTEX
1592 },
1593 { .name = "profile",
1594 .help = "Logging related to profiles",
1595 .shift = FD_PROFILE,
1596 },
1597 { .name = "time",
1598 .help = "Logging related to time keeping functions",
1599 .shift = FD_TIME,
1600 },
1601 { .name = "net",
1602 .help = "Network logging",
1603 .shift = FD_NET,
1604 },
Jens Axboe3e260a42013-12-09 12:38:53 -07001605 { .name = "rate",
1606 .help = "Rate logging",
1607 .shift = FD_RATE,
1608 },
Jens Axboe02444ad2008-10-07 11:33:00 +02001609 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +01001610};
1611
Jens Axboec09823a2008-02-19 20:16:57 +01001612static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +01001613{
1614 struct debug_level *dl;
1615 char *p = (char *) string;
1616 char *opt;
1617 int i;
1618
1619 if (!strcmp(string, "?") || !strcmp(string, "help")) {
Jens Axboeee56ad52008-02-01 10:30:20 +01001620 log_info("fio: dumping debug options:");
1621 for (i = 0; debug_levels[i].name; i++) {
1622 dl = &debug_levels[i];
1623 log_info("%s,", dl->name);
1624 }
Jens Axboebd6f78b2008-02-01 20:27:52 +01001625 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001626 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +01001627 }
1628
1629 while ((opt = strsep(&p, ",")) != NULL) {
1630 int found = 0;
1631
Jens Axboe5e1d3062008-05-23 11:55:53 +02001632 if (!strncmp(opt, "all", 3)) {
1633 log_info("fio: set all debug options\n");
1634 fio_debug = ~0UL;
1635 continue;
1636 }
1637
Jens Axboeee56ad52008-02-01 10:30:20 +01001638 for (i = 0; debug_levels[i].name; i++) {
1639 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +02001640 found = !strncmp(opt, dl->name, strlen(dl->name));
1641 if (!found)
1642 continue;
1643
1644 if (dl->shift == FD_JOB) {
1645 opt = strchr(opt, ':');
1646 if (!opt) {
1647 log_err("fio: missing job number\n");
1648 break;
1649 }
1650 opt++;
1651 fio_debug_jobno = atoi(opt);
1652 log_info("fio: set debug jobno %d\n",
1653 fio_debug_jobno);
1654 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001655 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001656 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +01001657 }
Jens Axboe5e1d3062008-05-23 11:55:53 +02001658 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001659 }
1660
1661 if (!found)
1662 log_err("fio: debug mask %s not found\n", opt);
1663 }
Jens Axboec09823a2008-02-19 20:16:57 +01001664 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +01001665}
Jens Axboe79e48f72008-02-01 20:37:09 +01001666#else
Jens Axboe69b98d42008-05-30 22:25:32 +02001667static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +01001668{
1669 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001670 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +01001671}
1672#endif
Jens Axboeee56ad52008-02-01 10:30:20 +01001673
Jens Axboe4c6107f2011-01-18 05:22:22 -07001674static void fio_options_fill_optstring(void)
1675{
1676 char *ostr = cmd_optstr;
1677 int i, c;
1678
1679 c = i = 0;
1680 while (l_opts[i].name) {
1681 ostr[c++] = l_opts[i].val;
1682 if (l_opts[i].has_arg == required_argument)
1683 ostr[c++] = ':';
1684 else if (l_opts[i].has_arg == optional_argument) {
1685 ostr[c++] = ':';
1686 ostr[c++] = ':';
1687 }
1688 i++;
1689 }
1690 ostr[c] = '\0';
1691}
1692
Jens Axboec2c94582011-10-05 20:31:30 +02001693static int client_flag_set(char c)
1694{
1695 int i;
1696
1697 i = 0;
1698 while (l_opts[i].name) {
1699 int val = l_opts[i].val;
1700
1701 if (c == (val & 0xff))
1702 return (val & FIO_CLIENT_FLAG);
1703
1704 i++;
1705 }
1706
1707 return 0;
1708}
1709
Jens Axboe10aa1362014-04-01 21:10:36 -06001710static void parse_cmd_client(void *client, char *opt)
Jens Axboe7a4b8242011-10-05 17:35:15 +02001711{
Jens Axboefa2ea802011-10-08 21:07:29 +02001712 fio_client_add_cmd_option(client, opt);
Jens Axboe7a4b8242011-10-05 17:35:15 +02001713}
1714
Jens Axboe46bcd492012-03-14 11:31:21 +01001715int parse_cmd_line(int argc, char *argv[], int client_type)
Jens Axboe214e1ec2007-03-15 10:48:13 +01001716{
1717 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +01001718 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe4c6107f2011-01-18 05:22:22 -07001719 char *ostr = cmd_optstr;
Jens Axboe402668f2011-10-10 15:28:58 +02001720 void *pid_file = NULL;
Jens Axboe9bae26e2011-10-07 10:07:22 +02001721 void *cur_client = NULL;
Jens Axboe81179ee2011-10-04 12:42:06 +02001722 int backend = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001723
Jens Axboec2c94582011-10-05 20:31:30 +02001724 /*
1725 * Reset optind handling, since we may call this multiple times
1726 * for the backend.
1727 */
1728 optind = 1;
Jens Axboe7a4b8242011-10-05 17:35:15 +02001729
Jens Axboec2c94582011-10-05 20:31:30 +02001730 while ((c = getopt_long_only(argc, argv, ostr, l_opts, &lidx)) != -1) {
1731 if ((c & FIO_CLIENT_FLAG) || client_flag_set(c)) {
Jens Axboefa2ea802011-10-08 21:07:29 +02001732 parse_cmd_client(cur_client, argv[optind - 1]);
Jens Axboe7a4b8242011-10-05 17:35:15 +02001733 c &= ~FIO_CLIENT_FLAG;
1734 }
1735
Jens Axboe214e1ec2007-03-15 10:48:13 +01001736 switch (c) {
Jens Axboe2b386d22008-03-26 10:32:57 +01001737 case 'a':
1738 smalloc_pool_size = atoi(optarg);
1739 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001740 case 't':
Jens Axboe25bd16c2014-04-06 10:09:30 -06001741 if (check_str_time(optarg, &def_timeout, 1)) {
1742 log_err("fio: failed parsing time %s\n", optarg);
1743 do_exit++;
1744 exit_val = 1;
1745 }
Jens Axboe214e1ec2007-03-15 10:48:13 +01001746 break;
1747 case 'l':
1748 write_lat_log = 1;
1749 break;
Jens Axboe3d73e5a2010-03-25 10:38:07 +01001750 case 'b':
Jens Axboe214e1ec2007-03-15 10:48:13 +01001751 write_bw_log = 1;
1752 break;
1753 case 'o':
Rik Faith52482242014-05-29 14:13:39 -06001754 if (f_out && f_out != stdout)
Jens Axboe5e1d8742014-04-11 11:39:46 -06001755 fclose(f_out);
1756
Jens Axboe214e1ec2007-03-15 10:48:13 +01001757 f_out = fopen(optarg, "w+");
1758 if (!f_out) {
1759 perror("fopen output");
1760 exit(1);
1761 }
1762 f_err = f_out;
1763 break;
1764 case 'm':
Jens Axboef3afa572012-09-17 13:34:16 +02001765 output_format = FIO_OUTPUT_TERSE;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001766 break;
Jens Axboef3afa572012-09-17 13:34:16 +02001767 case 'F':
Stefan Hajnoczid10983d2014-02-04 14:27:11 +01001768 if (!optarg) {
1769 log_err("fio: missing --output-format argument\n");
1770 exit_val = 1;
1771 do_exit++;
1772 break;
1773 }
Jens Axboef3afa572012-09-17 13:34:16 +02001774 if (!strcmp(optarg, "minimal") ||
1775 !strcmp(optarg, "terse") ||
1776 !strcmp(optarg, "csv"))
1777 output_format = FIO_OUTPUT_TERSE;
1778 else if (!strcmp(optarg, "json"))
1779 output_format = FIO_OUTPUT_JSON;
1780 else
1781 output_format = FIO_OUTPUT_NORMAL;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001782 break;
Christian Ehrhardt2b8c71b2014-02-20 14:20:04 +01001783 case 'f':
1784 append_terse_output = 1;
1785 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001786 case 'h':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001787 did_arg = 1;
Jens Axboe7874f8b2011-10-06 09:18:20 +02001788 if (!cur_client) {
Jens Axboec2c94582011-10-05 20:31:30 +02001789 usage(argv[0]);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001790 do_exit++;
1791 }
Jens Axboec2c94582011-10-05 20:31:30 +02001792 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001793 case 'c':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001794 did_arg = 1;
Jens Axboe7874f8b2011-10-06 09:18:20 +02001795 if (!cur_client) {
Jens Axboec2c94582011-10-05 20:31:30 +02001796 fio_show_option_help(optarg);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001797 do_exit++;
1798 }
Jens Axboec2c94582011-10-05 20:31:30 +02001799 break;
Steven Langde890a12011-11-09 14:03:34 +01001800 case 'i':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001801 did_arg = 1;
Steven Langde890a12011-11-09 14:03:34 +01001802 if (!cur_client) {
1803 fio_show_ioengine_help(optarg);
1804 do_exit++;
1805 }
1806 break;
Jens Axboecca73aa2007-04-04 11:09:19 +02001807 case 's':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001808 did_arg = 1;
Jens Axboecca73aa2007-04-04 11:09:19 +02001809 dump_cmdline = 1;
1810 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001811 case 'r':
1812 read_only = 1;
1813 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001814 case 'v':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001815 did_arg = 1;
Jens Axboe7874f8b2011-10-06 09:18:20 +02001816 if (!cur_client) {
Jens Axboe3d433822012-03-21 22:25:22 +01001817 log_info("%s\n", fio_version_string);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001818 do_exit++;
1819 }
Jens Axboec2c94582011-10-05 20:31:30 +02001820 break;
Jens Axboef57a9c52011-09-09 21:01:37 +02001821 case 'V':
1822 terse_version = atoi(optarg);
Jens Axboe09786f52012-10-04 17:06:49 +02001823 if (!(terse_version == 2 || terse_version == 3 ||
1824 terse_version == 4)) {
Jens Axboef57a9c52011-09-09 21:01:37 +02001825 log_err("fio: bad terse version format\n");
1826 exit_val = 1;
1827 do_exit++;
1828 }
1829 break;
Aaron Carrolle592a062007-09-14 09:49:41 +02001830 case 'e':
1831 if (!strcmp("always", optarg))
1832 eta_print = FIO_ETA_ALWAYS;
1833 else if (!strcmp("never", optarg))
1834 eta_print = FIO_ETA_NEVER;
1835 break;
Jens Axboee382e662013-02-22 20:48:56 +01001836 case 'E': {
1837 long long t = 0;
1838
Jens Axboe0de5b262014-02-21 15:26:01 -08001839 if (str_to_decimal(optarg, &t, 0, NULL, 1)) {
Jens Axboee382e662013-02-22 20:48:56 +01001840 log_err("fio: failed parsing eta time %s\n", optarg);
1841 exit_val = 1;
1842 do_exit++;
1843 }
1844 eta_new_line = t;
1845 break;
1846 }
Jens Axboeee56ad52008-02-01 10:30:20 +01001847 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001848 if (set_debug(optarg))
1849 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001850 break;
Jens Axboe111e0322013-03-07 11:31:20 +01001851 case 'P':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001852 did_arg = 1;
Jens Axboe111e0322013-03-07 11:31:20 +01001853 parse_only = 1;
1854 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001855 case 'x': {
1856 size_t new_size;
1857
Jens Axboe01f06b62008-02-18 20:53:47 +01001858 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001859 log_err("fio: can't use global as only "
1860 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001861 do_exit++;
1862 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001863 break;
1864 }
Jens Axboead0a2732011-03-11 10:16:17 +01001865 new_size = (nr_job_sections + 1) * sizeof(char *);
1866 job_sections = realloc(job_sections, new_size);
1867 job_sections[nr_job_sections] = strdup(optarg);
1868 nr_job_sections++;
Jens Axboe01f06b62008-02-18 20:53:47 +01001869 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001870 }
Jens Axboe9ac8a792009-11-13 21:23:07 +01001871 case 'p':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001872 did_arg = 1;
Jens Axboe4af7c002014-04-11 11:38:38 -06001873 if (exec_profile)
1874 free(exec_profile);
Jens Axboe07b32322010-03-05 09:48:44 +01001875 exec_profile = strdup(optarg);
Jens Axboe9ac8a792009-11-13 21:23:07 +01001876 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001877 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001878 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001879 char *val = optarg;
1880
1881 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe46bcd492012-03-14 11:31:21 +01001882 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
Jens Axboe66251552011-05-12 10:14:57 +02001883 if (ret)
Jens Axboe4a4ac4e2014-04-14 08:17:30 -06001884 goto out_free;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001885 td = NULL;
Jens Axboe7d8ea972014-04-14 13:37:46 -06001886 did_arg = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001887 }
1888 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001889 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001890 int global = 0;
1891
Jens Axboe01f06b62008-02-18 20:53:47 +01001892 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001893 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001894
Jens Axboe01f06b62008-02-18 20:53:47 +01001895 if (is_section && skip_this_section(val))
1896 continue;
1897
Steven Langde890a12011-11-09 14:03:34 +01001898 td = get_new_job(global, &def_thread, 1);
Jens Axboe1cefc792014-06-09 13:54:22 -06001899 if (!td || ioengine_load(td)) {
1900 if (td) {
1901 put_job(td);
1902 td = NULL;
1903 }
1904 do_exit++;
1905 break;
1906 }
Steven Langde890a12011-11-09 14:03:34 +01001907 fio_options_set_ioengine_opts(l_opts, td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001908 }
1909
Jens Axboe9d918182013-05-23 20:00:35 +02001910 if ((!val || !strlen(val)) &&
1911 l_opts[lidx].has_arg == required_argument) {
1912 log_err("fio: option %s requires an argument\n", opt);
1913 ret = 1;
1914 } else
1915 ret = fio_cmd_option_parse(td, opt, val);
1916
Jens Axboebfb3ea22013-05-23 19:54:43 +02001917 if (ret) {
1918 if (td) {
1919 put_job(td);
1920 td = NULL;
1921 }
Jens Axboea88c8c12013-04-24 22:25:22 -06001922 do_exit++;
Jens Axboebfb3ea22013-05-23 19:54:43 +02001923 }
Steven Langde890a12011-11-09 14:03:34 +01001924
1925 if (!ret && !strcmp(opt, "ioengine")) {
1926 free_ioengine(td);
Jens Axboe1cefc792014-06-09 13:54:22 -06001927 if (ioengine_load(td)) {
1928 if (td) {
1929 put_job(td);
1930 td = NULL;
1931 }
1932 do_exit++;
1933 break;
1934 }
Steven Langde890a12011-11-09 14:03:34 +01001935 fio_options_set_ioengine_opts(l_opts, td);
1936 }
1937 break;
1938 }
1939 case FIO_GETOPT_IOENGINE: {
1940 const char *opt = l_opts[lidx].name;
1941 char *val = optarg;
Jens Axboeb1ed74e2014-04-14 12:07:36 -06001942
1943 if (!td)
1944 break;
1945
Steven Langde890a12011-11-09 14:03:34 +01001946 ret = fio_cmd_ioengine_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001947 break;
1948 }
Jens Axboea9523c62011-01-17 16:49:54 -07001949 case 'w':
1950 warnings_fatal = 1;
1951 break;
Jens Axboefca70352011-07-06 20:12:54 +02001952 case 'j':
1953 max_jobs = atoi(optarg);
1954 if (!max_jobs || max_jobs > REAL_MAX_JOBS) {
1955 log_err("fio: invalid max jobs: %d\n", max_jobs);
1956 do_exit++;
1957 exit_val = 1;
1958 }
1959 break;
Jens Axboe50d16972011-09-29 17:45:28 -06001960 case 'S':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001961 did_arg = 1;
Jens Axboeef7035a2014-06-18 15:30:09 -07001962#ifndef CONFIG_NO_SHM
Jens Axboea37f69b2011-10-01 12:24:21 -06001963 if (nr_clients) {
Jens Axboe132159a2011-09-30 15:01:32 -06001964 log_err("fio: can't be both client and server\n");
1965 do_exit++;
1966 exit_val = 1;
1967 break;
1968 }
Jens Axboe87aa8f12011-10-06 21:24:13 +02001969 if (optarg)
Jens Axboebebe6392011-10-07 10:00:51 +02001970 fio_server_set_arg(optarg);
Jens Axboe50d16972011-09-29 17:45:28 -06001971 is_backend = 1;
Jens Axboe81179ee2011-10-04 12:42:06 +02001972 backend = 1;
Jens Axboeef7035a2014-06-18 15:30:09 -07001973#else
1974 log_err("fio: client/server requires SHM support\n");
1975 do_exit++;
1976 exit_val = 1;
1977#endif
Jens Axboe50d16972011-09-29 17:45:28 -06001978 break;
Jens Axboee46d8092011-10-03 09:11:02 +02001979 case 'D':
Jens Axboe6cfe9a82014-04-14 13:29:52 -06001980 if (pid_file)
1981 free(pid_file);
Jens Axboe402668f2011-10-10 15:28:58 +02001982 pid_file = strdup(optarg);
Jens Axboee46d8092011-10-03 09:11:02 +02001983 break;
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001984 case 'I':
1985 if ((ret = fio_idle_prof_parse_opt(optarg))) {
1986 /* exit on error and calibration only */
Jens Axboe7d8ea972014-04-14 13:37:46 -06001987 did_arg = 1;
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001988 do_exit++;
Jens Axboe7d8ea972014-04-14 13:37:46 -06001989 if (ret == -1)
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001990 exit_val = 1;
1991 }
1992 break;
Jens Axboe132159a2011-09-30 15:01:32 -06001993 case 'C':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001994 did_arg = 1;
Jens Axboe132159a2011-09-30 15:01:32 -06001995 if (is_backend) {
1996 log_err("fio: can't be both client and server\n");
1997 do_exit++;
1998 exit_val = 1;
1999 break;
2000 }
Jens Axboea5276612012-03-04 15:15:08 +01002001 if (fio_client_add(&fio_client_ops, optarg, &cur_client)) {
Jens Axboebebe6392011-10-07 10:00:51 +02002002 log_err("fio: failed adding client %s\n", optarg);
2003 do_exit++;
2004 exit_val = 1;
2005 break;
2006 }
Jens Axboe14ea90e2012-08-26 17:33:34 +02002007 /*
2008 * If the next argument exists and isn't an option,
2009 * assume it's a job file for this client only.
2010 */
2011 while (optind < argc) {
2012 if (!strncmp(argv[optind], "--", 2) ||
2013 !strncmp(argv[optind], "-", 1))
2014 break;
2015
2016 fio_client_add_ini_file(cur_client, argv[optind]);
2017 optind++;
2018 }
Jens Axboe132159a2011-09-30 15:01:32 -06002019 break;
Jens Axboe7d11f872012-12-17 12:03:29 +01002020 case 'T':
Jens Axboe7d8ea972014-04-14 13:37:46 -06002021 did_arg = 1;
Jens Axboe7d11f872012-12-17 12:03:29 +01002022 do_exit++;
2023 exit_val = fio_monotonic_clocktest();
2024 break;
Jens Axboefec0f212014-02-07 14:39:33 -07002025 case 'G':
Jens Axboe7d8ea972014-04-14 13:37:46 -06002026 did_arg = 1;
Jens Axboefec0f212014-02-07 14:39:33 -07002027 do_exit++;
2028 exit_val = fio_crctest(optarg);
2029 break;
Jens Axboe06464902013-04-24 20:38:54 -06002030 case 'L': {
2031 long long val;
2032
Jens Axboe7cd0ec52014-03-28 08:09:10 -06002033 if (check_str_time(optarg, &val, 0)) {
Jens Axboe06464902013-04-24 20:38:54 -06002034 log_err("fio: failed parsing time %s\n", optarg);
2035 do_exit++;
2036 exit_val = 1;
2037 break;
2038 }
2039 status_interval = val * 1000;
2040 break;
2041 }
Jens Axboe798827c2013-01-23 18:11:48 -07002042 case '?':
2043 log_err("%s: unrecognized option '%s'\n", argv[0],
2044 argv[optind - 1]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01002045 default:
Jens Axboec09823a2008-02-19 20:16:57 +01002046 do_exit++;
2047 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01002048 break;
2049 }
Jens Axboec7d5c942011-10-03 11:48:17 +02002050 if (do_exit)
2051 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01002052 }
2053
Jens Axboe0b14f0a2013-05-23 21:27:54 +02002054 if (do_exit && !(is_backend || nr_clients))
2055 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01002056
Jens Axboefb296042014-04-02 08:28:49 -06002057 if (nr_clients && fio_clients_connect())
2058 exit(1);
Jens Axboe132159a2011-09-30 15:01:32 -06002059
Jens Axboe81179ee2011-10-04 12:42:06 +02002060 if (is_backend && backend)
Jens Axboe402668f2011-10-10 15:28:58 +02002061 return fio_start_server(pid_file);
Jens Axboeb8ba87a2014-04-11 11:37:34 -06002062 else if (pid_file)
2063 free(pid_file);
Jens Axboe50d16972011-09-29 17:45:28 -06002064
Jens Axboe214e1ec2007-03-15 10:48:13 +01002065 if (td) {
Jens Axboe7d8ea972014-04-14 13:37:46 -06002066 if (!ret) {
Jens Axboe46bcd492012-03-14 11:31:21 +01002067 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
Jens Axboe7d8ea972014-04-14 13:37:46 -06002068 if (ret)
2069 did_arg = 1;
2070 }
Jens Axboe214e1ec2007-03-15 10:48:13 +01002071 }
2072
Jens Axboe7874f8b2011-10-06 09:18:20 +02002073 while (!ret && optind < argc) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002074 ini_idx++;
2075 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
2076 ini_file[ini_idx - 1] = strdup(argv[optind]);
2077 optind++;
2078 }
2079
Jens Axboe4a4ac4e2014-04-14 08:17:30 -06002080out_free:
2081 if (pid_file)
2082 free(pid_file);
2083
Jens Axboe214e1ec2007-03-15 10:48:13 +01002084 return ini_idx;
2085}
2086
Jens Axboe0420ba62012-02-29 11:16:52 +01002087int fio_init_options(void)
Jens Axboeebac4652005-12-08 15:25:21 +01002088{
Jens Axboeb4692822006-10-27 13:43:22 +02002089 f_out = stdout;
2090 f_err = stderr;
2091
Jens Axboe4c6107f2011-01-18 05:22:22 -07002092 fio_options_fill_optstring();
Jens Axboe5ec10ea2008-03-06 15:42:00 +01002093 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02002094
Jens Axboe9d9eb2e2011-10-03 12:01:42 +02002095 atexit(free_shm);
2096
Jens Axboeebac4652005-12-08 15:25:21 +01002097 if (fill_def_thread())
2098 return 1;
2099
Jens Axboe0420ba62012-02-29 11:16:52 +01002100 return 0;
2101}
2102
Jens Axboe51167792012-03-08 21:34:18 +01002103extern int fio_check_options(struct thread_options *);
2104
Jens Axboe0420ba62012-02-29 11:16:52 +01002105int parse_options(int argc, char *argv[])
2106{
Jens Axboe46bcd492012-03-14 11:31:21 +01002107 const int type = FIO_CLIENT_TYPE_CLI;
Jens Axboe0420ba62012-02-29 11:16:52 +01002108 int job_files, i;
2109
2110 if (fio_init_options())
2111 return 1;
Jens Axboe51167792012-03-08 21:34:18 +01002112 if (fio_test_cconv(&def_thread.o))
2113 log_err("fio: failed internal cconv test\n");
Jens Axboe0420ba62012-02-29 11:16:52 +01002114
Jens Axboe46bcd492012-03-14 11:31:21 +01002115 job_files = parse_cmd_line(argc, argv, type);
Jens Axboeebac4652005-12-08 15:25:21 +01002116
Jens Axboecdf54d82011-10-04 08:31:40 +02002117 if (job_files > 0) {
2118 for (i = 0; i < job_files; i++) {
Jens Axboebc4f5ef2014-04-06 10:10:32 -06002119 if (i && fill_def_thread())
Jens Axboe132159a2011-09-30 15:01:32 -06002120 return 1;
Jens Axboecdf54d82011-10-04 08:31:40 +02002121 if (nr_clients) {
2122 if (fio_clients_send_ini(ini_file[i]))
2123 return 1;
2124 free(ini_file[i]);
2125 } else if (!is_backend) {
Jens Axboe46bcd492012-03-14 11:31:21 +01002126 if (parse_jobs_ini(ini_file[i], 0, i, type))
Jens Axboecdf54d82011-10-04 08:31:40 +02002127 return 1;
2128 free(ini_file[i]);
2129 }
Jens Axboe132159a2011-09-30 15:01:32 -06002130 }
Jens Axboe14ea90e2012-08-26 17:33:34 +02002131 } else if (nr_clients) {
2132 if (fill_def_thread())
2133 return 1;
2134 if (fio_clients_send_ini(NULL))
2135 return 1;
Jens Axboe972cfd22006-06-09 11:08:56 +02002136 }
Jens Axboeebac4652005-12-08 15:25:21 +01002137
Jens Axboe88c6ed82006-06-09 11:28:10 +02002138 free(ini_file);
Jens Axboe7e356b22011-10-14 10:55:16 +02002139 fio_options_free(&def_thread);
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08002140 filesetup_mem_free();
Jens Axboeb4692822006-10-27 13:43:22 +02002141
2142 if (!thread_number) {
Jens Axboef9633d72013-09-06 09:59:56 -06002143 if (parse_dryrun())
Jens Axboecca73aa2007-04-04 11:09:19 +02002144 return 0;
Jens Axboe07b32322010-03-05 09:48:44 +01002145 if (exec_profile)
2146 return 0;
Jens Axboea37f69b2011-10-01 12:24:21 -06002147 if (is_backend || nr_clients)
Jens Axboe5c341e92011-09-29 18:00:35 -06002148 return 0;
Jens Axboe085399d2011-10-06 09:01:22 +02002149 if (did_arg)
2150 return 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02002151
Jens Axboed65e11c2011-10-05 09:56:53 +02002152 log_err("No jobs(s) defined\n\n");
Jens Axboe085399d2011-10-06 09:01:22 +02002153
2154 if (!did_arg) {
2155 usage(argv[0]);
2156 return 1;
2157 }
2158
2159 return 0;
Jens Axboeb4692822006-10-27 13:43:22 +02002160 }
2161
Jens Axboebe4ecfd2008-12-08 14:10:52 +01002162 if (def_thread.o.gtod_offload) {
2163 fio_gtod_init();
2164 fio_gtod_offload = 1;
2165 fio_gtod_cpu = def_thread.o.gtod_cpu;
2166 }
2167
Jens Axboef3afa572012-09-17 13:34:16 +02002168 if (output_format == FIO_OUTPUT_NORMAL)
Jens Axboe3d433822012-03-21 22:25:22 +01002169 log_info("%s\n", fio_version_string);
Jens Axboef6dea4d2011-10-13 13:37:07 +02002170
Jens Axboeebac4652005-12-08 15:25:21 +01002171 return 0;
2172}
Jens Axboe588b7f02012-03-19 20:37:41 +01002173
2174void options_default_fill(struct thread_options *o)
2175{
2176 memcpy(o, &def_thread.o, sizeof(*o));
2177}