Skip to content

Commit 1a5975c

Browse files
author
Marc-André Moreau
committed
work around separator menu item deletion bug
1 parent e460508 commit 1a5975c

File tree

2 files changed

+49
-1
lines changed

2 files changed

+49
-1
lines changed

dll/ApiHooks.cpp

+48-1
Original file line numberDiff line numberDiff line change
@@ -516,6 +516,8 @@ LRESULT CALLBACK Hook_TscShellContainerWndProc(HWND hWnd, UINT uMsg, WPARAM wPar
516516

517517
CMsRdpExInstance* instance = MsRdpEx_InstanceManager_FindByTscShellContainerWnd(hWnd);
518518

519+
//MsRdpEx_LogPrint(DEBUG, "TscShellContainerWnd: %s (%d)", MsRdpEx_GetWindowMessageName(uMsg), uMsg);
520+
519521
result = Real_TscShellContainerWndProc(hWnd, uMsg, wParam, lParam);
520522

521523
if (instance)
@@ -724,7 +726,7 @@ LRESULT CALLBACK Hook_IHWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPar
724726
AppendMenu(hExtraMenu, MF_STRING, SYSMENU_RDP_SEND_CTRL_ALT_END_ID, L"Send Ctrl+Alt+End");
725727

726728
AppendMenu(hSystemMenu, MF_SEPARATOR, 0, NULL);
727-
AppendMenu(hSystemMenu, MF_POPUP, (UINT_PTR)hExtraMenu, L"Extra");
729+
AppendMenu(hSystemMenu, MF_POPUP, (::UINT_PTR)hExtraMenu, L"Extra");
728730

729731
instance->AttachTscShellContainerWindow(hParentWnd);
730732
}
@@ -1245,6 +1247,41 @@ LSTATUS Hook_RegCloseKey(HKEY hKey)
12451247
return lstatus;
12461248
}
12471249

1250+
typedef BOOL(WINAPI* Func_DeleteMenu)(HMENU hMenu, UINT uPosition, UINT uFlags);
1251+
1252+
static Func_DeleteMenu Real_DeleteMenu = DeleteMenu;
1253+
1254+
BOOL Hook_DeleteMenu(HMENU hMenu, UINT uPosition, UINT uFlags)
1255+
{
1256+
BOOL success = TRUE;
1257+
BOOL skipDelete = FALSE;
1258+
1259+
if (!(uFlags & MF_BYPOSITION) && MsRdpEx_IsAddressInRdpExeModule(_ReturnAddress()))
1260+
{
1261+
MENUITEMINFOA mii = { 0 };
1262+
mii.cbSize = sizeof(MENUITEMINFOA);
1263+
mii.fMask = MIIM_ID | MIIM_STRING;
1264+
char itemName[256] = { 0 };
1265+
mii.dwTypeData = itemName;
1266+
mii.cch = sizeof(itemName);
1267+
1268+
if (GetMenuItemInfoA(hMenu, uPosition, FALSE, &mii))
1269+
{
1270+
if ((mii.wID == 0) && (mii.cch == 0)) {
1271+
MsRdpEx_LogPrint(DEBUG, "DeleteMenu hMenu: %p uPosition: 0x%04X uFlags 0x%04X", hMenu, uPosition, uFlags);
1272+
MsRdpEx_LogPrint(DEBUG, "Skipping deletion of menu item ID: 0x%04X, name: %s, cch: %d", mii.wID, itemName, mii.cch);
1273+
skipDelete = TRUE; // work around bug where separator menu items are deleted by CContainerWnd::SyncClipboardMenu()
1274+
}
1275+
}
1276+
}
1277+
1278+
if (!skipDelete) {
1279+
success = Real_DeleteMenu(hMenu, uPosition, uFlags);
1280+
}
1281+
1282+
return success;
1283+
}
1284+
12481285
bool MsRdpEx_IsAddressInModule(PVOID pAddress, LPCTSTR pszModule)
12491286
{
12501287
bool result;
@@ -1296,6 +1333,12 @@ bool MsRdpEx_IsAddressInRdclientAxModule(PVOID pAddress)
12961333
return MsRdpEx_IsAddressInModule(pAddress, L"rdclientax.dll");
12971334
}
12981335

1336+
bool MsRdpEx_IsAddressInRdpExeModule(PVOID pAddress)
1337+
{
1338+
return MsRdpEx_IsAddressInModule(pAddress, L"mstsc.exe") ||
1339+
MsRdpEx_IsAddressInModule(pAddress, L"msrdc.exe");
1340+
}
1341+
12991342
void MsRdpEx_GlobalInit()
13001343
{
13011344
MsRdpEx_NameResolver_Get();
@@ -1368,6 +1411,8 @@ LONG MsRdpEx_AttachHooks()
13681411
//MSRDPEX_DETOUR_ATTACH(Real_RegOpenKeyExW, Hook_RegOpenKeyExW);
13691412
//MSRDPEX_DETOUR_ATTACH(Real_RegQueryValueExW, Hook_RegQueryValueExW);
13701413
//MSRDPEX_DETOUR_ATTACH(Real_RegCloseKey, Hook_RegCloseKey);
1414+
1415+
MSRDPEX_DETOUR_ATTACH(Real_DeleteMenu, Hook_DeleteMenu);
13711416

13721417
MsRdpEx_AttachSspiHooks();
13731418
error = DetourTransactionCommit();
@@ -1425,6 +1470,8 @@ LONG MsRdpEx_DetachHooks()
14251470
//MSRDPEX_DETOUR_DETACH(Real_RegOpenKeyExW, Hook_RegOpenKeyExW);
14261471
//MSRDPEX_DETOUR_DETACH(Real_RegQueryValueExW, Hook_RegQueryValueExW);
14271472
//MSRDPEX_DETOUR_DETACH(Real_RegCloseKey, Hook_RegCloseKey);
1473+
1474+
MSRDPEX_DETOUR_DETACH(Real_DeleteMenu, Hook_DeleteMenu);
14281475

14291476
MsRdpEx_DetachSspiHooks();
14301477
error = DetourTransactionCommit();

dll/MsRdpEx.h

+1
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ bool MsRdpEx_IsAddressInModule(PVOID pAddress, LPCTSTR pszModule);
208208
bool MsRdpEx_IsAddressInRdpAxModule(PVOID pAddress);
209209
bool MsRdpEx_IsAddressInMstscAxModule(PVOID pAddress);
210210
bool MsRdpEx_IsAddressInRdclientAxModule(PVOID pAddress);
211+
bool MsRdpEx_IsAddressInRdpExeModule(PVOID pAddress);
211212

212213
LONG MsRdpEx_GetRectWidth(LPRECT rect);
213214
LONG MsRdpEx_GetRectHeight(LPRECT rect);

0 commit comments

Comments
 (0)