VirtualBox

source: vbox/trunk/src/VBox/VMM/include/TRPMInternal.h@ 43667

Last change on this file since 43667 was 41943, checked in by vboxsync, 12 years ago

VMM: Avoid stale selector issues in RC so there will be no need to try fix them by recursive trapping (this was broken for GS since forever anyways).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 9.0 KB
Line 
1/* $Id: TRPMInternal.h 41943 2012-06-28 02:33:43Z vboxsync $ */
2/** @file
3 * TRPM - Internal header file.
4 */
5
6/*
7 * Copyright (C) 2006-2012 Oracle Corporation
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/vmm/stam.h>
24#include <VBox/vmm/cpum.h>
25
26
27
28/** Enable to allow trap forwarding in GC. */
29#define TRPM_FORWARD_TRAPS_IN_GC
30
31/** First interrupt handler. Used for validating input. */
32#define TRPM_HANDLER_INT_BASE 0x20
33
34RT_C_DECLS_BEGIN
35
36
37/** @defgroup grp_trpm_int Internals
38 * @ingroup grp_trpm
39 * @internal
40 * @{
41 */
42
43/** @name TRPMGCTrapIn* flags.
44 * The lower bits are offsets into the CPUMCTXCORE structure.
45 * @{ */
46/** The mask for the operation. */
47#define TRPM_TRAP_IN_OP_MASK 0xffff
48/** Traps on MOV GS, eax. */
49#define TRPM_TRAP_IN_MOV_GS 1
50/** Traps on MOV FS, eax. */
51#define TRPM_TRAP_IN_MOV_FS 2
52/** Traps on MOV ES, eax. */
53#define TRPM_TRAP_IN_MOV_ES 3
54/** Traps on MOV DS, eax. */
55#define TRPM_TRAP_IN_MOV_DS 4
56/** Traps on IRET. */
57#define TRPM_TRAP_IN_IRET 5
58/** Set if this is a V86 resume. */
59#define TRPM_TRAP_IN_V86 RT_BIT(30)
60/** @} */
61
62
63#if 0 /* not used */
64/**
65 * Converts a TRPM pointer into a VM pointer.
66 * @returns Pointer to the VM structure the TRPM is part of.
67 * @param pTRPM Pointer to TRPM instance data.
68 */
69#define TRPM_2_VM(pTRPM) ( (PVM)((uint8_t *)(pTRPM) - (pTRPM)->offVM) )
70#endif
71
72/**
73 * Converts a TRPM pointer into a TRPMCPU pointer.
74 * @returns Pointer to the VM structure the TRPMCPU is part of.
75 * @param pTRPM Pointer to TRPMCPU instance data.
76 * @remarks Raw-mode only, not SMP safe.
77 */
78#define TRPM_2_TRPMCPU(pTrpmCpu) ( (PTRPMCPU)((uint8_t *)(pTrpmCpu) + (pTrpmCpu)->offTRPMCPU) )
79
80
81/**
82 * TRPM Data (part of VM)
83 *
84 * IMPORTANT! Keep the nasm version of this struct up-to-date.
85 */
86#pragma pack(4)
87typedef struct TRPM
88{
89 /** Offset to the VM structure.
90 * See TRPM_2_VM(). */
91 RTINT offVM;
92 /** Offset to the TRPMCPU structure.
93 * See TRPM2TRPMCPU(). */
94 RTINT offTRPMCPU;
95
96 /** IDT monitoring and sync flag (HWACC). */
97 bool fDisableMonitoring; /** @todo r=bird: bool and 7 byte achPadding1. */
98
99 /** Whether monitoring of the guest IDT is enabled or not.
100 *
101 * This configuration option is provided for speeding up guest like Solaris
102 * that put the IDT on the same page as a whole lot of other data that is
103 * frequently updated. The updates will cause #PFs and have to be interpreted
104 * by PGMInterpretInstruction which is slow compared to raw execution.
105 *
106 * If the guest is well behaved and doesn't change the IDT after loading it,
107 * there is no problem with dropping the IDT monitoring.
108 *
109 * @cfgm /TRPM/SafeToDropGuestIDTMonitoring boolean defaults to false.
110 */
111 bool fSafeToDropGuestIDTMonitoring;
112
113 /** Padding to get the IDTs at a 16 byte alignment. */
114 uint8_t abPadding1[6];
115 /** IDTs. Aligned at 16 byte offset for speed. */
116 VBOXIDTE aIdt[256];
117
118 /** Bitmap for IDTEs that contain PATM handlers. (needed for relocation) */
119 uint32_t au32IdtPatched[8];
120
121 /** Temporary Hypervisor trap handlers.
122 * NULL means default action. */
123 RCPTRTYPE(void *) aTmpTrapHandlers[256];
124
125 /** RC Pointer to the IDT shadow area (aIdt) in HMA. */
126 RCPTRTYPE(void *) pvMonShwIdtRC;
127 /** Current (last) Guest's IDTR. */
128 VBOXIDTR GuestIdtr;
129
130 /** padding. */
131 uint8_t au8Padding[2];
132
133 /** Checked trap & interrupt handler array */
134 RCPTRTYPE(void *) aGuestTrapHandler[256];
135
136 /** RC: The number of times writes to the Guest IDT were detected. */
137 STAMCOUNTER StatRCWriteGuestIDTFault;
138 STAMCOUNTER StatRCWriteGuestIDTHandled;
139
140 /** HC: Profiling of the TRPMR3SyncIDT() method. */
141 STAMPROFILE StatSyncIDT;
142 /** GC: Statistics for the trap handlers. */
143 STAMPROFILEADV aStatGCTraps[0x14];
144
145 STAMPROFILEADV StatForwardProfR3;
146 STAMPROFILEADV StatForwardProfRZ;
147 STAMCOUNTER StatForwardFailNoHandler;
148 STAMCOUNTER StatForwardFailPatchAddr;
149 STAMCOUNTER StatForwardFailR3;
150 STAMCOUNTER StatForwardFailRZ;
151
152 STAMPROFILE StatTrap0dDisasm;
153 STAMCOUNTER StatTrap0dRdTsc; /**< Number of RDTSC #GPs. */
154
155#ifdef VBOX_WITH_STATISTICS
156 /** Statistics for interrupt handlers (allocated on the hypervisor heap) - R3
157 * pointer. */
158 R3PTRTYPE(PSTAMCOUNTER) paStatForwardedIRQR3;
159 /** Statistics for interrupt handlers - R0 pointer. */
160 R0PTRTYPE(PSTAMCOUNTER) paStatForwardedIRQR0;
161 /** Statistics for interrupt handlers - RC pointer. */
162 RCPTRTYPE(PSTAMCOUNTER) paStatForwardedIRQRC;
163
164 /** Host interrupt statistics (allocated on the hypervisor heap) - RC ptr. */
165 RCPTRTYPE(PSTAMCOUNTER) paStatHostIrqRC;
166 /** Host interrupt statistics (allocated on the hypervisor heap) - R3 ptr. */
167 R3PTRTYPE(PSTAMCOUNTER) paStatHostIrqR3;
168 /** Host interrupt statistics (allocated on the hypervisor heap) - R0 ptr. */
169 R0PTRTYPE(PSTAMCOUNTER) paStatHostIrqR0;
170#endif
171} TRPM;
172
173/** Pointer to TRPM Data. */
174typedef TRPM *PTRPM;
175
176
177/**
178 * Converts a TRPMCPU pointer into a VM pointer.
179 * @returns Pointer to the VM structure the TRPMCPU is part of.
180 * @param pTRPM Pointer to TRPMCPU instance data.
181 */
182#define TRPMCPU_2_VM(pTrpmCpu) ( (PVM)((uint8_t *)(pTrpmCpu) - (pTrpmCpu)->offVM) )
183
184/**
185 * Converts a TRPMCPU pointer into a VMCPU pointer.
186 * @returns Pointer to the VMCPU structure the TRPMCPU is part of.
187 * @param pTRPM Pointer to TRPMCPU instance data.
188 */
189#define TRPMCPU_2_VMCPU(pTrpmCpu) ( (PVMCPU)((uint8_t *)(pTrpmCpu) - (pTrpmCpu)->offVMCpu) )
190
191
192/**
193 * Per CPU data for TRPM.
194 */
195typedef struct TRPMCPU
196{
197 /** Offset into the VM structure.
198 * See TRPMCPU_2_VM(). */
199 uint32_t offVM;
200 /** Offset into the VMCPU structure.
201 * See TRPMCPU_2_VMCPU(). */
202 uint32_t offVMCpu;
203
204 /** Active Interrupt or trap vector number.
205 * If not UINT32_MAX this indicates that we're currently processing a
206 * interrupt, trap, fault, abort, whatever which have arrived at that
207 * vector number.
208 */
209 uint32_t uActiveVector;
210
211 /** Active trap type. */
212 TRPMEVENT enmActiveType;
213
214 /** Errorcode for the active interrupt/trap. */
215 RTGCUINT uActiveErrorCode; /**< @todo don't use RTGCUINT */
216
217 /** CR2 at the time of the active exception. */
218 RTGCUINTPTR uActiveCR2;
219
220 /** Saved trap vector number. */
221 RTGCUINT uSavedVector; /**< @todo don't use RTGCUINT */
222
223 /** Saved trap type. */
224 TRPMEVENT enmSavedType;
225
226 /** Saved errorcode. */
227 RTGCUINT uSavedErrorCode;
228
229 /** Saved cr2. */
230 RTGCUINTPTR uSavedCR2;
231
232 /** Previous trap vector # - for debugging. */
233 RTGCUINT uPrevVector;
234} TRPMCPU;
235
236/** Pointer to TRPMCPU Data. */
237typedef TRPMCPU *PTRPMCPU;
238
239#pragma pack()
240
241
242VMMRCDECL(int) trpmRCGuestIDTWriteHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
243VMMRCDECL(int) trpmRCShadowIDTWriteHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
244
245/**
246 * Clear guest trap/interrupt gate handler
247 *
248 * @returns VBox status code.
249 * @param pVM Pointer to the VM.
250 * @param iTrap Interrupt/trap number.
251 */
252VMMDECL(int) trpmClearGuestTrapHandler(PVM pVM, unsigned iTrap);
253
254
255#ifdef IN_RING3
256
257/**
258 * Clear passthrough interrupt gate handler (reset to default handler)
259 *
260 * @returns VBox status code.
261 * @param pVM Pointer to the VM.
262 * @param iTrap Trap/interrupt gate number.
263 */
264VMMR3DECL(int) trpmR3ClearPassThroughHandler(PVM pVM, unsigned iTrap);
265
266#endif
267
268
269#ifdef IN_RING0
270
271/**
272 * Calls the interrupt gate as if we received an interrupt while in Ring-0.
273 *
274 * @param uIP The interrupt gate IP.
275 * @param SelCS The interrupt gate CS.
276 * @param RSP The interrupt gate RSP. ~0 if no stack switch should take place. (only AMD64)
277 */
278DECLASM(void) trpmR0DispatchHostInterrupt(RTR0UINTPTR uIP, RTSEL SelCS, RTR0UINTPTR RSP);
279
280/**
281 * Issues a software interrupt to the specified interrupt vector.
282 *
283 * @param uActiveVector The vector number.
284 */
285DECLASM(void) trpmR0DispatchHostInterruptSimple(RTUINT uActiveVector);
286
287#endif /* IN_RING0 */
288
289/** @} */
290
291RT_C_DECLS_END
292
293#endif
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use