VirtualBox

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

Last change on this file since 1 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 16.5 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)
164# define g_pSUPGlobalInfoPage (&g_SUPGlobalInfoPage)
165extern DECLIMPORT(const SUPGLOBALINFOPAGE) g_SUPGlobalInfoPage;
166#else
167extern DECLIMPORT(PCSUPGLOBALINFOPAGE) g_pSUPGlobalInfoPage;
168#endif
169
170
171
172#ifdef IN_RING3
173
174/** @defgroup grp_sup_r3 SUP Host Context Ring 3 API
175 * @ingroup grp_sup
176 * @{
177 */
178
179/**
180 * Installs the support library.
181 *
182 * @returns VBox status code.
183 */
184SUPR3DECL(int) SUPInstall(void);
185
186/**
187 * Uninstalls the support library.
188 *
189 * @returns VBox status code.
190 */
191SUPR3DECL(int) SUPUninstall(void);
192
193/**
194 * Initializes the support library.
195 * Each succesful call to SUPInit() must be countered by a
196 * call to SUPTerm(false).
197 *
198 * @returns VBox status code.
199 * @param ppSession Where to store the session handle. Defaults to NULL.
200 * @param cbReserve The number of bytes of contiguous memory that should be reserved by
201 * the runtime / support library.
202 * Set this to 0 if no reservation is required. (default)
203 * Set this to ~0 if the maximum amount supported by the VM is to be
204 * attempted reserved, or the maximum available.
205 */
206#ifdef __cplusplus
207SUPR3DECL(int) SUPInit(PSUPDRVSESSION *ppSession = NULL, size_t cbReserve = 0);
208#else
209SUPR3DECL(int) SUPInit(PSUPDRVSESSION *ppSession, size_t cbReserve);
210#endif
211
212/**
213 * Terminates the support library.
214 *
215 * @returns VBox status code.
216 * @param fForced Forced termination. This means to ignore the
217 * init call count and just terminated.
218 */
219#ifdef __cplusplus
220SUPR3DECL(int) SUPTerm(bool fForced = false);
221#else
222SUPR3DECL(int) SUPTerm(int fForced);
223#endif
224
225/**
226 * Sets the ring-0 VM handle for use with fast IOCtls.
227 *
228 * @returns VBox status code.
229 * @param pVMR0 The ring-0 VM handle.
230 * NIL_RTR0PTR can be used to unset the handle when the
231 * VM is about to be destroyed.
232 */
233SUPR3DECL(int) SUPSetVMForFastIOCtl(PVMR0 pVMR0);
234
235/**
236 * Calls the HC R0 VMM entry point.
237 * See VMMR0Entry() for more details.
238 *
239 * @returns error code specific to uFunction.
240 * @param pVM Pointer to the Host Context mapping of the VM structure.
241 * @param uOperation Operation to execute.
242 * @param pvArg Argument.
243 */
244SUPR3DECL(int) SUPCallVMMR0(PVM pVM, unsigned uOperation, void *pvArg);
245
246/**
247 * Calls the HC R0 VMM entry point, in a safer but slower manner than SUPCallVMMR0.
248 * When entering using this call the R0 components can call into the host kernel
249 * (i.e. use the SUPR0 and RT APIs).
250 *
251 * See VMMR0Entry() for more details.
252 *
253 * @returns error code specific to uFunction.
254 * @param pVM Pointer to the Host Context mapping of the VM structure.
255 * @param uOperation Operation to execute.
256 * @param pvArg Pointer to argument structure or if cbArg is 0 just an value.
257 * @param cbArg The size of the argument. This is used to copy whatever the argument
258 * points at into a kernel buffer to avoid problems like the user page
259 * being invalidated while we're executing the call.
260 */
261SUPR3DECL(int) SUPCallVMMR0Ex(PVM pVM, unsigned uOperation, void *pvArg, unsigned cbArg);
262
263/**
264 * Queries the paging mode of the host OS.
265 *
266 * @returns The paging mode.
267 */
268SUPR3DECL(SUPPAGINGMODE) SUPGetPagingMode(void);
269
270/**
271 * Allocate zero-filled pages.
272 *
273 * Use this to allocate a number of pages rather than using RTMem*() and mess with
274 * alignment. The returned address is of course page aligned. Call SUPPageFree()
275 * to free the pages once done with them.
276 *
277 * @returns VBox status.
278 * @param cPages Number of x86 4KB pages to allocate.
279 * Max of 32MB.
280 * @param ppvPages Where to store the base pointer to the allocated pages.
281 */
282SUPR3DECL(int) SUPPageAlloc(size_t cPages, void **ppvPages);
283
284/**
285 * Frees pages allocated with SUPPageAlloc().
286 *
287 * @returns VBox status.
288 * @param pvPages Pointer returned by SUPPageAlloc().
289 */
290SUPR3DECL(int) SUPPageFree(void *pvPages);
291
292/**
293 * Locks down the physical memory backing a virtual memory
294 * range in the current process.
295 *
296 * @returns VBox status code.
297 * @param pvStart Start of virtual memory range.
298 * Must be page aligned.
299 * @param cbMemory Number of bytes.
300 * Must be page aligned.
301 * @param paPages Where to store the physical page addresses returned.
302 * On entry this will point to an array of with cbMemory >> PAGE_SHIFT entries.
303 */
304SUPR3DECL(int) SUPPageLock(void *pvStart, size_t cbMemory, PSUPPAGE paPages);
305
306/**
307 * Releases locked down pages.
308 *
309 * @returns VBox status code.
310 * @param pvStart Start of virtual memory range previously locked
311 * down by SUPPageLock().
312 */
313SUPR3DECL(int) SUPPageUnlock(void *pvStart);
314
315/**
316 * Allocated memory with page aligned memory with a contiguous and locked physical
317 * memory backing below 4GB.
318 *
319 * @returns Pointer to the allocated memory (virtual address).
320 * *pHCPhys is set to the physical address of the memory.
321 * The returned memory must be freed using SUPContFree().
322 * @returns NULL on failure.
323 * @param cb Number of bytes to allocate.
324 * @param pHCPhys Where to store the physical address of the memory block.
325 */
326SUPR3DECL(void *) SUPContAlloc(unsigned cb, PRTHCPHYS pHCPhys);
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 * If ppvR0 isn't NULL, *ppvR0 is set to the ring-0 mapping.
335 * The returned memory must be freed using SUPContFree().
336 * @returns NULL on failure.
337 * @param cb Number of bytes to allocate.
338 * @param ppvR0 Where to store the ring-0 mapping of the allocation. (optional)
339 * @param pHCPhys Where to store the physical address of the memory block.
340 *
341 * @remark This 2nd version of this API exists because we're not able to map the
342 * ring-3 mapping executable on WIN64. This is a serious problem in regard to
343 * the world switchers.
344 */
345SUPR3DECL(void *) SUPContAlloc2(unsigned cb, void **ppvR0, PRTHCPHYS pHCPhys);
346
347/**
348 * Frees memory allocated with SUPContAlloc().
349 *
350 * @returns VBox status code.
351 * @param pv Pointer to the memory block which should be freed.
352 */
353SUPR3DECL(int) SUPContFree(void *pv);
354
355/**
356 * Allocated non contiguous physical memory below 4GB.
357 *
358 * @returns VBox status code.
359 * @returns NULL on failure.
360 * @param cPages Number of pages to allocate.
361 * @param ppvPages Where to store the pointer to the allocated memory.
362 * The pointer stored here on success must be passed to SUPLowFree when
363 * the memory should be released.
364 * @param paPages Where to store the physical addresses of the individual pages.
365 */
366SUPR3DECL(int) SUPLowAlloc(unsigned cPages, void **ppvPages, PSUPPAGE paPages);
367
368/**
369 * Frees memory allocated with SUPLowAlloc().
370 *
371 * @returns VBox status code.
372 * @param pv Pointer to the memory block which should be freed.
373 */
374SUPR3DECL(int) SUPLowFree(void *pv);
375
376/**
377 * Load a module into R0 HC.
378 *
379 * @returns VBox status code.
380 * @param pszFilename The path to the image file.
381 * @param pszModule The module name. Max 32 bytes.
382 */
383SUPR3DECL(int) SUPLoadModule(const char *pszFilename, const char *pszModule, void **ppvImageBase);
384
385/**
386 * Frees a R0 HC module.
387 *
388 * @returns VBox status code.
389 * @param pszModule The module to free.
390 * @remark This will not actually 'free' the module, there are of course usage counting.
391 */
392SUPR3DECL(int) SUPFreeModule(void *pvImageBase);
393
394/**
395 * Get the address of a symbol in a ring-0 module.
396 *
397 * @returns VBox status code.
398 * @param pszModule The module name.
399 * @param pszSymbol Symbol name. If it's value is less than 64k it's treated like a
400 * ordinal value rather than a string pointer.
401 * @param ppvValue Where to store the symbol value.
402 */
403SUPR3DECL(int) SUPGetSymbolR0(void *pvImageBase, const char *pszSymbol, void **ppvValue);
404
405/**
406 * Load R0 HC VMM code.
407 *
408 * @returns VBox status code.
409 * @deprecated Use SUPLoadModule(pszFilename, "VMMR0.r0", &pvImageBase)
410 */
411SUPR3DECL(int) SUPLoadVMM(const char *pszFilename);
412
413/**
414 * Unloads R0 HC VMM code.
415 *
416 * @returns VBox status code.
417 * @deprecated Use SUPFreeModule().
418 */
419SUPR3DECL(int) SUPUnloadVMM(void);
420
421/**
422 * Get the physical address of the GIP.
423 *
424 * @returns VBox status code.
425 * @param pHCPhys Where to store the physical address of the GIP.
426 */
427SUPR3DECL(int) SUPGipGetPhys(PRTHCPHYS pHCPhys);
428
429/** @} */
430#endif /* IN_RING3 */
431
432
433#ifdef IN_RING0
434/** @defgroup grp_sup_r0 SUP Host Context Ring 0 API
435 * @ingroup grp_sup
436 * @{
437 */
438
439/**
440 * Security objectype.
441 */
442typedef enum SUPDRVOBJTYPE
443{
444 /** The usual invalid object. */
445 SUPDRVOBJTYPE_INVALID = 0,
446 /** Internal network. */
447 SUPDRVOBJTYPE_INTERNAL_NETWORK,
448 /** Internal network interface. */
449 SUPDRVOBJTYPE_INTERNAL_NETWORK_INTERFACE,
450 /** The first invalid object type in this end. */
451 SUPDRVOBJTYPE_END,
452 /** The usual 32-bit type size hack. */
453 SUPDRVOBJTYPE_32_BIT_HACK = 0x7ffffff
454} SUPDRVOBJTYPE;
455
456/**
457 * Object destructor callback.
458 * This is called for reference counted objectes when the count reaches 0.
459 *
460 * @param pvObj The object pointer.
461 * @param pvUser1 The first user argument.
462 * @param pvUser2 The second user argument.
463 */
464typedef DECLCALLBACK(void) FNSUPDRVDESTRUCTOR(void *pvObj, void *pvUser1, void *pvUser2);
465/** Pointer to a FNSUPDRVDESTRUCTOR(). */
466typedef FNSUPDRVDESTRUCTOR *PFNSUPDRVDESTRUCTOR;
467
468SUPR0DECL(void *) SUPR0ObjRegister(PSUPDRVSESSION pSession, SUPDRVOBJTYPE enmType, PFNSUPDRVDESTRUCTOR pfnDestructor, void *pvUser1, void *pvUser2);
469SUPR0DECL(int) SUPR0ObjAddRef(void *pvObj, PSUPDRVSESSION pSession);
470SUPR0DECL(int) SUPR0ObjRelease(void *pvObj, PSUPDRVSESSION pSession);
471SUPR0DECL(int) SUPR0ObjVerifyAccess(void *pvObj, PSUPDRVSESSION pSession, const char *pszObjName);
472
473SUPR0DECL(int) SUPR0LockMem(PSUPDRVSESSION pSession, void *pvR3, unsigned cb, PSUPPAGE paPages);
474SUPR0DECL(int) SUPR0UnlockMem(PSUPDRVSESSION pSession, void *pvR3);
475SUPR0DECL(int) SUPR0ContAlloc(PSUPDRVSESSION pSession, unsigned cb, void **ppvR0, void **ppvR3, PRTHCPHYS pHCPhys);
476SUPR0DECL(int) SUPR0ContFree(PSUPDRVSESSION pSession, void *pv);
477SUPR0DECL(int) SUPR0LowAlloc(PSUPDRVSESSION pSession, unsigned cPages, void **ppvR3, PSUPPAGE paPages);
478SUPR0DECL(int) SUPR0LowFree(PSUPDRVSESSION pSession, void *pv);
479SUPR0DECL(int) SUPR0MemAlloc(PSUPDRVSESSION pSession, unsigned cb, void **ppvR0, void **ppvR3);
480SUPR0DECL(int) SUPR0MemGetPhys(PSUPDRVSESSION pSession, void *pv, PSUPPAGE paPages);
481SUPR0DECL(int) SUPR0MemFree(PSUPDRVSESSION pSession, void *pv);
482SUPR0DECL(int) SUPR0GipMap(PSUPDRVSESSION pSession, PCSUPGLOBALINFOPAGE *ppGip, RTHCPHYS *pHCPhysGid);
483SUPR0DECL(int) SUPR0GipUnmap(PSUPDRVSESSION pSession);
484SUPR0DECL(int) SUPR0Printf(const char *pszFormat, ...);
485
486/** @} */
487#endif
488
489/** @} */
490
491__END_DECLS
492
493
494#endif
495
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