1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147
|
/* This file contains functions which implement those POSIX and Linux functions
* that MinGW and Microsoft don't provide. The implementations contain just enough
* functionality to support fio.
*/
#include <arpa/inet.h>
#include <netinet/in.h>
#include <windows.h>
#include <stddef.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <dirent.h>
#include <pthread.h>
#include <time.h>
#include <semaphore.h>
#include <sys/shm.h>
#include <sys/mman.h>
#include <sys/uio.h>
#include <sys/resource.h>
#include <poll.h>
#include <sys/wait.h>
#include <setjmp.h>
#include "../os-windows.h"
#include "../../lib/hweight.h"
extern unsigned long mtime_since_now(struct timespec *);
extern void fio_gettime(struct timespec *, void *);
int win_to_posix_error(DWORD winerr)
{
switch (winerr) {
case ERROR_SUCCESS:
return 0;
case ERROR_FILE_NOT_FOUND:
return ENOENT;
case ERROR_PATH_NOT_FOUND:
return ENOENT;
case ERROR_ACCESS_DENIED:
return EACCES;
case ERROR_INVALID_HANDLE:
return EBADF;
case ERROR_NOT_ENOUGH_MEMORY:
return ENOMEM;
case ERROR_INVALID_DATA:
return EINVAL;
case ERROR_OUTOFMEMORY:
return ENOMEM;
case ERROR_INVALID_DRIVE:
return ENODEV;
case ERROR_NOT_SAME_DEVICE:
return EXDEV;
case ERROR_WRITE_PROTECT:
return EROFS;
case ERROR_BAD_UNIT:
return ENODEV;
case ERROR_NOT_READY:
return EAGAIN;
case ERROR_SHARING_VIOLATION:
return EACCES;
case ERROR_LOCK_VIOLATION:
return EACCES;
case ERROR_SHARING_BUFFER_EXCEEDED:
return ENOLCK;
case ERROR_HANDLE_DISK_FULL:
return ENOSPC;
case ERROR_NOT_SUPPORTED:
return ENOSYS;
case ERROR_FILE_EXISTS:
return EEXIST;
case ERROR_CANNOT_MAKE:
return EPERM;
case ERROR_INVALID_PARAMETER:
return EINVAL;
case ERROR_NO_PROC_SLOTS:
return EAGAIN;
case ERROR_BROKEN_PIPE:
return EPIPE;
case ERROR_OPEN_FAILED:
return EIO;
case ERROR_NO_MORE_SEARCH_HANDLES:
return ENFILE;
case ERROR_CALL_NOT_IMPLEMENTED:
return ENOSYS;
case ERROR_INVALID_NAME:
return ENOENT;
case ERROR_WAIT_NO_CHILDREN:
return ECHILD;
case ERROR_CHILD_NOT_COMPLETE:
return EBUSY;
case ERROR_DIR_NOT_EMPTY:
return ENOTEMPTY;
case ERROR_SIGNAL_REFUSED:
return EIO;
case ERROR_BAD_PATHNAME:
return ENOENT;
case ERROR_SIGNAL_PENDING:
return EBUSY;
case ERROR_MAX_THRDS_REACHED:
return EAGAIN;
case ERROR_BUSY:
return EBUSY;
case ERROR_ALREADY_EXISTS:
return EEXIST;
case ERROR_NO_SIGNAL_SENT:
return EIO;
case ERROR_FILENAME_EXCED_RANGE:
return EINVAL;
case ERROR_META_EXPANSION_TOO_LONG:
return EINVAL;
case ERROR_INVALID_SIGNAL_NUMBER:
return EINVAL;
case ERROR_THREAD_1_INACTIVE:
return EINVAL;
case ERROR_BAD_PIPE:
return EINVAL;
case ERROR_PIPE_BUSY:
return EBUSY;
case ERROR_NO_DATA:
return EPIPE;
case ERROR_MORE_DATA:
return EAGAIN;
case ERROR_DIRECTORY:
return ENOTDIR;
case ERROR_PIPE_CONNECTED:
return EBUSY;
case ERROR_NO_TOKEN:
return EINVAL;
case ERROR_PROCESS_ABORTED:
return EFAULT;
case ERROR_BAD_DEVICE:
return ENODEV;
case ERROR_BAD_USERNAME:
return EINVAL;
case ERROR_OPEN_FILES:
return EAGAIN;
case ERROR_ACTIVE_CONNECTIONS:
return EAGAIN;
case ERROR_DEVICE_IN_USE:
return EBUSY;
case ERROR_INVALID_AT_INTERRUPT_TIME:
return EINTR;
case ERROR_IO_DEVICE:
return EIO;
case ERROR_NOT_OWNER:
return EPERM;
case ERROR_END_OF_MEDIA:
return ENOSPC;
case ERROR_EOM_OVERFLOW:
return ENOSPC;
case ERROR_BEGINNING_OF_MEDIA:
return ESPIPE;
case ERROR_SETMARK_DETECTED:
return ESPIPE;
case ERROR_NO_DATA_DETECTED:
return ENOSPC;
case ERROR_POSSIBLE_DEADLOCK:
return EDEADLOCK;
case ERROR_CRC:
return EIO;
case ERROR_NEGATIVE_SEEK:
return EINVAL;
case ERROR_DISK_FULL:
return ENOSPC;
case ERROR_NOACCESS:
return EFAULT;
case ERROR_FILE_INVALID:
return ENXIO;
default:
log_err("fio: windows error %lu not handled\n", winerr);
return EIO;
}
return winerr;
}
int GetNumLogicalProcessors(void)
{
SYSTEM_LOGICAL_PROCESSOR_INFORMATION *processor_info = NULL;
DWORD len = 0;
DWORD num_processors = 0;
DWORD error = 0;
DWORD i;
while (!GetLogicalProcessorInformation(processor_info, &len)) {
error = GetLastError();
if (error == ERROR_INSUFFICIENT_BUFFER)
processor_info = malloc(len);
else {
log_err("Error: GetLogicalProcessorInformation failed: %lu\n",
error);
return -1;
}
if (processor_info == NULL) {
log_err("Error: failed to allocate memory for GetLogicalProcessorInformation");
return -1;
}
}
for (i = 0; i < len / sizeof(SYSTEM_LOGICAL_PROCESSOR_INFORMATION); i++) {
if (processor_info[i].Relationship == RelationProcessorCore)
num_processors += hweight64(processor_info[i].ProcessorMask);
}
free(processor_info);
return num_processors;
}
long sysconf(int name)
{
long val = -1;
long val2 = -1;
SYSTEM_INFO sysInfo;
MEMORYSTATUSEX status;
switch (name) {
case _SC_NPROCESSORS_CONF:
/*
* Using GetMaximumProcessorCount introduces a problem in
* gettime.c because Windows does not have
* fio_get_thread_affinity. Log sample (see #1479):
*
* CPU mask contains processor beyond last active processor index (2)
* clock setaffinity failed: No error
*/
val = GetActiveProcessorCount(ALL_PROCESSOR_GROUPS);
if (val == -1)
log_err("sysconf(_SC_NPROCESSORS_CONF) failed\n");
break;
case _SC_PAGESIZE:
GetSystemInfo(&sysInfo);
val = sysInfo.dwPageSize;
break;
case _SC_PHYS_PAGES:
status.dwLength = sizeof(status);
val2 = sysconf(_SC_PAGESIZE);
if (GlobalMemoryStatusEx(&status) && val2 != -1)
val = status.ullTotalPhys / val2;
else
log_err("sysconf(_SC_PHYS_PAGES) failed\n");
break;
default:
log_err("sysconf(%d) is not implemented\n", name);
break;
}
return val;
}
char *dl_error = NULL;
int dlclose(void *handle)
{
return !FreeLibrary((HMODULE)handle);
}
void *dlopen(const char *file, int mode)
{
HMODULE hMod;
hMod = LoadLibrary(file);
if (hMod == INVALID_HANDLE_VALUE)
dl_error = (char*)"LoadLibrary failed";
else
dl_error = NULL;
return hMod;
}
void *dlsym(void *handle, const char *name)
{
FARPROC fnPtr;
fnPtr = GetProcAddress((HMODULE)handle, name);
if (fnPtr == NULL)
dl_error = (char*)"GetProcAddress failed";
else
dl_error = NULL;
return fnPtr;
}
char *dlerror(void)
{
return dl_error;
}
/* Copied from http://blogs.msdn.com/b/joshpoley/archive/2007/12/19/date-time-formats-and-conversions.aspx */
void Time_tToSystemTime(time_t dosTime, SYSTEMTIME *systemTime)
{
FILETIME utcFT;
LONGLONG jan1970;
SYSTEMTIME tempSystemTime;
jan1970 = Int32x32To64(dosTime, 10000000) + 116444736000000000;
utcFT.dwLowDateTime = (DWORD)jan1970;
utcFT.dwHighDateTime = jan1970 >> 32;
FileTimeToSystemTime((FILETIME*)&utcFT, &tempSystemTime);
SystemTimeToTzSpecificLocalTime(NULL, &tempSystemTime, systemTime);
}
char *ctime_r(const time_t *t, char *buf)
{
SYSTEMTIME systime;
const char * const dayOfWeek[] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
const char * const monthOfYear[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
Time_tToSystemTime(*t, &systime);
/*
* We don't know how long `buf` is, but assume it's rounded up from
* the minimum of 25 to 32
*/
snprintf(buf, 32, "%s %s %d %02d:%02d:%02d %04d\n",
dayOfWeek[systime.wDayOfWeek % 7],
monthOfYear[(systime.wMonth - 1) % 12],
systime.wDay, systime.wHour, systime.wMinute,
systime.wSecond, systime.wYear);
return buf;
}
int gettimeofday(struct timeval *restrict tp, void *restrict tzp)
{
FILETIME fileTime;
uint64_t unix_time, windows_time;
const uint64_t MILLISECONDS_BETWEEN_1601_AND_1970 = 11644473600000;
/* Ignore the timezone parameter */
(void)tzp;
/*
* Windows time is stored as the number 100 ns intervals since January 1 1601.
* Conversion details from http://www.informit.com/articles/article.aspx?p=102236&seqNum=3
* Its precision is 100 ns but accuracy is only one clock tick, or normally around 15 ms.
*/
GetSystemTimeAsFileTime(&fileTime);
windows_time = ((uint64_t)fileTime.dwHighDateTime << 32) + fileTime.dwLowDateTime;
/* Divide by 10,000 to convert to ms and subtract the time between 1601 and 1970 */
unix_time = (((windows_time)/10000) - MILLISECONDS_BETWEEN_1601_AND_1970);
/* unix_time is now the number of milliseconds since 1970 (the Unix epoch) */
tp->tv_sec = unix_time / 1000;
tp->tv_usec = (unix_time % 1000) * 1000;
return 0;
}
int sigaction(int sig, const struct sigaction *act, struct sigaction *oact)
{
int rc = 0;
void (*prev_handler)(int);
prev_handler = signal(sig, act->sa_handler);
if (oact != NULL)
oact->sa_handler = prev_handler;
if (prev_handler == SIG_ERR)
rc = -1;
return rc;
}
int lstat(const char *path, struct stat *buf)
{
return stat(path, buf);
}
void *mmap(void *addr, size_t len, int prot, int flags, int fildes, off_t off)
{
DWORD vaProt = 0;
DWORD mapAccess = 0;
DWORD lenlow;
DWORD lenhigh;
HANDLE hMap;
void* allocAddr = NULL;
if (prot & PROT_NONE)
vaProt |= PAGE_NOACCESS;
if ((prot & PROT_READ) && !(prot & PROT_WRITE)) {
vaProt |= PAGE_READONLY;
mapAccess = FILE_MAP_READ;
}
if (prot & PROT_WRITE) {
vaProt |= PAGE_READWRITE;
mapAccess |= FILE_MAP_WRITE;
}
lenlow = len & 0xFFFF;
lenhigh = len >> 16;
/* If the low DWORD is zero and the high DWORD is non-zero, `CreateFileMapping`
will return ERROR_INVALID_PARAMETER. To avoid this, set both to zero. */
if (lenlow == 0)
lenhigh = 0;
if (flags & MAP_ANON || flags & MAP_ANONYMOUS) {
allocAddr = VirtualAlloc(addr, len, MEM_COMMIT, vaProt);
if (allocAddr == NULL)
errno = win_to_posix_error(GetLastError());
} else {
hMap = CreateFileMapping((HANDLE)_get_osfhandle(fildes), NULL,
vaProt, lenhigh, lenlow, NULL);
if (hMap != NULL)
allocAddr = MapViewOfFile(hMap, mapAccess, off >> 16,
off & 0xFFFF, len);
if (hMap == NULL || allocAddr == NULL)
errno = win_to_posix_error(GetLastError());
}
return allocAddr;
}
int munmap(void *addr, size_t len)
{
BOOL success;
/* We may have allocated the memory with either MapViewOfFile or
VirtualAlloc. Therefore, try calling UnmapViewOfFile first, and if that
fails, call VirtualFree. */
success = UnmapViewOfFile(addr);
if (!success)
success = VirtualFree(addr, 0, MEM_RELEASE);
return !success;
}
int msync(void *addr, size_t len, int flags)
{
return !FlushViewOfFile(addr, len);
}
int fork(void)
{
log_err("%s is not implemented\n", __func__);
errno = ENOSYS;
return -1;
}
pid_t setsid(void)
{
log_err("%s is not implemented\n", __func__);
errno = ENOSYS;
return -1;
}
static HANDLE log_file = INVALID_HANDLE_VALUE;
void openlog(const char *ident, int logopt, int facility)
{
if (log_file != INVALID_HANDLE_VALUE)
return;
log_file = CreateFileA("syslog.txt", GENERIC_WRITE,
FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
OPEN_ALWAYS, 0, NULL);
}
void closelog(void)
{
CloseHandle(log_file);
log_file = INVALID_HANDLE_VALUE;
}
void syslog(int priority, const char *message, ... /* argument */)
{
va_list v;
int len;
char *output;
DWORD bytes_written;
if (log_file == INVALID_HANDLE_VALUE) {
log_file = CreateFileA("syslog.txt", GENERIC_WRITE,
FILE_SHARE_READ | FILE_SHARE_WRITE,
NULL, OPEN_ALWAYS, 0, NULL);
}
if (log_file == INVALID_HANDLE_VALUE) {
log_err("syslog: failed to open log file\n");
return;
}
va_start(v, message);
len = _vscprintf(message, v);
output = malloc(len + sizeof(char));
vsprintf(output, message, v);
WriteFile(log_file, output, len, &bytes_written, NULL);
va_end(v);
free(output);
}
int kill(pid_t pid, int sig)
{
errno = ESRCH;
return -1;
}
/*
* This is assumed to be used only by the network code,
* and so doesn't try and handle any of the other cases
*/
int fcntl(int fildes, int cmd, ...)
{
/*
* non-blocking mode doesn't work the same as in BSD sockets,
* so ignore it.
*/
#if 0
va_list ap;
int val, opt, status;
if (cmd == F_GETFL)
return 0;
else if (cmd != F_SETFL) {
errno = EINVAL;
return -1;
}
va_start(ap, 1);
opt = va_arg(ap, int);
if (opt & O_NONBLOCK)
val = 1;
else
val = 0;
status = ioctlsocket((SOCKET)fildes, opt, &val);
if (status == SOCKET_ERROR) {
errno = EINVAL;
val = -1;
}
va_end(ap);
return val;
#endif
return 0;
}
#ifndef CLOCK_MONOTONIC_RAW
#define CLOCK_MONOTONIC_RAW 4
#endif
int mlock(const void * addr, size_t len)
{
SIZE_T min, max;
BOOL success;
HANDLE process = GetCurrentProcess();
success = GetProcessWorkingSetSize(process, &min, &max);
if (!success) {
errno = win_to_posix_error(GetLastError());
return -1;
}
min += len;
max += len;
success = SetProcessWorkingSetSize(process, min, max);
if (!success) {
errno = win_to_posix_error(GetLastError());
return -1;
}
success = VirtualLock((LPVOID)addr, len);
if (!success) {
errno = win_to_posix_error(GetLastError());
return -1;
}
return 0;
}
int munlock(const void * addr, size_t len)
{
BOOL success = VirtualUnlock((LPVOID)addr, len);
if (!success) {
errno = win_to_posix_error(GetLastError());
return -1;
}
return 0;
}
pid_t waitpid(pid_t pid, int *stat_loc, int options)
{
log_err("%s is not implemented\n", __func__);
errno = ENOSYS;
return -1;
}
int usleep(useconds_t useconds)
{
Sleep(useconds / 1000);
return 0;
}
char *basename(char *path)
{
static char name[MAX_PATH];
int i;
if (path == NULL || strlen(path) == 0)
return (char*)".";
i = strlen(path) - 1;
while (path[i] != '\\' && path[i] != '/' && i >= 0)
i--;
name[MAX_PATH - 1] = '\0';
strncpy(name, path + i + 1, MAX_PATH - 1);
return name;
}
int fsync(int fildes)
{
HANDLE hFile = (HANDLE)_get_osfhandle(fildes);
if (!FlushFileBuffers(hFile)) {
errno = win_to_posix_error(GetLastError());
return -1;
}
return 0;
}
int nFileMappings = 0;
HANDLE fileMappings[1024];
int shmget(key_t key, size_t size, int shmflg)
{
int mapid = -1;
uint32_t size_low = size & 0xFFFFFFFF;
uint32_t size_high = ((uint64_t)size) >> 32;
HANDLE hMapping;
hMapping = CreateFileMapping(INVALID_HANDLE_VALUE, NULL,
PAGE_EXECUTE_READWRITE | SEC_RESERVE,
size_high, size_low, NULL);
if (hMapping != NULL) {
fileMappings[nFileMappings] = hMapping;
mapid = nFileMappings;
nFileMappings++;
} else
errno = ENOSYS;
return mapid;
}
void *shmat(int shmid, const void *shmaddr, int shmflg)
{
void *mapAddr;
MEMORY_BASIC_INFORMATION memInfo;
mapAddr = MapViewOfFile(fileMappings[shmid], FILE_MAP_ALL_ACCESS, 0, 0, 0);
if (mapAddr == NULL) {
errno = win_to_posix_error(GetLastError());
return (void*)-1;
}
if (VirtualQuery(mapAddr, &memInfo, sizeof(memInfo)) == 0) {
errno = win_to_posix_error(GetLastError());
return (void*)-1;
}
mapAddr = VirtualAlloc(mapAddr, memInfo.RegionSize, MEM_COMMIT, PAGE_READWRITE);
if (mapAddr == NULL) {
errno = win_to_posix_error(GetLastError());
return (void*)-1;
}
return mapAddr;
}
int shmdt(const void *shmaddr)
{
if (!UnmapViewOfFile(shmaddr)) {
errno = win_to_posix_error(GetLastError());
return -1;
}
return 0;
}
int shmctl(int shmid, int cmd, struct shmid_ds *buf)
{
if (cmd == IPC_RMID) {
fileMappings[shmid] = INVALID_HANDLE_VALUE;
return 0;
}
log_err("%s is not implemented\n", __func__);
errno = ENOSYS;
return -1;
}
int setuid(uid_t uid)
{
log_err("%s is not implemented\n", __func__);
errno = ENOSYS;
return -1;
}
int setgid(gid_t gid)
{
log_err("%s is not implemented\n", __func__);
errno = ENOSYS;
return -1;
}
int nice(int incr)
{
DWORD prioclass = NORMAL_PRIORITY_CLASS;
if (incr < -15)
prioclass = HIGH_PRIORITY_CLASS;
else if (incr < 0)
prioclass = ABOVE_NORMAL_PRIORITY_CLASS;
else if (incr > 15)
prioclass = IDLE_PRIORITY_CLASS;
else if (incr > 0)
prioclass = BELOW_NORMAL_PRIORITY_CLASS;
if (!SetPriorityClass(GetCurrentProcess(), prioclass))
log_err("fio: SetPriorityClass failed\n");
return 0;
}
int getrusage(int who, struct rusage *r_usage)
{
const uint64_t SECONDS_BETWEEN_1601_AND_1970 = 11644473600;
FILETIME cTime, eTime, kTime, uTime;
time_t time;
HANDLE h;
memset(r_usage, 0, sizeof(*r_usage));
if (who == RUSAGE_SELF) {
h = GetCurrentProcess();
GetProcessTimes(h, &cTime, &eTime, &kTime, &uTime);
} else if (who == RUSAGE_THREAD) {
h = GetCurrentThread();
GetThreadTimes(h, &cTime, &eTime, &kTime, &uTime);
} else {
log_err("fio: getrusage %d is not implemented\n", who);
return -1;
}
time = ((uint64_t)uTime.dwHighDateTime << 32) + uTime.dwLowDateTime;
/* Divide by 10,000,000 to get the number of seconds and move the epoch from
* 1601 to 1970 */
time = (time_t)(((time)/10000000) - SECONDS_BETWEEN_1601_AND_1970);
r_usage->ru_utime.tv_sec = time;
/* getrusage() doesn't care about anything other than seconds, so set tv_usec to 0 */
r_usage->ru_utime.tv_usec = 0;
time = ((uint64_t)kTime.dwHighDateTime << 32) + kTime.dwLowDateTime;
/* Divide by 10,000,000 to get the number of seconds and move the epoch from
* 1601 to 1970 */
time = (time_t)(((time)/10000000) - SECONDS_BETWEEN_1601_AND_1970);
r_usage->ru_stime.tv_sec = time;
r_usage->ru_stime.tv_usec = 0;
return 0;
}
int posix_madvise(void *addr, size_t len, int advice)
{
return ENOSYS;
}
int fdatasync(int fildes)
{
return fsync(fildes);
}
ssize_t pwrite(int fildes, const void *buf, size_t nbyte,
off_t offset)
{
int64_t pos = _telli64(fildes);
ssize_t len;
_lseeki64(fildes, offset, SEEK_SET);
len = _write(fildes, buf, nbyte);
_lseeki64(fildes, pos, SEEK_SET);
return len;
}
ssize_t pread(int fildes, void *buf, size_t nbyte, off_t offset)
{
int64_t pos = _telli64(fildes);
ssize_t len;
_lseeki64(fildes, offset, SEEK_SET);
len = read(fildes, buf, nbyte);
_lseeki64(fildes, pos, SEEK_SET);
return len;
}
ssize_t readv(int fildes, const struct iovec *iov, int iovcnt)
{
log_err("%s is not implemented\n", __func__);
errno = ENOSYS;
return -1;
}
ssize_t writev(int fildes, const struct iovec *iov, int iovcnt)
{
int i;
DWORD bytes_written = 0;
for (i = 0; i < iovcnt; i++) {
int len;
len = send((SOCKET)fildes, iov[i].iov_base, iov[i].iov_len, 0);
if (len == SOCKET_ERROR) {
DWORD err = GetLastError();
errno = win_to_posix_error(err);
bytes_written = -1;
break;
}
bytes_written += len;
}
return bytes_written;
}
#ifndef _WIN32
long long strtoll(const char *restrict str, char **restrict endptr, int base)
{
return _strtoi64(str, endptr, base);
}
#endif
int poll(struct pollfd fds[], nfds_t nfds, int timeout)
{
struct timeval tv;
struct timeval *to = NULL;
fd_set readfds, writefds, exceptfds;
int i;
int rc;
if (timeout != -1) {
to = &tv;
to->tv_sec = timeout / 1000;
to->tv_usec = (timeout % 1000) * 1000;
}
FD_ZERO(&readfds);
FD_ZERO(&writefds);
FD_ZERO(&exceptfds);
for (i = 0; i < nfds; i++) {
fds[i].revents = 0;
if (fds[i].fd == INVALID_SOCKET)
continue;
if (fds[i].events & POLLIN)
FD_SET(fds[i].fd, &readfds);
if (fds[i].events & POLLOUT)
FD_SET(fds[i].fd, &writefds);
FD_SET(fds[i].fd, &exceptfds);
}
rc = select(nfds, &readfds, &writefds, &exceptfds, to);
if (rc != SOCKET_ERROR) {
for (i = 0; i < nfds; i++) {
if (fds[i].fd == INVALID_SOCKET)
continue;
if ((fds[i].events & POLLIN) && FD_ISSET(fds[i].fd, &readfds))
fds[i].revents |= POLLIN;
if ((fds[i].events & POLLOUT) && FD_ISSET(fds[i].fd, &writefds))
fds[i].revents |= POLLOUT;
if (FD_ISSET(fds[i].fd, &exceptfds))
fds[i].revents |= POLLHUP;
}
}
return rc;
}
DIR *opendir(const char *dirname)
{
struct dirent_ctx *dc = NULL;
HANDLE file;
/* See if we can open it. If not, we'll return an error here */
file = CreateFileA(dirname, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
if (file != INVALID_HANDLE_VALUE) {
CloseHandle(file);
dc = malloc(sizeof(struct dirent_ctx));
snprintf(dc->dirname, sizeof(dc->dirname), "%s", dirname);
dc->find_handle = INVALID_HANDLE_VALUE;
} else {
DWORD error = GetLastError();
if (error == ERROR_FILE_NOT_FOUND)
errno = ENOENT;
else if (error == ERROR_PATH_NOT_FOUND)
errno = ENOTDIR;
else if (error == ERROR_TOO_MANY_OPEN_FILES)
errno = ENFILE;
else if (error == ERROR_ACCESS_DENIED)
errno = EACCES;
else
errno = error;
}
return dc;
}
int closedir(DIR *dirp)
{
if (dirp != NULL && dirp->find_handle != INVALID_HANDLE_VALUE)
FindClose(dirp->find_handle);
free(dirp);
return 0;
}
struct dirent *readdir(DIR *dirp)
{
static struct dirent de;
WIN32_FIND_DATA find_data;
if (dirp == NULL)
return NULL;
if (dirp->find_handle == INVALID_HANDLE_VALUE) {
char search_pattern[MAX_PATH];
snprintf(search_pattern, sizeof(search_pattern), "%s\\*",
dirp->dirname);
dirp->find_handle = FindFirstFileA(search_pattern, &find_data);
if (dirp->find_handle == INVALID_HANDLE_VALUE)
return NULL;
} else {
if (!FindNextFile(dirp->find_handle, &find_data))
return NULL;
}
snprintf(de.d_name, sizeof(de.d_name), find_data.cFileName);
de.d_ino = 0;
return &de;
}
uid_t geteuid(void)
{
log_err("%s is not implemented\n", __func__);
errno = ENOSYS;
return -1;
}
in_addr_t inet_network(const char *cp)
{
in_addr_t hbo;
in_addr_t nbo = inet_addr(cp);
hbo = ((nbo & 0xFF) << 24) + ((nbo & 0xFF00) << 8) + ((nbo & 0xFF0000) >> 8) + ((nbo & 0xFF000000) >> 24);
return hbo;
}
static HANDLE create_named_pipe(char *pipe_name, int wait_connect_time)
{
HANDLE hpipe;
hpipe = CreateNamedPipe (
pipe_name,
PIPE_ACCESS_DUPLEX,
PIPE_WAIT | PIPE_TYPE_BYTE,
1, 0, 0, wait_connect_time, NULL);
if (hpipe == INVALID_HANDLE_VALUE) {
log_err("ConnectNamedPipe failed (%lu).\n", GetLastError());
return INVALID_HANDLE_VALUE;
}
if (!ConnectNamedPipe(hpipe, NULL)) {
log_err("ConnectNamedPipe failed (%lu).\n", GetLastError());
CloseHandle(hpipe);
return INVALID_HANDLE_VALUE;
}
return hpipe;
}
static BOOL windows_create_process(PROCESS_INFORMATION *pi, const char *args, HANDLE *hjob)
{
LPSTR this_cmd_line = GetCommandLine();
LPSTR new_process_cmd_line = malloc((strlen(this_cmd_line)+strlen(args)) * sizeof(char *));
STARTUPINFO si = {0};
DWORD flags = 0;
strcpy(new_process_cmd_line, this_cmd_line);
strcat(new_process_cmd_line, args);
si.cb = sizeof(si);
memset(pi, 0, sizeof(*pi));
if ((hjob != NULL) && (*hjob != INVALID_HANDLE_VALUE))
flags = CREATE_SUSPENDED | CREATE_BREAKAWAY_FROM_JOB;
flags |= CREATE_NEW_CONSOLE;
if( !CreateProcess( NULL,
new_process_cmd_line,
NULL, /* Process handle not inherited */
NULL, /* Thread handle not inherited */
TRUE, /* no handle inheritance */
flags,
NULL, /* Use parent's environment block */
NULL, /* Use parent's starting directory */
&si,
pi )
)
{
log_err("CreateProcess failed (%lu).\n", GetLastError() );
free(new_process_cmd_line);
return 1;
}
if ((hjob != NULL) && (*hjob != INVALID_HANDLE_VALUE)) {
BOOL ret = AssignProcessToJobObject(*hjob, pi->hProcess);
if (!ret) {
log_err("AssignProcessToJobObject failed (%lu).\n", GetLastError() );
return 1;
}
ResumeThread(pi->hThread);
}
free(new_process_cmd_line);
return 0;
}
HANDLE windows_create_job(void)
{
JOBOBJECT_EXTENDED_LIMIT_INFORMATION jeli = { 0 };
BOOL success;
HANDLE hjob = CreateJobObject(NULL, NULL);
jeli.BasicLimitInformation.LimitFlags = JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE;
success = SetInformationJobObject(hjob, JobObjectExtendedLimitInformation, &jeli, sizeof(jeli));
if ( success == 0 ) {
log_err( "SetInformationJobObject failed: error %lu\n", GetLastError() );
return INVALID_HANDLE_VALUE;
}
return hjob;
}
/* wait for a child process to either exit or connect to a child */
static bool monitor_process_till_connect(PROCESS_INFORMATION *pi, HANDLE *hpipe)
{
bool connected = FALSE;
bool process_alive = TRUE;
char buffer[32] = {0};
DWORD bytes_read;
do {
DWORD exit_code;
GetExitCodeProcess(pi->hProcess, &exit_code);
if (exit_code != STILL_ACTIVE) {
dprint(FD_PROCESS, "process %u exited %d\n", GetProcessId(pi->hProcess), exit_code);
break;
}
memset(buffer, 0, sizeof(buffer));
ReadFile(*hpipe, &buffer, sizeof(buffer) - 1, &bytes_read, NULL);
if (bytes_read && strstr(buffer, "connected")) {
dprint(FD_PROCESS, "process %u connected to client\n", GetProcessId(pi->hProcess));
connected = TRUE;
}
usleep(10*1000);
} while (process_alive && !connected);
return connected;
}
/*create a process with --server-internal to emulate fork() */
HANDLE windows_handle_connection(HANDLE hjob, int sk)
{
char pipe_name[64] = "\\\\.\\pipe\\fiointernal-";
char args[128] = " --server-internal=";
PROCESS_INFORMATION pi;
HANDLE hpipe = INVALID_HANDLE_VALUE;
WSAPROTOCOL_INFO protocol_info;
HANDLE ret;
sprintf(pipe_name+strlen(pipe_name), "%d", GetCurrentProcessId());
sprintf(args+strlen(args), "%s", pipe_name);
if (windows_create_process(&pi, args, &hjob) != 0)
return INVALID_HANDLE_VALUE;
else
ret = pi.hProcess;
/* duplicate socket and write the protocol_info to pipe so child can
* duplicate the communication socket */
if (WSADuplicateSocket(sk, GetProcessId(pi.hProcess), &protocol_info)) {
log_err("WSADuplicateSocket failed (%lu).\n", GetLastError());
ret = INVALID_HANDLE_VALUE;
goto cleanup;
}
/* make a pipe with a unique name based upon processid */
hpipe = create_named_pipe(pipe_name, 1000);
if (hpipe == INVALID_HANDLE_VALUE) {
ret = INVALID_HANDLE_VALUE;
goto cleanup;
}
if (!WriteFile(hpipe, &protocol_info, sizeof(protocol_info), NULL, NULL)) {
log_err("WriteFile failed (%lu).\n", GetLastError());
ret = INVALID_HANDLE_VALUE;
goto cleanup;
}
dprint(FD_PROCESS, "process %d created child process %u\n", GetCurrentProcessId(), GetProcessId(pi.hProcess));
/* monitor the process until it either exits or connects. This level
* doesnt care which of those occurs because the result is that it
* needs to loop around and create another child process to monitor */
if (!monitor_process_till_connect(&pi, &hpipe))
ret = INVALID_HANDLE_VALUE;
cleanup:
/* close the handles and pipes because this thread is done monitoring them */
if (ret == INVALID_HANDLE_VALUE)
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
DisconnectNamedPipe(hpipe);
CloseHandle(hpipe);
return ret;
}
|