VirtualBox

source: vbox/trunk/include/VBox/selm.h@ 229

Last change on this file since 229 was 99, checked in by vboxsync, 18 years ago

Update

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 12.7 KB
Line 
1/** @file
2 * SELM - The Selector Monitor(/Manager).
3 */
4
5/*
6 * Copyright (C) 2006 InnoTek Systemberatung GmbH
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * If you received this file as part of a commercial VirtualBox
17 * distribution, then only the terms of your commercial VirtualBox
18 * license agreement apply instead of the previous paragraph.
19 */
20
21#ifndef __VBox_selm_h__
22#define __VBox_selm_h__
23
24#include <VBox/cdefs.h>
25#include <VBox/types.h>
26#include <VBox/cpum.h>
27
28
29__BEGIN_DECLS
30
31/** @defgroup grp_selm The Selector Monitor(/Manager) API
32 * @{
33 */
34
35/**
36 * Returns Hypervisor's Trap 08 (\#DF) selector.
37 *
38 * @returns Hypervisor's Trap 08 (\#DF) selector.
39 * @param pVM VM Handle.
40 */
41SELMDECL(RTSEL) SELMGetTrap8Selector(PVM pVM);
42
43/**
44 * Sets EIP of Hypervisor's Trap 08 (\#DF) TSS.
45 *
46 * @param pVM VM Handle.
47 * @param u32EIP EIP of Trap 08 handler.
48 */
49SELMDECL(void) SELMSetTrap8EIP(PVM pVM, uint32_t u32EIP);
50
51/**
52 * Sets ss:esp for ring1 in main Hypervisor's TSS.
53 *
54 * @param pVM VM Handle.
55 * @param ss Ring1 SS register value.
56 * @param esp Ring1 ESP register value.
57 */
58SELMDECL(void) SELMSetRing1Stack(PVM pVM, uint32_t ss, uint32_t esp);
59
60/**
61 * Gets ss:esp for ring1 in main Hypervisor's TSS.
62 *
63 * @returns VBox status code.
64 * @param pVM VM Handle.
65 * @param pSS Ring1 SS register value.
66 * @param pEsp Ring1 ESP register value.
67 */
68SELMDECL(int) SELMGetRing1Stack(PVM pVM, uint32_t *pSS, uint32_t *pEsp);
69
70/**
71 * Returns Guest TSS pointer
72 *
73 * @param pVM VM Handle.
74 */
75SELMDECL(RTGCPTR) SELMGetGuestTSS(PVM pVM);
76
77/**
78 * Gets the hypervisor code selector (CS).
79 * @returns CS selector.
80 * @param pVM The VM handle.
81 */
82SELMDECL(RTSEL) SELMGetHyperCS(PVM pVM);
83
84/**
85 * Gets the 64-mode hypervisor code selector (CS64).
86 * @returns CS selector.
87 * @param pVM The VM handle.
88 */
89SELMDECL(RTSEL) SELMGetHyperCS64(PVM pVM);
90
91/**
92 * Gets the hypervisor data selector (DS).
93 * @returns DS selector.
94 * @param pVM The VM handle.
95 */
96SELMDECL(RTSEL) SELMGetHyperDS(PVM pVM);
97
98/**
99 * Gets the hypervisor TSS selector.
100 * @returns TSS selector.
101 * @param pVM The VM handle.
102 */
103SELMDECL(RTSEL) SELMGetHyperTSS(PVM pVM);
104
105/**
106 * Gets the hypervisor TSS Trap 8 selector.
107 * @returns TSS Trap 8 selector.
108 * @param pVM The VM handle.
109 */
110SELMDECL(RTSEL) SELMGetHyperTSSTrap08(PVM pVM);
111
112/**
113 * Gets the address for the hypervisor GDT.
114 *
115 * @returns The GDT address.
116 * @param pVM The VM handle.
117 * @remark This is intended only for very special use, like in the world
118 * switchers. Don't exploit this API!
119 */
120SELMDECL(RTGCPTR) SELMGetHyperGDT(PVM pVM);
121
122/**
123 * Gets info about the current TSS.
124 *
125 * @returns VBox status code.
126 * @retval VINF_SUCCESS if we've got a TSS loaded.
127 * @retval VERR_SELM_NO_TSS if we haven't got a TSS (rather unlikely).
128 *
129 * @param pVM The VM handle.
130 * @param pGCPtrTss Where to store the TSS address.
131 * @param pcbTss Where to store the TSS size limit.
132 * @param pfCanHaveIOBitmap Where to store the can-have-I/O-bitmap indicator. (optional)
133 */
134SELMDECL(int) SELMGetTSSInfo(PVM pVM, PRTGCUINTPTR pGCPtrTss, PRTGCUINTPTR pcbTss, bool *pfCanHaveIOBitmap);
135
136/**
137 * Converts a GC selector based address to a flat address.
138 *
139 * No limit checks are done. Use the SELMToFlat*() or SELMValidate*() functions
140 * for that.
141 *
142 * @returns Flat address.
143 * @param pVM VM Handle.
144 * @param Sel Selector part.
145 * @param Addr Address part.
146 */
147SELMDECL(RTGCPTR) SELMToFlat(PVM pVM, RTSEL Sel, CPUMSELREGHID *pHiddenSel, RTGCPTR Addr);
148
149/** Flags for SELMToFlatEx().
150 * @{ */
151/** Don't check the RPL,DPL or CPL. */
152#define SELMTOFLAT_FLAGS_NO_PL BIT(8)
153/** Flags contains CPL information. */
154#define SELMTOFLAT_FLAGS_HAVE_CPL BIT(9)
155/** CPL is 3. */
156#define SELMTOFLAT_FLAGS_CPL3 3
157/** CPL is 2. */
158#define SELMTOFLAT_FLAGS_CPL2 2
159/** CPL is 1. */
160#define SELMTOFLAT_FLAGS_CPL1 1
161/** CPL is 0. */
162#define SELMTOFLAT_FLAGS_CPL0 0
163/** Get the CPL from the flags. */
164#define SELMTOFLAT_FLAGS_CPL(fFlags) ((fFlags) & X86_SEL_RPL)
165/** Allow converting using Hypervisor GDT entries. */
166#define SELMTOFLAT_FLAGS_HYPER BIT(10)
167/** @} */
168
169/**
170 * Converts a GC selector based address to a flat address.
171 *
172 * Some basic checking is done, but not all kinds yet.
173 *
174 * @returns VBox status
175 * @param pVM VM Handle.
176 * @param Sel Selector part.
177 * @param Addr Address part.
178 * @param fFlags SELMTOFLAT_FLAGS_*
179 * GDT entires are valid.
180 * @param ppvGC Where to store the GC flat address.
181 * @param pcb Where to store the bytes from *ppvGC which can be accessed according to
182 * the selector. NULL is allowed.
183 */
184SELMDECL(int) SELMToFlatEx(PVM pVM, RTSEL Sel, RTGCPTR Addr, unsigned fFlags, PRTGCPTR ppvGC, uint32_t *pcb);
185
186/**
187 * Validates and converts a GC selector based code address to a flat address.
188 *
189 * @returns Flat address.
190 * @param pVM VM Handle.
191 * @param SelCPL Current privilege level. Get this from SS - CS might be conforming!
192 * A full selector can be passed, we'll only use the RPL part.
193 * @param SelCS Selector part.
194 * @param pHiddenSel The hidden CS selector register.
195 * @param Addr Address part.
196 * @param ppvFlat Where to store the flat address.
197 */
198SELMDECL(int) SELMValidateAndConvertCSAddr(PVM pVM, RTSEL SelCPL, RTSEL SelCS, CPUMSELREGHID *pHiddenCSSel, RTGCPTR Addr, PRTGCPTR ppvFlat);
199
200/**
201 * Checks if a selector is 32-bit or 16-bit.
202 *
203 * @returns True if it is 32-bit.
204 * @returns False if it is 16-bit.
205 * @param pVM VM Handle.
206 * @param Sel The selector.
207 * @param pHiddenSel The hidden selector register.
208 */
209SELMDECL(bool) SELMIsSelector32Bit(PVM pVM, RTSEL Sel, CPUMSELREGHID *pHiddenSel);
210
211/**
212 * Returns flat address and limit of LDT by LDT selector.
213 *
214 * Fully validate selector.
215 *
216 * @returns VBox status.
217 * @param pVM VM Handle.
218 * @param SelLdt LDT selector.
219 * @param ppvLdt Where to store the flat address of LDT.
220 * @param pcbLimit Where to store LDT limit.
221 */
222SELMDECL(int) SELMGetLDTFromSel(PVM pVM, RTSEL SelLdt, PRTGCPTR ppvLdt, unsigned *pcbLimit);
223
224
225/**
226 * Selector information structure.
227 */
228typedef struct SELMSELINFO
229{
230 /** The base address. */
231 RTGCPTR GCPtrBase;
232 /** The limit (-1). */
233 RTGCUINTPTR cbLimit;
234 /** The raw descriptor. */
235 VBOXDESC Raw;
236 /** The selector. */
237 RTSEL Sel;
238 /** Set if the selector is used by the hypervisor. */
239 bool fHyper;
240 /** Set if the selector is a real mode segment. */
241 bool fRealMode;
242} SELMSELINFO;
243/** Pointer to a SELM selector information struct. */
244typedef SELMSELINFO *PSELMSELINFO;
245/** Pointer to a const SELM selector information struct. */
246typedef const SELMSELINFO *PCSELMSELINFO;
247
248/**
249 * Validates a CS selector.
250 *
251 * @returns VBox status code.
252 * @param pSelInfo Pointer to the selector information for the CS selector.
253 * @param SelCPL The selector defining the CPL (SS).
254 */
255SELMDECL(int) SELMSelInfoValidateCS(PCSELMSELINFO pSelInfo, RTSEL SelCPL);
256
257
258
259#ifdef IN_RING3
260/** @defgroup grp_selm_r3 The Selector Monitor(/Manager) API
261 * @ingroup grp_selm
262 * @{
263 */
264
265/**
266 * Initializes the SELM.
267 *
268 * @returns VBox status code.
269 * @param pVM The VM to operate on.
270 */
271SELMR3DECL(int) SELMR3Init(PVM pVM);
272
273/**
274 * Finalizes HMA page attributes.
275 *
276 * @returns VBox status code.
277 * @param pVM The VM handle.
278 */
279SELMR3DECL(int) SELMR3InitFinalize(PVM pVM);
280
281/**
282 * Applies relocations to data and code managed by this
283 * component. This function will be called at init and
284 * whenever the VMM need to relocate it self inside the GC.
285 *
286 * @param pVM The VM.
287 */
288SELMR3DECL(void) SELMR3Relocate(PVM pVM);
289
290/**
291 * Notification callback which is called whenever there is a chance that a CR3
292 * value might have changed.
293 * This is called by PGM.
294 *
295 * @param pVM The VM handle
296 */
297SELMR3DECL(void) SELMR3PagingModeChanged(PVM pVM);
298
299/**
300 * Terminates the SELM.
301 *
302 * Termination means cleaning up and freeing all resources,
303 * the VM it self is at this point powered off or suspended.
304 *
305 * @returns VBox status code.
306 * @param pVM The VM to operate on.
307 */
308SELMR3DECL(int) SELMR3Term(PVM pVM);
309
310/**
311 * The VM is being reset.
312 *
313 * For the SELM component this means that any GDT/LDT/TSS monitors
314 * needs to be removed.
315 *
316 * @param pVM VM handle.
317 */
318SELMR3DECL(void) SELMR3Reset(PVM pVM);
319
320/**
321 * Sets up the virtualization of a guest GDT.
322 *
323 * @returns VBox status code.
324 * @param pVM The VM to operate on.
325 * @param paGDTEs Pointer to GDT array.
326 * @param cGDTEs Number of entries in the GDT array.
327 */
328SELMR3DECL(int) SELMR3GdtSetup(PVM pVM, PCVBOXDESC paGDTEs, unsigned cGDTEs);
329
330/**
331 * Updates the Guest GDT & LDT virtualization based on current CPU state.
332 *
333 * @returns VBox status code.
334 * @param pVM The VM to operate on.
335 */
336SELMR3DECL(int) SELMR3UpdateFromCPUM(PVM pVM);
337
338/**
339 * Compares the Guest GDT and LDT with the shadow tables.
340 * This is a VBOX_STRICT only function.
341 *
342 * @returns VBox status code.
343 * @param pVM The VM Handle.
344 */
345SELMR3DECL(int) SELMR3DebugCheck(PVM pVM);
346#ifdef VBOX_STRICT
347# define SELMR3DEBUGCHECK(pVM) SELMR3DebugCheck(pVM)
348#else
349# define SELMR3DEBUGCHECK(pVM) do { } while (0)
350#endif
351
352/**
353 * Check if the TSS ring 0 stack selector and pointer were updated (for now)
354 *
355 * @returns VBox status code.
356 * @param pVM The VM to operate on.
357 */
358SELMR3DECL(int) SELMR3SyncTSS(PVM pVM);
359
360/**
361 * Gets information about a selector.
362 * Intended for the debugger mostly and will prefer the guest
363 * descriptor tables over the shadow ones.
364 *
365 * @returns VINF_SUCCESS on success.
366 * @returns VERR_INVALID_SELECTOR if the selector isn't fully inside the descriptor table.
367 * @returns VERR_SELECTOR_NOT_PRESENT if the selector wasn't present.
368 * @returns VERR_PAGE_TABLE_NOT_PRESENT or VERR_PAGE_NOT_PRESENT if the pagetable or page
369 * backing the selector table wasn't present.
370 * @returns Other VBox status code on other errros.
371 *
372 * @param pVM VM handle.
373 * @param Sel The selector to get info about.
374 * @param pSelInfo Where to store the information.
375 */
376SELMR3DECL(int) SELMR3GetSelectorInfo(PVM pVM, RTSEL Sel, PSELMSELINFO pSelInfo);
377
378/**
379 * Gets information about a selector from the shadow tables.
380 *
381 * This is intended to be faster than the SELMR3GetSelectorInfo() method, but requires
382 * that the caller ensures that the shadow tables are up to date.
383 *
384 * @returns VINF_SUCCESS on success.
385 * @returns VERR_INVALID_SELECTOR if the selector isn't fully inside the descriptor table.
386 * @returns VERR_SELECTOR_NOT_PRESENT if the selector wasn't present.
387 * @returns VERR_PAGE_TABLE_NOT_PRESENT or VERR_PAGE_NOT_PRESENT if the pagetable or page
388 * backing the selector table wasn't present.
389 * @returns Other VBox status code on other errors.
390 *
391 * @param pVM VM handle.
392 * @param Sel The selector to get info about.
393 * @param pSelInfo Where to store the information.
394 */
395SELMR3DECL(int) SELMR3GetShadowSelectorInfo(PVM pVM, RTSEL Sel, PSELMSELINFO pSelInfo);
396
397/**
398 * Validates the RawR0 TSS values against the one in the Guest TSS.
399 *
400 * @returns true if it matches.
401 * @returns false and assertions on mismatch..
402 * @param pVM VM Handle.
403 */
404SELMR3DECL(bool) SELMR3CheckTSS(PVM pVM);
405
406
407/**
408 * Disable GDT/LDT/TSS monitoring and syncing
409 *
410 * @param pVM The VM to operate on.
411 */
412SELMR3DECL(void) SELMR3DisableMonitoring(PVM pVM);
413
414
415/**
416 * Dumps a descriptor.
417 *
418 * @param Desc Descriptor to dump.
419 * @param Sel Selector number.
420 * @param pszMsg Message to prepend the log entry with.
421 */
422SELMR3DECL(void) SELMR3DumpDescriptor(VBOXDESC Desc, RTSEL Sel, const char *pszMsg);
423
424/**
425 * Dumps the hypervisor GDT.
426 *
427 * @param pVM VM handle.
428 */
429SELMR3DECL(void) SELMR3DumpHyperGDT(PVM pVM);
430
431/**
432 * Dumps the hypervisor LDT.
433 *
434 * @param pVM VM handle.
435 */
436SELMR3DECL(void) SELMR3DumpHyperLDT(PVM pVM);
437
438/**
439 * Dumps the guest GDT.
440 *
441 * @param pVM VM handle.
442 */
443SELMR3DECL(void) SELMR3DumpGuestGDT(PVM pVM);
444
445/**
446 * Dumps the guest LDT.
447 *
448 * @param pVM VM handle.
449 */
450SELMR3DECL(void) SELMR3DumpGuestLDT(PVM pVM);
451
452/** @} */
453#endif
454
455
456/** @} */
457__END_DECLS
458
459
460#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