Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 1 | #ifndef FIO_OS_H |
| 2 | #define FIO_OS_H |
| 3 | |
Jens Axboe | a14ca44 | 2009-12-20 22:24:10 +0100 | [diff] [blame] | 4 | #include <sys/types.h> |
Bruce Cran | 203913e | 2011-10-18 12:20:56 +0200 | [diff] [blame] | 5 | #include <sys/socket.h> |
Bruce Cran | 93bcfd2 | 2012-02-20 20:18:19 +0100 | [diff] [blame] | 6 | #include <fcntl.h> |
Bruce Cran | 03e20d6 | 2011-01-02 20:14:54 +0100 | [diff] [blame] | 7 | #include <pthread.h> |
Jens Axboe | a14ca44 | 2009-12-20 22:24:10 +0100 | [diff] [blame] | 8 | #include <unistd.h> |
Bruce Cran | ecc314b | 2011-01-04 10:59:30 +0100 | [diff] [blame] | 9 | #include <stdlib.h> |
Jens Axboe | a14ca44 | 2009-12-20 22:24:10 +0100 | [diff] [blame] | 10 | |
Jens Axboe | cca8464 | 2011-10-07 12:47:57 +0200 | [diff] [blame] | 11 | enum { |
| 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, |
| 20 | |
| 21 | os_nr, |
| 22 | }; |
| 23 | |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 24 | #if defined(__linux__) |
| 25 | #include "os-linux.h" |
| 26 | #elif defined(__FreeBSD__) |
| 27 | #include "os-freebsd.h" |
YAMAMOTO Takashi | 7452440 | 2010-05-12 15:06:46 +0200 | [diff] [blame] | 28 | #elif defined(__NetBSD__) |
| 29 | #include "os-netbsd.h" |
Jens Axboe | 2c0ecd2 | 2006-06-08 13:25:41 +0200 | [diff] [blame] | 30 | #elif defined(__sun__) |
| 31 | #include "os-solaris.h" |
Jens Axboe | 2afd826 | 2009-12-14 23:08:42 +0100 | [diff] [blame] | 32 | #elif defined(__APPLE__) |
| 33 | #include "os-mac.h" |
Cigy Cyriac | bf2e821 | 2010-08-10 19:51:11 -0400 | [diff] [blame] | 34 | #elif defined(_AIX) |
| 35 | #include "os-aix.h" |
Jens Axboe | c00a228 | 2011-07-08 20:56:06 +0200 | [diff] [blame] | 36 | #elif defined(__hpux) |
| 37 | #include "os-hpux.h" |
Bruce Cran | 93bcfd2 | 2012-02-20 20:18:19 +0100 | [diff] [blame] | 38 | #elif defined(WIN32) |
Bruce Cran | 03e20d6 | 2011-01-02 20:14:54 +0100 | [diff] [blame] | 39 | #include "os-windows.h" |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 40 | #else |
| 41 | #error "unsupported os" |
| 42 | #endif |
| 43 | |
| 44 | #ifdef FIO_HAVE_LIBAIO |
| 45 | #include <libaio.h> |
| 46 | #endif |
| 47 | |
| 48 | #ifdef FIO_HAVE_POSIXAIO |
| 49 | #include <aio.h> |
Jens Axboe | e97c144 | 2011-09-21 09:38:01 +0200 | [diff] [blame] | 50 | #ifndef FIO_OS_HAVE_AIOCB_TYPEDEF |
| 51 | typedef struct aiocb os_aiocb_t; |
| 52 | #endif |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 53 | #endif |
| 54 | |
| 55 | #ifdef FIO_HAVE_SGIO |
| 56 | #include <linux/fs.h> |
| 57 | #include <scsi/sg.h> |
| 58 | #endif |
| 59 | |
Jens Axboe | 5921e80 | 2008-05-30 15:02:38 +0200 | [diff] [blame] | 60 | #ifndef FIO_HAVE_STRSEP |
Jens Axboe | 00fb3c8 | 2008-05-30 22:17:45 +0200 | [diff] [blame] | 61 | #include "../lib/strsep.h" |
Jens Axboe | 5921e80 | 2008-05-30 15:02:38 +0200 | [diff] [blame] | 62 | #endif |
| 63 | |
Jens Axboe | 8e239ca | 2010-08-11 10:29:12 -0400 | [diff] [blame] | 64 | #ifdef MSG_DONTWAIT |
| 65 | #define OS_MSG_DONTWAIT MSG_DONTWAIT |
| 66 | #endif |
| 67 | |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 68 | #ifndef FIO_HAVE_FADVISE |
Bruce Cran | ecc314b | 2011-01-04 10:59:30 +0100 | [diff] [blame] | 69 | #define posix_fadvise(fd, off, len, advice) (0) |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 70 | |
Shawn Lewis | 4d8947d | 2007-07-25 07:51:58 +0200 | [diff] [blame] | 71 | #ifndef POSIX_FADV_DONTNEED |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 72 | #define POSIX_FADV_DONTNEED (0) |
| 73 | #define POSIX_FADV_SEQUENTIAL (0) |
| 74 | #define POSIX_FADV_RANDOM (0) |
Shawn Lewis | 4d8947d | 2007-07-25 07:51:58 +0200 | [diff] [blame] | 75 | #endif |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 76 | #endif /* FIO_HAVE_FADVISE */ |
| 77 | |
| 78 | #ifndef FIO_HAVE_CPU_AFFINITY |
Jens Axboe | e8462bd | 2009-07-06 12:59:04 +0200 | [diff] [blame] | 79 | #define fio_setaffinity(pid, mask) (0) |
Jens Axboe | be4ecfd | 2008-12-08 14:10:52 +0100 | [diff] [blame] | 80 | #define fio_getaffinity(pid, mask) do { } while (0) |
| 81 | #define fio_cpu_clear(mask, cpu) do { } while (0) |
Jens Axboe | 85daf2c | 2009-01-05 09:40:13 +0100 | [diff] [blame] | 82 | #define fio_cpuset_exit(mask) (-1) |
YAMAMOTO Takashi | 7452440 | 2010-05-12 15:06:46 +0200 | [diff] [blame] | 83 | typedef unsigned long os_cpu_mask_t; |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 84 | #endif |
| 85 | |
| 86 | #ifndef FIO_HAVE_IOPRIO |
| 87 | #define ioprio_set(which, who, prio) (0) |
| 88 | #endif |
| 89 | |
Jens Axboe | 2c0ecd2 | 2006-06-08 13:25:41 +0200 | [diff] [blame] | 90 | #ifndef FIO_HAVE_ODIRECT |
Jens Axboe | 7d42476 | 2006-06-08 13:26:31 +0200 | [diff] [blame] | 91 | #define OS_O_DIRECT 0 |
| 92 | #else |
| 93 | #define OS_O_DIRECT O_DIRECT |
Jens Axboe | 2c0ecd2 | 2006-06-08 13:25:41 +0200 | [diff] [blame] | 94 | #endif |
| 95 | |
Jens Axboe | 74b025b | 2006-12-19 15:18:14 +0100 | [diff] [blame] | 96 | #ifndef FIO_HAVE_HUGETLB |
| 97 | #define SHM_HUGETLB 0 |
Shawn Lewis | 4d8947d | 2007-07-25 07:51:58 +0200 | [diff] [blame] | 98 | #ifndef FIO_HUGE_PAGE |
Jens Axboe | 74b025b | 2006-12-19 15:18:14 +0100 | [diff] [blame] | 99 | #define FIO_HUGE_PAGE 0 |
Shawn Lewis | 4d8947d | 2007-07-25 07:51:58 +0200 | [diff] [blame] | 100 | #endif |
Jens Axboe | 74b025b | 2006-12-19 15:18:14 +0100 | [diff] [blame] | 101 | #else |
Jens Axboe | cb25df6 | 2007-03-23 08:23:30 +0100 | [diff] [blame] | 102 | #ifndef FIO_HUGE_PAGE |
Jens Axboe | ee0e0a7 | 2007-03-19 10:50:47 +0100 | [diff] [blame] | 103 | #define FIO_HUGE_PAGE 4194304 |
Jens Axboe | 74b025b | 2006-12-19 15:18:14 +0100 | [diff] [blame] | 104 | #endif |
Jens Axboe | cb25df6 | 2007-03-23 08:23:30 +0100 | [diff] [blame] | 105 | #endif |
Jens Axboe | 74b025b | 2006-12-19 15:18:14 +0100 | [diff] [blame] | 106 | |
Jens Axboe | 5921e80 | 2008-05-30 15:02:38 +0200 | [diff] [blame] | 107 | #ifndef FIO_O_NOATIME |
| 108 | #define FIO_O_NOATIME 0 |
| 109 | #endif |
| 110 | |
Jens Axboe | dc873b6 | 2008-06-04 20:13:04 +0200 | [diff] [blame] | 111 | #ifndef OS_RAND_MAX |
| 112 | #define OS_RAND_MAX RAND_MAX |
| 113 | #endif |
| 114 | |
Bruce Cran | ecc314b | 2011-01-04 10:59:30 +0100 | [diff] [blame] | 115 | #ifdef FIO_HAVE_CLOCK_MONOTONIC |
| 116 | #define FIO_TIMER_CLOCK CLOCK_MONOTONIC |
| 117 | #else |
| 118 | #define FIO_TIMER_CLOCK CLOCK_REALTIME |
| 119 | #endif |
| 120 | |
Jens Axboe | 07e5b26 | 2007-04-02 14:46:07 +0200 | [diff] [blame] | 121 | #ifndef FIO_HAVE_RAWBIND |
Jens Axboe | 8cc7afa | 2007-04-17 09:06:43 +0200 | [diff] [blame] | 122 | #define fio_lookup_raw(dev, majdev, mindev) 1 |
Jens Axboe | 07e5b26 | 2007-04-02 14:46:07 +0200 | [diff] [blame] | 123 | #endif |
| 124 | |
Jens Axboe | 58483fa | 2011-01-19 11:09:58 -0700 | [diff] [blame] | 125 | #ifndef FIO_PREFERRED_ENGINE |
| 126 | #define FIO_PREFERRED_ENGINE "sync" |
| 127 | #endif |
| 128 | |
Bruce Cran | b9fd788 | 2012-02-20 17:01:46 +0000 | [diff] [blame] | 129 | #ifndef FIO_OS_PATH_SEPARATOR |
| 130 | #define FIO_OS_PATH_SEPARATOR "/" |
| 131 | #endif |
| 132 | |
Bruce Cran | 16de1bf | 2012-02-20 17:07:32 +0000 | [diff] [blame] | 133 | #ifndef FIO_PREFERRED_CLOCK_SOURCE |
| 134 | #define FIO_PREFERRED_CLOCK_SOURCE CS_CGETTIME |
| 135 | #endif |
| 136 | |
Jens Axboe | fca7035 | 2011-07-06 20:12:54 +0200 | [diff] [blame] | 137 | #ifndef FIO_MAX_JOBS |
| 138 | #define FIO_MAX_JOBS 2048 |
| 139 | #endif |
| 140 | |
Jens Axboe | 5ba13ea | 2011-10-04 23:50:28 +0200 | [diff] [blame] | 141 | #ifndef FIO_OS_HAVE_SOCKLEN_T |
| 142 | typedef socklen_t fio_socklen_t; |
| 143 | #endif |
| 144 | |
Jens Axboe | 901ebe1 | 2011-10-04 23:31:00 +0200 | [diff] [blame] | 145 | #ifdef FIO_USE_GENERIC_SWAP |
Jens Axboe | 9677bec | 2011-10-04 16:02:51 +0200 | [diff] [blame] | 146 | static inline uint16_t fio_swap16(uint16_t val) |
Jens Axboe | 232f9b7 | 2011-10-04 14:45:20 +0200 | [diff] [blame] | 147 | { |
| 148 | return (val << 8) | (val >> 8); |
| 149 | } |
| 150 | |
Jens Axboe | 901ebe1 | 2011-10-04 23:31:00 +0200 | [diff] [blame] | 151 | static inline uint32_t fio_swap32(uint32_t val) |
Jens Axboe | 232f9b7 | 2011-10-04 14:45:20 +0200 | [diff] [blame] | 152 | { |
| 153 | val = ((val & 0xff00ff00UL) >> 8) | ((val & 0x00ff00ffUL) << 8); |
| 154 | |
| 155 | return (val >> 16) | (val << 16); |
| 156 | } |
| 157 | |
Jens Axboe | 901ebe1 | 2011-10-04 23:31:00 +0200 | [diff] [blame] | 158 | static inline uint64_t fio_swap64(uint64_t val) |
Jens Axboe | 232f9b7 | 2011-10-04 14:45:20 +0200 | [diff] [blame] | 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 | |
Jens Axboe | 8111092 | 2011-10-05 12:40:49 +0200 | [diff] [blame] | 169 | #ifdef FIO_LITTLE_ENDIAN |
| 170 | #define __le16_to_cpu(x) (x) |
| 171 | #define __le32_to_cpu(x) (x) |
| 172 | #define __le64_to_cpu(x) (x) |
| 173 | #define __cpu_to_le16(x) (x) |
| 174 | #define __cpu_to_le32(x) (x) |
| 175 | #define __cpu_to_le64(x) (x) |
| 176 | #else |
| 177 | #define __le16_to_cpu(x) fio_swap16(x) |
| 178 | #define __le32_to_cpu(x) fio_swap32(x) |
| 179 | #define __le64_to_cpu(x) fio_swap64(x) |
| 180 | #define __cpu_to_le16(x) fio_swap16(x) |
| 181 | #define __cpu_to_le32(x) fio_swap32(x) |
| 182 | #define __cpu_to_le64(x) fio_swap64(x) |
| 183 | #endif |
| 184 | |
| 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 Axboe | 5e62c22 | 2007-05-22 13:27:30 +0200 | [diff] [blame] | 210 | #ifndef FIO_HAVE_BLKTRACE |
| 211 | static inline int is_blktrace(const char *fname) |
| 212 | { |
| 213 | return 0; |
| 214 | } |
Jens Axboe | 5921e80 | 2008-05-30 15:02:38 +0200 | [diff] [blame] | 215 | struct thread_data; |
Jens Axboe | 5e62c22 | 2007-05-22 13:27:30 +0200 | [diff] [blame] | 216 | static inline int load_blktrace(struct thread_data *td, const char *fname) |
| 217 | { |
| 218 | return 1; |
| 219 | } |
| 220 | #endif |
| 221 | |
Jens Axboe | eb7ccf3 | 2009-04-29 09:48:04 +0200 | [diff] [blame] | 222 | #define FIO_DEF_CL_SIZE 128 |
| 223 | |
| 224 | static 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 Axboe | 792d551 | 2009-09-22 17:12:29 +0200 | [diff] [blame] | 238 | #ifdef FIO_USE_GENERIC_BDEV_SIZE |
Bruce Cran | ecc314b | 2011-01-04 10:59:30 +0100 | [diff] [blame] | 239 | static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes) |
Jens Axboe | 792d551 | 2009-09-22 17:12:29 +0200 | [diff] [blame] | 240 | { |
Jens Axboe | 3b2e146 | 2009-12-15 08:58:10 +0100 | [diff] [blame] | 241 | off_t end; |
Jens Axboe | 792d551 | 2009-09-22 17:12:29 +0200 | [diff] [blame] | 242 | |
Jens Axboe | 3b2e146 | 2009-12-15 08:58:10 +0100 | [diff] [blame] | 243 | *bytes = 0; |
| 244 | |
Bruce Cran | ecc314b | 2011-01-04 10:59:30 +0100 | [diff] [blame] | 245 | end = lseek(f->fd, 0, SEEK_END); |
Jens Axboe | 792d551 | 2009-09-22 17:12:29 +0200 | [diff] [blame] | 246 | if (end < 0) |
| 247 | return errno; |
| 248 | |
| 249 | *bytes = end; |
| 250 | return 0; |
| 251 | } |
| 252 | #endif |
| 253 | |
Jens Axboe | 5353137 | 2009-12-15 10:28:37 +0100 | [diff] [blame] | 254 | #ifdef FIO_USE_GENERIC_RAND |
| 255 | typedef unsigned int os_random_state_t; |
| 256 | |
| 257 | static inline void os_random_seed(unsigned long seed, os_random_state_t *rs) |
| 258 | { |
| 259 | srand(seed); |
| 260 | } |
| 261 | |
| 262 | static 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 Cran | 93bcfd2 | 2012-02-20 20:18:19 +0100 | [diff] [blame] | 271 | #ifdef FIO_USE_GENERIC_INIT_RANDOM_STATE |
| 272 | extern 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 | */ |
| 277 | static 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 Axboe | 2e3bd4c | 2010-05-17 12:29:57 +0200 | [diff] [blame] | 297 | #ifndef FIO_HAVE_FS_STAT |
| 298 | static inline unsigned long long get_fs_size(const char *path) |
| 299 | { |
| 300 | return 0; |
| 301 | } |
| 302 | #endif |
| 303 | |
Jens Axboe | c00a228 | 2011-07-08 20:56:06 +0200 | [diff] [blame] | 304 | #ifndef FIO_HAVE_CPU_ONLINE_SYSCONF |
| 305 | static inline unsigned int cpus_online(void) |
| 306 | { |
| 307 | return sysconf(_SC_NPROCESSORS_ONLN); |
| 308 | } |
| 309 | #endif |
| 310 | |
Jens Axboe | 47f767c | 2011-07-12 21:17:49 +0200 | [diff] [blame] | 311 | #ifndef FIO_HAVE_GETTID |
| 312 | static inline int gettid(void) |
| 313 | { |
| 314 | return getpid(); |
| 315 | } |
| 316 | #endif |
| 317 | |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 318 | #endif |