blob: 4416ae482fb46a176cccf252bea8307dbc24b0c8 [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 Axboe836fcc02013-01-24 09:08:45 -070011#include "../arch/arch.h"
12
Jens Axboecca84642011-10-07 12:47:57 +020013enum {
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,
Aaron Carrollec5c6b12012-11-21 10:39:00 +010022 os_android,
Jens Axboecca84642011-10-07 12:47:57 +020023
24 os_nr,
25};
26
Aaron Carrollec5c6b12012-11-21 10:39:00 +010027#if defined(__ANDROID__)
28#include "os-android.h"
29#elif defined(__linux__)
Jens Axboeebac4652005-12-08 15:25:21 +010030#include "os-linux.h"
31#elif defined(__FreeBSD__)
32#include "os-freebsd.h"
YAMAMOTO Takashi74524402010-05-12 15:06:46 +020033#elif defined(__NetBSD__)
34#include "os-netbsd.h"
Jens Axboe2c0ecd22006-06-08 13:25:41 +020035#elif defined(__sun__)
36#include "os-solaris.h"
Jens Axboe2afd8262009-12-14 23:08:42 +010037#elif defined(__APPLE__)
38#include "os-mac.h"
Cigy Cyriacbf2e8212010-08-10 19:51:11 -040039#elif defined(_AIX)
40#include "os-aix.h"
Jens Axboec00a2282011-07-08 20:56:06 +020041#elif defined(__hpux)
42#include "os-hpux.h"
Bruce Cran93bcfd22012-02-20 20:18:19 +010043#elif defined(WIN32)
Bruce Cran03e20d62011-01-02 20:14:54 +010044#include "os-windows.h"
Jens Axboeebac4652005-12-08 15:25:21 +010045#else
46#error "unsupported os"
47#endif
48
Jens Axboe67bf9822013-01-10 11:23:19 +010049#ifdef CONFIG_POSIXAIO
Jens Axboeebac4652005-12-08 15:25:21 +010050#include <aio.h>
Jens Axboee97c1442011-09-21 09:38:01 +020051#ifndef FIO_OS_HAVE_AIOCB_TYPEDEF
52typedef struct aiocb os_aiocb_t;
53#endif
Jens Axboeebac4652005-12-08 15:25:21 +010054#endif
55
56#ifdef FIO_HAVE_SGIO
57#include <linux/fs.h>
58#include <scsi/sg.h>
59#endif
60
Jens Axboe4feafb12013-01-24 23:07:55 -070061#ifndef CONFIG_STRSEP
Jens Axboe00fb3c82008-05-30 22:17:45 +020062#include "../lib/strsep.h"
Jens Axboe5921e802008-05-30 15:02:38 +020063#endif
64
Jens Axboe8e239ca2010-08-11 10:29:12 -040065#ifdef MSG_DONTWAIT
66#define OS_MSG_DONTWAIT MSG_DONTWAIT
67#endif
68
Shawn Lewis4d8947d2007-07-25 07:51:58 +020069#ifndef POSIX_FADV_DONTNEED
Jens Axboeebac4652005-12-08 15:25:21 +010070#define POSIX_FADV_DONTNEED (0)
71#define POSIX_FADV_SEQUENTIAL (0)
72#define POSIX_FADV_RANDOM (0)
Shawn Lewis4d8947d2007-07-25 07:51:58 +020073#endif
Jens Axboeebac4652005-12-08 15:25:21 +010074
75#ifndef FIO_HAVE_CPU_AFFINITY
Jens Axboee8462bd2009-07-06 12:59:04 +020076#define fio_setaffinity(pid, mask) (0)
Jens Axboebe4ecfd2008-12-08 14:10:52 +010077#define fio_getaffinity(pid, mask) do { } while (0)
78#define fio_cpu_clear(mask, cpu) do { } while (0)
Jens Axboe85daf2c2009-01-05 09:40:13 +010079#define fio_cpuset_exit(mask) (-1)
YAMAMOTO Takashi74524402010-05-12 15:06:46 +020080typedef unsigned long os_cpu_mask_t;
Jens Axboeebac4652005-12-08 15:25:21 +010081#endif
82
83#ifndef FIO_HAVE_IOPRIO
Jens Axboe28727df2012-03-29 08:33:15 +020084#define ioprio_set(which, who, prioclass, prio) (0)
Jens Axboeebac4652005-12-08 15:25:21 +010085#endif
86
Jens Axboe2c0ecd22006-06-08 13:25:41 +020087#ifndef FIO_HAVE_ODIRECT
Jens Axboe7d424762006-06-08 13:26:31 +020088#define OS_O_DIRECT 0
89#else
90#define OS_O_DIRECT O_DIRECT
Jens Axboe2c0ecd22006-06-08 13:25:41 +020091#endif
92
Jens Axboe74b025b2006-12-19 15:18:14 +010093#ifndef FIO_HAVE_HUGETLB
94#define SHM_HUGETLB 0
Jens Axboed6dc02f2012-11-20 13:39:59 +010095#define MAP_HUGETLB 0
Shawn Lewis4d8947d2007-07-25 07:51:58 +020096#ifndef FIO_HUGE_PAGE
Jens Axboe74b025b2006-12-19 15:18:14 +010097#define FIO_HUGE_PAGE 0
Shawn Lewis4d8947d2007-07-25 07:51:58 +020098#endif
Jens Axboe74b025b2006-12-19 15:18:14 +010099#else
Jens Axboecb25df62007-03-23 08:23:30 +0100100#ifndef FIO_HUGE_PAGE
Jens Axboeee0e0a72007-03-19 10:50:47 +0100101#define FIO_HUGE_PAGE 4194304
Jens Axboe74b025b2006-12-19 15:18:14 +0100102#endif
Jens Axboecb25df62007-03-23 08:23:30 +0100103#endif
Jens Axboe74b025b2006-12-19 15:18:14 +0100104
Jens Axboe39b93562012-11-27 08:27:50 +0100105#ifndef FIO_HAVE_MMAP_HUGE
106#define MAP_HUGETLB 0
107#endif
108
Jens Axboe5921e802008-05-30 15:02:38 +0200109#ifndef FIO_O_NOATIME
110#define FIO_O_NOATIME 0
111#endif
112
Jens Axboedc873b62008-06-04 20:13:04 +0200113#ifndef OS_RAND_MAX
114#define OS_RAND_MAX RAND_MAX
115#endif
116
Jens Axboe07e5b262007-04-02 14:46:07 +0200117#ifndef FIO_HAVE_RAWBIND
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200118#define fio_lookup_raw(dev, majdev, mindev) 1
Jens Axboe07e5b262007-04-02 14:46:07 +0200119#endif
120
Jens Axboe58483fa2011-01-19 11:09:58 -0700121#ifndef FIO_PREFERRED_ENGINE
122#define FIO_PREFERRED_ENGINE "sync"
123#endif
124
Bruce Cranb9fd7882012-02-20 17:01:46 +0000125#ifndef FIO_OS_PATH_SEPARATOR
126#define FIO_OS_PATH_SEPARATOR "/"
127#endif
128
Bruce Cran16de1bf2012-02-20 17:07:32 +0000129#ifndef FIO_PREFERRED_CLOCK_SOURCE
Bruce Cran86e53412013-02-02 20:54:36 +0000130#ifdef CONFIG_CLOCK_GETTIME
Bruce Cran16de1bf2012-02-20 17:07:32 +0000131#define FIO_PREFERRED_CLOCK_SOURCE CS_CGETTIME
Bruce Cran86e53412013-02-02 20:54:36 +0000132#else
133#define FIO_PREFERRED_CLOCK_SOURCE CS_GTOD
134#endif
Bruce Cran16de1bf2012-02-20 17:07:32 +0000135#endif
136
Jens Axboefca70352011-07-06 20:12:54 +0200137#ifndef FIO_MAX_JOBS
138#define FIO_MAX_JOBS 2048
139#endif
140
Jens Axboe67bf9822013-01-10 11:23:19 +0100141#ifndef CONFIG_SOCKLEN_T
142typedef unsigned int socklen_t;
Jens Axboe5ba13ea2011-10-04 23:50:28 +0200143#endif
144
Saurabh De45054cb2012-10-09 14:46:24 -0600145#ifndef FIO_OS_HAS_CTIME_R
Jens Axboe1f819912013-01-23 17:21:41 -0700146#define os_ctime_r(x, y, z) (void) ctime_r((x), (y))
Saurabh De45054cb2012-10-09 14:46:24 -0600147#endif
148
Jens Axboe901ebe12011-10-04 23:31:00 +0200149#ifdef FIO_USE_GENERIC_SWAP
Jens Axboe9677bec2011-10-04 16:02:51 +0200150static inline uint16_t fio_swap16(uint16_t val)
Jens Axboe232f9b72011-10-04 14:45:20 +0200151{
152 return (val << 8) | (val >> 8);
153}
154
Jens Axboe901ebe12011-10-04 23:31:00 +0200155static inline uint32_t fio_swap32(uint32_t val)
Jens Axboe232f9b72011-10-04 14:45:20 +0200156{
157 val = ((val & 0xff00ff00UL) >> 8) | ((val & 0x00ff00ffUL) << 8);
158
159 return (val >> 16) | (val << 16);
160}
161
Jens Axboe901ebe12011-10-04 23:31:00 +0200162static inline uint64_t fio_swap64(uint64_t val)
Jens Axboe232f9b72011-10-04 14:45:20 +0200163{
164 val = ((val & 0xff00ff00ff00ff00ULL) >> 8) |
165 ((val & 0x00ff00ff00ff00ffULL) << 8);
166 val = ((val & 0xffff0000ffff0000ULL) >> 16) |
167 ((val & 0x0000ffff0000ffffULL) << 16);
168
169 return (val >> 32) | (val << 32);
170}
171#endif
172
Aaron Carrollec5c6b12012-11-21 10:39:00 +0100173#ifndef FIO_HAVE_BYTEORDER_FUNCS
Jens Axboe0dcebdf2013-01-23 15:42:16 -0700174#ifdef CONFIG_LITTLE_ENDIAN
Jens Axboe81110922011-10-05 12:40:49 +0200175#define __le16_to_cpu(x) (x)
176#define __le32_to_cpu(x) (x)
177#define __le64_to_cpu(x) (x)
178#define __cpu_to_le16(x) (x)
179#define __cpu_to_le32(x) (x)
180#define __cpu_to_le64(x) (x)
181#else
182#define __le16_to_cpu(x) fio_swap16(x)
183#define __le32_to_cpu(x) fio_swap32(x)
184#define __le64_to_cpu(x) fio_swap64(x)
185#define __cpu_to_le16(x) fio_swap16(x)
186#define __cpu_to_le32(x) fio_swap32(x)
187#define __cpu_to_le64(x) fio_swap64(x)
188#endif
Aaron Carrollec5c6b12012-11-21 10:39:00 +0100189#endif /* FIO_HAVE_BYTEORDER_FUNCS */
Jens Axboe81110922011-10-05 12:40:49 +0200190
191#define le16_to_cpu(val) ({ \
192 uint16_t *__val = &(val); \
193 __le16_to_cpu(*__val); \
194})
195#define le32_to_cpu(val) ({ \
196 uint32_t *__val = &(val); \
197 __le32_to_cpu(*__val); \
198})
199#define le64_to_cpu(val) ({ \
200 uint64_t *__val = &(val); \
201 __le64_to_cpu(*__val); \
202})
203#define cpu_to_le16(val) ({ \
204 uint16_t *__val = &(val); \
205 __cpu_to_le16(*__val); \
206})
207#define cpu_to_le32(val) ({ \
208 uint32_t *__val = &(val); \
209 __cpu_to_le32(*__val); \
210})
211#define cpu_to_le64(val) ({ \
212 uint64_t *__val = &(val); \
213 __cpu_to_le64(*__val); \
214})
215
Jens Axboe5e62c222007-05-22 13:27:30 +0200216#ifndef FIO_HAVE_BLKTRACE
217static inline int is_blktrace(const char *fname)
218{
219 return 0;
220}
Jens Axboe5921e802008-05-30 15:02:38 +0200221struct thread_data;
Jens Axboe5e62c222007-05-22 13:27:30 +0200222static inline int load_blktrace(struct thread_data *td, const char *fname)
223{
224 return 1;
225}
226#endif
227
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200228#define FIO_DEF_CL_SIZE 128
229
230static inline int os_cache_line_size(void)
231{
232#ifdef FIO_HAVE_CL_SIZE
233 int ret = arch_cache_line_size();
234
235 if (ret <= 0)
236 return FIO_DEF_CL_SIZE;
237
238 return ret;
239#else
240 return FIO_DEF_CL_SIZE;
241#endif
242}
243
Jens Axboe792d5512009-09-22 17:12:29 +0200244#ifdef FIO_USE_GENERIC_BDEV_SIZE
Bruce Cranecc314b2011-01-04 10:59:30 +0100245static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
Jens Axboe792d5512009-09-22 17:12:29 +0200246{
Jens Axboe3b2e1462009-12-15 08:58:10 +0100247 off_t end;
Jens Axboe792d5512009-09-22 17:12:29 +0200248
Jens Axboe3b2e1462009-12-15 08:58:10 +0100249 *bytes = 0;
250
Bruce Cranecc314b2011-01-04 10:59:30 +0100251 end = lseek(f->fd, 0, SEEK_END);
Jens Axboe792d5512009-09-22 17:12:29 +0200252 if (end < 0)
253 return errno;
254
255 *bytes = end;
256 return 0;
257}
258#endif
259
Jens Axboe53531372009-12-15 10:28:37 +0100260#ifdef FIO_USE_GENERIC_RAND
261typedef unsigned int os_random_state_t;
262
263static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
264{
265 srand(seed);
266}
267
268static inline long os_random_long(os_random_state_t *rs)
269{
270 long val;
271
272 val = rand_r(rs);
273 return val;
274}
275#endif
276
Bruce Cran93bcfd22012-02-20 20:18:19 +0100277#ifdef FIO_USE_GENERIC_INIT_RANDOM_STATE
278extern void td_fill_rand_seeds(struct thread_data *td);
279/*
280 * Initialize the various random states we need (random io, block size ranges,
281 * read/write mix, etc).
282 */
283static inline int init_random_state(struct thread_data *td, unsigned long *rand_seeds, int size)
284{
285 int fd;
286
287 fd = open("/dev/urandom", O_RDONLY);
288 if (fd == -1) {
289 return 1;
290 }
291
292 if (read(fd, rand_seeds, size) < size) {
293 close(fd);
294 return 1;
295 }
296
297 close(fd);
298 td_fill_rand_seeds(td);
299 return 0;
300}
301#endif
302
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200303#ifndef FIO_HAVE_FS_STAT
304static inline unsigned long long get_fs_size(const char *path)
305{
306 return 0;
307}
308#endif
309
Jens Axboec00a2282011-07-08 20:56:06 +0200310#ifndef FIO_HAVE_CPU_ONLINE_SYSCONF
311static inline unsigned int cpus_online(void)
312{
313 return sysconf(_SC_NPROCESSORS_ONLN);
314}
315#endif
316
Jens Axboe47f767c2011-07-12 21:17:49 +0200317#ifndef FIO_HAVE_GETTID
318static inline int gettid(void)
319{
320 return getpid();
321}
322#endif
323
Jens Axboeebac4652005-12-08 15:25:21 +0100324#endif