Use correct I/O engine name "cpuio" instead of "cpu"
[fio.git] / libfio.c
CommitLineData
2e1df07d
JA
1/*
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>
59dfce57
JA
26#include <sys/types.h>
27#include <signal.h>
a569b45f
JA
28#include <stdint.h>
29#include <locale.h>
4a851614 30#include <fcntl.h>
a569b45f 31
2e1df07d 32#include "fio.h"
a569b45f
JA
33#include "smalloc.h"
34#include "os/os.h"
243bfe19 35#include "filelock.h"
a39fb9ea 36#include "helper_thread.h"
2e1df07d 37
a3efc919
JA
38/*
39 * Just expose an empty list, if the OS does not support disk util stats
40 */
41#ifndef FIO_HAVE_DISK_UTIL
42FLIST_HEAD(disk_list);
43#endif
44
45unsigned long arch_flags = 0;
46
a569b45f
JA
47uintptr_t page_mask = 0;
48uintptr_t page_size = 0;
49
2e1df07d
JA
50static const char *fio_os_strings[os_nr] = {
51 "Invalid",
52 "Linux",
53 "AIX",
54 "FreeBSD",
55 "HP-UX",
56 "OSX",
57 "NetBSD",
1c7eaa7b 58 "OpenBSD",
2e1df07d 59 "Solaris",
1c7eaa7b
JA
60 "Windows",
61 "Android",
239b2882 62 "DragonFly",
2e1df07d
JA
63};
64
65static const char *fio_arch_strings[arch_nr] = {
66 "Invalid",
67 "x86-64",
68 "x86",
69 "ppc",
70 "ia64",
71 "s390",
72 "alpha",
73 "sparc",
74 "sparc64",
75 "arm",
76 "sh",
77 "hppa",
78 "generic"
79};
80
ac28d905 81static void reset_io_counters(struct thread_data *td, int all)
2e1df07d 82{
6eaf09d6 83 int ddir;
bcd5abfa 84
ac28d905
JA
85 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 }
6eaf09d6 97 }
ac28d905 98
2e1df07d 99 td->zone_bytes = 0;
2e1df07d
JA
100
101 td->last_was_sync = 0;
bcd5abfa 102 td->rwmix_issues = 0;
2e1df07d
JA
103
104 /*
105 * reset file done count if we are to start over
106 */
44cbc6da 107 if (td->o.time_based || td->o.loops || td->o.do_verify)
2e1df07d
JA
108 td->nr_done_files = 0;
109}
110
ac28d905 111void clear_io_state(struct thread_data *td, int all)
2e1df07d
JA
112{
113 struct fio_file *f;
114 unsigned int i;
115
ac28d905 116 reset_io_counters(td, all);
2e1df07d
JA
117
118 close_files(td);
ec803e97 119 for_each_file(td, f, i) {
2e1df07d 120 fio_file_clear_done(f);
ec803e97
BF
121 f->file_offset = get_start_offset(td, f);
122 }
2e1df07d
JA
123
124 /*
1520f26e 125 * Re-Seed random number generator if rand_repeatable is true
2e1df07d 126 */
1520f26e
D
127 if (td->o.rand_repeatable)
128 td_fill_rand_seeds(td);
2e1df07d
JA
129}
130
131void reset_all_stats(struct thread_data *td)
132{
133 struct timeval tv;
134 int i;
135
ac28d905 136 reset_io_counters(td, 1);
2e1df07d 137
6eaf09d6 138 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
2e1df07d
JA
139 td->io_bytes[i] = 0;
140 td->io_blocks[i] = 0;
141 td->io_issues[i] = 0;
142 td->ts.total_io_u[i] = 0;
6eaf09d6 143 td->ts.runtime[i] = 0;
5b3faae6 144 td->rwmix_issues = 0;
2e1df07d
JA
145 }
146
147 fio_gettime(&tv, NULL);
2e1df07d
JA
148 memcpy(&td->epoch, &tv, sizeof(tv));
149 memcpy(&td->start, &tv, sizeof(tv));
604577f1
JA
150 memcpy(&td->iops_sample_time, &tv, sizeof(tv));
151 memcpy(&td->bw_sample_time, &tv, sizeof(tv));
3e260a46 152
6bb58215 153 lat_target_reset(td);
210dd0fc 154 clear_rusage_stat(td);
a47591e4 155 helper_reset();
2e1df07d
JA
156}
157
158void reset_fio_state(void)
159{
160 groupid = 0;
161 thread_number = 0;
2caefeec 162 stat_number = 0;
2e1df07d
JA
163 done_secs = 0;
164}
165
166const char *fio_get_os_string(int nr)
167{
168 if (nr < os_nr)
169 return fio_os_strings[nr];
170
171 return NULL;
172}
173
174const char *fio_get_arch_string(int nr)
175{
176 if (nr < arch_nr)
177 return fio_arch_strings[nr];
178
179 return NULL;
180}
181
6e760cf3
JA
182static const char *td_runstates[] = {
183 "NOT_CREATED",
184 "CREATED",
185 "INITIALIZED",
186 "RAMP",
187 "SETTING_UP",
188 "RUNNING",
189 "PRE_READING",
190 "VERIFYING",
191 "FSYNCING",
192 "FINISHING",
193 "EXITED",
194 "REAPED",
195};
196
9cc8cb91 197const char *runstate_to_name(int runstate)
6e760cf3
JA
198{
199 compiletime_assert(TD_LAST == 12, "td runstate list");
200 if (runstate >= 0 && runstate < TD_LAST)
201 return td_runstates[runstate];
202
203 return "invalid";
204}
205
2e1df07d
JA
206void td_set_runstate(struct thread_data *td, int runstate)
207{
208 if (td->runstate == runstate)
209 return;
210
6e760cf3
JA
211 dprint(FD_PROCESS, "pid=%d: runstate %s -> %s\n", (int) td->pid,
212 runstate_to_name(td->runstate),
213 runstate_to_name(runstate));
2e1df07d
JA
214 td->runstate = runstate;
215}
216
8edd973d
JA
217int td_bump_runstate(struct thread_data *td, int new_state)
218{
219 int old_state = td->runstate;
220
221 td_set_runstate(td, new_state);
222 return old_state;
223}
224
225void td_restore_runstate(struct thread_data *td, int old_state)
226{
227 td_set_runstate(td, old_state);
228}
229
ebea2133
JA
230void fio_mark_td_terminate(struct thread_data *td)
231{
232 fio_gettime(&td->terminate_time, NULL);
233 write_barrier();
234 td->terminate = 1;
235}
236
d883efbd 237void fio_terminate_threads(unsigned int group_id)
2e1df07d
JA
238{
239 struct thread_data *td;
41fa20ec 240 pid_t pid = getpid();
2e1df07d
JA
241 int i;
242
243 dprint(FD_PROCESS, "terminate group_id=%d\n", group_id);
244
245 for_each_td(td, i) {
d883efbd 246 if (group_id == TERMINATE_ALL || group_id == td->groupid) {
2e1df07d
JA
247 dprint(FD_PROCESS, "setting terminate on %s/%d\n",
248 td->o.name, (int) td->pid);
cba5460c
JA
249
250 if (td->terminate)
251 continue;
252
ebea2133 253 fio_mark_td_terminate(td);
2e1df07d
JA
254 td->o.start_delay = 0;
255
256 /*
257 * if the thread is running, just let it exit
258 */
36d80bc7 259 if (!td->pid || pid == td->pid)
2e1df07d
JA
260 continue;
261 else if (td->runstate < TD_RAMP)
262 kill(td->pid, SIGTERM);
36d80bc7 263 else {
2e1df07d
JA
264 struct ioengine_ops *ops = td->io_ops;
265
36d80bc7
JA
266 if (ops && ops->terminate)
267 ops->terminate(td);
2e1df07d
JA
268 }
269 }
270 }
271}
272
046395d7
JA
273int fio_running_or_pending_io_threads(void)
274{
275 struct thread_data *td;
276 int i;
a691d82f 277 int nr_io_threads = 0;
046395d7
JA
278
279 for_each_td(td, i) {
280 if (td->flags & TD_F_NOIO)
281 continue;
a691d82f 282 nr_io_threads++;
046395d7
JA
283 if (td->runstate < TD_EXITED)
284 return 1;
285 }
286
a691d82f
TK
287 if (!nr_io_threads)
288 return -1; /* we only had cpuio threads to begin with */
046395d7
JA
289 return 0;
290}
291
3a35845f 292int fio_set_fd_nonblocking(int fd, const char *who)
4a851614
JA
293{
294 int flags;
295
296 flags = fcntl(fd, F_GETFL);
297 if (flags < 0)
298 log_err("fio: %s failed to get file flags: %s\n", who, strerror(errno));
299 else {
3a35845f
JA
300 int new_flags = flags | O_NONBLOCK;
301
302 new_flags = fcntl(fd, F_SETFL, new_flags);
303 if (new_flags < 0)
4a851614
JA
304 log_err("fio: %s failed to get file flags: %s\n", who, strerror(errno));
305 }
3a35845f
JA
306
307 return flags;
4a851614
JA
308}
309
a569b45f
JA
310static int endian_check(void)
311{
312 union {
313 uint8_t c[8];
314 uint64_t v;
315 } u;
316 int le = 0, be = 0;
317
318 u.v = 0x12;
319 if (u.c[7] == 0x12)
320 be = 1;
321 else if (u.c[0] == 0x12)
322 le = 1;
323
324#if defined(CONFIG_LITTLE_ENDIAN)
325 if (be)
326 return 1;
327#elif defined(CONFIG_BIG_ENDIAN)
328 if (le)
329 return 1;
330#else
331 return 1;
332#endif
333
334 if (!le && !be)
335 return 1;
336
337 return 0;
338}
339
340int initialize_fio(char *envp[])
341{
342 long ps;
343
976a7756
JA
344 /*
345 * We need these to be properly 64-bit aligned, otherwise we
346 * can run into problems on archs that fault on unaligned fp
347 * access (ARM).
348 */
24ffb6f8 349 compiletime_assert((offsetof(struct thread_stat, percentile_list) % 8) == 0, "stat percentile_list");
3d0ebb30
GG
350 compiletime_assert((offsetof(struct thread_stat, total_run_time) % 8) == 0, "total_run_time");
351 compiletime_assert((offsetof(struct thread_stat, total_err_count) % 8) == 0, "total_err_count");
24ffb6f8
JA
352 compiletime_assert((offsetof(struct thread_stat, latency_percentile) % 8) == 0, "stat latency_percentile");
353 compiletime_assert((offsetof(struct thread_options_pack, zipf_theta) % 8) == 0, "zipf_theta");
354 compiletime_assert((offsetof(struct thread_options_pack, pareto_h) % 8) == 0, "pareto_h");
355 compiletime_assert((offsetof(struct thread_options_pack, percentile_list) % 8) == 0, "percentile_list");
b8c6b4de 356 compiletime_assert((offsetof(struct thread_options_pack, latency_percentile) % 8) == 0, "latency_percentile");
976a7756 357
a569b45f
JA
358 if (endian_check()) {
359 log_err("fio: endianness settings appear wrong.\n");
360 log_err("fio: please report this to fio@vger.kernel.org\n");
361 return 1;
362 }
363
364#if !defined(CONFIG_GETTIMEOFDAY) && !defined(CONFIG_CLOCK_GETTIME)
365#error "No available clock source!"
366#endif
367
368 arch_init(envp);
369
370 sinit();
371
243bfe19
JA
372 if (fio_filelock_init()) {
373 log_err("fio: failed initializing filelock subsys\n");
374 return 1;
375 }
376
a569b45f
JA
377 /*
378 * We need locale for number printing, if it isn't set then just
379 * go with the US format.
380 */
381 if (!getenv("LC_NUMERIC"))
382 setlocale(LC_NUMERIC, "en_US");
383
384 ps = sysconf(_SC_PAGESIZE);
385 if (ps < 0) {
386 log_err("Failed to get page size\n");
387 return 1;
388 }
389
390 page_size = ps;
391 page_mask = ps - 1;
2e1df07d 392
a569b45f
JA
393 fio_keywords_init();
394 return 0;
395}
af1dc266
JA
396
397void deinitialize_fio(void)
398{
399 fio_keywords_exit();
400}