1 | /** @file
|
---|
2 | * TRPM - The Trap Monitor.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2017 Oracle Corporation
|
---|
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 |
|
---|
26 | #ifndef ___VBox_vmm_trpm_h
|
---|
27 | #define ___VBox_vmm_trpm_h
|
---|
28 |
|
---|
29 | #include <VBox/types.h>
|
---|
30 | #include <iprt/x86.h>
|
---|
31 |
|
---|
32 |
|
---|
33 | RT_C_DECLS_BEGIN
|
---|
34 | /** @defgroup grp_trpm The Trap Monitor API
|
---|
35 | * @ingroup grp_vmm
|
---|
36 | * @{
|
---|
37 | */
|
---|
38 |
|
---|
39 | /**
|
---|
40 | * Trap: error code present or not
|
---|
41 | */
|
---|
42 | typedef enum
|
---|
43 | {
|
---|
44 | TRPM_TRAP_HAS_ERRORCODE = 0,
|
---|
45 | TRPM_TRAP_NO_ERRORCODE,
|
---|
46 | /** The usual 32-bit paranoia. */
|
---|
47 | TRPM_TRAP_32BIT_HACK = 0x7fffffff
|
---|
48 | } TRPMERRORCODE;
|
---|
49 |
|
---|
50 | /**
|
---|
51 | * TRPM event type
|
---|
52 | */
|
---|
53 | /** Note: must match trpm.mac! */
|
---|
54 | typedef enum
|
---|
55 | {
|
---|
56 | TRPM_TRAP = 0,
|
---|
57 | TRPM_HARDWARE_INT = 1,
|
---|
58 | TRPM_SOFTWARE_INT = 2,
|
---|
59 | /** The usual 32-bit paranoia. */
|
---|
60 | TRPM_32BIT_HACK = 0x7fffffff
|
---|
61 | } TRPMEVENT;
|
---|
62 | /** Pointer to a TRPM event type. */
|
---|
63 | typedef TRPMEVENT *PTRPMEVENT;
|
---|
64 | /** Pointer to a const TRPM event type. */
|
---|
65 | typedef TRPMEVENT const *PCTRPMEVENT;
|
---|
66 |
|
---|
67 | /**
|
---|
68 | * Invalid trap handler for trampoline calls
|
---|
69 | */
|
---|
70 | #define TRPM_INVALID_HANDLER 0
|
---|
71 |
|
---|
72 | VMMDECL(int) TRPMQueryTrap(PVMCPU pVCpu, uint8_t *pu8TrapNo, PTRPMEVENT penmType);
|
---|
73 | VMMDECL(uint8_t) TRPMGetTrapNo(PVMCPU pVCpu);
|
---|
74 | VMMDECL(RTGCUINT) TRPMGetErrorCode(PVMCPU pVCpu);
|
---|
75 | VMMDECL(RTGCUINTPTR) TRPMGetFaultAddress(PVMCPU pVCpu);
|
---|
76 | VMMDECL(uint8_t) TRPMGetInstrLength(PVMCPU pVCpu);
|
---|
77 | VMMDECL(int) TRPMResetTrap(PVMCPU pVCpu);
|
---|
78 | VMMDECL(int) TRPMAssertTrap(PVMCPU pVCpu, uint8_t u8TrapNo, TRPMEVENT enmType);
|
---|
79 | VMMDECL(int) TRPMAssertXcptPF(PVMCPU pVCpu, RTGCUINTPTR uCR2, RTGCUINT uErrorCode);
|
---|
80 | VMMDECL(void) TRPMSetErrorCode(PVMCPU pVCpu, RTGCUINT uErrorCode);
|
---|
81 | VMMDECL(void) TRPMSetFaultAddress(PVMCPU pVCpu, RTGCUINTPTR uCR2);
|
---|
82 | VMMDECL(void) TRPMSetInstrLength(PVMCPU pVCpu, uint8_t cbInstr);
|
---|
83 | VMMDECL(bool) TRPMIsSoftwareInterrupt(PVMCPU pVCpu);
|
---|
84 | VMMDECL(bool) TRPMHasTrap(PVMCPU pVCpu);
|
---|
85 | VMMDECL(int) TRPMQueryTrapAll(PVMCPU pVCpu, uint8_t *pu8TrapNo, PTRPMEVENT pEnmType, PRTGCUINT puErrorCode, PRTGCUINTPTR puCR2, uint8_t *pcbInstr);
|
---|
86 | VMMDECL(void) TRPMSaveTrap(PVMCPU pVCpu);
|
---|
87 | VMMDECL(void) TRPMRestoreTrap(PVMCPU pVCpu);
|
---|
88 | VMMDECL(int) TRPMForwardTrap(PVMCPU pVCpu, PCPUMCTXCORE pRegFrame, uint32_t iGate, uint32_t cbInstr, TRPMERRORCODE enmError, TRPMEVENT enmType, int32_t iOrgTrap);
|
---|
89 | VMMDECL(int) TRPMRaiseXcpt(PVMCPU pVCpu, PCPUMCTXCORE pCtxCore, X86XCPT enmXcpt);
|
---|
90 | VMMDECL(int) TRPMRaiseXcptErr(PVMCPU pVCpu, PCPUMCTXCORE pCtxCore, X86XCPT enmXcpt, uint32_t uErr);
|
---|
91 | VMMDECL(int) TRPMRaiseXcptErrCR2(PVMCPU pVCpu, PCPUMCTXCORE pCtxCore, X86XCPT enmXcpt, uint32_t uErr, RTGCUINTPTR uCR2);
|
---|
92 |
|
---|
93 |
|
---|
94 | #ifdef IN_RING3
|
---|
95 | /** @defgroup grp_trpm_r3 TRPM Host Context Ring 3 API
|
---|
96 | * @{
|
---|
97 | */
|
---|
98 | VMMR3DECL(int) TRPMR3Init(PVM pVM);
|
---|
99 | VMMR3DECL(void) TRPMR3Relocate(PVM pVM, RTGCINTPTR offDelta);
|
---|
100 | VMMR3DECL(void) TRPMR3ResetCpu(PVMCPU pVCpu);
|
---|
101 | VMMR3DECL(void) TRPMR3Reset(PVM pVM);
|
---|
102 | VMMR3DECL(int) TRPMR3Term(PVM pVM);
|
---|
103 | VMMR3DECL(int) TRPMR3InjectEvent(PVM pVM, PVMCPU pVCpu, TRPMEVENT enmEvent);
|
---|
104 | # ifdef VBOX_WITH_RAW_MODE
|
---|
105 | VMMR3_INT_DECL(int) TRPMR3GetImportRC(PVM pVM, const char *pszSymbol, PRTRCPTR pRCPtrValue);
|
---|
106 | VMMR3DECL(int) TRPMR3SyncIDT(PVM pVM, PVMCPU pVCpu);
|
---|
107 | VMMR3DECL(bool) TRPMR3IsGateHandler(PVM pVM, RTRCPTR GCPtr);
|
---|
108 | VMMR3DECL(uint32_t) TRPMR3QueryGateByHandler(PVM pVM, RTRCPTR GCPtr);
|
---|
109 | VMMR3DECL(int) TRPMR3EnableGuestTrapHandler(PVM pVM, unsigned iTrap);
|
---|
110 | VMMR3DECL(int) TRPMR3SetGuestTrapHandler(PVM pVM, unsigned iTrap, RTRCPTR pHandler);
|
---|
111 | VMMR3DECL(RTRCPTR) TRPMR3GetGuestTrapHandler(PVM pVM, unsigned iTrap);
|
---|
112 | # endif
|
---|
113 | /** @} */
|
---|
114 | #endif
|
---|
115 |
|
---|
116 |
|
---|
117 | #ifdef IN_RC
|
---|
118 | /** @defgroup grp_trpm_rc The TRPM Raw-mode Context API
|
---|
119 | * @{
|
---|
120 | */
|
---|
121 |
|
---|
122 | /**
|
---|
123 | * Guest Context temporary trap handler
|
---|
124 | *
|
---|
125 | * @returns VBox status code (appropriate for GC return).
|
---|
126 | * In this context VINF_SUCCESS means to restart the instruction.
|
---|
127 | * @param pVM The cross context VM structure.
|
---|
128 | * @param pRegFrame Trap register frame.
|
---|
129 | */
|
---|
130 | typedef DECLCALLBACK(int) FNTRPMGCTRAPHANDLER(PVM pVM, PCPUMCTXCORE pRegFrame);
|
---|
131 | /** Pointer to a TRPMGCTRAPHANDLER() function. */
|
---|
132 | typedef FNTRPMGCTRAPHANDLER *PFNTRPMGCTRAPHANDLER;
|
---|
133 |
|
---|
134 | VMMRCDECL(int) TRPMGCSetTempHandler(PVM pVM, unsigned iTrap, PFNTRPMGCTRAPHANDLER pfnHandler);
|
---|
135 | VMMRCDECL(void) TRPMGCHyperReturnToHost(PVM pVM, int rc);
|
---|
136 | /** @} */
|
---|
137 | #endif
|
---|
138 |
|
---|
139 |
|
---|
140 | #ifdef IN_RING0
|
---|
141 | /** @defgroup grp_trpm_r0 TRPM Host Context Ring 0 API
|
---|
142 | * @{
|
---|
143 | */
|
---|
144 | VMMR0DECL(void) TRPMR0DispatchHostInterrupt(PVM pVM);
|
---|
145 | VMMR0DECL(void) TRPMR0SetupInterruptDispatcherFrame(PVM pVM, void *pvRet);
|
---|
146 | /** @} */
|
---|
147 | #endif
|
---|
148 |
|
---|
149 | /** @} */
|
---|
150 | RT_C_DECLS_END
|
---|
151 |
|
---|
152 | #endif
|
---|