VirtualBox

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

Last change on this file since 96860 was 96407, checked in by vboxsync, 21 months ago

scm copyright and license note update

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 14.4 KB
Line 
1/* $Id: TRPMAll.cpp 96407 2022-08-22 17:43:14Z vboxsync $ */
2/** @file
3 * TRPM - Trap Monitor - Any Context.
4 */
5
6/*
7 * Copyright (C) 2006-2022 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
26 */
27
28
29/*********************************************************************************************************************************
30* Header Files *
31*********************************************************************************************************************************/
32#define LOG_GROUP LOG_GROUP_TRPM
33#include <VBox/vmm/trpm.h>
34#include <VBox/vmm/pgm.h>
35#include <VBox/vmm/mm.h>
36#include <VBox/vmm/hm.h>
37#include <VBox/vmm/selm.h>
38#include <VBox/vmm/stam.h>
39#include <VBox/vmm/dbgf.h>
40#include "TRPMInternal.h"
41#include <VBox/vmm/vmcc.h>
42#include <VBox/err.h>
43#include <VBox/vmm/em.h>
44#include <VBox/log.h>
45#include <iprt/assert.h>
46#include <iprt/asm.h>
47#include <iprt/param.h>
48#include <iprt/x86.h>
49
50
51
52/**
53 * Query info about the current active trap/interrupt.
54 * If no trap is active active an error code is returned.
55 *
56 * @returns VBox status code.
57 * @param pVCpu The cross context virtual CPU structure.
58 * @param pu8TrapNo Where to store the trap number.
59 * @param penmType Where to store the trap type
60 */
61VMMDECL(int) TRPMQueryTrap(PVMCPU pVCpu, uint8_t *pu8TrapNo, TRPMEVENT *penmType)
62{
63 /*
64 * Check if we have a trap at present.
65 */
66 if (pVCpu->trpm.s.uActiveVector != ~0U)
67 {
68 if (pu8TrapNo)
69 *pu8TrapNo = (uint8_t)pVCpu->trpm.s.uActiveVector;
70 if (penmType)
71 *penmType = pVCpu->trpm.s.enmActiveType;
72 return VINF_SUCCESS;
73 }
74
75 return VERR_TRPM_NO_ACTIVE_TRAP;
76}
77
78
79/**
80 * Gets the trap number for the current trap.
81 *
82 * The caller is responsible for making sure there is an active trap which
83 * takes an error code when making this request.
84 *
85 * @returns The current trap number.
86 * @param pVCpu The cross context virtual CPU structure.
87 */
88VMMDECL(uint8_t) TRPMGetTrapNo(PVMCPU pVCpu)
89{
90 AssertMsg(pVCpu->trpm.s.uActiveVector != ~0U, ("No active trap!\n"));
91 return (uint8_t)pVCpu->trpm.s.uActiveVector;
92}
93
94
95/**
96 * Gets the error code for the current trap.
97 *
98 * The caller is responsible for making sure there is an active trap which
99 * takes an error code when making this request.
100 *
101 * @returns Error code.
102 * @param pVCpu The cross context virtual CPU structure.
103 */
104VMMDECL(uint32_t) TRPMGetErrorCode(PVMCPU pVCpu)
105{
106 AssertMsg(pVCpu->trpm.s.uActiveVector != ~0U, ("No active trap!\n"));
107#ifdef VBOX_STRICT
108 switch (pVCpu->trpm.s.uActiveVector)
109 {
110 case X86_XCPT_TS:
111 case X86_XCPT_NP:
112 case X86_XCPT_SS:
113 case X86_XCPT_GP:
114 case X86_XCPT_PF:
115 case X86_XCPT_AC:
116 case X86_XCPT_DF:
117 break;
118 default:
119 AssertMsgFailed(("This trap (%#x) doesn't have any error code\n", pVCpu->trpm.s.uActiveVector));
120 break;
121 }
122#endif
123 return pVCpu->trpm.s.uActiveErrorCode;
124}
125
126
127/**
128 * Gets the fault address for the current trap.
129 *
130 * The caller is responsible for making sure there is an active trap 0x0e when
131 * making this request.
132 *
133 * @returns Fault address associated with the trap.
134 * @param pVCpu The cross context virtual CPU structure.
135 */
136VMMDECL(RTGCUINTPTR) TRPMGetFaultAddress(PVMCPU pVCpu)
137{
138 AssertMsg(pVCpu->trpm.s.uActiveVector != ~0U, ("No active trap!\n"));
139 AssertMsg(pVCpu->trpm.s.uActiveVector == X86_XCPT_PF, ("Not page-fault trap!\n"));
140 return pVCpu->trpm.s.uActiveCR2;
141}
142
143
144/**
145 * Gets the instruction-length for the current trap (only relevant for software
146 * interrupts and software exceptions \#BP and \#OF).
147 *
148 * The caller is responsible for making sure there is an active trap 0x0e when
149 * making this request.
150 *
151 * @returns Fault address associated with the trap.
152 * @param pVCpu The cross context virtual CPU structure.
153 */
154VMMDECL(uint8_t) TRPMGetInstrLength(PVMCPU pVCpu)
155{
156 AssertMsg(pVCpu->trpm.s.uActiveVector != ~0U, ("No active trap!\n"));
157 return pVCpu->trpm.s.cbInstr;
158}
159
160
161/**
162 * Checks if the current \#DB exception is due to an INT1/ICEBP instruction.
163 *
164 * The caller is responsible for making sure there is an active trap.
165 *
166 * @returns @c true if it's due to INT1/ICEBP, @c false if not.
167 *
168 * @param pVCpu The cross context virtual CPU structure.
169 */
170VMMDECL(bool) TRPMIsTrapDueToIcebp(PVMCPU pVCpu)
171{
172 AssertMsg(pVCpu->trpm.s.uActiveVector != ~0U, ("No active trap!\n"));
173 return pVCpu->trpm.s.fIcebp;
174}
175
176
177/**
178 * Clears the current active trap/exception/interrupt.
179 *
180 * The caller is responsible for making sure there is an active trap
181 * when making this request.
182 *
183 * @returns VBox status code.
184 * @param pVCpu The cross context virtual CPU structure.
185 */
186VMMDECL(int) TRPMResetTrap(PVMCPU pVCpu)
187{
188 /*
189 * Cannot reset non-existing trap!
190 */
191 if (pVCpu->trpm.s.uActiveVector == ~0U)
192 {
193 AssertMsgFailed(("No active trap!\n"));
194 return VERR_TRPM_NO_ACTIVE_TRAP;
195 }
196
197 /*
198 * Reset it.
199 */
200 pVCpu->trpm.s.uActiveVector = ~0U;
201 return VINF_SUCCESS;
202}
203
204
205/**
206 * Assert trap/exception/interrupt.
207 *
208 * The caller is responsible for making sure there is no active trap
209 * when making this request.
210 *
211 * @returns VBox status code.
212 * @param pVCpu The cross context virtual CPU structure.
213 * @param u8TrapNo The trap vector to assert.
214 * @param enmType Trap type.
215 */
216VMMDECL(int) TRPMAssertTrap(PVMCPUCC pVCpu, uint8_t u8TrapNo, TRPMEVENT enmType)
217{
218 Log2(("TRPMAssertTrap: u8TrapNo=%02x type=%d\n", u8TrapNo, enmType));
219
220 /*
221 * Cannot assert a trap when one is already active.
222 */
223 if (pVCpu->trpm.s.uActiveVector != ~0U)
224 {
225 AssertMsgFailed(("CPU%d: Active trap %#x\n", pVCpu->idCpu, pVCpu->trpm.s.uActiveVector));
226 return VERR_TRPM_ACTIVE_TRAP;
227 }
228
229 pVCpu->trpm.s.uActiveVector = u8TrapNo;
230 pVCpu->trpm.s.enmActiveType = enmType;
231 pVCpu->trpm.s.uActiveErrorCode = ~0U;
232 pVCpu->trpm.s.uActiveCR2 = 0xdeadface;
233 pVCpu->trpm.s.cbInstr = UINT8_MAX;
234 pVCpu->trpm.s.fIcebp = false;
235 return VINF_SUCCESS;
236}
237
238
239/**
240 * Assert a page-fault exception.
241 *
242 * The caller is responsible for making sure there is no active trap
243 * when making this request.
244 *
245 * @returns VBox status code.
246 * @param pVCpu The cross context virtual CPU structure.
247 * @param uCR2 The new fault address.
248 * @param uErrorCode The error code for the page-fault.
249 */
250VMMDECL(int) TRPMAssertXcptPF(PVMCPUCC pVCpu, RTGCUINTPTR uCR2, uint32_t uErrorCode)
251{
252 Log2(("TRPMAssertXcptPF: uCR2=%RGv uErrorCode=%#RX32\n", uCR2, uErrorCode));
253
254 /*
255 * Cannot assert a trap when one is already active.
256 */
257 if (pVCpu->trpm.s.uActiveVector != ~0U)
258 {
259 AssertMsgFailed(("CPU%d: Active trap %#x\n", pVCpu->idCpu, pVCpu->trpm.s.uActiveVector));
260 return VERR_TRPM_ACTIVE_TRAP;
261 }
262
263 pVCpu->trpm.s.uActiveVector = X86_XCPT_PF;
264 pVCpu->trpm.s.enmActiveType = TRPM_TRAP;
265 pVCpu->trpm.s.uActiveErrorCode = uErrorCode;
266 pVCpu->trpm.s.uActiveCR2 = uCR2;
267 pVCpu->trpm.s.cbInstr = UINT8_MAX;
268 return VINF_SUCCESS;
269}
270
271
272/**
273 * Sets the error code of the current trap.
274 * (This function is for use in trap handlers and such.)
275 *
276 * The caller is responsible for making sure there is an active trap
277 * which takes an errorcode when making this request.
278 *
279 * @param pVCpu The cross context virtual CPU structure.
280 * @param uErrorCode The new error code.
281 */
282VMMDECL(void) TRPMSetErrorCode(PVMCPU pVCpu, uint32_t uErrorCode)
283{
284 Log2(("TRPMSetErrorCode: uErrorCode=%#RX32\n", uErrorCode));
285 AssertMsg(pVCpu->trpm.s.uActiveVector != ~0U, ("No active trap!\n"));
286 AssertMsg( pVCpu->trpm.s.enmActiveType == TRPM_TRAP
287 || ( pVCpu->trpm.s.enmActiveType == TRPM_SOFTWARE_INT && pVCpu->trpm.s.uActiveVector == X86_XCPT_DB),
288 ("Not hardware exception or privileged software exception (INT1/ICEBP)!\n"));
289 pVCpu->trpm.s.uActiveErrorCode = uErrorCode;
290#ifdef VBOX_STRICT
291 if (pVCpu->trpm.s.enmActiveType == TRPM_TRAP)
292 {
293 switch (pVCpu->trpm.s.uActiveVector)
294 {
295 case X86_XCPT_TS: case X86_XCPT_NP: case X86_XCPT_SS: case X86_XCPT_GP: case X86_XCPT_PF:
296 AssertMsg(uErrorCode != ~0U, ("Invalid uErrorCode=%#x u8TrapNo=%u\n", uErrorCode, pVCpu->trpm.s.uActiveVector));
297 break;
298 case X86_XCPT_AC: case X86_XCPT_DF:
299 AssertMsg(uErrorCode == 0, ("Invalid uErrorCode=%#x u8TrapNo=%u\n", uErrorCode, pVCpu->trpm.s.uActiveVector));
300 break;
301 default:
302 AssertMsg(uErrorCode == ~0U, ("Invalid uErrorCode=%#x u8TrapNo=%u\n", uErrorCode, pVCpu->trpm.s.uActiveVector));
303 break;
304 }
305 }
306#endif
307}
308
309
310/**
311 * Sets the fault address of the current \#PF trap. (This function is for use in
312 * trap handlers and such.)
313 *
314 * The caller is responsible for making sure there is an active trap 0e
315 * when making this request.
316 *
317 * @param pVCpu The cross context virtual CPU structure.
318 * @param uCR2 The new fault address (cr2 register).
319 */
320VMMDECL(void) TRPMSetFaultAddress(PVMCPU pVCpu, RTGCUINTPTR uCR2)
321{
322 Log2(("TRPMSetFaultAddress: uCR2=%RGv\n", uCR2));
323 AssertMsg(pVCpu->trpm.s.uActiveVector != ~0U, ("No active trap!\n"));
324 AssertMsg(pVCpu->trpm.s.enmActiveType == TRPM_TRAP, ("Not hardware exception!\n"));
325 AssertMsg(pVCpu->trpm.s.uActiveVector == X86_XCPT_PF, ("Not trap 0e!\n"));
326 pVCpu->trpm.s.uActiveCR2 = uCR2;
327}
328
329
330/**
331 * Sets the instruction-length of the current trap (relevant for software
332 * interrupts and software exceptions like \#BP, \#OF).
333 *
334 * The caller is responsible for making sure there is an active trap when making
335 * this request.
336 *
337 * @param pVCpu The cross context virtual CPU structure.
338 * @param cbInstr The instruction length.
339 */
340VMMDECL(void) TRPMSetInstrLength(PVMCPU pVCpu, uint8_t cbInstr)
341{
342 Log2(("TRPMSetInstrLength: cbInstr=%u\n", cbInstr));
343 AssertMsg(pVCpu->trpm.s.uActiveVector != ~0U, ("No active trap!\n"));
344 AssertMsg( pVCpu->trpm.s.enmActiveType == TRPM_SOFTWARE_INT
345 || ( pVCpu->trpm.s.enmActiveType == TRPM_TRAP
346 && ( pVCpu->trpm.s.uActiveVector == X86_XCPT_BP
347 || pVCpu->trpm.s.uActiveVector == X86_XCPT_OF)),
348 ("Invalid trap type %#x\n", pVCpu->trpm.s.enmActiveType));
349 pVCpu->trpm.s.cbInstr = cbInstr;
350}
351
352
353/**
354 * Sets if the current \#DB exception is due to an INT1/ICEBP instruction.
355 *
356 * The caller is responsible for making sure there is an active trap and it's a
357 * \#DB.
358 *
359 * @param pVCpu The cross context virtual CPU structure.
360 */
361VMMDECL(void) TRPMSetTrapDueToIcebp(PVMCPU pVCpu)
362{
363 AssertMsg(pVCpu->trpm.s.enmActiveType == TRPM_SOFTWARE_INT, ("Trap type for INT1/ICEBP invalid!"));
364 AssertMsg(pVCpu->trpm.s.uActiveVector == X86_XCPT_DB, ("INT1/ICEBP must be indicated by a #DB!\n"));
365 pVCpu->trpm.s.fIcebp = true;
366}
367
368
369/**
370 * Checks if the current active trap/interrupt/exception/fault/whatever is a software
371 * interrupt or not.
372 *
373 * The caller is responsible for making sure there is an active trap
374 * when making this request.
375 *
376 * @returns true if software interrupt, false if not.
377 *
378 * @param pVCpu The cross context virtual CPU structure.
379 */
380VMMDECL(bool) TRPMIsSoftwareInterrupt(PVMCPU pVCpu)
381{
382 AssertMsg(pVCpu->trpm.s.uActiveVector != ~0U, ("No active trap!\n"));
383 return (pVCpu->trpm.s.enmActiveType == TRPM_SOFTWARE_INT);
384}
385
386
387/**
388 * Check if there is an active trap.
389 *
390 * @returns true if trap active, false if not.
391 * @param pVCpu The cross context virtual CPU structure.
392 */
393VMMDECL(bool) TRPMHasTrap(PVMCPU pVCpu)
394{
395 return pVCpu->trpm.s.uActiveVector != ~0U;
396}
397
398
399/**
400 * Query all info about the current active trap/interrupt.
401 * If no trap is active active an error code is returned.
402 *
403 * @returns VBox status code.
404 * @param pVCpu The cross context virtual CPU structure.
405 * @param pu8TrapNo Where to store the trap number.
406 * @param pEnmType Where to store the trap type.
407 * @param puErrorCode Where to store the error code associated with some
408 * traps. ~0U is stored if the trap has no error code.
409 * @param puCR2 Where to store the CR2 associated with a trap 0E.
410 * @param pcbInstr Where to store the instruction-length associated with
411 * some traps.
412 * @param pfIcebp Where to store whether the trap is a \#DB caused by an
413 * INT1/ICEBP instruction.
414 */
415VMMDECL(int) TRPMQueryTrapAll(PVMCPU pVCpu, uint8_t *pu8TrapNo, TRPMEVENT *pEnmType, uint32_t *puErrorCode, PRTGCUINTPTR puCR2,
416 uint8_t *pcbInstr, bool *pfIcebp)
417{
418 /*
419 * Check if we have an active trap.
420 */
421 if (pVCpu->trpm.s.uActiveVector == ~0U)
422 return VERR_TRPM_NO_ACTIVE_TRAP;
423
424 if (pu8TrapNo)
425 *pu8TrapNo = (uint8_t)pVCpu->trpm.s.uActiveVector;
426 if (pEnmType)
427 *pEnmType = pVCpu->trpm.s.enmActiveType;
428 if (puErrorCode)
429 *puErrorCode = pVCpu->trpm.s.uActiveErrorCode;
430 if (puCR2)
431 *puCR2 = pVCpu->trpm.s.uActiveCR2;
432 if (pcbInstr)
433 *pcbInstr = pVCpu->trpm.s.cbInstr;
434 if (pfIcebp)
435 *pfIcebp = pVCpu->trpm.s.fIcebp;
436 return VINF_SUCCESS;
437}
438
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use