VirtualBox

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

Last change on this file since 86098 was 86098, checked in by vboxsync, 4 years ago

VMM/DBGF: Rework part 1 to make it work well with SMP VMs. bugref:9822

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 289.9 KB
Line 
1/* $Id: DBGCEmulateCodeView.cpp 86098 2020-09-13 07:17:19Z vboxsync $ */
2/** @file
3 * DBGC - Debugger Console, CodeView / WinDbg Emulation.
4 */
5
6/*
7 * Copyright (C) 2006-2020 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#include <iprt/time.h>
38
39#include <stdlib.h>
40#include <stdio.h>
41
42#include "DBGCInternal.h"
43
44
45/*********************************************************************************************************************************
46* Internal Functions *
47*********************************************************************************************************************************/
48static FNDBGCCMD dbgcCmdBrkAccess;
49static FNDBGCCMD dbgcCmdBrkClear;
50static FNDBGCCMD dbgcCmdBrkDisable;
51static FNDBGCCMD dbgcCmdBrkEnable;
52static FNDBGCCMD dbgcCmdBrkList;
53static FNDBGCCMD dbgcCmdBrkSet;
54static FNDBGCCMD dbgcCmdBrkREM;
55static FNDBGCCMD dbgcCmdDumpMem;
56static FNDBGCCMD dbgcCmdDumpDT;
57static FNDBGCCMD dbgcCmdDumpIDT;
58static FNDBGCCMD dbgcCmdDumpPageDir;
59static FNDBGCCMD dbgcCmdDumpPageDirBoth;
60static FNDBGCCMD dbgcCmdDumpPageHierarchy;
61static FNDBGCCMD dbgcCmdDumpPageTable;
62static FNDBGCCMD dbgcCmdDumpPageTableBoth;
63static FNDBGCCMD dbgcCmdDumpTSS;
64static FNDBGCCMD dbgcCmdDumpTypeInfo;
65static FNDBGCCMD dbgcCmdDumpTypedVal;
66static FNDBGCCMD dbgcCmdEditMem;
67static FNDBGCCMD dbgcCmdGo;
68static FNDBGCCMD dbgcCmdGoUp;
69static FNDBGCCMD dbgcCmdListModules;
70static FNDBGCCMD dbgcCmdListNear;
71static FNDBGCCMD dbgcCmdListSource;
72static FNDBGCCMD dbgcCmdListSymbols;
73static FNDBGCCMD dbgcCmdMemoryInfo;
74static FNDBGCCMD dbgcCmdReg;
75static FNDBGCCMD dbgcCmdRegGuest;
76static FNDBGCCMD dbgcCmdRegTerse;
77static FNDBGCCMD dbgcCmdSearchMem;
78static FNDBGCCMD dbgcCmdSearchMemType;
79static FNDBGCCMD dbgcCmdStepTrace;
80static FNDBGCCMD dbgcCmdStepTraceTo;
81static FNDBGCCMD dbgcCmdStepTraceToggle;
82static FNDBGCCMD dbgcCmdEventCtrl;
83static FNDBGCCMD dbgcCmdEventCtrlList;
84static FNDBGCCMD dbgcCmdEventCtrlReset;
85static FNDBGCCMD dbgcCmdStack;
86static FNDBGCCMD dbgcCmdUnassemble;
87static FNDBGCCMD dbgcCmdUnassembleCfg;
88
89
90/*********************************************************************************************************************************
91* Global Variables *
92*********************************************************************************************************************************/
93/** 'ba' arguments. */
94static const DBGCVARDESC g_aArgBrkAcc[] =
95{
96 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
97 { 1, 1, DBGCVAR_CAT_STRING, 0, "access", "The access type: x=execute, rw=read/write (alias r), w=write, i=not implemented." },
98 { 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." },
99 { 1, 1, DBGCVAR_CAT_GC_POINTER, 0, "address", "The address." },
100 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "passes", "The number of passes before we trigger the breakpoint. (0 is default)" },
101 { 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)" },
102 { 0, 1, DBGCVAR_CAT_STRING, 0, "cmds", "String of commands to be executed when the breakpoint is hit. Quote it!" },
103};
104
105
106/** 'bc', 'bd', 'be' arguments. */
107static const DBGCVARDESC g_aArgBrks[] =
108{
109 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
110 { 0, ~0U, DBGCVAR_CAT_NUMBER, 0, "#bp", "Breakpoint number." },
111 { 0, 1, DBGCVAR_CAT_STRING, 0, "all", "All breakpoints." },
112};
113
114
115/** 'bp' arguments. */
116static const DBGCVARDESC g_aArgBrkSet[] =
117{
118 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
119 { 1, 1, DBGCVAR_CAT_GC_POINTER, 0, "address", "The address." },
120 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "passes", "The number of passes before we trigger the breakpoint. (0 is default)" },
121 { 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)" },
122 { 0, 1, DBGCVAR_CAT_STRING, 0, "cmds", "String of commands to be executed when the breakpoint is hit. Quote it!" },
123};
124
125
126/** 'br' arguments. */
127static const DBGCVARDESC g_aArgBrkREM[] =
128{
129 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
130 { 1, 1, DBGCVAR_CAT_GC_POINTER, 0, "address", "The address." },
131 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "passes", "The number of passes before we trigger the breakpoint. (0 is default)" },
132 { 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)" },
133 { 0, 1, DBGCVAR_CAT_STRING, 0, "cmds", "String of commands to be executed when the breakpoint is hit. Quote it!" },
134};
135
136
137/** 'd?' arguments. */
138static const DBGCVARDESC g_aArgDumpMem[] =
139{
140 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
141 { 0, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address where to start dumping memory." },
142};
143
144
145/** 'dg', 'dga', 'dl', 'dla' arguments. */
146static const DBGCVARDESC g_aArgDumpDT[] =
147{
148 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
149 { 0, ~0U, DBGCVAR_CAT_NUMBER, 0, "sel", "Selector or selector range." },
150 { 0, ~0U, DBGCVAR_CAT_POINTER, 0, "address", "Far address which selector should be dumped." },
151};
152
153
154/** 'di', 'dia' arguments. */
155static const DBGCVARDESC g_aArgDumpIDT[] =
156{
157 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
158 { 0, ~0U, DBGCVAR_CAT_NUMBER, 0, "int", "The interrupt vector or interrupt vector range." },
159};
160
161
162/** 'dpd*' arguments. */
163static const DBGCVARDESC g_aArgDumpPD[] =
164{
165 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
166 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "index", "Index into the page directory." },
167 { 0, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address which page directory entry to start dumping from. Range is applied to the page directory." },
168};
169
170
171/** 'dpda' arguments. */
172static const DBGCVARDESC g_aArgDumpPDAddr[] =
173{
174 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
175 { 0, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address of the page directory entry to start dumping from." },
176};
177
178
179/** 'dph*' arguments. */
180static const DBGCVARDESC g_aArgDumpPH[] =
181{
182 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
183 { 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." },
184 { 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." },
185 { 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." },
186};
187
188
189/** 'dpt?' arguments. */
190static const DBGCVARDESC g_aArgDumpPT[] =
191{
192 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
193 { 1, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address which page directory entry to start dumping from." },
194};
195
196
197/** 'dpta' arguments. */
198static const DBGCVARDESC g_aArgDumpPTAddr[] =
199{
200 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
201 { 1, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address of the page table entry to start dumping from." },
202};
203
204
205/** 'dt' arguments. */
206static const DBGCVARDESC g_aArgDumpTSS[] =
207{
208 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
209 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "tss", "TSS selector number." },
210 { 0, 1, DBGCVAR_CAT_POINTER, 0, "tss:ign|addr", "TSS address. If the selector is a TSS selector, the offset will be ignored." }
211};
212
213
214/** 'dti' arguments. */
215static const DBGCVARDESC g_aArgDumpTypeInfo[] =
216{
217 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
218 { 1, 1, DBGCVAR_CAT_STRING, 0, "type", "The type to dump" },
219 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "levels", "How many levels to dump the type information" }
220};
221
222
223/** 'dtv' arguments. */
224static const DBGCVARDESC g_aArgDumpTypedVal[] =
225{
226 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
227 { 1, 1, DBGCVAR_CAT_STRING, 0, "type", "The type to use" },
228 { 1, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address to start dumping from." },
229 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "levels", "How many levels to dump" }
230};
231
232
233/** 'e?' arguments. */
234static const DBGCVARDESC g_aArgEditMem[] =
235{
236 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
237 { 1, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address where to write." },
238 { 1, ~0U, DBGCVAR_CAT_NUMBER, 0, "value", "Value to write." },
239};
240
241
242/** 'g' arguments. */
243static const DBGCVARDESC g_aArgGo[] =
244{
245 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
246 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "idCpu", "CPU ID." },
247};
248
249
250/** 'lm' arguments. */
251static const DBGCVARDESC g_aArgListMods[] =
252{
253 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
254 { 0, ~0U, DBGCVAR_CAT_STRING, 0, "module", "Module name." },
255};
256
257
258/** 'ln' arguments. */
259static const DBGCVARDESC g_aArgListNear[] =
260{
261 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
262 { 0, ~0U, DBGCVAR_CAT_POINTER, 0, "address", "Address of the symbol to look up." },
263 { 0, ~0U, DBGCVAR_CAT_SYMBOL, 0, "symbol", "Symbol to lookup." },
264};
265
266
267/** 'ls' arguments. */
268static const DBGCVARDESC g_aArgListSource[] =
269{
270 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
271 { 0, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address where to start looking for source lines." },
272};
273
274
275/** 'm' argument. */
276static const DBGCVARDESC g_aArgMemoryInfo[] =
277{
278 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
279 { 1, 1, DBGCVAR_CAT_POINTER, 0, "address", "Pointer to obtain info about." },
280};
281
282
283/** 'p', 'pc', 'pt', 't', 'tc' and 'tt' arguments. */
284static const DBGCVARDESC g_aArgStepTrace[] =
285{
286 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
287 { 0, 1, DBGCVAR_CAT_NUMBER, 0, "count", "Number of instructions or source lines to step." },
288 { 0, 1, DBGCVAR_CAT_STRING, 0, "cmds", "String of commands to be executed afterwards. Quote it!" },
289};
290
291
292/** 'pa' and 'ta' arguments. */
293static const DBGCVARDESC g_aArgStepTraceTo[] =
294{
295 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
296 { 1, 1, DBGCVAR_CAT_POINTER, 0, "address", "Where to stop" },
297 { 0, 1, DBGCVAR_CAT_STRING, 0, "cmds", "String of commands to be executed afterwards. Quote it!" },
298};
299
300
301/** 'r' arguments. */
302static const DBGCVARDESC g_aArgReg[] =
303{
304 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
305 { 0, 1, DBGCVAR_CAT_SYMBOL, 0, "register", "Register to show or set." },
306 { 0, 1, DBGCVAR_CAT_STRING, DBGCVD_FLAGS_DEP_PREV, "=", "Equal sign." },
307 { 0, 1, DBGCVAR_CAT_NUMBER, DBGCVD_FLAGS_DEP_PREV, "value", "New register value." },
308};
309
310
311/** 's' arguments. */
312static const DBGCVARDESC g_aArgSearchMem[] =
313{
314 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
315 { 0, 1, DBGCVAR_CAT_OPTION, 0, "-b", "Byte string." },
316 { 0, 1, DBGCVAR_CAT_OPTION, 0, "-w", "Word string." },
317 { 0, 1, DBGCVAR_CAT_OPTION, 0, "-d", "DWord string." },
318 { 0, 1, DBGCVAR_CAT_OPTION, 0, "-q", "QWord string." },
319 { 0, 1, DBGCVAR_CAT_OPTION, 0, "-a", "ASCII string." },
320 { 0, 1, DBGCVAR_CAT_OPTION, 0, "-u", "Unicode string." },
321 { 0, 1, DBGCVAR_CAT_OPTION_NUMBER, 0, "-n <Hits>", "Maximum number of hits." },
322 { 0, 1, DBGCVAR_CAT_GC_POINTER, 0, "range", "Register to show or set." },
323 { 0, ~0U, DBGCVAR_CAT_ANY, 0, "pattern", "Pattern to search for." },
324};
325
326
327/** 's?' arguments. */
328static const DBGCVARDESC g_aArgSearchMemType[] =
329{
330 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
331 { 1, 1, DBGCVAR_CAT_GC_POINTER, 0, "range", "Register to show or set." },
332 { 1, ~0U, DBGCVAR_CAT_ANY, 0, "pattern", "Pattern to search for." },
333};
334
335
336/** 'sxe', 'sxn', 'sxi', 'sx-' arguments. */
337static const DBGCVARDESC g_aArgEventCtrl[] =
338{
339 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
340 { 0, 1, DBGCVAR_CAT_STRING, 0, "-c", "The -c option, requires <cmds>." },
341 { 0, 1, DBGCVAR_CAT_STRING, DBGCVD_FLAGS_DEP_PREV, "cmds", "Command to execute on this event." },
342 { 0 /*weird*/, ~0U, DBGCVAR_CAT_STRING, 0, "event", "One or more events, 'all' refering to all events." },
343};
344
345/** 'sx' and 'sr' arguments. */
346static const DBGCVARDESC g_aArgEventCtrlOpt[] =
347{
348 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
349 { 0, ~0U, DBGCVAR_CAT_STRING, 0, "event", "Zero or more events, 'all' refering to all events and being the default." },
350};
351
352/** 'u' arguments. */
353static const DBGCVARDESC g_aArgUnassemble[] =
354{
355 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
356 { 0, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address where to start disassembling." },
357};
358
359/** 'ucfg' arguments. */
360static const DBGCVARDESC g_aArgUnassembleCfg[] =
361{
362 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
363 { 0, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address where to start disassembling." },
364};
365
366/** 'x' arguments. */
367static const DBGCVARDESC g_aArgListSyms[] =
368{
369 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
370 { 1, 1, DBGCVAR_CAT_STRING, 0, "symbols", "The symbols to list, format is Module!Symbol with wildcards being supoprted." }
371};
372
373
374/** Command descriptors for the CodeView / WinDbg emulation.
375 * The emulation isn't attempting to be identical, only somewhat similar.
376 */
377const DBGCCMD g_aCmdsCodeView[] =
378{
379 /* pszCmd, cArgsMin, cArgsMax, paArgDescs, cArgDescs, fFlags, pfnHandler pszSyntax, ....pszDescription */
380 { "ba", 3, 6, &g_aArgBrkAcc[0], RT_ELEMENTS(g_aArgBrkAcc), 0, dbgcCmdBrkAccess, "<access> <size> <address> [passes [max passes]] [cmds]",
381 "Sets a data access breakpoint." },
382 { "bc", 1, ~0U, &g_aArgBrks[0], RT_ELEMENTS(g_aArgBrks), 0, dbgcCmdBrkClear, "all | <bp#> [bp# []]", "Deletes a set of breakpoints." },
383 { "bd", 1, ~0U, &g_aArgBrks[0], RT_ELEMENTS(g_aArgBrks), 0, dbgcCmdBrkDisable, "all | <bp#> [bp# []]", "Disables a set of breakpoints." },
384 { "be", 1, ~0U, &g_aArgBrks[0], RT_ELEMENTS(g_aArgBrks), 0, dbgcCmdBrkEnable, "all | <bp#> [bp# []]", "Enables a set of breakpoints." },
385 { "bl", 0, 0, NULL, 0, 0, dbgcCmdBrkList, "", "Lists all the breakpoints." },
386 { "bp", 1, 4, &g_aArgBrkSet[0], RT_ELEMENTS(g_aArgBrkSet), 0, dbgcCmdBrkSet, "<address> [passes [max passes]] [cmds]",
387 "Sets a breakpoint (int 3)." },
388 { "br", 1, 4, &g_aArgBrkREM[0], RT_ELEMENTS(g_aArgBrkREM), 0, dbgcCmdBrkREM, "<address> [passes [max passes]] [cmds]",
389 "Sets a recompiler specific breakpoint." },
390 { "d", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory using last element size and type." },
391 { "dF", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory as far 16:16." },
392 { "dFs", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory as far 16:16 with near symbols." },
393 { "da", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory as ascii string." },
394 { "db", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory in bytes." },
395 { "dd", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory in double words." },
396 { "dds", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory as double words with near symbols." },
397 { "da", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory as ascii string." },
398 { "dg", 0, ~0U, &g_aArgDumpDT[0], RT_ELEMENTS(g_aArgDumpDT), 0, dbgcCmdDumpDT, "[sel [..]]", "Dump the global descriptor table (GDT)." },
399 { "dga", 0, ~0U, &g_aArgDumpDT[0], RT_ELEMENTS(g_aArgDumpDT), 0, dbgcCmdDumpDT, "[sel [..]]", "Dump the global descriptor table (GDT) including not-present entries." },
400 { "di", 0, ~0U, &g_aArgDumpIDT[0], RT_ELEMENTS(g_aArgDumpIDT), 0, dbgcCmdDumpIDT, "[int [..]]", "Dump the interrupt descriptor table (IDT)." },
401 { "dia", 0, ~0U, &g_aArgDumpIDT[0], RT_ELEMENTS(g_aArgDumpIDT), 0, dbgcCmdDumpIDT, "[int [..]]", "Dump the interrupt descriptor table (IDT) including not-present entries." },
402 { "dl", 0, ~0U, &g_aArgDumpDT[0], RT_ELEMENTS(g_aArgDumpDT), 0, dbgcCmdDumpDT, "[sel [..]]", "Dump the local descriptor table (LDT)." },
403 { "dla", 0, ~0U, &g_aArgDumpDT[0], RT_ELEMENTS(g_aArgDumpDT), 0, dbgcCmdDumpDT, "[sel [..]]", "Dump the local descriptor table (LDT) including not-present entries." },
404 { "dpd", 0, 1, &g_aArgDumpPD[0], RT_ELEMENTS(g_aArgDumpPD), 0, dbgcCmdDumpPageDir, "[addr|index]", "Dumps page directory entries of the default context." },
405 { "dpda", 0, 1, &g_aArgDumpPDAddr[0],RT_ELEMENTS(g_aArgDumpPDAddr), 0, dbgcCmdDumpPageDir, "[addr]", "Dumps memory at given address as a page directory." },
406 { "dpdb", 0, 1, &g_aArgDumpPD[0], RT_ELEMENTS(g_aArgDumpPD), 0, dbgcCmdDumpPageDirBoth, "[addr|index]", "Dumps page directory entries of the guest and the hypervisor. " },
407 { "dpdg", 0, 1, &g_aArgDumpPD[0], RT_ELEMENTS(g_aArgDumpPD), 0, dbgcCmdDumpPageDir, "[addr|index]", "Dumps page directory entries of the guest." },
408 { "dpdh", 0, 1, &g_aArgDumpPD[0], RT_ELEMENTS(g_aArgDumpPD), 0, dbgcCmdDumpPageDir, "[addr|index]", "Dumps page directory entries of the hypervisor. " },
409 { "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." },
410 { "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." },
411 { "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." },
412 { "dp", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory in mode sized words." },
413 { "dps", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory in mode sized words with near symbols." },
414 { "dpt", 1, 1, &g_aArgDumpPT[0], RT_ELEMENTS(g_aArgDumpPT), 0, dbgcCmdDumpPageTable,"<addr>", "Dumps page table entries of the default context." },
415 { "dpta", 1, 1, &g_aArgDumpPTAddr[0],RT_ELEMENTS(g_aArgDumpPTAddr), 0, dbgcCmdDumpPageTable,"<addr>", "Dumps memory at given address as a page table." },
416 { "dptb", 1, 1, &g_aArgDumpPT[0], RT_ELEMENTS(g_aArgDumpPT), 0, dbgcCmdDumpPageTableBoth,"<addr>", "Dumps page table entries of the guest and the hypervisor." },
417 { "dptg", 1, 1, &g_aArgDumpPT[0], RT_ELEMENTS(g_aArgDumpPT), 0, dbgcCmdDumpPageTable,"<addr>", "Dumps page table entries of the guest." },
418 { "dpth", 1, 1, &g_aArgDumpPT[0], RT_ELEMENTS(g_aArgDumpPT), 0, dbgcCmdDumpPageTable,"<addr>", "Dumps page table entries of the hypervisor." },
419 { "dq", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory in quad words." },
420 { "dqs", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory as quad words with near symbols." },
421 { "dt", 0, 1, &g_aArgDumpTSS[0], RT_ELEMENTS(g_aArgDumpTSS), 0, dbgcCmdDumpTSS, "[tss|tss:ign|addr]", "Dump the task state segment (TSS)." },
422 { "dt16", 0, 1, &g_aArgDumpTSS[0], RT_ELEMENTS(g_aArgDumpTSS), 0, dbgcCmdDumpTSS, "[tss|tss:ign|addr]", "Dump the 16-bit task state segment (TSS)." },
423 { "dt32", 0, 1, &g_aArgDumpTSS[0], RT_ELEMENTS(g_aArgDumpTSS), 0, dbgcCmdDumpTSS, "[tss|tss:ign|addr]", "Dump the 32-bit task state segment (TSS)." },
424 { "dt64", 0, 1, &g_aArgDumpTSS[0], RT_ELEMENTS(g_aArgDumpTSS), 0, dbgcCmdDumpTSS, "[tss|tss:ign|addr]", "Dump the 64-bit task state segment (TSS)." },
425 { "dti", 1, 2, &g_aArgDumpTypeInfo[0],RT_ELEMENTS(g_aArgDumpTypeInfo), 0, dbgcCmdDumpTypeInfo,"<type> [levels]", "Dump type information." },
426 { "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." },
427 { "du", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory as unicode string (little endian)." },
428 { "dw", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory in words." },
429 /** @todo add 'e', 'ea str', 'eza str', 'eu str' and 'ezu str'. See also
430 * dbgcCmdSearchMem and its dbgcVarsToBytes usage. */
431 { "eb", 2, 2, &g_aArgEditMem[0], RT_ELEMENTS(g_aArgEditMem), 0, dbgcCmdEditMem, "<addr> <value>", "Write a 1-byte value to memory." },
432 { "ew", 2, 2, &g_aArgEditMem[0], RT_ELEMENTS(g_aArgEditMem), 0, dbgcCmdEditMem, "<addr> <value>", "Write a 2-byte value to memory." },
433 { "ed", 2, 2, &g_aArgEditMem[0], RT_ELEMENTS(g_aArgEditMem), 0, dbgcCmdEditMem, "<addr> <value>", "Write a 4-byte value to memory." },
434 { "eq", 2, 2, &g_aArgEditMem[0], RT_ELEMENTS(g_aArgEditMem), 0, dbgcCmdEditMem, "<addr> <value>", "Write a 8-byte value to memory." },
435 { "g", 0, 1, &g_aArgGo[0], RT_ELEMENTS(g_aArgGo), 0, dbgcCmdGo, "[idCpu]", "Continue execution of all or the specified CPU. (The latter is not recommended unless you know exactly what you're doing.)" },
436 { "gu", 0, 0, NULL, 0, 0, dbgcCmdGoUp, "", "Go up - continue execution till after return." },
437 { "k", 0, 0, NULL, 0, 0, dbgcCmdStack, "", "Callstack." },
438 { "kv", 0, 0, NULL, 0, 0, dbgcCmdStack, "", "Verbose callstack." },
439 { "kg", 0, 0, NULL, 0, 0, dbgcCmdStack, "", "Callstack - guest." },
440 { "kgv", 0, 0, NULL, 0, 0, dbgcCmdStack, "", "Verbose callstack - guest." },
441 { "kh", 0, 0, NULL, 0, 0, dbgcCmdStack, "", "Callstack - hypervisor." },
442 { "lm", 0, ~0U, &g_aArgListMods[0], RT_ELEMENTS(g_aArgListMods), 0, dbgcCmdListModules, "[module [..]]", "List modules." },
443 { "lmv", 0, ~0U, &g_aArgListMods[0], RT_ELEMENTS(g_aArgListMods), 0, dbgcCmdListModules, "[module [..]]", "List modules, verbose." },
444 { "lmo", 0, ~0U, &g_aArgListMods[0], RT_ELEMENTS(g_aArgListMods), 0, dbgcCmdListModules, "[module [..]]", "List modules and their segments." },
445 { "lmov", 0, ~0U, &g_aArgListMods[0], RT_ELEMENTS(g_aArgListMods), 0, dbgcCmdListModules, "[module [..]]", "List modules and their segments, verbose." },
446 { "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." },
447 { "ls", 0, 1, &g_aArgListSource[0],RT_ELEMENTS(g_aArgListSource), 0, dbgcCmdListSource, "[addr]", "Source." },
448 { "m", 1, 1, &g_aArgMemoryInfo[0],RT_ELEMENTS(g_aArgMemoryInfo), 0, dbgcCmdMemoryInfo, "<addr>", "Display information about that piece of memory." },
449 { "p", 0, 2, &g_aArgStepTrace[0], RT_ELEMENTS(g_aArgStepTrace), 0, dbgcCmdStepTrace, "[count] [cmds]", "Step over." },
450 { "pr", 0, 0, NULL, 0, 0, dbgcCmdStepTraceToggle, "", "Toggle displaying registers for tracing & stepping (no code executed)." },
451 { "pa", 1, 1, &g_aArgStepTraceTo[0], RT_ELEMENTS(g_aArgStepTraceTo), 0, dbgcCmdStepTraceTo, "<addr> [count] [cmds]","Step to the given address." },
452 { "pc", 0, 0, &g_aArgStepTrace[0], RT_ELEMENTS(g_aArgStepTrace), 0, dbgcCmdStepTrace, "[count] [cmds]", "Step to the next call instruction." },
453 { "pt", 0, 0, &g_aArgStepTrace[0], RT_ELEMENTS(g_aArgStepTrace), 0, dbgcCmdStepTrace, "[count] [cmds]", "Step to the next return instruction." },
454 { "r", 0, 3, &g_aArgReg[0], RT_ELEMENTS(g_aArgReg), 0, dbgcCmdReg, "[reg [[=] newval]]", "Show or set register(s) - active reg set." },
455 { "rg", 0, 3, &g_aArgReg[0], RT_ELEMENTS(g_aArgReg), 0, dbgcCmdRegGuest, "[reg [[=] newval]]", "Show or set register(s) - guest reg set." },
456 { "rg32", 0, 0, NULL, 0, 0, dbgcCmdRegGuest, "", "Show 32-bit guest registers." },
457 { "rg64", 0, 0, NULL, 0, 0, dbgcCmdRegGuest, "", "Show 64-bit guest registers." },
458 { "rt", 0, 0, NULL, 0, 0, dbgcCmdRegTerse, "", "Toggles terse / verbose register info." },
459 { "s", 0, ~0U, &g_aArgSearchMem[0], RT_ELEMENTS(g_aArgSearchMem), 0, dbgcCmdSearchMem, "[options] <range> <pattern>", "Continue last search." },
460 { "sa", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for an ascii string." },
461 { "sb", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for one or more bytes." },
462 { "sd", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for one or more double words." },
463 { "sq", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for one or more quad words." },
464 { "su", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for an unicode string." },
465 { "sw", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for one or more words." },
466 { "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." },
467 { "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." },
468 { "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." },
469 { "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." },
470 { "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." },
471 { "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." },
472 { "t", 0, 2, &g_aArgStepTrace[0], RT_ELEMENTS(g_aArgStepTrace), 0, dbgcCmdStepTrace, "[count] [cmds]", "Trace ." },
473 { "tr", 0, 0, NULL, 0, 0, dbgcCmdStepTraceToggle, "", "Toggle displaying registers for tracing & stepping (no code executed)." },
474 { "ta", 1, 1, &g_aArgStepTraceTo[0], RT_ELEMENTS(g_aArgStepTraceTo), 0, dbgcCmdStepTraceTo, "<addr> [count] [cmds]","Trace to the given address." },
475 { "tc", 0, 0, &g_aArgStepTrace[0], RT_ELEMENTS(g_aArgStepTrace), 0, dbgcCmdStepTrace, "[count] [cmds]", "Trace to the next call instruction." },
476 { "tt", 0, 0, &g_aArgStepTrace[0], RT_ELEMENTS(g_aArgStepTrace), 0, dbgcCmdStepTrace, "[count] [cmds]", "Trace to the next return instruction." },
477 { "u", 0, 1, &g_aArgUnassemble[0],RT_ELEMENTS(g_aArgUnassemble), 0, dbgcCmdUnassemble, "[addr]", "Unassemble." },
478 { "u64", 0, 1, &g_aArgUnassemble[0],RT_ELEMENTS(g_aArgUnassemble), 0, dbgcCmdUnassemble, "[addr]", "Unassemble 64-bit code." },
479 { "u32", 0, 1, &g_aArgUnassemble[0],RT_ELEMENTS(g_aArgUnassemble), 0, dbgcCmdUnassemble, "[addr]", "Unassemble 32-bit code." },
480 { "u16", 0, 1, &g_aArgUnassemble[0],RT_ELEMENTS(g_aArgUnassemble), 0, dbgcCmdUnassemble, "[addr]", "Unassemble 16-bit code." },
481 { "uv86", 0, 1, &g_aArgUnassemble[0],RT_ELEMENTS(g_aArgUnassemble), 0, dbgcCmdUnassemble, "[addr]", "Unassemble 16-bit code with v8086/real mode addressing." },
482 { "ucfg", 0, 1, &g_aArgUnassembleCfg[0], RT_ELEMENTS(g_aArgUnassembleCfg), 0, dbgcCmdUnassembleCfg, "[addr]", "Unassemble creating a control flow graph." },
483 { "ucfgc", 0, 1, &g_aArgUnassembleCfg[0], RT_ELEMENTS(g_aArgUnassembleCfg), 0, dbgcCmdUnassembleCfg, "[addr]", "Unassemble creating a control flow graph with colors." },
484 { "x", 1, 1, &g_aArgListSyms[0], RT_ELEMENTS(g_aArgListSyms), 0, dbgcCmdListSymbols, "* | <Module!Symbol>", "Examine symbols." },
485};
486
487/** The number of commands in the CodeView/WinDbg emulation. */
488const uint32_t g_cCmdsCodeView = RT_ELEMENTS(g_aCmdsCodeView);
489
490
491/**
492 * Selectable debug event descriptors.
493 *
494 * @remarks Sorted by DBGCSXEVT::enmType value.
495 */
496const DBGCSXEVT g_aDbgcSxEvents[] =
497{
498 { DBGFEVENT_INTERRUPT_HARDWARE, "hwint", NULL, kDbgcSxEventKind_Interrupt, kDbgcEvtState_Disabled, 0, "Hardware interrupt" },
499 { DBGFEVENT_INTERRUPT_SOFTWARE, "swint", NULL, kDbgcSxEventKind_Interrupt, kDbgcEvtState_Disabled, 0, "Software interrupt" },
500 { DBGFEVENT_TRIPLE_FAULT, "triplefault", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Enabled, 0, "Triple fault "},
501 { DBGFEVENT_XCPT_DE, "xcpt_de", "de", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#DE (integer divide error)" },
502 { DBGFEVENT_XCPT_DB, "xcpt_db", "db", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#DB (debug)" },
503 { DBGFEVENT_XCPT_02, "xcpt_02", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
504 { DBGFEVENT_XCPT_BP, "xcpt_bp", "bp", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#BP (breakpoint)" },
505 { DBGFEVENT_XCPT_OF, "xcpt_of", "of", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#OF (overflow (INTO))" },
506 { DBGFEVENT_XCPT_BR, "xcpt_br", "br", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#BR (bound range exceeded)" },
507 { DBGFEVENT_XCPT_UD, "xcpt_ud", "ud", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#UD (undefined opcode)" },
508 { DBGFEVENT_XCPT_NM, "xcpt_nm", "nm", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#NM (FPU not available)" },
509 { DBGFEVENT_XCPT_DF, "xcpt_df", "df", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#DF (double fault)" },
510 { DBGFEVENT_XCPT_09, "xcpt_09", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "Coprocessor segment overrun" },
511 { DBGFEVENT_XCPT_TS, "xcpt_ts", "ts", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, "#TS (task switch)" },
512 { DBGFEVENT_XCPT_NP, "xcpt_np", "np", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, "#NP (segment not present)" },
513 { DBGFEVENT_XCPT_SS, "xcpt_ss", "ss", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, "#SS (stack segment fault)" },
514 { DBGFEVENT_XCPT_GP, "xcpt_gp", "gp", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, "#GP (general protection fault)" },
515 { DBGFEVENT_XCPT_PF, "xcpt_pf", "pf", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, "#PF (page fault)" },
516 { DBGFEVENT_XCPT_0f, "xcpt_0f", "xcpt0f", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
517 { DBGFEVENT_XCPT_MF, "xcpt_mf", "mf", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#MF (math fault)" },
518 { DBGFEVENT_XCPT_AC, "xcpt_ac", "ac", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#AC (alignment check)" },
519 { DBGFEVENT_XCPT_MC, "xcpt_mc", "mc", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#MC (machine check)" },
520 { DBGFEVENT_XCPT_XF, "xcpt_xf", "xf", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#XF (SIMD floating-point exception)" },
521 { DBGFEVENT_XCPT_VE, "xcpt_vd", "ve", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, "#VE (virtualization exception)" },
522 { DBGFEVENT_XCPT_15, "xcpt_15", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
523 { DBGFEVENT_XCPT_16, "xcpt_16", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
524 { DBGFEVENT_XCPT_17, "xcpt_17", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
525 { DBGFEVENT_XCPT_18, "xcpt_18", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
526 { DBGFEVENT_XCPT_19, "xcpt_19", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
527 { DBGFEVENT_XCPT_1a, "xcpt_1a", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
528 { DBGFEVENT_XCPT_1b, "xcpt_1b", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
529 { DBGFEVENT_XCPT_1c, "xcpt_1c", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
530 { DBGFEVENT_XCPT_1d, "xcpt_1d", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
531 { DBGFEVENT_XCPT_SX, "xcpt_sx", "sx", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, "#SX (security exception)" },
532 { DBGFEVENT_XCPT_1f, "xcpt_1f", "xcpt1f", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
533 { DBGFEVENT_INSTR_HALT, "instr_halt", "hlt", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
534 { DBGFEVENT_INSTR_MWAIT, "instr_mwait", "mwait", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
535 { DBGFEVENT_INSTR_MONITOR, "instr_monitor", "monitor", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
536 { DBGFEVENT_INSTR_CPUID, "instr_cpuid", "cpuid", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
537 { DBGFEVENT_INSTR_INVD, "instr_invd", "invd", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
538 { DBGFEVENT_INSTR_WBINVD, "instr_wbinvd", "wbinvd", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
539 { DBGFEVENT_INSTR_INVLPG, "instr_invlpg", "invlpg", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
540 { DBGFEVENT_INSTR_RDTSC, "instr_rdtsc", "rdtsc", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
541 { DBGFEVENT_INSTR_RDTSCP, "instr_rdtscp", "rdtscp", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
542 { DBGFEVENT_INSTR_RDPMC, "instr_rdpmc", "rdpmc", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
543 { DBGFEVENT_INSTR_RDMSR, "instr_rdmsr", "rdmsr", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
544 { DBGFEVENT_INSTR_WRMSR, "instr_wrmsr", "wrmsr", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
545 { DBGFEVENT_INSTR_CRX_READ, "instr_crx_read", "crx_read", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, NULL },
546 { DBGFEVENT_INSTR_CRX_WRITE, "instr_crx_write", "crx_write",kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, NULL },
547 { DBGFEVENT_INSTR_DRX_READ, "instr_drx_read", "drx_read", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, NULL },
548 { DBGFEVENT_INSTR_DRX_WRITE, "instr_drx_write", "drx_write",kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_TAKE_ARG, NULL },
549 { DBGFEVENT_INSTR_PAUSE, "instr_pause", "pause", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
550 { DBGFEVENT_INSTR_XSETBV, "instr_xsetbv", "xsetbv", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
551 { DBGFEVENT_INSTR_SIDT, "instr_sidt", "sidt", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
552 { DBGFEVENT_INSTR_LIDT, "instr_lidt", "lidt", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
553 { DBGFEVENT_INSTR_SGDT, "instr_sgdt", "sgdt", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
554 { DBGFEVENT_INSTR_LGDT, "instr_lgdt", "lgdt", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
555 { DBGFEVENT_INSTR_SLDT, "instr_sldt", "sldt", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
556 { DBGFEVENT_INSTR_LLDT, "instr_lldt", "lldt", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
557 { DBGFEVENT_INSTR_STR, "instr_str", "str", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
558 { DBGFEVENT_INSTR_LTR, "instr_ltr", "ltr", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
559 { DBGFEVENT_INSTR_GETSEC, "instr_getsec", "getsec", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
560 { DBGFEVENT_INSTR_RSM, "instr_rsm", "rsm", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
561 { DBGFEVENT_INSTR_RDRAND, "instr_rdrand", "rdrand", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
562 { DBGFEVENT_INSTR_RDSEED, "instr_rdseed", "rdseed", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
563 { DBGFEVENT_INSTR_XSAVES, "instr_xsaves", "xsaves", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
564 { DBGFEVENT_INSTR_XRSTORS, "instr_xrstors", "xrstors", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
565 { DBGFEVENT_INSTR_VMM_CALL, "instr_vmm_call", "vmm_call", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
566 { DBGFEVENT_INSTR_VMX_VMCLEAR, "instr_vmx_vmclear", "vmclear", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
567 { DBGFEVENT_INSTR_VMX_VMLAUNCH, "instr_vmx_vmlaunch", "vmlaunch", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
568 { DBGFEVENT_INSTR_VMX_VMPTRLD, "instr_vmx_vmptrld", "vmptrld", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
569 { DBGFEVENT_INSTR_VMX_VMPTRST, "instr_vmx_vmptrst", "vmptrst", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
570 { DBGFEVENT_INSTR_VMX_VMREAD, "instr_vmx_vmread", "vmread", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
571 { DBGFEVENT_INSTR_VMX_VMRESUME, "instr_vmx_vmresume", "vmresume", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
572 { DBGFEVENT_INSTR_VMX_VMWRITE, "instr_vmx_vmwrite", "vmwrite", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
573 { DBGFEVENT_INSTR_VMX_VMXOFF, "instr_vmx_vmxoff", "vmxoff", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
574 { DBGFEVENT_INSTR_VMX_VMXON, "instr_vmx_vmxon", "vmxon", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
575 { DBGFEVENT_INSTR_VMX_VMFUNC, "instr_vmx_vmfunc", "vmfunc", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
576 { DBGFEVENT_INSTR_VMX_INVEPT, "instr_vmx_invept", "invept", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
577 { DBGFEVENT_INSTR_VMX_INVVPID, "instr_vmx_invvpid", "invvpid", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
578 { DBGFEVENT_INSTR_VMX_INVPCID, "instr_vmx_invpcid", "invpcid", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
579 { DBGFEVENT_INSTR_SVM_VMRUN, "instr_svm_vmrun", "vmrun", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
580 { DBGFEVENT_INSTR_SVM_VMLOAD, "instr_svm_vmload", "vmload", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
581 { DBGFEVENT_INSTR_SVM_VMSAVE, "instr_svm_vmsave", "vmsave", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
582 { DBGFEVENT_INSTR_SVM_STGI, "instr_svm_stgi", "stgi", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
583 { DBGFEVENT_INSTR_SVM_CLGI, "instr_svm_clgi", "clgi", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
584 { DBGFEVENT_EXIT_TASK_SWITCH, "exit_task_switch", "task_switch", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
585 { DBGFEVENT_EXIT_HALT, "exit_halt", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
586 { DBGFEVENT_EXIT_MWAIT, "exit_mwait", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
587 { DBGFEVENT_EXIT_MONITOR, "exit_monitor", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
588 { DBGFEVENT_EXIT_CPUID, "exit_cpuid", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
589 { DBGFEVENT_EXIT_INVD, "exit_invd", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
590 { DBGFEVENT_EXIT_WBINVD, "exit_wbinvd", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
591 { DBGFEVENT_EXIT_INVLPG, "exit_invlpg", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
592 { DBGFEVENT_EXIT_RDTSC, "exit_rdtsc", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
593 { DBGFEVENT_EXIT_RDTSCP, "exit_rdtscp", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
594 { DBGFEVENT_EXIT_RDPMC, "exit_rdpmc", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
595 { DBGFEVENT_EXIT_RDMSR, "exit_rdmsr", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
596 { DBGFEVENT_EXIT_WRMSR, "exit_wrmsr", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
597 { DBGFEVENT_EXIT_CRX_READ, "exit_crx_read", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
598 { DBGFEVENT_EXIT_CRX_WRITE, "exit_crx_write", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
599 { DBGFEVENT_EXIT_DRX_READ, "exit_drx_read", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
600 { DBGFEVENT_EXIT_DRX_WRITE, "exit_drx_write", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
601 { DBGFEVENT_EXIT_PAUSE, "exit_pause", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
602 { DBGFEVENT_EXIT_XSETBV, "exit_xsetbv", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
603 { DBGFEVENT_EXIT_SIDT, "exit_sidt", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
604 { DBGFEVENT_EXIT_LIDT, "exit_lidt", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
605 { DBGFEVENT_EXIT_SGDT, "exit_sgdt", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
606 { DBGFEVENT_EXIT_LGDT, "exit_lgdt", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
607 { DBGFEVENT_EXIT_SLDT, "exit_sldt", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
608 { DBGFEVENT_EXIT_LLDT, "exit_lldt", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
609 { DBGFEVENT_EXIT_STR, "exit_str", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
610 { DBGFEVENT_EXIT_LTR, "exit_ltr", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
611 { DBGFEVENT_EXIT_GETSEC, "exit_getsec", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
612 { DBGFEVENT_EXIT_RSM, "exit_rsm", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
613 { DBGFEVENT_EXIT_RDRAND, "exit_rdrand", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
614 { DBGFEVENT_EXIT_RDSEED, "exit_rdseed", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
615 { DBGFEVENT_EXIT_XSAVES, "exit_xsaves", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
616 { DBGFEVENT_EXIT_XRSTORS, "exit_xrstors", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
617 { DBGFEVENT_EXIT_VMM_CALL, "exit_vmm_call", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
618 { DBGFEVENT_EXIT_VMX_VMCLEAR, "exit_vmx_vmclear", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
619 { DBGFEVENT_EXIT_VMX_VMLAUNCH, "exit_vmx_vmlaunch", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
620 { DBGFEVENT_EXIT_VMX_VMPTRLD, "exit_vmx_vmptrld", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
621 { DBGFEVENT_EXIT_VMX_VMPTRST, "exit_vmx_vmptrst", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
622 { DBGFEVENT_EXIT_VMX_VMREAD, "exit_vmx_vmread", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
623 { DBGFEVENT_EXIT_VMX_VMRESUME, "exit_vmx_vmresume", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
624 { DBGFEVENT_EXIT_VMX_VMWRITE, "exit_vmx_vmwrite", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
625 { DBGFEVENT_EXIT_VMX_VMXOFF, "exit_vmx_vmxoff", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
626 { DBGFEVENT_EXIT_VMX_VMXON, "exit_vmx_vmxon", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
627 { DBGFEVENT_EXIT_VMX_VMFUNC, "exit_vmx_vmfunc", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
628 { DBGFEVENT_EXIT_VMX_INVEPT, "exit_vmx_invept", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
629 { DBGFEVENT_EXIT_VMX_INVVPID, "exit_vmx_invvpid", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
630 { DBGFEVENT_EXIT_VMX_INVPCID, "exit_vmx_invpcid", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
631 { DBGFEVENT_EXIT_VMX_EPT_VIOLATION, "exit_vmx_ept_violation", "eptvio", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
632 { DBGFEVENT_EXIT_VMX_EPT_MISCONFIG, "exit_vmx_ept_misconfig", "eptmis", kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
633 { DBGFEVENT_EXIT_VMX_VAPIC_ACCESS, "exit_vmx_vapic_access", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
634 { DBGFEVENT_EXIT_VMX_VAPIC_WRITE, "exit_vmx_vapic_write", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
635 { DBGFEVENT_EXIT_SVM_VMRUN, "exit_svm_vmrun", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
636 { DBGFEVENT_EXIT_SVM_VMLOAD, "exit_svm_vmload", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
637 { DBGFEVENT_EXIT_SVM_VMSAVE, "exit_svm_vmsave", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
638 { DBGFEVENT_EXIT_SVM_STGI, "exit_svm_stgi", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
639 { DBGFEVENT_EXIT_SVM_CLGI, "exit_svm_clgi", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
640 { DBGFEVENT_IOPORT_UNASSIGNED, "pio_unassigned", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
641 { DBGFEVENT_IOPORT_UNUSED, "pio_unused", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
642 { DBGFEVENT_MEMORY_UNASSIGNED, "mmio_unassigned", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
643 { DBGFEVENT_MEMORY_ROM_WRITE, "rom_write", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, 0, NULL },
644 { DBGFEVENT_BSOD_MSR, "bsod_msr", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_BUGCHECK, NULL },
645 { DBGFEVENT_BSOD_EFI, "bsod_efi", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_BUGCHECK, NULL },
646 { DBGFEVENT_BSOD_VMMDEV, "bsod_vmmdev", NULL, kDbgcSxEventKind_Plain, kDbgcEvtState_Disabled, DBGCSXEVT_F_BUGCHECK, NULL },
647};
648/** Number of entries in g_aDbgcSxEvents. */
649const uint32_t g_cDbgcSxEvents = RT_ELEMENTS(g_aDbgcSxEvents);
650
651
652
653/**
654 * @callback_method_impl{FNDBGCCMD, The 'g' command.}
655 */
656static DECLCALLBACK(int) dbgcCmdGo(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
657{
658 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
659
660 /*
661 * Parse arguments.
662 */
663 VMCPUID idCpu = VMCPUID_ALL;
664 if (cArgs == 1)
665 {
666 VMCPUID cCpus = DBGFR3CpuGetCount(pUVM);
667 if (paArgs[0].u.u64Number >= cCpus)
668 return DBGCCmdHlpFail(pCmdHlp, pCmd, "idCpu %RU64 is out of range! Highest valid ID is %u.\n",
669 paArgs[0].u.u64Number, cCpus - 1);
670 idCpu = (VMCPUID)paArgs[0].u.u64Number;
671 }
672 else
673 Assert(cArgs == 0);
674
675 /*
676 * Try resume the VM or CPU.
677 */
678 int rc = DBGFR3Resume(pUVM, idCpu);
679 if (RT_SUCCESS(rc))
680 {
681 Assert(rc == VINF_SUCCESS || rc == VWRN_DBGF_ALREADY_RUNNING);
682 if (rc != VWRN_DBGF_ALREADY_RUNNING)
683 return VINF_SUCCESS;
684 if (idCpu == VMCPUID_ALL)
685 return DBGCCmdHlpFail(pCmdHlp, pCmd, "The VM is already running");
686 return DBGCCmdHlpFail(pCmdHlp, pCmd, "CPU %u is already running", idCpu);
687 }
688 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3Resume");
689}
690
691
692/**
693 * @callback_method_impl{FNDBGCCMD, The 'gu' command.}
694 */
695static DECLCALLBACK(int) dbgcCmdGoUp(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
696{
697 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
698 RT_NOREF(pCmd, paArgs, cArgs);
699
700 /* The simple way out. */
701 PDBGFADDRESS pStackPop = NULL; /** @todo try set up some stack limitations */
702 RTGCPTR cbStackPop = 0;
703 int rc = DBGFR3StepEx(pUVM, pDbgc->idCpu, DBGF_STEP_F_OVER | DBGF_STEP_F_STOP_AFTER_RET, NULL, pStackPop, cbStackPop, _512K);
704 if (RT_SUCCESS(rc))
705 pDbgc->fReady = false;
706 else
707 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3StepEx(,,DBGF_STEP_F_OVER | DBGF_STEP_F_STOP_AFTER_RET,) failed");
708 return rc;
709}
710
711
712/**
713 * @callback_method_impl{FNDBGCCMD, The 'ba' command.}
714 */
715static DECLCALLBACK(int) dbgcCmdBrkAccess(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
716{
717 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
718
719 /*
720 * Interpret access type.
721 */
722 if ( !strchr("xrwi", paArgs[0].u.pszString[0])
723 || paArgs[0].u.pszString[1])
724 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Invalid access type '%s' for '%s'. Valid types are 'e', 'r', 'w' and 'i'",
725 paArgs[0].u.pszString, pCmd->pszCmd);
726 uint8_t fType = 0;
727 switch (paArgs[0].u.pszString[0])
728 {
729 case 'x': fType = X86_DR7_RW_EO; break;
730 case 'r': fType = X86_DR7_RW_RW; break;
731 case 'w': fType = X86_DR7_RW_WO; break;
732 case 'i': fType = X86_DR7_RW_IO; break;
733 }
734
735 /*
736 * Validate size.
737 */
738 if (fType == X86_DR7_RW_EO && paArgs[1].u.u64Number != 1)
739 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Invalid access size %RX64 for '%s'. 'x' access type requires size 1!",
740 paArgs[1].u.u64Number, pCmd->pszCmd);
741 switch (paArgs[1].u.u64Number)
742 {
743 case 1:
744 case 2:
745 case 4:
746 break;
747 /*case 8: - later*/
748 default:
749 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Invalid access size %RX64 for '%s'. 1, 2 or 4!",
750 paArgs[1].u.u64Number, pCmd->pszCmd);
751 }
752 uint8_t cb = (uint8_t)paArgs[1].u.u64Number;
753
754 /*
755 * Convert the pointer to a DBGF address.
756 */
757 DBGFADDRESS Address;
758 int rc = DBGCCmdHlpVarToDbgfAddr(pCmdHlp, &paArgs[2], &Address);
759 if (RT_FAILURE(rc))
760 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGCCmdHlpVarToDbgfAddr(,%DV,)", &paArgs[2]);
761
762 /*
763 * Pick out the optional arguments.
764 */
765 uint64_t iHitTrigger = 0;
766 uint64_t iHitDisable = UINT64_MAX;
767 const char *pszCmds = NULL;
768 unsigned iArg = 3;
769 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_NUMBER)
770 {
771 iHitTrigger = paArgs[iArg].u.u64Number;
772 iArg++;
773 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_NUMBER)
774 {
775 iHitDisable = paArgs[iArg].u.u64Number;
776 iArg++;
777 }
778 }
779 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_STRING)
780 {
781 pszCmds = paArgs[iArg].u.pszString;
782 iArg++;
783 }
784
785 /*
786 * Try set the breakpoint.
787 */
788 uint32_t iBp;
789 rc = DBGFR3BpSetReg(pUVM, &Address, iHitTrigger, iHitDisable, fType, cb, &iBp);
790 if (RT_SUCCESS(rc))
791 {
792 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
793 rc = dbgcBpAdd(pDbgc, iBp, pszCmds);
794 if (RT_SUCCESS(rc))
795 return DBGCCmdHlpPrintf(pCmdHlp, "Set access breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
796 if (rc == VERR_DBGC_BP_EXISTS)
797 {
798 rc = dbgcBpUpdate(pDbgc, iBp, pszCmds);
799 if (RT_SUCCESS(rc))
800 return DBGCCmdHlpPrintf(pCmdHlp, "Updated access breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
801 }
802 int rc2 = DBGFR3BpClear(pDbgc->pUVM, iBp);
803 AssertRC(rc2);
804 }
805 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "Failed to set access breakpoint at %RGv", Address.FlatPtr);
806}
807
808
809/**
810 * @callback_method_impl{FNDBGCCMD, The 'bc' command.}
811 */
812static DECLCALLBACK(int) dbgcCmdBrkClear(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
813{
814 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
815
816 /*
817 * Enumerate the arguments.
818 */
819 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
820 int rc = VINF_SUCCESS;
821 for (unsigned iArg = 0; iArg < cArgs && RT_SUCCESS(rc); iArg++)
822 {
823 if (paArgs[iArg].enmType != DBGCVAR_TYPE_STRING)
824 {
825 /* one */
826 uint32_t iBp = (uint32_t)paArgs[iArg].u.u64Number;
827 if (iBp == paArgs[iArg].u.u64Number)
828 {
829 int rc2 = DBGFR3BpClear(pUVM, iBp);
830 if (RT_FAILURE(rc2))
831 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc2, "DBGFR3BpClear(,%#x)", iBp);
832 if (RT_SUCCESS(rc2) || rc2 == VERR_DBGF_BP_NOT_FOUND)
833 dbgcBpDelete(pDbgc, iBp);
834 }
835 else
836 rc = DBGCCmdHlpFail(pCmdHlp, pCmd, "Breakpoint id %RX64 is too large", paArgs[iArg].u.u64Number);
837 }
838 else if (!strcmp(paArgs[iArg].u.pszString, "all"))
839 {
840 /* all */
841 PDBGCBP pBp = pDbgc->pFirstBp;
842 while (pBp)
843 {
844 uint32_t iBp = pBp->iBp;
845 pBp = pBp->pNext;
846
847 int rc2 = DBGFR3BpClear(pUVM, iBp);
848 if (RT_FAILURE(rc2))
849 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc2, "DBGFR3BpClear(,%#x)", iBp);
850 if (RT_SUCCESS(rc2) || rc2 == VERR_DBGF_BP_NOT_FOUND)
851 dbgcBpDelete(pDbgc, iBp);
852 }
853 }
854 else
855 rc = DBGCCmdHlpFail(pCmdHlp, pCmd, "Invalid argument '%s'", paArgs[iArg].u.pszString);
856 }
857 return rc;
858}
859
860
861/**
862 * @callback_method_impl{FNDBGCCMD, The 'bd' command.}
863 */
864static DECLCALLBACK(int) dbgcCmdBrkDisable(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
865{
866 /*
867 * Enumerate the arguments.
868 */
869 int rc = VINF_SUCCESS;
870 for (unsigned iArg = 0; iArg < cArgs && RT_SUCCESS(rc); iArg++)
871 {
872 if (paArgs[iArg].enmType != DBGCVAR_TYPE_STRING)
873 {
874 /* one */
875 uint32_t iBp = (uint32_t)paArgs[iArg].u.u64Number;
876 if (iBp == paArgs[iArg].u.u64Number)
877 {
878 rc = DBGFR3BpDisable(pUVM, iBp);
879 if (RT_FAILURE(rc))
880 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3BpDisable failed for breakpoint %#x", iBp);
881 }
882 else
883 rc = DBGCCmdHlpFail(pCmdHlp, pCmd, "Breakpoint id %RX64 is too large", paArgs[iArg].u.u64Number);
884 }
885 else if (!strcmp(paArgs[iArg].u.pszString, "all"))
886 {
887 /* all */
888 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
889 for (PDBGCBP pBp = pDbgc->pFirstBp; pBp; pBp = pBp->pNext)
890 {
891 int rc2 = DBGFR3BpDisable(pUVM, pBp->iBp);
892 if (RT_FAILURE(rc2))
893 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc2, "DBGFR3BpDisable failed for breakpoint %#x", pBp->iBp);
894 }
895 }
896 else
897 rc = DBGCCmdHlpFail(pCmdHlp, pCmd, "Invalid argument '%s'", paArgs[iArg].u.pszString);
898 }
899 return rc;
900}
901
902
903/**
904 * @callback_method_impl{FNDBGCCMD, The 'be' command.}
905 */
906static DECLCALLBACK(int) dbgcCmdBrkEnable(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
907{
908 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
909
910 /*
911 * Enumerate the arguments.
912 */
913 int rc = VINF_SUCCESS;
914 for (unsigned iArg = 0; iArg < cArgs && RT_SUCCESS(rc); iArg++)
915 {
916 if (paArgs[iArg].enmType != DBGCVAR_TYPE_STRING)
917 {
918 /* one */
919 uint32_t iBp = (uint32_t)paArgs[iArg].u.u64Number;
920 if (iBp == paArgs[iArg].u.u64Number)
921 {
922 rc = DBGFR3BpEnable(pUVM, iBp);
923 if (RT_FAILURE(rc))
924 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3BpEnable failed for breakpoint %#x", iBp);
925 }
926 else
927 rc = DBGCCmdHlpFail(pCmdHlp, pCmd, "Breakpoint id %RX64 is too large", paArgs[iArg].u.u64Number);
928 }
929 else if (!strcmp(paArgs[iArg].u.pszString, "all"))
930 {
931 /* all */
932 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
933 for (PDBGCBP pBp = pDbgc->pFirstBp; pBp; pBp = pBp->pNext)
934 {
935 int rc2 = DBGFR3BpEnable(pUVM, pBp->iBp);
936 if (RT_FAILURE(rc2))
937 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc2, "DBGFR3BpEnable failed for breakpoint %#x", pBp->iBp);
938 }
939 }
940 else
941 rc = DBGCCmdHlpFail(pCmdHlp, pCmd, "Invalid argument '%s'", paArgs[iArg].u.pszString);
942 }
943 return rc;
944}
945
946
947/**
948 * Breakpoint enumeration callback function.
949 *
950 * @returns VBox status code. Any failure will stop the enumeration.
951 * @param pUVM The user mode VM handle.
952 * @param pvUser The user argument.
953 * @param pBp Pointer to the breakpoint information. (readonly)
954 */
955static DECLCALLBACK(int) dbgcEnumBreakpointsCallback(PUVM pUVM, void *pvUser, PCDBGFBP pBp)
956{
957 PDBGC pDbgc = (PDBGC)pvUser;
958 PDBGCBP pDbgcBp = dbgcBpGet(pDbgc, pBp->iBp);
959
960 /*
961 * BP type and size.
962 */
963 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, "%#4x %c ", pBp->iBp, pBp->fEnabled ? 'e' : 'd');
964 bool fHasAddress = false;
965 switch (pBp->enmType)
966 {
967 case DBGFBPTYPE_INT3:
968 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " p %RGv", pBp->u.Int3.GCPtr);
969 fHasAddress = true;
970 break;
971 case DBGFBPTYPE_REG:
972 {
973 char chType;
974 switch (pBp->u.Reg.fType)
975 {
976 case X86_DR7_RW_EO: chType = 'x'; break;
977 case X86_DR7_RW_WO: chType = 'w'; break;
978 case X86_DR7_RW_IO: chType = 'i'; break;
979 case X86_DR7_RW_RW: chType = 'r'; break;
980 default: chType = '?'; break;
981
982 }
983 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, "%d %c %RGv", pBp->u.Reg.cb, chType, pBp->u.Reg.GCPtr);
984 fHasAddress = true;
985 break;
986 }
987
988 case DBGFBPTYPE_REM:
989 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " r %RGv", pBp->u.Rem.GCPtr);
990 fHasAddress = true;
991 break;
992
993/** @todo realign the list when I/O and MMIO breakpoint command have been added and it's possible to test this code. */
994 case DBGFBPTYPE_PORT_IO:
995 case DBGFBPTYPE_MMIO:
996 {
997 uint32_t fAccess = pBp->enmType == DBGFBPTYPE_PORT_IO ? pBp->u.PortIo.fAccess : pBp->u.Mmio.fAccess;
998 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, pBp->enmType == DBGFBPTYPE_PORT_IO ? " i" : " m");
999 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " %c%c%c%c%c%c",
1000 fAccess & DBGFBPIOACCESS_READ_MASK ? 'r' : '-',
1001 fAccess & DBGFBPIOACCESS_READ_BYTE ? '1' : '-',
1002 fAccess & DBGFBPIOACCESS_READ_WORD ? '2' : '-',
1003 fAccess & DBGFBPIOACCESS_READ_DWORD ? '4' : '-',
1004 fAccess & DBGFBPIOACCESS_READ_QWORD ? '8' : '-',
1005 fAccess & DBGFBPIOACCESS_READ_OTHER ? '+' : '-');
1006 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " %c%c%c%c%c%c",
1007 fAccess & DBGFBPIOACCESS_WRITE_MASK ? 'w' : '-',
1008 fAccess & DBGFBPIOACCESS_WRITE_BYTE ? '1' : '-',
1009 fAccess & DBGFBPIOACCESS_WRITE_WORD ? '2' : '-',
1010 fAccess & DBGFBPIOACCESS_WRITE_DWORD ? '4' : '-',
1011 fAccess & DBGFBPIOACCESS_WRITE_QWORD ? '8' : '-',
1012 fAccess & DBGFBPIOACCESS_WRITE_OTHER ? '+' : '-');
1013 if (pBp->enmType == DBGFBPTYPE_PORT_IO)
1014 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " %04x-%04x",
1015 pBp->u.PortIo.uPort, pBp->u.PortIo.uPort + pBp->u.PortIo.cPorts - 1);
1016 else
1017 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, "%RGp LB %03x", pBp->u.Mmio.PhysAddr, pBp->u.Mmio.cb);
1018 break;
1019 }
1020
1021 default:
1022 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " unknown type %d!!", pBp->enmType);
1023 AssertFailed();
1024 break;
1025
1026 }
1027 if (pBp->iHitDisable == ~(uint64_t)0)
1028 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " %04RX64 (%04RX64 to ~0) ", pBp->cHits, pBp->iHitTrigger);
1029 else
1030 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " %04RX64 (%04RX64 to %04RX64)", pBp->cHits, pBp->iHitTrigger, pBp->iHitDisable);
1031
1032 /*
1033 * Try resolve the address if it has one.
1034 */
1035 if (fHasAddress)
1036 {
1037 RTDBGSYMBOL Sym;
1038 RTINTPTR off;
1039 DBGFADDRESS Addr;
1040 int rc = DBGFR3AsSymbolByAddr(pUVM, pDbgc->hDbgAs, DBGFR3AddrFromFlat(pDbgc->pUVM, &Addr, pBp->u.GCPtr),
1041 RTDBGSYMADDR_FLAGS_LESS_OR_EQUAL | RTDBGSYMADDR_FLAGS_SKIP_ABS_IN_DEFERRED,
1042 &off, &Sym, NULL);
1043 if (RT_SUCCESS(rc))
1044 {
1045 if (!off)
1046 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, "%s", Sym.szName);
1047 else if (off > 0)
1048 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, "%s+%RGv", Sym.szName, off);
1049 else
1050 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, "%s-%RGv", Sym.szName, -off);
1051 }
1052 }
1053
1054 /*
1055 * The commands.
1056 */
1057 if (pDbgcBp)
1058 {
1059 if (pDbgcBp->cchCmd)
1060 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, "\n cmds: '%s'\n", pDbgcBp->szCmd);
1061 else
1062 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, "\n");
1063 }
1064 else
1065 DBGCCmdHlpPrintf(&pDbgc->CmdHlp, " [unknown bp]\n");
1066
1067 return VINF_SUCCESS;
1068}
1069
1070
1071/**
1072 * @callback_method_impl{FNDBGCCMD, The 'bl' command.}
1073 */
1074static DECLCALLBACK(int) dbgcCmdBrkList(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
1075{
1076 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
1077 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, -1, cArgs == 0);
1078 NOREF(paArgs);
1079
1080 /*
1081 * Enumerate the breakpoints.
1082 */
1083 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
1084 int rc = DBGFR3BpEnum(pUVM, dbgcEnumBreakpointsCallback, pDbgc);
1085 if (RT_FAILURE(rc))
1086 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3BpEnum");
1087 return rc;
1088}
1089
1090
1091/**
1092 * @callback_method_impl{FNDBGCCMD, The 'bp' command.}
1093 */
1094static DECLCALLBACK(int) dbgcCmdBrkSet(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
1095{
1096 /*
1097 * Convert the pointer to a DBGF address.
1098 */
1099 DBGFADDRESS Address;
1100 int rc = DBGCCmdHlpVarToDbgfAddr(pCmdHlp, &paArgs[0], &Address);
1101 if (RT_FAILURE(rc))
1102 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGCCmdHlpVarToDbgfAddr(,'%DV',)", &paArgs[0]);
1103
1104 /*
1105 * Pick out the optional arguments.
1106 */
1107 uint64_t iHitTrigger = 0;
1108 uint64_t iHitDisable = UINT64_MAX;
1109 const char *pszCmds = NULL;
1110 unsigned iArg = 1;
1111 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_NUMBER)
1112 {
1113 iHitTrigger = paArgs[iArg].u.u64Number;
1114 iArg++;
1115 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_NUMBER)
1116 {
1117 iHitDisable = paArgs[iArg].u.u64Number;
1118 iArg++;
1119 }
1120 }
1121 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_STRING)
1122 {
1123 pszCmds = paArgs[iArg].u.pszString;
1124 iArg++;
1125 }
1126
1127 /*
1128 * Try set the breakpoint.
1129 */
1130 uint32_t iBp;
1131 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
1132 rc = DBGFR3BpSetInt3(pUVM, pDbgc->idCpu, &Address, iHitTrigger, iHitDisable, &iBp);
1133 if (RT_SUCCESS(rc))
1134 {
1135 rc = dbgcBpAdd(pDbgc, iBp, pszCmds);
1136 if (RT_SUCCESS(rc))
1137 return DBGCCmdHlpPrintf(pCmdHlp, "Set breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
1138 if (rc == VERR_DBGC_BP_EXISTS)
1139 {
1140 rc = dbgcBpUpdate(pDbgc, iBp, pszCmds);
1141 if (RT_SUCCESS(rc))
1142 return DBGCCmdHlpPrintf(pCmdHlp, "Updated breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
1143 }
1144 int rc2 = DBGFR3BpClear(pDbgc->pUVM, iBp);
1145 AssertRC(rc2);
1146 }
1147 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "Failed to set breakpoint at %RGv", Address.FlatPtr);
1148}
1149
1150
1151/**
1152 * @callback_method_impl{FNDBGCCMD, The 'br' command.}
1153 */
1154static DECLCALLBACK(int) dbgcCmdBrkREM(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
1155{
1156 /*
1157 * Convert the pointer to a DBGF address.
1158 */
1159 DBGFADDRESS Address;
1160 int rc = DBGCCmdHlpVarToDbgfAddr(pCmdHlp, &paArgs[0], &Address);
1161 if (RT_FAILURE(rc))
1162 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGCCmdHlpVarToDbgfAddr(,'%DV',)", &paArgs[0]);
1163
1164 /*
1165 * Pick out the optional arguments.
1166 */
1167 uint64_t iHitTrigger = 0;
1168 uint64_t iHitDisable = UINT64_MAX;
1169 const char *pszCmds = NULL;
1170 unsigned iArg = 1;
1171 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_NUMBER)
1172 {
1173 iHitTrigger = paArgs[iArg].u.u64Number;
1174 iArg++;
1175 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_NUMBER)
1176 {
1177 iHitDisable = paArgs[iArg].u.u64Number;
1178 iArg++;
1179 }
1180 }
1181 if (iArg < cArgs && paArgs[iArg].enmType == DBGCVAR_TYPE_STRING)
1182 {
1183 pszCmds = paArgs[iArg].u.pszString;
1184 iArg++;
1185 }
1186
1187 /*
1188 * Try set the breakpoint.
1189 */
1190 uint32_t iBp;
1191 rc = DBGFR3BpSetREM(pUVM, &Address, iHitTrigger, iHitDisable, &iBp);
1192 if (RT_SUCCESS(rc))
1193 {
1194 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
1195 rc = dbgcBpAdd(pDbgc, iBp, pszCmds);
1196 if (RT_SUCCESS(rc))
1197 return DBGCCmdHlpPrintf(pCmdHlp, "Set REM breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
1198 if (rc == VERR_DBGC_BP_EXISTS)
1199 {
1200 rc = dbgcBpUpdate(pDbgc, iBp, pszCmds);
1201 if (RT_SUCCESS(rc))
1202 return DBGCCmdHlpPrintf(pCmdHlp, "Updated REM breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
1203 }
1204 int rc2 = DBGFR3BpClear(pDbgc->pUVM, iBp);
1205 AssertRC(rc2);
1206 }
1207 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "Failed to set REM breakpoint at %RGv", Address.FlatPtr);
1208}
1209
1210
1211/**
1212 * Helps the unassmble ('u') command display symbols it starts at and passes.
1213 *
1214 * @param pUVM The user mode VM handle.
1215 * @param pCmdHlp The command helpers for printing via.
1216 * @param hDbgAs The address space to look up addresses in.
1217 * @param pAddress The current address.
1218 * @param pcbCallAgain Where to return the distance to the next check (in
1219 * instruction bytes).
1220 */
1221static void dbgcCmdUnassambleHelpListNear(PUVM pUVM, PDBGCCMDHLP pCmdHlp, RTDBGAS hDbgAs, PCDBGFADDRESS pAddress,
1222 PRTUINTPTR pcbCallAgain)
1223{
1224 RTDBGSYMBOL Symbol;
1225 RTGCINTPTR offDispSym;
1226 int rc = DBGFR3AsSymbolByAddr(pUVM, hDbgAs, pAddress,
1227 RTDBGSYMADDR_FLAGS_LESS_OR_EQUAL | RTDBGSYMADDR_FLAGS_SKIP_ABS_IN_DEFERRED,
1228 &offDispSym, &Symbol, NULL);
1229 if (RT_FAILURE(rc) || offDispSym > _1G)
1230 rc = DBGFR3AsSymbolByAddr(pUVM, hDbgAs, pAddress,
1231 RTDBGSYMADDR_FLAGS_GREATER_OR_EQUAL | RTDBGSYMADDR_FLAGS_SKIP_ABS_IN_DEFERRED,
1232 &offDispSym, &Symbol, NULL);
1233 if (RT_SUCCESS(rc) && offDispSym < _1G)
1234 {
1235 if (!offDispSym)
1236 {
1237 DBGCCmdHlpPrintf(pCmdHlp, "%s:\n", Symbol.szName);
1238 *pcbCallAgain = !Symbol.cb ? 64 : Symbol.cb;
1239 }
1240 else if (offDispSym > 0)
1241 {
1242 DBGCCmdHlpPrintf(pCmdHlp, "%s+%#llx:\n", Symbol.szName, (uint64_t)offDispSym);
1243 *pcbCallAgain = !Symbol.cb ? 64 : Symbol.cb > (RTGCUINTPTR)offDispSym ? Symbol.cb - (RTGCUINTPTR)offDispSym : 1;
1244 }
1245 else
1246 {
1247 DBGCCmdHlpPrintf(pCmdHlp, "%s-%#llx:\n", Symbol.szName, (uint64_t)-offDispSym);
1248 *pcbCallAgain = !Symbol.cb ? 64 : (RTGCUINTPTR)-offDispSym + Symbol.cb;
1249 }
1250 }
1251 else
1252 *pcbCallAgain = UINT32_MAX;
1253}
1254
1255
1256/**
1257 * @callback_method_impl{FNDBGCCMD, The 'u' command.}
1258 */
1259static DECLCALLBACK(int) dbgcCmdUnassemble(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
1260{
1261 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
1262
1263 /*
1264 * Validate input.
1265 */
1266 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
1267 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, -1, cArgs <= 1);
1268 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs == 0 || DBGCVAR_ISPOINTER(paArgs[0].enmType));
1269
1270 if (!cArgs && !DBGCVAR_ISPOINTER(pDbgc->DisasmPos.enmType))
1271 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Don't know where to start disassembling");
1272
1273 /*
1274 * Check the desired mode.
1275 */
1276 unsigned fFlags = DBGF_DISAS_FLAGS_NO_ADDRESS | DBGF_DISAS_FLAGS_UNPATCHED_BYTES | DBGF_DISAS_FLAGS_ANNOTATE_PATCHED;
1277 switch (pCmd->pszCmd[1])
1278 {
1279 default: AssertFailed(); RT_FALL_THRU();
1280 case '\0': fFlags |= DBGF_DISAS_FLAGS_DEFAULT_MODE; break;
1281 case '6': fFlags |= DBGF_DISAS_FLAGS_64BIT_MODE; break;
1282 case '3': fFlags |= DBGF_DISAS_FLAGS_32BIT_MODE; break;
1283 case '1': fFlags |= DBGF_DISAS_FLAGS_16BIT_MODE; break;
1284 case 'v': fFlags |= DBGF_DISAS_FLAGS_16BIT_REAL_MODE; break;
1285 }
1286
1287 /** @todo should use DBGFADDRESS for everything */
1288
1289 /*
1290 * Find address.
1291 */
1292 if (!cArgs)
1293 {
1294 if (!DBGCVAR_ISPOINTER(pDbgc->DisasmPos.enmType))
1295 {
1296 /** @todo Batch query CS, RIP, CPU mode and flags. */
1297 PVMCPU pVCpu = VMMR3GetCpuByIdU(pUVM, pDbgc->idCpu);
1298 if (CPUMIsGuestIn64BitCode(pVCpu))
1299 {
1300 pDbgc->DisasmPos.enmType = DBGCVAR_TYPE_GC_FLAT;
1301 pDbgc->SourcePos.u.GCFlat = CPUMGetGuestRIP(pVCpu);
1302 }
1303 else
1304 {
1305 pDbgc->DisasmPos.enmType = DBGCVAR_TYPE_GC_FAR;
1306 pDbgc->SourcePos.u.GCFar.off = CPUMGetGuestEIP(pVCpu);
1307 pDbgc->SourcePos.u.GCFar.sel = CPUMGetGuestCS(pVCpu);
1308 if ( (fFlags & DBGF_DISAS_FLAGS_MODE_MASK) == DBGF_DISAS_FLAGS_DEFAULT_MODE
1309 && (CPUMGetGuestEFlags(pVCpu) & X86_EFL_VM))
1310 {
1311 fFlags &= ~DBGF_DISAS_FLAGS_MODE_MASK;
1312 fFlags |= DBGF_DISAS_FLAGS_16BIT_REAL_MODE;
1313 }
1314 }
1315
1316 fFlags |= DBGF_DISAS_FLAGS_CURRENT_GUEST;
1317 }
1318 else if ((fFlags & DBGF_DISAS_FLAGS_MODE_MASK) == DBGF_DISAS_FLAGS_DEFAULT_MODE && pDbgc->fDisasm)
1319 {
1320 fFlags &= ~DBGF_DISAS_FLAGS_MODE_MASK;
1321 fFlags |= pDbgc->fDisasm & DBGF_DISAS_FLAGS_MODE_MASK;
1322 }
1323 pDbgc->DisasmPos.enmRangeType = DBGCVAR_RANGE_NONE;
1324 }
1325 else
1326 pDbgc->DisasmPos = paArgs[0];
1327 pDbgc->pLastPos = &pDbgc->DisasmPos;
1328
1329 /*
1330 * Range.
1331 */
1332 switch (pDbgc->DisasmPos.enmRangeType)
1333 {
1334 case DBGCVAR_RANGE_NONE:
1335 pDbgc->DisasmPos.enmRangeType = DBGCVAR_RANGE_ELEMENTS;
1336 pDbgc->DisasmPos.u64Range = 10;
1337 break;
1338
1339 case DBGCVAR_RANGE_ELEMENTS:
1340 if (pDbgc->DisasmPos.u64Range > 2048)
1341 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Too many lines requested. Max is 2048 lines");
1342 break;
1343
1344 case DBGCVAR_RANGE_BYTES:
1345 if (pDbgc->DisasmPos.u64Range > 65536)
1346 return DBGCCmdHlpFail(pCmdHlp, pCmd, "The requested range is too big. Max is 64KB");
1347 break;
1348
1349 default:
1350 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Unknown range type %d", pDbgc->DisasmPos.enmRangeType);
1351 }
1352
1353 /*
1354 * Convert physical and host addresses to guest addresses.
1355 */
1356 RTDBGAS hDbgAs = pDbgc->hDbgAs;
1357 int rc;
1358 switch (pDbgc->DisasmPos.enmType)
1359 {
1360 case DBGCVAR_TYPE_GC_FLAT:
1361 case DBGCVAR_TYPE_GC_FAR:
1362 break;
1363 case DBGCVAR_TYPE_GC_PHYS:
1364 hDbgAs = DBGF_AS_PHYS;
1365 RT_FALL_THRU();
1366 case DBGCVAR_TYPE_HC_FLAT:
1367 case DBGCVAR_TYPE_HC_PHYS:
1368 {
1369 DBGCVAR VarTmp;
1370 rc = DBGCCmdHlpEval(pCmdHlp, &VarTmp, "%%(%Dv)", &pDbgc->DisasmPos);
1371 if (RT_FAILURE(rc))
1372 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "failed to evaluate '%%(%Dv)'", &pDbgc->DisasmPos);
1373 pDbgc->DisasmPos = VarTmp;
1374 break;
1375 }
1376 default: AssertFailed(); break;
1377 }
1378
1379 DBGFADDRESS CurAddr;
1380 if ( (fFlags & DBGF_DISAS_FLAGS_MODE_MASK) == DBGF_DISAS_FLAGS_16BIT_REAL_MODE
1381 && pDbgc->DisasmPos.enmType == DBGCVAR_TYPE_GC_FAR)
1382 DBGFR3AddrFromFlat(pUVM, &CurAddr, ((uint32_t)pDbgc->DisasmPos.u.GCFar.sel << 4) + pDbgc->DisasmPos.u.GCFar.off);
1383 else
1384 {
1385 rc = DBGCCmdHlpVarToDbgfAddr(pCmdHlp, &pDbgc->DisasmPos, &CurAddr);
1386 if (RT_FAILURE(rc))
1387 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGCCmdHlpVarToDbgfAddr failed on '%Dv'", &pDbgc->DisasmPos);
1388 }
1389
1390 pDbgc->fDisasm = fFlags;
1391
1392 /*
1393 * Figure out where we are and display it. Also calculate when we need to
1394 * check for a new symbol if possible.
1395 */
1396 RTGCUINTPTR cbCheckSymbol;
1397 dbgcCmdUnassambleHelpListNear(pUVM, pCmdHlp, hDbgAs, &CurAddr, &cbCheckSymbol);
1398
1399 /*
1400 * Do the disassembling.
1401 */
1402 unsigned cTries = 32;
1403 int iRangeLeft = (int)pDbgc->DisasmPos.u64Range;
1404 if (iRangeLeft == 0) /* kludge for 'r'. */
1405 iRangeLeft = -1;
1406 for (;;)
1407 {
1408 /*
1409 * Disassemble the instruction.
1410 */
1411 char szDis[256];
1412 uint32_t cbInstr = 1;
1413 if (pDbgc->DisasmPos.enmType == DBGCVAR_TYPE_GC_FLAT)
1414 rc = DBGFR3DisasInstrEx(pUVM, pDbgc->idCpu, DBGF_SEL_FLAT, pDbgc->DisasmPos.u.GCFlat, fFlags,
1415 &szDis[0], sizeof(szDis), &cbInstr);
1416 else
1417 rc = DBGFR3DisasInstrEx(pUVM, pDbgc->idCpu, pDbgc->DisasmPos.u.GCFar.sel, pDbgc->DisasmPos.u.GCFar.off, fFlags,
1418 &szDis[0], sizeof(szDis), &cbInstr);
1419 if (RT_SUCCESS(rc))
1420 {
1421 /* print it */
1422 rc = DBGCCmdHlpPrintf(pCmdHlp, "%-16DV %s\n", &pDbgc->DisasmPos, &szDis[0]);
1423 if (RT_FAILURE(rc))
1424 return rc;
1425 }
1426 else
1427 {
1428 /* bitch. */
1429 int rc2 = DBGCCmdHlpPrintf(pCmdHlp, "Failed to disassemble instruction, skipping one byte.\n");
1430 if (RT_FAILURE(rc2))
1431 return rc2;
1432 if (cTries-- > 0)
1433 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "Too many disassembly failures. Giving up");
1434 cbInstr = 1;
1435 }
1436
1437 /* advance */
1438 if (iRangeLeft < 0) /* 'r' */
1439 break;
1440 if (pDbgc->DisasmPos.enmRangeType == DBGCVAR_RANGE_ELEMENTS)
1441 iRangeLeft--;
1442 else
1443 iRangeLeft -= cbInstr;
1444 rc = DBGCCmdHlpEval(pCmdHlp, &pDbgc->DisasmPos, "(%Dv) + %x", &pDbgc->DisasmPos, cbInstr);
1445 if (RT_FAILURE(rc))
1446 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGCCmdHlpEval(,,'(%Dv) + %x')", &pDbgc->DisasmPos, cbInstr);
1447 if (iRangeLeft <= 0)
1448 break;
1449 fFlags &= ~DBGF_DISAS_FLAGS_CURRENT_GUEST;
1450
1451 /* Print next symbol? */
1452 if (cbCheckSymbol <= cbInstr)
1453 {
1454 if ( (fFlags & DBGF_DISAS_FLAGS_MODE_MASK) == DBGF_DISAS_FLAGS_16BIT_REAL_MODE
1455 && pDbgc->DisasmPos.enmType == DBGCVAR_TYPE_GC_FAR)
1456 DBGFR3AddrFromFlat(pUVM, &CurAddr, ((uint32_t)pDbgc->DisasmPos.u.GCFar.sel << 4) + pDbgc->DisasmPos.u.GCFar.off);
1457 else
1458 rc = DBGCCmdHlpVarToDbgfAddr(pCmdHlp, &pDbgc->DisasmPos, &CurAddr);
1459 if (RT_SUCCESS(rc))
1460 dbgcCmdUnassambleHelpListNear(pUVM, pCmdHlp, hDbgAs, &CurAddr, &cbCheckSymbol);
1461 else
1462 cbCheckSymbol = UINT32_MAX;
1463 }
1464 else
1465 cbCheckSymbol -= cbInstr;
1466 }
1467
1468 NOREF(pCmd);
1469 return VINF_SUCCESS;
1470}
1471
1472
1473/**
1474 * @callback_method_impl{FNDGCSCREENBLIT}
1475 */
1476static DECLCALLBACK(int) dbgcCmdUnassembleCfgBlit(const char *psz, void *pvUser)
1477{
1478 PDBGCCMDHLP pCmdHlp = (PDBGCCMDHLP)pvUser;
1479 return DBGCCmdHlpPrintf(pCmdHlp, "%s", psz);
1480}
1481
1482
1483/**
1484 * Checks whether both addresses are equal.
1485 *
1486 * @returns true if both addresses point to the same location, false otherwise.
1487 * @param pAddr1 First address.
1488 * @param pAddr2 Second address.
1489 */
1490static bool dbgcCmdUnassembleCfgAddrEqual(PDBGFADDRESS pAddr1, PDBGFADDRESS pAddr2)
1491{
1492 return pAddr1->Sel == pAddr2->Sel
1493 && pAddr1->off == pAddr2->off;
1494}
1495
1496
1497/**
1498 * Checks whether the first given address is lower than the second one.
1499 *
1500 * @returns true if both addresses point to the same location, false otherwise.
1501 * @param pAddr1 First address.
1502 * @param pAddr2 Second address.
1503 */
1504static bool dbgcCmdUnassembleCfgAddrLower(PDBGFADDRESS pAddr1, PDBGFADDRESS pAddr2)
1505{
1506 return pAddr1->Sel == pAddr2->Sel
1507 && pAddr1->off < pAddr2->off;
1508}
1509
1510
1511/**
1512 * Calculates the size required for the given basic block including the
1513 * border and spacing on the edges.
1514 *
1515 * @returns nothing.
1516 * @param hFlowBb The basic block handle.
1517 * @param pDumpBb The dumper state to fill in for the basic block.
1518 */
1519static void dbgcCmdUnassembleCfgDumpCalcBbSize(DBGFFLOWBB hFlowBb, PDBGCFLOWBBDUMP pDumpBb)
1520{
1521 uint32_t fFlags = DBGFR3FlowBbGetFlags(hFlowBb);
1522 uint32_t cInstr = DBGFR3FlowBbGetInstrCount(hFlowBb);
1523
1524 pDumpBb->hFlowBb = hFlowBb;
1525 pDumpBb->cchHeight = cInstr + 4; /* Include spacing and border top and bottom. */
1526 pDumpBb->cchWidth = 0;
1527 DBGFR3FlowBbGetStartAddress(hFlowBb, &pDumpBb->AddrStart);
1528
1529 DBGFFLOWBBENDTYPE enmType = DBGFR3FlowBbGetType(hFlowBb);
1530 if ( enmType == DBGFFLOWBBENDTYPE_COND
1531 || enmType == DBGFFLOWBBENDTYPE_UNCOND_JMP
1532 || enmType == DBGFFLOWBBENDTYPE_UNCOND_INDIRECT_JMP)
1533 DBGFR3FlowBbGetBranchAddress(hFlowBb, &pDumpBb->AddrTarget);
1534
1535 if (fFlags & DBGF_FLOW_BB_F_INCOMPLETE_ERR)
1536 {
1537 const char *pszErr = NULL;
1538 DBGFR3FlowBbQueryError(hFlowBb, &pszErr);
1539 if (pszErr)
1540 {
1541 pDumpBb->cchHeight++;
1542 pDumpBb->cchWidth = RT_MAX(pDumpBb->cchWidth, (uint32_t)strlen(pszErr));
1543 }
1544 }
1545 for (unsigned i = 0; i < cInstr; i++)
1546 {
1547 const char *pszInstr = NULL;
1548 int rc = DBGFR3FlowBbQueryInstr(hFlowBb, i, NULL, NULL, &pszInstr);
1549 AssertRC(rc);
1550 pDumpBb->cchWidth = RT_MAX(pDumpBb->cchWidth, (uint32_t)strlen(pszInstr));
1551 }
1552 pDumpBb->cchWidth += 4; /* Include spacing and border left and right. */
1553}
1554
1555
1556/**
1557 * Dumps a top or bottom boundary line.
1558 *
1559 * @returns nothing.
1560 * @param hScreen The screen to draw to.
1561 * @param uStartX Where to start drawing the boundary.
1562 * @param uStartY Y coordinate.
1563 * @param cchWidth Width of the boundary.
1564 * @param enmColor The color to use for drawing.
1565 */
1566static void dbgcCmdUnassembleCfgDumpBbBoundary(DBGCSCREEN hScreen, uint32_t uStartX, uint32_t uStartY, uint32_t cchWidth,
1567 DBGCSCREENCOLOR enmColor)
1568{
1569 dbgcScreenAsciiDrawCharacter(hScreen, uStartX, uStartY, '+', enmColor);
1570 dbgcScreenAsciiDrawLineHorizontal(hScreen, uStartX + 1, uStartX + 1 + cchWidth - 2,
1571 uStartY, '-', enmColor);
1572 dbgcScreenAsciiDrawCharacter(hScreen, uStartX + cchWidth - 1, uStartY, '+', enmColor);
1573}
1574
1575
1576/**
1577 * Dumps a spacing line between the top or bottom boundary and the actual disassembly.
1578 *
1579 * @returns nothing.
1580 * @param hScreen The screen to draw to.
1581 * @param uStartX Where to start drawing the spacing.
1582 * @param uStartY Y coordinate.
1583 * @param cchWidth Width of the spacing.
1584 * @param enmColor The color to use for drawing.
1585 */
1586static void dbgcCmdUnassembleCfgDumpBbSpacing(DBGCSCREEN hScreen, uint32_t uStartX, uint32_t uStartY, uint32_t cchWidth,
1587 DBGCSCREENCOLOR enmColor)
1588{
1589 dbgcScreenAsciiDrawCharacter(hScreen, uStartX, uStartY, '|', enmColor);
1590 dbgcScreenAsciiDrawLineHorizontal(hScreen, uStartX + 1, uStartX + 1 + cchWidth - 2,
1591 uStartY, ' ', enmColor);
1592 dbgcScreenAsciiDrawCharacter(hScreen, uStartX + cchWidth - 1, uStartY, '|', enmColor);
1593}
1594
1595
1596/**
1597 * Writes a given text to the screen.
1598 *
1599 * @returns nothing.
1600 * @param hScreen The screen to draw to.
1601 * @param uStartX Where to start drawing the line.
1602 * @param uStartY Y coordinate.
1603 * @param cchWidth Maximum width of the text.
1604 * @param pszText The text to write.
1605 * @param enmTextColor The color to use for drawing the text.
1606 * @param enmBorderColor The color to use for drawing the border.
1607 */
1608static void dbgcCmdUnassembleCfgDumpBbText(DBGCSCREEN hScreen, uint32_t uStartX, uint32_t uStartY,
1609 uint32_t cchWidth, const char *pszText,
1610 DBGCSCREENCOLOR enmTextColor, DBGCSCREENCOLOR enmBorderColor)
1611{
1612 dbgcScreenAsciiDrawCharacter(hScreen, uStartX, uStartY, '|', enmBorderColor);
1613 dbgcScreenAsciiDrawCharacter(hScreen, uStartX + 1, uStartY, ' ', enmTextColor);
1614 dbgcScreenAsciiDrawString(hScreen, uStartX + 2, uStartY, pszText, enmTextColor);
1615 dbgcScreenAsciiDrawCharacter(hScreen, uStartX + cchWidth - 1, uStartY, '|', enmBorderColor);
1616}
1617
1618
1619/**
1620 * Dumps one basic block using the dumper callback.
1621 *
1622 * @returns nothing.
1623 * @param pDumpBb The basic block dump state to dump.
1624 * @param hScreen The screen to draw to.
1625 */
1626static void dbgcCmdUnassembleCfgDumpBb(PDBGCFLOWBBDUMP pDumpBb, DBGCSCREEN hScreen)
1627{
1628 uint32_t uStartY = pDumpBb->uStartY;
1629 bool fError = RT_BOOL(DBGFR3FlowBbGetFlags(pDumpBb->hFlowBb) & DBGF_FLOW_BB_F_INCOMPLETE_ERR);
1630 DBGCSCREENCOLOR enmColor = fError ? DBGCSCREENCOLOR_RED_BRIGHT : DBGCSCREENCOLOR_DEFAULT;
1631
1632 dbgcCmdUnassembleCfgDumpBbBoundary(hScreen, pDumpBb->uStartX, uStartY, pDumpBb->cchWidth, enmColor);
1633 uStartY++;
1634 dbgcCmdUnassembleCfgDumpBbSpacing(hScreen, pDumpBb->uStartX, uStartY, pDumpBb->cchWidth, enmColor);
1635 uStartY++;
1636
1637 uint32_t cInstr = DBGFR3FlowBbGetInstrCount(pDumpBb->hFlowBb);
1638 for (unsigned i = 0; i < cInstr; i++)
1639 {
1640 const char *pszInstr = NULL;
1641 DBGFR3FlowBbQueryInstr(pDumpBb->hFlowBb, i, NULL, NULL, &pszInstr);
1642 dbgcCmdUnassembleCfgDumpBbText(hScreen, pDumpBb->uStartX, uStartY + i,
1643 pDumpBb->cchWidth, pszInstr, DBGCSCREENCOLOR_DEFAULT,
1644 enmColor);
1645 }
1646 uStartY += cInstr;
1647
1648 if (fError)
1649 {
1650 const char *pszErr = NULL;
1651 DBGFR3FlowBbQueryError(pDumpBb->hFlowBb, &pszErr);
1652 if (pszErr)
1653 dbgcCmdUnassembleCfgDumpBbText(hScreen, pDumpBb->uStartX, uStartY,
1654 pDumpBb->cchWidth, pszErr, enmColor,
1655 enmColor);
1656 uStartY++;
1657 }
1658
1659 dbgcCmdUnassembleCfgDumpBbSpacing(hScreen, pDumpBb->uStartX, uStartY, pDumpBb->cchWidth, enmColor);
1660 uStartY++;
1661 dbgcCmdUnassembleCfgDumpBbBoundary(hScreen, pDumpBb->uStartX, uStartY, pDumpBb->cchWidth, enmColor);
1662 uStartY++;
1663}
1664
1665
1666/**
1667 * Dumps one branch table using the dumper callback.
1668 *
1669 * @returns nothing.
1670 * @param pDumpBranchTbl The basic block dump state to dump.
1671 * @param hScreen The screen to draw to.
1672 */
1673static void dbgcCmdUnassembleCfgDumpBranchTbl(PDBGCFLOWBRANCHTBLDUMP pDumpBranchTbl, DBGCSCREEN hScreen)
1674{
1675 uint32_t uStartY = pDumpBranchTbl->uStartY;
1676 DBGCSCREENCOLOR enmColor = DBGCSCREENCOLOR_CYAN_BRIGHT;
1677
1678 dbgcCmdUnassembleCfgDumpBbBoundary(hScreen, pDumpBranchTbl->uStartX, uStartY, pDumpBranchTbl->cchWidth, enmColor);
1679 uStartY++;
1680 dbgcCmdUnassembleCfgDumpBbSpacing(hScreen, pDumpBranchTbl->uStartX, uStartY, pDumpBranchTbl->cchWidth, enmColor);
1681 uStartY++;
1682
1683 uint32_t cSlots = DBGFR3FlowBranchTblGetSlots(pDumpBranchTbl->hFlowBranchTbl);
1684 for (unsigned i = 0; i < cSlots; i++)
1685 {
1686 DBGFADDRESS Addr;
1687 char szAddr[128];
1688
1689 RT_ZERO(szAddr);
1690 DBGFR3FlowBranchTblGetAddrAtSlot(pDumpBranchTbl->hFlowBranchTbl, i, &Addr);
1691
1692 if (Addr.Sel == DBGF_SEL_FLAT)
1693 RTStrPrintf(&szAddr[0], sizeof(szAddr), "%RGv", Addr.FlatPtr);
1694 else
1695 RTStrPrintf(&szAddr[0], sizeof(szAddr), "%04x:%RGv", Addr.Sel, Addr.off);
1696
1697 dbgcCmdUnassembleCfgDumpBbText(hScreen, pDumpBranchTbl->uStartX, uStartY + i,
1698 pDumpBranchTbl->cchWidth, &szAddr[0], DBGCSCREENCOLOR_DEFAULT,
1699 enmColor);
1700 }
1701 uStartY += cSlots;
1702
1703 dbgcCmdUnassembleCfgDumpBbSpacing(hScreen, pDumpBranchTbl->uStartX, uStartY, pDumpBranchTbl->cchWidth, enmColor);
1704 uStartY++;
1705 dbgcCmdUnassembleCfgDumpBbBoundary(hScreen, pDumpBranchTbl->uStartX, uStartY, pDumpBranchTbl->cchWidth, enmColor);
1706 uStartY++;
1707}
1708
1709
1710/**
1711 * Fills in the dump states for the basic blocks and branch tables.
1712 *
1713 * @returns VBox status code.
1714 * @param hFlowIt The control flow graph iterator handle.
1715 * @param hFlowBranchTblIt The control flow graph branch table iterator handle.
1716 * @param paDumpBb The array of basic block dump states.
1717 * @param paDumpBranchTbl The array of branch table dump states.
1718 * @param cBbs Number of basic blocks.
1719 * @param cBranchTbls Number of branch tables.
1720 */
1721static int dbgcCmdUnassembleCfgDumpCalcDimensions(DBGFFLOWIT hFlowIt, DBGFFLOWBRANCHTBLIT hFlowBranchTblIt,
1722 PDBGCFLOWBBDUMP paDumpBb, PDBGCFLOWBRANCHTBLDUMP paDumpBranchTbl,
1723 uint32_t cBbs, uint32_t cBranchTbls)
1724{
1725 RT_NOREF2(cBbs, cBranchTbls);
1726
1727 /* Calculate the sizes of each basic block first. */
1728 DBGFFLOWBB hFlowBb = DBGFR3FlowItNext(hFlowIt);
1729 uint32_t idx = 0;
1730 while (hFlowBb)
1731 {
1732 dbgcCmdUnassembleCfgDumpCalcBbSize(hFlowBb, &paDumpBb[idx]);
1733 idx++;
1734 hFlowBb = DBGFR3FlowItNext(hFlowIt);
1735 }
1736
1737 if (paDumpBranchTbl)
1738 {
1739 idx = 0;
1740 DBGFFLOWBRANCHTBL hFlowBranchTbl = DBGFR3FlowBranchTblItNext(hFlowBranchTblIt);
1741 while (hFlowBranchTbl)
1742 {
1743 paDumpBranchTbl[idx].hFlowBranchTbl = hFlowBranchTbl;
1744 paDumpBranchTbl[idx].cchHeight = DBGFR3FlowBranchTblGetSlots(hFlowBranchTbl) + 4; /* Spacing and border. */
1745 paDumpBranchTbl[idx].cchWidth = 25 + 4; /* Spacing and border. */
1746 idx++;
1747 hFlowBranchTbl = DBGFR3FlowBranchTblItNext(hFlowBranchTblIt);
1748 }
1749 }
1750
1751 return VINF_SUCCESS;
1752}
1753
1754/**
1755 * Dumps the given control flow graph to the output.
1756 *
1757 * @returns VBox status code.
1758 * @param hCfg The control flow graph handle.
1759 * @param fUseColor Flag whether the output should be colorized.
1760 * @param pCmdHlp The command helper callback table.
1761 */
1762static int dbgcCmdUnassembleCfgDump(DBGFFLOW hCfg, bool fUseColor, PDBGCCMDHLP pCmdHlp)
1763{
1764 int rc = VINF_SUCCESS;
1765 DBGFFLOWIT hCfgIt = NULL;
1766 DBGFFLOWBRANCHTBLIT hFlowBranchTblIt = NULL;
1767 uint32_t cBbs = DBGFR3FlowGetBbCount(hCfg);
1768 uint32_t cBranchTbls = DBGFR3FlowGetBranchTblCount(hCfg);
1769 PDBGCFLOWBBDUMP paDumpBb = (PDBGCFLOWBBDUMP)RTMemTmpAllocZ(cBbs * sizeof(DBGCFLOWBBDUMP));
1770 PDBGCFLOWBRANCHTBLDUMP paDumpBranchTbl = NULL;
1771
1772 if (cBranchTbls)
1773 paDumpBranchTbl = (PDBGCFLOWBRANCHTBLDUMP)RTMemAllocZ(cBranchTbls * sizeof(DBGCFLOWBRANCHTBLDUMP));
1774
1775 if (RT_UNLIKELY(!paDumpBb || (!paDumpBranchTbl && cBranchTbls > 0)))
1776 rc = VERR_NO_MEMORY;
1777 if (RT_SUCCESS(rc))
1778 rc = DBGFR3FlowItCreate(hCfg, DBGFFLOWITORDER_BY_ADDR_LOWEST_FIRST, &hCfgIt);
1779 if (RT_SUCCESS(rc) && cBranchTbls > 0)
1780 rc = DBGFR3FlowBranchTblItCreate(hCfg, DBGFFLOWITORDER_BY_ADDR_LOWEST_FIRST, &hFlowBranchTblIt);
1781
1782 if (RT_SUCCESS(rc))
1783 {
1784 rc = dbgcCmdUnassembleCfgDumpCalcDimensions(hCfgIt, hFlowBranchTblIt, paDumpBb, paDumpBranchTbl,
1785 cBbs, cBranchTbls);
1786
1787 /* Calculate the ASCII screen dimensions and create one. */
1788 uint32_t cchWidth = 0;
1789 uint32_t cchLeftExtra = 5;
1790 uint32_t cchRightExtra = 5;
1791 uint32_t cchHeight = 0;
1792 for (unsigned i = 0; i < cBbs; i++)
1793 {
1794 PDBGCFLOWBBDUMP pDumpBb = &paDumpBb[i];
1795 cchWidth = RT_MAX(cchWidth, pDumpBb->cchWidth);
1796 cchHeight += pDumpBb->cchHeight;
1797
1798 /* Incomplete blocks don't have a successor. */
1799 if (DBGFR3FlowBbGetFlags(pDumpBb->hFlowBb) & DBGF_FLOW_BB_F_INCOMPLETE_ERR)
1800 continue;
1801
1802 switch (DBGFR3FlowBbGetType(pDumpBb->hFlowBb))
1803 {
1804 case DBGFFLOWBBENDTYPE_EXIT:
1805 case DBGFFLOWBBENDTYPE_LAST_DISASSEMBLED:
1806 break;
1807 case DBGFFLOWBBENDTYPE_UNCOND_JMP:
1808 if ( dbgcCmdUnassembleCfgAddrLower(&pDumpBb->AddrTarget, &pDumpBb->AddrStart)
1809 || dbgcCmdUnassembleCfgAddrEqual(&pDumpBb->AddrTarget, &pDumpBb->AddrStart))
1810 cchLeftExtra++;
1811 else
1812 cchRightExtra++;
1813 break;
1814 case DBGFFLOWBBENDTYPE_UNCOND:
1815 cchHeight += 2; /* For the arrow down to the next basic block. */
1816 break;
1817 case DBGFFLOWBBENDTYPE_COND:
1818 cchHeight += 2; /* For the arrow down to the next basic block. */
1819 if ( dbgcCmdUnassembleCfgAddrLower(&pDumpBb->AddrTarget, &pDumpBb->AddrStart)
1820 || dbgcCmdUnassembleCfgAddrEqual(&pDumpBb->AddrTarget, &pDumpBb->AddrStart))
1821 cchLeftExtra++;
1822 else
1823 cchRightExtra++;
1824 break;
1825 case DBGFFLOWBBENDTYPE_UNCOND_INDIRECT_JMP:
1826 default:
1827 AssertFailed();
1828 }
1829 }
1830
1831 for (unsigned i = 0; i < cBranchTbls; i++)
1832 {
1833 PDBGCFLOWBRANCHTBLDUMP pDumpBranchTbl = &paDumpBranchTbl[i];
1834 cchWidth = RT_MAX(cchWidth, pDumpBranchTbl->cchWidth);
1835 cchHeight += pDumpBranchTbl->cchHeight;
1836 }
1837
1838 cchWidth += 2;
1839
1840 DBGCSCREEN hScreen = NULL;
1841 rc = dbgcScreenAsciiCreate(&hScreen, cchWidth + cchLeftExtra + cchRightExtra, cchHeight);
1842 if (RT_SUCCESS(rc))
1843 {
1844 uint32_t uY = 0;
1845
1846 /* Dump the branch tables first. */
1847 for (unsigned i = 0; i < cBranchTbls; i++)
1848 {
1849 paDumpBranchTbl[i].uStartX = cchLeftExtra + (cchWidth - paDumpBranchTbl[i].cchWidth) / 2;
1850 paDumpBranchTbl[i].uStartY = uY;
1851 dbgcCmdUnassembleCfgDumpBranchTbl(&paDumpBranchTbl[i], hScreen);
1852 uY += paDumpBranchTbl[i].cchHeight;
1853 }
1854
1855 /* Dump the basic blocks and connections to the immediate successor. */
1856 for (unsigned i = 0; i < cBbs; i++)
1857 {
1858 paDumpBb[i].uStartX = cchLeftExtra + (cchWidth - paDumpBb[i].cchWidth) / 2;
1859 paDumpBb[i].uStartY = uY;
1860 dbgcCmdUnassembleCfgDumpBb(&paDumpBb[i], hScreen);
1861 uY += paDumpBb[i].cchHeight;
1862
1863 /* Incomplete blocks don't have a successor. */
1864 if (DBGFR3FlowBbGetFlags(paDumpBb[i].hFlowBb) & DBGF_FLOW_BB_F_INCOMPLETE_ERR)
1865 continue;
1866
1867 switch (DBGFR3FlowBbGetType(paDumpBb[i].hFlowBb))
1868 {
1869 case DBGFFLOWBBENDTYPE_EXIT:
1870 case DBGFFLOWBBENDTYPE_LAST_DISASSEMBLED:
1871 case DBGFFLOWBBENDTYPE_UNCOND_JMP:
1872 case DBGFFLOWBBENDTYPE_UNCOND_INDIRECT_JMP:
1873 break;
1874 case DBGFFLOWBBENDTYPE_UNCOND:
1875 /* Draw the arrow down to the next block. */
1876 dbgcScreenAsciiDrawCharacter(hScreen, cchLeftExtra + cchWidth / 2, uY,
1877 '|', DBGCSCREENCOLOR_BLUE_BRIGHT);
1878 uY++;
1879 dbgcScreenAsciiDrawCharacter(hScreen, cchLeftExtra + cchWidth / 2, uY,
1880 'V', DBGCSCREENCOLOR_BLUE_BRIGHT);
1881 uY++;
1882 break;
1883 case DBGFFLOWBBENDTYPE_COND:
1884 /* Draw the arrow down to the next block. */
1885 dbgcScreenAsciiDrawCharacter(hScreen, cchLeftExtra + cchWidth / 2, uY,
1886 '|', DBGCSCREENCOLOR_RED_BRIGHT);
1887 uY++;
1888 dbgcScreenAsciiDrawCharacter(hScreen, cchLeftExtra + cchWidth / 2, uY,
1889 'V', DBGCSCREENCOLOR_RED_BRIGHT);
1890 uY++;
1891 break;
1892 default:
1893 AssertFailed();
1894 }
1895 }
1896
1897 /* Last pass, connect all remaining branches. */
1898 uint32_t uBackConns = 0;
1899 uint32_t uFwdConns = 0;
1900 for (unsigned i = 0; i < cBbs; i++)
1901 {
1902 PDBGCFLOWBBDUMP pDumpBb = &paDumpBb[i];
1903 DBGFFLOWBBENDTYPE enmEndType = DBGFR3FlowBbGetType(pDumpBb->hFlowBb);
1904
1905 /* Incomplete blocks don't have a successor. */
1906 if (DBGFR3FlowBbGetFlags(pDumpBb->hFlowBb) & DBGF_FLOW_BB_F_INCOMPLETE_ERR)
1907 continue;
1908
1909 switch (enmEndType)
1910 {
1911 case DBGFFLOWBBENDTYPE_EXIT:
1912 case DBGFFLOWBBENDTYPE_LAST_DISASSEMBLED:
1913 case DBGFFLOWBBENDTYPE_UNCOND:
1914 break;
1915 case DBGFFLOWBBENDTYPE_COND:
1916 case DBGFFLOWBBENDTYPE_UNCOND_JMP:
1917 {
1918 /* Find the target first to get the coordinates. */
1919 PDBGCFLOWBBDUMP pDumpBbTgt = NULL;
1920 for (unsigned idxDumpBb = 0; idxDumpBb < cBbs; idxDumpBb++)
1921 {
1922 pDumpBbTgt = &paDumpBb[idxDumpBb];
1923 if (dbgcCmdUnassembleCfgAddrEqual(&pDumpBb->AddrTarget, &pDumpBbTgt->AddrStart))
1924 break;
1925 }
1926
1927 DBGCSCREENCOLOR enmColor = enmEndType == DBGFFLOWBBENDTYPE_UNCOND_JMP
1928 ? DBGCSCREENCOLOR_YELLOW_BRIGHT
1929 : DBGCSCREENCOLOR_GREEN_BRIGHT;
1930
1931 /*
1932 * Use the right side for targets with higher addresses,
1933 * left when jumping backwards.
1934 */
1935 if ( dbgcCmdUnassembleCfgAddrLower(&pDumpBb->AddrTarget, &pDumpBb->AddrStart)
1936 || dbgcCmdUnassembleCfgAddrEqual(&pDumpBb->AddrTarget, &pDumpBb->AddrStart))
1937 {
1938 /* Going backwards. */
1939 uint32_t uXVerLine = /*cchLeftExtra - 1 -*/ uBackConns + 1;
1940 uint32_t uYHorLine = pDumpBb->uStartY + pDumpBb->cchHeight - 1 - 2;
1941 uBackConns++;
1942
1943 /* Draw the arrow pointing to the target block. */
1944 dbgcScreenAsciiDrawCharacter(hScreen, pDumpBbTgt->uStartX - 1, pDumpBbTgt->uStartY,
1945 '>', enmColor);
1946 /* Draw the horizontal line. */
1947 dbgcScreenAsciiDrawLineHorizontal(hScreen, uXVerLine + 1, pDumpBbTgt->uStartX - 2,
1948 pDumpBbTgt->uStartY, '-', enmColor);
1949 dbgcScreenAsciiDrawCharacter(hScreen, uXVerLine, pDumpBbTgt->uStartY, '+',
1950 enmColor);
1951 /* Draw the vertical line down to the source block. */
1952 dbgcScreenAsciiDrawLineVertical(hScreen, uXVerLine, pDumpBbTgt->uStartY + 1, uYHorLine - 1,
1953 '|', enmColor);
1954 dbgcScreenAsciiDrawCharacter(hScreen, uXVerLine, uYHorLine, '+', enmColor);
1955 /* Draw the horizontal connection between the source block and vertical part. */
1956 dbgcScreenAsciiDrawLineHorizontal(hScreen, uXVerLine + 1, pDumpBb->uStartX - 1,
1957 uYHorLine, '-', enmColor);
1958
1959 }
1960 else
1961 {
1962 /* Going forward. */
1963 uint32_t uXVerLine = cchWidth + cchLeftExtra + (cchRightExtra - uFwdConns) - 1;
1964 uint32_t uYHorLine = pDumpBb->uStartY + pDumpBb->cchHeight - 1 - 2;
1965 uFwdConns++;
1966
1967 /* Draw the horizontal line. */
1968 dbgcScreenAsciiDrawLineHorizontal(hScreen, pDumpBb->uStartX + pDumpBb->cchWidth,
1969 uXVerLine - 1, uYHorLine, '-', enmColor);
1970 dbgcScreenAsciiDrawCharacter(hScreen, uXVerLine, uYHorLine, '+', enmColor);
1971 /* Draw the vertical line down to the target block. */
1972 dbgcScreenAsciiDrawLineVertical(hScreen, uXVerLine, uYHorLine + 1, pDumpBbTgt->uStartY - 1,
1973 '|', enmColor);
1974 /* Draw the horizontal connection between the target block and vertical part. */
1975 dbgcScreenAsciiDrawLineHorizontal(hScreen, pDumpBbTgt->uStartX + pDumpBbTgt->cchWidth,
1976 uXVerLine, pDumpBbTgt->uStartY, '-', enmColor);
1977 dbgcScreenAsciiDrawCharacter(hScreen, uXVerLine, pDumpBbTgt->uStartY, '+',
1978 enmColor);
1979 /* Draw the arrow pointing to the target block. */
1980 dbgcScreenAsciiDrawCharacter(hScreen, pDumpBbTgt->uStartX + pDumpBbTgt->cchWidth,
1981 pDumpBbTgt->uStartY, '<', enmColor);
1982 }
1983 break;
1984 }
1985 case DBGFFLOWBBENDTYPE_UNCOND_INDIRECT_JMP:
1986 default:
1987 AssertFailed();
1988 }
1989 }
1990
1991 rc = dbgcScreenAsciiBlit(hScreen, dbgcCmdUnassembleCfgBlit, pCmdHlp, fUseColor);
1992 dbgcScreenAsciiDestroy(hScreen);
1993 }
1994 }
1995
1996 if (paDumpBb)
1997 {
1998 for (unsigned i = 0; i < cBbs; i++)
1999 DBGFR3FlowBbRelease(paDumpBb[i].hFlowBb);
2000 RTMemTmpFree(paDumpBb);
2001 }
2002
2003 if (paDumpBranchTbl)
2004 {
2005 for (unsigned i = 0; i < cBranchTbls; i++)
2006 DBGFR3FlowBranchTblRelease(paDumpBranchTbl[i].hFlowBranchTbl);
2007 RTMemTmpFree(paDumpBranchTbl);
2008 }
2009
2010 if (hCfgIt)
2011 DBGFR3FlowItDestroy(hCfgIt);
2012 if (hFlowBranchTblIt)
2013 DBGFR3FlowBranchTblItDestroy(hFlowBranchTblIt);
2014
2015 return rc;
2016}
2017
2018
2019/**
2020 * @callback_method_impl{FNDBGCCMD, The 'ucfg' command.}
2021 */
2022static DECLCALLBACK(int) dbgcCmdUnassembleCfg(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2023{
2024 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2025
2026 /*
2027 * Validate input.
2028 */
2029 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
2030 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, -1, cArgs <= 1);
2031 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs == 0 || DBGCVAR_ISPOINTER(paArgs[0].enmType));
2032
2033 if (!cArgs && !DBGCVAR_ISPOINTER(pDbgc->DisasmPos.enmType))
2034 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Don't know where to start disassembling");
2035
2036 /*
2037 * Check the desired mode.
2038 */
2039 unsigned fFlags = DBGF_DISAS_FLAGS_UNPATCHED_BYTES | DBGF_DISAS_FLAGS_ANNOTATE_PATCHED;
2040 bool fUseColor = false;
2041 switch (pCmd->pszCmd[4])
2042 {
2043 default: AssertFailed(); RT_FALL_THRU();
2044 case '\0': fFlags |= DBGF_DISAS_FLAGS_DEFAULT_MODE; break;
2045 case '6': fFlags |= DBGF_DISAS_FLAGS_64BIT_MODE; break;
2046 case '3': fFlags |= DBGF_DISAS_FLAGS_32BIT_MODE; break;
2047 case '1': fFlags |= DBGF_DISAS_FLAGS_16BIT_MODE; break;
2048 case 'v': fFlags |= DBGF_DISAS_FLAGS_16BIT_REAL_MODE; break;
2049 case 'c': fUseColor = true; break;
2050 }
2051
2052 /** @todo should use DBGFADDRESS for everything */
2053
2054 /*
2055 * Find address.
2056 */
2057 if (!cArgs)
2058 {
2059 if (!DBGCVAR_ISPOINTER(pDbgc->DisasmPos.enmType))
2060 {
2061 /** @todo Batch query CS, RIP, CPU mode and flags. */
2062 PVMCPU pVCpu = VMMR3GetCpuByIdU(pUVM, pDbgc->idCpu);
2063 if (CPUMIsGuestIn64BitCode(pVCpu))
2064 {
2065 pDbgc->DisasmPos.enmType = DBGCVAR_TYPE_GC_FLAT;
2066 pDbgc->SourcePos.u.GCFlat = CPUMGetGuestRIP(pVCpu);
2067 }
2068 else
2069 {
2070 pDbgc->DisasmPos.enmType = DBGCVAR_TYPE_GC_FAR;
2071 pDbgc->SourcePos.u.GCFar.off = CPUMGetGuestEIP(pVCpu);
2072 pDbgc->SourcePos.u.GCFar.sel = CPUMGetGuestCS(pVCpu);
2073 if ( (fFlags & DBGF_DISAS_FLAGS_MODE_MASK) == DBGF_DISAS_FLAGS_DEFAULT_MODE
2074 && (CPUMGetGuestEFlags(pVCpu) & X86_EFL_VM))
2075 {
2076 fFlags &= ~DBGF_DISAS_FLAGS_MODE_MASK;
2077 fFlags |= DBGF_DISAS_FLAGS_16BIT_REAL_MODE;
2078 }
2079 }
2080
2081 fFlags |= DBGF_DISAS_FLAGS_CURRENT_GUEST;
2082 }
2083 else if ((fFlags & DBGF_DISAS_FLAGS_MODE_MASK) == DBGF_DISAS_FLAGS_DEFAULT_MODE && pDbgc->fDisasm)
2084 {
2085 fFlags &= ~DBGF_DISAS_FLAGS_MODE_MASK;
2086 fFlags |= pDbgc->fDisasm & DBGF_DISAS_FLAGS_MODE_MASK;
2087 }
2088 pDbgc->DisasmPos.enmRangeType = DBGCVAR_RANGE_NONE;
2089 }
2090 else
2091 pDbgc->DisasmPos = paArgs[0];
2092 pDbgc->pLastPos = &pDbgc->DisasmPos;
2093
2094 /*
2095 * Range.
2096 */
2097 switch (pDbgc->DisasmPos.enmRangeType)
2098 {
2099 case DBGCVAR_RANGE_NONE:
2100 pDbgc->DisasmPos.enmRangeType = DBGCVAR_RANGE_ELEMENTS;
2101 pDbgc->DisasmPos.u64Range = 10;
2102 break;
2103
2104 case DBGCVAR_RANGE_ELEMENTS:
2105 if (pDbgc->DisasmPos.u64Range > 2048)
2106 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Too many lines requested. Max is 2048 lines");
2107 break;
2108
2109 case DBGCVAR_RANGE_BYTES:
2110 if (pDbgc->DisasmPos.u64Range > 65536)
2111 return DBGCCmdHlpFail(pCmdHlp, pCmd, "The requested range is too big. Max is 64KB");
2112 break;
2113
2114 default:
2115 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Unknown range type %d", pDbgc->DisasmPos.enmRangeType);
2116 }
2117
2118 /*
2119 * Convert physical and host addresses to guest addresses.
2120 */
2121 RTDBGAS hDbgAs = pDbgc->hDbgAs;
2122 int rc;
2123 switch (pDbgc->DisasmPos.enmType)
2124 {
2125 case DBGCVAR_TYPE_GC_FLAT:
2126 case DBGCVAR_TYPE_GC_FAR:
2127 break;
2128 case DBGCVAR_TYPE_GC_PHYS:
2129 hDbgAs = DBGF_AS_PHYS;
2130 RT_FALL_THRU();
2131 case DBGCVAR_TYPE_HC_FLAT:
2132 case DBGCVAR_TYPE_HC_PHYS:
2133 {
2134 DBGCVAR VarTmp;
2135 rc = DBGCCmdHlpEval(pCmdHlp, &VarTmp, "%%(%Dv)", &pDbgc->DisasmPos);
2136 if (RT_FAILURE(rc))
2137 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "failed to evaluate '%%(%Dv)'", &pDbgc->DisasmPos);
2138 pDbgc->DisasmPos = VarTmp;
2139 break;
2140 }
2141 default: AssertFailed(); break;
2142 }
2143
2144 DBGFADDRESS CurAddr;
2145 if ( (fFlags & DBGF_DISAS_FLAGS_MODE_MASK) == DBGF_DISAS_FLAGS_16BIT_REAL_MODE
2146 && pDbgc->DisasmPos.enmType == DBGCVAR_TYPE_GC_FAR)
2147 DBGFR3AddrFromFlat(pUVM, &CurAddr, ((uint32_t)pDbgc->DisasmPos.u.GCFar.sel << 4) + pDbgc->DisasmPos.u.GCFar.off);
2148 else
2149 {
2150 rc = DBGCCmdHlpVarToDbgfAddr(pCmdHlp, &pDbgc->DisasmPos, &CurAddr);
2151 if (RT_FAILURE(rc))
2152 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGCCmdHlpVarToDbgfAddr failed on '%Dv'", &pDbgc->DisasmPos);
2153 }
2154
2155 DBGFFLOW hCfg;
2156 rc = DBGFR3FlowCreate(pUVM, pDbgc->idCpu, &CurAddr, 0 /*cbDisasmMax*/,
2157 DBGF_FLOW_CREATE_F_TRY_RESOLVE_INDIRECT_BRANCHES, fFlags, &hCfg);
2158 if (RT_SUCCESS(rc))
2159 {
2160 /* Dump the graph. */
2161 rc = dbgcCmdUnassembleCfgDump(hCfg, fUseColor, pCmdHlp);
2162 DBGFR3FlowRelease(hCfg);
2163 }
2164 else
2165 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3FlowCreate failed on '%Dv'", &pDbgc->DisasmPos);
2166
2167 NOREF(pCmd);
2168 return rc;
2169}
2170
2171
2172/**
2173 * @callback_method_impl{FNDBGCCMD, The 'ls' command.}
2174 */
2175static DECLCALLBACK(int) dbgcCmdListSource(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2176{
2177 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2178
2179 /*
2180 * Validate input.
2181 */
2182 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs <= 1);
2183 if (cArgs == 1)
2184 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, DBGCVAR_ISPOINTER(paArgs[0].enmType));
2185 if (!pUVM && !cArgs && !DBGCVAR_ISPOINTER(pDbgc->SourcePos.enmType))
2186 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Don't know where to start listing...");
2187 if (!pUVM && cArgs && DBGCVAR_ISGCPOINTER(paArgs[0].enmType))
2188 return DBGCCmdHlpFail(pCmdHlp, pCmd, "GC address but no VM");
2189
2190 /*
2191 * Find address.
2192 */
2193 if (!cArgs)
2194 {
2195 if (!DBGCVAR_ISPOINTER(pDbgc->SourcePos.enmType))
2196 {
2197 PVMCPU pVCpu = VMMR3GetCpuByIdU(pUVM, pDbgc->idCpu);
2198 pDbgc->SourcePos.enmType = DBGCVAR_TYPE_GC_FAR;
2199 pDbgc->SourcePos.u.GCFar.off = CPUMGetGuestEIP(pVCpu);
2200 pDbgc->SourcePos.u.GCFar.sel = CPUMGetGuestCS(pVCpu);
2201 }
2202 pDbgc->SourcePos.enmRangeType = DBGCVAR_RANGE_NONE;
2203 }
2204 else
2205 pDbgc->SourcePos = paArgs[0];
2206 pDbgc->pLastPos = &pDbgc->SourcePos;
2207
2208 /*
2209 * Ensure the source address is flat GC.
2210 */
2211 switch (pDbgc->SourcePos.enmType)
2212 {
2213 case DBGCVAR_TYPE_GC_FLAT:
2214 break;
2215 case DBGCVAR_TYPE_GC_PHYS:
2216 case DBGCVAR_TYPE_GC_FAR:
2217 case DBGCVAR_TYPE_HC_FLAT:
2218 case DBGCVAR_TYPE_HC_PHYS:
2219 {
2220 int rc = DBGCCmdHlpEval(pCmdHlp, &pDbgc->SourcePos, "%%(%Dv)", &pDbgc->SourcePos);
2221 if (RT_FAILURE(rc))
2222 return DBGCCmdHlpPrintf(pCmdHlp, "error: Invalid address or address type. (rc=%d)\n", rc);
2223 break;
2224 }
2225 default: AssertFailed(); break;
2226 }
2227
2228 /*
2229 * Range.
2230 */
2231 switch (pDbgc->SourcePos.enmRangeType)
2232 {
2233 case DBGCVAR_RANGE_NONE:
2234 pDbgc->SourcePos.enmRangeType = DBGCVAR_RANGE_ELEMENTS;
2235 pDbgc->SourcePos.u64Range = 10;
2236 break;
2237
2238 case DBGCVAR_RANGE_ELEMENTS:
2239 if (pDbgc->SourcePos.u64Range > 2048)
2240 return DBGCCmdHlpPrintf(pCmdHlp, "error: Too many lines requested. Max is 2048 lines.\n");
2241 break;
2242
2243 case DBGCVAR_RANGE_BYTES:
2244 if (pDbgc->SourcePos.u64Range > 65536)
2245 return DBGCCmdHlpPrintf(pCmdHlp, "error: The requested range is too big. Max is 64KB.\n");
2246 break;
2247
2248 default:
2249 return DBGCCmdHlpPrintf(pCmdHlp, "internal error: Unknown range type %d.\n", pDbgc->SourcePos.enmRangeType);
2250 }
2251
2252 /*
2253 * Do the disassembling.
2254 */
2255 bool fFirst = 1;
2256 RTDBGLINE LinePrev = { 0, 0, 0, 0, 0, "" };
2257 int iRangeLeft = (int)pDbgc->SourcePos.u64Range;
2258 if (iRangeLeft == 0) /* kludge for 'r'. */
2259 iRangeLeft = -1;
2260 for (;;)
2261 {
2262 /*
2263 * Get line info.
2264 */
2265 RTDBGLINE Line;
2266 RTGCINTPTR off;
2267 DBGFADDRESS SourcePosAddr;
2268 int rc = DBGCCmdHlpVarToDbgfAddr(pCmdHlp, &pDbgc->SourcePos, &SourcePosAddr);
2269 if (RT_FAILURE(rc))
2270 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGCCmdHlpVarToDbgfAddr(,%Dv)", &pDbgc->SourcePos);
2271 rc = DBGFR3AsLineByAddr(pUVM, pDbgc->hDbgAs, &SourcePosAddr, &off, &Line, NULL);
2272 if (RT_FAILURE(rc))
2273 return VINF_SUCCESS;
2274
2275 unsigned cLines = 0;
2276 if (memcmp(&Line, &LinePrev, sizeof(Line)))
2277 {
2278 /*
2279 * Print filenamename
2280 */
2281 if (!fFirst && strcmp(Line.szFilename, LinePrev.szFilename))
2282 fFirst = true;
2283 if (fFirst)
2284 {
2285 rc = DBGCCmdHlpPrintf(pCmdHlp, "[%s @ %d]\n", Line.szFilename, Line.uLineNo);
2286 if (RT_FAILURE(rc))
2287 return rc;
2288 }
2289
2290 /*
2291 * Try open the file and read the line.
2292 */
2293 FILE *phFile = fopen(Line.szFilename, "r");
2294 if (phFile)
2295 {
2296 /* Skip ahead to the desired line. */
2297 char szLine[4096];
2298 unsigned cBefore = fFirst ? RT_MIN(2, Line.uLineNo - 1) : Line.uLineNo - LinePrev.uLineNo - 1;
2299 if (cBefore > 7)
2300 cBefore = 0;
2301 unsigned cLeft = Line.uLineNo - cBefore;
2302 while (cLeft > 0)
2303 {
2304 szLine[0] = '\0';
2305 if (!fgets(szLine, sizeof(szLine), phFile))
2306 break;
2307 cLeft--;
2308 }
2309 if (!cLeft)
2310 {
2311 /* print the before lines */
2312 for (;;)
2313 {
2314 size_t cch = strlen(szLine);
2315 while (cch > 0 && (szLine[cch - 1] == '\r' || szLine[cch - 1] == '\n' || RT_C_IS_SPACE(szLine[cch - 1])) )
2316 szLine[--cch] = '\0';
2317 if (cBefore-- <= 0)
2318 break;
2319
2320 rc = DBGCCmdHlpPrintf(pCmdHlp, " %4d: %s\n", Line.uLineNo - cBefore - 1, szLine);
2321 szLine[0] = '\0';
2322 const char *pszShutUpGcc = fgets(szLine, sizeof(szLine), phFile); NOREF(pszShutUpGcc);
2323 cLines++;
2324 }
2325 /* print the actual line */
2326 rc = DBGCCmdHlpPrintf(pCmdHlp, "%08llx %4d: %s\n", Line.Address, Line.uLineNo, szLine);
2327 }
2328 fclose(phFile);
2329 if (RT_FAILURE(rc))
2330 return rc;
2331 fFirst = false;
2332 }
2333 else
2334 return DBGCCmdHlpPrintf(pCmdHlp, "Warning: couldn't open source file '%s'\n", Line.szFilename);
2335
2336 LinePrev = Line;
2337 }
2338
2339
2340 /*
2341 * Advance
2342 */
2343 if (iRangeLeft < 0) /* 'r' */
2344 break;
2345 if (pDbgc->SourcePos.enmRangeType == DBGCVAR_RANGE_ELEMENTS)
2346 iRangeLeft -= cLines;
2347 else
2348 iRangeLeft -= 1;
2349 rc = DBGCCmdHlpEval(pCmdHlp, &pDbgc->SourcePos, "(%Dv) + %x", &pDbgc->SourcePos, 1);
2350 if (RT_FAILURE(rc))
2351 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "Expression: (%Dv) + %x\n", &pDbgc->SourcePos, 1);
2352 if (iRangeLeft <= 0)
2353 break;
2354 }
2355
2356 NOREF(pCmd);
2357 return 0;
2358}
2359
2360
2361/**
2362 * @callback_method_impl{FNDBGCCMD, The 'r' command.}
2363 */
2364static DECLCALLBACK(int) dbgcCmdReg(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2365{
2366 return dbgcCmdRegGuest(pCmd, pCmdHlp, pUVM, paArgs, cArgs);
2367}
2368
2369
2370/**
2371 * @callback_method_impl{FNDBGCCMD, Common worker for the dbgcCmdReg*()
2372 * commands.}
2373 */
2374static DECLCALLBACK(int) dbgcCmdRegCommon(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs,
2375 const char *pszPrefix)
2376{
2377 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2378 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs == 1 || cArgs == 2 || cArgs == 3);
2379 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, paArgs[0].enmType == DBGCVAR_TYPE_STRING
2380 || paArgs[0].enmType == DBGCVAR_TYPE_SYMBOL);
2381
2382 /*
2383 * Parse the register name and kind.
2384 */
2385 const char *pszReg = paArgs[0].u.pszString;
2386 if (*pszReg == '@')
2387 pszReg++;
2388 VMCPUID idCpu = pDbgc->idCpu;
2389 if (*pszPrefix)
2390 idCpu |= DBGFREG_HYPER_VMCPUID;
2391 if (*pszReg == '.')
2392 {
2393 pszReg++;
2394 idCpu |= DBGFREG_HYPER_VMCPUID;
2395 }
2396 const char * const pszActualPrefix = idCpu & DBGFREG_HYPER_VMCPUID ? "." : "";
2397
2398 /*
2399 * Query the register type & value (the setter needs the type).
2400 */
2401 DBGFREGVALTYPE enmType;
2402 DBGFREGVAL Value;
2403 int rc = DBGFR3RegNmQuery(pUVM, idCpu, pszReg, &Value, &enmType);
2404 if (RT_FAILURE(rc))
2405 {
2406 if (rc == VERR_DBGF_REGISTER_NOT_FOUND)
2407 return DBGCCmdHlpVBoxError(pCmdHlp, VERR_INVALID_PARAMETER, "Unknown register: '%s%s'.\n",
2408 pszActualPrefix, pszReg);
2409 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "DBGFR3RegNmQuery failed querying '%s%s': %Rrc.\n",
2410 pszActualPrefix, pszReg, rc);
2411 }
2412 if (cArgs == 1)
2413 {
2414 /*
2415 * Show the register.
2416 */
2417 char szValue[160];
2418 rc = DBGFR3RegFormatValue(szValue, sizeof(szValue), &Value, enmType, true /*fSpecial*/);
2419 if (RT_SUCCESS(rc))
2420 rc = DBGCCmdHlpPrintf(pCmdHlp, "%s%s=%s\n", pszActualPrefix, pszReg, szValue);
2421 else
2422 rc = DBGCCmdHlpVBoxError(pCmdHlp, rc, "DBGFR3RegFormatValue failed: %Rrc.\n", rc);
2423 }
2424 else
2425 {
2426 DBGCVAR NewValueTmp;
2427 PCDBGCVAR pNewValue;
2428 if (cArgs == 3)
2429 {
2430 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 1, paArgs[1].enmType == DBGCVAR_TYPE_STRING);
2431 if (strcmp(paArgs[1].u.pszString, "="))
2432 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Second argument must be '='.");
2433 pNewValue = &paArgs[2];
2434 }
2435 else
2436 {
2437 /* Not possible to convince the parser to support both codeview and
2438 windbg syntax and make the equal sign optional. Try help it. */
2439 /** @todo make DBGCCmdHlpConvert do more with strings. */
2440 rc = DBGCCmdHlpConvert(pCmdHlp, &paArgs[1], DBGCVAR_TYPE_NUMBER, true /*fConvSyms*/, &NewValueTmp);
2441 if (RT_FAILURE(rc))
2442 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "The last argument must be a value or valid symbol.");
2443 pNewValue = &NewValueTmp;
2444 }
2445
2446 /*
2447 * Modify the register.
2448 */
2449 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 1, pNewValue->enmType == DBGCVAR_TYPE_NUMBER);
2450 if (enmType != DBGFREGVALTYPE_DTR)
2451 {
2452 enmType = DBGFREGVALTYPE_U64;
2453 rc = DBGCCmdHlpVarToNumber(pCmdHlp, pNewValue, &Value.u64);
2454 }
2455 else
2456 {
2457 enmType = DBGFREGVALTYPE_DTR;
2458 rc = DBGCCmdHlpVarToNumber(pCmdHlp, pNewValue, &Value.dtr.u64Base);
2459 if (RT_SUCCESS(rc) && pNewValue->enmRangeType != DBGCVAR_RANGE_NONE)
2460 Value.dtr.u32Limit = (uint32_t)pNewValue->u64Range;
2461 }
2462 if (RT_SUCCESS(rc))
2463 {
2464 rc = DBGFR3RegNmSet(pUVM, idCpu, pszReg, &Value, enmType);
2465 if (RT_FAILURE(rc))
2466 rc = DBGCCmdHlpVBoxError(pCmdHlp, rc, "DBGFR3RegNmSet failed settings '%s%s': %Rrc\n",
2467 pszActualPrefix, pszReg, rc);
2468 if (rc != VINF_SUCCESS)
2469 DBGCCmdHlpPrintf(pCmdHlp, "%s: warning: %Rrc\n", pCmd->pszCmd, rc);
2470 }
2471 else
2472 rc = DBGCCmdHlpVBoxError(pCmdHlp, rc, "DBGFR3RegFormatValue failed: %Rrc.\n", rc);
2473 }
2474 return rc;
2475}
2476
2477
2478/**
2479 * @callback_method_impl{FNDBGCCMD,
2480 * The 'rg'\, 'rg64' and 'rg32' commands\, worker for 'r'.}
2481 */
2482static DECLCALLBACK(int) dbgcCmdRegGuest(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2483{
2484 /*
2485 * Show all registers our selves.
2486 */
2487 if (cArgs == 0)
2488 {
2489 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2490 bool const f64BitMode = !strcmp(pCmd->pszCmd, "rg64")
2491 || ( strcmp(pCmd->pszCmd, "rg32") != 0
2492 && DBGFR3CpuIsIn64BitCode(pUVM, pDbgc->idCpu));
2493 return DBGCCmdHlpRegPrintf(pCmdHlp, pDbgc->idCpu, f64BitMode, pDbgc->fRegTerse);
2494 }
2495 return dbgcCmdRegCommon(pCmd, pCmdHlp, pUVM, paArgs, cArgs, "");
2496}
2497
2498
2499/**
2500 * @callback_method_impl{FNDBGCCMD, The 'rt' command.}
2501 */
2502static DECLCALLBACK(int) dbgcCmdRegTerse(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2503{
2504 NOREF(pCmd); NOREF(pUVM); NOREF(paArgs); NOREF(cArgs);
2505
2506 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2507 pDbgc->fRegTerse = !pDbgc->fRegTerse;
2508 return DBGCCmdHlpPrintf(pCmdHlp, pDbgc->fRegTerse ? "info: Terse register info.\n" : "info: Verbose register info.\n");
2509}
2510
2511
2512/**
2513 * @callback_method_impl{FNDBGCCMD, The 'pr' and 'tr' commands.}
2514 */
2515static DECLCALLBACK(int) dbgcCmdStepTraceToggle(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2516{
2517 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2518 Assert(cArgs == 0); NOREF(pCmd); NOREF(pUVM); NOREF(paArgs); NOREF(cArgs);
2519
2520 /* Note! windbg accepts 'r' as a flag to 'p', 'pa', 'pc', 'pt', 't',
2521 'ta', 'tc' and 'tt'. We've simplified it. */
2522 pDbgc->fStepTraceRegs = !pDbgc->fStepTraceRegs;
2523 return VINF_SUCCESS;
2524}
2525
2526
2527/**
2528 * @callback_method_impl{FNDBGCCMD, The 'p'\, 'pc'\, 'pt'\, 't'\, 'tc'\, and 'tt' commands.}
2529 */
2530static DECLCALLBACK(int) dbgcCmdStepTrace(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2531{
2532 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2533 if (cArgs != 0)
2534 return DBGCCmdHlpFail(pCmdHlp, pCmd,
2535 "Sorry, but the '%s' command does not currently implement any arguments.\n", pCmd->pszCmd);
2536
2537 /* The 'count' has to be implemented by DBGC, whereas the
2538 filtering is taken care of by DBGF. */
2539
2540 /*
2541 * Convert the command to DBGF_STEP_F_XXX and other API input.
2542 */
2543 //DBGFADDRESS StackPop;
2544 PDBGFADDRESS pStackPop = NULL;
2545 RTGCPTR cbStackPop = 0;
2546 uint32_t cMaxSteps = pCmd->pszCmd[0] == 'p' ? _512K : _64K;
2547 uint32_t fFlags = pCmd->pszCmd[0] == 'p' ? DBGF_STEP_F_OVER : DBGF_STEP_F_INTO;
2548 if (pCmd->pszCmd[1] == 'c')
2549 fFlags |= DBGF_STEP_F_STOP_ON_CALL;
2550 else if (pCmd->pszCmd[1] == 't')
2551 fFlags |= DBGF_STEP_F_STOP_ON_RET;
2552 else if (pCmd->pszCmd[0] != 'p')
2553 cMaxSteps = 1;
2554 else
2555 {
2556 /** @todo consider passing RSP + 1 in for 'p' and something else sensible for
2557 * the 'pt' command. */
2558 }
2559
2560 int rc = DBGFR3StepEx(pUVM, pDbgc->idCpu, fFlags, NULL, pStackPop, cbStackPop, cMaxSteps);
2561 if (RT_SUCCESS(rc))
2562 pDbgc->fReady = false;
2563 else
2564 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3StepEx(,,%#x,) failed", fFlags);
2565
2566 NOREF(pCmd); NOREF(paArgs); NOREF(cArgs);
2567 return rc;
2568}
2569
2570
2571/**
2572 * @callback_method_impl{FNDBGCCMD, The 'pa' and 'ta' commands.}
2573 */
2574static DECLCALLBACK(int) dbgcCmdStepTraceTo(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2575{
2576 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2577 if (cArgs != 1)
2578 return DBGCCmdHlpFail(pCmdHlp, pCmd,
2579 "Sorry, but the '%s' command only implements a single argument at present.\n", pCmd->pszCmd);
2580 DBGFADDRESS Address;
2581 int rc = pCmdHlp->pfnVarToDbgfAddr(pCmdHlp, &paArgs[0], &Address);
2582 if (RT_FAILURE(rc))
2583 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "VarToDbgfAddr(,%Dv,)\n", &paArgs[0]);
2584
2585 uint32_t cMaxSteps = pCmd->pszCmd[0] == 'p' ? _512K : 1;
2586 uint32_t fFlags = pCmd->pszCmd[0] == 'p' ? DBGF_STEP_F_OVER : DBGF_STEP_F_INTO;
2587 rc = DBGFR3StepEx(pUVM, pDbgc->idCpu, fFlags, &Address, NULL, 0, cMaxSteps);
2588 if (RT_SUCCESS(rc))
2589 pDbgc->fReady = false;
2590 else
2591 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3StepEx(,,%#x,) failed", fFlags);
2592 return rc;
2593}
2594
2595
2596/**
2597 * Helper that tries to resolve a far address to a symbol and formats it.
2598 *
2599 * @returns Pointer to symbol string on success, NULL if not resolved.
2600 * Free using RTStrFree.
2601 * @param pCmdHlp The command helper structure.
2602 * @param hAs The address space to use. NIL_RTDBGAS means no symbol resolving.
2603 * @param sel The selector part of the address.
2604 * @param off The offset part of the address.
2605 * @param pszPrefix How to prefix the symbol string.
2606 * @param pszSuffix How to suffix the symbol string.
2607 */
2608static char *dbgcCmdHlpFarAddrToSymbol(PDBGCCMDHLP pCmdHlp, RTDBGAS hAs, RTSEL sel, uint64_t off,
2609 const char *pszPrefix, const char *pszSuffix)
2610{
2611 char *pszRet = NULL;
2612 if (hAs != NIL_RTDBGAS)
2613 {
2614 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2615 DBGFADDRESS Addr;
2616 int rc = DBGFR3AddrFromSelOff(pDbgc->pUVM, pDbgc->idCpu, &Addr, sel, off);
2617 if (RT_SUCCESS(rc))
2618 {
2619 RTGCINTPTR offDispSym = 0;
2620 PRTDBGSYMBOL pSymbol = DBGFR3AsSymbolByAddrA(pDbgc->pUVM, hAs, &Addr,
2621 RTDBGSYMADDR_FLAGS_GREATER_OR_EQUAL
2622 | RTDBGSYMADDR_FLAGS_SKIP_ABS_IN_DEFERRED,
2623 &offDispSym, NULL);
2624 if (pSymbol)
2625 {
2626 if (offDispSym == 0)
2627 pszRet = RTStrAPrintf2("%s%s%s", pszPrefix, pSymbol->szName, pszSuffix);
2628 else if (offDispSym > 0)
2629 pszRet = RTStrAPrintf2("%s%s+%llx%s", pszPrefix, pSymbol->szName, (int64_t)offDispSym, pszSuffix);
2630 else
2631 pszRet = RTStrAPrintf2("%s%s-%llx%s", pszPrefix, pSymbol->szName, -(int64_t)offDispSym, pszSuffix);
2632 RTDbgSymbolFree(pSymbol);
2633 }
2634 }
2635 }
2636 return pszRet;
2637}
2638
2639
2640/**
2641 * @callback_method_impl{FNDBGCCMD, The 'k'\, 'kg' and 'kh' commands.}
2642 */
2643static DECLCALLBACK(int) dbgcCmdStack(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
2644{
2645 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
2646
2647 /*
2648 * Figure which context we're called for and start walking that stack.
2649 */
2650 int rc;
2651 PCDBGFSTACKFRAME pFirstFrame;
2652 bool const fGuest = true;
2653 bool const fVerbose = pCmd->pszCmd[1] == 'v'
2654 || (pCmd->pszCmd[1] != '\0' && pCmd->pszCmd[2] == 'v');
2655 rc = DBGFR3StackWalkBegin(pUVM, pDbgc->idCpu, fGuest ? DBGFCODETYPE_GUEST : DBGFCODETYPE_HYPER, &pFirstFrame);
2656 if (RT_FAILURE(rc))
2657 return DBGCCmdHlpPrintf(pCmdHlp, "Failed to begin stack walk, rc=%Rrc\n", rc);
2658
2659 /*
2660 * Print the frames.
2661 */
2662 char szTmp[1024];
2663 uint32_t fBitFlags = 0;
2664 for (PCDBGFSTACKFRAME pFrame = pFirstFrame;
2665 pFrame;
2666 pFrame = DBGFR3StackWalkNext(pFrame))
2667 {
2668 uint32_t const fCurBitFlags = pFrame->fFlags & (DBGFSTACKFRAME_FLAGS_16BIT | DBGFSTACKFRAME_FLAGS_32BIT | DBGFSTACKFRAME_FLAGS_64BIT);
2669 if (fCurBitFlags & DBGFSTACKFRAME_FLAGS_16BIT)
2670 {
2671 if (fCurBitFlags != fBitFlags)
2672 pCmdHlp->pfnPrintf(pCmdHlp, NULL, "# SS:BP Ret SS:BP Ret CS:EIP Arg0 Arg1 Arg2 Arg3 CS:EIP / Symbol [line]\n");
2673 rc = DBGCCmdHlpPrintf(pCmdHlp, "%02x %04RX16:%04RX16 %04RX16:%04RX16 %04RX32:%08RX32 %08RX32 %08RX32 %08RX32 %08RX32",
2674 pFrame->iFrame,
2675 pFrame->AddrFrame.Sel,
2676 (uint16_t)pFrame->AddrFrame.off,
2677 pFrame->AddrReturnFrame.Sel,
2678 (uint16_t)pFrame->AddrReturnFrame.off,
2679 (uint32_t)pFrame->AddrReturnPC.Sel,
2680 (uint32_t)pFrame->AddrReturnPC.off,
2681 pFrame->Args.au32[0],
2682 pFrame->Args.au32[1],
2683 pFrame->Args.au32[2],
2684 pFrame->Args.au32[3]);
2685 }
2686 else if (fCurBitFlags & DBGFSTACKFRAME_FLAGS_32BIT)
2687 {
2688 if (fCurBitFlags != fBitFlags)
2689 pCmdHlp->pfnPrintf(pCmdHlp, NULL, "# EBP Ret EBP Ret CS:EIP Arg0 Arg1 Arg2 Arg3 CS:EIP / Symbol [line]\n");
2690 rc = DBGCCmdHlpPrintf(pCmdHlp, "%02x %08RX32 %08RX32 %04RX32:%08RX32 %08RX32 %08RX32 %08RX32 %08RX32",
2691 pFrame->iFrame,
2692 (uint32_t)pFrame->AddrFrame.off,
2693 (uint32_t)pFrame->AddrReturnFrame.off,
2694 (uint32_t)pFrame->AddrReturnPC.Sel,
2695 (uint32_t)pFrame->AddrReturnPC.off,
2696 pFrame->Args.au32[0],
2697 pFrame->Args.au32[1],
2698 pFrame->Args.au32[2],
2699 pFrame->Args.au32[3]);
2700 }
2701 else if (fCurBitFlags & DBGFSTACKFRAME_FLAGS_64BIT)
2702 {
2703 if (fCurBitFlags != fBitFlags)
2704 pCmdHlp->pfnPrintf(pCmdHlp, NULL, "# RBP Ret SS:RBP Ret RIP CS:RIP / Symbol [line]\n");
2705 rc = DBGCCmdHlpPrintf(pCmdHlp, "%02x %016RX64 %04RX16:%016RX64 %016RX64",
2706 pFrame->iFrame,
2707 (uint64_t)pFrame->AddrFrame.off,
2708 pFrame->AddrReturnFrame.Sel,
2709 (uint64_t)pFrame->AddrReturnFrame.off,
2710 (uint64_t)pFrame->AddrReturnPC.off);
2711 }
2712 if (RT_FAILURE(rc))
2713 break;
2714 if (!pFrame->pSymPC)
2715 rc = pCmdHlp->pfnPrintf(pCmdHlp, NULL,
2716 fCurBitFlags & DBGFSTACKFRAME_FLAGS_64BIT
2717 ? " %RTsel:%016RGv"
2718 : fCurBitFlags & DBGFSTACKFRAME_FLAGS_32BIT
2719 ? " %RTsel:%08RGv"
2720 : " %RTsel:%04RGv"
2721 , pFrame->AddrPC.Sel, pFrame->AddrPC.off);
2722 else
2723 {
2724 RTGCINTPTR offDisp = pFrame->AddrPC.FlatPtr - pFrame->pSymPC->Value; /** @todo this isn't 100% correct for segmented stuff. */
2725 if (offDisp > 0)
2726 rc = DBGCCmdHlpPrintf(pCmdHlp, " %s+%llx", pFrame->pSymPC->szName, (int64_t)offDisp);
2727 else if (offDisp < 0)
2728 rc = DBGCCmdHlpPrintf(pCmdHlp, " %s-%llx", pFrame->pSymPC->szName, -(int64_t)offDisp);
2729 else
2730 rc = DBGCCmdHlpPrintf(pCmdHlp, " %s", pFrame->pSymPC->szName);
2731 }
2732 if (RT_SUCCESS(rc) && pFrame->pLinePC)
2733 rc = DBGCCmdHlpPrintf(pCmdHlp, " [%s @ 0i%d]", pFrame->pLinePC->szFilename, pFrame->pLinePC->uLineNo);
2734 if (RT_SUCCESS(rc))
2735 rc = DBGCCmdHlpPrintf(pCmdHlp, "\n");
2736
2737 if (fVerbose && RT_SUCCESS(rc))
2738 {
2739 /*
2740 * Display verbose frame info.
2741 */
2742 const char *pszRetType = "invalid";
2743 switch (pFrame->enmReturnType)
2744 {
2745 case RTDBGRETURNTYPE_NEAR16: pszRetType = "retn/16"; break;
2746 case RTDBGRETURNTYPE_NEAR32: pszRetType = "retn/32"; break;
2747 case RTDBGRETURNTYPE_NEAR64: pszRetType = "retn/64"; break;
2748 case RTDBGRETURNTYPE_FAR16: pszRetType = "retf/16"; break;
2749 case RTDBGRETURNTYPE_FAR32: pszRetType = "retf/32"; break;
2750 case RTDBGRETURNTYPE_FAR64: pszRetType = "retf/64"; break;
2751 case RTDBGRETURNTYPE_IRET16: pszRetType = "iret-16"; break;
2752 case RTDBGRETURNTYPE_IRET32: pszRetType = "iret/32s"; break;
2753 case RTDBGRETURNTYPE_IRET32_PRIV: pszRetType = "iret/32p"; break;
2754 case RTDBGRETURNTYPE_IRET32_V86: pszRetType = "iret/v86"; break;
2755 case RTDBGRETURNTYPE_IRET64: pszRetType = "iret/64"; break;
2756
2757 case RTDBGRETURNTYPE_END:
2758 case RTDBGRETURNTYPE_INVALID:
2759 case RTDBGRETURNTYPE_32BIT_HACK:
2760 break;
2761 }
2762 size_t cchLine = DBGCCmdHlpPrintfLen(pCmdHlp, " %s", pszRetType);
2763 if (pFrame->fFlags & DBGFSTACKFRAME_FLAGS_USED_UNWIND_INFO)
2764 cchLine += DBGCCmdHlpPrintfLen(pCmdHlp, " used-unwind-info");
2765 if (pFrame->fFlags & DBGFSTACKFRAME_FLAGS_USED_ODD_EVEN)
2766 cchLine += DBGCCmdHlpPrintfLen(pCmdHlp, " used-odd-even");
2767 if (pFrame->fFlags & DBGFSTACKFRAME_FLAGS_REAL_V86)
2768 cchLine += DBGCCmdHlpPrintfLen(pCmdHlp, " real-v86");
2769 if (pFrame->fFlags & DBGFSTACKFRAME_FLAGS_MAX_DEPTH)
2770 cchLine += DBGCCmdHlpPrintfLen(pCmdHlp, " max-depth");
2771 if (pFrame->fFlags & DBGFSTACKFRAME_FLAGS_TRAP_FRAME)
2772 cchLine += DBGCCmdHlpPrintfLen(pCmdHlp, " trap-frame");
2773
2774 if (pFrame->cSureRegs > 0)
2775 {
2776 cchLine = 1024; /* force new line */
2777 for (uint32_t i = 0; i < pFrame->cSureRegs; i++)
2778 {
2779 if (cchLine > 80)
2780 {
2781 DBGCCmdHlpPrintf(pCmdHlp, "\n ");
2782 cchLine = 2;
2783 }
2784
2785 szTmp[0] = '\0';
2786 DBGFR3RegFormatValue(szTmp, sizeof(szTmp), &pFrame->paSureRegs[i].Value,
2787 pFrame->paSureRegs[i].enmType, false);
2788 const char *pszName = pFrame->paSureRegs[i].enmReg != DBGFREG_END
2789 ? DBGFR3RegCpuName(pUVM, pFrame->paSureRegs[i].enmReg, pFrame->paSureRegs[i].enmType)
2790 : pFrame->paSureRegs[i].pszName;
2791 cchLine += DBGCCmdHlpPrintfLen(pCmdHlp, " %s=%s", pszName, szTmp);
2792 }
2793 }
2794
2795 if (RT_SUCCESS(rc))
2796 rc = DBGCCmdHlpPrintf(pCmdHlp, "\n");
2797 }
2798
2799 if (RT_FAILURE(rc))
2800 break;
2801
2802 fBitFlags = fCurBitFlags;
2803 }
2804
2805 DBGFR3StackWalkEnd(pFirstFrame);
2806
2807 NOREF(paArgs); NOREF(cArgs);
2808 return rc;
2809}
2810
2811
2812/**
2813 * Worker function that displays one descriptor entry (GDT, LDT, IDT).
2814 *
2815 * @returns pfnPrintf status code.
2816 * @param pCmdHlp The DBGC command helpers.
2817 * @param pDesc The descriptor to display.
2818 * @param iEntry The descriptor entry number.
2819 * @param fHyper Whether the selector belongs to the hypervisor or not.
2820 * @param hAs Address space to use when resolving symbols.
2821 * @param pfDblEntry Where to indicate whether the entry is two entries wide.
2822 * Optional.
2823 */
2824static int dbgcCmdDumpDTWorker64(PDBGCCMDHLP pCmdHlp, PCX86DESC64 pDesc, unsigned iEntry, bool fHyper, RTDBGAS hAs,
2825 bool *pfDblEntry)
2826{
2827 /* GUEST64 */
2828 int rc;
2829
2830 const char *pszHyper = fHyper ? " HYPER" : "";
2831 const char *pszPresent = pDesc->Gen.u1Present ? "P " : "NP";
2832 if (pDesc->Gen.u1DescType)
2833 {
2834 static const char * const s_apszTypes[] =
2835 {
2836 "DataRO", /* 0 Read-Only */
2837 "DataRO", /* 1 Read-Only - Accessed */
2838 "DataRW", /* 2 Read/Write */
2839 "DataRW", /* 3 Read/Write - Accessed */
2840 "DownRO", /* 4 Expand-down, Read-Only */
2841 "DownRO", /* 5 Expand-down, Read-Only - Accessed */
2842 "DownRW", /* 6 Expand-down, Read/Write */
2843 "DownRW", /* 7 Expand-down, Read/Write - Accessed */
2844 "CodeEO", /* 8 Execute-Only */
2845 "CodeEO", /* 9 Execute-Only - Accessed */
2846 "CodeER", /* A Execute/Readable */
2847 "CodeER", /* B Execute/Readable - Accessed */
2848 "ConfE0", /* C Conforming, Execute-Only */
2849 "ConfE0", /* D Conforming, Execute-Only - Accessed */
2850 "ConfER", /* E Conforming, Execute/Readable */
2851 "ConfER" /* F Conforming, Execute/Readable - Accessed */
2852 };
2853 const char *pszAccessed = pDesc->Gen.u4Type & RT_BIT(0) ? "A " : "NA";
2854 const char *pszGranularity = pDesc->Gen.u1Granularity ? "G" : " ";
2855 const char *pszBig = pDesc->Gen.u1DefBig ? "BIG" : " ";
2856 uint32_t u32Base = X86DESC_BASE(pDesc);
2857 uint32_t cbLimit = X86DESC_LIMIT_G(pDesc);
2858
2859 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Bas=%08x Lim=%08x DPL=%d %s %s %s %s AVL=%d L=%d%s\n",
2860 iEntry, s_apszTypes[pDesc->Gen.u4Type], u32Base, cbLimit,
2861 pDesc->Gen.u2Dpl, pszPresent, pszAccessed, pszGranularity, pszBig,
2862 pDesc->Gen.u1Available, pDesc->Gen.u1Long, pszHyper);
2863 }
2864 else
2865 {
2866 static const char * const s_apszTypes[] =
2867 {
2868 "Ill-0 ", /* 0 0000 Reserved (Illegal) */
2869 "Ill-1 ", /* 1 0001 Available 16-bit TSS */
2870 "LDT ", /* 2 0010 LDT */
2871 "Ill-3 ", /* 3 0011 Busy 16-bit TSS */
2872 "Ill-4 ", /* 4 0100 16-bit Call Gate */
2873 "Ill-5 ", /* 5 0101 Task Gate */
2874 "Ill-6 ", /* 6 0110 16-bit Interrupt Gate */
2875 "Ill-7 ", /* 7 0111 16-bit Trap Gate */
2876 "Ill-8 ", /* 8 1000 Reserved (Illegal) */
2877 "Tss64A", /* 9 1001 Available 32-bit TSS */
2878 "Ill-A ", /* A 1010 Reserved (Illegal) */
2879 "Tss64B", /* B 1011 Busy 32-bit TSS */
2880 "Call64", /* C 1100 32-bit Call Gate */
2881 "Ill-D ", /* D 1101 Reserved (Illegal) */
2882 "Int64 ", /* E 1110 32-bit Interrupt Gate */
2883 "Trap64" /* F 1111 32-bit Trap Gate */
2884 };
2885 switch (pDesc->Gen.u4Type)
2886 {
2887 /* raw */
2888 case X86_SEL_TYPE_SYS_UNDEFINED:
2889 case X86_SEL_TYPE_SYS_UNDEFINED2:
2890 case X86_SEL_TYPE_SYS_UNDEFINED4:
2891 case X86_SEL_TYPE_SYS_UNDEFINED3:
2892 case X86_SEL_TYPE_SYS_286_TSS_AVAIL:
2893 case X86_SEL_TYPE_SYS_286_TSS_BUSY:
2894 case X86_SEL_TYPE_SYS_286_CALL_GATE:
2895 case X86_SEL_TYPE_SYS_286_INT_GATE:
2896 case X86_SEL_TYPE_SYS_286_TRAP_GATE:
2897 case X86_SEL_TYPE_SYS_TASK_GATE:
2898 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s %.8Rhxs DPL=%d %s%s\n",
2899 iEntry, s_apszTypes[pDesc->Gen.u4Type], pDesc,
2900 pDesc->Gen.u2Dpl, pszPresent, pszHyper);
2901 break;
2902
2903 case X86_SEL_TYPE_SYS_386_TSS_AVAIL:
2904 case X86_SEL_TYPE_SYS_386_TSS_BUSY:
2905 case X86_SEL_TYPE_SYS_LDT:
2906 {
2907 const char *pszBusy = pDesc->Gen.u4Type & RT_BIT(1) ? "B " : "NB";
2908 const char *pszBig = pDesc->Gen.u1DefBig ? "BIG" : " ";
2909 const char *pszLong = pDesc->Gen.u1Long ? "LONG" : " ";
2910
2911 uint64_t u64Base = X86DESC64_BASE(pDesc);
2912 uint32_t cbLimit = X86DESC_LIMIT_G(pDesc);
2913
2914 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Bas=%016RX64 Lim=%08x DPL=%d %s %s %s %sAVL=%d R=%d%s\n",
2915 iEntry, s_apszTypes[pDesc->Gen.u4Type], u64Base, cbLimit,
2916 pDesc->Gen.u2Dpl, pszPresent, pszBusy, pszLong, pszBig,
2917 pDesc->Gen.u1Available, pDesc->Gen.u1Long | (pDesc->Gen.u1DefBig << 1),
2918 pszHyper);
2919 if (pfDblEntry)
2920 *pfDblEntry = true;
2921 break;
2922 }
2923
2924 case X86_SEL_TYPE_SYS_386_CALL_GATE:
2925 {
2926 unsigned cParams = pDesc->au8[4] & 0x1f;
2927 const char *pszCountOf = pDesc->Gen.u4Type & RT_BIT(3) ? "DC" : "WC";
2928 RTSEL sel = pDesc->au16[1];
2929 uint64_t off = pDesc->au16[0]
2930 | ((uint64_t)pDesc->au16[3] << 16)
2931 | ((uint64_t)pDesc->Gen.u32BaseHigh3 << 32);
2932 char *pszSymbol = dbgcCmdHlpFarAddrToSymbol(pCmdHlp, hAs, sel, off, " (", ")");
2933 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Sel:Off=%04x:%016RX64 DPL=%d %s %s=%d%s%s\n",
2934 iEntry, s_apszTypes[pDesc->Gen.u4Type], sel, off,
2935 pDesc->Gen.u2Dpl, pszPresent, pszCountOf, cParams, pszHyper, pszSymbol ? pszSymbol : "");
2936 RTStrFree(pszSymbol);
2937 if (pfDblEntry)
2938 *pfDblEntry = true;
2939 break;
2940 }
2941
2942 case X86_SEL_TYPE_SYS_386_INT_GATE:
2943 case X86_SEL_TYPE_SYS_386_TRAP_GATE:
2944 {
2945 RTSEL sel = pDesc->Gate.u16Sel;
2946 uint64_t off = pDesc->Gate.u16OffsetLow
2947 | ((uint64_t)pDesc->Gate.u16OffsetHigh << 16)
2948 | ((uint64_t)pDesc->Gate.u32OffsetTop << 32);
2949 char *pszSymbol = dbgcCmdHlpFarAddrToSymbol(pCmdHlp, hAs, sel, off, " (", ")");
2950 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Sel:Off=%04x:%016RX64 DPL=%u %s IST=%u%s%s\n",
2951 iEntry, s_apszTypes[pDesc->Gate.u4Type], sel, off,
2952 pDesc->Gate.u2Dpl, pszPresent, pDesc->Gate.u3IST, pszHyper, pszSymbol ? pszSymbol : "");
2953 RTStrFree(pszSymbol);
2954 if (pfDblEntry)
2955 *pfDblEntry = true;
2956 break;
2957 }
2958
2959 /* impossible, just it's necessary to keep gcc happy. */
2960 default:
2961 return VINF_SUCCESS;
2962 }
2963 }
2964 return VINF_SUCCESS;
2965}
2966
2967
2968/**
2969 * Worker function that displays one descriptor entry (GDT, LDT, IDT).
2970 *
2971 * @returns pfnPrintf status code.
2972 * @param pCmdHlp The DBGC command helpers.
2973 * @param pDesc The descriptor to display.
2974 * @param iEntry The descriptor entry number.
2975 * @param fHyper Whether the selector belongs to the hypervisor or not.
2976 * @param hAs Address space to use when resolving symbols.
2977 */
2978static int dbgcCmdDumpDTWorker32(PDBGCCMDHLP pCmdHlp, PCX86DESC pDesc, unsigned iEntry, bool fHyper, RTDBGAS hAs)
2979{
2980 int rc;
2981
2982 const char *pszHyper = fHyper ? " HYPER" : "";
2983 const char *pszPresent = pDesc->Gen.u1Present ? "P " : "NP";
2984 if (pDesc->Gen.u1DescType)
2985 {
2986 static const char * const s_apszTypes[] =
2987 {
2988 "DataRO", /* 0 Read-Only */
2989 "DataRO", /* 1 Read-Only - Accessed */
2990 "DataRW", /* 2 Read/Write */
2991 "DataRW", /* 3 Read/Write - Accessed */
2992 "DownRO", /* 4 Expand-down, Read-Only */
2993 "DownRO", /* 5 Expand-down, Read-Only - Accessed */
2994 "DownRW", /* 6 Expand-down, Read/Write */
2995 "DownRW", /* 7 Expand-down, Read/Write - Accessed */
2996 "CodeEO", /* 8 Execute-Only */
2997 "CodeEO", /* 9 Execute-Only - Accessed */
2998 "CodeER", /* A Execute/Readable */
2999 "CodeER", /* B Execute/Readable - Accessed */
3000 "ConfE0", /* C Conforming, Execute-Only */
3001 "ConfE0", /* D Conforming, Execute-Only - Accessed */
3002 "ConfER", /* E Conforming, Execute/Readable */
3003 "ConfER" /* F Conforming, Execute/Readable - Accessed */
3004 };
3005 const char *pszAccessed = pDesc->Gen.u4Type & RT_BIT(0) ? "A " : "NA";
3006 const char *pszGranularity = pDesc->Gen.u1Granularity ? "G" : " ";
3007 const char *pszBig = pDesc->Gen.u1DefBig ? "BIG" : " ";
3008 uint32_t u32Base = pDesc->Gen.u16BaseLow
3009 | ((uint32_t)pDesc->Gen.u8BaseHigh1 << 16)
3010 | ((uint32_t)pDesc->Gen.u8BaseHigh2 << 24);
3011 uint32_t cbLimit = pDesc->Gen.u16LimitLow | (pDesc->Gen.u4LimitHigh << 16);
3012 if (pDesc->Gen.u1Granularity)
3013 cbLimit <<= PAGE_SHIFT;
3014
3015 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Bas=%08x Lim=%08x DPL=%d %s %s %s %s AVL=%d L=%d%s\n",
3016 iEntry, s_apszTypes[pDesc->Gen.u4Type], u32Base, cbLimit,
3017 pDesc->Gen.u2Dpl, pszPresent, pszAccessed, pszGranularity, pszBig,
3018 pDesc->Gen.u1Available, pDesc->Gen.u1Long, pszHyper);
3019 }
3020 else
3021 {
3022 static const char * const s_apszTypes[] =
3023 {
3024 "Ill-0 ", /* 0 0000 Reserved (Illegal) */
3025 "Tss16A", /* 1 0001 Available 16-bit TSS */
3026 "LDT ", /* 2 0010 LDT */
3027 "Tss16B", /* 3 0011 Busy 16-bit TSS */
3028 "Call16", /* 4 0100 16-bit Call Gate */
3029 "TaskG ", /* 5 0101 Task Gate */
3030 "Int16 ", /* 6 0110 16-bit Interrupt Gate */
3031 "Trap16", /* 7 0111 16-bit Trap Gate */
3032 "Ill-8 ", /* 8 1000 Reserved (Illegal) */
3033 "Tss32A", /* 9 1001 Available 32-bit TSS */
3034 "Ill-A ", /* A 1010 Reserved (Illegal) */
3035 "Tss32B", /* B 1011 Busy 32-bit TSS */
3036 "Call32", /* C 1100 32-bit Call Gate */
3037 "Ill-D ", /* D 1101 Reserved (Illegal) */
3038 "Int32 ", /* E 1110 32-bit Interrupt Gate */
3039 "Trap32" /* F 1111 32-bit Trap Gate */
3040 };
3041 switch (pDesc->Gen.u4Type)
3042 {
3043 /* raw */
3044 case X86_SEL_TYPE_SYS_UNDEFINED:
3045 case X86_SEL_TYPE_SYS_UNDEFINED2:
3046 case X86_SEL_TYPE_SYS_UNDEFINED4:
3047 case X86_SEL_TYPE_SYS_UNDEFINED3:
3048 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s %.8Rhxs DPL=%d %s%s\n",
3049 iEntry, s_apszTypes[pDesc->Gen.u4Type], pDesc,
3050 pDesc->Gen.u2Dpl, pszPresent, pszHyper);
3051 break;
3052
3053 case X86_SEL_TYPE_SYS_286_TSS_AVAIL:
3054 case X86_SEL_TYPE_SYS_386_TSS_AVAIL:
3055 case X86_SEL_TYPE_SYS_286_TSS_BUSY:
3056 case X86_SEL_TYPE_SYS_386_TSS_BUSY:
3057 case X86_SEL_TYPE_SYS_LDT:
3058 {
3059 const char *pszGranularity = pDesc->Gen.u1Granularity ? "G" : " ";
3060 const char *pszBusy = pDesc->Gen.u4Type & RT_BIT(1) ? "B " : "NB";
3061 const char *pszBig = pDesc->Gen.u1DefBig ? "BIG" : " ";
3062 uint32_t u32Base = pDesc->Gen.u16BaseLow
3063 | ((uint32_t)pDesc->Gen.u8BaseHigh1 << 16)
3064 | ((uint32_t)pDesc->Gen.u8BaseHigh2 << 24);
3065 uint32_t cbLimit = pDesc->Gen.u16LimitLow | (pDesc->Gen.u4LimitHigh << 16);
3066 if (pDesc->Gen.u1Granularity)
3067 cbLimit <<= PAGE_SHIFT;
3068
3069 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Bas=%08x Lim=%08x DPL=%d %s %s %s %s AVL=%d R=%d%s\n",
3070 iEntry, s_apszTypes[pDesc->Gen.u4Type], u32Base, cbLimit,
3071 pDesc->Gen.u2Dpl, pszPresent, pszBusy, pszGranularity, pszBig,
3072 pDesc->Gen.u1Available, pDesc->Gen.u1Long | (pDesc->Gen.u1DefBig << 1),
3073 pszHyper);
3074 break;
3075 }
3076
3077 case X86_SEL_TYPE_SYS_TASK_GATE:
3078 {
3079 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s TSS=%04x DPL=%d %s%s\n",
3080 iEntry, s_apszTypes[pDesc->Gen.u4Type], pDesc->au16[1],
3081 pDesc->Gen.u2Dpl, pszPresent, pszHyper);
3082 break;
3083 }
3084
3085 case X86_SEL_TYPE_SYS_286_CALL_GATE:
3086 case X86_SEL_TYPE_SYS_386_CALL_GATE:
3087 {
3088 unsigned cParams = pDesc->au8[4] & 0x1f;
3089 const char *pszCountOf = pDesc->Gen.u4Type & RT_BIT(3) ? "DC" : "WC";
3090 RTSEL sel = pDesc->au16[1];
3091 uint32_t off = pDesc->au16[0] | ((uint32_t)pDesc->au16[3] << 16);
3092 char *pszSymbol = dbgcCmdHlpFarAddrToSymbol(pCmdHlp, hAs, sel, off, " (", ")");
3093 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Sel:Off=%04x:%08x DPL=%d %s %s=%d%s%s\n",
3094 iEntry, s_apszTypes[pDesc->Gen.u4Type], sel, off,
3095 pDesc->Gen.u2Dpl, pszPresent, pszCountOf, cParams, pszHyper, pszSymbol ? pszSymbol : "");
3096 RTStrFree(pszSymbol);
3097 break;
3098 }
3099
3100 case X86_SEL_TYPE_SYS_286_INT_GATE:
3101 case X86_SEL_TYPE_SYS_386_INT_GATE:
3102 case X86_SEL_TYPE_SYS_286_TRAP_GATE:
3103 case X86_SEL_TYPE_SYS_386_TRAP_GATE:
3104 {
3105 RTSEL sel = pDesc->au16[1];
3106 uint32_t off = pDesc->au16[0] | ((uint32_t)pDesc->au16[3] << 16);
3107 char *pszSymbol = dbgcCmdHlpFarAddrToSymbol(pCmdHlp, hAs, sel, off, " (", ")");
3108 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Sel:Off=%04x:%08x DPL=%d %s%s%s\n",
3109 iEntry, s_apszTypes[pDesc->Gen.u4Type], sel, off,
3110 pDesc->Gen.u2Dpl, pszPresent, pszHyper, pszSymbol ? pszSymbol : "");
3111 RTStrFree(pszSymbol);
3112 break;
3113 }
3114
3115 /* impossible, just it's necessary to keep gcc happy. */
3116 default:
3117 return VINF_SUCCESS;
3118 }
3119 }
3120 return rc;
3121}
3122
3123
3124/**
3125 * @callback_method_impl{FNDBGCCMD, The 'dg'\, 'dga'\, 'dl' and 'dla' commands.}
3126 */
3127static DECLCALLBACK(int) dbgcCmdDumpDT(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
3128{
3129 /*
3130 * Validate input.
3131 */
3132 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
3133
3134 /*
3135 * Get the CPU mode, check which command variation this is
3136 * and fix a default parameter if needed.
3137 */
3138 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
3139 PVMCPU pVCpu = VMMR3GetCpuByIdU(pUVM, pDbgc->idCpu);
3140 CPUMMODE enmMode = CPUMGetGuestMode(pVCpu);
3141 bool fGdt = pCmd->pszCmd[1] == 'g';
3142 bool fAll = pCmd->pszCmd[2] == 'a';
3143 RTSEL SelTable = fGdt ? 0 : X86_SEL_LDT;
3144
3145 DBGCVAR Var;
3146 if (!cArgs)
3147 {
3148 cArgs = 1;
3149 paArgs = &Var;
3150 Var.enmType = DBGCVAR_TYPE_NUMBER;
3151 Var.u.u64Number = 0;
3152 Var.enmRangeType = DBGCVAR_RANGE_ELEMENTS;
3153 Var.u64Range = 1024;
3154 }
3155
3156 /*
3157 * Process the arguments.
3158 */
3159 for (unsigned i = 0; i < cArgs; i++)
3160 {
3161 /*
3162 * Retrieve the selector value from the argument.
3163 * The parser may confuse pointers and numbers if more than one
3164 * argument is given, that that into account.
3165 */
3166 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, i, paArgs[i].enmType == DBGCVAR_TYPE_NUMBER || DBGCVAR_ISPOINTER(paArgs[i].enmType));
3167 uint64_t u64;
3168 unsigned cSels = 1;
3169 switch (paArgs[i].enmType)
3170 {
3171 case DBGCVAR_TYPE_NUMBER:
3172 u64 = paArgs[i].u.u64Number;
3173 if (paArgs[i].enmRangeType != DBGCVAR_RANGE_NONE)
3174 cSels = RT_MIN(paArgs[i].u64Range, 1024);
3175 break;
3176 case DBGCVAR_TYPE_GC_FAR: u64 = paArgs[i].u.GCFar.sel; break;
3177 case DBGCVAR_TYPE_GC_FLAT: u64 = paArgs[i].u.GCFlat; break;
3178 case DBGCVAR_TYPE_GC_PHYS: u64 = paArgs[i].u.GCPhys; break;
3179 case DBGCVAR_TYPE_HC_FLAT: u64 = (uintptr_t)paArgs[i].u.pvHCFlat; break;
3180 case DBGCVAR_TYPE_HC_PHYS: u64 = paArgs[i].u.HCPhys; break;
3181 default: u64 = _64K; break;
3182 }
3183 if (u64 < _64K)
3184 {
3185 unsigned Sel = (RTSEL)u64;
3186
3187 /*
3188 * Dump the specified range.
3189 */
3190 bool fSingle = cSels == 1;
3191 while ( cSels-- > 0
3192 && Sel < _64K)
3193 {
3194 DBGFSELINFO SelInfo;
3195 int rc = DBGFR3SelQueryInfo(pUVM, pDbgc->idCpu, Sel | SelTable, DBGFSELQI_FLAGS_DT_GUEST, &SelInfo);
3196 if (RT_SUCCESS(rc))
3197 {
3198 if (SelInfo.fFlags & DBGFSELINFO_FLAGS_REAL_MODE)
3199 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x RealM Bas=%04x Lim=%04x\n",
3200 Sel, (unsigned)SelInfo.GCPtrBase, (unsigned)SelInfo.cbLimit);
3201 else if ( fAll
3202 || fSingle
3203 || SelInfo.u.Raw.Gen.u1Present)
3204 {
3205 if (enmMode == CPUMMODE_PROTECTED)
3206 rc = dbgcCmdDumpDTWorker32(pCmdHlp, &SelInfo.u.Raw, Sel,
3207 !!(SelInfo.fFlags & DBGFSELINFO_FLAGS_HYPER), DBGF_AS_GLOBAL);
3208 else
3209 {
3210 bool fDblSkip = false;
3211 rc = dbgcCmdDumpDTWorker64(pCmdHlp, &SelInfo.u.Raw64, Sel,
3212 !!(SelInfo.fFlags & DBGFSELINFO_FLAGS_HYPER), DBGF_AS_GLOBAL, &fDblSkip);
3213 if (fDblSkip)
3214 Sel += 4;
3215 }
3216 }
3217 }
3218 else
3219 {
3220 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %Rrc\n", Sel, rc);
3221 if (!fAll)
3222 return rc;
3223 }
3224 if (RT_FAILURE(rc))
3225 return rc;
3226
3227 /* next */
3228 Sel += 8;
3229 }
3230 }
3231 else
3232 DBGCCmdHlpPrintf(pCmdHlp, "error: %llx is out of bounds\n", u64);
3233 }
3234
3235 return VINF_SUCCESS;
3236}
3237
3238
3239/**
3240 * @callback_method_impl{FNDBGCCMD, The 'di' and 'dia' commands.}
3241 */
3242static DECLCALLBACK(int) dbgcCmdDumpIDT(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
3243{
3244 /*
3245 * Validate input.
3246 */
3247 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
3248
3249 /*
3250 * Establish some stuff like the current IDTR and CPU mode,
3251 * and fix a default parameter.
3252 */
3253 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
3254 CPUMMODE enmMode = DBGCCmdHlpGetCpuMode(pCmdHlp);
3255 uint16_t cbLimit = 0;
3256 uint64_t GCFlat = 0;
3257 int rc = DBGFR3RegCpuQueryXdtr(pDbgc->pUVM, pDbgc->idCpu, DBGFREG_IDTR, &GCFlat, &cbLimit);
3258 if (RT_FAILURE(rc))
3259 return DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3RegCpuQueryXdtr/DBGFREG_IDTR");
3260 unsigned cbEntry;
3261 switch (enmMode)
3262 {
3263 case CPUMMODE_REAL: cbEntry = sizeof(RTFAR16); break;
3264 case CPUMMODE_PROTECTED: cbEntry = sizeof(X86DESC); break;
3265 case CPUMMODE_LONG: cbEntry = sizeof(X86DESC64); break;
3266 default:
3267 return DBGCCmdHlpPrintf(pCmdHlp, "error: Invalid CPU mode %d.\n", enmMode);
3268 }
3269
3270 bool fAll = pCmd->pszCmd[2] == 'a';
3271 DBGCVAR Var;
3272 if (!cArgs)
3273 {
3274 cArgs = 1;
3275 paArgs = &Var;
3276 Var.enmType = DBGCVAR_TYPE_NUMBER;
3277 Var.u.u64Number = 0;
3278 Var.enmRangeType = DBGCVAR_RANGE_ELEMENTS;
3279 Var.u64Range = 256;
3280 }
3281
3282 /*
3283 * Process the arguments.
3284 */
3285 for (unsigned i = 0; i < cArgs; i++)
3286 {
3287 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, i, paArgs[i].enmType == DBGCVAR_TYPE_NUMBER);
3288 if (paArgs[i].u.u64Number < 256)
3289 {
3290 RTGCUINTPTR iInt = (RTGCUINTPTR)paArgs[i].u.u64Number;
3291 unsigned cInts = paArgs[i].enmRangeType != DBGCVAR_RANGE_NONE
3292 ? paArgs[i].u64Range
3293 : 1;
3294 bool fSingle = cInts == 1;
3295 while ( cInts-- > 0
3296 && iInt < 256)
3297 {
3298 /*
3299 * Try read it.
3300 */
3301 union
3302 {
3303 RTFAR16 Real;
3304 X86DESC Prot;
3305 X86DESC64 Long;
3306 } u;
3307 if (iInt * cbEntry + (cbEntry - 1) > cbLimit)
3308 {
3309 DBGCCmdHlpPrintf(pCmdHlp, "%04x not within the IDT\n", (unsigned)iInt);
3310 if (!fAll && !fSingle)
3311 return VINF_SUCCESS;
3312 }
3313 DBGCVAR AddrVar;
3314 AddrVar.enmType = DBGCVAR_TYPE_GC_FLAT;
3315 AddrVar.u.GCFlat = GCFlat + iInt * cbEntry;
3316 AddrVar.enmRangeType = DBGCVAR_RANGE_NONE;
3317 rc = pCmdHlp->pfnMemRead(pCmdHlp, &u, cbEntry, &AddrVar, NULL);
3318 if (RT_FAILURE(rc))
3319 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "Reading IDT entry %#04x.\n", (unsigned)iInt);
3320
3321 /*
3322 * Display it.
3323 */
3324 switch (enmMode)
3325 {
3326 case CPUMMODE_REAL:
3327 {
3328 char *pszSymbol = dbgcCmdHlpFarAddrToSymbol(pCmdHlp, DBGF_AS_GLOBAL, u.Real.sel, u.Real.off, " (", ")");
3329 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %RTfp16%s\n", (unsigned)iInt, u.Real, pszSymbol ? pszSymbol : "");
3330 RTStrFree(pszSymbol);
3331 break;
3332 }
3333 case CPUMMODE_PROTECTED:
3334 if (fAll || fSingle || u.Prot.Gen.u1Present)
3335 rc = dbgcCmdDumpDTWorker32(pCmdHlp, &u.Prot, iInt, false, DBGF_AS_GLOBAL);
3336 break;
3337 case CPUMMODE_LONG:
3338 if (fAll || fSingle || u.Long.Gen.u1Present)
3339 rc = dbgcCmdDumpDTWorker64(pCmdHlp, &u.Long, iInt, false, DBGF_AS_GLOBAL, NULL);
3340 break;
3341 default: break; /* to shut up gcc */
3342 }
3343 if (RT_FAILURE(rc))
3344 return rc;
3345
3346 /* next */
3347 iInt++;
3348 }
3349 }
3350 else
3351 DBGCCmdHlpPrintf(pCmdHlp, "error: %llx is out of bounds (max 256)\n", paArgs[i].u.u64Number);
3352 }
3353
3354 return VINF_SUCCESS;
3355}
3356
3357
3358/**
3359 * @callback_method_impl{FNDBGCCMD,
3360 * The 'da'\, 'dq'\, 'dqs'\, 'dd'\, 'dds'\, 'dw'\, 'db'\, 'dp'\, 'dps'\,
3361 * and 'du' commands.}
3362 */
3363static DECLCALLBACK(int) dbgcCmdDumpMem(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
3364{
3365 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
3366
3367 /*
3368 * Validate input.
3369 */
3370 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs <= 1);
3371 if (cArgs == 1)
3372 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, DBGCVAR_ISPOINTER(paArgs[0].enmType));
3373 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
3374
3375#define DBGC_DUMP_MEM_F_ASCII RT_BIT_32(31)
3376#define DBGC_DUMP_MEM_F_UNICODE RT_BIT_32(30)
3377#define DBGC_DUMP_MEM_F_FAR RT_BIT_32(29)
3378#define DBGC_DUMP_MEM_F_SYMBOLS RT_BIT_32(28)
3379#define DBGC_DUMP_MEM_F_SIZE UINT32_C(0x0000ffff)
3380
3381 /*
3382 * Figure out the element size.
3383 */
3384 unsigned cbElement;
3385 bool fAscii = false;
3386 bool fUnicode = false;
3387 bool fFar = false;
3388 bool fSymbols = pCmd->pszCmd[1] && pCmd->pszCmd[2] == 's';
3389 switch (pCmd->pszCmd[1])
3390 {
3391 default:
3392 case 'b': cbElement = 1; break;
3393 case 'w': cbElement = 2; break;
3394 case 'd': cbElement = 4; break;
3395 case 'q': cbElement = 8; break;
3396 case 'a':
3397 cbElement = 1;
3398 fAscii = true;
3399 break;
3400 case 'F':
3401 cbElement = 4;
3402 fFar = true;
3403 break;
3404 case 'p':
3405 cbElement = DBGFR3CpuIsIn64BitCode(pUVM, pDbgc->idCpu) ? 8 : 4;
3406 break;
3407 case 'u':
3408 cbElement = 2;
3409 fUnicode = true;
3410 break;
3411 case '\0':
3412 fAscii = RT_BOOL(pDbgc->cbDumpElement & DBGC_DUMP_MEM_F_ASCII);
3413 fSymbols = RT_BOOL(pDbgc->cbDumpElement & DBGC_DUMP_MEM_F_SYMBOLS);
3414 fUnicode = RT_BOOL(pDbgc->cbDumpElement & DBGC_DUMP_MEM_F_UNICODE);
3415 fFar = RT_BOOL(pDbgc->cbDumpElement & DBGC_DUMP_MEM_F_FAR);
3416 cbElement = pDbgc->cbDumpElement & DBGC_DUMP_MEM_F_SIZE;
3417 if (!cbElement)
3418 cbElement = 1;
3419 break;
3420 }
3421 uint32_t const cbDumpElement = cbElement
3422 | (fSymbols ? DBGC_DUMP_MEM_F_SYMBOLS : 0)
3423 | (fFar ? DBGC_DUMP_MEM_F_FAR : 0)
3424 | (fUnicode ? DBGC_DUMP_MEM_F_UNICODE : 0)
3425 | (fAscii ? DBGC_DUMP_MEM_F_ASCII : 0);
3426 pDbgc->cbDumpElement = cbDumpElement;
3427
3428 /*
3429 * Find address.
3430 */
3431 if (!cArgs)
3432 pDbgc->DumpPos.enmRangeType = DBGCVAR_RANGE_NONE;
3433 else
3434 pDbgc->DumpPos = paArgs[0];
3435
3436 /*
3437 * Range.
3438 */
3439 switch (pDbgc->DumpPos.enmRangeType)
3440 {
3441 case DBGCVAR_RANGE_NONE:
3442 pDbgc->DumpPos.enmRangeType = DBGCVAR_RANGE_BYTES;
3443 pDbgc->DumpPos.u64Range = 0x60;
3444 break;
3445
3446 case DBGCVAR_RANGE_ELEMENTS:
3447 if (pDbgc->DumpPos.u64Range > 2048)
3448 return DBGCCmdHlpPrintf(pCmdHlp, "error: Too many elements requested. Max is 2048 elements.\n");
3449 pDbgc->DumpPos.enmRangeType = DBGCVAR_RANGE_BYTES;
3450 pDbgc->DumpPos.u64Range = (cbElement ? cbElement : 1) * pDbgc->DumpPos.u64Range;
3451 break;
3452
3453 case DBGCVAR_RANGE_BYTES:
3454 if (pDbgc->DumpPos.u64Range > 65536)
3455 return DBGCCmdHlpPrintf(pCmdHlp, "error: The requested range is too big. Max is 64KB.\n");
3456 break;
3457
3458 default:
3459 return DBGCCmdHlpPrintf(pCmdHlp, "internal error: Unknown range type %d.\n", pDbgc->DumpPos.enmRangeType);
3460 }
3461
3462 pDbgc->pLastPos = &pDbgc->DumpPos;
3463
3464 /*
3465 * Do the dumping.
3466 */
3467 int cbLeft = (int)pDbgc->DumpPos.u64Range;
3468 uint8_t u16Prev = '\0';
3469 for (;;)
3470 {
3471 /*
3472 * Read memory.
3473 */
3474 char achBuffer[16];
3475 size_t cbReq = RT_MIN((int)sizeof(achBuffer), cbLeft);
3476 size_t cb = RT_MIN((int)sizeof(achBuffer), cbLeft);
3477 int rc = pCmdHlp->pfnMemRead(pCmdHlp, &achBuffer, cbReq, &pDbgc->DumpPos, &cb);
3478 if (RT_FAILURE(rc))
3479 {
3480 if (u16Prev && u16Prev != '\n')
3481 DBGCCmdHlpPrintf(pCmdHlp, "\n");
3482 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "Reading memory at %DV.\n", &pDbgc->DumpPos);
3483 }
3484
3485 /*
3486 * Display it.
3487 */
3488 memset(&achBuffer[cb], 0, sizeof(achBuffer) - cb);
3489 if (!fAscii && !fUnicode)
3490 {
3491 DBGCCmdHlpPrintf(pCmdHlp, "%DV:", &pDbgc->DumpPos);
3492 unsigned i;
3493 for (i = 0; i < cb; i += cbElement)
3494 {
3495 const char *pszSpace = " ";
3496 if (cbElement <= 2 && i == 8)
3497 pszSpace = "-";
3498 switch (cbElement)
3499 {
3500 case 1:
3501 DBGCCmdHlpPrintf(pCmdHlp, "%s%02x", pszSpace, *(uint8_t *)&achBuffer[i]);
3502 break;
3503 case 2:
3504 DBGCCmdHlpPrintf(pCmdHlp, "%s%04x", pszSpace, *(uint16_t *)&achBuffer[i]);
3505 break;
3506 case 4:
3507 if (!fFar)
3508 DBGCCmdHlpPrintf(pCmdHlp, "%s%08x", pszSpace, *(uint32_t *)&achBuffer[i]);
3509 else
3510 DBGCCmdHlpPrintf(pCmdHlp, "%s%04x:%04x:",
3511 pszSpace, *(uint16_t *)&achBuffer[i + 2], *(uint16_t *)&achBuffer[i]);
3512 break;
3513 case 8:
3514 DBGCCmdHlpPrintf(pCmdHlp, "%s%016llx", pszSpace, *(uint64_t *)&achBuffer[i]);
3515 break;
3516 }
3517
3518 if (fSymbols)
3519 {
3520 /* Try lookup symbol for the above address. */
3521 DBGFADDRESS Addr;
3522 rc = VINF_SUCCESS;
3523 if (cbElement == 8)
3524 DBGFR3AddrFromFlat(pDbgc->pUVM, &Addr, *(uint64_t *)&achBuffer[i]);
3525 else if (!fFar)
3526 DBGFR3AddrFromFlat(pDbgc->pUVM, &Addr, *(uint32_t *)&achBuffer[i]);
3527 else
3528 rc = DBGFR3AddrFromSelOff(pDbgc->pUVM, pDbgc->idCpu, &Addr,
3529 *(uint16_t *)&achBuffer[i + 2], *(uint16_t *)&achBuffer[i]);
3530 if (RT_SUCCESS(rc))
3531 {
3532 RTINTPTR offDisp;
3533 RTDBGSYMBOL Symbol;
3534 rc = DBGFR3AsSymbolByAddr(pUVM, pDbgc->hDbgAs, &Addr,
3535 RTDBGSYMADDR_FLAGS_LESS_OR_EQUAL | RTDBGSYMADDR_FLAGS_SKIP_ABS_IN_DEFERRED,
3536 &offDisp, &Symbol, NULL);
3537 if (RT_SUCCESS(rc))
3538 {
3539 if (!offDisp)
3540 rc = DBGCCmdHlpPrintf(pCmdHlp, " %s", Symbol.szName);
3541 else if (offDisp > 0)
3542 rc = DBGCCmdHlpPrintf(pCmdHlp, " %s + %RGv", Symbol.szName, offDisp);
3543 else
3544 rc = DBGCCmdHlpPrintf(pCmdHlp, " %s - %RGv", Symbol.szName, -offDisp);
3545 if (Symbol.cb > 0)
3546 rc = DBGCCmdHlpPrintf(pCmdHlp, " (LB %RGv)", Symbol.cb);
3547 }
3548 }
3549
3550 /* Next line prefix. */
3551 unsigned iNext = i + cbElement;
3552 if (iNext < cb)
3553 {
3554 DBGCVAR TmpPos = pDbgc->DumpPos;
3555 DBGCCmdHlpEval(pCmdHlp, &TmpPos, "(%Dv) + %x", &pDbgc->DumpPos, iNext);
3556 DBGCCmdHlpPrintf(pCmdHlp, "\n%DV:", &pDbgc->DumpPos);
3557 }
3558 }
3559 }
3560
3561 /* Chars column. */
3562 if (cbElement == 1)
3563 {
3564 while (i++ < sizeof(achBuffer))
3565 DBGCCmdHlpPrintf(pCmdHlp, " ");
3566 DBGCCmdHlpPrintf(pCmdHlp, " ");
3567 for (i = 0; i < cb; i += cbElement)
3568 {
3569 uint8_t u8 = *(uint8_t *)&achBuffer[i];
3570 if (RT_C_IS_PRINT(u8) && u8 < 127 && u8 >= 32)
3571 DBGCCmdHlpPrintf(pCmdHlp, "%c", u8);
3572 else
3573 DBGCCmdHlpPrintf(pCmdHlp, ".");
3574 }
3575 }
3576 rc = DBGCCmdHlpPrintf(pCmdHlp, "\n");
3577 }
3578 else
3579 {
3580 /*
3581 * We print up to the first zero and stop there.
3582 * Only printables + '\t' and '\n' are printed.
3583 */
3584 if (!u16Prev)
3585 DBGCCmdHlpPrintf(pCmdHlp, "%DV:\n", &pDbgc->DumpPos);
3586 uint16_t u16 = '\0';
3587 unsigned i;
3588 for (i = 0; i < cb; i += cbElement)
3589 {
3590 u16Prev = u16;
3591 if (cbElement == 1)
3592 u16 = *(uint8_t *)&achBuffer[i];
3593 else
3594 u16 = *(uint16_t *)&achBuffer[i];
3595 if ( u16 < 127
3596 && ( (RT_C_IS_PRINT(u16) && u16 >= 32)
3597 || u16 == '\t'
3598 || u16 == '\n'))
3599 DBGCCmdHlpPrintf(pCmdHlp, "%c", (int)u16);
3600 else if (!u16)
3601 break;
3602 else
3603 DBGCCmdHlpPrintf(pCmdHlp, "\\x%0*x", cbElement * 2, u16);
3604 }
3605 if (u16 == '\0')
3606 cb = cbLeft = i + 1;
3607 if (cbLeft - cb <= 0 && u16Prev != '\n')
3608 DBGCCmdHlpPrintf(pCmdHlp, "\n");
3609 }
3610
3611 /*
3612 * Advance
3613 */
3614 cbLeft -= (int)cb;
3615 rc = DBGCCmdHlpEval(pCmdHlp, &pDbgc->DumpPos, "(%Dv) + %x", &pDbgc->DumpPos, cb);
3616 if (RT_FAILURE(rc))
3617 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "Expression: (%Dv) + %x\n", &pDbgc->DumpPos, cb);
3618 if (cbLeft <= 0)
3619 break;
3620 }
3621
3622 NOREF(pCmd);
3623 return VINF_SUCCESS;
3624}
3625
3626
3627/**
3628 * Best guess at which paging mode currently applies to the guest
3629 * paging structures.
3630 *
3631 * This have to come up with a decent answer even when the guest
3632 * is in non-paged protected mode or real mode.
3633 *
3634 * @returns cr3.
3635 * @param pDbgc The DBGC instance.
3636 * @param pfPAE Where to store the page address extension indicator.
3637 * @param pfLME Where to store the long mode enabled indicator.
3638 * @param pfPSE Where to store the page size extension indicator.
3639 * @param pfPGE Where to store the page global enabled indicator.
3640 * @param pfNXE Where to store the no-execution enabled indicator.
3641 */
3642static RTGCPHYS dbgcGetGuestPageMode(PDBGC pDbgc, bool *pfPAE, bool *pfLME, bool *pfPSE, bool *pfPGE, bool *pfNXE)
3643{
3644 PVMCPU pVCpu = VMMR3GetCpuByIdU(pDbgc->pUVM, pDbgc->idCpu);
3645 RTGCUINTREG cr4 = CPUMGetGuestCR4(pVCpu);
3646 *pfPSE = !!(cr4 & X86_CR4_PSE);
3647 *pfPGE = !!(cr4 & X86_CR4_PGE);
3648 if (cr4 & X86_CR4_PAE)
3649 {
3650 *pfPSE = true;
3651 *pfPAE = true;
3652 }
3653 else
3654 *pfPAE = false;
3655
3656 *pfLME = CPUMGetGuestMode(pVCpu) == CPUMMODE_LONG;
3657 *pfNXE = false; /* GUEST64 GUESTNX */
3658 return CPUMGetGuestCR3(pVCpu);
3659}
3660
3661
3662/**
3663 * Determine the shadow paging mode.
3664 *
3665 * @returns cr3.
3666 * @param pDbgc The DBGC instance.
3667 * @param pfPAE Where to store the page address extension indicator.
3668 * @param pfLME Where to store the long mode enabled indicator.
3669 * @param pfPSE Where to store the page size extension indicator.
3670 * @param pfPGE Where to store the page global enabled indicator.
3671 * @param pfNXE Where to store the no-execution enabled indicator.
3672 */
3673static RTHCPHYS dbgcGetShadowPageMode(PDBGC pDbgc, bool *pfPAE, bool *pfLME, bool *pfPSE, bool *pfPGE, bool *pfNXE)
3674{
3675 PVMCPU pVCpu = VMMR3GetCpuByIdU(pDbgc->pUVM, pDbgc->idCpu);
3676
3677 *pfPSE = true;
3678 *pfPGE = false;
3679 switch (PGMGetShadowMode(pVCpu))
3680 {
3681 default:
3682 case PGMMODE_32_BIT:
3683 *pfPAE = *pfLME = *pfNXE = false;
3684 break;
3685 case PGMMODE_PAE:
3686 *pfLME = *pfNXE = false;
3687 *pfPAE = true;
3688 break;
3689 case PGMMODE_PAE_NX:
3690 *pfLME = false;
3691 *pfPAE = *pfNXE = true;
3692 break;
3693 case PGMMODE_AMD64:
3694 *pfNXE = false;
3695 *pfPAE = *pfLME = true;
3696 break;
3697 case PGMMODE_AMD64_NX:
3698 *pfPAE = *pfLME = *pfNXE = true;
3699 break;
3700 }
3701 return PGMGetHyperCR3(pVCpu);
3702}
3703
3704
3705/**
3706 * @callback_method_impl{FNDBGCCMD,
3707 * The 'dpd'\, 'dpda'\, 'dpdb'\, 'dpdg' and 'dpdh' commands.}
3708 */
3709static DECLCALLBACK(int) dbgcCmdDumpPageDir(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
3710{
3711 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
3712
3713 /*
3714 * Validate input.
3715 */
3716 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs <= 1);
3717 if (cArgs == 1 && pCmd->pszCmd[3] == 'a')
3718 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, DBGCVAR_ISPOINTER(paArgs[0].enmType));
3719 if (cArgs == 1 && pCmd->pszCmd[3] != 'a')
3720 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, paArgs[0].enmType == DBGCVAR_TYPE_NUMBER
3721 || DBGCVAR_ISPOINTER(paArgs[0].enmType));
3722 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
3723
3724 /*
3725 * Guest or shadow page directories? Get the paging parameters.
3726 */
3727 bool fGuest = pCmd->pszCmd[3] != 'h';
3728 if (!pCmd->pszCmd[3] || pCmd->pszCmd[3] == 'a')
3729 fGuest = paArgs[0].enmType == DBGCVAR_TYPE_NUMBER ? true : DBGCVAR_ISGCPOINTER(paArgs[0].enmType);
3730
3731 bool fPAE, fLME, fPSE, fPGE, fNXE;
3732 uint64_t cr3 = fGuest
3733 ? dbgcGetGuestPageMode(pDbgc, &fPAE, &fLME, &fPSE, &fPGE, &fNXE)
3734 : dbgcGetShadowPageMode(pDbgc, &fPAE, &fLME, &fPSE, &fPGE, &fNXE);
3735 const unsigned cbEntry = fPAE ? sizeof(X86PTEPAE) : sizeof(X86PTE);
3736
3737 /*
3738 * Setup default argument if none was specified.
3739 * Fix address / index confusion.
3740 */
3741 DBGCVAR VarDefault;
3742 if (!cArgs)
3743 {
3744 if (pCmd->pszCmd[3] == 'a')
3745 {
3746 if (fLME || fPAE)
3747 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");
3748 if (fGuest)
3749 DBGCVAR_INIT_GC_PHYS(&VarDefault, cr3);
3750 else
3751 DBGCVAR_INIT_HC_PHYS(&VarDefault, cr3);
3752 }
3753 else
3754 DBGCVAR_INIT_GC_FLAT(&VarDefault, 0);
3755 paArgs = &VarDefault;
3756 cArgs = 1;
3757 }
3758 else if (paArgs[0].enmType == DBGCVAR_TYPE_NUMBER)
3759 {
3760 /* If it's a number (not an address), it's an index, so convert it to an address. */
3761 Assert(pCmd->pszCmd[3] != 'a');
3762 VarDefault = paArgs[0];
3763 if (fPAE)
3764 return DBGCCmdHlpPrintf(pCmdHlp, "PDE indexing is only implemented for 32-bit paging.\n");
3765 if (VarDefault.u.u64Number >= PAGE_SIZE / cbEntry)
3766 return DBGCCmdHlpPrintf(pCmdHlp, "PDE index is out of range [0..%d].\n", PAGE_SIZE / cbEntry - 1);
3767 VarDefault.u.u64Number <<= X86_PD_SHIFT;
3768 VarDefault.enmType = DBGCVAR_TYPE_GC_FLAT;
3769 paArgs = &VarDefault;
3770 }
3771
3772 /*
3773 * Locate the PDE to start displaying at.
3774 *
3775 * The 'dpda' command takes the address of a PDE, while the others are guest
3776 * virtual address which PDEs should be displayed. So, 'dpda' is rather simple
3777 * while the others require us to do all the tedious walking thru the paging
3778 * hierarchy to find the intended PDE.
3779 */
3780 unsigned iEntry = ~0U; /* The page directory index. ~0U for 'dpta'. */
3781 DBGCVAR VarGCPtr = { NULL, }; /* The GC address corresponding to the current PDE (iEntry != ~0U). */
3782 DBGCVAR VarPDEAddr; /* The address of the current PDE. */
3783 unsigned cEntries; /* The number of entries to display. */
3784 unsigned cEntriesMax; /* The max number of entries to display. */
3785 int rc;
3786 if (pCmd->pszCmd[3] == 'a')
3787 {
3788 VarPDEAddr = paArgs[0];
3789 switch (VarPDEAddr.enmRangeType)
3790 {
3791 case DBGCVAR_RANGE_BYTES: cEntries = VarPDEAddr.u64Range / cbEntry; break;
3792 case DBGCVAR_RANGE_ELEMENTS: cEntries = VarPDEAddr.u64Range; break;
3793 default: cEntries = 10; break;
3794 }
3795 cEntriesMax = PAGE_SIZE / cbEntry;
3796 }
3797 else
3798 {
3799 /*
3800 * Determine the range.
3801 */
3802 switch (paArgs[0].enmRangeType)
3803 {
3804 case DBGCVAR_RANGE_BYTES: cEntries = paArgs[0].u64Range / PAGE_SIZE; break;
3805 case DBGCVAR_RANGE_ELEMENTS: cEntries = paArgs[0].u64Range; break;
3806 default: cEntries = 10; break;
3807 }
3808
3809 /*
3810 * Normalize the input address, it must be a flat GC address.
3811 */
3812 rc = DBGCCmdHlpEval(pCmdHlp, &VarGCPtr, "%%(%Dv)", &paArgs[0]);
3813 if (RT_FAILURE(rc))
3814 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "%%(%Dv)", &paArgs[0]);
3815 if (VarGCPtr.enmType == DBGCVAR_TYPE_HC_FLAT)
3816 {
3817 VarGCPtr.u.GCFlat = (uintptr_t)VarGCPtr.u.pvHCFlat;
3818 VarGCPtr.enmType = DBGCVAR_TYPE_GC_FLAT;
3819 }
3820 if (fPAE)
3821 VarGCPtr.u.GCFlat &= ~(((RTGCPTR)1 << X86_PD_PAE_SHIFT) - 1);
3822 else
3823 VarGCPtr.u.GCFlat &= ~(((RTGCPTR)1 << X86_PD_SHIFT) - 1);
3824
3825 /*
3826 * Do the paging walk until we get to the page directory.
3827 */
3828 DBGCVAR VarCur;
3829 if (fGuest)
3830 DBGCVAR_INIT_GC_PHYS(&VarCur, cr3);
3831 else
3832 DBGCVAR_INIT_HC_PHYS(&VarCur, cr3);
3833 if (fLME)
3834 {
3835 /* Page Map Level 4 Lookup. */
3836 /* Check if it's a valid address first? */
3837 VarCur.u.u64Number &= X86_PTE_PAE_PG_MASK;
3838 VarCur.u.u64Number += (((uint64_t)VarGCPtr.u.GCFlat >> X86_PML4_SHIFT) & X86_PML4_MASK) * sizeof(X86PML4E);
3839 X86PML4E Pml4e;
3840 rc = pCmdHlp->pfnMemRead(pCmdHlp, &Pml4e, sizeof(Pml4e), &VarCur, NULL);
3841 if (RT_FAILURE(rc))
3842 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "Reading PML4E memory at %DV.\n", &VarCur);
3843 if (!Pml4e.n.u1Present)
3844 return DBGCCmdHlpPrintf(pCmdHlp, "Page directory pointer table is not present for %Dv.\n", &VarGCPtr);
3845
3846 VarCur.u.u64Number = Pml4e.u & X86_PML4E_PG_MASK;
3847 Assert(fPAE);
3848 }
3849 if (fPAE)
3850 {
3851 /* Page directory pointer table. */
3852 X86PDPE Pdpe;
3853 VarCur.u.u64Number += ((VarGCPtr.u.GCFlat >> X86_PDPT_SHIFT) & X86_PDPT_MASK_PAE) * sizeof(Pdpe);
3854 rc = pCmdHlp->pfnMemRead(pCmdHlp, &Pdpe, sizeof(Pdpe), &VarCur, NULL);
3855 if (RT_FAILURE(rc))
3856 return DBGCCmdHlpVBoxError(pCmdHlp, rc, "Reading PDPE memory at %DV.\n", &VarCur);
3857 if (!Pdpe.n.u1Present)
3858 return DBGCCmdHlpPrintf(pCmdHlp, "Page directory is not present for %Dv.\n", &VarGCPtr);
3859
3860 iEntry = (VarGCPtr.u.GCFlat >> X86_PD_PAE_SHIFT) & X86_PD_PAE_MASK;
3861 VarPDEAddr = VarCur;
3862 VarPDEAddr.u.u64Number = Pdpe.u & X86_PDPE_PG_MASK;
3863 VarPDEAddr.u.u64Number += iEntry * sizeof(X86PDEPAE);
3864 }
3865 else
3866 {
3867 /* 32-bit legacy - CR3 == page directory. */
3868 iEntry = (VarGCPtr.u.GCFlat >> X86_PD_SHIFT) & X86_PD_MASK;
3869 VarPDEAddr = VarCur;
3870 VarPDEAddr.u.u64Number += iEntry * sizeof(X86PDE);
3871 }
3872 cEntriesMax = (PAGE_SIZE - iEntry) / cbEntry;
3873 }
3874
3875 /* adjust cEntries */
3876 cEntries = RT_MAX(1, cEntries);
3877 cEntries = RT_MIN(cEntries, cEntriesMax);
3878
3879 /*
3880 * The display loop.
3881 */
3882 DBGCCmdHlpPrintf(pCmdHlp, iEntry != ~0U ? "%DV (index %#x):\n" : "%DV:\n",
3883 &VarPDEAddr, iEntry);
3884 do
3885 {
3886 /*
3887 * Read.
3888 */
3889 X86PDEPAE Pde;
3890 Pde.u = 0;
3891 rc = pCmdHlp->pfnMemRead(pCmdHlp, &Pde, cbEntry, &VarPDEAddr, NULL);
3892 if (RT_FAILURE(rc))
3893 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "Reading PDE memory at %DV.\n", &VarPDEAddr);
3894
3895 /*
3896 * Display.
3897 */
3898 if (iEntry != ~0U)
3899 {
3900 DBGCCmdHlpPrintf(pCmdHlp, "%03x %DV: ", iEntry, &VarGCPtr);
3901 iEntry++;
3902 }
3903 if (fPSE && Pde.b.u1Size)
3904 DBGCCmdHlpPrintf(pCmdHlp,
3905 fPAE
3906 ? "%016llx big phys=%016llx %s %s %s %s %s avl=%02x %s %s %s %s %s"
3907 : "%08llx big phys=%08llx %s %s %s %s %s avl=%02x %s %s %s %s %s",
3908 Pde.u,
3909 Pde.u & X86_PDE_PAE_PG_MASK,
3910 Pde.b.u1Present ? "p " : "np",
3911 Pde.b.u1Write ? "w" : "r",
3912 Pde.b.u1User ? "u" : "s",
3913 Pde.b.u1Accessed ? "a " : "na",
3914 Pde.b.u1Dirty ? "d " : "nd",
3915 Pde.b.u3Available,
3916 Pde.b.u1Global ? (fPGE ? "g" : "G") : " ",
3917 Pde.b.u1WriteThru ? "pwt" : " ",
3918 Pde.b.u1CacheDisable ? "pcd" : " ",
3919 Pde.b.u1PAT ? "pat" : "",
3920 Pde.b.u1NoExecute ? (fNXE ? "nx" : "NX") : " ");
3921 else
3922 DBGCCmdHlpPrintf(pCmdHlp,
3923 fPAE
3924 ? "%016llx 4kb phys=%016llx %s %s %s %s %s avl=%02x %s %s %s %s"
3925 : "%08llx 4kb phys=%08llx %s %s %s %s %s avl=%02x %s %s %s %s",
3926 Pde.u,
3927 Pde.u & X86_PDE_PAE_PG_MASK,
3928 Pde.n.u1Present ? "p " : "np",
3929 Pde.n.u1Write ? "w" : "r",
3930 Pde.n.u1User ? "u" : "s",
3931 Pde.n.u1Accessed ? "a " : "na",
3932 Pde.u & RT_BIT(6) ? "6 " : " ",
3933 Pde.n.u3Available,
3934 Pde.u & RT_BIT(8) ? "8" : " ",
3935 Pde.n.u1WriteThru ? "pwt" : " ",
3936 Pde.n.u1CacheDisable ? "pcd" : " ",
3937 Pde.u & RT_BIT(7) ? "7" : "",
3938 Pde.n.u1NoExecute ? (fNXE ? "nx" : "NX") : " ");
3939 if (Pde.u & UINT64_C(0x7fff000000000000))
3940 DBGCCmdHlpPrintf(pCmdHlp, " weird=%RX64", (Pde.u & UINT64_C(0x7fff000000000000)));
3941 rc = DBGCCmdHlpPrintf(pCmdHlp, "\n");
3942 if (RT_FAILURE(rc))
3943 return rc;
3944
3945 /*
3946 * Advance.
3947 */
3948 VarPDEAddr.u.u64Number += cbEntry;
3949 if (iEntry != ~0U)
3950 VarGCPtr.u.GCFlat += fPAE ? RT_BIT_32(X86_PD_PAE_SHIFT) : RT_BIT_32(X86_PD_SHIFT);
3951 } while (cEntries-- > 0);
3952
3953 return VINF_SUCCESS;
3954}
3955
3956
3957/**
3958 * @callback_method_impl{FNDBGCCMD, The 'dpdb' command.}
3959 */
3960static DECLCALLBACK(int) dbgcCmdDumpPageDirBoth(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
3961{
3962 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
3963 int rc1 = pCmdHlp->pfnExec(pCmdHlp, "dpdg %DV", &paArgs[0]);
3964 int rc2 = pCmdHlp->pfnExec(pCmdHlp, "dpdh %DV", &paArgs[0]);
3965 if (RT_FAILURE(rc1))
3966 return rc1;
3967 NOREF(pCmd); NOREF(paArgs); NOREF(cArgs);
3968 return rc2;
3969}
3970
3971
3972/**
3973 * @callback_method_impl{FNDBGCCMD, The 'dph*' commands and main part of 'm'.}
3974 */
3975static DECLCALLBACK(int) dbgcCmdDumpPageHierarchy(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
3976{
3977 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
3978 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
3979
3980 /*
3981 * Figure the context and base flags.
3982 */
3983 uint32_t fFlags = DBGFPGDMP_FLAGS_PAGE_INFO | DBGFPGDMP_FLAGS_PRINT_CR3;
3984 if (pCmd->pszCmd[0] == 'm')
3985 fFlags |= DBGFPGDMP_FLAGS_GUEST | DBGFPGDMP_FLAGS_SHADOW;
3986 else if (pCmd->pszCmd[3] == '\0')
3987 fFlags |= DBGFPGDMP_FLAGS_GUEST;
3988 else if (pCmd->pszCmd[3] == 'g')
3989 fFlags |= DBGFPGDMP_FLAGS_GUEST;
3990 else if (pCmd->pszCmd[3] == 'h')
3991 fFlags |= DBGFPGDMP_FLAGS_SHADOW;
3992 else
3993 AssertFailed();
3994
3995 if (pDbgc->cPagingHierarchyDumps == 0)
3996 fFlags |= DBGFPGDMP_FLAGS_HEADER;
3997 pDbgc->cPagingHierarchyDumps = (pDbgc->cPagingHierarchyDumps + 1) % 42;
3998
3999 /*
4000 * Get the range.
4001 */
4002 PCDBGCVAR pRange = cArgs > 0 ? &paArgs[0] : pDbgc->pLastPos;
4003 RTGCPTR GCPtrFirst = NIL_RTGCPTR;
4004 int rc = DBGCCmdHlpVarToFlatAddr(pCmdHlp, pRange, &GCPtrFirst);
4005 if (RT_FAILURE(rc))
4006 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Failed to convert %DV to a flat address: %Rrc", pRange, rc);
4007
4008 uint64_t cbRange;
4009 rc = DBGCCmdHlpVarGetRange(pCmdHlp, pRange, PAGE_SIZE, PAGE_SIZE * 8, &cbRange);
4010 if (RT_FAILURE(rc))
4011 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Failed to obtain the range of %DV: %Rrc", pRange, rc);
4012
4013 RTGCPTR GCPtrLast = RTGCPTR_MAX - GCPtrFirst;
4014 if (cbRange >= GCPtrLast)
4015 GCPtrLast = RTGCPTR_MAX;
4016 else if (!cbRange)
4017 GCPtrLast = GCPtrFirst;
4018 else
4019 GCPtrLast = GCPtrFirst + cbRange - 1;
4020
4021 /*
4022 * Do we have a CR3?
4023 */
4024 uint64_t cr3 = 0;
4025 if (cArgs > 1)
4026 {
4027 if ((fFlags & (DBGFPGDMP_FLAGS_GUEST | DBGFPGDMP_FLAGS_SHADOW)) == (DBGFPGDMP_FLAGS_GUEST | DBGFPGDMP_FLAGS_SHADOW))
4028 return DBGCCmdHlpFail(pCmdHlp, pCmd, "No CR3 or mode arguments when dumping both context, please.");
4029 if (paArgs[1].enmType != DBGCVAR_TYPE_NUMBER)
4030 return DBGCCmdHlpFail(pCmdHlp, pCmd, "The CR3 argument is not a number: %DV", &paArgs[1]);
4031 cr3 = paArgs[1].u.u64Number;
4032 }
4033 else
4034 fFlags |= DBGFPGDMP_FLAGS_CURRENT_CR3;
4035
4036 /*
4037 * Do we have a mode?
4038 */
4039 if (cArgs > 2)
4040 {
4041 if (paArgs[2].enmType != DBGCVAR_TYPE_STRING)
4042 return DBGCCmdHlpFail(pCmdHlp, pCmd, "The mode argument is not a string: %DV", &paArgs[2]);
4043 static const struct MODETOFLAGS
4044 {
4045 const char *pszName;
4046 uint32_t fFlags;
4047 } s_aModeToFlags[] =
4048 {
4049 { "ept", DBGFPGDMP_FLAGS_EPT },
4050 { "legacy", 0 },
4051 { "legacy-np", DBGFPGDMP_FLAGS_NP },
4052 { "pse", DBGFPGDMP_FLAGS_PSE },
4053 { "pse-np", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_NP },
4054 { "pae", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_PAE },
4055 { "pae-np", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_PAE | DBGFPGDMP_FLAGS_NP },
4056 { "pae-nx", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_PAE | DBGFPGDMP_FLAGS_NXE },
4057 { "pae-nx-np", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_PAE | DBGFPGDMP_FLAGS_NXE | DBGFPGDMP_FLAGS_NP },
4058 { "long", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_PAE | DBGFPGDMP_FLAGS_LME },
4059 { "long-np", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_PAE | DBGFPGDMP_FLAGS_LME | DBGFPGDMP_FLAGS_NP },
4060 { "long-nx", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_PAE | DBGFPGDMP_FLAGS_LME | DBGFPGDMP_FLAGS_NXE },
4061 { "long-nx-np", DBGFPGDMP_FLAGS_PSE | DBGFPGDMP_FLAGS_PAE | DBGFPGDMP_FLAGS_LME | DBGFPGDMP_FLAGS_NXE | DBGFPGDMP_FLAGS_NP }
4062 };
4063 int i = RT_ELEMENTS(s_aModeToFlags);
4064 while (i-- > 0)
4065 if (!strcmp(s_aModeToFlags[i].pszName, paArgs[2].u.pszString))
4066 {
4067 fFlags |= s_aModeToFlags[i].fFlags;
4068 break;
4069 }
4070 if (i < 0)
4071 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Unknown mode: \"%s\"", paArgs[2].u.pszString);
4072 }
4073 else
4074 fFlags |= DBGFPGDMP_FLAGS_CURRENT_MODE;
4075
4076 /*
4077 * Call the worker.
4078 */
4079 rc = DBGFR3PagingDumpEx(pUVM, pDbgc->idCpu, fFlags, cr3, GCPtrFirst, GCPtrLast, 99 /*cMaxDepth*/,
4080 DBGCCmdHlpGetDbgfOutputHlp(pCmdHlp));
4081 if (RT_FAILURE(rc))
4082 return DBGCCmdHlpFail(pCmdHlp, pCmd, "DBGFR3PagingDumpEx: %Rrc\n", rc);
4083 return VINF_SUCCESS;
4084}
4085
4086
4087
4088/**
4089 * @callback_method_impl{FNDBGCCMD, The 'dpg*' commands.}
4090 */
4091static DECLCALLBACK(int) dbgcCmdDumpPageTable(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
4092{
4093 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
4094
4095 /*
4096 * Validate input.
4097 */
4098 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, cArgs == 1);
4099 if (pCmd->pszCmd[3] == 'a')
4100 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, DBGCVAR_ISPOINTER(paArgs[0].enmType));
4101 else
4102 DBGC_CMDHLP_ASSERT_PARSER_RET(pCmdHlp, pCmd, 0, paArgs[0].enmType == DBGCVAR_TYPE_NUMBER
4103 || DBGCVAR_ISPOINTER(paArgs[0].enmType));
4104 DBGC_CMDHLP_REQ_UVM_RET(pCmdHlp, pCmd, pUVM);
4105
4106 /*
4107 * Guest or shadow page tables? Get the paging parameters.
4108 */
4109 bool fGuest = pCmd->pszCmd[3] != 'h';
4110 if (!pCmd->pszCmd[3] || pCmd->pszCmd[3] == 'a')
4111 fGuest = paArgs[0].enmType == DBGCVAR_TYPE_NUMBER ? true : DBGCVAR_ISGCPOINTER(paArgs[0].enmType);
4112
4113 bool fPAE, fLME, fPSE, fPGE, fNXE;
4114 uint64_t cr3 = fGuest
4115 ? dbgcGetGuestPageMode(pDbgc, &fPAE, &fLME, &fPSE, &fPGE, &fNXE)
4116 : dbgcGetShadowPageMode(pDbgc, &fPAE, &fLME, &fPSE, &fPGE, &fNXE