blob: 6b29aa702407a69799f54ff15a60011a105be5d8 [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,
Jens Axboeb01e1f32014-06-24 09:19:30 -0600345 int preserve_eo, const char *jobname)
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 Axboeb01e1f32014-06-24 09:19:30 -0600379 if (jobname)
380 td->o.name = strdup(jobname);
381
Jens Axboebcdcb5a2014-04-11 11:42:13 -0600382 if (!parent->o.group_reporting)
Jens Axboe108fea72012-11-14 13:09:45 -0700383 stat_number++;
384
Jens Axboe25bd16c2014-04-06 10:09:30 -0600385 set_cmd_options(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100386 return td;
387}
388
389static void put_job(struct thread_data *td)
390{
Jens Axboe549577a2006-10-30 12:23:41 +0100391 if (td == &def_thread)
392 return;
Bruce Cran84dd1882011-05-05 08:14:09 -0600393
Jens Axboe58c55ba2010-03-09 12:20:08 +0100394 profile_td_exit(td);
Dan Ehrenberg9e684a42012-02-20 11:05:14 +0100395 flow_exit_job(td);
Jens Axboe549577a2006-10-30 12:23:41 +0100396
Jens Axboe16edf252007-02-10 14:59:22 +0100397 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100398 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100399
Jens Axboe7e356b22011-10-14 10:55:16 +0200400 fio_options_free(td);
Steven Langde890a12011-11-09 14:03:34 +0100401 if (td->io_ops)
402 free_ioengine(td);
Jens Axboe7e356b22011-10-14 10:55:16 +0200403
Jens Axboeb01e1f32014-06-24 09:19:30 -0600404 if (td->o.name)
405 free(td->o.name);
406
Jens Axboeebac4652005-12-08 15:25:21 +0100407 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
408 thread_number--;
409}
410
Jens Axboe581e7142009-06-09 12:47:16 +0200411static int __setup_rate(struct thread_data *td, enum fio_ddir ddir)
Jens Axboe127f6862007-03-15 12:09:57 +0100412{
Jens Axboe581e7142009-06-09 12:47:16 +0200413 unsigned int bs = td->o.min_bs[ddir];
Jens Axboe127f6862007-03-15 12:09:57 +0100414
Jens Axboeff58fce2010-08-25 12:02:08 +0200415 assert(ddir_rw(ddir));
416
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100417 if (td->o.rate[ddir])
Steven Lang1b8dbf22011-11-09 13:48:01 +0100418 td->rate_bps[ddir] = td->o.rate[ddir];
Radha Ramachandranba3e4e02009-12-09 22:31:44 +0100419 else
Steven Lang1b8dbf22011-11-09 13:48:01 +0100420 td->rate_bps[ddir] = td->o.rate_iops[ddir] * bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100421
Steven Lang1b8dbf22011-11-09 13:48:01 +0100422 if (!td->rate_bps[ddir]) {
Jens Axboe127f6862007-03-15 12:09:57 +0100423 log_err("rate lower than supported\n");
424 return -1;
425 }
426
Jens Axboe581e7142009-06-09 12:47:16 +0200427 td->rate_pending_usleep[ddir] = 0;
Jens Axboe127f6862007-03-15 12:09:57 +0100428 return 0;
429}
430
Jens Axboe581e7142009-06-09 12:47:16 +0200431static int setup_rate(struct thread_data *td)
432{
433 int ret = 0;
434
435 if (td->o.rate[DDIR_READ] || td->o.rate_iops[DDIR_READ])
436 ret = __setup_rate(td, DDIR_READ);
437 if (td->o.rate[DDIR_WRITE] || td->o.rate_iops[DDIR_WRITE])
438 ret |= __setup_rate(td, DDIR_WRITE);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200439 if (td->o.rate[DDIR_TRIM] || td->o.rate_iops[DDIR_TRIM])
440 ret |= __setup_rate(td, DDIR_TRIM);
Jens Axboe581e7142009-06-09 12:47:16 +0200441
442 return ret;
443}
444
Jens Axboe83472392009-02-19 21:32:12 +0100445static int fixed_block_size(struct thread_options *o)
446{
447 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
448 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200449 o->min_bs[DDIR_TRIM] == o->max_bs[DDIR_TRIM] &&
450 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE] &&
451 o->min_bs[DDIR_READ] == o->min_bs[DDIR_TRIM];
Jens Axboe83472392009-02-19 21:32:12 +0100452}
453
Christian Ehrhardt23ed19b2014-02-20 09:07:02 -0800454
455static unsigned long long get_rand_start_delay(struct thread_data *td)
456{
457 unsigned long long delayrange;
458 unsigned long r;
459
460 delayrange = td->o.start_delay_high - td->o.start_delay;
461
462 if (td->o.use_os_rand) {
463 r = os_random_long(&td->delay_state);
464 delayrange = (unsigned long long) ((double) delayrange * (r / (OS_RAND_MAX + 1.0)));
465 } else {
466 r = __rand(&td->__delay_state);
467 delayrange = (unsigned long long) ((double) delayrange * (r / (FRAND_MAX + 1.0)));
468 }
469
470 delayrange += td->o.start_delay;
471 return delayrange;
472}
473
Jens Axboedad915e2006-10-27 11:10:18 +0200474/*
475 * Lazy way of fixing up options that depend on each other. We could also
476 * define option callback handlers, but this is easier.
477 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100478static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200479{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100480 struct thread_options *o = &td->o;
Jens Axboeeefd98b2013-07-25 12:30:06 -0600481 int ret = 0;
Jens Axboedad915e2006-10-27 11:10:18 +0200482
Jens Axboef356d012009-01-05 09:56:29 +0100483#ifndef FIO_HAVE_PSHARED_MUTEX
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100484 if (!o->use_thread) {
Jens Axboef356d012009-01-05 09:56:29 +0100485 log_info("fio: this platform does not support process shared"
486 " mutexes, forcing use of threads. Use the 'thread'"
487 " option to get rid of this warning.\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100488 o->use_thread = 1;
Jens Axboea9523c62011-01-17 16:49:54 -0700489 ret = warnings_fatal;
Jens Axboef356d012009-01-05 09:56:29 +0100490 }
491#endif
492
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100493 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200494 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100495 free(o->write_iolog_file);
496 o->write_iolog_file = NULL;
Jens Axboea9523c62011-01-17 16:49:54 -0700497 ret = warnings_fatal;
Jens Axboe076efc72006-10-27 11:24:25 +0200498 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100499
Jens Axboe16b462a2006-10-30 12:35:18 +0100500 /*
Steven Noonaned335852012-01-31 13:58:00 +0100501 * only really works with 1 file
Jens Axboe16b462a2006-10-30 12:35:18 +0100502 */
Jens Axboe627aa1a2013-02-07 13:06:18 +0100503 if (o->zone_size && o->open_files > 1)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100504 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100505
506 /*
Steven Noonaned335852012-01-31 13:58:00 +0100507 * If zone_range isn't specified, backward compatibility dictates it
508 * should be made equal to zone_size.
509 */
510 if (o->zone_size && !o->zone_range)
511 o->zone_range = o->zone_size;
512
513 /*
Jens Axboe16b462a2006-10-30 12:35:18 +0100514 * Reads can do overwrites, we always need to pre-create the file
515 */
516 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100517 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100518
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100519 if (!o->min_bs[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100520 o->min_bs[DDIR_READ] = o->bs[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100521 if (!o->max_bs[DDIR_READ])
522 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
523 if (!o->min_bs[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100524 o->min_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100525 if (!o->max_bs[DDIR_WRITE])
526 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200527 if (!o->min_bs[DDIR_TRIM])
528 o->min_bs[DDIR_TRIM] = o->bs[DDIR_TRIM];
529 if (!o->max_bs[DDIR_TRIM])
530 o->max_bs[DDIR_TRIM] = o->bs[DDIR_TRIM];
531
Jens Axboea00735e2006-11-03 08:58:08 +0100532
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100533 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200534 o->rw_min_bs = min(o->min_bs[DDIR_TRIM], o->rw_min_bs);
Jens Axboea00735e2006-11-03 08:58:08 +0100535
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100536 /*
537 * For random IO, allow blockalign offset other than min_bs.
538 */
539 if (!o->ba[DDIR_READ] || !td_random(td))
540 o->ba[DDIR_READ] = o->min_bs[DDIR_READ];
541 if (!o->ba[DDIR_WRITE] || !td_random(td))
542 o->ba[DDIR_WRITE] = o->min_bs[DDIR_WRITE];
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200543 if (!o->ba[DDIR_TRIM] || !td_random(td))
544 o->ba[DDIR_TRIM] = o->min_bs[DDIR_TRIM];
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100545
546 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200547 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE] ||
548 o->ba[DDIR_TRIM] != o->min_bs[DDIR_TRIM]) &&
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100549 !o->norandommap) {
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100550 log_err("fio: Any use of blockalign= turns off randommap\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100551 o->norandommap = 1;
Jens Axboea9523c62011-01-17 16:49:54 -0700552 ret = warnings_fatal;
Jens Axboe2b7a01d2009-03-11 11:00:13 +0100553 }
554
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100555 if (!o->file_size_high)
556 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100557
Christian Ehrhardt23ed19b2014-02-20 09:07:02 -0800558 if (o->start_delay_high)
559 o->start_delay = get_rand_start_delay(td);
560
Jens Axboe83472392009-02-19 21:32:12 +0100561 if (o->norandommap && o->verify != VERIFY_NONE
562 && !fixed_block_size(o)) {
563 log_err("fio: norandommap given for variable block sizes, "
564 "verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100565 o->verify = VERIFY_NONE;
Jens Axboea9523c62011-01-17 16:49:54 -0700566 ret = warnings_fatal;
Jens Axboebb8895e2006-10-30 15:14:48 +0100567 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100568 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100569 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100570
571 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100572 * thinktime_spin must be less than thinktime
573 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100574 if (o->thinktime_spin > o->thinktime)
575 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100576
577 /*
578 * The low water mark cannot be bigger than the iodepth
579 */
Jens Axboe67bf9822013-01-10 11:23:19 +0100580 if (o->iodepth_low > o->iodepth || !o->iodepth_low)
581 o->iodepth_low = o->iodepth;
Jens Axboecb5ab512007-02-26 12:57:09 +0100582
583 /*
584 * If batch number isn't set, default to the same as iodepth
585 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100586 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
587 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100588
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100589 if (o->nr_files > td->files_index)
590 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100591
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100592 if (o->open_files > o->nr_files || !o->open_files)
593 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100594
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200595 if (((o->rate[DDIR_READ] + o->rate[DDIR_WRITE] + o->rate[DDIR_TRIM]) &&
596 (o->rate_iops[DDIR_READ] + o->rate_iops[DDIR_WRITE] + o->rate_iops[DDIR_TRIM])) ||
597 ((o->ratemin[DDIR_READ] + o->ratemin[DDIR_WRITE] + o->ratemin[DDIR_TRIM]) &&
598 (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 +0100599 log_err("fio: rate and rate_iops are mutually exclusive\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700600 ret = 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100601 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200602 if ((o->rate[DDIR_READ] < o->ratemin[DDIR_READ]) ||
603 (o->rate[DDIR_WRITE] < o->ratemin[DDIR_WRITE]) ||
604 (o->rate[DDIR_TRIM] < o->ratemin[DDIR_TRIM]) ||
605 (o->rate_iops[DDIR_READ] < o->rate_iops_min[DDIR_READ]) ||
606 (o->rate_iops[DDIR_WRITE] < o->rate_iops_min[DDIR_WRITE]) ||
607 (o->rate_iops[DDIR_TRIM] < o->rate_iops_min[DDIR_TRIM])) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100608 log_err("fio: minimum rate exceeds rate\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700609 ret = 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100610 }
611
Jens Axboecf4464c2007-04-17 20:14:42 +0200612 if (!o->timeout && o->time_based) {
613 log_err("fio: time_based requires a runtime/timeout setting\n");
614 o->time_based = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700615 ret = warnings_fatal;
Jens Axboecf4464c2007-04-17 20:14:42 +0200616 }
617
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100618 if (o->fill_device && !o->size)
Jens Axboe5921e802008-05-30 15:02:38 +0200619 o->size = -1ULL;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100620
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100621 if (o->verify != VERIFY_NONE) {
Jens Axboe996936f2011-01-18 05:41:39 -0700622 if (td_write(td) && o->do_verify && o->numjobs > 1) {
Jens Axboea9523c62011-01-17 16:49:54 -0700623 log_info("Multiple writers may overwrite blocks that "
624 "belong to other jobs. This can cause "
625 "verification failures.\n");
626 ret = warnings_fatal;
627 }
628
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100629 o->refill_buffers = 1;
Jens Axboe2f1b8e82010-06-18 09:22:56 +0200630 if (o->max_bs[DDIR_WRITE] != o->min_bs[DDIR_WRITE] &&
631 !o->verify_interval)
632 o->verify_interval = o->min_bs[DDIR_WRITE];
Jens Axboed9905882010-03-18 20:43:00 +0100633 }
Jens Axboe41ccd842008-05-22 09:17:33 +0200634
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100635 if (o->pre_read) {
636 o->invalidate_cache = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700637 if (td->io_ops->flags & FIO_PIPEIO) {
Jens Axboe9c0d2242009-07-01 12:26:28 +0200638 log_info("fio: cannot pre-read files with an IO engine"
639 " that isn't seekable. Pre-read disabled.\n");
Jens Axboea9523c62011-01-17 16:49:54 -0700640 ret = warnings_fatal;
641 }
Jens Axboe9c0d2242009-07-01 12:26:28 +0200642 }
Jens Axboe34f1c042009-06-02 14:19:25 +0200643
Steven Noonanad705bc2013-04-08 15:05:25 -0700644 if (!o->unit_base) {
645 if (td->io_ops->flags & FIO_BIT_BASED)
646 o->unit_base = 1;
647 else
648 o->unit_base = 8;
649 }
650
Jens Axboe67bf9822013-01-10 11:23:19 +0100651#ifndef CONFIG_FDATASYNC
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100652 if (o->fdatasync_blocks) {
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700653 log_info("fio: this platform does not support fdatasync()"
654 " falling back to using fsync(). Use the 'fsync'"
655 " option instead of 'fdatasync' to get rid of"
656 " this warning\n");
Jens Axboe9bbf57c2010-03-18 20:45:43 +0100657 o->fsync_blocks = o->fdatasync_blocks;
658 o->fdatasync_blocks = 0;
Jens Axboea9523c62011-01-17 16:49:54 -0700659 ret = warnings_fatal;
Joshua Aunee72fa4d2010-02-11 00:59:18 -0700660 }
661#endif
662
Bruce Cran93bcfd22012-02-20 20:18:19 +0100663#ifdef WIN32
664 /*
665 * Windows doesn't support O_DIRECT or O_SYNC with the _open interface,
666 * so fail if we're passed those flags
667 */
668 if ((td->io_ops->flags & FIO_SYNCIO) && (td->o.odirect || td->o.sync_io)) {
669 log_err("fio: Windows does not support direct or non-buffered io with"
670 " the synchronous ioengines. Use the 'windowsaio' ioengine"
671 " with 'direct=1' and 'iodepth=1' instead.\n");
672 ret = 1;
673 }
674#endif
675
Jens Axboe811ac502012-03-02 22:23:36 +0100676 /*
677 * For fully compressible data, just zero them at init time.
678 * It's faster than repeatedly filling it.
679 */
680 if (td->o.compress_percentage == 100) {
681 td->o.zero_buffers = 1;
682 td->o.compress_percentage = 0;
683 }
684
Jens Axboe5881fda2012-11-15 15:21:23 -0700685 /*
686 * Using a non-uniform random distribution excludes usage of
687 * a random map
688 */
689 if (td->o.random_distribution != FIO_RAND_DIST_RANDOM)
690 td->o.norandommap = 1;
691
Jens Axboe8d916c92013-04-25 10:11:41 -0600692 /*
693 * If size is set but less than the min block size, complain
694 */
695 if (o->size && o->size < td_min_bs(td)) {
696 log_err("fio: size too small, must be larger than the IO size: %llu\n", (unsigned long long) o->size);
697 ret = 1;
698 }
699
Chris Masond01612f2013-11-15 15:52:58 -0700700 /*
701 * O_ATOMIC implies O_DIRECT
702 */
703 if (td->o.oatomic)
704 td->o.odirect = 1;
705
Jens Axboe04778ba2014-01-10 20:57:01 -0700706 /*
707 * If randseed is set, that overrides randrepeat
708 */
709 if (td->o.rand_seed)
710 td->o.rand_repeatable = 0;
711
Jens Axboeb1bebc32014-03-18 13:30:32 -0600712 if ((td->io_ops->flags & FIO_NOEXTEND) && td->o.file_append) {
713 log_err("fio: can't append/extent with IO engine %s\n", td->io_ops->name);
714 ret = 1;
715 }
716
Jens Axboea9523c62011-01-17 16:49:54 -0700717 return ret;
Jens Axboee1f36502006-10-27 10:54:08 +0200718}
719
Jens Axboe906c8d72006-06-13 09:37:56 +0200720/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100721 * This function leaks the buffer
722 */
Jens Axboe99d633a2012-03-15 15:55:04 +0100723char *fio_uint_to_kmg(unsigned int val)
Jens Axboef8977ee2006-11-06 14:03:03 +0100724{
725 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100726 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100727 char *p = post;
728
Jens Axboe245142f2006-11-08 12:49:21 +0100729 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100730 if (val & 1023)
731 break;
732
733 val >>= 10;
734 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100735 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100736
Ken Raeburn98ffb8f2013-01-30 22:31:09 +0100737 snprintf(buf, 32, "%u%c", val, *p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100738 return buf;
739}
740
Jens Axboe09629a92007-03-09 09:00:06 +0100741/* External engines are specified by "external:name.o") */
742static const char *get_engine_name(const char *str)
743{
744 char *p = strstr(str, ":");
745
746 if (!p)
747 return str;
748
749 p++;
750 strip_blank_front(&p);
751 strip_blank_end(p);
752 return p;
753}
754
Jens Axboee132cba2007-03-14 14:23:54 +0100755static int exists_and_not_file(const char *filename)
756{
757 struct stat sb;
758
759 if (lstat(filename, &sb) == -1)
760 return 0;
761
Bruce Cranecc314b2011-01-04 10:59:30 +0100762 /* \\.\ is the device namespace in Windows, where every file
763 * is a device node */
764 if (S_ISREG(sb.st_mode) && strncmp(filename, "\\\\.\\", 4) != 0)
Jens Axboee132cba2007-03-14 14:23:54 +0100765 return 0;
766
767 return 1;
768}
769
Jens Axboe4c07ad82011-03-28 09:51:09 +0200770static void td_fill_rand_seeds_os(struct thread_data *td)
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200771{
Jens Axboed24945f2012-12-04 13:10:29 +0100772 os_random_seed(td->rand_seeds[FIO_RAND_BS_OFF], &td->bsrange_state);
773 os_random_seed(td->rand_seeds[FIO_RAND_VER_OFF], &td->verify_state);
774 os_random_seed(td->rand_seeds[FIO_RAND_MIX_OFF], &td->rwmix_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200775
776 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboed24945f2012-12-04 13:10:29 +0100777 os_random_seed(td->rand_seeds[FIO_RAND_FILE_OFF], &td->next_file_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200778
Jens Axboed24945f2012-12-04 13:10:29 +0100779 os_random_seed(td->rand_seeds[FIO_RAND_FILE_SIZE_OFF], &td->file_size_state);
780 os_random_seed(td->rand_seeds[FIO_RAND_TRIM_OFF], &td->trim_state);
Christian Ehrhardt23ed19b2014-02-20 09:07:02 -0800781 os_random_seed(td->rand_seeds[FIO_RAND_START_DELAY], &td->delay_state);
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200782
783 if (!td_random(td))
784 return;
785
786 if (td->o.rand_repeatable)
Jens Axboed24945f2012-12-04 13:10:29 +0100787 td->rand_seeds[FIO_RAND_BLOCK_OFF] = FIO_RANDSEED * td->thread_number;
Jens Axboe5bfc35d2009-04-07 13:28:12 +0200788
Jens Axboed24945f2012-12-04 13:10:29 +0100789 os_random_seed(td->rand_seeds[FIO_RAND_BLOCK_OFF], &td->random_state);
Jens Axboed9472272013-07-25 10:20:45 -0600790
791 os_random_seed(td->rand_seeds[FIO_RAND_SEQ_RAND_READ_OFF], &td->seq_rand_state[DDIR_READ]);
792 os_random_seed(td->rand_seeds[FIO_RAND_SEQ_RAND_WRITE_OFF], &td->seq_rand_state[DDIR_WRITE]);
793 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 +0200794}
795
796static void td_fill_rand_seeds_internal(struct thread_data *td)
797{
Jens Axboed24945f2012-12-04 13:10:29 +0100798 init_rand_seed(&td->__bsrange_state, td->rand_seeds[FIO_RAND_BS_OFF]);
799 init_rand_seed(&td->__verify_state, td->rand_seeds[FIO_RAND_VER_OFF]);
800 init_rand_seed(&td->__rwmix_state, td->rand_seeds[FIO_RAND_MIX_OFF]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200801
802 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboed24945f2012-12-04 13:10:29 +0100803 init_rand_seed(&td->__next_file_state, td->rand_seeds[FIO_RAND_FILE_OFF]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200804
Jens Axboed24945f2012-12-04 13:10:29 +0100805 init_rand_seed(&td->__file_size_state, td->rand_seeds[FIO_RAND_FILE_SIZE_OFF]);
806 init_rand_seed(&td->__trim_state, td->rand_seeds[FIO_RAND_TRIM_OFF]);
Christian Ehrhardt23ed19b2014-02-20 09:07:02 -0800807 init_rand_seed(&td->__delay_state, td->rand_seeds[FIO_RAND_START_DELAY]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200808
809 if (!td_random(td))
810 return;
811
812 if (td->o.rand_repeatable)
Jens Axboed24945f2012-12-04 13:10:29 +0100813 td->rand_seeds[FIO_RAND_BLOCK_OFF] = FIO_RANDSEED * td->thread_number;
Jens Axboe4c07ad82011-03-28 09:51:09 +0200814
Jens Axboed24945f2012-12-04 13:10:29 +0100815 init_rand_seed(&td->__random_state, td->rand_seeds[FIO_RAND_BLOCK_OFF]);
Jens Axboed9472272013-07-25 10:20:45 -0600816 init_rand_seed(&td->__seq_rand_state[DDIR_READ], td->rand_seeds[FIO_RAND_SEQ_RAND_READ_OFF]);
817 init_rand_seed(&td->__seq_rand_state[DDIR_WRITE], td->rand_seeds[FIO_RAND_SEQ_RAND_WRITE_OFF]);
818 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 +0200819}
820
Jens Axboe4c07ad82011-03-28 09:51:09 +0200821void td_fill_rand_seeds(struct thread_data *td)
822{
Christian Ehrhardt56e2a5f2014-02-20 09:10:17 -0800823 if (td->o.allrand_repeatable) {
824 for (int i = 0; i < FIO_RAND_NR_OFFS; i++)
825 td->rand_seeds[i] = FIO_RANDSEED * td->thread_number
826 + i;
827 }
828
Jens Axboe4c07ad82011-03-28 09:51:09 +0200829 if (td->o.use_os_rand)
830 td_fill_rand_seeds_os(td);
831 else
832 td_fill_rand_seeds_internal(td);
Jens Axboe3545a102011-08-31 15:20:15 -0600833
Jens Axboed24945f2012-12-04 13:10:29 +0100834 init_rand_seed(&td->buf_state, td->rand_seeds[FIO_RAND_BUF_OFF]);
Jens Axboe4c07ad82011-03-28 09:51:09 +0200835}
836
Jens Axboe9c60ce62007-03-15 09:14:47 +0100837/*
Steven Langde890a12011-11-09 14:03:34 +0100838 * Initializes the ioengine configured for a job, if it has not been done so
839 * already.
840 */
841int ioengine_load(struct thread_data *td)
842{
843 const char *engine;
844
845 /*
846 * Engine has already been loaded.
847 */
848 if (td->io_ops)
849 return 0;
Jens Axboe6e5c4b82013-05-27 09:50:31 +0200850 if (!td->o.ioengine) {
851 log_err("fio: internal fault, no IO engine specified\n");
852 return 1;
853 }
Steven Langde890a12011-11-09 14:03:34 +0100854
855 engine = get_engine_name(td->o.ioengine);
856 td->io_ops = load_ioengine(td, engine);
857 if (!td->io_ops) {
858 log_err("fio: failed to load engine %s\n", engine);
859 return 1;
860 }
861
862 if (td->io_ops->option_struct_size && td->io_ops->options) {
863 /*
864 * In cases where td->eo is set, clone it for a child thread.
865 * This requires that the parent thread has the same ioengine,
866 * but that requirement must be enforced by the code which
867 * cloned the thread.
868 */
869 void *origeo = td->eo;
870 /*
871 * Otherwise use the default thread options.
872 */
873 if (!origeo && td != &def_thread && def_thread.eo &&
874 def_thread.io_ops->options == td->io_ops->options)
875 origeo = def_thread.eo;
876
877 options_init(td->io_ops->options);
878 td->eo = malloc(td->io_ops->option_struct_size);
879 /*
880 * Use the default thread as an option template if this uses the
881 * same options structure and there are non-default options
882 * used.
883 */
884 if (origeo) {
885 memcpy(td->eo, origeo, td->io_ops->option_struct_size);
886 options_mem_dupe(td->eo, td->io_ops->options);
887 } else {
888 memset(td->eo, 0, td->io_ops->option_struct_size);
889 fill_default_options(td->eo, td->io_ops->options);
890 }
891 *(struct thread_data **)td->eo = td;
892 }
893
894 return 0;
895}
896
Jens Axboed72be542012-11-30 19:37:46 +0100897static void init_flags(struct thread_data *td)
898{
899 struct thread_options *o = &td->o;
900
901 if (o->verify_backlog)
902 td->flags |= TD_F_VER_BACKLOG;
903 if (o->trim_backlog)
904 td->flags |= TD_F_TRIM_BACKLOG;
905 if (o->read_iolog_file)
906 td->flags |= TD_F_READ_IOLOG;
907 if (o->refill_buffers)
908 td->flags |= TD_F_REFILL_BUFFERS;
Jens Axboebedc9dc2014-03-17 12:51:09 -0600909 if (o->scramble_buffers)
Jens Axboed72be542012-11-30 19:37:46 +0100910 td->flags |= TD_F_SCRAMBLE_BUFFERS;
911 if (o->verify != VERIFY_NONE)
912 td->flags |= TD_F_VER_NONE;
913}
914
Jens Axboe9dbc7bf2013-01-23 09:26:53 -0700915static int setup_random_seeds(struct thread_data *td)
916{
917 unsigned long seed;
918 unsigned int i;
919
Jens Axboe04778ba2014-01-10 20:57:01 -0700920 if (!td->o.rand_repeatable && !td->o.rand_seed)
Jens Axboe9dbc7bf2013-01-23 09:26:53 -0700921 return init_random_state(td, td->rand_seeds, sizeof(td->rand_seeds));
922
Jens Axboe04778ba2014-01-10 20:57:01 -0700923 if (!td->o.rand_seed)
924 seed = 0x89;
925 else
926 seed = td->o.rand_seed;
927
928 for (i = 0; i < 4; i++)
Jens Axboe9dbc7bf2013-01-23 09:26:53 -0700929 seed *= 0x9e370001UL;
930
931 for (i = 0; i < FIO_RAND_NR_OFFS; i++) {
932 td->rand_seeds[i] = seed;
933 seed *= 0x9e370001UL;
934 }
935
936 td_fill_rand_seeds(td);
937 return 0;
938}
939
Jens Axboede98bd32013-04-05 11:09:20 +0200940enum {
941 FPRE_NONE = 0,
942 FPRE_JOBNAME,
943 FPRE_JOBNUM,
944 FPRE_FILENUM
945};
946
947static struct fpre_keyword {
948 const char *keyword;
949 size_t strlen;
950 int key;
951} fpre_keywords[] = {
952 { .keyword = "$jobname", .key = FPRE_JOBNAME, },
953 { .keyword = "$jobnum", .key = FPRE_JOBNUM, },
954 { .keyword = "$filenum", .key = FPRE_FILENUM, },
955 { .keyword = NULL, },
956 };
957
Jens Axboe3660cea2014-04-15 08:18:08 -0600958static char *make_filename(char *buf, size_t buf_size,struct thread_options *o,
Jens Axboede98bd32013-04-05 11:09:20 +0200959 const char *jobname, int jobnum, int filenum)
960{
961 struct fpre_keyword *f;
962 char copy[PATH_MAX];
Jens Axboeb400a202014-04-14 10:13:46 -0600963 size_t dst_left = PATH_MAX - 1;
Jens Axboede98bd32013-04-05 11:09:20 +0200964
965 if (!o->filename_format || !strlen(o->filename_format)) {
966 sprintf(buf, "%s.%d.%d", jobname, jobnum, filenum);
967 return NULL;
968 }
969
970 for (f = &fpre_keywords[0]; f->keyword; f++)
971 f->strlen = strlen(f->keyword);
972
Jens Axboe3660cea2014-04-15 08:18:08 -0600973 buf[buf_size - 1] = '\0';
974 strncpy(buf, o->filename_format, buf_size - 1);
975
Jens Axboede98bd32013-04-05 11:09:20 +0200976 memset(copy, 0, sizeof(copy));
977 for (f = &fpre_keywords[0]; f->keyword; f++) {
978 do {
979 size_t pre_len, post_start = 0;
980 char *str, *dst = copy;
981
Jens Axboee25b6d52013-04-05 14:44:51 +0200982 str = strcasestr(buf, f->keyword);
Jens Axboede98bd32013-04-05 11:09:20 +0200983 if (!str)
984 break;
985
986 pre_len = str - buf;
987 if (strlen(str) != f->strlen)
988 post_start = pre_len + f->strlen;
989
990 if (pre_len) {
991 strncpy(dst, buf, pre_len);
992 dst += pre_len;
Jens Axboe73a467e2014-04-14 08:34:43 -0600993 dst_left -= pre_len;
Jens Axboede98bd32013-04-05 11:09:20 +0200994 }
995
996 switch (f->key) {
Jens Axboe73a467e2014-04-14 08:34:43 -0600997 case FPRE_JOBNAME: {
998 int ret;
999
1000 ret = snprintf(dst, dst_left, "%s", jobname);
1001 if (ret < 0)
1002 break;
1003 dst += ret;
1004 dst_left -= ret;
Jens Axboede98bd32013-04-05 11:09:20 +02001005 break;
Jens Axboe73a467e2014-04-14 08:34:43 -06001006 }
1007 case FPRE_JOBNUM: {
1008 int ret;
1009
1010 ret = snprintf(dst, dst_left, "%d", jobnum);
1011 if (ret < 0)
1012 break;
1013 dst += ret;
1014 dst_left -= ret;
Jens Axboede98bd32013-04-05 11:09:20 +02001015 break;
Jens Axboe73a467e2014-04-14 08:34:43 -06001016 }
1017 case FPRE_FILENUM: {
1018 int ret;
1019
1020 ret = snprintf(dst, dst_left, "%d", filenum);
1021 if (ret < 0)
1022 break;
1023 dst += ret;
1024 dst_left -= ret;
Jens Axboede98bd32013-04-05 11:09:20 +02001025 break;
Jens Axboe73a467e2014-04-14 08:34:43 -06001026 }
Jens Axboede98bd32013-04-05 11:09:20 +02001027 default:
1028 assert(0);
1029 break;
1030 }
1031
1032 if (post_start)
Jens Axboe73a467e2014-04-14 08:34:43 -06001033 strncpy(dst, buf + post_start, dst_left);
Jens Axboede98bd32013-04-05 11:09:20 +02001034
Jens Axboe3660cea2014-04-15 08:18:08 -06001035 strncpy(buf, copy, buf_size - 1);
Jens Axboede98bd32013-04-05 11:09:20 +02001036 } while (1);
1037 }
1038
1039 return buf;
1040}
Jens Axboef9633d72013-09-06 09:59:56 -06001041
1042int parse_dryrun(void)
1043{
1044 return dump_cmdline || parse_only;
1045}
1046
Steven Langde890a12011-11-09 14:03:34 +01001047/*
Jens Axboe906c8d72006-06-13 09:37:56 +02001048 * Adds a job to the list of things todo. Sanitizes the various options
1049 * to make sure we don't have conflicts, and initializes various
1050 * members of td.
1051 */
Jens Axboeb7cfb2e2012-03-12 07:47:27 +01001052static int add_job(struct thread_data *td, const char *jobname, int job_add_num,
Jens Axboe46bcd492012-03-14 11:31:21 +01001053 int recursed, int client_type)
Jens Axboeebac4652005-12-08 15:25:21 +01001054{
Jens Axboeaf52b342007-03-13 10:07:47 +01001055 unsigned int i;
Jens Axboeaf52b342007-03-13 10:07:47 +01001056 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +01001057 int numjobs, file_alloced;
Jens Axboede98bd32013-04-05 11:09:20 +02001058 struct thread_options *o = &td->o;
Jens Axboeebac4652005-12-08 15:25:21 +01001059
Jens Axboeebac4652005-12-08 15:25:21 +01001060 /*
1061 * the def_thread is just for options, it's not a real job
1062 */
1063 if (td == &def_thread)
1064 return 0;
1065
Jens Axboed72be542012-11-30 19:37:46 +01001066 init_flags(td);
1067
Jens Axboecca73aa2007-04-04 11:09:19 +02001068 /*
1069 * if we are just dumping the output command line, don't add the job
1070 */
Jens Axboef9633d72013-09-06 09:59:56 -06001071 if (parse_dryrun()) {
Jens Axboecca73aa2007-04-04 11:09:19 +02001072 put_job(td);
1073 return 0;
1074 }
1075
Jens Axboe46bcd492012-03-14 11:31:21 +01001076 td->client_type = client_type;
1077
Jens Axboe58c55ba2010-03-09 12:20:08 +01001078 if (profile_td_init(td))
Jens Axboe66251552011-05-12 10:14:57 +02001079 goto err;
Jens Axboe58c55ba2010-03-09 12:20:08 +01001080
Steven Langde890a12011-11-09 14:03:34 +01001081 if (ioengine_load(td))
Jens Axboe205927a2007-03-15 11:06:32 +01001082 goto err;
Jens Axboedf641192006-10-12 07:55:41 +02001083
Jens Axboede98bd32013-04-05 11:09:20 +02001084 if (o->odirect)
Jens Axboe690adba2006-10-30 15:25:09 +01001085 td->io_ops->flags |= FIO_RAWIO;
1086
Jens Axboee132cba2007-03-14 14:23:54 +01001087 file_alloced = 0;
Jens Axboede98bd32013-04-05 11:09:20 +02001088 if (!o->filename && !td->files_index && !o->read_iolog_file) {
Jens Axboee132cba2007-03-14 14:23:54 +01001089 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +01001090
Jens Axboede98bd32013-04-05 11:09:20 +02001091 if (o->nr_files == 1 && exists_and_not_file(jobname))
Jens Axboe5903e7b2014-02-26 13:42:13 -08001092 add_file(td, jobname, job_add_num, 0);
Jens Axboe7b05a212007-03-13 11:17:07 +01001093 else {
Jens Axboede98bd32013-04-05 11:09:20 +02001094 for (i = 0; i < o->nr_files; i++)
Jens Axboe3660cea2014-04-15 08:18:08 -06001095 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 +01001096 }
Jens Axboe0af7b542006-02-17 10:10:12 +01001097 }
Jens Axboeebac4652005-12-08 15:25:21 +01001098
Jens Axboe4e991c22007-03-15 11:41:11 +01001099 if (fixup_options(td))
1100 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +01001101
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01001102 flow_init_job(td);
1103
Steven Langde890a12011-11-09 14:03:34 +01001104 /*
1105 * IO engines only need this for option callbacks, and the address may
1106 * change in subprocesses.
1107 */
1108 if (td->eo)
1109 *(struct thread_data **)td->eo = NULL;
1110
Jens Axboe07eb79d2007-04-12 13:02:38 +02001111 if (td->io_ops->flags & FIO_DISKLESSIO) {
1112 struct fio_file *f;
1113
1114 for_each_file(td, f, i)
1115 f->real_file_size = -1ULL;
1116 }
1117
Jens Axboe521da522012-08-02 11:21:36 +02001118 td->mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
Jens Axboeebac4652005-12-08 15:25:21 +01001119
Jens Axboede98bd32013-04-05 11:09:20 +02001120 td->ts.clat_percentiles = o->clat_percentiles;
1121 td->ts.percentile_precision = o->percentile_precision;
1122 memcpy(td->ts.percentile_list, o->percentile_list, sizeof(o->percentile_list));
Yu-ju Hong83349192011-08-13 00:53:44 +02001123
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001124 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1125 td->ts.clat_stat[i].min_val = ULONG_MAX;
1126 td->ts.slat_stat[i].min_val = ULONG_MAX;
1127 td->ts.lat_stat[i].min_val = ULONG_MAX;
1128 td->ts.bw_stat[i].min_val = ULONG_MAX;
1129 }
Jens Axboede98bd32013-04-05 11:09:20 +02001130 td->ddir_seq_nr = o->ddir_seq_nr;
Jens Axboeebac4652005-12-08 15:25:21 +01001131
Jens Axboede98bd32013-04-05 11:09:20 +02001132 if ((o->stonewall || o->new_group) && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001133 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001134 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001135 }
Jens Axboeebac4652005-12-08 15:25:21 +01001136
1137 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001138 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +01001139
Jens Axboe9dbc7bf2013-01-23 09:26:53 -07001140 if (setup_random_seeds(td)) {
Bruce Cran93bcfd22012-02-20 20:18:19 +01001141 td_verror(td, errno, "init_random_state");
Jens Axboe9c60ce62007-03-15 09:14:47 +01001142 goto err;
Bruce Cran93bcfd22012-02-20 20:18:19 +01001143 }
Jens Axboe9c60ce62007-03-15 09:14:47 +01001144
Jens Axboeebac4652005-12-08 15:25:21 +01001145 if (setup_rate(td))
1146 goto err;
1147
Jens Axboe8e255772014-04-01 13:34:49 -06001148 if (o->lat_log_file || write_lat_log) {
Jens Axboe22f80452013-04-09 20:29:16 +02001149 setup_log(&td->lat_log, o->log_avg_msec, IO_LOG_TYPE_LAT);
1150 setup_log(&td->slat_log, o->log_avg_msec, IO_LOG_TYPE_SLAT);
1151 setup_log(&td->clat_log, o->log_avg_msec, IO_LOG_TYPE_CLAT);
Jens Axboeebac4652005-12-08 15:25:21 +01001152 }
Jens Axboe8e255772014-04-01 13:34:49 -06001153 if (o->bw_log_file || write_bw_log)
Jens Axboe22f80452013-04-09 20:29:16 +02001154 setup_log(&td->bw_log, o->log_avg_msec, IO_LOG_TYPE_BW);
1155 if (o->iops_log_file)
1156 setup_log(&td->iops_log, o->log_avg_msec, IO_LOG_TYPE_IOPS);
Jens Axboeebac4652005-12-08 15:25:21 +01001157
Jens Axboede98bd32013-04-05 11:09:20 +02001158 if (!o->name)
1159 o->name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +02001160
Jens Axboef3afa572012-09-17 13:34:16 +02001161 if (output_format == FIO_OUTPUT_NORMAL) {
Jens Axboeb990b5c2006-09-14 09:48:22 +02001162 if (!job_add_num) {
Jens Axboeb7cfb2e2012-03-12 07:47:27 +01001163 if (is_backend && !recursed)
Jens Axboe2f122b12012-03-15 13:10:19 +01001164 fio_server_send_add_job(td);
Jens Axboe807f9972012-03-02 10:25:24 +01001165
Jens Axboe03530502012-03-19 21:45:12 +01001166 if (!(td->io_ops->flags & FIO_NOIO)) {
Jens Axboed21e2532013-07-25 13:01:11 -06001167 char *c1, *c2, *c3, *c4;
1168 char *c5 = NULL, *c6 = NULL;
Jens Axboef8977ee2006-11-06 14:03:03 +01001169
Jens Axboe22f80452013-04-09 20:29:16 +02001170 c1 = fio_uint_to_kmg(o->min_bs[DDIR_READ]);
1171 c2 = fio_uint_to_kmg(o->max_bs[DDIR_READ]);
1172 c3 = fio_uint_to_kmg(o->min_bs[DDIR_WRITE]);
1173 c4 = fio_uint_to_kmg(o->max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +01001174
Jens Axboed21e2532013-07-25 13:01:11 -06001175 if (!o->bs_is_seq_rand) {
1176 c5 = fio_uint_to_kmg(o->min_bs[DDIR_TRIM]);
1177 c6 = fio_uint_to_kmg(o->max_bs[DDIR_TRIM]);
1178 }
1179
1180 log_info("%s: (g=%d): rw=%s, ", td->o.name,
1181 td->groupid,
1182 ddir_str(o->td_ddir));
1183
1184 if (o->bs_is_seq_rand)
1185 log_info("bs(seq/rand)=%s-%s/%s-%s, ",
1186 c1, c2, c3, c4);
1187 else
1188 log_info("bs=%s-%s/%s-%s/%s-%s, ",
1189 c1, c2, c3, c4, c5, c6);
1190
1191 log_info("ioengine=%s, iodepth=%u\n",
Jens Axboede98bd32013-04-05 11:09:20 +02001192 td->io_ops->name, o->iodepth);
Jens Axboef8977ee2006-11-06 14:03:03 +01001193
1194 free(c1);
1195 free(c2);
1196 free(c3);
1197 free(c4);
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001198 free(c5);
1199 free(c6);
Jens Axboef8977ee2006-11-06 14:03:03 +01001200 }
Jens Axboeb990b5c2006-09-14 09:48:22 +02001201 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +01001202 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +02001203 }
Jens Axboeebac4652005-12-08 15:25:21 +01001204
1205 /*
1206 * recurse add identical jobs, clear numjobs and stonewall options
1207 * as they don't apply to sub-jobs
1208 */
Jens Axboede98bd32013-04-05 11:09:20 +02001209 numjobs = o->numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +01001210 while (--numjobs) {
Jens Axboeb01e1f32014-06-24 09:19:30 -06001211 struct thread_data *td_new = get_new_job(0, td, 1, jobname);
Jens Axboeebac4652005-12-08 15:25:21 +01001212
1213 if (!td_new)
1214 goto err;
1215
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001216 td_new->o.numjobs = 1;
1217 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +02001218 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +01001219
1220 if (file_alloced) {
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001221 if (td_new->files) {
1222 struct fio_file *f;
1223 for_each_file(td_new, f, i) {
1224 if (f->file_name)
Andrey Kuzminece6d642014-04-01 12:27:04 -06001225 sfree(f->file_name);
1226 sfree(f);
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001227 }
Andrey Kuzminece6d642014-04-01 12:27:04 -06001228 free(td_new->files);
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001229 td_new->files = NULL;
1230 }
Andrey Kuzminece6d642014-04-01 12:27:04 -06001231 td_new->files_index = 0;
1232 td_new->files_size = 0;
Christian Ehrhardt455a50f2014-02-19 10:42:41 -08001233 if (td_new->o.filename) {
1234 free(td_new->o.filename);
1235 td_new->o.filename = NULL;
1236 }
Jens Axboee132cba2007-03-14 14:23:54 +01001237 }
1238
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001239 if (add_job(td_new, jobname, numjobs, 1, client_type))
Jens Axboeebac4652005-12-08 15:25:21 +01001240 goto err;
1241 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +01001242
Jens Axboeebac4652005-12-08 15:25:21 +01001243 return 0;
1244err:
1245 put_job(td);
1246 return -1;
1247}
1248
Jens Axboe79d16312010-03-04 12:43:20 +01001249/*
1250 * Parse as if 'o' was a command line
1251 */
Jens Axboe46bcd492012-03-14 11:31:21 +01001252void add_job_opts(const char **o, int client_type)
Jens Axboe79d16312010-03-04 12:43:20 +01001253{
1254 struct thread_data *td, *td_parent;
1255 int i, in_global = 1;
1256 char jobname[32];
1257
1258 i = 0;
1259 td_parent = td = NULL;
1260 while (o[i]) {
1261 if (!strncmp(o[i], "name", 4)) {
1262 in_global = 0;
1263 if (td)
Jens Axboe46bcd492012-03-14 11:31:21 +01001264 add_job(td, jobname, 0, 0, client_type);
Jens Axboe79d16312010-03-04 12:43:20 +01001265 td = NULL;
1266 sprintf(jobname, "%s", o[i] + 5);
1267 }
1268 if (in_global && !td_parent)
Jens Axboeb01e1f32014-06-24 09:19:30 -06001269 td_parent = get_new_job(1, &def_thread, 0, jobname);
Jens Axboe79d16312010-03-04 12:43:20 +01001270 else if (!in_global && !td) {
1271 if (!td_parent)
1272 td_parent = &def_thread;
Jens Axboeb01e1f32014-06-24 09:19:30 -06001273 td = get_new_job(0, td_parent, 0, jobname);
Jens Axboe79d16312010-03-04 12:43:20 +01001274 }
1275 if (in_global)
Jens Axboe292cc472013-11-26 20:39:35 -07001276 fio_options_parse(td_parent, (char **) &o[i], 1, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001277 else
Jens Axboe292cc472013-11-26 20:39:35 -07001278 fio_options_parse(td, (char **) &o[i], 1, 0);
Jens Axboe79d16312010-03-04 12:43:20 +01001279 i++;
1280 }
1281
1282 if (td)
Jens Axboe46bcd492012-03-14 11:31:21 +01001283 add_job(td, jobname, 0, 0, client_type);
Jens Axboe79d16312010-03-04 12:43:20 +01001284}
1285
Jens Axboe01f06b62008-02-18 20:53:47 +01001286static int skip_this_section(const char *name)
1287{
Jens Axboead0a2732011-03-11 10:16:17 +01001288 int i;
1289
1290 if (!nr_job_sections)
Jens Axboe01f06b62008-02-18 20:53:47 +01001291 return 0;
1292 if (!strncmp(name, "global", 6))
1293 return 0;
1294
Jens Axboead0a2732011-03-11 10:16:17 +01001295 for (i = 0; i < nr_job_sections; i++)
1296 if (!strcmp(job_sections[i], name))
1297 return 0;
1298
1299 return 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001300}
1301
Jens Axboeebac4652005-12-08 15:25:21 +01001302static int is_empty_or_comment(char *line)
1303{
1304 unsigned int i;
1305
1306 for (i = 0; i < strlen(line); i++) {
1307 if (line[i] == ';')
1308 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +01001309 if (line[i] == '#')
1310 return 1;
Jens Axboe76cd9372011-07-08 21:14:57 +02001311 if (!isspace((int) line[i]) && !iscntrl((int) line[i]))
Jens Axboeebac4652005-12-08 15:25:21 +01001312 return 0;
1313 }
1314
1315 return 1;
1316}
1317
Jens Axboe313cb202006-12-21 09:50:00 +01001318/*
Jens Axboe07261982006-06-07 10:51:12 +02001319 * This is our [ini] type file parser.
1320 */
Jens Axboe46bcd492012-03-14 11:31:21 +01001321int parse_jobs_ini(char *file, int is_buf, int stonewall_flag, int type)
Jens Axboeebac4652005-12-08 15:25:21 +01001322{
Jens Axboee1f36502006-10-27 10:54:08 +02001323 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +01001324 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +01001325 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +01001326 FILE *f;
1327 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001328 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +02001329 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +02001330 int skip_fgets = 0;
Jens Axboe01f06b62008-02-18 20:53:47 +01001331 int inside_skip = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +02001332 char **opts;
1333 int i, alloc_opts, num_opts;
Jens Axboeebac4652005-12-08 15:25:21 +01001334
Jens Axboe50d16972011-09-29 17:45:28 -06001335 if (is_buf)
1336 f = NULL;
1337 else {
1338 if (!strcmp(file, "-"))
1339 f = stdin;
1340 else
1341 f = fopen(file, "r");
Aaron Carroll5a729cb2007-09-27 09:03:55 +02001342
Jens Axboe50d16972011-09-29 17:45:28 -06001343 if (!f) {
1344 perror("fopen job file");
1345 return 1;
1346 }
Jens Axboeebac4652005-12-08 15:25:21 +01001347 }
1348
1349 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +02001350
1351 /*
1352 * it's really 256 + small bit, 280 should suffice
1353 */
1354 name = malloc(280);
1355 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +01001356
Jens Axboe3b8b7132008-06-10 19:46:23 +02001357 alloc_opts = 8;
1358 opts = malloc(sizeof(char *) * alloc_opts);
Jens Axboeb7c63022008-06-11 11:47:56 +02001359 num_opts = 0;
Jens Axboe3b8b7132008-06-10 19:46:23 +02001360
Jens Axboe0c7e37a2006-06-13 14:53:38 +02001361 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001362 do {
Jens Axboeccf8f122007-09-27 10:48:55 +02001363 /*
1364 * if skip_fgets is set, we already have loaded a line we
1365 * haven't handled.
1366 */
1367 if (!skip_fgets) {
Jens Axboe50d16972011-09-29 17:45:28 -06001368 if (is_buf)
1369 p = strsep(&file, "\n");
1370 else
Jens Axboe43f74792011-10-15 14:37:26 +02001371 p = fgets(string, 4096, f);
Jens Axboeccf8f122007-09-27 10:48:55 +02001372 if (!p)
1373 break;
1374 }
gurudas paicdc7f192007-03-29 10:10:56 +02001375
Jens Axboeccf8f122007-09-27 10:48:55 +02001376 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +02001377 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -08001378 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +02001379
Jens Axboeebac4652005-12-08 15:25:21 +01001380 if (is_empty_or_comment(p))
1381 continue;
Bruce Cran84dd1882011-05-05 08:14:09 -06001382 if (sscanf(p, "[%255[^\n]]", name) != 1) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001383 if (inside_skip)
1384 continue;
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001385 log_err("fio: option <%s> outside of [] job section\n",
1386 p);
Jens Axboe088b4202007-07-19 14:53:01 +02001387 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -08001388 }
Jens Axboeebac4652005-12-08 15:25:21 +01001389
Jens Axboe7a4b80a2010-05-22 20:43:11 +02001390 name[strlen(name) - 1] = '\0';
1391
Jens Axboe01f06b62008-02-18 20:53:47 +01001392 if (skip_this_section(name)) {
1393 inside_skip = 1;
1394 continue;
1395 } else
1396 inside_skip = 0;
1397
Jens Axboeebac4652005-12-08 15:25:21 +01001398 global = !strncmp(name, "global", 6);
1399
Jens Axboecca73aa2007-04-04 11:09:19 +02001400 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +02001401 if (first_sect)
1402 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +02001403 if (!global)
1404 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +02001405 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02001406 }
1407
Jens Axboeb01e1f32014-06-24 09:19:30 -06001408 td = get_new_job(global, &def_thread, 0, name);
Jens Axboe45410ac2006-06-07 11:10:39 +02001409 if (!td) {
1410 ret = 1;
1411 break;
1412 }
Jens Axboeebac4652005-12-08 15:25:21 +01001413
Jens Axboe972cfd22006-06-09 11:08:56 +02001414 /*
Anatol Pomozovde8f6de2013-09-26 16:31:34 -07001415 * Separate multiple job files by a stonewall
Jens Axboe972cfd22006-06-09 11:08:56 +02001416 */
Jens Axboef9481912006-06-09 11:37:28 +02001417 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001418 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +02001419 stonewall = 0;
1420 }
1421
Jens Axboe3b8b7132008-06-10 19:46:23 +02001422 num_opts = 0;
1423 memset(opts, 0, alloc_opts * sizeof(char *));
1424
Jens Axboe50d16972011-09-29 17:45:28 -06001425 while (1) {
1426 if (is_buf)
1427 p = strsep(&file, "\n");
1428 else
1429 p = fgets(string, 4096, f);
1430 if (!p)
1431 break;
1432
Jens Axboeebac4652005-12-08 15:25:21 +01001433 if (is_empty_or_comment(p))
1434 continue;
Jens Axboee1f36502006-10-27 10:54:08 +02001435
Jens Axboeb6754f92006-05-30 14:29:32 +02001436 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +01001437
Jens Axboeccf8f122007-09-27 10:48:55 +02001438 /*
1439 * new section, break out and make sure we don't
1440 * fgets() a new line at the top.
1441 */
1442 if (p[0] == '[') {
1443 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001444 break;
Jens Axboeccf8f122007-09-27 10:48:55 +02001445 }
Jens Axboe7c124ac2006-10-30 13:36:52 +01001446
Jens Axboe4ae3f762006-05-30 13:35:14 +02001447 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +02001448
Jens Axboe3b8b7132008-06-10 19:46:23 +02001449 if (num_opts == alloc_opts) {
1450 alloc_opts <<= 1;
1451 opts = realloc(opts,
1452 alloc_opts * sizeof(char *));
1453 }
1454
1455 opts[num_opts] = strdup(p);
1456 num_opts++;
Jens Axboeebac4652005-12-08 15:25:21 +01001457 }
Jens Axboeebac4652005-12-08 15:25:21 +01001458
Jens Axboe292cc472013-11-26 20:39:35 -07001459 ret = fio_options_parse(td, opts, num_opts, dump_cmdline);
1460 if (!ret)
Jens Axboe46bcd492012-03-14 11:31:21 +01001461 ret = add_job(td, name, 0, 0, type);
Jens Axboe292cc472013-11-26 20:39:35 -07001462 else {
Jens Axboeb1508cf2006-11-02 09:12:40 +01001463 log_err("fio: job %s dropped\n", name);
1464 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +02001465 }
Jens Axboe3b8b7132008-06-10 19:46:23 +02001466
1467 for (i = 0; i < num_opts; i++)
1468 free(opts[i]);
1469 num_opts = 0;
Jens Axboe7c124ac2006-10-30 13:36:52 +01001470 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001471
Jens Axboecca73aa2007-04-04 11:09:19 +02001472 if (dump_cmdline)
1473 log_info("\n");
1474
Jens Axboe7e356b22011-10-14 10:55:16 +02001475 i = 0;
1476 while (i < nr_job_sections) {
1477 free(job_sections[i]);
1478 i++;
1479 }
1480
Jens Axboeebac4652005-12-08 15:25:21 +01001481 free(string);
1482 free(name);
Jens Axboe25775942008-06-10 20:26:06 +02001483 free(opts);
Jens Axboe50d16972011-09-29 17:45:28 -06001484 if (!is_buf && f != stdin)
Aaron Carroll5a729cb2007-09-27 09:03:55 +02001485 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +02001486 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001487}
1488
1489static int fill_def_thread(void)
1490{
1491 memset(&def_thread, 0, sizeof(def_thread));
1492
Jens Axboe375b2692007-05-22 09:13:02 +02001493 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04001494 def_thread.o.error_dump = 1;
Jens Axboe25bd16c2014-04-06 10:09:30 -06001495
Jens Axboeebac4652005-12-08 15:25:21 +01001496 /*
Jens Axboeee738492007-01-10 11:23:16 +01001497 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +01001498 */
Jens Axboe214e1ec2007-03-15 10:48:13 +01001499 fio_fill_default_options(&def_thread);
Jens Axboeebac4652005-12-08 15:25:21 +01001500 return 0;
1501}
1502
Jens Axboe45378b32007-12-19 13:54:38 +01001503static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +02001504{
Jens Axboe3d433822012-03-21 22:25:22 +01001505 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +01001506 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboe83881282011-10-17 19:58:51 +02001507 printf(" --debug=options\tEnable debug logging. May be one/more of:\n"
1508 "\t\t\tprocess,file,io,mem,blktrace,verify,random,parse,\n"
Jens Axboe3e260a42013-12-09 12:38:53 -07001509 "\t\t\tdiskutil,job,mutex,profile,time,net,rate\n");
Jens Axboe111e0322013-03-07 11:31:20 +01001510 printf(" --parse-only\t\tParse options only, don't start any IO\n");
Jens Axboe83881282011-10-17 19:58:51 +02001511 printf(" --output\t\tWrite output to file\n");
liang xieb2cecdc2012-08-31 08:22:42 -07001512 printf(" --runtime\t\tRuntime in seconds\n");
Jens Axboe83881282011-10-17 19:58:51 +02001513 printf(" --latency-log\t\tGenerate per-job latency logs\n");
1514 printf(" --bandwidth-log\tGenerate per-job bandwidth logs\n");
1515 printf(" --minimal\t\tMinimal (terse) output\n");
Jens Axboef3afa572012-09-17 13:34:16 +02001516 printf(" --output-format=x\tOutput format (terse,json,normal)\n");
Jens Axboe75db6e22011-11-07 22:07:36 +01001517 printf(" --terse-version=x\tSet terse version output format to 'x'\n");
Jens Axboef3afa572012-09-17 13:34:16 +02001518 printf(" --version\t\tPrint version info and exit\n");
Jens Axboe83881282011-10-17 19:58:51 +02001519 printf(" --help\t\tPrint this page\n");
Jens Axboe23893642012-12-17 14:44:08 +01001520 printf(" --cpuclock-test\tPerform test/validation of CPU clock\n");
Jens Axboefec0f212014-02-07 14:39:33 -07001521 printf(" --crctest\t\tTest speed of checksum functions\n");
Jens Axboe83881282011-10-17 19:58:51 +02001522 printf(" --cmdhelp=cmd\t\tPrint command help, \"all\" for all of"
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001523 " them\n");
Steven Langde890a12011-11-09 14:03:34 +01001524 printf(" --enghelp=engine\tPrint ioengine help, or list"
1525 " available ioengines\n");
1526 printf(" --enghelp=engine,cmd\tPrint help for an ioengine"
1527 " cmd\n");
Jens Axboe83881282011-10-17 19:58:51 +02001528 printf(" --showcmd\t\tTurn a job file into command line options\n");
1529 printf(" --eta=when\t\tWhen ETA estimate should be printed\n");
1530 printf(" \t\tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboee382e662013-02-22 20:48:56 +01001531 printf(" --eta-newline=time\tForce a new line for every 'time'");
1532 printf(" period passed\n");
Jens Axboe06464902013-04-24 20:38:54 -06001533 printf(" --status-interval=t\tForce full status dump every");
1534 printf(" 't' period passed\n");
Jens Axboe83881282011-10-17 19:58:51 +02001535 printf(" --readonly\t\tTurn on safety read-only checks, preventing"
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001536 " writes\n");
Jens Axboe83881282011-10-17 19:58:51 +02001537 printf(" --section=name\tOnly run specified section in job file\n");
1538 printf(" --alloc-size=kb\tSet smalloc pool to this size in kb"
Jens Axboe2b386d22008-03-26 10:32:57 +01001539 " (def 1024)\n");
Jens Axboe83881282011-10-17 19:58:51 +02001540 printf(" --warnings-fatal\tFio parser warnings are fatal\n");
1541 printf(" --max-jobs=nr\t\tMaximum number of threads/processes to support\n");
1542 printf(" --server=args\t\tStart a backend fio server\n");
1543 printf(" --daemonize=pidfile\tBackground fio server, write pid to file\n");
1544 printf(" --client=hostname\tTalk to remote backend fio server at hostname\n");
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001545 printf(" --idle-prof=option\tReport cpu idleness on a system or percpu basis\n"
1546 "\t\t\t(option=system,percpu) or run unit work\n"
1547 "\t\t\tcalibration only (option=calibrate)\n");
Jens Axboeaa58d252010-06-09 09:49:38 +02001548 printf("\nFio was written by Jens Axboe <jens.axboe@oracle.com>");
Jens Axboebfca2c72014-01-29 16:39:04 -07001549 printf("\n Jens Axboe <jaxboe@fusionio.com>");
1550 printf("\n Jens Axboe <axboe@fb.com>\n");
Jens Axboeb4692822006-10-27 13:43:22 +02001551}
1552
Jens Axboe79e48f72008-02-01 20:37:09 +01001553#ifdef FIO_INC_DEBUG
Jens Axboeee56ad52008-02-01 10:30:20 +01001554struct debug_level debug_levels[] = {
Jens Axboe0b8d11e2012-03-02 19:44:15 +01001555 { .name = "process",
1556 .help = "Process creation/exit logging",
1557 .shift = FD_PROCESS,
1558 },
1559 { .name = "file",
1560 .help = "File related action logging",
1561 .shift = FD_FILE,
1562 },
1563 { .name = "io",
1564 .help = "IO and IO engine action logging (offsets, queue, completions, etc)",
1565 .shift = FD_IO,
1566 },
1567 { .name = "mem",
1568 .help = "Memory allocation/freeing logging",
1569 .shift = FD_MEM,
1570 },
1571 { .name = "blktrace",
1572 .help = "blktrace action logging",
1573 .shift = FD_BLKTRACE,
1574 },
1575 { .name = "verify",
1576 .help = "IO verification action logging",
1577 .shift = FD_VERIFY,
1578 },
1579 { .name = "random",
1580 .help = "Random generation logging",
1581 .shift = FD_RANDOM,
1582 },
1583 { .name = "parse",
1584 .help = "Parser logging",
1585 .shift = FD_PARSE,
1586 },
1587 { .name = "diskutil",
1588 .help = "Disk utility logging actions",
1589 .shift = FD_DISKUTIL,
1590 },
1591 { .name = "job",
1592 .help = "Logging related to creating/destroying jobs",
1593 .shift = FD_JOB,
1594 },
1595 { .name = "mutex",
1596 .help = "Mutex logging",
1597 .shift = FD_MUTEX
1598 },
1599 { .name = "profile",
1600 .help = "Logging related to profiles",
1601 .shift = FD_PROFILE,
1602 },
1603 { .name = "time",
1604 .help = "Logging related to time keeping functions",
1605 .shift = FD_TIME,
1606 },
1607 { .name = "net",
1608 .help = "Network logging",
1609 .shift = FD_NET,
1610 },
Jens Axboe3e260a42013-12-09 12:38:53 -07001611 { .name = "rate",
1612 .help = "Rate logging",
1613 .shift = FD_RATE,
1614 },
Jens Axboe02444ad2008-10-07 11:33:00 +02001615 { .name = NULL, },
Jens Axboeee56ad52008-02-01 10:30:20 +01001616};
1617
Jens Axboec09823a2008-02-19 20:16:57 +01001618static int set_debug(const char *string)
Jens Axboeee56ad52008-02-01 10:30:20 +01001619{
1620 struct debug_level *dl;
1621 char *p = (char *) string;
1622 char *opt;
1623 int i;
1624
1625 if (!strcmp(string, "?") || !strcmp(string, "help")) {
Jens Axboeee56ad52008-02-01 10:30:20 +01001626 log_info("fio: dumping debug options:");
1627 for (i = 0; debug_levels[i].name; i++) {
1628 dl = &debug_levels[i];
1629 log_info("%s,", dl->name);
1630 }
Jens Axboebd6f78b2008-02-01 20:27:52 +01001631 log_info("all\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001632 return 1;
Jens Axboeee56ad52008-02-01 10:30:20 +01001633 }
1634
1635 while ((opt = strsep(&p, ",")) != NULL) {
1636 int found = 0;
1637
Jens Axboe5e1d3062008-05-23 11:55:53 +02001638 if (!strncmp(opt, "all", 3)) {
1639 log_info("fio: set all debug options\n");
1640 fio_debug = ~0UL;
1641 continue;
1642 }
1643
Jens Axboeee56ad52008-02-01 10:30:20 +01001644 for (i = 0; debug_levels[i].name; i++) {
1645 dl = &debug_levels[i];
Jens Axboe5e1d3062008-05-23 11:55:53 +02001646 found = !strncmp(opt, dl->name, strlen(dl->name));
1647 if (!found)
1648 continue;
1649
1650 if (dl->shift == FD_JOB) {
1651 opt = strchr(opt, ':');
1652 if (!opt) {
1653 log_err("fio: missing job number\n");
1654 break;
1655 }
1656 opt++;
1657 fio_debug_jobno = atoi(opt);
1658 log_info("fio: set debug jobno %d\n",
1659 fio_debug_jobno);
1660 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001661 log_info("fio: set debug option %s\n", opt);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001662 fio_debug |= (1UL << dl->shift);
Jens Axboeee56ad52008-02-01 10:30:20 +01001663 }
Jens Axboe5e1d3062008-05-23 11:55:53 +02001664 break;
Jens Axboeee56ad52008-02-01 10:30:20 +01001665 }
1666
1667 if (!found)
1668 log_err("fio: debug mask %s not found\n", opt);
1669 }
Jens Axboec09823a2008-02-19 20:16:57 +01001670 return 0;
Jens Axboeee56ad52008-02-01 10:30:20 +01001671}
Jens Axboe79e48f72008-02-01 20:37:09 +01001672#else
Jens Axboe69b98d42008-05-30 22:25:32 +02001673static int set_debug(const char *string)
Jens Axboe79e48f72008-02-01 20:37:09 +01001674{
1675 log_err("fio: debug tracing not included in build\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001676 return 1;
Jens Axboe79e48f72008-02-01 20:37:09 +01001677}
1678#endif
Jens Axboeee56ad52008-02-01 10:30:20 +01001679
Jens Axboe4c6107f2011-01-18 05:22:22 -07001680static void fio_options_fill_optstring(void)
1681{
1682 char *ostr = cmd_optstr;
1683 int i, c;
1684
1685 c = i = 0;
1686 while (l_opts[i].name) {
1687 ostr[c++] = l_opts[i].val;
1688 if (l_opts[i].has_arg == required_argument)
1689 ostr[c++] = ':';
1690 else if (l_opts[i].has_arg == optional_argument) {
1691 ostr[c++] = ':';
1692 ostr[c++] = ':';
1693 }
1694 i++;
1695 }
1696 ostr[c] = '\0';
1697}
1698
Jens Axboec2c94582011-10-05 20:31:30 +02001699static int client_flag_set(char c)
1700{
1701 int i;
1702
1703 i = 0;
1704 while (l_opts[i].name) {
1705 int val = l_opts[i].val;
1706
1707 if (c == (val & 0xff))
1708 return (val & FIO_CLIENT_FLAG);
1709
1710 i++;
1711 }
1712
1713 return 0;
1714}
1715
Jens Axboe10aa1362014-04-01 21:10:36 -06001716static void parse_cmd_client(void *client, char *opt)
Jens Axboe7a4b8242011-10-05 17:35:15 +02001717{
Jens Axboefa2ea802011-10-08 21:07:29 +02001718 fio_client_add_cmd_option(client, opt);
Jens Axboe7a4b8242011-10-05 17:35:15 +02001719}
1720
Jens Axboe46bcd492012-03-14 11:31:21 +01001721int parse_cmd_line(int argc, char *argv[], int client_type)
Jens Axboe214e1ec2007-03-15 10:48:13 +01001722{
1723 struct thread_data *td = NULL;
Jens Axboec09823a2008-02-19 20:16:57 +01001724 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
Jens Axboe4c6107f2011-01-18 05:22:22 -07001725 char *ostr = cmd_optstr;
Jens Axboe402668f2011-10-10 15:28:58 +02001726 void *pid_file = NULL;
Jens Axboe9bae26e2011-10-07 10:07:22 +02001727 void *cur_client = NULL;
Jens Axboe81179ee2011-10-04 12:42:06 +02001728 int backend = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001729
Jens Axboec2c94582011-10-05 20:31:30 +02001730 /*
1731 * Reset optind handling, since we may call this multiple times
1732 * for the backend.
1733 */
1734 optind = 1;
Jens Axboe7a4b8242011-10-05 17:35:15 +02001735
Jens Axboec2c94582011-10-05 20:31:30 +02001736 while ((c = getopt_long_only(argc, argv, ostr, l_opts, &lidx)) != -1) {
1737 if ((c & FIO_CLIENT_FLAG) || client_flag_set(c)) {
Jens Axboefa2ea802011-10-08 21:07:29 +02001738 parse_cmd_client(cur_client, argv[optind - 1]);
Jens Axboe7a4b8242011-10-05 17:35:15 +02001739 c &= ~FIO_CLIENT_FLAG;
1740 }
1741
Jens Axboe214e1ec2007-03-15 10:48:13 +01001742 switch (c) {
Jens Axboe2b386d22008-03-26 10:32:57 +01001743 case 'a':
1744 smalloc_pool_size = atoi(optarg);
1745 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001746 case 't':
Jens Axboe25bd16c2014-04-06 10:09:30 -06001747 if (check_str_time(optarg, &def_timeout, 1)) {
1748 log_err("fio: failed parsing time %s\n", optarg);
1749 do_exit++;
1750 exit_val = 1;
1751 }
Jens Axboe214e1ec2007-03-15 10:48:13 +01001752 break;
1753 case 'l':
1754 write_lat_log = 1;
1755 break;
Jens Axboe3d73e5a2010-03-25 10:38:07 +01001756 case 'b':
Jens Axboe214e1ec2007-03-15 10:48:13 +01001757 write_bw_log = 1;
1758 break;
1759 case 'o':
Rik Faith52482242014-05-29 14:13:39 -06001760 if (f_out && f_out != stdout)
Jens Axboe5e1d8742014-04-11 11:39:46 -06001761 fclose(f_out);
1762
Jens Axboe214e1ec2007-03-15 10:48:13 +01001763 f_out = fopen(optarg, "w+");
1764 if (!f_out) {
1765 perror("fopen output");
1766 exit(1);
1767 }
1768 f_err = f_out;
1769 break;
1770 case 'm':
Jens Axboef3afa572012-09-17 13:34:16 +02001771 output_format = FIO_OUTPUT_TERSE;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001772 break;
Jens Axboef3afa572012-09-17 13:34:16 +02001773 case 'F':
Stefan Hajnoczid10983d2014-02-04 14:27:11 +01001774 if (!optarg) {
1775 log_err("fio: missing --output-format argument\n");
1776 exit_val = 1;
1777 do_exit++;
1778 break;
1779 }
Jens Axboef3afa572012-09-17 13:34:16 +02001780 if (!strcmp(optarg, "minimal") ||
1781 !strcmp(optarg, "terse") ||
1782 !strcmp(optarg, "csv"))
1783 output_format = FIO_OUTPUT_TERSE;
1784 else if (!strcmp(optarg, "json"))
1785 output_format = FIO_OUTPUT_JSON;
1786 else
1787 output_format = FIO_OUTPUT_NORMAL;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001788 break;
Christian Ehrhardt2b8c71b2014-02-20 14:20:04 +01001789 case 'f':
1790 append_terse_output = 1;
1791 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001792 case 'h':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001793 did_arg = 1;
Jens Axboe7874f8b2011-10-06 09:18:20 +02001794 if (!cur_client) {
Jens Axboec2c94582011-10-05 20:31:30 +02001795 usage(argv[0]);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001796 do_exit++;
1797 }
Jens Axboec2c94582011-10-05 20:31:30 +02001798 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001799 case 'c':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001800 did_arg = 1;
Jens Axboe7874f8b2011-10-06 09:18:20 +02001801 if (!cur_client) {
Jens Axboec2c94582011-10-05 20:31:30 +02001802 fio_show_option_help(optarg);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001803 do_exit++;
1804 }
Jens Axboec2c94582011-10-05 20:31:30 +02001805 break;
Steven Langde890a12011-11-09 14:03:34 +01001806 case 'i':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001807 did_arg = 1;
Steven Langde890a12011-11-09 14:03:34 +01001808 if (!cur_client) {
1809 fio_show_ioengine_help(optarg);
1810 do_exit++;
1811 }
1812 break;
Jens Axboecca73aa2007-04-04 11:09:19 +02001813 case 's':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001814 did_arg = 1;
Jens Axboecca73aa2007-04-04 11:09:19 +02001815 dump_cmdline = 1;
1816 break;
Jens Axboe724e4432007-09-11 20:02:05 +02001817 case 'r':
1818 read_only = 1;
1819 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001820 case 'v':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001821 did_arg = 1;
Jens Axboe7874f8b2011-10-06 09:18:20 +02001822 if (!cur_client) {
Jens Axboe3d433822012-03-21 22:25:22 +01001823 log_info("%s\n", fio_version_string);
Jens Axboe7874f8b2011-10-06 09:18:20 +02001824 do_exit++;
1825 }
Jens Axboec2c94582011-10-05 20:31:30 +02001826 break;
Jens Axboef57a9c52011-09-09 21:01:37 +02001827 case 'V':
1828 terse_version = atoi(optarg);
Jens Axboe09786f52012-10-04 17:06:49 +02001829 if (!(terse_version == 2 || terse_version == 3 ||
1830 terse_version == 4)) {
Jens Axboef57a9c52011-09-09 21:01:37 +02001831 log_err("fio: bad terse version format\n");
1832 exit_val = 1;
1833 do_exit++;
1834 }
1835 break;
Aaron Carrolle592a062007-09-14 09:49:41 +02001836 case 'e':
1837 if (!strcmp("always", optarg))
1838 eta_print = FIO_ETA_ALWAYS;
1839 else if (!strcmp("never", optarg))
1840 eta_print = FIO_ETA_NEVER;
1841 break;
Jens Axboee382e662013-02-22 20:48:56 +01001842 case 'E': {
1843 long long t = 0;
1844
Jens Axboe0de5b262014-02-21 15:26:01 -08001845 if (str_to_decimal(optarg, &t, 0, NULL, 1)) {
Jens Axboee382e662013-02-22 20:48:56 +01001846 log_err("fio: failed parsing eta time %s\n", optarg);
1847 exit_val = 1;
1848 do_exit++;
1849 }
1850 eta_new_line = t;
1851 break;
1852 }
Jens Axboeee56ad52008-02-01 10:30:20 +01001853 case 'd':
Jens Axboec09823a2008-02-19 20:16:57 +01001854 if (set_debug(optarg))
1855 do_exit++;
Jens Axboeee56ad52008-02-01 10:30:20 +01001856 break;
Jens Axboe111e0322013-03-07 11:31:20 +01001857 case 'P':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001858 did_arg = 1;
Jens Axboe111e0322013-03-07 11:31:20 +01001859 parse_only = 1;
1860 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001861 case 'x': {
1862 size_t new_size;
1863
Jens Axboe01f06b62008-02-18 20:53:47 +01001864 if (!strcmp(optarg, "global")) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001865 log_err("fio: can't use global as only "
1866 "section\n");
Jens Axboec09823a2008-02-19 20:16:57 +01001867 do_exit++;
1868 exit_val = 1;
Jens Axboe01f06b62008-02-18 20:53:47 +01001869 break;
1870 }
Jens Axboead0a2732011-03-11 10:16:17 +01001871 new_size = (nr_job_sections + 1) * sizeof(char *);
1872 job_sections = realloc(job_sections, new_size);
1873 job_sections[nr_job_sections] = strdup(optarg);
1874 nr_job_sections++;
Jens Axboe01f06b62008-02-18 20:53:47 +01001875 break;
Jens Axboead0a2732011-03-11 10:16:17 +01001876 }
Jens Axboe9ac8a792009-11-13 21:23:07 +01001877 case 'p':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001878 did_arg = 1;
Jens Axboe4af7c002014-04-11 11:38:38 -06001879 if (exec_profile)
1880 free(exec_profile);
Jens Axboe07b32322010-03-05 09:48:44 +01001881 exec_profile = strdup(optarg);
Jens Axboe9ac8a792009-11-13 21:23:07 +01001882 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001883 case FIO_GETOPT_JOB: {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001884 const char *opt = l_opts[lidx].name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001885 char *val = optarg;
1886
1887 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe46bcd492012-03-14 11:31:21 +01001888 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
Jens Axboe66251552011-05-12 10:14:57 +02001889 if (ret)
Jens Axboe4a4ac4e2014-04-14 08:17:30 -06001890 goto out_free;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001891 td = NULL;
Jens Axboe7d8ea972014-04-14 13:37:46 -06001892 did_arg = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001893 }
1894 if (!td) {
Jens Axboe01f06b62008-02-18 20:53:47 +01001895 int is_section = !strncmp(opt, "name", 4);
Jens Axboe3106f222007-04-19 09:53:28 +02001896 int global = 0;
1897
Jens Axboe01f06b62008-02-18 20:53:47 +01001898 if (!is_section || !strncmp(val, "global", 6))
Jens Axboe3106f222007-04-19 09:53:28 +02001899 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001900
Jens Axboe01f06b62008-02-18 20:53:47 +01001901 if (is_section && skip_this_section(val))
1902 continue;
1903
Jens Axboeb01e1f32014-06-24 09:19:30 -06001904 td = get_new_job(global, &def_thread, 1, NULL);
Jens Axboe1cefc792014-06-09 13:54:22 -06001905 if (!td || ioengine_load(td)) {
1906 if (td) {
1907 put_job(td);
1908 td = NULL;
1909 }
1910 do_exit++;
1911 break;
1912 }
Steven Langde890a12011-11-09 14:03:34 +01001913 fio_options_set_ioengine_opts(l_opts, td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001914 }
1915
Jens Axboe9d918182013-05-23 20:00:35 +02001916 if ((!val || !strlen(val)) &&
1917 l_opts[lidx].has_arg == required_argument) {
1918 log_err("fio: option %s requires an argument\n", opt);
1919 ret = 1;
1920 } else
1921 ret = fio_cmd_option_parse(td, opt, val);
1922
Jens Axboebfb3ea22013-05-23 19:54:43 +02001923 if (ret) {
1924 if (td) {
1925 put_job(td);
1926 td = NULL;
1927 }
Jens Axboea88c8c12013-04-24 22:25:22 -06001928 do_exit++;
Jens Axboebfb3ea22013-05-23 19:54:43 +02001929 }
Steven Langde890a12011-11-09 14:03:34 +01001930
1931 if (!ret && !strcmp(opt, "ioengine")) {
1932 free_ioengine(td);
Jens Axboe1cefc792014-06-09 13:54:22 -06001933 if (ioengine_load(td)) {
1934 if (td) {
1935 put_job(td);
1936 td = NULL;
1937 }
1938 do_exit++;
1939 break;
1940 }
Steven Langde890a12011-11-09 14:03:34 +01001941 fio_options_set_ioengine_opts(l_opts, td);
1942 }
1943 break;
1944 }
1945 case FIO_GETOPT_IOENGINE: {
1946 const char *opt = l_opts[lidx].name;
1947 char *val = optarg;
Jens Axboeb1ed74e2014-04-14 12:07:36 -06001948
1949 if (!td)
1950 break;
1951
Steven Langde890a12011-11-09 14:03:34 +01001952 ret = fio_cmd_ioengine_option_parse(td, opt, val);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001953 break;
1954 }
Jens Axboea9523c62011-01-17 16:49:54 -07001955 case 'w':
1956 warnings_fatal = 1;
1957 break;
Jens Axboefca70352011-07-06 20:12:54 +02001958 case 'j':
1959 max_jobs = atoi(optarg);
1960 if (!max_jobs || max_jobs > REAL_MAX_JOBS) {
1961 log_err("fio: invalid max jobs: %d\n", max_jobs);
1962 do_exit++;
1963 exit_val = 1;
1964 }
1965 break;
Jens Axboe50d16972011-09-29 17:45:28 -06001966 case 'S':
Jens Axboe7d8ea972014-04-14 13:37:46 -06001967 did_arg = 1;
Jens Axboeef7035a2014-06-18 15:30:09 -07001968#ifndef CONFIG_NO_SHM
Jens Axboea37f69b2011-10-01 12:24:21 -06001969 if (nr_clients) {
Jens Axboe132159a2011-09-30 15:01:32 -06001970 log_err("fio: can't be both client and server\n");
1971 do_exit++;
1972 exit_val = 1;
1973 break;
1974 }
Jens Axboe87aa8f12011-10-06 21:24:13 +02001975 if (optarg)
Jens Axboebebe6392011-10-07 10:00:51 +02001976 fio_server_set_arg(optarg);
Jens Axboe50d16972011-09-29 17:45:28 -06001977 is_backend = 1;
Jens Axboe81179ee2011-10-04 12:42:06 +02001978 backend = 1;
Jens Axboeef7035a2014-06-18 15:30:09 -07001979#else
1980 log_err("fio: client/server requires SHM support\n");
1981 do_exit++;
1982 exit_val = 1;
1983#endif
Jens Axboe50d16972011-09-29 17:45:28 -06001984 break;
Jens Axboee46d8092011-10-03 09:11:02 +02001985 case 'D':
Jens Axboe6cfe9a82014-04-14 13:29:52 -06001986 if (pid_file)
1987 free(pid_file);
Jens Axboe402668f2011-10-10 15:28:58 +02001988 pid_file = strdup(optarg);
Jens Axboee46d8092011-10-03 09:11:02 +02001989 break;
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001990 case 'I':
1991 if ((ret = fio_idle_prof_parse_opt(optarg))) {
1992 /* exit on error and calibration only */
Jens Axboe7d8ea972014-04-14 13:37:46 -06001993 did_arg = 1;
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001994 do_exit++;
Jens Axboe7d8ea972014-04-14 13:37:46 -06001995 if (ret == -1)
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001996 exit_val = 1;
1997 }
1998 break;
Jens Axboe132159a2011-09-30 15:01:32 -06001999 case 'C':
Jens Axboe7d8ea972014-04-14 13:37:46 -06002000 did_arg = 1;
Jens Axboe132159a2011-09-30 15:01:32 -06002001 if (is_backend) {
2002 log_err("fio: can't be both client and server\n");
2003 do_exit++;
2004 exit_val = 1;
2005 break;
2006 }
Jens Axboea5276612012-03-04 15:15:08 +01002007 if (fio_client_add(&fio_client_ops, optarg, &cur_client)) {
Jens Axboebebe6392011-10-07 10:00:51 +02002008 log_err("fio: failed adding client %s\n", optarg);
2009 do_exit++;
2010 exit_val = 1;
2011 break;
2012 }
Jens Axboe14ea90e2012-08-26 17:33:34 +02002013 /*
2014 * If the next argument exists and isn't an option,
2015 * assume it's a job file for this client only.
2016 */
2017 while (optind < argc) {
2018 if (!strncmp(argv[optind], "--", 2) ||
2019 !strncmp(argv[optind], "-", 1))
2020 break;
2021
2022 fio_client_add_ini_file(cur_client, argv[optind]);
2023 optind++;
2024 }
Jens Axboe132159a2011-09-30 15:01:32 -06002025 break;
Jens Axboe7d11f872012-12-17 12:03:29 +01002026 case 'T':
Jens Axboe7d8ea972014-04-14 13:37:46 -06002027 did_arg = 1;
Jens Axboe7d11f872012-12-17 12:03:29 +01002028 do_exit++;
2029 exit_val = fio_monotonic_clocktest();
2030 break;
Jens Axboefec0f212014-02-07 14:39:33 -07002031 case 'G':
Jens Axboe7d8ea972014-04-14 13:37:46 -06002032 did_arg = 1;
Jens Axboefec0f212014-02-07 14:39:33 -07002033 do_exit++;
2034 exit_val = fio_crctest(optarg);
2035 break;
Jens Axboe06464902013-04-24 20:38:54 -06002036 case 'L': {
2037 long long val;
2038
Jens Axboe7cd0ec52014-03-28 08:09:10 -06002039 if (check_str_time(optarg, &val, 0)) {
Jens Axboe06464902013-04-24 20:38:54 -06002040 log_err("fio: failed parsing time %s\n", optarg);
2041 do_exit++;
2042 exit_val = 1;
2043 break;
2044 }
2045 status_interval = val * 1000;
2046 break;
2047 }
Jens Axboe798827c2013-01-23 18:11:48 -07002048 case '?':
2049 log_err("%s: unrecognized option '%s'\n", argv[0],
2050 argv[optind - 1]);
Jens Axboe214e1ec2007-03-15 10:48:13 +01002051 default:
Jens Axboec09823a2008-02-19 20:16:57 +01002052 do_exit++;
2053 exit_val = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +01002054 break;
2055 }
Jens Axboec7d5c942011-10-03 11:48:17 +02002056 if (do_exit)
2057 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +01002058 }
2059
Jens Axboe0b14f0a2013-05-23 21:27:54 +02002060 if (do_exit && !(is_backend || nr_clients))
2061 exit(exit_val);
Jens Axboe536582b2008-02-18 20:26:32 +01002062
Jens Axboefb296042014-04-02 08:28:49 -06002063 if (nr_clients && fio_clients_connect())
2064 exit(1);
Jens Axboe132159a2011-09-30 15:01:32 -06002065
Jens Axboe81179ee2011-10-04 12:42:06 +02002066 if (is_backend && backend)
Jens Axboe402668f2011-10-10 15:28:58 +02002067 return fio_start_server(pid_file);
Jens Axboeb8ba87a2014-04-11 11:37:34 -06002068 else if (pid_file)
2069 free(pid_file);
Jens Axboe50d16972011-09-29 17:45:28 -06002070
Jens Axboe214e1ec2007-03-15 10:48:13 +01002071 if (td) {
Jens Axboe7d8ea972014-04-14 13:37:46 -06002072 if (!ret) {
Jens Axboe46bcd492012-03-14 11:31:21 +01002073 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
Jens Axboe7d8ea972014-04-14 13:37:46 -06002074 if (ret)
2075 did_arg = 1;
2076 }
Jens Axboe214e1ec2007-03-15 10:48:13 +01002077 }
2078
Jens Axboe7874f8b2011-10-06 09:18:20 +02002079 while (!ret && optind < argc) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002080 ini_idx++;
2081 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
2082 ini_file[ini_idx - 1] = strdup(argv[optind]);
2083 optind++;
2084 }
2085
Jens Axboe4a4ac4e2014-04-14 08:17:30 -06002086out_free:
2087 if (pid_file)
2088 free(pid_file);
2089
Jens Axboe214e1ec2007-03-15 10:48:13 +01002090 return ini_idx;
2091}
2092
Jens Axboe0420ba62012-02-29 11:16:52 +01002093int fio_init_options(void)
Jens Axboeebac4652005-12-08 15:25:21 +01002094{
Jens Axboeb4692822006-10-27 13:43:22 +02002095 f_out = stdout;
2096 f_err = stderr;
2097
Jens Axboe4c6107f2011-01-18 05:22:22 -07002098 fio_options_fill_optstring();
Jens Axboe5ec10ea2008-03-06 15:42:00 +01002099 fio_options_dup_and_init(l_opts);
Jens Axboeb4692822006-10-27 13:43:22 +02002100
Jens Axboe9d9eb2e2011-10-03 12:01:42 +02002101 atexit(free_shm);
2102
Jens Axboeebac4652005-12-08 15:25:21 +01002103 if (fill_def_thread())
2104 return 1;
2105
Jens Axboe0420ba62012-02-29 11:16:52 +01002106 return 0;
2107}
2108
Jens Axboe51167792012-03-08 21:34:18 +01002109extern int fio_check_options(struct thread_options *);
2110
Jens Axboe0420ba62012-02-29 11:16:52 +01002111int parse_options(int argc, char *argv[])
2112{
Jens Axboe46bcd492012-03-14 11:31:21 +01002113 const int type = FIO_CLIENT_TYPE_CLI;
Jens Axboe0420ba62012-02-29 11:16:52 +01002114 int job_files, i;
2115
2116 if (fio_init_options())
2117 return 1;
Jens Axboe51167792012-03-08 21:34:18 +01002118 if (fio_test_cconv(&def_thread.o))
2119 log_err("fio: failed internal cconv test\n");
Jens Axboe0420ba62012-02-29 11:16:52 +01002120
Jens Axboe46bcd492012-03-14 11:31:21 +01002121 job_files = parse_cmd_line(argc, argv, type);
Jens Axboeebac4652005-12-08 15:25:21 +01002122
Jens Axboecdf54d82011-10-04 08:31:40 +02002123 if (job_files > 0) {
2124 for (i = 0; i < job_files; i++) {
Jens Axboebc4f5ef2014-04-06 10:10:32 -06002125 if (i && fill_def_thread())
Jens Axboe132159a2011-09-30 15:01:32 -06002126 return 1;
Jens Axboecdf54d82011-10-04 08:31:40 +02002127 if (nr_clients) {
2128 if (fio_clients_send_ini(ini_file[i]))
2129 return 1;
2130 free(ini_file[i]);
2131 } else if (!is_backend) {
Jens Axboe46bcd492012-03-14 11:31:21 +01002132 if (parse_jobs_ini(ini_file[i], 0, i, type))
Jens Axboecdf54d82011-10-04 08:31:40 +02002133 return 1;
2134 free(ini_file[i]);
2135 }
Jens Axboe132159a2011-09-30 15:01:32 -06002136 }
Jens Axboe14ea90e2012-08-26 17:33:34 +02002137 } else if (nr_clients) {
2138 if (fill_def_thread())
2139 return 1;
2140 if (fio_clients_send_ini(NULL))
2141 return 1;
Jens Axboe972cfd22006-06-09 11:08:56 +02002142 }
Jens Axboeebac4652005-12-08 15:25:21 +01002143
Jens Axboe88c6ed82006-06-09 11:28:10 +02002144 free(ini_file);
Jens Axboe7e356b22011-10-14 10:55:16 +02002145 fio_options_free(&def_thread);
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08002146 filesetup_mem_free();
Jens Axboeb4692822006-10-27 13:43:22 +02002147
2148 if (!thread_number) {
Jens Axboef9633d72013-09-06 09:59:56 -06002149 if (parse_dryrun())
Jens Axboecca73aa2007-04-04 11:09:19 +02002150 return 0;
Jens Axboe07b32322010-03-05 09:48:44 +01002151 if (exec_profile)
2152 return 0;
Jens Axboea37f69b2011-10-01 12:24:21 -06002153 if (is_backend || nr_clients)
Jens Axboe5c341e92011-09-29 18:00:35 -06002154 return 0;
Jens Axboe085399d2011-10-06 09:01:22 +02002155 if (did_arg)
2156 return 0;
Jens Axboecca73aa2007-04-04 11:09:19 +02002157
Jens Axboed65e11c2011-10-05 09:56:53 +02002158 log_err("No jobs(s) defined\n\n");
Jens Axboe085399d2011-10-06 09:01:22 +02002159
2160 if (!did_arg) {
2161 usage(argv[0]);
2162 return 1;
2163 }
2164
2165 return 0;
Jens Axboeb4692822006-10-27 13:43:22 +02002166 }
2167
Jens Axboebe4ecfd2008-12-08 14:10:52 +01002168 if (def_thread.o.gtod_offload) {
2169 fio_gtod_init();
2170 fio_gtod_offload = 1;
2171 fio_gtod_cpu = def_thread.o.gtod_cpu;
2172 }
2173
Jens Axboef3afa572012-09-17 13:34:16 +02002174 if (output_format == FIO_OUTPUT_NORMAL)
Jens Axboe3d433822012-03-21 22:25:22 +01002175 log_info("%s\n", fio_version_string);
Jens Axboef6dea4d2011-10-13 13:37:07 +02002176
Jens Axboeebac4652005-12-08 15:25:21 +01002177 return 0;
2178}
Jens Axboe588b7f02012-03-19 20:37:41 +01002179
2180void options_default_fill(struct thread_options *o)
2181{
2182 memcpy(o, &def_thread.o, sizeof(*o));
2183}