VirtualBox

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

Last change on this file since 18499 was 16335, checked in by vboxsync, 15 years ago

SUPLib-darwin: io_connect_t isn't a pointer actually, but a natural, so use uintptr_t instead of void * in the struct.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 11.0 KB
Line 
1/* $Id: SUPLibInternal.h 16335 2009-01-28 20:41:30Z vboxsync $ */
2/** @file
3 * VirtualBox Support Library - Internal header.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31#ifndef ___SUPLibInternal_h___
32#define ___SUPLibInternal_h___
33
34#include <VBox/cdefs.h>
35#include <VBox/types.h>
36#include <iprt/stdarg.h>
37
38
39/*******************************************************************************
40* Defined Constants And Macros *
41*******************************************************************************/
42/** @def SUPLIB_DLL_SUFF
43 * The (typical) DLL/DYLIB/SO suffix. */
44#if defined(RT_OS_DARWIN)
45# define SUPLIB_DLL_SUFF ".dylib"
46#elif defined(RT_OS_L4)
47# define SUPLIB_DLL_SUFF ".s.so"
48#elif defined(RT_OS_OS2) || defined(RT_OS_WINDOWS)
49# define SUPLIB_DLL_SUFF ".dll"
50#else
51# define SUPLIB_DLL_SUFF ".so"
52#endif
53
54/** @def SUPLIB_EXE_SUFF
55 * The (typical) executable suffix. */
56#if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS)
57# define SUPLIB_EXE_SUFF ".exe"
58#else
59# define SUPLIB_EXE_SUFF ""
60#endif
61
62/** @def SUP_HARDENED_SUID
63 * Whether we're employing set-user-ID-on-execute in the hardening.
64 */
65#if !defined(RT_OS_OS2) && !defined(RT_OS_WINDOWS) && !defined(RT_OS_L4)
66# define SUP_HARDENED_SUID
67#else
68# undef SUP_HARDENED_SUID
69#endif
70
71#ifdef IN_SUP_HARDENED_R3
72/** @name Make the symbols in SUPR3HardenedStatic different from the VBoxRT ones.
73 * We cannot rely on DECLHIDDEN to make this separation for us since it doesn't
74 * work with all GCC versions. So, we resort to old fashion precompiler hacking.
75 * @{
76 */
77# define supR3HardenedPathAppPrivateNoArch supR3HardenedStaticPathAppPrivateNoArch
78# define supR3HardenedPathAppPrivateArch supR3HardenedStaticPathAppPrivateArch
79# define supR3HardenedPathSharedLibs supR3HardenedStaticPathSharedLibs
80# define supR3HardenedPathAppDocs supR3HardenedStaticPathAppDocs
81# define supR3HardenedPathProgram supR3HardenedStaticPathProgram
82# define supR3HardenedPathFilename supR3HardenedStaticPathFilename
83# define supR3HardenedFatalV supR3HardenedStaticFatalV
84# define supR3HardenedFatal supR3HardenedStaticFatal
85# define supR3HardenedFatalMsgV supR3HardenedStaticFatalMsgV
86# define supR3HardenedFatalMsg supR3HardenedStaticFatalMsg
87# define supR3HardenedErrorV supR3HardenedStaticErrorV
88# define supR3HardenedError supR3HardenedStaticError
89# define supR3HardenedVerifyAll supR3HardenedStaticVerifyAll
90# define supR3HardenedVerifyDir supR3HardenedStaticVerifyDir
91# define supR3HardenedVerifyFile supR3HardenedStaticVerifyFile
92# define supR3HardenedGetPreInitData supR3HardenedStaticGetPreInitData
93# define supR3HardenedRecvPreInitData supR3HardenedStaticRecvPreInitData
94/** @} */
95#endif /* IN_SUP_HARDENED_R3 */
96
97
98/*******************************************************************************
99* Global Variables *
100*******************************************************************************/
101/** The negotiated interrupt number. */
102extern DECLHIDDEN(uint8_t) g_uchInterruptNo;
103/** The negotiated cookie. */
104extern DECLHIDDEN(uint32_t) g_u32Cookie;
105/** The negotiated cookie. */
106extern DECLHIDDEN(uint32_t) g_u32CookieSession;
107
108
109/*******************************************************************************
110* Structures and Typedefs *
111*******************************************************************************/
112/**
113 * The type of an installed file.
114 */
115typedef enum SUPINSTFILETYPE
116{
117 kSupIFT_Invalid = 0,
118 kSupIFT_Exe,
119 kSupIFT_Dll,
120 kSupIFT_Sys,
121 kSupIFT_Script,
122 kSupIFT_Data,
123 kSupIFT_End
124} SUPINSTFILETYPE;
125
126/**
127 * Installation directory specifier.
128 */
129typedef enum SUPINSTDIR
130{
131 kSupID_Invalid = 0,
132 kSupID_Bin,
133 kSupID_AppBin,
134 kSupID_SharedLib,
135 kSupID_AppPrivArch,
136 kSupID_AppPrivArchComp,
137 kSupID_AppPrivNoArch,
138 kSupID_End
139} SUPINSTDIR;
140
141/**
142 * Installed file.
143 */
144typedef struct SUPINSTFILE
145{
146 /** File type. */
147 SUPINSTFILETYPE enmType;
148 /** Install directory. */
149 SUPINSTDIR enmDir;
150 /** Optional (true) or mandatory (false. */
151 bool fOptional;
152 /** File name. */
153 const char *pszFile;
154} SUPINSTFILE;
155typedef SUPINSTFILE *PSUPINSTFILE;
156typedef SUPINSTFILE const *PCSUPINSTFILE;
157
158/**
159 * Status data for a verified file.
160 */
161typedef struct SUPVERIFIEDFILE
162{
163 /** The file handle or descriptor. -1 if not open. */
164 intptr_t hFile;
165 /** Whether the file has been validated. */
166 bool fValidated;
167} SUPVERIFIEDFILE;
168typedef SUPVERIFIEDFILE *PSUPVERIFIEDFILE;
169typedef SUPVERIFIEDFILE const *PCSUPVERIFIEDFILE;
170
171/**
172 * Status data for a verified directory.
173 */
174typedef struct SUPVERIFIEDDIR
175{
176 /** The directory handle or descriptor. -1 if not open. */
177 intptr_t hDir;
178 /** Whether the directory has been validated. */
179 bool fValidated;
180} SUPVERIFIEDDIR;
181typedef SUPVERIFIEDDIR *PSUPVERIFIEDDIR;
182typedef SUPVERIFIEDDIR const *PCSUPVERIFIEDDIR;
183
184
185/**
186 * SUPLib instance data.
187 *
188 * This is data that is passed from the static to the dynamic SUPLib
189 * in a hardened setup.
190 */
191typedef struct SUPLIBDATA
192{
193 /** The device handle. */
194 RTFILE hDevice;
195#if defined(RT_OS_DARWIN)
196 /** The connection to the VBoxSupDrv service. */
197 uintptr_t uConnection;
198#elif defined(RT_OS_LINUX)
199 /** Indicates whether madvise(,,MADV_DONTFORK) works. */
200 bool fSysMadviseWorks;
201#elif defined(RT_OS_WINDOWS)
202#endif
203} SUPLIBDATA;
204/** Pointer to the pre-init data. */
205typedef SUPLIBDATA *PSUPLIBDATA;
206/** Pointer to const pre-init data. */
207typedef SUPLIBDATA const *PCSUPLIBDATA;
208
209
210/**
211 * Pre-init data that is handed over from the hardened executable stub.
212 */
213typedef struct SUPPREINITDATA
214{
215 /** Magic value (SUPPREINITDATA_MAGIC). */
216 uint32_t u32Magic;
217 /** The SUPLib instance data. */
218 SUPLIBDATA Data;
219 /** The number of entries in paInstallFiles and paVerifiedFiles. */
220 size_t cInstallFiles;
221 /** g_aSupInstallFiles. */
222 PCSUPINSTFILE paInstallFiles;
223 /** g_aSupVerifiedFiles. */
224 PCSUPVERIFIEDFILE paVerifiedFiles;
225 /** The number of entries in paVerifiedDirs. */
226 size_t cVerifiedDirs;
227 /** g_aSupVerifiedDirs. */
228 PCSUPVERIFIEDDIR paVerifiedDirs;
229 /** Magic value (SUPPREINITDATA_MAGIC). */
230 uint32_t u32EndMagic;
231} SUPPREINITDATA;
232typedef SUPPREINITDATA *PSUPPREINITDATA;
233typedef SUPPREINITDATA const *PCSUPPREINITDATA;
234
235/** Magic value for SUPPREINITDATA::u32Magic and SUPPREINITDATA::u32EndMagic. */
236#define SUPPREINITDATA_MAGIC UINT32_C(0xbeef0001)
237
238/** @copydoc supR3PreInit */
239typedef DECLCALLBACK(int) FNSUPR3PREINIT(PSUPPREINITDATA pPreInitData, uint32_t fFlags);
240/** Pointer to supR3PreInit. */
241typedef FNSUPR3PREINIT *PFNSUPR3PREINIT;
242
243
244/*******************************************************************************
245* OS Specific Function *
246*******************************************************************************/
247__BEGIN_DECLS
248int suplibOsInstall(void);
249int suplibOsUninstall(void);
250int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited);
251int suplibOsTerm(PSUPLIBDATA pThis);
252int suplibOsIOCtl(PSUPLIBDATA pThis, uintptr_t uFunction, void *pvReq, size_t cbReq);
253int suplibOsIOCtlFast(PSUPLIBDATA pThis, uintptr_t uFunction, uintptr_t idCpu);
254int suplibOsPageAlloc(PSUPLIBDATA pThis, size_t cPages, void **ppvPages);
255int suplibOsPageFree(PSUPLIBDATA pThis, void *pvPages, size_t cPages);
256
257
258/**
259 * Performs the pre-initialization of the support library.
260 *
261 * This is dynamically resolved and invoked by the static library before it
262 * calls RTR3Init and thereby SUPR3Init.
263 *
264 * @returns IPRT status code.
265 * @param pPreInitData The pre init data.
266 * @param fFlags The SUPR3HardenedMain flags.
267 */
268DECLEXPORT(int) supR3PreInit(PSUPPREINITDATA pPreInitData, uint32_t fFlags);
269
270
271/** @copydoc RTPathAppPrivateNoArch */
272DECLHIDDEN(int) supR3HardenedPathAppPrivateNoArch(char *pszPath, size_t cchPath);
273/** @copydoc RTPathAppPrivateArch */
274DECLHIDDEN(int) supR3HardenedPathAppPrivateArch(char *pszPath, size_t cchPath);
275/** @copydoc RTPathSharedLibs */
276DECLHIDDEN(int) supR3HardenedPathSharedLibs(char *pszPath, size_t cchPath);
277/** @copydoc RTPathAppDocs */
278DECLHIDDEN(int) supR3HardenedPathAppDocs(char *pszPath, size_t cchPath);
279/** @copydoc RTPathProgram */
280DECLHIDDEN(int) supR3HardenedPathProgram(char *pszPath, size_t cchPath);
281/** @copydoc RTPathFilename */
282DECLHIDDEN(char *) supR3HardenedPathFilename(const char *pszPath);
283
284/**
285 * Display a fatal error and try call TrustedError or quit.
286 */
287DECLHIDDEN(void) supR3HardenedFatalMsgV(const char *pszWhere, SUPINITOP enmWhat, int rc, const char *pszMsgFmt, va_list va);
288
289/**
290 * Display a fatal error and try call TrustedError or quit.
291 */
292DECLHIDDEN(void) supR3HardenedFatalMsg(const char *pszWhere, SUPINITOP enmWhat, int rc, const char *pszMsgFmt, ...);
293
294/**
295 * Display a fatal error and quit.
296 */
297DECLHIDDEN(void) supR3HardenedFatalV(const char *pszFormat, va_list va);
298
299/**
300 * Display a fatal error and quit.
301 */
302DECLHIDDEN(void) supR3HardenedFatal(const char *pszFormat, ...);
303
304/**
305 * Display an error which may or may not be fatal.
306 */
307DECLHIDDEN(int) supR3HardenedErrorV(int rc, bool fFatal, const char *pszFormat, va_list va);
308
309/**
310 * Display an error which may or may not be fatal.
311 */
312DECLHIDDEN(int) supR3HardenedError(int rc, bool fFatal, const char *pszFormat, ...);
313DECLHIDDEN(int) supR3HardenedVerifyAll(bool fFatal, bool fLeaveFilesOpen, const char *pszProgName);
314DECLHIDDEN(int) supR3HardenedVerifyDir(SUPINSTDIR enmDir, bool fFatal);
315DECLHIDDEN(int) supR3HardenedVerifyFile(const char *pszFilename, bool fFatal);
316DECLHIDDEN(void) supR3HardenedGetPreInitData(PSUPPREINITDATA pPreInitData);
317DECLHIDDEN(int) supR3HardenedRecvPreInitData(PCSUPPREINITDATA pPreInitData);
318
319
320__END_DECLS
321
322
323#endif
324
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use