VirtualBox

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

Last change on this file since 88640 was 86610, checked in by vboxsync, 4 years ago

SUPHArdNt,IPRT: Recognize WHQL/attestation signatures from MS. Corrected RTCRX509TBSCERTIFICATE::T3::fExtKeyUsage type (32 -> 64 bit) as it has been to small for a while now. bugref:3103

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 12.5 KB
Line 
1/* $Id: SUPHardenedVerify-win.h 86610 2020-10-16 14:34:15Z vboxsync $ */
2/** @file
3 * VirtualBox Support Library/Driver - Hardened Verification, Windows.
4 */
5
6/*
7 * Copyright (C) 2006-2020 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_SELF_PURIFICATION_LIMITED,
58 SUPHARDNTVPKIND_32BIT_HACK = 0x7fffffff
59} SUPHARDNTVPKIND;
60/** @name SUPHARDNTVP_F_XXX - Flags for supHardenedWinVerifyProcess
61 * @{ */
62/** Replace unwanted executable memory allocations with a new one that's filled
63 * with a safe read-write copy (default is just to free it).
64 *
65 * This is one way we attempt to work around buggy protection software that
66 * either result in host BSOD or VBox application malfunction. Here the current
67 * shit list:
68 * - Trend Micro's data protection software includes a buggy driver called
69 * sakfile.sys that has been observed crashing accessing user memory that we
70 * probably freed. I'd love to report this to Trend Micro, but unfortunately
71 * they doesn't advertise (or have?) an email address for reporting security
72 * vulnerabilities in the their software. Having wasted time looking and not
73 * very sorry for having to disclosing the bug here.
74 * - Maybe one more.
75 */
76#define SUPHARDNTVP_F_EXEC_ALLOC_REPLACE_WITH_RW RT_BIT_32(0)
77/** @} */
78DECLHIDDEN(int) supHardenedWinVerifyProcess(HANDLE hProcess, HANDLE hThread, SUPHARDNTVPKIND enmKind,
79 uint32_t fFlags, uint32_t *pcFixes, PRTERRINFO pErrInfo);
80DECLHIDDEN(int) supHardNtVpThread(HANDLE hProcess, HANDLE hThread, PRTERRINFO pErrInfo);
81DECLHIDDEN(int) supHardNtVpDebugger(HANDLE hProcess, PRTERRINFO pErrInfo);
82
83DECLHIDDEN(bool) supHardViUtf16PathIsEqualEx(PCRTUTF16 pawcLeft, size_t cwcLeft, const char *pszRight);
84DECLHIDDEN(bool) supHardViUniStrPathStartsWithUniStr(UNICODE_STRING const *pUniStrLeft,
85 UNICODE_STRING const *pUniStrRight, bool fCheckSlash);
86DECLHIDDEN(bool) supHardViUtf16PathStartsWithEx(PCRTUTF16 pwszLeft, uint32_t cwcLeft,
87 PCRTUTF16 pwszRight, uint32_t cwcRight, bool fCheckSlash);
88DECLHIDDEN(bool) supHardViIsAppPatchDir(PCRTUTF16 pwszPath, uint32_t cwcName);
89
90
91/**
92 * SUP image verifier loader reader instance.
93 */
94typedef struct SUPHNTVIRDR
95{
96 /** The core reader structure. */
97 RTLDRREADER Core;
98 /** The file handle. */
99 HANDLE hFile;
100 /** Handle to event sempahore in case we're force to deal with asynchronous 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 /** Number of signatures that verified okay. */
109 uint16_t cOkaySignatures;
110 /** Number of signatures that couldn't be successfully verified (time stamp
111 * issues, no certificate path, etc) but weren't fatal. */
112 uint16_t cNokSignatures;
113 /** Total number of signatures. */
114 uint16_t cTotalSignatures;
115 /** The current signature (for passing to supHardNtViCertVerifyCallback). */
116 uint16_t iCurSignature;
117 /** The last non-fatal signature failure. */
118 int rcLastSignatureFailure;
119 /** Log name. */
120 char szFilename[1];
121} SUPHNTVIRDR;
122/** Pointer to an SUP image verifier loader reader instance. */
123typedef SUPHNTVIRDR *PSUPHNTVIRDR;
124DECLHIDDEN(int) supHardNtViRdrCreate(HANDLE hFile, PCRTUTF16 pwszName, uint32_t fFlags, PSUPHNTVIRDR *ppNtViRdr);
125DECLHIDDEN(bool) supHardenedWinIsWinVerifyTrustCallable(void);
126DECLHIDDEN(int) supHardenedWinVerifyImageTrust(HANDLE hFile, PCRTUTF16 pwszName, uint32_t fFlags, int rc,
127 bool *pfWinVerifyTrust, PRTERRINFO pErrInfo);
128DECLHIDDEN(int) supHardenedWinVerifyImageByHandle(HANDLE hFile, PCRTUTF16 pwszName, uint32_t fFlags,
129 bool fAvoidWinVerifyTrust, bool *pfWinVerifyTrust, PRTERRINFO pErrInfo);
130DECLHIDDEN(int) supHardenedWinVerifyImageByHandleNoName(HANDLE hFile, uint32_t fFlags, PRTERRINFO pErrInfo);
131DECLHIDDEN(int) supHardenedWinVerifyImageByLdrMod(RTLDRMOD hLdrMod, PCRTUTF16 pwszName, PSUPHNTVIRDR pNtViRdr,
132 bool fAvoidWinVerifyTrust, bool *pfWinVerifyTrust, PRTERRINFO pErrInfo);
133/** @name SUPHNTVI_F_XXX - Flags for supHardenedWinVerifyImageByHandle.
134 * @{ */
135/** The signing certificate must be the same as the one the VirtualBox build
136 * was signed with. */
137# define SUPHNTVI_F_REQUIRE_BUILD_CERT RT_BIT(0)
138/** Require kernel code signing level. */
139# define SUPHNTVI_F_REQUIRE_KERNEL_CODE_SIGNING RT_BIT(1)
140/** Require the image to force the memory mapper to do signature checking. */
141# define SUPHNTVI_F_REQUIRE_SIGNATURE_ENFORCEMENT RT_BIT(2)
142/** Whether to allow image verification by catalog file. */
143# define SUPHNTVI_F_ALLOW_CAT_FILE_VERIFICATION RT_BIT(3)
144/** The file owner must be TrustedInstaller on Vista+. */
145# define SUPHNTVI_F_TRUSTED_INSTALLER_OWNER RT_BIT(4)
146/** Ignore the image architecture (otherwise it must match the verification
147 * code). Used with resource images and such. */
148# define SUPHNTVI_F_IGNORE_ARCHITECTURE RT_BIT(30)
149/** Raw-mode context image, always 32-bit. */
150# define SUPHNTVI_F_RC_IMAGE RT_BIT(31)
151/** @} */
152
153/* Array in SUPHardenedVerifyImage-win.cpp */
154extern const RTSTRTUPLE g_aSupNtViBlacklistedDlls[];
155
156/**
157 * Loader cache entry.
158 *
159 * This is for avoiding loading and signature checking a file multiple times,
160 * due to multiple passes thru the process validation code (and syscall import
161 * code of NTDLL).
162 */
163typedef struct SUPHNTLDRCACHEENTRY
164{
165 /** The file name (from g_apszSupNtVpAllowedDlls or
166 * g_apszSupNtVpAllowedVmExes). */
167 const char *pszName;
168 /** Load module associated with the image during content verfication. */
169 RTLDRMOD hLdrMod;
170 /** The file reader. */
171 PSUPHNTVIRDR pNtViRdr;
172 /** The module file handle, if we've opened it.
173 * (pNtviRdr does not close the file handle on destruction.) */
174 HANDLE hFile;
175 /** Bits buffer. */
176 uint8_t *pbBits;
177 /** Set if verified. */
178 bool fVerified;
179 /** Whether we've got valid cacheable image bits. */
180 bool fValidBits;
181 /** The image base address. */
182 uintptr_t uImageBase;
183} SUPHNTLDRCACHEENTRY;
184/** Pointer to a loader cache entry. */
185typedef SUPHNTLDRCACHEENTRY *PSUPHNTLDRCACHEENTRY;
186DECLHIDDEN(int) supHardNtLdrCacheOpen(const char *pszName, PSUPHNTLDRCACHEENTRY *ppEntry, PRTERRINFO pErrInfo);
187DECLHIDDEN(int) supHardNtLdrCacheEntryVerify(PSUPHNTLDRCACHEENTRY pEntry, PCRTUTF16 pwszName, PRTERRINFO pErrInfo);
188DECLHIDDEN(int) supHardNtLdrCacheEntryGetBits(PSUPHNTLDRCACHEENTRY pEntry, uint8_t **ppbBits, RTLDRADDR uBaseAddress,
189 PFNRTLDRIMPORT pfnGetImport, void *pvUser, PRTERRINFO pErrInfo);
190
191
192/** Which directory under the system root to get. */
193typedef enum SUPHARDNTSYSROOTDIR
194{
195 kSupHardNtSysRootDir_System32 = 0,
196 kSupHardNtSysRootDir_WinSxS,
197} SUPHARDNTSYSROOTDIR;
198
199DECLHIDDEN(int) supHardNtGetSystemRootDir(void *pvBuf, uint32_t cbBuf, SUPHARDNTSYSROOTDIR enmDir, PRTERRINFO pErrInfo);
200
201# ifndef SUPHNTVI_NO_NT_STUFF
202
203/** Typical system root directory buffer. */
204typedef struct SUPSYSROOTDIRBUF
205{
206 UNICODE_STRING UniStr;
207 WCHAR awcBuffer[260];
208} SUPSYSROOTDIRBUF;
209extern SUPSYSROOTDIRBUF g_System32NtPath;
210extern SUPSYSROOTDIRBUF g_WinSxSNtPath;
211#if defined(IN_RING3) && !defined(VBOX_PERMIT_EVEN_MORE)
212extern SUPSYSROOTDIRBUF g_ProgramFilesNtPath;
213extern SUPSYSROOTDIRBUF g_CommonFilesNtPath;
214# if ARCH_BITS == 64
215extern SUPSYSROOTDIRBUF g_ProgramFilesX86NtPath;
216extern SUPSYSROOTDIRBUF g_CommonFilesX86NtPath;
217# endif
218#endif /* IN_RING3 && !VBOX_PERMIT_EVEN_MORE */
219extern SUPSYSROOTDIRBUF g_SupLibHardenedExeNtPath;
220extern SUPSYSROOTDIRBUF g_SupLibHardenedAppBinNtPath;
221
222# ifdef IN_RING0
223/** Pointer to NtQueryVirtualMemory. */
224typedef DECLCALLBACKPTR_EX(NTSTATUS, NTAPI, PFNNTQUERYVIRTUALMEMORY,(HANDLE, void const *, MEMORY_INFORMATION_CLASS,
225 PVOID, SIZE_T, PSIZE_T));
226extern PFNNTQUERYVIRTUALMEMORY g_pfnNtQueryVirtualMemory;
227# endif
228
229# endif /* SUPHNTVI_NO_NT_STUFF */
230
231/** Creates a combined NT version number for simple comparisons. */
232#define SUP_MAKE_NT_VER_COMBINED(a_uMajor, a_uMinor, a_uBuild, a_uSpMajor, a_uSpMinor) \
233 ( ((uint32_t)((a_uMajor) & UINT32_C(0xf)) << 28) \
234 | ((uint32_t)((a_uMinor) & UINT32_C(0xf)) << 24) \
235 | ((uint32_t)((a_uBuild) & UINT32_C(0xffff)) << 8) \
236 | ((uint32_t)((a_uSpMajor) & UINT32_C(0xf)) << 4) \
237 | (uint32_t)((a_uSpMinor) & UINT32_C(0xf)) )
238/** Simple version of SUP_MAKE_NT_VER_COMBINED. */
239#define SUP_MAKE_NT_VER_SIMPLE(a_uMajor, a_uMinor) SUP_MAKE_NT_VER_COMBINED(a_uMajor, a_uMinor, 0, 0, 0)
240extern uint32_t g_uNtVerCombined;
241
242/** @name NT version constants for less-than checks.
243 * @{ */
244/** Combined NT version number for XP. */
245#define SUP_NT_VER_XP SUP_MAKE_NT_VER_SIMPLE(5,1)
246/** Combined NT version number for Windows server 2003 & XP64. */
247#define SUP_NT_VER_W2K3 SUP_MAKE_NT_VER_SIMPLE(5,2)
248/** Combined NT version number for Vista. */
249#define SUP_NT_VER_VISTA SUP_MAKE_NT_VER_SIMPLE(6,0)
250/** Combined NT version number for Vista with SP1. */
251#define SUP_NT_VER_VISTA_SP1 SUP_MAKE_NT_VER_COMBINED(6,0,6001,1,0)
252/** Combined NT version number for Windows 7. */
253#define SUP_NT_VER_W70 SUP_MAKE_NT_VER_SIMPLE(6,1)
254/** Combined NT version number for Windows 8.0. */
255#define SUP_NT_VER_W80 SUP_MAKE_NT_VER_SIMPLE(6,2)
256/** Combined NT version number for Windows 8.1. */
257#define SUP_NT_VER_W81 SUP_MAKE_NT_VER_SIMPLE(6,3)
258/** @} */
259
260# endif
261
262# ifndef IN_SUP_HARDENED_R3
263# include <iprt/mem.h>
264# include <iprt/string.h>
265
266# define suplibHardenedMemComp memcmp
267# define suplibHardenedMemCopy memcpy
268# define suplibHardenedMemSet memset
269# define suplibHardenedStrCopy strcpy
270# define suplibHardenedStrLen strlen
271# define suplibHardenedStrCat strcat
272# define suplibHardenedStrCmp strcmp
273# define suplibHardenedStrNCmp strncmp
274# else /* IN_SUP_HARDENED_R3 */
275# include <iprt/mem.h>
276# if 0
277# define memcmp suplibHardenedMemComp
278# define memcpy suplibHardenedMemCopy
279# define memset suplibHardenedMemSet
280# define strcpy suplibHardenedStrCopy
281# define strlen suplibHardenedStrLen
282# define strcat suplibHardenedStrCat
283# define strcmp suplibHardenedStrCmp
284# define strncmp suplibHardenedStrNCmp
285# endif
286# endif /* IN_SUP_HARDENED_R3 */
287
288#endif /* SUP_CERTIFICATES_ONLY */
289
290RT_C_DECLS_END
291
292#endif /* !VBOX_INCLUDED_SRC_Support_win_SUPHardenedVerify_win_h */
293
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