mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
initialize the handle tables before creating them
svn path=/trunk/; revision=14040
This commit is contained in:
parent
c367070483
commit
f1fa92f6fc
5 changed files with 65 additions and 29 deletions
|
@ -77,6 +77,8 @@ static LARGE_INTEGER ExpHandleShortWait;
|
|||
#define IS_VALID_EX_HANDLE(index) \
|
||||
(((index) & ~VALID_HANDLE_MASK) == 0)
|
||||
|
||||
static BOOLEAN ExpInitialized = FALSE;
|
||||
|
||||
/******************************************************************************/
|
||||
|
||||
VOID
|
||||
|
@ -85,6 +87,8 @@ ExpInitializeHandleTables(VOID)
|
|||
ExpHandleShortWait.QuadPart = -50000;
|
||||
InitializeListHead(&ExpHandleTableHead);
|
||||
ExInitializeFastMutex(&ExpHandleTableListLock);
|
||||
|
||||
ExpInitialized = TRUE;
|
||||
}
|
||||
|
||||
PHANDLE_TABLE
|
||||
|
@ -94,6 +98,11 @@ ExCreateHandleTable(IN PEPROCESS QuotaProcess OPTIONAL)
|
|||
|
||||
PAGED_CODE();
|
||||
|
||||
if(!ExpInitialized)
|
||||
{
|
||||
KEBUGCHECK(0);
|
||||
}
|
||||
|
||||
if(QuotaProcess != NULL)
|
||||
{
|
||||
/* FIXME - Charge process quota before allocating the handle table! */
|
||||
|
|
|
@ -33,6 +33,8 @@ extern LIST_ENTRY KiProfileSourceListHead;
|
|||
extern KSPIN_LOCK KiProfileLock;
|
||||
#endif
|
||||
|
||||
VOID PspPostInitSystemProcess(VOID);
|
||||
|
||||
/* FUNCTIONS ****************************************************************/
|
||||
|
||||
static
|
||||
|
@ -479,6 +481,18 @@ ExpInitializeExecutive(VOID)
|
|||
/* Initialize Basic System Objects and Worker Threads */
|
||||
ExInit3();
|
||||
|
||||
/* Create the system handle table, assign it to the system process, create
|
||||
the client id table and assign a PID for the system process. This needs
|
||||
to be done before the worker threads are initialized so the system
|
||||
process gets the first PID (4) */
|
||||
PspPostInitSystemProcess();
|
||||
|
||||
/* initialize the worker threads */
|
||||
ExInitializeWorkerThreads();
|
||||
|
||||
/* initialize callbacks */
|
||||
ExpInitializeCallbacks();
|
||||
|
||||
/* Initialize the GDB Stub and break */
|
||||
KdInit1();
|
||||
|
||||
|
@ -656,18 +670,16 @@ ExInit2(VOID)
|
|||
VOID INIT_FUNCTION
|
||||
ExInit3 (VOID)
|
||||
{
|
||||
ExInitializeWorkerThreads();
|
||||
ExpInitializeEventImplementation();
|
||||
ExpInitializeEventPairImplementation();
|
||||
ExpInitializeMutantImplementation();
|
||||
ExpInitializeSemaphoreImplementation();
|
||||
ExpInitializeTimerImplementation();
|
||||
ExpInitializeHandleTables();
|
||||
LpcpInitSystem();
|
||||
ExpInitializeProfileImplementation();
|
||||
ExpWin32kInit();
|
||||
ExpInitUuids();
|
||||
ExpInitializeCallbacks();
|
||||
ExpInitializeHandleTables();
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
|
||||
/* GLOBALS ******************************************************************/
|
||||
|
||||
VOID INIT_FUNCTION PsInitClientIDManagment(VOID);
|
||||
|
||||
PEPROCESS EXPORTED PsInitialSystemProcess = NULL;
|
||||
|
||||
POBJECT_TYPE EXPORTED PsProcessType = NULL;
|
||||
|
@ -393,7 +395,6 @@ PsInitProcessManagment(VOID)
|
|||
|
||||
MmInitializeAddressSpace(PsInitialSystemProcess,
|
||||
&PsInitialSystemProcess->AddressSpace);
|
||||
ObCreateHandleTable(NULL,FALSE,PsInitialSystemProcess);
|
||||
|
||||
KeInitializeEvent(&PsInitialSystemProcess->LockEvent, SynchronizationEvent, FALSE);
|
||||
PsInitialSystemProcess->LockCount = 0;
|
||||
|
@ -421,6 +422,28 @@ PsInitProcessManagment(VOID)
|
|||
SepCreateSystemProcessToken(PsInitialSystemProcess);
|
||||
}
|
||||
|
||||
VOID
|
||||
PspPostInitSystemProcess(VOID)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
|
||||
/* this routine is called directly after the exectuive handle tables were
|
||||
initialized. We'll set up the Client ID handle table and assign the system
|
||||
process a PID */
|
||||
PsInitClientIDManagment();
|
||||
|
||||
ObCreateHandleTable(NULL, FALSE, PsInitialSystemProcess);
|
||||
|
||||
Status = PsCreateCidHandle(PsInitialSystemProcess,
|
||||
PsProcessType,
|
||||
&PsInitialSystemProcess->UniqueProcessId);
|
||||
if(!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("Failed to create CID handle (unique process id) for the system process!\n");
|
||||
KEBUGCHECK(0);
|
||||
}
|
||||
}
|
||||
|
||||
VOID STDCALL
|
||||
PiDeleteProcessWorker(PVOID pContext)
|
||||
{
|
||||
|
|
|
@ -14,8 +14,6 @@
|
|||
#define NDEBUG
|
||||
#include <internal/debug.h>
|
||||
|
||||
VOID INIT_FUNCTION PsInitClientIDManagment(VOID);
|
||||
|
||||
/* FUNCTIONS ***************************************************************/
|
||||
|
||||
VOID PiShutdownProcessManager(VOID)
|
||||
|
@ -28,23 +26,10 @@ VOID PiShutdownProcessManager(VOID)
|
|||
VOID INIT_FUNCTION
|
||||
PiInitProcessManager(VOID)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
|
||||
PsInitClientIDManagment();
|
||||
PsInitJobManagment();
|
||||
PsInitProcessManagment();
|
||||
PsInitThreadManagment();
|
||||
PsInitIdleThread();
|
||||
|
||||
Status = PsCreateCidHandle(PsInitialSystemProcess,
|
||||
PsProcessType,
|
||||
&PsInitialSystemProcess->UniqueProcessId);
|
||||
if(!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("Failed to create CID handle (unique process id) for the system process!\n");
|
||||
KEBUGCHECK(0);
|
||||
}
|
||||
|
||||
PsInitialiseSuspendImplementation();
|
||||
PsInitialiseW32Call();
|
||||
}
|
||||
|
|
|
@ -731,9 +731,9 @@ PsInitThreadManagment(VOID)
|
|||
* FUNCTION: Initialize thread managment
|
||||
*/
|
||||
{
|
||||
HANDLE PiReaperThreadHandle;
|
||||
PETHREAD FirstThread;
|
||||
PETHREAD FirstThread, ReaperThread;
|
||||
ULONG i;
|
||||
KIRQL oldIrql;
|
||||
NTSTATUS Status;
|
||||
|
||||
for (i=0; i < MAXIMUM_PRIORITY; i++)
|
||||
|
@ -782,20 +782,27 @@ PsInitThreadManagment(VOID)
|
|||
*/
|
||||
PsInitializeThreadReaper();
|
||||
KeInitializeEvent(&PiReaperThreadEvent, SynchronizationEvent, FALSE);
|
||||
Status = PsCreateSystemThread(&PiReaperThreadHandle,
|
||||
THREAD_ALL_ACCESS,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
PiReaperThreadMain,
|
||||
NULL);
|
||||
Status = PsInitializeThread(NULL,
|
||||
&ReaperThread,
|
||||
NULL,
|
||||
FALSE);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("PS: Failed to create reaper thread.\n");
|
||||
KEBUGCHECK(0);
|
||||
}
|
||||
|
||||
NtClose(PiReaperThreadHandle);
|
||||
ReaperThread->StartAddress = PiReaperThreadMain;
|
||||
Status = KiArchInitThread(&ReaperThread->Tcb, PiReaperThreadMain, NULL);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("PS: Failed to initialize reaper thread.\n");
|
||||
KEBUGCHECK(0);
|
||||
}
|
||||
|
||||
oldIrql = KeAcquireDispatcherDatabaseLock ();
|
||||
PsUnblockThread(ReaperThread, NULL, 0);
|
||||
KeReleaseDispatcherDatabaseLock(oldIrql);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue