mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
392 lines
10 KiB
392 lines
10 KiB
/*++
|
|
|
|
Copyright (c) 1989 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
acceschk.c
|
|
|
|
Abstract:
|
|
|
|
This module contains the access check routines for memory management.
|
|
|
|
Author:
|
|
|
|
Lou Perazzoli (loup) 10-Apr-1989
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include "mi.h"
|
|
|
|
|
|
//
|
|
// MmReadWrite yields 0 if no-access, 10 if read-only, 11 if read-write.
|
|
// It is indexed by a page protection. The value of this array is added
|
|
// to the !WriteOperation value. If the value is 10 or less an access
|
|
// violation is issued (read-only - write_operation) = 9,
|
|
// (read_only - read_operation) = 10, etc.
|
|
//
|
|
|
|
CCHAR MmReadWrite[32] = {1, 10, 10, 10, 11, 11, 11, 11,
|
|
1, 10, 10, 10, 11, 11, 11, 11,
|
|
1, 10, 10, 10, 11, 11, 11, 11,
|
|
1, 10, 10, 10, 11, 11, 11, 11 };
|
|
|
|
//
|
|
// this is the csrss process !
|
|
//
|
|
|
|
extern PEPROCESS ExpDefaultErrorPortProcess;
|
|
|
|
extern ULONG MmExtendedCommit;
|
|
|
|
|
|
|
|
NTSTATUS
|
|
MiAccessCheck (
|
|
IN PMMPTE PointerPte,
|
|
IN BOOLEAN WriteOperation,
|
|
IN KPROCESSOR_MODE PreviousMode,
|
|
IN ULONG Protection
|
|
|
|
)
|
|
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
PointerPte - Supplies the pointer to the PTE which caused the
|
|
page fault.
|
|
|
|
WriteOperation - Supplies 1 if the operation is a write, 0 if
|
|
the operation is a read.
|
|
|
|
PreviousMode - Supplies the previous mode, one of UserMode or KernelMode.
|
|
|
|
Protection - Supplies the protection mask to check.
|
|
|
|
Return Value:
|
|
|
|
Returns TRUE if access to the page is allowed, FALSE otherwise.
|
|
|
|
Environment:
|
|
|
|
Kernel mode, APC's disabled.
|
|
|
|
--*/
|
|
|
|
{
|
|
MMPTE PteContents;
|
|
KIRQL OldIrql;
|
|
PMMPFN Pfn1;
|
|
|
|
//
|
|
// Check to see if the owner bit allows access to the previous mode.
|
|
// Access is not allowed if the owner is kernel and the previous
|
|
// mode is user. Access is also disallowed if the write operation
|
|
// is true and the write field in the PTE is false.
|
|
//
|
|
|
|
//
|
|
// If both an access violation and a guard page violation could
|
|
// occur for the page, the access violation must be returned.
|
|
//
|
|
|
|
if (PreviousMode == UserMode) {
|
|
if (PointerPte > MiGetPteAddress(MM_HIGHEST_USER_ADDRESS)) {
|
|
return STATUS_ACCESS_VIOLATION;
|
|
}
|
|
}
|
|
|
|
PteContents = *PointerPte;
|
|
|
|
if (PteContents.u.Hard.Valid == 1) {
|
|
|
|
//
|
|
// Valid pages cannot be guard page violations.
|
|
//
|
|
|
|
if (WriteOperation) {
|
|
if ((PteContents.u.Hard.Write == 1) ||
|
|
(PteContents.u.Hard.CopyOnWrite == 1)) {
|
|
return STATUS_SUCCESS;
|
|
} else {
|
|
return STATUS_ACCESS_VIOLATION;
|
|
}
|
|
} else {
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
} else {
|
|
|
|
if ((MmReadWrite[Protection] - (CCHAR)WriteOperation) < 10) {
|
|
return STATUS_ACCESS_VIOLATION;
|
|
} else {
|
|
|
|
//
|
|
// Check for a guard page fault.
|
|
//
|
|
|
|
if (Protection & MM_GUARD_PAGE) {
|
|
|
|
//
|
|
// If this thread is attached to a different process,
|
|
// return an access violation rather than a guard
|
|
// page exception. The prevents problems with unwanted
|
|
// stack expansion and unexpect guard page behavior
|
|
// from debuggers.
|
|
|
|
if (KeIsAttachedProcess()) {
|
|
return STATUS_ACCESS_VIOLATION;
|
|
}
|
|
|
|
//
|
|
// Check to see if this is a transition PTE, if so,
|
|
// the PFN database original contents field needs
|
|
// updated.
|
|
//
|
|
|
|
if ((PteContents.u.Soft.Transition == 1) &&
|
|
(PteContents.u.Soft.Prototype == 0)) {
|
|
|
|
//
|
|
// Acquire the PFN mutex and check to see if the
|
|
// PTE is still in the transition state, and, if so
|
|
// update the original PTE in the pfn database.
|
|
//
|
|
|
|
LOCK_PFN (OldIrql);
|
|
PteContents = *(volatile MMPTE *)PointerPte;
|
|
if ((PteContents.u.Soft.Transition == 1) &&
|
|
(PteContents.u.Soft.Prototype == 0)) {
|
|
|
|
//
|
|
// Still in transition, update the PFN database.
|
|
//
|
|
|
|
Pfn1 = MI_PFN_ELEMENT (
|
|
PteContents.u.Trans.PageFrameNumber);
|
|
|
|
ASSERT (Pfn1->u3.e1.PrototypePte == 0);
|
|
Pfn1->OriginalPte.u.Soft.Protection =
|
|
Protection & ~MM_GUARD_PAGE;
|
|
}
|
|
UNLOCK_PFN (OldIrql);
|
|
}
|
|
|
|
PointerPte->u.Soft.Protection = Protection & ~MM_GUARD_PAGE;
|
|
|
|
return STATUS_GUARD_PAGE_VIOLATION;
|
|
}
|
|
return STATUS_SUCCESS;
|
|
}
|
|
}
|
|
}
|
|
|
|
NTSTATUS
|
|
FASTCALL
|
|
MiCheckForUserStackOverflow (
|
|
IN PVOID FaultingAddress
|
|
)
|
|
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
This routine checks to see if the faulting address is within
|
|
the stack limits and if so tries to create another guard
|
|
page on the stack. A stack over flow is returned if the
|
|
creation of a new guard page fails or if the stack is in
|
|
the following form:
|
|
|
|
|
|
stack +----------------+
|
|
growth | | StackBase
|
|
| +----------------+
|
|
v | |
|
|
| allocated |
|
|
| |
|
|
| ... |
|
|
| |
|
|
+----------------+
|
|
| old guard page | <- faulting address is in this page.
|
|
+----------------+
|
|
| |
|
|
+----------------+
|
|
| | last page of stack (always no access)
|
|
+----------------+
|
|
|
|
In this case, the page before the last page is committed, but
|
|
not as a guard page and a STACK_OVERFLOW condition is returned.
|
|
|
|
Arguments:
|
|
|
|
FaultingAddress - Supplies the virtual address of the page which
|
|
was a guard page.
|
|
|
|
Return Value:
|
|
|
|
None.
|
|
|
|
Environment:
|
|
|
|
Kernel mode. No mutexes held.
|
|
|
|
--*/
|
|
|
|
{
|
|
PTEB Teb;
|
|
ULONG NextPage;
|
|
ULONG RegionSize;
|
|
NTSTATUS status;
|
|
KIRQL OldIrql;
|
|
|
|
PVOID DeallocationStack;
|
|
PVOID *StackLimit;
|
|
|
|
#if defined(WX86)
|
|
PWX86TIB Wx86Tib;
|
|
#endif
|
|
|
|
|
|
|
|
|
|
//
|
|
// Create an exception handler as the Teb is within the user's
|
|
// address space.
|
|
//
|
|
|
|
try {
|
|
|
|
#if defined(i386) || defined(ALPHA)
|
|
Teb = NtCurrentTeb();
|
|
#else
|
|
Teb = PCR->Teb;
|
|
#endif
|
|
|
|
DeallocationStack = Teb->DeallocationStack;
|
|
StackLimit = &Teb->NtTib.StackLimit;
|
|
|
|
//
|
|
// The stack base and the stack limit are both within the stack.
|
|
//
|
|
|
|
if ((Teb->NtTib.StackBase < FaultingAddress) ||
|
|
(DeallocationStack > FaultingAddress)) {
|
|
|
|
#if defined(WX86)
|
|
//
|
|
// Also check the Wx86 i386 stack on risc
|
|
//
|
|
if (!(Wx86Tib = Teb->Vdm) ||
|
|
Wx86Tib->Size != sizeof(WX86TIB) ||
|
|
Wx86Tib->StackBase < FaultingAddress ||
|
|
Wx86Tib->DeallocationStack > FaultingAddress)
|
|
|
|
#endif
|
|
{
|
|
//
|
|
// Not within the stack.
|
|
//
|
|
|
|
return STATUS_GUARD_PAGE_VIOLATION;
|
|
}
|
|
|
|
#if defined(WX86)
|
|
DeallocationStack = Wx86Tib->DeallocationStack;
|
|
StackLimit = &Wx86Tib->StackLimit;
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
//
|
|
// This address is within the current stack, check to see
|
|
// if there is ample room for another guard page and
|
|
// if so attempt to commit a new guard page.
|
|
//
|
|
|
|
NextPage = ((ULONG)PAGE_ALIGN(FaultingAddress) - PAGE_SIZE);
|
|
|
|
RegionSize = PAGE_SIZE;
|
|
|
|
if ((NextPage - PAGE_SIZE) <= (ULONG)PAGE_ALIGN(DeallocationStack)) {
|
|
|
|
//
|
|
// There is no more room for expansion, attempt to
|
|
// commit the page before the last page of the
|
|
// stack.
|
|
//
|
|
|
|
NextPage = (ULONG)PAGE_ALIGN(DeallocationStack) + PAGE_SIZE;
|
|
|
|
status = ZwAllocateVirtualMemory (NtCurrentProcess(),
|
|
(PVOID *)&NextPage,
|
|
0,
|
|
&RegionSize,
|
|
MEM_COMMIT,
|
|
PAGE_READWRITE);
|
|
if ( NT_SUCCESS(status) ) {
|
|
|
|
*StackLimit = (PVOID)( (PUCHAR)NextPage);
|
|
|
|
}
|
|
|
|
return STATUS_STACK_OVERFLOW;
|
|
}
|
|
*StackLimit = (PVOID)((PUCHAR)(NextPage + PAGE_SIZE));
|
|
retry:
|
|
status = ZwAllocateVirtualMemory (NtCurrentProcess(),
|
|
(PVOID *)&NextPage,
|
|
0,
|
|
&RegionSize,
|
|
MEM_COMMIT,
|
|
PAGE_READWRITE | PAGE_GUARD);
|
|
|
|
|
|
if (NT_SUCCESS(status) || (status == STATUS_ALREADY_COMMITTED)) {
|
|
|
|
//
|
|
// The guard page is now committed or stack space is
|
|
// already present, return success.
|
|
//
|
|
|
|
return STATUS_PAGE_FAULT_GUARD_PAGE;
|
|
}
|
|
|
|
if (PsGetCurrentProcess() == ExpDefaultErrorPortProcess) {
|
|
|
|
//
|
|
// Don't let CSRSS process get any stack overflows due to
|
|
// commitment. Increase the commitment by a page and
|
|
// try again.
|
|
//
|
|
|
|
ASSERT (status == STATUS_COMMITMENT_LIMIT);
|
|
|
|
ExAcquireSpinLock (&MmChargeCommitmentLock, &OldIrql);
|
|
MmTotalCommitLimit += 1;
|
|
MmExtendedCommit += 1;
|
|
ExReleaseSpinLock (&MmChargeCommitmentLock, OldIrql);
|
|
goto retry;
|
|
}
|
|
|
|
return STATUS_STACK_OVERFLOW;
|
|
|
|
} except (EXCEPTION_EXECUTE_HANDLER) {
|
|
|
|
//
|
|
// An exception has occurred during the referencing of the
|
|
// TEB or TIB, just return a guard page violation and
|
|
// don't deal with the stack overflow.
|
|
//
|
|
|
|
return STATUS_GUARD_PAGE_VIOLATION;
|
|
}
|
|
}
|