Add OpenBSD support
[fio.git] / os / os.h
CommitLineData
ebac4655
JA
1#ifndef FIO_OS_H
2#define FIO_OS_H
3
a14ca44a 4#include <sys/types.h>
203913ea 5#include <sys/socket.h>
93bcfd20 6#include <fcntl.h>
03e20d68 7#include <pthread.h>
a14ca44a 8#include <unistd.h>
ecc314ba 9#include <stdlib.h>
a14ca44a 10
836fcc0f
JA
11#include "../arch/arch.h"
12
cca84643
JA
13enum {
14 os_linux = 1,
15 os_aix,
16 os_freebsd,
17 os_hpux,
18 os_mac,
19 os_netbsd,
3cd4c66f 20 os_openbsd,
cca84643
JA
21 os_solaris,
22 os_windows,
ec5c6b12 23 os_android,
cca84643
JA
24
25 os_nr,
26};
27
ec5c6b12
AC
28#if defined(__ANDROID__)
29#include "os-android.h"
30#elif defined(__linux__)
ebac4655
JA
31#include "os-linux.h"
32#elif defined(__FreeBSD__)
33#include "os-freebsd.h"
3cd4c66f
J
34#elif defined(__OpenBSD__)
35#include "os-openbsd.h"
7452440e
YT
36#elif defined(__NetBSD__)
37#include "os-netbsd.h"
2c0ecd28
JA
38#elif defined(__sun__)
39#include "os-solaris.h"
2afd826b
JA
40#elif defined(__APPLE__)
41#include "os-mac.h"
bf2e821a
CC
42#elif defined(_AIX)
43#include "os-aix.h"
c00a2289
JA
44#elif defined(__hpux)
45#include "os-hpux.h"
93bcfd20 46#elif defined(WIN32)
03e20d68 47#include "os-windows.h"
ebac4655
JA
48#else
49#error "unsupported os"
50#endif
51
67bf9823 52#ifdef CONFIG_POSIXAIO
ebac4655 53#include <aio.h>
e97c1442
JA
54#ifndef FIO_OS_HAVE_AIOCB_TYPEDEF
55typedef struct aiocb os_aiocb_t;
56#endif
ebac4655
JA
57#endif
58
59#ifdef FIO_HAVE_SGIO
60#include <linux/fs.h>
61#include <scsi/sg.h>
62#endif
63
4feafb1e 64#ifndef CONFIG_STRSEP
00fb3c8d 65#include "../lib/strsep.h"
5921e80c
JA
66#endif
67
8e239cae
JA
68#ifdef MSG_DONTWAIT
69#define OS_MSG_DONTWAIT MSG_DONTWAIT
70#endif
71
4d8947de 72#ifndef POSIX_FADV_DONTNEED
ebac4655
JA
73#define POSIX_FADV_DONTNEED (0)
74#define POSIX_FADV_SEQUENTIAL (0)
75#define POSIX_FADV_RANDOM (0)
4d8947de 76#endif
ebac4655
JA
77
78#ifndef FIO_HAVE_CPU_AFFINITY
e8462bd8 79#define fio_setaffinity(pid, mask) (0)
be4ecfdf
JA
80#define fio_getaffinity(pid, mask) do { } while (0)
81#define fio_cpu_clear(mask, cpu) do { } while (0)
85daf2c1 82#define fio_cpuset_exit(mask) (-1)
7452440e 83typedef unsigned long os_cpu_mask_t;
ebac4655
JA
84#endif
85
86#ifndef FIO_HAVE_IOPRIO
28727df7 87#define ioprio_set(which, who, prioclass, prio) (0)
ebac4655
JA
88#endif
89
2c0ecd28 90#ifndef FIO_HAVE_ODIRECT
7d424763
JA
91#define OS_O_DIRECT 0
92#else
93#define OS_O_DIRECT O_DIRECT
2c0ecd28
JA
94#endif
95
d01612f3
CM
96#ifdef OS_O_ATOMIC
97#define FIO_O_ATOMIC OS_O_ATOMIC
98#else
99#define FIO_O_ATOMIC 0
100#endif
101
74b025b0
JA
102#ifndef FIO_HAVE_HUGETLB
103#define SHM_HUGETLB 0
d6dc02fb 104#define MAP_HUGETLB 0
4d8947de 105#ifndef FIO_HUGE_PAGE
74b025b0 106#define FIO_HUGE_PAGE 0
4d8947de 107#endif
74b025b0 108#else
cb25df61 109#ifndef FIO_HUGE_PAGE
ee0e0a71 110#define FIO_HUGE_PAGE 4194304
74b025b0 111#endif
cb25df61 112#endif
74b025b0 113
39b93568
JA
114#ifndef FIO_HAVE_MMAP_HUGE
115#define MAP_HUGETLB 0
116#endif
117
5921e80c
JA
118#ifndef FIO_O_NOATIME
119#define FIO_O_NOATIME 0
120#endif
121
dc873b6f
JA
122#ifndef OS_RAND_MAX
123#define OS_RAND_MAX RAND_MAX
124#endif
125
07e5b264 126#ifndef FIO_HAVE_RAWBIND
8cc7afa9 127#define fio_lookup_raw(dev, majdev, mindev) 1
07e5b264
JA
128#endif
129
58483fa4
JA
130#ifndef FIO_PREFERRED_ENGINE
131#define FIO_PREFERRED_ENGINE "sync"
132#endif
133
b9fd788f
BC
134#ifndef FIO_OS_PATH_SEPARATOR
135#define FIO_OS_PATH_SEPARATOR "/"
136#endif
137
16de1bf9 138#ifndef FIO_PREFERRED_CLOCK_SOURCE
86e53416 139#ifdef CONFIG_CLOCK_GETTIME
16de1bf9 140#define FIO_PREFERRED_CLOCK_SOURCE CS_CGETTIME
86e53416
BC
141#else
142#define FIO_PREFERRED_CLOCK_SOURCE CS_GTOD
143#endif
16de1bf9
BC
144#endif
145
fca70358
JA
146#ifndef FIO_MAX_JOBS
147#define FIO_MAX_JOBS 2048
148#endif
149
67bf9823
JA
150#ifndef CONFIG_SOCKLEN_T
151typedef unsigned int socklen_t;
5ba13ea6
JA
152#endif
153
45054cbe 154#ifndef FIO_OS_HAS_CTIME_R
1f81991e 155#define os_ctime_r(x, y, z) (void) ctime_r((x), (y))
45054cbe
SD
156#endif
157
901ebe18 158#ifdef FIO_USE_GENERIC_SWAP
9677bec3 159static inline uint16_t fio_swap16(uint16_t val)
232f9b73
JA
160{
161 return (val << 8) | (val >> 8);
162}
163
901ebe18 164static inline uint32_t fio_swap32(uint32_t val)
232f9b73
JA
165{
166 val = ((val & 0xff00ff00UL) >> 8) | ((val & 0x00ff00ffUL) << 8);
167
168 return (val >> 16) | (val << 16);
169}
170
901ebe18 171static inline uint64_t fio_swap64(uint64_t val)
232f9b73
JA
172{
173 val = ((val & 0xff00ff00ff00ff00ULL) >> 8) |
174 ((val & 0x00ff00ff00ff00ffULL) << 8);
175 val = ((val & 0xffff0000ffff0000ULL) >> 16) |
176 ((val & 0x0000ffff0000ffffULL) << 16);
177
178 return (val >> 32) | (val << 32);
179}
180#endif
181
ec5c6b12 182#ifndef FIO_HAVE_BYTEORDER_FUNCS
0dcebdf4 183#ifdef CONFIG_LITTLE_ENDIAN
8111092f
JA
184#define __le16_to_cpu(x) (x)
185#define __le32_to_cpu(x) (x)
186#define __le64_to_cpu(x) (x)
187#define __cpu_to_le16(x) (x)
188#define __cpu_to_le32(x) (x)
189#define __cpu_to_le64(x) (x)
190#else
191#define __le16_to_cpu(x) fio_swap16(x)
192#define __le32_to_cpu(x) fio_swap32(x)
193#define __le64_to_cpu(x) fio_swap64(x)
194#define __cpu_to_le16(x) fio_swap16(x)
195#define __cpu_to_le32(x) fio_swap32(x)
196#define __cpu_to_le64(x) fio_swap64(x)
197#endif
ec5c6b12 198#endif /* FIO_HAVE_BYTEORDER_FUNCS */
8111092f
JA
199
200#define le16_to_cpu(val) ({ \
201 uint16_t *__val = &(val); \
202 __le16_to_cpu(*__val); \
203})
204#define le32_to_cpu(val) ({ \
205 uint32_t *__val = &(val); \
206 __le32_to_cpu(*__val); \
207})
208#define le64_to_cpu(val) ({ \
209 uint64_t *__val = &(val); \
210 __le64_to_cpu(*__val); \
211})
212#define cpu_to_le16(val) ({ \
213 uint16_t *__val = &(val); \
214 __cpu_to_le16(*__val); \
215})
216#define cpu_to_le32(val) ({ \
217 uint32_t *__val = &(val); \
218 __cpu_to_le32(*__val); \
219})
220#define cpu_to_le64(val) ({ \
221 uint64_t *__val = &(val); \
222 __cpu_to_le64(*__val); \
223})
224
5e62c22a 225#ifndef FIO_HAVE_BLKTRACE
d95b34a6 226static inline int is_blktrace(const char *fname, int *need_swap)
5e62c22a
JA
227{
228 return 0;
229}
5921e80c 230struct thread_data;
d95b34a6
JA
231static inline int load_blktrace(struct thread_data *td, const char *fname,
232 int need_swap)
5e62c22a
JA
233{
234 return 1;
235}
236#endif
237
eb7ccf38
JA
238#define FIO_DEF_CL_SIZE 128
239
240static inline int os_cache_line_size(void)
241{
242#ifdef FIO_HAVE_CL_SIZE
243 int ret = arch_cache_line_size();
244
245 if (ret <= 0)
246 return FIO_DEF_CL_SIZE;
247
248 return ret;
249#else
250 return FIO_DEF_CL_SIZE;
251#endif
252}
253
792d5517 254#ifdef FIO_USE_GENERIC_BDEV_SIZE
ecc314ba 255static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
792d5517 256{
3b2e1464 257 off_t end;
792d5517 258
3b2e1464
JA
259 *bytes = 0;
260
ecc314ba 261 end = lseek(f->fd, 0, SEEK_END);
792d5517
JA
262 if (end < 0)
263 return errno;
264
265 *bytes = end;
266 return 0;
267}
268#endif
269
53531370
JA
270#ifdef FIO_USE_GENERIC_RAND
271typedef unsigned int os_random_state_t;
272
273static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
274{
275 srand(seed);
276}
277
278static inline long os_random_long(os_random_state_t *rs)
279{
280 long val;
281
282 val = rand_r(rs);
283 return val;
284}
285#endif
286
93bcfd20
BC
287#ifdef FIO_USE_GENERIC_INIT_RANDOM_STATE
288extern void td_fill_rand_seeds(struct thread_data *td);
289/*
290 * Initialize the various random states we need (random io, block size ranges,
291 * read/write mix, etc).
292 */
293static inline int init_random_state(struct thread_data *td, unsigned long *rand_seeds, int size)
294{
295 int fd;
296
297 fd = open("/dev/urandom", O_RDONLY);
298 if (fd == -1) {
299 return 1;
300 }
301
302 if (read(fd, rand_seeds, size) < size) {
303 close(fd);
304 return 1;
305 }
306
307 close(fd);
308 td_fill_rand_seeds(td);
309 return 0;
310}
311#endif
312
2e3bd4c2
JA
313#ifndef FIO_HAVE_FS_STAT
314static inline unsigned long long get_fs_size(const char *path)
315{
316 return 0;
317}
318#endif
319
c00a2289
JA
320#ifndef FIO_HAVE_CPU_ONLINE_SYSCONF
321static inline unsigned int cpus_online(void)
322{
323 return sysconf(_SC_NPROCESSORS_ONLN);
324}
325#endif
326
47f767c1
JA
327#ifndef FIO_HAVE_GETTID
328static inline int gettid(void)
329{
330 return getpid();
331}
332#endif
333
ebac4655 334#endif