blob: f680be84c66acb59bf94960b62f8b074ae3187e5 [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 Axboee61ca212012-02-24 12:51:31 +010028#include <stdint.h>
29#include <locale.h>
30
Jens Axboe2e1df072012-02-09 11:15:02 +010031#include "fio.h"
Jens Axboee61ca212012-02-24 12:51:31 +010032#include "smalloc.h"
33#include "os/os.h"
Jens Axboe2e1df072012-02-09 11:15:02 +010034
Jens Axboea3efc912012-02-09 11:25:24 +010035/*
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
Jens Axboe61b29c22012-04-05 08:58:31 -060044uintptr_t page_mask;
45uintptr_t page_size;
Jens Axboee61ca212012-02-24 12:51:31 +010046
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",
55 "Solaris",
56 "Windows"
57};
58
59static const char *fio_arch_strings[arch_nr] = {
60 "Invalid",
61 "x86-64",
62 "x86",
63 "ppc",
64 "ia64",
65 "s390",
66 "alpha",
67 "sparc",
68 "sparc64",
69 "arm",
70 "sh",
71 "hppa",
72 "generic"
73};
74
75static void reset_io_counters(struct thread_data *td)
76{
Shaohua Li6eaf09d2012-09-14 08:49:43 +020077 int ddir;
78 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++) {
79 td->stat_io_bytes[ddir] = 0;
80 td->this_io_bytes[ddir] = 0;
81 td->stat_io_blocks[ddir] = 0;
82 td->this_io_blocks[ddir] = 0;
83 td->rate_bytes[ddir] = 0;
84 td->rate_blocks[ddir] = 0;
85 }
Jens Axboe2e1df072012-02-09 11:15:02 +010086 td->zone_bytes = 0;
Jens Axboe2e1df072012-02-09 11:15:02 +010087
88 td->last_was_sync = 0;
89
90 /*
91 * reset file done count if we are to start over
92 */
93 if (td->o.time_based || td->o.loops)
94 td->nr_done_files = 0;
95}
96
97void clear_io_state(struct thread_data *td)
98{
99 struct fio_file *f;
100 unsigned int i;
101
102 reset_io_counters(td);
103
104 close_files(td);
105 for_each_file(td, f, i)
106 fio_file_clear_done(f);
107
108 /*
109 * Set the same seed to get repeatable runs
110 */
111 td_fill_rand_seeds(td);
112}
113
114void reset_all_stats(struct thread_data *td)
115{
116 struct timeval tv;
117 int i;
118
119 reset_io_counters(td);
120
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200121 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboe2e1df072012-02-09 11:15:02 +0100122 td->io_bytes[i] = 0;
123 td->io_blocks[i] = 0;
124 td->io_issues[i] = 0;
125 td->ts.total_io_u[i] = 0;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200126 td->ts.runtime[i] = 0;
Jens Axboe2e1df072012-02-09 11:15:02 +0100127 }
128
129 fio_gettime(&tv, NULL);
Jens Axboe2e1df072012-02-09 11:15:02 +0100130 memcpy(&td->epoch, &tv, sizeof(tv));
131 memcpy(&td->start, &tv, sizeof(tv));
132}
133
134void reset_fio_state(void)
135{
136 groupid = 0;
137 thread_number = 0;
Jens Axboe2e1df072012-02-09 11:15:02 +0100138 done_secs = 0;
139}
140
141const char *fio_get_os_string(int nr)
142{
143 if (nr < os_nr)
144 return fio_os_strings[nr];
145
146 return NULL;
147}
148
149const char *fio_get_arch_string(int nr)
150{
151 if (nr < arch_nr)
152 return fio_arch_strings[nr];
153
154 return NULL;
155}
156
157void td_set_runstate(struct thread_data *td, int runstate)
158{
159 if (td->runstate == runstate)
160 return;
161
162 dprint(FD_PROCESS, "pid=%d: runstate %d -> %d\n", (int) td->pid,
163 td->runstate, runstate);
164 td->runstate = runstate;
165}
166
167void fio_terminate_threads(int group_id)
168{
169 struct thread_data *td;
170 int i;
171
172 dprint(FD_PROCESS, "terminate group_id=%d\n", group_id);
173
174 for_each_td(td, i) {
175 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
176 dprint(FD_PROCESS, "setting terminate on %s/%d\n",
177 td->o.name, (int) td->pid);
178 td->terminate = 1;
179 td->o.start_delay = 0;
180
181 /*
182 * if the thread is running, just let it exit
183 */
184 if (!td->pid)
185 continue;
186 else if (td->runstate < TD_RAMP)
187 kill(td->pid, SIGTERM);
188 else {
189 struct ioengine_ops *ops = td->io_ops;
190
191 if (ops && (ops->flags & FIO_SIGTERM))
192 kill(td->pid, SIGTERM);
193 }
194 }
195 }
196}
197
Jens Axboee61ca212012-02-24 12:51:31 +0100198static int endian_check(void)
199{
200 union {
201 uint8_t c[8];
202 uint64_t v;
203 } u;
204 int le = 0, be = 0;
Jens Axboe2e1df072012-02-09 11:15:02 +0100205
Jens Axboee61ca212012-02-24 12:51:31 +0100206 u.v = 0x12;
207 if (u.c[7] == 0x12)
208 be = 1;
209 else if (u.c[0] == 0x12)
210 le = 1;
211
212#if defined(FIO_LITTLE_ENDIAN)
213 if (be)
214 return 1;
215#elif defined(FIO_BIG_ENDIAN)
216 if (le)
217 return 1;
218#else
219 return 1;
220#endif
221
222 if (!le && !be)
223 return 1;
224
225 return 0;
226}
227
228int initialize_fio(char *envp[])
229{
230 long ps;
231
232 if (endian_check()) {
233 log_err("fio: endianness settings appear wrong.\n");
234 log_err("fio: please report this to fio@vger.kernel.org\n");
235 return 1;
236 }
237
238 arch_init(envp);
239
240 sinit();
241
242 /*
243 * We need locale for number printing, if it isn't set then just
244 * go with the US format.
245 */
246 if (!getenv("LC_NUMERIC"))
247 setlocale(LC_NUMERIC, "en_US");
248
249 ps = sysconf(_SC_PAGESIZE);
250 if (ps < 0) {
251 log_err("Failed to get page size\n");
252 return 1;
253 }
254
255 page_size = ps;
256 page_mask = ps - 1;
257
258 fio_keywords_init();
259 return 0;
260}