VirtualBox

source: vbox/trunk/include/VBox/trpm.h@ 8155

Last change on this file since 8155 was 8155, checked in by vboxsync, 16 years ago

The Big Sun Rebranding Header Change

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 14.6 KB
Line 
1/** @file
2 * TRPM - The Trap Monitor.
3 */
4
5/*
6 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 *
25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
26 * Clara, CA 95054 USA or visit http://www.sun.com if you need
27 * additional information or have any questions.
28 */
29
30#ifndef ___VBox_trpm_h
31#define ___VBox_trpm_h
32
33#include <VBox/cdefs.h>
34#include <VBox/types.h>
35#include <VBox/x86.h>
36
37
38__BEGIN_DECLS
39/** @defgroup grp_trpm The Trap Monitor API
40 * @{
41 */
42
43/**
44 * Trap: error code present or not
45 */
46typedef enum
47{
48 TRPM_TRAP_HAS_ERRORCODE = 0,
49 TRPM_TRAP_NO_ERRORCODE,
50 /** The usual 32-bit paranoia. */
51 TRPM_TRAP_32BIT_HACK = 0x7fffffff
52} TRPMERRORCODE;
53
54/**
55 * TRPM event type
56 */
57/** Note: must match trpm.mac! */
58typedef enum
59{
60 TRPM_TRAP = 0,
61 TRPM_HARDWARE_INT = 1,
62 TRPM_SOFTWARE_INT = 2,
63 /** The usual 32-bit paranoia. */
64 TRPM_32BIT_HACK = 0x7fffffff
65} TRPMEVENT;
66/** Pointer to a TRPM event type. */
67typedef TRPMEVENT *PTRPMEVENT;
68/** Pointer to a const TRPM event type. */
69typedef TRPMEVENT const *PCTRPMEVENT;
70
71/**
72 * Invalid trap handler for trampoline calls
73 */
74#define TRPM_INVALID_HANDLER 0
75
76/**
77 * Query info about the current active trap/interrupt.
78 * If no trap is active active an error code is returned.
79 *
80 * @returns VBox status code.
81 * @param pVM The virtual machine.
82 * @param pu8TrapNo Where to store the trap number.
83 * @param pEnmType Where to store the trap type.
84 */
85TRPMDECL(int) TRPMQueryTrap(PVM pVM, uint8_t *pu8TrapNo, PTRPMEVENT pEnmType);
86
87/**
88 * Gets the trap number for the current trap.
89 *
90 * The caller is responsible for making sure there is an active trap which
91 * takes an error code when making this request.
92 *
93 * @returns The current trap number.
94 * @param pVM VM handle.
95 */
96TRPMDECL(uint8_t) TRPMGetTrapNo(PVM pVM);
97
98/**
99 * Gets the error code for the current trap.
100 *
101 * The caller is responsible for making sure there is an active trap which
102 * takes an error code when making this request.
103 *
104 * @returns Error code.
105 * @param pVM VM handle.
106 */
107TRPMDECL(RTGCUINT) TRPMGetErrorCode(PVM pVM);
108
109/**
110 * Gets the fault address for the current trap.
111 *
112 * The caller is responsible for making sure there is an active trap 0x0e when
113 * making this request.
114 *
115 * @returns Fault address associated with the trap.
116 * @param pVM VM handle.
117 */
118TRPMDECL(RTGCUINTPTR) TRPMGetFaultAddress(PVM pVM);
119
120/**
121 * Clears the current active trap/exception/interrupt.
122 *
123 * The caller is responsible for making sure there is an active trap
124 * when making this request.
125 *
126 * @returns VBox status code.
127 * @param pVM The virtual machine handle.
128 */
129TRPMDECL(int) TRPMResetTrap(PVM pVM);
130
131/**
132 * Assert trap/exception/interrupt.
133 *
134 * The caller is responsible for making sure there is no active trap
135 * when making this request.
136 *
137 * @returns VBox status code.
138 * @param pVM The virtual machine.
139 * @param u8TrapNo The trap vector to assert.
140 * @param enmType Trap type.
141 */
142TRPMDECL(int) TRPMAssertTrap(PVM pVM, uint8_t u8TrapNo, TRPMEVENT enmType);
143
144/**
145 * Sets the error code of the current trap.
146 * (This function is for use in trap handlers and such.)
147 *
148 * The caller is responsible for making sure there is an active trap
149 * which takes an errorcode when making this request.
150 *
151 * @param pVM The virtual machine.
152 * @param uErrorCode The new error code.
153 */
154TRPMDECL(void) TRPMSetErrorCode(PVM pVM, RTGCUINT uErrorCode);
155
156/**
157 * Sets the error code of the current trap.
158 * (This function is for use in trap handlers and such.)
159 *
160 * The caller is responsible for making sure there is an active trap 0e
161 * when making this request.
162 *
163 * @param pVM The virtual machine.
164 * @param uCR2 The new fault address (cr2 register).
165 */
166TRPMDECL(void) TRPMSetFaultAddress(PVM pVM, RTGCUINTPTR uCR2);
167
168/**
169 * Checks if the current active trap/interrupt/exception/fault/whatever is a software
170 * interrupt or not.
171 *
172 * The caller is responsible for making sure there is an active trap
173 * when making this request.
174 *
175 * @returns true if software interrupt, false if not.
176 *
177 * @param pVM VM handle.
178 */
179TRPMDECL(bool) TRPMIsSoftwareInterrupt(PVM pVM);
180
181/**
182 * Check if there is an active trap.
183 *
184 * @returns true if trap active, false if not.
185 * @param pVM The virtual machine.
186 */
187TRPMDECL(bool) TRPMHasTrap(PVM pVM);
188
189/**
190 * Query all info about the current active trap/interrupt.
191 * If no trap is active active an error code is returned.
192 *
193 * @returns VBox status code.
194 * @param pVM The virtual machine.
195 * @param pu8TrapNo Where to store the trap number.
196 * @param pEnmType Where to store the trap type.
197 * @param puErrorCode Where to store the error code associated with some traps.
198 * ~0U is stored if the trap have no error code.
199 * @param puCR2 Where to store the CR2 associated with a trap 0E.
200 */
201TRPMDECL(int) TRPMQueryTrapAll(PVM pVM, uint8_t *pu8TrapNo, PTRPMEVENT pEnmType, PRTGCUINT puErrorCode, PRTGCUINTPTR puCR2);
202
203
204/**
205 * Save the active trap.
206 *
207 * This routine useful when doing try/catch in the hypervisor.
208 * Any function which uses temporary trap handlers should
209 * probably also use this facility to save the original trap.
210 *
211 * @param pVM VM handle.
212 */
213TRPMDECL(void) TRPMSaveTrap(PVM pVM);
214
215/**
216 * Restore a saved trap.
217 *
218 * Multiple restores of a saved trap is possible.
219 *
220 * @param pVM VM handle.
221 */
222TRPMDECL(void) TRPMRestoreTrap(PVM pVM);
223
224/**
225 * Forward trap or interrupt to the guest's handler
226 *
227 *
228 * @returns VBox status code.
229 * or does not return at all (when the trap is actually forwarded)
230 *
231 * @param pVM The VM to operate on.
232 * @param pRegFrame Pointer to the register frame for the trap.
233 * @param iGate Trap or interrupt gate number
234 * @param opsize Instruction size (only relevant for software interrupts)
235 * @param enmError TRPM_TRAP_HAS_ERRORCODE or TRPM_TRAP_NO_ERRORCODE.
236 * @param enmType TRPM event type
237 * @internal
238 */
239TRPMDECL(int) TRPMForwardTrap(PVM pVM, PCPUMCTXCORE pRegFrame, uint32_t iGate, uint32_t opsize, TRPMERRORCODE enmError, TRPMEVENT enmType);
240
241/**
242 * Raises a cpu exception which doesn't take an error code.
243 *
244 * This function may or may not dispatch the exception before returning.
245 *
246 * @returns VBox status code fit for scheduling.
247 * @retval VINF_EM_RAW_GUEST_TRAP if the exception was left pending.
248 * @retval VINF_TRPM_XCPT_DISPATCHED if the exception was raised and dispatched for raw-mode execution.
249 * @retval VINF_EM_RESCHEDULE_REM if the exception was dispatched and cannot be executed in raw-mode.
250 *
251 * @param pVM The VM handle.
252 * @param pCtxCore The CPU context core.
253 * @param enmXcpt The exception.
254 */
255TRPMDECL(int) TRPMRaiseXcpt(PVM pVM, PCPUMCTXCORE pCtxCore, X86XCPT enmXcpt);
256
257/**
258 * Raises a cpu exception with an errorcode.
259 *
260 * This function may or may not dispatch the exception before returning.
261 *
262 * @returns VBox status code fit for scheduling.
263 * @retval VINF_EM_RAW_GUEST_TRAP if the exception was left pending.
264 * @retval VINF_TRPM_XCPT_DISPATCHED if the exception was raised and dispatched for raw-mode execution.
265 * @retval VINF_EM_RESCHEDULE_REM if the exception was dispatched and cannot be executed in raw-mode.
266 *
267 * @param pVM The VM handle.
268 * @param pCtxCore The CPU context core.
269 * @param enmXcpt The exception.
270 * @param uErr The error code.
271 */
272TRPMDECL(int) TRPMRaiseXcptErr(PVM pVM, PCPUMCTXCORE pCtxCore, X86XCPT enmXcpt, uint32_t uErr);
273
274/**
275 * Raises a cpu exception with an errorcode and CR2.
276 *
277 * This function may or may not dispatch the exception before returning.
278 *
279 * @returns VBox status code fit for scheduling.
280 * @retval VINF_EM_RAW_GUEST_TRAP if the exception was left pending.
281 * @retval VINF_TRPM_XCPT_DISPATCHED if the exception was raised and dispatched for raw-mode execution.
282 * @retval VINF_EM_RESCHEDULE_REM if the exception was dispatched and cannot be executed in raw-mode.
283 *
284 * @param pVM The VM handle.
285 * @param pCtxCore The CPU context core.
286 * @param enmXcpt The exception.
287 * @param uErr The error code.
288 * @param uCR2 The CR2 value.
289 */
290TRPMDECL(int) TRPMRaiseXcptErrCR2(PVM pVM, PCPUMCTXCORE pCtxCore, X86XCPT enmXcpt, uint32_t uErr, RTGCUINTPTR uCR2);
291
292
293#ifdef IN_RING3
294/** @defgroup grp_trpm_r3 TRPM Host Context Ring 3 API
295 * @ingroup grp_trpm
296 * @{
297 */
298
299/**
300 * Initializes the SELM.
301 *
302 * @returns VBox status code.
303 * @param pVM The VM to operate on.
304 */
305TRPMR3DECL(int) TRPMR3Init(PVM pVM);
306
307/**
308 * Applies relocations to data and code managed by this component.
309 *
310 * This function will be called at init and whenever the VMM need
311 * to relocate itself inside the GC.
312 *
313 * @param pVM The VM handle.
314 * @param offDelta Relocation delta relative to old location.
315 */
316TRPMR3DECL(void) TRPMR3Relocate(PVM pVM, RTGCINTPTR offDelta);
317
318/**
319 * The VM is being reset.
320 *
321 * For the TRPM component this means that any IDT write monitors
322 * needs to be removed, any pending trap cleared, and the IDT reset.
323 *
324 * @param pVM VM handle.
325 */
326TRPMR3DECL(void) TRPMR3Reset(PVM pVM);
327
328/**
329 * Set interrupt gate handler
330 * Used for setting up interrupt gates used for kernel calls.
331 *
332 * @returns VBox status code.
333 * @param pVM The VM to operate on.
334 * @param iTrap Interrupt number.
335 */
336TRPMR3DECL(int) TRPMR3EnableGuestTrapHandler(PVM pVM, unsigned iTrap);
337
338/**
339 * Set guest trap/interrupt gate handler
340 * Used for setting up trap gates used for kernel calls.
341 *
342 * @returns VBox status code.
343 * @param pVM The VM to operate on.
344 * @param iTrap Interrupt/trap number.
345 * @parapm pHandler GC handler pointer
346 */
347TRPMR3DECL(int) TRPMR3SetGuestTrapHandler(PVM pVM, unsigned iTrap, RTGCPTR pHandler);
348
349/**
350 * Get guest trap/interrupt gate handler
351 *
352 * @returns Guest trap handler address or TRPM_INVALID_HANDLER if none installed
353 * @param pVM The VM to operate on.
354 * @param iTrap Interrupt/trap number.
355 */
356TRPMR3DECL(RTGCPTR) TRPMR3GetGuestTrapHandler(PVM pVM, unsigned iTrap);
357
358/**
359 * Disable IDT monitoring and syncing
360 *
361 * @param pVM The VM to operate on.
362 */
363TRPMR3DECL(void) TRPMR3DisableMonitoring(PVM pVM);
364
365/**
366 * Check if gate handlers were updated
367 *
368 * @returns VBox status code.
369 * @param pVM The VM to operate on.
370 */
371TRPMR3DECL(int) TRPMR3SyncIDT(PVM pVM);
372
373/**
374 * Check if address is a gate handler (interrupt/trap/task/anything).
375 *
376 * @returns True is gate handler, false if not.
377 *
378 * @param pVM VM handle.
379 * @param GCPtr GC address to check.
380 */
381TRPMR3DECL(bool) TRPMR3IsGateHandler(PVM pVM, RTGCPTR GCPtr);
382
383/**
384 * Check if address is a gate handler (interrupt or trap).
385 *
386 * @returns gate nr or ~0 is not found
387 *
388 * @param pVM VM handle.
389 * @param GCPtr GC address to check.
390 */
391TRPMR3DECL(uint32_t) TRPMR3QueryGateByHandler(PVM pVM, RTGCPTR GCPtr);
392
393/**
394 * Initializes the SELM.
395 *
396 * @returns VBox status code.
397 * @param pVM The VM to operate on.
398 */
399TRPMR3DECL(int) TRPMR3Term(PVM pVM);
400
401
402/**
403 * Inject event (such as external irq or trap)
404 *
405 * @returns VBox status code.
406 * @param pVM The VM to operate on.
407 * @param enmEvent Trpm event type
408 */
409TRPMR3DECL(int) TRPMR3InjectEvent(PVM pVM, TRPMEVENT enmEvent);
410
411/** @} */
412#endif
413
414
415#ifdef IN_GC
416/** @defgroup grp_trpm_gc The TRPM Guest Context API
417 * @ingroup grp_trpm
418 * @{
419 */
420
421/**
422 * Guest Context temporary trap handler
423 *
424 * @returns VBox status code (appropriate for GC return).
425 * In this context VBOX_SUCCESS means to restart the instruction.
426 * @param pVM VM handle.
427 * @param pRegFrame Trap register frame.
428 */
429typedef DECLCALLBACK(int) FNTRPMGCTRAPHANDLER(PVM pVM, PCPUMCTXCORE pRegFrame);
430/** Pointer to a TRPMGCTRAPHANDLER() function. */
431typedef FNTRPMGCTRAPHANDLER *PFNTRPMGCTRAPHANDLER;
432
433/**
434 * Arms a temporary trap handler for traps in Hypervisor code.
435 *
436 * The operation is similar to a System V signal handler. I.e. when the handler
437 * is called it is first set to default action. So, if you need to handler more
438 * than one trap, you must reinstall the handler.
439 *
440 * To uninstall the temporary handler, call this function with pfnHandler set to NULL.
441 *
442 * @returns VBox status.
443 * @param pVM VM handle.
444 * @param iTrap Trap number to install handler [0..255].
445 * @param pfnHandler Pointer to the handler. Use NULL for uninstalling the handler.
446 */
447TRPMGCDECL(int) TRPMGCSetTempHandler(PVM pVM, unsigned iTrap, PFNTRPMGCTRAPHANDLER pfnHandler);
448
449/**
450 * Return to host context from a hypervisor trap handler.
451 * It will also reset any traps that are pending.
452 *
453 * This function will *never* return.
454 *
455 * @param pVM The VM handle.
456 * @param rc The return code for host context.
457 */
458TRPMGCDECL(void) TRPMGCHyperReturnToHost(PVM pVM, int rc);
459
460/** @} */
461#endif
462
463
464#ifdef IN_RING0
465/** @defgroup grp_trpm_r0 TRPM Host Context Ring 0 API
466 * @ingroup grp_trpm
467 * @{
468 */
469
470/**
471 * Dispatches an interrupt that arrived while we were in the guest context.
472 *
473 * @param pVM The VM handle.
474 * @remark Must be called with interrupts disabled.
475 */
476TRPMR0DECL(void) TRPMR0DispatchHostInterrupt(PVM pVM);
477
478/**
479 * Changes the VMMR0Entry() call frame and stack used by the IDT patch code
480 * so that we'll dispatch an interrupt rather than returning directly to Ring-3
481 * when VMMR0Entry() returns.
482 *
483 * @param pVM Pointer to the VM.
484 * @param pvRet Pointer to the return address of VMMR0Entry() on the stack.
485 */
486TRPMR0DECL(void) TRPMR0SetupInterruptDispatcherFrame(PVM pVM, void *pvRet);
487
488/** @} */
489#endif
490
491/** @} */
492__END_DECLS
493
494#endif
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use