Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

105 lines
2.5 KiB

#include "precomp.h"
IMPLEMENT_SHIM_BEGIN(Win2kPropagateLayer)
#include "ShimHookMacro.h"
#include <stdarg.h>
#include <string.h>
#include <stdio.h>
#define APPCOMPAT_KEYW L"\\Registry\\Machine\\System\\CurrentControlSet\\Control\\Session Manager\\AppCompatibility"
BOOL
CleanupRegistryForCurrentExe(
void
)
{
NTSTATUS status;
OBJECT_ATTRIBUTES objA;
HANDLE hkey;
WCHAR wszExeName[MAX_PATH];
WCHAR wszKey[MAX_PATH];
UNICODE_STRING strKey;
UNICODE_STRING strValue;
DWORD dwChars = GetModuleFileNameW(NULL, wszExeName, MAX_PATH);
// If there was an error, or the path was truncated.
if (dwChars == 0 || dwChars == MAX_PATH) {
return FALSE;
}
WCHAR* pwsz = wszExeName + dwChars;
while (pwsz >= wszExeName) {
if (*pwsz == '\\') {
break;
}
pwsz--;
}
pwsz++;
LOGN(
eDbgLevelInfo,
"[CleanupRegistryForCurrentExe] Cleanup for \"%S\"",
pwsz);
if( FAILED(StringCchPrintf(wszKey, MAX_PATH, L"%ls\\%ls", APPCOMPAT_KEYW, pwsz)) )
{
return FALSE;
}
RtlInitUnicodeString(&strKey, wszKey);
InitializeObjectAttributes(&objA,
&strKey,
OBJ_CASE_INSENSITIVE,
NULL,
NULL);
status = NtOpenKey(&hkey,
MAXIMUM_ALLOWED,
&objA);
if (!NT_SUCCESS(status)) {
LOGN(
eDbgLevelError,
"[CleanupRegistryForCurrentExe] Failed to open key \"%S\"",
wszKey);
return TRUE;
}
RtlInitUnicodeString(&strValue, L"DllPatch-y");
NtDeleteValueKey(hkey, &strValue);
RtlInitUnicodeString(&strValue, L"y");
NtDeleteValueKey(hkey, &strValue);
//
// Now check to see if there are any more values under this key.
// Delete it if there are no more values.
//
KEY_FULL_INFORMATION keyInfo;
DWORD dwReturnLength = 0;
status = NtQueryKey(hkey,
KeyFullInformation,
&keyInfo,
sizeof(keyInfo),
&dwReturnLength);
if (NT_SUCCESS(status) && keyInfo.Values == 0) {
NtDeleteKey(hkey);
}
NtClose(hkey);
return TRUE;
}
IMPLEMENT_SHIM_END