mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[NTOS]
- Document ObKillProcess. - Implement and document ObClearProcessHandleTable (based on ObKillProcess). svn path=/trunk/; revision=71816
This commit is contained in:
parent
348c8da73d
commit
83bcad15b2
1 changed files with 60 additions and 6 deletions
|
@ -2004,17 +2004,69 @@ ObpDuplicateHandleCallback(IN PEPROCESS Process,
|
||||||
return Ret;
|
return Ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*++
|
||||||
|
* @name ObClearProcessHandleTable
|
||||||
|
*
|
||||||
|
* The ObClearProcessHandleTable routine clears the handle table
|
||||||
|
* of the given process.
|
||||||
|
*
|
||||||
|
* @param Process
|
||||||
|
* The process of which the handle table should be cleared.
|
||||||
|
*
|
||||||
|
* @return None.
|
||||||
|
*
|
||||||
|
* @remarks None.
|
||||||
|
*
|
||||||
|
*--*/
|
||||||
VOID
|
VOID
|
||||||
NTAPI
|
NTAPI
|
||||||
ObClearProcessHandleTable(IN PEPROCESS Process)
|
ObClearProcessHandleTable(IN PEPROCESS Process)
|
||||||
{
|
{
|
||||||
/* FIXME */
|
PHANDLE_TABLE HandleTable;
|
||||||
|
OBP_CLOSE_HANDLE_CONTEXT Context;
|
||||||
|
KAPC_STATE ApcState;
|
||||||
|
BOOLEAN AttachedToProcess = FALSE;
|
||||||
|
|
||||||
|
ASSERT(Process);
|
||||||
|
|
||||||
|
/* Ensure the handle table doesn't go away while we use it */
|
||||||
|
HandleTable = ObReferenceProcessHandleTable(Process);
|
||||||
|
if (!HandleTable) return;
|
||||||
|
|
||||||
|
/* Attach to the current process if needed */
|
||||||
|
if (PsGetCurrentProcess() != Process)
|
||||||
|
{
|
||||||
|
KeStackAttachProcess(&Process->Pcb, &ApcState);
|
||||||
|
AttachedToProcess = TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Enter a critical region */
|
||||||
|
KeEnterCriticalRegion();
|
||||||
|
|
||||||
|
/* Fill out the context */
|
||||||
|
Context.AccessMode = UserMode;
|
||||||
|
Context.HandleTable = HandleTable;
|
||||||
|
|
||||||
|
/* Sweep the handle table to close all handles */
|
||||||
|
ExSweepHandleTable(HandleTable,
|
||||||
|
ObpCloseHandleCallback,
|
||||||
|
&Context);
|
||||||
|
|
||||||
|
/* Leave the critical region */
|
||||||
|
KeLeaveCriticalRegion();
|
||||||
|
|
||||||
|
/* Detach if needed */
|
||||||
|
if (AttachedToProcess)
|
||||||
|
KeUnstackDetachProcess(&ApcState);
|
||||||
|
|
||||||
|
/* Let the handle table go */
|
||||||
|
ObDereferenceProcessHandleTable(Process);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*++
|
/*++
|
||||||
* @name ObpCreateHandleTable
|
* @name ObInitProcess
|
||||||
*
|
*
|
||||||
* The ObpCreateHandleTable routine <FILLMEIN>
|
* The ObInitProcess routine <FILLMEIN>
|
||||||
*
|
*
|
||||||
* @param Parent
|
* @param Parent
|
||||||
* <FILLMEIN>.
|
* <FILLMEIN>.
|
||||||
|
@ -2085,14 +2137,16 @@ ObInitProcess(IN PEPROCESS Parent OPTIONAL,
|
||||||
/*++
|
/*++
|
||||||
* @name ObKillProcess
|
* @name ObKillProcess
|
||||||
*
|
*
|
||||||
* The ObKillProcess routine <FILLMEIN>
|
* The ObKillProcess routine performs rundown operations on the process,
|
||||||
|
* then clears and destroys its handle table.
|
||||||
*
|
*
|
||||||
* @param Process
|
* @param Process
|
||||||
* <FILLMEIN>.
|
* The process to be killed.
|
||||||
*
|
*
|
||||||
* @return None.
|
* @return None.
|
||||||
*
|
*
|
||||||
* @remarks None.
|
* @remarks Called by the Object Manager cleanup code (kernel)
|
||||||
|
* when a process is to be destroyed.
|
||||||
*
|
*
|
||||||
*--*/
|
*--*/
|
||||||
VOID
|
VOID
|
||||||
|
|
Loading…
Reference in a new issue