[NTOS:CM] Cleanup the hive in case linking it to master fails (#4969)

Currently the failure code path doesn't do any kind of cleanup against
the hive that was being linked to master. The cleanup is pretty
straightforward as you just simply close the hive file handles and free
the registry kernel structures.

CORE-5772
CORE-17263
CORE-13559
This commit is contained in:
George Bișoc 2022-12-31 17:50:25 +01:00
parent 95e5f07084
commit 0bdae2114a
No known key found for this signature in database
GPG key ID: 688C4FBE25D7DEF6

View file

@ -2121,18 +2121,24 @@ CmLoadKey(IN POBJECT_ATTRIBUTES TargetKey,
/* Release the hive */
CmHive->Hive.HiveFlags &= ~HIVE_IS_UNLOADING;
CmHive->CreatorOwner = NULL;
/* Allow loads */
ExReleasePushLock(&CmpLoadHiveLock);
}
else
{
DPRINT1("CmpLinkHiveToMaster failed, Status %lx\n", Status);
/* FIXME: TODO */
// ASSERT(FALSE); see CORE-17263
ExReleasePushLock(&CmpLoadHiveLock);
/* We're touching this hive, set the loading flag */
CmHive->HiveIsLoading = TRUE;
/* Close associated file handles */
CmpCloseHiveFiles(CmHive);
/* Cleanup its resources */
CmpDestroyHive(CmHive);
}
/* Allow loads */
ExReleasePushLock(&CmpLoadHiveLock);
/* Is this first profile load? */
if (!CmpProfileLoaded && !CmpWasSetupBoot)
{