VirtualBox

source: vbox/trunk/include/VBox/sup.h@ 665

Last change on this file since 665 was 335, checked in by vboxsync, 18 years ago

64-bit: g_SUPGlobalInfoPage is out of bounds for GCC generated code.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 16.9 KB
Line 
1/** @file
2 * SUP - Support Library.
3 */
4
5/*
6 * Copyright (C) 2006 InnoTek Systemberatung GmbH
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * If you received this file as part of a commercial VirtualBox
17 * distribution, then only the terms of your commercial VirtualBox
18 * license agreement apply instead of the previous paragraph.
19 */
20
21#ifndef __VBox_sup_h__
22#define __VBox_sup_h__
23
24#include <VBox/cdefs.h>
25#include <VBox/types.h>
26
27__BEGIN_DECLS
28
29/** @defgroup grp_sup The Support Library API
30 * @{
31 */
32
33/** Physical page.
34 */
35#pragma pack(4) /* space is more important. */
36typedef struct SUPPAGE
37{
38 /** Physical memory address. */
39 RTHCPHYS Phys;
40 /** Reserved entry for internal use by the caller. */
41 RTHCUINTPTR uReserved;
42} SUPPAGE, *PSUPPAGE;
43#pragma pack()
44
45/**
46 * The paging mode.
47 */
48typedef enum SUPPAGINGMODE
49{
50 /** The usual invalid entry.
51 * This is returned by SUPGetPagingMode() */
52 SUPPAGINGMODE_INVALID = 0,
53 /** Normal 32-bit paging, no global pages */
54 SUPPAGINGMODE_32_BIT,
55 /** Normal 32-bit paging with global pages. */
56 SUPPAGINGMODE_32_BIT_GLOBAL,
57 /** PAE mode, no global pages, no NX. */
58 SUPPAGINGMODE_PAE,
59 /** PAE mode with global pages. */
60 SUPPAGINGMODE_PAE_GLOBAL,
61 /** PAE mode with NX, no global pages. */
62 SUPPAGINGMODE_PAE_NX,
63 /** PAE mode with global pages and NX. */
64 SUPPAGINGMODE_PAE_GLOBAL_NX,
65 /** AMD64 mode, no global pages. */
66 SUPPAGINGMODE_AMD64,
67 /** AMD64 mode with global pages, no NX. */
68 SUPPAGINGMODE_AMD64_GLOBAL,
69 /** AMD64 mode with NX, no global pages. */
70 SUPPAGINGMODE_AMD64_NX,
71 /** AMD64 mode with global pages and NX. */
72 SUPPAGINGMODE_AMD64_GLOBAL_NX
73} SUPPAGINGMODE;
74
75
76#pragma pack(1)
77/**
78 * Global Information Page.
79 *
80 * This page contains useful information and can be mapped into any
81 * process or VM. It can be accessed thru the g_pSUPGlobalInfoPage
82 * pointer when a session is open.
83 *
84 * How to read data from this structure:
85 *
86 * @code
87 * PSUPGLOBALINFOPAGE pGIP;
88 * uint32_t u32TransactionId;
89 * do
90 * {
91 * pGIP = g_pSUPGlobalInfoPage;
92 * if (!pGIP)
93 * return VERR_GIP_NOT_PRESENT;
94 * u32TransactionId = pGIP->u32TransactionId;
95 * ... read stuff to local variables ...
96 * } while ( pGIP->u32TransactionId != u32TransactionId
97 * || (u32TransactionId & 1));
98 * @endcode
99 *
100 * @remark This is currently an optional feature.
101 */
102typedef struct SUPGLOBALINFOPAGE
103{
104 /** Magic (SUPGLOBALINFOPAGE_MAGIC). */
105 uint32_t u32Magic;
106
107 /** The update frequency of the of the NanoTS. */
108 volatile uint32_t u32UpdateHz;
109 /** The update interval in nanoseconds. (10^9 / u32UpdateHz) */
110 volatile uint32_t u32UpdateIntervalNS;
111
112 /** Padding / reserved space for future const variables. */
113 uint32_t au32Padding0[5];
114
115 /** Update transaction number.
116 * This number is incremented at the start and end of each update. It follows
117 * thusly that odd numbers indicates update in progress, while even numbers
118 * indicate stable data. Use this to make sure that the data items you fetch
119 * are consistent.
120 */
121 volatile uint32_t u32TransactionId;
122 /** The interval in TSC ticks between two NanoTS updates.
123 * This is the average interval over the last 2, 4 or 8 updates + a little slack.
124 * The slack makes the time go a tiny tiny bit slower and extends the interval enough
125 * to avoid getting ending up with too many 1ns increments. */
126 volatile uint32_t u32UpdateIntervalTSC;
127 /** Current nanosecond timestamp. */
128 volatile uint64_t u64NanoTS;
129 /** The TSC at the time of u64NanoTS. */
130 volatile uint64_t u64TSC;
131 /** Current CPU Frequency. */
132 volatile uint64_t u64CpuHz;
133 /** Number of errors during updating.
134 * Typical errors are under/overflows. */
135 volatile uint32_t cErrors;
136 /** Index of the head item in au32TSCHistory. */
137 volatile uint32_t iTSCHistoryHead;
138 /** Array of recent TSC interval deltas.
139 * The most recent item is at index iTSCHistoryHead.
140 * This history is used to calculate u32UpdateIntervalTSC.
141 */
142 volatile uint32_t au32TSCHistory[8];
143 /** The timestamp of the last time we update the update frequency. */
144 volatile uint64_t u64NanoTSLastUpdateHz;
145} SUPGLOBALINFOPAGE;
146#pragma pack()
147/** Pointer to the global info page. */
148typedef SUPGLOBALINFOPAGE *PSUPGLOBALINFOPAGE;
149/** Const pointer to the global info page. */
150typedef const SUPGLOBALINFOPAGE *PCSUPGLOBALINFOPAGE;
151
152/** Current value of the SUPGLOBALINFOPAGE::u32Magic field. */
153#define SUPGLOBALINFOPAGE_MAGIC (0xbeef0001)
154
155/** Pointer to the Global Information Page.
156 *
157 * This pointer is valid as long as SUPLib has a open session. Anyone using
158 * the page must treat this pointer as higly volatile and not trust it beyond
159 * one transaction.
160 */
161#if defined(IN_SUP_R0) || defined(IN_SUP_R3) || defined(IN_SUP_GC)
162extern DECLEXPORT(PCSUPGLOBALINFOPAGE) g_pSUPGlobalInfoPage;
163#elif defined(IN_RING0)
164extern DECLIMPORT(const SUPGLOBALINFOPAGE) g_SUPGlobalInfoPage;
165# if defined(__GNUC__) && !defined(__DARWIN__) && defined(__AMD64__)
166/** Workaround for ELF+GCC problem on 64-bit hosts.
167 * (GCC emits a mov with a R_X86_64_32 reloc, we need R_X86_64_64.) */
168DECLINLINE(PCSUPGLOBALINFOPAGE) SUPGetGIP(void)
169{
170 PCSUPGLOBALINFOPAGE pGIP;
171 __asm__ __volatile__ ("movabs g_SUPGlobalInfoPage,%0\n\t"
172 : "=a" (pGIP));
173 return pGIP;
174}
175# define g_pSUPGlobalInfoPage (SUPGetGIP())
176# else
177# define g_pSUPGlobalInfoPage (&g_SUPGlobalInfoPage)
178#endif
179#else
180extern DECLIMPORT(PCSUPGLOBALINFOPAGE) g_pSUPGlobalInfoPage;
181#endif
182
183
184
185#ifdef IN_RING3
186
187/** @defgroup grp_sup_r3 SUP Host Context Ring 3 API
188 * @ingroup grp_sup
189 * @{
190 */
191
192/**
193 * Installs the support library.
194 *
195 * @returns VBox status code.
196 */
197SUPR3DECL(int) SUPInstall(void);
198
199/**
200 * Uninstalls the support library.
201 *
202 * @returns VBox status code.
203 */
204SUPR3DECL(int) SUPUninstall(void);
205
206/**
207 * Initializes the support library.
208 * Each succesful call to SUPInit() must be countered by a
209 * call to SUPTerm(false).
210 *
211 * @returns VBox status code.
212 * @param ppSession Where to store the session handle. Defaults to NULL.
213 * @param cbReserve The number of bytes of contiguous memory that should be reserved by
214 * the runtime / support library.
215 * Set this to 0 if no reservation is required. (default)
216 * Set this to ~0 if the maximum amount supported by the VM is to be
217 * attempted reserved, or the maximum available.
218 */
219#ifdef __cplusplus
220SUPR3DECL(int) SUPInit(PSUPDRVSESSION *ppSession = NULL, size_t cbReserve = 0);
221#else
222SUPR3DECL(int) SUPInit(PSUPDRVSESSION *ppSession, size_t cbReserve);
223#endif
224
225/**
226 * Terminates the support library.
227 *
228 * @returns VBox status code.
229 * @param fForced Forced termination. This means to ignore the
230 * init call count and just terminated.
231 */
232#ifdef __cplusplus
233SUPR3DECL(int) SUPTerm(bool fForced = false);
234#else
235SUPR3DECL(int) SUPTerm(int fForced);
236#endif
237
238/**
239 * Sets the ring-0 VM handle for use with fast IOCtls.
240 *
241 * @returns VBox status code.
242 * @param pVMR0 The ring-0 VM handle.
243 * NIL_RTR0PTR can be used to unset the handle when the
244 * VM is about to be destroyed.
245 */
246SUPR3DECL(int) SUPSetVMForFastIOCtl(PVMR0 pVMR0);
247
248/**
249 * Calls the HC R0 VMM entry point.
250 * See VMMR0Entry() for more details.
251 *
252 * @returns error code specific to uFunction.
253 * @param pVM Pointer to the Host Context mapping of the VM structure.
254 * @param uOperation Operation to execute.
255 * @param pvArg Argument.
256 */
257SUPR3DECL(int) SUPCallVMMR0(PVM pVM, unsigned uOperation, void *pvArg);
258
259/**
260 * Calls the HC R0 VMM entry point, in a safer but slower manner than SUPCallVMMR0.
261 * When entering using this call the R0 components can call into the host kernel
262 * (i.e. use the SUPR0 and RT APIs).
263 *
264 * See VMMR0Entry() for more details.
265 *
266 * @returns error code specific to uFunction.
267 * @param pVM Pointer to the Host Context mapping of the VM structure.
268 * @param uOperation Operation to execute.
269 * @param pvArg Pointer to argument structure or if cbArg is 0 just an value.
270 * @param cbArg The size of the argument. This is used to copy whatever the argument
271 * points at into a kernel buffer to avoid problems like the user page
272 * being invalidated while we're executing the call.
273 */
274SUPR3DECL(int) SUPCallVMMR0Ex(PVM pVM, unsigned uOperation, void *pvArg, unsigned cbArg);
275
276/**
277 * Queries the paging mode of the host OS.
278 *
279 * @returns The paging mode.
280 */
281SUPR3DECL(SUPPAGINGMODE) SUPGetPagingMode(void);
282
283/**
284 * Allocate zero-filled pages.
285 *
286 * Use this to allocate a number of pages rather than using RTMem*() and mess with
287 * alignment. The returned address is of course page aligned. Call SUPPageFree()
288 * to free the pages once done with them.
289 *
290 * @returns VBox status.
291 * @param cPages Number of x86 4KB pages to allocate.
292 * Max of 32MB.
293 * @param ppvPages Where to store the base pointer to the allocated pages.
294 */
295SUPR3DECL(int) SUPPageAlloc(size_t cPages, void **ppvPages);
296
297/**
298 * Frees pages allocated with SUPPageAlloc().
299 *
300 * @returns VBox status.
301 * @param pvPages Pointer returned by SUPPageAlloc().
302 */
303SUPR3DECL(int) SUPPageFree(void *pvPages);
304
305/**
306 * Locks down the physical memory backing a virtual memory
307 * range in the current process.
308 *
309 * @returns VBox status code.
310 * @param pvStart Start of virtual memory range.
311 * Must be page aligned.
312 * @param cbMemory Number of bytes.
313 * Must be page aligned.
314 * @param paPages Where to store the physical page addresses returned.
315 * On entry this will point to an array of with cbMemory >> PAGE_SHIFT entries.
316 */
317SUPR3DECL(int) SUPPageLock(void *pvStart, size_t cbMemory, PSUPPAGE paPages);
318
319/**
320 * Releases locked down pages.
321 *
322 * @returns VBox status code.
323 * @param pvStart Start of virtual memory range previously locked
324 * down by SUPPageLock().
325 */
326SUPR3DECL(int) SUPPageUnlock(void *pvStart);
327
328/**
329 * Allocated memory with page aligned memory with a contiguous and locked physical
330 * memory backing below 4GB.
331 *
332 * @returns Pointer to the allocated memory (virtual address).
333 * *pHCPhys is set to the physical address of the memory.
334 * The returned memory must be freed using SUPContFree().
335 * @returns NULL on failure.
336 * @param cb Number of bytes to allocate.
337 * @param pHCPhys Where to store the physical address of the memory block.
338 */
339SUPR3DECL(void *) SUPContAlloc(unsigned cb, PRTHCPHYS pHCPhys);
340
341/**
342 * Allocated memory with page aligned memory with a contiguous and locked physical
343 * memory backing below 4GB.
344 *
345 * @returns Pointer to the allocated memory (virtual address).
346 * *pHCPhys is set to the physical address of the memory.
347 * If ppvR0 isn't NULL, *ppvR0 is set to the ring-0 mapping.
348 * The returned memory must be freed using SUPContFree().
349 * @returns NULL on failure.
350 * @param cb Number of bytes to allocate.
351 * @param ppvR0 Where to store the ring-0 mapping of the allocation. (optional)
352 * @param pHCPhys Where to store the physical address of the memory block.
353 *
354 * @remark This 2nd version of this API exists because we're not able to map the
355 * ring-3 mapping executable on WIN64. This is a serious problem in regard to
356 * the world switchers.
357 */
358SUPR3DECL(void *) SUPContAlloc2(unsigned cb, void **ppvR0, PRTHCPHYS pHCPhys);
359
360/**
361 * Frees memory allocated with SUPContAlloc().
362 *
363 * @returns VBox status code.
364 * @param pv Pointer to the memory block which should be freed.
365 */
366SUPR3DECL(int) SUPContFree(void *pv);
367
368/**
369 * Allocated non contiguous physical memory below 4GB.
370 *
371 * @returns VBox status code.
372 * @returns NULL on failure.
373 * @param cPages Number of pages to allocate.
374 * @param ppvPages Where to store the pointer to the allocated memory.
375 * The pointer stored here on success must be passed to SUPLowFree when
376 * the memory should be released.
377 * @param paPages Where to store the physical addresses of the individual pages.
378 */
379SUPR3DECL(int) SUPLowAlloc(unsigned cPages, void **ppvPages, PSUPPAGE paPages);
380
381/**
382 * Frees memory allocated with SUPLowAlloc().
383 *
384 * @returns VBox status code.
385 * @param pv Pointer to the memory block which should be freed.
386 */
387SUPR3DECL(int) SUPLowFree(void *pv);
388
389/**
390 * Load a module into R0 HC.
391 *
392 * @returns VBox status code.
393 * @param pszFilename The path to the image file.
394 * @param pszModule The module name. Max 32 bytes.
395 */
396SUPR3DECL(int) SUPLoadModule(const char *pszFilename, const char *pszModule, void **ppvImageBase);
397
398/**
399 * Frees a R0 HC module.
400 *
401 * @returns VBox status code.
402 * @param pszModule The module to free.
403 * @remark This will not actually 'free' the module, there are of course usage counting.
404 */
405SUPR3DECL(int) SUPFreeModule(void *pvImageBase);
406
407/**
408 * Get the address of a symbol in a ring-0 module.
409 *
410 * @returns VBox status code.
411 * @param pszModule The module name.
412 * @param pszSymbol Symbol name. If it's value is less than 64k it's treated like a
413 * ordinal value rather than a string pointer.
414 * @param ppvValue Where to store the symbol value.
415 */
416SUPR3DECL(int) SUPGetSymbolR0(void *pvImageBase, const char *pszSymbol, void **ppvValue);
417
418/**
419 * Load R0 HC VMM code.
420 *
421 * @returns VBox status code.
422 * @deprecated Use SUPLoadModule(pszFilename, "VMMR0.r0", &pvImageBase)
423 */
424SUPR3DECL(int) SUPLoadVMM(const char *pszFilename);
425
426/**
427 * Unloads R0 HC VMM code.
428 *
429 * @returns VBox status code.
430 * @deprecated Use SUPFreeModule().
431 */
432SUPR3DECL(int) SUPUnloadVMM(void);
433
434/**
435 * Get the physical address of the GIP.
436 *
437 * @returns VBox status code.
438 * @param pHCPhys Where to store the physical address of the GIP.
439 */
440SUPR3DECL(int) SUPGipGetPhys(PRTHCPHYS pHCPhys);
441
442/** @} */
443#endif /* IN_RING3 */
444
445
446#ifdef IN_RING0
447/** @defgroup grp_sup_r0 SUP Host Context Ring 0 API
448 * @ingroup grp_sup
449 * @{
450 */
451
452/**
453 * Security objectype.
454 */
455typedef enum SUPDRVOBJTYPE
456{
457 /** The usual invalid object. */
458 SUPDRVOBJTYPE_INVALID = 0,
459 /** Internal network. */
460 SUPDRVOBJTYPE_INTERNAL_NETWORK,
461 /** Internal network interface. */
462 SUPDRVOBJTYPE_INTERNAL_NETWORK_INTERFACE,
463 /** The first invalid object type in this end. */
464 SUPDRVOBJTYPE_END,
465 /** The usual 32-bit type size hack. */
466 SUPDRVOBJTYPE_32_BIT_HACK = 0x7ffffff
467} SUPDRVOBJTYPE;
468
469/**
470 * Object destructor callback.
471 * This is called for reference counted objectes when the count reaches 0.
472 *
473 * @param pvObj The object pointer.
474 * @param pvUser1 The first user argument.
475 * @param pvUser2 The second user argument.
476 */
477typedef DECLCALLBACK(void) FNSUPDRVDESTRUCTOR(void *pvObj, void *pvUser1, void *pvUser2);
478/** Pointer to a FNSUPDRVDESTRUCTOR(). */
479typedef FNSUPDRVDESTRUCTOR *PFNSUPDRVDESTRUCTOR;
480
481SUPR0DECL(void *) SUPR0ObjRegister(PSUPDRVSESSION pSession, SUPDRVOBJTYPE enmType, PFNSUPDRVDESTRUCTOR pfnDestructor, void *pvUser1, void *pvUser2);
482SUPR0DECL(int) SUPR0ObjAddRef(void *pvObj, PSUPDRVSESSION pSession);
483SUPR0DECL(int) SUPR0ObjRelease(void *pvObj, PSUPDRVSESSION pSession);
484SUPR0DECL(int) SUPR0ObjVerifyAccess(void *pvObj, PSUPDRVSESSION pSession, const char *pszObjName);
485
486SUPR0DECL(int) SUPR0LockMem(PSUPDRVSESSION pSession, void *pvR3, unsigned cb, PSUPPAGE paPages);
487SUPR0DECL(int) SUPR0UnlockMem(PSUPDRVSESSION pSession, void *pvR3);
488SUPR0DECL(int) SUPR0ContAlloc(PSUPDRVSESSION pSession, unsigned cb, void **ppvR0, void **ppvR3, PRTHCPHYS pHCPhys);
489SUPR0DECL(int) SUPR0ContFree(PSUPDRVSESSION pSession, void *pv);
490SUPR0DECL(int) SUPR0LowAlloc(PSUPDRVSESSION pSession, unsigned cPages, void **ppvR3, PSUPPAGE paPages);
491SUPR0DECL(int) SUPR0LowFree(PSUPDRVSESSION pSession, void *pv);
492SUPR0DECL(int) SUPR0MemAlloc(PSUPDRVSESSION pSession, unsigned cb, void **ppvR0, void **ppvR3);
493SUPR0DECL(int) SUPR0MemGetPhys(PSUPDRVSESSION pSession, void *pv, PSUPPAGE paPages);
494SUPR0DECL(int) SUPR0MemFree(PSUPDRVSESSION pSession, void *pv);
495SUPR0DECL(int) SUPR0GipMap(PSUPDRVSESSION pSession, PCSUPGLOBALINFOPAGE *ppGip, RTHCPHYS *pHCPhysGid);
496SUPR0DECL(int) SUPR0GipUnmap(PSUPDRVSESSION pSession);
497SUPR0DECL(int) SUPR0Printf(const char *pszFormat, ...);
498
499/** @} */
500#endif
501
502/** @} */
503
504__END_DECLS
505
506
507#endif
508
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