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