VirtualBox

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

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

PTRPMEVENT and PCTRPMEVENT.

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