VirtualBox

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

Last change on this file since 19454 was 19454, checked in by vboxsync, 16 years ago

VMM++: More on poking. Fixed broken R0 stats (wrong way of calling into VMMR0), use NIL_VMCPUID instead of 0 to VMMR0EntryEx when it is supposed to be irrellevant. Use VMCPUID. Allow for and check NIL_VMCPUID. Fixed a few missing/wrong idCpu checks (paranoia mostly).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 35.5 KB
Line 
1/** @file
2 * SUP - Support Library.
3 */
4
5/*
6 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 *
25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
26 * Clara, CA 95054 USA or visit http://www.sun.com if you need
27 * additional information or have any questions.
28 */
29
30#ifndef ___VBox_sup_h
31#define ___VBox_sup_h
32
33#include <VBox/cdefs.h>
34#include <VBox/types.h>
35#include <iprt/assert.h>
36#include <iprt/stdarg.h>
37#include <iprt/asm.h>
38
39__BEGIN_DECLS
40
41/** @defgroup grp_sup The Support Library API
42 * @{
43 */
44
45/**
46 * Physical page descriptor.
47 */
48#pragma pack(4) /* space is more important. */
49typedef struct SUPPAGE
50{
51 /** Physical memory address. */
52 RTHCPHYS Phys;
53 /** Reserved entry for internal use by the caller. */
54 RTHCUINTPTR uReserved;
55} SUPPAGE;
56#pragma pack()
57/** Pointer to a page descriptor. */
58typedef SUPPAGE *PSUPPAGE;
59/** Pointer to a const page descriptor. */
60typedef const SUPPAGE *PCSUPPAGE;
61
62/**
63 * The paging mode.
64 *
65 * @remarks Users are making assumptions about the order here!
66 */
67typedef enum SUPPAGINGMODE
68{
69 /** The usual invalid entry.
70 * This is returned by SUPGetPagingMode() */
71 SUPPAGINGMODE_INVALID = 0,
72 /** Normal 32-bit paging, no global pages */
73 SUPPAGINGMODE_32_BIT,
74 /** Normal 32-bit paging with global pages. */
75 SUPPAGINGMODE_32_BIT_GLOBAL,
76 /** PAE mode, no global pages, no NX. */
77 SUPPAGINGMODE_PAE,
78 /** PAE mode with global pages. */
79 SUPPAGINGMODE_PAE_GLOBAL,
80 /** PAE mode with NX, no global pages. */
81 SUPPAGINGMODE_PAE_NX,
82 /** PAE mode with global pages and NX. */
83 SUPPAGINGMODE_PAE_GLOBAL_NX,
84 /** AMD64 mode, no global pages. */
85 SUPPAGINGMODE_AMD64,
86 /** AMD64 mode with global pages, no NX. */
87 SUPPAGINGMODE_AMD64_GLOBAL,
88 /** AMD64 mode with NX, no global pages. */
89 SUPPAGINGMODE_AMD64_NX,
90 /** AMD64 mode with global pages and NX. */
91 SUPPAGINGMODE_AMD64_GLOBAL_NX
92} SUPPAGINGMODE;
93
94
95#pragma pack(1) /* paranoia */
96
97/**
98 * Per CPU data.
99 * This is only used when
100 */
101typedef struct SUPGIPCPU
102{
103 /** Update transaction number.
104 * This number is incremented at the start and end of each update. It follows
105 * thusly that odd numbers indicates update in progress, while even numbers
106 * indicate stable data. Use this to make sure that the data items you fetch
107 * are consistent. */
108 volatile uint32_t u32TransactionId;
109 /** The interval in TSC ticks between two NanoTS updates.
110 * This is the average interval over the last 2, 4 or 8 updates + a little slack.
111 * The slack makes the time go a tiny tiny bit slower and extends the interval enough
112 * to avoid ending up with too many 1ns increments. */
113 volatile uint32_t u32UpdateIntervalTSC;
114 /** Current nanosecond timestamp. */
115 volatile uint64_t u64NanoTS;
116 /** The TSC at the time of u64NanoTS. */
117 volatile uint64_t u64TSC;
118 /** Current CPU Frequency. */
119 volatile uint64_t u64CpuHz;
120 /** Number of errors during updating.
121 * Typical errors are under/overflows. */
122 volatile uint32_t cErrors;
123 /** Index of the head item in au32TSCHistory. */
124 volatile uint32_t iTSCHistoryHead;
125 /** Array of recent TSC interval deltas.
126 * The most recent item is at index iTSCHistoryHead.
127 * This history is used to calculate u32UpdateIntervalTSC.
128 */
129 volatile uint32_t au32TSCHistory[8];
130 /** Reserved for future per processor data. */
131 volatile uint32_t au32Reserved[6];
132} SUPGIPCPU;
133AssertCompileSize(SUPGIPCPU, 96);
134/*AssertCompileMemberAlignment(SUPGIPCPU, u64TSC, 8); -fixme */
135
136/** Pointer to per cpu data.
137 * @remark there is no const version of this typedef, see g_pSUPGlobalInfoPage for details. */
138typedef SUPGIPCPU *PSUPGIPCPU;
139
140/**
141 * Global Information Page.
142 *
143 * This page contains useful information and can be mapped into any
144 * process or VM. It can be accessed thru the g_pSUPGlobalInfoPage
145 * pointer when a session is open.
146 */
147typedef struct SUPGLOBALINFOPAGE
148{
149 /** Magic (SUPGLOBALINFOPAGE_MAGIC). */
150 uint32_t u32Magic;
151 /** The GIP version. */
152 uint32_t u32Version;
153
154 /** The GIP update mode, see SUPGIPMODE. */
155 uint32_t u32Mode;
156 /** Reserved / padding. */
157 uint32_t u32Padding0;
158 /** The update frequency of the of the NanoTS. */
159 volatile uint32_t u32UpdateHz;
160 /** The update interval in nanoseconds. (10^9 / u32UpdateHz) */
161 volatile uint32_t u32UpdateIntervalNS;
162 /** The timestamp of the last time we update the update frequency. */
163 volatile uint64_t u64NanoTSLastUpdateHz;
164
165 /** Padding / reserved space for future data. */
166 uint32_t au32Padding1[56];
167
168 /** Array of per-cpu data.
169 * If u32Mode == SUPGIPMODE_SYNC_TSC then only the first entry is used.
170 * If u32Mode == SUPGIPMODE_ASYNC_TSC then the CPU ACPI ID is used as an
171 * index into the array. */
172 SUPGIPCPU aCPUs[32];
173} SUPGLOBALINFOPAGE;
174AssertCompile(sizeof(SUPGLOBALINFOPAGE) <= 0x1000);
175/* AssertCompileMemberAlignment(SUPGLOBALINFOPAGE, aCPU, 32); - fixme */
176
177/** Pointer to the global info page.
178 * @remark there is no const version of this typedef, see g_pSUPGlobalInfoPage for details. */
179typedef SUPGLOBALINFOPAGE *PSUPGLOBALINFOPAGE;
180
181#pragma pack() /* end of paranoia */
182
183/** The value of the SUPGLOBALINFOPAGE::u32Magic field. (Soryo Fuyumi) */
184#define SUPGLOBALINFOPAGE_MAGIC 0x19590106
185/** The GIP version.
186 * Upper 16 bits is the major version. Major version is only changed with
187 * incompatible changes in the GIP. */
188#define SUPGLOBALINFOPAGE_VERSION 0x00020000
189
190/**
191 * SUPGLOBALINFOPAGE::u32Mode values.
192 */
193typedef enum SUPGIPMODE
194{
195 /** The usual invalid null entry. */
196 SUPGIPMODE_INVALID = 0,
197 /** The TSC of the cores and cpus in the system is in sync. */
198 SUPGIPMODE_SYNC_TSC,
199 /** Each core has it's own TSC. */
200 SUPGIPMODE_ASYNC_TSC,
201 /** The usual 32-bit hack. */
202 SUPGIPMODE_32BIT_HACK = 0x7fffffff
203} SUPGIPMODE;
204
205/** Pointer to the Global Information Page.
206 *
207 * This pointer is valid as long as SUPLib has a open session. Anyone using
208 * the page must treat this pointer as higly volatile and not trust it beyond
209 * one transaction.
210 *
211 * @remark The GIP page is read-only to everyone but the support driver and
212 * is actually mapped read only everywhere but in ring-0. However
213 * it is not marked 'const' as this might confuse compilers into
214 * thinking that values doesn't change even if members are marked
215 * as volatile. Thus, there is no PCSUPGLOBALINFOPAGE type.
216 */
217#if defined(IN_SUP_R0) || defined(IN_SUP_R3) || defined(IN_SUP_GC)
218extern DECLEXPORT(PSUPGLOBALINFOPAGE) g_pSUPGlobalInfoPage;
219#elif defined(IN_RING0)
220extern DECLIMPORT(SUPGLOBALINFOPAGE) g_SUPGlobalInfoPage;
221# if defined(__GNUC__) && !defined(RT_OS_DARWIN) && defined(RT_ARCH_AMD64)
222/** Workaround for ELF+GCC problem on 64-bit hosts.
223 * (GCC emits a mov with a R_X86_64_32 reloc, we need R_X86_64_64.) */
224DECLINLINE(PSUPGLOBALINFOPAGE) SUPGetGIP(void)
225{
226 PSUPGLOBALINFOPAGE pGIP;
227 __asm__ __volatile__ ("movabs $g_SUPGlobalInfoPage,%0\n\t"
228 : "=a" (pGIP));
229 return pGIP;
230}
231# define g_pSUPGlobalInfoPage (SUPGetGIP())
232# else
233# define g_pSUPGlobalInfoPage (&g_SUPGlobalInfoPage)
234# endif
235#else
236extern DECLIMPORT(PSUPGLOBALINFOPAGE) g_pSUPGlobalInfoPage;
237#endif
238
239
240/**
241 * Gets the TSC frequency of the calling CPU.
242 *
243 * @returns TSC frequency.
244 * @param pGip The GIP pointer.
245 */
246DECLINLINE(uint64_t) SUPGetCpuHzFromGIP(PSUPGLOBALINFOPAGE pGip)
247{
248 unsigned iCpu;
249
250 if (RT_UNLIKELY(!pGip || pGip->u32Magic != SUPGLOBALINFOPAGE_MAGIC))
251 return ~(uint64_t)0;
252
253 if (pGip->u32Mode != SUPGIPMODE_ASYNC_TSC)
254 iCpu = 0;
255 else
256 {
257 iCpu = ASMGetApicId();
258 if (RT_UNLIKELY(iCpu >= RT_ELEMENTS(pGip->aCPUs)))
259 return ~(uint64_t)0;
260 }
261
262 return pGip->aCPUs[iCpu].u64CpuHz;
263}
264
265
266/**
267 * Request for generic VMMR0Entry calls.
268 */
269typedef struct SUPVMMR0REQHDR
270{
271 /** The magic. (SUPVMMR0REQHDR_MAGIC) */
272 uint32_t u32Magic;
273 /** The size of the request. */
274 uint32_t cbReq;
275} SUPVMMR0REQHDR;
276/** Pointer to a ring-0 request header. */
277typedef SUPVMMR0REQHDR *PSUPVMMR0REQHDR;
278/** the SUPVMMR0REQHDR::u32Magic value (Ethan Iverson - The Bad Plus). */
279#define SUPVMMR0REQHDR_MAGIC UINT32_C(0x19730211)
280
281
282/** For the fast ioctl path.
283 * @{
284 */
285/** @see VMMR0_DO_RAW_RUN. */
286#define SUP_VMMR0_DO_RAW_RUN 0
287/** @see VMMR0_DO_HWACC_RUN. */
288#define SUP_VMMR0_DO_HWACC_RUN 1
289/** @see VMMR0_DO_NOP */
290#define SUP_VMMR0_DO_NOP 2
291/** @} */
292
293
294/**
295 * Request for generic FNSUPR0SERVICEREQHANDLER calls.
296 */
297typedef struct SUPR0SERVICEREQHDR
298{
299 /** The magic. (SUPR0SERVICEREQHDR_MAGIC) */
300 uint32_t u32Magic;
301 /** The size of the request. */
302 uint32_t cbReq;
303} SUPR0SERVICEREQHDR;
304/** Pointer to a ring-0 service request header. */
305typedef SUPR0SERVICEREQHDR *PSUPR0SERVICEREQHDR;
306/** the SUPVMMR0REQHDR::u32Magic value (Esbjoern Svensson - E.S.P.). */
307#define SUPR0SERVICEREQHDR_MAGIC UINT32_C(0x19640416)
308
309
310
311#ifdef IN_RING3
312
313/** @defgroup grp_sup_r3 SUP Host Context Ring 3 API
314 * @ingroup grp_sup
315 * @{
316 */
317
318/**
319 * Installs the support library.
320 *
321 * @returns VBox status code.
322 */
323SUPR3DECL(int) SUPInstall(void);
324
325/**
326 * Uninstalls the support library.
327 *
328 * @returns VBox status code.
329 */
330SUPR3DECL(int) SUPUninstall(void);
331
332/**
333 * Trusted main entry point.
334 *
335 * This is exported as "TrustedMain" by the dynamic libraries which contains the
336 * "real" application binary for which the hardened stub is built. The entry
337 * point is invoked upon successfull initialization of the support library and
338 * runtime.
339 *
340 * @returns main kind of exit code.
341 * @param argc The argument count.
342 * @param argv The argument vector.
343 * @param envp The environment vector.
344 */
345typedef DECLCALLBACK(int) FNSUPTRUSTEDMAIN(int argc, char **argv, char **envp);
346/** Pointer to FNSUPTRUSTEDMAIN(). */
347typedef FNSUPTRUSTEDMAIN *PFNSUPTRUSTEDMAIN;
348
349/** Which operation failed. */
350typedef enum SUPINITOP
351{
352 /** Invalid. */
353 kSupInitOp_Invalid = 0,
354 /** Installation integrity error. */
355 kSupInitOp_Integrity,
356 /** Setuid related. */
357 kSupInitOp_RootCheck,
358 /** Driver related. */
359 kSupInitOp_Driver,
360 /** IPRT init related. */
361 kSupInitOp_IPRT,
362 /** Place holder. */
363 kSupInitOp_End
364} SUPINITOP;
365
366/**
367 * Trusted error entry point, optional.
368 *
369 * This is exported as "TrustedError" by the dynamic libraries which contains
370 * the "real" application binary for which the hardened stub is built.
371 *
372 * @param pszWhere Where the error occured (function name).
373 * @param enmWhat Which operation went wrong.
374 * @param rc The status code.
375 * @param pszMsgFmt Error message format string.
376 * @param va The message format arguments.
377 */
378typedef DECLCALLBACK(void) FNSUPTRUSTEDERROR(const char *pszWhere, SUPINITOP enmWhat, int rc, const char *pszMsgFmt, va_list va);
379/** Pointer to FNSUPTRUSTEDERROR. */
380typedef FNSUPTRUSTEDERROR *PFNSUPTRUSTEDERROR;
381
382/**
383 * Secure main.
384 *
385 * This is used for the set-user-ID-on-execute binaries on unixy systems
386 * and when using the open-vboxdrv-via-root-service setup on Windows.
387 *
388 * This function will perform the integrity checks of the VirtualBox
389 * installation, open the support driver, open the root service (later),
390 * and load the DLL corresponding to \a pszProgName and execute its main
391 * function.
392 *
393 * @returns Return code appropriate for main().
394 *
395 * @param pszProgName The program name. This will be used to figure out which
396 * DLL/SO/DYLIB to load and execute.
397 * @param fFlags Flags.
398 * @param argc The argument count.
399 * @param argv The argument vector.
400 * @param envp The environment vector.
401 */
402DECLHIDDEN(int) SUPR3HardenedMain(const char *pszProgName, uint32_t fFlags, int argc, char **argv, char **envp);
403
404/** @name SUPR3SecureMain flags.
405 * @{ */
406/** Don't open the device. (Intended for VirtualBox without -startvm.) */
407#define SUPSECMAIN_FLAGS_DONT_OPEN_DEV RT_BIT_32(0)
408/** @} */
409
410/**
411 * Initializes the support library.
412 * Each succesful call to SUPR3Init() must be countered by a
413 * call to SUPTerm(false).
414 *
415 * @returns VBox status code.
416 * @param ppSession Where to store the session handle. Defaults to NULL.
417 */
418SUPR3DECL(int) SUPR3Init(PSUPDRVSESSION *ppSession);
419
420/**
421 * Terminates the support library.
422 *
423 * @returns VBox status code.
424 * @param fForced Forced termination. This means to ignore the
425 * init call count and just terminated.
426 */
427#ifdef __cplusplus
428SUPR3DECL(int) SUPTerm(bool fForced = false);
429#else
430SUPR3DECL(int) SUPTerm(int fForced);
431#endif
432
433/**
434 * Sets the ring-0 VM handle for use with fast IOCtls.
435 *
436 * @returns VBox status code.
437 * @param pVMR0 The ring-0 VM handle.
438 * NIL_RTR0PTR can be used to unset the handle when the
439 * VM is about to be destroyed.
440 */
441SUPR3DECL(int) SUPSetVMForFastIOCtl(PVMR0 pVMR0);
442
443/**
444 * Calls the HC R0 VMM entry point.
445 * See VMMR0Entry() for more details.
446 *
447 * @returns error code specific to uFunction.
448 * @param pVMR0 Pointer to the Ring-0 (Host Context) mapping of the VM structure.
449 * @param idCpu The virtual CPU ID.
450 * @param uOperation Operation to execute.
451 * @param pvArg Argument.
452 */
453SUPR3DECL(int) SUPCallVMMR0(PVMR0 pVMR0, VMCPUID idCpu, unsigned uOperation, void *pvArg);
454
455/**
456 * Variant of SUPCallVMMR0, except that this takes the fast ioclt path
457 * regardsless of compile-time defaults.
458 *
459 * @returns VBox status code.
460 * @param pVMR0 The ring-0 VM handle.
461 * @param uOperation The operation; only the SUP_VMMR0_DO_* ones are valid.
462 * @param idCpu The virtual CPU ID.
463 */
464SUPR3DECL(int) SUPCallVMMR0Fast(PVMR0 pVMR0, unsigned uOperation, VMCPUID idCpu);
465
466/**
467 * Calls the HC R0 VMM entry point, in a safer but slower manner than SUPCallVMMR0.
468 * When entering using this call the R0 components can call into the host kernel
469 * (i.e. use the SUPR0 and RT APIs).
470 *
471 * See VMMR0Entry() for more details.
472 *
473 * @returns error code specific to uFunction.
474 * @param pVMR0 Pointer to the Ring-0 (Host Context) mapping of the VM structure.
475 * @param idCpu The virtual CPU ID.
476 * @param uOperation Operation to execute.
477 * @param u64Arg Constant argument.
478 * @param pReqHdr Pointer to a request header. Optional.
479 * This will be copied in and out of kernel space. There currently is a size
480 * limit on this, just below 4KB.
481 */
482SUPR3DECL(int) SUPCallVMMR0Ex(PVMR0 pVMR0, VMCPUID idCpu, unsigned uOperation, uint64_t u64Arg, PSUPVMMR0REQHDR pReqHdr);
483
484/**
485 * Calls a ring-0 service.
486 *
487 * The operation and the request packet is specific to the service.
488 *
489 * @returns error code specific to uFunction.
490 * @param pszService The service name.
491 * @param cchService The length of the service name.
492 * @param uReq The request number.
493 * @param u64Arg Constant argument.
494 * @param pReqHdr Pointer to a request header. Optional.
495 * This will be copied in and out of kernel space. There currently is a size
496 * limit on this, just below 4KB.
497 */
498SUPR3DECL(int) SUPR3CallR0Service(const char *pszService, size_t cchService, uint32_t uOperation, uint64_t u64Arg, PSUPR0SERVICEREQHDR pReqHdr);
499
500/** Which logger. */
501typedef enum SUPLOGGER
502{
503 SUPLOGGER_DEBUG = 1,
504 SUPLOGGER_RELEASE
505} SUPLOGGER;
506
507/**
508 * Changes the settings of the specified ring-0 logger.
509 *
510 * @returns VBox status code.
511 * @param enmWhich Which logger.
512 * @param pszFlags The flags settings.
513 * @param pszGroups The groups settings.
514 * @param pszDest The destionation specificier.
515 */
516SUPR3DECL(int) SUPR3LoggerSettings(SUPLOGGER enmWhich, const char *pszFlags, const char *pszGroups, const char *pszDest);
517
518/**
519 * Creates a ring-0 logger instance.
520 *
521 * @returns VBox status code.
522 * @param enmWhich Which logger to create.
523 * @param pszFlags The flags settings.
524 * @param pszGroups The groups settings.
525 * @param pszDest The destionation specificier.
526 */
527SUPR3DECL(int) SUPR3LoggerCreate(SUPLOGGER enmWhich, const char *pszFlags, const char *pszGroups, const char *pszDest);
528
529/**
530 * Destroys a ring-0 logger instance.
531 *
532 * @returns VBox status code.
533 * @param enmWhich Which logger.
534 */
535SUPR3DECL(int) SUPR3LoggerDestroy(SUPLOGGER enmWhich);
536
537/**
538 * Queries the paging mode of the host OS.
539 *
540 * @returns The paging mode.
541 */
542SUPR3DECL(SUPPAGINGMODE) SUPGetPagingMode(void);
543
544/**
545 * Allocate zero-filled pages.
546 *
547 * Use this to allocate a number of pages rather than using RTMem*() and mess with
548 * alignment. The returned address is of course page aligned. Call SUPPageFree()
549 * to free the pages once done with them.
550 *
551 * @returns VBox status.
552 * @param cPages Number of pages to allocate.
553 * @param ppvPages Where to store the base pointer to the allocated pages.
554 */
555SUPR3DECL(int) SUPPageAlloc(size_t cPages, void **ppvPages);
556
557/**
558 * Frees pages allocated with SUPPageAlloc().
559 *
560 * @returns VBox status.
561 * @param pvPages Pointer returned by SUPPageAlloc().
562 * @param cPages Number of pages that was allocated.
563 */
564SUPR3DECL(int) SUPPageFree(void *pvPages, size_t cPages);
565
566/**
567 * Locks down the physical memory backing a virtual memory
568 * range in the current process.
569 *
570 * @returns VBox status code.
571 * @param pvStart Start of virtual memory range.
572 * Must be page aligned.
573 * @param cPages Number of pages.
574 * @param paPages Where to store the physical page addresses returned.
575 * On entry this will point to an array of with cbMemory >> PAGE_SHIFT entries.
576 */
577SUPR3DECL(int) SUPPageLock(void *pvStart, size_t cPages, PSUPPAGE paPages);
578
579/**
580 * Releases locked down pages.
581 *
582 * @returns VBox status code.
583 * @param pvStart Start of virtual memory range previously locked
584 * down by SUPPageLock().
585 */
586SUPR3DECL(int) SUPPageUnlock(void *pvStart);
587
588/**
589 * Allocate non-zeroed, locked, pages with user and, optionally, kernel
590 * mappings.
591 *
592 * Use SUPR3PageFreeEx() to free memory allocated with this function.
593 *
594 * This SUPR3PageAllocEx and SUPR3PageFreeEx replaces SUPPageAllocLocked,
595 * SUPPageAllocLockedEx, SUPPageFreeLocked, SUPPageAlloc, SUPPageLock,
596 * SUPPageUnlock and SUPPageFree.
597 *
598 * @returns VBox status code.
599 * @param cPages The number of pages to allocate.
600 * @param fFlags Flags, reserved. Must be zero.
601 * @param ppvPages Where to store the address of the user mapping.
602 * @param pR0Ptr Where to store the address of the kernel mapping.
603 * NULL if no kernel mapping is desired.
604 * @param paPages Where to store the physical addresses of each page.
605 * Optional.
606 */
607SUPR3DECL(int) SUPR3PageAllocEx(size_t cPages, uint32_t fFlags, void **ppvPages, PRTR0PTR pR0Ptr, PSUPPAGE paPages);
608
609/**
610 * Maps a portion of a ring-3 only allocation into kernel space.
611 *
612 * @return VBox status code.
613 *
614 * @param pvR3 The address SUPR3PageAllocEx return.
615 * @param off Offset to start mapping at. Must be page aligned.
616 * @param cb Number of bytes to map. Must be page aligned.
617 * @param fFlags Flags, must be zero.
618 * @param pR0Ptr Where to store the address on success.
619 *
620 */
621SUPR3DECL(int) SUPR3PageMapKernel(void *pvR3, uint32_t off, uint32_t cb, uint32_t fFlags, PRTR0PTR pR0Ptr);
622
623/**
624 * Free pages allocated by SUPR3PageAllocEx.
625 *
626 * @returns VBox status code.
627 * @param pvPages The address of the user mapping.
628 * @param cPages The number of pages.
629 */
630SUPR3DECL(int) SUPR3PageFreeEx(void *pvPages, size_t cPages);
631
632/**
633 * Allocate non-zeroed locked pages.
634 *
635 * Use this to allocate a number of pages rather than using RTMem*() and mess with
636 * alignment. The returned address is of course page aligned. Call SUPPageFreeLocked()
637 * to free the pages once done with them.
638 *
639 * @returns VBox status code.
640 * @param cPages Number of pages to allocate.
641 * @param ppvPages Where to store the base pointer to the allocated pages.
642 * @param paPages Where to store the physical page addresses returned.
643 * On entry this will point to an array of with cbMemory >> PAGE_SHIFT entries.
644 * NULL is allowed.
645 */
646SUPR3DECL(int) SUPPageAllocLockedEx(size_t cPages, void **ppvPages, PSUPPAGE paPages);
647
648/**
649 * Frees locked pages allocated with SUPPageAllocLocked().
650 *
651 * @returns VBox status.
652 * @param pvPages Pointer returned by SUPPageAlloc().
653 * @param cPages Number of pages that was allocated.
654 */
655SUPR3DECL(int) SUPPageFreeLocked(void *pvPages, size_t cPages);
656
657/**
658 * Allocated memory with page aligned memory with a contiguous and locked physical
659 * memory backing below 4GB.
660 *
661 * @returns Pointer to the allocated memory (virtual address).
662 * *pHCPhys is set to the physical address of the memory.
663 * The returned memory must be freed using SUPContFree().
664 * @returns NULL on failure.
665 * @param cPages Number of pages to allocate.
666 * @param pHCPhys Where to store the physical address of the memory block.
667 */
668SUPR3DECL(void *) SUPContAlloc(size_t cPages, PRTHCPHYS pHCPhys);
669
670/**
671 * Allocated memory with page aligned memory with a contiguous and locked physical
672 * memory backing below 4GB.
673 *
674 * @returns Pointer to the allocated memory (virtual address).
675 * *pHCPhys is set to the physical address of the memory.
676 * If ppvR0 isn't NULL, *ppvR0 is set to the ring-0 mapping.
677 * The returned memory must be freed using SUPContFree().
678 * @returns NULL on failure.
679 * @param cPages Number of pages to allocate.
680 * @param pR0Ptr Where to store the ring-0 mapping of the allocation. (optional)
681 * @param pHCPhys Where to store the physical address of the memory block.
682 *
683 * @remark This 2nd version of this API exists because we're not able to map the
684 * ring-3 mapping executable on WIN64. This is a serious problem in regard to
685 * the world switchers.
686 */
687SUPR3DECL(void *) SUPContAlloc2(size_t cPages, PRTR0PTR pR0Ptr, PRTHCPHYS pHCPhys);
688
689/**
690 * Frees memory allocated with SUPContAlloc().
691 *
692 * @returns VBox status code.
693 * @param pv Pointer to the memory block which should be freed.
694 * @param cPages Number of pages to be freed.
695 */
696SUPR3DECL(int) SUPContFree(void *pv, size_t cPages);
697
698/**
699 * Allocated non contiguous physical memory below 4GB.
700 *
701 * The memory isn't zeroed.
702 *
703 * @returns VBox status code.
704 * @returns NULL on failure.
705 * @param cPages Number of pages to allocate.
706 * @param ppvPages Where to store the pointer to the allocated memory.
707 * The pointer stored here on success must be passed to SUPLowFree when
708 * the memory should be released.
709 * @param ppvPagesR0 Where to store the ring-0 pointer to the allocated memory. optional.
710 * @param paPages Where to store the physical addresses of the individual pages.
711 */
712SUPR3DECL(int) SUPLowAlloc(size_t cPages, void **ppvPages, PRTR0PTR ppvPagesR0, PSUPPAGE paPages);
713
714/**
715 * Frees memory allocated with SUPLowAlloc().
716 *
717 * @returns VBox status code.
718 * @param pv Pointer to the memory block which should be freed.
719 * @param cPages Number of pages that was allocated.
720 */
721SUPR3DECL(int) SUPLowFree(void *pv, size_t cPages);
722
723/**
724 * Load a module into R0 HC.
725 *
726 * This will verify the file integrity in a similar manner as
727 * SUPR3HardenedVerifyFile before loading it.
728 *
729 * @returns VBox status code.
730 * @param pszFilename The path to the image file.
731 * @param pszModule The module name. Max 32 bytes.
732 * @param ppvImageBase Where to store the image address.
733 */
734SUPR3DECL(int) SUPLoadModule(const char *pszFilename, const char *pszModule, void **ppvImageBase);
735
736/**
737 * Load a module into R0 HC.
738 *
739 * This will verify the file integrity in a similar manner as
740 * SUPR3HardenedVerifyFile before loading it.
741 *
742 * @returns VBox status code.
743 * @param pszFilename The path to the image file.
744 * @param pszModule The module name. Max 32 bytes.
745 * @param pszSrvReqHandler The name of the service request handler entry
746 * point. See FNSUPR0SERVICEREQHANDLER.
747 * @param ppvImageBase Where to store the image address.
748 */
749SUPR3DECL(int) SUPR3LoadServiceModule(const char *pszFilename, const char *pszModule,
750 const char *pszSrvReqHandler, void **ppvImageBase);
751
752/**
753 * Frees a R0 HC module.
754 *
755 * @returns VBox status code.
756 * @param pszModule The module to free.
757 * @remark This will not actually 'free' the module, there are of course usage counting.
758 */
759SUPR3DECL(int) SUPFreeModule(void *pvImageBase);
760
761/**
762 * Get the address of a symbol in a ring-0 module.
763 *
764 * @returns VBox status code.
765 * @param pszModule The module name.
766 * @param pszSymbol Symbol name. If it's value is less than 64k it's treated like a
767 * ordinal value rather than a string pointer.
768 * @param ppvValue Where to store the symbol value.
769 */
770SUPR3DECL(int) SUPGetSymbolR0(void *pvImageBase, const char *pszSymbol, void **ppvValue);
771
772/**
773 * Load R0 HC VMM code.
774 *
775 * @returns VBox status code.
776 * @deprecated Use SUPLoadModule(pszFilename, "VMMR0.r0", &pvImageBase)
777 */
778SUPR3DECL(int) SUPLoadVMM(const char *pszFilename);
779
780/**
781 * Unloads R0 HC VMM code.
782 *
783 * @returns VBox status code.
784 * @deprecated Use SUPFreeModule().
785 */
786SUPR3DECL(int) SUPUnloadVMM(void);
787
788/**
789 * Get the physical address of the GIP.
790 *
791 * @returns VBox status code.
792 * @param pHCPhys Where to store the physical address of the GIP.
793 */
794SUPR3DECL(int) SUPGipGetPhys(PRTHCPHYS pHCPhys);
795
796/**
797 * Verifies the integrity of a file, and optionally opens it.
798 *
799 * The integrity check is for whether the file is suitable for loading into
800 * the hypervisor or VM process. The integrity check may include verifying
801 * the authenticode/elfsign/whatever signature of the file, which can take
802 * a little while.
803 *
804 * @returns VBox status code. On failure it will have printed a LogRel message.
805 *
806 * @param pszFilename The file.
807 * @param pszWhat For the LogRel on failure.
808 * @param phFile Where to store the handle to the opened file. This is optional, pass NULL
809 * if the file should not be opened.
810 */
811SUPR3DECL(int) SUPR3HardenedVerifyFile(const char *pszFilename, const char *pszWhat, PRTFILE phFile);
812
813/**
814 * Same as RTLdrLoad() but will verify the files it loads (hardened builds).
815 *
816 * Will add dll suffix if missing and try load the file.
817 *
818 * @returns iprt status code.
819 * @param pszFilename Image filename. This must have a path.
820 * @param phLdrMod Where to store the handle to the loaded module.
821 */
822SUPR3DECL(int) SUPR3HardenedLdrLoad(const char *pszFilename, PRTLDRMOD phLdrMod);
823
824/**
825 * Same as RTLdrLoadAppPriv() but it will verify the files it loads (hardened
826 * builds).
827 *
828 * Will add dll suffix to the file if missing, then look for it in the
829 * architecture dependent application directory.
830 *
831 * @returns iprt status code.
832 * @param pszFilename Image filename.
833 * @param phLdrMod Where to store the handle to the loaded module.
834 */
835SUPR3DECL(int) SUPR3HardenedLdrLoadAppPriv(const char *pszFilename, PRTLDRMOD phLdrMod);
836
837/** @} */
838#endif /* IN_RING3 */
839
840
841#ifdef IN_RING0
842/** @defgroup grp_sup_r0 SUP Host Context Ring 0 API
843 * @ingroup grp_sup
844 * @{
845 */
846
847/**
848 * Security objectype.
849 */
850typedef enum SUPDRVOBJTYPE
851{
852 /** The usual invalid object. */
853 SUPDRVOBJTYPE_INVALID = 0,
854 /** A Virtual Machine instance. */
855 SUPDRVOBJTYPE_VM,
856 /** Internal network. */
857 SUPDRVOBJTYPE_INTERNAL_NETWORK,
858 /** Internal network interface. */
859 SUPDRVOBJTYPE_INTERNAL_NETWORK_INTERFACE,
860 /** The first invalid object type in this end. */
861 SUPDRVOBJTYPE_END,
862 /** The usual 32-bit type size hack. */
863 SUPDRVOBJTYPE_32_BIT_HACK = 0x7ffffff
864} SUPDRVOBJTYPE;
865
866/**
867 * Object destructor callback.
868 * This is called for reference counted objectes when the count reaches 0.
869 *
870 * @param pvObj The object pointer.
871 * @param pvUser1 The first user argument.
872 * @param pvUser2 The second user argument.
873 */
874typedef DECLCALLBACK(void) FNSUPDRVDESTRUCTOR(void *pvObj, void *pvUser1, void *pvUser2);
875/** Pointer to a FNSUPDRVDESTRUCTOR(). */
876typedef FNSUPDRVDESTRUCTOR *PFNSUPDRVDESTRUCTOR;
877
878SUPR0DECL(void *) SUPR0ObjRegister(PSUPDRVSESSION pSession, SUPDRVOBJTYPE enmType, PFNSUPDRVDESTRUCTOR pfnDestructor, void *pvUser1, void *pvUser2);
879SUPR0DECL(int) SUPR0ObjAddRef(void *pvObj, PSUPDRVSESSION pSession);
880SUPR0DECL(int) SUPR0ObjAddRefEx(void *pvObj, PSUPDRVSESSION pSession, bool fNoBlocking);
881SUPR0DECL(int) SUPR0ObjRelease(void *pvObj, PSUPDRVSESSION pSession);
882SUPR0DECL(int) SUPR0ObjVerifyAccess(void *pvObj, PSUPDRVSESSION pSession, const char *pszObjName);
883
884SUPR0DECL(int) SUPR0LockMem(PSUPDRVSESSION pSession, RTR3PTR pvR3, uint32_t cPages, PRTHCPHYS paPages);
885SUPR0DECL(int) SUPR0UnlockMem(PSUPDRVSESSION pSession, RTR3PTR pvR3);
886SUPR0DECL(int) SUPR0ContAlloc(PSUPDRVSESSION pSession, uint32_t cPages, PRTR0PTR ppvR0, PRTR3PTR ppvR3, PRTHCPHYS pHCPhys);
887SUPR0DECL(int) SUPR0ContFree(PSUPDRVSESSION pSession, RTHCUINTPTR uPtr);
888SUPR0DECL(int) SUPR0LowAlloc(PSUPDRVSESSION pSession, uint32_t cPages, PRTR0PTR ppvR0, PRTR3PTR ppvR3, PRTHCPHYS paPages);
889SUPR0DECL(int) SUPR0LowFree(PSUPDRVSESSION pSession, RTHCUINTPTR uPtr);
890SUPR0DECL(int) SUPR0MemAlloc(PSUPDRVSESSION pSession, uint32_t cb, PRTR0PTR ppvR0, PRTR3PTR ppvR3);
891SUPR0DECL(int) SUPR0MemGetPhys(PSUPDRVSESSION pSession, RTHCUINTPTR uPtr, PSUPPAGE paPages);
892SUPR0DECL(int) SUPR0MemFree(PSUPDRVSESSION pSession, RTHCUINTPTR uPtr);
893SUPR0DECL(int) SUPR0PageAlloc(PSUPDRVSESSION pSession, uint32_t cPages, PRTR3PTR ppvR3, PRTHCPHYS paPages);
894SUPR0DECL(int) SUPR0PageAllocEx(PSUPDRVSESSION pSession, uint32_t cPages, uint32_t fFlags, PRTR3PTR ppvR3, PRTR0PTR ppvR0, PRTHCPHYS paPages);
895SUPR0DECL(int) SUPR0PageMapKernel(PSUPDRVSESSION pSession, RTR3PTR pvR3, uint32_t offSub, uint32_t cbSub, uint32_t fFlags, PRTR0PTR ppvR0);
896SUPR0DECL(int) SUPR0PageFree(PSUPDRVSESSION pSession, RTR3PTR pvR3);
897SUPR0DECL(int) SUPR0GipMap(PSUPDRVSESSION pSession, PRTR3PTR ppGipR3, PRTHCPHYS pHCPhysGip);
898SUPR0DECL(int) SUPR0GipUnmap(PSUPDRVSESSION pSession);
899SUPR0DECL(int) SUPR0Printf(const char *pszFormat, ...);
900SUPR0DECL(SUPPAGINGMODE) SUPR0GetPagingMode(void);
901SUPR0DECL(int) SUPR0EnableVTx(bool fEnable);
902
903/** @name Absolute symbols
904 * Take the address of these, don't try call them.
905 * @{ */
906SUPR0DECL(void) SUPR0AbsIs64bit(void);
907SUPR0DECL(void) SUPR0Abs64bitKernelCS(void);
908SUPR0DECL(void) SUPR0Abs64bitKernelSS(void);
909SUPR0DECL(void) SUPR0Abs64bitKernelDS(void);
910SUPR0DECL(void) SUPR0AbsKernelCS(void);
911SUPR0DECL(void) SUPR0AbsKernelSS(void);
912SUPR0DECL(void) SUPR0AbsKernelDS(void);
913SUPR0DECL(void) SUPR0AbsKernelES(void);
914SUPR0DECL(void) SUPR0AbsKernelFS(void);
915SUPR0DECL(void) SUPR0AbsKernelGS(void);
916/** @} */
917
918/**
919 * Support driver component factory.
920 *
921 * Component factories are registered by drivers that provides services
922 * such as the host network interface filtering and access to the host
923 * TCP/IP stack.
924 *
925 * @remark Module dependencies and making sure that a component doesn't
926 * get unloaded while in use, is the sole responsibility of the
927 * driver/kext/whatever implementing the component.
928 */
929typedef struct SUPDRVFACTORY
930{
931 /** The (unique) name of the component factory. */
932 char szName[56];
933 /**
934 * Queries a factory interface.
935 *
936 * The factory interface is specific to each component and will be be
937 * found in the header(s) for the component alongside its UUID.
938 *
939 * @returns Pointer to the factory interfaces on success, NULL on failure.
940 *
941 * @param pSupDrvFactory Pointer to this structure.
942 * @param pSession The SUPDRV session making the query.
943 * @param pszInterfaceUuid The UUID of the factory interface.
944 */
945 DECLR0CALLBACKMEMBER(void *, pfnQueryFactoryInterface,(struct SUPDRVFACTORY const *pSupDrvFactory, PSUPDRVSESSION pSession, const char *pszInterfaceUuid));
946} SUPDRVFACTORY;
947/** Pointer to a support driver factory. */
948typedef SUPDRVFACTORY *PSUPDRVFACTORY;
949/** Pointer to a const support driver factory. */
950typedef SUPDRVFACTORY const *PCSUPDRVFACTORY;
951
952SUPR0DECL(int) SUPR0ComponentRegisterFactory(PSUPDRVSESSION pSession, PCSUPDRVFACTORY pFactory);
953SUPR0DECL(int) SUPR0ComponentDeregisterFactory(PSUPDRVSESSION pSession, PCSUPDRVFACTORY pFactory);
954SUPR0DECL(int) SUPR0ComponentQueryFactory(PSUPDRVSESSION pSession, const char *pszName, const char *pszInterfaceUuid, void **ppvFactoryIf);
955
956
957/**
958 * Service request callback function.
959 *
960 * @returns VBox status code.
961 * @param pSession The caller's session.
962 * @param u64Arg 64-bit integer argument.
963 * @param pReqHdr The request header. Input / Output. Optional.
964 */
965typedef DECLCALLBACK(int) FNSUPR0SERVICEREQHANDLER(PSUPDRVSESSION pSession, uint32_t uOperation,
966 uint64_t u64Arg, PSUPR0SERVICEREQHDR pReqHdr);
967/** Pointer to a FNR0SERVICEREQHANDLER(). */
968typedef R0PTRTYPE(FNSUPR0SERVICEREQHANDLER *) PFNSUPR0SERVICEREQHANDLER;
969
970
971/** @defgroup grp_sup_r0_idc The IDC Interface
972 * @ingroup grp_sup_r0
973 * @{
974 */
975
976/** The current SUPDRV IDC version.
977 * This follows the usual high word / low word rules, i.e. high word is the
978 * major number and it signifies incompatible interface changes. */
979#define SUPDRV_IDC_VERSION UINT32_C(0x00010000)
980
981/**
982 * Inter-Driver Communcation Handle.
983 */
984typedef union SUPDRVIDCHANDLE
985{
986 /** Padding for opaque usage.
987 * Must be greater or equal in size than the private struct. */
988 void *apvPadding[4];
989#ifdef SUPDRVIDCHANDLEPRIVATE_DECLARED
990 /** The private view. */
991 struct SUPDRVIDCHANDLEPRIVATE s;
992#endif
993} SUPDRVIDCHANDLE;
994/** Pointer to a handle. */
995typedef SUPDRVIDCHANDLE *PSUPDRVIDCHANDLE;
996
997SUPR0DECL(int) SUPR0IdcOpen(PSUPDRVIDCHANDLE pHandle, uint32_t uReqVersion, uint32_t uMinVersion,
998 uint32_t *puSessionVersion, uint32_t *puDriverVersion, uint32_t *puDriverRevision);
999SUPR0DECL(int) SUPR0IdcCall(PSUPDRVIDCHANDLE pHandle, uint32_t iReq, void *pvReq, uint32_t cbReq);
1000SUPR0DECL(int) SUPR0IdcClose(PSUPDRVIDCHANDLE pHandle);
1001SUPR0DECL(PSUPDRVSESSION) SUPR0IdcGetSession(PSUPDRVIDCHANDLE pHandle);
1002SUPR0DECL(int) SUPR0IdcComponentRegisterFactory(PSUPDRVIDCHANDLE pHandle, PCSUPDRVFACTORY pFactory);
1003SUPR0DECL(int) SUPR0IdcComponentDeregisterFactory(PSUPDRVIDCHANDLE pHandle, PCSUPDRVFACTORY pFactory);
1004
1005/** @} */
1006
1007/** @} */
1008#endif
1009
1010/** @} */
1011
1012__END_DECLS
1013
1014#endif
1015
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