VirtualBox

source: vbox/trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp@ 65078

Last change on this file since 65078 was 64770, checked in by vboxsync, 8 years ago

VMM/DBGF, HM: Fix int3 based breakpoints set in the VM debugger when using VT-x.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 280.6 KB
Line 
1/* $Id: DBGCEmulateCodeView.cpp 64770 2016-12-01 12:28:44Z vboxsync $ */
2/** @file
3 * DBGC - Debugger Console, CodeView / WinDbg Emulation.
4 */
5
6/*
7 * Copyright (C) 2006-2016 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
19/*********************************************************************************************************************************
20* Header Files *
21*********************************************************************************************************************************/
22#define LOG_GROUP LOG_GROUP_DBGC
23#include <VBox/dbg.h>
24#include <VBox/vmm/dbgf.h>
25#include <VBox/vmm/pgm.h>
26#include <VBox/vmm/cpum.h>
27#include <VBox/dis.h>
28#include <VBox/param.h>
29#include <VBox/err.h>
30#include <VBox/log.h>
31
32#include <iprt/asm.h>
33#include <iprt/mem.h>
34#include <iprt/string.h>
35#include <iprt/assert.h>
36#include <iprt/ctype.h>
37
38#include <stdlib.h>
39#include <stdio.h>
40
41#include "DBGCInternal.h"
42
43
44/*********************************************************************************************************************************
45* Internal Functions *
46*********************************************************************************************************************************/
47static FNDBGCCMD dbgcCmdBrkAccess;
48static FNDBGCCMD dbgcCmdBrkClear;
49static FNDBGCCMD dbgcCmdBrkDisable;
50static FNDBGCCMD dbgcCmdBrkEnable;
51static FNDBGCCMD dbgcCmdBrkList;
52static FNDBGCCMD dbgcCmdBrkSet;
53static FNDBGCCMD dbgcCmdBrkREM;
54static FNDBGCCMD dbgcCmdDumpMem;
55static FNDBGCCMD dbgcCmdDumpDT;
56static FNDBGCCMD dbgcCmdDumpIDT;
57static FNDBGCCMD dbgcCmdDumpPageDir;
58static FNDBGCCMD dbgcCmdDumpPageDirBoth;
59static FNDBGCCMD dbgcCmdDumpPageHierarchy;
60static FNDBGCCMD dbgcCmdDumpPageTable;
61static FNDBGCCMD dbgcCmdDumpPageTableBoth;
62static FNDBGCCMD dbgcCmdDumpTSS;
63static FNDBGCCMD dbgcCmdDumpTypeInfo;
64static FNDBGCCMD dbgcCmdDumpTypedVal;
65static FNDBGCCMD dbgcCmdEditMem;
66static FNDBGCCMD dbgcCmdGo;
67static FNDBGCCMD dbgcCmdGoUp;
68static FNDBGCCMD dbgcCmdListModules;
69static FNDBGCCMD dbgcCmdListNear;
70static FNDBGCCMD dbgcCmdListSource;
71static FNDBGCCMD dbgcCmdMemoryInfo;
72static FNDBGCCMD dbgcCmdReg;
73static FNDBGCCMD dbgcCmdRegGuest;
74static FNDBGCCMD dbgcCmdRegHyper;
75static FNDBGCCMD dbgcCmdRegTerse;
76static FNDBGCCMD dbgcCmdSearchMem;
77static FNDBGCCMD dbgcCmdSearchMemType;
78static FNDBGCCMD dbgcCmdStepTrace;
79static FNDBGCCMD dbgcCmdStepTraceTo;
80static FNDBGCCMD dbgcCmdStepTraceToggle;
81static FNDBGCCMD dbgcCmdEventCtrl;
82static FNDBGCCMD dbgcCmdEventCtrlList;
83static FNDBGCCMD dbgcCmdEventCtrlReset;
84static FNDBGCCMD dbgcCmdStack;
85static FNDBGCCMD dbgcCmdUnassemble;
86static FNDBGCCMD dbgcCmdUnassembleCfg;
87
88
89/*********************************************************************************************************************************
90* Global Variables *
91*********************************************************************************************************************************/
92/** 'ba' arguments. */
93static const DBGCVARDESC g_aArgBrkAcc[] =
94{
95 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
96 { 1, 1, DBGCVAR_CAT_STRING, 0, "access", "The access type: x=execute, rw=read/write (alias r), w=write, i=not implemented." },
97 { 1, 1, DBGCVAR_CAT_NUMBER, 0, "size", "The access size: 1, 2, 4, or 8. 'x' access requires 1, and 8 requires amd64 long mode." },
98 { 1, 1, DBGCVAR_CAT_GC_POINTER, 0, "address", "The address." },
99 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "passes", "The number of passes before we trigger the breakpoint. (0 is default)" },
100 { 0, 1, DBGCVAR_CAT_NUMBER, DBGCVD_FLAGS_DEP_PREV, "max passes", "The number of passes after which we stop triggering the breakpoint. (~0 is default)" },
101 { 0, 1, DBGCVAR_CAT_STRING, 0, "cmds", "String of commands to be executed when the breakpoint is hit. Quote it!" },
102};
103
104
105/** 'bc', 'bd', 'be' arguments. */
106static const DBGCVARDESC g_aArgBrks[] =
107{
108 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
109 { 0, ~0U, DBGCVAR_CAT_NUMBER, 0, "#bp", "Breakpoint number." },
110 { 0, 1, DBGCVAR_CAT_STRING, 0, "all", "All breakpoints." },
111};
112
113
114/** 'bp' arguments. */
115static const DBGCVARDESC g_aArgBrkSet[] =
116{
117 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
118 { 1, 1, DBGCVAR_CAT_GC_POINTER, 0, "address", "The address." },
119 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "passes", "The number of passes before we trigger the breakpoint. (0 is default)" },
120 { 0, 1, DBGCVAR_CAT_NUMBER, DBGCVD_FLAGS_DEP_PREV, "max passes", "The number of passes after which we stop triggering the breakpoint. (~0 is default)" },
121 { 0, 1, DBGCVAR_CAT_STRING, 0, "cmds", "String of commands to be executed when the breakpoint is hit. Quote it!" },
122};
123
124
125/** 'br' arguments. */
126static const DBGCVARDESC g_aArgBrkREM[] =
127{
128 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
129 { 1, 1, DBGCVAR_CAT_GC_POINTER, 0, "address", "The address." },
130 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "passes", "The number of passes before we trigger the breakpoint. (0 is default)" },
131 { 0, 1, DBGCVAR_CAT_NUMBER, DBGCVD_FLAGS_DEP_PREV, "max passes", "The number of passes after which we stop triggering the breakpoint. (~0 is default)" },
132 { 0, 1, DBGCVAR_CAT_STRING, 0, "cmds", "String of commands to be executed when the breakpoint is hit. Quote it!" },
133};
134
135
136/** 'd?' arguments. */
137static const DBGCVARDESC g_aArgDumpMem[] =
138{
139 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
140 { 0, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address where to start dumping memory." },
141};
142
143
144/** 'dg', 'dga', 'dl', 'dla' arguments. */
145static const DBGCVARDESC g_aArgDumpDT[] =
146{
147 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
148 { 0, ~0U, DBGCVAR_CAT_NUMBER, 0, "sel", "Selector or selector range." },
149 { 0, ~0U, DBGCVAR_CAT_POINTER, 0, "address", "Far address which selector should be dumped." },
150};
151
152
153/** 'di', 'dia' arguments. */
154static const DBGCVARDESC g_aArgDumpIDT[] =
155{
156 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
157 { 0, ~0U, DBGCVAR_CAT_NUMBER, 0, "int", "The interrupt vector or interrupt vector range." },
158};
159
160
161/** 'dpd*' arguments. */
162static const DBGCVARDESC g_aArgDumpPD[] =
163{
164 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
165 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "index", "Index into the page directory." },
166 { 0, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address which page directory entry to start dumping from. Range is applied to the page directory." },
167};
168
169
170/** 'dpda' arguments. */
171static const DBGCVARDESC g_aArgDumpPDAddr[] =
172{
173 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
174 { 0, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address of the page directory entry to start dumping from." },
175};
176
177
178/** 'dph*' arguments. */
179static const DBGCVARDESC g_aArgDumpPH[] =
180{
181 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
182 { 0, 1, DBGCVAR_CAT_GC_POINTER, 0, "address", "Where in the address space to start dumping and for how long (range). The default address/range will be used if omitted." },
183 { 0, 1, DBGCVAR_CAT_NUMBER, DBGCVD_FLAGS_DEP_PREV, "cr3", "The CR3 value to use. The current CR3 of the context will be used if omitted." },
184 { 0, 1, DBGCVAR_CAT_STRING, DBGCVD_FLAGS_DEP_PREV, "mode", "The paging mode: legacy, pse, pae, long, ept. Append '-np' for nested paging and '-nx' for no-execute. The current mode will be used if omitted." },
185};
186
187
188/** 'dpt?' arguments. */
189static const DBGCVARDESC g_aArgDumpPT[] =
190{
191 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
192 { 1, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address which page directory entry to start dumping from." },
193};
194
195
196/** 'dpta' arguments. */
197static const DBGCVARDESC g_aArgDumpPTAddr[] =
198{
199 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
200 { 1, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address of the page table entry to start dumping from." },
201};
202
203
204/** 'dt' arguments. */
205static const DBGCVARDESC g_aArgDumpTSS[] =
206{
207 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
208 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "tss", "TSS selector number." },
209 { 0, 1, DBGCVAR_CAT_POINTER, 0, "tss:ign|addr", "TSS address. If the selector is a TSS selector, the offset will be ignored." }
210};
211
212
213/** 'dti' arguments. */
214static const DBGCVARDESC g_aArgDumpTypeInfo[] =
215{
216 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
217 { 1, 1, DBGCVAR_CAT_STRING, 0, "type", "The type to dump" },
218 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "levels", "How many levels to dump the type information" }
219};
220
221
222/** 'dtv' arguments. */
223static const DBGCVARDESC g_aArgDumpTypedVal[] =
224{
225 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
226 { 1, 1, DBGCVAR_CAT_STRING, 0, "type", "The type to use" },
227 { 1, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address to start dumping from." },
228 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "levels", "How many levels to dump" }
229};
230
231
232/** 'e?' arguments. */
233static const DBGCVARDESC g_aArgEditMem[] =
234{
235 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
236 { 1, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address where to write." },
237 { 1, ~0U, DBGCVAR_CAT_NUMBER, 0, "value", "Value to write." },
238};
239
240
241/** 'lm' arguments. */
242static const DBGCVARDESC g_aArgListMods[] =
243{
244 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
245 { 0, ~0U, DBGCVAR_CAT_STRING, 0, "module", "Module name." },
246};
247
248
249/** 'ln' arguments. */
250static const DBGCVARDESC g_aArgListNear[] =
251{
252 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
253 { 0, ~0U, DBGCVAR_CAT_POINTER, 0, "address", "Address of the symbol to look up." },
254 { 0, ~0U, DBGCVAR_CAT_SYMBOL, 0, "symbol", "Symbol to lookup." },
255};
256
257
258/** 'ls' arguments. */
259static const DBGCVARDESC g_aArgListSource[] =
260{
261 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
262 { 0, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address where to start looking for source lines." },
263};
264
265
266/** 'm' argument. */
267static const DBGCVARDESC g_aArgMemoryInfo[] =
268{
269 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
270 { 1, 1, DBGCVAR_CAT_POINTER, 0, "address", "Pointer to obtain info about." },
271};
272
273
274/** 'p', 'pc', 'pt', 't', 'tc' and 'tt' arguments. */
275static const DBGCVARDESC g_aArgStepTrace[] =
276{
277 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
278 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "count", "Number of instructions or source lines to step." },
279 { 0, 1, DBGCVAR_CAT_STRING, 0, "cmds", "String of commands to be executed afterwards. Quote it!" },
280};
281
282
283/** 'pa' and 'ta' arguments. */
284static const DBGCVARDESC g_aArgStepTraceTo[] =
285{
286 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
287 { 1, 1, DBGCVAR_CAT_POINTER, 0, "address", "Where to stop" },
288 { 0, 1, DBGCVAR_CAT_STRING, 0, "cmds", "String of commands to be executed afterwards. Quote it!" },
289};
290
291
292/** 'r' arguments. */
293static const DBGCVARDESC g_aArgReg[] =
294{
295 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
296 { 0, 1, DBGCVAR_CAT_SYMBOL, 0, "register", "Register to show or set." },
297 { 0, 1, DBGCVAR_CAT_STRING, DBGCVD_FLAGS_DEP_PREV, "=", "Equal sign." },
298 { 0, 1, DBGCVAR_CAT_NUMBER, DBGCVD_FLAGS_DEP_PREV, "value", "New register value." },
299};
300
301
302/** 's' arguments. */
303static const DBGCVARDESC g_aArgSearchMem[] =
304{
305 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
306 { 0, 1, DBGCVAR_CAT_OPTION, 0, "-b", "Byte string." },
307 { 0, 1, DBGCVAR_CAT_OPTION, 0, "-w", "Word string." },
308 { 0, 1, DBGCVAR_CAT_OPTION, 0, "-d", "DWord string." },
309 { 0, 1, DBGCVAR_CAT_OPTION, 0, "-q", "QWord string." },
310 { 0, 1, DBGCVAR_CAT_OPTION, 0, "-a", "ASCII string." },
311 { 0, 1, DBGCVAR_CAT_OPTION, 0, "-u", "Unicode string." },
312 { 0, 1, DBGCVAR_CAT_OPTION_NUMBER, 0, "-n <Hits>", "Maximum number of hits." },
313 { 0, 1, DBGCVAR_CAT_GC_POINTER, 0, "range", "Register to show or set." },
314 { 0, ~0U, DBGCVAR_CAT_ANY, 0, "pattern", "Pattern to search for." },
315};
316
317
318/** 's?' arguments. */
319static const DBGCVARDESC g_aArgSearchMemType[] =
320{
321 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
322 { 1, 1, DBGCVAR_CAT_GC_POINTER, 0, "range", "Register to show or set." },
323 { 1, ~0U, DBGCVAR_CAT_ANY, 0, "pattern", "Pattern to search for." },
324};
325
326
327/** 'sxe', 'sxn', 'sxi', 'sx-' arguments. */
328static const DBGCVARDESC g_aArgEventCtrl[] =
329{
330 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
331 { 0, 1, DBGCVAR_CAT_STRING, 0, "-c", "The -c option, requires <cmds>." },
332 { 0, 1, DBGCVAR_CAT_STRING, DBGCVD_FLAGS_DEP_PREV, "cmds", "Command to execute on this event." },
333 { 0 /*weird*/, ~0U, DBGCVAR_CAT_STRING, 0, "event", "One or more events, 'all' refering to all events." },
334};
335
336/** 'sx' and 'sr' arguments. */
337static const DBGCVARDESC g_aArgEventCtrlOpt[] =
338{
339 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
340 { 0, ~0U, DBGCVAR_CAT_STRING, 0, "event", "Zero or more events, 'all' refering to all events and being the default." },
341};
342
343/** 'u' arguments. */
344static const DBGCVARDESC g_aArgUnassemble[] =
345{
346 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
347 { 0, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address where to start disassembling." },
348};
349
350/** 'ucfg' arguments. */
351static const DBGCVARDESC g_aArgUnassembleCfg[] =
352{
353 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
354 { 0, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address where to start disassembling." },
355};
356
357
358/** Command descriptors for the CodeView / WinDbg emulation.
359 * The emulation isn't attempting to be identical, only somewhat similar.
360 */
361const DBGCCMD g_aCmdsCodeView[] =
362{
363 /* pszCmd, cArgsMin, cArgsMax, paArgDescs, cArgDescs, fFlags, pfnHandler pszSyntax, ....pszDescription */
364 { "ba", 3, 6, &g_aArgBrkAcc[0], RT_ELEMENTS(g_aArgBrkAcc), 0, dbgcCmdBrkAccess, "<access> <size> <address> [passes [max passes]] [cmds]",
365 "Sets a data access breakpoint." },
366 { "bc", 1, ~0U, &g_aArgBrks[0], RT_ELEMENTS(g_aArgBrks), 0, dbgcCmdBrkClear, "all | <bp#> [bp# []]", "Deletes a set of breakpoints." },
367 { "bd", 1, ~0U, &g_aArgBrks[0], RT_ELEMENTS(g_aArgBrks), 0, dbgcCmdBrkDisable, "all | <bp#> [bp# []]", "Disables a set of breakpoints." },
368 { "be", 1, ~0U, &g_aArgBrks[0], RT_ELEMENTS(g_aArgBrks), 0, dbgcCmdBrkEnable, "all | <bp#> [bp# []]", "Enables a set of breakpoints." },
369 { "bl", 0, 0, NULL, 0, 0, dbgcCmdBrkList, "", "Lists all the breakpoints." },
370 { "bp", 1, 4, &g_aArgBrkSet[0], RT_ELEMENTS(g_aArgBrkSet), 0, dbgcCmdBrkSet, "<address> [passes [max passes]] [cmds]",
371 "Sets a breakpoint (int 3)." },
372 { "br", 1, 4, &g_aArgBrkREM[0], RT_ELEMENTS(g_aArgBrkREM), 0, dbgcCmdBrkREM, "<address> [passes [max passes]] [cmds]",
373 "Sets a recompiler specific breakpoint." },
374 { "d", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory using last element size." },
375 { "da", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory as ascii string." },
376 { "db", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory in bytes." },
377 { "dd", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory in double words." },
378 { "da", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory as ascii string." },
379 { "dg", 0, ~0U, &g_aArgDumpDT[0], RT_ELEMENTS(g_aArgDumpDT), 0, dbgcCmdDumpDT, "[sel [..]]", "Dump the global descriptor table (GDT)." },
380 { "dga", 0, ~0U, &g_aArgDumpDT[0], RT_ELEMENTS(g_aArgDumpDT), 0, dbgcCmdDumpDT, "[sel [..]]", "Dump the global descriptor table (GDT) including not-present entries." },
381 { "di", 0, ~0U, &g_aArgDumpIDT[0], RT_ELEMENTS(g_aArgDumpIDT), 0, dbgcCmdDumpIDT, "[int [..]]", "Dump the interrupt descriptor table (IDT)." },
382 { "dia", 0, ~0U, &g_aArgDumpIDT[0], RT_ELEMENTS(g_aArgDumpIDT), 0, dbgcCmdDumpIDT, "[int [..]]", "Dump the interrupt descriptor table (IDT) including not-present entries." },
383 { "dl", 0, ~0U, &g_aArgDumpDT[0], RT_ELEMENTS(g_aArgDumpDT), 0, dbgcCmdDumpDT, "[sel [..]]", "Dump the local descriptor table (LDT)." },
384 { "dla", 0, ~0U, &g_aArgDumpDT[0], RT_ELEMENTS(g_aArgDumpDT), 0, dbgcCmdDumpDT, "[sel [..]]", "Dump the local descriptor table (LDT) including not-present entries." },
385 { "dpd", 0, 1, &g_aArgDumpPD[0], RT_ELEMENTS(g_aArgDumpPD), 0, dbgcCmdDumpPageDir, "[addr|index]", "Dumps page directory entries of the default context." },
386 { "dpda", 0, 1, &g_aArgDumpPDAddr[0],RT_ELEMENTS(g_aArgDumpPDAddr), 0, dbgcCmdDumpPageDir, "[addr]", "Dumps memory at given address as a page directory." },
387 { "dpdb", 0, 1, &g_aArgDumpPD[0], RT_ELEMENTS(g_aArgDumpPD), 0, dbgcCmdDumpPageDirBoth, "[addr|index]", "Dumps page directory entries of the guest and the hypervisor. " },
388 { "dpdg", 0, 1, &g_aArgDumpPD[0], RT_ELEMENTS(g_aArgDumpPD), 0, dbgcCmdDumpPageDir, "[addr|index]", "Dumps page directory entries of the guest." },
389 { "dpdh", 0, 1, &g_aArgDumpPD[0], RT_ELEMENTS(g_aArgDumpPD), 0, dbgcCmdDumpPageDir, "[addr|index]", "Dumps page directory entries of the hypervisor. " },
390 { "dph", 0, 3, &g_aArgDumpPH[0], RT_ELEMENTS(g_aArgDumpPH), 0, dbgcCmdDumpPageHierarchy, "[addr [cr3 [mode]]", "Dumps the paging hierarchy at for specfied address range. Default context." },
391 { "dphg", 0, 3, &g_aArgDumpPH[0], RT_ELEMENTS(g_aArgDumpPH), 0, dbgcCmdDumpPageHierarchy, "[addr [cr3 [mode]]", "Dumps the paging hierarchy at for specfied address range. Guest context." },
392 { "dphh", 0, 3, &g_aArgDumpPH[0], RT_ELEMENTS(g_aArgDumpPH), 0, dbgcCmdDumpPageHierarchy, "[addr [cr3 [mode]]", "Dumps the paging hierarchy at for specfied address range. Hypervisor context." },
393 { "dpt", 1, 1, &g_aArgDumpPT[0], RT_ELEMENTS(g_aArgDumpPT), 0, dbgcCmdDumpPageTable,"<addr>", "Dumps page table entries of the default context." },
394 { "dpta", 1, 1, &g_aArgDumpPTAddr[0],RT_ELEMENTS(g_aArgDumpPTAddr), 0, dbgcCmdDumpPageTable,"<addr>", "Dumps memory at given address as a page table." },
395 { "dptb", 1, 1, &g_aArgDumpPT[0], RT_ELEMENTS(g_aArgDumpPT), 0, dbgcCmdDumpPageTableBoth,"<addr>", "Dumps page table entries of the guest and the hypervisor." },
396 { "dptg", 1, 1, &g_aArgDumpPT[0], RT_ELEMENTS(g_aArgDumpPT), 0, dbgcCmdDumpPageTable,"<addr>", "Dumps page table entries of the guest." },
397 { "dpth", 1, 1, &g_aArgDumpPT[0], RT_ELEMENTS(g_aArgDumpPT), 0, dbgcCmdDumpPageTable,"<addr>", "Dumps page table entries of the hypervisor." },
398 { "dq", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory in quad words." },
399 { "dt", 0, 1, &g_aArgDumpTSS[0], RT_ELEMENTS(g_aArgDumpTSS), 0, dbgcCmdDumpTSS, "[tss|tss:ign|addr]", "Dump the task state segment (TSS)." },
400 { "dt16", 0, 1, &g_aArgDumpTSS[0], RT_ELEMENTS(g_aArgDumpTSS), 0, dbgcCmdDumpTSS, "[tss|tss:ign|addr]", "Dump the 16-bit task state segment (TSS)." },
401 { "dt32", 0, 1, &g_aArgDumpTSS[0], RT_ELEMENTS(g_aArgDumpTSS), 0, dbgcCmdDumpTSS, "[tss|tss:ign|addr]", "Dump the 32-bit task state segment (TSS)." },
402 { "dt64", 0, 1, &g_aArgDumpTSS[0], RT_ELEMENTS(g_aArgDumpTSS), 0, dbgcCmdDumpTSS, "[tss|tss:ign|addr]", "Dump the 64-bit task state segment (TSS)." },
403 { "dti", 1, 2, &g_aArgDumpTypeInfo[0],RT_ELEMENTS(g_aArgDumpTypeInfo), 0, dbgcCmdDumpTypeInfo,"<type> [levels]", "Dump type information." },
404 { "dtv", 2, 3, &g_aArgDumpTypedVal[0],RT_ELEMENTS(g_aArgDumpTypedVal), 0, dbgcCmdDumpTypedVal,"<type> <addr> [levels]", "Dump a memory buffer using the information in the given type." },
405 { "dw", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory in words." },
406 /** @todo add 'e', 'ea str', 'eza str', 'eu str' and 'ezu str'. See also
407 * dbgcCmdSearchMem and its dbgcVarsToBytes usage. */
408 { "eb", 2, 2, &g_aArgEditMem[0], RT_ELEMENTS(g_aArgEditMem), 0, dbgcCmdEditMem, "<addr> <value>", "Write a 1-byte value to memory." },
409 { "ew", 2, 2, &g_aArgEditMem[0], RT_ELEMENTS(g_aArgEditMem), 0, dbgcCmdEditMem, "<addr> <value>", "Write a 2-byte value to memory." },
410 { "ed", 2, 2, &g_aArgEditMem[0], RT_ELEMENTS(g_aArgEditMem), 0, dbgcCmdEditMem, "<addr> <value>", "Write a 4-byte value to memory." },
411 { "eq", 2, 2, &g_aArgEditMem[0], RT_ELEMENTS(g_aArgEditMem), 0, dbgcCmdEditMem, "<addr> <value>", "Write a 8-byte value to memory." },
412 { "g", 0, 0, NULL, 0, 0, dbgcCmdGo, "", "Continue execution." },
413 { "gu", 0, 0, NULL, 0, 0, dbgcCmdGoUp, "", "Go up - continue execution till after return." },
414 { "k", 0, 0, NULL, 0, 0, dbgcCmdStack, "", "Callstack." },
415 { "kg", 0, 0, NULL, 0, 0, dbgcCmdStack, "", "Callstack - guest." },
416 { "kh", 0, 0, NULL, 0, 0, dbgcCmdStack, "", "Callstack - hypervisor." },
417 { "lm", 0, ~0U, &g_aArgListMods[0], RT_ELEMENTS(g_aArgListMods), 0, dbgcCmdListModules, "[module [..]]", "List modules." },
418 { "lmv", 0, ~0U, &g_aArgListMods[0], RT_ELEMENTS(g_aArgListMods), 0, dbgcCmdListModules, "[module [..]]", "List modules, verbose." },
419 { "lmo", 0, ~0U, &g_aArgListMods[0], RT_ELEMENTS(g_aArgListMods), 0, dbgcCmdListModules, "[module [..]]", "List modules and their segments." },
420 { "lmov", 0, ~0U, &g_aArgListMods[0], RT_ELEMENTS(g_aArgListMods), 0, dbgcCmdListModules, "[module [..]]", "List modules and their segments, verbose." },
421 { "ln", 0, ~0U, &g_aArgListNear[0], RT_ELEMENTS(g_aArgListNear), 0, dbgcCmdListNear, "[addr/sym [..]]", "List symbols near to the address. Default address is CS:EIP." },
422 { "ls", 0, 1, &g_aArgListSource[0],RT_ELEMENTS(g_aArgListSource), 0, dbgcCmdListSource, "[addr]", "Source." },
423 { "m", 1, 1, &g_aArgMemoryInfo[0],RT_ELEMENTS(g_aArgMemoryInfo), 0, dbgcCmdMemoryInfo, "<addr>", "Display information about that piece of memory." },
424 { "p", 0, 2, &g_aArgStepTrace[0], RT_ELEMENTS(g_aArgStepTrace), 0, dbgcCmdStepTrace, "[count] [cmds]", "Step over." },
425 { "pr", 0, 0, NULL, 0, 0, dbgcCmdStepTraceToggle, "", "Toggle displaying registers for tracing & stepping (no code executed)." },
426 { "pa", 1, 1, &g_aArgStepTraceTo[0], RT_ELEMENTS(g_aArgStepTraceTo), 0, dbgcCmdStepTraceTo, "<addr> [count] [cmds]","Step to the given address." },
427 { "pc", 0, 0, &g_aArgStepTrace[0], RT_ELEMENTS(g_aArgStepTrace), 0, dbgcCmdStepTrace, "[count] [cmds]", "Step to the next call instruction." },
428 { "pt", 0, 0, &g_aArgStepTrace[0], RT_ELEMENTS(g_aArgStepTrace), 0, dbgcCmdStepTrace, "[count] [cmds]", "Step to the next return instruction." },
429 { "r", 0, 3, &g_aArgReg[0], RT_ELEMENTS(g_aArgReg), 0, dbgcCmdReg, "[reg [[=] newval]]", "Show or set register(s) - active reg set." },
430 { "rg", 0, 3, &g_aArgReg[0], RT_ELEMENTS(g_aArgReg), 0, dbgcCmdRegGuest, "[reg [[=] newval]]", "Show or set register(s) - guest reg set." },
431 { "rg32", 0, 0, NULL, 0, 0, dbgcCmdRegGuest, "", "Show 32-bit guest registers." },
432 { "rg64", 0, 0, NULL, 0, 0, dbgcCmdRegGuest, "", "Show 64-bit guest registers." },
433 { "rh", 0, 3, &g_aArgReg[0], RT_ELEMENTS(g_aArgReg), 0, dbgcCmdRegHyper, "[reg [[=] newval]]", "Show or set register(s) - hypervisor reg set." },
434 { "rt", 0, 0, NULL, 0, 0, dbgcCmdRegTerse, "", "Toggles terse / verbose register info." },
435 { "s", 0, ~0U, &g_aArgSearchMem[0], RT_ELEMENTS(g_aArgSearchMem), 0, dbgcCmdSearchMem, "[options] <range> <pattern>", "Continue last search." },
436 { "sa", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for an ascii string." },
437 { "sb", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for one or more bytes." },
438 { "sd", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for one or more double words." },
439 { "sq", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for one or more quad words." },
440 { "su", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for an unicode string." },
441 { "sw", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for one or more words." },
442 { "sx", 0, ~0U, &g_aArgEventCtrlOpt[0], RT_ELEMENTS(g_aArgEventCtrlOpt), 0, dbgcCmdEventCtrlList, "[<event> [..]]", "Lists settings for exceptions, exits and other events. All if no filter is specified." },
443 { "sx-", 3, ~0U, &g_aArgEventCtrl[0], RT_ELEMENTS(g_aArgEventCtrl), 0, dbgcCmdEventCtrl, "-c <cmd> <event> [..]", "Modifies the command for one or more exceptions, exits or other event. 'all' addresses all." },
444 { "sxe", 1, ~0U, &g_aArgEventCtrl[0], RT_ELEMENTS(g_aArgEventCtrl), 0, dbgcCmdEventCtrl, "[-c <cmd>] <event> [..]", "Enable: Break into the debugger on the specified exceptions, exits and other events. 'all' addresses all." },
445 { "sxn", 1, ~0U, &g_aArgEventCtrl[0], RT_ELEMENTS(g_aArgEventCtrl), 0, dbgcCmdEventCtrl, "[-c <cmd>] <event> [..]", "Notify: Display info in the debugger and continue on the specified exceptions, exits and other events. 'all' addresses all." },
446 { "sxi", 1, ~0U, &g_aArgEventCtrl[0], RT_ELEMENTS(g_aArgEventCtrl), 0, dbgcCmdEventCtrl, "[-c <cmd>] <event> [..]", "Ignore: Ignore the specified exceptions, exits and other events ('all' = all of them). Without the -c option, the guest runs like normal." },
447 { "sxr", 0, 0, &g_aArgEventCtrlOpt[0], RT_ELEMENTS(g_aArgEventCtrlOpt), 0, dbgcCmdEventCtrlReset, "", "Reset the settings to default for exceptions, exits and other events. All if no filter is specified." },
448 { "t", 0, 2, &g_aArgStepTrace[0], RT_ELEMENTS(g_aArgStepTrace), 0, dbgcCmdStepTrace, "[count] [cmds]", "Trace ." },
449 { "tr", 0, 0, NULL, 0, 0, dbgcCmdStepTraceToggle, "", "Toggle displaying registers for tracing & stepping (no code executed)." },
450 { "ta", 1, 1, &g_aArgStepTraceTo[0], RT_ELEMENTS(g_aArgStepTraceTo), 0, dbgcCmdStepTraceTo, "<addr> [count] [cmds]","Trace to the given address." },
451 { "tc", 0, 0, &g_aArgStepTrace[0], RT_ELEMENTS(g_aArgStepTrace), 0, dbgcCmdStepTrace, "[count] [cmds]", "Trace to the next call instruction." },
452 { "tt", 0, 0, &g_aArgStepTrace[0], RT_ELEMENTS(g_aArgStepTrace), 0, dbgcCmdStepTrace, "[count] [cmds]", "Trace to the next return instruction." },
453 { "u", 0, 1, &g_aArgUnassemble[0],RT_ELEMENTS(g_aArgUnassemble), 0, dbgcCmdUnassemble, "[addr]", "Unassemble." },
454 { "u64", 0, 1, &g_aArgUnassemble[0],RT_ELEMENTS(g_aArgUnassemble), 0, dbgcCmdUnassemble, "[addr]", "Unassemble 64-bit code." },
455 { "u32", 0, 1, &g_aArgUnassemble[0],RT_ELEMENTS(g_aArgUnassemble), 0, dbgcCmdUnassemble, "[addr]", "Unassemble 32-bit code." },
456 { "u16", 0, 1, &g_aArgUnassemble[0],RT_ELEMENTS(g_aArgUnassemble), 0, dbgcCmdUnassemble, "[addr]", "Unassemble 16-bit code." },
457 { "uv86", 0, 1, &g_aArgUnassemble[0],RT_ELEMENTS(g_aArgUnassemble), 0, dbgcCmdUnassemble, "[addr]", "Unassemble 16-bit code with v8086/real mode addressing." },
458 { "ucfg", 0, 1, &g_aArgUnassembleCfg[0], RT_ELEMENTS(g_aArgUnassembleCfg), 0, dbgcCmdUnassembleCfg, "[addr]", "Unassemble creating a control flow graph." },
459 { "ucfgc", 0, 1, &g_aArgUnassembleCfg[0], RT_ELEMENTS(g_aArgUnassembleCfg), 0, dbgcCmdUnassembleCfg, "[addr]", "Unassemble creating a control flow graph with colors." },
460};
461
462/** The number of commands in the CodeView/WinDbg emulation. */
463const uint32_t g_cCmdsCodeView = RT_ELEMENTS(g_aCmdsCodeView);
464
465
466/**
467 * Selectable debug event descriptors.
468 *
469 * @remarks Sorted by DBGCSXEVT::enmType value.
470 */
471const DBGCSXEVT g_aDbgcSxEvents[] =
472{
473 { DBGFEVENT_INTERRUPT_HARDWARE, "hwint", NULL, kDbgcSxEventKind_Interrupt, kDbgcEvtState_Disabled, 0, "Hardware interrupt" },
474 { DBGFEVENT_INTERRUPT_SOFTWARE, "swint", NULL, kDbgcSxEventKind_Interrupt, kDbgcEvtState_Disabled, 0, "Software interrupt" },
475 { DBGFEVENT_TRIPLE_FAULT, "triplefault", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Enabled, 0, "Triple fault "},
476 { DBGFEVENT_XCPT_DE, "xcpt_de", "de", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#DE (integer divide error)" },
477 { DBGFEVENT_XCPT_DB, "xcpt_db", "db", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#DB (debug)" },
478 { DBGFEVENT_XCPT_02, "xcpt_02", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
479 { DBGFEVENT_XCPT_BP, "xcpt_bp", "bp", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#BP (breakpoint)" },
480 { DBGFEVENT_XCPT_OF, "xcpt_of", "of", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#OF (overflow (INTO))" },
481 { DBGFEVENT_XCPT_BR, "xcpt_br", "br", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#BR (bound range exceeded)" },
482 { DBGFEVENT_XCPT_UD, "xcpt_ud", "ud", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#UD (undefined opcode)" },
483 { DBGFEVENT_XCPT_NM, "xcpt_nm", "nm", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#NM (FPU not available)" },
484 { DBGFEVENT_XCPT_DF, "xcpt_df", "df", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#DF (double fault)" },
485 { DBGFEVENT_XCPT_09, "xcpt_09", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "Coprocessor segment overrun" },
486 { DBGFEVENT_XCPT_TS, "xcpt_ts", "ts", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, "#TS (task switch)" },
487 { DBGFEVENT_XCPT_NP, "xcpt_np", "np", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, "#NP (segment not present)" },
488 { DBGFEVENT_XCPT_SS, "xcpt_ss", "ss", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, "#SS (stack segment fault)" },
489 { DBGFEVENT_XCPT_GP, "xcpt_gp", "gp", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, "#GP (general protection fault)" },
490 { DBGFEVENT_XCPT_PF, "xcpt_pf", "pf", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, "#PF (page fault)" },
491 { DBGFEVENT_XCPT_0f, "xcpt_0f", "xcpt0f", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
492 { DBGFEVENT_XCPT_MF, "xcpt_mf", "mf", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#MF (math fault)" },
493 { DBGFEVENT_XCPT_AC, "xcpt_ac", "ac", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#AC (alignment check)" },
494 { DBGFEVENT_XCPT_MC, "xcpt_mc", "mc", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#MC (machine check)" },
495 { DBGFEVENT_XCPT_XF, "xcpt_xf", "xf", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#XF (SIMD floating-point exception)" },
496 { DBGFEVENT_XCPT_VE, "xcpt_vd", "ve", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#VE (virtualization exception)" },
497 { DBGFEVENT_XCPT_15, "xcpt_15", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
498 { DBGFEVENT_XCPT_16, "xcpt_16", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
499 { DBGFEVENT_XCPT_17, "xcpt_17", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
500 { DBGFEVENT_XCPT_18, "xcpt_18", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
501 { DBGFEVENT_XCPT_19, "xcpt_19", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
502 { DBGFEVENT_XCPT_1a, "xcpt_1a", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
503 { DBGFEVENT_XCPT_1b, "xcpt_1b", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
504 { DBGFEVENT_XCPT_1c, "xcpt_1c", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
505 { DBGFEVENT_XCPT_1d, "xcpt_1d", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
506 { DBGFEVENT_XCPT_SX, "xcpt_sx", "sx", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, "#SX (security exception)" },
507 { DBGFEVENT_XCPT_1f, "xcpt_1f", "xcpt1f", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
508 { DBGFEVENT_INSTR_HALT, "instr_halt", "hlt", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
509 { DBGFEVENT_INSTR_MWAIT, "instr_mwait", "mwait", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
510 { DBGFEVENT_INSTR_MONITOR, "instr_monitor", "monitor", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
511 { DBGFEVENT_INSTR_CPUID, "instr_cpuid", "cpuid", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
512 { DBGFEVENT_INSTR_INVD, "instr_invd", "invd", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
513 { DBGFEVENT_INSTR_WBINVD, "instr_wbinvd", "wbinvd", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
514 { DBGFEVENT_INSTR_INVLPG, "instr_invlpg", "invlpg", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
515 { DBGFEVENT_INSTR_RDTSC, "instr_rdtsc", "rdtsc", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
516 { DBGFEVENT_INSTR_RDTSCP, "instr_rdtscp", "rdtscp", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
517 { DBGFEVENT_INSTR_RDPMC, "instr_rdpmc", "rdpmc", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
518 { DBGFEVENT_INSTR_RDMSR, "instr_rdmsr", "rdmsr", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
519 { DBGFEVENT_INSTR_WRMSR, "instr_wrmsr", "wrmsr", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
520 { DBGFEVENT_INSTR_CRX_READ, "instr_crx_read", "crx_read", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, NULL },
521 { DBGFEVENT_INSTR_CRX_WRITE, "instr_crx_write", "crx_write",kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, NULL },
522 { DBGFEVENT_INSTR_DRX_READ, "instr_drx_read", "drx_read", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, NULL },
523 { DBGFEVENT_INSTR_DRX_WRITE, "instr_drx_write", "drx_write",kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, NULL },
524 { DBGFEVENT_INSTR_PAUSE, "instr_pause", "pause", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
525 { DBGFEVENT_INSTR_XSETBV, "instr_xsetbv", "xsetbv", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
526 { DBGFEVENT_INSTR_SIDT, "instr_sidt", "sidt", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
527 { DBGFEVENT_INSTR_LIDT, "instr_lidt", "lidt", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
528 { DBGFEVENT_INSTR_SGDT, "instr_sgdt", "sgdt", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
529 { DBGFEVENT_INSTR_LGDT, "instr_lgdt", "lgdt", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
530 { DBGFEVENT_INSTR_SLDT, "instr_sldt", "sldt", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
531 { DBGFEVENT_INSTR_LLDT, "instr_lldt", "lldt", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
532 { DBGFEVENT_INSTR_STR, "instr_str", "str", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
533 { DBGFEVENT_INSTR_LTR, "instr_ltr", "ltr", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
534 { DBGFEVENT_INSTR_GETSEC, "instr_getsec", "getsec", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
535 { DBGFEVENT_INSTR_RSM, "instr_rsm", "rsm", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
536 { DBGFEVENT_INSTR_RDRAND, "instr_rdrand", "rdrand", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
537 { DBGFEVENT_INSTR_RDSEED, "instr_rdseed", "rdseed", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
538 { DBGFEVENT_INSTR_XSAVES, "instr_xsaves", "xsaves", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
539 { DBGFEVENT_INSTR_XRSTORS, "instr_xrstors", "xrstors", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
540 { DBGFEVENT_INSTR_VMM_CALL, "instr_vmm_call", "vmm_call", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
541 { DBGFEVENT_INSTR_VMX_VMCLEAR, "instr_vmx_vmclear", "vmclear", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
542 { DBGFEVENT_INSTR_VMX_VMLAUNCH, "instr_vmx_vmlaunch", "vmlaunch", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
543 { DBGFEVENT_INSTR_VMX_VMPTRLD, "instr_vmx_vmptrld", "vmptrld", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
544 { DBGFEVENT_INSTR_VMX_VMPTRST, "instr_vmx_vmptrst", "vmptrst", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
545 { DBGFEVENT_INSTR_VMX_VMREAD, "instr_vmx_vmread", "vmread", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
546 { DBGFEVENT_INSTR_VMX_VMRESUME, "instr_vmx_vmresume", "vmresume", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
547 { DBGFEVENT_INSTR_VMX_VMWRITE, "instr_vmx_vmwrite", "vmwrite", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
548 { DBGFEVENT_INSTR_VMX_VMXOFF, "instr_vmx_vmxoff", "vmxoff", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
549 { DBGFEVENT_INSTR_VMX_VMXON, "instr_vmx_vmxon", "vmxon", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
550 { DBGFEVENT_INSTR_VMX_VMFUNC, "instr_vmx_vmfunc", "vmfunc", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
551 { DBGFEVENT_INSTR_VMX_INVEPT, "instr_vmx_invept", "invept", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
552 { DBGFEVENT_INSTR_VMX_INVVPID, "instr_vmx_invvpid", "invvpid", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
553 { DBGFEVENT_INSTR_VMX_INVPCID, "instr_vmx_invpcid", "invpcid", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
554 { DBGFEVENT_INSTR_SVM_VMRUN, "instr_svm_vmrun", "vmrun", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
555 { DBGFEVENT_INSTR_SVM_VMLOAD, "instr_svm_vmload", "vmload", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
556 { DBGFEVENT_INSTR_SVM_VMSAVE, "instr_svm_vmsave", "vmsave", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
557 { DBGFEVENT_INSTR_SVM_STGI, "instr_svm_stgi", "stgi", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
558 { DBGFEVENT_INSTR_SVM_CLGI, "instr_svm_clgi", "clgi", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
559 { DBGFEVENT_EXIT_TASK_SWITCH, "exit_task_switch", "task_switch", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
560 { DBGFEVENT_EXIT_HALT, "exit_halt", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
561 { DBGFEVENT_EXIT_MWAIT, "exit_mwait", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
562 { DBGFEVENT_EXIT_MONITOR, "exit_monitor", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
563 { DBGFEVENT_EXIT_CPUID, "exit_cpuid", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
564 { DBGFEVENT_EXIT_INVD, "exit_invd", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
565 { DBGFEVENT_EXIT_WBINVD, "exit_wbinvd", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
566 { DBGFEVENT_EXIT_INVLPG, "exit_invlpg", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
567 { DBGFEVENT_EXIT_RDTSC, "exit_rdtsc", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
568 { DBGFEVENT_EXIT_RDTSCP, "exit_rdtscp", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
569 { DBGFEVENT_EXIT_RDPMC, "exit_rdpmc", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
570 { DBGFEVENT_EXIT_RDMSR, "exit_rdmsr", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
571 { DBGFEVENT_EXIT_WRMSR, "exit_wrmsr", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
572 { DBGFEVENT_EXIT_CRX_READ, "exit_crx_read", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
573 { DBGFEVENT_EXIT_CRX_WRITE, "exit_crx_write", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
574 { DBGFEVENT_EXIT_DRX_READ, "exit_drx_read", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
575 { DBGFEVENT_EXIT_DRX_WRITE, "exit_drx_write", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
576 { DBGFEVENT_EXIT_PAUSE, "exit_pause", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
577 { DBGFEVENT_EXIT_XSETBV, "exit_xsetbv", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
578 { DBGFEVENT_EXIT_SIDT, "exit_sidt", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
579 { DBGFEVENT_EXIT_LIDT, "exit_lidt", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
580 { DBGFEVENT_EXIT_SGDT, "exit_sgdt", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
581 { DBGFEVENT_EXIT_LGDT, "exit_lgdt", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
582 { DBGFEVENT_EXIT_SLDT, "exit_sldt", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
583 { DBGFEVENT_EXIT_LLDT, "exit_lldt", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
584 { DBGFEVENT_EXIT_STR, "exit_str", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
585 { DBGFEVENT_EXIT_LTR, "exit_ltr", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
586 { DBGFEVENT_EXIT_GETSEC, "exit_getsec", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
587 { DBGFEVENT_EXIT_RSM, "exit_rsm", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
588 { DBGFEVENT_EXIT_RDRAND, "exit_rdrand", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
589 { DBGFEVENT_EXIT_RDSEED, "exit_rdseed", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
590 { DBGFEVENT_EXIT_XSAVES, "exit_xsaves", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
591 { DBGFEVENT_EXIT_XRSTORS, "exit_xrstors", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
592 { DBGFEVENT_EXIT_VMM_CALL, "exit_vmm_call", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
593 { DBGFEVENT_EXIT_VMX_VMCLEAR, "exit_vmx_vmclear", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
594 { DBGFEVENT_EXIT_VMX_VMLAUNCH, "exit_vmx_vmlaunch", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
595 { DBGFEVENT_EXIT_VMX_VMPTRLD, "exit_vmx_vmptrld", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
596 { DBGFEVENT_EXIT_VMX_VMPTRST, "exit_vmx_vmptrst", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
597 { DBGFEVENT_EXIT_VMX_VMREAD, "exit_vmx_vmread", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
598 { DBGFEVENT_EXIT_VMX_VMRESUME, "exit_vmx_vmresume", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
599 { DBGFEVENT_EXIT_VMX_VMWRITE, "exit_vmx_vmwrite", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
600 { DBGFEVENT_EXIT_VMX_VMXOFF, "exit_vmx_vmxoff", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
601 { DBGFEVENT_EXIT_VMX_VMXON, "exit_vmx_vmxon", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
602 { DBGFEVENT_EXIT_VMX_VMFUNC, "exit_vmx_vmfunc", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
603 { DBGFEVENT_EXIT_VMX_INVEPT, "exit_vmx_invept", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
604 { DBGFEVENT_EXIT_VMX_INVVPID, "exit_vmx_invvpid", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
605 { DBGFEVENT_EXIT_VMX_INVPCID, "exit_vmx_invpcid", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
606 { DBGFEVENT_EXIT_VMX_EPT_VIOLATION, "exit_vmx_ept_violation", "eptvio", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
607 { DBGFEVENT_EXIT_VMX_EPT_MISCONFIG, "exit_vmx_ept_misconfig", "eptmis", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
608 { DBGFEVENT_EXIT_VMX_VAPIC_ACCESS, "exit_vmx_vapic_access", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
609 { DBGFEVENT_EXIT_VMX_VAPIC_WRITE, "exit_vmx_vapic_write", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
610 { DBGFEVENT_EXIT_SVM_VMRUN, "exit_svm_vmrun", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
611 { DBGFEVENT_EXIT_SVM_VMLOAD, "exit_svm_vmload", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
612 { DBGFEVENT_EXIT_SVM_VMSAVE, "exit_svm_vmsave", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
613 { DBGFEVENT_EXIT_SVM_STGI, "exit_svm_stgi", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
614 { DBGFEVENT_EXIT_SVM_CLGI, "exit_svm_clgi", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
615 { DBGFEVENT_IOPORT_UNASSIGNED, "pio_unassigned", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
616 { DBGFEVENT_IOPORT_UNUSED, "pio_unused", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
617 { DBGFEVENT_MEMORY_UNASSIGNED, "mmio_unassigned", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
618 { DBGFEVENT_MEMORY_ROM_WRITE, "rom_write", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
619 { DBGFEVENT_BSOD_MSR, "bsod_msr", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
620 { DBGFEVENT_BSOD_EFI, "bsod_efi", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
621};
622/** Number of entries in g_aDbgcSxEvents. */
623const uint32_t g_cDbgcSxEvents = RT_ELEMENTS(g_aDbgcSxEvents);
624
625
626
627/**
628 * @callback_method_impl{FNDBGCCMD, The 'g' command.}
629 */
630static DECLCALLBACK(int) dbgcCmdGo(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
631{
632 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
633
634 /*
635 * Check if the VM is halted or not before trying to resume it.
636 */
637 if (!DBGFR3IsHalted(pUVM))
638 return DBGCCmdHlpFail(pCmdHlp, pCmd, "The VM is already running");
639
640 int rc = DBGFR3Resume(pUVM);
641 if (RT_FAILURE(rc))
642 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3Resume");
643
644 NOREF(paArgs); NOREF(cArgs);
645 return VINF_SUCCESS;
646}
647
648
649/**
650 * @callback_method_impl{FNDBGCCMD, The 'gu' command.}
651 */
652static DECLCALLBACK(int) dbgcCmdGoUp(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
653{
654 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
655 RT_NOREF(pCmd, paArgs, cArgs);
656
657 /* The simple way out. */
658 PDBGFADDRESS pStackPop = NULL; /** @todo try set up some stack limitations */
659 RTGCPTR cbStackPop = 0;
660 int rc = DBGFR3StepEx(pUVM, pDbgc->idCpu, DBGF_STEP_F_OVER | DBGF_STEP_F_STOP_AFTER_RET, NULL, pStackPop, cbStackPop, _512K);
661 if (RT_SUCCESS(rc))
662 pDbgc->fReady = false;
663 else
664 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3StepEx(,,DBGF_STEP_F_OVER | DBGF_STEP_F_STOP_AFTER_RET,) failed");
665 return rc;
666}
667
668
669/**
670 * @callback_method_impl{FNDBGCCMD, The 'ba' command.}
671 */
672static DECLCALLBACK(int) dbgcCmdBrkAccess(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
673{
674 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
675
676 /*
677 * Interpret access type.
678 */
679 if ( !strchr("xrwi", paArgs[0].u.pszString[0])
680 || paArgs[0].u.pszString[1])
681 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Invalid access type '%s' for '%s'. Valid types are 'e', 'r', 'w' and 'i'",
682 paArgs[0].u.pszString, pCmd->pszCmd);
683 uint8_t fType = 0;
684 switch (paArgs[0].u.pszString[0])
685 {
686 case 'x': fType = X86_DR7_RW_EO; break;
687 case 'r': fType = X86_DR7_RW_RW; break;
688 case 'w': fType = X86_DR7_RW_WO; break;
689 case 'i': fType = X86_DR7_RW_IO; break;
690 }
691
692 /*
693 * Validate size.
694 */
695 if (fType == X86_DR7_RW_EO && paArgs[1].u.u64Number != 1)
696 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Invalid access size %RX64 for '%s'. 'x' access type requires size 1!",
697 paArgs[1].u.u64Number, pCmd->pszCmd);
698 switch (paArgs[1].u.u64Number)
699 {
700 case 1:
701 case 2:
702 case 4:
703 break;
704 /*case 8: - later*/
705 default:
706 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Invalid access size %RX64 for '%s'. 1, 2 or 4!",
707 paArgs[1].u.u64Number, pCmd->pszCmd);
708 }
709 uint8_t cb = (uint8_t)paArgs[1].u.u64Number;
710
711 /*
712 * Convert the pointer to a DBGF address.
713 */
714 DBGFADDRESS Address;
715 int rc = DBGCCmdHlpVarToDbgfAddr(pCmdHlp, &paArgs[2], &Address);
716 if (RT_FAILURE(rc))
717 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGCCmdHlpVarToDbgfAddr(,%DV,)", &paArgs[2]);
718
719 /*
720 * Pick out the optional arguments.
721 */
722 uint64_t iHitTrigger = 0;
723 uint64_t iHitDisable = UINT64_MAX;
724 const char *pszCmds = NULL;
725 unsigned iArg = 3;
726 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_NUMBER)
727 {
728 iHitTrigger = paArgs[iArg].u.u64Number;
729 iArg++;
730 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_NUMBER)
731 {
732 iHitDisable = paArgs[iArg].u.u64Number;
733 iArg++;
734 }
735 }
736 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_STRING)
737 {
738 pszCmds = paArgs[iArg].u.pszString;
739 iArg++;
740 }
741
742 /*
743 * Try set the breakpoint.
744 */
745 uint32_t iBp;
746 rc = DBGFR3BpSetReg(pUVM, &Address, iHitTrigger, iHitDisable, fType, cb, &iBp);
747 if (RT_SUCCESS(rc))
748 {
749 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
750 rc = dbgcBpAdd(pDbgc, iBp, pszCmds);
751 if (RT_SUCCESS(rc))
752 return DBGCCmdHlpPrintf(pCmdHlp, "Set access breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
753 if (rc == VERR_DBGC_BP_EXISTS)
754 {
755 rc = dbgcBpUpdate(pDbgc, iBp, pszCmds);
756 if (RT_SUCCESS(rc))
757 return DBGCCmdHlpPrintf(pCmdHlp, "Updated access breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
758 }
759 int rc2 = DBGFR3BpClear(pDbgc->pUVM, iBp);
760 AssertRC(rc2);
761 }
762 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "Failed to set access breakpoint at %RGv", Address.FlatPtr);
763}
764
765
766/**
767 * @callback_method_impl{FNDBGCCMD, The 'bc' command.}
768 */
769static DECLCALLBACK(int) dbgcCmdBrkClear(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
770{
771 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
772
773 /*
774 * Enumerate the arguments.
775 */
776 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
777 int rc = VINF_SUCCESS;
778 for (unsigned iArg = 0; iArg < cArgs && RT_SUCCESS(rc); iArg++)
779 {
780 if (paArgs[iArg].enmType != DBGCVAR_TYPE_STRING)
781 {
782 /* one */
783 uint32_t iBp = (uint32_t)paArgs[iArg].u.u64Number;
784 if (iBp == paArgs[iArg].u.u64Number)
785 {
786 int rc2 = DBGFR3BpClear(pUVM, iBp);
787 if (RT_FAILURE(rc2))
788 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc2, "DBGFR3BpClear(,%#x)", iBp);
789 if (RT_SUCCESS(rc2) || rc2 == VERR_DBGF_BP_NOT_FOUND)
790 dbgcBpDelete(pDbgc, iBp);
791 }
792 else
793 rc = DBGCCmdHlpFail(pCmdHlp, pCmd, "Breakpoint id %RX64 is too large", paArgs[iArg].u.u64Number);
794 }
795 else if (!strcmp(paArgs[iArg].u.pszString, "all"))
796 {
797 /* all */
798 PDBGCBP pBp = pDbgc->pFirstBp;
799 while (pBp)
800 {
801 uint32_t iBp = pBp->iBp;
802 pBp = pBp->pNext;
803
804 int rc2 = DBGFR3BpClear(pUVM, iBp);
805 if (RT_FAILURE(rc2))
806 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc2, "DBGFR3BpClear(,%#x)", iBp);
807 if (RT_SUCCESS(rc2) || rc2 == VERR_DBGF_BP_NOT_FOUND)
808 dbgcBpDelete(pDbgc, iBp);
809 }
810 }
811 else
812 rc = DBGCCmdHlpFail(pCmdHlp, pCmd, "Invalid argument '%s'", paArgs[iArg].u.pszString);
813 }
814 return rc;
815}
816
817
818/**
819 * @callback_method_impl{FNDBGCCMD, The 'bd' command.}
820 */
821static DECLCALLBACK(int) dbgcCmdBrkDisable(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
822{
823 /*
824 * Enumerate the arguments.
825 */
826 int rc = VINF_SUCCESS;
827 for (unsigned iArg = 0; iArg < cArgs && RT_SUCCESS(rc); iArg++)
828 {
829 if (paArgs[iArg].enmType != DBGCVAR_TYPE_STRING)
830 {
831 /* one */
832 uint32_t iBp = (uint32_t)paArgs[iArg].u.u64Number;
833 if (iBp == paArgs[iArg].u.u64Number)
834 {
835 rc = DBGFR3BpDisable(pUVM, iBp);
836 if (RT_FAILURE(rc))
837 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3BpDisable failed for breakpoint %#x", iBp);
838 }
839 else
840 rc = DBGCCmdHlpFail(pCmdHlp, pCmd, "Breakpoint id %RX64 is too large", paArgs[iArg].u.u64Number);
841 }
842 else if (!strcmp(paArgs[iArg].u.pszString, "all"))
843 {
844 /* all */
845 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
846 for (PDBGCBP pBp = pDbgc->pFirstBp; pBp; pBp = pBp->pNext)
847 {
848 int rc2 = DBGFR3BpDisable(pUVM, pBp->iBp);
849 if (RT_FAILURE(rc2))
850 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc2, "DBGFR3BpDisable failed for breakpoint %#x", pBp->iBp);
851 }
852 }
853 else
854 rc = DBGCCmdHlpFail(pCmdHlp, pCmd, "Invalid argument '%s'", paArgs[iArg].u.pszString);
855 }
856 return rc;
857}
858
859
860/**
861 * @callback_method_impl{FNDBGCCMD, The 'be' command.}
862 */
863static DECLCALLBACK(int) dbgcCmdBrkEnable(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
864{
865 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
866
867 /*
868 * Enumerate the arguments.
869 */
870 int rc = VINF_SUCCESS;
871 for (unsigned iArg = 0; iArg < cArgs && RT_SUCCESS(rc); iArg++)
872 {
873 if (paArgs[iArg].enmType != DBGCVAR_TYPE_STRING)
874 {
875 /* one */
876 uint32_t iBp = (uint32_t)paArgs[iArg].u.u64Number;
877 if (iBp == paArgs[iArg].u.u64Number)
878 {
879 rc = DBGFR3BpEnable(pUVM, iBp);
880 if (RT_FAILURE(rc))
881 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3BpEnable failed for breakpoint %#x", iBp);
882 }
883 else
884 rc = DBGCCmdHlpFail(pCmdHlp, pCmd, "Breakpoint id %RX64 is too large", paArgs[iArg].u.u64Number);
885 }
886 else if (!strcmp(paArgs[iArg].u.pszString, "all"))
887 {
888 /* all */
889 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
890 for (PDBGCBP pBp = pDbgc->pFirstBp; pBp; pBp = pBp->pNext)
891 {
892 int rc2 = DBGFR3BpEnable(pUVM, pBp->iBp);
893 if (RT_FAILURE(rc2))
894 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc2, "DBGFR3BpEnable failed for breakpoint %#x", pBp->iBp);
895 }
896 }
897 else
898 rc = DBGCCmdHlpFail(pCmdHlp, pCmd, "Invalid argument '%s'", paArgs[iArg].u.pszString);
899 }
900 return rc;
901}
902
903
904/**
905 * Breakpoint enumeration callback function.
906 *
907 * @returns VBox status code. Any failure will stop the enumeration.
908 * @param pUVM The user mode VM handle.
909 * @param pvUser The user argument.
910 * @param pBp Pointer to the breakpoint information. (readonly)
911 */
912static DECLCALLBACK(int) dbgcEnumBreakpointsCallback(PUVM pUVM, void *pvUser, PCDBGFBP pBp)
913{
914 PDBGC pDbgc = (PDBGC)pvUser;
915 PDBGCBP pDbgcBp = dbgcBpGet(pDbgc, pBp->iBp);
916
917 /*
918 * BP type and size.
919 */
920 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, "%#4x %c ", pBp->iBp, pBp->fEnabled ? 'e' : 'd');
921 bool fHasAddress = false;
922 switch (pBp->enmType)
923 {
924 case DBGFBPTYPE_INT3:
925 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " p %RGv", pBp->u.Int3.GCPtr);
926 fHasAddress = true;
927 break;
928 case DBGFBPTYPE_REG:
929 {
930 char chType;
931 switch (pBp->u.Reg.fType)
932 {
933 case X86_DR7_RW_EO: chType = 'x'; break;
934 case X86_DR7_RW_WO: chType = 'w'; break;
935 case X86_DR7_RW_IO: chType = 'i'; break;
936 case X86_DR7_RW_RW: chType = 'r'; break;
937 default: chType = '?'; break;
938
939 }
940 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, "%d %c %RGv", pBp->u.Reg.cb, chType, pBp->u.Reg.GCPtr);
941 fHasAddress = true;
942 break;
943 }
944
945 case DBGFBPTYPE_REM:
946 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " r %RGv", pBp->u.Rem.GCPtr);
947 fHasAddress = true;
948 break;
949
950/** @todo realign the list when I/O and MMIO breakpoint command have been added and it's possible to test this code. */
951 case DBGFBPTYPE_PORT_IO:
952 case DBGFBPTYPE_MMIO:
953 {
954 uint32_t fAccess = pBp->enmType == DBGFBPTYPE_PORT_IO ? pBp->u.PortIo.fAccess : pBp->u.Mmio.fAccess;
955 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, pBp->enmType == DBGFBPTYPE_PORT_IO ? " i" : " m");
956 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " %c%c%c%c%c%c",
957 fAccess & DBGFBPIOACCESS_READ_MASK ? 'r' : '-',
958 fAccess & DBGFBPIOACCESS_READ_BYTE ? '1' : '-',
959 fAccess & DBGFBPIOACCESS_READ_WORD ? '2' : '-',
960 fAccess & DBGFBPIOACCESS_READ_DWORD ? '4' : '-',
961 fAccess & DBGFBPIOACCESS_READ_QWORD ? '8' : '-',
962 fAccess & DBGFBPIOACCESS_READ_OTHER ? '+' : '-');
963 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " %c%c%c%c%c%c",
964 fAccess & DBGFBPIOACCESS_WRITE_MASK ? 'w' : '-',
965 fAccess & DBGFBPIOACCESS_WRITE_BYTE ? '1' : '-',
966 fAccess & DBGFBPIOACCESS_WRITE_WORD ? '2' : '-',
967 fAccess & DBGFBPIOACCESS_WRITE_DWORD ? '4' : '-',
968 fAccess & DBGFBPIOACCESS_WRITE_QWORD ? '8' : '-',
969 fAccess & DBGFBPIOACCESS_WRITE_OTHER ? '+' : '-');
970 if (pBp->enmType == DBGFBPTYPE_PORT_IO)
971 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " %04x-%04x",
972 pBp->u.PortIo.uPort, pBp->u.PortIo.uPort + pBp->u.PortIo.cPorts - 1);
973 else
974 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, "%RGp LB %03x", pBp->u.Mmio.PhysAddr, pBp->u.Mmio.cb);
975 break;
976 }
977
978 default:
979 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " unknown type %d!!", pBp->enmType);
980 AssertFailed();
981 break;
982
983 }
984 if (pBp->iHitDisable == ~(uint64_t)0)
985 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " %04RX64 (%04RX64 to ~0) ", pBp->cHits, pBp->iHitTrigger);
986 else
987 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " %04RX64 (%04RX64 to %04RX64)", pBp->cHits, pBp->iHitTrigger, pBp->iHitDisable);
988
989 /*
990 * Try resolve the address if it has one.
991 */
992 if (fHasAddress)
993 {
994 RTDBGSYMBOL Sym;
995 RTINTPTR off;
996 DBGFADDRESS Addr;
997 int rc = DBGFR3AsSymbolByAddr(pUVM, pDbgc->hDbgAs, DBGFR3AddrFromFlat(pDbgc->pUVM, &Addr, pBp->u.GCPtr),
998 RTDBGSYMADDR_FLAGS_LESS_OR_EQUAL, &off, &Sym, NULL);
999 if (RT_SUCCESS(rc))
1000 {
1001 if (!off)
1002 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, "%s", Sym.szName);
1003 else if (off > 0)
1004 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, "%s+%RGv", Sym.szName, off);
1005 else
1006 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, "%s-%RGv", Sym.szName, -off);
1007 }
1008 }
1009
1010 /*
1011 * The commands.
1012 */
1013 if (pDbgcBp)
1014 {
1015 if (pDbgcBp->cchCmd)
1016 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, "\n cmds: '%s'\n", pDbgcBp->szCmd);
1017 else
1018 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, "\n");
1019 }
1020 else
1021 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " [unknown bp]\n");
1022
1023 return VINF_SUCCESS;
1024}
1025
1026
1027/**
1028 * @callback_method_impl{FNDBGCCMD, The 'bl' command.}
1029 */
1030static DECLCALLBACK(int) dbgcCmdBrkList(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
1031{
1032 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
1033 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, -1, cArgs == 0);
1034 NOREF(paArgs);
1035
1036 /*
1037 * Enumerate the breakpoints.
1038 */
1039 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
1040 int rc = DBGFR3BpEnum(pUVM, dbgcEnumBreakpointsCallback, pDbgc);
1041 if (RT_FAILURE(rc))
1042 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3BpEnum");
1043 return rc;
1044}
1045
1046
1047/**
1048 * @callback_method_impl{FNDBGCCMD, The 'bp' command.}
1049 */
1050static DECLCALLBACK(int) dbgcCmdBrkSet(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
1051{
1052 /*
1053 * Convert the pointer to a DBGF address.
1054 */
1055 DBGFADDRESS Address;
1056 int rc = DBGCCmdHlpVarToDbgfAddr(pCmdHlp, &paArgs[0], &Address);
1057 if (RT_FAILURE(rc))
1058 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGCCmdHlpVarToDbgfAddr(,'%DV',)", &paArgs[0]);
1059
1060 /*
1061 * Pick out the optional arguments.
1062 */
1063 uint64_t iHitTrigger = 0;
1064 uint64_t iHitDisable = UINT64_MAX;
1065 const char *pszCmds = NULL;
1066 unsigned iArg = 1;
1067 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_NUMBER)
1068 {
1069 iHitTrigger = paArgs[iArg].u.u64Number;
1070 iArg++;
1071 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_NUMBER)
1072 {
1073 iHitDisable = paArgs[iArg].u.u64Number;
1074 iArg++;
1075 }
1076 }
1077 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_STRING)
1078 {
1079 pszCmds = paArgs[iArg].u.pszString;
1080 iArg++;
1081 }
1082
1083 /*
1084 * Try set the breakpoint.
1085 */
1086 uint32_t iBp;
1087 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
1088 rc = DBGFR3BpSetInt3(pUVM, pDbgc->idCpu, &Address, iHitTrigger, iHitDisable, &iBp);
1089 if (RT_SUCCESS(rc))
1090 {
1091 rc = dbgcBpAdd(pDbgc, iBp, pszCmds);
1092 if (RT_SUCCESS(rc))
1093 return DBGCCmdHlpPrintf(pCmdHlp, "Set breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
1094 if (rc == VERR_DBGC_BP_EXISTS)
1095 {
1096 rc = dbgcBpUpdate(pDbgc, iBp, pszCmds);
1097 if (RT_SUCCESS(rc))
1098 return DBGCCmdHlpPrintf(pCmdHlp, "Updated breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
1099 }
1100 int rc2 = DBGFR3BpClear(pDbgc->pUVM, iBp);
1101 AssertRC(rc2);
1102 }
1103 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "Failed to set breakpoint at %RGv", Address.FlatPtr);
1104}
1105
1106
1107/**
1108 * @callback_method_impl{FNDBGCCMD, The 'br' command.}
1109 */
1110static DECLCALLBACK(int) dbgcCmdBrkREM(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
1111{
1112 /*
1113 * Convert the pointer to a DBGF address.
1114 */
1115 DBGFADDRESS Address;
1116 int rc = DBGCCmdHlpVarToDbgfAddr(pCmdHlp, &paArgs[0], &Address);
1117 if (RT_FAILURE(rc))
1118 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGCCmdHlpVarToDbgfAddr(,'%DV',)", &paArgs[0]);
1119
1120 /*
1121 * Pick out the optional arguments.
1122 */
1123 uint64_t iHitTrigger = 0;
1124 uint64_t iHitDisable = UINT64_MAX;
1125 const char *pszCmds = NULL;
1126 unsigned iArg = 1;
1127 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_NUMBER)
1128 {
1129 iHitTrigger = paArgs[iArg].u.u64Number;
1130 iArg++;
1131 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_NUMBER)
1132 {
1133 iHitDisable = paArgs[iArg].u.u64Number;
1134 iArg++;
1135 }
1136 }
1137 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_STRING)
1138 {
1139 pszCmds = paArgs[iArg].u.pszString;
1140 iArg++;
1141 }
1142
1143 /*
1144 * Try set the breakpoint.
1145 */
1146 uint32_t iBp;
1147 rc = DBGFR3BpSetREM(pUVM, &Address, iHitTrigger, iHitDisable, &iBp);
1148 if (RT_SUCCESS(rc))
1149 {
1150 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
1151 rc = dbgcBpAdd(pDbgc, iBp, pszCmds);
1152 if (RT_SUCCESS(rc))
1153 return DBGCCmdHlpPrintf(pCmdHlp, "Set REM breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
1154 if (rc == VERR_DBGC_BP_EXISTS)
1155 {
1156 rc = dbgcBpUpdate(pDbgc, iBp, pszCmds);
1157 if (RT_SUCCESS(rc))
1158 return DBGCCmdHlpPrintf(pCmdHlp, "Updated REM breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
1159 }
1160 int rc2 = DBGFR3BpClear(pDbgc->pUVM, iBp);
1161 AssertRC(rc2);
1162 }
1163 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "Failed to set REM breakpoint at %RGv", Address.FlatPtr);
1164}
1165
1166
1167/**
1168 * Helps the unassmble ('u') command display symbols it starts at and passes.
1169 *
1170 * @param pUVM The user mode VM handle.
1171 * @param pCmdHlp The command helpers for printing via.
1172 * @param hDbgAs The address space to look up addresses in.
1173 * @param pAddress The current address.
1174 * @param pcbCallAgain Where to return the distance to the next check (in
1175 * instruction bytes).
1176 */
1177static void dbgcCmdUnassambleHelpListNear(PUVM pUVM, PDBGCCMDHLP pCmdHlp, RTDBGAS hDbgAs, PCDBGFADDRESS pAddress,
1178 PRTUINTPTR pcbCallAgain)
1179{
1180 RTDBGSYMBOL Symbol;
1181 RTGCINTPTR offDispSym;
1182 int rc = DBGFR3AsSymbolByAddr(pUVM, hDbgAs, pAddress, RTDBGSYMADDR_FLAGS_LESS_OR_EQUAL, &offDispSym, &Symbol, NULL);
1183 if (RT_FAILURE(rc) || offDispSym > _1G)
1184 rc = DBGFR3AsSymbolByAddr(pUVM, hDbgAs, pAddress, RTDBGSYMADDR_FLAGS_GREATER_OR_EQUAL, &offDispSym, &Symbol, NULL);
1185 if (RT_SUCCESS(rc) && offDispSym < _1G)
1186 {
1187 if (!offDispSym)
1188 {
1189 DBGCCmdHlpPrintf(pCmdHlp, "%s:\n", Symbol.szName);
1190 *pcbCallAgain = !Symbol.cb ? 64 : Symbol.cb;
1191 }
1192 else if (offDispSym > 0)
1193 {
1194 DBGCCmdHlpPrintf(pCmdHlp, "%s+%#llx:\n", Symbol.szName, (uint64_t)offDispSym);
1195 *pcbCallAgain = !Symbol.cb ? 64 : Symbol.cb > (RTGCUINTPTR)offDispSym ? Symbol.cb - (RTGCUINTPTR)offDispSym : 1;
1196 }
1197 else
1198 {
1199 DBGCCmdHlpPrintf(pCmdHlp, "%s-%#llx:\n", Symbol.szName, (uint64_t)-offDispSym);
1200 *pcbCallAgain = !Symbol.cb ? 64 : (RTGCUINTPTR)-offDispSym + Symbol.cb;
1201 }
1202 }
1203 else
1204 *pcbCallAgain = UINT32_MAX;
1205}
1206
1207
1208/**
1209 * @callback_method_impl{FNDBGCCMD, The 'u' command.}
1210 */
1211static DECLCALLBACK(int) dbgcCmdUnassemble(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
1212{
1213 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
1214
1215 /*
1216 * Validate input.
1217 */
1218 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
1219 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, -1, cArgs <= 1);
1220 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs == 0 || DBGCVAR_ISPOINTER(paArgs[0].enmType));
1221
1222 if (!cArgs && !DBGCVAR_ISPOINTER(pDbgc->DisasmPos.enmType))
1223 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Don't know where to start disassembling");
1224
1225 /*
1226 * Check the desired mode.
1227 */
1228 unsigned fFlags = DBGF_DISAS_FLAGS_NO_ADDRESS | DBGF_DISAS_FLAGS_UNPATCHED_BYTES | DBGF_DISAS_FLAGS_ANNOTATE_PATCHED;
1229 switch (pCmd->pszCmd[1])
1230 {
1231 default: AssertFailed();
1232 case '\0': fFlags |= DBGF_DISAS_FLAGS_DEFAULT_MODE; break;
1233 case '6': fFlags |= DBGF_DISAS_FLAGS_64BIT_MODE; break;
1234 case '3': fFlags |= DBGF_DISAS_FLAGS_32BIT_MODE; break;
1235 case '1': fFlags |= DBGF_DISAS_FLAGS_16BIT_MODE; break;
1236 case 'v': fFlags |= DBGF_DISAS_FLAGS_16BIT_REAL_MODE; break;
1237 }
1238
1239 /** @todo should use DBGFADDRESS for everything */
1240
1241 /*
1242 * Find address.
1243 */
1244 if (!cArgs)
1245 {
1246 if (!DBGCVAR_ISPOINTER(pDbgc->DisasmPos.enmType))
1247 {
1248 /** @todo Batch query CS, RIP, CPU mode and flags. */
1249 PVMCPU pVCpu = VMMR3GetCpuByIdU(pUVM, pDbgc->idCpu);
1250 if ( pDbgc->fRegCtxGuest
1251 && CPUMIsGuestIn64BitCode(pVCpu))
1252 {
1253 pDbgc->DisasmPos.enmType = DBGCVAR_TYPE_GC_FLAT;
1254 pDbgc->SourcePos.u.GCFlat = CPUMGetGuestRIP(pVCpu);
1255 }
1256 else
1257 {
1258 pDbgc->DisasmPos.enmType = DBGCVAR_TYPE_GC_FAR;
1259 pDbgc->SourcePos.u.GCFar.off = pDbgc->fRegCtxGuest ? CPUMGetGuestEIP(pVCpu) : CPUMGetHyperEIP(pVCpu);
1260 pDbgc->SourcePos.u.GCFar.sel = pDbgc->fRegCtxGuest ? CPUMGetGuestCS(pVCpu) : CPUMGetHyperCS(pVCpu);
1261 if ( (fFlags & DBGF_DISAS_FLAGS_MODE_MASK) == DBGF_DISAS_FLAGS_DEFAULT_MODE
1262 && pDbgc->fRegCtxGuest
1263 && (CPUMGetGuestEFlags(pVCpu) & X86_EFL_VM))
1264 {
1265 fFlags &= ~DBGF_DISAS_FLAGS_MODE_MASK;
1266 fFlags |= DBGF_DISAS_FLAGS_16BIT_REAL_MODE;
1267 }
1268 }
1269
1270 if (pDbgc->fRegCtxGuest)
1271 fFlags |= DBGF_DISAS_FLAGS_CURRENT_GUEST;
1272 else
1273 fFlags |= DBGF_DISAS_FLAGS_CURRENT_HYPER | DBGF_DISAS_FLAGS_HYPER;
1274 }
1275 else if ((fFlags & DBGF_DISAS_FLAGS_MODE_MASK) == DBGF_DISAS_FLAGS_DEFAULT_MODE && pDbgc->fDisasm)
1276 {
1277 fFlags &= ~DBGF_DISAS_FLAGS_MODE_MASK;
1278 fFlags |= pDbgc->fDisasm & (DBGF_DISAS_FLAGS_MODE_MASK | DBGF_DISAS_FLAGS_HYPER);
1279 }
1280 pDbgc->DisasmPos.enmRangeType = DBGCVAR_RANGE_NONE;
1281 }
1282 else
1283 pDbgc->DisasmPos = paArgs[0];
1284 pDbgc->pLastPos = &pDbgc->DisasmPos;
1285
1286 /*
1287 * Range.
1288 */
1289 switch (pDbgc->DisasmPos.enmRangeType)
1290 {
1291 case DBGCVAR_RANGE_NONE:
1292 pDbgc->DisasmPos.enmRangeType = DBGCVAR_RANGE_ELEMENTS;
1293 pDbgc->DisasmPos.u64Range = 10;
1294 break;
1295
1296 case DBGCVAR_RANGE_ELEMENTS:
1297 if (pDbgc->DisasmPos.u64Range > 2048)
1298 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Too many lines requested. Max is 2048 lines");
1299 break;
1300
1301 case DBGCVAR_RANGE_BYTES:
1302 if (pDbgc->DisasmPos.u64Range > 65536)
1303 return DBGCCmdHlpFail(pCmdHlp, pCmd, "The requested range is too big. Max is 64KB");
1304 break;
1305
1306 default:
1307 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Unknown range type %d", pDbgc->DisasmPos.enmRangeType);
1308 }
1309
1310 /*
1311 * Convert physical and host addresses to guest addresses.
1312 */
1313 RTDBGAS hDbgAs = pDbgc->hDbgAs;
1314 int rc;
1315 switch (pDbgc->DisasmPos.enmType)
1316 {
1317 case DBGCVAR_TYPE_GC_FLAT:
1318 case DBGCVAR_TYPE_GC_FAR:
1319 break;
1320 case DBGCVAR_TYPE_GC_PHYS:
1321 hDbgAs = DBGF_AS_PHYS;
1322 case DBGCVAR_TYPE_HC_FLAT:
1323 case DBGCVAR_TYPE_HC_PHYS:
1324 {
1325 DBGCVAR VarTmp;
1326 rc = DBGCCmdHlpEval(pCmdHlp, &VarTmp, "%%(%Dv)", &pDbgc->DisasmPos);
1327 if (RT_FAILURE(rc))
1328 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "failed to evaluate '%%(%Dv)'", &pDbgc->DisasmPos);
1329 pDbgc->DisasmPos = VarTmp;
1330 break;
1331 }
1332 default: AssertFailed(); break;
1333 }
1334
1335 DBGFADDRESS CurAddr;
1336 if ( (fFlags & DBGF_DISAS_FLAGS_MODE_MASK) == DBGF_DISAS_FLAGS_16BIT_REAL_MODE
1337 && pDbgc->DisasmPos.enmType == DBGCVAR_TYPE_GC_FAR)
1338 DBGFR3AddrFromFlat(pUVM, &CurAddr, ((uint32_t)pDbgc->DisasmPos.u.GCFar.sel << 4) + pDbgc->DisasmPos.u.GCFar.off);
1339 else
1340 {
1341 rc = DBGCCmdHlpVarToDbgfAddr(pCmdHlp, &pDbgc->DisasmPos, &CurAddr);
1342 if (RT_FAILURE(rc))
1343 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGCCmdHlpVarToDbgfAddr failed on '%Dv'", &pDbgc->DisasmPos);
1344 }
1345
1346 if (CurAddr.fFlags & DBGFADDRESS_FLAGS_HMA)
1347 fFlags |= DBGF_DISAS_FLAGS_HYPER; /* This crap is due to not using DBGFADDRESS as DBGFR3Disas* input. */
1348 pDbgc->fDisasm = fFlags;
1349
1350 /*
1351 * Figure out where we are and display it. Also calculate when we need to
1352 * check for a new symbol if possible.
1353 */
1354 RTGCUINTPTR cbCheckSymbol;
1355 dbgcCmdUnassambleHelpListNear(pUVM, pCmdHlp, hDbgAs, &CurAddr, &cbCheckSymbol);
1356
1357 /*
1358 * Do the disassembling.
1359 */
1360 unsigned cTries = 32;
1361 int iRangeLeft = (int)pDbgc->DisasmPos.u64Range;
1362 if (iRangeLeft == 0) /* kludge for 'r'. */
1363 iRangeLeft = -1;
1364 for (;;)
1365 {
1366 /*
1367 * Disassemble the instruction.
1368 */
1369 char szDis[256];
1370 uint32_t cbInstr = 1;
1371 if (pDbgc->DisasmPos.enmType == DBGCVAR_TYPE_GC_FLAT)
1372 rc = DBGFR3DisasInstrEx(pUVM, pDbgc->idCpu, DBGF_SEL_FLAT, pDbgc->DisasmPos.u.GCFlat, fFlags,
1373 &szDis[0], sizeof(szDis), &cbInstr);
1374 else
1375 rc = DBGFR3DisasInstrEx(pUVM, pDbgc->idCpu, pDbgc->DisasmPos.u.GCFar.sel, pDbgc->DisasmPos.u.GCFar.off, fFlags,
1376 &szDis[0], sizeof(szDis), &cbInstr);
1377 if (RT_SUCCESS(rc))
1378 {
1379 /* print it */
1380 rc = DBGCCmdHlpPrintf(pCmdHlp, "%-16DV %s\n", &pDbgc->DisasmPos, &szDis[0]);
1381 if (RT_FAILURE(rc))
1382 return rc;
1383 }
1384 else
1385 {
1386 /* bitch. */
1387 int rc2 = DBGCCmdHlpPrintf(pCmdHlp, "Failed to disassemble instruction, skipping one byte.\n");
1388 if (RT_FAILURE(rc2))
1389 return rc2;
1390 if (cTries-- > 0)
1391 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "Too many disassembly failures. Giving up");
1392 cbInstr = 1;
1393 }
1394
1395 /* advance */
1396 if (iRangeLeft < 0) /* 'r' */
1397 break;
1398 if (pDbgc->DisasmPos.enmRangeType == DBGCVAR_RANGE_ELEMENTS)
1399 iRangeLeft--;
1400 else
1401 iRangeLeft -= cbInstr;
1402 rc = DBGCCmdHlpEval(pCmdHlp, &pDbgc->DisasmPos, "(%Dv) + %x", &pDbgc->DisasmPos, cbInstr);
1403 if (RT_FAILURE(rc))
1404 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGCCmdHlpEval(,,'(%Dv) + %x')", &pDbgc->DisasmPos, cbInstr);
1405 if (iRangeLeft <= 0)
1406 break;
1407 fFlags &= ~(DBGF_DISAS_FLAGS_CURRENT_GUEST | DBGF_DISAS_FLAGS_CURRENT_HYPER);
1408
1409 /* Print next symbol? */
1410 if (cbCheckSymbol <= cbInstr)
1411 {
1412 if ( (fFlags & DBGF_DISAS_FLAGS_MODE_MASK) == DBGF_DISAS_FLAGS_16BIT_REAL_MODE
1413 && pDbgc->DisasmPos.enmType == DBGCVAR_TYPE_GC_FAR)
1414 DBGFR3AddrFromFlat(pUVM, &CurAddr, ((uint32_t)pDbgc->DisasmPos.u.GCFar.sel << 4) + pDbgc->DisasmPos.u.GCFar.off);
1415 else
1416 rc = DBGCCmdHlpVarToDbgfAddr(pCmdHlp, &pDbgc->DisasmPos, &CurAddr);
1417 if (RT_SUCCESS(rc))
1418 dbgcCmdUnassambleHelpListNear(pUVM, pCmdHlp, hDbgAs, &CurAddr, &cbCheckSymbol);
1419 else
1420 cbCheckSymbol = UINT32_MAX;
1421 }
1422 else
1423 cbCheckSymbol -= cbInstr;
1424 }
1425
1426 NOREF(pCmd);
1427 return VINF_SUCCESS;
1428}
1429
1430
1431/**
1432 * @callback_method_impl{FNDGCSCREENBLIT}
1433 */
1434static DECLCALLBACK(int) dbgcCmdUnassembleCfgBlit(const char *psz, void *pvUser)
1435{
1436 PDBGCCMDHLP pCmdHlp = (PDBGCCMDHLP)pvUser;
1437 return DBGCCmdHlpPrintf(pCmdHlp, "%s", psz);
1438}
1439
1440
1441/**
1442 * Checks whether both addresses are equal.
1443 *
1444 * @returns true if both addresses point to the same location, false otherwise.
1445 * @param pAddr1 First address.
1446 * @param pAddr2 Second address.
1447 */
1448static bool dbgcCmdUnassembleCfgAddrEqual(PDBGFADDRESS pAddr1, PDBGFADDRESS pAddr2)
1449{
1450 return pAddr1->Sel == pAddr2->Sel
1451 && pAddr1->off == pAddr2->off;
1452}
1453
1454
1455/**
1456 * Checks whether the first given address is lower than the second one.
1457 *
1458 * @returns true if both addresses point to the same location, false otherwise.
1459 * @param pAddr1 First address.
1460 * @param pAddr2 Second address.
1461 */
1462static bool dbgcCmdUnassembleCfgAddrLower(PDBGFADDRESS pAddr1, PDBGFADDRESS pAddr2)
1463{
1464 return pAddr1->Sel == pAddr2->Sel
1465 && pAddr1->off < pAddr2->off;
1466}
1467
1468
1469/**
1470 * Calculates the size required for the given basic block including the
1471 * border and spacing on the edges.
1472 *
1473 * @returns nothing.
1474 * @param hFlowBb The basic block handle.
1475 * @param pDumpBb The dumper state to fill in for the basic block.
1476 */
1477static void dbgcCmdUnassembleCfgDumpCalcBbSize(DBGFFLOWBB hFlowBb, PDBGCFLOWBBDUMP pDumpBb)
1478{
1479 uint32_t fFlags = DBGFR3FlowBbGetFlags(hFlowBb);
1480 uint32_t cInstr = DBGFR3FlowBbGetInstrCount(hFlowBb);
1481
1482 pDumpBb->hFlowBb = hFlowBb;
1483 pDumpBb->cchHeight = cInstr + 4; /* Include spacing and border top and bottom. */
1484 pDumpBb->cchWidth = 0;
1485 DBGFR3FlowBbGetStartAddress(hFlowBb, &pDumpBb->AddrStart);
1486
1487 DBGFFLOWBBENDTYPE enmType = DBGFR3FlowBbGetType(hFlowBb);
1488 if ( enmType == DBGFFLOWBBENDTYPE_COND
1489 || enmType == DBGFFLOWBBENDTYPE_UNCOND_JMP
1490 || enmType == DBGFFLOWBBENDTYPE_UNCOND_INDIRECT_JMP)
1491 DBGFR3FlowBbGetBranchAddress(hFlowBb, &pDumpBb->AddrTarget);
1492
1493 if (fFlags & DBGF_FLOW_BB_F_INCOMPLETE_ERR)
1494 {
1495 const char *pszErr = NULL;
1496 DBGFR3FlowBbQueryError(hFlowBb, &pszErr);
1497 if (pszErr)
1498 {
1499 pDumpBb->cchHeight++;
1500 pDumpBb->cchWidth = RT_MAX(pDumpBb->cchWidth, (uint32_t)strlen(pszErr));
1501 }
1502 }
1503 for (unsigned i = 0; i < cInstr; i++)
1504 {
1505 const char *pszInstr = NULL;
1506 int rc = DBGFR3FlowBbQueryInstr(hFlowBb, i, NULL, NULL, &pszInstr);
1507 AssertRC(rc);
1508 pDumpBb->cchWidth = RT_MAX(pDumpBb->cchWidth, (uint32_t)strlen(pszInstr));
1509 }
1510 pDumpBb->cchWidth += 4; /* Include spacing and border left and right. */
1511}
1512
1513
1514/**
1515 * Dumps a top or bottom boundary line.
1516 *
1517 * @returns nothing.
1518 * @param hScreen The screen to draw to.
1519 * @param uStartX Where to start drawing the boundary.
1520 * @param uStartY Y coordinate.
1521 * @param cchWidth Width of the boundary.
1522 * @param enmColor The color to use for drawing.
1523 */
1524static void dbgcCmdUnassembleCfgDumpBbBoundary(DBGCSCREEN hScreen, uint32_t uStartX, uint32_t uStartY, uint32_t cchWidth,
1525 DBGCSCREENCOLOR enmColor)
1526{
1527 dbgcScreenAsciiDrawCharacter(hScreen, uStartX, uStartY, '+', enmColor);
1528 dbgcScreenAsciiDrawLineHorizontal(hScreen, uStartX + 1, uStartX + 1 + cchWidth - 2,
1529 uStartY, '-', enmColor);
1530 dbgcScreenAsciiDrawCharacter(hScreen, uStartX + cchWidth - 1, uStartY, '+', enmColor);
1531}
1532
1533
1534/**
1535 * Dumps a spacing line between the top or bottom boundary and the actual disassembly.
1536 *
1537 * @returns nothing.
1538 * @param hScreen The screen to draw to.
1539 * @param uStartX Where to start drawing the spacing.
1540 * @param uStartY Y coordinate.
1541 * @param cchWidth Width of the spacing.
1542 * @param enmColor The color to use for drawing.
1543 */
1544static void dbgcCmdUnassembleCfgDumpBbSpacing(DBGCSCREEN hScreen, uint32_t uStartX, uint32_t uStartY, uint32_t cchWidth,
1545 DBGCSCREENCOLOR enmColor)
1546{
1547 dbgcScreenAsciiDrawCharacter(hScreen, uStartX, uStartY, '|', enmColor);
1548 dbgcScreenAsciiDrawLineHorizontal(hScreen, uStartX + 1, uStartX + 1 + cchWidth - 2,
1549 uStartY, ' ', enmColor);
1550 dbgcScreenAsciiDrawCharacter(hScreen, uStartX + cchWidth - 1, uStartY, '|', enmColor);
1551}
1552
1553
1554/**
1555 * Writes a given text to the screen.
1556 *
1557 * @returns nothing.
1558 * @param hScreen The screen to draw to.
1559 * @param uStartX Where to start drawing the line.
1560 * @param uStartY Y coordinate.
1561 * @param cchWidth Maximum width of the text.
1562 * @param pszText The text to write.
1563 * @param enmTextColor The color to use for drawing the text.
1564 * @param enmBorderColor The color to use for drawing the border.
1565 */
1566static void dbgcCmdUnassembleCfgDumpBbText(DBGCSCREEN hScreen, uint32_t uStartX, uint32_t uStartY,
1567 uint32_t cchWidth, const char *pszText,
1568 DBGCSCREENCOLOR enmTextColor, DBGCSCREENCOLOR enmBorderColor)
1569{
1570 dbgcScreenAsciiDrawCharacter(hScreen, uStartX, uStartY, '|', enmBorderColor);
1571 dbgcScreenAsciiDrawCharacter(hScreen, uStartX + 1, uStartY, ' ', enmTextColor);
1572 dbgcScreenAsciiDrawString(hScreen, uStartX + 2, uStartY, pszText, enmTextColor);
1573 dbgcScreenAsciiDrawCharacter(hScreen, uStartX + cchWidth - 1, uStartY, '|', enmBorderColor);
1574}
1575
1576
1577/**
1578 * Dumps one basic block using the dumper callback.
1579 *
1580 * @returns nothing.
1581 * @param pDumpBb The basic block dump state to dump.
1582 * @param hScreen The screen to draw to.
1583 */
1584static void dbgcCmdUnassembleCfgDumpBb(PDBGCFLOWBBDUMP pDumpBb, DBGCSCREEN hScreen)
1585{
1586 uint32_t uStartY = pDumpBb->uStartY;
1587 bool fError = RT_BOOL(DBGFR3FlowBbGetFlags(pDumpBb->hFlowBb) & DBGF_FLOW_BB_F_INCOMPLETE_ERR);
1588 DBGCSCREENCOLOR enmColor = fError ? DBGCSCREENCOLOR_RED_BRIGHT : DBGCSCREENCOLOR_DEFAULT;
1589
1590 dbgcCmdUnassembleCfgDumpBbBoundary(hScreen, pDumpBb->uStartX, uStartY, pDumpBb->cchWidth, enmColor);
1591 uStartY++;
1592 dbgcCmdUnassembleCfgDumpBbSpacing(hScreen, pDumpBb->uStartX, uStartY, pDumpBb->cchWidth, enmColor);
1593 uStartY++;
1594
1595 uint32_t cInstr = DBGFR3FlowBbGetInstrCount(pDumpBb->hFlowBb);
1596 for (unsigned i = 0; i < cInstr; i++)
1597 {
1598 const char *pszInstr = NULL;
1599 DBGFR3FlowBbQueryInstr(pDumpBb->hFlowBb, i, NULL, NULL, &pszInstr);
1600 dbgcCmdUnassembleCfgDumpBbText(hScreen, pDumpBb->uStartX, uStartY + i,
1601 pDumpBb->cchWidth, pszInstr, DBGCSCREENCOLOR_DEFAULT,
1602 enmColor);
1603 }
1604 uStartY += cInstr;
1605
1606 if (fError)
1607 {
1608 const char *pszErr = NULL;
1609 DBGFR3FlowBbQueryError(pDumpBb->hFlowBb, &pszErr);
1610 if (pszErr)
1611 dbgcCmdUnassembleCfgDumpBbText(hScreen, pDumpBb->uStartX, uStartY,
1612 pDumpBb->cchWidth, pszErr, enmColor,
1613 enmColor);
1614 uStartY++;
1615 }
1616
1617 dbgcCmdUnassembleCfgDumpBbSpacing(hScreen, pDumpBb->uStartX, uStartY, pDumpBb->cchWidth, enmColor);
1618 uStartY++;
1619 dbgcCmdUnassembleCfgDumpBbBoundary(hScreen, pDumpBb->uStartX, uStartY, pDumpBb->cchWidth, enmColor);
1620 uStartY++;
1621}
1622
1623
1624/**
1625 * Dumps one branch table using the dumper callback.
1626 *
1627 * @returns nothing.
1628 * @param pDumpBb The basic block dump state to dump.
1629 * @param hScreen The screen to draw to.
1630 */
1631static void dbgcCmdUnassembleCfgDumpBranchTbl(PDBGCFLOWBRANCHTBLDUMP pDumpBranchTbl, DBGCSCREEN hScreen)
1632{
1633 uint32_t uStartY = pDumpBranchTbl->uStartY;
1634 DBGCSCREENCOLOR enmColor = DBGCSCREENCOLOR_CYAN_BRIGHT;
1635
1636 dbgcCmdUnassembleCfgDumpBbBoundary(hScreen, pDumpBranchTbl->uStartX, uStartY, pDumpBranchTbl->cchWidth, enmColor);
1637 uStartY++;
1638 dbgcCmdUnassembleCfgDumpBbSpacing(hScreen, pDumpBranchTbl->uStartX, uStartY, pDumpBranchTbl->cchWidth, enmColor);
1639 uStartY++;
1640
1641 uint32_t cSlots = DBGFR3FlowBranchTblGetSlots(pDumpBranchTbl->hFlowBranchTbl);
1642 for (unsigned i = 0; i < cSlots; i++)
1643 {
1644 DBGFADDRESS Addr;
1645 char szAddr[128];
1646
1647 RT_ZERO(szAddr);
1648 DBGFR3FlowBranchTblGetAddrAtSlot(pDumpBranchTbl->hFlowBranchTbl, i, &Addr);
1649
1650 if (Addr.Sel == DBGF_SEL_FLAT)
1651 RTStrPrintf(&szAddr[0], sizeof(szAddr), "%RGv", Addr.FlatPtr);
1652 else
1653 RTStrPrintf(&szAddr[0], sizeof(szAddr), "%04x:%RGv", Addr.Sel, Addr.off);
1654
1655 dbgcCmdUnassembleCfgDumpBbText(hScreen, pDumpBranchTbl->uStartX, uStartY + i,
1656 pDumpBranchTbl->cchWidth, &szAddr[0], DBGCSCREENCOLOR_DEFAULT,
1657 enmColor);
1658 }
1659 uStartY += cSlots;
1660
1661 dbgcCmdUnassembleCfgDumpBbSpacing(hScreen, pDumpBranchTbl->uStartX, uStartY, pDumpBranchTbl->cchWidth, enmColor);
1662 uStartY++;
1663 dbgcCmdUnassembleCfgDumpBbBoundary(hScreen, pDumpBranchTbl->uStartX, uStartY, pDumpBranchTbl->cchWidth, enmColor);
1664 uStartY++;
1665}
1666
1667
1668/**
1669 * Fills in the dump states for the basic blocks and branch tables.
1670 *
1671 * @returns VBox status code.
1672 * @param hFlowIt The control flow graph iterator handle.
1673 * @param hFlowBranchTblIt The control flow graph branch table iterator handle.
1674 * @param paDumpBb The array of basic block dump states.
1675 * @param paDumpBranchTbl The array of branch table dump states.
1676 * @param cBbs Number of basic blocks.
1677 * @param cBranchTbls Number of branch tables.
1678 */
1679static int dbgcCmdUnassembleCfgDumpCalcDimensions(DBGFFLOWIT hFlowIt, DBGFFLOWBRANCHTBLIT hFlowBranchTblIt,
1680 PDBGCFLOWBBDUMP paDumpBb, PDBGCFLOWBRANCHTBLDUMP paDumpBranchTbl,
1681 uint32_t cBbs, uint32_t cBranchTbls)
1682{
1683 RT_NOREF2(cBbs, cBranchTbls);
1684
1685 /* Calculate the sizes of each basic block first. */
1686 DBGFFLOWBB hFlowBb = DBGFR3FlowItNext(hFlowIt);
1687 uint32_t idx = 0;
1688 while (hFlowBb)
1689 {
1690 dbgcCmdUnassembleCfgDumpCalcBbSize(hFlowBb, &paDumpBb[idx]);
1691 idx++;
1692 hFlowBb = DBGFR3FlowItNext(hFlowIt);
1693 }
1694
1695 if (paDumpBranchTbl)
1696 {
1697 idx = 0;
1698 DBGFFLOWBRANCHTBL hFlowBranchTbl = DBGFR3FlowBranchTblItNext(hFlowBranchTblIt);
1699 while (hFlowBranchTbl)
1700 {
1701 paDumpBranchTbl[idx].hFlowBranchTbl = hFlowBranchTbl;
1702 paDumpBranchTbl[idx].cchHeight = DBGFR3FlowBranchTblGetSlots(hFlowBranchTbl) + 4; /* Spacing and border. */
1703 paDumpBranchTbl[idx].cchWidth = 25 + 4; /* Spacing and border. */
1704 idx++;
1705 hFlowBranchTbl = DBGFR3FlowBranchTblItNext(hFlowBranchTblIt);
1706 }
1707 }
1708
1709 return VINF_SUCCESS;
1710}
1711
1712/**
1713 * Dumps the given control flow graph to the output.
1714 *
1715 * @returns VBox status code.
1716 * @param hCfg The control flow graph handle.
1717 * @param fUseColor Flag whether the output should be colorized.
1718 * @param pCmdHlp The command helper callback table.
1719 */
1720static int dbgcCmdUnassembleCfgDump(DBGFFLOW hCfg, bool fUseColor, PDBGCCMDHLP pCmdHlp)
1721{
1722 int rc = VINF_SUCCESS;
1723 DBGFFLOWIT hCfgIt = NULL;
1724 DBGFFLOWBRANCHTBLIT hFlowBranchTblIt = NULL;
1725 uint32_t cBbs = DBGFR3FlowGetBbCount(hCfg);
1726 uint32_t cBranchTbls = DBGFR3FlowGetBranchTblCount(hCfg);
1727 PDBGCFLOWBBDUMP paDumpBb = (PDBGCFLOWBBDUMP)RTMemTmpAllocZ(cBbs * sizeof(DBGCFLOWBBDUMP));
1728 PDBGCFLOWBRANCHTBLDUMP paDumpBranchTbl = NULL;
1729
1730 if (cBranchTbls)
1731 paDumpBranchTbl = (PDBGCFLOWBRANCHTBLDUMP)RTMemAllocZ(cBranchTbls * sizeof(DBGCFLOWBRANCHTBLDUMP));
1732
1733 if (RT_UNLIKELY(!paDumpBb || (!paDumpBranchTbl && cBranchTbls > 0)))
1734 rc = VERR_NO_MEMORY;
1735 if (RT_SUCCESS(rc))
1736 rc = DBGFR3FlowItCreate(hCfg, DBGFFLOWITORDER_BY_ADDR_LOWEST_FIRST, &hCfgIt);
1737 if (RT_SUCCESS(rc) && cBranchTbls > 0)
1738 rc = DBGFR3FlowBranchTblItCreate(hCfg, DBGFFLOWITORDER_BY_ADDR_LOWEST_FIRST, &hFlowBranchTblIt);
1739
1740 if (RT_SUCCESS(rc))
1741 {
1742 rc = dbgcCmdUnassembleCfgDumpCalcDimensions(hCfgIt, hFlowBranchTblIt, paDumpBb, paDumpBranchTbl,
1743 cBbs, cBranchTbls);
1744
1745 /* Calculate the ASCII screen dimensions and create one. */
1746 uint32_t cchWidth = 0;
1747 uint32_t cchLeftExtra = 5;
1748 uint32_t cchRightExtra = 5;
1749 uint32_t cchHeight = 0;
1750 for (unsigned i = 0; i < cBbs; i++)
1751 {
1752 PDBGCFLOWBBDUMP pDumpBb = &paDumpBb[i];
1753 cchWidth = RT_MAX(cchWidth, pDumpBb->cchWidth);
1754 cchHeight += pDumpBb->cchHeight;
1755
1756 /* Incomplete blocks don't have a successor. */
1757 if (DBGFR3FlowBbGetFlags(pDumpBb->hFlowBb) & DBGF_FLOW_BB_F_INCOMPLETE_ERR)
1758 continue;
1759
1760 switch (DBGFR3FlowBbGetType(pDumpBb->hFlowBb))
1761 {
1762 case DBGFFLOWBBENDTYPE_EXIT:
1763 case DBGFFLOWBBENDTYPE_LAST_DISASSEMBLED:
1764 break;
1765 case DBGFFLOWBBENDTYPE_UNCOND_JMP:
1766 if ( dbgcCmdUnassembleCfgAddrLower(&pDumpBb->AddrTarget, &pDumpBb->AddrStart)
1767 || dbgcCmdUnassembleCfgAddrEqual(&pDumpBb->AddrTarget, &pDumpBb->AddrStart))
1768 cchLeftExtra++;
1769 else
1770 cchRightExtra++;
1771 break;
1772 case DBGFFLOWBBENDTYPE_UNCOND:
1773 cchHeight += 2; /* For the arrow down to the next basic block. */
1774 break;
1775 case DBGFFLOWBBENDTYPE_COND:
1776 cchHeight += 2; /* For the arrow down to the next basic block. */
1777 if ( dbgcCmdUnassembleCfgAddrLower(&pDumpBb->AddrTarget, &pDumpBb->AddrStart)
1778 || dbgcCmdUnassembleCfgAddrEqual(&pDumpBb->AddrTarget, &pDumpBb->AddrStart))
1779 cchLeftExtra++;
1780 else
1781 cchRightExtra++;
1782 break;
1783 case DBGFFLOWBBENDTYPE_UNCOND_INDIRECT_JMP:
1784 default:
1785 AssertFailed();
1786 }
1787 }
1788
1789 for (unsigned i = 0; i < cBranchTbls; i++)
1790 {
1791 PDBGCFLOWBRANCHTBLDUMP pDumpBranchTbl = &paDumpBranchTbl[i];
1792 cchWidth = RT_MAX(cchWidth, pDumpBranchTbl->cchWidth);
1793 cchHeight += pDumpBranchTbl->cchHeight;
1794 }
1795
1796 cchWidth += 2;
1797
1798 DBGCSCREEN hScreen = NULL;
1799 rc = dbgcScreenAsciiCreate(&hScreen, cchWidth + cchLeftExtra + cchRightExtra, cchHeight);
1800 if (RT_SUCCESS(rc))
1801 {
1802 uint32_t uY = 0;
1803
1804 /* Dump the branch tables first. */
1805 for (unsigned i = 0; i < cBranchTbls; i++)
1806 {
1807 paDumpBranchTbl[i].uStartX = cchLeftExtra + (cchWidth - paDumpBranchTbl[i].cchWidth) / 2;
1808 paDumpBranchTbl[i].uStartY = uY;
1809 dbgcCmdUnassembleCfgDumpBranchTbl(&paDumpBranchTbl[i], hScreen);
1810 uY += paDumpBranchTbl[i].cchHeight;
1811 }
1812
1813 /* Dump the basic blocks and connections to the immediate successor. */
1814 for (unsigned i = 0; i < cBbs; i++)
1815 {
1816 paDumpBb[i].uStartX = cchLeftExtra + (cchWidth - paDumpBb[i].cchWidth) / 2;
1817 paDumpBb[i].uStartY = uY;
1818 dbgcCmdUnassembleCfgDumpBb(&paDumpBb[i], hScreen);
1819 uY += paDumpBb[i].cchHeight;
1820
1821 /* Incomplete blocks don't have a successor. */
1822 if (DBGFR3FlowBbGetFlags(paDumpBb[i].hFlowBb) & DBGF_FLOW_BB_F_INCOMPLETE_ERR)
1823 continue;
1824
1825 switch (DBGFR3FlowBbGetType(paDumpBb[i].hFlowBb))
1826 {
1827 case DBGFFLOWBBENDTYPE_EXIT:
1828 case DBGFFLOWBBENDTYPE_LAST_DISASSEMBLED:
1829 case DBGFFLOWBBENDTYPE_UNCOND_JMP:
1830 case DBGFFLOWBBENDTYPE_UNCOND_INDIRECT_JMP:
1831 break;
1832 case DBGFFLOWBBENDTYPE_UNCOND:
1833 /* Draw the arrow down to the next block. */
1834 dbgcScreenAsciiDrawCharacter(hScreen, cchLeftExtra + cchWidth / 2, uY,
1835 '|', DBGCSCREENCOLOR_BLUE_BRIGHT);
1836 uY++;
1837 dbgcScreenAsciiDrawCharacter(hScreen, cchLeftExtra + cchWidth / 2, uY,
1838 'V', DBGCSCREENCOLOR_BLUE_BRIGHT);
1839 uY++;
1840 break;
1841 case DBGFFLOWBBENDTYPE_COND:
1842 /* Draw the arrow down to the next block. */
1843 dbgcScreenAsciiDrawCharacter(hScreen, cchLeftExtra + cchWidth / 2, uY,
1844 '|', DBGCSCREENCOLOR_RED_BRIGHT);
1845 uY++;
1846 dbgcScreenAsciiDrawCharacter(hScreen, cchLeftExtra + cchWidth / 2, uY,
1847 'V', DBGCSCREENCOLOR_RED_BRIGHT);
1848 uY++;
1849 break;
1850 default:
1851 AssertFailed();
1852 }
1853 }
1854
1855 /* Last pass, connect all remaining branches. */
1856 uint32_t uBackConns = 0;
1857 uint32_t uFwdConns = 0;
1858 for (unsigned i = 0; i < cBbs; i++)
1859 {
1860 PDBGCFLOWBBDUMP pDumpBb = &paDumpBb[i];
1861 DBGFFLOWBBENDTYPE enmEndType = DBGFR3FlowBbGetType(pDumpBb->hFlowBb);
1862
1863 /* Incomplete blocks don't have a successor. */
1864 if (DBGFR3FlowBbGetFlags(pDumpBb->hFlowBb) & DBGF_FLOW_BB_F_INCOMPLETE_ERR)
1865 continue;
1866
1867 switch (enmEndType)
1868 {
1869 case DBGFFLOWBBENDTYPE_EXIT:
1870 case DBGFFLOWBBENDTYPE_LAST_DISASSEMBLED:
1871 case DBGFFLOWBBENDTYPE_UNCOND:
1872 break;
1873 case DBGFFLOWBBENDTYPE_COND:
1874 case DBGFFLOWBBENDTYPE_UNCOND_JMP:
1875 {
1876 /* Find the target first to get the coordinates. */
1877 PDBGCFLOWBBDUMP pDumpBbTgt = NULL;
1878 for (unsigned idxDumpBb = 0; idxDumpBb < cBbs; idxDumpBb++)
1879 {
1880 pDumpBbTgt = &paDumpBb[idxDumpBb];
1881 if (dbgcCmdUnassembleCfgAddrEqual(&pDumpBb->AddrTarget, &pDumpBbTgt->AddrStart))
1882 break;
1883 }
1884
1885 DBGCSCREENCOLOR enmColor = enmEndType == DBGFFLOWBBENDTYPE_UNCOND_JMP
1886 ? DBGCSCREENCOLOR_YELLOW_BRIGHT
1887 : DBGCSCREENCOLOR_GREEN_BRIGHT;
1888
1889 /*
1890 * Use the right side for targets with higher addresses,
1891 * left when jumping backwards.
1892 */
1893 if ( dbgcCmdUnassembleCfgAddrLower(&pDumpBb->AddrTarget, &pDumpBb->AddrStart)
1894 || dbgcCmdUnassembleCfgAddrEqual(&pDumpBb->AddrTarget, &pDumpBb->AddrStart))
1895 {
1896 /* Going backwards. */
1897 uint32_t uXVerLine = /*cchLeftExtra - 1 -*/ uBackConns + 1;
1898 uint32_t uYHorLine = pDumpBb->uStartY + pDumpBb->cchHeight - 1 - 2;
1899 uBackConns++;
1900
1901 /* Draw the arrow pointing to the target block. */
1902 dbgcScreenAsciiDrawCharacter(hScreen, pDumpBbTgt->uStartX - 1, pDumpBbTgt->uStartY,
1903 '>', enmColor);
1904 /* Draw the horizontal line. */
1905 dbgcScreenAsciiDrawLineHorizontal(hScreen, uXVerLine + 1, pDumpBbTgt->uStartX - 2,
1906 pDumpBbTgt->uStartY, '-', enmColor);
1907 dbgcScreenAsciiDrawCharacter(hScreen, uXVerLine, pDumpBbTgt->uStartY, '+',
1908 enmColor);
1909 /* Draw the vertical line down to the source block. */
1910 dbgcScreenAsciiDrawLineVertical(hScreen, uXVerLine, pDumpBbTgt->uStartY + 1, uYHorLine - 1,
1911 '|', enmColor);
1912 dbgcScreenAsciiDrawCharacter(hScreen, uXVerLine, uYHorLine, '+', enmColor);
1913 /* Draw the horizontal connection between the source block and vertical part. */
1914 dbgcScreenAsciiDrawLineHorizontal(hScreen, uXVerLine + 1, pDumpBb->uStartX - 1,
1915 uYHorLine, '-', enmColor);
1916
1917 }
1918 else
1919 {
1920 /* Going forward. */
1921 uint32_t uXVerLine = cchWidth + cchLeftExtra + (cchRightExtra - uFwdConns) - 1;
1922 uint32_t uYHorLine = pDumpBb->uStartY + pDumpBb->cchHeight - 1 - 2;
1923 uFwdConns++;
1924
1925 /* Draw the horizontal line. */
1926 dbgcScreenAsciiDrawLineHorizontal(hScreen, pDumpBb->uStartX + pDumpBb->cchWidth,
1927 uXVerLine - 1, uYHorLine, '-', enmColor);
1928 dbgcScreenAsciiDrawCharacter(hScreen, uXVerLine, uYHorLine, '+', enmColor);
1929 /* Draw the vertical line down to the target block. */
1930 dbgcScreenAsciiDrawLineVertical(hScreen, uXVerLine, uYHorLine + 1, pDumpBbTgt->uStartY - 1,
1931 '|', enmColor);
1932 /* Draw the horizontal connection between the target block and vertical part. */
1933 dbgcScreenAsciiDrawLineHorizontal(hScreen, pDumpBbTgt->uStartX + pDumpBbTgt->cchWidth,
1934 uXVerLine, pDumpBbTgt->uStartY, '-', enmColor);
1935 dbgcScreenAsciiDrawCharacter(hScreen, uXVerLine, pDumpBbTgt->uStartY, '+',
1936 enmColor);
1937 /* Draw the arrow pointing to the target block. */
1938 dbgcScreenAsciiDrawCharacter(hScreen, pDumpBbTgt->uStartX + pDumpBbTgt->cchWidth,
1939 pDumpBbTgt->uStartY, '<', enmColor);
1940 }
1941 break;
1942 }
1943 case DBGFFLOWBBENDTYPE_UNCOND_INDIRECT_JMP:
1944 default:
1945 AssertFailed();
1946 }
1947 }
1948
1949 rc = dbgcScreenAsciiBlit(hScreen, dbgcCmdUnassembleCfgBlit, pCmdHlp, fUseColor);
1950 dbgcScreenAsciiDestroy(hScreen);
1951 }
1952 }
1953
1954 if (paDumpBb)
1955 {
1956 for (unsigned i = 0; i < cBbs; i++)
1957 DBGFR3FlowBbRelease(paDumpBb[i].hFlowBb);
1958 RTMemTmpFree(paDumpBb);
1959 }
1960
1961 if (paDumpBranchTbl)
1962 {
1963 for (unsigned i = 0; i < cBranchTbls; i++)
1964 DBGFR3FlowBranchTblRelease(paDumpBranchTbl[i].hFlowBranchTbl);
1965 RTMemTmpFree(paDumpBranchTbl);
1966 }
1967
1968 if (hCfgIt)
1969 DBGFR3FlowItDestroy(hCfgIt);
1970 if (hFlowBranchTblIt)
1971 DBGFR3FlowBranchTblItDestroy(hFlowBranchTblIt);
1972
1973 return rc;
1974}
1975
1976
1977/**
1978 * @callback_method_impl{FNDBGCCMD, The 'ucfg' command.}
1979 */
1980static DECLCALLBACK(int) dbgcCmdUnassembleCfg(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
1981{
1982 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
1983
1984 /*
1985 * Validate input.
1986 */
1987 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
1988 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, -1, cArgs <= 1);
1989 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs == 0 || DBGCVAR_ISPOINTER(paArgs[0].enmType));
1990
1991 if (!cArgs && !DBGCVAR_ISPOINTER(pDbgc->DisasmPos.enmType))
1992 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Don't know where to start disassembling");
1993
1994 /*
1995 * Check the desired mode.
1996 */
1997 unsigned fFlags = DBGF_DISAS_FLAGS_UNPATCHED_BYTES | DBGF_DISAS_FLAGS_ANNOTATE_PATCHED;
1998 bool fUseColor = false;
1999 switch (pCmd->pszCmd[4])
2000 {
2001 default: AssertFailed();
2002 case '\0': fFlags |= DBGF_DISAS_FLAGS_DEFAULT_MODE; break;
2003 case '6': fFlags |= DBGF_DISAS_FLAGS_64BIT_MODE; break;
2004 case '3': fFlags |= DBGF_DISAS_FLAGS_32BIT_MODE; break;
2005 case '1': fFlags |= DBGF_DISAS_FLAGS_16BIT_MODE; break;
2006 case 'v': fFlags |= DBGF_DISAS_FLAGS_16BIT_REAL_MODE; break;
2007 case 'c': fUseColor = true; break;
2008 }
2009
2010 /** @todo should use DBGFADDRESS for everything */
2011
2012 /*
2013 * Find address.
2014 */
2015 if (!cArgs)
2016 {
2017 if (!DBGCVAR_ISPOINTER(pDbgc->DisasmPos.enmType))
2018 {
2019 /** @todo Batch query CS, RIP, CPU mode and flags. */
2020 PVMCPU pVCpu = VMMR3GetCpuByIdU(pUVM, pDbgc->idCpu);
2021 if ( pDbgc->fRegCtxGuest
2022 && CPUMIsGuestIn64BitCode(pVCpu))
2023 {
2024 pDbgc->DisasmPos.enmType = DBGCVAR_TYPE_GC_FLAT;
2025 pDbgc->SourcePos.u.GCFlat = CPUMGetGuestRIP(pVCpu);
2026 }
2027 else
2028 {
2029 pDbgc->DisasmPos.enmType = DBGCVAR_TYPE_GC_FAR;
2030 pDbgc->SourcePos.u.GCFar.off = pDbgc->fRegCtxGuest ? CPUMGetGuestEIP(pVCpu) : CPUMGetHyperEIP(pVCpu);
2031 pDbgc->SourcePos.u.GCFar.sel = pDbgc->fRegCtxGuest ? CPUMGetGuestCS(pVCpu) : CPUMGetHyperCS(pVCpu);
2032 if ( (fFlags & DBGF_DISAS_FLAGS_MODE_MASK) == DBGF_DISAS_FLAGS_DEFAULT_MODE
2033 && pDbgc->fRegCtxGuest
2034 && (CPUMGetGuestEFlags(pVCpu) & X86_EFL_VM))
2035 {
2036 fFlags &= ~DBGF_DISAS_FLAGS_MODE_MASK;
2037 fFlags |= DBGF_DISAS_FLAGS_16BIT_REAL_MODE;
2038 }
2039 }
2040
2041 if (pDbgc->fRegCtxGuest)
2042 fFlags |= DBGF_DISAS_FLAGS_CURRENT_GUEST;
2043 else
2044 fFlags |= DBGF_DISAS_FLAGS_CURRENT_HYPER | DBGF_DISAS_FLAGS_HYPER;
2045 }
2046 else if ((fFlags & DBGF_DISAS_FLAGS_MODE_MASK) == DBGF_DISAS_FLAGS_DEFAULT_MODE && pDbgc->fDisasm)
2047 {
2048 fFlags &= ~DBGF_DISAS_FLAGS_MODE_MASK;
2049 fFlags |= pDbgc->fDisasm & (DBGF_DISAS_FLAGS_MODE_MASK | DBGF_DISAS_FLAGS_HYPER);
2050 }
2051 pDbgc->DisasmPos.enmRangeType = DBGCVAR_RANGE_NONE;
2052 }
2053 else
2054 pDbgc->DisasmPos = paArgs[0];
2055 pDbgc->pLastPos = &pDbgc->DisasmPos;
2056
2057 /*
2058 * Range.
2059 */
2060 switch (pDbgc->DisasmPos.enmRangeType)
2061 {
2062 case DBGCVAR_RANGE_NONE:
2063 pDbgc->DisasmPos.enmRangeType = DBGCVAR_RANGE_ELEMENTS;
2064 pDbgc->DisasmPos.u64Range = 10;
2065 break;
2066
2067 case DBGCVAR_RANGE_ELEMENTS:
2068 if (pDbgc->DisasmPos.u64Range > 2048)
2069 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Too many lines requested. Max is 2048 lines");
2070 break;
2071
2072 case DBGCVAR_RANGE_BYTES:
2073 if (pDbgc->DisasmPos.u64Range > 65536)
2074 return DBGCCmdHlpFail(pCmdHlp, pCmd, "The requested range is too big. Max is 64KB");
2075 break;
2076
2077 default:
2078 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Unknown range type %d", pDbgc->DisasmPos.enmRangeType);
2079 }
2080
2081 /*
2082 * Convert physical and host addresses to guest addresses.
2083 */
2084 RTDBGAS hDbgAs = pDbgc->hDbgAs;
2085 int rc;
2086 switch (pDbgc->DisasmPos.enmType)
2087 {
2088 case DBGCVAR_TYPE_GC_FLAT:
2089 case DBGCVAR_TYPE_GC_FAR:
2090 break;
2091 case DBGCVAR_TYPE_GC_PHYS:
2092 hDbgAs = DBGF_AS_PHYS;
2093 case DBGCVAR_TYPE_HC_FLAT:
2094 case DBGCVAR_TYPE_HC_PHYS:
2095 {
2096 DBGCVAR VarTmp;
2097 rc = DBGCCmdHlpEval(pCmdHlp, &VarTmp, "%%(%Dv)", &pDbgc->DisasmPos);
2098 if (RT_FAILURE(rc))
2099 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "failed to evaluate '%%(%Dv)'", &pDbgc->DisasmPos);
2100 pDbgc->DisasmPos = VarTmp;
2101 break;
2102 }
2103 default: AssertFailed(); break;
2104 }
2105
2106 DBGFADDRESS CurAddr;
2107 if ( (fFlags & DBGF_DISAS_FLAGS_MODE_MASK) == DBGF_DISAS_FLAGS_16BIT_REAL_MODE
2108 && pDbgc->DisasmPos.enmType == DBGCVAR_TYPE_GC_FAR)
2109 DBGFR3AddrFromFlat(pUVM, &CurAddr, ((uint32_t)pDbgc->DisasmPos.u.GCFar.sel << 4) + pDbgc->DisasmPos.u.GCFar.off);
2110 else
2111 {
2112 rc = DBGCCmdHlpVarToDbgfAddr(pCmdHlp, &pDbgc->DisasmPos, &CurAddr);
2113 if (RT_FAILURE(rc))
2114 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGCCmdHlpVarToDbgfAddr failed on '%Dv'", &pDbgc->DisasmPos);
2115 }
2116
2117 DBGFFLOW hCfg;
2118 rc = DBGFR3FlowCreate(pUVM, pDbgc->idCpu, &CurAddr, 0 /*cbDisasmMax*/,
2119 DBGF_FLOW_CREATE_F_TRY_RESOLVE_INDIRECT_BRANCHES, fFlags, &hCfg);
2120 if (RT_SUCCESS(rc))
2121 {
2122 /* Dump the graph. */
2123 rc = dbgcCmdUnassembleCfgDump(hCfg, fUseColor, pCmdHlp);
2124 DBGFR3FlowRelease(hCfg);
2125 }
2126 else
2127 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3FlowCreate failed on '%Dv'", &pDbgc->DisasmPos);
2128
2129 NOREF(pCmd);
2130 return rc;
2131}
2132
2133
2134/**
2135 * @callback_method_impl{FNDBGCCMD, The 'ls' command.}
2136 */
2137static DECLCALLBACK(int) dbgcCmdListSource(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2138{
2139 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2140
2141 /*
2142 * Validate input.
2143 */
2144 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs <= 1);
2145 if (cArgs == 1)
2146 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, DBGCVAR_ISPOINTER(paArgs[0].enmType));
2147 if (!pUVM && !cArgs && !DBGCVAR_ISPOINTER(pDbgc->SourcePos.enmType))
2148 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Don't know where to start listing...");
2149 if (!pUVM && cArgs && DBGCVAR_ISGCPOINTER(paArgs[0].enmType))
2150 return DBGCCmdHlpFail(pCmdHlp, pCmd, "GC address but no VM");
2151
2152 /*
2153 * Find address.
2154 */
2155 if (!cArgs)
2156 {
2157 if (!DBGCVAR_ISPOINTER(pDbgc->SourcePos.enmType))
2158 {
2159 PVMCPU pVCpu = VMMR3GetCpuByIdU(pUVM, pDbgc->idCpu);
2160 pDbgc->SourcePos.enmType = DBGCVAR_TYPE_GC_FAR;
2161 pDbgc->SourcePos.u.GCFar.off = pDbgc->fRegCtxGuest ? CPUMGetGuestEIP(pVCpu) : CPUMGetHyperEIP(pVCpu);
2162 pDbgc->SourcePos.u.GCFar.sel = pDbgc->fRegCtxGuest ? CPUMGetGuestCS(pVCpu) : CPUMGetHyperCS(pVCpu);
2163 }
2164 pDbgc->SourcePos.enmRangeType = DBGCVAR_RANGE_NONE;
2165 }
2166 else
2167 pDbgc->SourcePos = paArgs[0];
2168 pDbgc->pLastPos = &pDbgc->SourcePos;
2169
2170 /*
2171 * Ensure the source address is flat GC.
2172 */
2173 switch (pDbgc->SourcePos.enmType)
2174 {
2175 case DBGCVAR_TYPE_GC_FLAT:
2176 break;
2177 case DBGCVAR_TYPE_GC_PHYS:
2178 case DBGCVAR_TYPE_GC_FAR:
2179 case DBGCVAR_TYPE_HC_FLAT:
2180 case DBGCVAR_TYPE_HC_PHYS:
2181 {
2182 int rc = DBGCCmdHlpEval(pCmdHlp, &pDbgc->SourcePos, "%%(%Dv)", &pDbgc->SourcePos);
2183 if (RT_FAILURE(rc))
2184 return DBGCCmdHlpPrintf(pCmdHlp, "error: Invalid address or address type. (rc=%d)\n", rc);
2185 break;
2186 }
2187 default: AssertFailed(); break;
2188 }
2189
2190 /*
2191 * Range.
2192 */
2193 switch (pDbgc->SourcePos.enmRangeType)
2194 {
2195 case DBGCVAR_RANGE_NONE:
2196 pDbgc->SourcePos.enmRangeType = DBGCVAR_RANGE_ELEMENTS;
2197 pDbgc->SourcePos.u64Range = 10;
2198 break;
2199
2200 case DBGCVAR_RANGE_ELEMENTS:
2201 if (pDbgc->SourcePos.u64Range > 2048)
2202 return DBGCCmdHlpPrintf(pCmdHlp, "error: Too many lines requested. Max is 2048 lines.\n");
2203 break;
2204
2205 case DBGCVAR_RANGE_BYTES:
2206 if (pDbgc->SourcePos.u64Range > 65536)
2207 return DBGCCmdHlpPrintf(pCmdHlp, "error: The requested range is too big. Max is 64KB.\n");
2208 break;
2209
2210 default:
2211 return DBGCCmdHlpPrintf(pCmdHlp, "internal error: Unknown range type %d.\n", pDbgc->SourcePos.enmRangeType);
2212 }
2213
2214 /*
2215 * Do the disassembling.
2216 */
2217 bool fFirst = 1;
2218 RTDBGLINE LinePrev = { 0, 0, 0, 0, 0, "" };
2219 int iRangeLeft = (int)pDbgc->SourcePos.u64Range;
2220 if (iRangeLeft == 0) /* kludge for 'r'. */
2221 iRangeLeft = -1;
2222 for (;;)
2223 {
2224 /*
2225 * Get line info.
2226 */
2227 RTDBGLINE Line;
2228 RTGCINTPTR off;
2229 DBGFADDRESS SourcePosAddr;
2230 int rc = DBGCCmdHlpVarToDbgfAddr(pCmdHlp, &pDbgc->SourcePos, &SourcePosAddr);
2231 if (RT_FAILURE(rc))
2232 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGCCmdHlpVarToDbgfAddr(,%Dv)", &pDbgc->SourcePos);
2233 rc = DBGFR3AsLineByAddr(pUVM, pDbgc->hDbgAs, &SourcePosAddr, &off, &Line, NULL);
2234 if (RT_FAILURE(rc))
2235 return VINF_SUCCESS;
2236
2237 unsigned cLines = 0;
2238 if (memcmp(&Line, &LinePrev, sizeof(Line)))
2239 {
2240 /*
2241 * Print filenamename
2242 */
2243 if (!fFirst && strcmp(Line.szFilename, LinePrev.szFilename))
2244 fFirst = true;
2245 if (fFirst)
2246 {
2247 rc = DBGCCmdHlpPrintf(pCmdHlp, "[%s @ %d]\n", Line.szFilename, Line.uLineNo);
2248 if (RT_FAILURE(rc))
2249 return rc;
2250 }
2251
2252 /*
2253 * Try open the file and read the line.
2254 */
2255 FILE *phFile = fopen(Line.szFilename, "r");
2256 if (phFile)
2257 {
2258 /* Skip ahead to the desired line. */
2259 char szLine[4096];
2260 unsigned cBefore = fFirst ? RT_MIN(2, Line.uLineNo - 1) : Line.uLineNo - LinePrev.uLineNo - 1;
2261 if (cBefore > 7)
2262 cBefore = 0;
2263 unsigned cLeft = Line.uLineNo - cBefore;
2264 while (cLeft > 0)
2265 {
2266 szLine[0] = '\0';
2267 if (!fgets(szLine, sizeof(szLine), phFile))
2268 break;
2269 cLeft--;
2270 }
2271 if (!cLeft)
2272 {
2273 /* print the before lines */
2274 for (;;)
2275 {
2276 size_t cch = strlen(szLine);
2277 while (cch > 0 && (szLine[cch - 1] == '\r' || szLine[cch - 1] == '\n' || RT_C_IS_SPACE(szLine[cch - 1])) )
2278 szLine[--cch] = '\0';
2279 if (cBefore-- <= 0)
2280 break;
2281
2282 rc = DBGCCmdHlpPrintf(pCmdHlp, " %4d: %s\n", Line.uLineNo - cBefore - 1, szLine);
2283 szLine[0] = '\0';
2284 const char *pszShutUpGcc = fgets(szLine, sizeof(szLine), phFile); NOREF(pszShutUpGcc);
2285 cLines++;
2286 }
2287 /* print the actual line */
2288 rc = DBGCCmdHlpPrintf(pCmdHlp, "%08llx %4d: %s\n", Line.Address, Line.uLineNo, szLine);
2289 }
2290 fclose(phFile);
2291 if (RT_FAILURE(rc))
2292 return rc;
2293 fFirst = false;
2294 }
2295 else
2296 return DBGCCmdHlpPrintf(pCmdHlp, "Warning: couldn't open source file '%s'\n", Line.szFilename);
2297
2298 LinePrev = Line;
2299 }
2300
2301
2302 /*
2303 * Advance
2304 */
2305 if (iRangeLeft < 0) /* 'r' */
2306 break;
2307 if (pDbgc->SourcePos.enmRangeType == DBGCVAR_RANGE_ELEMENTS)
2308 iRangeLeft -= cLines;
2309 else
2310 iRangeLeft -= 1;
2311 rc = DBGCCmdHlpEval(pCmdHlp, &pDbgc->SourcePos, "(%Dv) + %x", &pDbgc->SourcePos, 1);
2312 if (RT_FAILURE(rc))
2313 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "Expression: (%Dv) + %x\n", &pDbgc->SourcePos, 1);
2314 if (iRangeLeft <= 0)
2315 break;
2316 }
2317
2318 NOREF(pCmd);
2319 return 0;
2320}
2321
2322
2323/**
2324 * @callback_method_impl{FNDBGCCMD, The 'r' command.}
2325 */
2326static DECLCALLBACK(int) dbgcCmdReg(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2327{
2328 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2329 if (!pDbgc->fRegCtxGuest)
2330 return dbgcCmdRegHyper(pCmd, pCmdHlp, pUVM, paArgs, cArgs);
2331 return dbgcCmdRegGuest(pCmd, pCmdHlp, pUVM, paArgs, cArgs);
2332}
2333
2334
2335/**
2336 * @callback_method_impl{FNDBGCCMD, Common worker for the dbgcCmdReg*()
2337 * commands.}
2338 */
2339static DECLCALLBACK(int) dbgcCmdRegCommon(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs,
2340 const char *pszPrefix)
2341{
2342 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2343 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs == 1 || cArgs == 2 || cArgs == 3);
2344 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, paArgs[0].enmType == DBGCVAR_TYPE_STRING
2345 || paArgs[0].enmType == DBGCVAR_TYPE_SYMBOL);
2346
2347 /*
2348 * Parse the register name and kind.
2349 */
2350 const char *pszReg = paArgs[0].u.pszString;
2351 if (*pszReg == '@')
2352 pszReg++;
2353 VMCPUID idCpu = pDbgc->idCpu;
2354 if (*pszPrefix)
2355 idCpu |= DBGFREG_HYPER_VMCPUID;
2356 if (*pszReg == '.')
2357 {
2358 pszReg++;
2359 idCpu |= DBGFREG_HYPER_VMCPUID;
2360 }
2361 const char * const pszActualPrefix = idCpu & DBGFREG_HYPER_VMCPUID ? "." : "";
2362
2363 /*
2364 * Query the register type & value (the setter needs the type).
2365 */
2366 DBGFREGVALTYPE enmType;
2367 DBGFREGVAL Value;
2368 int rc = DBGFR3RegNmQuery(pUVM, idCpu, pszReg, &Value, &enmType);
2369 if (RT_FAILURE(rc))
2370 {
2371 if (rc == VERR_DBGF_REGISTER_NOT_FOUND)
2372 return DBGCCmdHlpVBoxError(pCmdHlp, VERR_INVALID_PARAMETER, "Unknown register: '%s%s'.\n",
2373 pszActualPrefix, pszReg);
2374 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "DBGFR3RegNmQuery failed querying '%s%s': %Rrc.\n",
2375 pszActualPrefix, pszReg, rc);
2376 }
2377 if (cArgs == 1)
2378 {
2379 /*
2380 * Show the register.
2381 */
2382 char szValue[160];
2383 rc = DBGFR3RegFormatValue(szValue, sizeof(szValue), &Value, enmType, true /*fSpecial*/);
2384 if (RT_SUCCESS(rc))
2385 rc = DBGCCmdHlpPrintf(pCmdHlp, "%s%s=%s\n", pszActualPrefix, pszReg, szValue);
2386 else
2387 rc = DBGCCmdHlpVBoxError(pCmdHlp, rc, "DBGFR3RegFormatValue failed: %Rrc.\n", rc);
2388 }
2389 else
2390 {
2391 DBGCVAR NewValueTmp;
2392 PCDBGCVAR pNewValue;
2393 if (cArgs == 3)
2394 {
2395 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 1, paArgs[1].enmType == DBGCVAR_TYPE_STRING);
2396 if (strcmp(paArgs[1].u.pszString, "="))
2397 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Second argument must be '='.");
2398 pNewValue = &paArgs[2];
2399 }
2400 else
2401 {
2402 /* Not possible to convince the parser to support both codeview and
2403 windbg syntax and make the equal sign optional. Try help it. */
2404 /** @todo make DBGCCmdHlpConvert do more with strings. */
2405 rc = DBGCCmdHlpConvert(pCmdHlp, &paArgs[1], DBGCVAR_TYPE_NUMBER, true /*fConvSyms*/, &NewValueTmp);
2406 if (RT_FAILURE(rc))
2407 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "The last argument must be a value or valid symbol.");
2408 pNewValue = &NewValueTmp;
2409 }
2410
2411 /*
2412 * Modify the register.
2413 */
2414 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 1, pNewValue->enmType == DBGCVAR_TYPE_NUMBER);
2415 if (enmType != DBGFREGVALTYPE_DTR)
2416 {
2417 enmType = DBGFREGVALTYPE_U64;
2418 rc = DBGCCmdHlpVarToNumber(pCmdHlp, pNewValue, &Value.u64);
2419 }
2420 else
2421 {
2422 enmType = DBGFREGVALTYPE_DTR;
2423 rc = DBGCCmdHlpVarToNumber(pCmdHlp, pNewValue, &Value.dtr.u64Base);
2424 if (RT_SUCCESS(rc) && pNewValue->enmRangeType != DBGCVAR_RANGE_NONE)
2425 Value.dtr.u32Limit = (uint32_t)pNewValue->u64Range;
2426 }
2427 if (RT_SUCCESS(rc))
2428 {
2429 rc = DBGFR3RegNmSet(pUVM, idCpu, pszReg, &Value, enmType);
2430 if (RT_FAILURE(rc))
2431 rc = DBGCCmdHlpVBoxError(pCmdHlp, rc, "DBGFR3RegNmSet failed settings '%s%s': %Rrc\n",
2432 pszActualPrefix, pszReg, rc);
2433 if (rc != VINF_SUCCESS)
2434 DBGCCmdHlpPrintf(pCmdHlp, "%s: warning: %Rrc\n", pCmd->pszCmd, rc);
2435 }
2436 else
2437 rc = DBGCCmdHlpVBoxError(pCmdHlp, rc, "DBGFR3RegFormatValue failed: %Rrc.\n", rc);
2438 }
2439 return rc;
2440}
2441
2442
2443/**
2444 * @callback_method_impl{FNDBGCCMD,
2445 * The 'rg'\, 'rg64' and 'rg32' commands\, worker for 'r'.}
2446 */
2447static DECLCALLBACK(int) dbgcCmdRegGuest(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2448{
2449 /*
2450 * Show all registers our selves.
2451 */
2452 if (cArgs == 0)
2453 {
2454 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2455 bool const f64BitMode = !strcmp(pCmd->pszCmd, "rg64")
2456 || ( strcmp(pCmd->pszCmd, "rg32") != 0
2457 && DBGFR3CpuIsIn64BitCode(pUVM, pDbgc->idCpu));
2458 char szDisAndRegs[8192];
2459 int rc;
2460
2461 if (pDbgc->fRegTerse)
2462 {
2463 if (f64BitMode)
2464 rc = DBGFR3RegPrintf(pUVM, pDbgc->idCpu, &szDisAndRegs[0], sizeof(szDisAndRegs),
2465 "u %016VR{rip} L 0\n"
2466 "rax=%016VR{rax} rbx=%016VR{rbx} rcx=%016VR{rcx} rdx=%016VR{rdx}\n"
2467 "rsi=%016VR{rsi} rdi=%016VR{rdi} r8 =%016VR{r8} r9 =%016VR{r9}\n"
2468 "r10=%016VR{r10} r11=%016VR{r11} r12=%016VR{r12} r13=%016VR{r13}\n"
2469 "r14=%016VR{r14} r15=%016VR{r15} %VRF{rflags}\n"
2470 "rip=%016VR{rip} rsp=%016VR{rsp} rbp=%016VR{rbp}\n"
2471 "cs=%04VR{cs} ds=%04VR{ds} es=%04VR{es} fs=%04VR{fs} gs=%04VR{gs} ss=%04VR{ss} rflags=%08VR{rflags}\n");
2472 else
2473 rc = DBGFR3RegPrintf(pUVM, pDbgc->idCpu, szDisAndRegs, sizeof(szDisAndRegs),
2474 "u %04VR{cs}:%08VR{eip} L 0\n"
2475 "eax=%08VR{eax} ebx=%08VR{ebx} ecx=%08VR{ecx} edx=%08VR{edx} esi=%08VR{esi} edi=%08VR{edi}\n"
2476 "eip=%08VR{eip} esp=%08VR{esp} ebp=%08VR{ebp} %VRF{eflags}\n"
2477 "cs=%04VR{cs} ds=%04VR{ds} es=%04VR{es} fs=%04VR{fs} gs=%04VR{gs} ss=%04VR{ss} eflags=%08VR{eflags}\n");
2478 }
2479 else
2480 {
2481 if (f64BitMode)
2482 rc = DBGFR3RegPrintf(pUVM, pDbgc->idCpu, &szDisAndRegs[0], sizeof(szDisAndRegs),
2483 "u %016VR{rip} L 0\n"
2484 "rax=%016VR{rax} rbx=%016VR{rbx} rcx=%016VR{rcx} rdx=%016VR{rdx}\n"
2485 "rsi=%016VR{rsi} rdi=%016VR{rdi} r8 =%016VR{r8} r9 =%016VR{r9}\n"
2486 "r10=%016VR{r10} r11=%016VR{r11} r12=%016VR{r12} r13=%016VR{r13}\n"
2487 "r14=%016VR{r14} r15=%016VR{r15} %VRF{rflags}\n"
2488 "rip=%016VR{rip} rsp=%016VR{rsp} rbp=%016VR{rbp}\n"
2489 "cs={%04VR{cs} base=%016VR{cs_base} limit=%08VR{cs_lim} flags=%04VR{cs_attr}} cr0=%016VR{cr0}\n"
2490 "ds={%04VR{ds} base=%016VR{ds_base} limit=%08VR{ds_lim} flags=%04VR{ds_attr}} cr2=%016VR{cr2}\n"
2491 "es={%04VR{es} base=%016VR{es_base} limit=%08VR{es_lim} flags=%04VR{es_attr}} cr3=%016VR{cr3}\n"
2492 "fs={%04VR{fs} base=%016VR{fs_base} limit=%08VR{fs_lim} flags=%04VR{fs_attr}} cr4=%016VR{cr4}\n"
2493 "gs={%04VR{gs} base=%016VR{gs_base} limit=%08VR{gs_lim} flags=%04VR{gs_attr}} cr8=%016VR{cr8}\n"
2494 "ss={%04VR{ss} base=%016VR{ss_base} limit=%08VR{ss_lim} flags=%04VR{ss_attr}}\n"
2495 "dr0=%016VR{dr0} dr1=%016VR{dr1} dr2=%016VR{dr2} dr3=%016VR{dr3}\n"
2496 "dr6=%016VR{dr6} dr7=%016VR{dr7}\n"
2497 "gdtr=%016VR{gdtr_base}:%04VR{gdtr_lim} idtr=%016VR{idtr_base}:%04VR{idtr_lim} rflags=%08VR{rflags}\n"
2498 "ldtr={%04VR{ldtr} base=%016VR{ldtr_base} limit=%08VR{ldtr_lim} flags=%08VR{ldtr_attr}}\n"
2499 "tr ={%04VR{tr} base=%016VR{tr_base} limit=%08VR{tr_lim} flags=%08VR{tr_attr}}\n"
2500 " sysenter={cs=%04VR{sysenter_cs} eip=%08VR{sysenter_eip} esp=%08VR{sysenter_esp}}\n"
2501 " efer=%016VR{efer}\n"
2502 " pat=%016VR{pat}\n"
2503 " sf_mask=%016VR{sf_mask}\n"
2504 "krnl_gs_base=%016VR{krnl_gs_base}\n"
2505 " lstar=%016VR{lstar}\n"
2506 " star=%016VR{star} cstar=%016VR{cstar}\n"
2507 "fcw=%04VR{fcw} fsw=%04VR{fsw} ftw=%04VR{ftw} mxcsr=%04VR{mxcsr} mxcsr_mask=%04VR{mxcsr_mask}\n"
2508 );
2509 else
2510 rc = DBGFR3RegPrintf(pUVM, pDbgc->idCpu, szDisAndRegs, sizeof(szDisAndRegs),
2511 "u %04VR{cs}:%08VR{eip} L 0\n"
2512 "eax=%08VR{eax} ebx=%08VR{ebx} ecx=%08VR{ecx} edx=%08VR{edx} esi=%08VR{esi} edi=%08VR{edi}\n"
2513 "eip=%08VR{eip} esp=%08VR{esp} ebp=%08VR{ebp} %VRF{eflags}\n"
2514 "cs={%04VR{cs} base=%08VR{cs_base} limit=%08VR{cs_lim} flags=%04VR{cs_attr}} dr0=%08VR{dr0} dr1=%08VR{dr1}\n"
2515 "ds={%04VR{ds} base=%08VR{ds_base} limit=%08VR{ds_lim} flags=%04VR{ds_attr}} dr2=%08VR{dr2} dr3=%08VR{dr3}\n"
2516 "es={%04VR{es} base=%08VR{es_base} limit=%08VR{es_lim} flags=%04VR{es_attr}} dr6=%08VR{dr6} dr7=%08VR{dr7}\n"
2517 "fs={%04VR{fs} base=%08VR{fs_base} limit=%08VR{fs_lim} flags=%04VR{fs_attr}} cr0=%08VR{cr0} cr2=%08VR{cr2}\n"
2518 "gs={%04VR{gs} base=%08VR{gs_base} limit=%08VR{gs_lim} flags=%04VR{gs_attr}} cr3=%08VR{cr3} cr4=%08VR{cr4}\n"
2519 "ss={%04VR{ss} base=%08VR{ss_base} limit=%08VR{ss_lim} flags=%04VR{ss_attr}} cr8=%08VR{cr8}\n"
2520 "gdtr=%08VR{gdtr_base}:%04VR{gdtr_lim} idtr=%08VR{idtr_base}:%04VR{idtr_lim} eflags=%08VR{eflags}\n"
2521 "ldtr={%04VR{ldtr} base=%08VR{ldtr_base} limit=%08VR{ldtr_lim} flags=%04VR{ldtr_attr}}\n"
2522 "tr ={%04VR{tr} base=%08VR{tr_base} limit=%08VR{tr_lim} flags=%04VR{tr_attr}}\n"
2523 "sysenter={cs=%04VR{sysenter_cs} eip=%08VR{sysenter_eip} esp=%08VR{sysenter_esp}}\n"
2524 "fcw=%04VR{fcw} fsw=%04VR{fsw} ftw=%04VR{ftw} mxcsr=%04VR{mxcsr} mxcsr_mask=%04VR{mxcsr_mask}\n"
2525 );
2526 }
2527 if (RT_FAILURE(rc))
2528 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "DBGFR3RegPrintf failed");
2529 char *pszRegs = strchr(szDisAndRegs, '\n');
2530 *pszRegs++ = '\0';
2531 rc = DBGCCmdHlpPrintf(pCmdHlp, "%s", pszRegs);
2532
2533 /*
2534 * Disassemble one instruction at cs:[r|e]ip.
2535 */
2536 if (!f64BitMode && strstr(pszRegs, " vm ")) /* a bit ugly... */
2537 return pCmdHlp->pfnExec(pCmdHlp, "uv86 %s", szDisAndRegs + 2);
2538 return pCmdHlp->pfnExec(pCmdHlp, "%s", szDisAndRegs);
2539 }
2540 return dbgcCmdRegCommon(pCmd, pCmdHlp, pUVM, paArgs, cArgs, "");
2541}
2542
2543
2544/**
2545 * @callback_method_impl{FNDBGCCMD, The 'rh' command.}
2546 */
2547static DECLCALLBACK(int) dbgcCmdRegHyper(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2548{
2549 /*
2550 * Show all registers our selves.
2551 */
2552 if (cArgs == 0)
2553 {
2554 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2555 char szDisAndRegs[8192];
2556 int rc;
2557
2558 if (pDbgc->fRegTerse)
2559 rc = DBGFR3RegPrintf(pUVM, pDbgc->idCpu | DBGFREG_HYPER_VMCPUID, szDisAndRegs, sizeof(szDisAndRegs),
2560 "u %VR{cs}:%VR{eip} L 0\n"
2561 ".eax=%08VR{eax} .ebx=%08VR{ebx} .ecx=%08VR{ecx} .edx=%08VR{edx} .esi=%08VR{esi} .edi=%08VR{edi}\n"
2562 ".eip=%08VR{eip} .esp=%08VR{esp} .ebp=%08VR{ebp} .%VRF{eflags}\n"
2563 ".cs=%04VR{cs} .ds=%04VR{ds} .es=%04VR{es} .fs=%04VR{fs} .gs=%04VR{gs} .ss=%04VR{ss} .eflags=%08VR{eflags}\n");
2564 else
2565 rc = DBGFR3RegPrintf(pUVM, pDbgc->idCpu | DBGFREG_HYPER_VMCPUID, szDisAndRegs, sizeof(szDisAndRegs),
2566 "u %04VR{cs}:%08VR{eip} L 0\n"
2567 ".eax=%08VR{eax} .ebx=%08VR{ebx} .ecx=%08VR{ecx} .edx=%08VR{edx} .esi=%08VR{esi} .edi=%08VR{edi}\n"
2568 ".eip=%08VR{eip} .esp=%08VR{esp} .ebp=%08VR{ebp} .%VRF{eflags}\n"
2569 ".cs={%04VR{cs} base=%08VR{cs_base} limit=%08VR{cs_lim} flags=%04VR{cs_attr}} .dr0=%08VR{dr0} .dr1=%08VR{dr1}\n"
2570 ".ds={%04VR{ds} base=%08VR{ds_base} limit=%08VR{ds_lim} flags=%04VR{ds_attr}} .dr2=%08VR{dr2} .dr3=%08VR{dr3}\n"
2571 ".es={%04VR{es} base=%08VR{es_base} limit=%08VR{es_lim} flags=%04VR{es_attr}} .dr6=%08VR{dr6} .dr6=%08VR{dr6}\n"
2572 ".fs={%04VR{fs} base=%08VR{fs_base} limit=%08VR{fs_lim} flags=%04VR{fs_attr}} .cr3=%016VR{cr3}\n"
2573 ".gs={%04VR{gs} base=%08VR{gs_base} limit=%08VR{gs_lim} flags=%04VR{gs_attr}}\n"
2574 ".ss={%04VR{ss} base=%08VR{ss_base} limit=%08VR{ss_lim} flags=%04VR{ss_attr}}\n"
2575 ".gdtr=%08VR{gdtr_base}:%04VR{gdtr_lim} .idtr=%08VR{idtr_base}:%04VR{idtr_lim} .eflags=%08VR{eflags}\n"
2576 ".ldtr={%04VR{ldtr} base=%08VR{ldtr_base} limit=%08VR{ldtr_lim} flags=%04VR{ldtr_attr}}\n"
2577 ".tr ={%04VR{tr} base=%08VR{tr_base} limit=%08VR{tr_lim} flags=%04VR{tr_attr}}\n"
2578 );
2579 if (RT_FAILURE(rc))
2580 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "DBGFR3RegPrintf failed");
2581 char *pszRegs = strchr(szDisAndRegs, '\n');
2582 *pszRegs++ = '\0';
2583 rc = DBGCCmdHlpPrintf(pCmdHlp, "%s", pszRegs);
2584
2585 /*
2586 * Disassemble one instruction at cs:[r|e]ip.
2587 */
2588 return pCmdHlp->pfnExec(pCmdHlp, "%s", szDisAndRegs);
2589 }
2590 return dbgcCmdRegCommon(pCmd, pCmdHlp, pUVM, paArgs, cArgs, ".");
2591}
2592
2593
2594/**
2595 * @callback_method_impl{FNDBGCCMD, The 'rt' command.}
2596 */
2597static DECLCALLBACK(int) dbgcCmdRegTerse(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2598{
2599 NOREF(pCmd); NOREF(pUVM); NOREF(paArgs); NOREF(cArgs);
2600
2601 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2602 pDbgc->fRegTerse = !pDbgc->fRegTerse;
2603 return DBGCCmdHlpPrintf(pCmdHlp, pDbgc->fRegTerse ? "info: Terse register info.\n" : "info: Verbose register info.\n");
2604}
2605
2606
2607/**
2608 * @callback_method_impl{FNDBGCCMD, The 'pr' and 'tr' commands.}
2609 */
2610static DECLCALLBACK(int) dbgcCmdStepTraceToggle(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2611{
2612 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2613 Assert(cArgs == 0); NOREF(pCmd); NOREF(pUVM); NOREF(paArgs); NOREF(cArgs);
2614
2615 /* Note! windbg accepts 'r' as a flag to 'p', 'pa', 'pc', 'pt', 't',
2616 'ta', 'tc' and 'tt'. We've simplified it. */
2617 pDbgc->fStepTraceRegs = !pDbgc->fStepTraceRegs;
2618 return VINF_SUCCESS;
2619}
2620
2621
2622/**
2623 * @callback_method_impl{FNDBGCCMD,
2624 * The 'p', 'pc', 'pt', 't', 'tc', and 'tt' commands.}
2625 */
2626static DECLCALLBACK(int) dbgcCmdStepTrace(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2627{
2628 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2629 if (cArgs != 0)
2630 return DBGCCmdHlpFail(pCmdHlp, pCmd,
2631 "Sorry, but the '%s' command does not currently implement any arguments.\n", pCmd->pszCmd);
2632
2633 /* The 'count' has to be implemented by DBGC, whereas the
2634 filtering is taken care of by DBGF. */
2635
2636 /*
2637 * Convert the command to DBGF_STEP_F_XXX and other API input.
2638 */
2639 //DBGFADDRESS StackPop;
2640 PDBGFADDRESS pStackPop = NULL;
2641 RTGCPTR cbStackPop = 0;
2642 uint32_t cMaxSteps = pCmd->pszCmd[0] == 'p' ? _512K : _64K;
2643 uint32_t fFlags = pCmd->pszCmd[0] == 'p' ? DBGF_STEP_F_OVER : DBGF_STEP_F_INTO;
2644 if (pCmd->pszCmd[1] == 'c')
2645 fFlags |= DBGF_STEP_F_STOP_ON_CALL;
2646 else if (pCmd->pszCmd[1] == 't')
2647 fFlags |= DBGF_STEP_F_STOP_ON_RET;
2648 else if (pCmd->pszCmd[0] != 'p')
2649 cMaxSteps = 1;
2650 else
2651 {
2652 /** @todo consider passing RSP + 1 in for 'p' and something else sensible for
2653 * the 'pt' command. */
2654 }
2655
2656 int rc = DBGFR3StepEx(pUVM, pDbgc->idCpu, fFlags, NULL, pStackPop, cbStackPop, cMaxSteps);
2657 if (RT_SUCCESS(rc))
2658 pDbgc->fReady = false;
2659 else
2660 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3StepEx(,,%#x,) failed", fFlags);
2661
2662 NOREF(pCmd); NOREF(paArgs); NOREF(cArgs);
2663 return rc;
2664}
2665
2666
2667/**
2668 * @callback_method_impl{FNDBGCCMD, The 'pa' and 'ta' commands.}
2669 */
2670static DECLCALLBACK(int) dbgcCmdStepTraceTo(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2671{
2672 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2673 if (cArgs != 1)
2674 return DBGCCmdHlpFail(pCmdHlp, pCmd,
2675 "Sorry, but the '%s' command only implements a single argument at present.\n", pCmd->pszCmd);
2676 DBGFADDRESS Address;
2677 int rc = pCmdHlp->pfnVarToDbgfAddr(pCmdHlp, &paArgs[0], &Address);
2678 if (RT_FAILURE(rc))
2679 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "VarToDbgfAddr(,%Dv,)\n", &paArgs[0]);
2680
2681 uint32_t cMaxSteps = pCmd->pszCmd[0] == 'p' ? _512K : 1;
2682 uint32_t fFlags = pCmd->pszCmd[0] == 'p' ? DBGF_STEP_F_OVER : DBGF_STEP_F_INTO;
2683 rc = DBGFR3StepEx(pUVM, pDbgc->idCpu, fFlags, &Address, NULL, 0, cMaxSteps);
2684 if (RT_SUCCESS(rc))
2685 pDbgc->fReady = false;
2686 else
2687 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3StepEx(,,%#x,) failed", fFlags);
2688 return rc;
2689}
2690
2691
2692/**
2693 * @callback_method_impl{FNDBGCCMD, The 'k'\, 'kg' and 'kh' commands.}
2694 */
2695static DECLCALLBACK(int) dbgcCmdStack(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2696{
2697 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2698
2699 /*
2700 * Figure which context we're called for and start walking that stack.
2701 */
2702 int rc;
2703 PCDBGFSTACKFRAME pFirstFrame;
2704 bool const fGuest = pCmd->pszCmd[1] == 'g'
2705 || (!pCmd->pszCmd[1] && pDbgc->fRegCtxGuest);
2706 rc = DBGFR3StackWalkBegin(pUVM, pDbgc->idCpu, fGuest ? DBGFCODETYPE_GUEST : DBGFCODETYPE_HYPER, &pFirstFrame);
2707 if (RT_FAILURE(rc))
2708 return DBGCCmdHlpPrintf(pCmdHlp, "Failed to begin stack walk, rc=%Rrc\n", rc);
2709
2710 /*
2711 * Print header.
2712 * 12345678 12345678 0023:87654321 12345678 87654321 12345678 87654321 symbol
2713 */
2714 uint32_t fBitFlags = 0;
2715 for (PCDBGFSTACKFRAME pFrame = pFirstFrame;
2716 pFrame;
2717 pFrame = DBGFR3StackWalkNext(pFrame))
2718 {
2719 uint32_t const fCurBitFlags = pFrame->fFlags & (DBGFSTACKFRAME_FLAGS_16BIT | DBGFSTACKFRAME_FLAGS_32BIT | DBGFSTACKFRAME_FLAGS_64BIT);
2720 if (fCurBitFlags & DBGFSTACKFRAME_FLAGS_16BIT)
2721 {
2722 if (fCurBitFlags != fBitFlags)
2723 pCmdHlp->pfnPrintf(pCmdHlp, NULL, "SS:BP Ret SS:BP Ret CS:EIP Arg0 Arg1 Arg2 Arg3 CS:EIP / Symbol [line]\n");
2724 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04RX16:%04RX16 %04RX16:%04RX16 %04RX32:%08RX32 %08RX32 %08RX32 %08RX32 %08RX32",
2725 pFrame->AddrFrame.Sel,
2726 (uint16_t)pFrame->AddrFrame.off,
2727 pFrame->AddrReturnFrame.Sel,
2728 (uint16_t)pFrame->AddrReturnFrame.off,
2729 (uint32_t)pFrame->AddrReturnPC.Sel,
2730 (uint32_t)pFrame->AddrReturnPC.off,
2731 pFrame->Args.au32[0],
2732 pFrame->Args.au32[1],
2733 pFrame->Args.au32[2],
2734 pFrame->Args.au32[3]);
2735 }
2736 else if (fCurBitFlags & DBGFSTACKFRAME_FLAGS_32BIT)
2737 {
2738 if (fCurBitFlags != fBitFlags)
2739 pCmdHlp->pfnPrintf(pCmdHlp, NULL, "EBP Ret EBP Ret CS:EIP Arg0 Arg1 Arg2 Arg3 CS:EIP / Symbol [line]\n");
2740 rc = DBGCCmdHlpPrintf(pCmdHlp, "%08RX32 %08RX32 %04RX32:%08RX32 %08RX32 %08RX32 %08RX32 %08RX32",
2741 (uint32_t)pFrame->AddrFrame.off,
2742 (uint32_t)pFrame->AddrReturnFrame.off,
2743 (uint32_t)pFrame->AddrReturnPC.Sel,
2744 (uint32_t)pFrame->AddrReturnPC.off,
2745 pFrame->Args.au32[0],
2746 pFrame->Args.au32[1],
2747 pFrame->Args.au32[2],
2748 pFrame->Args.au32[3]);
2749 }
2750 else if (fCurBitFlags & DBGFSTACKFRAME_FLAGS_64BIT)
2751 {
2752 if (fCurBitFlags != fBitFlags)
2753 pCmdHlp->pfnPrintf(pCmdHlp, NULL, "RBP Ret SS:RBP Ret RIP CS:RIP / Symbol [line]\n");
2754 rc = DBGCCmdHlpPrintf(pCmdHlp, "%016RX64 %04RX16:%016RX64 %016RX64",
2755 (uint64_t)pFrame->AddrFrame.off,
2756 pFrame->AddrReturnFrame.Sel,
2757 (uint64_t)pFrame->AddrReturnFrame.off,
2758 (uint64_t)pFrame->AddrReturnPC.off);
2759 }
2760 if (RT_FAILURE(rc))
2761 break;
2762 if (!pFrame->pSymPC)
2763 rc = pCmdHlp->pfnPrintf(pCmdHlp, NULL,
2764 fCurBitFlags & DBGFSTACKFRAME_FLAGS_64BIT
2765 ? " %RTsel:%016RGv"
2766 : fCurBitFlags & DBGFSTACKFRAME_FLAGS_32BIT
2767 ? " %RTsel:%08RGv"
2768 : " %RTsel:%04RGv"
2769 , pFrame->AddrPC.Sel, pFrame->AddrPC.off);
2770 else
2771 {
2772 RTGCINTPTR offDisp = pFrame->AddrPC.FlatPtr - pFrame->pSymPC->Value; /** @todo this isn't 100% correct for segmented stuff. */
2773 if (offDisp > 0)
2774 rc = DBGCCmdHlpPrintf(pCmdHlp, " %s+%llx", pFrame->pSymPC->szName, (int64_t)offDisp);
2775 else if (offDisp < 0)
2776 rc = DBGCCmdHlpPrintf(pCmdHlp, " %s-%llx", pFrame->pSymPC->szName, -(int64_t)offDisp);
2777 else
2778 rc = DBGCCmdHlpPrintf(pCmdHlp, " %s", pFrame->pSymPC->szName);
2779 }
2780 if (RT_SUCCESS(rc) && pFrame->pLinePC)
2781 rc = DBGCCmdHlpPrintf(pCmdHlp, " [%s @ 0i%d]", pFrame->pLinePC->szFilename, pFrame->pLinePC->uLineNo);
2782 if (RT_SUCCESS(rc))
2783 rc = DBGCCmdHlpPrintf(pCmdHlp, "\n");
2784 if (RT_FAILURE(rc))
2785 break;
2786
2787 fBitFlags = fCurBitFlags;
2788 }
2789
2790 DBGFR3StackWalkEnd(pFirstFrame);
2791
2792 NOREF(paArgs); NOREF(cArgs);
2793 return rc;
2794}
2795
2796
2797static int dbgcCmdDumpDTWorker64(PDBGCCMDHLP pCmdHlp, PCX86DESC64 pDesc, unsigned iEntry, bool fHyper, bool *pfDblEntry)
2798{
2799 /* GUEST64 */
2800 int rc;
2801
2802 const char *pszHyper = fHyper ? " HYPER" : "";
2803 const char *pszPresent = pDesc->Gen.u1Present ? "P " : "NP";
2804 if (pDesc->Gen.u1DescType)
2805 {
2806 static const char * const s_apszTypes[] =
2807 {
2808 "DataRO", /* 0 Read-Only */
2809 "DataRO", /* 1 Read-Only - Accessed */
2810 "DataRW", /* 2 Read/Write */
2811 "DataRW", /* 3 Read/Write - Accessed */
2812 "DownRO", /* 4 Expand-down, Read-Only */
2813 "DownRO", /* 5 Expand-down, Read-Only - Accessed */
2814 "DownRW", /* 6 Expand-down, Read/Write */
2815 "DownRW", /* 7 Expand-down, Read/Write - Accessed */
2816 "CodeEO", /* 8 Execute-Only */
2817 "CodeEO", /* 9 Execute-Only - Accessed */
2818 "CodeER", /* A Execute/Readable */
2819 "CodeER", /* B Execute/Readable - Accessed */
2820 "ConfE0", /* C Conforming, Execute-Only */
2821 "ConfE0", /* D Conforming, Execute-Only - Accessed */
2822 "ConfER", /* E Conforming, Execute/Readable */
2823 "ConfER" /* F Conforming, Execute/Readable - Accessed */
2824 };
2825 const char *pszAccessed = pDesc->Gen.u4Type & RT_BIT(0) ? "A " : "NA";
2826 const char *pszGranularity = pDesc->Gen.u1Granularity ? "G" : " ";
2827 const char *pszBig = pDesc->Gen.u1DefBig ? "BIG" : " ";
2828 uint32_t u32Base = X86DESC_BASE(pDesc);
2829 uint32_t cbLimit = X86DESC_LIMIT_G(pDesc);
2830
2831 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Bas=%08x Lim=%08x DPL=%d %s %s %s %s AVL=%d L=%d%s\n",
2832 iEntry, s_apszTypes[pDesc->Gen.u4Type], u32Base, cbLimit,
2833 pDesc->Gen.u2Dpl, pszPresent, pszAccessed, pszGranularity, pszBig,
2834 pDesc->Gen.u1Available, pDesc->Gen.u1Long, pszHyper);
2835 }
2836 else
2837 {
2838 static const char * const s_apszTypes[] =
2839 {
2840 "Ill-0 ", /* 0 0000 Reserved (Illegal) */
2841 "Ill-1 ", /* 1 0001 Available 16-bit TSS */
2842 "LDT ", /* 2 0010 LDT */
2843 "Ill-3 ", /* 3 0011 Busy 16-bit TSS */
2844 "Ill-4 ", /* 4 0100 16-bit Call Gate */
2845 "Ill-5 ", /* 5 0101 Task Gate */
2846 "Ill-6 ", /* 6 0110 16-bit Interrupt Gate */
2847 "Ill-7 ", /* 7 0111 16-bit Trap Gate */
2848 "Ill-8 ", /* 8 1000 Reserved (Illegal) */
2849 "Tss64A", /* 9 1001 Available 32-bit TSS */
2850 "Ill-A ", /* A 1010 Reserved (Illegal) */
2851 "Tss64B", /* B 1011 Busy 32-bit TSS */
2852 "Call64", /* C 1100 32-bit Call Gate */
2853 "Ill-D ", /* D 1101 Reserved (Illegal) */
2854 "Int64 ", /* E 1110 32-bit Interrupt Gate */
2855 "Trap64" /* F 1111 32-bit Trap Gate */
2856 };
2857 switch (pDesc->Gen.u4Type)
2858 {
2859 /* raw */
2860 case X86_SEL_TYPE_SYS_UNDEFINED:
2861 case X86_SEL_TYPE_SYS_UNDEFINED2:
2862 case X86_SEL_TYPE_SYS_UNDEFINED4:
2863 case X86_SEL_TYPE_SYS_UNDEFINED3:
2864 case X86_SEL_TYPE_SYS_286_TSS_AVAIL:
2865 case X86_SEL_TYPE_SYS_286_TSS_BUSY:
2866 case X86_SEL_TYPE_SYS_286_CALL_GATE:
2867 case X86_SEL_TYPE_SYS_286_INT_GATE:
2868 case X86_SEL_TYPE_SYS_286_TRAP_GATE:
2869 case X86_SEL_TYPE_SYS_TASK_GATE:
2870 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s %.8Rhxs DPL=%d %s%s\n",
2871 iEntry, s_apszTypes[pDesc->Gen.u4Type], pDesc,
2872 pDesc->Gen.u2Dpl, pszPresent, pszHyper);
2873 break;
2874
2875 case X86_SEL_TYPE_SYS_386_TSS_AVAIL:
2876 case X86_SEL_TYPE_SYS_386_TSS_BUSY:
2877 case X86_SEL_TYPE_SYS_LDT:
2878 {
2879 const char *pszBusy = pDesc->Gen.u4Type & RT_BIT(1) ? "B " : "NB";
2880 const char *pszBig = pDesc->Gen.u1DefBig ? "BIG" : " ";
2881 const char *pszLong = pDesc->Gen.u1Long ? "LONG" : " ";
2882
2883 uint64_t u64Base = X86DESC64_BASE(pDesc);
2884 uint32_t cbLimit = X86DESC_LIMIT_G(pDesc);
2885
2886 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Bas=%016RX64 Lim=%08x DPL=%d %s %s %s %sAVL=%d R=%d%s\n",
2887 iEntry, s_apszTypes[pDesc->Gen.u4Type], u64Base, cbLimit,
2888 pDesc->Gen.u2Dpl, pszPresent, pszBusy, pszLong, pszBig,
2889 pDesc->Gen.u1Available, pDesc->Gen.u1Long | (pDesc->Gen.u1DefBig << 1),
2890 pszHyper);
2891 if (pfDblEntry)
2892 *pfDblEntry = true;
2893 break;
2894 }
2895
2896 case X86_SEL_TYPE_SYS_386_CALL_GATE:
2897 {
2898 unsigned cParams = pDesc->au8[4] & 0x1f;
2899 const char *pszCountOf = pDesc->Gen.u4Type & RT_BIT(3) ? "DC" : "WC";
2900 RTSEL sel = pDesc->au16[1];
2901 uint64_t off = pDesc->au16[0]
2902 | ((uint64_t)pDesc->au16[3] << 16)
2903 | ((uint64_t)pDesc->Gen.u32BaseHigh3 << 32);
2904 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Sel:Off=%04x:%016RX64 DPL=%d %s %s=%d%s\n",
2905 iEntry, s_apszTypes[pDesc->Gen.u4Type], sel, off,
2906 pDesc->Gen.u2Dpl, pszPresent, pszCountOf, cParams, pszHyper);
2907 if (pfDblEntry)
2908 *pfDblEntry = true;
2909 break;
2910 }
2911
2912 case X86_SEL_TYPE_SYS_386_INT_GATE:
2913 case X86_SEL_TYPE_SYS_386_TRAP_GATE:
2914 {
2915 RTSEL sel = pDesc->Gate.u16Sel;
2916 uint64_t off = pDesc->Gate.u16OffsetLow
2917 | ((uint64_t)pDesc->Gate.u16OffsetHigh << 16)
2918 | ((uint64_t)pDesc->Gate.u32OffsetTop << 32);
2919 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Sel:Off=%04x:%016RX64 DPL=%u %s IST=%u%s\n",
2920 iEntry, s_apszTypes[pDesc->Gate.u4Type], sel, off,
2921 pDesc->Gate.u2Dpl, pszPresent, pDesc->Gate.u3IST, pszHyper);
2922 if (pfDblEntry)
2923 *pfDblEntry = true;
2924 break;
2925 }
2926
2927 /* impossible, just it's necessary to keep gcc happy. */
2928 default:
2929 return VINF_SUCCESS;
2930 }
2931 }
2932 return VINF_SUCCESS;
2933}
2934
2935
2936/**
2937 * Worker function that displays one descriptor entry (GDT, LDT, IDT).
2938 *
2939 * @returns pfnPrintf status code.
2940 * @param pCmdHlp The DBGC command helpers.
2941 * @param pDesc The descriptor to display.
2942 * @param iEntry The descriptor entry number.
2943 * @param fHyper Whether the selector belongs to the hypervisor or not.
2944 */
2945static int dbgcCmdDumpDTWorker32(PDBGCCMDHLP pCmdHlp, PCX86DESC pDesc, unsigned iEntry, bool fHyper)
2946{
2947 int rc;
2948
2949 const char *pszHyper = fHyper ? " HYPER" : "";
2950 const char *pszPresent = pDesc->Gen.u1Present ? "P " : "NP";
2951 if (pDesc->Gen.u1DescType)
2952 {
2953 static const char * const s_apszTypes[] =
2954 {
2955 "DataRO", /* 0 Read-Only */
2956 "DataRO", /* 1 Read-Only - Accessed */
2957 "DataRW", /* 2 Read/Write */
2958 "DataRW", /* 3 Read/Write - Accessed */
2959 "DownRO", /* 4 Expand-down, Read-Only */
2960 "DownRO", /* 5 Expand-down, Read-Only - Accessed */
2961 "DownRW", /* 6 Expand-down, Read/Write */
2962 "DownRW", /* 7 Expand-down, Read/Write - Accessed */
2963 "CodeEO", /* 8 Execute-Only */
2964 "CodeEO", /* 9 Execute-Only - Accessed */
2965 "CodeER", /* A Execute/Readable */
2966 "CodeER", /* B Execute/Readable - Accessed */
2967 "ConfE0", /* C Conforming, Execute-Only */
2968 "ConfE0", /* D Conforming, Execute-Only - Accessed */
2969 "ConfER", /* E Conforming, Execute/Readable */
2970 "ConfER" /* F Conforming, Execute/Readable - Accessed */
2971 };
2972 const char *pszAccessed = pDesc->Gen.u4Type & RT_BIT(0) ? "A " : "NA";
2973 const char *pszGranularity = pDesc->Gen.u1Granularity ? "G" : " ";
2974 const char *pszBig = pDesc->Gen.u1DefBig ? "BIG" : " ";
2975 uint32_t u32Base = pDesc->Gen.u16BaseLow
2976 | ((uint32_t)pDesc->Gen.u8BaseHigh1 << 16)
2977 | ((uint32_t)pDesc->Gen.u8BaseHigh2 << 24);
2978 uint32_t cbLimit = pDesc->Gen.u16LimitLow | (pDesc->Gen.u4LimitHigh << 16);
2979 if (pDesc->Gen.u1Granularity)
2980 cbLimit <<= PAGE_SHIFT;
2981
2982 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Bas=%08x Lim=%08x DPL=%d %s %s %s %s AVL=%d L=%d%s\n",
2983 iEntry, s_apszTypes[pDesc->Gen.u4Type], u32Base, cbLimit,
2984 pDesc->Gen.u2Dpl, pszPresent, pszAccessed, pszGranularity, pszBig,
2985 pDesc->Gen.u1Available, pDesc->Gen.u1Long, pszHyper);
2986 }
2987 else
2988 {
2989 static const char * const s_apszTypes[] =
2990 {
2991 "Ill-0 ", /* 0 0000 Reserved (Illegal) */
2992 "Tss16A", /* 1 0001 Available 16-bit TSS */
2993 "LDT ", /* 2 0010 LDT */
2994 "Tss16B", /* 3 0011 Busy 16-bit TSS */
2995 "Call16", /* 4 0100 16-bit Call Gate */
2996 "TaskG ", /* 5 0101 Task Gate */
2997 "Int16 ", /* 6 0110 16-bit Interrupt Gate */
2998 "Trap16", /* 7 0111 16-bit Trap Gate */
2999 "Ill-8 ", /* 8 1000 Reserved (Illegal) */
3000 "Tss32A", /* 9 1001 Available 32-bit TSS */
3001 "Ill-A ", /* A 1010 Reserved (Illegal) */
3002 "Tss32B", /* B 1011 Busy 32-bit TSS */
3003 "Call32", /* C 1100 32-bit Call Gate */
3004 "Ill-D ", /* D 1101 Reserved (Illegal) */
3005 "Int32 ", /* E 1110 32-bit Interrupt Gate */
3006 "Trap32" /* F 1111 32-bit Trap Gate */
3007 };
3008 switch (pDesc->Gen.u4Type)
3009 {
3010 /* raw */
3011 case X86_SEL_TYPE_SYS_UNDEFINED:
3012 case X86_SEL_TYPE_SYS_UNDEFINED2:
3013 case X86_SEL_TYPE_SYS_UNDEFINED4:
3014 case X86_SEL_TYPE_SYS_UNDEFINED3:
3015 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s %.8Rhxs DPL=%d %s%s\n",
3016 iEntry, s_apszTypes[pDesc->Gen.u4Type], pDesc,
3017 pDesc->Gen.u2Dpl, pszPresent, pszHyper);
3018 break;
3019
3020 case X86_SEL_TYPE_SYS_286_TSS_AVAIL:
3021 case X86_SEL_TYPE_SYS_386_TSS_AVAIL:
3022 case X86_SEL_TYPE_SYS_286_TSS_BUSY:
3023 case X86_SEL_TYPE_SYS_386_TSS_BUSY:
3024 case X86_SEL_TYPE_SYS_LDT:
3025 {
3026 const char *pszGranularity = pDesc->Gen.u1Granularity ? "G" : " ";
3027 const char *pszBusy = pDesc->Gen.u4Type & RT_BIT(1) ? "B " : "NB";
3028 const char *pszBig = pDesc->Gen.u1DefBig ? "BIG" : " ";
3029 uint32_t u32Base = pDesc->Gen.u16BaseLow
3030 | ((uint32_t)pDesc->Gen.u8BaseHigh1 << 16)
3031 | ((uint32_t)pDesc->Gen.u8BaseHigh2 << 24);
3032 uint32_t cbLimit = pDesc->Gen.u16LimitLow | (pDesc->Gen.u4LimitHigh << 16);
3033 if (pDesc->Gen.u1Granularity)
3034 cbLimit <<= PAGE_SHIFT;
3035
3036 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Bas=%08x Lim=%08x DPL=%d %s %s %s %s AVL=%d R=%d%s\n",
3037 iEntry, s_apszTypes[pDesc->Gen.u4Type], u32Base, cbLimit,
3038 pDesc->Gen.u2Dpl, pszPresent, pszBusy, pszGranularity, pszBig,
3039 pDesc->Gen.u1Available, pDesc->Gen.u1Long | (pDesc->Gen.u1DefBig << 1),
3040 pszHyper);
3041 break;
3042 }
3043
3044 case X86_SEL_TYPE_SYS_TASK_GATE:
3045 {
3046 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s TSS=%04x DPL=%d %s%s\n",
3047 iEntry, s_apszTypes[pDesc->Gen.u4Type], pDesc->au16[1],
3048 pDesc->Gen.u2Dpl, pszPresent, pszHyper);
3049 break;
3050 }
3051
3052 case X86_SEL_TYPE_SYS_286_CALL_GATE:
3053 case X86_SEL_TYPE_SYS_386_CALL_GATE:
3054 {
3055 unsigned cParams = pDesc->au8[4] & 0x1f;
3056 const char *pszCountOf = pDesc->Gen.u4Type & RT_BIT(3) ? "DC" : "WC";
3057 RTSEL sel = pDesc->au16[1];
3058 uint32_t off = pDesc->au16[0] | ((uint32_t)pDesc->au16[3] << 16);
3059 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Sel:Off=%04x:%08x DPL=%d %s %s=%d%s\n",
3060 iEntry, s_apszTypes[pDesc->Gen.u4Type], sel, off,
3061 pDesc->Gen.u2Dpl, pszPresent, pszCountOf, cParams, pszHyper);
3062 break;
3063 }
3064
3065 case X86_SEL_TYPE_SYS_286_INT_GATE:
3066 case X86_SEL_TYPE_SYS_386_INT_GATE:
3067 case X86_SEL_TYPE_SYS_286_TRAP_GATE:
3068 case X86_SEL_TYPE_SYS_386_TRAP_GATE:
3069 {
3070 RTSEL sel = pDesc->au16[1];
3071 uint32_t off = pDesc->au16[0] | ((uint32_t)pDesc->au16[3] << 16);
3072 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Sel:Off=%04x:%08x DPL=%d %s%s\n",
3073 iEntry, s_apszTypes[pDesc->Gen.u4Type], sel, off,
3074 pDesc->Gen.u2Dpl, pszPresent, pszHyper);
3075 break;
3076 }
3077
3078 /* impossible, just it's necessary to keep gcc happy. */
3079 default:
3080 return VINF_SUCCESS;
3081 }
3082 }
3083 return rc;
3084}
3085
3086
3087/**
3088 * @callback_method_impl{FNDBGCCMD, The 'dg'\, 'dga'\, 'dl' and 'dla' commands.}
3089 */
3090static DECLCALLBACK(int) dbgcCmdDumpDT(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
3091{
3092 /*
3093 * Validate input.
3094 */
3095 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
3096
3097 /*
3098 * Get the CPU mode, check which command variation this is
3099 * and fix a default parameter if needed.
3100 */
3101 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
3102 PVMCPU pVCpu = VMMR3GetCpuByIdU(pUVM, pDbgc->idCpu);
3103 CPUMMODE enmMode = CPUMGetGuestMode(pVCpu);
3104 bool fGdt = pCmd->pszCmd[1] == 'g';
3105 bool fAll = pCmd->pszCmd[2] == 'a';
3106 RTSEL SelTable = fGdt ? 0 : X86_SEL_LDT;
3107
3108 DBGCVAR Var;
3109 if (!cArgs)
3110 {
3111 cArgs = 1;
3112 paArgs = &Var;
3113 Var.enmType = DBGCVAR_TYPE_NUMBER;
3114 Var.u.u64Number = 0;
3115 Var.enmRangeType = DBGCVAR_RANGE_ELEMENTS;
3116 Var.u64Range = 1024;
3117 }
3118
3119 /*
3120 * Process the arguments.
3121 */
3122 for (unsigned i = 0; i < cArgs; i++)
3123 {
3124 /*
3125 * Retrieve the selector value from the argument.
3126 * The parser may confuse pointers and numbers if more than one
3127 * argument is given, that that into account.
3128 */
3129 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, i, paArgs[i].enmType == DBGCVAR_TYPE_NUMBER || DBGCVAR_ISPOINTER(paArgs[i].enmType));
3130 uint64_t u64;
3131 unsigned cSels = 1;
3132 switch (paArgs[i].enmType)
3133 {
3134 case DBGCVAR_TYPE_NUMBER:
3135 u64 = paArgs[i].u.u64Number;
3136 if (paArgs[i].enmRangeType != DBGCVAR_RANGE_NONE)
3137 cSels = RT_MIN(paArgs[i].u64Range, 1024);
3138 break;
3139 case DBGCVAR_TYPE_GC_FAR: u64 = paArgs[i].u.GCFar.sel; break;
3140 case DBGCVAR_TYPE_GC_FLAT: u64 = paArgs[i].u.GCFlat; break;
3141 case DBGCVAR_TYPE_GC_PHYS: u64 = paArgs[i].u.GCPhys; break;
3142 case DBGCVAR_TYPE_HC_FLAT: u64 = (uintptr_t)paArgs[i].u.pvHCFlat; break;
3143 case DBGCVAR_TYPE_HC_PHYS: u64 = paArgs[i].u.HCPhys; break;
3144 default: u64 = _64K; break;
3145 }
3146 if (u64 < _64K)
3147 {
3148 unsigned Sel = (RTSEL)u64;
3149
3150 /*
3151 * Dump the specified range.
3152 */
3153 bool fSingle = cSels == 1;
3154 while ( cSels-- > 0
3155 && Sel < _64K)
3156 {
3157 DBGFSELINFO SelInfo;
3158 int rc = DBGFR3SelQueryInfo(pUVM, pDbgc->idCpu, Sel | SelTable, DBGFSELQI_FLAGS_DT_GUEST, &SelInfo);
3159 if (RT_SUCCESS(rc))
3160 {
3161 if (SelInfo.fFlags & DBGFSELINFO_FLAGS_REAL_MODE)
3162 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x RealM Bas=%04x Lim=%04x\n",
3163 Sel, (unsigned)SelInfo.GCPtrBase, (unsigned)SelInfo.cbLimit);
3164 else if ( fAll
3165 || fSingle
3166 || SelInfo.u.Raw.Gen.u1Present)
3167 {
3168 if (enmMode == CPUMMODE_PROTECTED)
3169 rc = dbgcCmdDumpDTWorker32(pCmdHlp, &SelInfo.u.Raw, Sel, !!(SelInfo.fFlags & DBGFSELINFO_FLAGS_HYPER));
3170 else
3171 {
3172 bool fDblSkip = false;
3173 rc = dbgcCmdDumpDTWorker64(pCmdHlp, &SelInfo.u.Raw64, Sel, !!(SelInfo.fFlags & DBGFSELINFO_FLAGS_HYPER), &fDblSkip);
3174 if (fDblSkip)
3175 Sel += 4;
3176 }
3177 }
3178 }
3179 else
3180 {
3181 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %Rrc\n", Sel, rc);
3182 if (!fAll)
3183 return rc;
3184 }
3185 if (RT_FAILURE(rc))
3186 return rc;
3187
3188 /* next */
3189 Sel += 8;
3190 }
3191 }
3192 else
3193 DBGCCmdHlpPrintf(pCmdHlp, "error: %llx is out of bounds\n", u64);
3194 }
3195
3196 return VINF_SUCCESS;
3197}
3198
3199
3200/**
3201 * @callback_method_impl{FNDBGCCMD, The 'di' and 'dia' commands.}
3202 */
3203static DECLCALLBACK(int) dbgcCmdDumpIDT(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
3204{
3205 /*
3206 * Validate input.
3207 */
3208 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
3209
3210 /*
3211 * Establish some stuff like the current IDTR and CPU mode,
3212 * and fix a default parameter.
3213 */
3214 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
3215 PVMCPU pVCpu = VMMR3GetCpuByIdU(pUVM, pDbgc->idCpu);
3216 uint16_t cbLimit;
3217 RTGCUINTPTR GCPtrBase = CPUMGetGuestIDTR(pVCpu, &cbLimit);
3218 CPUMMODE enmMode = CPUMGetGuestMode(pVCpu);
3219 unsigned cbEntry;
3220 switch (enmMode)
3221 {
3222 case CPUMMODE_REAL: cbEntry = sizeof(RTFAR16); break;
3223 case CPUMMODE_PROTECTED: cbEntry = sizeof(X86DESC); break;
3224 case CPUMMODE_LONG: cbEntry = sizeof(X86DESC64); break;
3225 default:
3226 return DBGCCmdHlpPrintf(pCmdHlp, "error: Invalid CPU mode %d.\n", enmMode);
3227 }
3228
3229 bool fAll = pCmd->pszCmd[2] == 'a';
3230 DBGCVAR Var;
3231 if (!cArgs)
3232 {
3233 cArgs = 1;
3234 paArgs = &Var;
3235 Var.enmType = DBGCVAR_TYPE_NUMBER;
3236 Var.u.u64Number = 0;
3237 Var.enmRangeType = DBGCVAR_RANGE_ELEMENTS;
3238 Var.u64Range = 256;
3239 }
3240
3241 /*
3242 * Process the arguments.
3243 */
3244 for (unsigned i = 0; i < cArgs; i++)
3245 {
3246 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, i, paArgs[i].enmType == DBGCVAR_TYPE_NUMBER);
3247 if (paArgs[i].u.u64Number < 256)
3248 {
3249 RTGCUINTPTR iInt = (RTGCUINTPTR)paArgs[i].u.u64Number;
3250 unsigned cInts = paArgs[i].enmRangeType != DBGCVAR_RANGE_NONE
3251 ? paArgs[i].u64Range
3252 : 1;
3253 bool fSingle = cInts == 1;
3254 while ( cInts-- > 0
3255 && iInt < 256)
3256 {
3257 /*
3258 * Try read it.
3259 */
3260 union
3261 {
3262 RTFAR16 Real;
3263 X86DESC Prot;
3264 X86DESC64 Long;
3265 } u;
3266 if (iInt * cbEntry + (cbEntry - 1) > cbLimit)
3267 {
3268 DBGCCmdHlpPrintf(pCmdHlp, "%04x not within the IDT\n", (unsigned)iInt);
3269 if (!fAll && !fSingle)
3270 return VINF_SUCCESS;
3271 }
3272 DBGCVAR AddrVar;
3273 AddrVar.enmType = DBGCVAR_TYPE_GC_FLAT;
3274 AddrVar.u.GCFlat = GCPtrBase + iInt * cbEntry;
3275 AddrVar.enmRangeType = DBGCVAR_RANGE_NONE;
3276 int rc = pCmdHlp->pfnMemRead(pCmdHlp, &u, cbEntry, &AddrVar, NULL);
3277 if (RT_FAILURE(rc))
3278 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "Reading IDT entry %#04x.\n", (unsigned)iInt);
3279
3280 /*
3281 * Display it.
3282 */
3283 switch (enmMode)
3284 {
3285 case CPUMMODE_REAL:
3286 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %RTfp16\n", (unsigned)iInt, u.Real);
3287 /** @todo resolve 16:16 IDTE to a symbol */
3288 break;
3289 case CPUMMODE_PROTECTED:
3290 if (fAll || fSingle || u.Prot.Gen.u1Present)
3291 rc = dbgcCmdDumpDTWorker32(pCmdHlp, &u.Prot, iInt, false);
3292 break;
3293 case CPUMMODE_LONG:
3294 if (fAll || fSingle || u.Long.Gen.u1Present)
3295 rc = dbgcCmdDumpDTWorker64(pCmdHlp, &u.Long, iInt, false, NULL);
3296 break;
3297 default: break; /* to shut up gcc */
3298 }
3299 if (RT_FAILURE(rc))
3300 return rc;
3301
3302 /* next */
3303 iInt++;
3304 }
3305 }
3306 else
3307 DBGCCmdHlpPrintf(pCmdHlp, "error: %llx is out of bounds (max 256)\n", paArgs[i].u.u64Number);
3308 }
3309
3310 return VINF_SUCCESS;
3311}
3312
3313
3314/**
3315 * @callback_method_impl{FNDBGCCMD,
3316 * The 'da'\, 'dq'\, 'dd'\, 'dw' and 'db' commands.}
3317 */
3318static DECLCALLBACK(int) dbgcCmdDumpMem(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
3319{
3320 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
3321
3322 /*
3323 * Validate input.
3324 */
3325 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs <= 1);
3326 if (cArgs == 1)
3327 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, DBGCVAR_ISPOINTER(paArgs[0].enmType));
3328 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
3329
3330 /*
3331 * Figure out the element size.
3332 */
3333 unsigned cbElement;
3334 bool fAscii = false;
3335 switch (pCmd->pszCmd[1])
3336 {
3337 default:
3338 case 'b': cbElement = 1; break;
3339 case 'w': cbElement = 2; break;
3340 case 'd': cbElement = 4; break;
3341 case 'q': cbElement = 8; break;
3342 case 'a':
3343 cbElement = 1;
3344 fAscii = true;
3345 break;
3346 case '\0':
3347 fAscii = !!(pDbgc->cbDumpElement & 0x80000000);
3348 cbElement = pDbgc->cbDumpElement & 0x7fffffff;
3349 if (!cbElement)
3350 cbElement = 1;
3351 break;
3352 }
3353
3354 /*
3355 * Find address.
3356 */
3357 if (!cArgs)
3358 pDbgc->DumpPos.enmRangeType = DBGCVAR_RANGE_NONE;
3359 else
3360 pDbgc->DumpPos = paArgs[0];
3361
3362 /*
3363 * Range.
3364 */
3365 switch (pDbgc->DumpPos.enmRangeType)
3366 {
3367 case DBGCVAR_RANGE_NONE:
3368 pDbgc->DumpPos.enmRangeType = DBGCVAR_RANGE_BYTES;
3369 pDbgc->DumpPos.u64Range = 0x60;
3370 break;
3371
3372 case DBGCVAR_RANGE_ELEMENTS:
3373 if (pDbgc->DumpPos.u64Range > 2048)
3374 return DBGCCmdHlpPrintf(pCmdHlp, "error: Too many elements requested. Max is 2048 elements.\n");
3375 pDbgc->DumpPos.enmRangeType = DBGCVAR_RANGE_BYTES;
3376 pDbgc->DumpPos.u64Range = (cbElement ? cbElement : 1) * pDbgc->DumpPos.u64Range;
3377 break;
3378
3379 case DBGCVAR_RANGE_BYTES:
3380 if (pDbgc->DumpPos.u64Range > 65536)
3381 return DBGCCmdHlpPrintf(pCmdHlp, "error: The requested range is too big. Max is 64KB.\n");
3382 break;
3383
3384 default:
3385 return DBGCCmdHlpPrintf(pCmdHlp, "internal error: Unknown range type %d.\n", pDbgc->DumpPos.enmRangeType);
3386 }
3387
3388 pDbgc->pLastPos = &pDbgc->DumpPos;
3389
3390 /*
3391 * Do the dumping.
3392 */
3393 pDbgc->cbDumpElement = cbElement | (fAscii << 31);
3394 int cbLeft = (int)pDbgc->DumpPos.u64Range;
3395 uint8_t u8Prev = '\0';
3396 for (;;)
3397 {
3398 /*
3399 * Read memory.
3400 */
3401 char achBuffer[16];
3402 size_t cbReq = RT_MIN((int)sizeof(achBuffer), cbLeft);
3403 size_t cb = RT_MIN((int)sizeof(achBuffer), cbLeft);
3404 int rc = pCmdHlp->pfnMemRead(pCmdHlp, &achBuffer, cbReq, &pDbgc->DumpPos, &cb);
3405 if (RT_FAILURE(rc))
3406 {
3407 if (u8Prev && u8Prev != '\n')
3408 DBGCCmdHlpPrintf(pCmdHlp, "\n");
3409 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "Reading memory at %DV.\n", &pDbgc->DumpPos);
3410 }
3411
3412 /*
3413 * Display it.
3414 */
3415 memset(&achBuffer[cb], 0, sizeof(achBuffer) - cb);
3416 if (!fAscii)
3417 {
3418 DBGCCmdHlpPrintf(pCmdHlp, "%DV:", &pDbgc->DumpPos);
3419 unsigned i;
3420 for (i = 0; i < cb; i += cbElement)
3421 {
3422 const char *pszSpace = " ";
3423 if (cbElement <= 2 && i == 8 && !fAscii)
3424 pszSpace = "-";
3425 switch (cbElement)
3426 {
3427 case 1: DBGCCmdHlpPrintf(pCmdHlp, "%s%02x", pszSpace, *(uint8_t *)&achBuffer[i]); break;
3428 case 2: DBGCCmdHlpPrintf(pCmdHlp, "%s%04x", pszSpace, *(uint16_t *)&achBuffer[i]); break;
3429 case 4: DBGCCmdHlpPrintf(pCmdHlp, "%s%08x", pszSpace, *(uint32_t *)&achBuffer[i]); break;
3430 case 8: DBGCCmdHlpPrintf(pCmdHlp, "%s%016llx", pszSpace, *(uint64_t *)&achBuffer[i]); break;
3431 }
3432 }
3433
3434 /* chars column */
3435 if (pDbgc->cbDumpElement == 1)
3436 {
3437 while (i++ < sizeof(achBuffer))
3438 DBGCCmdHlpPrintf(pCmdHlp, " ");
3439 DBGCCmdHlpPrintf(pCmdHlp, " ");
3440 for (i = 0; i < cb; i += cbElement)
3441 {
3442 uint8_t u8 = *(uint8_t *)&achBuffer[i];
3443 if (RT_C_IS_PRINT(u8) && u8 < 127 && u8 >= 32)
3444 DBGCCmdHlpPrintf(pCmdHlp, "%c", u8);
3445 else
3446 DBGCCmdHlpPrintf(pCmdHlp, ".");
3447 }
3448 }
3449 rc = DBGCCmdHlpPrintf(pCmdHlp, "\n");
3450 }
3451 else
3452 {
3453 /*
3454 * We print up to the first zero and stop there.
3455 * Only printables + '\t' and '\n' are printed.
3456 */
3457 if (!u8Prev)
3458 DBGCCmdHlpPrintf(pCmdHlp, "%DV:\n", &pDbgc->DumpPos);
3459 uint8_t u8 = '\0';
3460 unsigned i;
3461 for (i = 0; i < cb; i++)
3462 {
3463 u8Prev = u8;
3464 u8 = *(uint8_t *)&achBuffer[i];
3465 if ( u8 < 127
3466 && ( (RT_C_IS_PRINT(u8) && u8 >= 32)
3467 || u8 == '\t'
3468 || u8 == '\n'))
3469 DBGCCmdHlpPrintf(pCmdHlp, "%c", u8);
3470 else if (!u8)
3471 break;
3472 else
3473 DBGCCmdHlpPrintf(pCmdHlp, "\\x%x", u8);
3474 }
3475 if (u8 == '\0')
3476 cb = cbLeft = i + 1;
3477 if (cbLeft - cb <= 0 && u8Prev != '\n')
3478 DBGCCmdHlpPrintf(pCmdHlp, "\n");
3479 }
3480
3481 /*
3482 * Advance
3483 */
3484 cbLeft -= (int)cb;
3485 rc = DBGCCmdHlpEval(pCmdHlp, &pDbgc->DumpPos, "(%Dv) + %x", &pDbgc->DumpPos, cb);
3486 if (RT_FAILURE(rc))
3487 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "Expression: (%Dv) + %x\n", &pDbgc->DumpPos, cb);
3488 if (cbLeft <= 0)
3489 break;
3490 }
3491
3492 NOREF(pCmd);
3493 return VINF_SUCCESS;
3494}
3495
3496
3497/**
3498 * Best guess at which paging mode currently applies to the guest
3499 * paging structures.
3500 *
3501 * This have to come up with a decent answer even when the guest
3502 * is in non-paged protected mode or real mode.
3503 *
3504 * @returns cr3.
3505 * @param pDbgc The DBGC instance.
3506 * @param pfPAE Where to store the page address extension indicator.
3507 * @param pfLME Where to store the long mode enabled indicator.
3508 * @param pfPSE Where to store the page size extension indicator.
3509 * @param pfPGE Where to store the page global enabled indicator.
3510 * @param pfNXE Where to store the no-execution enabled indicator.
3511 */
3512static RTGCPHYS dbgcGetGuestPageMode(PDBGC pDbgc, bool *pfPAE, bool *pfLME, bool *pfPSE, bool *pfPGE, bool *pfNXE)
3513{
3514 PVMCPU pVCpu = VMMR3GetCpuByIdU(pDbgc->pUVM, pDbgc->idCpu);
3515 RTGCUINTREG cr4 = CPUMGetGuestCR4(pVCpu);
3516 *pfPSE = !!(cr4 & X86_CR4_PSE);
3517 *pfPGE = !!(cr4 & X86_CR4_PGE);
3518 if (cr4 & X86_CR4_PAE)
3519 {
3520 *pfPSE = true;
3521 *pfPAE = true;
3522 }
3523 else
3524 *pfPAE = false;
3525
3526 *pfLME = CPUMGetGuestMode(pVCpu) == CPUMMODE_LONG;
3527 *pfNXE = false; /* GUEST64 GUESTNX */
3528 return CPUMGetGuestCR3(pVCpu);
3529}
3530
3531
3532/**
3533 * Determine the shadow paging mode.
3534 *
3535 * @returns cr3.
3536 * @param pDbgc The DBGC instance.
3537 * @param pfPAE Where to store the page address extension indicator.
3538 * @param pfLME Where to store the long mode enabled indicator.
3539 * @param pfPSE Where to store the page size extension indicator.
3540 * @param pfPGE Where to store the page global enabled indicator.
3541 * @param pfNXE Where to store the no-execution enabled indicator.
3542 */
3543static RTHCPHYS dbgcGetShadowPageMode(PDBGC pDbgc, bool *pfPAE, bool *pfLME, bool *pfPSE, bool *pfPGE, bool *pfNXE)
3544{
3545 PVMCPU pVCpu = VMMR3GetCpuByIdU(pDbgc->pUVM, pDbgc->idCpu);
3546
3547 *pfPSE = true;
3548 *pfPGE = false;
3549 switch (PGMGetShadowMode(pVCpu))
3550 {
3551 default:
3552 case PGMMODE_32_BIT:
3553 *pfPAE = *pfLME = *pfNXE = false;
3554 break;
3555 case PGMMODE_PAE:
3556 *pfLME = *pfNXE = false;
3557 *pfPAE = true;
3558 break;
3559 case PGMMODE_PAE_NX:
3560 *pfLME = false;
3561 *pfPAE = *pfNXE = true;
3562 break;
3563 case PGMMODE_AMD64:
3564 *pfNXE = false;
3565 *pfPAE = *pfLME = true;
3566 break;
3567 case PGMMODE_AMD64_NX:
3568 *pfPAE = *pfLME = *pfNXE = true;
3569 break;
3570 }
3571 return PGMGetHyperCR3(pVCpu);
3572}
3573
3574
3575/**
3576 * @callback_method_impl{FNDBGCCMD,
3577 * The 'dpd'\, 'dpda'\, 'dpdb'\, 'dpdg' and 'dpdh' commands.}
3578 */
3579static DECLCALLBACK(int) dbgcCmdDumpPageDir(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
3580{
3581 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
3582
3583 /*
3584 * Validate input.
3585 */
3586 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs <= 1);
3587 if (cArgs == 1 && pCmd->pszCmd[3] == 'a')
3588 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, DBGCVAR_ISPOINTER(paArgs[0].enmType));
3589 if (cArgs == 1 && pCmd->pszCmd[3] != 'a')
3590 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, paArgs[0].enmType == DBGCVAR_TYPE_NUMBER
3591 || DBGCVAR_ISPOINTER(paArgs[0].enmType));
3592 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
3593
3594 /*
3595 * Guest or shadow page directories? Get the paging parameters.
3596 */
3597 bool fGuest = pCmd->pszCmd[3] != 'h';
3598 if (!pCmd->pszCmd[3] || pCmd->pszCmd[3] == 'a')
3599 fGuest = paArgs[0].enmType == DBGCVAR_TYPE_NUMBER
3600 ? pDbgc->fRegCtxGuest
3601 : DBGCVAR_ISGCPOINTER(paArgs[0].enmType);
3602
3603 bool fPAE, fLME, fPSE, fPGE, fNXE;
3604 uint64_t cr3 = fGuest
3605 ? dbgcGetGuestPageMode(pDbgc, &fPAE, &fLME, &fPSE, &fPGE, &fNXE)
3606 : dbgcGetShadowPageMode(pDbgc, &fPAE, &fLME, &fPSE, &fPGE, &fNXE);
3607 const unsigned cbEntry = fPAE ? sizeof(X86PTEPAE) : sizeof(X86PTE);
3608
3609 /*
3610 * Setup default argument if none was specified.
3611 * Fix address / index confusion.
3612 */
3613 DBGCVAR VarDefault;
3614 if (!cArgs)
3615 {
3616 if (pCmd->pszCmd[3] == 'a')
3617 {
3618 if (fLME || fPAE)
3619 return DBGCCmdHlpPrintf(pCmdHlp, "Default argument for 'dpda' hasn't been fully implemented yet. Try with an address or use one of the other commands.\n");
3620 if (fGuest)
3621 DBGCVAR_INIT_GC_PHYS(&VarDefault, cr3);
3622 else
3623 DBGCVAR_INIT_HC_PHYS(&VarDefault, cr3);
3624 }
3625 else
3626 DBGCVAR_INIT_GC_FLAT(&VarDefault, 0);
3627 paArgs = &VarDefault;
3628 cArgs = 1;
3629 }
3630 else if (paArgs[0].enmType == DBGCVAR_TYPE_NUMBER)
3631 {
3632 /* If it's a number (not an address), it's an index, so convert it to an address. */
3633 Assert(pCmd->pszCmd[3] != 'a');
3634 VarDefault = paArgs[0];
3635 if (fPAE)
3636 return DBGCCmdHlpPrintf(pCmdHlp, "PDE indexing is only implemented for 32-bit paging.\n");
3637 if (VarDefault.u.u64Number >= PAGE_SIZE / cbEntry)
3638 return DBGCCmdHlpPrintf(pCmdHlp, "PDE index is out of range [0..%d].\n", PAGE_SIZE / cbEntry - 1);
3639 VarDefault.u.u64Number <<= X86_PD_SHIFT;
3640 VarDefault.enmType = DBGCVAR_TYPE_GC_FLAT;
3641 paArgs = &VarDefault;
3642 }
3643
3644 /*
3645 * Locate the PDE to start displaying at.
3646 *
3647 * The 'dpda' command takes the address of a PDE, while the others are guest
3648 * virtual address which PDEs should be displayed. So, 'dpda' is rather simple
3649 * while the others require us to do all the tedious walking thru the paging
3650 * hierarchy to find the intended PDE.
3651 */
3652 unsigned iEntry = ~0U; /* The page directory index. ~0U for 'dpta'. */
3653 DBGCVAR VarGCPtr = { NULL, }; /* The GC address corresponding to the current PDE (iEntry != ~0U). */
3654 DBGCVAR VarPDEAddr; /* The address of the current PDE. */
3655 unsigned cEntries; /* The number of entries to display. */
3656 unsigned cEntriesMax; /* The max number of entries to display. */
3657 int rc;
3658 if (pCmd->pszCmd[3] == 'a')
3659 {
3660 VarPDEAddr = paArgs[0];
3661 switch (VarPDEAddr.enmRangeType)
3662 {
3663 case DBGCVAR_RANGE_BYTES: cEntries = VarPDEAddr.u64Range / cbEntry; break;
3664 case DBGCVAR_RANGE_ELEMENTS: cEntries = VarPDEAddr.u64Range; break;
3665 default: cEntries = 10; break;
3666 }
3667 cEntriesMax = PAGE_SIZE / cbEntry;
3668 }
3669 else
3670 {
3671 /*
3672 * Determine the range.
3673 */
3674 switch (paArgs[0].enmRangeType)
3675 {
3676 case DBGCVAR_RANGE_BYTES: cEntries = paArgs[0].u64Range / PAGE_SIZE; break;
3677 case DBGCVAR_RANGE_ELEMENTS: cEntries = paArgs[0].u64Range; break;
3678 default: cEntries = 10; break;
3679 }
3680
3681 /*
3682 * Normalize the input address, it must be a flat GC address.
3683 */
3684 rc = DBGCCmdHlpEval(pCmdHlp, &VarGCPtr, "%%(%Dv)", &paArgs[0]);
3685 if (RT_FAILURE(rc))
3686 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "%%(%Dv)", &paArgs[0]);
3687 if (VarGCPtr.enmType == DBGCVAR_TYPE_HC_FLAT)
3688 {
3689 VarGCPtr.u.GCFlat = (uintptr_t)VarGCPtr.u.pvHCFlat;
3690 VarGCPtr.enmType = DBGCVAR_TYPE_GC_FLAT;
3691 }
3692 if (fPAE)
3693 VarGCPtr.u.GCFlat &= ~(((RTGCPTR)1 << X86_PD_PAE_SHIFT) - 1);
3694 else
3695 VarGCPtr.u.GCFlat &= ~(((RTGCPTR)1 << X86_PD_SHIFT) - 1);
3696
3697 /*
3698 * Do the paging walk until we get to the page directory.
3699 */
3700 DBGCVAR VarCur;
3701 if (fGuest)
3702 DBGCVAR_INIT_GC_PHYS(&VarCur, cr3);
3703 else
3704 DBGCVAR_INIT_HC_PHYS(&VarCur, cr3);
3705 if (fLME)
3706 {
3707 /* Page Map Level 4 Lookup. */
3708 /* Check if it's a valid address first? */
3709 VarCur.u.u64Number &= X86_PTE_PAE_PG_MASK;
3710 VarCur.u.u64Number += (((uint64_t)VarGCPtr.u.GCFlat >> X86_PML4_SHIFT) & X86_PML4_MASK) * sizeof(X86PML4E);
3711 X86PML4E Pml4e;
3712 rc = pCmdHlp->pfnMemRead(pCmdHlp, &Pml4e, sizeof(Pml4e), &VarCur, NULL);
3713 if (RT_FAILURE(rc))
3714 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "Reading PML4E memory at %DV.\n", &VarCur);
3715 if (!Pml4e.n.u1Present)
3716 return DBGCCmdHlpPrintf(pCmdHlp, "Page directory pointer table is not present for %Dv.\n", &VarGCPtr);
3717
3718 VarCur.u.u64Number = Pml4e.u & X86_PML4E_PG_MASK;
3719 Assert(fPAE);
3720 }
3721 if (fPAE)
3722 {
3723 /* Page directory pointer table. */
3724 X86PDPE Pdpe;
3725 VarCur.u.u64Number += ((VarGCPtr.u.GCFlat >> X86_PDPT_SHIFT) & X86_PDPT_MASK_PAE) * sizeof(Pdpe);
3726 rc = pCmdHlp->pfnMemRead(pCmdHlp, &Pdpe, sizeof(Pdpe), &VarCur, NULL);
3727 if (RT_FAILURE(rc))
3728 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "Reading PDPE memory at %DV.\n", &VarCur);
3729 if (!Pdpe.n.u1Present)
3730 return DBGCCmdHlpPrintf(pCmdHlp, "Page directory is not present for %Dv.\n", &VarGCPtr);
3731
3732 iEntry = (VarGCPtr.u.GCFlat >> X86_PD_PAE_SHIFT) & X86_PD_PAE_MASK;
3733 VarPDEAddr = VarCur;
3734 VarPDEAddr.u.u64Number = Pdpe.u & X86_PDPE_PG_MASK;
3735 VarPDEAddr.u.u64Number += iEntry * sizeof(X86PDEPAE);
3736 }
3737 else
3738 {
3739 /* 32-bit legacy - CR3 == page directory. */
3740 iEntry = (VarGCPtr.u.GCFlat >> X86_PD_SHIFT) & X86_PD_MASK;
3741 VarPDEAddr = VarCur;
3742 VarPDEAddr.u.u64Number += iEntry * sizeof(X86PDE);
3743 }
3744 cEntriesMax = (PAGE_SIZE - iEntry) / cbEntry;
3745 }
3746
3747 /* adjust cEntries */
3748 cEntries = RT_MAX(1, cEntries);
3749 cEntries = RT_MIN(cEntries, cEntriesMax);
3750
3751 /*
3752 * The display loop.
3753 */
3754 DBGCCmdHlpPrintf(pCmdHlp, iEntry != ~0U ? "%DV (index %#x):\n" : "%DV:\n",
3755 &VarPDEAddr, iEntry);
3756 do
3757 {
3758 /*
3759 * Read.
3760 */
3761 X86PDEPAE Pde;
3762 Pde.u = 0;
3763 rc = pCmdHlp->pfnMemRead(pCmdHlp, &Pde, cbEntry, &VarPDEAddr, NULL);
3764 if (RT_FAILURE(rc))
3765 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "Reading PDE memory at %DV.\n", &VarPDEAddr);
3766
3767 /*
3768 * Display.
3769 */
3770 if (iEntry != ~0U)
3771 {
3772 DBGCCmdHlpPrintf(pCmdHlp, "%03x %DV: ", iEntry, &VarGCPtr);
3773 iEntry++;
3774 }
3775 if (fPSE && Pde.b.u1Size)
3776 DBGCCmdHlpPrintf(pCmdHlp,
3777 fPAE
3778 ? "%016llx big phys=%016llx %s %s %s %s %s avl=%02x %s %s %s %s %s"
3779 : "%08llx big phys=%08llx %s %s %s %s %s avl=%02x %s %s %s %s %s",
3780 Pde.u,
3781 Pde.u & X86_PDE_PAE_PG_MASK,
3782 Pde.b.u1Present ? "p " : "np",
3783 Pde.b.u1Write ? "w" : "r",
3784 Pde.b.u1User ? "u" : "s",
3785 Pde.b.u1Accessed ? "a " : "na",
3786 Pde.b.u1Dirty ? "d " : "nd",
3787 Pde.b.u3Available,
3788 Pde.b.u1Global ? (fPGE ? "g" : "G") : " ",
3789 Pde.b.u1WriteThru ? "pwt" : " ",
3790 Pde.b.u1CacheDisable ? "pcd" : " ",
3791 Pde.b.u1PAT ? "pat" : "",
3792 Pde.b.u1NoExecute ? (fNXE ? "nx" : "NX") : " ");
3793 else
3794 DBGCCmdHlpPrintf(pCmdHlp,
3795 fPAE
3796 ? "%016llx 4kb phys=%016llx %s %s %s %s %s avl=%02x %s %s %s %s"
3797 : "%08llx 4kb phys=%08llx %s %s %s %s %s avl=%02x %s %s %s %s",
3798 Pde.u,
3799 Pde.u & X86_PDE_PAE_PG_MASK,
3800 Pde.n.u1Present ? "p " : "np",
3801 Pde.n.u1Write ? "w" : "r",
3802 Pde.n.u1User ? "u" : "s",
3803 Pde.n.u1Accessed ? "a " : "na",
3804 Pde.u & RT_BIT(6) ? "6 " : " ",
3805 Pde.n.u3Available,
3806 Pde.u & RT_BIT(8) ? "8" : " ",
3807 Pde.n.u1WriteThru ? "pwt" : " ",
3808 Pde.n.u1CacheDisable ? "pcd" : " ",
3809 Pde.u & RT_BIT(7) ? "7" : "",
3810 Pde.n.u1NoExecute ? (fNXE ? "nx" : "NX") : " ");
3811 if (Pde.u & UINT64_C(0x7fff000000000000))
3812 DBGCCmdHlpPrintf(pCmdHlp, " weird=%RX64", (Pde.u & UINT64_C(0x7fff000000000000)));
3813 rc = DBGCCmdHlpPrintf(pCmdHlp, "\n");
3814 if (RT_FAILURE(rc))
3815 return rc;
3816
3817 /*
3818 * Advance.
3819 */
3820 VarPDEAddr.u.u64Number += cbEntry;
3821 if (iEntry != ~0U)
3822 VarGCPtr.u.GCFlat += fPAE ? RT_BIT_32(X86_PD_PAE_SHIFT) : RT_BIT_32(X86_PD_SHIFT);
3823 } while (cEntries-- > 0);
3824
3825 return VINF_SUCCESS;
3826}
3827
3828
3829/**
3830 * @callback_method_impl{FNDBGCCMD, The 'dpdb' command.}
3831 */
3832static DECLCALLBACK(int) dbgcCmdDumpPageDirBoth(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
3833{
3834 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
3835 int rc1 = pCmdHlp->pfnExec(pCmdHlp, "dpdg %DV", &paArgs[0]);
3836 int rc2 = pCmdHlp->pfnExec(pCmdHlp, "dpdh %DV", &paArgs[0]);
3837 if (RT_FAILURE(rc1))
3838 return rc1;
3839 NOREF(pCmd); NOREF(paArgs); NOREF(cArgs);
3840 return rc2;
3841}
3842
3843
3844/**
3845 * @callback_method_impl{FNDBGCCMD, The 'dph*' commands and main part of 'm'.}
3846 */
3847static DECLCALLBACK(int) dbgcCmdDumpPageHierarchy(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
3848{
3849 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
3850 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
3851
3852 /*
3853 * Figure the context and base flags.
3854 */
3855 uint32_t fFlags = DBGFPGDMP_FLAGS_PAGE_INFO | DBGFPGDMP_FLAGS_PRINT_CR3;
3856 if (pCmd->pszCmd[0] == 'm')
3857 fFlags |= DBGFPGDMP_FLAGS_GUEST | DBGFPGDMP_FLAGS_SHADOW;
3858 else if (pCmd->pszCmd[3] == '\0')
3859 fFlags |= pDbgc->fRegCtxGuest ? DBGFPGDMP_FLAGS_GUEST : DBGFPGDMP_FLAGS_SHADOW;
3860 else if (pCmd->pszCmd[3] == 'g')
3861 fFlags |= DBGFPGDMP_FLAGS_GUEST;
3862 else if (pCmd->pszCmd[3] == 'h')
3863 fFlags |= DBGFPGDMP_FLAGS_SHADOW;
3864 else
3865 AssertFailed();
3866
3867 if (pDbgc->cPagingHierarchyDumps == 0)
3868 fFlags |= DBGFPGDMP_FLAGS_HEADER;
3869 pDbgc->cPagingHierarchyDumps = (pDbgc->cPagingHierarchyDumps + 1) % 42;
3870
3871 /*
3872 * Get the range.
3873 */
3874 PCDBGCVAR pRange = cArgs > 0 ? &paArgs[0] : pDbgc->pLastPos;
3875 RTGCPTR GCPtrFirst = NIL_RTGCPTR;
3876 int rc = DBGCCmdHlpVarToFlatAddr(pCmdHlp, pRange, &GCPtrFirst);
3877 if (RT_FAILURE(rc))
3878 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Failed to convert %DV to a flat address: %Rrc", pRange, rc);
3879
3880 uint64_t cbRange;
3881 rc = DBGCCmdHlpVarGetRange(pCmdHlp, pRange, PAGE_SIZE, PAGE_SIZE * 8, &cbRange);
3882 if (RT_FAILURE(rc))
3883 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Failed to obtain the range of %DV: %Rrc", pRange, rc);
3884
3885 RTGCPTR GCPtrLast = RTGCPTR_MAX - GCPtrFirst;
3886 if (cbRange >= GCPtrLast)
3887 GCPtrLast = RTGCPTR_MAX;
3888 else if (!cbRange)
3889 GCPtrLast = GCPtrFirst;
3890 else
3891 GCPtrLast = GCPtrFirst + cbRange - 1;
3892
3893 /*
3894 * Do we have a CR3?
3895 */
3896 uint64_t cr3 = 0;
3897 if (cArgs > 1)
3898 {
3899 if ((fFlags & (DBGFPGDMP_FLAGS_GUEST | DBGFPGDMP_FLAGS_SHADOW)) == (DBGFPGDMP_FLAGS_GUEST | DBGFPGDMP_FLAGS_SHADOW))
3900 return DBGCCmdHlpFail(pCmdHlp, pCmd, "No CR3 or mode arguments when dumping both context, please.");
3901 if (paArgs[1].enmType != DBGCVAR_TYPE_NUMBER)
3902 return DBGCCmdHlpFail(pCmdHlp, pCmd, "The CR3 argument is not a number: %DV", &paArgs[1]);
3903 cr3 = paArgs[1].u.u64Number;
3904 }
3905 else
3906 fFlags |= DBGFPGDMP_FLAGS_CURRENT_CR3;
3907
3908 /*
3909 * Do we have a mode?
3910 */
3911 if (cArgs > 2)
3912 {
3913 if (paArgs[2].enmType != DBGCVAR_TYPE_STRING)
3914 return DBGCCmdHlpFail(pCmdHlp, pCmd, "The mode argument is not a string: %DV", &paArgs[2]);
3915 static const struct MODETOFLAGS
3916 {
3917 const char *pszName;
3918 uint32_t fFlags;
3919 } s_aModeToFlags[] =
3920 {
3921 { "ept", DBGFPGDMP_FLAGS_EPT },
3922 { "legacy", 0 },
3923 { "legacy-np", DBGFPGDMP_FLAGS_NP },
3924 { "pse", DBGFPGDMP_FLAGS_PSE },
3925 { "pse-np", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_NP },
3926 { "pae", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_PAE },
3927 { "pae-np", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_PAE | DBGFPGDMP_FLAGS_NP },
3928 { "pae-nx", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_PAE | DBGFPGDMP_FLAGS_NXE },
3929 { "pae-nx-np", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_PAE | DBGFPGDMP_FLAGS_NXE | DBGFPGDMP_FLAGS_NP },
3930 { "long", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_PAE | DBGFPGDMP_FLAGS_LME },
3931 { "long-np", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_PAE | DBGFPGDMP_FLAGS_LME | DBGFPGDMP_FLAGS_NP },
3932 { "long-nx", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_PAE | DBGFPGDMP_FLAGS_LME | DBGFPGDMP_FLAGS_NXE },
3933 { "long-nx-np", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_PAE | DBGFPGDMP_FLAGS_LME | DBGFPGDMP_FLAGS_NXE | DBGFPGDMP_FLAGS_NP }
3934 };
3935 int i = RT_ELEMENTS(s_aModeToFlags);
3936 while (i-- > 0)
3937 if (!strcmp(s_aModeToFlags[i].pszName, paArgs[2].u.pszString))
3938 {
3939 fFlags |= s_aModeToFlags[i].fFlags;
3940 break;
3941 }
3942 if (i < 0)
3943 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Unknown mode: \"%s\"", paArgs[2].u.pszString);
3944 }
3945 else
3946 fFlags |= DBGFPGDMP_FLAGS_CURRENT_MODE;
3947
3948 /*
3949 * Call the worker.
3950 */
3951 rc = DBGFR3PagingDumpEx(pUVM, pDbgc->idCpu, fFlags, cr3, GCPtrFirst, GCPtrLast, 99 /*cMaxDepth*/,
3952 DBGCCmdHlpGetDbgfOutputHlp(pCmdHlp));
3953 if (RT_FAILURE(rc))
3954 return DBGCCmdHlpFail(pCmdHlp, pCmd, "DBGFR3PagingDumpEx: %Rrc\n", rc);
3955 return VINF_SUCCESS;
3956}
3957
3958
3959
3960/**
3961 * @callback_method_impl{FNDBGCCMD, The 'dpg*' commands.}
3962 */
3963static DECLCALLBACK(int) dbgcCmdDumpPageTable(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
3964{
3965 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
3966
3967 /*
3968 * Validate input.
3969 */
3970 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs == 1);
3971 if (pCmd->pszCmd[3] == 'a')
3972 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, DBGCVAR_ISPOINTER(paArgs[0].enmType));
3973 else
3974 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, paArgs[0].enmType == DBGCVAR_TYPE_NUMBER
3975 || DBGCVAR_ISPOINTER(paArgs[0].enmType));
3976 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
3977
3978 /*
3979 * Guest or shadow page tables? Get the paging parameters.
3980 */
3981 bool fGuest = pCmd->pszCmd[3] != 'h';
3982 if (!pCmd->pszCmd[3] || pCmd->pszCmd[3] == 'a')
3983 fGuest = paArgs[0].enmType == DBGCVAR_TYPE_NUMBER
3984 ? pDbgc->fRegCtxGuest
3985 : DBGCVAR_ISGCPOINTER(paArgs[0].enmType);
3986
3987 bool fPAE, fLME, fPSE, fPGE, fNXE;
3988 uint64_t cr3 = fGuest
3989 ? dbgcGetGuestPageMode(pDbgc, &fPAE, &fLME, &fPSE, &fPGE, &fNXE)
3990 : dbgcGetShadowPageMode(pDbgc, &fPAE, &fLME, &fPSE, &fPGE, &fNXE);
3991 const unsigned cbEntry = fPAE ? sizeof(X86PTEPAE) : sizeof(X86PTE);
3992
3993 /*
3994 * Locate the PTE to start displaying at.
3995 *
3996 * The 'dpta' command takes the address of a PTE, while the others are guest
3997 * virtual address which PTEs should be displayed. So, 'pdta' is rather simple
3998 * while the others require us to do all the tedious walking thru the paging
3999 * hierarchy to find the intended PTE.
4000 */
4001 unsigned iEntry = ~0U; /* The page table index. ~0U for 'dpta'. */
4002 DBGCVAR VarGCPtr; /* The GC address corresponding to the current PTE (iEntry != ~0U). */
4003 DBGCVAR VarPTEAddr; /* The address of the current PTE. */
4004 unsigned cEntries; /* The number of entries to display. */
4005 unsigned cEntriesMax; /* The max number of entries to display. */
4006 int rc;
4007 if (pCmd->pszCmd[3] == 'a')
4008 {
4009 VarPTEAddr = paArgs[0];
4010 switch (VarPTEAddr.enmRangeType)
4011 {
4012 case DBGCVAR_RANGE_BYTES: cEntries = VarPTEAddr.u64Range / cbEntry; break;
4013 case DBGCVAR_RANGE_ELEMENTS: cEntries = VarPTEAddr.u64Range; break;
4014 default: cEntries = 10; break;
4015 }
4016 cEntriesMax = PAGE_SIZE / cbEntry;
4017 }
4018 else
4019 {
4020 /*
4021 * Determine the range.
4022 */
4023 switch (paArgs[0].enmRangeType)
4024 {
4025 case DBGCVAR_RANGE_BYTES: cEntries = paArgs[0].u64Range / PAGE_SIZE; break;
4026 case DBGCVAR_RANGE_ELEMENTS: cEntries = paArgs[0].u64Range; break;
4027 default: cEntries = 10; break;
4028 }
4029
4030 /*
4031 * Normalize the input address, it must be a flat GC address.
4032 */
4033 rc = DBGCCmdHlpEval(pCmdHlp, &VarGCPtr, "%%(%Dv)", &paArgs[0]);
4034 if (RT_FAILURE(rc))
4035 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "%%(%Dv)", &paArgs[0]);
4036 if (VarGCPtr.enmType == DBGCVAR_TYPE_HC_FLAT)
4037 {
4038 VarGCPtr.u.GCFlat = (uintptr_t)VarGCPtr.u.pvHCFlat;
4039 VarGCPtr.enmType = DBGCVAR_TYPE_GC_FLAT;
4040 }
4041 VarGCPtr.u.GCFlat &= ~(RTGCPTR)PAGE_OFFSET_MASK;
4042
4043 /*
4044 * Do the paging walk until we get to the page table.
4045 */
4046 DBGCVAR VarCur;
4047 if (fGuest)
4048 DBGCVAR_INIT_GC_PHYS(&VarCur, cr3);
4049 else
4050 DBGCVAR_INIT_HC_PHYS(&VarCur, cr3);
4051 if (fLME)
4052 {
4053 /* Page Map Level 4 Lookup. */
4054 /* Check if it's a valid address first? */
4055 VarCur.u.u64Number &= X86_PTE_PAE_PG_MASK;
4056 VarCur.u.u64Number += (((uint64_t)VarGCPtr.u.GCFlat >> X86_PML4_SHIFT) & X86_PML4_MASK) * sizeof(X86PML4E);
4057 X86PML4E Pml4e;
4058 rc = pCmdHlp->pfnMemRead(pCmdHlp, &Pml4e, sizeof(Pml4e), &VarCur, NULL);
4059 if (RT_FAILURE(rc))
4060 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "Reading PML4E memory at %DV.\n", &VarCur);
4061 if (!Pml4e.n.u1Present)
4062 return DBGCCmdHlpPrintf(pCmdHlp, "Page directory pointer table is not present for %Dv.\n", &VarGCPtr);
4063
4064 VarCur.u.u64Number = Pml4e.u & X86_PML4E_PG_MASK;
4065 Assert(fPAE);
4066 }
4067 if (fPAE)
4068 {
4069 /* Page directory pointer table. */
4070 X86PDPE Pdpe;
4071 VarCur.u.u64Number += ((VarGCPtr.u.GCFlat >> X86_PDPT_SHIFT) & X86_PDPT_MASK_PAE) * sizeof(Pdpe);
4072 rc = pCmdHlp->pfnMemRead(pCmdHlp, &Pdpe, sizeof(Pdpe), &VarCur, NULL);
4073 if (RT_FAILURE(rc))
4074 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "Reading PDPE memory at %DV.\n", &VarCur);
4075 if (!Pdpe.n.u1Present)
4076 return DBGCCmdHlpPrintf(pCmdHlp, "Page directory is not present for %Dv.\n", &VarGCPtr);
4077
4078 VarCur.u.u64Number = Pdpe.u & X86_PDPE_PG_MASK;
4079
4080 /* Page directory (PAE). */
4081 X86PDEPAE Pde;
4082 VarCur.u.u64Number += ((VarGCPtr.u.GCFlat >> X86_PD_PAE_SHIFT) & X86_PD_PAE_MASK) * sizeof(Pde);
4083 rc = pCmdHlp->pfnMemRead(pCmdHlp, &Pde, sizeof(Pde), &VarCur, NULL);
4084 if (RT_FAILURE(rc))
4085 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "Reading PDE memory at %DV.\n", &VarCur);
4086 if (!Pde.n.u1Present)
4087 return DBGCCmdHlpPrintf(pCmdHlp, "Page table is not present for %Dv.\n", &VarGCPtr);
4088 if (fPSE && Pde.n.u1Size)
4089 return pCmdHlp->pfnExec(pCmdHlp, "dpd%s %Dv L3", &pCmd->pszCmd[3], &VarGCPtr);
4090
4091 iEntry = (VarGCPtr.u.GCFlat >> X86_PT_PAE_SHIFT) & X86_PT_PAE_MASK;
4092 VarPTEAddr = VarCur;
4093 VarPTEAddr.u.u64Number = Pde.u & X86_PDE_PAE_PG_MASK;
4094 VarPTEAddr.u.u64Number += iEntry * sizeof(X86PTEPAE);
4095 }
4096 else
4097 {
4098 /* Page directory (legacy). */
4099 X86PDE Pde;
4100 VarCur.u.u64Number += ((VarGCPtr.u.GCFlat >> X86_PD_SHIFT) & X86_PD_MASK) * sizeof(Pde);
4101 rc = pCmdHlp->pfnMemRead(pCmdHlp, &Pde, sizeof(Pde), &VarCur, NULL);
4102 if (RT_FAILURE(rc))
4103 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "Reading PDE memory at %DV.\n", &VarCur);
4104 if (!Pde.n.u1Present)
4105 return DBGCCmdHlpPrintf(pCmdHlp, "Page table is not present for %Dv.\n", &VarGCPtr);
4106 if (fPSE && Pde.n.u1Size)
4107 return pCmdHlp->pfnExec(pCmdHlp, "dpd%s %Dv L3", &pCmd->pszCmd[3], &VarGCPtr);
4108
4109 iEntry = (VarGCPtr.u.GCFlat >> X86_PT_SHIFT) & X86_PT_MASK;
4110 VarPTEAddr = VarCur;
4111 VarPTEAddr.u.u64Number = Pde.u & X86_PDE_PG_MASK;
4112 VarPTEAddr.u.u64Number += iEntry * sizeof(X86PTE);
4113 }
4114 cEntriesMax = (PAGE_SIZE - iEntry) / cbEntry;
4115 }
4116
4117 /* adjust cEntries */
4118 cEntries = RT_MAX(1, cEntries);
4119 cEntries = RT_MIN(cEntries, cEntriesMax);
4120
4121 /*
4122 * The display loop.
4123 */
4124 DBGCCmdHlpPrintf(pCmdHlp, iEntry != ~0U ? "%DV (base %DV / index %#x):\n" : "%DV:\n",
4125 &VarPTEAddr, &VarGCPtr, iEntry);
4126 do
4127 {
4128 /*
4129 * Read.
4130 */
4131 X86PTEPAE Pte;
4132 Pte.u = 0;
4133 rc = pCmdHlp->pfnMemRead(pCmdHlp, &Pte, cbEntry, &VarPTEAddr, NULL);
4134 if (RT_FAILURE(rc))
4135 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "Reading PTE memory at %DV.\n", &VarPTEAddr);
4136
4137 /*
4138 * Display.
4139 */
4140 if (iEntry != ~0U)
4141 {
4142 DBGCCmdHlpPrintf(pCmdHlp, "%03x %DV: ", iEntry, &VarGCPtr);
4143 iEntry++;
4144 }
4145 DBGCCmdHlpPrintf(pCmdHlp,
4146 fPAE
4147 ? "%016llx 4kb phys=%016llx %s %s %s %s %s avl=%02x %s %s %s %s %s"
4148 : "%08llx 4kb phys=%08llx %s %s %s %s %s avl=%02x %s %s %s %s %s",
4149 Pte.u,
4150 Pte.u & X86_PTE_PAE_PG_MASK,
4151 Pte.n.u1Present ? "p " : "np",
4152 Pte.n.u1Write ? "w" : "r",
4153 Pte.n.u1User ? "u" : "s",
4154 Pte.n.u1Accessed ? "a " : "na",
4155 Pte.n.u1Dirty ? "d " : "nd",
4156 Pte.n.u3Available,
4157 Pte.n.u1Global ? (fPGE ? "g" : "G") : " ",
4158 Pte.n.u1WriteThru ? "pwt" : " ",
4159 Pte.n.u1CacheDisable ? "pcd" : " ",
4160 Pte.n.u1PAT ? "pat" : " ",
4161 Pte.n.u1NoExecute ? (fNXE ? "nx" : "NX") : " "
4162 );
4163 if (Pte.u & UINT64_C(0x7fff000000000000))
4164 DBGCCmdHlpPrintf(pCmdHlp, " weird=%RX64", (Pte.u & UINT64_C(0x7fff000000000000)));
4165 rc = DBGCCmdHlpPrintf(pCmdHlp, "\n");
4166 if (RT_FAILURE(rc))
4167 return rc;
4168
4169 /*
4170 * Advance.
4171 */
4172 VarPTEAddr.u.u64Number += cbEntry;
4173 if (iEntry != ~0U)
4174 VarGCPtr.u.GCFlat += PAGE_SIZE;
4175 } while (cEntries-- > 0);
4176
4177 return VINF_SUCCESS;
4178}
4179
4180
4181/**
4182 * @callback_method_impl{FNDBGCCMD, The 'dptb' command.}
4183 */
4184static DECLCALLBACK(int) dbgcCmdDumpPageTableBoth(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
4185{
4186 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
4187 int rc1 = pCmdHlp->pfnExec(pCmdHlp, "dptg %DV", &paArgs[0]);
4188 int rc2 = pCmdHlp->pfnExec(pCmdHlp, "dpth %DV", &paArgs[0]);
4189 if (RT_FAILURE(rc1))
4190 return rc1;
4191 NOREF(pCmd); NOREF(cArgs);
4192 return rc2;
4193}
4194
4195
4196/**
4197 * @callback_method_impl{FNDBGCCMD, The 'dt' command.}
4198 */
4199static DECLCALLBACK(int) dbgcCmdDumpTSS(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
4200{
4201 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
4202 int rc;
4203
4204 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
4205 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs <= 1);
4206 if (cArgs == 1)
4207 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, paArgs[0].enmType != DBGCVAR_TYPE_STRING
4208 && paArgs[0].enmType != DBGCVAR_TYPE_SYMBOL);
4209
4210 /*
4211 * Check if the command indicates the type.
4212 */
4213 enum { kTss16, kTss32, kTss64, kTssToBeDetermined } enmTssType = kTssToBeDetermined;
4214 if (!strcmp(pCmd->pszCmd, "dt16"))
4215 enmTssType = kTss16;
4216 else if (!strcmp(pCmd->pszCmd, "dt32"))
4217 enmTssType = kTss32;
4218 else if (!strcmp(pCmd->pszCmd, "dt64"))
4219 enmTssType = kTss64;
4220
4221 /*
4222 * We can get a TSS selector (number), a far pointer using a TSS selector, or some kind of TSS pointer.
4223 */
4224 uint32_t SelTss = UINT32_MAX;
4225 DBGCVAR VarTssAddr;
4226 if (cArgs == 0)
4227 {
4228 /** @todo consider querying the hidden bits instead (missing API). */
4229 uint16_t SelTR;
4230 rc = DBGFR3RegCpuQueryU16(pUVM, pDbgc->idCpu, DBGFREG_TR, &SelTR);
4231 if (RT_FAILURE(rc))
4232 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Failed to query TR, rc=%Rrc\n", rc);
4233 DBGCVAR_INIT_GC_FAR(&VarTssAddr, SelTR, 0);
4234 SelTss = SelTR;
4235 }
4236 else if (paArgs[0].enmType == DBGCVAR_TYPE_NUMBER)
4237 {
4238 if (paArgs[0].u.u64Number < 0xffff)
4239 DBGCVAR_INIT_GC_FAR(&VarTssAddr, (RTSEL)paArgs[0].u.u64Number, 0);
4240 else
4241 {
4242 if (paArgs[0].enmRangeType == DBGCVAR_RANGE_ELEMENTS)
4243 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Element count doesn't combine with a TSS address.\n");
4244 DBGCVAR_INIT_GC_FLAT(&VarTssAddr, paArgs[0].u.u64Number);
4245 if (paArgs[0].enmRangeType == DBGCVAR_RANGE_BYTES)
4246 {
4247 VarTssAddr.enmRangeType = paArgs[0].enmRangeType;
4248 VarTssAddr.u64Range = paArgs[0].u64Range;
4249 }
4250 }
4251 }
4252 else
4253 VarTssAddr = paArgs[0];
4254
4255 /*
4256 * Deal with TSS:ign by means of the GDT.
4257 */
4258 if (VarTssAddr.enmType == DBGCVAR_TYPE_GC_FAR)
4259 {
4260 SelTss = VarTssAddr.u.GCFar.sel;
4261 DBGFSELINFO SelInfo;
4262 rc = DBGFR3SelQueryInfo(pUVM, pDbgc->idCpu, VarTssAddr.u.GCFar.sel, DBGFSELQI_FLAGS_DT_GUEST, &SelInfo);
4263 if (RT_FAILURE(rc))
4264 return DBGCCmdHlpFail(pCmdHlp, pCmd, "DBGFR3SelQueryInfo(,%u,%d,,) -> %Rrc.\n",
4265 pDbgc->idCpu, VarTssAddr.u.GCFar.sel, rc);
4266
4267 if (SelInfo.u.Raw.Gen.u1DescType)
4268 return DBGCCmdHlpFail(pCmdHlp, pCmd, "%04x is not a TSS selector. (!sys)\n", VarTssAddr.u.GCFar.sel);
4269
4270 switch (SelInfo.u.Raw.Gen.u4Type)
4271 {
4272 case X86_SEL_TYPE_SYS_286_TSS_BUSY:
4273 case X86_SEL_TYPE_SYS_286_TSS_AVAIL:
4274 if (enmTssType == kTssToBeDetermined)
4275 enmTssType = kTss16;
4276 break;
4277
4278 case X86_SEL_TYPE_SYS_386_TSS_BUSY: /* AMD64 too */
4279 case X86_SEL_TYPE_SYS_386_TSS_AVAIL:
4280 if (enmTssType == kTssToBeDetermined)
4281 enmTssType = SelInfo.fFlags & DBGFSELINFO_FLAGS_LONG_MODE ? kTss64 : kTss32;
4282 break;
4283
4284 default:
4285 return DBGCCmdHlpFail(pCmdHlp, pCmd, "%04x is not a TSS selector. (type=%x)\n",
4286 VarTssAddr.u.GCFar.sel, SelInfo.u.Raw.Gen.u4Type);
4287 }
4288
4289 DBGCVAR_INIT_GC_FLAT(&VarTssAddr, SelInfo.GCPtrBase);
4290 DBGCVAR_SET_RANGE(&VarTssAddr, DBGCVAR_RANGE_BYTES, RT_MAX(SelInfo.cbLimit + 1, SelInfo.cbLimit));
4291 }
4292
4293 /*
4294 * Determine the TSS type if none is currently given.
4295 */
4296 if (enmTssType == kTssToBeDetermined)
4297 {
4298 if ( VarTssAddr.u64Range > 0
4299 && VarTssAddr.u64Range < sizeof(X86TSS32) - 4)
4300 enmTssType = kTss16;
4301 else
4302 {
4303 uint64_t uEfer;
4304 rc = DBGFR3RegCpuQueryU64(pUVM, pDbgc->idCpu, DBGFREG_MSR_K6_EFER, &uEfer);
4305 if ( RT_FAILURE(rc)
4306 || !(uEfer & MSR_K6_EFER_LMA) )
4307 enmTssType = kTss32;
4308 else
4309 enmTssType = kTss64;
4310 }
4311 }
4312
4313 /*
4314 * Figure the min/max sizes.
4315 * ASSUMES max TSS size is 64 KB.
4316 */
4317 uint32_t cbTssMin;
4318 uint32_t cbTssMax;
4319 switch (enmTssType)
4320 {
4321 case kTss16:
4322 cbTssMin = cbTssMax = X86_SEL_TYPE_SYS_286_TSS_LIMIT_MIN + 1;
4323 break;
4324 case kTss32:
4325 cbTssMin = X86_SEL_TYPE_SYS_386_TSS_LIMIT_MIN + 1;
4326 cbTssMax = _64K;
4327 break;
4328 case kTss64:
4329 cbTssMin = X86_SEL_TYPE_SYS_386_TSS_LIMIT_MIN + 1;
4330 cbTssMax = _64K;
4331 break;
4332 default:
4333 AssertFailedReturn(VERR_INTERNAL_ERROR);
4334 }
4335 uint32_t cbTss = VarTssAddr.enmRangeType == DBGCVAR_RANGE_BYTES ? (uint32_t)VarTssAddr.u64Range : 0;
4336 if (cbTss == 0)
4337 cbTss = cbTssMin;
4338 else if (cbTss < cbTssMin)
4339 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Minimum TSS size is %u bytes, you specified %llu (%llx) bytes.\n",
4340 cbTssMin, VarTssAddr.u64Range, VarTssAddr.u64Range);
4341 else if (cbTss > cbTssMax)
4342 cbTss = cbTssMax;
4343 DBGCVAR_SET_RANGE(&VarTssAddr, DBGCVAR_RANGE_BYTES, cbTss);
4344
4345 /*
4346 * Read the TSS into a temporary buffer.
4347 */
4348 uint8_t abBuf[_64K];
4349 size_t cbTssRead;
4350 rc = DBGCCmdHlpMemRead(pCmdHlp, abBuf, cbTss, &VarTssAddr, &cbTssRead);
4351 if (RT_FAILURE(rc))
4352 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Failed to read TSS at %Dv: %Rrc\n", &VarTssAddr, rc);
4353 if (cbTssRead < cbTssMin)
4354 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Failed to read essential parts of the TSS (read %zu, min %zu).\n",
4355 cbTssRead, cbTssMin);
4356 if (cbTssRead < cbTss)
4357 memset(&abBuf[cbTssRead], 0xff, cbTss - cbTssRead);
4358
4359
4360 /*
4361 * Format the TSS.
4362 */
4363 uint16_t offIoBitmap;
4364 switch (enmTssType)
4365 {
4366 case kTss16:
4367 {
4368 PCX86TSS16 pTss = (PCX86TSS16)&abBuf[0];
4369 if (SelTss != UINT32_MAX)
4370 DBGCCmdHlpPrintf(pCmdHlp, "%04x TSS16 at %Dv\n", SelTss, &VarTssAddr);
4371 else
4372 DBGCCmdHlpPrintf(pCmdHlp, "TSS16 at %Dv\n", &VarTssAddr);
4373 DBGCCmdHlpPrintf(pCmdHlp,
4374 "ax=%04x bx=%04x cx=%04x dx=%04x si=%04x di=%04x\n"
4375 "ip=%04x sp=%04x bp=%04x\n"
4376 "cs=%04x ss=%04x ds=%04x es=%04x flags=%04x\n"
4377 "ss:sp0=%04x:%04x ss:sp1=%04x:%04x ss:sp2=%04x:%04x\n"
4378 "prev=%04x ldtr=%04x\n"
4379 ,
4380 pTss->ax, pTss->bx, pTss->cx, pTss->dx, pTss->si, pTss->di,
4381 pTss->ip, pTss->sp, pTss->bp,
4382 pTss->cs, pTss->ss, pTss->ds, pTss->es, pTss->flags,
4383 pTss->ss0, pTss->sp0, pTss->ss1, pTss->sp1, pTss->ss2, pTss->sp2,
4384 pTss->selPrev, pTss->selLdt);
4385 if (pTss->cs != 0)
4386 pCmdHlp->pfnExec(pCmdHlp, "u %04x:%04x L 0", pTss->cs, pTss->ip);
4387 offIoBitmap = 0;
4388 break;
4389 }
4390
4391 case kTss32:
4392 {
4393 PCX86TSS32 pTss = (PCX86TSS32)&abBuf[0];
4394 if (SelTss != UINT32_MAX)
4395 DBGCCmdHlpPrintf(pCmdHlp, "%04x TSS32 at %Dv (min=%04x)\n", SelTss, &VarTssAddr, cbTssMin);
4396 else
4397 DBGCCmdHlpPrintf(pCmdHlp, "TSS32 at %Dv (min=%04x)\n", &VarTssAddr, cbTssMin);
4398 DBGCCmdHlpPrintf(pCmdHlp,
4399 "eax=%08x ebx=%08x ecx=%08x edx=%08x esi=%08x edi=%08x\n"
4400 "eip=%08x esp=%08x ebp=%08x\n"
4401 "cs=%04x ss=%04x ds=%04x es=%04x fs=%04x gs=%04x eflags=%08x\n"
4402 "ss:esp0=%04x:%08x ss:esp1=%04x:%08x ss:esp2=%04x:%08x\n"
4403 "prev=%04x ldtr=%04x cr3=%08x debug=%u iomap=%04x\n"
4404 ,
4405 pTss->eax, pTss->ebx, pTss->ecx, pTss->edx, pTss->esi, pTss->edi,
4406 pTss->eip, pTss->esp, pTss->ebp,
4407 pTss->cs, pTss->ss, pTss->ds, pTss->es, pTss->fs, pTss->gs, pTss->eflags,
4408 pTss->ss0, pTss->esp0, pTss->ss1, pTss->esp1, pTss->ss2, pTss->esp2,
4409 pTss->selPrev, pTss->selLdt, pTss->cr3, pTss->fDebugTrap, pTss->offIoBitmap);
4410 if (pTss->cs != 0)
4411 pCmdHlp->pfnExec(pCmdHlp, "u %04x:%08x L 0", pTss->cs, pTss->eip);
4412 offIoBitmap = pTss->offIoBitmap;
4413 break;
4414 }
4415
4416 case kTss64:
4417 {
4418 PCX86TSS64 pTss = (PCX86TSS64)&abBuf[0];
4419 if (SelTss != UINT32_MAX)
4420 DBGCCmdHlpPrintf(pCmdHlp, "%04x TSS64 at %Dv (min=%04x)\n", SelTss, &VarTssAddr, cbTssMin);
4421 else
4422 DBGCCmdHlpPrintf(pCmdHlp, "TSS64 at %Dv (min=%04x)\n", &VarTssAddr, cbTssMin);
4423 DBGCCmdHlpPrintf(pCmdHlp,
4424 "rsp0=%016RX16 rsp1=%016RX16 rsp2=%016RX16\n"
4425 "ist1=%016RX16 ist2=%016RX16\n"
4426 "ist3=%016RX16 ist4=%016RX16\n"
4427 "ist5=%016RX16 ist6=%016RX16\n"
4428 "ist7=%016RX16 iomap=%04x\n"
4429 ,
4430 pTss->rsp0, pTss->rsp1, pTss->rsp2,
4431 pTss->ist1, pTss->ist2,
4432 pTss->ist3, pTss->ist4,
4433 pTss->ist5, pTss->ist6,
4434 pTss->ist7, pTss->offIoBitmap);
4435 offIoBitmap = pTss->offIoBitmap;
4436 break;
4437 }
4438
4439 default:
4440 AssertFailedReturn(VERR_INTERNAL_ERROR);
4441 }
4442
4443 /*
4444 * Dump the interrupt redirection bitmap.
4445 */
4446 if (enmTssType != kTss16)
4447 {
4448 if ( offIoBitmap > cbTssMin
4449 && offIoBitmap < cbTss) /** @todo check exactly what the edge cases are here. */
4450 {
4451 if (offIoBitmap - cbTssMin >= 32)
4452 {
4453 DBGCCmdHlpPrintf(pCmdHlp, "Interrupt redirection:\n");
4454 uint8_t const *pbIntRedirBitmap = &abBuf[offIoBitmap - 32];
4455 uint32_t iStart = 0;
4456 bool fPrev = ASMBitTest(pbIntRedirBitmap, 0); /* LE/BE issue */
4457 for (uint32_t i = 0; i < 256; i++)
4458 {
4459 bool fThis = ASMBitTest(pbIntRedirBitmap, i);
4460 if (fThis != fPrev)
4461 {
4462 DBGCCmdHlpPrintf(pCmdHlp, "%02x-%02x %s\n", iStart, i - 1, fPrev ? "Protected mode" : "Redirected");
4463 fPrev = fThis;
4464 iStart = i;
4465 }
4466 }
4467 if (iStart != 255)
4468 DBGCCmdHlpPrintf(pCmdHlp, "%02x-%02x %s\n", iStart, 255, fPrev ? "Protected mode" : "Redirected");
4469 }
4470 else
4471 DBGCCmdHlpPrintf(pCmdHlp, "Invalid interrupt redirection bitmap size: %u (%#x), expected 32 bytes.\n",
4472 offIoBitmap - cbTssMin, offIoBitmap - cbTssMin);
4473 }
4474 else if (offIoBitmap > 0)
4475 DBGCCmdHlpPrintf(pCmdHlp, "No interrupt redirection bitmap (-%#x)\n", cbTssMin - offIoBitmap);
4476 else
4477 DBGCCmdHlpPrintf(pCmdHlp, "No interrupt redirection bitmap\n");
4478 }
4479
4480 /*
4481 * Dump the I/O permission bitmap if present. The IOPM cannot start below offset 0x64
4482 * (that applies to both 32-bit and 64-bit TSSs since their size is the same).
4483 */
4484 if (enmTssType != kTss16)
4485 {
4486 if (offIoBitmap < cbTss && offIoBitmap >= 0x64)
4487 {
4488 uint32_t cPorts = RT_MIN((cbTss - offIoBitmap) * 8, _64K);
4489 DBGCVAR VarAddr;
4490 DBGCCmdHlpEval(pCmdHlp, &VarAddr, "%DV + %#x", &VarTssAddr, offIoBitmap);
4491 DBGCCmdHlpPrintf(pCmdHlp, "I/O bitmap at %DV - %#x ports:\n", &VarAddr, cPorts);
4492
4493 uint8_t const *pbIoBitmap = &abBuf[offIoBitmap];
4494 uint32_t iStart = 0;
4495 bool fPrev = ASMBitTest(pbIoBitmap, 0);
4496 uint32_t cLine = 0;
4497 for (uint32_t i = 1; i < cPorts; i++)
4498 {
4499 bool fThis = ASMBitTest(pbIoBitmap, i);
4500 if (fThis != fPrev)
4501 {
4502 cLine++;
4503 DBGCCmdHlpPrintf(pCmdHlp, "%04x-%04x %s%s", iStart, i-1,
4504 fPrev ? "GP" : "OK", (cLine % 6) == 0 ? "\n" : " ");
4505 fPrev = fThis;
4506 iStart = i;
4507 }
4508 }
4509 if (iStart != _64K-1)
4510 DBGCCmdHlpPrintf(pCmdHlp, "%04x-%04x %s\n", iStart, _64K-1, fPrev ? "GP" : "OK");
4511 }
4512 else if (offIoBitmap > 0)
4513 DBGCCmdHlpPrintf(pCmdHlp, "No I/O bitmap (-%#x)\n", cbTssMin - offIoBitmap);
4514 else
4515 DBGCCmdHlpPrintf(pCmdHlp, "No I/O bitmap\n");
4516 }
4517
4518 return VINF_SUCCESS;
4519}
4520
4521
4522/**
4523 * @callback_method_impl{FNDBGFR3TYPEDUMP, The 'dti' command dumper callback.}
4524 */
4525static DECLCALLBACK(int) dbgcCmdDumpTypeInfoCallback(uint32_t off, const char *pszField, uint32_t iLvl,
4526 const char *pszType, uint32_t fTypeFlags,
4527 uint32_t cElements, void *pvUser)
4528{
4529 PDBGCCMDHLP pCmdHlp = (PDBGCCMDHLP)pvUser;
4530
4531 /* Pad with spaces to match the level. */
4532 for (uint32_t i = 0; i < iLvl; i++)
4533 DBGCCmdHlpPrintf(pCmdHlp, " ");
4534
4535 size_t cbWritten = 0;
4536 DBGCCmdHlpPrintfEx(pCmdHlp, &cbWritten, "+0x%04x %s", off, pszField);
4537 while (cbWritten < 32)
4538 {
4539 /* Fill with spaces to get proper aligning. */
4540 DBGCCmdHlpPrintf(pCmdHlp, " ");
4541 cbWritten++;
4542 }
4543
4544 DBGCCmdHlpPrintf(pCmdHlp, ": ");
4545 if (fTypeFlags & DBGFTYPEREGMEMBER_F_ARRAY)
4546 DBGCCmdHlpPrintf(pCmdHlp, "[%u] ", cElements);
4547 if (fTypeFlags & DBGFTYPEREGMEMBER_F_POINTER)
4548 DBGCCmdHlpPrintf(pCmdHlp, "Ptr ");
4549 DBGCCmdHlpPrintf(pCmdHlp, "%s\n", pszType);
4550
4551 return VINF_SUCCESS;
4552}
4553
4554
4555/**
4556 * @callback_method_impl{FNDBGCCMD, The 'dti' command.}
4557 */
4558static DECLCALLBACK(int) dbgcCmdDumpTypeInfo(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
4559{
4560 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
4561 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs == 1 || cArgs == 2);
4562 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, paArgs[0].enmType == DBGCVAR_TYPE_STRING);
4563 if (cArgs == 2)
4564 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, paArgs[1].enmType == DBGCVAR_TYPE_NUMBER);
4565
4566 uint32_t cLvlMax = cArgs == 2 ? (uint32_t)paArgs[1].u.u64Number : UINT32_MAX;
4567 return DBGFR3TypeDumpEx(pUVM, paArgs[0].u.pszString, 0 /* fFlags */, cLvlMax,
4568 dbgcCmdDumpTypeInfoCallback, pCmdHlp);
4569}
4570
4571
4572static void dbgcCmdDumpTypedValCallbackBuiltin(PDBGCCMDHLP pCmdHlp, DBGFTYPEBUILTIN enmType, size_t cbType,
4573 PDBGFTYPEVALBUF pValBuf)
4574{
4575 switch (enmType)
4576 {
4577 case DBGFTYPEBUILTIN_UINT8:
4578 DBGCCmdHlpPrintf(pCmdHlp, "%RU8", pValBuf->u8);
4579 break;
4580 case DBGFTYPEBUILTIN_INT8:
4581 DBGCCmdHlpPrintf(pCmdHlp, "%RI8", pValBuf->i8);
4582 break;
4583 case DBGFTYPEBUILTIN_UINT16:
4584 DBGCCmdHlpPrintf(pCmdHlp, "%RU16", pValBuf->u16);
4585 break;
4586 case DBGFTYPEBUILTIN_INT16:
4587 DBGCCmdHlpPrintf(pCmdHlp, "%RI16", pValBuf->i16);
4588 break;
4589 case DBGFTYPEBUILTIN_UINT32:
4590 DBGCCmdHlpPrintf(pCmdHlp, "%RU32", pValBuf->u32);
4591 break;
4592 case DBGFTYPEBUILTIN_INT32:
4593 DBGCCmdHlpPrintf(pCmdHlp, "%RI32", pValBuf->i32);
4594 break;
4595 case DBGFTYPEBUILTIN_UINT64:
4596 DBGCCmdHlpPrintf(pCmdHlp, "%RU64", pValBuf->u64);
4597 break;
4598 case DBGFTYPEBUILTIN_INT64:
4599 DBGCCmdHlpPrintf(pCmdHlp, "%RI64", pValBuf->i64);
4600 break;
4601 case DBGFTYPEBUILTIN_PTR32:
4602 DBGCCmdHlpPrintf(pCmdHlp, "%RX32", pValBuf->GCPtr);
4603 break;
4604 case DBGFTYPEBUILTIN_PTR64:
4605 DBGCCmdHlpPrintf(pCmdHlp, "%RX64", pValBuf->GCPtr);
4606 break;
4607 case DBGFTYPEBUILTIN_PTR:
4608 if (cbType == sizeof(uint32_t))
4609 DBGCCmdHlpPrintf(pCmdHlp, "%RX32", pValBuf->GCPtr);
4610 else if (cbType == sizeof(uint64_t))
4611 DBGCCmdHlpPrintf(pCmdHlp, "%RX64", pValBuf->GCPtr);
4612 else
4613 DBGCCmdHlpPrintf(pCmdHlp, "<Unsupported pointer width %u>", cbType);
4614 break;
4615 case DBGFTYPEBUILTIN_SIZE:
4616 if (cbType == sizeof(uint32_t))
4617 DBGCCmdHlpPrintf(pCmdHlp, "%RU32", pValBuf->size);
4618 else if (cbType == sizeof(uint64_t))
4619 DBGCCmdHlpPrintf(pCmdHlp, "%RU64", pValBuf->size);
4620 else
4621 DBGCCmdHlpPrintf(pCmdHlp, "<Unsupported size width %u>", cbType);
4622 break;
4623 case DBGFTYPEBUILTIN_FLOAT32:
4624 case DBGFTYPEBUILTIN_FLOAT64:
4625 case DBGFTYPEBUILTIN_COMPOUND:
4626 default:
4627 AssertMsgFailed(("Invalid built-in type: %d\n", enmType));
4628 }
4629}
4630
4631/**
4632 * @callback_method_impl{FNDBGFR3TYPEDUMP, The 'dtv' command dumper callback.}
4633 */
4634static DECLCALLBACK(int) dbgcCmdDumpTypedValCallback(uint32_t off, const char *pszField, uint32_t iLvl,
4635 DBGFTYPEBUILTIN enmType, size_t cbType,
4636 PDBGFTYPEVALBUF pValBuf, uint32_t cValBufs,
4637 void *pvUser)
4638{
4639 PDBGCCMDHLP pCmdHlp = (PDBGCCMDHLP)pvUser;
4640
4641 /* Pad with spaces to match the level. */
4642 for (uint32_t i = 0; i < iLvl; i++)
4643 DBGCCmdHlpPrintf(pCmdHlp, " ");
4644
4645 size_t cbWritten = 0;
4646 DBGCCmdHlpPrintfEx(pCmdHlp, &cbWritten, "+0x%04x %s", off, pszField);
4647 while (cbWritten < 32)
4648 {
4649 /* Fill with spaces to get proper aligning. */
4650 DBGCCmdHlpPrintf(pCmdHlp, " ");
4651 cbWritten++;
4652 }
4653
4654 DBGCCmdHlpPrintf(pCmdHlp, ": ");
4655 if (cValBufs > 1)
4656 DBGCCmdHlpPrintf(pCmdHlp, "[%u] [ ", cValBufs);
4657
4658 for (uint32_t i = 0; i < cValBufs; i++)
4659 {
4660 dbgcCmdDumpTypedValCallbackBuiltin(pCmdHlp, enmType, cbType, pValBuf);
4661 if (i < cValBufs - 1)
4662 DBGCCmdHlpPrintf(pCmdHlp, " , ");
4663 pValBuf++;
4664 }
4665
4666 if (cValBufs > 1)
4667 DBGCCmdHlpPrintf(pCmdHlp, " ]");
4668 DBGCCmdHlpPrintf(pCmdHlp, "\n");
4669
4670 return VINF_SUCCESS;
4671}
4672
4673
4674/**
4675 * @callback_method_impl{FNDBGCCMD, The 'dtv' command.}
4676 */
4677static DECLCALLBACK(int) dbgcCmdDumpTypedVal(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
4678{
4679 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
4680 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs == 2 || cArgs == 3);
4681 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, paArgs[0].enmType == DBGCVAR_TYPE_STRING);
4682 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, DBGCVAR_ISGCPOINTER(paArgs[1].enmType));
4683 if (cArgs == 3)
4684 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, paArgs[2].enmType == DBGCVAR_TYPE_NUMBER);
4685
4686 /*
4687 * Make DBGF address and fix the range.
4688 */
4689 DBGFADDRESS Address;
4690 int rc = pCmdHlp->pfnVarToDbgfAddr(pCmdHlp, &paArgs[1], &Address);
4691 if (RT_FAILURE(rc))
4692 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "VarToDbgfAddr(,%Dv,)\n", &paArgs[1]);
4693
4694 uint32_t cLvlMax = cArgs == 3 ? (uint32_t)paArgs[2].u.u64Number : UINT32_MAX;
4695 return DBGFR3TypeValDumpEx(pUVM, &Address, paArgs[0].u.pszString, 0 /* fFlags */, cLvlMax,
4696 dbgcCmdDumpTypedValCallback, pCmdHlp);
4697}
4698
4699/**
4700 * @callback_method_impl{FNDBGCCMD, The 'm' command.}
4701 */
4702static DECLCALLBACK(int) dbgcCmdMemoryInfo(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
4703{
4704 DBGCCmdHlpPrintf(pCmdHlp, "Address: %DV\n", &paArgs[0]);
4705 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
4706 return dbgcCmdDumpPageHierarchy(pCmd, pCmdHlp, pUVM, paArgs, cArgs);
4707}
4708
4709
4710/**
4711 * Converts one or more variables into a byte buffer for a
4712 * given unit size.
4713 *
4714 * @returns VBox status codes:
4715 * @retval VERR_TOO_MUCH_DATA if the buffer is too small, bitched.
4716 * @retval VERR_INTERNAL_ERROR on bad variable type, bitched.
4717 * @retval VINF_SUCCESS on success.
4718 *
4719 * @param pvBuf The buffer to convert into.
4720 * @param pcbBuf The buffer size on input. The size of the result on output.
4721 * @param cbUnit The unit size to apply when converting.
4722 * The high bit is used to indicate unicode string.
4723 * @param paVars The array of variables to convert.
4724 * @param cVars The number of variables.
4725 */
4726int dbgcVarsToBytes(PDBGCCMDHLP pCmdHlp, void *pvBuf, uint32_t *pcbBuf, size_t cbUnit, PCDBGCVAR paVars, unsigned cVars)
4727{
4728 union
4729 {
4730 uint8_t *pu8;
4731 uint16_t *pu16;
4732 uint32_t *pu32;
4733 uint64_t *pu64;
4734 } u, uEnd;
4735 u.pu8 = (uint8_t *)pvBuf;
4736 uEnd.pu8 = u.pu8 + *pcbBuf;
4737
4738 unsigned i;
4739 for (i = 0; i < cVars && u.pu8 < uEnd.pu8; i++)
4740 {
4741 switch (paVars[i].enmType)
4742 {
4743 case DBGCVAR_TYPE_GC_FAR:
4744 case DBGCVAR_TYPE_GC_FLAT:
4745 case DBGCVAR_TYPE_GC_PHYS:
4746 case DBGCVAR_TYPE_HC_FLAT:
4747 case DBGCVAR_TYPE_HC_PHYS:
4748 case DBGCVAR_TYPE_NUMBER:
4749 {
4750 uint64_t u64 = paVars[i].u.u64Number;
4751 switch (cbUnit & 0x1f)
4752 {
4753 case 1:
4754 do
4755 {
4756 *u.pu8++ = u64;
4757 u64 >>= 8;
4758 } while (u64);
4759 break;
4760 case 2:
4761 do
4762 {
4763 *u.pu16++ = u64;
4764 u64 >>= 16;
4765 } while (u64);
4766 break;
4767 case 4:
4768 *u.pu32++ = u64;
4769 u64 >>= 32;
4770 if (u64)
4771 *u.pu32++ = u64;
4772 break;
4773 case 8:
4774 *u.pu64++ = u64;
4775 break;
4776 }
4777 break;
4778 }
4779
4780 case DBGCVAR_TYPE_STRING:
4781 case DBGCVAR_TYPE_SYMBOL:
4782 {
4783 const char *psz = paVars[i].u.pszString;
4784 size_t cbString = strlen(psz);
4785 if (cbUnit & RT_BIT_32(31))
4786 {
4787 /* Explode char to unit. */
4788 if (cbString > (uintptr_t)(uEnd.pu8 - u.pu8) * (cbUnit & 0x1f))
4789 {
4790 pCmdHlp->pfnVBoxError(pCmdHlp, VERR_TOO_MUCH_DATA, "Max %d bytes.\n", uEnd.pu8 - (uint8_t *)pvBuf);
4791 return VERR_TOO_MUCH_DATA;
4792 }
4793 while (*psz)
4794 {
4795 switch (cbUnit & 0x1f)
4796 {
4797 case 1: *u.pu8++ = *psz; break;
4798 case 2: *u.pu16++ = *psz; break;
4799 case 4: *u.pu32++ = *psz; break;
4800 case 8: *u.pu64++ = *psz; break;
4801 }
4802 psz++;
4803 }
4804 }
4805 else
4806 {
4807 /* Raw copy with zero padding if the size isn't aligned. */
4808 if (cbString > (uintptr_t)(uEnd.pu8 - u.pu8))
4809 {
4810 pCmdHlp->pfnVBoxError(pCmdHlp, VERR_TOO_MUCH_DATA, "Max %d bytes.\n", uEnd.pu8 - (uint8_t *)pvBuf);
4811 return VERR_TOO_MUCH_DATA;
4812 }
4813
4814 size_t cbCopy = cbString & ~(cbUnit - 1);
4815 memcpy(u.pu8, psz, cbCopy);
4816 u.pu8 += cbCopy;
4817 psz += cbCopy;
4818
4819 size_t cbReminder = cbString & (cbUnit - 1);
4820 if (cbReminder)
4821 {
4822 memcpy(u.pu8, psz, cbString & (cbUnit - 1));
4823 memset(u.pu8 + cbReminder, 0, cbUnit - cbReminder);
4824 u.pu8 += cbUnit;
4825 }
4826 }
4827 break;
4828 }
4829
4830 default:
4831 *pcbBuf = u.pu8 - (uint8_t *)pvBuf;
4832 pCmdHlp->pfnVBoxError(pCmdHlp, VERR_INTERNAL_ERROR,
4833 "i=%d enmType=%d\n", i, paVars[i].enmType);
4834 return VERR_INTERNAL_ERROR;
4835 }
4836 }
4837 *pcbBuf = u.pu8 - (uint8_t *)pvBuf;
4838 if (i != cVars)
4839 {
4840 pCmdHlp->pfnVBoxError(pCmdHlp, VERR_TOO_MUCH_DATA, "Max %d bytes.\n", uEnd.pu8 - (uint8_t *)pvBuf);
4841 return VERR_TOO_MUCH_DATA;
4842 }
4843 return VINF_SUCCESS;
4844}
4845
4846
4847/**
4848 * @callback_method_impl{FNDBGCCMD, The 'eb'\, 'ew'\, 'ed' and 'eq' commands.}
4849 */
4850static DECLCALLBACK(int) dbgcCmdEditMem(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
4851{
4852 /*
4853 * Validate input.
4854 */
4855 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs >= 2);
4856 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, DBGCVAR_ISPOINTER(paArgs[0].enmType));
4857 for (unsigned iArg = 1; iArg < cArgs; iArg++)
4858 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, paArgs[iArg].enmType == DBGCVAR_TYPE_NUMBER);
4859 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
4860
4861 /*
4862 * Figure out the element size.
4863 */
4864 unsigned cbElement;
4865 switch (pCmd->pszCmd[1])
4866 {
4867 default:
4868 case 'b': cbElement = 1; break;
4869 case 'w': cbElement = 2; break;
4870 case 'd': cbElement = 4; break;
4871 case 'q': cbElement = 8; break;
4872 }
4873
4874 /*
4875 * Do setting.
4876 */
4877 DBGCVAR Addr = paArgs[0];
4878 for (unsigned iArg = 1;;)
4879 {
4880 size_t cbWritten;
4881 int rc = pCmdHlp->pfnMemWrite(pCmdHlp, &paArgs[iArg].u, cbElement, &Addr, &cbWritten);
4882 if (RT_FAILURE(rc))
4883 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "Writing memory at %DV.\n", &Addr);
4884 if (cbWritten != cbElement)
4885 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Only wrote %u out of %u bytes!\n", cbWritten, cbElement);
4886
4887 /* advance. */
4888 iArg++;
4889 if (iArg >= cArgs)
4890 break;
4891 rc = DBGCCmdHlpEval(pCmdHlp, &Addr, "%Dv + %#x", &Addr, cbElement);
4892 if (RT_FAILURE(rc))
4893 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "%%(%Dv)", &paArgs[0]);
4894 }
4895
4896 return VINF_SUCCESS;
4897}
4898
4899
4900/**
4901 * Executes the search.
4902 *
4903 * @returns VBox status code.
4904 * @param pCmdHlp The command helpers.
4905 * @param pUVM The user mode VM handle.
4906 * @param pAddress The address to start searching from. (undefined on output)
4907 * @param cbRange The address range to search. Must not wrap.
4908 * @param pabBytes The byte pattern to search for.
4909 * @param cbBytes The size of the pattern.
4910 * @param cbUnit The search unit.
4911 * @param cMaxHits The max number of hits.
4912 * @param pResult Where to store the result if it's a function invocation.
4913 */
4914static int dbgcCmdWorkerSearchMemDoIt(PDBGCCMDHLP pCmdHlp, PUVM pUVM, PDBGFADDRESS pAddress, RTGCUINTPTR cbRange,
4915 const uint8_t *pabBytes, uint32_t cbBytes,
4916 uint32_t cbUnit, uint64_t cMaxHits, PDBGCVAR pResult)
4917{
4918 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
4919
4920 /*
4921 * Do the search.
4922 */
4923 uint64_t cHits = 0;
4924 for (;;)
4925 {
4926 /* search */
4927 DBGFADDRESS HitAddress;
4928 int rc = DBGFR3MemScan(pUVM, pDbgc->idCpu, pAddress, cbRange, 1, pabBytes, cbBytes, &HitAddress);
4929 if (RT_FAILURE(rc))
4930 {
4931 if (rc != VERR_DBGF_MEM_NOT_FOUND)
4932 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "DBGFR3MemScan\n");
4933
4934 /* update the current address so we can save it (later). */
4935 pAddress->off += cbRange;
4936 pAddress->FlatPtr += cbRange;
4937 cbRange = 0;
4938 break;
4939 }
4940
4941 /* report result */
4942 DBGCVAR VarCur;
4943 rc = DBGCCmdHlpVarFromDbgfAddr(pCmdHlp, &HitAddress, &VarCur);
4944 if (RT_FAILURE(rc))
4945 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "DBGCCmdHlpVarFromDbgfAddr\n");
4946 if (!pResult)
4947 pCmdHlp->pfnExec(pCmdHlp, "db %DV LB 10", &VarCur);
4948 else
4949 DBGCVAR_ASSIGN(pResult, &VarCur);
4950
4951 /* advance */
4952 cbRange -= HitAddress.FlatPtr - pAddress->FlatPtr;
4953 *pAddress = HitAddress;
4954 pAddress->FlatPtr += cbBytes;
4955 pAddress->off += cbBytes;
4956 if (cbRange <= cbBytes)
4957 {
4958 cbRange = 0;
4959 break;
4960 }
4961 cbRange -= cbBytes;
4962
4963 if (++cHits >= cMaxHits)
4964 {
4965 /// @todo save the search.
4966 break;
4967 }
4968 }
4969
4970 /*
4971 * Save the search so we can resume it...
4972 */
4973 if (pDbgc->abSearch != pabBytes)
4974 {
4975 memcpy(pDbgc->abSearch, pabBytes, cbBytes);
4976 pDbgc->cbSearch = cbBytes;
4977 pDbgc->cbSearchUnit = cbUnit;
4978 }
4979 pDbgc->cMaxSearchHits = cMaxHits;
4980 pDbgc->SearchAddr = *pAddress;
4981 pDbgc->cbSearchRange = cbRange;
4982
4983 return cHits ? VINF_SUCCESS : VERR_DBGC_COMMAND_FAILED;
4984}
4985
4986
4987/**
4988 * Resumes the previous search.
4989 *
4990 * @returns VBox status code.
4991 * @param pCmdHlp Pointer to the command helper functions.
4992 * @param pUVM The user mode VM handle.
4993 * @param pResult Where to store the result of a function invocation.
4994 */
4995static int dbgcCmdWorkerSearchMemResume(PDBGCCMDHLP pCmdHlp, PUVM pUVM, PDBGCVAR pResult)
4996{
4997 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
4998
4999 /*
5000 * Make sure there is a previous command.
5001 */
5002 if (!pDbgc->cbSearch)
5003 {
5004 DBGCCmdHlpPrintf(pCmdHlp, "Error: No previous search\n");
5005 return VERR_DBGC_COMMAND_FAILED;
5006 }
5007
5008 /*
5009 * Make range and address adjustments.
5010 */
5011 DBGFADDRESS Address = pDbgc->SearchAddr;
5012 if (Address.FlatPtr == ~(RTGCUINTPTR)0)
5013 {
5014 Address.FlatPtr -= Address.off;
5015 Address.off = 0;
5016 }
5017
5018 RTGCUINTPTR cbRange = pDbgc->cbSearchRange;
5019 if (!cbRange)
5020 cbRange = ~(RTGCUINTPTR)0;
5021 if (Address.FlatPtr + cbRange < pDbgc->SearchAddr.FlatPtr)
5022 cbRange = ~(RTGCUINTPTR)0 - pDbgc->SearchAddr.FlatPtr + !!pDbgc->SearchAddr.FlatPtr;
5023
5024 return dbgcCmdWorkerSearchMemDoIt(pCmdHlp, pUVM, &Address, cbRange, pDbgc->abSearch, pDbgc->cbSearch,
5025 pDbgc->cbSearchUnit, pDbgc->cMaxSearchHits, pResult);
5026}
5027
5028
5029/**
5030 * Search memory, worker for the 's' and 's?' functions.
5031 *
5032 * @returns VBox status code.
5033 * @param pCmdHlp Pointer to the command helper functions.
5034 * @param pUVM The user mode VM handle.
5035 * @param pAddress Where to start searching. If no range, search till end of address space.
5036 * @param cMaxHits The maximum number of hits.
5037 * @param chType The search type.
5038 * @param paPatArgs The pattern variable array.
5039 * @param cPatArgs Number of pattern variables.
5040 * @param pResult Where to store the result of a function invocation.
5041 */
5042static int dbgcCmdWorkerSearchMem(PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR pAddress, uint64_t cMaxHits, char chType,
5043 PCDBGCVAR paPatArgs, unsigned cPatArgs, PDBGCVAR pResult)
5044{
5045 if (pResult)
5046 DBGCVAR_INIT_GC_FLAT(pResult, 0);
5047
5048 /*
5049 * Convert the search pattern into bytes and DBGFR3MemScan can deal with.
5050 */
5051 uint32_t cbUnit;
5052 switch (chType)
5053 {
5054 case 'a':
5055 case 'b': cbUnit = 1; break;
5056 case 'u': cbUnit = 2 | RT_BIT_32(31); break;
5057 case 'w': cbUnit = 2; break;
5058 case 'd': cbUnit = 4; break;
5059 case 'q': cbUnit = 8; break;
5060 default:
5061 return pCmdHlp->pfnVBoxError(pCmdHlp, VERR_INVALID_PARAMETER, "chType=%c\n", chType);
5062 }
5063 uint8_t abBytes[RT_SIZEOFMEMB(DBGC, abSearch)];
5064 uint32_t cbBytes = sizeof(abBytes);
5065 int rc = dbgcVarsToBytes(pCmdHlp, abBytes, &cbBytes, cbUnit, paPatArgs, cPatArgs);
5066 if (RT_FAILURE(rc))
5067 return VERR_DBGC_COMMAND_FAILED;
5068
5069 /*
5070 * Make DBGF address and fix the range.
5071 */
5072 DBGFADDRESS Address;
5073 rc = pCmdHlp->pfnVarToDbgfAddr(pCmdHlp, pAddress, &Address);
5074 if (RT_FAILURE(rc))
5075 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "VarToDbgfAddr(,%Dv,)\n", pAddress);
5076
5077 RTGCUINTPTR cbRange;
5078 switch (pAddress->enmRangeType)
5079 {
5080 case DBGCVAR_RANGE_BYTES:
5081 cbRange = pAddress->u64Range;
5082 if (cbRange != pAddress->u64Range)
5083 cbRange = ~(RTGCUINTPTR)0;
5084 break;
5085
5086 case DBGCVAR_RANGE_ELEMENTS:
5087 cbRange = (RTGCUINTPTR)(pAddress->u64Range * cbUnit);
5088 if ( cbRange != pAddress->u64Range * cbUnit
5089 || cbRange < pAddress->u64Range)
5090 cbRange = ~(RTGCUINTPTR)0;
5091 break;
5092
5093 default:
5094 cbRange = ~(RTGCUINTPTR)0;
5095 break;
5096 }
5097 if (Address.FlatPtr + cbRange < Address.FlatPtr)
5098 cbRange = ~(RTGCUINTPTR)0 - Address.FlatPtr + !!Address.FlatPtr;
5099
5100 /*
5101 * Ok, do it.
5102 */
5103 return dbgcCmdWorkerSearchMemDoIt(pCmdHlp, pUVM, &Address, cbRange, abBytes, cbBytes, cbUnit, cMaxHits, pResult);
5104}
5105
5106
5107/**
5108 * @callback_method_impl{FNDBGCCMD, The 's' command.}
5109 */
5110static DECLCALLBACK(int) dbgcCmdSearchMem(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
5111{
5112 RT_NOREF2(pCmd, paArgs);
5113
5114 /* check that the parser did what it's supposed to do. */
5115 //if ( cArgs <= 2
5116 // && paArgs[0].enmType != DBGCVAR_TYPE_STRING)
5117 // return DBGCCmdHlpPrintf(pCmdHlp, "parser error\n");
5118
5119 /*
5120 * Repeat previous search?
5121 */
5122 if (cArgs == 0)
5123 return dbgcCmdWorkerSearchMemResume(pCmdHlp, pUVM, NULL);
5124
5125 /*
5126 * Parse arguments.
5127 */
5128
5129 return -1;
5130}
5131
5132
5133/**
5134 * @callback_method_impl{FNDBGCCMD, The 's?' command.}
5135 */
5136static DECLCALLBACK(int) dbgcCmdSearchMemType(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
5137{
5138 /* check that the parser did what it's supposed to do. */
5139 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs >= 2 && DBGCVAR_ISGCPOINTER(paArgs[0].enmType));
5140 return dbgcCmdWorkerSearchMem(pCmdHlp, pUVM, &paArgs[0], 25, pCmd->pszCmd[1], paArgs + 1, cArgs - 1, NULL);
5141}
5142
5143
5144/**
5145 * Matching function for interrupts event names.
5146 *
5147 * This parses the interrupt number and length.
5148 *
5149 * @returns True if match, false if not.
5150 * @param pPattern The user specified pattern to match.
5151 * @param pszEvtName The event name.
5152 * @param pCmdHlp Command helpers for warning about malformed stuff.
5153 * @param piFirst Where to return start interrupt number on success.
5154 * @param pcInts Where to return the number of interrupts on success.
5155 */
5156static bool dbgcEventIsMatchingInt(PCDBGCVAR pPattern, const char *pszEvtName, PDBGCCMDHLP pCmdHlp,
5157 uint8_t *piFirst, uint16_t *pcInts)
5158{
5159 /*
5160 * Ignore trailing hex digits when comparing with the event base name.
5161 */
5162 const char *pszPattern = pPattern->u.pszString;
5163 const char *pszEnd = RTStrEnd(pszPattern, RTSTR_MAX);
5164 while ( (uintptr_t)pszEnd > (uintptr_t)pszPattern
5165 && RT_C_IS_XDIGIT(pszEnd[-1]))
5166 pszEnd -= 1;
5167 if (RTStrSimplePatternNMatch(pszPattern, pszEnd - pszPattern, pszEvtName, RTSTR_MAX))
5168 {
5169 /*
5170 * Parse the index and length.
5171 */
5172 if (!*pszEnd)
5173 *piFirst = 0;
5174 else
5175 {
5176 int rc = RTStrToUInt8Full(pszEnd, 16, piFirst);
5177 if (rc != VINF_SUCCESS)
5178 {
5179 if (RT_FAILURE(rc))
5180 *piFirst = 0;
5181 DBGCCmdHlpPrintf(pCmdHlp, "Warning: %Rrc parsing '%s' - interpreting it as %#x\n", rc, pszEnd, *piFirst);
5182 }
5183 }
5184
5185 if (pPattern->enmRangeType == DBGCVAR_RANGE_NONE)
5186 *pcInts = 1;
5187 else
5188 *pcInts = RT_MAX(RT_MIN((uint16_t)pPattern->u64Range, 256 - *piFirst), 1);
5189 return true;
5190 }
5191 return false;
5192}
5193
5194
5195/**
5196 * Updates a DBGC event config.
5197 *
5198 * @returns VINF_SUCCESS or VERR_NO_MEMORY.
5199 * @param ppEvtCfg The event configuration entry to update.
5200 * @param pszCmd The new command. Leave command alone if NULL.
5201 * @param enmEvtState The new event state.
5202 * @param fChangeCmdOnly Whether to only update the command.
5203 */
5204static int dbgcEventUpdate(PDBGCEVTCFG *ppEvtCfg, const char *pszCmd, DBGCEVTSTATE enmEvtState, bool fChangeCmdOnly)
5205{
5206 PDBGCEVTCFG pEvtCfg = *ppEvtCfg;
5207
5208 /*
5209 * If we've got a command string, update the command too.
5210 */
5211 if (pszCmd)
5212 {
5213 size_t cchCmd = strlen(pszCmd);
5214 if ( !cchCmd
5215 && ( !fChangeCmdOnly
5216 ? enmEvtState == kDbgcEvtState_Disabled
5217 : !pEvtCfg || pEvtCfg->enmState == kDbgcEvtState_Disabled))
5218 {
5219 /* NULL entry is fine if no command and disabled. */
5220 RTMemFree(pEvtCfg);
5221 *ppEvtCfg = NULL;
5222 }
5223 else
5224 {
5225 if (!pEvtCfg || pEvtCfg->cchCmd < cchCmd)
5226 {
5227 RTMemFree(pEvtCfg);
5228 *ppEvtCfg = pEvtCfg = (PDBGCEVTCFG)RTMemAlloc(RT_OFFSETOF(DBGCEVTCFG, szCmd[cchCmd + 1]));
5229 if (!pEvtCfg)
5230 return VERR_NO_MEMORY;
5231 }
5232 pEvtCfg->enmState = enmEvtState;
5233 pEvtCfg->cchCmd = cchCmd;
5234 memcpy(pEvtCfg->szCmd, pszCmd, cchCmd + 1);
5235 }
5236 }
5237 /*
5238 * Update existing or enable new. If NULL and not enabled, we can keep it that way.
5239 */
5240 else if (pEvtCfg || enmEvtState != kDbgcEvtState_Disabled)
5241 {
5242 if (!pEvtCfg)
5243 {
5244 *ppEvtCfg = pEvtCfg = (PDBGCEVTCFG)RTMemAlloc(sizeof(DBGCEVTCFG));
5245 if (!pEvtCfg)
5246 return VERR_NO_MEMORY;
5247 pEvtCfg->cchCmd = 0;
5248 pEvtCfg->szCmd[0] = '\0';
5249 }
5250 pEvtCfg->enmState = enmEvtState;
5251 }
5252
5253 return VINF_SUCCESS;
5254}
5255
5256
5257/**
5258 * Record one settings change for a plain event.
5259 *
5260 * @returns The new @a cIntCfgs value.
5261 * @param paEventCfgs The event setttings array. Must have DBGFEVENT_END
5262 * entries.
5263 * @param cEventCfgs The current number of entries in @a paEventCfgs.
5264 * @param enmType The event to change the settings for.
5265 * @param enmEvtState The new event state.
5266 * @param iSxEvt Index into the g_aDbgcSxEvents array.
5267 *
5268 * @remarks We use abUnused[0] for the enmEvtState, while abUnused[1] and
5269 * abUnused[2] are used for iSxEvt.
5270 */
5271static uint32_t dbgcEventAddPlainConfig(PDBGFEVENTCONFIG paEventCfgs, uint32_t cEventCfgs, DBGFEVENTTYPE enmType,
5272 DBGCEVTSTATE enmEvtState, uint16_t iSxEvt)
5273{
5274 uint32_t iCfg;
5275 for (iCfg = 0; iCfg < cEventCfgs; iCfg++)
5276 if (paEventCfgs[iCfg].enmType == enmType)
5277 break;
5278 if (iCfg == cEventCfgs)
5279 {
5280 Assert(cEventCfgs < DBGFEVENT_END);
5281 paEventCfgs[iCfg].enmType = enmType;
5282 cEventCfgs++;
5283 }
5284 paEventCfgs[iCfg].fEnabled = enmEvtState > kDbgcEvtState_Disabled;
5285 paEventCfgs[iCfg].abUnused[0] = enmEvtState;
5286 paEventCfgs[iCfg].abUnused[1] = (uint8_t)iSxEvt;
5287 paEventCfgs[iCfg].abUnused[2] = (uint8_t)(iSxEvt >> 8);
5288 return cEventCfgs;
5289}
5290
5291
5292/**
5293 * Record one or more interrupt event config changes.
5294 *
5295 * @returns The new @a cIntCfgs value.
5296 * @param paIntCfgs Interrupt confiruation array. Must have 256 entries.
5297 * @param cIntCfgs The current number of entries in @a paIntCfgs.
5298 * @param iInt The interrupt number to start with.
5299 * @param cInts The number of interrupts to change.
5300 * @param pszName The settings name (hwint/swint).
5301 * @param enmEvtState The new event state.
5302 * @param bIntOp The new DBGF interrupt state.
5303 */
5304static uint32_t dbgcEventAddIntConfig(PDBGFINTERRUPTCONFIG paIntCfgs, uint32_t cIntCfgs, uint8_t iInt, uint16_t cInts,
5305 const char *pszName, DBGCEVTSTATE enmEvtState, uint8_t bIntOp)
5306{
5307 bool const fHwInt = *pszName == 'h';
5308
5309 bIntOp |= (uint8_t)enmEvtState << 4;
5310 uint8_t const bSoftState = !fHwInt ? bIntOp : DBGFINTERRUPTSTATE_DONT_TOUCH;
5311 uint8_t const bHardState = fHwInt ? bIntOp : DBGFINTERRUPTSTATE_DONT_TOUCH;
5312
5313 while (cInts > 0)
5314 {
5315 uint32_t iCfg;
5316 for (iCfg = 0; iCfg < cIntCfgs; iCfg++)
5317 if (paIntCfgs[iCfg].iInterrupt == iInt)
5318 break;
5319 if (iCfg == cIntCfgs)
5320 break;
5321 if (fHwInt)
5322 paIntCfgs[iCfg].enmHardState = bHardState;
5323 else
5324 paIntCfgs[iCfg].enmSoftState = bSoftState;
5325 iInt++;
5326 cInts--;
5327 }
5328
5329 while (cInts > 0)
5330 {
5331 Assert(cIntCfgs < 256);
5332 paIntCfgs[cIntCfgs].iInterrupt = iInt;
5333 paIntCfgs[cIntCfgs].enmHardState = bHardState;
5334 paIntCfgs[cIntCfgs].enmSoftState = bSoftState;
5335 cIntCfgs++;
5336 iInt++;
5337 cInts--;
5338 }
5339
5340 return cIntCfgs;
5341}
5342
5343
5344/**
5345 * Applies event settings changes to DBGC and DBGF.
5346 *
5347 * @returns VBox status code (fully bitched)
5348 * @param pCmdHlp The command helpers.
5349 * @param pUVM The user mode VM handle.
5350 * @param paIntCfgs Interrupt configuration array. We use the upper 4
5351 * bits of the settings for the DBGCEVTSTATE. This
5352 * will be cleared.
5353 * @param cIntCfgs Number of interrupt configuration changes.
5354 * @param paEventCfgs The generic event configuration array. We use the
5355 * abUnused[0] member for the DBGCEVTSTATE, and
5356 * abUnused[2:1] for the g_aDbgcSxEvents index.
5357 * @param cEventCfgs The number of generic event settings changes.
5358 * @param pszCmd The commands to associate with the changed events.
5359 * If this is NULL, don't touch the command.
5360 * @param fChangeCmdOnly Whether to only change the commands (sx-).
5361 */
5362static int dbgcEventApplyChanges(PDBGCCMDHLP pCmdHlp, PUVM pUVM, PDBGFINTERRUPTCONFIG paIntCfgs, uint32_t cIntCfgs,
5363 PCDBGFEVENTCONFIG paEventCfgs, uint32_t cEventCfgs, const char *pszCmd, bool fChangeCmdOnly)
5364{
5365 int rc;
5366
5367 /*
5368 * Apply changes to DBGC. This can only fail with out of memory error.
5369 */
5370 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
5371 if (cIntCfgs)
5372 for (uint32_t iCfg = 0; iCfg < cIntCfgs; iCfg++)
5373 {
5374 DBGCEVTSTATE enmEvtState = (DBGCEVTSTATE)(paIntCfgs[iCfg].enmHardState >> 4);
5375 paIntCfgs[iCfg].enmHardState &= 0xf;
5376 if (paIntCfgs[iCfg].enmHardState != DBGFINTERRUPTSTATE_DONT_TOUCH)
5377 {
5378 rc = dbgcEventUpdate(&pDbgc->apHardInts[paIntCfgs[iCfg].iInterrupt], pszCmd, enmEvtState, fChangeCmdOnly);
5379 if (RT_FAILURE(rc))
5380 return rc;
5381 }
5382
5383 enmEvtState = (DBGCEVTSTATE)(paIntCfgs[iCfg].enmSoftState >> 4);
5384 paIntCfgs[iCfg].enmSoftState &= 0xf;
5385 if (paIntCfgs[iCfg].enmSoftState != DBGFINTERRUPTSTATE_DONT_TOUCH)
5386 {
5387 rc = dbgcEventUpdate(&pDbgc->apSoftInts[paIntCfgs[iCfg].iInterrupt], pszCmd, enmEvtState, fChangeCmdOnly);
5388 if (RT_FAILURE(rc))
5389 return rc;
5390 }
5391 }
5392
5393 if (cEventCfgs)
5394 {
5395 for (uint32_t iCfg = 0; iCfg < cEventCfgs; iCfg++)
5396 {
5397 Assert((unsigned)paEventCfgs[iCfg].enmType < RT_ELEMENTS(pDbgc->apEventCfgs));
5398 uint16_t iSxEvt = RT_MAKE_U16(paEventCfgs[iCfg].abUnused[1], paEventCfgs[iCfg].abUnused[2]);
5399 Assert(iSxEvt < RT_ELEMENTS(g_aDbgcSxEvents));
5400 rc = dbgcEventUpdate(&pDbgc->apEventCfgs[iSxEvt], pszCmd, (DBGCEVTSTATE)paEventCfgs[iCfg].abUnused[0], fChangeCmdOnly);
5401 if (RT_FAILURE(rc))
5402 return rc;
5403 }
5404 }
5405
5406 /*
5407 * Apply changes to DBGF.
5408 */
5409 if (!fChangeCmdOnly)
5410 {
5411 if (cIntCfgs)
5412 {
5413 rc = DBGFR3InterruptConfigEx(pUVM, paIntCfgs, cIntCfgs);
5414 if (RT_FAILURE(rc))
5415 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "DBGFR3InterruptConfigEx: %Rrc\n", rc);
5416 }
5417 if (cEventCfgs)
5418 {
5419 rc = DBGFR3EventConfigEx(pUVM, paEventCfgs, cEventCfgs);
5420 if (RT_FAILURE(rc))
5421 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "DBGFR3EventConfigEx: %Rrc\n", rc);
5422 }
5423 }
5424
5425 return VINF_SUCCESS;
5426}
5427
5428
5429/**
5430 * @callback_method_impl{FNDBGCCMD, The 'sx[eni-]' commands.}
5431 */
5432static DECLCALLBACK(int) dbgcCmdEventCtrl(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
5433{
5434 /*
5435 * Figure out which command this is.
5436 */
5437 uint8_t bIntOp;
5438 DBGCEVTSTATE enmEvtState;
5439 bool fChangeCmdOnly;
5440 switch (pCmd->pszCmd[2])
5441 {
5442 case 'e': bIntOp = DBGFINTERRUPTSTATE_ENABLED; enmEvtState = kDbgcEvtState_Enabled; fChangeCmdOnly = false; break;
5443 case 'n': bIntOp = DBGFINTERRUPTSTATE_ENABLED; enmEvtState = kDbgcEvtState_Notify; fChangeCmdOnly = false; break;
5444 case '-': bIntOp = DBGFINTERRUPTSTATE_ENABLED; enmEvtState = kDbgcEvtState_Invalid; fChangeCmdOnly = true; break;
5445 case 'i': bIntOp = DBGFINTERRUPTSTATE_DISABLED; enmEvtState = kDbgcEvtState_Disabled; fChangeCmdOnly = false; break;
5446 default:
5447 return DBGCCmdHlpVBoxError(pCmdHlp, VERR_INVALID_PARAMETER, "pszCmd=%s\n", pCmd->pszCmd);
5448 }
5449
5450 /*
5451 * Command option.
5452 */
5453 unsigned iArg = 0;
5454 const char *pszCmd = NULL;
5455 if ( cArgs >= iArg + 2
5456 && paArgs[iArg].enmType == DBGCVAR_TYPE_STRING
5457 && paArgs[iArg + 1].enmType == DBGCVAR_TYPE_STRING
5458 && strcmp(paArgs[iArg].u.pszString, "-c") == 0)
5459 {
5460 pszCmd = paArgs[iArg + 1].u.pszString;
5461 iArg += 2;
5462 }
5463 if (fChangeCmdOnly && !pszCmd)
5464 return DBGCCmdHlpVBoxError(pCmdHlp, VERR_INVALID_PARAMETER, "The 'sx-' requires the '-c cmd' arguments.\n");
5465
5466 /*
5467 * The remaining arguments are event specifiers to which the operation should be applied.
5468 */
5469 uint32_t cIntCfgs = 0;
5470 DBGFINTERRUPTCONFIG aIntCfgs[256];
5471 uint32_t cEventCfgs = 0;
5472 DBGFEVENTCONFIG aEventCfgs[DBGFEVENT_END];
5473
5474 for (; iArg < cArgs; iArg++)
5475 {
5476 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, iArg, paArgs[iArg].enmType == DBGCVAR_TYPE_STRING
5477 || paArgs[iArg].enmType == DBGCVAR_TYPE_SYMBOL);
5478 uint32_t cHits = 0;
5479 for (uint32_t iEvt = 0; iEvt < RT_ELEMENTS(g_aDbgcSxEvents); iEvt++)
5480 if (g_aDbgcSxEvents[iEvt].enmKind == kDbgcSxEventKind_Plain)
5481 {
5482 if ( RTStrSimplePatternMatch(paArgs[iArg].u.pszString, g_aDbgcSxEvents[iEvt].pszName)
5483 || ( g_aDbgcSxEvents[iEvt].pszAltNm
5484 && RTStrSimplePatternMatch(paArgs[iArg].u.pszString, g_aDbgcSxEvents[iEvt].pszAltNm)) )
5485 {
5486 cEventCfgs = dbgcEventAddPlainConfig(aEventCfgs, cEventCfgs, g_aDbgcSxEvents[iEvt].enmType,
5487 enmEvtState, iEvt);
5488 cHits++;
5489 }
5490 }
5491 else
5492 {
5493 Assert(g_aDbgcSxEvents[iEvt].enmKind == kDbgcSxEventKind_Interrupt);
5494 uint8_t iInt;
5495 uint16_t cInts;
5496 if (dbgcEventIsMatchingInt(&paArgs[iArg], g_aDbgcSxEvents[iEvt].pszName, pCmdHlp, &iInt, &cInts))
5497 {
5498 cIntCfgs = dbgcEventAddIntConfig(aIntCfgs, cIntCfgs, iInt, cInts, g_aDbgcSxEvents[iEvt].pszName,
5499 enmEvtState, bIntOp);
5500 cHits++;
5501 }
5502 }
5503 if (!cHits)
5504 return DBGCCmdHlpVBoxError(pCmdHlp, VERR_INVALID_PARAMETER, "Unknown event: '%s'\n", paArgs[iArg].u.pszString);
5505 }
5506
5507 /*
5508 * Apply the changes.
5509 */
5510 return dbgcEventApplyChanges(pCmdHlp, pUVM, aIntCfgs, cIntCfgs, aEventCfgs, cEventCfgs, pszCmd, fChangeCmdOnly);
5511}
5512
5513
5514/**
5515 * @callback_method_impl{FNDBGCCMD, The 'sxr' commands.}
5516 */
5517static DECLCALLBACK(int) dbgcCmdEventCtrlReset(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
5518{
5519 RT_NOREF1(pCmd);
5520 uint32_t cEventCfgs = 0;
5521 DBGFEVENTCONFIG aEventCfgs[DBGFEVENT_END];
5522 uint32_t cIntCfgs = 0;
5523 DBGFINTERRUPTCONFIG aIntCfgs[256];
5524
5525 if (cArgs == 0)
5526 {
5527 /*
5528 * All events.
5529 */
5530 for (uint32_t iInt = 0; iInt < 256; iInt++)
5531 {
5532 aIntCfgs[iInt].iInterrupt = iInt;
5533 aIntCfgs[iInt].enmHardState = DBGFINTERRUPTSTATE_DONT_TOUCH;
5534 aIntCfgs[iInt].enmSoftState = DBGFINTERRUPTSTATE_DONT_TOUCH;
5535 }
5536 cIntCfgs = 256;
5537
5538 for (uint32_t iEvt = 0; iEvt < RT_ELEMENTS(g_aDbgcSxEvents); iEvt++)
5539 if (g_aDbgcSxEvents[iEvt].enmKind == kDbgcSxEventKind_Plain)
5540 {
5541 aEventCfgs[cEventCfgs].enmType = g_aDbgcSxEvents[iEvt].enmType;
5542 aEventCfgs[cEventCfgs].fEnabled = g_aDbgcSxEvents[iEvt].enmDefault > kDbgcEvtState_Disabled;
5543 aEventCfgs[cEventCfgs].abUnused[0] = g_aDbgcSxEvents[iEvt].enmDefault;
5544 aEventCfgs[cEventCfgs].abUnused[1] = (uint8_t)iEvt;
5545 aEventCfgs[cEventCfgs].abUnused[2] = (uint8_t)(iEvt >> 8);
5546 cEventCfgs++;
5547 }
5548 else
5549 {
5550 uint8_t const bState = ( g_aDbgcSxEvents[iEvt].enmDefault > kDbgcEvtState_Disabled
5551 ? DBGFINTERRUPTSTATE_ENABLED : DBGFINTERRUPTSTATE_DISABLED)
5552 | ((uint8_t)g_aDbgcSxEvents[iEvt].enmDefault << 4);
5553 if (strcmp(g_aDbgcSxEvents[iEvt].pszName, "hwint") == 0)
5554 for (uint32_t iInt = 0; iInt < 256; iInt++)
5555 aIntCfgs[iInt].enmHardState = bState;
5556 else
5557 for (uint32_t iInt = 0; iInt < 256; iInt++)
5558 aIntCfgs[iInt].enmSoftState = bState;
5559 }
5560 }
5561 else
5562 {
5563 /*
5564 * Selected events.
5565 */
5566 for (uint32_t iArg = 0; iArg < cArgs; iArg++)
5567 {
5568 unsigned cHits = 0;
5569 for (uint32_t iEvt = 0; iEvt < RT_ELEMENTS(g_aDbgcSxEvents); iEvt++)
5570 if (g_aDbgcSxEvents[iEvt].enmKind == kDbgcSxEventKind_Plain)
5571 {
5572 if ( RTStrSimplePatternMatch(paArgs[iArg].u.pszString, g_aDbgcSxEvents[iEvt].pszName)
5573 || ( g_aDbgcSxEvents[iEvt].pszAltNm
5574 && RTStrSimplePatternMatch(paArgs[iArg].u.pszString, g_aDbgcSxEvents[iEvt].pszAltNm)) )
5575 {
5576 cEventCfgs = dbgcEventAddPlainConfig(aEventCfgs, cEventCfgs, g_aDbgcSxEvents[iEvt].enmType,
5577 g_aDbgcSxEvents[iEvt].enmDefault, iEvt);
5578 cHits++;
5579 }
5580 }
5581 else
5582 {
5583 Assert(g_aDbgcSxEvents[iEvt].enmKind == kDbgcSxEventKind_Interrupt);
5584 uint8_t iInt;
5585 uint16_t cInts;
5586 if (dbgcEventIsMatchingInt(&paArgs[iArg], g_aDbgcSxEvents[iEvt].pszName, pCmdHlp, &iInt, &cInts))
5587 {
5588 cIntCfgs = dbgcEventAddIntConfig(aIntCfgs, cIntCfgs, iInt, cInts, g_aDbgcSxEvents[iEvt].pszName,
5589 g_aDbgcSxEvents[iEvt].enmDefault,
5590 g_aDbgcSxEvents[iEvt].enmDefault > kDbgcEvtState_Disabled
5591 ? DBGFINTERRUPTSTATE_ENABLED : DBGFINTERRUPTSTATE_DISABLED);
5592 cHits++;
5593 }
5594 }
5595 if (!cHits)
5596 return DBGCCmdHlpVBoxError(pCmdHlp, VERR_INVALID_PARAMETER, "Unknown event: '%s'\n", paArgs[iArg].u.pszString);
5597 }
5598 }
5599
5600 /*
5601 * Apply the reset changes.
5602 */
5603 return dbgcEventApplyChanges(pCmdHlp, pUVM, aIntCfgs, cIntCfgs, aEventCfgs, cEventCfgs, "", false);
5604}
5605
5606
5607/**
5608 * Used during DBGC initialization to configure events with defaults.
5609 *
5610 * @returns VBox status code.
5611 * @param pDbgc The DBGC instance.
5612 */
5613void dbgcEventInit(PDBGC pDbgc)
5614{
5615 if (pDbgc->pUVM)
5616 dbgcCmdEventCtrlReset(NULL, &pDbgc->CmdHlp, pDbgc->pUVM, NULL, 0);
5617}
5618
5619
5620/**
5621 * Used during DBGC termination to disable all events.
5622 *
5623 * @param pDbgc The DBGC instance.
5624 */
5625void dbgcEventTerm(PDBGC pDbgc)
5626{
5627/** @todo need to do more than just reset later. */
5628 if (pDbgc->pUVM && VMR3GetStateU(pDbgc->pUVM) < VMSTATE_DESTROYING)
5629 dbgcCmdEventCtrlReset(NULL, &pDbgc->CmdHlp, pDbgc->pUVM, NULL, 0);
5630}
5631
5632
5633static void dbgcEventDisplay(PDBGCCMDHLP pCmdHlp, const char *pszName, DBGCEVTSTATE enmDefault, PDBGCEVTCFG const *ppEvtCfg)
5634{
5635 RT_NOREF1(enmDefault);
5636 PDBGCEVTCFG pEvtCfg = *ppEvtCfg;
5637
5638 const char *pszState;
5639 switch (pEvtCfg ? pEvtCfg->enmState : kDbgcEvtState_Disabled)
5640 {
5641 case kDbgcEvtState_Disabled: pszState = "ignore"; break;
5642 case kDbgcEvtState_Enabled: pszState = "enabled"; break;
5643 case kDbgcEvtState_Notify: pszState = "notify"; break;
5644 default:
5645 AssertFailed();
5646 pszState = "invalid";
5647 break;
5648 }
5649
5650 if (pEvtCfg && pEvtCfg->cchCmd > 0)
5651 DBGCCmdHlpPrintf(pCmdHlp, "%-22s %-7s \"%s\"\n", pszName, pszState, pEvtCfg->szCmd);
5652 else
5653 DBGCCmdHlpPrintf(pCmdHlp, "%-22s %s\n", pszName, pszState);
5654}
5655
5656
5657static void dbgcEventDisplayRange(PDBGCCMDHLP pCmdHlp, const char *pszBaseNm, DBGCEVTSTATE enmDefault,
5658 PDBGCEVTCFG const *papEvtCfgs, unsigned iCfg, unsigned cCfgs)
5659{
5660 do
5661 {
5662 PCDBGCEVTCFG pFirstCfg = papEvtCfgs[iCfg];
5663 if (pFirstCfg && pFirstCfg->enmState == kDbgcEvtState_Disabled && pFirstCfg->cchCmd == 0)
5664 pFirstCfg = NULL;
5665
5666 unsigned const iFirstCfg = iCfg;
5667 iCfg++;
5668 while (iCfg < cCfgs)
5669 {
5670 PCDBGCEVTCFG pCurCfg = papEvtCfgs[iCfg];
5671 if (pCurCfg && pCurCfg->enmState == kDbgcEvtState_Disabled && pCurCfg->cchCmd == 0)
5672 pCurCfg = NULL;
5673 if (pCurCfg != pFirstCfg)
5674 {
5675 if (!pCurCfg || !pFirstCfg)
5676 break;
5677 if (pCurCfg->enmState != pFirstCfg->enmState)
5678 break;
5679 if (pCurCfg->cchCmd != pFirstCfg->cchCmd)
5680 break;
5681 if (memcmp(pCurCfg->szCmd, pFirstCfg->szCmd, pFirstCfg->cchCmd) != 0)
5682 break;
5683 }
5684 iCfg++;
5685 }
5686
5687 char szName[16];
5688 unsigned cEntries = iCfg - iFirstCfg;
5689 if (cEntries == 1)
5690 RTStrPrintf(szName, sizeof(szName), "%s%02x", pszBaseNm, iFirstCfg);
5691 else
5692 RTStrPrintf(szName, sizeof(szName), "%s%02x L %#x", pszBaseNm, iFirstCfg, cEntries);
5693 dbgcEventDisplay(pCmdHlp, szName, enmDefault, &papEvtCfgs[iFirstCfg]);
5694
5695 cCfgs -= cEntries;
5696 } while (cCfgs > 0);
5697}
5698
5699
5700/**
5701 * @callback_method_impl{FNDBGCCMD, The 'sx' commands.}
5702 */
5703static DECLCALLBACK(int) dbgcCmdEventCtrlList(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
5704{
5705 RT_NOREF2(pCmd, pUVM);
5706 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
5707
5708 if (cArgs == 0)
5709 {
5710 /*
5711 * All events.
5712 */
5713 for (uint32_t iEvt = 0; iEvt < RT_ELEMENTS(g_aDbgcSxEvents); iEvt++)
5714 if (g_aDbgcSxEvents[iEvt].enmKind == kDbgcSxEventKind_Plain)
5715 dbgcEventDisplay(pCmdHlp, g_aDbgcSxEvents[iEvt].pszName, g_aDbgcSxEvents[iEvt].enmDefault,
5716 &pDbgc->apEventCfgs[iEvt]);
5717 else if (strcmp(g_aDbgcSxEvents[iEvt].pszName, "hwint") == 0)
5718 dbgcEventDisplayRange(pCmdHlp, g_aDbgcSxEvents[iEvt].pszName, g_aDbgcSxEvents[iEvt].enmDefault,
5719 pDbgc->apHardInts, 0, 256);
5720 else
5721 dbgcEventDisplayRange(pCmdHlp, g_aDbgcSxEvents[iEvt].pszName, g_aDbgcSxEvents[iEvt].enmDefault,
5722 pDbgc->apSoftInts, 0, 256);
5723 }
5724 else
5725 {
5726 /*
5727 * Selected events.
5728 */
5729 for (uint32_t iArg = 0; iArg < cArgs; iArg++)
5730 {
5731 unsigned cHits = 0;
5732 for (uint32_t iEvt = 0; iEvt < RT_ELEMENTS(g_aDbgcSxEvents); iEvt++)
5733 if (g_aDbgcSxEvents[iEvt].enmKind == kDbgcSxEventKind_Plain)
5734 {
5735 if ( RTStrSimplePatternMatch(paArgs[iArg].u.pszString, g_aDbgcSxEvents[iEvt].pszName)
5736 || ( g_aDbgcSxEvents[iEvt].pszAltNm
5737 && RTStrSimplePatternMatch(paArgs[iArg].u.pszString, g_aDbgcSxEvents[iEvt].pszAltNm)) )
5738 {
5739 dbgcEventDisplay(pCmdHlp, g_aDbgcSxEvents[iEvt].pszName, g_aDbgcSxEvents[iEvt].enmDefault,
5740 &pDbgc->apEventCfgs[iEvt]);
5741 cHits++;
5742 }
5743 }
5744 else
5745 {
5746 Assert(g_aDbgcSxEvents[iEvt].enmKind == kDbgcSxEventKind_Interrupt);
5747 uint8_t iInt;
5748 uint16_t cInts;
5749 if (dbgcEventIsMatchingInt(&paArgs[iArg], g_aDbgcSxEvents[iEvt].pszName, pCmdHlp, &iInt, &cInts))
5750 {
5751 if (strcmp(g_aDbgcSxEvents[iEvt].pszName, "hwint") == 0)
5752 dbgcEventDisplayRange(pCmdHlp, g_aDbgcSxEvents[iEvt].pszName, g_aDbgcSxEvents[iEvt].enmDefault,
5753 pDbgc->apHardInts, iInt, cInts);
5754 else
5755 dbgcEventDisplayRange(pCmdHlp, g_aDbgcSxEvents[iEvt].pszName, g_aDbgcSxEvents[iEvt].enmDefault,
5756 pDbgc->apSoftInts, iInt, cInts);
5757 cHits++;
5758 }
5759 }
5760 if (cHits == 0)
5761 return DBGCCmdHlpVBoxError(pCmdHlp, VERR_INVALID_PARAMETER, "Unknown event: '%s'\n", paArgs[iArg].u.pszString);
5762 }
5763 }
5764
5765 return VINF_SUCCESS;
5766}
5767
5768
5769
5770/**
5771 * List near symbol.
5772 *
5773 * @returns VBox status code.
5774 * @param pCmdHlp Pointer to command helper functions.
5775 * @param pUVM The user mode VM handle.
5776 * @param pArg Pointer to the address or symbol to lookup.
5777 */
5778static int dbgcDoListNear(PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR pArg)
5779{
5780 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
5781
5782 RTDBGSYMBOL Symbol;
5783 int rc;
5784 if (pArg->enmType == DBGCVAR_TYPE_SYMBOL)
5785 {
5786 /*
5787 * Lookup the symbol address.
5788 */
5789 rc = DBGFR3AsSymbolByName(pUVM, pDbgc->hDbgAs, pArg->u.pszString, &Symbol, NULL);
5790 if (RT_FAILURE(rc))
5791 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "DBGFR3AsSymbolByName(,,%s,)\n", pArg->u.pszString);
5792
5793 rc = DBGCCmdHlpPrintf(pCmdHlp, "%RTptr %s\n", Symbol.Value, Symbol.szName);
5794 }
5795 else
5796 {
5797 /*
5798 * Convert it to a flat GC address and lookup that address.
5799 */
5800 DBGCVAR AddrVar;
5801 rc = DBGCCmdHlpEval(pCmdHlp, &AddrVar, "%%(%DV)", pArg);
5802 if (RT_FAILURE(rc))
5803 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "%%(%DV)\n", pArg);
5804
5805 RTINTPTR offDisp;
5806 DBGFADDRESS Addr;
5807 rc = DBGFR3AsSymbolByAddr(pUVM, pDbgc->hDbgAs, DBGFR3AddrFromFlat(pDbgc->pUVM, &Addr, AddrVar.u.GCFlat),
5808 RTDBGSYMADDR_FLAGS_LESS_OR_EQUAL, &offDisp, &Symbol, NULL);
5809 if (RT_FAILURE(rc))
5810 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "DBGFR3ASymbolByAddr(,,%RGv,,)\n", AddrVar.u.GCFlat);
5811
5812 if (!offDisp)
5813 rc = DBGCCmdHlpPrintf(pCmdHlp, "%DV %s", &AddrVar, Symbol.szName);
5814 else if (offDisp > 0)
5815 rc = DBGCCmdHlpPrintf(pCmdHlp, "%DV %s + %RGv", &AddrVar, Symbol.szName, offDisp);
5816 else
5817 rc = DBGCCmdHlpPrintf(pCmdHlp, "%DV %s - %RGv", &AddrVar, Symbol.szName, -offDisp);
5818 if (Symbol.cb > 0)
5819 rc = DBGCCmdHlpPrintf(pCmdHlp, " (LB %RGv)\n", Symbol.cb);
5820 else
5821 rc = DBGCCmdHlpPrintf(pCmdHlp, "\n");
5822 }
5823
5824 return rc;
5825}
5826
5827
5828/**
5829 * @callback_method_impl{FNDBGCCMD, The 'ln' (listnear) command.}
5830 */
5831static DECLCALLBACK(int) dbgcCmdListNear(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
5832{
5833 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
5834 if (!cArgs)
5835 {
5836 /*
5837 * Current cs:eip symbol.
5838 */
5839 DBGCVAR AddrVar;
5840 const char *pszFmtExpr = pDbgc->fRegCtxGuest ? "%%(cs:eip)" : "%%(.cs:.eip)";
5841 int rc = DBGCCmdHlpEval(pCmdHlp, &AddrVar, pszFmtExpr);
5842 if (RT_FAILURE(rc))
5843 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "%s\n", pszFmtExpr + 1);
5844 return dbgcDoListNear(pCmdHlp, pUVM, &AddrVar);
5845 }
5846
5847/** @todo Fix the darn parser, it's resolving symbols specified as arguments before we get in here. */
5848 /*
5849 * Iterate arguments.
5850 */
5851 for (unsigned iArg = 0; iArg < cArgs; iArg++)
5852 {
5853 int rc = dbgcDoListNear(pCmdHlp, pUVM, &paArgs[iArg]);
5854 if (RT_FAILURE(rc))
5855 return rc;
5856 }
5857
5858 NOREF(pCmd);
5859 return VINF_SUCCESS;
5860}
5861
5862
5863/**
5864 * Matches the module patters against a module name.
5865 *
5866 * @returns true if matching, otherwise false.
5867 * @param pszName The module name.
5868 * @param paArgs The module pattern argument list.
5869 * @param cArgs Number of arguments.
5870 */
5871static bool dbgcCmdListModuleMatch(const char *pszName, PCDBGCVAR paArgs, unsigned cArgs)
5872{
5873 for (uint32_t i = 0; i < cArgs; i++)
5874 if (RTStrSimplePatternMatch(paArgs[i].u.pszString, pszName))
5875 return true;
5876 return false;
5877}
5878
5879
5880/**
5881 * @callback_method_impl{FNDBGCCMD, The 'ln' (list near) command.}
5882 */
5883static DECLCALLBACK(int) dbgcCmdListModules(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
5884{
5885 bool const fMappings = pCmd->pszCmd[2] == 'o';
5886 bool const fVerbose = pCmd->pszCmd[strlen(pCmd->pszCmd) - 1] == 'v';
5887 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
5888
5889 /*
5890 * Iterate the modules in the current address space and print info about
5891 * those matching the input.
5892 */
5893 RTDBGAS hAs = DBGFR3AsResolveAndRetain(pUVM, pDbgc->hDbgAs);
5894 uint32_t cMods = RTDbgAsModuleCount(hAs);
5895 for (uint32_t iMod = 0; iMod < cMods; iMod++)
5896 {
5897 RTDBGMOD hMod = RTDbgAsModuleByIndex(hAs, iMod);
5898 if (hMod != NIL_RTDBGMOD)
5899 {
5900 bool const fDeferred = RTDbgModIsDeferred(hMod);
5901 bool const fExports = RTDbgModIsExports(hMod);
5902 uint32_t const cSegs = fDeferred ? 1 : RTDbgModSegmentCount(hMod);
5903 const char * const pszName = RTDbgModName(hMod);
5904 const char * const pszImgFile = RTDbgModImageFile(hMod);
5905 const char * const pszImgFileUsed = RTDbgModImageFileUsed(hMod);
5906 const char * const pszDbgFile = RTDbgModDebugFile(hMod);
5907 if ( cArgs == 0
5908 || dbgcCmdListModuleMatch(pszName, paArgs, cArgs))
5909 {
5910 /*
5911 * Find the mapping with the lower address, preferring a full
5912 * image mapping, for the main line.
5913 */
5914 RTDBGASMAPINFO aMappings[128];
5915 uint32_t cMappings = RT_ELEMENTS(aMappings);
5916 int rc = RTDbgAsModuleQueryMapByIndex(hAs, iMod, &aMappings[0], &cMappings, 0 /*fFlags*/);
5917 if (RT_SUCCESS(rc))
5918 {
5919 bool fFull = false;
5920 RTUINTPTR uMin = RTUINTPTR_MAX;
5921 for (uint32_t iMap = 0; iMap < cMappings; iMap++)
5922 if ( aMappings[iMap].Address < uMin
5923 && ( !fFull
5924 || aMappings[iMap].iSeg == NIL_RTDBGSEGIDX))
5925 uMin = aMappings[iMap].Address;
5926 if (!fVerbose || !pszImgFile)
5927 DBGCCmdHlpPrintf(pCmdHlp, "%RGv %04x %s%s\n", (RTGCUINTPTR)uMin, cSegs, pszName,
5928 fExports ? " (exports)" : fDeferred ? " (deferred)" : "");
5929 else
5930 DBGCCmdHlpPrintf(pCmdHlp, "%RGv %04x %-12s %s%s\n", (RTGCUINTPTR)uMin, cSegs, pszName, pszImgFile,
5931 fExports ? " (exports)" : fDeferred ? " (deferred)" : "");
5932 if (fVerbose && pszImgFileUsed)
5933 DBGCCmdHlpPrintf(pCmdHlp, " Local image: %s\n", pszImgFileUsed);
5934 if (fVerbose && pszDbgFile)
5935 DBGCCmdHlpPrintf(pCmdHlp, " Debug file: %s\n", pszDbgFile);
5936
5937 if (fMappings)
5938 {
5939 /* sort by address first - not very efficient. */
5940 for (uint32_t i = 0; i + 1 < cMappings; i++)
5941 for (uint32_t j = i + 1; j < cMappings; j++)
5942 if (aMappings[j].Address < aMappings[i].Address)
5943 {
5944 RTDBGASMAPINFO Tmp = aMappings[j];
5945 aMappings[j] = aMappings[i];
5946 aMappings[i] = Tmp;
5947 }
5948
5949 /* print */
5950 if ( cMappings == 1
5951 && aMappings[0].iSeg == NIL_RTDBGSEGIDX
5952 && !fDeferred)
5953 {
5954 for (uint32_t iSeg = 0; iSeg < cSegs; iSeg++)
5955 {
5956 RTDBGSEGMENT SegInfo;
5957 rc = RTDbgModSegmentByIndex(hMod, iSeg, &SegInfo);
5958 if (RT_SUCCESS(rc))
5959 {
5960 if (SegInfo.uRva != RTUINTPTR_MAX)
5961 DBGCCmdHlpPrintf(pCmdHlp, " %RGv %RGv #%02x %s\n",
5962 (RTGCUINTPTR)(aMappings[0].Address + SegInfo.uRva),
5963 (RTGCUINTPTR)SegInfo.cb, iSeg, SegInfo.szName);
5964 else
5965 DBGCCmdHlpPrintf(pCmdHlp, " %*s %RGv #%02x %s\n",
5966 sizeof(RTGCUINTPTR)*2, "noload",
5967 (RTGCUINTPTR)SegInfo.cb, iSeg, SegInfo.szName);
5968 }
5969 else
5970 DBGCCmdHlpPrintf(pCmdHlp, " Error query segment #%u: %Rrc\n", iSeg, rc);
5971 }
5972 }
5973 else
5974 {
5975 for (uint32_t iMap = 0; iMap < cMappings; iMap++)
5976 if (aMappings[iMap].iSeg == NIL_RTDBGSEGIDX)
5977 DBGCCmdHlpPrintf(pCmdHlp, " %RGv %RGv <everything>\n",
5978 (RTGCUINTPTR)aMappings[iMap].Address,
5979 (RTGCUINTPTR)RTDbgModImageSize(hMod));
5980 else if (!fDeferred)
5981 {
5982 RTDBGSEGMENT SegInfo;
5983 rc = RTDbgModSegmentByIndex(hMod, aMappings[iMap].iSeg, &SegInfo);
5984 if (RT_FAILURE(rc))
5985 {
5986 RT_ZERO(SegInfo);
5987 strcpy(SegInfo.szName, "error");
5988 }
5989 DBGCCmdHlpPrintf(pCmdHlp, " %RGv %RGv #%02x %s\n",
5990 (RTGCUINTPTR)aMappings[iMap].Address,
5991 (RTGCUINTPTR)SegInfo.cb,
5992 aMappings[iMap].iSeg, SegInfo.szName);
5993 }
5994 else
5995 DBGCCmdHlpPrintf(pCmdHlp, " %RGv #%02x\n",
5996 (RTGCUINTPTR)aMappings[iMap].Address, aMappings[iMap].iSeg);
5997 }
5998 }
5999 }
6000 else
6001 DBGCCmdHlpPrintf(pCmdHlp, "%.*s %04x %s (rc=%Rrc)\n",
6002 sizeof(RTGCPTR) * 2, "???????????", cSegs, pszName, rc);
6003 /** @todo missing address space API for enumerating the mappings. */
6004 }
6005 RTDbgModRelease(hMod);
6006 }
6007 }
6008 RTDbgAsRelease(hAs);
6009
6010 NOREF(pCmd);
6011 return VINF_SUCCESS;
6012}
6013
6014
6015
6016/**
6017 * @callback_method_impl{FNDBGCFUNC, Reads a unsigned 8-bit value.}
6018 */
6019static DECLCALLBACK(int) dbgcFuncReadU8(PCDBGCFUNC pFunc, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, uint32_t cArgs,
6020 PDBGCVAR pResult)
6021{
6022 RT_NOREF1(pUVM);
6023 AssertReturn(cArgs == 1, VERR_DBGC_PARSE_BUG);
6024 AssertReturn(DBGCVAR_ISPOINTER(paArgs[0].enmType), VERR_DBGC_PARSE_BUG);
6025 AssertReturn(paArgs[0].enmRangeType == DBGCVAR_RANGE_NONE, VERR_DBGC_PARSE_BUG);
6026
6027 uint8_t b;
6028 int rc = DBGCCmdHlpMemRead(pCmdHlp, &b, sizeof(b), &paArgs[0], NULL);
6029 if (RT_FAILURE(rc))
6030 return rc;
6031 DBGCVAR_INIT_NUMBER(pResult, b);
6032
6033 NOREF(pFunc);
6034 return VINF_SUCCESS;
6035}
6036
6037
6038/**
6039 * @callback_method_impl{FNDBGCFUNC, Reads a unsigned 16-bit value.}
6040 */
6041static DECLCALLBACK(int) dbgcFuncReadU16(PCDBGCFUNC pFunc, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, uint32_t cArgs,
6042 PDBGCVAR pResult)
6043{
6044 RT_NOREF1(pUVM);
6045 AssertReturn(cArgs == 1, VERR_DBGC_PARSE_BUG);
6046 AssertReturn(DBGCVAR_ISPOINTER(paArgs[0].enmType), VERR_DBGC_PARSE_BUG);
6047 AssertReturn(paArgs[0].enmRangeType == DBGCVAR_RANGE_NONE, VERR_DBGC_PARSE_BUG);
6048
6049 uint16_t u16;
6050 int rc = DBGCCmdHlpMemRead(pCmdHlp, &u16, sizeof(u16), &paArgs[0], NULL);
6051 if (RT_FAILURE(rc))
6052 return rc;
6053 DBGCVAR_INIT_NUMBER(pResult, u16);
6054
6055 NOREF(pFunc);
6056 return VINF_SUCCESS;
6057}
6058
6059
6060/**
6061 * @callback_method_impl{FNDBGCFUNC, Reads a unsigned 32-bit value.}
6062 */
6063static DECLCALLBACK(int) dbgcFuncReadU32(PCDBGCFUNC pFunc, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, uint32_t cArgs,
6064 PDBGCVAR pResult)
6065{
6066 RT_NOREF1(pUVM);
6067 AssertReturn(cArgs == 1, VERR_DBGC_PARSE_BUG);
6068 AssertReturn(DBGCVAR_ISPOINTER(paArgs[0].enmType), VERR_DBGC_PARSE_BUG);
6069 AssertReturn(paArgs[0].enmRangeType == DBGCVAR_RANGE_NONE, VERR_DBGC_PARSE_BUG);
6070
6071 uint32_t u32;
6072 int rc = DBGCCmdHlpMemRead(pCmdHlp, &u32, sizeof(u32), &paArgs[0], NULL);
6073 if (RT_FAILURE(rc))
6074 return rc;
6075 DBGCVAR_INIT_NUMBER(pResult, u32);
6076
6077 NOREF(pFunc);
6078 return VINF_SUCCESS;
6079}
6080
6081
6082/**
6083 * @callback_method_impl{FNDBGCFUNC, Reads a unsigned 64-bit value.}
6084 */
6085static DECLCALLBACK(int) dbgcFuncReadU64(PCDBGCFUNC pFunc, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, uint32_t cArgs,
6086 PDBGCVAR pResult)
6087{
6088 RT_NOREF1(pUVM);
6089 AssertReturn(cArgs == 1, VERR_DBGC_PARSE_BUG);
6090 AssertReturn(DBGCVAR_ISPOINTER(paArgs[0].enmType), VERR_DBGC_PARSE_BUG);
6091 AssertReturn(paArgs[0].enmRangeType == DBGCVAR_RANGE_NONE, VERR_DBGC_PARSE_BUG);
6092
6093 uint64_t u64;
6094 int rc = DBGCCmdHlpMemRead(pCmdHlp, &u64, sizeof(u64), &paArgs[0], NULL);
6095 if (RT_FAILURE(rc))
6096 return rc;
6097 DBGCVAR_INIT_NUMBER(pResult, u64);
6098
6099 NOREF(pFunc);
6100 return VINF_SUCCESS;
6101}
6102
6103
6104/**
6105 * @callback_method_impl{FNDBGCFUNC, Reads a unsigned pointer-sized value.}
6106 */
6107static DECLCALLBACK(int) dbgcFuncReadPtr(PCDBGCFUNC pFunc, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, uint32_t cArgs,
6108 PDBGCVAR pResult)
6109{
6110 AssertReturn(cArgs == 1, VERR_DBGC_PARSE_BUG);
6111 AssertReturn(DBGCVAR_ISPOINTER(paArgs[0].enmType), VERR_DBGC_PARSE_BUG);
6112 AssertReturn(paArgs[0].enmRangeType == DBGCVAR_RANGE_NONE, VERR_DBGC_PARSE_BUG);
6113
6114 CPUMMODE enmMode = DBGCCmdHlpGetCpuMode(pCmdHlp);
6115 if (enmMode == CPUMMODE_LONG)
6116 return dbgcFuncReadU64(pFunc, pCmdHlp, pUVM, paArgs, cArgs, pResult);
6117 return dbgcFuncReadU32(pFunc, pCmdHlp, pUVM, paArgs, cArgs, pResult);
6118}
6119
6120
6121/**
6122 * @callback_method_impl{FNDBGCFUNC, The hi(value) function implementation.}
6123 */
6124static DECLCALLBACK(int) dbgcFuncHi(PCDBGCFUNC pFunc, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, uint32_t cArgs,
6125 PDBGCVAR pResult)
6126{
6127 AssertReturn(cArgs == 1, VERR_DBGC_PARSE_BUG);
6128
6129 uint16_t uHi;
6130 switch (paArgs[0].enmType)
6131 {
6132 case DBGCVAR_TYPE_GC_FLAT: uHi = (uint16_t)(paArgs[0].u.GCFlat >> 16); break;
6133 case DBGCVAR_TYPE_GC_FAR: uHi = (uint16_t)paArgs[0].u.GCFar.sel; break;
6134 case DBGCVAR_TYPE_GC_PHYS: uHi = (uint16_t)(paArgs[0].u.GCPhys >> 16); break;
6135 case DBGCVAR_TYPE_HC_FLAT: uHi = (uint16_t)((uintptr_t)paArgs[0].u.pvHCFlat >> 16); break;
6136 case DBGCVAR_TYPE_HC_PHYS: uHi = (uint16_t)(paArgs[0].u.HCPhys >> 16); break;
6137 case DBGCVAR_TYPE_NUMBER: uHi = (uint16_t)(paArgs[0].u.u64Number >> 16); break;
6138 default:
6139 AssertFailedReturn(VERR_DBGC_PARSE_BUG);
6140 }
6141 DBGCVAR_INIT_NUMBER(pResult, uHi);
6142 DBGCVAR_SET_RANGE(pResult, paArgs[0].enmRangeType, paArgs[0].u64Range);
6143
6144 NOREF(pFunc); NOREF(pCmdHlp); NOREF(pUVM);
6145 return VINF_SUCCESS;
6146}
6147
6148
6149/**
6150 * @callback_method_impl{FNDBGCFUNC, The low(value) function implementation.}
6151 */
6152static DECLCALLBACK(int) dbgcFuncLow(PCDBGCFUNC pFunc, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, uint32_t cArgs,
6153 PDBGCVAR pResult)
6154{
6155 AssertReturn(cArgs == 1, VERR_DBGC_PARSE_BUG);
6156
6157 uint16_t uLow;
6158 switch (paArgs[0].enmType)
6159 {
6160 case DBGCVAR_TYPE_GC_FLAT: uLow = (uint16_t)paArgs[0].u.GCFlat; break;
6161 case DBGCVAR_TYPE_GC_FAR: uLow = (uint16_t)paArgs[0].u.GCFar.off; break;
6162 case DBGCVAR_TYPE_GC_PHYS: uLow = (uint16_t)paArgs[0].u.GCPhys; break;
6163 case DBGCVAR_TYPE_HC_FLAT: uLow = (uint16_t)(uintptr_t)paArgs[0].u.pvHCFlat; break;
6164 case DBGCVAR_TYPE_HC_PHYS: uLow = (uint16_t)paArgs[0].u.HCPhys; break;
6165 case DBGCVAR_TYPE_NUMBER: uLow = (uint16_t)paArgs[0].u.u64Number; break;
6166 default:
6167 AssertFailedReturn(VERR_DBGC_PARSE_BUG);
6168 }
6169 DBGCVAR_INIT_NUMBER(pResult, uLow);
6170 DBGCVAR_SET_RANGE(pResult, paArgs[0].enmRangeType, paArgs[0].u64Range);
6171
6172 NOREF(pFunc); NOREF(pCmdHlp); NOREF(pUVM);
6173 return VINF_SUCCESS;
6174}
6175
6176
6177/**
6178 * @callback_method_impl{FNDBGCFUNC,The low(value) function implementation.}
6179 */
6180static DECLCALLBACK(int) dbgcFuncNot(PCDBGCFUNC pFunc, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, uint32_t cArgs,
6181 PDBGCVAR pResult)
6182{
6183 AssertReturn(cArgs == 1, VERR_DBGC_PARSE_BUG);
6184 NOREF(pFunc); NOREF(pCmdHlp); NOREF(pUVM);
6185 return DBGCCmdHlpEval(pCmdHlp, pResult, "!(%Dv)", &paArgs[0]);
6186}
6187
6188
6189/** Generic pointer argument wo/ range. */
6190static const DBGCVARDESC g_aArgPointerWoRange[] =
6191{
6192 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
6193 { 1, 1, DBGCVAR_CAT_POINTER_NO_RANGE, 0, "value", "Address or number." },
6194};
6195
6196/** Generic pointer or number argument. */
6197static const DBGCVARDESC g_aArgPointerNumber[] =
6198{
6199 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
6200 { 1, 1, DBGCVAR_CAT_POINTER_NUMBER, 0, "value", "Address or number." },
6201};
6202
6203
6204
6205/** Function descriptors for the CodeView / WinDbg emulation.
6206 * The emulation isn't attempting to be identical, only somewhat similar.
6207 */
6208const DBGCFUNC g_aFuncsCodeView[] =
6209{
6210 { "by", 1, 1, &g_aArgPointerWoRange[0], RT_ELEMENTS(g_aArgPointerWoRange), 0, dbgcFuncReadU8, "address", "Reads a byte at the given address." },
6211 { "dwo", 1, 1, &g_aArgPointerWoRange[0], RT_ELEMENTS(g_aArgPointerWoRange), 0, dbgcFuncReadU32, "address", "Reads a 32-bit value at the given address." },
6212 { "hi", 1, 1, &g_aArgPointerNumber[0], RT_ELEMENTS(g_aArgPointerNumber), 0, dbgcFuncHi, "value", "Returns the high 16-bit bits of a value." },
6213 { "low", 1, 1, &g_aArgPointerNumber[0], RT_ELEMENTS(g_aArgPointerNumber), 0, dbgcFuncLow, "value", "Returns the low 16-bit bits of a value." },
6214 { "not", 1, 1, &g_aArgPointerNumber[0], RT_ELEMENTS(g_aArgPointerNumber), 0, dbgcFuncNot, "address", "Boolean NOT." },
6215 { "poi", 1, 1, &g_aArgPointerWoRange[0], RT_ELEMENTS(g_aArgPointerWoRange), 0, dbgcFuncReadPtr, "address", "Reads a pointer sized (CS) value at the given address." },
6216 { "qwo", 1, 1, &g_aArgPointerWoRange[0], RT_ELEMENTS(g_aArgPointerWoRange), 0, dbgcFuncReadU64, "address", "Reads a 32-bit value at the given address." },
6217 { "wo", 1, 1, &g_aArgPointerWoRange[0], RT_ELEMENTS(g_aArgPointerWoRange), 0, dbgcFuncReadU16, "address", "Reads a 16-bit value at the given address." },
6218};
6219
6220/** The number of functions in the CodeView/WinDbg emulation. */
6221const uint32_t g_cFuncsCodeView = RT_ELEMENTS(g_aFuncsCodeView);
6222
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