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