[RTL][NTDLL]

- Add basic implementations of RtlApplicationVerifierStop and RtlCopyMappedMemory for the benefit of some Windows dlls
CORE-9857 CORE-9858 #resolve

svn path=/trunk/; revision=68232
This commit is contained in:
Thomas Faber 2015-06-21 16:38:44 +00:00
parent 8faad3f2aa
commit 3faaa34e03
4 changed files with 64 additions and 3 deletions

View file

@ -467,7 +467,7 @@
@ stdcall RtlAppendStringToString(ptr ptr)
@ stdcall RtlAppendUnicodeStringToString(ptr ptr)
@ stdcall RtlAppendUnicodeToString(ptr wstr)
;@ stdcall RtlApplicationVerifierStop
@ stdcall RtlApplicationVerifierStop(ptr str ptr str ptr str ptr str ptr str)
@ stdcall RtlApplyRXact(ptr)
@ stdcall RtlApplyRXactNoFlush(ptr)
@ stdcall RtlAreAllAccessesGranted(long long)
@ -506,7 +506,7 @@
@ stdcall -arch=win32 -ret64 RtlConvertUlongToLargeInteger(long)
@ stdcall RtlCopyLuid(ptr ptr)
@ stdcall RtlCopyLuidAndAttributesArray(long ptr ptr)
;@ stdcall RtlCopyMappedMemory
@ stdcall RtlCopyMappedMemory(ptr ptr long)
@ stdcall RtlCopyMemoryStreamTo(ptr ptr int64 ptr ptr)
@ stdcall RtlCopyOutOfProcessMemoryStreamTo(ptr ptr int64 ptr ptr) RtlCopyMemoryStreamTo
@ stdcall RtlCopySecurityDescriptor(ptr ptr)

View file

@ -9,6 +9,7 @@ list(APPEND SOURCE
access.c
acl.c
actctx.c
appverifier.c
assert.c
atom.c
avltable.c

View file

@ -0,0 +1,46 @@
/*
* PROJECT: ReactOS Runtime Library
* LICENSE: BSD - See COPYING.ARM in the top level directory
* FILE: lib/rtl/appverifier.c
* PURPOSE: RTL Application Verifier Routines
* PROGRAMMERS: Thomas Faber <thomas.faber@reactos.org>
*/
/* INCLUDES *****************************************************************/
#include <rtl.h>
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ***************************************************************/
/*
* @implemented
*/
VOID
NTAPI
RtlApplicationVerifierStop(
_In_ ULONG_PTR Code,
_In_ PCSTR Message,
_In_ PVOID Value1,
_In_ PCSTR Description1,
_In_ PVOID Value2,
_In_ PCSTR Description2,
_In_ PVOID Value3,
_In_ PCSTR Description3,
_In_ PVOID Value4,
_In_ PCSTR Description4)
{
PTEB Teb = NtCurrentTeb();
DbgPrint("**************************************************\n");
DbgPrint("VERIFIER STOP %08Ix: pid %04Ix: %s\n",
Code, (ULONG_PTR)Teb->ClientId.UniqueProcess, Message);
DbgPrint(" %p : %s\n", Value1, Description1);
DbgPrint(" %p : %s\n", Value2, Description2);
DbgPrint(" %p : %s\n", Value3, Description3);
DbgPrint(" %p : %s\n", Value4, Description4);
DbgPrint("**************************************************\n");
DbgBreakPoint();
}

View file

@ -1,7 +1,7 @@
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
* FILE: lib/rtl/mem.c
* FILE: lib/rtl/memstream.c
* PURPOSE: MemoryStream functions
* PROGRAMMER: David Quintana (gigaherz@gmail.com)
*/
@ -465,3 +465,17 @@ RtlCloneMemoryStream(
return E_NOTIMPL;
}
/*
* @implemented
*/
VOID
NTAPI
RtlCopyMappedMemory(
_Out_ PVOID Destination,
_In_ const VOID *Source,
_In_ SIZE_T Size)
{
/* FIXME: This is supposed to handle STATUS_IN_PAGE_ERROR exceptions */
RtlCopyMemory(Destination, Source, Size);
}