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