VirtualBox

source: vbox/trunk/src/VBox/VMM/include/DBGFInternal.h@ 55036

Last change on this file since 55036 was 54218, checked in by vboxsync, 10 years ago

DBGF,DBGC: Added dmesg command and implemented it for linux guests.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 10.5 KB
Line 
1/* $Id: DBGFInternal.h 54218 2015-02-16 15:17:05Z vboxsync $ */
2/** @file
3 * DBGF - Internal header file.
4 */
5
6/*
7 * Copyright (C) 2006-2013 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef ___DBGFInternal_h
19#define ___DBGFInternal_h
20
21#include <VBox/cdefs.h>
22#include <VBox/types.h>
23#include <iprt/semaphore.h>
24#include <iprt/critsect.h>
25#include <iprt/string.h>
26#include <iprt/avl.h>
27#include <iprt/dbg.h>
28#include <VBox/vmm/dbgf.h>
29
30
31
32/** @defgroup grp_dbgf_int Internals
33 * @ingroup grp_dbgf
34 * @internal
35 * @{
36 */
37
38
39/** VMM Debugger Command. */
40typedef enum DBGFCMD
41{
42 /** No command.
43 * This is assigned to the field by the emulation thread after
44 * a command has been completed. */
45 DBGFCMD_NO_COMMAND = 0,
46 /** Halt the VM. */
47 DBGFCMD_HALT,
48 /** Resume execution. */
49 DBGFCMD_GO,
50 /** Single step execution - stepping into calls. */
51 DBGFCMD_SINGLE_STEP,
52 /** Set a breakpoint. */
53 DBGFCMD_BREAKPOINT_SET,
54 /** Set a access breakpoint. */
55 DBGFCMD_BREAKPOINT_SET_ACCESS,
56 /** Set a REM breakpoint. */
57 DBGFCMD_BREAKPOINT_SET_REM,
58 /** Clear a breakpoint. */
59 DBGFCMD_BREAKPOINT_CLEAR,
60 /** Enable a breakpoint. */
61 DBGFCMD_BREAKPOINT_ENABLE,
62 /** Disable a breakpoint. */
63 DBGFCMD_BREAKPOINT_DISABLE,
64 /** List breakpoints. */
65 DBGFCMD_BREAKPOINT_LIST,
66
67 /** Detaches the debugger.
68 * Disabling all breakpoints, watch points and the like. */
69 DBGFCMD_DETACH_DEBUGGER = 0x7ffffffe,
70 /** Detached the debugger.
71 * The isn't a command as such, it's just that it's necessary for the
72 * detaching protocol to be racefree. */
73 DBGFCMD_DETACHED_DEBUGGER = 0x7fffffff
74} DBGFCMD;
75
76/**
77 * VMM Debugger Command.
78 */
79typedef union DBGFCMDDATA
80{
81 uint32_t uDummy;
82} DBGFCMDDATA;
83/** Pointer to DBGF Command Data. */
84typedef DBGFCMDDATA *PDBGFCMDDATA;
85
86/**
87 * Info type.
88 */
89typedef enum DBGFINFOTYPE
90{
91 /** Invalid. */
92 DBGFINFOTYPE_INVALID = 0,
93 /** Device owner. */
94 DBGFINFOTYPE_DEV,
95 /** Driver owner. */
96 DBGFINFOTYPE_DRV,
97 /** Internal owner. */
98 DBGFINFOTYPE_INT,
99 /** External owner. */
100 DBGFINFOTYPE_EXT
101} DBGFINFOTYPE;
102
103
104/** Pointer to info structure. */
105typedef struct DBGFINFO *PDBGFINFO;
106
107#ifdef IN_RING3
108/**
109 * Info structure.
110 */
111typedef struct DBGFINFO
112{
113 /** The flags. */
114 uint32_t fFlags;
115 /** Owner type. */
116 DBGFINFOTYPE enmType;
117 /** Per type data. */
118 union
119 {
120 /** DBGFINFOTYPE_DEV */
121 struct
122 {
123 /** Device info handler function. */
124 PFNDBGFHANDLERDEV pfnHandler;
125 /** The device instance. */
126 PPDMDEVINS pDevIns;
127 } Dev;
128
129 /** DBGFINFOTYPE_DRV */
130 struct
131 {
132 /** Driver info handler function. */
133 PFNDBGFHANDLERDRV pfnHandler;
134 /** The driver instance. */
135 PPDMDRVINS pDrvIns;
136 } Drv;
137
138 /** DBGFINFOTYPE_INT */
139 struct
140 {
141 /** Internal info handler function. */
142 PFNDBGFHANDLERINT pfnHandler;
143 } Int;
144
145 /** DBGFINFOTYPE_EXT */
146 struct
147 {
148 /** External info handler function. */
149 PFNDBGFHANDLEREXT pfnHandler;
150 /** The user argument. */
151 void *pvUser;
152 } Ext;
153 } u;
154
155 /** Pointer to the description. */
156 const char *pszDesc;
157 /** Pointer to the next info structure. */
158 PDBGFINFO pNext;
159 /** The identifier name length. */
160 size_t cchName;
161 /** The identifier name. (Extends 'beyond' the struct as usual.) */
162 char szName[1];
163} DBGFINFO;
164#endif /* IN_RING3 */
165
166
167/**
168 * Guest OS digger instance.
169 */
170typedef struct DBGFOS
171{
172 /** Pointer to the registration record. */
173 PCDBGFOSREG pReg;
174 /** Pointer to the next OS we've registered. */
175 struct DBGFOS *pNext;
176 /** List of EMT interface wrappers. */
177 struct DBGFOSEMTWRAPPER *pWrapperHead;
178 /** The instance data (variable size). */
179 uint8_t abData[16];
180} DBGFOS;
181/** Pointer to guest OS digger instance. */
182typedef DBGFOS *PDBGFOS;
183/** Pointer to const guest OS digger instance. */
184typedef DBGFOS const *PCDBGFOS;
185
186
187/**
188 * Converts a DBGF pointer into a VM pointer.
189 * @returns Pointer to the VM structure the CPUM is part of.
190 * @param pDBGF Pointer to DBGF instance data.
191 */
192#define DBGF2VM(pDBGF) ( (PVM)((char*)pDBGF - pDBGF->offVM) )
193
194
195/**
196 * DBGF Data (part of VM)
197 */
198typedef struct DBGF
199{
200 /** Offset to the VM structure. */
201 int32_t offVM;
202
203 /** Debugger Attached flag.
204 * Set if a debugger is attached, elsewise it's clear.
205 */
206 bool volatile fAttached;
207
208 /** Stopped in the Hypervisor.
209 * Set if we're stopped on a trace, breakpoint or assertion inside
210 * the hypervisor and have to restrict the available operations.
211 */
212 bool volatile fStoppedInHyper;
213
214 /**
215 * Ping-Pong construct where the Ping side is the VMM and the Pong side
216 * the Debugger.
217 */
218 RTPINGPONG PingPong;
219
220 /** The Event to the debugger.
221 * The VMM will ping the debugger when the event is ready. The event is
222 * either a response to a command or to a break/watch point issued
223 * previously.
224 */
225 DBGFEVENT DbgEvent;
226
227 /** The Command to the VMM.
228 * Operated in an atomic fashion since the VMM will poll on this.
229 * This means that a the command data must be written before this member
230 * is set. The VMM will reset this member to the no-command state
231 * when it have processed it.
232 */
233 DBGFCMD volatile enmVMMCmd;
234 /** The Command data.
235 * Not all commands take data. */
236 DBGFCMDDATA VMMCmdData;
237
238 /** The number of hardware breakpoints. */
239 uint32_t cHwBreakpoints;
240 /** The number of active breakpoints. */
241 uint32_t cBreakpoints;
242 /** Array of hardware breakpoints. (0..3)
243 * This is shared among all the CPUs because life is much simpler that way. */
244 DBGFBP aHwBreakpoints[4];
245 /** Array of int 3 and REM breakpoints. (4..)
246 * @remark This is currently a fixed size array for reasons of simplicity. */
247 DBGFBP aBreakpoints[32];
248} DBGF;
249/** Pointer to DBGF Data. */
250typedef DBGF *PDBGF;
251
252
253/** Converts a DBGFCPU pointer into a VM pointer. */
254#define DBGFCPU_2_VM(pDbgfCpu) ((PVM)((uint8_t *)(pDbgfCpu) + (pDbgfCpu)->offVM))
255
256/**
257 * The per CPU data for DBGF.
258 */
259typedef struct DBGFCPU
260{
261 /** The offset into the VM structure.
262 * @see DBGFCPU_2_VM(). */
263 uint32_t offVM;
264
265 /** Current active breakpoint (id).
266 * This is ~0U if not active. It is set when a execution engine
267 * encounters a breakpoint and returns VINF_EM_DBG_BREAKPOINT. This is
268 * currently not used for REM breakpoints because of the lazy coupling
269 * between VBox and REM. */
270 uint32_t iActiveBp;
271 /** Set if we're singlestepping in raw mode.
272 * This is checked and cleared in the \#DB handler. */
273 bool fSingleSteppingRaw;
274
275 /** Padding the structure to 16 bytes. */
276 bool afReserved[7];
277} DBGFCPU;
278/** Pointer to DBGFCPU data. */
279typedef DBGFCPU *PDBGFCPU;
280
281struct DBGFOSEMTWRAPPER;
282
283/**
284 * The DBGF data kept in the UVM.
285 */
286typedef struct DBGFUSERPERVM
287{
288 /** The address space database lock. */
289 RTSEMRW hAsDbLock;
290 /** The address space handle database. (Protected by hAsDbLock.) */
291 R3PTRTYPE(AVLPVTREE) AsHandleTree;
292 /** The address space process id database. (Protected by hAsDbLock.) */
293 R3PTRTYPE(AVLU32TREE) AsPidTree;
294 /** The address space name database. (Protected by hAsDbLock.) */
295 R3PTRTYPE(RTSTRSPACE) AsNameSpace;
296 /** Special address space aliases. (Protected by hAsDbLock.) */
297 RTDBGAS volatile ahAsAliases[DBGF_AS_COUNT];
298 /** For lazily populating the aliased address spaces. */
299 bool volatile afAsAliasPopuplated[DBGF_AS_COUNT];
300 /** Alignment padding. */
301 bool afAlignment1[2];
302 /** Debug configuration. */
303 R3PTRTYPE(RTDBGCFG) hDbgCfg;
304
305 /** The register database lock. */
306 RTSEMRW hRegDbLock;
307 /** String space for looking up registers. (Protected by hRegDbLock.) */
308 R3PTRTYPE(RTSTRSPACE) RegSpace;
309 /** String space holding the register sets. (Protected by hRegDbLock.) */
310 R3PTRTYPE(RTSTRSPACE) RegSetSpace;
311 /** The number of registers (aliases, sub-fields and the special CPU
312 * register aliases (eg AH) are not counted). */
313 uint32_t cRegs;
314 /** For early initialization by . */
315 bool volatile fRegDbInitialized;
316 /** Alignment padding. */
317 bool afAlignment2[3];
318
319 /** The current Guest OS digger. */
320 R3PTRTYPE(PDBGFOS) pCurOS;
321 /** The head of the Guest OS digger instances. */
322 R3PTRTYPE(PDBGFOS) pOSHead;
323 /** Critical section protecting the Guest OS Digger data. */
324 RTCRITSECTRW OSCritSect;
325
326 /** List of registered info handlers. */
327 R3PTRTYPE(PDBGFINFO) pInfoFirst;
328 /** Critical section protecting the above list. */
329 RTCRITSECT InfoCritSect;
330
331} DBGFUSERPERVM;
332
333/**
334 * The per-CPU DBGF data kept in the UVM.
335 */
336typedef struct DBGFUSERPERVMCPU
337{
338 /** The guest register set for this CPU. Can be NULL. */
339 R3PTRTYPE(struct DBGFREGSET *) pGuestRegSet;
340 /** The hypervisor register set for this CPU. Can be NULL. */
341 R3PTRTYPE(struct DBGFREGSET *) pHyperRegSet;
342} DBGFUSERPERVMCPU;
343
344
345int dbgfR3AsInit(PUVM pUVM);
346void dbgfR3AsTerm(PUVM pUVM);
347void dbgfR3AsRelocate(PUVM pUVM, RTGCUINTPTR offDelta);
348int dbgfR3BpInit(PVM pVM);
349int dbgfR3InfoInit(PUVM pUVM);
350int dbgfR3InfoTerm(PUVM pUVM);
351int dbgfR3OSInit(PUVM pUVM);
352void dbgfR3OSTerm(PUVM pUVM);
353int dbgfR3RegInit(PUVM pUVM);
354void dbgfR3RegTerm(PUVM pUVM);
355int dbgfR3TraceInit(PVM pVM);
356void dbgfR3TraceRelocate(PVM pVM);
357void dbgfR3TraceTerm(PVM pVM);
358
359
360
361#ifdef IN_RING3
362
363#endif
364
365/** @} */
366
367#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