VirtualBox

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

Last change on this file since 12866 was 10087, checked in by vboxsync, 16 years ago

Fixed SELMR3GetSelectorInfo for 64 bits mode.
Got rid of obsolete VBOXDESC.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 7.7 KB
Line 
1/* $Id: SELMInternal.h 10087 2008-07-02 09:27:32Z vboxsync $ */
2/** @file
3 * SELM - 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 ___SELMInternal_h
23#define ___SELMInternal_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#if !defined(IN_SELM_R3) && !defined(IN_SELM_R0) && !defined(IN_SELM_GC)
32# error "Not in SELM! This is an internal header!"
33#endif
34
35/** @defgroup grp_selm_int Internals
36 * @ingroup grp_selm
37 * @internal
38 * @{
39 */
40
41/** The number of GDTS allocated for our GDT. (full size) */
42#define SELM_GDT_ELEMENTS 8192
43
44/** aHyperSel index to retrieve hypervisor selectors */
45/** The Flat CS selector used by the VMM inside the GC. */
46#define SELM_HYPER_SEL_CS 0
47/** The Flat DS selector used by the VMM inside the GC. */
48#define SELM_HYPER_SEL_DS 1
49/** The 64-bit mode CS selector used by the VMM inside the GC. */
50#define SELM_HYPER_SEL_CS64 2
51/** The TSS selector used by the VMM inside the GC. */
52#define SELM_HYPER_SEL_TSS 3
53/** The TSS selector for taking trap 08 (\#DF). */
54#define SELM_HYPER_SEL_TSS_TRAP08 4
55/** Number of GDTs we need for internal use */
56#define SELM_HYPER_SEL_MAX (SELM_HYPER_SEL_TSS_TRAP08 + 1)
57
58
59/** Default GDT selectors we use for the hypervisor. */
60#define SELM_HYPER_DEFAULT_SEL_CS ((SELM_GDT_ELEMENTS - 0x1) << 3)
61#define SELM_HYPER_DEFAULT_SEL_DS ((SELM_GDT_ELEMENTS - 0x2) << 3)
62#define SELM_HYPER_DEFAULT_SEL_CS64 ((SELM_GDT_ELEMENTS - 0x3) << 3)
63#define SELM_HYPER_DEFAULT_SEL_TSS ((SELM_GDT_ELEMENTS - 0x4) << 3)
64#define SELM_HYPER_DEFAULT_SEL_TSS_TRAP08 ((SELM_GDT_ELEMENTS - 0x5) << 3)
65/** The lowest value default we use. */
66#define SELM_HYPER_DEFAULT_BASE SELM_HYPER_DEFAULT_SEL_TSS_TRAP08
67
68/**
69 * Converts a SELM pointer into a VM pointer.
70 * @returns Pointer to the VM structure the SELM is part of.
71 * @param pSELM Pointer to SELM instance data.
72 */
73#define SELM2VM(pSELM) ( (PVM)((char*)pSELM - pSELM->offVM) )
74
75
76
77/**
78 * SELM Data (part of VM)
79 */
80typedef struct SELM
81{
82 /** Offset to the VM structure.
83 * See SELM2VM(). */
84 RTINT offVM;
85
86 /* Flat CS, DS, 64 bit mode CS, TSS & trap 8 TSS. */
87 RTSEL aHyperSel[SELM_HYPER_SEL_MAX];
88
89 /** Pointer to the GCs - HC Ptr.
90 * This size is governed by SELM_GDT_ELEMENTS. */
91 R3R0PTRTYPE(PX86DESC) paGdtHC;
92 /** Pointer to the GCs - GC Ptr.
93 * This is not initialized until the first relocation because it's used to
94 * check if the shadow GDT virtual handler requires deregistration. */
95 RCPTRTYPE(PX86DESC) paGdtGC;
96 /** Current (last) Guest's GDTR. */
97 VBOXGDTR GuestGdtr;
98 /** The current (last) effective Guest GDT size. */
99 RTUINT cbEffGuestGdtLimit;
100
101 uint32_t padding0;
102
103 /** HC Pointer to the LDT shadow area placed in Hypervisor memory arena. */
104 R3PTRTYPE(void *) HCPtrLdt;
105 /** GC Pointer to the LDT shadow area placed in Hypervisor memory arena. */
106 RCPTRTYPE(void *) GCPtrLdt;
107#if GC_ARCH_BITS == 64
108 RTRCPTR padding1;
109#endif
110 /** GC Pointer to the current Guest's LDT. */
111 RTGCPTR GCPtrGuestLdt;
112 /** Current LDT limit, both Guest and Shadow. */
113 RTUINT cbLdtLimit;
114 /** Current LDT offset relative to pvLdt*. */
115 RTUINT offLdtHyper;
116#if HC_ARCH_BITS == 32 && GC_ARCH_BITS == 64
117 uint32_t padding2[2];
118#endif
119 /** TSS. (This is 16 byte aligned!)
120 * @todo I/O bitmap & interrupt redirection table? */
121 VBOXTSS Tss;
122
123 /** TSS for trap 08 (\#DF). */
124 VBOXTSS TssTrap08;
125
126 /** GC Pointer to the TSS shadow area (Tss) placed in Hypervisor memory arena. */
127 RCPTRTYPE(void *) GCPtrTss;
128#if GC_ARCH_BITS == 64
129 RTRCPTR padding3;
130#endif
131 /** GC Pointer to the current Guest's TSS. */
132 RTGCPTR GCPtrGuestTss;
133 /** The size of the guest TSS. */
134 RTUINT cbGuestTss;
135 /** Set if it's a 32-bit TSS. */
136 bool fGuestTss32Bit;
137 /** The size of the Guest's TSS part we're monitoring. */
138 RTUINT cbMonitoredGuestTss;
139 /** GC shadow TSS selector */
140 RTSEL GCSelTss;
141
142 /** Indicates that the Guest GDT access handler have been registered. */
143 bool fGDTRangeRegistered;
144
145 /** Indicates whether LDT/GDT/TSS monitoring and syncing is disabled. */
146 bool fDisableMonitoring;
147
148 /** Indicates whether the TSS stack selector & base address need to be refreshed. */
149 bool fSyncTSSRing0Stack;
150 /** alignment . */
151 RTUINT uPadding2;
152
153 /** SELMR3UpdateFromCPUM() profiling. */
154 STAMPROFILE StatUpdateFromCPUM;
155 /** SELMR3SyncTSS() profiling. */
156 STAMPROFILE StatTSSSync;
157
158 /** GC: The number of handled writes to the Guest's GDT. */
159 STAMCOUNTER StatGCWriteGuestGDTHandled;
160 /** GC: The number of unhandled write to the Guest's GDT. */
161 STAMCOUNTER StatGCWriteGuestGDTUnhandled;
162 /** GC: The number of times writes to Guest's LDT was detected. */
163 STAMCOUNTER StatGCWriteGuestLDT;
164 /** GC: The number of handled writes to the Guest's TSS. */
165 STAMCOUNTER StatGCWriteGuestTSSHandled;
166 /** GC: The number of handled writes to the Guest's TSS where we detected a change. */
167 STAMCOUNTER StatGCWriteGuestTSSHandledChanged;
168 /** GC: The number of handled redir writes to the Guest's TSS where we detected a change. */
169 STAMCOUNTER StatGCWriteGuestTSSRedir;
170 /** GC: The number of unhandled writes to the Guest's TSS. */
171 STAMCOUNTER StatGCWriteGuestTSSUnhandled;
172 /** The number of times we had to relocate our hypervisor selectors. */
173 STAMCOUNTER StatHyperSelsChanged;
174 /** The number of times we had find free hypervisor selectors. */
175 STAMCOUNTER StatScanForHyperSels;
176} SELM, *PSELM;
177
178__BEGIN_DECLS
179
180SELMGCDECL(int) selmgcGuestGDTWriteHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
181SELMGCDECL(int) selmgcGuestLDTWriteHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
182SELMGCDECL(int) selmgcGuestTSSWriteHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
183
184SELMGCDECL(int) selmgcShadowGDTWriteHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
185SELMGCDECL(int) selmgcShadowLDTWriteHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
186SELMGCDECL(int) selmgcShadowTSSWriteHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
187
188__END_DECLS
189
190#ifdef IN_RING3
191
192#endif
193
194/** @} */
195
196#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