VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/win/SUPHardenedVerify-win.h@ 78374

Last change on this file since 78374 was 77972, checked in by vboxsync, 6 years ago

HostDrivers/Support/win: Burn fix for r129708 (wasn't aware of the Windows part, bugref:9188)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 12.0 KB
Line 
1/* $Id: SUPHardenedVerify-win.h 77972 2019-04-01 09:40:16Z vboxsync $ */
2/** @file
3 * VirtualBox Support Library/Driver - Hardened Verification, Windows.
4 */
5
6/*
7 * Copyright (C) 2006-2019 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27#ifndef VBOX_INCLUDED_SRC_Support_win_SUPHardenedVerify_win_h
28#define VBOX_INCLUDED_SRC_Support_win_SUPHardenedVerify_win_h
29#ifndef RT_WITHOUT_PRAGMA_ONCE
30# pragma once
31#endif
32
33#include <iprt/types.h>
34#include <iprt/crypto/x509.h>
35#ifndef SUP_CERTIFICATES_ONLY
36# ifdef RT_OS_WINDOWS
37# include <iprt/ldr.h>
38# endif
39#endif
40
41
42RT_C_DECLS_BEGIN
43
44#ifndef SUP_CERTIFICATES_ONLY
45# ifdef RT_OS_WINDOWS
46DECLHIDDEN(int) supHardenedWinInitImageVerifier(PRTERRINFO pErrInfo);
47DECLHIDDEN(void) supHardenedWinTermImageVerifier(void);
48DECLHIDDEN(void) supR3HardenedWinVerifyCacheScheduleImports(RTLDRMOD hLdrMod, PCRTUTF16 pwszName);
49DECLHIDDEN(void) supR3HardenedWinVerifyCachePreload(PCRTUTF16 pwszName);
50
51
52typedef enum SUPHARDNTVPKIND
53{
54 SUPHARDNTVPKIND_VERIFY_ONLY = 1,
55 SUPHARDNTVPKIND_CHILD_PURIFICATION,
56 SUPHARDNTVPKIND_SELF_PURIFICATION,
57 SUPHARDNTVPKIND_32BIT_HACK = 0x7fffffff
58} SUPHARDNTVPKIND;
59/** @name SUPHARDNTVP_F_XXX - Flags for supHardenedWinVerifyProcess
60 * @{ */
61/** Replace unwanted executable memory allocations with a new one that's filled
62 * with a safe read-write copy (default is just to free it).
63 *
64 * This is one way we attempt to work around buggy protection software that
65 * either result in host BSOD or VBox application malfunction. Here the current
66 * shit list:
67 * - Trend Micro's data protection software includes a buggy driver called
68 * sakfile.sys that has been observed crashing accessing user memory that we
69 * probably freed. I'd love to report this to Trend Micro, but unfortunately
70 * they doesn't advertise (or have?) an email address for reporting security
71 * vulnerabilities in the their software. Having wasted time looking and not
72 * very sorry for having to disclosing the bug here.
73 * - Maybe one more.
74 */
75#define SUPHARDNTVP_F_EXEC_ALLOC_REPLACE_WITH_RW RT_BIT_32(0)
76/** @} */
77DECLHIDDEN(int) supHardenedWinVerifyProcess(HANDLE hProcess, HANDLE hThread, SUPHARDNTVPKIND enmKind, uint32_t fFlags,
78 uint32_t *pcFixes, PRTERRINFO pErrInfo);
79DECLHIDDEN(int) supHardNtVpThread(HANDLE hProcess, HANDLE hThread, PRTERRINFO pErrInfo);
80DECLHIDDEN(int) supHardNtVpDebugger(HANDLE hProcess, PRTERRINFO pErrInfo);
81
82DECLHIDDEN(bool) supHardViUtf16PathIsEqualEx(PCRTUTF16 pawcLeft, size_t cwcLeft, const char *pszRight);
83DECLHIDDEN(bool) supHardViUniStrPathStartsWithUniStr(UNICODE_STRING const *pUniStrLeft,
84 UNICODE_STRING const *pUniStrRight, bool fCheckSlash);
85DECLHIDDEN(bool) supHardViUtf16PathStartsWithEx(PCRTUTF16 pwszLeft, uint32_t cwcLeft,
86 PCRTUTF16 pwszRight, uint32_t cwcRight, bool fCheckSlash);
87DECLHIDDEN(bool) supHardViIsAppPatchDir(PCRTUTF16 pwszPath, uint32_t cwcName);
88
89
90/**
91 * SUP image verifier loader reader instance.
92 */
93typedef struct SUPHNTVIRDR
94{
95 /** The core reader structure. */
96 RTLDRREADER Core;
97 /** The file handle. */
98 HANDLE hFile;
99 /** Handle to event sempahore in case we're force to deal with asynchronous
100 * I/O. */
101 HANDLE hEvent;
102 /** Current file offset. */
103 RTFOFF off;
104 /** The file size. */
105 uint64_t cbFile;
106 /** Flags for the verification callback, SUPHNTVI_F_XXX. */
107 uint32_t fFlags;
108 /** The executable timstamp in second since unix epoch. */
109 uint64_t uTimestamp;
110 /** Log name. */
111 char szFilename[1];
112} SUPHNTVIRDR;
113/** Pointer to an SUP image verifier loader reader instance. */
114typedef SUPHNTVIRDR *PSUPHNTVIRDR;
115DECLHIDDEN(int) supHardNtViRdrCreate(HANDLE hFile, PCRTUTF16 pwszName, uint32_t fFlags, PSUPHNTVIRDR *ppNtViRdr);
116DECLHIDDEN(bool) supHardenedWinIsWinVerifyTrustCallable(void);
117DECLHIDDEN(int) supHardenedWinVerifyImageTrust(HANDLE hFile, PCRTUTF16 pwszName, uint32_t fFlags, int rc,
118 bool *pfWinVerifyTrust, PRTERRINFO pErrInfo);
119DECLHIDDEN(int) supHardenedWinVerifyImageByHandle(HANDLE hFile, PCRTUTF16 pwszName, uint32_t fFlags, bool fAvoidWinVerifyTrust,
120 bool *pfWinVerifyTrust, PRTERRINFO pErrInfo);
121DECLHIDDEN(int) supHardenedWinVerifyImageByHandleNoName(HANDLE hFile, uint32_t fFlags, PRTERRINFO pErrInfo);
122DECLHIDDEN(int) supHardenedWinVerifyImageByLdrMod(RTLDRMOD hLdrMod, PCRTUTF16 pwszName, PSUPHNTVIRDR pNtViRdr,
123 bool fAvoidWinVerifyTrust, bool *pfWinVerifyTrust, PRTERRINFO pErrInfo);
124/** @name SUPHNTVI_F_XXX - Flags for supHardenedWinVerifyImageByHandle.
125 * @{ */
126/** The signing certificate must be the same as the one the VirtualBox build
127 * was signed with. */
128# define SUPHNTVI_F_REQUIRE_BUILD_CERT RT_BIT(0)
129/** Require kernel code signing level. */
130# define SUPHNTVI_F_REQUIRE_KERNEL_CODE_SIGNING RT_BIT(1)
131/** Require the image to force the memory mapper to do signature checking. */
132# define SUPHNTVI_F_REQUIRE_SIGNATURE_ENFORCEMENT RT_BIT(2)
133/** Whether to allow image verification by catalog file. */
134# define SUPHNTVI_F_ALLOW_CAT_FILE_VERIFICATION RT_BIT(3)
135/** The file owner must be TrustedInstaller on Vista+. */
136# define SUPHNTVI_F_TRUSTED_INSTALLER_OWNER RT_BIT(4)
137/** Ignore the image architecture (otherwise it must match the verification
138 * code). Used with resource images and such. */
139# define SUPHNTVI_F_IGNORE_ARCHITECTURE RT_BIT(30)
140/** Raw-mode context image, always 32-bit. */
141# define SUPHNTVI_F_RC_IMAGE RT_BIT(31)
142/** @} */
143
144/* Array in SUPHardenedVerifyImage-win.cpp */
145extern const RTSTRTUPLE g_aSupNtViBlacklistedDlls[];
146
147/**
148 * Loader cache entry.
149 *
150 * This is for avoiding loading and signature checking a file multiple times,
151 * due to multiple passes thru the process validation code (and syscall import
152 * code of NTDLL).
153 */
154typedef struct SUPHNTLDRCACHEENTRY
155{
156 /** The file name (from g_apszSupNtVpAllowedDlls or
157 * g_apszSupNtVpAllowedVmExes). */
158 const char *pszName;
159 /** Load module associated with the image during content verfication. */
160 RTLDRMOD hLdrMod;
161 /** The file reader. */
162 PSUPHNTVIRDR pNtViRdr;
163 /** The module file handle, if we've opened it.
164 * (pNtviRdr does not close the file handle on destruction.) */
165 HANDLE hFile;
166 /** Bits buffer. */
167 uint8_t *pbBits;
168 /** Set if verified. */
169 bool fVerified;
170 /** Whether we've got valid cacheable image bit.s */
171 bool fValidBits;
172 /** The image base address. */
173 uintptr_t uImageBase;
174} SUPHNTLDRCACHEENTRY;
175/** Pointer to a loader cache entry. */
176typedef SUPHNTLDRCACHEENTRY *PSUPHNTLDRCACHEENTRY;
177DECLHIDDEN(int) supHardNtLdrCacheOpen(const char *pszName, PSUPHNTLDRCACHEENTRY *ppEntry, PRTERRINFO pErrInfo);
178DECLHIDDEN(int) supHardNtLdrCacheEntryVerify(PSUPHNTLDRCACHEENTRY pEntry, PCRTUTF16 pwszName, PRTERRINFO pErrInfo);
179DECLHIDDEN(int) supHardNtLdrCacheEntryGetBits(PSUPHNTLDRCACHEENTRY pEntry, uint8_t **ppbBits, RTLDRADDR uBaseAddress,
180 PFNRTLDRIMPORT pfnGetImport, void *pvUser, PRTERRINFO pErrInfo);
181
182
183/** Which directory under the system root to get. */
184typedef enum SUPHARDNTSYSROOTDIR
185{
186 kSupHardNtSysRootDir_System32 = 0,
187 kSupHardNtSysRootDir_WinSxS,
188} SUPHARDNTSYSROOTDIR;
189
190DECLHIDDEN(int) supHardNtGetSystemRootDir(void *pvBuf, uint32_t cbBuf, SUPHARDNTSYSROOTDIR enmDir, PRTERRINFO pErrInfo);
191
192# ifndef SUPHNTVI_NO_NT_STUFF
193
194/** Typical system root directory buffer. */
195typedef struct SUPSYSROOTDIRBUF
196{
197 UNICODE_STRING UniStr;
198 WCHAR awcBuffer[260];
199} SUPSYSROOTDIRBUF;
200extern SUPSYSROOTDIRBUF g_System32NtPath;
201extern SUPSYSROOTDIRBUF g_WinSxSNtPath;
202#if defined(IN_RING3) && !defined(VBOX_PERMIT_EVEN_MORE)
203extern SUPSYSROOTDIRBUF g_ProgramFilesNtPath;
204extern SUPSYSROOTDIRBUF g_CommonFilesNtPath;
205# if ARCH_BITS == 64
206extern SUPSYSROOTDIRBUF g_ProgramFilesX86NtPath;
207extern SUPSYSROOTDIRBUF g_CommonFilesX86NtPath;
208# endif
209#endif /* IN_RING3 && !VBOX_PERMIT_EVEN_MORE */
210extern SUPSYSROOTDIRBUF g_SupLibHardenedExeNtPath;
211extern SUPSYSROOTDIRBUF g_SupLibHardenedAppBinNtPath;
212
213# ifdef IN_RING0
214/** Pointer to NtQueryVirtualMemory. */
215typedef NTSTATUS (NTAPI *PFNNTQUERYVIRTUALMEMORY)(HANDLE, void const *, MEMORY_INFORMATION_CLASS, PVOID, SIZE_T, PSIZE_T);
216extern PFNNTQUERYVIRTUALMEMORY g_pfnNtQueryVirtualMemory;
217# endif
218
219# endif /* SUPHNTVI_NO_NT_STUFF */
220
221/** Creates a combined NT version number for simple comparisons. */
222#define SUP_MAKE_NT_VER_COMBINED(a_uMajor, a_uMinor, a_uBuild, a_uSpMajor, a_uSpMinor) \
223 ( ((uint32_t)((a_uMajor) & UINT32_C(0xf)) << 28) \
224 | ((uint32_t)((a_uMinor) & UINT32_C(0xf)) << 24) \
225 | ((uint32_t)((a_uBuild) & UINT32_C(0xffff)) << 8) \
226 | ((uint32_t)((a_uSpMajor) & UINT32_C(0xf)) << 4) \
227 | (uint32_t)((a_uSpMinor) & UINT32_C(0xf)) )
228/** Simple version of SUP_MAKE_NT_VER_COMBINED. */
229#define SUP_MAKE_NT_VER_SIMPLE(a_uMajor, a_uMinor) SUP_MAKE_NT_VER_COMBINED(a_uMajor, a_uMinor, 0, 0, 0)
230extern uint32_t g_uNtVerCombined;
231
232/** @name NT version constants for less-than checks.
233 * @{ */
234/** Combined NT version number for XP. */
235#define SUP_NT_VER_XP SUP_MAKE_NT_VER_SIMPLE(5,1)
236/** Combined NT version number for Windows server 2003 & XP64. */
237#define SUP_NT_VER_W2K3 SUP_MAKE_NT_VER_SIMPLE(5,2)
238/** Combined NT version number for Vista. */
239#define SUP_NT_VER_VISTA SUP_MAKE_NT_VER_SIMPLE(6,0)
240/** Combined NT version number for Vista with SP1. */
241#define SUP_NT_VER_VISTA_SP1 SUP_MAKE_NT_VER_COMBINED(6,0,6001,1,0)
242/** Combined NT version number for Windows 7. */
243#define SUP_NT_VER_W70 SUP_MAKE_NT_VER_SIMPLE(6,1)
244/** Combined NT version number for Windows 8.0. */
245#define SUP_NT_VER_W80 SUP_MAKE_NT_VER_SIMPLE(6,2)
246/** Combined NT version number for Windows 8.1. */
247#define SUP_NT_VER_W81 SUP_MAKE_NT_VER_SIMPLE(6,3)
248/** @} */
249
250# endif
251
252# ifndef IN_SUP_HARDENED_R3
253# include <iprt/mem.h>
254# include <iprt/string.h>
255
256# define suplibHardenedMemComp memcmp
257# define suplibHardenedMemCopy memcpy
258# define suplibHardenedMemSet memset
259# define suplibHardenedStrCopy strcpy
260# define suplibHardenedStrLen strlen
261# define suplibHardenedStrCat strcat
262# define suplibHardenedStrCmp strcmp
263# define suplibHardenedStrNCmp strncmp
264# else /* IN_SUP_HARDENED_R3 */
265# include <iprt/mem.h>
266# if 0
267# define memcmp suplibHardenedMemComp
268# define memcpy suplibHardenedMemCopy
269# define memset suplibHardenedMemSet
270# define strcpy suplibHardenedStrCopy
271# define strlen suplibHardenedStrLen
272# define strcat suplibHardenedStrCat
273# define strcmp suplibHardenedStrCmp
274# define strncmp suplibHardenedStrNCmp
275# endif
276# endif /* IN_SUP_HARDENED_R3 */
277
278#endif /* SUP_CERTIFICATES_ONLY */
279
280RT_C_DECLS_END
281
282#endif /* !VBOX_INCLUDED_SRC_Support_win_SUPHardenedVerify_win_h */
283
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette