blob: cbb476fe532a63375d7bcea6cc9d99f978194381 [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 Cran03e20d62011-01-02 20:14:54 +01006#include <pthread.h>
Jens Axboea14ca442009-12-20 22:24:10 +01007#include <unistd.h>
Bruce Cranecc314b2011-01-04 10:59:30 +01008#include <stdlib.h>
Jens Axboea14ca442009-12-20 22:24:10 +01009
Jens Axboecca84642011-10-07 12:47:57 +020010enum {
11 os_linux = 1,
12 os_aix,
13 os_freebsd,
14 os_hpux,
15 os_mac,
16 os_netbsd,
17 os_solaris,
18 os_windows,
19
20 os_nr,
21};
22
Jens Axboeebac4652005-12-08 15:25:21 +010023#if defined(__linux__)
24#include "os-linux.h"
25#elif defined(__FreeBSD__)
26#include "os-freebsd.h"
YAMAMOTO Takashi74524402010-05-12 15:06:46 +020027#elif defined(__NetBSD__)
28#include "os-netbsd.h"
Jens Axboe2c0ecd22006-06-08 13:25:41 +020029#elif defined(__sun__)
30#include "os-solaris.h"
Jens Axboe2afd8262009-12-14 23:08:42 +010031#elif defined(__APPLE__)
32#include "os-mac.h"
Cigy Cyriacbf2e8212010-08-10 19:51:11 -040033#elif defined(_AIX)
34#include "os-aix.h"
Jens Axboec00a2282011-07-08 20:56:06 +020035#elif defined(__hpux)
36#include "os-hpux.h"
Bruce Cran03e20d62011-01-02 20:14:54 +010037#elif defined(__CYGWIN__)
38#include "os-windows.h"
Jens Axboeebac4652005-12-08 15:25:21 +010039#else
40#error "unsupported os"
41#endif
42
43#ifdef FIO_HAVE_LIBAIO
44#include <libaio.h>
45#endif
46
47#ifdef FIO_HAVE_POSIXAIO
48#include <aio.h>
Jens Axboee97c1442011-09-21 09:38:01 +020049#ifndef FIO_OS_HAVE_AIOCB_TYPEDEF
50typedef struct aiocb os_aiocb_t;
51#endif
Jens Axboeebac4652005-12-08 15:25:21 +010052#endif
53
54#ifdef FIO_HAVE_SGIO
55#include <linux/fs.h>
56#include <scsi/sg.h>
57#endif
58
Jens Axboe5921e802008-05-30 15:02:38 +020059#ifndef FIO_HAVE_STRSEP
Jens Axboe00fb3c82008-05-30 22:17:45 +020060#include "../lib/strsep.h"
Jens Axboe5921e802008-05-30 15:02:38 +020061#endif
62
Jens Axboe8e239ca2010-08-11 10:29:12 -040063#ifdef MSG_DONTWAIT
64#define OS_MSG_DONTWAIT MSG_DONTWAIT
65#endif
66
Jens Axboeebac4652005-12-08 15:25:21 +010067#ifndef FIO_HAVE_FADVISE
Bruce Cranecc314b2011-01-04 10:59:30 +010068#define posix_fadvise(fd, off, len, advice) (0)
Jens Axboeebac4652005-12-08 15:25:21 +010069
Shawn Lewis4d8947d2007-07-25 07:51:58 +020070#ifndef POSIX_FADV_DONTNEED
Jens Axboeebac4652005-12-08 15:25:21 +010071#define POSIX_FADV_DONTNEED (0)
72#define POSIX_FADV_SEQUENTIAL (0)
73#define POSIX_FADV_RANDOM (0)
Shawn Lewis4d8947d2007-07-25 07:51:58 +020074#endif
Jens Axboeebac4652005-12-08 15:25:21 +010075#endif /* FIO_HAVE_FADVISE */
76
77#ifndef FIO_HAVE_CPU_AFFINITY
Jens Axboee8462bd2009-07-06 12:59:04 +020078#define fio_setaffinity(pid, mask) (0)
Jens Axboebe4ecfd2008-12-08 14:10:52 +010079#define fio_getaffinity(pid, mask) do { } while (0)
80#define fio_cpu_clear(mask, cpu) do { } while (0)
Jens Axboe85daf2c2009-01-05 09:40:13 +010081#define fio_cpuset_exit(mask) (-1)
YAMAMOTO Takashi74524402010-05-12 15:06:46 +020082typedef unsigned long os_cpu_mask_t;
Jens Axboeebac4652005-12-08 15:25:21 +010083#endif
84
85#ifndef FIO_HAVE_IOPRIO
86#define ioprio_set(which, who, prio) (0)
87#endif
88
Jens Axboe2c0ecd22006-06-08 13:25:41 +020089#ifndef FIO_HAVE_ODIRECT
Jens Axboe7d424762006-06-08 13:26:31 +020090#define OS_O_DIRECT 0
91#else
92#define OS_O_DIRECT O_DIRECT
Jens Axboe2c0ecd22006-06-08 13:25:41 +020093#endif
94
Jens Axboe74b025b2006-12-19 15:18:14 +010095#ifndef FIO_HAVE_HUGETLB
96#define SHM_HUGETLB 0
Shawn Lewis4d8947d2007-07-25 07:51:58 +020097#ifndef FIO_HUGE_PAGE
Jens Axboe74b025b2006-12-19 15:18:14 +010098#define FIO_HUGE_PAGE 0
Shawn Lewis4d8947d2007-07-25 07:51:58 +020099#endif
Jens Axboe74b025b2006-12-19 15:18:14 +0100100#else
Jens Axboecb25df62007-03-23 08:23:30 +0100101#ifndef FIO_HUGE_PAGE
Jens Axboeee0e0a72007-03-19 10:50:47 +0100102#define FIO_HUGE_PAGE 4194304
Jens Axboe74b025b2006-12-19 15:18:14 +0100103#endif
Jens Axboecb25df62007-03-23 08:23:30 +0100104#endif
Jens Axboe74b025b2006-12-19 15:18:14 +0100105
Jens Axboe5921e802008-05-30 15:02:38 +0200106#ifndef FIO_O_NOATIME
107#define FIO_O_NOATIME 0
108#endif
109
Jens Axboedc873b62008-06-04 20:13:04 +0200110#ifndef OS_RAND_MAX
111#define OS_RAND_MAX RAND_MAX
112#endif
113
Bruce Cranecc314b2011-01-04 10:59:30 +0100114#ifdef FIO_HAVE_CLOCK_MONOTONIC
115#define FIO_TIMER_CLOCK CLOCK_MONOTONIC
116#else
117#define FIO_TIMER_CLOCK CLOCK_REALTIME
118#endif
119
Jens Axboe07e5b262007-04-02 14:46:07 +0200120#ifndef FIO_HAVE_RAWBIND
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200121#define fio_lookup_raw(dev, majdev, mindev) 1
Jens Axboe07e5b262007-04-02 14:46:07 +0200122#endif
123
Jens Axboe58483fa2011-01-19 11:09:58 -0700124#ifndef FIO_PREFERRED_ENGINE
125#define FIO_PREFERRED_ENGINE "sync"
126#endif
127
Bruce Cranb9fd7882012-02-20 17:01:46 +0000128#ifndef FIO_OS_PATH_SEPARATOR
129#define FIO_OS_PATH_SEPARATOR "/"
130#endif
131
Jens Axboefca70352011-07-06 20:12:54 +0200132#ifndef FIO_MAX_JOBS
133#define FIO_MAX_JOBS 2048
134#endif
135
Jens Axboe5ba13ea2011-10-04 23:50:28 +0200136#ifndef FIO_OS_HAVE_SOCKLEN_T
137typedef socklen_t fio_socklen_t;
138#endif
139
Jens Axboe901ebe12011-10-04 23:31:00 +0200140#ifdef FIO_USE_GENERIC_SWAP
Jens Axboe9677bec2011-10-04 16:02:51 +0200141static inline uint16_t fio_swap16(uint16_t val)
Jens Axboe232f9b72011-10-04 14:45:20 +0200142{
143 return (val << 8) | (val >> 8);
144}
145
Jens Axboe901ebe12011-10-04 23:31:00 +0200146static inline uint32_t fio_swap32(uint32_t val)
Jens Axboe232f9b72011-10-04 14:45:20 +0200147{
148 val = ((val & 0xff00ff00UL) >> 8) | ((val & 0x00ff00ffUL) << 8);
149
150 return (val >> 16) | (val << 16);
151}
152
Jens Axboe901ebe12011-10-04 23:31:00 +0200153static inline uint64_t fio_swap64(uint64_t val)
Jens Axboe232f9b72011-10-04 14:45:20 +0200154{
155 val = ((val & 0xff00ff00ff00ff00ULL) >> 8) |
156 ((val & 0x00ff00ff00ff00ffULL) << 8);
157 val = ((val & 0xffff0000ffff0000ULL) >> 16) |
158 ((val & 0x0000ffff0000ffffULL) << 16);
159
160 return (val >> 32) | (val << 32);
161}
162#endif
163
Jens Axboe81110922011-10-05 12:40:49 +0200164#ifdef FIO_LITTLE_ENDIAN
165#define __le16_to_cpu(x) (x)
166#define __le32_to_cpu(x) (x)
167#define __le64_to_cpu(x) (x)
168#define __cpu_to_le16(x) (x)
169#define __cpu_to_le32(x) (x)
170#define __cpu_to_le64(x) (x)
171#else
172#define __le16_to_cpu(x) fio_swap16(x)
173#define __le32_to_cpu(x) fio_swap32(x)
174#define __le64_to_cpu(x) fio_swap64(x)
175#define __cpu_to_le16(x) fio_swap16(x)
176#define __cpu_to_le32(x) fio_swap32(x)
177#define __cpu_to_le64(x) fio_swap64(x)
178#endif
179
180#define le16_to_cpu(val) ({ \
181 uint16_t *__val = &(val); \
182 __le16_to_cpu(*__val); \
183})
184#define le32_to_cpu(val) ({ \
185 uint32_t *__val = &(val); \
186 __le32_to_cpu(*__val); \
187})
188#define le64_to_cpu(val) ({ \
189 uint64_t *__val = &(val); \
190 __le64_to_cpu(*__val); \
191})
192#define cpu_to_le16(val) ({ \
193 uint16_t *__val = &(val); \
194 __cpu_to_le16(*__val); \
195})
196#define cpu_to_le32(val) ({ \
197 uint32_t *__val = &(val); \
198 __cpu_to_le32(*__val); \
199})
200#define cpu_to_le64(val) ({ \
201 uint64_t *__val = &(val); \
202 __cpu_to_le64(*__val); \
203})
204
Jens Axboe5e62c222007-05-22 13:27:30 +0200205#ifndef FIO_HAVE_BLKTRACE
206static inline int is_blktrace(const char *fname)
207{
208 return 0;
209}
Jens Axboe5921e802008-05-30 15:02:38 +0200210struct thread_data;
Jens Axboe5e62c222007-05-22 13:27:30 +0200211static inline int load_blktrace(struct thread_data *td, const char *fname)
212{
213 return 1;
214}
215#endif
216
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200217#define FIO_DEF_CL_SIZE 128
218
219static inline int os_cache_line_size(void)
220{
221#ifdef FIO_HAVE_CL_SIZE
222 int ret = arch_cache_line_size();
223
224 if (ret <= 0)
225 return FIO_DEF_CL_SIZE;
226
227 return ret;
228#else
229 return FIO_DEF_CL_SIZE;
230#endif
231}
232
Jens Axboe792d5512009-09-22 17:12:29 +0200233#ifdef FIO_USE_GENERIC_BDEV_SIZE
Bruce Cranecc314b2011-01-04 10:59:30 +0100234static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
Jens Axboe792d5512009-09-22 17:12:29 +0200235{
Jens Axboe3b2e1462009-12-15 08:58:10 +0100236 off_t end;
Jens Axboe792d5512009-09-22 17:12:29 +0200237
Jens Axboe3b2e1462009-12-15 08:58:10 +0100238 *bytes = 0;
239
Bruce Cranecc314b2011-01-04 10:59:30 +0100240 end = lseek(f->fd, 0, SEEK_END);
Jens Axboe792d5512009-09-22 17:12:29 +0200241 if (end < 0)
242 return errno;
243
244 *bytes = end;
245 return 0;
246}
247#endif
248
Jens Axboe53531372009-12-15 10:28:37 +0100249#ifdef FIO_USE_GENERIC_RAND
250typedef unsigned int os_random_state_t;
251
252static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
253{
254 srand(seed);
255}
256
257static inline long os_random_long(os_random_state_t *rs)
258{
259 long val;
260
261 val = rand_r(rs);
262 return val;
263}
264#endif
265
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200266#ifndef FIO_HAVE_FS_STAT
267static inline unsigned long long get_fs_size(const char *path)
268{
269 return 0;
270}
271#endif
272
Jens Axboec00a2282011-07-08 20:56:06 +0200273#ifndef FIO_HAVE_CPU_ONLINE_SYSCONF
274static inline unsigned int cpus_online(void)
275{
276 return sysconf(_SC_NPROCESSORS_ONLN);
277}
278#endif
279
Jens Axboe47f767c2011-07-12 21:17:49 +0200280#ifndef FIO_HAVE_GETTID
281static inline int gettid(void)
282{
283 return getpid();
284}
285#endif
286
Jens Axboeebac4652005-12-08 15:25:21 +0100287#endif