VirtualBox

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

Last change on this file since 6529 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

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