1 | /** @file
|
---|
2 | * CSAM - Guest OS Code Scanning and Analyis Manager.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 innotek 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 |
|
---|
17 | #ifndef ___VBox_csam_h
|
---|
18 | #define ___VBox_csam_h
|
---|
19 |
|
---|
20 | #include <VBox/cdefs.h>
|
---|
21 | #include <VBox/types.h>
|
---|
22 | #include <VBox/cpum.h>
|
---|
23 | #include <VBox/em.h>
|
---|
24 |
|
---|
25 |
|
---|
26 | /** @defgroup grp_csam The Code Scanning and Analysis API
|
---|
27 | * @{
|
---|
28 | */
|
---|
29 |
|
---|
30 | /**
|
---|
31 | * CSAM monitoring tag
|
---|
32 | * For use with CSAMR3MonitorPage
|
---|
33 | */
|
---|
34 | typedef enum CSAMTAG
|
---|
35 | {
|
---|
36 | CSAM_TAG_INVALID = 0,
|
---|
37 | CSAM_TAG_REM,
|
---|
38 | CSAM_TAG_PATM,
|
---|
39 | CSAM_TAG_CSAM,
|
---|
40 | CSAM_TAG_32BIT_HACK = 0x7fffffff
|
---|
41 | } CSAMTAG;
|
---|
42 |
|
---|
43 |
|
---|
44 | __BEGIN_DECLS
|
---|
45 |
|
---|
46 |
|
---|
47 | /**
|
---|
48 | * Check if this page needs to be analysed by CSAM.
|
---|
49 | *
|
---|
50 | * This function should only be called for supervisor pages and
|
---|
51 | * only when CSAM is enabled. Leaving these selection criteria
|
---|
52 | * to the caller simplifies the interface (PTE passing).
|
---|
53 | *
|
---|
54 | * Note the the page has not yet been synced, so the TLB trick
|
---|
55 | * (which wasn't ever active anyway) cannot be applied.
|
---|
56 | *
|
---|
57 | * @returns true if the page should be marked not present because
|
---|
58 | * CSAM want need to scan it.
|
---|
59 | * @returns false if the page was already scanned.
|
---|
60 | * @param pVM The VM to operate on.
|
---|
61 | * @param GCPtr GC pointer of page table entry
|
---|
62 | */
|
---|
63 | CSAMDECL(bool) CSAMDoesPageNeedScanning(PVM pVM, RTGCPTR GCPtr);
|
---|
64 |
|
---|
65 | /**
|
---|
66 | * Check if this page was previously scanned by CSAM
|
---|
67 | *
|
---|
68 | * @returns true -> scanned, false -> not scanned
|
---|
69 | * @param pVM The VM to operate on.
|
---|
70 | * @param pPage GC page address
|
---|
71 | */
|
---|
72 | CSAMDECL(bool) CSAMIsPageScanned(PVM pVM, RTGCPTR pPage);
|
---|
73 |
|
---|
74 | /**
|
---|
75 | * Mark a page as scanned/not scanned
|
---|
76 | *
|
---|
77 | * @note: we always mark it as scanned, even if we haven't completely done so
|
---|
78 | *
|
---|
79 | * @returns VBox status code.
|
---|
80 | * @param pVM The VM to operate on.
|
---|
81 | * @param pPage GC page address (not necessarily aligned)
|
---|
82 | * @param fScanned Mark as scanned or not scanned
|
---|
83 | *
|
---|
84 | */
|
---|
85 | CSAMDECL(int) CSAMMarkPage(PVM pVM, RTGCPTR pPage, bool fScanned);
|
---|
86 |
|
---|
87 |
|
---|
88 | /**
|
---|
89 | * Remember a possible code page for later inspection
|
---|
90 | *
|
---|
91 | * @returns VBox status code.
|
---|
92 | * @param pVM The VM to operate on.
|
---|
93 | * @param GCPtr GC pointer of page
|
---|
94 | */
|
---|
95 | CSAMDECL(void) CSAMMarkPossibleCodePage(PVM pVM, RTGCPTR GCPtr);
|
---|
96 |
|
---|
97 | /**
|
---|
98 | * Query CSAM state (enabled/disabled)
|
---|
99 | *
|
---|
100 | * @returns 0 - disabled, 1 - enabled
|
---|
101 | * @param pVM The VM to operate on.
|
---|
102 | */
|
---|
103 | #define CSAMIsEnabled(pVM) (pVM->fCSAMEnabled && EMIsRawRing0Enabled(pVM))
|
---|
104 |
|
---|
105 | /**
|
---|
106 | * Turn on code scanning
|
---|
107 | *
|
---|
108 | * @returns VBox status code. (trap handled or not)
|
---|
109 | * @param pVM The VM to operate on.
|
---|
110 | */
|
---|
111 | CSAMDECL(int) CSAMEnableScanning(PVM pVM);
|
---|
112 |
|
---|
113 | /**
|
---|
114 | * Turn off code scanning
|
---|
115 | *
|
---|
116 | * @returns VBox status code. (trap handled or not)
|
---|
117 | * @param pVM The VM to operate on.
|
---|
118 | */
|
---|
119 | CSAMDECL(int) CSAMDisableScanning(PVM pVM);
|
---|
120 |
|
---|
121 |
|
---|
122 | /**
|
---|
123 | * Check if this page needs to be analysed by CSAM
|
---|
124 | *
|
---|
125 | * @returns 0 - disabled, 1 - enabled
|
---|
126 | * @param pVM The VM to operate on.
|
---|
127 | * @param pvFault Fault address
|
---|
128 | */
|
---|
129 | CSAMDECL(int) CSAMExecFault(PVM pVM, RTGCPTR pvFault);
|
---|
130 |
|
---|
131 | /**
|
---|
132 | * Check if we've scanned this instruction before. If true, then we can emulate
|
---|
133 | * it instead of returning to ring 3.
|
---|
134 | *
|
---|
135 | * @returns boolean
|
---|
136 | * @param pVM The VM to operate on.
|
---|
137 | * @param GCPtr GC pointer of page table entry
|
---|
138 | */
|
---|
139 | CSAMDECL(bool) CSAMIsKnownDangerousInstr(PVM pVM, RTGCPTR GCPtr);
|
---|
140 |
|
---|
141 |
|
---|
142 | #ifdef IN_RING3
|
---|
143 | /** @defgroup grp_csam_r3 The Code Scanning and Analysis API
|
---|
144 | * @ingroup grp_csam
|
---|
145 | * @{
|
---|
146 | */
|
---|
147 |
|
---|
148 | /**
|
---|
149 | * Query CSAM state (enabled/disabled)
|
---|
150 | *
|
---|
151 | * @returns 0 - disabled, 1 - enabled
|
---|
152 | * @param pVM The VM to operate on.
|
---|
153 | */
|
---|
154 | CSAMR3DECL(int) CSAMR3IsEnabled(PVM pVM);
|
---|
155 |
|
---|
156 | /**
|
---|
157 | * Initializes the csam.
|
---|
158 | *
|
---|
159 | * @returns VBox status code.
|
---|
160 | * @param pVM The VM to operate on.
|
---|
161 | */
|
---|
162 | CSAMR3DECL(int) CSAMR3Init(PVM pVM);
|
---|
163 |
|
---|
164 | /**
|
---|
165 | * Applies relocations to data and code managed by this
|
---|
166 | * component. This function will be called at init and
|
---|
167 | * whenever the VMM need to relocate it self inside the GC.
|
---|
168 | *
|
---|
169 | * The csam will update the addresses used by the switcher.
|
---|
170 | *
|
---|
171 | * @param pVM The VM.
|
---|
172 | * @param offDelta Relocation delta.
|
---|
173 | */
|
---|
174 | CSAMR3DECL(void) CSAMR3Relocate(PVM pVM, RTGCINTPTR offDelta);
|
---|
175 |
|
---|
176 | /**
|
---|
177 | * Terminates the csam.
|
---|
178 | *
|
---|
179 | * Termination means cleaning up and freeing all resources,
|
---|
180 | * the VM it self is at this point powered off or suspended.
|
---|
181 | *
|
---|
182 | * @returns VBox status code.
|
---|
183 | * @param pVM The VM to operate on.
|
---|
184 | */
|
---|
185 | CSAMR3DECL(int) CSAMR3Term(PVM pVM);
|
---|
186 |
|
---|
187 | /**
|
---|
188 | * CSAM reset callback.
|
---|
189 | *
|
---|
190 | * @returns VBox status code.
|
---|
191 | * @param pVM The VM which is reset.
|
---|
192 | */
|
---|
193 | CSAMR3DECL(int) CSAMR3Reset(PVM pVM);
|
---|
194 |
|
---|
195 |
|
---|
196 | /**
|
---|
197 | * Notify CSAM of a page flush
|
---|
198 | *
|
---|
199 | * @returns VBox status code
|
---|
200 | * @param pVM The VM to operate on.
|
---|
201 | * @param addr GC address of the page to flush
|
---|
202 | */
|
---|
203 | CSAMR3DECL(int) CSAMR3FlushPage(PVM pVM, RTGCPTR addr);
|
---|
204 |
|
---|
205 | /**
|
---|
206 | * Remove a CSAM monitored page. Use with care!
|
---|
207 | *
|
---|
208 | * @returns VBox status code
|
---|
209 | * @param pVM The VM to operate on.
|
---|
210 | * @param addr GC address of the page to flush
|
---|
211 | */
|
---|
212 | CSAMR3DECL(int) CSAMR3RemovePage(PVM pVM, RTGCPTR addr);
|
---|
213 |
|
---|
214 | /**
|
---|
215 | * Scan and analyse code
|
---|
216 | *
|
---|
217 | * @returns VBox status code.
|
---|
218 | * @param pVM The VM to operate on.
|
---|
219 | * @param Sel selector
|
---|
220 | * @param pHiddenSel The hidden selector register.
|
---|
221 | * @param pInstrGC Instruction pointer
|
---|
222 | */
|
---|
223 | CSAMR3DECL(int) CSAMR3CheckCodeEx(PVM pVM, RTSEL Sel, CPUMSELREGHID *pHiddenSel, RTGCPTR pInstrGC);
|
---|
224 |
|
---|
225 | /**
|
---|
226 | * Scan and analyse code
|
---|
227 | *
|
---|
228 | * @returns VBox status code.
|
---|
229 | * @param pVM The VM to operate on.
|
---|
230 | * @param pInstrGC Instruction pointer (0:32 virtual address)
|
---|
231 | */
|
---|
232 | CSAMR3DECL(int) CSAMR3CheckCode(PVM pVM, RTGCPTR pInstrGC);
|
---|
233 |
|
---|
234 | /**
|
---|
235 | * Mark an instruction in a page as scanned/not scanned
|
---|
236 | *
|
---|
237 | * @returns VBox status code.
|
---|
238 | * @param pVM The VM to operate on.
|
---|
239 | * @param pInstr Instruction pointer
|
---|
240 | * @param opsize Instruction size
|
---|
241 | * @param fScanned Mark as scanned or not
|
---|
242 | */
|
---|
243 | CSAMR3DECL(int) CSAMR3MarkCode(PVM pVM, RTGCPTR pInstr, uint32_t opsize, bool fScanned);
|
---|
244 |
|
---|
245 | /**
|
---|
246 | * Perform any pending actions
|
---|
247 | *
|
---|
248 | * @returns VBox status code.
|
---|
249 | * @param pVM The VM to operate on.
|
---|
250 | */
|
---|
251 | CSAMR3DECL(int) CSAMR3DoPendingAction(PVM pVM);
|
---|
252 |
|
---|
253 | /**
|
---|
254 | * Monitors a code page (if not already monitored)
|
---|
255 | *
|
---|
256 | * @returns VBox status code
|
---|
257 | * @param pVM The VM to operate on.
|
---|
258 | * @param pPageAddrGC The page to monitor
|
---|
259 | * @param enmTag Monitor tag
|
---|
260 | */
|
---|
261 | CSAMR3DECL(int) CSAMR3MonitorPage(PVM pVM, RTGCPTR pPageAddrGC, CSAMTAG enmTag);
|
---|
262 |
|
---|
263 | /**
|
---|
264 | * Analyse interrupt and trap gates
|
---|
265 | *
|
---|
266 | * @returns VBox status code.
|
---|
267 | * @param pVM The VM to operate on.
|
---|
268 | * @param iGate Start gate
|
---|
269 | * @param cGates Number of gates to check
|
---|
270 | */
|
---|
271 | CSAMR3DECL(int) CSAMR3CheckGates(PVM pVM, uint32_t iGate, uint32_t cGates);
|
---|
272 |
|
---|
273 | /**
|
---|
274 | * Record previous call instruction addresses
|
---|
275 | *
|
---|
276 | * @returns VBox status code.
|
---|
277 | * @param pVM The VM to operate on.
|
---|
278 | * @param GCPtrCall Call address
|
---|
279 | */
|
---|
280 | CSAMR3DECL(int) CSAMR3RecordCallAddress(PVM pVM, RTGCPTR GCPtrCall);
|
---|
281 |
|
---|
282 | /** @} */
|
---|
283 | #endif
|
---|
284 |
|
---|
285 |
|
---|
286 | /** @} */
|
---|
287 | __END_DECLS
|
---|
288 |
|
---|
289 | #endif
|
---|