VirtualBox

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

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

removed obsolete api.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 12.6 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 eflags Current eflags
145 * @param Sel Selector part.
146 * @param Addr Address part.
147 */
148SELMDECL(RTGCPTR) SELMToFlat(PVM pVM, X86EFLAGS eflags, RTSEL Sel, CPUMSELREGHID *pHiddenSel, RTGCPTR Addr);
149
150/** Flags for SELMToFlatEx().
151 * @{ */
152/** Don't check the RPL,DPL or CPL. */
153#define SELMTOFLAT_FLAGS_NO_PL BIT(8)
154/** Flags contains CPL information. */
155#define SELMTOFLAT_FLAGS_HAVE_CPL BIT(9)
156/** CPL is 3. */
157#define SELMTOFLAT_FLAGS_CPL3 3
158/** CPL is 2. */
159#define SELMTOFLAT_FLAGS_CPL2 2
160/** CPL is 1. */
161#define SELMTOFLAT_FLAGS_CPL1 1
162/** CPL is 0. */
163#define SELMTOFLAT_FLAGS_CPL0 0
164/** Get the CPL from the flags. */
165#define SELMTOFLAT_FLAGS_CPL(fFlags) ((fFlags) & X86_SEL_RPL)
166/** Allow converting using Hypervisor GDT entries. */
167#define SELMTOFLAT_FLAGS_HYPER BIT(10)
168/** @} */
169
170/**
171 * Converts a GC selector based address to a flat address.
172 *
173 * Some basic checking is done, but not all kinds yet.
174 *
175 * @returns VBox status
176 * @param pVM VM Handle.
177 * @param eflags Current eflags
178 * @param Sel Selector part.
179 * @param Addr Address part.
180 * @param fFlags SELMTOFLAT_FLAGS_*
181 * GDT entires are valid.
182 * @param ppvGC Where to store the GC flat address.
183 * @param pcb Where to store the bytes from *ppvGC which can be accessed according to
184 * the selector. NULL is allowed.
185 */
186SELMDECL(int) SELMToFlatEx(PVM pVM, X86EFLAGS eflags, RTSEL Sel, RTGCPTR Addr, unsigned fFlags, PRTGCPTR ppvGC, uint32_t *pcb);
187
188/**
189 * Validates and converts a GC selector based code address to a flat address.
190 *
191 * @returns Flat address.
192 * @param pVM VM Handle.
193 * @param eflags Current eflags
194 * @param SelCPL Current privilege level. Get this from SS - CS might be conforming!
195 * A full selector can be passed, we'll only use the RPL part.
196 * @param SelCS Selector part.
197 * @param pHiddenSel The hidden CS selector register.
198 * @param Addr Address part.
199 * @param ppvFlat Where to store the flat address.
200 */
201SELMDECL(int) SELMValidateAndConvertCSAddr(PVM pVM, X86EFLAGS eflags, RTSEL SelCPL, RTSEL SelCS, CPUMSELREGHID *pHiddenCSSel, RTGCPTR Addr, PRTGCPTR ppvFlat);
202
203/**
204 * Checks if a selector is 32-bit or 16-bit.
205 *
206 * @returns True if it is 32-bit.
207 * @returns False if it is 16-bit.
208 * @param pVM VM Handle.
209 * @param eflags Current eflags register
210 * @param Sel The selector.
211 * @param pHiddenSel The hidden selector register.
212 */
213SELMDECL(bool) SELMIsSelector32Bit(PVM pVM, X86EFLAGS eflags, RTSEL Sel, CPUMSELREGHID *pHiddenSel);
214
215/**
216 * Returns flat address and limit of LDT by LDT selector.
217 *
218 * Fully validate selector.
219 *
220 * @returns VBox status.
221 * @param pVM VM Handle.
222 * @param SelLdt LDT selector.
223 * @param ppvLdt Where to store the flat address of LDT.
224 * @param pcbLimit Where to store LDT limit.
225 */
226SELMDECL(int) SELMGetLDTFromSel(PVM pVM, RTSEL SelLdt, PRTGCPTR ppvLdt, unsigned *pcbLimit);
227
228
229/**
230 * Selector information structure.
231 */
232typedef struct SELMSELINFO
233{
234 /** The base address. */
235 RTGCPTR GCPtrBase;
236 /** The limit (-1). */
237 RTGCUINTPTR cbLimit;
238 /** The raw descriptor. */
239 VBOXDESC Raw;
240 /** The selector. */
241 RTSEL Sel;
242 /** Set if the selector is used by the hypervisor. */
243 bool fHyper;
244 /** Set if the selector is a real mode segment. */
245 bool fRealMode;
246} SELMSELINFO;
247/** Pointer to a SELM selector information struct. */
248typedef SELMSELINFO *PSELMSELINFO;
249/** Pointer to a const SELM selector information struct. */
250typedef const SELMSELINFO *PCSELMSELINFO;
251
252/**
253 * Validates a CS selector.
254 *
255 * @returns VBox status code.
256 * @param pSelInfo Pointer to the selector information for the CS selector.
257 * @param SelCPL The selector defining the CPL (SS).
258 */
259SELMDECL(int) SELMSelInfoValidateCS(PCSELMSELINFO pSelInfo, RTSEL SelCPL);
260
261
262
263#ifdef IN_RING3
264/** @defgroup grp_selm_r3 The Selector Monitor(/Manager) API
265 * @ingroup grp_selm
266 * @{
267 */
268
269/**
270 * Initializes the SELM.
271 *
272 * @returns VBox status code.
273 * @param pVM The VM to operate on.
274 */
275SELMR3DECL(int) SELMR3Init(PVM pVM);
276
277/**
278 * Finalizes HMA page attributes.
279 *
280 * @returns VBox status code.
281 * @param pVM The VM handle.
282 */
283SELMR3DECL(int) SELMR3InitFinalize(PVM pVM);
284
285/**
286 * Applies relocations to data and code managed by this
287 * component. This function will be called at init and
288 * whenever the VMM need to relocate it self inside the GC.
289 *
290 * @param pVM The VM.
291 */
292SELMR3DECL(void) SELMR3Relocate(PVM pVM);
293
294/**
295 * Notification callback which is called whenever there is a chance that a CR3
296 * value might have changed.
297 * This is called by PGM.
298 *
299 * @param pVM The VM handle
300 */
301SELMR3DECL(void) SELMR3PagingModeChanged(PVM pVM);
302
303/**
304 * Terminates the SELM.
305 *
306 * Termination means cleaning up and freeing all resources,
307 * the VM it self is at this point powered off or suspended.
308 *
309 * @returns VBox status code.
310 * @param pVM The VM to operate on.
311 */
312SELMR3DECL(int) SELMR3Term(PVM pVM);
313
314/**
315 * The VM is being reset.
316 *
317 * For the SELM component this means that any GDT/LDT/TSS monitors
318 * needs to be removed.
319 *
320 * @param pVM VM handle.
321 */
322SELMR3DECL(void) SELMR3Reset(PVM pVM);
323
324/**
325 * Updates the Guest GDT & LDT virtualization based on current CPU state.
326 *
327 * @returns VBox status code.
328 * @param pVM The VM to operate on.
329 */
330SELMR3DECL(int) SELMR3UpdateFromCPUM(PVM pVM);
331
332/**
333 * Compares the Guest GDT and LDT with the shadow tables.
334 * This is a VBOX_STRICT only function.
335 *
336 * @returns VBox status code.
337 * @param pVM The VM Handle.
338 */
339SELMR3DECL(int) SELMR3DebugCheck(PVM pVM);
340#ifdef VBOX_STRICT
341# define SELMR3DEBUGCHECK(pVM) SELMR3DebugCheck(pVM)
342#else
343# define SELMR3DEBUGCHECK(pVM) do { } while (0)
344#endif
345
346/**
347 * Check if the TSS ring 0 stack selector and pointer were updated (for now)
348 *
349 * @returns VBox status code.
350 * @param pVM The VM to operate on.
351 */
352SELMR3DECL(int) SELMR3SyncTSS(PVM pVM);
353
354/**
355 * Gets information about a selector.
356 * Intended for the debugger mostly and will prefer the guest
357 * descriptor tables over the shadow ones.
358 *
359 * @returns VINF_SUCCESS on success.
360 * @returns VERR_INVALID_SELECTOR if the selector isn't fully inside the descriptor table.
361 * @returns VERR_SELECTOR_NOT_PRESENT if the selector wasn't present.
362 * @returns VERR_PAGE_TABLE_NOT_PRESENT or VERR_PAGE_NOT_PRESENT if the pagetable or page
363 * backing the selector table wasn't present.
364 * @returns Other VBox status code on other errros.
365 *
366 * @param pVM VM handle.
367 * @param Sel The selector to get info about.
368 * @param pSelInfo Where to store the information.
369 */
370SELMR3DECL(int) SELMR3GetSelectorInfo(PVM pVM, RTSEL Sel, PSELMSELINFO pSelInfo);
371
372/**
373 * Gets information about a selector from the shadow tables.
374 *
375 * This is intended to be faster than the SELMR3GetSelectorInfo() method, but requires
376 * that the caller ensures that the shadow tables are up to date.
377 *
378 * @returns VINF_SUCCESS on success.
379 * @returns VERR_INVALID_SELECTOR if the selector isn't fully inside the descriptor table.
380 * @returns VERR_SELECTOR_NOT_PRESENT if the selector wasn't present.
381 * @returns VERR_PAGE_TABLE_NOT_PRESENT or VERR_PAGE_NOT_PRESENT if the pagetable or page
382 * backing the selector table wasn't present.
383 * @returns Other VBox status code on other errors.
384 *
385 * @param pVM VM handle.
386 * @param Sel The selector to get info about.
387 * @param pSelInfo Where to store the information.
388 */
389SELMR3DECL(int) SELMR3GetShadowSelectorInfo(PVM pVM, RTSEL Sel, PSELMSELINFO pSelInfo);
390
391/**
392 * Validates the RawR0 TSS values against the one in the Guest TSS.
393 *
394 * @returns true if it matches.
395 * @returns false and assertions on mismatch..
396 * @param pVM VM Handle.
397 */
398SELMR3DECL(bool) SELMR3CheckTSS(PVM pVM);
399
400
401/**
402 * Disable GDT/LDT/TSS monitoring and syncing
403 *
404 * @param pVM The VM to operate on.
405 */
406SELMR3DECL(void) SELMR3DisableMonitoring(PVM pVM);
407
408
409/**
410 * Dumps a descriptor.
411 *
412 * @param Desc Descriptor to dump.
413 * @param Sel Selector number.
414 * @param pszMsg Message to prepend the log entry with.
415 */
416SELMR3DECL(void) SELMR3DumpDescriptor(VBOXDESC Desc, RTSEL Sel, const char *pszMsg);
417
418/**
419 * Dumps the hypervisor GDT.
420 *
421 * @param pVM VM handle.
422 */
423SELMR3DECL(void) SELMR3DumpHyperGDT(PVM pVM);
424
425/**
426 * Dumps the hypervisor LDT.
427 *
428 * @param pVM VM handle.
429 */
430SELMR3DECL(void) SELMR3DumpHyperLDT(PVM pVM);
431
432/**
433 * Dumps the guest GDT.
434 *
435 * @param pVM VM handle.
436 */
437SELMR3DECL(void) SELMR3DumpGuestGDT(PVM pVM);
438
439/**
440 * Dumps the guest LDT.
441 *
442 * @param pVM VM handle.
443 */
444SELMR3DECL(void) SELMR3DumpGuestLDT(PVM pVM);
445
446/** @} */
447#endif
448
449
450/** @} */
451__END_DECLS
452
453
454#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