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.
 
 
 
 
 
 

268 lines
5.1 KiB

/*++
Copyright (c) 2000 Microsoft Corporation
Module Name:
IgnoreHungAppPaint.cpp
Abstract:
Setup the hollow brush to prevent user from trashing peoples windows.
Notes:
This is a general purpose shim.
History:
12/04/2000 linstev Created
--*/
#include "precomp.h"
#include <new.h>
IMPLEMENT_SHIM_BEGIN(IgnoreHungAppPaint)
#include "ShimHookMacro.h"
APIHOOK_ENUM_BEGIN
APIHOOK_ENUM_ENTRY(RegisterClassA)
APIHOOK_ENUM_ENTRY(RegisterClassW)
APIHOOK_ENUM_ENTRY(RegisterClassExA)
APIHOOK_ENUM_ENTRY(RegisterClassExW)
APIHOOK_ENUM_END
struct HUNGCLASS
{
CString csClass;
HUNGCLASS *next;
};
HUNGCLASS *g_lHungList = NULL;
BOOL g_bAll = FALSE;
/*++
Check if a class needs a hollow brush.
--*/
BOOL
IsHungClassW(LPCWSTR wszClass)
{
BOOL bRet = FALSE;
if (wszClass)
{
HUNGCLASS *h = g_lHungList;
while (h)
{
if (h->csClass.CompareNoCase(wszClass) == 0)
{
LOGN(eDbgLevelWarning, "Matched hung class: forcing HOLLOW_BRUSH");
bRet = TRUE;
break;
}
h = h->next;
}
}
return bRet;
}
/*++
Check if a class needs a hollow brush.
--*/
BOOL
IsHungClassA(LPCSTR szClass)
{
CSTRING_TRY
{
CString csClass(szClass);
return IsHungClassW(csClass);
}
CSTRING_CATCH
{
// Do nothing
}
return FALSE;
}
/*++
Hook all possible calls that can initialize or change a window's
WindowProc (or DialogProc)
--*/
ATOM
APIHOOK(RegisterClassA)(
WNDCLASSA *lpWndClass
)
{
if (lpWndClass && (g_bAll || IsHungClassA(lpWndClass->lpszClassName)))
{
lpWndClass->hbrBackground = (HBRUSH) GetStockObject(HOLLOW_BRUSH);
}
return ORIGINAL_API(RegisterClassA)(lpWndClass);
}
ATOM
APIHOOK(RegisterClassW)(
WNDCLASSW *lpWndClass
)
{
if (lpWndClass && IsHungClassW(lpWndClass->lpszClassName))
{
lpWndClass->hbrBackground = (HBRUSH) GetStockObject(HOLLOW_BRUSH);
}
return ORIGINAL_API(RegisterClassW)(lpWndClass);
}
ATOM
APIHOOK(RegisterClassExA)(
WNDCLASSEXA *lpWndClass
)
{
if (lpWndClass && IsHungClassA(lpWndClass->lpszClassName))
{
lpWndClass->hbrBackground = (HBRUSH) GetStockObject(HOLLOW_BRUSH);
}
return ORIGINAL_API(RegisterClassExA)(lpWndClass);
}
ATOM
APIHOOK(RegisterClassExW)(
WNDCLASSEXW *lpWndClass
)
{
if (lpWndClass && IsHungClassW(lpWndClass->lpszClassName))
{
lpWndClass->hbrBackground = (HBRUSH) GetStockObject(HOLLOW_BRUSH);
}
return ORIGINAL_API(RegisterClassExW)(lpWndClass);
}
/*++
Parse the command line for fixes:
CLASS1; CLASS2; CLASS3 ...
--*/
VOID
ParseCommandLineA(
LPCSTR lpCommandLine
)
{
// Add all the defaults if no command line is specified
if (!lpCommandLine || (lpCommandLine[0] == '\0'))
{
g_bAll = TRUE;
DPFN(eDbgLevelInfo, "All classes will use HOLLOW_BRUSH");
return;
}
char seps[] = " ,\t;";
char *token = NULL;
// Since strtok modifies the string, we need to copy it
int cchCmdLine = strlen(lpCommandLine) + 1;
LPSTR szCommandLine = (LPSTR) malloc(cchCmdLine);
if (!szCommandLine) goto Exit;
HRESULT hr;
hr = StringCchCopyA(szCommandLine, cchCmdLine, lpCommandLine);
if (FAILED(hr))
{
goto Exit;
}
//
// Run the string, looking for fix names
//
token = _strtok(szCommandLine, seps);
while (token)
{
HUNGCLASS *h;
h = (HUNGCLASS *) malloc(sizeof(HUNGCLASS));
if (h)
{
CSTRING_TRY
{
// Force a default construct of the CString (malloc doesn't)
new(&h->csClass) CString();
h->csClass = token;
h->next = g_lHungList;
g_lHungList = h;
DPFN(eDbgLevelInfo, "Adding %s", token);
}
CSTRING_CATCH
{
// Do nothing, loop around and try again with next one.
DPFN(eDbgLevelError, "[IgnoreHungAppPaint] CString exception caught, out of memory");
}
}
else
{
DPFN(eDbgLevelError, "Out of memory");
}
// Get the next token
token = _strtok(NULL, seps);
}
Exit:
if (szCommandLine)
{
free(szCommandLine);
}
}
/*++
Register hooked functions
--*/
BOOL
NOTIFY_FUNCTION(
DWORD fdwReason
)
{
if (fdwReason == DLL_PROCESS_ATTACH) {
ParseCommandLineA(COMMAND_LINE);
}
return TRUE;
}
HOOK_BEGIN
CALL_NOTIFY_FUNCTION
APIHOOK_ENTRY(USER32.DLL, RegisterClassA)
APIHOOK_ENTRY(USER32.DLL, RegisterClassW);
APIHOOK_ENTRY(USER32.DLL, RegisterClassExA);
APIHOOK_ENTRY(USER32.DLL, RegisterClassExW);
HOOK_END
IMPLEMENT_SHIM_END