VirtualBox

source: vbox/trunk/src/VBox/VMM/include/SELMInternal.h@ 48318

Last change on this file since 48318 was 45725, checked in by vboxsync, 11 years ago

nit

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 9.1 KB
Line 
1/* $Id: SELMInternal.h 45725 2013-04-25 10:19:31Z vboxsync $ */
2/** @file
3 * SELM - 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 ___SELMInternal_h
19#define ___SELMInternal_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#include <VBox/log.h>
26#include <iprt/x86.h>
27
28
29
30/** @defgroup grp_selm_int Internals
31 * @ingroup grp_selm
32 * @internal
33 * @{
34 */
35
36/** Enable or disable tracking of Shadow GDT/LDT/TSS.
37 * @{
38 */
39#if defined(VBOX_WITH_RAW_MODE) || defined(DOXYGEN_RUNNING)
40# define SELM_TRACK_SHADOW_GDT_CHANGES
41# define SELM_TRACK_SHADOW_LDT_CHANGES
42# define SELM_TRACK_SHADOW_TSS_CHANGES
43#endif
44/** @} */
45
46/** Enable or disable tracking of Guest GDT/LDT/TSS.
47 * @{
48 */
49#if defined(VBOX_WITH_RAW_MODE) || defined(DOXYGEN_RUNNING)
50# define SELM_TRACK_GUEST_GDT_CHANGES
51# define SELM_TRACK_GUEST_LDT_CHANGES
52# define SELM_TRACK_GUEST_TSS_CHANGES
53#endif
54/** @} */
55
56
57/** The number of GDTS allocated for our GDT. (full size) */
58#define SELM_GDT_ELEMENTS 8192
59
60/** aHyperSel index to retrieve hypervisor selectors */
61/** The Flat CS selector used by the VMM inside the GC. */
62#define SELM_HYPER_SEL_CS 0
63/** The Flat DS selector used by the VMM inside the GC. */
64#define SELM_HYPER_SEL_DS 1
65/** The 64-bit mode CS selector used by the VMM inside the GC. */
66#define SELM_HYPER_SEL_CS64 2
67/** The TSS selector used by the VMM inside the GC. */
68#define SELM_HYPER_SEL_TSS 3
69/** The TSS selector for taking trap 08 (\#DF). */
70#define SELM_HYPER_SEL_TSS_TRAP08 4
71/** Number of GDTs we need for internal use */
72#define SELM_HYPER_SEL_MAX (SELM_HYPER_SEL_TSS_TRAP08 + 1)
73
74
75/** Default GDT selectors we use for the hypervisor. */
76#define SELM_HYPER_DEFAULT_SEL_CS ((SELM_GDT_ELEMENTS - 0x1) << 3)
77#define SELM_HYPER_DEFAULT_SEL_DS ((SELM_GDT_ELEMENTS - 0x2) << 3)
78#define SELM_HYPER_DEFAULT_SEL_CS64 ((SELM_GDT_ELEMENTS - 0x3) << 3)
79#define SELM_HYPER_DEFAULT_SEL_TSS ((SELM_GDT_ELEMENTS - 0x4) << 3)
80#define SELM_HYPER_DEFAULT_SEL_TSS_TRAP08 ((SELM_GDT_ELEMENTS - 0x5) << 3)
81/** The lowest value default we use. */
82#define SELM_HYPER_DEFAULT_BASE SELM_HYPER_DEFAULT_SEL_TSS_TRAP08
83
84/**
85 * Converts a SELM pointer into a VM pointer.
86 * @returns Pointer to the VM structure the SELM is part of.
87 * @param pSELM Pointer to SELM instance data.
88 */
89#define SELM2VM(pSELM) ( (PVM)((char *)pSELM - pSELM->offVM) )
90
91
92
93/**
94 * SELM Data (part of VM)
95 */
96typedef struct SELM
97{
98 /** Offset to the VM structure.
99 * See SELM2VM(). */
100 RTINT offVM;
101
102 /** Flat CS, DS, 64 bit mode CS, TSS & trap 8 TSS. */
103 RTSEL aHyperSel[SELM_HYPER_SEL_MAX];
104
105 /** Pointer to the GCs - R3 Ptr.
106 * This size is governed by SELM_GDT_ELEMENTS. */
107 R3PTRTYPE(PX86DESC) paGdtR3;
108 /** Pointer to the GCs - RC Ptr.
109 * This is not initialized until the first relocation because it's used to
110 * check if the shadow GDT virtual handler requires deregistration. */
111 RCPTRTYPE(PX86DESC) paGdtRC;
112 /** Current (last) Guest's GDTR.
113 * The pGdt member is set to RTRCPTR_MAX if we're not monitoring the guest GDT. */
114 VBOXGDTR GuestGdtr;
115 /** The current (last) effective Guest GDT size. */
116 RTUINT cbEffGuestGdtLimit;
117
118 uint32_t padding0;
119
120 /** R3 pointer to the LDT shadow area in HMA. */
121 R3PTRTYPE(void *) pvLdtR3;
122 /** RC pointer to the LDT shadow area in HMA. */
123 RCPTRTYPE(void *) pvLdtRC;
124#if GC_ARCH_BITS == 64
125 RTRCPTR padding1;
126#endif
127 /** The address of the guest LDT.
128 * RTRCPTR_MAX if not monitored. */
129 RTGCPTR GCPtrGuestLdt;
130 /** Current LDT limit, both Guest and Shadow. */
131 RTUINT cbLdtLimit;
132 /** Current LDT offset relative to pvLdtR3/pvLdtRC. */
133 RTUINT offLdtHyper;
134#if HC_ARCH_BITS == 32 && GC_ARCH_BITS == 64
135 uint32_t padding2[2];
136#endif
137 /** TSS. (This is 16 byte aligned!)
138 * @todo I/O bitmap & interrupt redirection table? */
139 VBOXTSS Tss;
140
141 /** TSS for trap 08 (\#DF). */
142 VBOXTSS TssTrap08;
143
144 /** Monitored shadow TSS address. */
145 RCPTRTYPE(void *) pvMonShwTssRC;
146#if GC_ARCH_BITS == 64
147 RTRCPTR padding3;
148#endif
149 /** GC Pointer to the current Guest's TSS.
150 * RTRCPTR_MAX if not monitored. */
151 RTGCPTR GCPtrGuestTss;
152 /** The size of the guest TSS. */
153 RTUINT cbGuestTss;
154 /** Set if it's a 32-bit TSS. */
155 bool fGuestTss32Bit;
156 /** The size of the Guest's TSS part we're monitoring. */
157 RTUINT cbMonitoredGuestTss;
158 /** The guest TSS selector at last sync (part of monitoring).
159 * Contains RTSEL_MAX if not set. */
160 RTSEL GCSelTss;
161 /** The last known offset of the I/O bitmap.
162 * This is only used if we monitor the bitmap. */
163 uint16_t offGuestIoBitmap;
164
165 /** Indicates that the Guest GDT access handler have been registered. */
166 bool fGDTRangeRegistered;
167
168 /** Indicates whether the TSS stack selector & base address need to be refreshed. */
169 bool fSyncTSSRing0Stack;
170 bool fPadding2[4];
171
172 /** SELMR3UpdateFromCPUM() profiling. */
173 STAMPROFILE StatUpdateFromCPUM;
174 /** SELMR3SyncTSS() profiling. */
175 STAMPROFILE StatTSSSync;
176
177 /** GC: The number of handled writes to the Guest's GDT. */
178 STAMCOUNTER StatRCWriteGuestGDTHandled;
179 /** GC: The number of unhandled write to the Guest's GDT. */
180 STAMCOUNTER StatRCWriteGuestGDTUnhandled;
181 /** GC: The number of times writes to Guest's LDT was detected. */
182 STAMCOUNTER StatRCWriteGuestLDT;
183 /** GC: The number of handled writes to the Guest's TSS. */
184 STAMCOUNTER StatRCWriteGuestTSSHandled;
185 /** GC: The number of handled writes to the Guest's TSS where we detected a change. */
186 STAMCOUNTER StatRCWriteGuestTSSHandledChanged;
187 /** GC: The number of handled redir writes to the Guest's TSS where we detected a change. */
188 STAMCOUNTER StatRCWriteGuestTSSRedir;
189 /** GC: The number of unhandled writes to the Guest's TSS. */
190 STAMCOUNTER StatRCWriteGuestTSSUnhandled;
191 /** The number of times we had to relocate our hypervisor selectors. */
192 STAMCOUNTER StatHyperSelsChanged;
193 /** The number of times we had find free hypervisor selectors. */
194 STAMCOUNTER StatScanForHyperSels;
195 /** Counts the times we detected state selectors in SELMR3UpdateFromCPUM. */
196 STAMCOUNTER aStatDetectedStaleSReg[X86_SREG_COUNT];
197 /** Counts the times we were called with already state selectors in
198 * SELMR3UpdateFromCPUM. */
199 STAMCOUNTER aStatAlreadyStaleSReg[X86_SREG_COUNT];
200 /** Counts the times we found a stale selector becomming valid again. */
201 STAMCOUNTER StatStaleToUnstaleSReg;
202#ifdef VBOX_WITH_STATISTICS
203 /** Times we updated hidden selector registers in CPUMR3UpdateFromCPUM. */
204 STAMCOUNTER aStatUpdatedSReg[X86_SREG_COUNT];
205 STAMCOUNTER StatLoadHidSelGst;
206 STAMCOUNTER StatLoadHidSelShw;
207#endif
208 STAMCOUNTER StatLoadHidSelReadErrors;
209 STAMCOUNTER StatLoadHidSelGstNoGood;
210} SELM, *PSELM;
211
212RT_C_DECLS_BEGIN
213
214VMMRCDECL(int) selmRCGuestGDTWriteHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
215VMMRCDECL(int) selmRCGuestLDTWriteHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
216VMMRCDECL(int) selmRCGuestTSSWriteHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
217
218VMMRCDECL(int) selmRCShadowGDTWriteHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
219VMMRCDECL(int) selmRCShadowLDTWriteHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
220VMMRCDECL(int) selmRCShadowTSSWriteHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
221
222void selmSetRing1Stack(PVM pVM, uint32_t ss, RTGCPTR32 esp);
223#ifdef VBOX_WITH_RAW_RING1
224void selmSetRing2Stack(PVM pVM, uint32_t ss, RTGCPTR32 esp);
225#endif
226
227RT_C_DECLS_END
228
229/** @} */
230
231#endif
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