diff options
Diffstat (limited to '')
-rw-r--r-- | C/DllSecur.c | 127 |
1 files changed, 62 insertions, 65 deletions
diff --git a/C/DllSecur.c b/C/DllSecur.c index dce0c96..02a0f97 100644 --- a/C/DllSecur.c +++ b/C/DllSecur.c | |||
@@ -1,18 +1,28 @@ | |||
1 | /* DllSecur.c -- DLL loading security | 1 | /* DllSecur.c -- DLL loading security |
2 | 2022-07-15 : Igor Pavlov : Public domain */ | 2 | 2023-04-02 : Igor Pavlov : Public domain */ |
3 | 3 | ||
4 | #include "Precomp.h" | 4 | #include "Precomp.h" |
5 | 5 | ||
6 | #ifdef _WIN32 | 6 | #ifdef _WIN32 |
7 | 7 | ||
8 | #include <Windows.h> | 8 | #include "7zWindows.h" |
9 | 9 | ||
10 | #include "DllSecur.h" | 10 | #include "DllSecur.h" |
11 | 11 | ||
12 | #ifndef UNDER_CE | 12 | #ifndef UNDER_CE |
13 | 13 | ||
14 | #if defined(__GNUC__) && (__GNUC__ >= 8) | 14 | #if (defined(__GNUC__) && (__GNUC__ >= 8)) || defined(__clang__) |
15 | #pragma GCC diagnostic ignored "-Wcast-function-type" | 15 | // #pragma GCC diagnostic ignored "-Wcast-function-type" |
16 | #endif | ||
17 | |||
18 | #if defined(__clang__) || defined(__GNUC__) | ||
19 | typedef void (*Z7_voidFunction)(void); | ||
20 | #define MY_CAST_FUNC (Z7_voidFunction) | ||
21 | #elif defined(_MSC_VER) && _MSC_VER > 1920 | ||
22 | #define MY_CAST_FUNC (void *) | ||
23 | // #pragma warning(disable : 4191) // 'type cast': unsafe conversion from 'FARPROC' to 'void (__cdecl *)()' | ||
24 | #else | ||
25 | #define MY_CAST_FUNC | ||
16 | #endif | 26 | #endif |
17 | 27 | ||
18 | typedef BOOL (WINAPI *Func_SetDefaultDllDirectories)(DWORD DirectoryFlags); | 28 | typedef BOOL (WINAPI *Func_SetDefaultDllDirectories)(DWORD DirectoryFlags); |
@@ -20,95 +30,82 @@ typedef BOOL (WINAPI *Func_SetDefaultDllDirectories)(DWORD DirectoryFlags); | |||
20 | #define MY_LOAD_LIBRARY_SEARCH_USER_DIRS 0x400 | 30 | #define MY_LOAD_LIBRARY_SEARCH_USER_DIRS 0x400 |
21 | #define MY_LOAD_LIBRARY_SEARCH_SYSTEM32 0x800 | 31 | #define MY_LOAD_LIBRARY_SEARCH_SYSTEM32 0x800 |
22 | 32 | ||
33 | #define DELIM "\0" | ||
34 | |||
23 | static const char * const g_Dlls = | 35 | static const char * const g_Dlls = |
36 | "userenv" | ||
37 | DELIM "setupapi" | ||
38 | DELIM "apphelp" | ||
39 | DELIM "propsys" | ||
40 | DELIM "dwmapi" | ||
41 | DELIM "cryptbase" | ||
42 | DELIM "oleacc" | ||
43 | DELIM "clbcatq" | ||
44 | DELIM "version" | ||
24 | #ifndef _CONSOLE | 45 | #ifndef _CONSOLE |
25 | "UXTHEME\0" | 46 | DELIM "uxtheme" |
26 | #endif | 47 | #endif |
27 | "USERENV\0" | 48 | DELIM; |
28 | "SETUPAPI\0" | ||
29 | "APPHELP\0" | ||
30 | "PROPSYS\0" | ||
31 | "DWMAPI\0" | ||
32 | "CRYPTBASE\0" | ||
33 | "OLEACC\0" | ||
34 | "CLBCATQ\0" | ||
35 | "VERSION\0" | ||
36 | ; | ||
37 | 49 | ||
38 | #endif | 50 | #endif |
39 | 51 | ||
40 | // #define MY_CAST_FUNC (void(*)()) | 52 | #ifdef __clang__ |
41 | #define MY_CAST_FUNC | 53 | #pragma GCC diagnostic ignored "-Wdeprecated-declarations" |
54 | #endif | ||
55 | #if defined (_MSC_VER) && _MSC_VER >= 1900 | ||
56 | // sysinfoapi.h: kit10: GetVersion was declared deprecated | ||
57 | #pragma warning(disable : 4996) | ||
58 | #endif | ||
59 | |||
60 | #define IF_NON_VISTA_SET_DLL_DIRS_AND_RETURN \ | ||
61 | if ((UInt16)GetVersion() != 6) { \ | ||
62 | const \ | ||
63 | Func_SetDefaultDllDirectories setDllDirs = \ | ||
64 | (Func_SetDefaultDllDirectories) MY_CAST_FUNC GetProcAddress(GetModuleHandle(TEXT("kernel32.dll")), \ | ||
65 | "SetDefaultDllDirectories"); \ | ||
66 | if (setDllDirs) if (setDllDirs(MY_LOAD_LIBRARY_SEARCH_SYSTEM32 | MY_LOAD_LIBRARY_SEARCH_USER_DIRS)) return; } | ||
42 | 67 | ||
43 | void My_SetDefaultDllDirectories() | 68 | void My_SetDefaultDllDirectories(void) |
44 | { | 69 | { |
45 | #ifndef UNDER_CE | 70 | #ifndef UNDER_CE |
46 | 71 | IF_NON_VISTA_SET_DLL_DIRS_AND_RETURN | |
47 | OSVERSIONINFO vi; | ||
48 | vi.dwOSVersionInfoSize = sizeof(vi); | ||
49 | if (!GetVersionEx(&vi) || vi.dwMajorVersion != 6 || vi.dwMinorVersion != 0) | ||
50 | { | ||
51 | Func_SetDefaultDllDirectories setDllDirs = (Func_SetDefaultDllDirectories) | ||
52 | MY_CAST_FUNC GetProcAddress(GetModuleHandle(TEXT("kernel32.dll")), "SetDefaultDllDirectories"); | ||
53 | if (setDllDirs) | ||
54 | if (setDllDirs(MY_LOAD_LIBRARY_SEARCH_SYSTEM32 | MY_LOAD_LIBRARY_SEARCH_USER_DIRS)) | ||
55 | return; | ||
56 | } | ||
57 | |||
58 | #endif | 72 | #endif |
59 | } | 73 | } |
60 | 74 | ||
61 | 75 | ||
62 | void LoadSecurityDlls() | 76 | void LoadSecurityDlls(void) |
63 | { | 77 | { |
64 | #ifndef UNDER_CE | 78 | #ifndef UNDER_CE |
65 | 79 | // at Vista (ver 6.0) : CoCreateInstance(CLSID_ShellLink, ...) doesn't work after SetDefaultDllDirectories() : Check it ??? | |
66 | wchar_t buf[MAX_PATH + 100]; | 80 | IF_NON_VISTA_SET_DLL_DIRS_AND_RETURN |
67 | |||
68 | { | ||
69 | // at Vista (ver 6.0) : CoCreateInstance(CLSID_ShellLink, ...) doesn't work after SetDefaultDllDirectories() : Check it ??? | ||
70 | OSVERSIONINFO vi; | ||
71 | vi.dwOSVersionInfoSize = sizeof(vi); | ||
72 | if (!GetVersionEx(&vi) || vi.dwMajorVersion != 6 || vi.dwMinorVersion != 0) | ||
73 | { | ||
74 | Func_SetDefaultDllDirectories setDllDirs = (Func_SetDefaultDllDirectories) | ||
75 | MY_CAST_FUNC GetProcAddress(GetModuleHandle(TEXT("kernel32.dll")), "SetDefaultDllDirectories"); | ||
76 | if (setDllDirs) | ||
77 | if (setDllDirs(MY_LOAD_LIBRARY_SEARCH_SYSTEM32 | MY_LOAD_LIBRARY_SEARCH_USER_DIRS)) | ||
78 | return; | ||
79 | } | ||
80 | } | ||
81 | |||
82 | { | ||
83 | unsigned len = GetSystemDirectoryW(buf, MAX_PATH + 2); | ||
84 | if (len == 0 || len > MAX_PATH) | ||
85 | return; | ||
86 | } | ||
87 | { | 81 | { |
82 | wchar_t buf[MAX_PATH + 100]; | ||
88 | const char *dll; | 83 | const char *dll; |
89 | unsigned pos = (unsigned)lstrlenW(buf); | 84 | unsigned pos = GetSystemDirectoryW(buf, MAX_PATH + 2); |
90 | 85 | if (pos == 0 || pos > MAX_PATH) | |
86 | return; | ||
91 | if (buf[pos - 1] != '\\') | 87 | if (buf[pos - 1] != '\\') |
92 | buf[pos++] = '\\'; | 88 | buf[pos++] = '\\'; |
93 | 89 | for (dll = g_Dlls; *dll != 0;) | |
94 | for (dll = g_Dlls; dll[0] != 0;) | ||
95 | { | 90 | { |
96 | unsigned k = 0; | 91 | wchar_t *dest = &buf[pos]; |
97 | for (;;) | 92 | for (;;) |
98 | { | 93 | { |
99 | char c = *dll++; | 94 | const char c = *dll++; |
100 | buf[pos + k] = (Byte)c; | ||
101 | k++; | ||
102 | if (c == 0) | 95 | if (c == 0) |
103 | break; | 96 | break; |
97 | *dest++ = (Byte)c; | ||
104 | } | 98 | } |
105 | 99 | dest[0] = '.'; | |
106 | lstrcatW(buf, L".dll"); | 100 | dest[1] = 'd'; |
101 | dest[2] = 'l'; | ||
102 | dest[3] = 'l'; | ||
103 | dest[4] = 0; | ||
104 | // lstrcatW(buf, L".dll"); | ||
107 | LoadLibraryExW(buf, NULL, LOAD_WITH_ALTERED_SEARCH_PATH); | 105 | LoadLibraryExW(buf, NULL, LOAD_WITH_ALTERED_SEARCH_PATH); |
108 | } | 106 | } |
109 | } | 107 | } |
110 | |||
111 | #endif | 108 | #endif |
112 | } | 109 | } |
113 | 110 | ||
114 | #endif | 111 | #endif // _WIN32 |