VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMAll/TRPMAll.cpp@ 41801

Last change on this file since 41801 was 41801, checked in by vboxsync, 12 years ago

Doxygen.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 32.4 KB
Line 
1/* $Id: TRPMAll.cpp 41801 2012-06-17 16:46:51Z vboxsync $ */
2/** @file
3 * TRPM - Trap Monitor - Any Context.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Oracle Corporation
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
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#define LOG_GROUP LOG_GROUP_TRPM
23#include <VBox/vmm/trpm.h>
24#include <VBox/vmm/pgm.h>
25#include <VBox/vmm/mm.h>
26#include <VBox/vmm/patm.h>
27#include <VBox/vmm/selm.h>
28#include <VBox/vmm/stam.h>
29#include "TRPMInternal.h"
30#include <VBox/vmm/vm.h>
31#include <VBox/err.h>
32#include <VBox/vmm/em.h>
33#include <VBox/log.h>
34#include <iprt/assert.h>
35#include <iprt/asm.h>
36#include <iprt/asm-amd64-x86.h>
37#include <iprt/param.h>
38#include <iprt/x86.h>
39#include "internal/pgm.h"
40
41
42
43/**
44 * Query info about the current active trap/interrupt.
45 * If no trap is active active an error code is returned.
46 *
47 * @returns VBox status code.
48 * @param pVCpu VMCPU handle.
49 * @param pu8TrapNo Where to store the trap number.
50 * @param pEnmType Where to store the trap type
51 */
52VMMDECL(int) TRPMQueryTrap(PVMCPU pVCpu, uint8_t *pu8TrapNo, TRPMEVENT *pEnmType)
53{
54 /*
55 * Check if we have a trap at present.
56 */
57 if (pVCpu->trpm.s.uActiveVector != ~0U)
58 {
59 if (pu8TrapNo)
60 *pu8TrapNo = (uint8_t)pVCpu->trpm.s.uActiveVector;
61 if (pEnmType)
62 *pEnmType = pVCpu->trpm.s.enmActiveType;
63 return VINF_SUCCESS;
64 }
65
66 return VERR_TRPM_NO_ACTIVE_TRAP;
67}
68
69
70/**
71 * Gets the trap number for the current trap.
72 *
73 * The caller is responsible for making sure there is an active trap which
74 * takes an error code when making this request.
75 *
76 * @returns The current trap number.
77 * @param pVCpu VMCPU handle.
78 */
79VMMDECL(uint8_t) TRPMGetTrapNo(PVMCPU pVCpu)
80{
81 AssertMsg(pVCpu->trpm.s.uActiveVector != ~0U, ("No active trap!\n"));
82 return (uint8_t)pVCpu->trpm.s.uActiveVector;
83}
84
85
86/**
87 * Gets the error code for the current trap.
88 *
89 * The caller is responsible for making sure there is an active trap which
90 * takes an error code when making this request.
91 *
92 * @returns Error code.
93 * @param pVCpu VMCPU handle.
94 */
95VMMDECL(RTGCUINT) TRPMGetErrorCode(PVMCPU pVCpu)
96{
97 AssertMsg(pVCpu->trpm.s.uActiveVector != ~0U, ("No active trap!\n"));
98#ifdef VBOX_STRICT
99 switch (pVCpu->trpm.s.uActiveVector)
100 {
101 case 0x0a:
102 case 0x0b:
103 case 0x0c:
104 case 0x0d:
105 case 0x0e:
106 case 0x11:
107 case 0x08:
108 break;
109 default:
110 AssertMsgFailed(("This trap (%#x) doesn't have any error code\n", pVCpu->trpm.s.uActiveVector));
111 break;
112 }
113#endif
114 return pVCpu->trpm.s.uActiveErrorCode;
115}
116
117
118/**
119 * Gets the fault address for the current trap.
120 *
121 * The caller is responsible for making sure there is an active trap 0x0e when
122 * making this request.
123 *
124 * @returns Fault address associated with the trap.
125 * @param pVCpu VMCPU handle.
126 */
127VMMDECL(RTGCUINTPTR) TRPMGetFaultAddress(PVMCPU pVCpu)
128{
129 AssertMsg(pVCpu->trpm.s.uActiveVector != ~0U, ("No active trap!\n"));
130 AssertMsg(pVCpu->trpm.s.uActiveVector == 0xe, ("Not trap 0e!\n"));
131 return pVCpu->trpm.s.uActiveCR2;
132}
133
134
135/**
136 * Clears the current active trap/exception/interrupt.
137 *
138 * The caller is responsible for making sure there is an active trap
139 * when making this request.
140 *
141 * @returns VBox status code.
142 * @param pVCpu VMCPU handle.
143 */
144VMMDECL(int) TRPMResetTrap(PVMCPU pVCpu)
145{
146 /*
147 * Cannot reset non-existing trap!
148 */
149 if (pVCpu->trpm.s.uActiveVector == ~0U)
150 {
151 AssertMsgFailed(("No active trap!\n"));
152 return VERR_TRPM_NO_ACTIVE_TRAP;
153 }
154
155 /*
156 * Reset it.
157 */
158 pVCpu->trpm.s.uActiveVector = ~0U;
159 return VINF_SUCCESS;
160}
161
162
163/**
164 * Assert trap/exception/interrupt.
165 *
166 * The caller is responsible for making sure there is no active trap
167 * when making this request.
168 *
169 * @returns VBox status code.
170 * @param pVCpu VMCPU handle.
171 * @param u8TrapNo The trap vector to assert.
172 * @param enmType Trap type.
173 */
174VMMDECL(int) TRPMAssertTrap(PVMCPU pVCpu, uint8_t u8TrapNo, TRPMEVENT enmType)
175{
176 Log2(("TRPMAssertTrap: u8TrapNo=%02x type=%d\n", u8TrapNo, enmType));
177
178 /*
179 * Cannot assert a trap when one is already active.
180 */
181 if (pVCpu->trpm.s.uActiveVector != ~0U)
182 {
183 AssertMsgFailed(("CPU%d: Active trap %#x\n", pVCpu->idCpu, pVCpu->trpm.s.uActiveVector));
184 return VERR_TRPM_ACTIVE_TRAP;
185 }
186
187 pVCpu->trpm.s.uActiveVector = u8TrapNo;
188 pVCpu->trpm.s.enmActiveType = enmType;
189 pVCpu->trpm.s.uActiveErrorCode = ~(RTGCUINT)0;
190 pVCpu->trpm.s.uActiveCR2 = 0xdeadface;
191 return VINF_SUCCESS;
192}
193
194
195/**
196 * Sets the error code of the current trap.
197 * (This function is for use in trap handlers and such.)
198 *
199 * The caller is responsible for making sure there is an active trap
200 * which takes an errorcode when making this request.
201 *
202 * @param pVCpu VMCPU handle.
203 * @param uErrorCode The new error code.
204 */
205VMMDECL(void) TRPMSetErrorCode(PVMCPU pVCpu, RTGCUINT uErrorCode)
206{
207 Log2(("TRPMSetErrorCode: uErrorCode=%RGv\n", uErrorCode)); /** @todo RTGCUINT mess! */
208 AssertMsg(pVCpu->trpm.s.uActiveVector != ~0U, ("No active trap!\n"));
209 pVCpu->trpm.s.uActiveErrorCode = uErrorCode;
210#ifdef VBOX_STRICT
211 switch (pVCpu->trpm.s.uActiveVector)
212 {
213 case 0x0a: case 0x0b: case 0x0c: case 0x0d: case 0x0e:
214 AssertMsg(uErrorCode != ~(RTGCUINT)0, ("Invalid uErrorCode=%#x u8TrapNo=%d\n", uErrorCode, pVCpu->trpm.s.uActiveVector));
215 break;
216 case 0x11: case 0x08:
217 AssertMsg(uErrorCode == 0, ("Invalid uErrorCode=%#x u8TrapNo=%d\n", uErrorCode, pVCpu->trpm.s.uActiveVector));
218 break;
219 default:
220 AssertMsg(uErrorCode == ~(RTGCUINT)0, ("Invalid uErrorCode=%#x u8TrapNo=%d\n", uErrorCode, pVCpu->trpm.s.uActiveVector));
221 break;
222 }
223#endif
224}
225
226
227/**
228 * Sets the error code of the current trap.
229 * (This function is for use in trap handlers and such.)
230 *
231 * The caller is responsible for making sure there is an active trap 0e
232 * when making this request.
233 *
234 * @param pVCpu VMCPU handle.
235 * @param uCR2 The new fault address (cr2 register).
236 */
237VMMDECL(void) TRPMSetFaultAddress(PVMCPU pVCpu, RTGCUINTPTR uCR2)
238{
239 Log2(("TRPMSetFaultAddress: uCR2=%RGv\n", uCR2));
240 AssertMsg(pVCpu->trpm.s.uActiveVector != ~0U, ("No active trap!\n"));
241 AssertMsg(pVCpu->trpm.s.uActiveVector == 0xe, ("Not trap 0e!\n"));
242 pVCpu->trpm.s.uActiveCR2 = uCR2;
243}
244
245
246/**
247 * Checks if the current active trap/interrupt/exception/fault/whatever is a software
248 * interrupt or not.
249 *
250 * The caller is responsible for making sure there is an active trap
251 * when making this request.
252 *
253 * @returns true if software interrupt, false if not.
254 *
255 * @param pVCpu VMCPU handle.
256 */
257VMMDECL(bool) TRPMIsSoftwareInterrupt(PVMCPU pVCpu)
258{
259 AssertMsg(pVCpu->trpm.s.uActiveVector != ~0U, ("No active trap!\n"));
260 return (pVCpu->trpm.s.enmActiveType == TRPM_SOFTWARE_INT);
261}
262
263
264/**
265 * Check if there is an active trap.
266 *
267 * @returns true if trap active, false if not.
268 * @param pVCpu VMCPU handle.
269 */
270VMMDECL(bool) TRPMHasTrap(PVMCPU pVCpu)
271{
272 return pVCpu->trpm.s.uActiveVector != ~0U;
273}
274
275
276/**
277 * Query all info about the current active trap/interrupt.
278 * If no trap is active active an error code is returned.
279 *
280 * @returns VBox status code.
281 * @param pVCpu VMCPU handle.
282 * @param pu8TrapNo Where to store the trap number.
283 * @param pEnmType Where to store the trap type
284 * @param puErrorCode Where to store the error code associated with some traps.
285 * ~0U is stored if the trap has no error code.
286 * @param puCR2 Where to store the CR2 associated with a trap 0E.
287 */
288VMMDECL(int) TRPMQueryTrapAll(PVMCPU pVCpu, uint8_t *pu8TrapNo, TRPMEVENT *pEnmType, PRTGCUINT puErrorCode, PRTGCUINTPTR puCR2)
289{
290 /*
291 * Check if we have a trap at present.
292 */
293 if (pVCpu->trpm.s.uActiveVector == ~0U)
294 return VERR_TRPM_NO_ACTIVE_TRAP;
295
296 if (pu8TrapNo)
297 *pu8TrapNo = (uint8_t)pVCpu->trpm.s.uActiveVector;
298 if (pEnmType)
299 *pEnmType = pVCpu->trpm.s.enmActiveType;
300 if (puErrorCode)
301 *puErrorCode = pVCpu->trpm.s.uActiveErrorCode;
302 if (puCR2)
303 *puCR2 = pVCpu->trpm.s.uActiveCR2;
304
305 return VINF_SUCCESS;
306}
307
308
309/**
310 * Save the active trap.
311 *
312 * This routine useful when doing try/catch in the hypervisor.
313 * Any function which uses temporary trap handlers should
314 * probably also use this facility to save the original trap.
315 *
316 * @param pVM Pointer to the VM.
317 */
318VMMDECL(void) TRPMSaveTrap(PVMCPU pVCpu)
319{
320 pVCpu->trpm.s.uSavedVector = pVCpu->trpm.s.uActiveVector;
321 pVCpu->trpm.s.enmSavedType = pVCpu->trpm.s.enmActiveType;
322 pVCpu->trpm.s.uSavedErrorCode = pVCpu->trpm.s.uActiveErrorCode;
323 pVCpu->trpm.s.uSavedCR2 = pVCpu->trpm.s.uActiveCR2;
324}
325
326
327/**
328 * Restore a saved trap.
329 *
330 * Multiple restores of a saved trap is possible.
331 *
332 * @param pVM Pointer to the VM.
333 */
334VMMDECL(void) TRPMRestoreTrap(PVMCPU pVCpu)
335{
336 pVCpu->trpm.s.uActiveVector = pVCpu->trpm.s.uSavedVector;
337 pVCpu->trpm.s.enmActiveType = pVCpu->trpm.s.enmSavedType;
338 pVCpu->trpm.s.uActiveErrorCode = pVCpu->trpm.s.uSavedErrorCode;
339 pVCpu->trpm.s.uActiveCR2 = pVCpu->trpm.s.uSavedCR2;
340}
341
342
343#ifndef IN_RING0
344/**
345 * Forward trap or interrupt to the guest's handler
346 *
347 *
348 * @returns VBox status code.
349 * or does not return at all (when the trap is actually forwarded)
350 *
351 * @param pVM Pointer to the VM.
352 * @param pRegFrame Pointer to the register frame for the trap.
353 * @param iGate Trap or interrupt gate number
354 * @param cbInstr Instruction size (only relevant for software interrupts)
355 * @param enmError TRPM_TRAP_HAS_ERRORCODE or TRPM_TRAP_NO_ERRORCODE.
356 * @param enmType TRPM event type
357 * @param iOrgTrap The original trap.
358 * @internal
359 */
360VMMDECL(int) TRPMForwardTrap(PVMCPU pVCpu, PCPUMCTXCORE pRegFrame, uint32_t iGate, uint32_t cbInstr,
361 TRPMERRORCODE enmError, TRPMEVENT enmType, int32_t iOrgTrap)
362{
363#ifdef TRPM_FORWARD_TRAPS_IN_GC
364 PVM pVM = pVCpu->CTX_SUFF(pVM);
365 X86EFLAGS eflags;
366 Assert(pVM->cCpus == 1);
367
368 STAM_PROFILE_ADV_START(&pVM->trpm.s.CTX_SUFF_Z(StatForwardProf), a);
369
370# if defined(VBOX_STRICT) || defined(LOG_ENABLED)
371 if (pRegFrame->eflags.Bits.u1VM)
372 Log(("TRPMForwardTrap-VM: eip=%04X:%04X iGate=%d\n", pRegFrame->cs, pRegFrame->eip, iGate));
373 else
374 Log(("TRPMForwardTrap: eip=%04X:%08X iGate=%d\n", pRegFrame->cs, pRegFrame->eip, iGate));
375
376 switch (iGate) {
377 case 14:
378 if (pRegFrame->eip == pVCpu->trpm.s.uActiveCR2)
379 {
380 int rc;
381 RTGCPTR pCallerGC;
382# ifdef IN_RC
383 rc = MMGCRamRead(pVM, &pCallerGC, (void *)pRegFrame->esp, sizeof(pCallerGC));
384# else
385 rc = PGMPhysSimpleReadGCPtr(pVCpu, &pCallerGC, (RTGCPTR)pRegFrame->esp, sizeof(pCallerGC));
386# endif
387 if (RT_SUCCESS(rc))
388 Log(("TRPMForwardTrap: caller=%RGv\n", pCallerGC));
389 }
390 /* no break */
391 case 8:
392 case 10:
393 case 11:
394 case 12:
395 case 13:
396 case 17:
397 Assert(enmError == TRPM_TRAP_HAS_ERRORCODE || enmType == TRPM_SOFTWARE_INT);
398 break;
399
400 default:
401 Assert(enmError == TRPM_TRAP_NO_ERRORCODE);
402 break;
403 }
404# endif /* VBOX_STRICT || LOG_ENABLED */
405
406 /* Retrieve the eflags including the virtualized bits. */
407 /* Note: hackish as the cpumctxcore structure doesn't contain the right value */
408 eflags.u32 = CPUMRawGetEFlags(pVCpu, pRegFrame);
409
410 /* VMCPU_FF_INHIBIT_INTERRUPTS should be cleared upfront or don't call this function at all for dispatching hardware interrupts. */
411 Assert(enmType != TRPM_HARDWARE_INT || !VMCPU_FF_ISSET(pVCpu, VMCPU_FF_INHIBIT_INTERRUPTS));
412
413 /*
414 * If it's a real guest trap and the guest's page fault handler is marked as safe for GC execution, then we call it directly.
415 * Well, only if the IF flag is set.
416 */
417 /** @todo if the trap handler was modified and marked invalid, then we should *now* go back to the host context and install a new patch. */
418 if ( pVM->trpm.s.aGuestTrapHandler[iGate]
419 && (eflags.Bits.u1IF)
420#ifndef VBOX_RAW_V86
421 && !(eflags.Bits.u1VM) /** @todo implement when needed (illegal for same privilege level transfers). */
422#endif
423 && !PATMIsPatchGCAddr(pVM, pRegFrame->eip)
424 )
425 {
426 uint16_t cbIDT;
427 RTGCPTR GCPtrIDT = (RTGCPTR)CPUMGetGuestIDTR(pVCpu, &cbIDT);
428 uint32_t cpl;
429 VBOXIDTE GuestIdte;
430 RTGCPTR pIDTEntry;
431 int rc;
432
433 Assert(PATMAreInterruptsEnabledByCtxCore(pVM, pRegFrame));
434 Assert(!VMCPU_FF_ISPENDING(pVCpu, VMCPU_FF_SELM_SYNC_GDT | VMCPU_FF_SELM_SYNC_LDT | VMCPU_FF_TRPM_SYNC_IDT | VMCPU_FF_SELM_SYNC_TSS));
435
436 if (GCPtrIDT && iGate * sizeof(VBOXIDTE) >= cbIDT)
437 goto failure;
438
439 /* Get the current privilege level. */
440 cpl = CPUMGetGuestCPL(pVCpu, pRegFrame);
441
442 /*
443 * BIG TODO: The checks are not complete. see trap and interrupt dispatching section in Intel docs for details
444 * All very obscure, but still necessary.
445 * Currently only some CS & TSS selector checks are missing.
446 *
447 */
448 pIDTEntry = (RTGCPTR)((RTGCUINTPTR)GCPtrIDT + sizeof(VBOXIDTE) * iGate);
449#ifdef IN_RC
450 rc = MMGCRamRead(pVM, &GuestIdte, (void *)(uintptr_t)pIDTEntry, sizeof(GuestIdte));
451#else
452 rc = PGMPhysSimpleReadGCPtr(pVCpu, &GuestIdte, pIDTEntry, sizeof(GuestIdte));
453#endif
454 if (RT_FAILURE(rc))
455 {
456 /* The page might be out of sync. */ /** @todo might cross a page boundary) */
457 Log(("Page %RGv out of sync -> prefetch and try again\n", pIDTEntry));
458 rc = PGMPrefetchPage(pVCpu, pIDTEntry); /** @todo r=bird: rainy day: this isn't entirely safe because of access bit virtualiziation and CSAM. */
459 if (rc != VINF_SUCCESS)
460 {
461 Log(("TRPMForwardTrap: PGMPrefetchPage failed with rc=%Rrc\n", rc));
462 goto failure;
463 }
464#ifdef IN_RC
465 rc = MMGCRamRead(pVM, &GuestIdte, (void *)(uintptr_t)pIDTEntry, sizeof(GuestIdte));
466#else
467 rc = PGMPhysSimpleReadGCPtr(pVCpu, &GuestIdte, pIDTEntry, sizeof(GuestIdte));
468#endif
469 }
470 if ( RT_SUCCESS(rc)
471 && GuestIdte.Gen.u1Present
472 && (GuestIdte.Gen.u5Type2 == VBOX_IDTE_TYPE2_TRAP_32 || GuestIdte.Gen.u5Type2 == VBOX_IDTE_TYPE2_INT_32)
473 && (GuestIdte.Gen.u2DPL == 3 || GuestIdte.Gen.u2DPL == 0)
474 && (GuestIdte.Gen.u16SegSel & 0xfffc) /* must not be zero */
475 && (enmType == TRPM_TRAP || enmType == TRPM_HARDWARE_INT || cpl <= GuestIdte.Gen.u2DPL) /* CPL <= DPL if software int */
476 )
477 {
478 RTGCPTR pHandler, dummy;
479 RTGCPTR pTrapStackGC;
480
481 pHandler = (RTGCPTR)VBOXIDTE_OFFSET(GuestIdte);
482
483 /* Note: SELMValidateAndConvertCSAddr checks for code type, memory type, selector validity. */
484 /** @todo dpl <= cpl else GPF */
485
486 /* Note: don't use current eflags as we might be in V86 mode and the IDT always contains protected mode selectors */
487 X86EFLAGS fakeflags;
488 fakeflags.u32 = 0;
489
490 rc = SELMValidateAndConvertCSAddr(pVCpu, fakeflags, 0, GuestIdte.Gen.u16SegSel, NULL, pHandler, &dummy);
491 if (rc == VINF_SUCCESS)
492 {
493 VBOXGDTR gdtr = {0, 0};
494 bool fConforming = false;
495 int idx = 0;
496 uint32_t dpl;
497 uint32_t ss_r0;
498 uint32_t esp_r0;
499 X86DESC Desc;
500 RTGCPTR pGdtEntry;
501
502 CPUMGetGuestGDTR(pVCpu, &gdtr);
503 Assert(gdtr.pGdt && gdtr.cbGdt > GuestIdte.Gen.u16SegSel);
504
505 if (!gdtr.pGdt)
506 goto failure;
507
508 pGdtEntry = gdtr.pGdt + (GuestIdte.Gen.u16SegSel >> X86_SEL_SHIFT) * sizeof(X86DESC);
509#ifdef IN_RC
510 rc = MMGCRamRead(pVM, &Desc, (void *)(uintptr_t)pGdtEntry, sizeof(Desc));
511#else
512 rc = PGMPhysSimpleReadGCPtr(pVCpu, &Desc, pGdtEntry, sizeof(Desc));
513#endif
514 if (RT_FAILURE(rc))
515 {
516 /* The page might be out of sync. */ /** @todo might cross a page boundary) */
517 Log(("Page %RGv out of sync -> prefetch and try again\n", pGdtEntry));
518 rc = PGMPrefetchPage(pVCpu, pGdtEntry); /** @todo r=bird: rainy day: this isn't entirely safe because of access bit virtualiziation and CSAM. */
519 if (rc != VINF_SUCCESS)
520 {
521 Log(("PGMPrefetchPage failed with rc=%Rrc\n", rc));
522 goto failure;
523 }
524#ifdef IN_RC
525 rc = MMGCRamRead(pVM, &Desc, (void *)(uintptr_t)pGdtEntry, sizeof(Desc));
526#else
527 rc = PGMPhysSimpleReadGCPtr(pVCpu, &Desc, pGdtEntry, sizeof(Desc));
528#endif
529 if (RT_FAILURE(rc))
530 {
531 Log(("MMGCRamRead failed with %Rrc\n", rc));
532 goto failure;
533 }
534 }
535
536 if (Desc.Gen.u4Type & X86_SEL_TYPE_CONF)
537 {
538 Log(("Conforming code selector\n"));
539 fConforming = true;
540 }
541 /** @todo check descriptor type!! */
542
543 dpl = Desc.Gen.u2Dpl;
544
545 if (!fConforming && dpl < cpl) /* to inner privilege level */
546 {
547 rc = SELMGetRing1Stack(pVM, &ss_r0, &esp_r0);
548 if (RT_FAILURE(rc))
549 goto failure;
550
551 Assert((ss_r0 & X86_SEL_RPL) == 1);
552
553 if ( !esp_r0
554 || !ss_r0
555 || (ss_r0 & X86_SEL_RPL) != ((dpl == 0) ? 1 : dpl)
556 || SELMToFlatBySelEx(pVCpu, fakeflags, ss_r0, (RTGCPTR)esp_r0, NULL, SELMTOFLAT_FLAGS_CPL1, (PRTGCPTR)&pTrapStackGC, NULL) != VINF_SUCCESS
557 )
558 {
559 Log(("Invalid ring 0 stack %04X:%08RX32\n", ss_r0, esp_r0));
560 goto failure;
561 }
562 }
563 else
564 if (fConforming || dpl == cpl) /* to the same privilege level */
565 {
566 ss_r0 = pRegFrame->ss;
567 esp_r0 = pRegFrame->esp;
568
569 if ( eflags.Bits.u1VM /* illegal */
570 || SELMToFlatBySelEx(pVCpu, fakeflags, ss_r0, (RTGCPTR)esp_r0, NULL, SELMTOFLAT_FLAGS_CPL1, (PRTGCPTR)&pTrapStackGC, NULL) != VINF_SUCCESS)
571 {
572 AssertMsgFailed(("Invalid stack %04X:%08RX32??? (VM=%d)\n", ss_r0, esp_r0, eflags.Bits.u1VM));
573 goto failure;
574 }
575 }
576 else
577 {
578 Log(("Invalid cpl-dpl combo %d vs %d\n", cpl, dpl));
579 goto failure;
580 }
581 /*
582 * Build trap stack frame on guest handler's stack
583 */
584 uint32_t *pTrapStack;
585#ifdef IN_RC
586 Assert(eflags.Bits.u1VM || (pRegFrame->ss & X86_SEL_RPL) != 0);
587 /* Check maximum amount we need (10 when executing in V86 mode) */
588 rc = PGMVerifyAccess(pVCpu, (RTGCUINTPTR)pTrapStackGC - 10*sizeof(uint32_t), 10 * sizeof(uint32_t), X86_PTE_RW);
589 pTrapStack = (uint32_t *)(uintptr_t)pTrapStackGC;
590#else
591 Assert(eflags.Bits.u1VM || (pRegFrame->ss & X86_SEL_RPL) == 0 || (pRegFrame->ss & X86_SEL_RPL) == 3);
592 /* Check maximum amount we need (10 when executing in V86 mode) */
593 if ((pTrapStackGC >> PAGE_SHIFT) != ((pTrapStackGC - 10*sizeof(uint32_t)) >> PAGE_SHIFT)) /* fail if we cross a page boundary */
594 goto failure;
595 PGMPAGEMAPLOCK PageMappingLock;
596 rc = PGMPhysGCPtr2CCPtr(pVCpu, pTrapStackGC, (void **)&pTrapStack, &PageMappingLock);
597 if (RT_FAILURE(rc))
598 {
599 AssertRC(rc);
600 goto failure;
601 }
602#endif
603 if (rc == VINF_SUCCESS)
604 {
605 /** if eflags.Bits.u1VM then push gs, fs, ds, es */
606 if (eflags.Bits.u1VM)
607 {
608 Log(("TRAP%02X: (VM) Handler %04X:%RGv Stack %04X:%08X RPL=%d CR2=%08X\n", iGate, GuestIdte.Gen.u16SegSel, pHandler, ss_r0, esp_r0, (pRegFrame->ss & X86_SEL_RPL), pVCpu->trpm.s.uActiveCR2));
609 pTrapStack[--idx] = pRegFrame->gs;
610 pTrapStack[--idx] = pRegFrame->fs;
611 pTrapStack[--idx] = pRegFrame->ds;
612 pTrapStack[--idx] = pRegFrame->es;
613
614 /* clear ds, es, fs & gs in current context */
615 pRegFrame->ds = pRegFrame->es = pRegFrame->fs = pRegFrame->gs = 0;
616 }
617 else
618 Log(("TRAP%02X: Handler %04X:%RGv Stack %04X:%08X RPL=%d CR2=%08X\n", iGate, GuestIdte.Gen.u16SegSel, pHandler, ss_r0, esp_r0, (pRegFrame->ss & X86_SEL_RPL), pVCpu->trpm.s.uActiveCR2));
619
620 if (!fConforming && dpl < cpl)
621 {
622 if ((pRegFrame->ss & X86_SEL_RPL) == 1 && !eflags.Bits.u1VM)
623 pTrapStack[--idx] = pRegFrame->ss & ~1; /* Mask away traces of raw ring execution (ring 1). */
624 else
625 pTrapStack[--idx] = pRegFrame->ss;
626
627 pTrapStack[--idx] = pRegFrame->esp;
628 }
629
630 /* Note: We use the eflags copy, that includes the virtualized bits! */
631 /* Note: Not really necessary as we grab include those bits in the trap/irq handler trampoline */
632 pTrapStack[--idx] = eflags.u32;
633
634 if ((pRegFrame->cs & X86_SEL_RPL) == 1 && !eflags.Bits.u1VM)
635 pTrapStack[--idx] = pRegFrame->cs & ~1; /* Mask away traces of raw ring execution (ring 1). */
636 else
637 pTrapStack[--idx] = pRegFrame->cs;
638
639 if (enmType == TRPM_SOFTWARE_INT)
640 {
641 Assert(cbInstr);
642 pTrapStack[--idx] = pRegFrame->eip + cbInstr; /* return address = next instruction */
643 }
644 else
645 pTrapStack[--idx] = pRegFrame->eip;
646
647 if (enmError == TRPM_TRAP_HAS_ERRORCODE)
648 {
649 pTrapStack[--idx] = pVCpu->trpm.s.uActiveErrorCode;
650 }
651
652 Assert(esp_r0 > -idx*sizeof(uint32_t));
653 /* Adjust ESP accordingly */
654 esp_r0 += idx*sizeof(uint32_t);
655
656 /* Mask away dangerous flags for the trap/interrupt handler. */
657 eflags.u32 &= ~(X86_EFL_TF | X86_EFL_VM | X86_EFL_RF | X86_EFL_NT);
658#ifdef DEBUG
659 for (int j = idx; j < 0; j++)
660 Log4(("Stack %RRv pos %02d: %08x\n", &pTrapStack[j], j, pTrapStack[j]));
661
662 Log4(("eax=%08x ebx=%08x ecx=%08x edx=%08x esi=%08x edi=%08x\n"
663 "eip=%08x esp=%08x ebp=%08x iopl=%d\n"
664 "cs=%04x ds=%04x es=%04x fs=%04x gs=%04x eflags=%08x\n",
665 pRegFrame->eax, pRegFrame->ebx, pRegFrame->ecx, pRegFrame->edx, pRegFrame->esi, pRegFrame->edi,
666 pRegFrame->eip, pRegFrame->esp, pRegFrame->ebp, eflags.Bits.u2IOPL,
667 (RTSEL)pRegFrame->cs, (RTSEL)pRegFrame->ds, (RTSEL)pRegFrame->es,
668 (RTSEL)pRegFrame->fs, (RTSEL)pRegFrame->gs, eflags.u32));
669#endif
670
671 Log(("PATM Handler %RRv Adjusted stack %08X new EFLAGS=%08X idx=%d dpl=%d cpl=%d\n", pVM->trpm.s.aGuestTrapHandler[iGate], esp_r0, eflags.u32, idx, dpl, cpl));
672
673 /* Make sure the internal guest context structure is up-to-date. */
674 CPUMSetGuestCR2(pVCpu, pVCpu->trpm.s.uActiveCR2);
675
676#ifdef IN_RC
677 /* Note: shouldn't be necessary */
678 ASMSetCR2(pVCpu->trpm.s.uActiveCR2);
679
680 /* Turn off interrupts for interrupt gates. */
681 if (GuestIdte.Gen.u5Type2 == VBOX_IDTE_TYPE2_INT_32)
682 CPUMRawSetEFlags(pVCpu, pRegFrame, eflags.u32 & ~X86_EFL_IF);
683
684 /* The virtualized bits must be removed again!! */
685 eflags.Bits.u1IF = 1;
686 eflags.Bits.u2IOPL = 0;
687
688 Assert(eflags.Bits.u1IF);
689 Assert(eflags.Bits.u2IOPL == 0);
690 STAM_COUNTER_INC(&pVM->trpm.s.CTX_SUFF(paStatForwardedIRQ)[iGate]);
691 STAM_PROFILE_ADV_STOP(&pVM->trpm.s.CTX_SUFF_Z(StatForwardProf), a);
692 if (iOrgTrap >= 0 && iOrgTrap < (int)RT_ELEMENTS(pVM->trpm.s.aStatGCTraps))
693 STAM_PROFILE_ADV_STOP(&pVM->trpm.s.aStatGCTraps[iOrgTrap], o);
694
695 PGMRZDynMapReleaseAutoSet(pVCpu);
696 CPUMGCCallGuestTrapHandler(pRegFrame, GuestIdte.Gen.u16SegSel | 1, pVM->trpm.s.aGuestTrapHandler[iGate],
697 eflags.u32, ss_r0, (RTRCPTR)esp_r0);
698 /* does not return */
699#else
700 /* Turn off interrupts for interrupt gates. */
701 if (GuestIdte.Gen.u5Type2 == VBOX_IDTE_TYPE2_INT_32)
702 eflags.Bits.u1IF = 0;
703
704 pRegFrame->eflags.u32 = eflags.u32;
705
706 pRegFrame->eip = pVM->trpm.s.aGuestTrapHandler[iGate];
707 pRegFrame->cs = GuestIdte.Gen.u16SegSel;
708 pRegFrame->esp = esp_r0;
709 pRegFrame->ss = ss_r0 & ~X86_SEL_RPL; /* set rpl to ring 0 */
710 STAM_PROFILE_ADV_STOP(&pVM->trpm.s.CTX_SUFF_Z(StatForwardProf), a);
711 PGMPhysReleasePageMappingLock(pVM, &PageMappingLock);
712 NOREF(iOrgTrap);
713 return VINF_SUCCESS;
714#endif
715 }
716 else
717 Log(("TRAP%02X: PGMVerifyAccess %RGv failed with %Rrc -> forward to REM\n", iGate, pTrapStackGC, rc));
718 }
719 else
720 Log(("SELMValidateAndConvertCSAddr failed with %Rrc\n", rc));
721 }
722 else
723 Log(("MMRamRead %RGv size %d failed with %Rrc\n", (RTGCUINTPTR)GCPtrIDT + sizeof(VBOXIDTE) * iGate, sizeof(GuestIdte), rc));
724 }
725 else
726 {
727 Log(("Refused to forward trap: eflags=%08x IF=%d\n", eflags.u32, eflags.Bits.u1IF));
728#ifdef VBOX_WITH_STATISTICS
729 if (pVM->trpm.s.aGuestTrapHandler[iGate] == TRPM_INVALID_HANDLER)
730 STAM_COUNTER_INC(&pVM->trpm.s.StatForwardFailNoHandler);
731 else if (PATMIsPatchGCAddr(pVM, pRegFrame->eip))
732 STAM_COUNTER_INC(&pVM->trpm.s.StatForwardFailPatchAddr);
733#endif
734 }
735failure:
736 STAM_COUNTER_INC(&pVM->trpm.s.CTX_SUFF_Z(StatForwardFail));
737 STAM_PROFILE_ADV_STOP(&pVM->trpm.s.CTX_SUFF_Z(StatForwardProf), a);
738
739 Log(("TRAP%02X: forwarding to REM (ss rpl=%d eflags=%08X VMIF=%d handler=%08X\n", iGate, pRegFrame->ss & X86_SEL_RPL, pRegFrame->eflags.u32, PATMAreInterruptsEnabledByCtxCore(pVM, pRegFrame), pVM->trpm.s.aGuestTrapHandler[iGate]));
740#endif
741 return VINF_EM_RAW_GUEST_TRAP;
742}
743#endif /* !IN_RING0 */
744
745
746/**
747 * Raises a cpu exception which doesn't take an error code.
748 *
749 * This function may or may not dispatch the exception before returning.
750 *
751 * @returns VBox status code fit for scheduling.
752 * @retval VINF_EM_RAW_GUEST_TRAP if the exception was left pending.
753 * @retval VINF_TRPM_XCPT_DISPATCHED if the exception was raised and dispatched for raw-mode execution.
754 * @retval VINF_EM_RESCHEDULE_REM if the exception was dispatched and cannot be executed in raw-mode.
755 *
756 * @param pVM Pointer to the VM.
757 * @param pCtxCore The CPU context core.
758 * @param enmXcpt The exception.
759 */
760VMMDECL(int) TRPMRaiseXcpt(PVMCPU pVCpu, PCPUMCTXCORE pCtxCore, X86XCPT enmXcpt)
761{
762 LogFlow(("TRPMRaiseXcptErr: cs:eip=%RTsel:%RX32 enmXcpt=%#x\n", pCtxCore->cs, pCtxCore->eip, enmXcpt));
763/** @todo dispatch the trap. */
764 pVCpu->trpm.s.uActiveVector = enmXcpt;
765 pVCpu->trpm.s.enmActiveType = TRPM_TRAP;
766 pVCpu->trpm.s.uActiveErrorCode = 0xdeadbeef;
767 pVCpu->trpm.s.uActiveCR2 = 0xdeadface;
768 return VINF_EM_RAW_GUEST_TRAP;
769}
770
771
772/**
773 * Raises a cpu exception with an errorcode.
774 *
775 * This function may or may not dispatch the exception before returning.
776 *
777 * @returns VBox status code fit for scheduling.
778 * @retval VINF_EM_RAW_GUEST_TRAP if the exception was left pending.
779 * @retval VINF_TRPM_XCPT_DISPATCHED if the exception was raised and dispatched for raw-mode execution.
780 * @retval VINF_EM_RESCHEDULE_REM if the exception was dispatched and cannot be executed in raw-mode.
781 *
782 * @param pVM Pointer to the VM.
783 * @param pCtxCore The CPU context core.
784 * @param enmXcpt The exception.
785 * @param uErr The error code.
786 */
787VMMDECL(int) TRPMRaiseXcptErr(PVMCPU pVCpu, PCPUMCTXCORE pCtxCore, X86XCPT enmXcpt, uint32_t uErr)
788{
789 LogFlow(("TRPMRaiseXcptErr: cs:eip=%RTsel:%RX32 enmXcpt=%#x uErr=%RX32\n", pCtxCore->cs, pCtxCore->eip, enmXcpt, uErr));
790/** @todo dispatch the trap. */
791 pVCpu->trpm.s.uActiveVector = enmXcpt;
792 pVCpu->trpm.s.enmActiveType = TRPM_TRAP;
793 pVCpu->trpm.s.uActiveErrorCode = uErr;
794 pVCpu->trpm.s.uActiveCR2 = 0xdeadface;
795 return VINF_EM_RAW_GUEST_TRAP;
796}
797
798
799/**
800 * Raises a cpu exception with an errorcode and CR2.
801 *
802 * This function may or may not dispatch the exception before returning.
803 *
804 * @returns VBox status code fit for scheduling.
805 * @retval VINF_EM_RAW_GUEST_TRAP if the exception was left pending.
806 * @retval VINF_TRPM_XCPT_DISPATCHED if the exception was raised and dispatched for raw-mode execution.
807 * @retval VINF_EM_RESCHEDULE_REM if the exception was dispatched and cannot be executed in raw-mode.
808 *
809 * @param pVM Pointer to the VM.
810 * @param pCtxCore The CPU context core.
811 * @param enmXcpt The exception.
812 * @param uErr The error code.
813 * @param uCR2 The CR2 value.
814 */
815VMMDECL(int) TRPMRaiseXcptErrCR2(PVMCPU pVCpu, PCPUMCTXCORE pCtxCore, X86XCPT enmXcpt, uint32_t uErr, RTGCUINTPTR uCR2)
816{
817 LogFlow(("TRPMRaiseXcptErr: cs:eip=%RTsel:%RX32 enmXcpt=%#x uErr=%RX32 uCR2=%RGv\n", pCtxCore->cs, pCtxCore->eip, enmXcpt, uErr, uCR2));
818/** @todo dispatch the trap. */
819 pVCpu->trpm.s.uActiveVector = enmXcpt;
820 pVCpu->trpm.s.enmActiveType = TRPM_TRAP;
821 pVCpu->trpm.s.uActiveErrorCode = uErr;
822 pVCpu->trpm.s.uActiveCR2 = uCR2;
823 return VINF_EM_RAW_GUEST_TRAP;
824}
825
826
827/**
828 * Clear guest trap/interrupt gate handler
829 *
830 * @returns VBox status code.
831 * @param pVM Pointer to the VM.
832 * @param iTrap Interrupt/trap number.
833 */
834VMMDECL(int) trpmClearGuestTrapHandler(PVM pVM, unsigned iTrap)
835{
836 /*
837 * Validate.
838 */
839 if (iTrap >= RT_ELEMENTS(pVM->trpm.s.aIdt))
840 {
841 AssertMsg(iTrap < TRPM_HANDLER_INT_BASE, ("Illegal gate number %d!\n", iTrap));
842 return VERR_INVALID_PARAMETER;
843 }
844
845 if (ASMBitTest(&pVM->trpm.s.au32IdtPatched[0], iTrap))
846#ifdef IN_RING3
847 trpmR3ClearPassThroughHandler(pVM, iTrap);
848#else
849 AssertFailed();
850#endif
851
852 pVM->trpm.s.aGuestTrapHandler[iTrap] = TRPM_INVALID_HANDLER;
853 return VINF_SUCCESS;
854}
855
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