filesetup: fix directory creation issues
[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
JA
23#include "windows/posix.h"
24
dac7244b 25/* MinGW won't declare rand_r unless _POSIX is defined */
ab917e33
BC
26#if defined(WIN32) && !defined(rand_r)
27int rand_r(unsigned *);
28#endif
29
f16b7405
BC
30#ifndef PTHREAD_STACK_MIN
31#define PTHREAD_STACK_MIN 65535
32#endif
33
93bcfd20
BC
34#define FIO_HAVE_ODIRECT
35#define FIO_HAVE_CPU_AFFINITY
36#define FIO_HAVE_CHARDEV_SIZE
93bcfd20 37#define FIO_HAVE_GETTID
df18600f 38#define FIO_EMULATED_MKDIR_TWO
93bcfd20
BC
39
40#define FIO_PREFERRED_ENGINE "windowsaio"
41#define FIO_PREFERRED_CLOCK_SOURCE CS_CGETTIME
87262d97 42#define FIO_OS_PATH_SEPARATOR '\\'
93bcfd20 43
93bcfd20
BC
44#define OS_MAP_ANON MAP_ANON
45
93bcfd20
BC
46#define fio_swap16(x) _byteswap_ushort(x)
47#define fio_swap32(x) _byteswap_ulong(x)
48#define fio_swap64(x) _byteswap_uint64(x)
49
93bcfd20
BC
50#define _SC_PAGESIZE 0x1
51#define _SC_NPROCESSORS_ONLN 0x2
52#define _SC_PHYS_PAGES 0x4
53
54#define SA_RESTART 0
55#define SIGPIPE 0
56
57/*
58 * Windows doesn't have O_DIRECT or O_SYNC, so define them
59 * here so we can reject them at runtime when using the _open
60 * interface (windowsaio uses CreateFile)
61 */
62#define O_DIRECT 0x1000000
63#define O_SYNC 0x2000000
64
65/* Windows doesn't support madvise, so any values will work */
66#define POSIX_MADV_DONTNEED 0
67#define POSIX_MADV_SEQUENTIAL 0
68#define POSIX_MADV_RANDOM 0
69
70#define F_SETFL 0x1
71#define F_GETFL 0x2
72#define O_NONBLOCK FIONBIO
73
74/* Winsock doesn't support MSG_WAIT */
75#define OS_MSG_DONTWAIT 0
76
f64fe5ac
AK
77#ifndef S_ISSOCK
78#define S_ISSOCK(x) 0
79#endif
80
93bcfd20 81#define SIGCONT 0
84306c1d 82#define SIGUSR1 1
2277d5d5 83#define SIGUSR2 2
93bcfd20
BC
84
85typedef int sigset_t;
86typedef int siginfo_t;
87
88struct sigaction
89{
90 void (*sa_handler)(int);
91 sigset_t sa_mask;
92 int sa_flags;
93 void* (*sa_sigaction)(int, siginfo_t *, void*);
94};
95
93bcfd20
BC
96long sysconf(int name);
97
98int kill(pid_t pid, int sig);
99pid_t setsid(void);
100int setgid(gid_t gid);
101int setuid(uid_t uid);
102int nice(int incr);
103int sigaction(int sig, const struct sigaction *act,
104 struct sigaction *oact);
105int fsync(int fildes);
106int fork(void);
107int fcntl(int fildes, int cmd, ...);
108int fdatasync(int fildes);
109int lstat(const char * path, struct stat * buf);
110uid_t geteuid(void);
824d6ff4 111char* ctime_r(const time_t *t, char *buf);
93bcfd20
BC
112int nanosleep(const struct timespec *rqtp, struct timespec *rmtp);
113ssize_t pread(int fildes, void *buf, size_t nbyte, off_t offset);
114ssize_t pwrite(int fildes, const void *buf, size_t nbyte,
115 off_t offset);
93bcfd20
BC
116
117static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
118{
119 int rc = 0;
120 HANDLE hFile;
5aa23eb8
BC
121 GET_LENGTH_INFORMATION info;
122 DWORD outBytes;
93bcfd20
BC
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
93bcfd20
BC
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{
22de5d77 151 return ENOTSUP;
93bcfd20
BC
152}
153
154static inline unsigned long long os_phys_mem(void)
155{
01d26955 156 long pagesize, pages;
93bcfd20 157
01d26955
BC
158 pagesize = sysconf(_SC_PAGESIZE);
159 pages = sysconf(_SC_PHYS_PAGES);
160 if (pages == -1 || pagesize == -1)
161 return 0;
162
163 return (unsigned long long) pages * (unsigned long long) pagesize;
93bcfd20
BC
164}
165
de5ed0e4 166#ifndef CONFIG_HAVE_GETTID
93bcfd20
BC
167static inline int gettid(void)
168{
169 return GetCurrentThreadId();
170}
de5ed0e4 171#endif
93bcfd20 172
9781c080 173static inline int init_random_seeds(uint64_t *rand_seeds, int size)
93bcfd20
BC
174{
175 HCRYPTPROV hCryptProv;
176
177 if (!CryptAcquireContext(&hCryptProv, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
178 {
179 errno = GetLastError();
180 log_err("CryptAcquireContext() failed: error %d\n", errno);
181 return 1;
182 }
183
184 if (!CryptGenRandom(hCryptProv, size, (BYTE*)rand_seeds)) {
185 errno = GetLastError();
186 log_err("CryptGenRandom() failed, error %d\n", errno);
187 CryptReleaseContext(hCryptProv, 0);
188 return 1;
189 }
190
191 CryptReleaseContext(hCryptProv, 0);
93bcfd20
BC
192 return 0;
193}
194
f2a2ce0e
HL
195static inline int fio_set_sched_idle(void)
196{
197 /* SetThreadPriority returns nonzero for success */
198 return (SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_IDLE))? 0 : -1;
199}
200
df18600f
SW
201static inline int fio_mkdir(const char *path, mode_t mode) {
202 DWORD dwAttr = GetFileAttributesA(path);
203
204 if (dwAttr != INVALID_FILE_ATTRIBUTES &&
205 (dwAttr & FILE_ATTRIBUTE_DIRECTORY)) {
206 errno = EEXIST;
207 return -1;
208 }
209
210 if (CreateDirectoryA(path, NULL) == 0) {
211 log_err("CreateDirectoryA = %d\n", GetLastError());
212 errno = win_to_posix_error(GetLastError());
213 return -1;
214 }
215
216 return 0;
217}
218
a6ab5391 219#ifdef CONFIG_WINDOWS_XP
dac7244b 220#include "os-windows-xp.h"
a6ab5391
SW
221#else
222#include "os-windows-7.h"
223#endif
f2a2ce0e 224
93bcfd20 225#endif /* FIO_OS_WINDOWS_H */