VirtualBox

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

Last change on this file since 53269 was 53269, checked in by vboxsync, 10 years ago

HostDrivers/Support: Enabled global TSC rate calculation and implemented TSC calibration over a longer interval for invariant hosts.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 75.4 KB
Line 
1/** @file
2 * SUP - Support Library. (HDrv)
3 */
4
5/*
6 * Copyright (C) 2006-2012 Oracle Corporation
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
26#ifndef ___VBox_sup_h
27#define ___VBox_sup_h
28
29#include <VBox/cdefs.h>
30#include <VBox/types.h>
31#include <VBox/err.h>
32#include <iprt/assert.h>
33#include <iprt/stdarg.h>
34#include <iprt/cpuset.h>
35#include <iprt/asm-amd64-x86.h>
36
37RT_C_DECLS_BEGIN
38
39struct VTGOBJHDR;
40struct VTGPROBELOC;
41
42
43/** @defgroup grp_sup The Support Library API
44 * @{
45 */
46
47/**
48 * Physical page descriptor.
49 */
50#pragma pack(4) /* space is more important. */
51typedef struct SUPPAGE
52{
53 /** Physical memory address. */
54 RTHCPHYS Phys;
55 /** Reserved entry for internal use by the caller. */
56 RTHCUINTPTR uReserved;
57} SUPPAGE;
58#pragma pack()
59/** Pointer to a page descriptor. */
60typedef SUPPAGE *PSUPPAGE;
61/** Pointer to a const page descriptor. */
62typedef const SUPPAGE *PCSUPPAGE;
63
64/**
65 * The paging mode.
66 *
67 * @remarks Users are making assumptions about the order here!
68 */
69typedef enum SUPPAGINGMODE
70{
71 /** The usual invalid entry.
72 * This is returned by SUPR3GetPagingMode() */
73 SUPPAGINGMODE_INVALID = 0,
74 /** Normal 32-bit paging, no global pages */
75 SUPPAGINGMODE_32_BIT,
76 /** Normal 32-bit paging with global pages. */
77 SUPPAGINGMODE_32_BIT_GLOBAL,
78 /** PAE mode, no global pages, no NX. */
79 SUPPAGINGMODE_PAE,
80 /** PAE mode with global pages. */
81 SUPPAGINGMODE_PAE_GLOBAL,
82 /** PAE mode with NX, no global pages. */
83 SUPPAGINGMODE_PAE_NX,
84 /** PAE mode with global pages and NX. */
85 SUPPAGINGMODE_PAE_GLOBAL_NX,
86 /** AMD64 mode, no global pages. */
87 SUPPAGINGMODE_AMD64,
88 /** AMD64 mode with global pages, no NX. */
89 SUPPAGINGMODE_AMD64_GLOBAL,
90 /** AMD64 mode with NX, no global pages. */
91 SUPPAGINGMODE_AMD64_NX,
92 /** AMD64 mode with global pages and NX. */
93 SUPPAGINGMODE_AMD64_GLOBAL_NX
94} SUPPAGINGMODE;
95
96
97/** @name Flags returned by SUPR0GetKernelFeatures().
98 * @{
99 */
100/** GDT is read-only. */
101#define SUPKERNELFEATURES_GDT_READ_ONLY RT_BIT(0)
102/** @} */
103
104
105/**
106 * Usermode probe context information.
107 */
108typedef struct SUPDRVTRACERUSRCTX
109{
110 /** The probe ID from the VTG location record. */
111 uint32_t idProbe;
112 /** 32 if X86, 64 if AMD64. */
113 uint8_t cBits;
114 /** Reserved padding. */
115 uint8_t abReserved[3];
116 /** Data which format is dictated by the cBits member. */
117 union
118 {
119 /** X86 context info. */
120 struct
121 {
122 uint32_t uVtgProbeLoc; /**< Location record address. */
123 uint32_t aArgs[20]; /**< Raw arguments. */
124 uint32_t eip;
125 uint32_t eflags;
126 uint32_t eax;
127 uint32_t ecx;
128 uint32_t edx;
129 uint32_t ebx;
130 uint32_t esp;
131 uint32_t ebp;
132 uint32_t esi;
133 uint32_t edi;
134 uint16_t cs;
135 uint16_t ss;
136 uint16_t ds;
137 uint16_t es;
138 uint16_t fs;
139 uint16_t gs;
140 } X86;
141
142 /** AMD64 context info. */
143 struct
144 {
145 uint64_t uVtgProbeLoc; /**< Location record address. */
146 uint64_t aArgs[10]; /**< Raw arguments. */
147 uint64_t rip;
148 uint64_t rflags;
149 uint64_t rax;
150 uint64_t rcx;
151 uint64_t rdx;
152 uint64_t rbx;
153 uint64_t rsp;
154 uint64_t rbp;
155 uint64_t rsi;
156 uint64_t rdi;
157 uint64_t r8;
158 uint64_t r9;
159 uint64_t r10;
160 uint64_t r11;
161 uint64_t r12;
162 uint64_t r13;
163 uint64_t r14;
164 uint64_t r15;
165 } Amd64;
166 } u;
167} SUPDRVTRACERUSRCTX;
168/** Pointer to the usermode probe context information. */
169typedef SUPDRVTRACERUSRCTX *PSUPDRVTRACERUSRCTX;
170/** Pointer to the const usermode probe context information. */
171typedef SUPDRVTRACERUSRCTX const *PCSUPDRVTRACERUSRCTX;
172
173/**
174 * The result of a modification operation (SUPMSRPROBEROP_MODIFY or
175 * SUPMSRPROBEROP_MODIFY_FASTER).
176 */
177typedef struct SUPMSRPROBERMODIFYRESULT
178{
179 /** The MSR value prior to the modifications. Valid if fBeforeGp is false */
180 uint64_t uBefore;
181 /** The value that was written. Valid if fBeforeGp is false */
182 uint64_t uWritten;
183 /** The MSR value after the modifications. Valid if AfterGp is false. */
184 uint64_t uAfter;
185 /** Set if we GPed reading the MSR before the modification. */
186 bool fBeforeGp;
187 /** Set if we GPed while trying to write the modified value.
188 * This is set when fBeforeGp is true. */
189 bool fModifyGp;
190 /** Set if we GPed while trying to read the MSR after the modification.
191 * This is set when fBeforeGp is true. */
192 bool fAfterGp;
193 /** Set if we GPed while trying to restore the MSR after the modification.
194 * This is set when fBeforeGp is true. */
195 bool fRestoreGp;
196 /** Structure size alignment padding. */
197 bool afReserved[4];
198} SUPMSRPROBERMODIFYRESULT, *PSUPMSRPROBERMODIFYRESULT;
199
200
201/**
202 * The CPU state.
203 */
204typedef enum SUPGIPCPUSTATE
205{
206 /** Invalid CPU state / unused CPU entry. */
207 SUPGIPCPUSTATE_INVALID = 0,
208 /** The CPU is not present. */
209 SUPGIPCPUSTATE_ABSENT,
210 /** The CPU is offline. */
211 SUPGIPCPUSTATE_OFFLINE,
212 /** The CPU is online. */
213 SUPGIPCPUSTATE_ONLINE,
214 /** Force 32-bit enum type. */
215 SUPGIPCPUSTATE_32_BIT_HACK = 0x7fffffff
216} SUPGIPCPUSTATE;
217
218/**
219 * Per CPU data.
220 */
221typedef struct SUPGIPCPU
222{
223 /** Update transaction number.
224 * This number is incremented at the start and end of each update. It follows
225 * thusly that odd numbers indicates update in progress, while even numbers
226 * indicate stable data. Use this to make sure that the data items you fetch
227 * are consistent. */
228 volatile uint32_t u32TransactionId;
229 /** The interval in TSC ticks between two NanoTS updates.
230 * This is the average interval over the last 2, 4 or 8 updates + a little slack.
231 * The slack makes the time go a tiny tiny bit slower and extends the interval enough
232 * to avoid ending up with too many 1ns increments. */
233 volatile uint32_t u32UpdateIntervalTSC;
234 /** Current nanosecond timestamp. */
235 volatile uint64_t u64NanoTS;
236 /** The TSC at the time of u64NanoTS. */
237 volatile uint64_t u64TSC;
238 /** Current CPU Frequency. */
239 volatile uint64_t u64CpuHz;
240 /** The TSC delta with reference to the master TSC. */
241 volatile int64_t i64TSCDelta;
242 /** Number of errors during updating.
243 * Typical errors are under/overflows. */
244 volatile uint32_t cErrors;
245 /** Index of the head item in au32TSCHistory. */
246 volatile uint32_t iTSCHistoryHead;
247 /** Array of recent TSC interval deltas.
248 * The most recent item is at index iTSCHistoryHead.
249 * This history is used to calculate u32UpdateIntervalTSC.
250 */
251 volatile uint32_t au32TSCHistory[8];
252 /** The interval between the last two NanoTS updates. (experiment for now) */
253 volatile uint32_t u32PrevUpdateIntervalNS;
254
255 /** Reserved for future per processor data. */
256 volatile uint32_t au32Reserved0[5];
257
258 /** The TSC value read while doing TSC delta measurements across CPUs. */
259 volatile uint64_t u64TSCSample;
260
261 /** Reserved for future per processor data. */
262 volatile uint32_t au32Reserved1[1];
263
264 /** @todo Add topology/NUMA info. */
265 /** The CPU state. */
266 SUPGIPCPUSTATE volatile enmState;
267 /** The host CPU ID of this CPU (the SUPGIPCPU is indexed by APIC ID). */
268 RTCPUID idCpu;
269 /** The CPU set index of this CPU. */
270 int16_t iCpuSet;
271 /** The APIC ID of this CPU. */
272 uint16_t idApic;
273} SUPGIPCPU;
274AssertCompileSize(RTCPUID, 4);
275AssertCompileSize(SUPGIPCPU, 128);
276AssertCompileMemberAlignment(SUPGIPCPU, u64NanoTS, 8);
277AssertCompileMemberAlignment(SUPGIPCPU, u64TSC, 8);
278
279/** Pointer to per cpu data.
280 * @remark there is no const version of this typedef, see g_pSUPGlobalInfoPage for details. */
281typedef SUPGIPCPU *PSUPGIPCPU;
282
283
284
285/**
286 * Global Information Page.
287 *
288 * This page contains useful information and can be mapped into any
289 * process or VM. It can be accessed thru the g_pSUPGlobalInfoPage
290 * pointer when a session is open.
291 */
292typedef struct SUPGLOBALINFOPAGE
293{
294 /** Magic (SUPGLOBALINFOPAGE_MAGIC). */
295 uint32_t u32Magic;
296 /** The GIP version. */
297 uint32_t u32Version;
298
299 /** The GIP update mode, see SUPGIPMODE. */
300 uint32_t u32Mode;
301 /** The number of entries in the CPU table.
302 * (This can work as RTMpGetArraySize().) */
303 uint16_t cCpus;
304 /** The size of the GIP in pages. */
305 uint16_t cPages;
306 /** The update frequency of the of the NanoTS. */
307 volatile uint32_t u32UpdateHz;
308 /** The update interval in nanoseconds. (10^9 / u32UpdateHz) */
309 volatile uint32_t u32UpdateIntervalNS;
310 /** The timestamp of the last time we update the update frequency. */
311 volatile uint64_t u64NanoTSLastUpdateHz;
312 /** The TSC frequency of the system. */
313 uint64_t u64CpuHz;
314 /** The set of online CPUs. */
315 RTCPUSET OnlineCpuSet;
316 /** The set of present CPUs. */
317 RTCPUSET PresentCpuSet;
318 /** The set of possible CPUs. */
319 RTCPUSET PossibleCpuSet;
320 /** The number of CPUs that are online. */
321 volatile uint16_t cOnlineCpus;
322 /** The number of CPUs present in the system. */
323 volatile uint16_t cPresentCpus;
324 /** The highest number of CPUs possible. */
325 uint16_t cPossibleCpus;
326 uint16_t u16Padding0;
327 /** The max CPU ID (RTMpGetMaxCpuId). */
328 RTCPUID idCpuMax;
329
330 /** Padding / reserved space for future data. */
331 uint32_t au32Padding1[27];
332
333 /** Table indexed by the CPU APIC ID to get the CPU table index. */
334 uint16_t aiCpuFromApicId[256];
335 /** CPU set index to CPU table index. */
336 uint16_t aiCpuFromCpuSetIdx[RTCPUSET_MAX_CPUS];
337
338 /** Array of per-cpu data.
339 * This is index by ApicId via the aiCpuFromApicId table.
340 *
341 * The clock and frequency information is updated for all CPUs if u32Mode
342 * is SUPGIPMODE_ASYNC_TSC, otherwise (SUPGIPMODE_SYNC_TSC) only the first
343 * entry is updated. */
344 SUPGIPCPU aCPUs[1];
345} SUPGLOBALINFOPAGE;
346AssertCompileMemberAlignment(SUPGLOBALINFOPAGE, u64NanoTSLastUpdateHz, 8);
347#if defined(RT_ARCH_SPARC) || defined(RT_ARCH_SPARC64)
348AssertCompileMemberAlignment(SUPGLOBALINFOPAGE, aCPUs, 32);
349#else
350AssertCompileMemberAlignment(SUPGLOBALINFOPAGE, aCPUs, 256);
351#endif
352
353/** Pointer to the global info page.
354 * @remark there is no const version of this typedef, see g_pSUPGlobalInfoPage for details. */
355typedef SUPGLOBALINFOPAGE *PSUPGLOBALINFOPAGE;
356
357
358/** The value of the SUPGLOBALINFOPAGE::u32Magic field. (Soryo Fuyumi) */
359#define SUPGLOBALINFOPAGE_MAGIC 0x19590106
360/** The GIP version.
361 * Upper 16 bits is the major version. Major version is only changed with
362 * incompatible changes in the GIP. */
363#define SUPGLOBALINFOPAGE_VERSION 0x00050000
364
365/**
366 * SUPGLOBALINFOPAGE::u32Mode values.
367 */
368typedef enum SUPGIPMODE
369{
370 /** The usual invalid null entry. */
371 SUPGIPMODE_INVALID = 0,
372 /** The TSC of the cores and cpus in the system is in sync. */
373 SUPGIPMODE_SYNC_TSC,
374 /** Each core has it's own TSC. */
375 SUPGIPMODE_ASYNC_TSC,
376 /** The usual 32-bit hack. */
377 SUPGIPMODE_32BIT_HACK = 0x7fffffff
378} SUPGIPMODE;
379
380/** Pointer to the Global Information Page.
381 *
382 * This pointer is valid as long as SUPLib has a open session. Anyone using
383 * the page must treat this pointer as highly volatile and not trust it beyond
384 * one transaction.
385 *
386 * @remark The GIP page is read-only to everyone but the support driver and
387 * is actually mapped read only everywhere but in ring-0. However
388 * it is not marked 'const' as this might confuse compilers into
389 * thinking that values doesn't change even if members are marked
390 * as volatile. Thus, there is no PCSUPGLOBALINFOPAGE type.
391 */
392#if defined(IN_SUP_R0) || defined(IN_SUP_R3) || defined(IN_SUP_RC)
393extern DECLEXPORT(PSUPGLOBALINFOPAGE) g_pSUPGlobalInfoPage;
394
395#elif !defined(IN_RING0) || defined(RT_OS_WINDOWS) || defined(RT_OS_SOLARIS)
396extern DECLIMPORT(PSUPGLOBALINFOPAGE) g_pSUPGlobalInfoPage;
397
398#else /* IN_RING0 && !RT_OS_WINDOWS */
399# if !defined(__GNUC__) || defined(RT_OS_DARWIN) || !defined(RT_ARCH_AMD64)
400# define g_pSUPGlobalInfoPage (&g_SUPGlobalInfoPage)
401# else
402# define g_pSUPGlobalInfoPage (SUPGetGIPHlp())
403/** Workaround for ELF+GCC problem on 64-bit hosts.
404 * (GCC emits a mov with a R_X86_64_32 reloc, we need R_X86_64_64.) */
405DECLINLINE(PSUPGLOBALINFOPAGE) SUPGetGIPHlp(void)
406{
407 PSUPGLOBALINFOPAGE pGIP;
408 __asm__ __volatile__ ("movabs $g_SUPGlobalInfoPage,%0\n\t"
409 : "=a" (pGIP));
410 return pGIP;
411}
412# endif
413/** The GIP.
414 * We save a level of indirection by exporting the GIP instead of a variable
415 * pointing to it. */
416extern DECLIMPORT(SUPGLOBALINFOPAGE) g_SUPGlobalInfoPage;
417#endif
418
419/**
420 * Gets the GIP pointer.
421 *
422 * @returns Pointer to the GIP or NULL.
423 */
424SUPDECL(PSUPGLOBALINFOPAGE) SUPGetGIP(void);
425
426#ifdef ___iprt_asm_amd64_x86_h
427/**
428 * Gets the TSC frequency of the calling CPU.
429 *
430 * @returns TSC frequency, UINT64_MAX on failure.
431 * @param pGip The GIP pointer.
432 */
433DECLINLINE(uint64_t) SUPGetCpuHzFromGIP(PSUPGLOBALINFOPAGE pGip)
434{
435 unsigned iCpu;
436
437 if (RT_UNLIKELY(!pGip || pGip->u32Magic != SUPGLOBALINFOPAGE_MAGIC))
438 return UINT64_MAX;
439
440 if (pGip->u32Mode != SUPGIPMODE_ASYNC_TSC)
441 iCpu = 0;
442 else
443 {
444 iCpu = pGip->aiCpuFromApicId[ASMGetApicId()];
445 if (iCpu >= pGip->cCpus)
446 return UINT64_MAX;
447 }
448
449 return pGip->aCPUs[iCpu].u64CpuHz;
450}
451#endif
452
453/**
454 * Request for generic VMMR0Entry calls.
455 */
456typedef struct SUPVMMR0REQHDR
457{
458 /** The magic. (SUPVMMR0REQHDR_MAGIC) */
459 uint32_t u32Magic;
460 /** The size of the request. */
461 uint32_t cbReq;
462} SUPVMMR0REQHDR;
463/** Pointer to a ring-0 request header. */
464typedef SUPVMMR0REQHDR *PSUPVMMR0REQHDR;
465/** the SUPVMMR0REQHDR::u32Magic value (Ethan Iverson - The Bad Plus). */
466#define SUPVMMR0REQHDR_MAGIC UINT32_C(0x19730211)
467
468
469/** For the fast ioctl path.
470 * @{
471 */
472/** @see VMMR0_DO_RAW_RUN. */
473#define SUP_VMMR0_DO_RAW_RUN 0
474/** @see VMMR0_DO_HM_RUN. */
475#define SUP_VMMR0_DO_HM_RUN 1
476/** @see VMMR0_DO_NOP */
477#define SUP_VMMR0_DO_NOP 2
478/** @} */
479
480/** SUPR3QueryVTCaps capability flags
481 * @{
482 */
483#define SUPVTCAPS_AMD_V RT_BIT(0)
484#define SUPVTCAPS_VT_X RT_BIT(1)
485#define SUPVTCAPS_NESTED_PAGING RT_BIT(2)
486/** @} */
487
488/**
489 * Request for generic FNSUPR0SERVICEREQHANDLER calls.
490 */
491typedef struct SUPR0SERVICEREQHDR
492{
493 /** The magic. (SUPR0SERVICEREQHDR_MAGIC) */
494 uint32_t u32Magic;
495 /** The size of the request. */
496 uint32_t cbReq;
497} SUPR0SERVICEREQHDR;
498/** Pointer to a ring-0 service request header. */
499typedef SUPR0SERVICEREQHDR *PSUPR0SERVICEREQHDR;
500/** the SUPVMMR0REQHDR::u32Magic value (Esbjoern Svensson - E.S.P.). */
501#define SUPR0SERVICEREQHDR_MAGIC UINT32_C(0x19640416)
502
503
504/** Event semaphore handle. Ring-0 / ring-3. */
505typedef R0PTRTYPE(struct SUPSEMEVENTHANDLE *) SUPSEMEVENT;
506/** Pointer to an event semaphore handle. */
507typedef SUPSEMEVENT *PSUPSEMEVENT;
508/** Nil event semaphore handle. */
509#define NIL_SUPSEMEVENT ((SUPSEMEVENT)0)
510
511/**
512 * Creates a single release event semaphore.
513 *
514 * @returns VBox status code.
515 * @param pSession The session handle of the caller.
516 * @param phEvent Where to return the handle to the event semaphore.
517 */
518SUPDECL(int) SUPSemEventCreate(PSUPDRVSESSION pSession, PSUPSEMEVENT phEvent);
519
520/**
521 * Closes a single release event semaphore handle.
522 *
523 * @returns VBox status code.
524 * @retval VINF_OBJECT_DESTROYED if the semaphore was destroyed.
525 * @retval VINF_SUCCESS if the handle was successfully closed but the semaphore
526 * object remained alive because of other references.
527 *
528 * @param pSession The session handle of the caller.
529 * @param hEvent The handle. Nil is quietly ignored.
530 */
531SUPDECL(int) SUPSemEventClose(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent);
532
533/**
534 * Signals a single release event semaphore.
535 *
536 * @returns VBox status code.
537 * @param pSession The session handle of the caller.
538 * @param hEvent The semaphore handle.
539 */
540SUPDECL(int) SUPSemEventSignal(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent);
541
542#ifdef IN_RING0
543/**
544 * Waits on a single release event semaphore, not interruptible.
545 *
546 * @returns VBox status code.
547 * @param pSession The session handle of the caller.
548 * @param hEvent The semaphore handle.
549 * @param cMillies The number of milliseconds to wait.
550 * @remarks Not available in ring-3.
551 */
552SUPDECL(int) SUPSemEventWait(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent, uint32_t cMillies);
553#endif
554
555/**
556 * Waits on a single release event semaphore, interruptible.
557 *
558 * @returns VBox status code.
559 * @param pSession The session handle of the caller.
560 * @param hEvent The semaphore handle.
561 * @param cMillies The number of milliseconds to wait.
562 */
563SUPDECL(int) SUPSemEventWaitNoResume(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent, uint32_t cMillies);
564
565/**
566 * Waits on a single release event semaphore, interruptible.
567 *
568 * @returns VBox status code.
569 * @param pSession The session handle of the caller.
570 * @param hEvent The semaphore handle.
571 * @param uNsTimeout The deadline given on the RTTimeNanoTS() clock.
572 */
573SUPDECL(int) SUPSemEventWaitNsAbsIntr(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent, uint64_t uNsTimeout);
574
575/**
576 * Waits on a single release event semaphore, interruptible.
577 *
578 * @returns VBox status code.
579 * @param pSession The session handle of the caller.
580 * @param hEvent The semaphore handle.
581 * @param cNsTimeout The number of nanoseconds to wait.
582 */
583SUPDECL(int) SUPSemEventWaitNsRelIntr(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent, uint64_t cNsTimeout);
584
585/**
586 * Gets the best timeout resolution that SUPSemEventWaitNsAbsIntr and
587 * SUPSemEventWaitNsAbsIntr can do.
588 *
589 * @returns The resolution in nanoseconds.
590 * @param pSession The session handle of the caller.
591 */
592SUPDECL(uint32_t) SUPSemEventGetResolution(PSUPDRVSESSION pSession);
593
594
595/** Multiple release event semaphore handle. Ring-0 / ring-3. */
596typedef R0PTRTYPE(struct SUPSEMEVENTMULTIHANDLE *) SUPSEMEVENTMULTI;
597/** Pointer to an multiple release event semaphore handle. */
598typedef SUPSEMEVENTMULTI *PSUPSEMEVENTMULTI;
599/** Nil multiple release event semaphore handle. */
600#define NIL_SUPSEMEVENTMULTI ((SUPSEMEVENTMULTI)0)
601
602/**
603 * Creates a multiple release event semaphore.
604 *
605 * @returns VBox status code.
606 * @param pSession The session handle of the caller.
607 * @param phEventMulti Where to return the handle to the event semaphore.
608 */
609SUPDECL(int) SUPSemEventMultiCreate(PSUPDRVSESSION pSession, PSUPSEMEVENTMULTI phEventMulti);
610
611/**
612 * Closes a multiple release event semaphore handle.
613 *
614 * @returns VBox status code.
615 * @retval VINF_OBJECT_DESTROYED if the semaphore was destroyed.
616 * @retval VINF_SUCCESS if the handle was successfully closed but the semaphore
617 * object remained alive because of other references.
618 *
619 * @param pSession The session handle of the caller.
620 * @param hEventMulti The handle. Nil is quietly ignored.
621 */
622SUPDECL(int) SUPSemEventMultiClose(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti);
623
624/**
625 * Signals a multiple release event semaphore.
626 *
627 * @returns VBox status code.
628 * @param pSession The session handle of the caller.
629 * @param hEventMulti The semaphore handle.
630 */
631SUPDECL(int) SUPSemEventMultiSignal(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti);
632
633/**
634 * Resets a multiple release event semaphore.
635 *
636 * @returns VBox status code.
637 * @param pSession The session handle of the caller.
638 * @param hEventMulti The semaphore handle.
639 */
640SUPDECL(int) SUPSemEventMultiReset(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti);
641
642#ifdef IN_RING0
643/**
644 * Waits on a multiple release event semaphore, not interruptible.
645 *
646 * @returns VBox status code.
647 * @param pSession The session handle of the caller.
648 * @param hEventMulti The semaphore handle.
649 * @param cMillies The number of milliseconds to wait.
650 * @remarks Not available in ring-3.
651 */
652SUPDECL(int) SUPSemEventMultiWait(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti, uint32_t cMillies);
653#endif
654
655/**
656 * Waits on a multiple release event semaphore, interruptible.
657 *
658 * @returns VBox status code.
659 * @param pSession The session handle of the caller.
660 * @param hEventMulti The semaphore handle.
661 * @param cMillies The number of milliseconds to wait.
662 */
663SUPDECL(int) SUPSemEventMultiWaitNoResume(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti, uint32_t cMillies);
664
665/**
666 * Waits on a multiple release event semaphore, interruptible.
667 *
668 * @returns VBox status code.
669 * @param pSession The session handle of the caller.
670 * @param hEventMulti The semaphore handle.
671 * @param uNsTimeout The deadline given on the RTTimeNanoTS() clock.
672 */
673SUPDECL(int) SUPSemEventMultiWaitNsAbsIntr(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti, uint64_t uNsTimeout);
674
675/**
676 * Waits on a multiple release event semaphore, interruptible.
677 *
678 * @returns VBox status code.
679 * @param pSession The session handle of the caller.
680 * @param hEventMulti The semaphore handle.
681 * @param cNsTimeout The number of nanoseconds to wait.
682 */
683SUPDECL(int) SUPSemEventMultiWaitNsRelIntr(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti, uint64_t cNsTimeout);
684
685/**
686 * Gets the best timeout resolution that SUPSemEventMultiWaitNsAbsIntr and
687 * SUPSemEventMultiWaitNsRelIntr can do.
688 *
689 * @returns The resolution in nanoseconds.
690 * @param pSession The session handle of the caller.
691 */
692SUPDECL(uint32_t) SUPSemEventMultiGetResolution(PSUPDRVSESSION pSession);
693
694
695#ifdef IN_RING3
696
697/** @defgroup grp_sup_r3 SUP Host Context Ring-3 API
698 * @ingroup grp_sup
699 * @{
700 */
701
702/**
703 * Installs the support library.
704 *
705 * @returns VBox status code.
706 */
707SUPR3DECL(int) SUPR3Install(void);
708
709/**
710 * Uninstalls the support library.
711 *
712 * @returns VBox status code.
713 */
714SUPR3DECL(int) SUPR3Uninstall(void);
715
716/**
717 * Trusted main entry point.
718 *
719 * This is exported as "TrustedMain" by the dynamic libraries which contains the
720 * "real" application binary for which the hardened stub is built. The entry
721 * point is invoked upon successful initialization of the support library and
722 * runtime.
723 *
724 * @returns main kind of exit code.
725 * @param argc The argument count.
726 * @param argv The argument vector.
727 * @param envp The environment vector.
728 */
729typedef DECLCALLBACK(int) FNSUPTRUSTEDMAIN(int argc, char **argv, char **envp);
730/** Pointer to FNSUPTRUSTEDMAIN(). */
731typedef FNSUPTRUSTEDMAIN *PFNSUPTRUSTEDMAIN;
732
733/** Which operation failed. */
734typedef enum SUPINITOP
735{
736 /** Invalid. */
737 kSupInitOp_Invalid = 0,
738 /** Installation integrity error. */
739 kSupInitOp_Integrity,
740 /** Setuid related. */
741 kSupInitOp_RootCheck,
742 /** Driver related. */
743 kSupInitOp_Driver,
744 /** IPRT init related. */
745 kSupInitOp_IPRT,
746 /** Miscellaneous. */
747 kSupInitOp_Misc,
748 /** Place holder. */
749 kSupInitOp_End
750} SUPINITOP;
751
752/**
753 * Trusted error entry point, optional.
754 *
755 * This is exported as "TrustedError" by the dynamic libraries which contains
756 * the "real" application binary for which the hardened stub is built. The
757 * hardened main() must specify SUPSECMAIN_FLAGS_TRUSTED_ERROR when calling
758 * SUPR3HardenedMain.
759 *
760 * @param pszWhere Where the error occurred (function name).
761 * @param enmWhat Which operation went wrong.
762 * @param rc The status code.
763 * @param pszMsgFmt Error message format string.
764 * @param va The message format arguments.
765 */
766typedef DECLCALLBACK(void) FNSUPTRUSTEDERROR(const char *pszWhere, SUPINITOP enmWhat, int rc, const char *pszMsgFmt, va_list va);
767/** Pointer to FNSUPTRUSTEDERROR. */
768typedef FNSUPTRUSTEDERROR *PFNSUPTRUSTEDERROR;
769
770/**
771 * Secure main.
772 *
773 * This is used for the set-user-ID-on-execute binaries on unixy systems
774 * and when using the open-vboxdrv-via-root-service setup on Windows.
775 *
776 * This function will perform the integrity checks of the VirtualBox
777 * installation, open the support driver, open the root service (later),
778 * and load the DLL corresponding to \a pszProgName and execute its main
779 * function.
780 *
781 * @returns Return code appropriate for main().
782 *
783 * @param pszProgName The program name. This will be used to figure out which
784 * DLL/SO/DYLIB to load and execute.
785 * @param fFlags Flags.
786 * @param argc The argument count.
787 * @param argv The argument vector.
788 * @param envp The environment vector.
789 */
790DECLHIDDEN(int) SUPR3HardenedMain(const char *pszProgName, uint32_t fFlags, int argc, char **argv, char **envp);
791
792/** @name SUPR3HardenedMain flags.
793 * @{ */
794/** Don't open the device. (Intended for VirtualBox without -startvm.) */
795#define SUPSECMAIN_FLAGS_DONT_OPEN_DEV RT_BIT_32(0)
796/** The hardened DLL has a "TrustedError" function (see FNSUPTRUSTEDERROR). */
797#define SUPSECMAIN_FLAGS_TRUSTED_ERROR RT_BIT_32(1)
798/** @} */
799
800/**
801 * Initializes the support library.
802 *
803 * Each successful call to SUPR3Init() or SUPR3InitEx must be countered by a
804 * call to SUPR3Term(false).
805 *
806 * @returns VBox status code.
807 * @param ppSession Where to store the session handle. Defaults to NULL.
808 */
809SUPR3DECL(int) SUPR3Init(PSUPDRVSESSION *ppSession);
810
811
812/**
813 * Initializes the support library, extended version.
814 *
815 * Each successful call to SUPR3Init() or SUPR3InitEx must be countered by a
816 * call to SUPR3Term(false).
817 *
818 * @returns VBox status code.
819 * @param fUnrestricted The desired access.
820 * @param ppSession Where to store the session handle. Defaults to NULL.
821 */
822SUPR3DECL(int) SUPR3InitEx(bool fUnrestricted, PSUPDRVSESSION *ppSession);
823
824/**
825 * Terminates the support library.
826 *
827 * @returns VBox status code.
828 * @param fForced Forced termination. This means to ignore the
829 * init call count and just terminated.
830 */
831#ifdef __cplusplus
832SUPR3DECL(int) SUPR3Term(bool fForced = false);
833#else
834SUPR3DECL(int) SUPR3Term(int fForced);
835#endif
836
837/**
838 * Sets the ring-0 VM handle for use with fast IOCtls.
839 *
840 * @returns VBox status code.
841 * @param pVMR0 The ring-0 VM handle.
842 * NIL_RTR0PTR can be used to unset the handle when the
843 * VM is about to be destroyed.
844 */
845SUPR3DECL(int) SUPR3SetVMForFastIOCtl(PVMR0 pVMR0);
846
847/**
848 * Calls the HC R0 VMM entry point.
849 * See VMMR0Entry() for more details.
850 *
851 * @returns error code specific to uFunction.
852 * @param pVMR0 Pointer to the Ring-0 (Host Context) mapping of the VM structure.
853 * @param idCpu The virtual CPU ID.
854 * @param uOperation Operation to execute.
855 * @param pvArg Argument.
856 */
857SUPR3DECL(int) SUPR3CallVMMR0(PVMR0 pVMR0, VMCPUID idCpu, unsigned uOperation, void *pvArg);
858
859/**
860 * Variant of SUPR3CallVMMR0, except that this takes the fast ioclt path
861 * regardsless of compile-time defaults.
862 *
863 * @returns VBox status code.
864 * @param pVMR0 The ring-0 VM handle.
865 * @param uOperation The operation; only the SUP_VMMR0_DO_* ones are valid.
866 * @param idCpu The virtual CPU ID.
867 */
868SUPR3DECL(int) SUPR3CallVMMR0Fast(PVMR0 pVMR0, unsigned uOperation, VMCPUID idCpu);
869
870/**
871 * Calls the HC R0 VMM entry point, in a safer but slower manner than
872 * SUPR3CallVMMR0. When entering using this call the R0 components can call
873 * into the host kernel (i.e. use the SUPR0 and RT APIs).
874 *
875 * See VMMR0Entry() for more details.
876 *
877 * @returns error code specific to uFunction.
878 * @param pVMR0 Pointer to the Ring-0 (Host Context) mapping of the VM structure.
879 * @param idCpu The virtual CPU ID.
880 * @param uOperation Operation to execute.
881 * @param u64Arg Constant argument.
882 * @param pReqHdr Pointer to a request header. Optional.
883 * This will be copied in and out of kernel space. There currently is a size
884 * limit on this, just below 4KB.
885 */
886SUPR3DECL(int) SUPR3CallVMMR0Ex(PVMR0 pVMR0, VMCPUID idCpu, unsigned uOperation, uint64_t u64Arg, PSUPVMMR0REQHDR pReqHdr);
887
888/**
889 * Calls a ring-0 service.
890 *
891 * The operation and the request packet is specific to the service.
892 *
893 * @returns error code specific to uFunction.
894 * @param pszService The service name.
895 * @param cchService The length of the service name.
896 * @param uReq The request number.
897 * @param u64Arg Constant argument.
898 * @param pReqHdr Pointer to a request header. Optional.
899 * This will be copied in and out of kernel space. There currently is a size
900 * limit on this, just below 4KB.
901 */
902SUPR3DECL(int) SUPR3CallR0Service(const char *pszService, size_t cchService, uint32_t uOperation, uint64_t u64Arg, PSUPR0SERVICEREQHDR pReqHdr);
903
904/** Which logger. */
905typedef enum SUPLOGGER
906{
907 SUPLOGGER_DEBUG = 1,
908 SUPLOGGER_RELEASE
909} SUPLOGGER;
910
911/**
912 * Changes the settings of the specified ring-0 logger.
913 *
914 * @returns VBox status code.
915 * @param enmWhich Which logger.
916 * @param pszFlags The flags settings.
917 * @param pszGroups The groups settings.
918 * @param pszDest The destination specificier.
919 */
920SUPR3DECL(int) SUPR3LoggerSettings(SUPLOGGER enmWhich, const char *pszFlags, const char *pszGroups, const char *pszDest);
921
922/**
923 * Creates a ring-0 logger instance.
924 *
925 * @returns VBox status code.
926 * @param enmWhich Which logger to create.
927 * @param pszFlags The flags settings.
928 * @param pszGroups The groups settings.
929 * @param pszDest The destination specificier.
930 */
931SUPR3DECL(int) SUPR3LoggerCreate(SUPLOGGER enmWhich, const char *pszFlags, const char *pszGroups, const char *pszDest);
932
933/**
934 * Destroys a ring-0 logger instance.
935 *
936 * @returns VBox status code.
937 * @param enmWhich Which logger.
938 */
939SUPR3DECL(int) SUPR3LoggerDestroy(SUPLOGGER enmWhich);
940
941/**
942 * Queries the paging mode of the host OS.
943 *
944 * @returns The paging mode.
945 */
946SUPR3DECL(SUPPAGINGMODE) SUPR3GetPagingMode(void);
947
948/**
949 * Allocate zero-filled pages.
950 *
951 * Use this to allocate a number of pages suitable for seeding / locking.
952 * Call SUPR3PageFree() to free the pages once done with them.
953 *
954 * @returns VBox status.
955 * @param cPages Number of pages to allocate.
956 * @param ppvPages Where to store the base pointer to the allocated pages.
957 */
958SUPR3DECL(int) SUPR3PageAlloc(size_t cPages, void **ppvPages);
959
960/**
961 * Frees pages allocated with SUPR3PageAlloc().
962 *
963 * @returns VBox status.
964 * @param pvPages Pointer returned by SUPR3PageAlloc().
965 * @param cPages Number of pages that was allocated.
966 */
967SUPR3DECL(int) SUPR3PageFree(void *pvPages, size_t cPages);
968
969/**
970 * Allocate non-zeroed, locked, pages with user and, optionally, kernel
971 * mappings.
972 *
973 * Use SUPR3PageFreeEx() to free memory allocated with this function.
974 *
975 * @returns VBox status code.
976 * @param cPages The number of pages to allocate.
977 * @param fFlags Flags, reserved. Must be zero.
978 * @param ppvPages Where to store the address of the user mapping.
979 * @param pR0Ptr Where to store the address of the kernel mapping.
980 * NULL if no kernel mapping is desired.
981 * @param paPages Where to store the physical addresses of each page.
982 * Optional.
983 */
984SUPR3DECL(int) SUPR3PageAllocEx(size_t cPages, uint32_t fFlags, void **ppvPages, PRTR0PTR pR0Ptr, PSUPPAGE paPages);
985
986/**
987 * Maps a portion of a ring-3 only allocation into kernel space.
988 *
989 * @returns VBox status code.
990 *
991 * @param pvR3 The address SUPR3PageAllocEx return.
992 * @param off Offset to start mapping at. Must be page aligned.
993 * @param cb Number of bytes to map. Must be page aligned.
994 * @param fFlags Flags, must be zero.
995 * @param pR0Ptr Where to store the address on success.
996 *
997 */
998SUPR3DECL(int) SUPR3PageMapKernel(void *pvR3, uint32_t off, uint32_t cb, uint32_t fFlags, PRTR0PTR pR0Ptr);
999
1000/**
1001 * Changes the protection of
1002 *
1003 * @returns VBox status code.
1004 * @retval VERR_NOT_SUPPORTED if the OS doesn't allow us to change page level
1005 * protection. See also RTR0MemObjProtect.
1006 *
1007 * @param pvR3 The ring-3 address SUPR3PageAllocEx returned.
1008 * @param R0Ptr The ring-0 address SUPR3PageAllocEx returned if it
1009 * is desired that the corresponding ring-0 page
1010 * mappings should change protection as well. Pass
1011 * NIL_RTR0PTR if the ring-0 pages should remain
1012 * unaffected.
1013 * @param off Offset to start at which to start chagning the page
1014 * level protection. Must be page aligned.
1015 * @param cb Number of bytes to change. Must be page aligned.
1016 * @param fProt The new page level protection, either a combination
1017 * of RTMEM_PROT_READ, RTMEM_PROT_WRITE and
1018 * RTMEM_PROT_EXEC, or just RTMEM_PROT_NONE.
1019 */
1020SUPR3DECL(int) SUPR3PageProtect(void *pvR3, RTR0PTR R0Ptr, uint32_t off, uint32_t cb, uint32_t fProt);
1021
1022/**
1023 * Free pages allocated by SUPR3PageAllocEx.
1024 *
1025 * @returns VBox status code.
1026 * @param pvPages The address of the user mapping.
1027 * @param cPages The number of pages.
1028 */
1029SUPR3DECL(int) SUPR3PageFreeEx(void *pvPages, size_t cPages);
1030
1031/**
1032 * Allocated memory with page aligned memory with a contiguous and locked physical
1033 * memory backing below 4GB.
1034 *
1035 * @returns Pointer to the allocated memory (virtual address).
1036 * *pHCPhys is set to the physical address of the memory.
1037 * If ppvR0 isn't NULL, *ppvR0 is set to the ring-0 mapping.
1038 * The returned memory must be freed using SUPR3ContFree().
1039 * @returns NULL on failure.
1040 * @param cPages Number of pages to allocate.
1041 * @param pR0Ptr Where to store the ring-0 mapping of the allocation. (optional)
1042 * @param pHCPhys Where to store the physical address of the memory block.
1043 *
1044 * @remark This 2nd version of this API exists because we're not able to map the
1045 * ring-3 mapping executable on WIN64. This is a serious problem in regard to
1046 * the world switchers.
1047 */
1048SUPR3DECL(void *) SUPR3ContAlloc(size_t cPages, PRTR0PTR pR0Ptr, PRTHCPHYS pHCPhys);
1049
1050/**
1051 * Frees memory allocated with SUPR3ContAlloc().
1052 *
1053 * @returns VBox status code.
1054 * @param pv Pointer to the memory block which should be freed.
1055 * @param cPages Number of pages to be freed.
1056 */
1057SUPR3DECL(int) SUPR3ContFree(void *pv, size_t cPages);
1058
1059/**
1060 * Allocated non contiguous physical memory below 4GB.
1061 *
1062 * The memory isn't zeroed.
1063 *
1064 * @returns VBox status code.
1065 * @returns NULL on failure.
1066 * @param cPages Number of pages to allocate.
1067 * @param ppvPages Where to store the pointer to the allocated memory.
1068 * The pointer stored here on success must be passed to
1069 * SUPR3LowFree when the memory should be released.
1070 * @param ppvPagesR0 Where to store the ring-0 pointer to the allocated memory. optional.
1071 * @param paPages Where to store the physical addresses of the individual pages.
1072 */
1073SUPR3DECL(int) SUPR3LowAlloc(size_t cPages, void **ppvPages, PRTR0PTR ppvPagesR0, PSUPPAGE paPages);
1074
1075/**
1076 * Frees memory allocated with SUPR3LowAlloc().
1077 *
1078 * @returns VBox status code.
1079 * @param pv Pointer to the memory block which should be freed.
1080 * @param cPages Number of pages that was allocated.
1081 */
1082SUPR3DECL(int) SUPR3LowFree(void *pv, size_t cPages);
1083
1084/**
1085 * Load a module into R0 HC.
1086 *
1087 * This will verify the file integrity in a similar manner as
1088 * SUPR3HardenedVerifyFile before loading it.
1089 *
1090 * @returns VBox status code.
1091 * @param pszFilename The path to the image file.
1092 * @param pszModule The module name. Max 32 bytes.
1093 * @param ppvImageBase Where to store the image address.
1094 * @param pErrInfo Where to return extended error information.
1095 * Optional.
1096 */
1097SUPR3DECL(int) SUPR3LoadModule(const char *pszFilename, const char *pszModule, void **ppvImageBase, PRTERRINFO pErrInfo);
1098
1099/**
1100 * Load a module into R0 HC.
1101 *
1102 * This will verify the file integrity in a similar manner as
1103 * SUPR3HardenedVerifyFile before loading it.
1104 *
1105 * @returns VBox status code.
1106 * @param pszFilename The path to the image file.
1107 * @param pszModule The module name. Max 32 bytes.
1108 * @param pszSrvReqHandler The name of the service request handler entry
1109 * point. See FNSUPR0SERVICEREQHANDLER.
1110 * @param ppvImageBase Where to store the image address.
1111 */
1112SUPR3DECL(int) SUPR3LoadServiceModule(const char *pszFilename, const char *pszModule,
1113 const char *pszSrvReqHandler, void **ppvImageBase);
1114
1115/**
1116 * Frees a R0 HC module.
1117 *
1118 * @returns VBox status code.
1119 * @param pszModule The module to free.
1120 * @remark This will not actually 'free' the module, there are of course usage counting.
1121 */
1122SUPR3DECL(int) SUPR3FreeModule(void *pvImageBase);
1123
1124/**
1125 * Get the address of a symbol in a ring-0 module.
1126 *
1127 * @returns VBox status code.
1128 * @param pszModule The module name.
1129 * @param pszSymbol Symbol name. If it's value is less than 64k it's treated like a
1130 * ordinal value rather than a string pointer.
1131 * @param ppvValue Where to store the symbol value.
1132 */
1133SUPR3DECL(int) SUPR3GetSymbolR0(void *pvImageBase, const char *pszSymbol, void **ppvValue);
1134
1135/**
1136 * Load R0 HC VMM code.
1137 *
1138 * @returns VBox status code.
1139 * @deprecated Use SUPR3LoadModule(pszFilename, "VMMR0.r0", &pvImageBase)
1140 */
1141SUPR3DECL(int) SUPR3LoadVMM(const char *pszFilename);
1142
1143/**
1144 * Unloads R0 HC VMM code.
1145 *
1146 * @returns VBox status code.
1147 * @deprecated Use SUPR3FreeModule().
1148 */
1149SUPR3DECL(int) SUPR3UnloadVMM(void);
1150
1151/**
1152 * Get the physical address of the GIP.
1153 *
1154 * @returns VBox status code.
1155 * @param pHCPhys Where to store the physical address of the GIP.
1156 */
1157SUPR3DECL(int) SUPR3GipGetPhys(PRTHCPHYS pHCPhys);
1158
1159/**
1160 * Initializes only the bits relevant for the SUPR3HardenedVerify* APIs.
1161 *
1162 * This is for users that don't necessarily need to initialize the whole of
1163 * SUPLib. There is no harm in calling this one more time.
1164 *
1165 * @returns VBox status code.
1166 * @remarks Currently not counted, so only call once.
1167 */
1168SUPR3DECL(int) SUPR3HardenedVerifyInit(void);
1169
1170/**
1171 * Reverses the effect of SUPR3HardenedVerifyInit if SUPR3InitEx hasn't been
1172 * called.
1173 *
1174 * Ignored if the support library was initialized using SUPR3Init or
1175 * SUPR3InitEx.
1176 *
1177 * @returns VBox status code.
1178 */
1179SUPR3DECL(int) SUPR3HardenedVerifyTerm(void);
1180
1181/**
1182 * Verifies the integrity of a file, and optionally opens it.
1183 *
1184 * The integrity check is for whether the file is suitable for loading into
1185 * the hypervisor or VM process. The integrity check may include verifying
1186 * the authenticode/elfsign/whatever signature of the file, which can take
1187 * a little while.
1188 *
1189 * @returns VBox status code. On failure it will have printed a LogRel message.
1190 *
1191 * @param pszFilename The file.
1192 * @param pszWhat For the LogRel on failure.
1193 * @param phFile Where to store the handle to the opened file. This is optional, pass NULL
1194 * if the file should not be opened.
1195 * @deprecated Write a new one.
1196 */
1197SUPR3DECL(int) SUPR3HardenedVerifyFile(const char *pszFilename, const char *pszWhat, PRTFILE phFile);
1198
1199/**
1200 * Verifies the integrity of a the current process, including the image
1201 * location and that the invocation was absolute.
1202 *
1203 * This must currently be called after initializing the runtime. The intended
1204 * audience is set-uid-to-root applications, root services and similar.
1205 *
1206 * @returns VBox status code. On failure
1207 * message.
1208 * @param pszArgv0 The first argument to main().
1209 * @param fInternal Set this to @c true if this is an internal
1210 * VirtualBox application. Otherwise pass @c false.
1211 * @param pErrInfo Where to return extended error information.
1212 */
1213SUPR3DECL(int) SUPR3HardenedVerifySelf(const char *pszArgv0, bool fInternal, PRTERRINFO pErrInfo);
1214
1215/**
1216 * Verifies the integrity of an installation directory.
1217 *
1218 * The integrity check verifies that the directory cannot be tampered with by
1219 * normal users on the system. On Unix this translates to root ownership and
1220 * no symbolic linking.
1221 *
1222 * @returns VBox status code. On failure a message will be stored in @a pszErr.
1223 *
1224 * @param pszDirPath The directory path.
1225 * @param fRecursive Whether the check should be recursive or
1226 * not. When set, all sub-directores will be checked,
1227 * including files (@a fCheckFiles is ignored).
1228 * @param fCheckFiles Whether to apply the same basic integrity check to
1229 * the files in the directory as the directory itself.
1230 * @param pErrInfo Where to return extended error information.
1231 * Optional.
1232 */
1233SUPR3DECL(int) SUPR3HardenedVerifyDir(const char *pszDirPath, bool fRecursive, bool fCheckFiles, PRTERRINFO pErrInfo);
1234
1235/**
1236 * Verifies the integrity of a plug-in module.
1237 *
1238 * This is similar to SUPR3HardenedLdrLoad, except it does not load the module
1239 * and that the module does not have to be shipped with VirtualBox.
1240 *
1241 * @returns VBox status code. On failure a message will be stored in @a pszErr.
1242 *
1243 * @param pszFilename The filename of the plug-in module (nothing can be
1244 * omitted here).
1245 * @param pErrInfo Where to return extended error information.
1246 * Optional.
1247 */
1248SUPR3DECL(int) SUPR3HardenedVerifyPlugIn(const char *pszFilename, PRTERRINFO pErrInfo);
1249
1250/**
1251 * Same as RTLdrLoad() but will verify the files it loads (hardened builds).
1252 *
1253 * Will add dll suffix if missing and try load the file.
1254 *
1255 * @returns iprt status code.
1256 * @param pszFilename Image filename. This must have a path.
1257 * @param phLdrMod Where to store the handle to the loaded module.
1258 * @param fFlags See RTLDRLOAD_FLAGS_XXX.
1259 * @param pErrInfo Where to return extended error information.
1260 * Optional.
1261 */
1262SUPR3DECL(int) SUPR3HardenedLdrLoad(const char *pszFilename, PRTLDRMOD phLdrMod, uint32_t fFlags, PRTERRINFO pErrInfo);
1263
1264/**
1265 * Same as RTLdrLoadAppPriv() but it will verify the files it loads (hardened
1266 * builds).
1267 *
1268 * Will add dll suffix to the file if missing, then look for it in the
1269 * architecture dependent application directory.
1270 *
1271 * @returns iprt status code.
1272 * @param pszFilename Image filename.
1273 * @param phLdrMod Where to store the handle to the loaded module.
1274 * @param fFlags See RTLDRLOAD_FLAGS_XXX.
1275 * @param pErrInfo Where to return extended error information.
1276 * Optional.
1277 */
1278SUPR3DECL(int) SUPR3HardenedLdrLoadAppPriv(const char *pszFilename, PRTLDRMOD phLdrMod, uint32_t fFlags, PRTERRINFO pErrInfo);
1279
1280/**
1281 * Same as RTLdrLoad() but will verify the files it loads (hardened builds).
1282 *
1283 * This differs from SUPR3HardenedLdrLoad() in that it can load modules from
1284 * extension packs and anything else safely installed on the system, provided
1285 * they pass the hardening tests.
1286 *
1287 * @returns iprt status code.
1288 * @param pszFilename The full path to the module, with extension.
1289 * @param phLdrMod Where to store the handle to the loaded module.
1290 * @param pErrInfo Where to return extended error information.
1291 * Optional.
1292 */
1293SUPR3DECL(int) SUPR3HardenedLdrLoadPlugIn(const char *pszFilename, PRTLDRMOD phLdrMod, PRTERRINFO pErrInfo);
1294
1295/**
1296 * Check if the host kernel can run in VMX root mode.
1297 *
1298 * @returns VINF_SUCCESS if supported, error code indicating why if not.
1299 */
1300SUPR3DECL(int) SUPR3QueryVTxSupported(void);
1301
1302/**
1303 * Return VT-x/AMD-V capabilities.
1304 *
1305 * @returns VINF_SUCCESS if supported, error code indicating why if not.
1306 * @param pfCaps Pointer to capability dword (out).
1307 * @todo Intended for main, which means we need to relax the privilege requires
1308 * when accessing certain vboxdrv functions.
1309 */
1310SUPR3DECL(int) SUPR3QueryVTCaps(uint32_t *pfCaps);
1311
1312/**
1313 * Open the tracer.
1314 *
1315 * @returns VBox status code.
1316 * @param uCookie Cookie identifying the tracer we expect to talk to.
1317 * @param uArg Tracer specific open argument.
1318 */
1319SUPR3DECL(int) SUPR3TracerOpen(uint32_t uCookie, uintptr_t uArg);
1320
1321/**
1322 * Closes the tracer.
1323 *
1324 * @returns VBox status code.
1325 */
1326SUPR3DECL(int) SUPR3TracerClose(void);
1327
1328/**
1329 * Perform an I/O request on the tracer.
1330 *
1331 * @returns VBox status.
1332 * @param uCmd The tracer command.
1333 * @param uArg The argument.
1334 * @param piRetVal Where to store the tracer return value.
1335 */
1336SUPR3DECL(int) SUPR3TracerIoCtl(uintptr_t uCmd, uintptr_t uArg, int32_t *piRetVal);
1337
1338/**
1339 * Registers the user module with the tracer.
1340 *
1341 * @returns VBox status code.
1342 * @param hModNative Native module handle. Pass ~(uintptr_t)0 if not
1343 * at hand.
1344 * @param pszModule The module name.
1345 * @param pVtgHdr The VTG header.
1346 * @param uVtgHdrAddr The address to which the VTG header is loaded
1347 * in the relevant execution context.
1348 * @param fFlags See SUP_TRACER_UMOD_FLAGS_XXX
1349 */
1350SUPR3DECL(int) SUPR3TracerRegisterModule(uintptr_t hModNative, const char *pszModule, struct VTGOBJHDR *pVtgHdr,
1351 RTUINTPTR uVtgHdrAddr, uint32_t fFlags);
1352
1353/**
1354 * Deregisters the user module.
1355 *
1356 * @returns VBox status code.
1357 * @param pVtgHdr The VTG header.
1358 */
1359SUPR3DECL(int) SUPR3TracerDeregisterModule(struct VTGOBJHDR *pVtgHdr);
1360
1361/**
1362 * Fire the probe.
1363 *
1364 * @param pVtgProbeLoc The probe location record.
1365 * @param uArg0 Raw probe argument 0.
1366 * @param uArg1 Raw probe argument 1.
1367 * @param uArg2 Raw probe argument 2.
1368 * @param uArg3 Raw probe argument 3.
1369 * @param uArg4 Raw probe argument 4.
1370 */
1371SUPDECL(void) SUPTracerFireProbe(struct VTGPROBELOC *pVtgProbeLoc, uintptr_t uArg0, uintptr_t uArg1, uintptr_t uArg2,
1372 uintptr_t uArg3, uintptr_t uArg4);
1373
1374
1375/**
1376 * Attempts to read the value of an MSR.
1377 *
1378 * @returns VBox status code.
1379 * @param uMsr The MSR to read.
1380 * @param idCpu The CPU to read it on, NIL_RTCPUID if it doesn't
1381 * matter which CPU.
1382 * @param puValue Where to return the value.
1383 * @param pfGp Where to store the \#GP indicator for the read
1384 * operation.
1385 */
1386SUPR3DECL(int) SUPR3MsrProberRead(uint32_t uMsr, RTCPUID idCpu, uint64_t *puValue, bool *pfGp);
1387
1388/**
1389 * Attempts to write to an MSR.
1390 *
1391 * @returns VBox status code.
1392 * @param uMsr The MSR to write to.
1393 * @param idCpu The CPU to wrtie it on, NIL_RTCPUID if it
1394 * doesn't matter which CPU.
1395 * @param uValue The value to write.
1396 * @param pfGp Where to store the \#GP indicator for the write
1397 * operation.
1398 */
1399SUPR3DECL(int) SUPR3MsrProberWrite(uint32_t uMsr, RTCPUID idCpu, uint64_t uValue, bool *pfGp);
1400
1401/**
1402 * Attempts to modify the value of an MSR.
1403 *
1404 * @returns VBox status code.
1405 * @param uMsr The MSR to modify.
1406 * @param idCpu The CPU to modify it on, NIL_RTCPUID if it
1407 * doesn't matter which CPU.
1408 * @param fAndMask The bits to keep in the current MSR value.
1409 * @param fOrMask The bits to set before writing.
1410 * @param pResult The result buffer.
1411 */
1412SUPR3DECL(int) SUPR3MsrProberModify(uint32_t uMsr, RTCPUID idCpu, uint64_t fAndMask, uint64_t fOrMask,
1413 PSUPMSRPROBERMODIFYRESULT pResult);
1414
1415/**
1416 * Attempts to modify the value of an MSR, extended version.
1417 *
1418 * @returns VBox status code.
1419 * @param uMsr The MSR to modify.
1420 * @param idCpu The CPU to modify it on, NIL_RTCPUID if it
1421 * doesn't matter which CPU.
1422 * @param fAndMask The bits to keep in the current MSR value.
1423 * @param fOrMask The bits to set before writing.
1424 * @param fFaster If set to @c true some cache/tlb invalidation is
1425 * skipped, otherwise behave like
1426 * SUPR3MsrProberModify.
1427 * @param pResult The result buffer.
1428 */
1429SUPR3DECL(int) SUPR3MsrProberModifyEx(uint32_t uMsr, RTCPUID idCpu, uint64_t fAndMask, uint64_t fOrMask, bool fFaster,
1430 PSUPMSRPROBERMODIFYRESULT pResult);
1431
1432/**
1433 * Resume built-in keyboard on MacBook Air and Pro hosts.
1434 *
1435 * @returns VBox status code.
1436 */
1437SUPR3DECL(int) SUPR3ResumeSuspendedKeyboards(void);
1438
1439
1440/**
1441 * Measure the TSC-delta for the specified CPU.
1442 *
1443 * @returns VBox status code.
1444 * @param idCpu The CPU to measure the TSC-delta for.
1445 * @param fAsync Whether the measurement is asynchronous, returns
1446 * immediately after signalling a measurement
1447 * request.
1448 * @param fForce Whether to perform a measurement even if the
1449 * specified CPU has a (possibly) valid TSC delta.
1450 * @param cRetries Number of times to retry failed delta
1451 * measurements.
1452 */
1453SUPR3DECL(int) SUPR3TscDeltaMeasure(RTCPUID idCpu, bool fAsync, bool fForce, uint8_t cRetries);
1454
1455/**
1456 * Reads the delta-adjust TSC value.
1457 *
1458 * @returns VBox status code.
1459 * @param puTsc Where to store the read TSC value.
1460 * @param pidApic Where to store the APIC ID of the CPU where the TSC
1461 * was read (optional, can be NULL).
1462 */
1463SUPR3DECL(int) SUPR3ReadTsc(uint64_t *puTsc, uint16_t *pidApic);
1464
1465/** @} */
1466#endif /* IN_RING3 */
1467
1468
1469/**
1470 * Gets the GIP mode name given the GIP mode.
1471 *
1472 * @returns The name
1473 * @param enmGipMode The GIP mode.
1474 */
1475DECLINLINE(const char *) SUPGetGIPModeName(PSUPGLOBALINFOPAGE pGip)
1476{
1477 Assert(pGip);
1478 switch (pGip->u32Mode)
1479 {
1480 /* case SUPGIPMODE_INVARIANT_TSC: return "Invariant"; */
1481 case SUPGIPMODE_SYNC_TSC: return "Synchronous";
1482 case SUPGIPMODE_ASYNC_TSC: return "Asynchronous";
1483 case SUPGIPMODE_INVALID: return "Invalid";
1484 default: return "???";
1485 }
1486}
1487
1488
1489/**
1490 * Checks if the provided TSC frequency is close enough to the computed TSC
1491 * frequency of the host.
1492 *
1493 * @returns true if it's compatible, false otherwise.
1494 */
1495DECLINLINE(bool) SUPIsTscFreqCompatible(uint64_t u64CpuHz)
1496{
1497 PSUPGLOBALINFOPAGE pGip = g_pSUPGlobalInfoPage;
1498 if ( pGip
1499 && pGip->u32Mode == SUPGIPMODE_SYNC_TSC) /** @todo use INVARIANT_TSC */
1500 {
1501 uint64_t uLo;
1502 uint64_t uHi;
1503
1504 if (pGip->u64CpuHz == u64CpuHz)
1505 return true;
1506
1507 /* Arbitrary tolerance threshold, tweak later if required, perhaps
1508 more tolerance on higher frequencies and less tolerance on lower. */
1509 uLo = (pGip->u64CpuHz << 10) / 1025;
1510 uHi = pGip->u64CpuHz + (pGip->u64CpuHz - uLo);
1511 if ( u64CpuHz < uLo
1512 || u64CpuHz > uHi)
1513 {
1514 return false;
1515 }
1516 return true;
1517 }
1518 return false;
1519}
1520
1521
1522
1523/**
1524 * Applies the TSC delta to the supplied raw TSC value.
1525 *
1526 * @returns VBox status code.
1527 * @param pGip Pointer to the GIP.
1528 * @param puTsc Pointer to a valid TSC value before the TSC delta has been applied.
1529 * @param idApic The APIC ID of the CPU @c uTsc corresponds to.
1530 * @param fDeltaApplied Where to store whether the TSC delta was succesfully
1531 * applied or not (optional, can be NULL).
1532 *
1533 * @remarks Maybe called with interrupts disabled!
1534 */
1535DECLINLINE(int) SUPTscDeltaApply(PSUPGLOBALINFOPAGE pGip, uint64_t *puTsc, uint16_t idApic, bool *pfDeltaApplied)
1536{
1537 PSUPGIPCPU pGipCpu;
1538 uint16_t iCpu;
1539
1540 /* Validate. */
1541 Assert(puTsc);
1542 Assert(pGip);
1543
1544 AssertMsgReturn(idApic < RT_ELEMENTS(pGip->aiCpuFromApicId), ("idApic=%u\n", idApic), VERR_INVALID_CPU_ID);
1545 iCpu = pGip->aiCpuFromApicId[idApic];
1546 AssertMsgReturn(iCpu < pGip->cCpus, ("iCpu=%u cCpus=%u\n", iCpu, pGip->cCpus), VERR_INVALID_CPU_INDEX);
1547 pGipCpu = &pGip->aCPUs[iCpu];
1548 Assert(pGipCpu);
1549
1550 if (RT_LIKELY(pGipCpu->i64TSCDelta != INT64_MAX))
1551 {
1552 *puTsc -= pGipCpu->i64TSCDelta;
1553 if (pfDeltaApplied)
1554 *pfDeltaApplied = true;
1555 }
1556 else if (pfDeltaApplied)
1557 *pfDeltaApplied = false;
1558
1559 return VINF_SUCCESS;
1560}
1561
1562
1563/**
1564 * Reads the delta-adjusted TSC.
1565 *
1566 * @returns VBox status code.
1567 * @param puTsc Where to store the normalized TSC value.
1568 * @param pidApic Where to store the APIC ID of the CPU where the TSC
1569 * was read (optional, can be NULL). This is updated
1570 * even if the function fails with
1571 * VERR_SUPDRV_TSC_READ_FAILED. Not guaranteed to be
1572 * updated for other failures.
1573 *
1574 * @remarks May be called with interrupts disabled!
1575 */
1576DECLINLINE(int) SUPReadTsc(uint64_t *puTsc, uint16_t *pidApic)
1577{
1578#ifdef IN_RING3
1579 return SUPR3ReadTsc(puTsc, pidApic);
1580#else
1581 RTCCUINTREG uFlags;
1582 uint16_t idApic;
1583 bool fDeltaApplied;
1584 int rc;
1585
1586 /* Validate. */
1587 Assert(puTsc);
1588
1589 uFlags = ASMIntDisableFlags();
1590 idApic = ASMGetApicId(); /* Doubles as serialization. */
1591 *puTsc = ASMReadTSC();
1592 ASMSetFlags(uFlags);
1593
1594 if (pidApic)
1595 *pidApic = idApic;
1596
1597 rc = SUPTscDeltaApply(g_pSUPGlobalInfoPage, puTsc, idApic, &fDeltaApplied);
1598 AssertRCReturn(rc, rc);
1599 return fDeltaApplied ? VINF_SUCCESS : VERR_SUPDRV_TSC_READ_FAILED;
1600#endif
1601}
1602
1603
1604/** @name User mode module flags (SUPR3TracerRegisterModule & SUP_IOCTL_TRACER_UMOD_REG).
1605 * @{ */
1606/** Executable image. */
1607#define SUP_TRACER_UMOD_FLAGS_EXE UINT32_C(1)
1608/** Shared library (DLL, DYLIB, SO, etc). */
1609#define SUP_TRACER_UMOD_FLAGS_SHARED UINT32_C(2)
1610/** Image type mask. */
1611#define SUP_TRACER_UMOD_FLAGS_TYPE_MASK UINT32_C(3)
1612/** @} */
1613
1614
1615#ifdef IN_RING0
1616/** @defgroup grp_sup_r0 SUP Host Context Ring-0 API
1617 * @ingroup grp_sup
1618 * @{
1619 */
1620
1621/**
1622 * Security objectype.
1623 */
1624typedef enum SUPDRVOBJTYPE
1625{
1626 /** The usual invalid object. */
1627 SUPDRVOBJTYPE_INVALID = 0,
1628 /** A Virtual Machine instance. */
1629 SUPDRVOBJTYPE_VM,
1630 /** Internal network. */
1631 SUPDRVOBJTYPE_INTERNAL_NETWORK,
1632 /** Internal network interface. */
1633 SUPDRVOBJTYPE_INTERNAL_NETWORK_INTERFACE,
1634 /** Single release event semaphore. */
1635 SUPDRVOBJTYPE_SEM_EVENT,
1636 /** Multiple release event semaphore. */
1637 SUPDRVOBJTYPE_SEM_EVENT_MULTI,
1638 /** Raw PCI device. */
1639 SUPDRVOBJTYPE_RAW_PCI_DEVICE,
1640 /** The first invalid object type in this end. */
1641 SUPDRVOBJTYPE_END,
1642 /** The usual 32-bit type size hack. */
1643 SUPDRVOBJTYPE_32_BIT_HACK = 0x7ffffff
1644} SUPDRVOBJTYPE;
1645
1646/**
1647 * Object destructor callback.
1648 * This is called for reference counted objectes when the count reaches 0.
1649 *
1650 * @param pvObj The object pointer.
1651 * @param pvUser1 The first user argument.
1652 * @param pvUser2 The second user argument.
1653 */
1654typedef DECLCALLBACK(void) FNSUPDRVDESTRUCTOR(void *pvObj, void *pvUser1, void *pvUser2);
1655/** Pointer to a FNSUPDRVDESTRUCTOR(). */
1656typedef FNSUPDRVDESTRUCTOR *PFNSUPDRVDESTRUCTOR;
1657
1658SUPR0DECL(void *) SUPR0ObjRegister(PSUPDRVSESSION pSession, SUPDRVOBJTYPE enmType, PFNSUPDRVDESTRUCTOR pfnDestructor, void *pvUser1, void *pvUser2);
1659SUPR0DECL(int) SUPR0ObjAddRef(void *pvObj, PSUPDRVSESSION pSession);
1660SUPR0DECL(int) SUPR0ObjAddRefEx(void *pvObj, PSUPDRVSESSION pSession, bool fNoBlocking);
1661SUPR0DECL(int) SUPR0ObjRelease(void *pvObj, PSUPDRVSESSION pSession);
1662SUPR0DECL(int) SUPR0ObjVerifyAccess(void *pvObj, PSUPDRVSESSION pSession, const char *pszObjName);
1663
1664SUPR0DECL(int) SUPR0LockMem(PSUPDRVSESSION pSession, RTR3PTR pvR3, uint32_t cPages, PRTHCPHYS paPages);
1665SUPR0DECL(int) SUPR0UnlockMem(PSUPDRVSESSION pSession, RTR3PTR pvR3);
1666SUPR0DECL(int) SUPR0ContAlloc(PSUPDRVSESSION pSession, uint32_t cPages, PRTR0PTR ppvR0, PRTR3PTR ppvR3, PRTHCPHYS pHCPhys);
1667SUPR0DECL(int) SUPR0ContFree(PSUPDRVSESSION pSession, RTHCUINTPTR uPtr);
1668SUPR0DECL(int) SUPR0LowAlloc(PSUPDRVSESSION pSession, uint32_t cPages, PRTR0PTR ppvR0, PRTR3PTR ppvR3, PRTHCPHYS paPages);
1669SUPR0DECL(int) SUPR0LowFree(PSUPDRVSESSION pSession, RTHCUINTPTR uPtr);
1670SUPR0DECL(int) SUPR0MemAlloc(PSUPDRVSESSION pSession, uint32_t cb, PRTR0PTR ppvR0, PRTR3PTR ppvR3);
1671SUPR0DECL(int) SUPR0MemGetPhys(PSUPDRVSESSION pSession, RTHCUINTPTR uPtr, PSUPPAGE paPages);
1672SUPR0DECL(int) SUPR0MemFree(PSUPDRVSESSION pSession, RTHCUINTPTR uPtr);
1673SUPR0DECL(int) SUPR0PageAllocEx(PSUPDRVSESSION pSession, uint32_t cPages, uint32_t fFlags, PRTR3PTR ppvR3, PRTR0PTR ppvR0, PRTHCPHYS paPages);
1674SUPR0DECL(int) SUPR0PageMapKernel(PSUPDRVSESSION pSession, RTR3PTR pvR3, uint32_t offSub, uint32_t cbSub, uint32_t fFlags, PRTR0PTR ppvR0);
1675SUPR0DECL(int) SUPR0PageProtect(PSUPDRVSESSION pSession, RTR3PTR pvR3, RTR0PTR pvR0, uint32_t offSub, uint32_t cbSub, uint32_t fProt);
1676SUPR0DECL(int) SUPR0PageFree(PSUPDRVSESSION pSession, RTR3PTR pvR3);
1677SUPR0DECL(int) SUPR0GipMap(PSUPDRVSESSION pSession, PRTR3PTR ppGipR3, PRTHCPHYS pHCPhysGip);
1678SUPR0DECL(int) SUPR0QueryVTCaps(PSUPDRVSESSION pSession, uint32_t *pfCaps);
1679SUPR0DECL(int) SUPR0GipUnmap(PSUPDRVSESSION pSession);
1680SUPR0DECL(int) SUPR0Printf(const char *pszFormat, ...);
1681SUPR0DECL(SUPPAGINGMODE) SUPR0GetPagingMode(void);
1682SUPR0DECL(uint32_t) SUPR0GetKernelFeatures(void);
1683SUPR0DECL(int) SUPR0EnableVTx(bool fEnable);
1684SUPR0DECL(bool) SUPR0SuspendVTxOnCpu(void);
1685SUPR0DECL(void) SUPR0ResumeVTxOnCpu(bool fSuspended);
1686
1687/** @name Absolute symbols
1688 * Take the address of these, don't try call them.
1689 * @{ */
1690SUPR0DECL(void) SUPR0AbsIs64bit(void);
1691SUPR0DECL(void) SUPR0Abs64bitKernelCS(void);
1692SUPR0DECL(void) SUPR0Abs64bitKernelSS(void);
1693SUPR0DECL(void) SUPR0Abs64bitKernelDS(void);
1694SUPR0DECL(void) SUPR0AbsKernelCS(void);
1695SUPR0DECL(void) SUPR0AbsKernelSS(void);
1696SUPR0DECL(void) SUPR0AbsKernelDS(void);
1697SUPR0DECL(void) SUPR0AbsKernelES(void);
1698SUPR0DECL(void) SUPR0AbsKernelFS(void);
1699SUPR0DECL(void) SUPR0AbsKernelGS(void);
1700/** @} */
1701
1702/**
1703 * Support driver component factory.
1704 *
1705 * Component factories are registered by drivers that provides services
1706 * such as the host network interface filtering and access to the host
1707 * TCP/IP stack.
1708 *
1709 * @remark Module dependencies and making sure that a component doesn't
1710 * get unloaded while in use, is the sole responsibility of the
1711 * driver/kext/whatever implementing the component.
1712 */
1713typedef struct SUPDRVFACTORY
1714{
1715 /** The (unique) name of the component factory. */
1716 char szName[56];
1717 /**
1718 * Queries a factory interface.
1719 *
1720 * The factory interface is specific to each component and will be be
1721 * found in the header(s) for the component alongside its UUID.
1722 *
1723 * @returns Pointer to the factory interfaces on success, NULL on failure.
1724 *
1725 * @param pSupDrvFactory Pointer to this structure.
1726 * @param pSession The SUPDRV session making the query.
1727 * @param pszInterfaceUuid The UUID of the factory interface.
1728 */
1729 DECLR0CALLBACKMEMBER(void *, pfnQueryFactoryInterface,(struct SUPDRVFACTORY const *pSupDrvFactory, PSUPDRVSESSION pSession, const char *pszInterfaceUuid));
1730} SUPDRVFACTORY;
1731/** Pointer to a support driver factory. */
1732typedef SUPDRVFACTORY *PSUPDRVFACTORY;
1733/** Pointer to a const support driver factory. */
1734typedef SUPDRVFACTORY const *PCSUPDRVFACTORY;
1735
1736SUPR0DECL(int) SUPR0ComponentRegisterFactory(PSUPDRVSESSION pSession, PCSUPDRVFACTORY pFactory);
1737SUPR0DECL(int) SUPR0ComponentDeregisterFactory(PSUPDRVSESSION pSession, PCSUPDRVFACTORY pFactory);
1738SUPR0DECL(int) SUPR0ComponentQueryFactory(PSUPDRVSESSION pSession, const char *pszName, const char *pszInterfaceUuid, void **ppvFactoryIf);
1739
1740
1741/** @name Tracing
1742 * @{ */
1743
1744/**
1745 * Tracer data associated with a provider.
1746 */
1747typedef union SUPDRVTRACERDATA
1748{
1749 /** Generic */
1750 uint64_t au64[2];
1751
1752 /** DTrace data. */
1753 struct
1754 {
1755 /** Provider ID. */
1756 uintptr_t idProvider;
1757 /** The number of trace points provided. */
1758 uint32_t volatile cProvidedProbes;
1759 /** Whether we've invalidated this bugger. */
1760 bool fZombie;
1761 } DTrace;
1762} SUPDRVTRACERDATA;
1763/** Pointer to the tracer data associated with a provider. */
1764typedef SUPDRVTRACERDATA *PSUPDRVTRACERDATA;
1765
1766/**
1767 * Probe location info for ring-0.
1768 *
1769 * Since we cannot trust user tracepoint modules, we need to duplicate the probe
1770 * ID and enabled flag in ring-0.
1771 */
1772typedef struct SUPDRVPROBELOC
1773{
1774 /** The probe ID. */
1775 uint32_t idProbe;
1776 /** Whether it's enabled or not. */
1777 bool fEnabled;
1778} SUPDRVPROBELOC;
1779/** Pointer to a ring-0 probe location record. */
1780typedef SUPDRVPROBELOC *PSUPDRVPROBELOC;
1781
1782/**
1783 * Probe info for ring-0.
1784 *
1785 * Since we cannot trust user tracepoint modules, we need to duplicate the
1786 * probe enable count.
1787 */
1788typedef struct SUPDRVPROBEINFO
1789{
1790 /** The number of times this probe has been enabled. */
1791 uint32_t volatile cEnabled;
1792} SUPDRVPROBEINFO;
1793/** Pointer to a ring-0 probe info record. */
1794typedef SUPDRVPROBEINFO *PSUPDRVPROBEINFO;
1795
1796/**
1797 * Support driver tracepoint provider core.
1798 */
1799typedef struct SUPDRVVDTPROVIDERCORE
1800{
1801 /** The tracer data member. */
1802 SUPDRVTRACERDATA TracerData;
1803 /** Pointer to the provider name (a copy that's always available). */
1804 const char *pszName;
1805 /** Pointer to the module name (a copy that's always available). */
1806 const char *pszModName;
1807
1808 /** The provider descriptor. */
1809 struct VTGDESCPROVIDER *pDesc;
1810 /** The VTG header. */
1811 struct VTGOBJHDR *pHdr;
1812
1813 /** The size of the entries in the pvProbeLocsEn table. */
1814 uint8_t cbProbeLocsEn;
1815 /** The actual module bit count (corresponds to cbProbeLocsEn). */
1816 uint8_t cBits;
1817 /** Set if this is a Umod, otherwise clear.. */
1818 bool fUmod;
1819 /** Explicit alignment padding (paranoia). */
1820 uint8_t abAlignment[ARCH_BITS == 32 ? 1 : 5];
1821
1822 /** The probe locations used for descriptive purposes. */
1823 struct VTGPROBELOC const *paProbeLocsRO;
1824 /** Pointer to the probe location array where the enable flag needs
1825 * flipping. For kernel providers, this will always be SUPDRVPROBELOC,
1826 * while user providers can either be 32-bit or 64-bit. Use
1827 * cbProbeLocsEn to calculate the address of an entry. */
1828 void *pvProbeLocsEn;
1829 /** Pointer to the probe array containing the enabled counts. */
1830 uint32_t *pacProbeEnabled;
1831
1832 /** The ring-0 probe location info for user tracepoint modules.
1833 * This is NULL if fUmod is false. */
1834 PSUPDRVPROBELOC paR0ProbeLocs;
1835 /** The ring-0 probe info for user tracepoint modules.
1836 * This is NULL if fUmod is false. */
1837 PSUPDRVPROBEINFO paR0Probes;
1838
1839} SUPDRVVDTPROVIDERCORE;
1840/** Pointer to a tracepoint provider core structure. */
1841typedef SUPDRVVDTPROVIDERCORE *PSUPDRVVDTPROVIDERCORE;
1842
1843/** Pointer to a tracer registration record. */
1844typedef struct SUPDRVTRACERREG const *PCSUPDRVTRACERREG;
1845/**
1846 * Support driver tracer registration record.
1847 */
1848typedef struct SUPDRVTRACERREG
1849{
1850 /** Magic value (SUPDRVTRACERREG_MAGIC). */
1851 uint32_t u32Magic;
1852 /** Version (SUPDRVTRACERREG_VERSION). */
1853 uint32_t u32Version;
1854
1855 /**
1856 * Fire off a kernel probe.
1857 *
1858 * @param pVtgProbeLoc The probe location record.
1859 * @param uArg0 The first raw probe argument.
1860 * @param uArg1 The second raw probe argument.
1861 * @param uArg2 The third raw probe argument.
1862 * @param uArg3 The fourth raw probe argument.
1863 * @param uArg4 The fifth raw probe argument.
1864 *
1865 * @remarks SUPR0TracerFireProbe will do a tail jump thru this member, so
1866 * no extra stack frames will be added.
1867 * @remarks This does not take a 'this' pointer argument because it doesn't map
1868 * well onto VTG or DTrace.
1869 *
1870 */
1871 DECLR0CALLBACKMEMBER(void, pfnProbeFireKernel, (struct VTGPROBELOC *pVtgProbeLoc, uintptr_t uArg0, uintptr_t uArg1, uintptr_t uArg2,
1872 uintptr_t uArg3, uintptr_t uArg4));
1873
1874 /**
1875 * Fire off a user-mode probe.
1876 *
1877 * @param pThis Pointer to the registration record.
1878 *
1879 * @param pVtgProbeLoc The probe location record.
1880 * @param pSession The user session.
1881 * @param pCtx The usermode context info.
1882 * @param pVtgHdr The VTG header (read-only).
1883 * @param pProbeLocRO The read-only probe location record .
1884 */
1885 DECLR0CALLBACKMEMBER(void, pfnProbeFireUser, (PCSUPDRVTRACERREG pThis, PSUPDRVSESSION pSession, PCSUPDRVTRACERUSRCTX pCtx,
1886 struct VTGOBJHDR const *pVtgHdr, struct VTGPROBELOC const *pProbeLocRO));
1887
1888 /**
1889 * Opens up the tracer.
1890 *
1891 * @returns VBox status code.
1892 * @param pThis Pointer to the registration record.
1893 * @param pSession The session doing the opening.
1894 * @param uCookie A cookie (magic) unique to the tracer, so it can
1895 * fend off incompatible clients.
1896 * @param uArg Tracer specific argument.
1897 * @param puSessionData Pointer to the session data variable. This must be
1898 * set to a non-zero value on success.
1899 */
1900 DECLR0CALLBACKMEMBER(int, pfnTracerOpen, (PCSUPDRVTRACERREG pThis, PSUPDRVSESSION pSession, uint32_t uCookie, uintptr_t uArg,
1901 uintptr_t *puSessionData));
1902
1903 /**
1904 * I/O control style tracer communication method.
1905 *
1906 *
1907 * @returns VBox status code.
1908 * @param pThis Pointer to the registration record.
1909 * @param pSession The session.
1910 * @param uSessionData The session data value.
1911 * @param uCmd The tracer specific command.
1912 * @param uArg The tracer command specific argument.
1913 * @param piRetVal The tracer specific return value.
1914 */
1915 DECLR0CALLBACKMEMBER(int, pfnTracerIoCtl, (PCSUPDRVTRACERREG pThis, PSUPDRVSESSION pSession, uintptr_t uSessionData,
1916 uintptr_t uCmd, uintptr_t uArg, int32_t *piRetVal));
1917
1918 /**
1919 * Cleans up data the tracer has associated with a session.
1920 *
1921 * @param pThis Pointer to the registration record.
1922 * @param pSession The session handle.
1923 * @param uSessionData The data assoicated with the session.
1924 */
1925 DECLR0CALLBACKMEMBER(void, pfnTracerClose, (PCSUPDRVTRACERREG pThis, PSUPDRVSESSION pSession, uintptr_t uSessionData));
1926
1927 /**
1928 * Registers a provider.
1929 *
1930 * @returns VBox status code.
1931 * @param pThis Pointer to the registration record.
1932 * @param pCore The provider core data.
1933 *
1934 * @todo Kernel vs. Userland providers.
1935 */
1936 DECLR0CALLBACKMEMBER(int, pfnProviderRegister, (PCSUPDRVTRACERREG pThis, PSUPDRVVDTPROVIDERCORE pCore));
1937
1938 /**
1939 * Attempts to deregisters a provider.
1940 *
1941 * @returns VINF_SUCCESS or VERR_TRY_AGAIN. If the latter, the provider
1942 * should be made as harmless as possible before returning as the
1943 * VTG object and associated code will be unloaded upon return.
1944 *
1945 * @param pThis Pointer to the registration record.
1946 * @param pCore The provider core data.
1947 */
1948 DECLR0CALLBACKMEMBER(int, pfnProviderDeregister, (PCSUPDRVTRACERREG pThis, PSUPDRVVDTPROVIDERCORE pCore));
1949
1950 /**
1951 * Make another attempt at unregister a busy provider.
1952 *
1953 * @returns VINF_SUCCESS or VERR_TRY_AGAIN.
1954 * @param pThis Pointer to the registration record.
1955 * @param pCore The provider core data.
1956 */
1957 DECLR0CALLBACKMEMBER(int, pfnProviderDeregisterZombie, (PCSUPDRVTRACERREG pThis, PSUPDRVVDTPROVIDERCORE pCore));
1958
1959 /** End marker (SUPDRVTRACERREG_MAGIC). */
1960 uintptr_t uEndMagic;
1961} SUPDRVTRACERREG;
1962
1963/** Tracer magic (Kenny Garrett). */
1964#define SUPDRVTRACERREG_MAGIC UINT32_C(0x19601009)
1965/** Tracer registration structure version. */
1966#define SUPDRVTRACERREG_VERSION RT_MAKE_U32(0, 1)
1967
1968/** Pointer to a trace helper structure. */
1969typedef struct SUPDRVTRACERHLP const *PCSUPDRVTRACERHLP;
1970/**
1971 * Helper structure.
1972 */
1973typedef struct SUPDRVTRACERHLP
1974{
1975 /** The structure version (SUPDRVTRACERHLP_VERSION). */
1976 uintptr_t uVersion;
1977
1978 /** @todo ... */
1979
1980 /** End marker (SUPDRVTRACERHLP_VERSION) */
1981 uintptr_t uEndVersion;
1982} SUPDRVTRACERHLP;
1983/** Tracer helper structure version. */
1984#define SUPDRVTRACERHLP_VERSION RT_MAKE_U32(0, 1)
1985
1986SUPR0DECL(int) SUPR0TracerRegisterImpl(void *hMod, PSUPDRVSESSION pSession, PCSUPDRVTRACERREG pReg, PCSUPDRVTRACERHLP *ppHlp);
1987SUPR0DECL(int) SUPR0TracerDeregisterImpl(void *hMod, PSUPDRVSESSION pSession);
1988SUPR0DECL(int) SUPR0TracerRegisterDrv(PSUPDRVSESSION pSession, struct VTGOBJHDR *pVtgHdr, const char *pszName);
1989SUPR0DECL(void) SUPR0TracerDeregisterDrv(PSUPDRVSESSION pSession);
1990SUPR0DECL(int) SUPR0TracerRegisterModule(void *hMod, struct VTGOBJHDR *pVtgHdr);
1991SUPR0DECL(void) SUPR0TracerFireProbe(struct VTGPROBELOC *pVtgProbeLoc, uintptr_t uArg0, uintptr_t uArg1, uintptr_t uArg2,
1992 uintptr_t uArg3, uintptr_t uArg4);
1993SUPR0DECL(void) SUPR0TracerUmodProbeFire(PSUPDRVSESSION pSession, PSUPDRVTRACERUSRCTX pCtx);
1994/** @} */
1995
1996
1997/**
1998 * Service request callback function.
1999 *
2000 * @returns VBox status code.
2001 * @param pSession The caller's session.
2002 * @param u64Arg 64-bit integer argument.
2003 * @param pReqHdr The request header. Input / Output. Optional.
2004 */
2005typedef DECLCALLBACK(int) FNSUPR0SERVICEREQHANDLER(PSUPDRVSESSION pSession, uint32_t uOperation,
2006 uint64_t u64Arg, PSUPR0SERVICEREQHDR pReqHdr);
2007/** Pointer to a FNR0SERVICEREQHANDLER(). */
2008typedef R0PTRTYPE(FNSUPR0SERVICEREQHANDLER *) PFNSUPR0SERVICEREQHANDLER;
2009
2010
2011/** @defgroup grp_sup_r0_idc The IDC Interface
2012 * @ingroup grp_sup_r0
2013 * @{
2014 */
2015
2016/** The current SUPDRV IDC version.
2017 * This follows the usual high word / low word rules, i.e. high word is the
2018 * major number and it signifies incompatible interface changes. */
2019#define SUPDRV_IDC_VERSION UINT32_C(0x00010000)
2020
2021/**
2022 * Inter-Driver Communication Handle.
2023 */
2024typedef union SUPDRVIDCHANDLE
2025{
2026 /** Padding for opaque usage.
2027 * Must be greater or equal in size than the private struct. */
2028 void *apvPadding[4];
2029#ifdef SUPDRVIDCHANDLEPRIVATE_DECLARED
2030 /** The private view. */
2031 struct SUPDRVIDCHANDLEPRIVATE s;
2032#endif
2033} SUPDRVIDCHANDLE;
2034/** Pointer to a handle. */
2035typedef SUPDRVIDCHANDLE *PSUPDRVIDCHANDLE;
2036
2037SUPR0DECL(int) SUPR0IdcOpen(PSUPDRVIDCHANDLE pHandle, uint32_t uReqVersion, uint32_t uMinVersion,
2038 uint32_t *puSessionVersion, uint32_t *puDriverVersion, uint32_t *puDriverRevision);
2039SUPR0DECL(int) SUPR0IdcCall(PSUPDRVIDCHANDLE pHandle, uint32_t iReq, void *pvReq, uint32_t cbReq);
2040SUPR0DECL(int) SUPR0IdcClose(PSUPDRVIDCHANDLE pHandle);
2041SUPR0DECL(PSUPDRVSESSION) SUPR0IdcGetSession(PSUPDRVIDCHANDLE pHandle);
2042SUPR0DECL(int) SUPR0IdcComponentRegisterFactory(PSUPDRVIDCHANDLE pHandle, PCSUPDRVFACTORY pFactory);
2043SUPR0DECL(int) SUPR0IdcComponentDeregisterFactory(PSUPDRVIDCHANDLE pHandle, PCSUPDRVFACTORY pFactory);
2044
2045/** @} */
2046
2047/** @name Ring-0 module entry points.
2048 *
2049 * These can be exported by ring-0 modules SUP are told to load.
2050 *
2051 * @{ */
2052DECLEXPORT(int) ModuleInit(void *hMod);
2053DECLEXPORT(void) ModuleTerm(void *hMod);
2054/** @} */
2055
2056
2057/** @} */
2058#endif
2059
2060
2061/** @name Trust Anchors and Certificates
2062 * @{ */
2063
2064/**
2065 * Trust anchor table entry (in generated Certificates.cpp).
2066 */
2067typedef struct SUPTAENTRY
2068{
2069 /** Pointer to the raw bytes. */
2070 const unsigned char *pch;
2071 /** Number of bytes. */
2072 unsigned cb;
2073} SUPTAENTRY;
2074/** Pointer to a trust anchor table entry. */
2075typedef SUPTAENTRY const *PCSUPTAENTRY;
2076
2077/** Macro for simplifying generating the trust anchor tables. */
2078#define SUPTAENTRY_GEN(a_abTA) { &a_abTA[0], sizeof(a_abTA) }
2079
2080/** All certificates we know. */
2081extern SUPTAENTRY const g_aSUPAllTAs[];
2082/** Number of entries in g_aSUPAllTAs. */
2083extern unsigned const g_cSUPAllTAs;
2084
2085/** Software publisher certificate roots (Authenticode). */
2086extern SUPTAENTRY const g_aSUPSpcRootTAs[];
2087/** Number of entries in g_aSUPSpcRootTAs. */
2088extern unsigned const g_cSUPSpcRootTAs;
2089
2090/** Kernel root certificates used by Windows. */
2091extern SUPTAENTRY const g_aSUPNtKernelRootTAs[];
2092/** Number of entries in g_aSUPNtKernelRootTAs. */
2093extern unsigned const g_cSUPNtKernelRootTAs;
2094
2095/** Timestamp root certificates trusted by Windows. */
2096extern SUPTAENTRY const g_aSUPTimestampTAs[];
2097/** Number of entries in g_aSUPTimestampTAs. */
2098extern unsigned const g_cSUPTimestampTAs;
2099
2100/** TAs we trust (the build certificate, Oracle VirtualBox). */
2101extern SUPTAENTRY const g_aSUPTrustedTAs[];
2102/** Number of entries in g_aSUPTrustedTAs. */
2103extern unsigned const g_cSUPTrustedTAs;
2104
2105/** Supplemental certificates, like cross signing certificates. */
2106extern SUPTAENTRY const g_aSUPSupplementalTAs[];
2107/** Number of entries in g_aSUPTrustedTAs. */
2108extern unsigned const g_cSUPSupplementalTAs;
2109
2110/** The build certificate. */
2111extern const unsigned char g_abSUPBuildCert[];
2112/** The size of the build certificate. */
2113extern const unsigned g_cbSUPBuildCert;
2114
2115/** @} */
2116
2117
2118/** @} */
2119
2120RT_C_DECLS_END
2121
2122#endif
2123
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