Source code of Windows XP (NT5)
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.
|
|
/*++
Copyright (c) 2000 Microsoft Corporation
Module Name:
Win98VersionLie.cpp
Abstract:
This DLL hooks GetVersion and GetVersionEx so that they return Windows 98 version credentials. Applications often check to ensure that they are running on a Win9x system, even though they will run OK on an NT based system.
Notes:
This is a general purpose shim.
History:
11/08/2000 v-hyders Created
--*/
#include "precomp.h"
#include "LegalStr.h"
IMPLEMENT_SHIM_BEGIN(Win98VersionLie) #include "ShimHookMacro.h"
APIHOOK_ENUM_BEGIN APIHOOK_ENUM_ENTRY(GetVersionExA) APIHOOK_ENUM_ENTRY(GetVersionExW) APIHOOK_ENUM_ENTRY(GetVersion) APIHOOK_ENUM_END
BOOL g_bCheckSafeDisc = FALSE;
/*++
This stub function fixes up the OSVERSIONINFO structure that is returned to the caller with Windows 98 credentials.
--*/
BOOL APIHOOK(GetVersionExA)( OUT LPOSVERSIONINFOA lpVersionInformation ) { if (g_bCheckSafeDisc && bIsSafeDisc2()) { return ORIGINAL_API(GetVersionExA)(lpVersionInformation); } else { BOOL bReturn = FALSE;
if (ORIGINAL_API(GetVersionExA)(lpVersionInformation)) {
LOGN(eDbgLevelInfo, "[GetVersionExA] called. return Win98");
//
// Fixup the structure with the Win98 data.
//
lpVersionInformation->dwMajorVersion = 4; lpVersionInformation->dwMinorVersion = 10; lpVersionInformation->dwBuildNumber = 0x040A08AE; lpVersionInformation->dwPlatformId = 1; *lpVersionInformation->szCSDVersion = '\0';
bReturn = TRUE; }
return bReturn; } }
/*++
This stub function fixes up the OSVERSIONINFO structure that is returned to the caller with Windows 98 credentials. This is the wide-character version of GetVersionExW.
--*/
BOOL APIHOOK(GetVersionExW)( OUT LPOSVERSIONINFOW lpVersionInformation ) { if (g_bCheckSafeDisc && bIsSafeDisc2()) { return ORIGINAL_API(GetVersionExW)(lpVersionInformation); } else { BOOL bReturn = FALSE;
if (ORIGINAL_API(GetVersionExW)(lpVersionInformation)) {
LOGN(eDbgLevelInfo, "[GetVersionExW] called. return Win98");
//
// Fixup the structure with the Win98 data.
//
lpVersionInformation->dwMajorVersion = 4; lpVersionInformation->dwMinorVersion = 10; lpVersionInformation->dwBuildNumber = 0x040A08AE; lpVersionInformation->dwPlatformId = 1; *lpVersionInformation->szCSDVersion = '\0';
bReturn = TRUE; }
return bReturn; } }
/*++
This stub function returns Windows 98 credentials.
--*/ DWORD APIHOOK(GetVersion)( void ) { if (g_bCheckSafeDisc && bIsSafeDisc2()) { return ORIGINAL_API(GetVersion)(); } else { LOGN(eDbgLevelInfo, "[GetVersion] Return Win98"); return (DWORD) 0xC0000A04; } }
/*++
Register hooked functions
--*/
BOOL NOTIFY_FUNCTION( DWORD fdwReason ) { if (fdwReason == DLL_PROCESS_ATTACH) { g_bCheckSafeDisc = COMMAND_LINE && (_stricmp(COMMAND_LINE, "Detect_SafeDisc") == 0);
if (g_bCheckSafeDisc && bIsSafeDisc1()) { LOGN(eDbgLevelWarning, "SafeDisc 1.x detected: ignoring shim"); return FALSE; } } return TRUE; }
HOOK_BEGIN
CALL_NOTIFY_FUNCTION
APIHOOK_ENTRY(KERNEL32.DLL, GetVersionExA) APIHOOK_ENTRY(KERNEL32.DLL, GetVersionExW) APIHOOK_ENTRY(KERNEL32.DLL, GetVersion)
HOOK_END
IMPLEMENT_SHIM_END
|