2018-02-26 22:02:49 -08:00
|
|
|
From 54d8fb202add2fa8dc95fbdee431994886a84b90 Mon Sep 17 00:00:00 2001
|
2016-12-20 14:39:26 -08:00
|
|
|
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
|
|
|
Date: Fri, 18 Nov 2016 22:31:29 +0800
|
2018-02-26 14:23:02 -08:00
|
|
|
Subject: [PATCH] uxtheme: Protect CloseThemeData() from invalid input.
|
2016-12-20 14:39:26 -08:00
|
|
|
MIME-Version: 1.0
|
|
|
|
Content-Type: text/plain; charset=UTF-8
|
|
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
|
|
|
|
Testcase by Michael Müller <michael@fds-team.de>.
|
|
|
|
---
|
2018-02-26 22:02:49 -08:00
|
|
|
dlls/uxtheme/msstyles.c | 22 ++++++++++++++++++++++
|
2016-12-20 14:39:26 -08:00
|
|
|
dlls/uxtheme/msstyles.h | 3 ++-
|
|
|
|
dlls/uxtheme/tests/system.c | 4 ++++
|
2018-02-26 22:02:49 -08:00
|
|
|
3 files changed, 28 insertions(+), 1 deletion(-)
|
2016-12-20 14:39:26 -08:00
|
|
|
|
|
|
|
diff --git a/dlls/uxtheme/msstyles.c b/dlls/uxtheme/msstyles.c
|
2018-02-26 22:02:49 -08:00
|
|
|
index fe91494..7cd2145 100644
|
2016-12-20 14:39:26 -08:00
|
|
|
--- a/dlls/uxtheme/msstyles.c
|
|
|
|
+++ b/dlls/uxtheme/msstyles.c
|
|
|
|
@@ -35,6 +35,7 @@
|
|
|
|
#include "msstyles.h"
|
|
|
|
|
|
|
|
#include "wine/unicode.h"
|
|
|
|
+#include "wine/exception.h"
|
|
|
|
#include "wine/debug.h"
|
2018-02-26 14:23:02 -08:00
|
|
|
#include "wine/heap.h"
|
2016-12-20 14:39:26 -08:00
|
|
|
|
2018-02-26 14:23:02 -08:00
|
|
|
@@ -57,6 +58,8 @@ static const WCHAR szThemesIniResource[] = {
|
2016-12-20 14:39:26 -08:00
|
|
|
't','h','e','m','e','s','_','i','n','i','\0'
|
|
|
|
};
|
|
|
|
|
|
|
|
+#define THEME_CLASS_SIGNATURE (('T' << 24) | ('H' << 16) | ('E' << 8) | 'M')
|
|
|
|
+
|
|
|
|
static PTHEME_FILE tfActiveTheme;
|
|
|
|
|
|
|
|
/***********************************************************************/
|
2018-02-26 22:02:49 -08:00
|
|
|
@@ -221,6 +224,7 @@ void MSSTYLES_CloseThemeFile(PTHEME_FILE tf)
|
|
|
|
pcls->partstate = ps->next;
|
|
|
|
heap_free(ps);
|
|
|
|
}
|
|
|
|
+ pcls->signature = 0;
|
|
|
|
heap_free(pcls);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -452,6 +456,7 @@ static PTHEME_CLASS MSSTYLES_AddClass(PTHEME_FILE tf, LPCWSTR pszAppName, LPCWST
|
2016-12-20 14:39:26 -08:00
|
|
|
if(cur) return cur;
|
|
|
|
|
2018-02-26 14:23:02 -08:00
|
|
|
cur = heap_alloc(sizeof(*cur));
|
2016-12-20 14:39:26 -08:00
|
|
|
+ cur->signature = THEME_CLASS_SIGNATURE;
|
|
|
|
cur->hTheme = tf->hTheme;
|
|
|
|
lstrcpyW(cur->szAppName, pszAppName);
|
|
|
|
lstrcpyW(cur->szClassName, pszClassName);
|
2018-02-26 22:02:49 -08:00
|
|
|
@@ -1045,6 +1050,23 @@ PTHEME_CLASS MSSTYLES_OpenThemeClass(LPCWSTR pszAppName, LPCWSTR pszClassList)
|
2016-12-20 14:39:26 -08:00
|
|
|
*/
|
|
|
|
HRESULT MSSTYLES_CloseThemeClass(PTHEME_CLASS tc)
|
|
|
|
{
|
|
|
|
+ __TRY
|
|
|
|
+ {
|
|
|
|
+ if (tc->signature != THEME_CLASS_SIGNATURE)
|
|
|
|
+ tc = NULL;
|
|
|
|
+ }
|
|
|
|
+ __EXCEPT_PAGE_FAULT
|
|
|
|
+ {
|
|
|
|
+ tc = NULL;
|
|
|
|
+ }
|
|
|
|
+ __ENDTRY
|
|
|
|
+
|
|
|
|
+ if (!tc)
|
|
|
|
+ {
|
|
|
|
+ WARN("Invalid theme class handle\n");
|
|
|
|
+ return E_HANDLE;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
MSSTYLES_CloseThemeFile (tc->tf);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
diff --git a/dlls/uxtheme/msstyles.h b/dlls/uxtheme/msstyles.h
|
|
|
|
index 0b7e1ab..ba10ac8 100644
|
|
|
|
--- a/dlls/uxtheme/msstyles.h
|
|
|
|
+++ b/dlls/uxtheme/msstyles.h
|
|
|
|
@@ -49,6 +49,7 @@ typedef struct _THEME_PARTSTATE {
|
|
|
|
struct _THEME_FILE;
|
|
|
|
|
|
|
|
typedef struct _THEME_CLASS {
|
|
|
|
+ DWORD signature;
|
|
|
|
HMODULE hTheme;
|
|
|
|
struct _THEME_FILE* tf;
|
|
|
|
WCHAR szAppName[MAX_THEME_APP_NAME];
|
|
|
|
@@ -63,7 +64,7 @@ typedef struct _THEME_IMAGE {
|
|
|
|
WCHAR name[MAX_PATH];
|
|
|
|
HBITMAP image;
|
|
|
|
BOOL hasAlpha;
|
|
|
|
-
|
|
|
|
+
|
|
|
|
struct _THEME_IMAGE *next;
|
|
|
|
} THEME_IMAGE, *PTHEME_IMAGE;
|
|
|
|
|
|
|
|
diff --git a/dlls/uxtheme/tests/system.c b/dlls/uxtheme/tests/system.c
|
2018-02-26 14:23:02 -08:00
|
|
|
index 6989f44..d529279 100644
|
2016-12-20 14:39:26 -08:00
|
|
|
--- a/dlls/uxtheme/tests/system.c
|
|
|
|
+++ b/dlls/uxtheme/tests/system.c
|
2018-02-26 14:23:02 -08:00
|
|
|
@@ -198,6 +198,10 @@ static void test_OpenThemeData(void)
|
2016-12-20 14:39:26 -08:00
|
|
|
"Expected GLE() to be E_PROP_ID_UNSUPPORTED, got 0x%08x\n",
|
|
|
|
GetLastError());
|
|
|
|
|
|
|
|
+ /* Close invalid handle */
|
|
|
|
+ hRes = CloseThemeData((HTHEME)0xdeadbeef);
|
|
|
|
+ ok( hRes == E_HANDLE, "Expected E_HANDLE, got 0x%08x\n", hRes);
|
|
|
|
+
|
|
|
|
if (!bThemeActive)
|
|
|
|
{
|
|
|
|
SetLastError(0xdeadbeef);
|
|
|
|
--
|
2018-02-26 22:02:49 -08:00
|
|
|
2.7.4
|
2016-12-20 14:39:26 -08:00
|
|
|
|