1 | /* $Id: TRPMInternal.h 5999 2007-12-07 15:05:06Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * TRPM - Internal header file.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef ___TRPMInternal_h
|
---|
19 | #define ___TRPMInternal_h
|
---|
20 |
|
---|
21 | #include <VBox/cdefs.h>
|
---|
22 | #include <VBox/types.h>
|
---|
23 | #include <VBox/stam.h>
|
---|
24 | #include <VBox/cpum.h>
|
---|
25 |
|
---|
26 |
|
---|
27 | #if !defined(IN_TRPM_R3) && !defined(IN_TRPM_R0) && !defined(IN_TRPM_GC)
|
---|
28 | # error "Not in TRPM! This is an internal header!"
|
---|
29 | #endif
|
---|
30 |
|
---|
31 | /* Enable to allow trap forwarding in GC. */
|
---|
32 | #define TRPM_FORWARD_TRAPS_IN_GC
|
---|
33 |
|
---|
34 | /** First interrupt handler. Used for validating input. */
|
---|
35 | #define TRPM_HANDLER_INT_BASE 0x20
|
---|
36 |
|
---|
37 | __BEGIN_DECLS
|
---|
38 |
|
---|
39 |
|
---|
40 | /** @defgroup grp_trpm_int Internals
|
---|
41 | * @ingroup grp_trpm
|
---|
42 | * @internal
|
---|
43 | * @{
|
---|
44 | */
|
---|
45 |
|
---|
46 | /** @name TRPMGCTrapIn* flags.
|
---|
47 | * The lower bits are offsets into the CPUMCTXCORE structure.
|
---|
48 | * @{ */
|
---|
49 | /** The mask for the operation. */
|
---|
50 | #define TRPM_TRAP_IN_OP_MASK 0xffff
|
---|
51 | /** Traps on MOV GS, eax. */
|
---|
52 | #define TRPM_TRAP_IN_MOV_GS 1
|
---|
53 | /** Traps on MOV FS, eax. */
|
---|
54 | #define TRPM_TRAP_IN_MOV_FS 2
|
---|
55 | /** Traps on MOV ES, eax. */
|
---|
56 | #define TRPM_TRAP_IN_MOV_ES 3
|
---|
57 | /** Traps on MOV DS, eax. */
|
---|
58 | #define TRPM_TRAP_IN_MOV_DS 4
|
---|
59 | /** Traps on IRET. */
|
---|
60 | #define TRPM_TRAP_IN_IRET 5
|
---|
61 | /** Set if this is a V86 resume. */
|
---|
62 | #define TRPM_TRAP_IN_V86 RT_BIT(30)
|
---|
63 | /** If set this is a hypervisor register set. If cleared it's a guest set. */
|
---|
64 | #define TRPM_TRAP_IN_HYPER RT_BIT(31)
|
---|
65 | /** @} */
|
---|
66 |
|
---|
67 |
|
---|
68 | /**
|
---|
69 | * Converts a TRPM pointer into a VM pointer.
|
---|
70 | * @returns Pointer to the VM structure the TRPM is part of.
|
---|
71 | * @param pTRPM Pointer to TRPM instance data.
|
---|
72 | */
|
---|
73 | #define TRPM2VM(pTRPM) ( (PVM)((char*)pTRPM - pTRPM->offVM) )
|
---|
74 |
|
---|
75 |
|
---|
76 | /**
|
---|
77 | * TRPM Data (part of VM)
|
---|
78 | *
|
---|
79 | * IMPORTANT! Keep the nasm version of this struct up-to-date.
|
---|
80 | */
|
---|
81 | #pragma pack(4)
|
---|
82 | typedef struct TRPM
|
---|
83 | {
|
---|
84 | /** Offset to the VM structure.
|
---|
85 | * See TRPM2VM(). */
|
---|
86 | RTINT offVM;
|
---|
87 |
|
---|
88 | /** Active Interrupt or trap vector number.
|
---|
89 | * If not ~0U this indicates that we're currently processing
|
---|
90 | * a interrupt, trap, fault, abort, whatever which have arrived
|
---|
91 | * at that vector number.
|
---|
92 | */
|
---|
93 | RTUINT uActiveVector;
|
---|
94 |
|
---|
95 | /** Active trap type. */
|
---|
96 | TRPMEVENT enmActiveType;
|
---|
97 |
|
---|
98 | /** Errorcode for the active interrupt/trap. */
|
---|
99 | RTGCUINT uActiveErrorCode;
|
---|
100 |
|
---|
101 | /** CR2 at the time of the active exception. */
|
---|
102 | RTGCUINTPTR uActiveCR2;
|
---|
103 |
|
---|
104 | /** Saved trap vector number. */
|
---|
105 | RTGCUINT uSavedVector;
|
---|
106 |
|
---|
107 | /** Saved trap type. */
|
---|
108 | TRPMEVENT enmSavedType;
|
---|
109 |
|
---|
110 | /** Saved errorcode. */
|
---|
111 | RTGCUINT uSavedErrorCode;
|
---|
112 |
|
---|
113 | /** Saved cr2. */
|
---|
114 | RTGCUINTPTR uSavedCR2;
|
---|
115 |
|
---|
116 | /** Previous trap vector # - for debugging. */
|
---|
117 | RTGCUINT uPrevVector;
|
---|
118 |
|
---|
119 | /** IDT monitoring and sync flag (HWACC). */
|
---|
120 | bool fDisableMonitoring; /** @todo r=bird: bool and 7 byte achPadding1. */
|
---|
121 |
|
---|
122 | /** Whether monitoring of the guest IDT is enabled or not.
|
---|
123 | *
|
---|
124 | * This configuration option is provided for speeding up guest like Solaris
|
---|
125 | * that put the IDT on the same page as a whole lot of other data that is
|
---|
126 | * freqently updated. The updates will cause #PFs and have to be interpreted
|
---|
127 | * by PGMInterpretInstruction which is slow compared to raw execution.
|
---|
128 | *
|
---|
129 | * If the guest is well behaved and doesn't change the IDT after loading it,
|
---|
130 | * there is no problem with dropping the IDT monitoring.
|
---|
131 | *
|
---|
132 | * @cfgm /TRPM/SafeToDropGuestIDTMonitoring boolean defaults to false.
|
---|
133 | */
|
---|
134 | bool fSafeToDropGuestIDTMonitoring;
|
---|
135 |
|
---|
136 | /** Padding to get the IDTs at a 16 byte alignement. */
|
---|
137 | uint8_t abPadding1[6];
|
---|
138 |
|
---|
139 | /** IDTs. Aligned at 16 byte offset for speed. */
|
---|
140 | VBOXIDTE aIdt[256];
|
---|
141 |
|
---|
142 | /** Bitmap for IDTEs that contain PATM handlers. (needed for relocation) */
|
---|
143 | uint32_t au32IdtPatched[8];
|
---|
144 |
|
---|
145 | /** Temporary Hypervisor trap handlers.
|
---|
146 | * NULL means default action. */
|
---|
147 | RTGCPTR aTmpTrapHandlers[256];
|
---|
148 |
|
---|
149 | /** GC Pointer to the IDT shadow area (aIdt) placed in Hypervisor memory arena. */
|
---|
150 | RTGCPTR GCPtrIdt;
|
---|
151 | /** Current (last) Guest's IDTR. */
|
---|
152 | VBOXIDTR GuestIdtr;
|
---|
153 |
|
---|
154 | /** padding. */
|
---|
155 | uint8_t au8Padding[2];
|
---|
156 |
|
---|
157 | /** Checked trap & interrupt handler array */
|
---|
158 | RTGCPTR aGuestTrapHandler[256];
|
---|
159 |
|
---|
160 | /** GC: The number of times writes to the Guest IDT were detected. */
|
---|
161 | STAMCOUNTER StatGCWriteGuestIDTFault;
|
---|
162 | STAMCOUNTER StatGCWriteGuestIDTHandled;
|
---|
163 |
|
---|
164 | /** HC: Profiling of the TRPMR3SyncIDT() method. */
|
---|
165 | STAMPROFILE StatSyncIDT;
|
---|
166 | /** GC: Statistics for the trap handlers. */
|
---|
167 | STAMPROFILEADV aStatGCTraps[0x14];
|
---|
168 |
|
---|
169 | STAMCOUNTER StatForwardFailNoHandler;
|
---|
170 | STAMCOUNTER StatForwardFailPatchAddr;
|
---|
171 | STAMCOUNTER StatForwardFailGC;
|
---|
172 | STAMCOUNTER StatForwardFailHC;
|
---|
173 |
|
---|
174 | STAMPROFILEADV StatForwardProfGC;
|
---|
175 | STAMPROFILEADV StatForwardProfHC;
|
---|
176 | STAMPROFILE StatTrap0dDisasm;
|
---|
177 | STAMCOUNTER StatTrap0dRdTsc; /**< Number of RDTSC #GPs. */
|
---|
178 |
|
---|
179 | /* R3: Statistics for interrupt handlers (allocated on the hypervisor heap). */
|
---|
180 | R3PTRTYPE(PSTAMCOUNTER) paStatForwardedIRQR3;
|
---|
181 | /* R0: Statistics for interrupt handlers (allocated on the hypervisor heap). */
|
---|
182 | R0PTRTYPE(PSTAMCOUNTER) paStatForwardedIRQR0;
|
---|
183 | /* GC: Statistics for interrupt handlers (allocated on the hypervisor heap). */
|
---|
184 | GCPTRTYPE(PSTAMCOUNTER) paStatForwardedIRQGC;
|
---|
185 | } TRPM;
|
---|
186 | #pragma pack()
|
---|
187 |
|
---|
188 | /** Pointer to TRPM Data. */
|
---|
189 | typedef TRPM *PTRPM;
|
---|
190 |
|
---|
191 | TRPMGCDECL(int) trpmgcGuestIDTWriteHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, void *pvFault, void *pvRange, uintptr_t offRange);
|
---|
192 | TRPMGCDECL(int) trpmgcShadowIDTWriteHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, void *pvFault, void *pvRange, uintptr_t offRange);
|
---|
193 |
|
---|
194 | /**
|
---|
195 | * Clear guest trap/interrupt gate handler
|
---|
196 | *
|
---|
197 | * @returns VBox status code.
|
---|
198 | * @param pVM The VM to operate on.
|
---|
199 | * @param iTrap Interrupt/trap number.
|
---|
200 | */
|
---|
201 | TRPMDECL(int) trpmClearGuestTrapHandler(PVM pVM, unsigned iTrap);
|
---|
202 |
|
---|
203 |
|
---|
204 | #ifdef IN_RING3
|
---|
205 |
|
---|
206 | /**
|
---|
207 | * Clear passthrough interrupt gate handler (reset to default handler)
|
---|
208 | *
|
---|
209 | * @returns VBox status code.
|
---|
210 | * @param pVM The VM to operate on.
|
---|
211 | * @param iTrap Trap/interrupt gate number.
|
---|
212 | */
|
---|
213 | TRPMR3DECL(int) trpmR3ClearPassThroughHandler(PVM pVM, unsigned iTrap);
|
---|
214 |
|
---|
215 | #endif
|
---|
216 |
|
---|
217 |
|
---|
218 | #ifdef IN_RING0
|
---|
219 |
|
---|
220 | /**
|
---|
221 | * Calls the interrupt gate as if we received an interrupt while in Ring-0.
|
---|
222 | *
|
---|
223 | * @param uIP The interrupt gate IP.
|
---|
224 | * @param SelCS The interrupt gate CS.
|
---|
225 | * @param RSP The interrupt gate RSP. ~0 if no stack switch should take place. (only AMD64)
|
---|
226 | */
|
---|
227 | DECLASM(void) trpmR0DispatchHostInterrupt(RTR0UINTPTR uIP, RTSEL SelCS, RTR0UINTPTR RSP);
|
---|
228 |
|
---|
229 | /**
|
---|
230 | * Issues a software interrupt to the specified interrupt vector.
|
---|
231 | *
|
---|
232 | * @param uActiveVector The vector number.
|
---|
233 | */
|
---|
234 | DECLASM(void) trpmR0DispatchHostInterruptSimple(RTUINT uActiveVector);
|
---|
235 |
|
---|
236 | # ifdef VBOX_WITH_IDT_PATCHING
|
---|
237 | /**
|
---|
238 | * Code used for the dispatching of interrupts in HC.
|
---|
239 | * @internal
|
---|
240 | */
|
---|
241 | DECLASM(int) trpmR0InterruptDispatcher(void);
|
---|
242 | # endif /* VBOX_WITH_IDT_PATCHING */
|
---|
243 |
|
---|
244 | #endif
|
---|
245 |
|
---|
246 | /** @} */
|
---|
247 |
|
---|
248 | __END_DECLS
|
---|
249 |
|
---|
250 | #endif
|
---|