Make hugetlbfs maping work
[fio.git] / os / os-windows.h
1 #ifndef FIO_OS_WINDOWS_H
2 #define FIO_OS_WINDOWS_H
3
4 #define FIO_OS  os_windows
5
6 #include <sys/types.h>
7 #include <sys/shm.h>
8 #include <sys/stat.h>
9 #include <errno.h>
10 #include <windows.h>
11 #include <psapi.h>
12 #include <stdlib.h>
13
14 #include "../smalloc.h"
15 #include "../file.h"
16 #include "../log.h"
17
18 #define FIO_HAVE_ODIRECT
19 #define FIO_HAVE_CPU_AFFINITY
20 #define FIO_HAVE_CHARDEV_SIZE
21 #define FIO_HAVE_FDATASYNC
22 #define FIO_HAVE_WINDOWSAIO
23 #define FIO_HAVE_FALLOCATE
24 #define FIO_HAVE_GETTID
25 #define FIO_USE_GENERIC_RAND
26
27 #define FIO_PREFERRED_ENGINE            "windowsaio"
28 #define FIO_PREFERRED_CLOCK_SOURCE      CS_CGETTIME
29 #define FIO_OS_PATH_SEPARATOR           "\\"
30
31 #define FIO_MAX_CPUS    MAXIMUM_PROCESSORS
32
33 #define OS_MAP_ANON             MAP_ANON
34
35 #define FIO_LITTLE_ENDIAN
36 #define fio_swap16(x)   _byteswap_ushort(x)
37 #define fio_swap32(x)   _byteswap_ulong(x)
38 #define fio_swap64(x)   _byteswap_uint64(x)
39
40 typedef off_t off64_t;
41 typedef int clockid_t;
42
43 typedef DWORD_PTR os_cpu_mask_t;
44
45 #define CLOCK_REALTIME  1
46 #define CLOCK_MONOTONIC 2
47
48 #define _SC_PAGESIZE                    0x1
49 #define _SC_NPROCESSORS_ONLN    0x2
50 #define _SC_PHYS_PAGES                  0x4
51
52 #define SA_RESTART      0
53 #define SIGPIPE         0
54
55 /*
56  * Windows doesn't have O_DIRECT or O_SYNC, so define them
57  * here so we can reject them at runtime when using the _open
58  * interface (windowsaio uses CreateFile)
59  */
60 #define O_DIRECT        0x1000000
61 #define O_SYNC          0x2000000
62
63 /* Windows doesn't support madvise, so any values will work */
64 #define POSIX_MADV_DONTNEED             0
65 #define POSIX_MADV_SEQUENTIAL   0
66 #define POSIX_MADV_RANDOM               0
67
68 #define F_SETFL                 0x1
69 #define F_GETFL                 0x2
70 #define O_NONBLOCK              FIONBIO
71
72 /* Winsock doesn't support MSG_WAIT */
73 #define OS_MSG_DONTWAIT 0
74
75 #define POLLOUT 1
76 #define POLLIN  2
77 #define POLLERR 0
78 #define POLLHUP 1
79
80 #define SIGCONT 0
81 #define SIGUSR1 1
82 #define SIGUSR2 2
83
84 typedef int sigset_t;
85 typedef int siginfo_t;
86
87 struct sigaction
88 {
89         void (*sa_handler)(int);
90         sigset_t sa_mask;
91         int sa_flags;
92         void* (*sa_sigaction)(int, siginfo_t *, void*);
93 };
94
95 long sysconf(int name);
96
97 int kill(pid_t pid, int sig);
98 pid_t setsid(void);
99 int setgid(gid_t gid);
100 int setuid(uid_t uid);
101 int nice(int incr);
102 int sigaction(int sig, const struct sigaction *act,
103                 struct sigaction *oact);
104 int fsync(int fildes);
105 int fork(void);
106 int fcntl(int fildes, int cmd, ...);
107 int fdatasync(int fildes);
108 int lstat(const char * path, struct stat * buf);
109 uid_t geteuid(void);
110 int nanosleep(const struct timespec *rqtp, struct timespec *rmtp);
111 ssize_t pread(int fildes, void *buf, size_t nbyte, off_t offset);
112 ssize_t pwrite(int fildes, const void *buf, size_t nbyte,
113                 off_t offset);
114 extern void td_fill_rand_seeds(struct thread_data *);
115
116 static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
117 {
118         int rc = 0;
119         HANDLE hFile;
120
121         if (f->hFile == NULL) {
122                 hFile = CreateFile(f->file_name, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE,
123                                 NULL, OPEN_EXISTING, 0, NULL);
124         } else {
125                 hFile = f->hFile;
126         }
127
128         GET_LENGTH_INFORMATION info;
129         DWORD outBytes;
130         LARGE_INTEGER size;
131         size.QuadPart = 0;
132         if (DeviceIoControl(hFile, IOCTL_DISK_GET_LENGTH_INFO, NULL, 0, &info, sizeof(info), &outBytes, NULL))
133                 *bytes = info.Length.QuadPart;
134         else
135                 rc = EIO;
136
137         /* If we were passed a POSIX fd,
138          * close the HANDLE we created via CreateFile */
139         if (hFile != INVALID_HANDLE_VALUE && f->hFile == NULL)
140                 CloseHandle(hFile);
141
142         return rc;
143 }
144
145 static inline int chardev_size(struct fio_file *f, unsigned long long *bytes)
146 {
147         return blockdev_size(f, bytes);
148 }
149
150 static inline int blockdev_invalidate_cache(struct fio_file *f)
151 {
152         /* There's no way to invalidate the cache in Windows
153          * so just pretend to succeed */
154         return 0;
155 }
156
157 static inline unsigned long long os_phys_mem(void)
158 {
159         SYSTEM_INFO sysInfo;
160         uintptr_t addr;
161
162         GetSystemInfo(&sysInfo);
163         addr = (uintptr_t)sysInfo.lpMaximumApplicationAddress;
164         return (unsigned long long)addr;
165 }
166
167 static inline void os_get_tmpdir(char *path, int len)
168 {
169         GetTempPath(len, path);
170 }
171
172 static inline int gettid(void)
173 {
174         return GetCurrentThreadId();
175 }
176
177 static inline int fio_setaffinity(int pid, os_cpu_mask_t cpumask)
178 {
179         HANDLE h;
180         BOOL bSuccess = FALSE;
181
182         h = OpenThread(THREAD_QUERY_INFORMATION | THREAD_SET_INFORMATION, TRUE, pid);
183         if (h != NULL) {
184                 bSuccess = SetThreadAffinityMask(h, cpumask);
185                 CloseHandle(h);
186         }
187
188         return (bSuccess)? 0 : -1;
189 }
190
191 static inline void fio_getaffinity(int pid, os_cpu_mask_t *mask)
192 {
193         os_cpu_mask_t systemMask;
194
195         HANDLE h = OpenProcess(PROCESS_QUERY_INFORMATION, TRUE, pid);
196
197         if (h != NULL) {
198                 GetProcessAffinityMask(h, mask, &systemMask);
199                 CloseHandle(h);
200         } else {
201                 log_err("fio_getaffinity failed: failed to get handle for pid %d\n", pid);
202         }
203 }
204
205 static inline void fio_cpu_clear(os_cpu_mask_t *mask, int cpu)
206 {
207         *mask ^= 1 << (cpu-1);
208 }
209
210 static inline void fio_cpu_set(os_cpu_mask_t *mask, int cpu)
211 {
212         *mask |= 1 << (cpu-1);
213 }
214
215 static inline int fio_cpuset_init(os_cpu_mask_t *mask)
216 {
217         *mask = 0;
218         return 0;
219 }
220
221 static inline int fio_cpuset_exit(os_cpu_mask_t *mask)
222 {
223         return 0;
224 }
225
226 static inline int init_random_state(struct thread_data *td, unsigned long *rand_seeds, int size)
227 {
228         HCRYPTPROV hCryptProv;
229
230         if (!CryptAcquireContext(&hCryptProv, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
231         {
232                 errno = GetLastError();
233                 log_err("CryptAcquireContext() failed: error %d\n", errno);
234                 return 1;
235         }
236
237         if (!CryptGenRandom(hCryptProv, size, (BYTE*)rand_seeds)) {
238                 errno = GetLastError();
239                 log_err("CryptGenRandom() failed, error %d\n", errno);
240                 CryptReleaseContext(hCryptProv, 0);
241                 return 1;
242         }
243
244         CryptReleaseContext(hCryptProv, 0);
245         td_fill_rand_seeds(td);
246         return 0;
247 }
248
249
250 #endif /* FIO_OS_WINDOWS_H */