windows: drop XP support
[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>
5aa23eb8 10#include <winsock2.h>
93bcfd20
BC
11#include <windows.h>
12#include <psapi.h>
13#include <stdlib.h>
14
15#include "../smalloc.h"
a6ab5391 16#include "../debug.h"
93bcfd20
BC
17#include "../file.h"
18#include "../log.h"
95db3079 19#include "../lib/hweight.h"
984f30c9 20#include "../oslib/strcasestr.h"
52fd65f4 21#include "../lib/types.h"
93bcfd20 22
1f81991e 23#include "windows/posix.h"
26dcc084 24#include "os-windows-7.h"
1f81991e 25
f16b7405
BC
26#ifndef PTHREAD_STACK_MIN
27#define PTHREAD_STACK_MIN 65535
28#endif
29
93bcfd20
BC
30#define FIO_HAVE_ODIRECT
31#define FIO_HAVE_CPU_AFFINITY
32#define FIO_HAVE_CHARDEV_SIZE
93bcfd20 33#define FIO_HAVE_GETTID
df18600f 34#define FIO_EMULATED_MKDIR_TWO
93bcfd20
BC
35
36#define FIO_PREFERRED_ENGINE "windowsaio"
37#define FIO_PREFERRED_CLOCK_SOURCE CS_CGETTIME
87262d97 38#define FIO_OS_PATH_SEPARATOR '\\'
93bcfd20 39
93bcfd20
BC
40#define OS_MAP_ANON MAP_ANON
41
93bcfd20
BC
42#define fio_swap16(x) _byteswap_ushort(x)
43#define fio_swap32(x) _byteswap_ulong(x)
44#define fio_swap64(x) _byteswap_uint64(x)
45
93bcfd20
BC
46#define _SC_PAGESIZE 0x1
47#define _SC_NPROCESSORS_ONLN 0x2
48#define _SC_PHYS_PAGES 0x4
49
50#define SA_RESTART 0
51#define SIGPIPE 0
52
53/*
54 * Windows doesn't have O_DIRECT or O_SYNC, so define them
55 * here so we can reject them at runtime when using the _open
56 * interface (windowsaio uses CreateFile)
57 */
58#define O_DIRECT 0x1000000
59#define O_SYNC 0x2000000
60
61/* Windows doesn't support madvise, so any values will work */
62#define POSIX_MADV_DONTNEED 0
63#define POSIX_MADV_SEQUENTIAL 0
64#define POSIX_MADV_RANDOM 0
65
66#define F_SETFL 0x1
67#define F_GETFL 0x2
68#define O_NONBLOCK FIONBIO
69
70/* Winsock doesn't support MSG_WAIT */
71#define OS_MSG_DONTWAIT 0
72
f64fe5ac
AK
73#ifndef S_ISSOCK
74#define S_ISSOCK(x) 0
75#endif
76
93bcfd20 77#define SIGCONT 0
84306c1d 78#define SIGUSR1 1
2277d5d5 79#define SIGUSR2 2
93bcfd20
BC
80
81typedef int sigset_t;
82typedef int siginfo_t;
83
84struct sigaction
85{
86 void (*sa_handler)(int);
87 sigset_t sa_mask;
88 int sa_flags;
89 void* (*sa_sigaction)(int, siginfo_t *, void*);
90};
91
93bcfd20
BC
92long sysconf(int name);
93
94int kill(pid_t pid, int sig);
95pid_t setsid(void);
96int setgid(gid_t gid);
97int setuid(uid_t uid);
98int nice(int incr);
99int sigaction(int sig, const struct sigaction *act,
100 struct sigaction *oact);
101int fsync(int fildes);
102int fork(void);
103int fcntl(int fildes, int cmd, ...);
104int fdatasync(int fildes);
105int lstat(const char * path, struct stat * buf);
106uid_t geteuid(void);
824d6ff4 107char* ctime_r(const time_t *t, char *buf);
93bcfd20
BC
108int nanosleep(const struct timespec *rqtp, struct timespec *rmtp);
109ssize_t pread(int fildes, void *buf, size_t nbyte, off_t offset);
110ssize_t pwrite(int fildes, const void *buf, size_t nbyte,
111 off_t offset);
93bcfd20
BC
112
113static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
114{
115 int rc = 0;
116 HANDLE hFile;
5aa23eb8
BC
117 GET_LENGTH_INFORMATION info;
118 DWORD outBytes;
93bcfd20
BC
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
93bcfd20
BC
127 if (DeviceIoControl(hFile, IOCTL_DISK_GET_LENGTH_INFO, NULL, 0, &info, sizeof(info), &outBytes, NULL))
128 *bytes = info.Length.QuadPart;
129 else
130 rc = EIO;
131
132 /* If we were passed a POSIX fd,
133 * close the HANDLE we created via CreateFile */
134 if (hFile != INVALID_HANDLE_VALUE && f->hFile == NULL)
135 CloseHandle(hFile);
136
137 return rc;
138}
139
140static inline int chardev_size(struct fio_file *f, unsigned long long *bytes)
141{
142 return blockdev_size(f, bytes);
143}
144
145static inline int blockdev_invalidate_cache(struct fio_file *f)
146{
22de5d77 147 return ENOTSUP;
93bcfd20
BC
148}
149
150static inline unsigned long long os_phys_mem(void)
151{
01d26955 152 long pagesize, pages;
93bcfd20 153
01d26955
BC
154 pagesize = sysconf(_SC_PAGESIZE);
155 pages = sysconf(_SC_PHYS_PAGES);
156 if (pages == -1 || pagesize == -1)
157 return 0;
158
159 return (unsigned long long) pages * (unsigned long long) pagesize;
93bcfd20
BC
160}
161
de5ed0e4 162#ifndef CONFIG_HAVE_GETTID
93bcfd20
BC
163static inline int gettid(void)
164{
165 return GetCurrentThreadId();
166}
de5ed0e4 167#endif
93bcfd20 168
9781c080 169static inline int init_random_seeds(uint64_t *rand_seeds, int size)
93bcfd20
BC
170{
171 HCRYPTPROV hCryptProv;
172
173 if (!CryptAcquireContext(&hCryptProv, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
174 {
175 errno = GetLastError();
176 log_err("CryptAcquireContext() failed: error %d\n", errno);
177 return 1;
178 }
179
180 if (!CryptGenRandom(hCryptProv, size, (BYTE*)rand_seeds)) {
181 errno = GetLastError();
182 log_err("CryptGenRandom() failed, error %d\n", errno);
183 CryptReleaseContext(hCryptProv, 0);
184 return 1;
185 }
186
187 CryptReleaseContext(hCryptProv, 0);
93bcfd20
BC
188 return 0;
189}
190
f2a2ce0e
HL
191static inline int fio_set_sched_idle(void)
192{
193 /* SetThreadPriority returns nonzero for success */
194 return (SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_IDLE))? 0 : -1;
195}
196
df18600f
SW
197static inline int fio_mkdir(const char *path, mode_t mode) {
198 DWORD dwAttr = GetFileAttributesA(path);
199
200 if (dwAttr != INVALID_FILE_ATTRIBUTES &&
201 (dwAttr & FILE_ATTRIBUTE_DIRECTORY)) {
202 errno = EEXIST;
203 return -1;
204 }
205
206 if (CreateDirectoryA(path, NULL) == 0) {
7273058c
SW
207 /* Ignore errors if path is a device namespace */
208 if (strcmp(path, "\\\\.") == 0) {
209 errno = EEXIST;
210 return -1;
211 }
df18600f
SW
212 errno = win_to_posix_error(GetLastError());
213 return -1;
214 }
215
216 return 0;
217}
218
a1957954
BVA
219#define FIO_HAVE_CPU_ONLINE_SYSCONF
220unsigned int cpus_online(void);
f2a2ce0e 221
a1957954
BVA
222int first_set_cpu(os_cpu_mask_t *cpumask);
223int fio_setaffinity(int pid, os_cpu_mask_t cpumask);
224int fio_cpuset_init(os_cpu_mask_t *mask);
225int fio_getaffinity(int pid, os_cpu_mask_t *mask);
226void fio_cpu_clear(os_cpu_mask_t *mask, int cpu);
227void fio_cpu_set(os_cpu_mask_t *mask, int cpu);
228int fio_cpu_isset(os_cpu_mask_t *mask, int cpu);
229int fio_cpu_count(os_cpu_mask_t *mask);
230int fio_cpuset_exit(os_cpu_mask_t *mask);
231
93bcfd20 232#endif /* FIO_OS_WINDOWS_H */