VirtualBox

Changeset 85128 in vbox


Ignore:
Timestamp:
Jul 8, 2020 11:58:23 PM (4 years ago)
Author:
vboxsync
Message:

SUPLib: valign. bugref:9794

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/SUPLibInternal.h

    r85127 r85128  
    385385
    386386/** @copydoc RTPathAppPrivateNoArch */
    387 DECLHIDDEN(int)    supR3HardenedPathAppPrivateNoArch(char *pszPath, size_t cchPath);
     387DECLHIDDEN(int)     supR3HardenedPathAppPrivateNoArch(char *pszPath, size_t cchPath);
    388388/** @copydoc RTPathAppPrivateArch */
    389 DECLHIDDEN(int)    supR3HardenedPathAppPrivateArch(char *pszPath, size_t cchPath);
     389DECLHIDDEN(int)     supR3HardenedPathAppPrivateArch(char *pszPath, size_t cchPath);
    390390/** @copydoc RTPathSharedLibs */
    391 DECLHIDDEN(int)    supR3HardenedPathAppSharedLibs(char *pszPath, size_t cchPath);
     391DECLHIDDEN(int)     supR3HardenedPathAppSharedLibs(char *pszPath, size_t cchPath);
    392392/** @copydoc RTPathAppDocs */
    393 DECLHIDDEN(int)    supR3HardenedPathAppDocs(char *pszPath, size_t cchPath);
     393DECLHIDDEN(int)     supR3HardenedPathAppDocs(char *pszPath, size_t cchPath);
    394394/** @copydoc RTPathExecDir */
    395 DECLHIDDEN(int)    supR3HardenedPathAppBin(char *pszPath, size_t cchPath);
     395DECLHIDDEN(int)     supR3HardenedPathAppBin(char *pszPath, size_t cchPath);
    396396/** @copydoc RTPathFilename */
    397 DECLHIDDEN(char *) supR3HardenedPathFilename(const char *pszPath);
     397DECLHIDDEN(char *)  supR3HardenedPathFilename(const char *pszPath);
    398398
    399399/**
     
    422422 * Display an error which may or may not be fatal.
    423423 */
    424 DECLHIDDEN(int)    supR3HardenedErrorV(int rc, bool fFatal, const char *pszFormat, va_list va);
     424DECLHIDDEN(int)     supR3HardenedErrorV(int rc, bool fFatal, const char *pszFormat, va_list va);
    425425
    426426/**
    427427 * Display an error which may or may not be fatal.
    428428 */
    429 DECLHIDDEN(int)    supR3HardenedError(int rc, bool fFatal, const char *pszFormat, ...);
     429DECLHIDDEN(int)     supR3HardenedError(int rc, bool fFatal, const char *pszFormat, ...);
    430430
    431431/**
    432432 * Open any startup log file specified in the argument.
    433433 */
    434 DECLHIDDEN(void)   supR3HardenedOpenLog(int *pcArgs, char **papszArgs);
     434DECLHIDDEN(void)    supR3HardenedOpenLog(int *pcArgs, char **papszArgs);
    435435
    436436/**
    437437 * Write to the startup log file.
    438438 */
    439 DECLHIDDEN(void)   supR3HardenedLogV(const char *pszFormat, va_list va);
     439DECLHIDDEN(void)    supR3HardenedLogV(const char *pszFormat, va_list va);
    440440
    441441/**
    442442 * Write to the startup log file.
    443443 */
    444 DECLHIDDEN(void)   supR3HardenedLog(const char *pszFormat, ...);
     444DECLHIDDEN(void)    supR3HardenedLog(const char *pszFormat, ...);
    445445
    446446/**
    447447 * Flushes the log file.
    448448 */
    449 DECLHIDDEN(void)   supR3HardenedLogFlush(void);
    450 
    451 
    452 DECLHIDDEN(int)    supR3HardenedVerifyAll(bool fFatal, const char *pszProgName, const char *pszExePath, uint32_t fMainFlags);
    453 DECLHIDDEN(int)    supR3HardenedVerifyFixedDir(SUPINSTDIR enmDir, bool fFatal, PCSUPINSTFILE pFile);
    454 DECLHIDDEN(int)    supR3HardenedVerifyFixedFile(const char *pszFilename, bool fFatal);
    455 DECLHIDDEN(int)    supR3HardenedVerifyDir(const char *pszDirPath, bool fRecursive, bool fCheckFiles, PRTERRINFO pErrInfo);
    456 DECLHIDDEN(int)    supR3HardenedVerifyFile(const char *pszFilename, RTHCUINTPTR hNativeFile, bool fMaybe3rdParty,
    457                                            PRTERRINFO pErrInfo);
     449DECLHIDDEN(void)    supR3HardenedLogFlush(void);
     450
     451
     452DECLHIDDEN(int)     supR3HardenedVerifyAll(bool fFatal, const char *pszProgName, const char *pszExePath, uint32_t fMainFlags);
     453DECLHIDDEN(int)     supR3HardenedVerifyFixedDir(SUPINSTDIR enmDir, bool fFatal, PCSUPINSTFILE pFile);
     454DECLHIDDEN(int)     supR3HardenedVerifyFixedFile(const char *pszFilename, bool fFatal);
     455DECLHIDDEN(int)     supR3HardenedVerifyDir(const char *pszDirPath, bool fRecursive, bool fCheckFiles, PRTERRINFO pErrInfo);
     456DECLHIDDEN(int)     supR3HardenedVerifyFile(const char *pszFilename, RTHCUINTPTR hNativeFile, bool fMaybe3rdParty,
     457                                            PRTERRINFO pErrInfo);
    458458#if defined(RT_OS_DARWIN) || defined(RT_OS_LINUX)
    459 DECLHIDDEN(int)    supR3HardenedVerifyFileFollowSymlinks(const char *pszFilename, RTHCUINTPTR hNativeFile,
    460                                                                   bool fMaybe3rdParty, PRTERRINFO pErrInfo);
    461 #endif
    462 DECLHIDDEN(void)   supR3HardenedGetPreInitData(PSUPPREINITDATA pPreInitData);
    463 DECLHIDDEN(int)    supR3HardenedRecvPreInitData(PCSUPPREINITDATA pPreInitData);
     459DECLHIDDEN(int)     supR3HardenedVerifyFileFollowSymlinks(const char *pszFilename, RTHCUINTPTR hNativeFile,
     460                                                          bool fMaybe3rdParty, PRTERRINFO pErrInfo);
     461#endif
     462DECLHIDDEN(void)    supR3HardenedGetPreInitData(PSUPPREINITDATA pPreInitData);
     463DECLHIDDEN(int)     supR3HardenedRecvPreInitData(PCSUPPREINITDATA pPreInitData);
    464464
    465465#ifdef RT_OS_WINDOWS
    466 DECLHIDDEN(void)   supR3HardenedWinInit(uint32_t fFlags, bool fAvastKludge);
    467 DECLHIDDEN(void)   supR3HardenedWinInitAppBin(uint32_t fFlags);
    468 DECLHIDDEN(void)   supR3HardenedWinInitVersion(bool fEarlyInit);
    469 DECLHIDDEN(void)   supR3HardenedWinInitImports(void);
    470 DECLHIDDEN(void)   supR3HardenedWinModifyDllSearchPath(uint32_t fFlags, const char *pszAppBinPath);
     466DECLHIDDEN(void)    supR3HardenedWinInit(uint32_t fFlags, bool fAvastKludge);
     467DECLHIDDEN(void)    supR3HardenedWinInitAppBin(uint32_t fFlags);
     468DECLHIDDEN(void)    supR3HardenedWinInitVersion(bool fEarlyInit);
     469DECLHIDDEN(void)    supR3HardenedWinInitImports(void);
     470DECLHIDDEN(void)    supR3HardenedWinModifyDllSearchPath(uint32_t fFlags, const char *pszAppBinPath);
    471471# ifdef IPRT_INCLUDED_nt_nt_h
    472 DECLHIDDEN(void)   supR3HardenedWinGetVeryEarlyImports(uintptr_t uNtDllAddr, PFNNTWAITFORSINGLEOBJECT *ppfnNtWaitForSingleObject,
    473                                                        PFNNTSETEVENT *ppfnNtSetEvent);
     472DECLHIDDEN(void)    supR3HardenedWinGetVeryEarlyImports(uintptr_t uNtDllAddr, PFNNTWAITFORSINGLEOBJECT *ppfnNtWaitForSingleObject,
     473                                                        PFNNTSETEVENT *ppfnNtSetEvent);
    474474# endif
    475 DECLHIDDEN(void)   supR3HardenedWinInitImportsEarly(uintptr_t uNtDllAddr);
    476 DECLHIDDEN(void)   supR3HardenedWinInitSyscalls(bool fReportErrors, PRTERRINFO pErrInfo);
    477 DECLHIDDEN(PFNRT)  supR3HardenedWinGetRealDllSymbol(const char *pszDll, const char *pszProcedure);
    478 DECLHIDDEN(void)   supR3HardenedWinEnableThreadCreation(void);
    479 DECLHIDDEN(void)   supR3HardenedWinResolveVerifyTrustApiAndHookThreadCreation(const char *pszProgName);
    480 DECLHIDDEN(void)   supR3HardenedWinFlushLoaderCache();
    481 DECLHIDDEN(bool)   supR3HardenedWinIsReSpawnNeeded(int iWhich, int cArgs, char **papszArgs);
    482 DECLHIDDEN(int)    supR3HardenedWinReSpawn(int iWhich);
     475DECLHIDDEN(void)    supR3HardenedWinInitImportsEarly(uintptr_t uNtDllAddr);
     476DECLHIDDEN(void)    supR3HardenedWinInitSyscalls(bool fReportErrors, PRTERRINFO pErrInfo);
     477DECLHIDDEN(PFNRT)   supR3HardenedWinGetRealDllSymbol(const char *pszDll, const char *pszProcedure);
     478DECLHIDDEN(void)    supR3HardenedWinEnableThreadCreation(void);
     479DECLHIDDEN(void)    supR3HardenedWinResolveVerifyTrustApiAndHookThreadCreation(const char *pszProgName);
     480DECLHIDDEN(void)    supR3HardenedWinFlushLoaderCache();
     481DECLHIDDEN(bool)    supR3HardenedWinIsReSpawnNeeded(int iWhich, int cArgs, char **papszArgs);
     482DECLHIDDEN(int)     supR3HardenedWinReSpawn(int iWhich);
    483483# ifdef _WINDEF_
    484 DECLHIDDEN(void)   supR3HardenedWinCreateParentWatcherThread(HMODULE hVBoxRT);
     484DECLHIDDEN(void)    supR3HardenedWinCreateParentWatcherThread(HMODULE hVBoxRT);
    485485# endif
    486 DECLHIDDEN(void *) supR3HardenedWinLoadLibrary(const char *pszName, bool fSystem32Only, uint32_t fMainFlags);
     486DECLHIDDEN(void *)  supR3HardenedWinLoadLibrary(const char *pszName, bool fSystem32Only, uint32_t fMainFlags);
    487487extern RTUTF16      g_wszSupLibHardenedExePath[1024];
    488488# ifdef RTPATH_MAX
    489489extern char         g_szSupLibHardenedExePath[RTPATH_MAX];
    490490# endif
    491 DECLHIDDEN(void)   supR3HardenedWinCompactHeaps(void);
    492 DECLHIDDEN(void)   supR3HardenedMainOpenDevice(void);
    493 DECLHIDDEN(char *) supR3HardenedWinReadErrorInfoDevice(char *pszErrorInfo, size_t cbErrorInfo, const char *pszPrefix);
    494 DECLHIDDEN(void)   supR3HardenedWinReportErrorToParent(const char *pszWhere, SUPINITOP enmWhat, int rc,
    495                                                        const char *pszFormat, va_list va);
     491DECLHIDDEN(void)    supR3HardenedWinCompactHeaps(void);
     492DECLHIDDEN(void)    supR3HardenedMainOpenDevice(void);
     493DECLHIDDEN(char *)  supR3HardenedWinReadErrorInfoDevice(char *pszErrorInfo, size_t cbErrorInfo, const char *pszPrefix);
     494DECLHIDDEN(void)    supR3HardenedWinReportErrorToParent(const char *pszWhere, SUPINITOP enmWhat, int rc,
     495                                                        const char *pszFormat, va_list va);
    496496#else   /* !RT_OS_WINDOWS */
    497 DECLHIDDEN(void)   supR3HardenedPosixInit(void);
     497DECLHIDDEN(void)    supR3HardenedPosixInit(void);
    498498#endif  /* !RT_OS_WINDOWS */
    499499
    500 SUPR3DECL(int)              supR3PageLock(void *pvStart, size_t cPages, PSUPPAGE paPages);
    501 SUPR3DECL(int)              supR3PageUnlock(void *pvStart);
     500SUPR3DECL(int)      supR3PageLock(void *pvStart, size_t cPages, PSUPPAGE paPages);
     501SUPR3DECL(int)      supR3PageUnlock(void *pvStart);
    502502
    503503RT_C_DECLS_END
Note: See TracChangeset for help on using the changeset viewer.

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