respond to get file size
[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>
30
2e1df07d 31#include "fio.h"
a569b45f
JA
32#include "smalloc.h"
33#include "os/os.h"
2e1df07d 34
a3efc919
JA
35/*
36 * Just expose an empty list, if the OS does not support disk util stats
37 */
38#ifndef FIO_HAVE_DISK_UTIL
39FLIST_HEAD(disk_list);
40#endif
41
42unsigned long arch_flags = 0;
43
a569b45f
JA
44uintptr_t page_mask = 0;
45uintptr_t page_size = 0;
46
2e1df07d
JA
47static const char *fio_os_strings[os_nr] = {
48 "Invalid",
49 "Linux",
50 "AIX",
51 "FreeBSD",
52 "HP-UX",
53 "OSX",
54 "NetBSD",
1c7eaa7b 55 "OpenBSD",
2e1df07d 56 "Solaris",
1c7eaa7b
JA
57 "Windows",
58 "Android",
2e1df07d
JA
59};
60
61static const char *fio_arch_strings[arch_nr] = {
62 "Invalid",
63 "x86-64",
64 "x86",
65 "ppc",
66 "ia64",
67 "s390",
68 "alpha",
69 "sparc",
70 "sparc64",
71 "arm",
72 "sh",
73 "hppa",
74 "generic"
75};
76
77static void reset_io_counters(struct thread_data *td)
78{
6eaf09d6 79 int ddir;
bcd5abfa 80
6eaf09d6
SL
81 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++) {
82 td->stat_io_bytes[ddir] = 0;
83 td->this_io_bytes[ddir] = 0;
84 td->stat_io_blocks[ddir] = 0;
85 td->this_io_blocks[ddir] = 0;
86 td->rate_bytes[ddir] = 0;
87 td->rate_blocks[ddir] = 0;
88 }
2e1df07d 89 td->zone_bytes = 0;
2e1df07d
JA
90
91 td->last_was_sync = 0;
bcd5abfa 92 td->rwmix_issues = 0;
2e1df07d
JA
93
94 /*
95 * reset file done count if we are to start over
96 */
44cbc6da 97 if (td->o.time_based || td->o.loops || td->o.do_verify)
2e1df07d
JA
98 td->nr_done_files = 0;
99}
100
101void clear_io_state(struct thread_data *td)
102{
103 struct fio_file *f;
104 unsigned int i;
105
106 reset_io_counters(td);
107
108 close_files(td);
109 for_each_file(td, f, i)
110 fio_file_clear_done(f);
111
112 /*
113 * Set the same seed to get repeatable runs
114 */
115 td_fill_rand_seeds(td);
116}
117
118void reset_all_stats(struct thread_data *td)
119{
120 struct timeval tv;
121 int i;
122
123 reset_io_counters(td);
124
6eaf09d6 125 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
2e1df07d
JA
126 td->io_bytes[i] = 0;
127 td->io_blocks[i] = 0;
128 td->io_issues[i] = 0;
129 td->ts.total_io_u[i] = 0;
6eaf09d6 130 td->ts.runtime[i] = 0;
5b3faae6 131 td->rwmix_issues = 0;
2e1df07d
JA
132 }
133
134 fio_gettime(&tv, NULL);
2e1df07d
JA
135 memcpy(&td->epoch, &tv, sizeof(tv));
136 memcpy(&td->start, &tv, sizeof(tv));
3e260a46 137
6bb58215 138 lat_target_reset(td);
2e1df07d
JA
139}
140
141void reset_fio_state(void)
142{
143 groupid = 0;
144 thread_number = 0;
2caefeec 145 stat_number = 0;
2e1df07d
JA
146 done_secs = 0;
147}
148
149const char *fio_get_os_string(int nr)
150{
151 if (nr < os_nr)
152 return fio_os_strings[nr];
153
154 return NULL;
155}
156
157const char *fio_get_arch_string(int nr)
158{
159 if (nr < arch_nr)
160 return fio_arch_strings[nr];
161
162 return NULL;
163}
164
165void td_set_runstate(struct thread_data *td, int runstate)
166{
167 if (td->runstate == runstate)
168 return;
169
170 dprint(FD_PROCESS, "pid=%d: runstate %d -> %d\n", (int) td->pid,
171 td->runstate, runstate);
172 td->runstate = runstate;
173}
174
8edd973d
JA
175int td_bump_runstate(struct thread_data *td, int new_state)
176{
177 int old_state = td->runstate;
178
179 td_set_runstate(td, new_state);
180 return old_state;
181}
182
183void td_restore_runstate(struct thread_data *td, int old_state)
184{
185 td_set_runstate(td, old_state);
186}
187
2e1df07d
JA
188void fio_terminate_threads(int group_id)
189{
190 struct thread_data *td;
41fa20ec 191 pid_t pid = getpid();
2e1df07d
JA
192 int i;
193
194 dprint(FD_PROCESS, "terminate group_id=%d\n", group_id);
195
196 for_each_td(td, i) {
197 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
198 dprint(FD_PROCESS, "setting terminate on %s/%d\n",
199 td->o.name, (int) td->pid);
200 td->terminate = 1;
201 td->o.start_delay = 0;
202
203 /*
204 * if the thread is running, just let it exit
205 */
36d80bc7 206 if (!td->pid || pid == td->pid)
2e1df07d
JA
207 continue;
208 else if (td->runstate < TD_RAMP)
209 kill(td->pid, SIGTERM);
36d80bc7 210 else {
2e1df07d
JA
211 struct ioengine_ops *ops = td->io_ops;
212
36d80bc7
JA
213 if (ops && ops->terminate)
214 ops->terminate(td);
2e1df07d
JA
215 }
216 }
217 }
218}
219
a569b45f
JA
220static int endian_check(void)
221{
222 union {
223 uint8_t c[8];
224 uint64_t v;
225 } u;
226 int le = 0, be = 0;
227
228 u.v = 0x12;
229 if (u.c[7] == 0x12)
230 be = 1;
231 else if (u.c[0] == 0x12)
232 le = 1;
233
234#if defined(CONFIG_LITTLE_ENDIAN)
235 if (be)
236 return 1;
237#elif defined(CONFIG_BIG_ENDIAN)
238 if (le)
239 return 1;
240#else
241 return 1;
242#endif
243
244 if (!le && !be)
245 return 1;
246
247 return 0;
248}
249
250int initialize_fio(char *envp[])
251{
252 long ps;
253
254 if (endian_check()) {
255 log_err("fio: endianness settings appear wrong.\n");
256 log_err("fio: please report this to fio@vger.kernel.org\n");
257 return 1;
258 }
259
260#if !defined(CONFIG_GETTIMEOFDAY) && !defined(CONFIG_CLOCK_GETTIME)
261#error "No available clock source!"
262#endif
263
264 arch_init(envp);
265
266 sinit();
267
268 /*
269 * We need locale for number printing, if it isn't set then just
270 * go with the US format.
271 */
272 if (!getenv("LC_NUMERIC"))
273 setlocale(LC_NUMERIC, "en_US");
274
275 ps = sysconf(_SC_PAGESIZE);
276 if (ps < 0) {
277 log_err("Failed to get page size\n");
278 return 1;
279 }
280
281 page_size = ps;
282 page_mask = ps - 1;
2e1df07d 283
a569b45f
JA
284 fio_keywords_init();
285 return 0;
286}