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