forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug.cpp
More file actions
812 lines (682 loc) · 19.1 KB
/
debug.cpp
File metadata and controls
812 lines (682 loc) · 19.1 KB
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/*++
Module Name:
debug.c
Abstract:
Implementation of Win32 debugging API functions.
Revision History:
--*/
#include "pal/dbgmsg.h"
SET_DEFAULT_DEBUG_CHANNEL(DEBUG); // some headers have code with asserts, so do this first
#include "pal/thread.hpp"
#include "pal/procobj.hpp"
#include "pal/file.hpp"
#include "pal/palinternal.h"
#include "pal/process.h"
#include "pal/context.h"
#include "pal/debug.h"
#include "pal/environ.h"
#include "pal/module.h"
#include "pal/stackstring.hpp"
#include "pal/virtual.h"
#include "pal/utils.h"
#include <signal.h>
#include <unistd.h>
#include <fcntl.h>
#if HAVE_PROCFS_CTL
#include <unistd.h>
#elif defined(HAVE_TTRACE) // HAVE_PROCFS_CTL
#include <sys/ttrace.h>
#elif HAVE_SYS_PTRACE_H
#include <sys/ptrace.h>
#endif // HAVE_PROCFS_CTL
#if HAVE_VM_READ
#include <mach/mach.h>
#endif // HAVE_VM_READ
#include <errno.h>
#include <sys/types.h>
#include <sys/wait.h>
#if HAVE_PROCFS_H
#include <procfs.h>
#endif // HAVE_PROCFS_H
#ifdef __APPLE__
#include <mach/mach.h>
#if defined(TARGET_OSX)
#include <mach/mach_vm.h>
#endif
#endif // __APPLE__
#if HAVE_MACH_EXCEPTIONS
#include "../exception/machexception.h"
#endif // HAVE_MACH_EXCEPTIONS
using namespace CorUnix;
extern "C" void DBG_DebugBreak_End();
extern size_t OffsetWithinPage(off_t addr);
#if HAVE_PROCFS_CTL
#define CTL_ATTACH "attach"
#define CTL_DETACH "detach"
#define CTL_WAIT "wait"
#endif // HAVE_PROCFS_CTL
/* ------------------- Constant definitions ----------------------------------*/
#if !HAVE_VM_READ && !HAVE_PROCFS_CTL
const BOOL DBG_ATTACH = TRUE;
const BOOL DBG_DETACH = FALSE;
#endif
static const char PAL_OUTPUTDEBUGSTRING[] = "PAL_OUTPUTDEBUGSTRING";
#ifdef _DEBUG
#define ENABLE_RUN_ON_DEBUG_BREAK 1
#endif // _DEBUG
#ifdef ENABLE_RUN_ON_DEBUG_BREAK
static const char PAL_RUN_ON_DEBUG_BREAK[] = "PAL_RUN_ON_DEBUG_BREAK";
#endif // ENABLE_RUN_ON_DEBUG_BREAK
extern "C" {
/*++
Function:
FlushInstructionCache
The FlushInstructionCache function flushes the instruction cache for
the specified process.
Remarks
This is a no-op for x86 architectures where the instruction and data
caches are coherent in hardware. For non-X86 architectures, this call
usually maps to a kernel API to flush the D-caches on all processors.
It is also no-op on wasm. We don't have a way to flush the instruction
cache and it is also not needed.
--*/
BOOL
PALAPI
FlushInstructionCache(
IN HANDLE hProcess,
IN LPCVOID lpBaseAddress,
IN SIZE_T dwSize)
{
BOOL Ret;
PERF_ENTRY(FlushInstructionCache);
ENTRY("FlushInstructionCache (hProcess=%p, lpBaseAddress=%p dwSize=%d)\
\n", hProcess, lpBaseAddress, dwSize);
if (lpBaseAddress != NULL)
{
Ret = DBG_FlushInstructionCache(lpBaseAddress, dwSize);
}
else
{
Ret = TRUE;
}
LOGEXIT("FlushInstructionCache returns BOOL %d\n", Ret);
PERF_EXIT(FlushInstructionCache);
return Ret;
}
/*++
Function:
OutputDebugStringA
See MSDN doc.
--*/
VOID
PALAPI
OutputDebugStringA(
IN LPCSTR lpOutputString)
{
PERF_ENTRY(OutputDebugStringA);
ENTRY("OutputDebugStringA (lpOutputString=%p (%s))\n",
lpOutputString ? lpOutputString : "NULL",
lpOutputString ? lpOutputString : "NULL");
// As we don't support debug events, we are going to output the debug string
// to stderr instead of generating OUT_DEBUG_STRING_EVENT. It's safe to tell
// EnvironGetenv not to make a copy of the value here since we only want to
// check whether it exists, not actually use it.
if ((lpOutputString != NULL) &&
(NULL != EnvironGetenv(PAL_OUTPUTDEBUGSTRING, /* copyValue */ FALSE)))
{
fprintf(stderr, "%s", lpOutputString);
}
LOGEXIT("OutputDebugStringA returns\n");
PERF_EXIT(OutputDebugStringA);
}
/*++
Function:
OutputDebugStringW
See MSDN doc.
--*/
VOID
PALAPI
OutputDebugStringW(
IN LPCWSTR lpOutputString)
{
CHAR *lpOutputStringA;
int strLen;
PERF_ENTRY(OutputDebugStringW);
ENTRY("OutputDebugStringW (lpOutputString=%p (%S))\n",
lpOutputString ? lpOutputString: W16_NULLSTRING,
lpOutputString ? lpOutputString: W16_NULLSTRING);
if (lpOutputString == NULL)
{
OutputDebugStringA("");
goto EXIT;
}
if ((strLen = WideCharToMultiByte(CP_ACP, 0, lpOutputString, -1, NULL, 0,
NULL, NULL))
== 0)
{
ASSERT("failed to get wide chars length\n");
SetLastError(ERROR_INTERNAL_ERROR);
goto EXIT;
}
/* strLen includes the null terminator */
if ((lpOutputStringA = (LPSTR) malloc((strLen * sizeof(CHAR)))) == NULL)
{
ERROR("Insufficient memory available !\n");
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
goto EXIT;
}
if(! WideCharToMultiByte(CP_ACP, 0, lpOutputString, -1,
lpOutputStringA, strLen, NULL, NULL))
{
ASSERT("failed to convert wide chars to multibytes\n");
SetLastError(ERROR_INTERNAL_ERROR);
free(lpOutputStringA);
goto EXIT;
}
OutputDebugStringA(lpOutputStringA);
free(lpOutputStringA);
EXIT:
LOGEXIT("OutputDebugStringW returns\n");
PERF_EXIT(OutputDebugStringW);
}
#ifdef ENABLE_RUN_ON_DEBUG_BREAK
/*
When DebugBreak() is called, if PAL_RUN_ON_DEBUG_BREAK is set,
DebugBreak() will execute whatever command is in there.
PAL_RUN_ON_DEBUG_BREAK must be no longer than 255 characters.
This command string inherits the current process's environment,
with two additions:
PAL_EXE_PID - the process ID of the current process
PAL_EXE_NAME - the name of the executable of the current process
When DebugBreak() runs this string, it periodically polls the child process
and blocks until it finishes. If you use this mechanism to start a
debugger, you can break this poll loop by setting the "spin" variable in
run_debug_command()'s frame to 0, and then the parent process can
continue.
suggested values for PAL_RUN_ON_DEBUG_BREAK:
to halt the process for later inspection:
'echo stopping $PAL_EXE_PID; kill -STOP $PAL_EXE_PID; sleep 10'
to print out the stack trace:
'pstack $PAL_EXE_PID'
to invoke the gdb debugger on the process:
'set -x; gdb $PAL_EXE_NAME $PAL_EXE_PID'
to invoke the ddd debugger on the process (requires X11):
'set -x; ddd $PAL_EXE_NAME $PAL_EXE_PID'
*/
static
int
run_debug_command (const char *command)
{
int pid;
Volatile<int> spin = 1;
if (!command) {
return 1;
}
printf("Spawning command: %s\n", command);
pid = fork();
if (pid == -1) {
return -1;
}
if (pid == 0) {
const char *argv[4] = { "sh", "-c", command, 0 };
execv("/bin/sh", (char **)argv);
exit(127);
}
/* We continue either when the spawned process has stopped, or when
an attached debugger sets spin to 0 */
while (spin != 0) {
int status = 0;
int ret = waitpid(pid, &status, WNOHANG);
if (ret == 0) {
int i;
/* I tried to use sleep for this, and that works everywhere except
FreeBSD. The problem on FreeBSD is that if the process gets a
signal while blocked in sleep(), gdb is confused by the stack */
for (i = 0; i < 1000000; i++)
;
}
else if (ret == -1) {
if (errno != EINTR) {
return -1;
}
}
else if (WIFEXITED(status)) {
return WEXITSTATUS(status);
}
else {
fprintf (stderr, "unexpected return from waitpid\n");
return -1;
}
};
return 0;
}
#endif // ENABLE_RUN_ON_DEBUG_BREAK
#define PID_TEXT "PAL_EXE_PID="
#define EXE_TEXT "PAL_EXE_NAME="
static
int
DebugBreakCommand()
{
#ifdef ENABLE_RUN_ON_DEBUG_BREAK
extern MODSTRUCT exe_module;
char *command_string = EnvironGetenv(PAL_RUN_ON_DEBUG_BREAK);
if (command_string)
{
char pid_buf[sizeof (PID_TEXT) + 32];
PathCharString exe_bufString;
int libNameLength = 10;
if (exe_module.lib_name != NULL)
{
libNameLength = PAL_wcslen(exe_module.lib_name);
}
SIZE_T dwexe_buf = strlen(EXE_TEXT) + libNameLength + 1;
CHAR * exe_buf = exe_bufString.OpenStringBuffer(dwexe_buf);
if (NULL == exe_buf)
{
goto FAILED;
}
if (snprintf (pid_buf, sizeof (pid_buf), PID_TEXT "%d", getpid()) <= 0)
{
goto FAILED;
}
if (snprintf (exe_buf, sizeof (CHAR) * (dwexe_buf + 1), EXE_TEXT "%ls", (wchar_t*)exe_module.lib_name) <= 0)
{
goto FAILED;
}
exe_bufString.CloseBuffer(dwexe_buf);
/* strictly speaking, we might want to only set these environment
variables in the child process, but if we do that we can't check
for errors. putenv/setenv can fail when out of memory */
if (!EnvironPutenv (pid_buf, FALSE) || !EnvironPutenv (exe_buf, FALSE))
{
goto FAILED;
}
if (run_debug_command (command_string))
{
goto FAILED;
}
free(command_string);
return 1;
}
return 0;
FAILED:
if (command_string)
{
fprintf (stderr, "Failed to execute command: '%s'\n", command_string);
free(command_string);
}
return -1;
#else // ENABLE_RUN_ON_DEBUG_BREAK
return 0;
#endif // ENABLE_RUN_ON_DEBUG_BREAK
}
/*++
Function:
DebugBreak
See MSDN doc.
--*/
VOID
PALAPI
DebugBreak(
VOID)
{
PERF_ENTRY(DebugBreak);
ENTRY("DebugBreak()\n");
if (DebugBreakCommand() <= 0) {
// either didn't do anything, or failed
TRACE("Calling DBG_DebugBreak\n");
DBG_DebugBreak();
}
LOGEXIT("DebugBreak returns\n");
PERF_EXIT(DebugBreak);
}
/*++
Function:
IsInDebugBreak(addr)
Returns true if the address is in DBG_DebugBreak.
--*/
BOOL
IsInDebugBreak(void *addr)
{
#if defined (__wasm__)
_ASSERT("IsInDebugBreak not implemented on wasm");
return false;
#else
return (addr >= (void *)DBG_DebugBreak) && (addr <= (void *)DBG_DebugBreak_End);
#endif
}
/*++
Function:
GetThreadContext
See MSDN doc.
--*/
BOOL
PALAPI
GetThreadContext(
IN HANDLE hThread,
IN OUT LPCONTEXT lpContext)
{
PAL_ERROR palError;
CPalThread *pThread;
CPalThread *pTargetThread;
IPalObject *pobjThread = NULL;
BOOL ret = FALSE;
PERF_ENTRY(GetThreadContext);
ENTRY("GetThreadContext (hThread=%p, lpContext=%p)\n",hThread,lpContext);
pThread = InternalGetCurrentThread();
palError = InternalGetThreadDataFromHandle(
pThread,
hThread,
&pTargetThread,
&pobjThread
);
if (NO_ERROR == palError)
{
if (!pTargetThread->IsDummy())
{
ret = CONTEXT_GetThreadContext(
GetCurrentProcessId(),
pTargetThread->GetPThreadSelf(),
lpContext
);
}
else
{
ASSERT("Dummy thread handle passed to GetThreadContext\n");
pThread->SetLastError(ERROR_INVALID_HANDLE);
}
}
else
{
pThread->SetLastError(palError);
}
if (NULL != pobjThread)
{
pobjThread->ReleaseReference(pThread);
}
LOGEXIT("GetThreadContext returns ret:%d\n", ret);
PERF_EXIT(GetThreadContext);
return ret;
}
/*++
Function:
SetThreadContext
See MSDN doc.
--*/
BOOL
PALAPI
SetThreadContext(
IN HANDLE hThread,
IN CONST CONTEXT *lpContext)
{
PAL_ERROR palError;
CPalThread *pThread;
CPalThread *pTargetThread;
IPalObject *pobjThread = NULL;
BOOL ret = FALSE;
PERF_ENTRY(SetThreadContext);
ENTRY("SetThreadContext (hThread=%p, lpContext=%p)\n",hThread,lpContext);
pThread = InternalGetCurrentThread();
palError = InternalGetThreadDataFromHandle(
pThread,
hThread,
&pTargetThread,
&pobjThread
);
if (NO_ERROR == palError)
{
if (!pTargetThread->IsDummy())
{
ret = CONTEXT_SetThreadContext(
GetCurrentProcessId(),
pTargetThread->GetPThreadSelf(),
lpContext
);
}
else
{
ASSERT("Dummy thread handle passed to SetThreadContext\n");
pThread->SetLastError(ERROR_INVALID_HANDLE);
}
}
else
{
pThread->SetLastError(palError);
}
if (NULL != pobjThread)
{
pobjThread->ReleaseReference(pThread);
}
return ret;
}
/*++
Function:
PAL_OpenProcessMemory
Abstract
Creates the handle for PAL_ReadProcessMemory.
Parameter
processId : process id to read memory
pHandle : returns a platform specific handle or UINT32_MAX if failed
Return
true successful, false invalid process id or not supported.
--*/
BOOL
PALAPI
PAL_OpenProcessMemory(
IN DWORD processId,
OUT DWORD* pHandle
)
{
ENTRY("PAL_OpenProcessMemory(pid=%d)\n", processId);
_ASSERTE(pHandle != nullptr);
*pHandle = UINT32_MAX;
#ifdef __APPLE__
mach_port_name_t port;
kern_return_t result = ::task_for_pid(mach_task_self(), (int)processId, &port);
if (result != KERN_SUCCESS)
{
ERROR("task_for_pid(%d) FAILED %x %s\n", processId, result, mach_error_string(result));
LOGEXIT("PAL_OpenProcessMemory FALSE\n");
return FALSE;
}
*pHandle = port;
#else
char memPath[128];
_snprintf_s(memPath, sizeof(memPath), sizeof(memPath), "/proc/%lu/mem", processId);
int fd = open(memPath, O_RDONLY);
if (fd == -1)
{
ERROR("open(%s) FAILED %d (%s)\n", memPath, errno, strerror(errno));
LOGEXIT("PAL_OpenProcessMemory FALSE\n");
return FALSE;
}
*pHandle = fd;
#endif
LOGEXIT("PAL_OpenProcessMemory TRUE\n");
return TRUE;
}
/*++
Function:
PAL_CloseProcessMemory
Abstract
Closes the PAL_OpenProcessMemory handle.
Parameter
handle : from PAL_OpenProcessMemory
Return
none
--*/
VOID
PALAPI
PAL_CloseProcessMemory(
IN DWORD handle
)
{
ENTRY("PAL_CloseProcessMemory(handle=%x)\n", handle);
if (handle != UINT32_MAX)
{
#ifdef __APPLE__
kern_return_t result = ::mach_port_deallocate(mach_task_self(), (mach_port_name_t)handle);
if (result != KERN_SUCCESS)
{
ERROR("mach_port_deallocate FAILED %x %s\n", result, mach_error_string(result));
}
#else
close(handle);
#endif
}
LOGEXIT("PAL_CloseProcessMemory\n");
}
/*++
Function:
PAL_ReadProcessMemory
Abstract
Reads process memory.
Parameter
handle : from PAL_OpenProcessMemory
address : address of memory to read
buffer : buffer to read memory to
size : number of bytes to read
numberOfBytesRead: number of bytes read (optional)
Return
true read memory is successful, false if not.
--*/
BOOL
PALAPI
PAL_ReadProcessMemory(
IN DWORD handle,
IN ULONG64 address,
IN LPVOID buffer,
IN SIZE_T size,
OUT SIZE_T* numberOfBytesRead)
{
ENTRY("PAL_ReadProcessMemory(handle=%x, address=%p buffer=%p size=%d)\n", handle, (void*)address, buffer, size);
_ASSERTE(handle != 0);
_ASSERTE(numberOfBytesRead != nullptr);
BOOL result = TRUE;
size_t read = 0;
#ifdef __APPLE__
vm_map_t task = (vm_map_t)handle;
// vm_read_overwrite usually requires that the address be page-aligned
// and the size be a multiple of the page size. We can't differentiate
// between the cases in which that's required and those in which it
// isn't, so we do it all the time.
const size_t pageSize = GetVirtualPageSize();
vm_address_t addressAligned = ALIGN_DOWN(address, pageSize);
ssize_t offset = OffsetWithinPage(address);
ssize_t bytesLeft = size;
char *data = (char*)malloc(pageSize);
if (data != nullptr)
{
while (bytesLeft > 0)
{
vm_size_t bytesRead = pageSize;
kern_return_t result = ::vm_read_overwrite(task, addressAligned, pageSize, (vm_address_t)data, &bytesRead);
if (result != KERN_SUCCESS || bytesRead != pageSize)
{
TRACE("PAL_ReadProcessMemory(%p %d): vm_read_overwrite failed bytesLeft %d bytesRead %d from %p: %x %s\n",
(void*)address, size, bytesLeft, bytesRead, (void*)addressAligned, result, mach_error_string(result));
break;
}
ssize_t bytesToCopy = pageSize - offset;
if (bytesToCopy > bytesLeft)
{
bytesToCopy = bytesLeft;
}
memcpy((LPSTR)buffer + read, data + offset, bytesToCopy);
addressAligned = addressAligned + pageSize;
read += bytesToCopy;
bytesLeft -= bytesToCopy;
offset = 0;
}
result = size == 0 || read > 0;
}
else
{
ERROR("malloc(%d) FAILED\n", pageSize);
result = FALSE;
}
if (data != nullptr)
{
free(data);
}
#else
read = pread(handle, buffer, size, address);
if (read == (size_t)-1)
{
result = FALSE;
}
#endif
*numberOfBytesRead = read;
LOGEXIT("PAL_ReadProcessMemory result=%d bytes read=%d\n", result, read);
return result;
}
/*++
Function:
PAL_ProbeMemory
Abstract
Parameter
pBuffer : address of memory to validate
cbBuffer : size of memory region to validate
fWriteAccess : if true, validate writable access, else just readable.
Return
true if memory is valid, false if not.
--*/
BOOL
PALAPI
PAL_ProbeMemory(
PVOID pBuffer,
DWORD cbBuffer,
BOOL fWriteAccess)
{
int fds[2];
int flags;
if (pipe(fds) != 0)
{
ASSERT("pipe failed: errno is %d (%s)\n", errno, strerror(errno));
return FALSE;
}
flags = fcntl(fds[0], F_GETFL, 0);
fcntl(fds[0], F_SETFL, flags | O_NONBLOCK);
flags = fcntl(fds[1], F_GETFL, 0);
fcntl(fds[1], F_SETFL, flags | O_NONBLOCK);
PVOID pEnd = (PBYTE)pBuffer + cbBuffer;
BOOL result = TRUE;
// Validate the first byte in the buffer, then validate the first byte on each page after that.
while (pBuffer < pEnd)
{
int written = write(fds[1], pBuffer, 1);
if (written == -1)
{
if (errno != EFAULT)
{
ASSERT("write failed: errno is %d (%s)\n", errno, strerror(errno));
}
result = FALSE;
break;
}
else
{
if (fWriteAccess)
{
int rd = read(fds[0], pBuffer, 1);
if (rd == -1)
{
if (errno != EFAULT)
{
ASSERT("read failed: errno is %d (%s)\n", errno, strerror(errno));
}
result = FALSE;
break;
}
}
}
// Round to the beginning of the next page
pBuffer = PVOID(ALIGN_DOWN((SIZE_T)pBuffer, GetVirtualPageSize()) + GetVirtualPageSize());
}
close(fds[0]);
close(fds[1]);
return result;
}
} // extern "C"