00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
#include "cmp.h"
00022
00023
#ifdef ALLOC_PRAGMA
00024
#pragma alloc_text(PAGE,CmpCloseKeyObject)
00025
#endif
00026
00027
VOID
00028 CmpCloseKeyObject(
00029 IN
PEPROCESS Process OPTIONAL,
00030 IN PVOID Object,
00031 IN ACCESS_MASK GrantedAccess,
00032 IN ULONG ProcessHandleCount,
00033 IN ULONG SystemHandleCount
00034 )
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062 {
00063
PCM_KEY_BODY KeyBody;
00064
PCM_NOTIFY_BLOCK NotifyBlock;
00065
00066
PAGED_CODE();
00067
CMLOG(
CML_MAJOR,
CMS_NTAPI|
CMS_POOL) {
00068 KdPrint((
"CmpCloseKeyObject: Object = %08lx\n", Object));
00069 }
00070
00071
if( SystemHandleCount > 1 ) {
00072
00073
00074
00075
return;
00076 }
00077
00078
CmpLockRegistry();
00079
00080 KeyBody = (
PCM_KEY_BODY)Object;
00081
00082
00083
00084
00085
00086
if (KeyBody->
Type ==
KEY_BODY_TYPE) {
00087
00088
00089
00090
if (KeyBody->
NotifyBlock !=
NULL) {
00091
00092
00093
00094 NotifyBlock = KeyBody->
NotifyBlock;
00095
if (IsListEmpty(&(NotifyBlock->
PostList)) ==
FALSE) {
00096
CmLockHive((
PCMHIVE)(KeyBody->
KeyControlBlock->
KeyHive));
00097
CmpPostNotify(NotifyBlock,
00098
NULL,
00099 0,
00100 STATUS_NOTIFY_CLEANUP,
00101
NULL);
00102
CmUnlockHive((
PCMHIVE)(KeyBody->
KeyControlBlock->
KeyHive));
00103 }
00104 }
00105 }
00106
00107
CmpUnlockRegistry();
00108
return;
00109 }