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
|
HANDLE fileDesHandle (int fd);
#define BUFSIZE 512
static HANDLE tempFileDes (void) {
/* Based on http://msdn.microsoft.com/en-us/library/aa363875(VS.85).aspx */
HANDLE hTempFile;
DWORD dwRetVal;
DWORD dwBufSize=BUFSIZE;
UINT uRetVal;
TCHAR szTempName[BUFSIZE];
TCHAR lpPathBuffer[BUFSIZE];
dwRetVal = GetTempPath(dwBufSize, lpPathBuffer);
if (dwRetVal > dwBufSize || (dwRetVal == 0))
die ("GetTempPath(%ld,...) failed with error %ld\n",
dwBufSize, GetLastError());
uRetVal = GetTempFileName(lpPathBuffer, TEXT("MLtonTempFile"), 0, szTempName);
if (uRetVal == 0)
die ("GetTempFileName(\"%s\",...) failed with error %ld\n",
lpPathBuffer, GetLastError());
hTempFile = CreateFile((LPTSTR) szTempName,
GENERIC_READ | GENERIC_WRITE,
0,
NULL,
TRUNCATE_EXISTING,
FILE_ATTRIBUTE_NORMAL | FILE_FLAG_DELETE_ON_CLOSE,
NULL);
if (hTempFile == INVALID_HANDLE_VALUE)
die ("CreateFile(\"%s\",...) failed with error %ld\n",
szTempName, GetLastError());
return hTempFile;
}
typedef struct {
HANDLE handle;
} *WriteToDiskData;
void GC_diskBack_read (void *data, pointer buf, size_t size) {
HANDLE h;
DWORD d;
DWORD dwBytesRead;
h = ((WriteToDiskData)data)->handle;
d = SetFilePointer (h, 0, NULL, FILE_BEGIN);
if (d == INVALID_SET_FILE_POINTER)
die ("SetFilePointer failed with error %ld\n", GetLastError());
unless (ReadFile(h, buf, size, &dwBytesRead, NULL))
die ("ReadFile failed with error %ld\n", GetLastError());
}
void GC_diskBack_close (void *data) {
HANDLE h;
h = ((WriteToDiskData)data)->handle;
unless (CloseHandle (h))
die ("CloseHandle failed with error %ld.", GetLastError());
free (data);
}
void *GC_diskBack_write (pointer buf, size_t size) {
HANDLE h;
WriteToDiskData d;
DWORD dwBytesWritten;
h = tempFileDes ();
unless (WriteFile (h, buf, size, &dwBytesWritten, NULL))
die ("WriteFile failed with error %ld\n", GetLastError());
d = (WriteToDiskData)(malloc_safe (sizeof(*d)));
d->handle = h;
return d;
}
static void displayMaps (void) {
MEMORY_BASIC_INFORMATION buf;
const char *state = "<unset>";
const char *protect = "<unset>";
uintptr_t address;
buf.RegionSize = 0;
for (address = 0;
address + buf.RegionSize >= address;
address += buf.RegionSize) {
if (0 == VirtualQuery ((LPCVOID)address, &buf, sizeof (buf)))
break;
if (0 == buf.RegionSize)
break;
switch (buf.Protect) {
case PAGE_READONLY:
protect = "PAGE_READONLY";
break;
case PAGE_READWRITE:
protect = "PAGE_READWRITE";
break;
case PAGE_WRITECOPY:
protect = "PAGE_WRITECOPY";
break;
case PAGE_EXECUTE:
protect = "PAGE_EXECUTE";
break;
case PAGE_EXECUTE_READ:
protect = "PAGE_EXECUTE_READ";
break;
case PAGE_EXECUTE_READWRITE:
protect = "PAGE_EXECUTE_READWRITE";
break;
case PAGE_EXECUTE_WRITECOPY:
protect = "PAGE_EXECUTE_WRITECOPY";
break;
case PAGE_GUARD:
protect = "PAGE_GUARD";
break;
case PAGE_NOACCESS:
protect = "PAGE_NOACCESS";
break;
case PAGE_NOCACHE:
protect = "PAGE_NOCACHE";
break;
default:
assert (FALSE);
}
switch (buf.State) {
case MEM_COMMIT:
state = "MEM_COMMIT";
break;
case MEM_FREE:
state = "MEM_FREE";
break;
case MEM_RESERVE:
state = "MEM_RESERVE";
break;
default:
assert (FALSE);
}
fprintf(stderr, FMTPTR " %10"PRIuMAX" %s %s\n",
(uintptr_t)buf.BaseAddress, (uintmax_t)buf.RegionSize,
state, protect);
}
}
void GC_displayMem (void) {
#ifdef _WIN64
MEMORYSTATUSEX ms;
ms.dwLength = sizeof (MEMORYSTATUSEX);
GlobalMemoryStatusEx (&ms);
fprintf(stderr, "Total Phys. Mem: %"PRIuMAX"\n"
"Avail Phys. Mem: %"PRIuMAX"\n"
"Total Page File: %"PRIuMAX"\n"
"Avail Page File: %"PRIuMAX"\n"
"Total Virtual: %"PRIuMAX"\n"
"Avail Virtual: %"PRIuMAX"\n",
(uintmax_t)ms.ullTotalPhys,
(uintmax_t)ms.ullAvailPhys,
(uintmax_t)ms.ullTotalPageFile,
(uintmax_t)ms.ullAvailPageFile,
(uintmax_t)ms.ullTotalVirtual,
(uintmax_t)ms.ullAvailVirtual);
#else
MEMORYSTATUS ms;
ms.dwLength = sizeof (MEMORYSTATUS);
GlobalMemoryStatus (&ms);
fprintf(stderr, "Total Phys. Mem: %"PRIuMAX"\n"
"Avail Phys. Mem: %"PRIuMAX"\n"
"Total Page File: %"PRIuMAX"\n"
"Avail Page File: %"PRIuMAX"\n"
"Total Virtual: %"PRIuMAX"\n"
"Avail Virtual: %"PRIuMAX"\n",
(uintmax_t)ms.dwTotalPhys,
(uintmax_t)ms.dwAvailPhys,
(uintmax_t)ms.dwTotalPageFile,
(uintmax_t)ms.dwAvailPageFile,
(uintmax_t)ms.dwTotalVirtual,
(uintmax_t)ms.dwAvailVirtual);
#endif
displayMaps ();
}
static HANDLE dupHandle (int fd) {
HANDLE dupd;
HANDLE raw;
raw = fileDesHandle (fd);
if (raw == (HANDLE)-1 or raw == 0) {
errno = EBADF;
return 0;
}
/* 'Inspired' by http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/creating_a_child_process_with_redirected_input_and_output.asp
* It's interesting that you can open files for/from other processes...
*/
unless (DuplicateHandle (
GetCurrentProcess(), /* source process */
raw, /* source handle */
GetCurrentProcess(), /* target process */
&dupd, /* target handle - valid in target proc */
0, /* ignored b/c DUPLICATE_SAME_ACCESS used */
TRUE, /* this can be inherited by children */
DUPLICATE_SAME_ACCESS))/* keep the same permissions */
{
errno = ENOMEM;
return 0;
}
return dupd;
}
/* Windows memory is allocated in two phases: reserve and commit.
* A reservation makes the address space unavailable to other reservations.
* Commiting reserved memory actually maps the reserved memory for use.
* Decommitting a portion of a reservation releases the physical memory only.
* The complicating detail is that one cannot partially release a reservation.
*
* The management routines below manage a 'heap' that is composed of several
* distinct reservations, laid out in the following order:
* 0+ reservations set MEM_COMMIT
* 1 reservation starting MEM_COMMIT with an optional MEM_RESERVE tail
*
* The heap always starts on a reservation and ends at where the MEM_RESERVE
* region (if any) begins.
*/
/* Create a new heap */
static inline void *Windows_mmapAnon (void *base, size_t length) {
void *res;
/* We prevoiusly used "0" instead of start, which lead to crashes.
* After reading win32 documentation, the reason for these crashes
* becomes clear: we were using only MEM_COMMIT! If there was memory
* decommitted in a previous heap shrink, a new heap might end up
* inside the reserved (but uncommitted) memory. When the old heap is
* freed, it will kill the new heap as well. This bug will not happen
* now because we reserve, then commit. Reserved memory cannot conflict.
*/
res = VirtualAlloc (base, length, MEM_RESERVE, PAGE_NOACCESS);
if (0 == res)
return (void*)-1;
/* Actually get the memory for use */
if (0 == VirtualAlloc (res, length, MEM_COMMIT, PAGE_READWRITE)) {
VirtualFree(res, 0, MEM_RELEASE);
return (void*)-1;
}
return res;
}
static inline void Windows_release (void *base, size_t length) {
MEMORY_BASIC_INFORMATION mi;
if (length == 0) return;
/* We might not be able to release the first reservation because
* it overlaps the base address we wish to keep. The idea is to
* decommit the part we don't need, and release all reservations
* that may be after this point.
*/
if (0 == VirtualQuery(base, &mi, sizeof(mi)))
die("VirtualQuery failed");
assert (mi.State != MEM_FREE);
assert (mi.RegionSize <= length);
if (mi.AllocationBase != base) {
if (0 == VirtualFree(base, mi.RegionSize, MEM_DECOMMIT))
die("VirtualFree(MEM_DECOMMIT)");
/* Requery: the following region might also be decommit */
VirtualQuery(base, &mi, sizeof(mi));
assert (mi.State == MEM_RESERVE);
/* It's possible the consolidated reserved space is larger
* than the range we were asked to free. Bail out early.
*/
if (mi.RegionSize >= length) return;
/* Skip decommited region and move to the next reservation */
base = (char*)base + mi.RegionSize;
length -= mi.RegionSize;
}
/* Clean-up the remaining tail. */
while (length > 0) {
if (0 == VirtualQuery(base, &mi, sizeof(mi)))
die("VirtualQuery");
/* We should never have a completely decommitted alloc */
assert (mi.State == MEM_COMMIT);
/* This method is supposed to only do complete releases */
assert (mi.AllocationBase == base);
/* The committed region should never exceed the length */
assert (mi.RegionSize <= length);
if (0 == VirtualFree(base, 0, MEM_RELEASE))
die("VirtualFree(MEM_RELEASE) failed");
base = (char*)base + mi.RegionSize;
length -= mi.RegionSize;
}
/* The last release also handled the optional MEM_RESERVE region */
}
/* Extend an existing heap */
static inline void* Windows_extend (void *base, size_t length) {
MEMORY_BASIC_INFORMATION mi;
void *end;
/* Check the status of memory after the end of the allocation */
VirtualQuery(base, &mi, sizeof(mi));
if (mi.State == MEM_FREE) {
/* No tail of reserved memory -> simply try to allocate */
return Windows_mmapAnon(base, length);
} else if (mi.State == MEM_RESERVE) {
assert (mi.AllocationBase <= base);
end = (char*)base + mi.RegionSize;
if (mi.RegionSize > length) { /* only commit is needed */
if (0 == VirtualAlloc(base, length,
MEM_COMMIT, PAGE_READWRITE)) {
return (void*)-1;
} else {
return base;
}
} else if (end == Windows_mmapAnon(end, length-mi.RegionSize)) {
if (0 == VirtualAlloc(base, mi.RegionSize,
MEM_COMMIT, PAGE_READWRITE)) {
VirtualFree(end, 0, MEM_RELEASE);
return (void*)-1;
} else {
return base;
}
} else {
/* Failed to allocate tail */
return (void*)-1;
}
} else {
/* The memory is used by another mapping */
return (void*)-1;
}
}
C_Errno_t(C_PId_t)
Windows_Process_create (NullString8_t cmds, NullString8_t args, NullString8_t envs,
C_Fd_t in, C_Fd_t out, C_Fd_t err) {
char *cmd;
char *arg;
char *env;
STARTUPINFO si;
PROCESS_INFORMATION pi;
cmd = (char*)cmds;
arg = (char*)args;
env = (char*)envs;
ZeroMemory (&si, sizeof(STARTUPINFO));
si.cb = sizeof(STARTUPINFO);
si.hStdInput = dupHandle (in);
si.hStdOutput = dupHandle (out);
si.hStdError = dupHandle (err);
si.dwFlags = STARTF_USESTDHANDLES; /* use the above */
if (!si.hStdInput or !si.hStdOutput or !si.hStdError) {
if (si.hStdInput) CloseHandle (si.hStdInput);
if (si.hStdOutput) CloseHandle (si.hStdOutput);
if (si.hStdError) CloseHandle (si.hStdError);
/* errno already faked by dupHandle */
return -1;
}
ZeroMemory (&pi, sizeof(PROCESS_INFORMATION));
unless (CreateProcess (
cmd, /* Module name */
arg, /* Command line */
NULL, /* Process handle not inheritable */
NULL, /* Thread handle not inheritable */
TRUE, /* Set handle inheritance to TRUE */
0, /* No creation flags */
env, /* Environment */
NULL, /* Use parent's starting directory */
&si, /* Pointer to STARTUPINFO structure */
&pi /* Pointer to PROCESS_INFORMATION structure */
)) {
errno = ENOENT; /* probably does not exist (aka ENOFILE)*/
return -1;
}
/* Process created successfully */
/* We will return the process handle for the 'pid'.
* This way we can TerminateProcess (kill) it and
* WaitForSingleObject/GetExitCodeProcess (reap) it.
* The thread handle is not needed, so clean it.
*/
CloseHandle (pi.hThread);
CloseHandle (si.hStdInput);
CloseHandle (si.hStdOutput);
CloseHandle (si.hStdError);
return (C_PId_t)pi.hProcess;
}
C_Errno_t(C_PId_t)
Windows_Process_createNull (NullString8_t cmds, NullString8_t args,
C_Fd_t in, C_Fd_t out, C_Fd_t err) {
return Windows_Process_create (cmds, args, NULL, in, out, err);
}
C_Errno_t(C_Int_t) Windows_Process_getexitcode (C_PId_t pid, Ref(C_Status_t) status) {
HANDLE h;
h = (HANDLE)pid;
unless (WaitForSingleObject (h, INFINITE) == WAIT_OBJECT_0) {
errno = ECHILD;
return -1;
}
unless (GetExitCodeProcess (h, (DWORD*)status)) {
errno = ECHILD;
return -1;
}
return 0;
}
C_Errno_t(C_Int_t) Windows_Process_terminate (C_PId_t pid, C_Signal_t sig) {
HANDLE h;
h = (HANDLE)pid;
unless (TerminateProcess (h, 0x80000000UL | sig)) {
errno = ECHILD;
return -1;
}
return 0;
}
|