blob: a14d7f0c0333152ed6663d895d787fb95d7e1f18 [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
Jens Axboe67bf9822013-01-10 11:23:19 +010047#ifdef CONFIG_POSIXAIO
Jens Axboeebac4652005-12-08 15:25:21 +010048#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 Axboe67bf9822013-01-10 11:23:19 +010059#ifdef CONFIG_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
Shawn Lewis4d8947d2007-07-25 07:51:58 +020067#ifndef POSIX_FADV_DONTNEED
Jens Axboeebac4652005-12-08 15:25:21 +010068#define POSIX_FADV_DONTNEED (0)
69#define POSIX_FADV_SEQUENTIAL (0)
70#define POSIX_FADV_RANDOM (0)
Shawn Lewis4d8947d2007-07-25 07:51:58 +020071#endif
Jens Axboeebac4652005-12-08 15:25:21 +010072
73#ifndef FIO_HAVE_CPU_AFFINITY
Jens Axboee8462bd2009-07-06 12:59:04 +020074#define fio_setaffinity(pid, mask) (0)
Jens Axboebe4ecfd2008-12-08 14:10:52 +010075#define fio_getaffinity(pid, mask) do { } while (0)
76#define fio_cpu_clear(mask, cpu) do { } while (0)
Jens Axboe85daf2c2009-01-05 09:40:13 +010077#define fio_cpuset_exit(mask) (-1)
YAMAMOTO Takashi74524402010-05-12 15:06:46 +020078typedef unsigned long os_cpu_mask_t;
Jens Axboeebac4652005-12-08 15:25:21 +010079#endif
80
81#ifndef FIO_HAVE_IOPRIO
82#define ioprio_set(which, who, prio) (0)
83#endif
84
Jens Axboe2c0ecd22006-06-08 13:25:41 +020085#ifndef FIO_HAVE_ODIRECT
Jens Axboe7d424762006-06-08 13:26:31 +020086#define OS_O_DIRECT 0
87#else
88#define OS_O_DIRECT O_DIRECT
Jens Axboe2c0ecd22006-06-08 13:25:41 +020089#endif
90
Jens Axboe74b025b2006-12-19 15:18:14 +010091#ifndef FIO_HAVE_HUGETLB
92#define SHM_HUGETLB 0
Jens Axboed6dc02f2012-11-20 13:39:59 +010093#define MAP_HUGETLB 0
Shawn Lewis4d8947d2007-07-25 07:51:58 +020094#ifndef FIO_HUGE_PAGE
Jens Axboe74b025b2006-12-19 15:18:14 +010095#define FIO_HUGE_PAGE 0
Shawn Lewis4d8947d2007-07-25 07:51:58 +020096#endif
Jens Axboe74b025b2006-12-19 15:18:14 +010097#else
Jens Axboecb25df62007-03-23 08:23:30 +010098#ifndef FIO_HUGE_PAGE
Jens Axboeee0e0a72007-03-19 10:50:47 +010099#define FIO_HUGE_PAGE 4194304
Jens Axboe74b025b2006-12-19 15:18:14 +0100100#endif
Jens Axboecb25df62007-03-23 08:23:30 +0100101#endif
Jens Axboe74b025b2006-12-19 15:18:14 +0100102
Jens Axboe39b93562012-11-27 08:27:50 +0100103#ifndef FIO_HAVE_MMAP_HUGE
104#define MAP_HUGETLB 0
105#endif
106
Jens Axboe5921e802008-05-30 15:02:38 +0200107#ifndef FIO_O_NOATIME
108#define FIO_O_NOATIME 0
109#endif
110
Jens Axboedc873b62008-06-04 20:13:04 +0200111#ifndef OS_RAND_MAX
112#define OS_RAND_MAX RAND_MAX
113#endif
114
Jens Axboe07e5b262007-04-02 14:46:07 +0200115#ifndef FIO_HAVE_RAWBIND
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200116#define fio_lookup_raw(dev, majdev, mindev) 1
Jens Axboe07e5b262007-04-02 14:46:07 +0200117#endif
118
Jens Axboe58483fa2011-01-19 11:09:58 -0700119#ifndef FIO_PREFERRED_ENGINE
120#define FIO_PREFERRED_ENGINE "sync"
121#endif
122
Bruce Cranb9fd7882012-02-20 17:01:46 +0000123#ifndef FIO_OS_PATH_SEPARATOR
124#define FIO_OS_PATH_SEPARATOR "/"
125#endif
126
Bruce Cran16de1bf2012-02-20 17:07:32 +0000127#ifndef FIO_PREFERRED_CLOCK_SOURCE
Jens Axboea7f58312012-12-01 15:02:11 +0100128#define FIO_PREFERRED_CLOCK_SOURCE CS_CGETTIME
Bruce Cran16de1bf2012-02-20 17:07:32 +0000129#endif
130
Jens Axboefca70352011-07-06 20:12:54 +0200131#ifndef FIO_MAX_JOBS
132#define FIO_MAX_JOBS 2048
133#endif
134
Jens Axboe67bf9822013-01-10 11:23:19 +0100135#ifndef CONFIG_SOCKLEN_T
136typedef unsigned int socklen_t;
Jens Axboe5ba13ea2011-10-04 23:50:28 +0200137#endif
138
Saurabh De45054cb2012-10-09 14:46:24 -0600139#ifndef FIO_OS_HAS_CTIME_R
140#define os_ctime_r(x, y, z) ctime_r((x), (y))
141#endif
142
Jens Axboe901ebe12011-10-04 23:31:00 +0200143#ifdef FIO_USE_GENERIC_SWAP
Jens Axboe9677bec2011-10-04 16:02:51 +0200144static inline uint16_t fio_swap16(uint16_t val)
Jens Axboe232f9b72011-10-04 14:45:20 +0200145{
146 return (val << 8) | (val >> 8);
147}
148
Jens Axboe901ebe12011-10-04 23:31:00 +0200149static inline uint32_t fio_swap32(uint32_t val)
Jens Axboe232f9b72011-10-04 14:45:20 +0200150{
151 val = ((val & 0xff00ff00UL) >> 8) | ((val & 0x00ff00ffUL) << 8);
152
153 return (val >> 16) | (val << 16);
154}
155
Jens Axboe901ebe12011-10-04 23:31:00 +0200156static inline uint64_t fio_swap64(uint64_t val)
Jens Axboe232f9b72011-10-04 14:45:20 +0200157{
158 val = ((val & 0xff00ff00ff00ff00ULL) >> 8) |
159 ((val & 0x00ff00ff00ff00ffULL) << 8);
160 val = ((val & 0xffff0000ffff0000ULL) >> 16) |
161 ((val & 0x0000ffff0000ffffULL) << 16);
162
163 return (val >> 32) | (val << 32);
164}
165#endif
166
Aaron Carrollec5c6b12012-11-21 10:39:00 +0100167#ifndef FIO_HAVE_BYTEORDER_FUNCS
Jens Axboe81110922011-10-05 12:40:49 +0200168#ifdef FIO_LITTLE_ENDIAN
169#define __le16_to_cpu(x) (x)
170#define __le32_to_cpu(x) (x)
171#define __le64_to_cpu(x) (x)
172#define __cpu_to_le16(x) (x)
173#define __cpu_to_le32(x) (x)
174#define __cpu_to_le64(x) (x)
175#else
176#define __le16_to_cpu(x) fio_swap16(x)
177#define __le32_to_cpu(x) fio_swap32(x)
178#define __le64_to_cpu(x) fio_swap64(x)
179#define __cpu_to_le16(x) fio_swap16(x)
180#define __cpu_to_le32(x) fio_swap32(x)
181#define __cpu_to_le64(x) fio_swap64(x)
182#endif
Aaron Carrollec5c6b12012-11-21 10:39:00 +0100183#endif /* FIO_HAVE_BYTEORDER_FUNCS */
Jens Axboe81110922011-10-05 12:40:49 +0200184
185#define le16_to_cpu(val) ({ \
186 uint16_t *__val = &(val); \
187 __le16_to_cpu(*__val); \
188})
189#define le32_to_cpu(val) ({ \
190 uint32_t *__val = &(val); \
191 __le32_to_cpu(*__val); \
192})
193#define le64_to_cpu(val) ({ \
194 uint64_t *__val = &(val); \
195 __le64_to_cpu(*__val); \
196})
197#define cpu_to_le16(val) ({ \
198 uint16_t *__val = &(val); \
199 __cpu_to_le16(*__val); \
200})
201#define cpu_to_le32(val) ({ \
202 uint32_t *__val = &(val); \
203 __cpu_to_le32(*__val); \
204})
205#define cpu_to_le64(val) ({ \
206 uint64_t *__val = &(val); \
207 __cpu_to_le64(*__val); \
208})
209
Jens Axboe5e62c222007-05-22 13:27:30 +0200210#ifndef FIO_HAVE_BLKTRACE
211static inline int is_blktrace(const char *fname)
212{
213 return 0;
214}
Jens Axboe5921e802008-05-30 15:02:38 +0200215struct thread_data;
Jens Axboe5e62c222007-05-22 13:27:30 +0200216static inline int load_blktrace(struct thread_data *td, const char *fname)
217{
218 return 1;
219}
220#endif
221
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200222#define FIO_DEF_CL_SIZE 128
223
224static inline int os_cache_line_size(void)
225{
226#ifdef FIO_HAVE_CL_SIZE
227 int ret = arch_cache_line_size();
228
229 if (ret <= 0)
230 return FIO_DEF_CL_SIZE;
231
232 return ret;
233#else
234 return FIO_DEF_CL_SIZE;
235#endif
236}
237
Jens Axboe792d5512009-09-22 17:12:29 +0200238#ifdef FIO_USE_GENERIC_BDEV_SIZE
Bruce Cranecc314b2011-01-04 10:59:30 +0100239static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
Jens Axboe792d5512009-09-22 17:12:29 +0200240{
Jens Axboe3b2e1462009-12-15 08:58:10 +0100241 off_t end;
Jens Axboe792d5512009-09-22 17:12:29 +0200242
Jens Axboe3b2e1462009-12-15 08:58:10 +0100243 *bytes = 0;
244
Bruce Cranecc314b2011-01-04 10:59:30 +0100245 end = lseek(f->fd, 0, SEEK_END);
Jens Axboe792d5512009-09-22 17:12:29 +0200246 if (end < 0)
247 return errno;
248
249 *bytes = end;
250 return 0;
251}
252#endif
253
Jens Axboe53531372009-12-15 10:28:37 +0100254#ifdef FIO_USE_GENERIC_RAND
255typedef unsigned int os_random_state_t;
256
257static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
258{
259 srand(seed);
260}
261
262static inline long os_random_long(os_random_state_t *rs)
263{
264 long val;
265
266 val = rand_r(rs);
267 return val;
268}
269#endif
270
Bruce Cran93bcfd22012-02-20 20:18:19 +0100271#ifdef FIO_USE_GENERIC_INIT_RANDOM_STATE
272extern void td_fill_rand_seeds(struct thread_data *td);
273/*
274 * Initialize the various random states we need (random io, block size ranges,
275 * read/write mix, etc).
276 */
277static inline int init_random_state(struct thread_data *td, unsigned long *rand_seeds, int size)
278{
279 int fd;
280
281 fd = open("/dev/urandom", O_RDONLY);
282 if (fd == -1) {
283 return 1;
284 }
285
286 if (read(fd, rand_seeds, size) < size) {
287 close(fd);
288 return 1;
289 }
290
291 close(fd);
292 td_fill_rand_seeds(td);
293 return 0;
294}
295#endif
296
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200297#ifndef FIO_HAVE_FS_STAT
298static inline unsigned long long get_fs_size(const char *path)
299{
300 return 0;
301}
302#endif
303
Jens Axboec00a2282011-07-08 20:56:06 +0200304#ifndef FIO_HAVE_CPU_ONLINE_SYSCONF
305static inline unsigned int cpus_online(void)
306{
307 return sysconf(_SC_NPROCESSORS_ONLN);
308}
309#endif
310
Jens Axboe47f767c2011-07-12 21:17:49 +0200311#ifndef FIO_HAVE_GETTID
312static inline int gettid(void)
313{
314 return getpid();
315}
316#endif
317
Jens Axboeebac4652005-12-08 15:25:21 +0100318#endif