VirtualBox

source: vbox/trunk/include/VBox/csam.h@ 4071

Last change on this file since 4071 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.1 KB
Line 
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 */
34typedef 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 */
63CSAMDECL(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 */
72CSAMDECL(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 */
85CSAMDECL(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 */
95CSAMDECL(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 */
111CSAMDECL(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 */
119CSAMDECL(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 */
129CSAMDECL(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 */
139CSAMDECL(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 */
154CSAMR3DECL(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 */
162CSAMR3DECL(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 */
174CSAMR3DECL(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 */
185CSAMR3DECL(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 */
193CSAMR3DECL(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 */
203CSAMR3DECL(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 */
212CSAMR3DECL(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 */
223CSAMR3DECL(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 */
232CSAMR3DECL(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 */
243CSAMR3DECL(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 */
251CSAMR3DECL(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 */
261CSAMR3DECL(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 */
271CSAMR3DECL(int) CSAMR3CheckGates(PVM pVM, uint32_t iGate, uint32_t cGates);
272
273/** @} */
274#endif
275
276
277/** @} */
278__END_DECLS
279
280#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