2006-11-08 11:47:44 +00:00
|
|
|
/*
|
|
|
|
* ReactOS W32 Subsystem
|
|
|
|
* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 ReactOS Team
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
2009-10-27 10:34:16 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2006-11-08 11:47:44 +00:00
|
|
|
*/
|
|
|
|
|
2010-04-26 13:58:46 +00:00
|
|
|
#include <win32k.h>
|
2006-11-08 11:47:44 +00:00
|
|
|
|
|
|
|
#define NDEBUG
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
|
2008-11-29 22:48:58 +00:00
|
|
|
static NTSTATUS APIENTRY
|
2006-11-08 11:47:44 +00:00
|
|
|
IntUserHeapCommitRoutine(IN PVOID Base,
|
|
|
|
IN OUT PVOID *CommitAddress,
|
|
|
|
IN OUT PSIZE_T CommitSize)
|
|
|
|
{
|
2009-07-26 16:17:50 +00:00
|
|
|
PPROCESSINFO W32Process;
|
2006-11-08 11:47:44 +00:00
|
|
|
PW32HEAP_USER_MAPPING Mapping;
|
|
|
|
PVOID UserBase = NULL;
|
|
|
|
NTSTATUS Status;
|
|
|
|
SIZE_T Delta = (SIZE_T)((ULONG_PTR)(*CommitAddress) - (ULONG_PTR)Base);
|
|
|
|
|
|
|
|
W32Process = PsGetCurrentProcessWin32Process();
|
|
|
|
|
|
|
|
if (W32Process != NULL)
|
|
|
|
{
|
|
|
|
/* search for the mapping */
|
|
|
|
Mapping = &W32Process->HeapMappings;
|
|
|
|
while (Mapping != NULL)
|
|
|
|
{
|
|
|
|
if (Mapping->KernelMapping == Base)
|
|
|
|
{
|
|
|
|
UserBase = Mapping->UserMapping;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Mapping = Mapping->Next;
|
|
|
|
}
|
|
|
|
|
|
|
|
ASSERT(UserBase != NULL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-05-07 14:39:31 +00:00
|
|
|
SIZE_T ViewSize = 0;
|
2006-11-08 11:47:44 +00:00
|
|
|
LARGE_INTEGER Offset;
|
|
|
|
extern PSECTION_OBJECT GlobalUserHeapSection;
|
|
|
|
|
|
|
|
/* HACK: This needs to be handled during startup only... */
|
|
|
|
ASSERT(Base == (PVOID)GlobalUserHeap);
|
|
|
|
|
|
|
|
/* temporarily map it into user space */
|
|
|
|
Offset.QuadPart = 0;
|
|
|
|
Status = MmMapViewOfSection(GlobalUserHeapSection,
|
|
|
|
PsGetCurrentProcess(),
|
|
|
|
&UserBase,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
&Offset,
|
|
|
|
&ViewSize,
|
|
|
|
ViewUnmap,
|
|
|
|
SEC_NO_CHANGE,
|
|
|
|
PAGE_EXECUTE_READ); /* would prefer PAGE_READONLY, but thanks to RTL heaps... */
|
|
|
|
|
|
|
|
if (!NT_SUCCESS(Status))
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* commit! */
|
|
|
|
UserBase = (PVOID)((ULONG_PTR)UserBase + Delta);
|
|
|
|
|
|
|
|
Status = ZwAllocateVirtualMemory(NtCurrentProcess(),
|
|
|
|
&UserBase,
|
|
|
|
0,
|
|
|
|
CommitSize,
|
|
|
|
MEM_COMMIT,
|
|
|
|
PAGE_EXECUTE_READ);
|
|
|
|
if (NT_SUCCESS(Status))
|
|
|
|
{
|
|
|
|
*CommitAddress = (PVOID)((ULONG_PTR)UserBase + Delta);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (W32Process == NULL)
|
|
|
|
{
|
|
|
|
MmUnmapViewOfSection(PsGetCurrentProcess(),
|
|
|
|
UserBase);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
2008-10-19 02:05:41 +00:00
|
|
|
static PWIN32HEAP
|
2006-11-08 11:47:44 +00:00
|
|
|
IntUserHeapCreate(IN PSECTION_OBJECT SectionObject,
|
|
|
|
IN PVOID *SystemMappedBase,
|
|
|
|
IN ULONG HeapSize)
|
|
|
|
{
|
|
|
|
PVOID MappedView = NULL;
|
|
|
|
LARGE_INTEGER Offset;
|
2008-04-25 01:16:08 +00:00
|
|
|
SIZE_T ViewSize = PAGE_SIZE;
|
2006-11-08 11:47:44 +00:00
|
|
|
RTL_HEAP_PARAMETERS Parameters = {0};
|
2008-10-19 02:05:41 +00:00
|
|
|
PVOID pHeap;
|
2006-11-08 11:47:44 +00:00
|
|
|
NTSTATUS Status;
|
|
|
|
|
|
|
|
Offset.QuadPart = 0;
|
|
|
|
|
|
|
|
/* Commit the first page before creating the heap! */
|
|
|
|
Status = MmMapViewOfSection(SectionObject,
|
|
|
|
PsGetCurrentProcess(),
|
|
|
|
&MappedView,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
&Offset,
|
|
|
|
&ViewSize,
|
|
|
|
ViewUnmap,
|
|
|
|
SEC_NO_CHANGE,
|
|
|
|
PAGE_EXECUTE_READ); /* would prefer PAGE_READONLY, but thanks to RTL heaps... */
|
|
|
|
if (!NT_SUCCESS(Status))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
Status = ZwAllocateVirtualMemory(NtCurrentProcess(),
|
|
|
|
&MappedView,
|
|
|
|
0,
|
|
|
|
&ViewSize,
|
|
|
|
MEM_COMMIT,
|
|
|
|
PAGE_EXECUTE_READ); /* would prefer PAGE_READONLY, but thanks to RTL heaps... */
|
|
|
|
|
|
|
|
MmUnmapViewOfSection(PsGetCurrentProcess(),
|
|
|
|
MappedView);
|
|
|
|
|
|
|
|
if (!NT_SUCCESS(Status))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Create the heap, don't serialize in kmode! The caller is responsible
|
|
|
|
to synchronize the heap! */
|
|
|
|
Parameters.Length = sizeof(Parameters);
|
2008-09-15 13:09:30 +00:00
|
|
|
Parameters.InitialCommit = ViewSize;
|
2006-11-08 11:47:44 +00:00
|
|
|
Parameters.InitialReserve = (SIZE_T)HeapSize;
|
|
|
|
Parameters.CommitRoutine = IntUserHeapCommitRoutine;
|
|
|
|
|
2008-10-19 02:05:41 +00:00
|
|
|
pHeap = RtlCreateHeap(HEAP_ZERO_MEMORY | HEAP_NO_SERIALIZE,
|
2006-11-08 11:47:44 +00:00
|
|
|
*SystemMappedBase,
|
|
|
|
(SIZE_T)HeapSize,
|
2008-09-15 13:09:30 +00:00
|
|
|
ViewSize,
|
2006-11-08 11:47:44 +00:00
|
|
|
NULL,
|
|
|
|
&Parameters);
|
|
|
|
|
2008-10-19 02:05:41 +00:00
|
|
|
return pHeap;
|
2006-11-08 11:47:44 +00:00
|
|
|
}
|
|
|
|
|
2008-10-19 02:05:41 +00:00
|
|
|
PWIN32HEAP
|
2006-11-08 11:47:44 +00:00
|
|
|
UserCreateHeap(OUT PSECTION_OBJECT *SectionObject,
|
|
|
|
IN OUT PVOID *SystemBase,
|
2008-05-07 14:39:31 +00:00
|
|
|
IN SIZE_T HeapSize)
|
2006-11-08 11:47:44 +00:00
|
|
|
{
|
|
|
|
LARGE_INTEGER SizeHeap;
|
2008-10-19 02:05:41 +00:00
|
|
|
PWIN32HEAP pHeap = NULL;
|
2006-11-08 11:47:44 +00:00
|
|
|
NTSTATUS Status;
|
|
|
|
|
|
|
|
SizeHeap.QuadPart = HeapSize;
|
|
|
|
|
|
|
|
/* create the section and map it into session space */
|
|
|
|
Status = MmCreateSection((PVOID*)SectionObject,
|
|
|
|
SECTION_ALL_ACCESS,
|
|
|
|
NULL,
|
|
|
|
&SizeHeap,
|
|
|
|
PAGE_EXECUTE_READWRITE, /* would prefer PAGE_READWRITE, but thanks to RTL heaps... */
|
|
|
|
SEC_RESERVE,
|
|
|
|
NULL,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (!NT_SUCCESS(Status))
|
|
|
|
{
|
|
|
|
SetLastNtError(Status);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status = MmMapViewInSystemSpace(*SectionObject,
|
|
|
|
SystemBase,
|
|
|
|
&HeapSize);
|
|
|
|
if (!NT_SUCCESS(Status))
|
|
|
|
{
|
|
|
|
ObDereferenceObject(*SectionObject);
|
|
|
|
*SectionObject = NULL;
|
|
|
|
|
|
|
|
SetLastNtError(Status);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create the heap */
|
2008-10-19 02:05:41 +00:00
|
|
|
pHeap = IntUserHeapCreate(*SectionObject,
|
2006-11-08 11:47:44 +00:00
|
|
|
SystemBase,
|
|
|
|
HeapSize);
|
|
|
|
|
2008-10-19 02:05:41 +00:00
|
|
|
if (pHeap == NULL)
|
2006-11-08 11:47:44 +00:00
|
|
|
{
|
|
|
|
ObDereferenceObject(*SectionObject);
|
|
|
|
*SectionObject = NULL;
|
|
|
|
|
|
|
|
SetLastNtError(STATUS_UNSUCCESSFUL);
|
|
|
|
}
|
|
|
|
|
2008-10-19 02:05:41 +00:00
|
|
|
return pHeap;
|
2006-11-08 11:47:44 +00:00
|
|
|
}
|