Add Windows ctime_r implementation and add empty ioctl.h header
[fio.git] / os / windows / posix.c
CommitLineData
9277ec14
BC
1/* This file contains functions which implement those POSIX and Linux functions
2 * that MinGW and Microsoft don't provide. The implementations contain just enough
3 * functionality to support fio.
4 */
5
6#include <arpa/inet.h>
7#include <netinet/in.h>
8#include <windows.h>
9#include <stddef.h>
ad9c0fbc 10#include <string.h>
9277ec14
BC
11#include <stdlib.h>
12#include <unistd.h>
13#include <dirent.h>
14#include <pthread.h>
f16b7405 15#include <time.h>
9277ec14
BC
16#include <semaphore.h>
17#include <sys/shm.h>
18#include <sys/mman.h>
19#include <sys/uio.h>
20#include <sys/resource.h>
21#include <sys/poll.h>
70a61165
BC
22#include <sys/wait.h>
23#include <setjmp.h>
9277ec14
BC
24
25#include "../os-windows.h"
671b0600 26#include "../../lib/hweight.h"
9277ec14 27
21c75387
BC
28extern unsigned long mtime_since_now(struct timeval *);
29extern void fio_gettime(struct timeval *, void *);
30
ad9c0fbc
BC
31/* These aren't defined in the MinGW headers */
32HRESULT WINAPI StringCchCopyA(
33 char *pszDest,
34 size_t cchDest,
35 const char *pszSrc);
36
37HRESULT WINAPI StringCchPrintfA(
38 char *pszDest,
39 size_t cchDest,
40 const char *pszFormat,
41 ...);
42
43int vsprintf_s(
44 char *buffer,
45 size_t numberOfElements,
46 const char *format,
47 va_list argptr);
48
10a6b3c6
BC
49int win_to_posix_error(DWORD winerr)
50{
51 switch (winerr)
52 {
53 case ERROR_FILE_NOT_FOUND: return ENOENT;
54 case ERROR_PATH_NOT_FOUND: return ENOENT;
55 case ERROR_ACCESS_DENIED: return EACCES;
56 case ERROR_INVALID_HANDLE: return EBADF;
57 case ERROR_NOT_ENOUGH_MEMORY: return ENOMEM;
58 case ERROR_INVALID_DATA: return EINVAL;
59 case ERROR_OUTOFMEMORY: return ENOMEM;
60 case ERROR_INVALID_DRIVE: return ENODEV;
61 case ERROR_NOT_SAME_DEVICE: return EXDEV;
62 case ERROR_WRITE_PROTECT: return EROFS;
63 case ERROR_BAD_UNIT: return ENODEV;
64 case ERROR_SHARING_VIOLATION: return EACCES;
65 case ERROR_LOCK_VIOLATION: return EACCES;
66 case ERROR_SHARING_BUFFER_EXCEEDED: return ENOLCK;
67 case ERROR_HANDLE_DISK_FULL: return ENOSPC;
68 case ERROR_NOT_SUPPORTED: return ENOSYS;
69 case ERROR_FILE_EXISTS: return EEXIST;
70 case ERROR_CANNOT_MAKE: return EPERM;
71 case ERROR_INVALID_PARAMETER: return EINVAL;
72 case ERROR_NO_PROC_SLOTS: return EAGAIN;
73 case ERROR_BROKEN_PIPE: return EPIPE;
74 case ERROR_OPEN_FAILED: return EIO;
75 case ERROR_NO_MORE_SEARCH_HANDLES: return ENFILE;
76 case ERROR_CALL_NOT_IMPLEMENTED: return ENOSYS;
77 case ERROR_INVALID_NAME: return ENOENT;
78 case ERROR_WAIT_NO_CHILDREN: return ECHILD;
79 case ERROR_CHILD_NOT_COMPLETE: return EBUSY;
80 case ERROR_DIR_NOT_EMPTY: return ENOTEMPTY;
81 case ERROR_SIGNAL_REFUSED: return EIO;
82 case ERROR_BAD_PATHNAME: return ENOENT;
83 case ERROR_SIGNAL_PENDING: return EBUSY;
84 case ERROR_MAX_THRDS_REACHED: return EAGAIN;
85 case ERROR_BUSY: return EBUSY;
86 case ERROR_ALREADY_EXISTS: return EEXIST;
87 case ERROR_NO_SIGNAL_SENT: return EIO;
88 case ERROR_FILENAME_EXCED_RANGE: return EINVAL;
89 case ERROR_META_EXPANSION_TOO_LONG: return EINVAL;
90 case ERROR_INVALID_SIGNAL_NUMBER: return EINVAL;
91 case ERROR_THREAD_1_INACTIVE: return EINVAL;
92 case ERROR_BAD_PIPE: return EINVAL;
93 case ERROR_PIPE_BUSY: return EBUSY;
94 case ERROR_NO_DATA: return EPIPE;
95 case ERROR_MORE_DATA: return EAGAIN;
96 case ERROR_DIRECTORY: return ENOTDIR;
97 case ERROR_PIPE_CONNECTED: return EBUSY;
98 case ERROR_NO_TOKEN: return EINVAL;
99 case ERROR_PROCESS_ABORTED: return EFAULT;
100 case ERROR_BAD_DEVICE: return ENODEV;
101 case ERROR_BAD_USERNAME: return EINVAL;
102 case ERROR_OPEN_FILES: return EAGAIN;
103 case ERROR_ACTIVE_CONNECTIONS: return EAGAIN;
104 case ERROR_DEVICE_IN_USE: return EAGAIN;
105 case ERROR_INVALID_AT_INTERRUPT_TIME: return EINTR;
106 case ERROR_IO_DEVICE: return EIO;
107 case ERROR_NOT_OWNER: return EPERM;
108 case ERROR_END_OF_MEDIA: return ENOSPC;
109 case ERROR_EOM_OVERFLOW: return ENOSPC;
110 case ERROR_BEGINNING_OF_MEDIA: return ESPIPE;
111 case ERROR_SETMARK_DETECTED: return ESPIPE;
112 case ERROR_NO_DATA_DETECTED: return ENOSPC;
113 case ERROR_POSSIBLE_DEADLOCK: return EDEADLOCK;
114 case ERROR_CRC: return EIO;
115 case ERROR_NEGATIVE_SEEK: return EINVAL;
116 case ERROR_DISK_FULL: return ENOSPC;
117 case ERROR_NOACCESS: return EFAULT;
118 case ERROR_FILE_INVALID: return ENXIO;
119 }
120
121 return winerr;
122}
123
671b0600
BC
124int GetNumLogicalProcessors(void)
125{
126 SYSTEM_LOGICAL_PROCESSOR_INFORMATION *processor_info = NULL;
127 DWORD len = 0;
128 DWORD num_processors = 0;
129 DWORD error = 0;
130 DWORD i;
131
132 while (!GetLogicalProcessorInformation(processor_info, &len)) {
133 error = GetLastError();
134 if (error == ERROR_INSUFFICIENT_BUFFER)
135 processor_info = malloc(len);
136 else {
137 log_err("Error: GetLogicalProcessorInformation failed: %d\n", error);
138 return -1;
139 }
140
141 if (processor_info == NULL) {
142 log_err("Error: failed to allocate memory for GetLogicalProcessorInformation");
143 return -1;
144 }
145 }
146
147 for (i = 0; i < len / sizeof(SYSTEM_LOGICAL_PROCESSOR_INFORMATION); i++)
148 {
149 if (processor_info[i].Relationship == RelationProcessorCore)
4ee47af0 150 num_processors += hweight64(processor_info[i].ProcessorMask);
671b0600
BC
151 }
152
153 free(processor_info);
154 return num_processors;
155}
156
9277ec14
BC
157long sysconf(int name)
158{
671b0600 159 long val = -1;
01d26955 160 long val2 = -1;
9277ec14
BC
161 SYSTEM_INFO sysInfo;
162 MEMORYSTATUSEX status;
163
164 switch (name)
165 {
166 case _SC_NPROCESSORS_ONLN:
671b0600
BC
167 val = GetNumLogicalProcessors();
168 if (val == -1)
01d26955 169 log_err("sysconf(_SC_NPROCESSORS_ONLN) failed\n");
671b0600 170
9277ec14
BC
171 break;
172
173 case _SC_PAGESIZE:
174 GetSystemInfo(&sysInfo);
175 val = sysInfo.dwPageSize;
176 break;
177
178 case _SC_PHYS_PAGES:
179 status.dwLength = sizeof(status);
01d26955
BC
180 val2 = sysconf(_SC_PAGESIZE);
181 if (GlobalMemoryStatusEx(&status) && val2 != -1)
182 val = status.ullTotalPhys / val2;
183 else
184 log_err("sysconf(_SC_PHYS_PAGES) failed\n");
9277ec14
BC
185 break;
186 default:
187 log_err("sysconf(%d) is not implemented\n", name);
188 break;
189 }
190
191 return val;
192}
193
194char *dl_error = NULL;
195
196int dlclose(void *handle)
197{
198 return !FreeLibrary((HMODULE)handle);
199}
200
201void *dlopen(const char *file, int mode)
202{
203 HMODULE hMod;
204
205 hMod = LoadLibrary(file);
206 if (hMod == INVALID_HANDLE_VALUE)
207 dl_error = (char*)"LoadLibrary failed";
208 else
209 dl_error = NULL;
210
211 return hMod;
212}
213
214void *dlsym(void *handle, const char *name)
215{
216 FARPROC fnPtr;
217
218 fnPtr = GetProcAddress((HMODULE)handle, name);
219 if (fnPtr == NULL)
220 dl_error = (char*)"GetProcAddress failed";
221 else
222 dl_error = NULL;
223
224 return fnPtr;
225}
226
227char *dlerror(void)
228{
229 return dl_error;
230}
231
ba55bfa9
BC
232/* Copied from http://blogs.msdn.com/b/joshpoley/archive/2007/12/19/date-time-formats-and-conversions.aspx */
233void Time_tToSystemTime(time_t dosTime, SYSTEMTIME *systemTime)
234{
235 LARGE_INTEGER jan1970FT;
236 LARGE_INTEGER utcFT;
237 jan1970FT.QuadPart = 116444736000000000LL; // january 1st 1970
238 utcFT.QuadPart = ((unsigned __int64)dosTime) * 10000000 + jan1970FT.QuadPart;
239
240 FileTimeToSystemTime((FILETIME*)&utcFT, systemTime);
241}
242
243char* ctime_r(const time_t *t, char *buf)
244{
245 SYSTEMTIME systime;
246 const char * const dayOfWeek[] = { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" };
247 const char * const monthOfYear[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
248
249 Time_tToSystemTime(*t, &systime);
250 /* We don't know how long `buf` is, but assume it's rounded up from the minimum of 25 to 32 */
251 StringCchPrintfA(buf, 32, "%s %s %d %02d:%02d:%02d %04d", dayOfWeek[systime.wDayOfWeek - 1], monthOfYear[systime.wMonth - 1],
252 systime.wDay, systime.wHour, systime.wMinute, systime.wSecond, systime.wYear);
253 return buf;
254}
255
9277ec14
BC
256int gettimeofday(struct timeval *restrict tp, void *restrict tzp)
257{
258 FILETIME fileTime;
9576f613
BC
259 uint64_t unix_time, windows_time;
260 const uint64_t MILLISECONDS_BETWEEN_1601_AND_1970 = 11644473600000;
9277ec14 261
fc0b830f 262 /* Ignore the timezone parameter */
9277ec14
BC
263 (void)tzp;
264
265 /*
266 * Windows time is stored as the number 100 ns intervals since January 1 1601.
267 * Conversion details from http://www.informit.com/articles/article.aspx?p=102236&seqNum=3
268 * Its precision is 100 ns but accuracy is only one clock tick, or normally around 15 ms.
269 */
270 GetSystemTimeAsFileTime(&fileTime);
9576f613 271 windows_time = ((uint64_t)fileTime.dwHighDateTime << 32) + fileTime.dwLowDateTime;
9277ec14
BC
272 /* Divide by 10,000 to convert to ms and subtract the time between 1601 and 1970 */
273 unix_time = (((windows_time)/10000) - MILLISECONDS_BETWEEN_1601_AND_1970);
274 /* unix_time is now the number of milliseconds since 1970 (the Unix epoch) */
275 tp->tv_sec = unix_time / 1000;
276 tp->tv_usec = (unix_time % 1000) * 1000;
277 return 0;
278}
279
9277ec14
BC
280int sigaction(int sig, const struct sigaction *act,
281 struct sigaction *oact)
282{
e5b8f91c
BC
283 int rc = 0;
284 void (*prev_handler)(int);
285
286 prev_handler = signal(sig, act->sa_handler);
287 if (oact != NULL)
288 oact->sa_handler = prev_handler;
289
290 if (prev_handler == SIG_ERR)
291 rc = -1;
292
293 return rc;
9277ec14
BC
294}
295
296int lstat(const char * path, struct stat * buf)
297{
298 return stat(path, buf);
299}
300
301void *mmap(void *addr, size_t len, int prot, int flags,
302 int fildes, off_t off)
303{
304 DWORD vaProt = 0;
305 void* allocAddr = NULL;
306
307 if (prot & PROT_NONE)
308 vaProt |= PAGE_NOACCESS;
309
310 if ((prot & PROT_READ) && !(prot & PROT_WRITE))
311 vaProt |= PAGE_READONLY;
312
313 if (prot & PROT_WRITE)
314 vaProt |= PAGE_READWRITE;
315
316 if ((flags & MAP_ANON) | (flags & MAP_ANONYMOUS))
317 {
318 allocAddr = VirtualAlloc(addr, len, MEM_COMMIT, vaProt);
10a6b3c6
BC
319 if (allocAddr == NULL)
320 errno = win_to_posix_error(GetLastError());
9277ec14
BC
321 }
322
323 return allocAddr;
324}
325
326int munmap(void *addr, size_t len)
327{
10a6b3c6
BC
328 if (!VirtualFree(addr, 0, MEM_RELEASE)) {
329 errno = win_to_posix_error(GetLastError());
330 return -1;
331 }
332
333 return 0;
9277ec14
BC
334}
335
336int fork(void)
337{
338 log_err("%s is not implemented\n", __func__);
339 errno = ENOSYS;
10a6b3c6 340 return -1;
9277ec14
BC
341}
342
343pid_t setsid(void)
344{
345 log_err("%s is not implemented\n", __func__);
346 errno = ENOSYS;
10a6b3c6 347 return -1;
9277ec14
BC
348}
349
ad9c0fbc
BC
350static HANDLE log_file = INVALID_HANDLE_VALUE;
351
9277ec14
BC
352void openlog(const char *ident, int logopt, int facility)
353{
ad9c0fbc
BC
354 if (log_file == INVALID_HANDLE_VALUE)
355 log_file = CreateFileA("syslog.txt", GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_ALWAYS, 0, NULL);
9277ec14
BC
356}
357
358void closelog(void)
359{
ad9c0fbc
BC
360 CloseHandle(log_file);
361 log_file = INVALID_HANDLE_VALUE;
362}
363
364void syslog(int priority, const char *message, ... /* argument */)
365{
366 va_list v;
367 int len;
368 char *output;
369 DWORD bytes_written;
370
371 if (log_file == INVALID_HANDLE_VALUE) {
372 log_file = CreateFileA("syslog.txt", GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_ALWAYS, 0, NULL);
373 }
374
375 if (log_file == INVALID_HANDLE_VALUE) {
376 log_err("syslog: failed to open log file\n");
377 return;
378 }
379
380 va_start(v, message);
381 len = _vscprintf(message, v);
382 output = malloc(len + sizeof(char));
98dc2db5 383 vsprintf(output, message, v);
ad9c0fbc
BC
384 WriteFile(log_file, output, len, &bytes_written, NULL);
385 va_end(v);
98dc2db5 386 free(output);
9277ec14
BC
387}
388
389int kill(pid_t pid, int sig)
390{
391 errno = ESRCH;
10a6b3c6 392 return -1;
9277ec14
BC
393}
394
fc0b830f
BC
395/*
396 * This is assumed to be used only by the network code,
397 * and so doesn't try and handle any of the other cases
398 */
9277ec14
BC
399int fcntl(int fildes, int cmd, ...)
400{
fc0b830f
BC
401 /*
402 * non-blocking mode doesn't work the same as in BSD sockets,
403 * so ignore it.
404 */
9277ec14
BC
405#if 0
406 va_list ap;
407 int val, opt, status;
408
409 if (cmd == F_GETFL)
410 return 0;
411 else if (cmd != F_SETFL) {
412 errno = EINVAL;
10a6b3c6 413 return -1;
9277ec14
BC
414 }
415
416 va_start(ap, 1);
417
418 opt = va_arg(ap, int);
419 if (opt & O_NONBLOCK)
420 val = 1;
421 else
422 val = 0;
423
424 status = ioctlsocket((SOCKET)fildes, opt, &val);
425
426 if (status == SOCKET_ERROR) {
427 errno = EINVAL;
428 val = -1;
429 }
430
431 va_end(ap);
432
433 return val;
434#endif
435return 0;
436}
437
438/*
439 * Get the value of a local clock source.
440 * This implementation supports 2 clocks: CLOCK_MONOTONIC provides high-accuracy
441 * relative time, while CLOCK_REALTIME provides a low-accuracy wall time.
442 */
443int clock_gettime(clockid_t clock_id, struct timespec *tp)
444{
445 int rc = 0;
446
447 if (clock_id == CLOCK_MONOTONIC)
448 {
449 static LARGE_INTEGER freq = {{0,0}};
450 LARGE_INTEGER counts;
5aa23eb8 451 uint64_t t;
9277ec14
BC
452
453 QueryPerformanceCounter(&counts);
454 if (freq.QuadPart == 0)
455 QueryPerformanceFrequency(&freq);
456
457 tp->tv_sec = counts.QuadPart / freq.QuadPart;
458 /* Get the difference between the number of ns stored
459 * in 'tv_sec' and that stored in 'counts' */
5aa23eb8 460 t = tp->tv_sec * freq.QuadPart;
9277ec14
BC
461 t = counts.QuadPart - t;
462 /* 't' now contains the number of cycles since the last second.
463 * We want the number of nanoseconds, so multiply out by 1,000,000,000
464 * and then divide by the frequency. */
465 t *= 1000000000;
466 tp->tv_nsec = t / freq.QuadPart;
467 }
468 else if (clock_id == CLOCK_REALTIME)
469 {
470 /* clock_gettime(CLOCK_REALTIME,...) is just an alias for gettimeofday with a
471 * higher-precision field. */
472 struct timeval tv;
473 gettimeofday(&tv, NULL);
474 tp->tv_sec = tv.tv_sec;
475 tp->tv_nsec = tv.tv_usec * 1000;
476 } else {
477 errno = EINVAL;
478 rc = -1;
479 }
480
481 return rc;
482}
483
484int mlock(const void * addr, size_t len)
485{
10a6b3c6
BC
486 SIZE_T min, max;
487 BOOL success;
488 HANDLE process = GetCurrentProcess();
489
490 success = GetProcessWorkingSetSize(process, &min, &max);
491 if (!success) {
492 errno = win_to_posix_error(GetLastError());
493 return -1;
494 }
495
496 min += len;
497 max += len;
498 success = SetProcessWorkingSetSize(process, min, max);
499 if (!success) {
500 errno = win_to_posix_error(GetLastError());
501 return -1;
502 }
503
504 success = VirtualLock((LPVOID)addr, len);
505 if (!success) {
506 errno = win_to_posix_error(GetLastError());
507 return -1;
508 }
509
510 return 0;
9277ec14
BC
511}
512
513int munlock(const void * addr, size_t len)
514{
10a6b3c6
BC
515 BOOL success = VirtualUnlock((LPVOID)addr, len);
516 if (!success) {
517 errno = win_to_posix_error(GetLastError());
518 return -1;
519 }
520
521 return 0;
9277ec14
BC
522}
523
524pid_t waitpid(pid_t pid, int *stat_loc, int options)
525{
526 log_err("%s is not implemented\n", __func__);
527 errno = ENOSYS;
528 return -1;
529}
530
531int usleep(useconds_t useconds)
532{
533 Sleep(useconds / 1000);
534 return 0;
535}
536
537char *basename(char *path)
538{
539 static char name[MAX_PATH];
540 int i;
541
542 if (path == NULL || strlen(path) == 0)
543 return (char*)".";
544
545 i = strlen(path) - 1;
546
9576f613 547 while (path[i] != '\\' && path[i] != '/' && i >= 0)
9277ec14
BC
548 i--;
549
9576f613 550 strncpy(name, path + i + 1, MAX_PATH);
9277ec14
BC
551
552 return name;
553}
554
9277ec14
BC
555int fsync(int fildes)
556{
557 HANDLE hFile = (HANDLE)_get_osfhandle(fildes);
10a6b3c6
BC
558 if (!FlushFileBuffers(hFile)) {
559 errno = win_to_posix_error(GetLastError());
560 return -1;
561 }
562
563 return 0;
9277ec14
BC
564}
565
566int nFileMappings = 0;
567HANDLE fileMappings[1024];
568
569int shmget(key_t key, size_t size, int shmflg)
570{
571 int mapid = -1;
d3987946
BC
572 uint32_t size_low = size & 0xFFFFFFFF;
573 uint32_t size_high = ((uint64_t)size) >> 32;
574 HANDLE hMapping = CreateFileMapping(INVALID_HANDLE_VALUE, NULL, (PAGE_EXECUTE_READWRITE | SEC_RESERVE), size_high, size_low, NULL);
9277ec14
BC
575 if (hMapping != NULL) {
576 fileMappings[nFileMappings] = hMapping;
577 mapid = nFileMappings;
578 nFileMappings++;
579 } else {
580 errno = ENOSYS;
581 }
582
583 return mapid;
584}
585
586void *shmat(int shmid, const void *shmaddr, int shmflg)
587{
588 void* mapAddr;
589 MEMORY_BASIC_INFORMATION memInfo;
590 mapAddr = MapViewOfFile(fileMappings[shmid], FILE_MAP_ALL_ACCESS, 0, 0, 0);
10a6b3c6
BC
591 if (mapAddr == NULL) {
592 errno = win_to_posix_error(GetLastError());
593 return (void*)-1;
594 }
595
596 if (VirtualQuery(mapAddr, &memInfo, sizeof(memInfo)) == 0) {
597 errno = win_to_posix_error(GetLastError());
598 return (void*)-1;
599 }
600
9277ec14 601 mapAddr = VirtualAlloc(mapAddr, memInfo.RegionSize, MEM_COMMIT, PAGE_READWRITE);
10a6b3c6
BC
602 if (mapAddr == NULL) {
603 errno = win_to_posix_error(GetLastError());
604 return (void*)-1;
605 }
606
9277ec14
BC
607 return mapAddr;
608}
609
610int shmdt(const void *shmaddr)
611{
10a6b3c6
BC
612 if (!UnmapViewOfFile(shmaddr)) {
613 errno = win_to_posix_error(GetLastError());
614 return -1;
615 }
616
617 return 0;
9277ec14
BC
618}
619
620int shmctl(int shmid, int cmd, struct shmid_ds *buf)
621{
622 if (cmd == IPC_RMID) {
623 fileMappings[shmid] = INVALID_HANDLE_VALUE;
624 return 0;
625 } else {
626 log_err("%s is not implemented\n", __func__);
627 }
10a6b3c6
BC
628 errno = ENOSYS;
629 return -1;
9277ec14
BC
630}
631
632int setuid(uid_t uid)
633{
634 log_err("%s is not implemented\n", __func__);
635 errno = ENOSYS;
10a6b3c6 636 return -1;
9277ec14
BC
637}
638
639int setgid(gid_t gid)
640{
641 log_err("%s is not implemented\n", __func__);
642 errno = ENOSYS;
10a6b3c6 643 return -1;
9277ec14
BC
644}
645
646int nice(int incr)
647{
648 if (incr != 0) {
649 errno = EINVAL;
650 return -1;
651 }
652
653 return 0;
654}
655
656int getrusage(int who, struct rusage *r_usage)
657{
9576f613 658 const uint64_t SECONDS_BETWEEN_1601_AND_1970 = 11644473600;
9277ec14
BC
659 FILETIME cTime, eTime, kTime, uTime;
660 time_t time;
7732a09b 661 HANDLE h;
9277ec14
BC
662
663 memset(r_usage, 0, sizeof(*r_usage));
664
7732a09b
HL
665 if (who == RUSAGE_SELF) {
666 h = GetCurrentProcess();
667 GetProcessTimes(h, &cTime, &eTime, &kTime, &uTime);
668 } else if (who == RUSAGE_THREAD) {
669 h = GetCurrentThread();
670 GetThreadTimes(h, &cTime, &eTime, &kTime, &uTime);
671 } else {
672 log_err("fio: getrusage %d is not implemented\n", who);
673 return -1;
674 }
675
9576f613 676 time = ((uint64_t)uTime.dwHighDateTime << 32) + uTime.dwLowDateTime;
9277ec14
BC
677 /* Divide by 10,000,000 to get the number of seconds and move the epoch from
678 * 1601 to 1970 */
679 time = (time_t)(((time)/10000000) - SECONDS_BETWEEN_1601_AND_1970);
680 r_usage->ru_utime.tv_sec = time;
681 /* getrusage() doesn't care about anything other than seconds, so set tv_usec to 0 */
682 r_usage->ru_utime.tv_usec = 0;
9576f613 683 time = ((uint64_t)kTime.dwHighDateTime << 32) + kTime.dwLowDateTime;
9277ec14
BC
684 /* Divide by 10,000,000 to get the number of seconds and move the epoch from
685 * 1601 to 1970 */
686 time = (time_t)(((time)/10000000) - SECONDS_BETWEEN_1601_AND_1970);
687 r_usage->ru_stime.tv_sec = time;
688 r_usage->ru_stime.tv_usec = 0;
689 return 0;
690}
691
692int posix_madvise(void *addr, size_t len, int advice)
693{
694 log_err("%s is not implemented\n", __func__);
695 return ENOSYS;
696}
697
fc0b830f 698/* Windows doesn't support advice for memory pages. Just ignore it. */
9277ec14
BC
699int msync(void *addr, size_t len, int flags)
700{
9277ec14
BC
701 errno = ENOSYS;
702 return -1;
703}
704
705int fdatasync(int fildes)
706{
707 return fsync(fildes);
708}
709
710ssize_t pwrite(int fildes, const void *buf, size_t nbyte,
711 off_t offset)
712{
9576f613
BC
713 int64_t pos = _telli64(fildes);
714 ssize_t len = _write(fildes, buf, nbyte);
715 _lseeki64(fildes, pos, SEEK_SET);
9277ec14
BC
716 return len;
717}
718
719ssize_t pread(int fildes, void *buf, size_t nbyte, off_t offset)
720{
9576f613 721 int64_t pos = _telli64(fildes);
9277ec14 722 ssize_t len = read(fildes, buf, nbyte);
9576f613 723 _lseeki64(fildes, pos, SEEK_SET);
9277ec14
BC
724 return len;
725}
726
727ssize_t readv(int fildes, const struct iovec *iov, int iovcnt)
728{
729 log_err("%s is not implemented\n", __func__);
730 errno = ENOSYS;
10a6b3c6 731 return -1;
9277ec14
BC
732}
733
734ssize_t writev(int fildes, const struct iovec *iov, int iovcnt)
735{
70a61165
BC
736 int i;
737 DWORD bytes_written = 0;
738 for (i = 0; i < iovcnt; i++)
739 {
740 int len = send((SOCKET)fildes, iov[i].iov_base, iov[i].iov_len, 0);
741 if (len == SOCKET_ERROR)
742 {
743 DWORD err = GetLastError();
744 errno = win_to_posix_error(err);
745 bytes_written = -1;
746 break;
747 }
748 bytes_written += len;
749 }
750
751 return bytes_written;
9277ec14
BC
752}
753
754long long strtoll(const char *restrict str, char **restrict endptr,
755 int base)
756{
757 return _strtoi64(str, endptr, base);
758}
759
9277ec14
BC
760int poll(struct pollfd fds[], nfds_t nfds, int timeout)
761{
762 struct timeval tv;
763 struct timeval *to = NULL;
764 fd_set readfds, writefds, exceptfds;
765 int i;
766 int rc;
767
3f457bea 768 if (timeout != -1) {
f9a58c2a 769 to = &tv;
3f457bea
BC
770 to->tv_sec = timeout / 1000;
771 to->tv_usec = (timeout % 1000) * 1000;
772 }
9277ec14
BC
773
774 FD_ZERO(&readfds);
775 FD_ZERO(&writefds);
776 FD_ZERO(&exceptfds);
777
778 for (i = 0; i < nfds; i++)
779 {
780 if (fds[i].fd < 0) {
781 fds[i].revents = 0;
782 continue;
783 }
784
785 if (fds[i].events & POLLIN)
786 FD_SET(fds[i].fd, &readfds);
787
788 if (fds[i].events & POLLOUT)
789 FD_SET(fds[i].fd, &writefds);
790
f9a58c2a 791 FD_SET(fds[i].fd, &exceptfds);
9277ec14 792 }
9277ec14
BC
793 rc = select(nfds, &readfds, &writefds, &exceptfds, to);
794
795 if (rc != SOCKET_ERROR) {
796 for (i = 0; i < nfds; i++)
797 {
798 if (fds[i].fd < 0) {
799 continue;
800 }
801
802 if ((fds[i].events & POLLIN) && FD_ISSET(fds[i].fd, &readfds))
803 fds[i].revents |= POLLIN;
804
805 if ((fds[i].events & POLLOUT) && FD_ISSET(fds[i].fd, &writefds))
806 fds[i].revents |= POLLOUT;
807
808 if (FD_ISSET(fds[i].fd, &exceptfds))
809 fds[i].revents |= POLLHUP;
810 }
811 }
9277ec14
BC
812 return rc;
813}
814
815int nanosleep(const struct timespec *rqtp, struct timespec *rmtp)
816{
21c75387
BC
817 struct timeval tv;
818 DWORD ms_remaining;
819 DWORD ms_total = (rqtp->tv_sec * 1000) + (rqtp->tv_nsec / 1000000.0);
820
821 if (ms_total == 0)
822 ms_total = 1;
823
824 ms_remaining = ms_total;
825
826 /* Since Sleep() can sleep for less than the requested time, add a loop to
827 ensure we only return after the requested length of time has elapsed */
828 do {
829 fio_gettime(&tv, NULL);
830 Sleep(ms_remaining);
831 ms_remaining = ms_total - mtime_since_now(&tv);
832 } while (ms_remaining > 0 && ms_remaining < ms_total);
833
834 /* this implementation will never sleep for less than the requested time */
835 if (rmtp != NULL) {
836 rmtp->tv_sec = 0;
837 rmtp->tv_nsec = 0;
838 }
839
840 return 0;
9277ec14
BC
841}
842
843DIR *opendir(const char *dirname)
844{
01d26955
BC
845 struct dirent_ctx *dc = NULL;
846
847 /* See if we can open it. If not, we'll return an error here */
848 HANDLE file = CreateFileA(dirname, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
849 if (file != INVALID_HANDLE_VALUE) {
850 CloseHandle(file);
851 dc = (struct dirent_ctx*)malloc(sizeof(struct dirent_ctx));
852 StringCchCopyA(dc->dirname, MAX_PATH, dirname);
853 dc->find_handle = INVALID_HANDLE_VALUE;
854 } else {
855 DWORD error = GetLastError();
856 if (error == ERROR_FILE_NOT_FOUND)
857 errno = ENOENT;
858
859 else if (error == ERROR_PATH_NOT_FOUND)
860 errno = ENOTDIR;
861 else if (error == ERROR_TOO_MANY_OPEN_FILES)
862 errno = ENFILE;
863 else if (error == ERROR_ACCESS_DENIED)
864 errno = EACCES;
865 else
866 errno = error;
867 }
868
869 return dc;
9277ec14
BC
870}
871
872int closedir(DIR *dirp)
873{
01d26955
BC
874 if (dirp != NULL && dirp->find_handle != INVALID_HANDLE_VALUE)
875 FindClose(dirp->find_handle);
ad9c0fbc 876
01d26955
BC
877 free(dirp);
878 return 0;
9277ec14
BC
879}
880
881struct dirent *readdir(DIR *dirp)
882{
ad9c0fbc
BC
883 static struct dirent de;
884 WIN32_FIND_DATA find_data;
885
886 if (dirp == NULL)
887 return NULL;
888
889 if (dirp->find_handle == INVALID_HANDLE_VALUE) {
890 char search_pattern[MAX_PATH];
891 StringCchPrintfA(search_pattern, MAX_PATH, "%s\\*", dirp->dirname);
892 dirp->find_handle = FindFirstFileA(search_pattern, &find_data);
893 if (dirp->find_handle == INVALID_HANDLE_VALUE)
894 return NULL;
895 } else {
896 if (!FindNextFile(dirp->find_handle, &find_data))
897 return NULL;
898 }
899
900 StringCchCopyA(de.d_name, MAX_PATH, find_data.cFileName);
901 de.d_ino = 0;
902
903 return &de;
9277ec14
BC
904}
905
906uid_t geteuid(void)
907{
908 log_err("%s is not implemented\n", __func__);
909 errno = ENOSYS;
910 return -1;
911}
912
f16b7405
BC
913in_addr_t inet_network(const char *cp)
914{
915 in_addr_t hbo;
916 in_addr_t nbo = inet_addr(cp);
917 hbo = ((nbo & 0xFF) << 24) + ((nbo & 0xFF00) << 8) + ((nbo & 0xFF0000) >> 8) + ((nbo & 0xFF000000) >> 24);
918 return hbo;
919}
920
9277ec14
BC
921const char* inet_ntop(int af, const void *restrict src,
922 char *restrict dst, socklen_t size)
923{
924 INT status = SOCKET_ERROR;
925 WSADATA wsd;
926 char *ret = NULL;
927
928 if (af != AF_INET && af != AF_INET6) {
929 errno = EAFNOSUPPORT;
930 return NULL;
931 }
932
933 WSAStartup(MAKEWORD(2,2), &wsd);
934
935 if (af == AF_INET) {
936 struct sockaddr_in si;
937 DWORD len = size;
938 memset(&si, 0, sizeof(si));
939 si.sin_family = af;
940 memcpy(&si.sin_addr, src, sizeof(si.sin_addr));
941 status = WSAAddressToString((struct sockaddr*)&si, sizeof(si), NULL, dst, &len);
942 } else if (af == AF_INET6) {
943 struct sockaddr_in6 si6;
944 DWORD len = size;
945 memset(&si6, 0, sizeof(si6));
946 si6.sin6_family = af;
947 memcpy(&si6.sin6_addr, src, sizeof(si6.sin6_addr));
948 status = WSAAddressToString((struct sockaddr*)&si6, sizeof(si6), NULL, dst, &len);
949 }
950
951 if (status != SOCKET_ERROR)
952 ret = dst;
953 else
954 errno = ENOSPC;
955
956 WSACleanup();
3f457bea 957
9277ec14
BC
958 return ret;
959}
960
961int inet_pton(int af, const char *restrict src, void *restrict dst)
962{
963 INT status = SOCKET_ERROR;
964 WSADATA wsd;
965 int ret = 1;
966
967 if (af != AF_INET && af != AF_INET6) {
968 errno = EAFNOSUPPORT;
969 return -1;
970 }
971
972 WSAStartup(MAKEWORD(2,2), &wsd);
973
974 if (af == AF_INET) {
975 struct sockaddr_in si;
976 INT len = sizeof(si);
977 memset(&si, 0, sizeof(si));
978 si.sin_family = af;
979 status = WSAStringToAddressA((char*)src, af, NULL, (struct sockaddr*)&si, &len);
980 if (status != SOCKET_ERROR)
981 memcpy(dst, &si.sin_addr, sizeof(si.sin_addr));
982 } else if (af == AF_INET6) {
983 struct sockaddr_in6 si6;
984 INT len = sizeof(si6);
985 memset(&si6, 0, sizeof(si6));
986 si6.sin6_family = af;
987 status = WSAStringToAddressA((char*)src, af, NULL, (struct sockaddr*)&si6, &len);
988 if (status != SOCKET_ERROR)
989 memcpy(dst, &si6.sin6_addr, sizeof(si6.sin6_addr));
990 }
991
992 if (status == SOCKET_ERROR) {
993 errno = ENOSPC;
994 ret = 0;
995 }
996
997 WSACleanup();
998
999 return ret;
1000}