VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/SUPLibInternal.h@ 67954

Last change on this file since 67954 was 66632, checked in by vboxsync, 7 years ago

HostDrivers/Support: Allow following symlinks on Linux for libraries loaded through dlopen()

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 18.8 KB
Line 
1/* $Id: SUPLibInternal.h 66632 2017-04-20 14:43:46Z vboxsync $ */
2/** @file
3 * VirtualBox Support Library - Internal header.
4 */
5
6/*
7 * Copyright (C) 2006-2016 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 ___SUPLibInternal_h___
28#define ___SUPLibInternal_h___
29
30#include <VBox/cdefs.h>
31#include <VBox/types.h>
32#include <iprt/stdarg.h>
33
34
35/*******************************************************************************
36* Defined Constants And Macros *
37*******************************************************************************/
38/** @def SUPLIB_DLL_SUFF
39 * The (typical) DLL/DYLIB/SO suffix. */
40#if defined(RT_OS_DARWIN)
41# define SUPLIB_DLL_SUFF ".dylib"
42#elif defined(RT_OS_L4)
43# define SUPLIB_DLL_SUFF ".s.so"
44#elif defined(RT_OS_OS2) || defined(RT_OS_WINDOWS)
45# define SUPLIB_DLL_SUFF ".dll"
46#else
47# define SUPLIB_DLL_SUFF ".so"
48#endif
49
50#ifdef RT_OS_SOLARIS
51/** Number of dummy files to open (2:ip4, 1:ip6, 1:extra) see
52 * @bugref{4650}. */
53# define SUPLIB_FLT_DUMMYFILES 4
54#endif
55
56/** @def SUPLIB_EXE_SUFF
57 * The (typical) executable suffix. */
58#if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS)
59# define SUPLIB_EXE_SUFF ".exe"
60#else
61# define SUPLIB_EXE_SUFF ""
62#endif
63
64/** @def SUP_HARDENED_SUID
65 * Whether we're employing set-user-ID-on-execute in the hardening.
66 */
67#if !defined(RT_OS_OS2) && !defined(RT_OS_WINDOWS) && !defined(RT_OS_L4)
68# define SUP_HARDENED_SUID
69#else
70# undef SUP_HARDENED_SUID
71#endif
72
73#ifdef IN_SUP_HARDENED_R3
74/** @name Make the symbols in SUPR3HardenedStatic different from the VBoxRT ones.
75 * We cannot rely on DECLHIDDEN to make this separation for us since it doesn't
76 * work with all GCC versions. So, we resort to old fashion precompiler hacking.
77 * @{
78 */
79# define supR3HardenedPathAppPrivateNoArch supR3HardenedStaticPathAppPrivateNoArch
80# define supR3HardenedPathAppPrivateArch supR3HardenedStaticPathAppPrivateArch
81# define supR3HardenedPathAppSharedLibs supR3HardenedStaticPathAppSharedLibs
82# define supR3HardenedPathAppDocs supR3HardenedStaticPathAppDocs
83# define supR3HardenedPathAppBin supR3HardenedStaticPathAppBin
84# define supR3HardenedPathFilename supR3HardenedStaticPathFilename
85# define supR3HardenedFatalV supR3HardenedStaticFatalV
86# define supR3HardenedFatal supR3HardenedStaticFatal
87# define supR3HardenedFatalMsgV supR3HardenedStaticFatalMsgV
88# define supR3HardenedFatalMsg supR3HardenedStaticFatalMsg
89# define supR3HardenedErrorV supR3HardenedStaticErrorV
90# define supR3HardenedError supR3HardenedStaticError
91# define supR3HardenedOpenLog supR3HardenedStaticOpenLog
92# define supR3HardenedLogV supR3HardenedStaticLogV
93# define supR3HardenedLog supR3HardenedStaticLog
94# define supR3HardenedLogFlush supR3HardenedStaticLogFlush
95# define supR3HardenedVerifyAll supR3HardenedStaticVerifyAll
96# define supR3HardenedVerifyFixedDir supR3HardenedStaticVerifyFixedDir
97# define supR3HardenedVerifyFixedFile supR3HardenedStaticVerifyFixedFile
98# define supR3HardenedVerifyDir supR3HardenedStaticVerifyDir
99# define supR3HardenedVerifyFile supR3HardenedStaticVerifyFile
100# define supR3HardenedGetPreInitData supR3HardenedStaticGetPreInitData
101# define supR3HardenedRecvPreInitData supR3HardenedStaticRecvPreInitData
102/** @} */
103#endif /* IN_SUP_HARDENED_R3 */
104
105
106/** @name CRT function mappings (not using CRT on Windows).
107 * @{
108 */
109#if defined(IN_SUP_HARDENED_R3) && defined(RT_OS_WINDOWS)
110# define SUP_HARDENED_NEED_CRT_FUNCTIONS
111DECLHIDDEN(int) suplibHardenedMemComp(void const *pvDst, const void *pvSrc, size_t cbToComp);
112DECLHIDDEN(void *) suplibHardenedMemCopy(void *pvDst, const void *pvSrc, size_t cbToCopy);
113DECLHIDDEN(void *) suplibHardenedMemSet(void *pvDst, int ch, size_t cbToSet);
114DECLHIDDEN(char *) suplibHardenedStrCopy(char *pszDst, const char *pszSrc);
115DECLHIDDEN(size_t) suplibHardenedStrLen(const char *psz);
116DECLHIDDEN(char *) suplibHardenedStrCat(char *pszDst, const char *pszSrc);
117DECLHIDDEN(int) suplibHardenedStrCmp(const char *psz1, const char *psz2);
118DECLHIDDEN(int) suplibHardenedStrNCmp(const char *psz1, const char *psz2, size_t cchMax);
119#else
120# undef SUP_HARDENED_NEED_CRT_FUNCTIONS
121# define suplibHardenedMemComp memcmp
122# define suplibHardenedMemCopy memcpy
123# define suplibHardenedMemSet memset
124# define suplibHardenedStrCopy strcpy
125# define suplibHardenedStrLen strlen
126# define suplibHardenedStrCat strcat
127# define suplibHardenedStrCmp strcmp
128# define suplibHardenedStrNCmp strncmp
129#endif
130DECLNORETURN(void) suplibHardenedExit(RTEXITCODE rcExit);
131DECLHIDDEN(void) suplibHardenedPrintF(const char *pszFormat, ...);
132DECLHIDDEN(void) suplibHardenedPrintFV(const char *pszFormat, va_list va);
133
134/** @} */
135
136/** Debug output macro. */
137#ifdef IN_SUP_HARDENED_R3
138# if defined(DEBUG_bird) && defined(RT_OS_WINDOWS)
139# define SUP_DPRINTF(a) do { supR3HardenedStaticLog a; suplibHardenedPrintF a; } while (0)
140# else
141# define SUP_DPRINTF(a) do { supR3HardenedStaticLog a; } while (0)
142# endif
143#else
144# if defined(DEBUG_bird) && defined(RT_OS_WINDOWS)
145# define SUP_DPRINTF(a) RTLogPrintf a
146# else
147# define SUP_DPRINTF(a) do { } while (0)
148# endif
149#endif
150
151
152/*******************************************************************************
153* Structures and Typedefs *
154*******************************************************************************/
155/**
156 * The type of an installed file.
157 */
158typedef enum SUPINSTFILETYPE
159{
160 kSupIFT_Invalid = 0,
161 kSupIFT_Exe,
162 kSupIFT_Dll,
163 kSupIFT_Rc,
164 kSupIFT_Sys,
165 kSupIFT_Script,
166 kSupIFT_Data,
167 kSupIFT_TestExe,
168 kSupIFT_TestDll,
169 kSupIFT_End
170} SUPINSTFILETYPE;
171
172/**
173 * Installation directory specifier.
174 */
175typedef enum SUPINSTDIR
176{
177 kSupID_Invalid = 0,
178 kSupID_AppBin,
179 kSupID_AppSharedLib,
180 kSupID_AppPrivArch,
181 kSupID_AppPrivArchComp,
182 kSupID_AppPrivNoArch,
183 kSupID_Testcase,
184 kSupID_End
185} SUPINSTDIR;
186
187/**
188 * Installed file.
189 */
190typedef struct SUPINSTFILE
191{
192 /** File type. */
193 SUPINSTFILETYPE enmType;
194 /** Install directory. */
195 SUPINSTDIR enmDir;
196 /** Optional (true) or mandatory (false. */
197 bool fOptional;
198 /** File name. */
199 const char *pszFile;
200} SUPINSTFILE;
201typedef SUPINSTFILE *PSUPINSTFILE;
202typedef SUPINSTFILE const *PCSUPINSTFILE;
203
204/**
205 * Status data for a verified file.
206 */
207typedef struct SUPVERIFIEDFILE
208{
209 /** The file handle or descriptor. -1 if not open. */
210 intptr_t hFile;
211 /** Whether the file has been validated. */
212 bool fValidated;
213#ifdef RT_OS_WINDOWS
214 /** Whether we've checked the signature of the file. */
215 bool fCheckedSignature;
216#endif
217} SUPVERIFIEDFILE;
218typedef SUPVERIFIEDFILE *PSUPVERIFIEDFILE;
219typedef SUPVERIFIEDFILE const *PCSUPVERIFIEDFILE;
220
221/**
222 * Status data for a verified directory.
223 */
224typedef struct SUPVERIFIEDDIR
225{
226 /** The directory handle or descriptor. -1 if not open. */
227 intptr_t hDir;
228 /** Whether the directory has been validated. */
229 bool fValidated;
230} SUPVERIFIEDDIR;
231typedef SUPVERIFIEDDIR *PSUPVERIFIEDDIR;
232typedef SUPVERIFIEDDIR const *PCSUPVERIFIEDDIR;
233
234
235/**
236 * SUPLib instance data.
237 *
238 * This is data that is passed from the static to the dynamic SUPLib
239 * in a hardened setup.
240 */
241typedef struct SUPLIBDATA
242{
243 /** The device handle. */
244#if defined(RT_OS_WINDOWS)
245 void *hDevice;
246#else
247 int hDevice;
248#endif
249 /** Indicates whether we have unrestricted (true) or restricted access to the
250 * support device. */
251 bool fUnrestricted;
252#if defined(RT_OS_DARWIN)
253 /** The connection to the VBoxSupDrv service. */
254 uintptr_t uConnection;
255#elif defined(RT_OS_LINUX)
256 /** Indicates whether madvise(,,MADV_DONTFORK) works. */
257 bool fSysMadviseWorks;
258#elif defined(RT_OS_SOLARIS)
259 /** Extra dummy file descriptors to prevent growing file-descriptor table on
260 * clean up (see @bugref{4650}). */
261 int ahDummy[SUPLIB_FLT_DUMMYFILES];
262#elif defined(RT_OS_WINDOWS)
263#endif
264} SUPLIBDATA;
265/** Pointer to the pre-init data. */
266typedef SUPLIBDATA *PSUPLIBDATA;
267/** Pointer to const pre-init data. */
268typedef SUPLIBDATA const *PCSUPLIBDATA;
269
270/** The NIL value of SUPLIBDATA::hDevice. */
271#if defined(RT_OS_WINDOWS)
272# define SUP_HDEVICE_NIL NULL
273#else
274# define SUP_HDEVICE_NIL (-1)
275#endif
276
277
278/**
279 * Pre-init data that is handed over from the hardened executable stub.
280 */
281typedef struct SUPPREINITDATA
282{
283 /** Magic value (SUPPREINITDATA_MAGIC). */
284 uint32_t u32Magic;
285 /** The SUPLib instance data. */
286 SUPLIBDATA Data;
287 /** The number of entries in paInstallFiles and paVerifiedFiles. */
288 size_t cInstallFiles;
289 /** g_aSupInstallFiles. */
290 PCSUPINSTFILE paInstallFiles;
291 /** g_aSupVerifiedFiles. */
292 PCSUPVERIFIEDFILE paVerifiedFiles;
293 /** The number of entries in paVerifiedDirs. */
294 size_t cVerifiedDirs;
295 /** g_aSupVerifiedDirs. */
296 PCSUPVERIFIEDDIR paVerifiedDirs;
297 /** Magic value (SUPPREINITDATA_MAGIC). */
298 uint32_t u32EndMagic;
299} SUPPREINITDATA;
300typedef SUPPREINITDATA *PSUPPREINITDATA;
301typedef SUPPREINITDATA const *PCSUPPREINITDATA;
302
303/** Magic value for SUPPREINITDATA::u32Magic and SUPPREINITDATA::u32EndMagic. */
304#define SUPPREINITDATA_MAGIC UINT32_C(0xbeef0001)
305
306/** @copydoc supR3PreInit */
307typedef DECLCALLBACK(int) FNSUPR3PREINIT(PSUPPREINITDATA pPreInitData, uint32_t fFlags);
308/** Pointer to supR3PreInit. */
309typedef FNSUPR3PREINIT *PFNSUPR3PREINIT;
310
311/** The current SUPR3HardenedMain state / location. */
312typedef enum SUPR3HARDENEDMAINSTATE
313{
314 SUPR3HARDENEDMAINSTATE_NOT_YET_CALLED = 0,
315 SUPR3HARDENEDMAINSTATE_WIN_EARLY_INIT_CALLED,
316 SUPR3HARDENEDMAINSTATE_WIN_EARLY_IMPORTS_RESOLVED,
317 SUPR3HARDENEDMAINSTATE_WIN_EARLY_STUB_DEVICE_OPENED,
318 SUPR3HARDENEDMAINSTATE_WIN_EARLY_REAL_DEVICE_OPENED,
319 SUPR3HARDENEDMAINSTATE_WIN_EP_CALLED,
320 SUPR3HARDENEDMAINSTATE_WIN_IMPORTS_RESOLVED,
321 SUPR3HARDENEDMAINSTATE_WIN_VERSION_INITIALIZED,
322 SUPR3HARDENEDMAINSTATE_WIN_VERIFY_TRUST_READY,
323 SUPR3HARDENEDMAINSTATE_HARDENED_MAIN_CALLED,
324 SUPR3HARDENEDMAINSTATE_INIT_RUNTIME,
325 SUPR3HARDENEDMAINSTATE_GET_TRUSTED_MAIN,
326 SUPR3HARDENEDMAINSTATE_CALLED_TRUSTED_MAIN,
327 SUPR3HARDENEDMAINSTATE_END,
328 SUPR3HARDENEDMAINSTATE_32BIT_HACK = 0x7fffffff
329} SUPR3HARDENEDMAINSTATE;
330
331
332/*******************************************************************************
333* Global Variables *
334*******************************************************************************/
335extern DECLHIDDEN(uint32_t) g_u32Cookie;
336extern DECLHIDDEN(uint32_t) g_u32SessionCookie;
337extern DECLHIDDEN(SUPLIBDATA) g_supLibData;
338extern DECLHIDDEN(uint32_t) g_uSupFakeMode;
339extern DECLHIDDEN(PSUPGLOBALINFOPAGE) g_pSUPGlobalInfoPageR0;
340#ifdef ___SUPDrvIOC_h___
341extern DECLHIDDEN(PSUPQUERYFUNCS) g_pSupFunctions;
342#endif
343extern DECLHIDDEN(SUPR3HARDENEDMAINSTATE) g_enmSupR3HardenedMainState;
344#ifdef RT_OS_WINDOWS
345extern DECLHIDDEN(bool) g_fSupEarlyProcessInit;
346#endif
347
348
349/*******************************************************************************
350* OS Specific Function *
351*******************************************************************************/
352RT_C_DECLS_BEGIN
353int suplibOsInstall(void);
354int suplibOsUninstall(void);
355int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited, bool fUnrestricted, SUPINITOP *penmWhat, PRTERRINFO pErrInfo);
356int suplibOsTerm(PSUPLIBDATA pThis);
357int suplibOsHardenedVerifyInit(void);
358int suplibOsHardenedVerifyTerm(void);
359int suplibOsIOCtl(PSUPLIBDATA pThis, uintptr_t uFunction, void *pvReq, size_t cbReq);
360int suplibOsIOCtlFast(PSUPLIBDATA pThis, uintptr_t uFunction, uintptr_t idCpu);
361int suplibOsPageAlloc(PSUPLIBDATA pThis, size_t cPages, void **ppvPages);
362int suplibOsPageFree(PSUPLIBDATA pThis, void *pvPages, size_t cPages);
363int suplibOsQueryVTxSupported(void);
364
365
366/**
367 * Performs the pre-initialization of the support library.
368 *
369 * This is dynamically resolved and invoked by the static library before it
370 * calls RTR3InitEx and thereby SUPR3Init.
371 *
372 * @returns IPRT status code.
373 * @param pPreInitData The pre init data.
374 * @param fFlags The SUPR3HardenedMain flags.
375 */
376DECLEXPORT(int) supR3PreInit(PSUPPREINITDATA pPreInitData, uint32_t fFlags);
377
378
379/** @copydoc RTPathAppPrivateNoArch */
380DECLHIDDEN(int) supR3HardenedPathAppPrivateNoArch(char *pszPath, size_t cchPath);
381/** @copydoc RTPathAppPrivateArch */
382DECLHIDDEN(int) supR3HardenedPathAppPrivateArch(char *pszPath, size_t cchPath);
383/** @copydoc RTPathSharedLibs */
384DECLHIDDEN(int) supR3HardenedPathAppSharedLibs(char *pszPath, size_t cchPath);
385/** @copydoc RTPathAppDocs */
386DECLHIDDEN(int) supR3HardenedPathAppDocs(char *pszPath, size_t cchPath);
387/** @copydoc RTPathExecDir */
388DECLHIDDEN(int) supR3HardenedPathAppBin(char *pszPath, size_t cchPath);
389/** @copydoc RTPathFilename */
390DECLHIDDEN(char *) supR3HardenedPathFilename(const char *pszPath);
391
392/**
393 * Display a fatal error and try call TrustedError or quit.
394 */
395DECL_NO_RETURN(DECLHIDDEN(void)) supR3HardenedFatalMsgV(const char *pszWhere, SUPINITOP enmWhat, int rc,
396 const char *pszMsgFmt, va_list va);
397
398/**
399 * Display a fatal error and try call TrustedError or quit.
400 */
401DECL_NO_RETURN(DECLHIDDEN(void)) supR3HardenedFatalMsg(const char *pszWhere, SUPINITOP enmWhat, int rc,
402 const char *pszMsgFmt, ...);
403
404/**
405 * Display a fatal error and quit.
406 */
407DECL_NO_RETURN(DECLHIDDEN(void)) supR3HardenedFatalV(const char *pszFormat, va_list va);
408
409/**
410 * Display a fatal error and quit.
411 */
412DECL_NO_RETURN(DECLHIDDEN(void)) supR3HardenedFatal(const char *pszFormat, ...);
413
414/**
415 * Display an error which may or may not be fatal.
416 */
417DECLHIDDEN(int) supR3HardenedErrorV(int rc, bool fFatal, const char *pszFormat, va_list va);
418
419/**
420 * Display an error which may or may not be fatal.
421 */
422DECLHIDDEN(int) supR3HardenedError(int rc, bool fFatal, const char *pszFormat, ...);
423
424/**
425 * Open any startup log file specified in the argument.
426 */
427DECLHIDDEN(void) supR3HardenedOpenLog(int *pcArgs, char **papszArgs);
428
429/**
430 * Write to the startup log file.
431 */
432DECLHIDDEN(void) supR3HardenedLogV(const char *pszFormat, va_list va);
433
434/**
435 * Write to the startup log file.
436 */
437DECLHIDDEN(void) supR3HardenedLog(const char *pszFormat, ...);
438
439/**
440 * Flushes the log file.
441 */
442DECLHIDDEN(void) supR3HardenedLogFlush(void);
443
444
445DECLHIDDEN(int) supR3HardenedVerifyAll(bool fFatal, const char *pszProgName, const char *pszExePath, uint32_t fMainFlags);
446DECLHIDDEN(int) supR3HardenedVerifyFixedDir(SUPINSTDIR enmDir, bool fFatal);
447DECLHIDDEN(int) supR3HardenedVerifyFixedFile(const char *pszFilename, bool fFatal);
448DECLHIDDEN(int) supR3HardenedVerifyDir(const char *pszDirPath, bool fRecursive, bool fCheckFiles, PRTERRINFO pErrInfo);
449DECLHIDDEN(int) supR3HardenedVerifyFile(const char *pszFilename, RTHCUINTPTR hNativeFile, bool fMaybe3rdParty,
450 PRTERRINFO pErrInfo);
451#if defined(RT_OS_DARWIN) || defined(RT_OS_LINUX)
452DECLHIDDEN(int) supR3HardenedVerifyFileFollowSymlinks(const char *pszFilename, RTHCUINTPTR hNativeFile, bool fMaybe3rdParty,
453 PRTERRINFO pErrInfo);
454#endif
455DECLHIDDEN(void) supR3HardenedGetPreInitData(PSUPPREINITDATA pPreInitData);
456DECLHIDDEN(int) supR3HardenedRecvPreInitData(PCSUPPREINITDATA pPreInitData);
457
458#ifdef RT_OS_WINDOWS
459DECLHIDDEN(void) supR3HardenedWinInit(uint32_t fFlags, bool fAvastKludge);
460DECLHIDDEN(void) supR3HardenedWinInitAppBin(uint32_t fFlags);
461DECLHIDDEN(void) supR3HardenedWinInitVersion(bool fEarlyInit);
462DECLHIDDEN(void) supR3HardenedWinInitImports(void);
463DECLHIDDEN(void) supR3HardenedWinModifyDllSearchPath(uint32_t fFlags, const char *pszAppBinPath);
464# ifdef ___iprt_nt_nt_h___
465DECLHIDDEN(void) supR3HardenedWinGetVeryEarlyImports(uintptr_t uNtDllAddr,
466 PFNNTWAITFORSINGLEOBJECT *ppfnNtWaitForSingleObject,
467 PFNNTSETEVENT *ppfnNtSetEvent);
468# endif
469DECLHIDDEN(void) supR3HardenedWinInitImportsEarly(uintptr_t uNtDllAddr);
470DECLHIDDEN(void) supR3HardenedWinInitSyscalls(bool fReportErrors, PRTERRINFO pErrInfo);
471DECLHIDDEN(PFNRT) supR3HardenedWinGetRealDllSymbol(const char *pszDll, const char *pszProcedure);
472DECLHIDDEN(void) supR3HardenedWinEnableThreadCreation(void);
473DECLHIDDEN(void) supR3HardenedWinResolveVerifyTrustApiAndHookThreadCreation(const char *pszProgName);
474DECLHIDDEN(void) supR3HardenedWinFlushLoaderCache();
475DECLHIDDEN(bool) supR3HardenedWinIsReSpawnNeeded(int iWhich, int cArgs, char **papszArgs);
476DECLHIDDEN(int) supR3HardenedWinReSpawn(int iWhich);
477# ifdef _WINDEF_
478DECLHIDDEN(void) supR3HardenedWinCreateParentWatcherThread(HMODULE hVBoxRT);
479# endif
480DECLHIDDEN(void *) supR3HardenedWinLoadLibrary(const char *pszName, bool fSystem32Only, uint32_t fMainFlags);
481extern RTUTF16 g_wszSupLibHardenedExePath[1024];
482# ifdef RTPATH_MAX
483extern char g_szSupLibHardenedExePath[RTPATH_MAX];
484# endif
485DECLHIDDEN(void) supR3HardenedWinCompactHeaps(void);
486DECLHIDDEN(void) supR3HardenedMainOpenDevice(void);
487DECLHIDDEN(char *) supR3HardenedWinReadErrorInfoDevice(char *pszErrorInfo, size_t cbErrorInfo, const char *pszPrefix);
488DECLHIDDEN(void) supR3HardenedWinReportErrorToParent(const char *pszWhere, SUPINITOP enmWhat, int rc,
489 const char *pszFormat, va_list va);
490#else /* !RT_OS_WINDOWS */
491DECLHIDDEN(void) supR3HardenedPosixInit(void);
492#endif /* !RT_OS_WINDOWS */
493
494SUPR3DECL(int) supR3PageLock(void *pvStart, size_t cPages, PSUPPAGE paPages);
495SUPR3DECL(int) supR3PageUnlock(void *pvStart);
496
497RT_C_DECLS_END
498
499
500#endif
501
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use