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