blob: 83107084a4239c096298c3bddd702b7c8166cef0 [file] [log] [blame]
Jens Axboe2e1df072012-02-09 11:15:02 +01001/*
2 * fio - the flexible io tester
3 *
4 * Copyright (C) 2005 Jens Axboe <axboe@suse.de>
5 * Copyright (C) 2006-2012 Jens Axboe <axboe@kernel.dk>
6 *
7 * The license below covers all files distributed with fio unless otherwise
8 * noted in the file itself.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
25#include <string.h>
Jens Axboe59dfce52012-02-15 21:52:39 +010026#include <sys/types.h>
27#include <signal.h>
Jens Axboea569b452013-04-11 11:51:35 +020028#include <stdint.h>
29#include <locale.h>
Jens Axboe4a851612014-04-14 10:04:21 -060030#include <fcntl.h>
Jens Axboea569b452013-04-11 11:51:35 +020031
Jens Axboe2e1df072012-02-09 11:15:02 +010032#include "fio.h"
Jens Axboea569b452013-04-11 11:51:35 +020033#include "smalloc.h"
34#include "os/os.h"
Jens Axboe243bfe12014-04-02 15:46:58 -060035#include "filelock.h"
Elliott Hugheseda3a602017-05-19 18:53:02 -070036#include "helper_thread.h"
37#include "filehash.h"
Jens Axboe2e1df072012-02-09 11:15:02 +010038
Jens Axboea3efc912012-02-09 11:25:24 +010039FLIST_HEAD(disk_list);
Jens Axboea3efc912012-02-09 11:25:24 +010040
41unsigned long arch_flags = 0;
42
Jens Axboea569b452013-04-11 11:51:35 +020043uintptr_t page_mask = 0;
44uintptr_t page_size = 0;
45
Elliott Hugheseda3a602017-05-19 18:53:02 -070046/* see os/os.h */
Jens Axboe2e1df072012-02-09 11:15:02 +010047static const char *fio_os_strings[os_nr] = {
48 "Invalid",
49 "Linux",
50 "AIX",
51 "FreeBSD",
52 "HP-UX",
53 "OSX",
54 "NetBSD",
Jens Axboe1c7eaa72013-12-29 19:22:46 -070055 "OpenBSD",
Jens Axboe2e1df072012-02-09 11:15:02 +010056 "Solaris",
Jens Axboe1c7eaa72013-12-29 19:22:46 -070057 "Windows",
58 "Android",
Jens Axboeec58c742014-11-04 19:53:04 -070059 "DragonFly",
Jens Axboe2e1df072012-02-09 11:15:02 +010060};
61
Elliott Hugheseda3a602017-05-19 18:53:02 -070062/* see arch/arch.h */
Jens Axboe2e1df072012-02-09 11:15:02 +010063static const char *fio_arch_strings[arch_nr] = {
64 "Invalid",
65 "x86-64",
66 "x86",
67 "ppc",
68 "ia64",
69 "s390",
70 "alpha",
71 "sparc",
72 "sparc64",
73 "arm",
74 "sh",
75 "hppa",
Elliott Hugheseda3a602017-05-19 18:53:02 -070076 "mips",
77 "aarch64",
Jens Axboe2e1df072012-02-09 11:15:02 +010078 "generic"
79};
80
Elliott Hugheseda3a602017-05-19 18:53:02 -070081static void reset_io_counters(struct thread_data *td, int all)
Jens Axboe2e1df072012-02-09 11:15:02 +010082{
Shaohua Li6eaf09d2012-09-14 08:49:43 +020083 int ddir;
Jens Axboebcd5abf2013-01-23 09:27:25 -070084
Elliott Hugheseda3a602017-05-19 18:53:02 -070085 if (all) {
86 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++) {
87 td->stat_io_bytes[ddir] = 0;
88 td->this_io_bytes[ddir] = 0;
89 td->stat_io_blocks[ddir] = 0;
90 td->this_io_blocks[ddir] = 0;
91 td->rate_bytes[ddir] = 0;
92 td->rate_blocks[ddir] = 0;
93 td->bytes_done[ddir] = 0;
94 td->rate_io_issue_bytes[ddir] = 0;
95 td->rate_next_io_time[ddir] = 0;
96 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +020097 }
Elliott Hugheseda3a602017-05-19 18:53:02 -070098
Jens Axboe2e1df072012-02-09 11:15:02 +010099 td->zone_bytes = 0;
Jens Axboe2e1df072012-02-09 11:15:02 +0100100
101 td->last_was_sync = 0;
Jens Axboebcd5abf2013-01-23 09:27:25 -0700102 td->rwmix_issues = 0;
Jens Axboe2e1df072012-02-09 11:15:02 +0100103
104 /*
105 * reset file done count if we are to start over
106 */
Jens Axboe44cbc6d2013-01-21 09:47:03 -0700107 if (td->o.time_based || td->o.loops || td->o.do_verify)
Jens Axboe2e1df072012-02-09 11:15:02 +0100108 td->nr_done_files = 0;
109}
110
Elliott Hugheseda3a602017-05-19 18:53:02 -0700111void clear_io_state(struct thread_data *td, int all)
Jens Axboe2e1df072012-02-09 11:15:02 +0100112{
113 struct fio_file *f;
114 unsigned int i;
115
Elliott Hugheseda3a602017-05-19 18:53:02 -0700116 reset_io_counters(td, all);
Jens Axboe2e1df072012-02-09 11:15:02 +0100117
118 close_files(td);
Brian Fulton2703aa42014-10-24 14:47:34 -0600119 for_each_file(td, f, i) {
Jens Axboe2e1df072012-02-09 11:15:02 +0100120 fio_file_clear_done(f);
Brian Fulton2703aa42014-10-24 14:47:34 -0600121 f->file_offset = get_start_offset(td, f);
122 }
Jens Axboe2e1df072012-02-09 11:15:02 +0100123
124 /*
Elliott Hugheseda3a602017-05-19 18:53:02 -0700125 * Re-Seed random number generator if rand_repeatable is true
Jens Axboe2e1df072012-02-09 11:15:02 +0100126 */
Elliott Hugheseda3a602017-05-19 18:53:02 -0700127 if (td->o.rand_repeatable)
128 td_fill_rand_seeds(td);
Jens Axboe2e1df072012-02-09 11:15:02 +0100129}
130
131void reset_all_stats(struct thread_data *td)
132{
Jens Axboe2e1df072012-02-09 11:15:02 +0100133 int i;
134
Elliott Hugheseda3a602017-05-19 18:53:02 -0700135 reset_io_counters(td, 1);
Jens Axboe2e1df072012-02-09 11:15:02 +0100136
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200137 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboe2e1df072012-02-09 11:15:02 +0100138 td->io_bytes[i] = 0;
139 td->io_blocks[i] = 0;
140 td->io_issues[i] = 0;
141 td->ts.total_io_u[i] = 0;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200142 td->ts.runtime[i] = 0;
SEOKYOUNG KO5b3faae2013-03-07 12:31:04 +0100143 td->rwmix_issues = 0;
Jens Axboe2e1df072012-02-09 11:15:02 +0100144 }
145
Elliott Hugheseda3a602017-05-19 18:53:02 -0700146 set_epoch_time(td, td->o.log_unix_epoch);
147 memcpy(&td->start, &td->epoch, sizeof(struct timeval));
148 memcpy(&td->iops_sample_time, &td->epoch, sizeof(struct timeval));
149 memcpy(&td->bw_sample_time, &td->epoch, sizeof(struct timeval));
150 memcpy(&td->ss.prev_time, &td->epoch, sizeof(struct timeval));
Jens Axboe3e260a42013-12-09 12:38:53 -0700151
Jens Axboe6bb58212014-02-21 13:55:31 -0800152 lat_target_reset(td);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700153 clear_rusage_stat(td);
154 helper_reset();
Jens Axboe2e1df072012-02-09 11:15:02 +0100155}
156
157void reset_fio_state(void)
158{
159 groupid = 0;
160 thread_number = 0;
Jens Axboe2caefee2012-11-15 07:51:28 -0700161 stat_number = 0;
Jens Axboe2e1df072012-02-09 11:15:02 +0100162 done_secs = 0;
163}
164
165const char *fio_get_os_string(int nr)
166{
167 if (nr < os_nr)
168 return fio_os_strings[nr];
169
170 return NULL;
171}
172
173const char *fio_get_arch_string(int nr)
174{
175 if (nr < arch_nr)
176 return fio_arch_strings[nr];
177
178 return NULL;
179}
180
Elliott Hugheseda3a602017-05-19 18:53:02 -0700181static const char *td_runstates[] = {
182 "NOT_CREATED",
183 "CREATED",
184 "INITIALIZED",
185 "RAMP",
186 "SETTING_UP",
187 "RUNNING",
188 "PRE_READING",
189 "VERIFYING",
190 "FSYNCING",
191 "FINISHING",
192 "EXITED",
193 "REAPED",
194};
195
196const char *runstate_to_name(int runstate)
197{
198 compiletime_assert(TD_LAST == 12, "td runstate list");
199 if (runstate >= 0 && runstate < TD_LAST)
200 return td_runstates[runstate];
201
202 return "invalid";
203}
204
Jens Axboe2e1df072012-02-09 11:15:02 +0100205void td_set_runstate(struct thread_data *td, int runstate)
206{
207 if (td->runstate == runstate)
208 return;
209
Elliott Hugheseda3a602017-05-19 18:53:02 -0700210 dprint(FD_PROCESS, "pid=%d: runstate %s -> %s\n", (int) td->pid,
211 runstate_to_name(td->runstate),
212 runstate_to_name(runstate));
Jens Axboe2e1df072012-02-09 11:15:02 +0100213 td->runstate = runstate;
214}
215
Jens Axboe8edd9732014-03-01 08:24:03 -0700216int td_bump_runstate(struct thread_data *td, int new_state)
217{
218 int old_state = td->runstate;
219
220 td_set_runstate(td, new_state);
221 return old_state;
222}
223
224void td_restore_runstate(struct thread_data *td, int old_state)
225{
226 td_set_runstate(td, old_state);
227}
228
Jens Axboe3b44e8b2014-07-09 11:24:12 +0200229void fio_mark_td_terminate(struct thread_data *td)
230{
231 fio_gettime(&td->terminate_time, NULL);
232 write_barrier();
233 td->terminate = 1;
234}
235
Elliott Hugheseda3a602017-05-19 18:53:02 -0700236void fio_terminate_threads(unsigned int group_id)
Jens Axboe2e1df072012-02-09 11:15:02 +0100237{
238 struct thread_data *td;
Jens Axboe41fa20e2012-11-29 14:24:34 +0100239 pid_t pid = getpid();
Jens Axboe2e1df072012-02-09 11:15:02 +0100240 int i;
241
242 dprint(FD_PROCESS, "terminate group_id=%d\n", group_id);
243
244 for_each_td(td, i) {
Elliott Hugheseda3a602017-05-19 18:53:02 -0700245 if (group_id == TERMINATE_ALL || group_id == td->groupid) {
Jens Axboe2e1df072012-02-09 11:15:02 +0100246 dprint(FD_PROCESS, "setting terminate on %s/%d\n",
247 td->o.name, (int) td->pid);
Jens Axboe958b8912014-07-09 08:46:12 +0200248
249 if (td->terminate)
250 continue;
251
Jens Axboe3b44e8b2014-07-09 11:24:12 +0200252 fio_mark_td_terminate(td);
Jens Axboe2e1df072012-02-09 11:15:02 +0100253 td->o.start_delay = 0;
254
255 /*
256 * if the thread is running, just let it exit
257 */
Jens Axboe36d80bc2012-11-30 21:46:06 +0100258 if (!td->pid || pid == td->pid)
Jens Axboe2e1df072012-02-09 11:15:02 +0100259 continue;
260 else if (td->runstate < TD_RAMP)
261 kill(td->pid, SIGTERM);
Jens Axboe36d80bc2012-11-30 21:46:06 +0100262 else {
Jens Axboe2e1df072012-02-09 11:15:02 +0100263 struct ioengine_ops *ops = td->io_ops;
264
Jens Axboe36d80bc2012-11-30 21:46:06 +0100265 if (ops && ops->terminate)
266 ops->terminate(td);
Jens Axboe2e1df072012-02-09 11:15:02 +0100267 }
268 }
269 }
270}
271
Jens Axboe046395d2014-04-09 13:57:38 -0600272int fio_running_or_pending_io_threads(void)
273{
274 struct thread_data *td;
275 int i;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700276 int nr_io_threads = 0;
Jens Axboe046395d2014-04-09 13:57:38 -0600277
278 for_each_td(td, i) {
Elliott Hugheseda3a602017-05-19 18:53:02 -0700279 if (td->io_ops_init && td_ioengine_flagged(td, FIO_NOIO))
Jens Axboe046395d2014-04-09 13:57:38 -0600280 continue;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700281 nr_io_threads++;
Jens Axboe046395d2014-04-09 13:57:38 -0600282 if (td->runstate < TD_EXITED)
283 return 1;
284 }
285
Elliott Hugheseda3a602017-05-19 18:53:02 -0700286 if (!nr_io_threads)
287 return -1; /* we only had cpuio threads to begin with */
Jens Axboe046395d2014-04-09 13:57:38 -0600288 return 0;
289}
290
Jens Axboe3a358452014-04-15 09:07:44 -0600291int fio_set_fd_nonblocking(int fd, const char *who)
Jens Axboe4a851612014-04-14 10:04:21 -0600292{
293 int flags;
294
295 flags = fcntl(fd, F_GETFL);
296 if (flags < 0)
297 log_err("fio: %s failed to get file flags: %s\n", who, strerror(errno));
298 else {
Jens Axboe3a358452014-04-15 09:07:44 -0600299 int new_flags = flags | O_NONBLOCK;
300
301 new_flags = fcntl(fd, F_SETFL, new_flags);
302 if (new_flags < 0)
Jens Axboe4a851612014-04-14 10:04:21 -0600303 log_err("fio: %s failed to get file flags: %s\n", who, strerror(errno));
304 }
Jens Axboe3a358452014-04-15 09:07:44 -0600305
306 return flags;
Jens Axboe4a851612014-04-14 10:04:21 -0600307}
308
Elliott Hugheseda3a602017-05-19 18:53:02 -0700309enum {
310 ENDIAN_INVALID_BE = 1,
311 ENDIAN_INVALID_LE,
312 ENDIAN_INVALID_CONFIG,
313 ENDIAN_BROKEN,
314};
315
Jens Axboea569b452013-04-11 11:51:35 +0200316static int endian_check(void)
317{
318 union {
319 uint8_t c[8];
320 uint64_t v;
321 } u;
322 int le = 0, be = 0;
Jens Axboe2e1df072012-02-09 11:15:02 +0100323
Jens Axboea569b452013-04-11 11:51:35 +0200324 u.v = 0x12;
325 if (u.c[7] == 0x12)
326 be = 1;
327 else if (u.c[0] == 0x12)
328 le = 1;
329
330#if defined(CONFIG_LITTLE_ENDIAN)
331 if (be)
Elliott Hugheseda3a602017-05-19 18:53:02 -0700332 return ENDIAN_INVALID_BE;
Jens Axboea569b452013-04-11 11:51:35 +0200333#elif defined(CONFIG_BIG_ENDIAN)
334 if (le)
Elliott Hugheseda3a602017-05-19 18:53:02 -0700335 return ENDIAN_INVALID_LE;
Jens Axboea569b452013-04-11 11:51:35 +0200336#else
Elliott Hugheseda3a602017-05-19 18:53:02 -0700337 return ENDIAN_INVALID_CONFIG;
Jens Axboea569b452013-04-11 11:51:35 +0200338#endif
339
340 if (!le && !be)
Elliott Hugheseda3a602017-05-19 18:53:02 -0700341 return ENDIAN_BROKEN;
Jens Axboea569b452013-04-11 11:51:35 +0200342
343 return 0;
344}
345
346int initialize_fio(char *envp[])
347{
348 long ps;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700349 int err;
Jens Axboea569b452013-04-11 11:51:35 +0200350
Jens Axboefd738c02014-10-20 10:52:31 -0600351 /*
352 * We need these to be properly 64-bit aligned, otherwise we
353 * can run into problems on archs that fault on unaligned fp
354 * access (ARM).
355 */
Jens Axboe52597382014-10-20 10:56:46 -0600356 compiletime_assert((offsetof(struct thread_stat, percentile_list) % 8) == 0, "stat percentile_list");
Gwendal Grignou4ffeb0a2014-10-25 16:04:32 -0700357 compiletime_assert((offsetof(struct thread_stat, total_run_time) % 8) == 0, "total_run_time");
358 compiletime_assert((offsetof(struct thread_stat, total_err_count) % 8) == 0, "total_err_count");
Jens Axboe52597382014-10-20 10:56:46 -0600359 compiletime_assert((offsetof(struct thread_stat, latency_percentile) % 8) == 0, "stat latency_percentile");
360 compiletime_assert((offsetof(struct thread_options_pack, zipf_theta) % 8) == 0, "zipf_theta");
361 compiletime_assert((offsetof(struct thread_options_pack, pareto_h) % 8) == 0, "pareto_h");
362 compiletime_assert((offsetof(struct thread_options_pack, percentile_list) % 8) == 0, "percentile_list");
Shu-Yu Fuf45d32b2014-10-21 07:57:55 -0600363 compiletime_assert((offsetof(struct thread_options_pack, latency_percentile) % 8) == 0, "latency_percentile");
Jens Axboefd738c02014-10-20 10:52:31 -0600364
Elliott Hugheseda3a602017-05-19 18:53:02 -0700365 err = endian_check();
366 if (err) {
Jens Axboea569b452013-04-11 11:51:35 +0200367 log_err("fio: endianness settings appear wrong.\n");
Elliott Hugheseda3a602017-05-19 18:53:02 -0700368 switch (err) {
369 case ENDIAN_INVALID_BE:
370 log_err("fio: got big-endian when configured for little\n");
371 break;
372 case ENDIAN_INVALID_LE:
373 log_err("fio: got little-endian when configured for big\n");
374 break;
375 case ENDIAN_INVALID_CONFIG:
376 log_err("fio: not configured to any endianness\n");
377 break;
378 case ENDIAN_BROKEN:
379 log_err("fio: failed to detect endianness\n");
380 break;
381 default:
382 assert(0);
383 break;
384 }
Jens Axboea569b452013-04-11 11:51:35 +0200385 log_err("fio: please report this to fio@vger.kernel.org\n");
386 return 1;
387 }
388
389#if !defined(CONFIG_GETTIMEOFDAY) && !defined(CONFIG_CLOCK_GETTIME)
390#error "No available clock source!"
391#endif
392
393 arch_init(envp);
394
395 sinit();
396
Jens Axboe243bfe12014-04-02 15:46:58 -0600397 if (fio_filelock_init()) {
398 log_err("fio: failed initializing filelock subsys\n");
399 return 1;
400 }
401
Elliott Hugheseda3a602017-05-19 18:53:02 -0700402 file_hash_init();
403
Jens Axboea569b452013-04-11 11:51:35 +0200404 /*
405 * We need locale for number printing, if it isn't set then just
406 * go with the US format.
407 */
408 if (!getenv("LC_NUMERIC"))
409 setlocale(LC_NUMERIC, "en_US");
410
411 ps = sysconf(_SC_PAGESIZE);
412 if (ps < 0) {
413 log_err("Failed to get page size\n");
414 return 1;
415 }
416
417 page_size = ps;
418 page_mask = ps - 1;
419
420 fio_keywords_init();
421 return 0;
422}
Elliott Hugheseda3a602017-05-19 18:53:02 -0700423
424void deinitialize_fio(void)
425{
426 fio_keywords_exit();
427}