|
|
/*++
Copyright (c) 2000 Microsoft Corporation
Module Name:
DelayShowGroup.cpp
Abstract:
When the ShowGroup command is sent to Program Manager (DDE), wait for the window to actually appear before returning.
History:
10/05/2000 robkenny Created 02/13/2002 astritz Security Review
--*/
#include "precomp.h"
#include <ParseDDE.h>
IMPLEMENT_SHIM_BEGIN(DelayShowGroup) #include "ShimHookMacro.h"
APIHOOK_ENUM_BEGIN APIHOOK_ENUM_ENTRY(DdeClientTransaction) APIHOOK_ENUM_END
static DWORD dwMaxWaitTime = 5000; // 5 seconds
// A list of DDE commands that we are interested in.
const char * c_sDDECommands[] = { "ShowGroup", NULL, } ;
// Return FALSE if this window contains the pathname in lParam
BOOL CALLBACK WindowEnumCB( HWND hwnd, // handle to parent window
LPARAM lParam // application-defined value
) { BOOL bRet = TRUE; const char * szGroupName = (const char *)lParam; int cch = GetWindowTextLengthA(hwnd);
if( cch > 0 ) { // Include space for a null character.
cch++;
char *lpWindowTitle = (char *)malloc(cch*sizeof(char)); if( lpWindowTitle ) { int cchCopied = GetWindowTextA(hwnd, lpWindowTitle, cch); if( cchCopied > 0 && cchCopied < cch ) { //DPF(eDbgLevelSpew, "Window(%s)\n", lpWindowTitle);
if (_stricmp(lpWindowTitle, szGroupName) == 0) { bRet = FALSE; } } free(lpWindowTitle); } }
return bRet; // keep enumming
}
// Determine if a window with the szGroupName exists on the sytem
BOOL CheckForWindow(const char * szGroupName) { DWORD success = EnumDesktopWindows(NULL, WindowEnumCB, (LPARAM)szGroupName);
BOOL retval = success == 0 && GetLastError() == 0;
return retval; }
// Check to see if this is a ShowGroup command,
// if it is do not return until the window actually exists
void DelayIfShowGroup(LPBYTE pData) { if (pData) { // Now we need to parse the string, looking for a DeleteGroup command
// Format "ShowGroup(GroupName,ShowCommand[,CommonGroupFlag])"
// CommonGroupFlag is optional
char * pszBuf = StringDuplicateA((const char *)pData); if (!pszBuf) return;
UINT * lpwCmd = GetDDECommands(pszBuf, c_sDDECommands, FALSE); if (lpwCmd) { // Store off lpwCmd so we can free the correct addr later
UINT *lpwCmdTemp = lpwCmd;
// Execute a command.
while (*lpwCmd != (UINT)-1) { UINT wCmd = *lpwCmd++; // Subtract 1 to account for the terminating NULL
if (wCmd < ARRAYSIZE(c_sDDECommands)-1) {
// We found a command--it must be DeleteGroup--since there is only 1
BOOL iCommonGroup = -1;
// From DDE_ShowGroup
if (*lpwCmd < 2 || *lpwCmd > 3) { goto Leave; }
if (*lpwCmd == 3) {
//
// Need to check for common group flag
//
if (pszBuf[*(lpwCmd + 3)] == '1') { iCommonGroup = 1; } else { iCommonGroup = 0; } } const char * groupName = pszBuf + lpwCmd[1];
// Build a path to the directory
CString csGroupName; LPSTR pszGroupName; GetGroupPath(groupName, csGroupName, 0, iCommonGroup); pszGroupName = csGroupName.GetAnsi();
// We need to wait until we have a window whose title matches this group
DWORD dwStartTime = GetTickCount(); DWORD dwNowTime = dwStartTime; BOOL bWindowExists = FALSE;
while (dwNowTime - dwStartTime < dwMaxWaitTime) { bWindowExists = CheckForWindow(pszGroupName); if (bWindowExists) break;
Sleep(100); // wait a bit more
dwNowTime = GetTickCount(); }
LOGN( eDbgLevelError, "DelayIfShowGroup: %8s(%s).", bWindowExists ? "Show" : "Timeout", pszGroupName); }
// Next command.
lpwCmd += *lpwCmd + 1; }
Leave: // Tidyup...
GlobalFree(lpwCmdTemp); }
free(pszBuf); } }
HDDEDATA APIHOOK(DdeClientTransaction)( LPBYTE pData, // pointer to data to pass to server
DWORD cbData, // length of data
HCONV hConv, // handle to conversation
HSZ hszItem, // handle to item name string
UINT wFmt, // clipboard data format
UINT wType, // transaction type
DWORD dwTimeout, // time-out duration
LPDWORD pdwResult // pointer to transaction result
) { #if 0
dwTimeout = 0x0fffffff; // a long time, enables me to debug explorer
#endif
if (pData && cbData != -1) { DPFN(eDbgLevelInfo, "DdeClientTransaction(%s) called.", pData); }
// Pass data through untouched.
HDDEDATA retval = ORIGINAL_API(DdeClientTransaction)( pData, // pointer to data to pass to server
cbData, // length of data
hConv, // handle to conversation
hszItem, // handle to item name string
wFmt, // clipboard data format
wType, // transaction type
dwTimeout, // time-out duration
pdwResult // pointer to transaction result
);
if ( retval != 0 && pData && cbData != -1) DelayIfShowGroup(pData);
return retval;
}
/*++
Register hooked functions
--*/
HOOK_BEGIN
APIHOOK_ENTRY(USER32.DLL, DdeClientTransaction)
HOOK_END
IMPLEMENT_SHIM_END
|