VirtualBox

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

Last change on this file since 25414 was 20374, checked in by vboxsync, 15 years ago

*: s/RT_\(BEGIN|END\)_DECLS/RT_C_DECLS_\1/g

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

© 2023 Oracle
ContactPrivacy policyTerms of Use