blob: dd704647932a0ad7f9b1cf22a3860e8ee758b62d [file] [log] [blame]
Jens Axboeebac4652005-12-08 15:25:21 +01001#ifndef FIO_OS_H
2#define FIO_OS_H
3
Jens Axboea14ca442009-12-20 22:24:10 +01004#include <sys/types.h>
Bruce Cran203913e2011-10-18 12:20:56 +02005#include <sys/socket.h>
Bruce Cran93bcfd22012-02-20 20:18:19 +01006#include <fcntl.h>
Bruce Cran03e20d62011-01-02 20:14:54 +01007#include <pthread.h>
Jens Axboea14ca442009-12-20 22:24:10 +01008#include <unistd.h>
Bruce Cranecc314b2011-01-04 10:59:30 +01009#include <stdlib.h>
Jens Axboea14ca442009-12-20 22:24:10 +010010
Jens Axboecca84642011-10-07 12:47:57 +020011enum {
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,
Aaron Carrollec5c6b12012-11-21 10:39:00 +010020 os_android,
Jens Axboecca84642011-10-07 12:47:57 +020021
22 os_nr,
23};
24
Aaron Carrollec5c6b12012-11-21 10:39:00 +010025#if defined(__ANDROID__)
26#include "os-android.h"
27#elif defined(__linux__)
Jens Axboeebac4652005-12-08 15:25:21 +010028#include "os-linux.h"
29#elif defined(__FreeBSD__)
30#include "os-freebsd.h"
YAMAMOTO Takashi74524402010-05-12 15:06:46 +020031#elif defined(__NetBSD__)
32#include "os-netbsd.h"
Jens Axboe2c0ecd22006-06-08 13:25:41 +020033#elif defined(__sun__)
34#include "os-solaris.h"
Jens Axboe2afd8262009-12-14 23:08:42 +010035#elif defined(__APPLE__)
36#include "os-mac.h"
Cigy Cyriacbf2e8212010-08-10 19:51:11 -040037#elif defined(_AIX)
38#include "os-aix.h"
Jens Axboec00a2282011-07-08 20:56:06 +020039#elif defined(__hpux)
40#include "os-hpux.h"
Bruce Cran93bcfd22012-02-20 20:18:19 +010041#elif defined(WIN32)
Bruce Cran03e20d62011-01-02 20:14:54 +010042#include "os-windows.h"
Jens Axboeebac4652005-12-08 15:25:21 +010043#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>
Jens Axboee97c1442011-09-21 09:38:01 +020053#ifndef FIO_OS_HAVE_AIOCB_TYPEDEF
54typedef struct aiocb os_aiocb_t;
55#endif
Jens Axboeebac4652005-12-08 15:25:21 +010056#endif
57
58#ifdef FIO_HAVE_SGIO
59#include <linux/fs.h>
60#include <scsi/sg.h>
61#endif
62
Jens Axboe5921e802008-05-30 15:02:38 +020063#ifndef FIO_HAVE_STRSEP
Jens Axboe00fb3c82008-05-30 22:17:45 +020064#include "../lib/strsep.h"
Jens Axboe5921e802008-05-30 15:02:38 +020065#endif
66
Jens Axboe8e239ca2010-08-11 10:29:12 -040067#ifdef MSG_DONTWAIT
68#define OS_MSG_DONTWAIT MSG_DONTWAIT
69#endif
70
Jens Axboeebac4652005-12-08 15:25:21 +010071#ifndef FIO_HAVE_FADVISE
Aaron Carrollec5c6b12012-11-21 10:39:00 +010072static 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}
Jens Axboeebac4652005-12-08 15:25:21 +010080
Shawn Lewis4d8947d2007-07-25 07:51:58 +020081#ifndef POSIX_FADV_DONTNEED
Jens Axboeebac4652005-12-08 15:25:21 +010082#define POSIX_FADV_DONTNEED (0)
83#define POSIX_FADV_SEQUENTIAL (0)
84#define POSIX_FADV_RANDOM (0)
Shawn Lewis4d8947d2007-07-25 07:51:58 +020085#endif
Jens Axboeebac4652005-12-08 15:25:21 +010086#endif /* FIO_HAVE_FADVISE */
87
88#ifndef FIO_HAVE_CPU_AFFINITY
Jens Axboee8462bd2009-07-06 12:59:04 +020089#define fio_setaffinity(pid, mask) (0)
Jens Axboebe4ecfd2008-12-08 14:10:52 +010090#define fio_getaffinity(pid, mask) do { } while (0)
91#define fio_cpu_clear(mask, cpu) do { } while (0)
Jens Axboe85daf2c2009-01-05 09:40:13 +010092#define fio_cpuset_exit(mask) (-1)
YAMAMOTO Takashi74524402010-05-12 15:06:46 +020093typedef unsigned long os_cpu_mask_t;
Jens Axboeebac4652005-12-08 15:25:21 +010094#endif
95
96#ifndef FIO_HAVE_IOPRIO
97#define ioprio_set(which, who, prio) (0)
98#endif
99
Jens Axboe2c0ecd22006-06-08 13:25:41 +0200100#ifndef FIO_HAVE_ODIRECT
Jens Axboe7d424762006-06-08 13:26:31 +0200101#define OS_O_DIRECT 0
102#else
103#define OS_O_DIRECT O_DIRECT
Jens Axboe2c0ecd22006-06-08 13:25:41 +0200104#endif
105
Jens Axboe74b025b2006-12-19 15:18:14 +0100106#ifndef FIO_HAVE_HUGETLB
107#define SHM_HUGETLB 0
Jens Axboed6dc02f2012-11-20 13:39:59 +0100108#define MAP_HUGETLB 0
Shawn Lewis4d8947d2007-07-25 07:51:58 +0200109#ifndef FIO_HUGE_PAGE
Jens Axboe74b025b2006-12-19 15:18:14 +0100110#define FIO_HUGE_PAGE 0
Shawn Lewis4d8947d2007-07-25 07:51:58 +0200111#endif
Jens Axboe74b025b2006-12-19 15:18:14 +0100112#else
Jens Axboecb25df62007-03-23 08:23:30 +0100113#ifndef FIO_HUGE_PAGE
Jens Axboeee0e0a72007-03-19 10:50:47 +0100114#define FIO_HUGE_PAGE 4194304
Jens Axboe74b025b2006-12-19 15:18:14 +0100115#endif
Jens Axboecb25df62007-03-23 08:23:30 +0100116#endif
Jens Axboe74b025b2006-12-19 15:18:14 +0100117
Jens Axboe39b93562012-11-27 08:27:50 +0100118#ifndef FIO_HAVE_MMAP_HUGE
119#define MAP_HUGETLB 0
120#endif
121
Jens Axboe5921e802008-05-30 15:02:38 +0200122#ifndef FIO_O_NOATIME
123#define FIO_O_NOATIME 0
124#endif
125
Jens Axboedc873b62008-06-04 20:13:04 +0200126#ifndef OS_RAND_MAX
127#define OS_RAND_MAX RAND_MAX
128#endif
129
Bruce Cranecc314b2011-01-04 10:59:30 +0100130#ifdef FIO_HAVE_CLOCK_MONOTONIC
131#define FIO_TIMER_CLOCK CLOCK_MONOTONIC
132#else
133#define FIO_TIMER_CLOCK CLOCK_REALTIME
134#endif
135
Jens Axboe07e5b262007-04-02 14:46:07 +0200136#ifndef FIO_HAVE_RAWBIND
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200137#define fio_lookup_raw(dev, majdev, mindev) 1
Jens Axboe07e5b262007-04-02 14:46:07 +0200138#endif
139
Jens Axboe58483fa2011-01-19 11:09:58 -0700140#ifndef FIO_PREFERRED_ENGINE
141#define FIO_PREFERRED_ENGINE "sync"
142#endif
143
Bruce Cranb9fd7882012-02-20 17:01:46 +0000144#ifndef FIO_OS_PATH_SEPARATOR
145#define FIO_OS_PATH_SEPARATOR "/"
146#endif
147
Bruce Cran16de1bf2012-02-20 17:07:32 +0000148#ifndef FIO_PREFERRED_CLOCK_SOURCE
149#define FIO_PREFERRED_CLOCK_SOURCE CS_CGETTIME
150#endif
151
Jens Axboefca70352011-07-06 20:12:54 +0200152#ifndef FIO_MAX_JOBS
153#define FIO_MAX_JOBS 2048
154#endif
155
Jens Axboe5ba13ea2011-10-04 23:50:28 +0200156#ifndef FIO_OS_HAVE_SOCKLEN_T
157typedef socklen_t fio_socklen_t;
158#endif
159
Saurabh De45054cb2012-10-09 14:46:24 -0600160#ifndef FIO_OS_HAS_CTIME_R
161#define os_ctime_r(x, y, z) ctime_r((x), (y))
162#endif
163
Jens Axboe901ebe12011-10-04 23:31:00 +0200164#ifdef FIO_USE_GENERIC_SWAP
Jens Axboe9677bec2011-10-04 16:02:51 +0200165static inline uint16_t fio_swap16(uint16_t val)
Jens Axboe232f9b72011-10-04 14:45:20 +0200166{
167 return (val << 8) | (val >> 8);
168}
169
Jens Axboe901ebe12011-10-04 23:31:00 +0200170static inline uint32_t fio_swap32(uint32_t val)
Jens Axboe232f9b72011-10-04 14:45:20 +0200171{
172 val = ((val & 0xff00ff00UL) >> 8) | ((val & 0x00ff00ffUL) << 8);
173
174 return (val >> 16) | (val << 16);
175}
176
Jens Axboe901ebe12011-10-04 23:31:00 +0200177static inline uint64_t fio_swap64(uint64_t val)
Jens Axboe232f9b72011-10-04 14:45:20 +0200178{
179 val = ((val & 0xff00ff00ff00ff00ULL) >> 8) |
180 ((val & 0x00ff00ff00ff00ffULL) << 8);
181 val = ((val & 0xffff0000ffff0000ULL) >> 16) |
182 ((val & 0x0000ffff0000ffffULL) << 16);
183
184 return (val >> 32) | (val << 32);
185}
186#endif
187
Aaron Carrollec5c6b12012-11-21 10:39:00 +0100188#ifndef FIO_HAVE_BYTEORDER_FUNCS
Jens Axboe81110922011-10-05 12:40:49 +0200189#ifdef FIO_LITTLE_ENDIAN
190#define __le16_to_cpu(x) (x)
191#define __le32_to_cpu(x) (x)
192#define __le64_to_cpu(x) (x)
193#define __cpu_to_le16(x) (x)
194#define __cpu_to_le32(x) (x)
195#define __cpu_to_le64(x) (x)
196#else
197#define __le16_to_cpu(x) fio_swap16(x)
198#define __le32_to_cpu(x) fio_swap32(x)
199#define __le64_to_cpu(x) fio_swap64(x)
200#define __cpu_to_le16(x) fio_swap16(x)
201#define __cpu_to_le32(x) fio_swap32(x)
202#define __cpu_to_le64(x) fio_swap64(x)
203#endif
Aaron Carrollec5c6b12012-11-21 10:39:00 +0100204#endif /* FIO_HAVE_BYTEORDER_FUNCS */
Jens Axboe81110922011-10-05 12:40:49 +0200205
206#define le16_to_cpu(val) ({ \
207 uint16_t *__val = &(val); \
208 __le16_to_cpu(*__val); \
209})
210#define le32_to_cpu(val) ({ \
211 uint32_t *__val = &(val); \
212 __le32_to_cpu(*__val); \
213})
214#define le64_to_cpu(val) ({ \
215 uint64_t *__val = &(val); \
216 __le64_to_cpu(*__val); \
217})
218#define cpu_to_le16(val) ({ \
219 uint16_t *__val = &(val); \
220 __cpu_to_le16(*__val); \
221})
222#define cpu_to_le32(val) ({ \
223 uint32_t *__val = &(val); \
224 __cpu_to_le32(*__val); \
225})
226#define cpu_to_le64(val) ({ \
227 uint64_t *__val = &(val); \
228 __cpu_to_le64(*__val); \
229})
230
Jens Axboe5e62c222007-05-22 13:27:30 +0200231#ifndef FIO_HAVE_BLKTRACE
232static inline int is_blktrace(const char *fname)
233{
234 return 0;
235}
Jens Axboe5921e802008-05-30 15:02:38 +0200236struct thread_data;
Jens Axboe5e62c222007-05-22 13:27:30 +0200237static inline int load_blktrace(struct thread_data *td, const char *fname)
238{
239 return 1;
240}
241#endif
242
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200243#define FIO_DEF_CL_SIZE 128
244
245static inline int os_cache_line_size(void)
246{
247#ifdef FIO_HAVE_CL_SIZE
248 int ret = arch_cache_line_size();
249
250 if (ret <= 0)
251 return FIO_DEF_CL_SIZE;
252
253 return ret;
254#else
255 return FIO_DEF_CL_SIZE;
256#endif
257}
258
Jens Axboe792d5512009-09-22 17:12:29 +0200259#ifdef FIO_USE_GENERIC_BDEV_SIZE
Bruce Cranecc314b2011-01-04 10:59:30 +0100260static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
Jens Axboe792d5512009-09-22 17:12:29 +0200261{
Jens Axboe3b2e1462009-12-15 08:58:10 +0100262 off_t end;
Jens Axboe792d5512009-09-22 17:12:29 +0200263
Jens Axboe3b2e1462009-12-15 08:58:10 +0100264 *bytes = 0;
265
Bruce Cranecc314b2011-01-04 10:59:30 +0100266 end = lseek(f->fd, 0, SEEK_END);
Jens Axboe792d5512009-09-22 17:12:29 +0200267 if (end < 0)
268 return errno;
269
270 *bytes = end;
271 return 0;
272}
273#endif
274
Jens Axboe53531372009-12-15 10:28:37 +0100275#ifdef FIO_USE_GENERIC_RAND
276typedef unsigned int os_random_state_t;
277
278static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
279{
280 srand(seed);
281}
282
283static inline long os_random_long(os_random_state_t *rs)
284{
285 long val;
286
287 val = rand_r(rs);
288 return val;
289}
290#endif
291
Bruce Cran93bcfd22012-02-20 20:18:19 +0100292#ifdef FIO_USE_GENERIC_INIT_RANDOM_STATE
293extern void td_fill_rand_seeds(struct thread_data *td);
294/*
295 * Initialize the various random states we need (random io, block size ranges,
296 * read/write mix, etc).
297 */
298static inline int init_random_state(struct thread_data *td, unsigned long *rand_seeds, int size)
299{
300 int fd;
301
302 fd = open("/dev/urandom", O_RDONLY);
303 if (fd == -1) {
304 return 1;
305 }
306
307 if (read(fd, rand_seeds, size) < size) {
308 close(fd);
309 return 1;
310 }
311
312 close(fd);
313 td_fill_rand_seeds(td);
314 return 0;
315}
316#endif
317
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200318#ifndef FIO_HAVE_FS_STAT
319static inline unsigned long long get_fs_size(const char *path)
320{
321 return 0;
322}
323#endif
324
Jens Axboec00a2282011-07-08 20:56:06 +0200325#ifndef FIO_HAVE_CPU_ONLINE_SYSCONF
326static inline unsigned int cpus_online(void)
327{
328 return sysconf(_SC_NPROCESSORS_ONLN);
329}
330#endif
331
Jens Axboe47f767c2011-07-12 21:17:49 +0200332#ifndef FIO_HAVE_GETTID
333static inline int gettid(void)
334{
335 return getpid();
336}
337#endif
338
Jens Axboeebac4652005-12-08 15:25:21 +0100339#endif