VirtualBox

source: vbox/trunk/src/VBox/Debugger/DBGConsole.cpp@ 82781

Last change on this file since 82781 was 80014, checked in by vboxsync, 5 years ago

VMM: Kicking out raw-mode (work in progress). bugref:9517

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 43.3 KB
Line 
1/* $Id: DBGConsole.cpp 80014 2019-07-26 16:12:06Z vboxsync $ */
2/** @file
3 * DBGC - Debugger Console.
4 */
5
6/*
7 * Copyright (C) 2006-2019 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/** @page pg_dbgc DBGC - The Debug Console
20 *
21 * The debugger console is an early attempt to make some interactive
22 * debugging facilities for the VirtualBox VMM. It was initially only
23 * accessible thru a telnet session in debug builds. Later it was hastily built
24 * into the VBoxDbg module with a very simple Qt wrapper around it.
25 *
26 * The current state is that it's by default shipped with all standard
27 * VirtualBox builds. The GUI component is by default accessible in all
28 * non-release builds, while release builds require extra data, environment or
29 * command line options to make it visible.
30 *
31 * Now, even if we ship it with all standard builds we would like it to remain
32 * an optional feature that can be omitted when building VirtualBox. Therefore,
33 * all external code interfacing DBGC need to be enclosed in
34 * \#ifdef VBOX_WITH_DEBUGGER blocks. This is mandatory for components that
35 * register external commands.
36 *
37 *
38 * @section sec_dbgc_op Operation
39 *
40 * The console will process commands in a manner similar to the OS/2 and Windows
41 * kernel debuggers. This means ';' is a command separator and that when
42 * possible we'll use the same command names as these two uses. As an
43 * alternative we intent to provide a set of gdb-like commands as well and let
44 * the user decide which should take precedence.
45 *
46 *
47 * @subsection sec_dbg_op_numbers Numbers
48 *
49 * Numbers are hexadecimal unless specified with a prefix indicating
50 * elsewise. Prefixes:
51 * - '0x' - hexadecimal.
52 * - '0n' - decimal
53 * - '0t' - octal.
54 * - '0y' - binary.
55 *
56 * Some of the prefixes are a bit uncommon, the reason for this that the
57 * typical binary prefix '0b' can also be a hexadecimal value since no prefix or
58 * suffix is required for such values. Ditto for '0n' and '0' for decimal and
59 * octal.
60 *
61 * The '`' can be used in the numeric value to separate parts as the user
62 * wishes. Generally, though the debugger may use it in output as thousand
63 * separator in decimal numbers and 32-bit separator in hex numbers.
64 *
65 * For historical reasons, a 'h' suffix is suffered on hex numbers. Unlike most
66 * assemblers, a leading 0 before a-f is not required with the 'h' suffix.
67 *
68 * The prefix '0i' can be used instead of '0n', as it was the early decimal
69 * prefix employed by DBGC. It's being deprecated and may be removed later.
70 *
71 *
72 * @subsection sec_dbg_op_strings Strings and Symbols
73 *
74 * The debugger will try to guess, convert or promote what the type of an
75 * argument to a command, function or operator based on the input description of
76 * the receiver. If the user wants to make it clear to the debugger that
77 * something is a string, put it inside double quotes. Symbols should use
78 * single quotes, though we're current still a bit flexible on this point.
79 *
80 * If you need to put a quote character inside the quoted text, you escape it by
81 * repating it once: echo "printf(""hello world"");"
82 *
83 *
84 * @subsection sec_dbg_op_address Addressing modes
85 *
86 * - Default is flat. For compatibility '%' also means flat.
87 * - Segmented addresses are specified selector:offset.
88 * - Physical addresses are specified using '%%'.
89 * - The default target for the addressing is the guest context, the '#'
90 * will override this and set it to the host.
91 * Note that several operations won't work on host addresses.
92 *
93 * The '%', '%%' and '#' prefixes is implemented as unary operators, while ':'
94 * is a binary operator. Operator precedence takes care of evaluation order.
95 *
96 *
97 * @subsection sec_dbg_op_c_operators C/C++ Operators
98 *
99 * Most unary and binary arithmetic, comparison, logical and bitwise C/C++
100 * operators are supported by the debugger, with the same precedence rules of
101 * course. There is one notable change made due to the unary '%' and '%%'
102 * operators, and that is that the modulo (remainder) operator is called 'mod'
103 * instead of '%'. This saves a lot of trouble separating argument.
104 *
105 * There are no assignment operators. Instead some simple global variable space
106 * is provided thru the 'set' and 'unset' commands and the unary '$' operator.
107 *
108 *
109 * @subsection sec_dbg_op_registers Registers
110 *
111 * All registers and their sub-fields exposed by the DBGF API are accessible via
112 * the '\@' operator. A few CPU register are accessible directly (as symbols)
113 * without using the '\@' operator. Hypervisor registers are accessible by
114 * prefixing the register name with a dot ('.').
115 *
116 *
117 * @subsection sec_dbg_op_commands Commands
118 *
119 * Commands names are case sensitive. By convention they are lower cased, starts
120 * with a letter but may contain digits and underscores afterwards. Operators
121 * are not allowed in the name (not even part of it), as we would risk
122 * misunderstanding it otherwise.
123 *
124 * Commands returns a status code.
125 *
126 * The '.' prefix indicates the set of external commands. External commands are
127 * command registered by VMM components.
128 *
129 *
130 * @subsection sec_dbg_op_functions Functions
131 *
132 * Functions are similar to commands, but return a variable and can only be used
133 * as part of an expression making up the argument of a command, function,
134 * operator or language statement (if we get around to implement that).
135 *
136 *
137 * @section sec_dbgc_logging Logging
138 *
139 * The idea is to be able to pass thru debug and release logs to the console
140 * if the user so wishes. This feature requires some kind of hook into the
141 * logger instance and while this was sketched it hasn't yet been implemented
142 * (dbgcProcessLog and DBGC::fLog).
143 *
144 * This feature has not materialized and probably never will.
145 *
146 *
147 * @section sec_dbgc_linking Linking and API
148 *
149 * The DBGC code is linked into the VBoxVMM module.
150 *
151 * IMachineDebugger may one day be extended with a DBGC interface so we can work
152 * with DBGC remotely without requiring TCP. Some questions about callbacks
153 * (for output) and security (you may wish to restrict users from debugging a
154 * VM) needs to be answered first though.
155 */
156
157
158/*********************************************************************************************************************************
159* Header Files *
160*********************************************************************************************************************************/
161#define LOG_GROUP LOG_GROUP_DBGC
162#include <VBox/dbg.h>
163#include <VBox/vmm/cfgm.h>
164#include <VBox/vmm/dbgf.h>
165#include <VBox/vmm/vmapi.h> /* VMR3GetVM() */
166#include <VBox/vmm/hm.h> /* HMR3IsEnabled */
167#include <VBox/vmm/nem.h> /* NEMR3IsEnabled */
168#include <VBox/err.h>
169#include <VBox/log.h>
170
171#include <iprt/asm.h>
172#include <iprt/assert.h>
173#include <iprt/file.h>
174#include <iprt/mem.h>
175#include <iprt/path.h>
176#include <iprt/string.h>
177
178#include "DBGCInternal.h"
179#include "DBGPlugIns.h"
180
181
182/*********************************************************************************************************************************
183* Internal Functions *
184*********************************************************************************************************************************/
185static int dbgcProcessLog(PDBGC pDbgc);
186
187
188/**
189 * Resolves a symbol (or tries to do so at least).
190 *
191 * @returns 0 on success.
192 * @returns VBox status on failure.
193 * @param pDbgc The debug console instance.
194 * @param pszSymbol The symbol name.
195 * @param enmType The result type. Specifying DBGCVAR_TYPE_GC_FAR may
196 * cause failure, avoid it.
197 * @param pResult Where to store the result.
198 */
199int dbgcSymbolGet(PDBGC pDbgc, const char *pszSymbol, DBGCVARTYPE enmType, PDBGCVAR pResult)
200{
201 int rc;
202
203 /*
204 * Builtin?
205 */
206 PCDBGCSYM pSymDesc = dbgcLookupRegisterSymbol(pDbgc, pszSymbol);
207 if (pSymDesc)
208 {
209 if (!pSymDesc->pfnGet)
210 return VERR_DBGC_PARSE_WRITEONLY_SYMBOL;
211 return pSymDesc->pfnGet(pSymDesc, &pDbgc->CmdHlp, enmType, pResult);
212 }
213
214 /*
215 * A typical register? (Guest only)
216 */
217 static const char s_szSixLetterRegisters[] =
218 "rflags;eflags;"
219 ;
220 static const char s_szThreeLetterRegisters[] =
221 "eax;rax;" "r10;" "r8d;r8w;r8b;" "cr0;" "dr0;"
222 "ebx;rbx;" "r11;" "r9d;r9w;r8b;" "dr1;"
223 "ecx;rcx;" "r12;" "cr2;" "dr2;"
224 "edx;rdx;" "r13;" "cr3;" "dr3;"
225 "edi;rdi;dil;" "r14;" "cr4;" "dr4;"
226 "esi;rsi;sil;" "r15;" "cr8;"
227 "ebp;rbp;"
228 "esp;rsp;" "dr6;"
229 "rip;eip;" "dr7;"
230 "efl;"
231 ;
232 static const char s_szTwoLetterRegisters[] =
233 "ax;al;ah;" "r8;"
234 "bx;bl;bh;" "r9;"
235 "cx;cl;ch;" "cs;"
236 "dx;dl;dh;" "ds;"
237 "di;" "es;"
238 "si;" "fs;"
239 "bp;" "gs;"
240 "sp;" "ss;"
241 "ip;"
242 ;
243 const char *pszRegSym = *pszSymbol == '.' ? pszSymbol + 1 : pszSymbol;
244 size_t const cchRegSym = strlen(pszRegSym);
245 if ( (cchRegSym == 2 && strstr(s_szTwoLetterRegisters, pszRegSym))
246 || (cchRegSym == 3 && strstr(s_szThreeLetterRegisters, pszRegSym))
247 || (cchRegSym == 6 && strstr(s_szSixLetterRegisters, pszRegSym)))
248 {
249 if (!strchr(pszSymbol, ';'))
250 {
251 DBGCVAR Var;
252 DBGCVAR_INIT_SYMBOL(&Var, pszSymbol);
253 rc = dbgcOpRegister(pDbgc, &Var, DBGCVAR_CAT_ANY, pResult);
254 if (RT_SUCCESS(rc))
255 return DBGCCmdHlpConvert(&pDbgc->CmdHlp, pResult, enmType, false /*fConvSyms*/, pResult);
256 }
257 }
258
259 /*
260 * Ask PDM.
261 */
262 /** @todo resolve symbols using PDM. */
263
264 /*
265 * Ask the debug info manager.
266 */
267 RTDBGSYMBOL Symbol;
268 rc = DBGFR3AsSymbolByName(pDbgc->pUVM, pDbgc->hDbgAs, pszSymbol, &Symbol, NULL);
269 if (RT_SUCCESS(rc))
270 {
271 /*
272 * Default return is a flat gc address.
273 */
274 DBGCVAR_INIT_GC_FLAT(pResult, Symbol.Value);
275 if (Symbol.cb)
276 DBGCVAR_SET_RANGE(pResult, DBGCVAR_RANGE_BYTES, Symbol.cb);
277
278 switch (enmType)
279 {
280 /* nothing to do. */
281 case DBGCVAR_TYPE_GC_FLAT:
282 case DBGCVAR_TYPE_ANY:
283 return VINF_SUCCESS;
284
285 /* impossible at the moment. */
286 case DBGCVAR_TYPE_GC_FAR:
287 return VERR_DBGC_PARSE_CONVERSION_FAILED;
288
289 /* simply make it numeric. */
290 case DBGCVAR_TYPE_NUMBER:
291 pResult->enmType = DBGCVAR_TYPE_NUMBER;
292 pResult->u.u64Number = Symbol.Value;
293 return VINF_SUCCESS;
294
295 /* cast it. */
296 case DBGCVAR_TYPE_GC_PHYS:
297 case DBGCVAR_TYPE_HC_FLAT:
298 case DBGCVAR_TYPE_HC_PHYS:
299 return DBGCCmdHlpConvert(&pDbgc->CmdHlp, pResult, enmType, false /*fConvSyms*/, pResult);
300
301 default:
302 AssertMsgFailed(("Internal error enmType=%d\n", enmType));
303 return VERR_INVALID_PARAMETER;
304 }
305 }
306
307 return VERR_DBGC_PARSE_NOT_IMPLEMENTED;
308}
309
310
311/**
312 * Process all commands currently in the buffer.
313 *
314 * @returns VBox status code. Any error indicates the termination of the console session.
315 * @param pDbgc Debugger console instance data.
316 * @param fNoExecute Indicates that no commands should actually be executed.
317 */
318static int dbgcProcessCommands(PDBGC pDbgc, bool fNoExecute)
319{
320 /** @todo Replace this with a sh/ksh/csh/rexx like toplevel language that
321 * allows doing function, loops, if, cases, and such. */
322 int rc = VINF_SUCCESS;
323 while (pDbgc->cInputLines)
324 {
325 /*
326 * Empty the log buffer if we're hooking the log.
327 */
328 if (pDbgc->fLog)
329 {
330 rc = dbgcProcessLog(pDbgc);
331 if (RT_FAILURE(rc))
332 break;
333 }
334
335 if (pDbgc->iRead == pDbgc->iWrite)
336 {
337 AssertMsgFailed(("The input buffer is empty while cInputLines=%d!\n", pDbgc->cInputLines));
338 pDbgc->cInputLines = 0;
339 return 0;
340 }
341
342 /*
343 * Copy the command to the parse buffer.
344 */
345 char ch;
346 char *psz = &pDbgc->achInput[pDbgc->iRead];
347 char *pszTrg = &pDbgc->achScratch[0];
348 while ((*pszTrg = ch = *psz++) != ';' && ch != '\n' )
349 {
350 if (psz == &pDbgc->achInput[sizeof(pDbgc->achInput)])
351 psz = &pDbgc->achInput[0];
352
353 if (psz == &pDbgc->achInput[pDbgc->iWrite])
354 {
355 AssertMsgFailed(("The buffer contains no commands while cInputLines=%d!\n", pDbgc->cInputLines));
356 pDbgc->cInputLines = 0;
357 return 0;
358 }
359
360 pszTrg++;
361 }
362 *pszTrg = '\0';
363
364 /*
365 * Advance the buffer.
366 */
367 pDbgc->iRead = psz - &pDbgc->achInput[0];
368 if (ch == '\n')
369 pDbgc->cInputLines--;
370
371 /*
372 * Parse and execute this command.
373 */
374 pDbgc->pszScratch = pszTrg + 1;
375 pDbgc->iArg = 0;
376 rc = dbgcEvalCommand(pDbgc, &pDbgc->achScratch[0], pszTrg - &pDbgc->achScratch[0] - 1, fNoExecute);
377 if ( rc == VERR_DBGC_QUIT
378 || rc == VWRN_DBGC_CMD_PENDING)
379 break;
380 rc = VINF_SUCCESS; /* ignore other statuses */
381 }
382
383 return rc;
384}
385
386
387/**
388 * Handle input buffer overflow.
389 *
390 * Will read any available input looking for a '\n' to reset the buffer on.
391 *
392 * @returns VBox status code.
393 * @param pDbgc Debugger console instance data.
394 */
395static int dbgcInputOverflow(PDBGC pDbgc)
396{
397 /*
398 * Assert overflow status and reset the input buffer.
399 */
400 if (!pDbgc->fInputOverflow)
401 {
402 pDbgc->fInputOverflow = true;
403 pDbgc->iRead = pDbgc->iWrite = 0;
404 pDbgc->cInputLines = 0;
405 pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "Input overflow!!\n");
406 }
407
408 /*
409 * Eat input till no more or there is a '\n'.
410 * When finding a '\n' we'll continue normal processing.
411 */
412 while (pDbgc->pBack->pfnInput(pDbgc->pBack, 0))
413 {
414 size_t cbRead;
415 int rc = pDbgc->pBack->pfnRead(pDbgc->pBack, &pDbgc->achInput[0], sizeof(pDbgc->achInput) - 1, &cbRead);
416 if (RT_FAILURE(rc))
417 return rc;
418 char *psz = (char *)memchr(&pDbgc->achInput[0], '\n', cbRead);
419 if (psz)
420 {
421 pDbgc->fInputOverflow = false;
422 pDbgc->iRead = psz - &pDbgc->achInput[0] + 1;
423 pDbgc->iWrite = (unsigned)cbRead;
424 pDbgc->cInputLines = 0;
425 break;
426 }
427 }
428
429 return 0;
430}
431
432
433/**
434 * Read input and do some preprocessing.
435 *
436 * @returns VBox status code.
437 * In addition to the iWrite and achInput, cInputLines is maintained.
438 * In case of an input overflow the fInputOverflow flag will be set.
439 * @param pDbgc Debugger console instance data.
440 */
441static int dbgcInputRead(PDBGC pDbgc)
442{
443 /*
444 * We have ready input.
445 * Read it till we don't have any or we have a full input buffer.
446 */
447 int rc = 0;
448 do
449 {
450 /*
451 * More available buffer space?
452 */
453 size_t cbLeft;
454 if (pDbgc->iWrite > pDbgc->iRead)
455 cbLeft = sizeof(pDbgc->achInput) - pDbgc->iWrite - (pDbgc->iRead == 0);
456 else
457 cbLeft = pDbgc->iRead - pDbgc->iWrite - 1;
458 if (!cbLeft)
459 {
460 /* overflow? */
461 if (!pDbgc->cInputLines)
462 rc = dbgcInputOverflow(pDbgc);
463 break;
464 }
465
466 /*
467 * Read one char and interpret it.
468 */
469 char achRead[128];
470 size_t cbRead;
471 rc = pDbgc->pBack->pfnRead(pDbgc->pBack, &achRead[0], RT_MIN(cbLeft, sizeof(achRead)), &cbRead);
472 if (RT_FAILURE(rc))
473 return rc;
474 char *psz = &achRead[0];
475 while (cbRead-- > 0)
476 {
477 char ch = *psz++;
478 switch (ch)
479 {
480 /*
481 * Ignore.
482 */
483 case '\0':
484 case '\r':
485 case '\a':
486 break;
487
488 /*
489 * Backspace.
490 */
491 case '\b':
492 Log2(("DBGC: backspace\n"));
493 if (pDbgc->iRead != pDbgc->iWrite)
494 {
495 unsigned iWriteUndo = pDbgc->iWrite;
496 if (pDbgc->iWrite)
497 pDbgc->iWrite--;
498 else
499 pDbgc->iWrite = sizeof(pDbgc->achInput) - 1;
500
501 if (pDbgc->achInput[pDbgc->iWrite] == '\n')
502 pDbgc->iWrite = iWriteUndo;
503 }
504 break;
505
506 /*
507 * Add char to buffer.
508 */
509 case '\t':
510 case '\n':
511 case ';':
512 switch (ch)
513 {
514 case '\t': ch = ' '; break;
515 case '\n': pDbgc->cInputLines++; break;
516 }
517 RT_FALL_THRU();
518 default:
519 Log2(("DBGC: ch=%02x\n", (unsigned char)ch));
520 pDbgc->achInput[pDbgc->iWrite] = ch;
521 if (++pDbgc->iWrite >= sizeof(pDbgc->achInput))
522 pDbgc->iWrite = 0;
523 break;
524 }
525 }
526
527 /* Terminate it to make it easier to read in the debugger. */
528 pDbgc->achInput[pDbgc->iWrite] = '\0';
529 } while (pDbgc->pBack->pfnInput(pDbgc->pBack, 0));
530
531 return rc;
532}
533
534
535/**
536 * Reads input, parses it and executes commands on '\n'.
537 *
538 * @returns VBox status code.
539 * @param pDbgc Debugger console instance data.
540 * @param fNoExecute Indicates that no commands should actually be executed.
541 */
542int dbgcProcessInput(PDBGC pDbgc, bool fNoExecute)
543{
544 /*
545 * We know there's input ready, so let's read it first.
546 */
547 int rc = dbgcInputRead(pDbgc);
548 if (RT_FAILURE(rc))
549 return rc;
550
551 /*
552 * Now execute any ready commands.
553 */
554 if (pDbgc->cInputLines)
555 {
556 pDbgc->pBack->pfnSetReady(pDbgc->pBack, false);
557 pDbgc->fReady = false;
558 rc = dbgcProcessCommands(pDbgc, fNoExecute);
559 if (RT_SUCCESS(rc) && rc != VWRN_DBGC_CMD_PENDING)
560 pDbgc->fReady = true;
561
562 if ( RT_SUCCESS(rc)
563 && pDbgc->iRead == pDbgc->iWrite
564 && pDbgc->fReady)
565 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "VBoxDbg> ");
566
567 if ( RT_SUCCESS(rc)
568 && pDbgc->fReady)
569 pDbgc->pBack->pfnSetReady(pDbgc->pBack, true);
570 }
571 /*
572 * else - we have incomplete line, so leave it in the buffer and
573 * wait for more input.
574 *
575 * Windows telnet client is in "character at a time" mode by
576 * default and putty sends eol as a separate packet that will be
577 * most likely read separately from the command line it
578 * terminates.
579 */
580
581 return rc;
582}
583
584
585/**
586 * Gets the event context identifier string.
587 * @returns Read only string.
588 * @param enmCtx The context.
589 */
590static const char *dbgcGetEventCtx(DBGFEVENTCTX enmCtx)
591{
592 switch (enmCtx)
593 {
594 case DBGFEVENTCTX_RAW: return "raw";
595 case DBGFEVENTCTX_REM: return "rem";
596 case DBGFEVENTCTX_HM: return "hwaccl";
597 case DBGFEVENTCTX_HYPER: return "hyper";
598 case DBGFEVENTCTX_OTHER: return "other";
599
600 case DBGFEVENTCTX_INVALID: return "!Invalid Event Ctx!";
601 default:
602 AssertMsgFailed(("enmCtx=%d\n", enmCtx));
603 return "!Unknown Event Ctx!";
604 }
605}
606
607
608/**
609 * Looks up a generic debug event.
610 *
611 * @returns Pointer to DBGCSXEVT structure if found, otherwise NULL.
612 * @param enmType The possibly generic event to find the descriptor for.
613 */
614static PCDBGCSXEVT dbgcEventLookup(DBGFEVENTTYPE enmType)
615{
616 uint32_t i = g_cDbgcSxEvents;
617 while (i-- > 0)
618 if (g_aDbgcSxEvents[i].enmType == enmType)
619 return &g_aDbgcSxEvents[i];
620 return NULL;
621}
622
623
624/**
625 * Processes debugger events.
626 *
627 * @returns VBox status code.
628 * @param pDbgc DBGC Instance data.
629 * @param pEvent Pointer to event data.
630 */
631static int dbgcProcessEvent(PDBGC pDbgc, PCDBGFEVENT pEvent)
632{
633 /*
634 * Flush log first.
635 */
636 if (pDbgc->fLog)
637 {
638 int rc = dbgcProcessLog(pDbgc);
639 if (RT_FAILURE(rc))
640 return rc;
641 }
642
643 /*
644 * Process the event.
645 */
646 pDbgc->pszScratch = &pDbgc->achInput[0];
647 pDbgc->iArg = 0;
648 bool fPrintPrompt = true;
649 int rc = VINF_SUCCESS;
650 switch (pEvent->enmType)
651 {
652 /*
653 * The first part is events we have initiated with commands.
654 */
655 case DBGFEVENT_HALT_DONE:
656 {
657 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\ndbgf event: VM %p is halted! (%s)\n",
658 pDbgc->pVM, dbgcGetEventCtx(pEvent->enmCtx));
659 if (RT_SUCCESS(rc))
660 rc = pDbgc->CmdHlp.pfnExec(&pDbgc->CmdHlp, "r");
661 break;
662 }
663
664
665 /*
666 * The second part is events which can occur at any time.
667 */
668 case DBGFEVENT_FATAL_ERROR:
669 {
670 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\ndbf event: Fatal error! (%s)\n",
671 dbgcGetEventCtx(pEvent->enmCtx));
672 if (RT_SUCCESS(rc))
673 rc = pDbgc->CmdHlp.pfnExec(&pDbgc->CmdHlp, "r");
674 break;
675 }
676
677 case DBGFEVENT_BREAKPOINT:
678 case DBGFEVENT_BREAKPOINT_IO:
679 case DBGFEVENT_BREAKPOINT_MMIO:
680 case DBGFEVENT_BREAKPOINT_HYPER:
681 {
682 rc = dbgcBpExec(pDbgc, pEvent->u.Bp.iBp);
683 switch (rc)
684 {
685 case VERR_DBGC_BP_NOT_FOUND:
686 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\ndbgf event: Unknown breakpoint %u! (%s)\n",
687 pEvent->u.Bp.iBp, dbgcGetEventCtx(pEvent->enmCtx));
688 break;
689
690 case VINF_DBGC_BP_NO_COMMAND:
691 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\ndbgf event: Breakpoint %u! (%s)\n",
692 pEvent->u.Bp.iBp, dbgcGetEventCtx(pEvent->enmCtx));
693 break;
694
695 case VINF_BUFFER_OVERFLOW:
696 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\ndbgf event: Breakpoint %u! Command too long to execute! (%s)\n",
697 pEvent->u.Bp.iBp, dbgcGetEventCtx(pEvent->enmCtx));
698 break;
699
700 default:
701 break;
702 }
703 if (RT_SUCCESS(rc) && DBGFR3IsHalted(pDbgc->pUVM))
704 {
705 rc = pDbgc->CmdHlp.pfnExec(&pDbgc->CmdHlp, "r");
706
707 /* Set the resume flag to ignore the breakpoint when resuming execution. */
708 if ( RT_SUCCESS(rc)
709 && pEvent->enmType == DBGFEVENT_BREAKPOINT)
710 rc = pDbgc->CmdHlp.pfnExec(&pDbgc->CmdHlp, "r eflags.rf = 1");
711 }
712 break;
713 }
714
715 case DBGFEVENT_STEPPED:
716 case DBGFEVENT_STEPPED_HYPER:
717 {
718 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\ndbgf event: Single step! (%s)\n", dbgcGetEventCtx(pEvent->enmCtx));
719 if (RT_SUCCESS(rc))
720 {
721 if (pDbgc->fStepTraceRegs)
722 rc = pDbgc->CmdHlp.pfnExec(&pDbgc->CmdHlp, "r");
723 else
724 {
725 char szCmd[80];
726 if (DBGFR3CpuIsIn64BitCode(pDbgc->pUVM, pDbgc->idCpu))
727 rc = DBGFR3RegPrintf(pDbgc->pUVM, pDbgc->idCpu, szCmd, sizeof(szCmd), "u %016VR{rip} L 0");
728 else if (DBGFR3CpuIsInV86Code(pDbgc->pUVM, pDbgc->idCpu))
729 rc = DBGFR3RegPrintf(pDbgc->pUVM, pDbgc->idCpu, szCmd, sizeof(szCmd), "uv86 %04VR{cs}:%08VR{eip} L 0");
730 else
731 rc = DBGFR3RegPrintf(pDbgc->pUVM, pDbgc->idCpu, szCmd, sizeof(szCmd), "u %04VR{cs}:%08VR{eip} L 0");
732 if (RT_SUCCESS(rc))
733 rc = pDbgc->CmdHlp.pfnExec(&pDbgc->CmdHlp, "%s", szCmd);
734 }
735 }
736 break;
737 }
738
739 case DBGFEVENT_ASSERTION_HYPER:
740 {
741 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL,
742 "\ndbgf event: Hypervisor Assertion! (%s)\n"
743 "%s"
744 "%s"
745 "\n",
746 dbgcGetEventCtx(pEvent->enmCtx),
747 pEvent->u.Assert.pszMsg1,
748 pEvent->u.Assert.pszMsg2);
749 if (RT_SUCCESS(rc))
750 rc = pDbgc->CmdHlp.pfnExec(&pDbgc->CmdHlp, "r");
751 break;
752 }
753
754 case DBGFEVENT_DEV_STOP:
755 {
756 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL,
757 "\n"
758 "dbgf event: DBGFSTOP (%s)\n"
759 "File: %s\n"
760 "Line: %d\n"
761 "Function: %s\n",
762 dbgcGetEventCtx(pEvent->enmCtx),
763 pEvent->u.Src.pszFile,
764 pEvent->u.Src.uLine,
765 pEvent->u.Src.pszFunction);
766 if (RT_SUCCESS(rc) && pEvent->u.Src.pszMessage && *pEvent->u.Src.pszMessage)
767 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL,
768 "Message: %s\n",
769 pEvent->u.Src.pszMessage);
770 if (RT_SUCCESS(rc))
771 rc = pDbgc->CmdHlp.pfnExec(&pDbgc->CmdHlp, "r");
772 break;
773 }
774
775
776 case DBGFEVENT_INVALID_COMMAND:
777 {
778 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\ndbgf/dbgc error: Invalid command event!\n");
779 break;
780 }
781
782 case DBGFEVENT_POWERING_OFF:
783 {
784 pDbgc->fReady = false;
785 pDbgc->pBack->pfnSetReady(pDbgc->pBack, false);
786 pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\nVM is powering off!\n");
787 fPrintPrompt = false;
788 rc = VERR_GENERAL_FAILURE;
789 break;
790 }
791
792
793 default:
794 {
795 /*
796 * Probably a generic event. Look it up to find its name.
797 */
798 PCDBGCSXEVT pEvtDesc = dbgcEventLookup(pEvent->enmType);
799 if (pEvtDesc)
800 {
801 if (pEvtDesc->enmKind == kDbgcSxEventKind_Interrupt)
802 {
803 Assert(pEvtDesc->pszDesc);
804 Assert(pEvent->u.Generic.cArgs == 1);
805 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\ndbgf event: %s no %#llx! (%s)\n",
806 pEvtDesc->pszDesc, pEvent->u.Generic.auArgs[0], pEvtDesc->pszName);
807 }
808 else if (pEvtDesc->fFlags & DBGCSXEVT_F_BUGCHECK)
809 {
810 Assert(pEvent->u.Generic.cArgs >= 5);
811 char szDetails[512];
812 DBGFR3FormatBugCheck(pDbgc->pUVM, szDetails, sizeof(szDetails), pEvent->u.Generic.auArgs[0],
813 pEvent->u.Generic.auArgs[1], pEvent->u.Generic.auArgs[2],
814 pEvent->u.Generic.auArgs[3], pEvent->u.Generic.auArgs[4]);
815 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\ndbgf event: %s %s%s!\n%s", pEvtDesc->pszName,
816 pEvtDesc->pszDesc ? "- " : "", pEvtDesc->pszDesc ? pEvtDesc->pszDesc : "",
817 szDetails);
818 }
819 else if ( (pEvtDesc->fFlags & DBGCSXEVT_F_TAKE_ARG)
820 || pEvent->u.Generic.cArgs > 1
821 || ( pEvent->u.Generic.cArgs == 1
822 && pEvent->u.Generic.auArgs[0] != 0))
823 {
824 if (pEvtDesc->pszDesc)
825 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\ndbgf event: %s - %s!",
826 pEvtDesc->pszName, pEvtDesc->pszDesc);
827 else
828 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\ndbgf event: %s!", pEvtDesc->pszName);
829 if (pEvent->u.Generic.cArgs <= 1)
830 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, " arg=%#llx\n", pEvent->u.Generic.auArgs[0]);
831 else
832 {
833 for (uint32_t i = 0; i < pEvent->u.Generic.cArgs; i++)
834 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, " args[%u]=%#llx", i, pEvent->u.Generic.auArgs[i]);
835 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\n");
836 }
837 }
838 else
839 {
840 if (pEvtDesc->pszDesc)
841 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\ndbgf event: %s - %s!\n",
842 pEvtDesc->pszName, pEvtDesc->pszDesc);
843 else
844 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\ndbgf event: %s!\n", pEvtDesc->pszName);
845 }
846 }
847 else
848 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\ndbgf/dbgc error: Unknown event %d!\n", pEvent->enmType);
849 break;
850 }
851 }
852
853 /*
854 * Prompt, anyone?
855 */
856 if (fPrintPrompt && RT_SUCCESS(rc))
857 {
858 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "VBoxDbg> ");
859 pDbgc->fReady = true;
860 if (RT_SUCCESS(rc))
861 pDbgc->pBack->pfnSetReady(pDbgc->pBack, true);
862 }
863
864 return rc;
865}
866
867
868/**
869 * Prints any log lines from the log buffer.
870 *
871 * The caller must not call function this unless pDbgc->fLog is set.
872 *
873 * @returns VBox status code. (output related)
874 * @param pDbgc Debugger console instance data.
875 */
876static int dbgcProcessLog(PDBGC pDbgc)
877{
878 /** @todo */
879 NOREF(pDbgc);
880 return 0;
881}
882
883/** @callback_method_impl{FNRTDBGCFGLOG} */
884static DECLCALLBACK(void) dbgcDbgCfgLogCallback(RTDBGCFG hDbgCfg, uint32_t iLevel, const char *pszMsg, void *pvUser)
885{
886 /** @todo Add symbol noise setting. */
887 NOREF(hDbgCfg); NOREF(iLevel);
888 PDBGC pDbgc = (PDBGC)pvUser;
889 pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "%s", pszMsg);
890}
891
892
893/**
894 * Run the debugger console.
895 *
896 * @returns VBox status code.
897 * @param pDbgc Pointer to the debugger console instance data.
898 */
899int dbgcRun(PDBGC pDbgc)
900{
901 /*
902 * We're ready for commands now.
903 */
904 pDbgc->fReady = true;
905 pDbgc->pBack->pfnSetReady(pDbgc->pBack, true);
906
907 /*
908 * Main Debugger Loop.
909 *
910 * This loop will either block on waiting for input or on waiting on
911 * debug events. If we're forwarding the log we cannot wait for long
912 * before we must flush the log.
913 */
914 int rc;
915 for (;;)
916 {
917 rc = VERR_SEM_OUT_OF_TURN;
918 if (pDbgc->pUVM)
919 rc = DBGFR3QueryWaitable(pDbgc->pUVM);
920
921 if (RT_SUCCESS(rc))
922 {
923 /*
924 * Wait for a debug event.
925 */
926 PCDBGFEVENT pEvent;
927 rc = DBGFR3EventWait(pDbgc->pUVM, pDbgc->fLog ? 1 : 32, &pEvent);
928 if (RT_SUCCESS(rc))
929 {
930 rc = dbgcProcessEvent(pDbgc, pEvent);
931 if (RT_FAILURE(rc))
932 break;
933 }
934 else if (rc != VERR_TIMEOUT)
935 break;
936
937 /*
938 * Check for input.
939 */
940 if (pDbgc->pBack->pfnInput(pDbgc->pBack, 0))
941 {
942 rc = dbgcProcessInput(pDbgc, false /* fNoExecute */);
943 if (RT_FAILURE(rc))
944 break;
945 }
946 }
947 else if (rc == VERR_SEM_OUT_OF_TURN)
948 {
949 /*
950 * Wait for input. If Logging is enabled we'll only wait very briefly.
951 */
952 if (pDbgc->pBack->pfnInput(pDbgc->pBack, pDbgc->fLog ? 1 : 1000))
953 {
954 rc = dbgcProcessInput(pDbgc, false /* fNoExecute */);
955 if (RT_FAILURE(rc))
956 break;
957 }
958 }
959 else
960 break;
961
962 /*
963 * Forward log output.
964 */
965 if (pDbgc->fLog)
966 {
967 rc = dbgcProcessLog(pDbgc);
968 if (RT_FAILURE(rc))
969 break;
970 }
971 }
972
973 return rc;
974}
975
976
977/**
978 * Run the init scripts, if present.
979 *
980 * @param pDbgc The console instance.
981 */
982static void dbgcRunInitScripts(PDBGC pDbgc)
983{
984 /*
985 * Do the global one, if it exists.
986 */
987 if ( pDbgc->pszGlobalInitScript
988 && *pDbgc->pszGlobalInitScript != '\0'
989 && RTFileExists(pDbgc->pszGlobalInitScript))
990 dbgcEvalScript(pDbgc, pDbgc->pszGlobalInitScript, true /*fAnnounce*/);
991
992 /*
993 * Then do the local one, if it exists.
994 */
995 if ( pDbgc->pszLocalInitScript
996 && *pDbgc->pszLocalInitScript != '\0'
997 && RTFileExists(pDbgc->pszLocalInitScript))
998 dbgcEvalScript(pDbgc, pDbgc->pszLocalInitScript, true /*fAnnounce*/);
999}
1000
1001
1002/**
1003 * Reads the CFGM configuration of the DBGC.
1004 *
1005 * Popuplates the PDBGC::pszHistoryFile, PDBGC::pszGlobalInitScript and
1006 * PDBGC::pszLocalInitScript members.
1007 *
1008 * @returns VBox status code.
1009 * @param pDbgc The console instance.
1010 * @param pUVM The user mode VM handle.
1011 */
1012static int dbgcReadConfig(PDBGC pDbgc, PUVM pUVM)
1013{
1014 /*
1015 * Get and validate the configuration node.
1016 */
1017 PCFGMNODE pNode = CFGMR3GetChild(CFGMR3GetRootU(pUVM), "DBGC");
1018 int rc = CFGMR3ValidateConfig(pNode, "/DBGC/",
1019 "Enabled|"
1020 "HistoryFile|"
1021 "LocalInitScript|"
1022 "GlobalInitScript",
1023 "", "DBGC", 0);
1024 AssertRCReturn(rc, rc);
1025
1026 /*
1027 * Query the values.
1028 */
1029 char szHomeDefault[RTPATH_MAX];
1030 rc = RTPathUserHome(szHomeDefault, sizeof(szHomeDefault) - 32);
1031 AssertLogRelRCReturn(rc, rc);
1032 size_t cchHome = strlen(szHomeDefault);
1033
1034 /** @cfgm{/DBGC/HistoryFile, string, ${HOME}/.vboxdbgc-history}
1035 * The command history file of the VBox debugger. */
1036 rc = RTPathAppend(szHomeDefault, sizeof(szHomeDefault), ".vboxdbgc-history");
1037 AssertLogRelRCReturn(rc, rc);
1038
1039 char szPath[RTPATH_MAX];
1040 rc = CFGMR3QueryStringDef(pNode, "HistoryFile", szPath, sizeof(szPath), szHomeDefault);
1041 AssertLogRelRCReturn(rc, rc);
1042
1043 pDbgc->pszHistoryFile = RTStrDup(szPath);
1044 AssertReturn(pDbgc->pszHistoryFile, VERR_NO_STR_MEMORY);
1045
1046 /** @cfgm{/DBGC/GlobalInitFile, string, ${HOME}/.vboxdbgc-init}
1047 * The global init script of the VBox debugger. */
1048 szHomeDefault[cchHome] = '\0';
1049 rc = RTPathAppend(szHomeDefault, sizeof(szHomeDefault), ".vboxdbgc-init");
1050 AssertLogRelRCReturn(rc, rc);
1051
1052 rc = CFGMR3QueryStringDef(pNode, "GlobalInitScript", szPath, sizeof(szPath), szHomeDefault);
1053 AssertLogRelRCReturn(rc, rc);
1054
1055 pDbgc->pszGlobalInitScript = RTStrDup(szPath);
1056 AssertReturn(pDbgc->pszGlobalInitScript, VERR_NO_STR_MEMORY);
1057
1058 /** @cfgm{/DBGC/LocalInitFile, string, none}
1059 * The VM local init script of the VBox debugger. */
1060 rc = CFGMR3QueryString(pNode, "LocalInitScript", szPath, sizeof(szPath));
1061 if (RT_SUCCESS(rc))
1062 {
1063 pDbgc->pszLocalInitScript = RTStrDup(szPath);
1064 AssertReturn(pDbgc->pszLocalInitScript, VERR_NO_STR_MEMORY);
1065 }
1066 else
1067 {
1068 AssertLogRelReturn(rc == VERR_CFGM_VALUE_NOT_FOUND || rc == VERR_CFGM_NO_PARENT, rc);
1069 pDbgc->pszLocalInitScript = NULL;
1070 }
1071
1072 return VINF_SUCCESS;
1073}
1074
1075
1076
1077/**
1078 * Creates a a new instance.
1079 *
1080 * @returns VBox status code.
1081 * @param ppDbgc Where to store the pointer to the instance data.
1082 * @param pBack Pointer to the backend.
1083 * @param fFlags The flags.
1084 */
1085int dbgcCreate(PDBGC *ppDbgc, PDBGCBACK pBack, unsigned fFlags)
1086{
1087 /*
1088 * Validate input.
1089 */
1090 AssertPtrReturn(pBack, VERR_INVALID_POINTER);
1091 AssertMsgReturn(!fFlags, ("%#x", fFlags), VERR_INVALID_PARAMETER);
1092
1093 /*
1094 * Allocate and initialize.
1095 */
1096 PDBGC pDbgc = (PDBGC)RTMemAllocZ(sizeof(*pDbgc));
1097 if (!pDbgc)
1098 return VERR_NO_MEMORY;
1099
1100 dbgcInitCmdHlp(pDbgc);
1101 pDbgc->pBack = pBack;
1102 pDbgc->pVM = NULL;
1103 pDbgc->pUVM = NULL;
1104 pDbgc->idCpu = 0;
1105 pDbgc->hDbgAs = DBGF_AS_GLOBAL;
1106 pDbgc->pszEmulation = "CodeView/WinDbg";
1107 pDbgc->paEmulationCmds = &g_aCmdsCodeView[0];
1108 pDbgc->cEmulationCmds = g_cCmdsCodeView;
1109 pDbgc->paEmulationFuncs = &g_aFuncsCodeView[0];
1110 pDbgc->cEmulationFuncs = g_cFuncsCodeView;
1111 //pDbgc->fLog = false;
1112 pDbgc->fRegTerse = true;
1113 pDbgc->fStepTraceRegs = true;
1114 //pDbgc->cPagingHierarchyDumps = 0;
1115 //pDbgc->DisasmPos = {0};
1116 //pDbgc->SourcePos = {0};
1117 //pDbgc->DumpPos = {0};
1118 pDbgc->pLastPos = &pDbgc->DisasmPos;
1119 //pDbgc->cbDumpElement = 0;
1120 //pDbgc->cVars = 0;
1121 //pDbgc->paVars = NULL;
1122 //pDbgc->pPlugInHead = NULL;
1123 //pDbgc->pFirstBp = NULL;
1124 //pDbgc->abSearch = {0};
1125 //pDbgc->cbSearch = 0;
1126 pDbgc->cbSearchUnit = 1;
1127 pDbgc->cMaxSearchHits = 1;
1128 //pDbgc->SearchAddr = {0};
1129 //pDbgc->cbSearchRange = 0;
1130
1131 //pDbgc->uInputZero = 0;
1132 //pDbgc->iRead = 0;
1133 //pDbgc->iWrite = 0;
1134 //pDbgc->cInputLines = 0;
1135 //pDbgc->fInputOverflow = false;
1136 pDbgc->fReady = true;
1137 pDbgc->pszScratch = &pDbgc->achScratch[0];
1138 //pDbgc->iArg = 0;
1139 //pDbgc->rcOutput = 0;
1140 //pDbgc->rcCmd = 0;
1141
1142 //pDbgc->pszHistoryFile = NULL;
1143 //pDbgc->pszGlobalInitScript = NULL;
1144 //pDbgc->pszLocalInitScript = NULL;
1145
1146 dbgcEvalInit();
1147
1148 *ppDbgc = pDbgc;
1149 return VINF_SUCCESS;
1150}
1151
1152/**
1153 * Destroys a DBGC instance created by dbgcCreate.
1154 *
1155 * @param pDbgc Pointer to the debugger console instance data.
1156 */
1157void dbgcDestroy(PDBGC pDbgc)
1158{
1159 AssertPtr(pDbgc);
1160
1161 /* Disable log hook. */
1162 if (pDbgc->fLog)
1163 {
1164
1165 }
1166
1167 /* Detach from the VM. */
1168 if (pDbgc->pUVM)
1169 DBGFR3Detach(pDbgc->pUVM);
1170
1171 /* Free config strings. */
1172 RTStrFree(pDbgc->pszGlobalInitScript);
1173 pDbgc->pszGlobalInitScript = NULL;
1174 RTStrFree(pDbgc->pszLocalInitScript);
1175 pDbgc->pszLocalInitScript = NULL;
1176 RTStrFree(pDbgc->pszHistoryFile);
1177 pDbgc->pszHistoryFile = NULL;
1178
1179 /* Finally, free the instance memory. */
1180 RTMemFree(pDbgc);
1181}
1182
1183
1184/**
1185 * Make a console instance.
1186 *
1187 * This will not return until either an 'exit' command is issued or a error code
1188 * indicating connection loss is encountered.
1189 *
1190 * @returns VINF_SUCCESS if console termination caused by the 'exit' command.
1191 * @returns The VBox status code causing the console termination.
1192 *
1193 * @param pUVM The user mode VM handle.
1194 * @param pBack Pointer to the backend structure. This must contain
1195 * a full set of function pointers to service the console.
1196 * @param fFlags Reserved, must be zero.
1197 * @remarks A forced termination of the console is easiest done by forcing the
1198 * callbacks to return fatal failures.
1199 */
1200DBGDECL(int) DBGCCreate(PUVM pUVM, PDBGCBACK pBack, unsigned fFlags)
1201{
1202 /*
1203 * Validate input.
1204 */
1205 AssertPtrNullReturn(pUVM, VERR_INVALID_VM_HANDLE);
1206 PVM pVM = NULL;
1207 if (pUVM)
1208 {
1209 pVM = VMR3GetVM(pUVM);
1210 AssertPtrReturn(pVM, VERR_INVALID_VM_HANDLE);
1211 }
1212
1213 /*
1214 * Allocate and initialize instance data
1215 */
1216 PDBGC pDbgc;
1217 int rc = dbgcCreate(&pDbgc, pBack, fFlags);
1218 if (RT_FAILURE(rc))
1219 return rc;
1220 if (!HMR3IsEnabled(pUVM) && !NEMR3IsEnabled(pUVM))
1221 pDbgc->hDbgAs = DBGF_AS_RC_AND_GC_GLOBAL;
1222
1223 /*
1224 * Print welcome message.
1225 */
1226 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL,
1227 "Welcome to the VirtualBox Debugger!\n");
1228
1229 /*
1230 * Attach to the specified VM.
1231 */
1232 if (RT_SUCCESS(rc) && pUVM)
1233 {
1234 rc = dbgcReadConfig(pDbgc, pUVM);
1235 if (RT_SUCCESS(rc))
1236 {
1237 rc = DBGFR3Attach(pUVM);
1238 if (RT_SUCCESS(rc))
1239 {
1240 pDbgc->pVM = pVM;
1241 pDbgc->pUVM = pUVM;
1242 pDbgc->idCpu = 0;
1243 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL,
1244 "Current VM is %08x, CPU #%u\n" /** @todo get and print the VM name! */
1245 , pDbgc->pVM, pDbgc->idCpu);
1246 }
1247 else
1248 rc = pDbgc->CmdHlp.pfnVBoxError(&pDbgc->CmdHlp, rc, "When trying to attach to VM %p\n", pDbgc->pVM);
1249 }
1250 else
1251 rc = pDbgc->CmdHlp.pfnVBoxError(&pDbgc->CmdHlp, rc, "Error reading configuration\n");
1252 }
1253
1254 /*
1255 * Load plugins.
1256 */
1257 if (RT_SUCCESS(rc))
1258 {
1259 if (pVM)
1260 DBGFR3PlugInLoadAll(pDbgc->pUVM);
1261 dbgcEventInit(pDbgc);
1262 dbgcRunInitScripts(pDbgc);
1263
1264 rc = pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "VBoxDbg> ");
1265 if (RT_SUCCESS(rc))
1266 {
1267 /*
1268 * Set debug config log callback.
1269 */
1270 RTDBGCFG hDbgCfg = DBGFR3AsGetConfig(pUVM);
1271 if ( hDbgCfg != NIL_RTDBGCFG
1272 && RTDbgCfgRetain(hDbgCfg) != UINT32_MAX)
1273 {
1274 int rc2 = RTDbgCfgSetLogCallback(hDbgCfg, dbgcDbgCfgLogCallback, pDbgc);
1275 if (RT_FAILURE(rc2))
1276 {
1277 hDbgCfg = NIL_RTDBGCFG;
1278 RTDbgCfgRelease(hDbgCfg);
1279 }
1280 }
1281 else
1282 hDbgCfg = NIL_RTDBGCFG;
1283
1284
1285 /*
1286 * Run the debugger main loop.
1287 */
1288 rc = dbgcRun(pDbgc);
1289
1290
1291 /*
1292 * Remove debug config log callback.
1293 */
1294 if (hDbgCfg != NIL_RTDBGCFG)
1295 {
1296 RTDbgCfgSetLogCallback(hDbgCfg, NULL, NULL);
1297 RTDbgCfgRelease(hDbgCfg);
1298 }
1299 }
1300 dbgcEventTerm(pDbgc);
1301 }
1302 else
1303 pDbgc->CmdHlp.pfnPrintf(&pDbgc->CmdHlp, NULL, "\nDBGCCreate error: %Rrc\n", rc);
1304
1305
1306 /*
1307 * Cleanup console debugger session.
1308 */
1309 dbgcDestroy(pDbgc);
1310 return rc == VERR_DBGC_QUIT ? VINF_SUCCESS : rc;
1311}
1312
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use