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