VirtualBox

source: vbox/trunk/src/VBox/VMM/DBGF.cpp@ 13782

Last change on this file since 13782 was 13782, checked in by vboxsync, 16 years ago

More SMP groundwork.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 30.1 KB
Line 
1/* $Id: DBGF.cpp 13782 2008-11-04 12:16:30Z vboxsync $ */
2/** @file
3 * DBGF - Debugger Facility.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22
23/** @page pg_dbgf DBGF - The Debugger Facility
24 *
25 * The purpose of the DBGF is to provide an interface for debuggers to
26 * manipulate the VMM without having to mess up the source code for each of
27 * them. The DBGF is always built in and will always work when a debugger
28 * attaches to the VM. The DBGF provides the basic debugger features, such as
29 * halting execution, handling breakpoints, single step execution, instruction
30 * disassembly, info querying, OS specific diggers, symbol and module
31 * management.
32 *
33 * The interface is working in a manner similar to the win32, linux and os2
34 * debugger interfaces. It interface has an asynchronous nature. This comes from
35 * the fact that the VMM and the Debugger are running in different threads. They
36 * are refered to as the "emulation thread" and the "debugger thread", or as the
37 * "ping thread" and the "pong thread, respectivly. (The last set of names comes
38 * from the use of the Ping-Pong synchronization construct from the RTSem API.)
39 *
40 * @see grp_dbgf
41 *
42 *
43 * @section sec_dbgf_scenario Usage Scenario
44 *
45 * The debugger starts by attaching to the VM. For pratical reasons we limit the
46 * number of concurrently attached debuggers to 1 per VM. The action of
47 * attaching to the VM causes the VM to check and generate debug events.
48 *
49 * The debugger then will wait/poll for debug events and issue commands.
50 *
51 * The waiting and polling is done by the DBGFEventWait() function. It will wait
52 * for the emulation thread to send a ping, thus indicating that there is an
53 * event waiting to be processed.
54 *
55 * An event can be a respons to an command issued previously, the hitting of a
56 * breakpoint, or running into a bad/fatal VMM condition. The debugger now have
57 * the ping and must respond to the event at hand - the VMM is waiting. This
58 * usually means that the user of the debugger must do something, but it doesn't
59 * have to. The debugger is free to call any DBGF function (nearly at least)
60 * while processing the event.
61 *
62 * Typically the user will issue a request for the execution to be resumed, so
63 * the debugger calls DBGFResume() and goes back to waiting/polling for events.
64 *
65 * When the user eventually terminates the debugging session or selects another
66 * VM, the debugger detaches from the VM. This means that breakpoints are
67 * disabled and that the emulation thread no longer polls for debugger commands.
68 *
69 */
70
71
72/*******************************************************************************
73* Header Files *
74*******************************************************************************/
75#define LOG_GROUP LOG_GROUP_DBGF
76#include <VBox/dbgf.h>
77#include <VBox/selm.h>
78#include <VBox/rem.h>
79#include <VBox/em.h>
80#include "DBGFInternal.h"
81#include <VBox/vm.h>
82#include <VBox/err.h>
83
84#include <VBox/log.h>
85#include <iprt/semaphore.h>
86#include <iprt/thread.h>
87#include <iprt/asm.h>
88#include <iprt/time.h>
89#include <iprt/assert.h>
90#include <iprt/stream.h>
91
92
93/*******************************************************************************
94* Internal Functions *
95*******************************************************************************/
96static int dbgfR3VMMWait(PVM pVM);
97static int dbgfR3VMMCmd(PVM pVM, DBGFCMD enmCmd, PDBGFCMDDATA pCmdData, bool *pfResumeExecution);
98static DECLCALLBACK(int) dbgfR3Attach(PVM pVM);
99
100
101/**
102 * Sets the VMM Debug Command variable.
103 *
104 * @returns Previous command.
105 * @param pVM VM Handle.
106 * @param enmCmd The command.
107 */
108DECLINLINE(DBGFCMD) dbgfR3SetCmd(PVM pVM, DBGFCMD enmCmd)
109{
110 DBGFCMD rc;
111 if (enmCmd == DBGFCMD_NO_COMMAND)
112 {
113 Log2(("DBGF: Setting command to %d (DBGFCMD_NO_COMMAND)\n", enmCmd));
114 rc = (DBGFCMD)ASMAtomicXchgU32((uint32_t volatile *)(void *)&pVM->dbgf.s.enmVMMCmd, enmCmd);
115 VM_FF_CLEAR(pVM, VM_FF_DBGF);
116 }
117 else
118 {
119 Log2(("DBGF: Setting command to %d\n", enmCmd));
120 AssertMsg(pVM->dbgf.s.enmVMMCmd == DBGFCMD_NO_COMMAND, ("enmCmd=%d enmVMMCmd=%d\n", enmCmd, pVM->dbgf.s.enmVMMCmd));
121 rc = (DBGFCMD)ASMAtomicXchgU32((uint32_t volatile *)(void *)&pVM->dbgf.s.enmVMMCmd, enmCmd);
122 VM_FF_SET(pVM, VM_FF_DBGF);
123 VMR3NotifyFF(pVM, false /* didn't notify REM */);
124 }
125 return rc;
126}
127
128
129/**
130 * Initializes the DBGF.
131 *
132 * @returns VBox status code.
133 * @param pVM VM handle.
134 */
135VMMR3DECL(int) DBGFR3Init(PVM pVM)
136{
137 int rc = dbgfR3InfoInit(pVM);
138 if (VBOX_SUCCESS(rc))
139 rc = dbgfR3SymInit(pVM);
140 if (VBOX_SUCCESS(rc))
141 rc = dbgfR3BpInit(pVM);
142 return rc;
143}
144
145
146/**
147 * Termiantes and cleans up resources allocated by the DBGF.
148 *
149 * @returns VBox status code.
150 * @param pVM VM Handle.
151 */
152VMMR3DECL(int) DBGFR3Term(PVM pVM)
153{
154 int rc;
155
156 /*
157 * Send a termination event to any attached debugger.
158 */
159 /* wait to become the speaker (we should already be that). */
160 if ( pVM->dbgf.s.fAttached
161 && RTSemPingShouldWait(&pVM->dbgf.s.PingPong))
162 RTSemPingWait(&pVM->dbgf.s.PingPong, 5000);
163
164 /* now, send the event if we're the speaker. */
165 if ( pVM->dbgf.s.fAttached
166 && RTSemPingIsSpeaker(&pVM->dbgf.s.PingPong))
167 {
168 DBGFCMD enmCmd = dbgfR3SetCmd(pVM, DBGFCMD_NO_COMMAND);
169 if (enmCmd == DBGFCMD_DETACH_DEBUGGER)
170 /* the debugger beat us to initiating the detaching. */
171 rc = VINF_SUCCESS;
172 else
173 {
174 /* ignore the command (if any). */
175 enmCmd = DBGFCMD_NO_COMMAND;
176 pVM->dbgf.s.DbgEvent.enmType = DBGFEVENT_TERMINATING;
177 pVM->dbgf.s.DbgEvent.enmCtx = DBGFEVENTCTX_OTHER;
178 rc = RTSemPing(&pVM->dbgf.s.PingPong);
179 }
180
181 /*
182 * Process commands until we get a detached command.
183 */
184 while (RT_SUCCESS(rc) && enmCmd != DBGFCMD_DETACHED_DEBUGGER)
185 {
186 if (enmCmd != DBGFCMD_NO_COMMAND)
187 {
188 /* process command */
189 bool fResumeExecution;
190 DBGFCMDDATA CmdData = pVM->dbgf.s.VMMCmdData;
191 rc = dbgfR3VMMCmd(pVM, enmCmd, &CmdData, &fResumeExecution);
192 enmCmd = DBGFCMD_NO_COMMAND;
193 }
194 else
195 {
196 /* wait for new command. */
197 rc = RTSemPingWait(&pVM->dbgf.s.PingPong, RT_INDEFINITE_WAIT);
198 if (RT_SUCCESS(rc))
199 enmCmd = dbgfR3SetCmd(pVM, DBGFCMD_NO_COMMAND);
200 }
201 }
202 }
203
204 /*
205 * Terminate the other bits.
206 */
207 dbgfR3OSTerm(pVM);
208 dbgfR3InfoTerm(pVM);
209 return VINF_SUCCESS;
210}
211
212
213/**
214 * Applies relocations to data and code managed by this
215 * component. This function will be called at init and
216 * whenever the VMM need to relocate it self inside the GC.
217 *
218 * @param pVM VM handle.
219 * @param offDelta Relocation delta relative to old location.
220 */
221VMMR3DECL(void) DBGFR3Relocate(PVM pVM, RTGCINTPTR offDelta)
222{
223}
224
225
226/**
227 * Waits a little while for a debuggger to attach.
228 *
229 * @returns True is a debugger have attached.
230 * @param pVM VM handle.
231 * @param enmEvent Event.
232 */
233bool dbgfR3WaitForAttach(PVM pVM, DBGFEVENTTYPE enmEvent)
234{
235 /*
236 * First a message.
237 */
238#ifndef RT_OS_L4
239
240# if !defined(DEBUG) || defined(DEBUG_sandervl) || defined(DEBUG_frank)
241 int cWait = 10;
242# else
243 int cWait = 150;
244# endif
245 RTStrmPrintf(g_pStdErr, "DBGF: No debugger attached, waiting %d second%s for one to attach (event=%d)\n",
246 cWait / 10, cWait != 10 ? "s" : "", enmEvent);
247 RTStrmFlush(g_pStdErr);
248 while (cWait > 0)
249 {
250 RTThreadSleep(100);
251 if (pVM->dbgf.s.fAttached)
252 {
253 RTStrmPrintf(g_pStdErr, "Attached!\n");
254 RTStrmFlush(g_pStdErr);
255 return true;
256 }
257
258 /* next */
259 if (!(cWait % 10))
260 {
261 RTStrmPrintf(g_pStdErr, "%d.", cWait / 10);
262 RTStrmFlush(g_pStdErr);
263 }
264 cWait--;
265 }
266#endif
267
268 RTStrmPrintf(g_pStdErr, "Stopping the VM!\n");
269 RTStrmFlush(g_pStdErr);
270 return false;
271}
272
273
274/**
275 * Forced action callback.
276 * The VMM will call this from it's main loop when VM_FF_DBGF is set.
277 *
278 * The function checks and executes pending commands from the debugger.
279 *
280 * @returns VINF_SUCCESS normally.
281 * @returns VERR_DBGF_RAISE_FATAL_ERROR to pretend a fatal error happend.
282 * @param pVM VM Handle.
283 */
284VMMR3DECL(int) DBGFR3VMMForcedAction(PVM pVM)
285{
286 /*
287 * Clear the FF DBGF request flag.
288 */
289 Assert(pVM->fForcedActions & VM_FF_DBGF);
290 VM_FF_CLEAR(pVM, VM_FF_DBGF);
291
292 /*
293 * Commands?
294 */
295 int rc = VINF_SUCCESS;
296 if (pVM->dbgf.s.enmVMMCmd != DBGFCMD_NO_COMMAND)
297 {
298 /** @todo stupid GDT/LDT sync hack. go away! */
299 SELMR3UpdateFromCPUM(pVM);
300
301 /*
302 * Process the command.
303 */
304 bool fResumeExecution;
305 DBGFCMDDATA CmdData = pVM->dbgf.s.VMMCmdData;
306 DBGFCMD enmCmd = dbgfR3SetCmd(pVM, DBGFCMD_NO_COMMAND);
307 rc = dbgfR3VMMCmd(pVM, enmCmd, &CmdData, &fResumeExecution);
308 if (!fResumeExecution)
309 rc = dbgfR3VMMWait(pVM);
310 }
311 return rc;
312}
313
314
315/**
316 * Flag whether the event implies that we're stopped in the hypervisor code
317 * and have to block certain operations.
318 *
319 * @param pVM The VM handle.
320 * @param enmEvent The event.
321 */
322static void dbgfR3EventSetStoppedInHyperFlag(PVM pVM, DBGFEVENTTYPE enmEvent)
323{
324 switch (enmEvent)
325 {
326 case DBGFEVENT_STEPPED_HYPER:
327 case DBGFEVENT_ASSERTION_HYPER:
328 case DBGFEVENT_BREAKPOINT_HYPER:
329 pVM->dbgf.s.fStoppedInHyper = true;
330 break;
331 default:
332 pVM->dbgf.s.fStoppedInHyper = false;
333 break;
334 }
335}
336
337
338/**
339 * Try determin the event context.
340 *
341 * @returns debug event context.
342 * @param pVM The VM handle.
343 */
344static DBGFEVENTCTX dbgfR3FigureEventCtx(PVM pVM)
345{
346 switch (EMGetState(pVM))
347 {
348 case EMSTATE_RAW:
349 case EMSTATE_DEBUG_GUEST_RAW:
350 return DBGFEVENTCTX_RAW;
351
352 case EMSTATE_REM:
353 case EMSTATE_DEBUG_GUEST_REM:
354 return DBGFEVENTCTX_REM;
355
356 case EMSTATE_DEBUG_HYPER:
357 case EMSTATE_GURU_MEDITATION:
358 return DBGFEVENTCTX_HYPER;
359
360 default:
361 return DBGFEVENTCTX_OTHER;
362 }
363}
364
365/**
366 * The common event prologue code.
367 * It will set the 'stopped-in-hyper' flag, make sure someone's attach,
368 * and perhaps process any high priority pending actions (none yet).
369 *
370 * @returns VBox status.
371 * @param pVM The VM handle.
372 * @param enmEvent The event to be sent.
373 */
374static int dbgfR3EventPrologue(PVM pVM, DBGFEVENTTYPE enmEvent)
375{
376 /*
377 * Check if a debugger is attached.
378 */
379 if ( !pVM->dbgf.s.fAttached
380 && !dbgfR3WaitForAttach(pVM, enmEvent))
381 {
382 Log(("DBGFR3VMMEventSrc: enmEvent=%d - debugger not attached\n", enmEvent));
383 return VERR_DBGF_NOT_ATTACHED;
384 }
385
386 /*
387 * Sync back the state from the REM.
388 */
389 dbgfR3EventSetStoppedInHyperFlag(pVM, enmEvent);
390 if (!pVM->dbgf.s.fStoppedInHyper)
391 REMR3StateUpdate(pVM);
392
393 /*
394 * Look thru pending commands and finish those which make sense now.
395 */
396 /** @todo Process/purge pending commands. */
397 //int rc = DBGFR3VMMForcedAction(pVM);
398 return VINF_SUCCESS;
399}
400
401
402/**
403 * Sends the event in the event buffer.
404 *
405 * @returns VBox status code.
406 * @param pVM The VM handle.
407 */
408static int dbgfR3SendEvent(PVM pVM)
409{
410 int rc = RTSemPing(&pVM->dbgf.s.PingPong);
411 if (VBOX_SUCCESS(rc))
412 rc = dbgfR3VMMWait(pVM);
413
414 pVM->dbgf.s.fStoppedInHyper = false;
415 /** @todo sync VMM -> REM after exitting the debugger. everything may change while in the debugger! */
416 return rc;
417}
418
419
420/**
421 * Send a generic debugger event which takes no data.
422 *
423 * @returns VBox status.
424 * @param pVM The VM handle.
425 * @param enmEvent The event to send.
426 */
427VMMR3DECL(int) DBGFR3Event(PVM pVM, DBGFEVENTTYPE enmEvent)
428{
429 int rc = dbgfR3EventPrologue(pVM, enmEvent);
430 if (VBOX_FAILURE(rc))
431 return rc;
432
433 /*
434 * Send the event and process the reply communication.
435 */
436 pVM->dbgf.s.DbgEvent.enmType = enmEvent;
437 pVM->dbgf.s.DbgEvent.enmCtx = dbgfR3FigureEventCtx(pVM);
438 return dbgfR3SendEvent(pVM);
439}
440
441
442/**
443 * Send a debugger event which takes the full source file location.
444 *
445 * @returns VBox status.
446 * @param pVM The VM handle.
447 * @param enmEvent The event to send.
448 * @param pszFile Source file.
449 * @param uLine Line number in source file.
450 * @param pszFunction Function name.
451 * @param pszFormat Message which accompanies the event.
452 * @param ... Message arguments.
453 */
454VMMR3DECL(int) DBGFR3EventSrc(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszFile, unsigned uLine, const char *pszFunction, const char *pszFormat, ...)
455{
456 va_list args;
457 va_start(args, pszFormat);
458 int rc = DBGFR3EventSrcV(pVM, enmEvent, pszFile, uLine, pszFunction, pszFormat, args);
459 va_end(args);
460 return rc;
461}
462
463
464/**
465 * Send a debugger event which takes the full source file location.
466 *
467 * @returns VBox status.
468 * @param pVM The VM handle.
469 * @param enmEvent The event to send.
470 * @param pszFile Source file.
471 * @param uLine Line number in source file.
472 * @param pszFunction Function name.
473 * @param pszFormat Message which accompanies the event.
474 * @param args Message arguments.
475 */
476VMMR3DECL(int) DBGFR3EventSrcV(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszFile, unsigned uLine, const char *pszFunction, const char *pszFormat, va_list args)
477{
478 int rc = dbgfR3EventPrologue(pVM, enmEvent);
479 if (VBOX_FAILURE(rc))
480 return rc;
481
482 /*
483 * Format the message.
484 */
485 char *pszMessage = NULL;
486 char szMessage[8192];
487 if (pszFormat && *pszFormat)
488 {
489 pszMessage = &szMessage[0];
490 RTStrPrintfV(szMessage, sizeof(szMessage), pszFormat, args);
491 }
492
493 /*
494 * Send the event and process the reply communication.
495 */
496 pVM->dbgf.s.DbgEvent.enmType = enmEvent;
497 pVM->dbgf.s.DbgEvent.enmCtx = dbgfR3FigureEventCtx(pVM);
498 pVM->dbgf.s.DbgEvent.u.Src.pszFile = pszFile;
499 pVM->dbgf.s.DbgEvent.u.Src.uLine = uLine;
500 pVM->dbgf.s.DbgEvent.u.Src.pszFunction = pszFunction;
501 pVM->dbgf.s.DbgEvent.u.Src.pszMessage = pszMessage;
502 return dbgfR3SendEvent(pVM);
503}
504
505
506/**
507 * Send a debugger event which takes the two assertion messages.
508 *
509 * @returns VBox status.
510 * @param pVM The VM handle.
511 * @param enmEvent The event to send.
512 * @param pszMsg1 First assertion message.
513 * @param pszMsg2 Second assertion message.
514 */
515VMMR3DECL(int) DBGFR3EventAssertion(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszMsg1, const char *pszMsg2)
516{
517 int rc = dbgfR3EventPrologue(pVM, enmEvent);
518 if (VBOX_FAILURE(rc))
519 return rc;
520
521 /*
522 * Send the event and process the reply communication.
523 */
524 pVM->dbgf.s.DbgEvent.enmType = enmEvent;
525 pVM->dbgf.s.DbgEvent.enmCtx = dbgfR3FigureEventCtx(pVM);
526 pVM->dbgf.s.DbgEvent.u.Assert.pszMsg1 = pszMsg1;
527 pVM->dbgf.s.DbgEvent.u.Assert.pszMsg2 = pszMsg2;
528 return dbgfR3SendEvent(pVM);
529}
530
531
532/**
533 * Breakpoint was hit somewhere.
534 * Figure out which breakpoint it is and notify the debugger.
535 *
536 * @returns VBox status.
537 * @param pVM The VM handle.
538 * @param enmEvent DBGFEVENT_BREAKPOINT_HYPER or DBGFEVENT_BREAKPOINT.
539 */
540VMMR3DECL(int) DBGFR3EventBreakpoint(PVM pVM, DBGFEVENTTYPE enmEvent)
541{
542 int rc = dbgfR3EventPrologue(pVM, enmEvent);
543 if (VBOX_FAILURE(rc))
544 return rc;
545
546 /*
547 * Send the event and process the reply communication.
548 */
549 pVM->dbgf.s.DbgEvent.enmType = enmEvent;
550 RTUINT iBp = pVM->dbgf.s.DbgEvent.u.Bp.iBp = pVM->dbgf.s.iActiveBp;
551 pVM->dbgf.s.iActiveBp = ~0U;
552 if (iBp != ~0U)
553 pVM->dbgf.s.DbgEvent.enmCtx = DBGFEVENTCTX_RAW;
554 else
555 {
556 /* REM breakpoints has be been searched for. */
557#if 0 /** @todo get flat PC api! */
558 uint32_t eip = CPUMGetGuestEIP(pVM);
559#else
560 PCPUMCTX pCtx = CPUMQueryGuestCtxPtr(pVM);
561 RTGCPTR eip = pCtx->rip + pCtx->csHid.u64Base;
562#endif
563 for (iBp = 0; iBp < RT_ELEMENTS(pVM->dbgf.s.aBreakpoints); iBp++)
564 if ( pVM->dbgf.s.aBreakpoints[iBp].enmType == DBGFBPTYPE_REM
565 && pVM->dbgf.s.aBreakpoints[iBp].GCPtr == eip)
566 {
567 pVM->dbgf.s.DbgEvent.u.Bp.iBp = iBp;
568 break;
569 }
570 AssertMsg(pVM->dbgf.s.DbgEvent.u.Bp.iBp != ~0U, ("eip=%08x\n", eip));
571 pVM->dbgf.s.DbgEvent.enmCtx = DBGFEVENTCTX_REM;
572 }
573 return dbgfR3SendEvent(pVM);
574}
575
576
577/**
578 * Waits for the debugger to respond.
579 *
580 * @returns VBox status. (clearify)
581 * @param pVM VM handle.
582 */
583static int dbgfR3VMMWait(PVM pVM)
584{
585 LogFlow(("dbgfR3VMMWait:\n"));
586
587 /** @todo stupid GDT/LDT sync hack. go away! */
588 SELMR3UpdateFromCPUM(pVM);
589 int rcRet = VINF_SUCCESS;
590
591 /*
592 * Waits for the debugger to reply (i.e. issue an command).
593 */
594 for (;;)
595 {
596 /*
597 * Wait.
598 */
599 for (;;)
600 {
601 int rc = RTSemPingWait(&pVM->dbgf.s.PingPong, 250);
602 if (VBOX_SUCCESS(rc))
603 break;
604 if (rc != VERR_TIMEOUT)
605 {
606 LogFlow(("dbgfR3VMMWait: returns %Vrc\n", rc));
607 return rc;
608 }
609
610 if (VM_FF_ISSET(pVM, VM_FF_REQUEST))
611 {
612 LogFlow(("dbgfR3VMMWait: Processes requests...\n"));
613 rc = VMR3ReqProcessU(pVM->pUVM, VMREQDEST_ANY);
614 LogFlow(("dbgfR3VMMWait: VMR3ReqProcess -> %Vrc rcRet=%Vrc\n", rc, rcRet));
615 if (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST)
616 {
617 switch (rc)
618 {
619 case VINF_EM_DBG_BREAKPOINT:
620 case VINF_EM_DBG_STEPPED:
621 case VINF_EM_DBG_STEP:
622 case VINF_EM_DBG_STOP:
623 AssertMsgFailed(("rc=%Vrc\n", rc));
624 break;
625
626 /* return straight away */
627 case VINF_EM_TERMINATE:
628 case VINF_EM_OFF:
629 LogFlow(("dbgfR3VMMWait: returns %Vrc\n", rc));
630 return rc;
631
632 /* remember return code. */
633 default:
634 AssertReleaseMsgFailed(("rc=%Vrc is not in the switch!\n", rc));
635 case VINF_EM_RESET:
636 case VINF_EM_SUSPEND:
637 case VINF_EM_HALT:
638 case VINF_EM_RESUME:
639 case VINF_EM_RESCHEDULE:
640 case VINF_EM_RESCHEDULE_REM:
641 case VINF_EM_RESCHEDULE_RAW:
642 if (rc < rcRet || rcRet == VINF_SUCCESS)
643 rcRet = rc;
644 break;
645 }
646 }
647 else if (VBOX_FAILURE(rc))
648 {
649 LogFlow(("dbgfR3VMMWait: returns %Vrc\n", rc));
650 return rc;
651 }
652 }
653 }
654
655 /*
656 * Process the command.
657 */
658 bool fResumeExecution;
659 DBGFCMDDATA CmdData = pVM->dbgf.s.VMMCmdData;
660 DBGFCMD enmCmd = dbgfR3SetCmd(pVM, DBGFCMD_NO_COMMAND);
661 int rc = dbgfR3VMMCmd(pVM, enmCmd, &CmdData, &fResumeExecution);
662 if (fResumeExecution)
663 {
664 if (VBOX_FAILURE(rc))
665 rcRet = rc;
666 else if ( rc >= VINF_EM_FIRST
667 && rc <= VINF_EM_LAST
668 && (rc < rcRet || rcRet == VINF_SUCCESS))
669 rcRet = rc;
670 LogFlow(("dbgfR3VMMWait: returns %Vrc\n", rcRet));
671 return rcRet;
672 }
673 }
674}
675
676
677/**
678 * Executes command from debugger.
679 * The caller is responsible for waiting or resuming execution based on the
680 * value returned in the *pfResumeExecution indicator.
681 *
682 * @returns VBox status. (clearify!)
683 * @param pVM VM Handle.
684 * @param enmCmd The command in question.
685 * @param pCmdData Pointer to the command data.
686 * @param pfResumeExecution Where to store the resume execution / continue waiting indicator.
687 */
688static int dbgfR3VMMCmd(PVM pVM, DBGFCMD enmCmd, PDBGFCMDDATA pCmdData, bool *pfResumeExecution)
689{
690 bool fSendEvent;
691 bool fResume;
692 int rc = VINF_SUCCESS;
693
694 switch (enmCmd)
695 {
696 /*
697 * Halt is answered by an event say that we've halted.
698 */
699 case DBGFCMD_HALT:
700 {
701 pVM->dbgf.s.DbgEvent.enmType = DBGFEVENT_HALT_DONE;
702 pVM->dbgf.s.DbgEvent.enmCtx = dbgfR3FigureEventCtx(pVM);
703 fSendEvent = true;
704 fResume = false;
705 break;
706 }
707
708
709 /*
710 * Resume is not answered we'll just resume execution.
711 */
712 case DBGFCMD_GO:
713 {
714 fSendEvent = false;
715 fResume = true;
716 break;
717 }
718
719 /** @todo implement (and define) the rest of the commands. */
720
721 /*
722 * Disable breakpoints and stuff.
723 * Send an everythings cool event to the debugger thread and resume execution.
724 */
725 case DBGFCMD_DETACH_DEBUGGER:
726 {
727 ASMAtomicWriteBool(&pVM->dbgf.s.fAttached, false);
728 pVM->dbgf.s.DbgEvent.enmType = DBGFEVENT_DETACH_DONE;
729 pVM->dbgf.s.DbgEvent.enmCtx = DBGFEVENTCTX_OTHER;
730 fSendEvent = true;
731 fResume = true;
732 break;
733 }
734
735 /*
736 * The debugger has detached successfully.
737 * There is no reply to this event.
738 */
739 case DBGFCMD_DETACHED_DEBUGGER:
740 {
741 fSendEvent = false;
742 fResume = true;
743 break;
744 }
745
746 /*
747 * Single step, with trace into.
748 */
749 case DBGFCMD_SINGLE_STEP:
750 {
751 Log2(("Single step\n"));
752 rc = VINF_EM_DBG_STEP;
753 pVM->dbgf.s.fSingleSteppingRaw = true;
754 fSendEvent = false;
755 fResume = true;
756 break;
757 }
758
759 /*
760 * Default is to send an invalid command event.
761 */
762 default:
763 {
764 pVM->dbgf.s.DbgEvent.enmType = DBGFEVENT_INVALID_COMMAND;
765 pVM->dbgf.s.DbgEvent.enmCtx = dbgfR3FigureEventCtx(pVM);
766 fSendEvent = true;
767 fResume = false;
768 break;
769 }
770 }
771
772 /*
773 * Send pending event.
774 */
775 if (fSendEvent)
776 {
777 Log2(("DBGF: Emulation thread: sending event %d\n", pVM->dbgf.s.DbgEvent.enmType));
778 int rc2 = RTSemPing(&pVM->dbgf.s.PingPong);
779 if (VBOX_FAILURE(rc2))
780 {
781 AssertRC(rc2);
782 *pfResumeExecution = true;
783 return rc2;
784 }
785 }
786
787 /*
788 * Return.
789 */
790 *pfResumeExecution = fResume;
791 return rc;
792}
793
794
795/**
796 * Attaches a debugger to the specified VM.
797 *
798 * Only one debugger at a time.
799 *
800 * @returns VBox status code.
801 * @param pVM VM Handle.
802 */
803VMMR3DECL(int) DBGFR3Attach(PVM pVM)
804{
805 /*
806 * Some validations first.
807 */
808 if (!VALID_PTR(pVM))
809 {
810 Log(("DBGFR3Attach: bad VM handle: %p\n", pVM));
811 return VERR_INVALID_HANDLE;
812 }
813 VMSTATE enmVMState = pVM->enmVMState;
814 if ( enmVMState >= VMSTATE_DESTROYING
815 || enmVMState < VMSTATE_CREATING)
816 {
817 Log(("DBGFR3Attach: Invalid VM state: %s\n", VMGetStateName(enmVMState)));
818 return VERR_INVALID_HANDLE;
819 }
820
821 /*
822 * Call the VM, use EMT for serialization.
823 */
824 PVMREQ pReq;
825 int rc = VMR3ReqCall(pVM, VMREQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3Attach, 1, pVM);
826 if (RT_SUCCESS(rc))
827 rc = pReq->iStatus;
828 VMR3ReqFree(pReq);
829
830 return rc;
831}
832
833
834/**
835 * EMT worker for DBGFR3Attach.
836 *
837 * @returns VBox status code.
838 * @param pVM Pointer to the shared VM structure.
839 */
840static DECLCALLBACK(int) dbgfR3Attach(PVM pVM)
841{
842 if (pVM->dbgf.s.fAttached)
843 {
844 Log(("dbgR3Attach: Debugger already attached\n"));
845 return VERR_DBGF_ALREADY_ATTACHED;
846 }
847
848 /*
849 * Create the Ping-Pong structure.
850 */
851 int rc = RTSemPingPongInit(&pVM->dbgf.s.PingPong);
852 AssertRCReturn(rc, rc);
853
854 /*
855 * Set the attached flag.
856 */
857 ASMAtomicWriteBool(&pVM->dbgf.s.fAttached, true);
858 return VINF_SUCCESS;
859}
860
861
862/**
863 * Detaches a debugger from the specified VM.
864 *
865 * Caller must be attached to the VM.
866 *
867 * @returns VBox status code.
868 * @param pVM VM Handle.
869 */
870VMMR3DECL(int) DBGFR3Detach(PVM pVM)
871{
872 LogFlow(("DBGFR3Detach:\n"));
873 int rc;
874
875 /*
876 * Check if attached.
877 */
878 AssertReturn(pVM->dbgf.s.fAttached, VERR_DBGF_NOT_ATTACHED);
879
880 /*
881 * Try send the detach command.
882 * Keep in mind that we might be racing EMT, so, be extra careful.
883 */
884 DBGFCMD enmCmd = dbgfR3SetCmd(pVM, DBGFCMD_DETACH_DEBUGGER);
885 if (RTSemPongIsSpeaker(&pVM->dbgf.s.PingPong))
886 {
887 rc = RTSemPong(&pVM->dbgf.s.PingPong);
888 AssertMsgRCReturn(rc, ("Failed to signal emulation thread. rc=%Rrc\n", rc), rc);
889 LogRel(("DBGFR3Detach: enmCmd=%d (pong -> ping)\n", enmCmd));
890 }
891
892 /*
893 * Wait for the OK event.
894 */
895 rc = RTSemPongWait(&pVM->dbgf.s.PingPong, RT_INDEFINITE_WAIT);
896 AssertLogRelMsgRCReturn(rc, ("Wait on detach command failed, rc=%Rrc\n", rc), rc);
897
898 /*
899 * Send the notification command indicating that we're really done.
900 */
901 enmCmd = dbgfR3SetCmd(pVM, DBGFCMD_DETACHED_DEBUGGER);
902 rc = RTSemPong(&pVM->dbgf.s.PingPong);
903 AssertMsgRCReturn(rc, ("Failed to signal emulation thread. rc=%Rrc\n", rc), rc);
904
905 LogFlowFunc(("returns VINF_SUCCESS\n"));
906 return VINF_SUCCESS;
907}
908
909
910/**
911 * Wait for a debug event.
912 *
913 * @returns VBox status. Will not return VBOX_INTERRUPTED.
914 * @param pVM VM handle.
915 * @param cMillies Number of millies to wait.
916 * @param ppEvent Where to store the event pointer.
917 */
918VMMR3DECL(int) DBGFR3EventWait(PVM pVM, unsigned cMillies, PCDBGFEVENT *ppEvent)
919{
920 /*
921 * Check state.
922 */
923 AssertReturn(pVM->dbgf.s.fAttached, VERR_DBGF_NOT_ATTACHED);
924 *ppEvent = NULL;
925
926 /*
927 * Wait.
928 */
929 int rc = RTSemPongWait(&pVM->dbgf.s.PingPong, cMillies);
930 if (VBOX_SUCCESS(rc))
931 {
932 *ppEvent = &pVM->dbgf.s.DbgEvent;
933 Log2(("DBGF: Debugger thread: receiving event %d\n", (*ppEvent)->enmType));
934 return VINF_SUCCESS;
935 }
936
937 return rc;
938}
939
940
941/**
942 * Halts VM execution.
943 *
944 * After calling this the VM isn't actually halted till an DBGFEVENT_HALT_DONE
945 * arrives. Until that time it's not possible to issue any new commands.
946 *
947 * @returns VBox status.
948 * @param pVM VM handle.
949 */
950VMMR3DECL(int) DBGFR3Halt(PVM pVM)
951{
952 /*
953 * Check state.
954 */
955 AssertReturn(pVM->dbgf.s.fAttached, VERR_DBGF_NOT_ATTACHED);
956 RTPINGPONGSPEAKER enmSpeaker = pVM->dbgf.s.PingPong.enmSpeaker;
957 if ( enmSpeaker == RTPINGPONGSPEAKER_PONG
958 || enmSpeaker == RTPINGPONGSPEAKER_PONG_SIGNALED)
959 return VWRN_DBGF_ALREADY_HALTED;
960
961 /*
962 * Send command.
963 */
964 dbgfR3SetCmd(pVM, DBGFCMD_HALT);
965
966 return VINF_SUCCESS;
967}
968
969
970/**
971 * Checks if the VM is halted by the debugger.
972 *
973 * @returns True if halted.
974 * @returns False if not halted.
975 * @param pVM VM handle.
976 */
977VMMR3DECL(bool) DBGFR3IsHalted(PVM pVM)
978{
979 AssertReturn(pVM->dbgf.s.fAttached, false);
980 RTPINGPONGSPEAKER enmSpeaker = pVM->dbgf.s.PingPong.enmSpeaker;
981 return enmSpeaker == RTPINGPONGSPEAKER_PONG_SIGNALED
982 || enmSpeaker == RTPINGPONGSPEAKER_PONG;
983}
984
985
986/**
987 * Checks if the the debugger can wait for events or not.
988 *
989 * This function is only used by lazy, multiplexing debuggers. :-)
990 *
991 * @returns True if waitable.
992 * @returns False if not waitable.
993 * @param pVM VM handle.
994 */
995VMMR3DECL(bool) DBGFR3CanWait(PVM pVM)
996{
997 AssertReturn(pVM->dbgf.s.fAttached, false);
998 return RTSemPongShouldWait(&pVM->dbgf.s.PingPong);
999}
1000
1001
1002/**
1003 * Resumes VM execution.
1004 *
1005 * There is no receipt event on this command.
1006 *
1007 * @returns VBox status.
1008 * @param pVM VM handle.
1009 */
1010VMMR3DECL(int) DBGFR3Resume(PVM pVM)
1011{
1012 /*
1013 * Check state.
1014 */
1015 AssertReturn(pVM->dbgf.s.fAttached, VERR_DBGF_NOT_ATTACHED);
1016 AssertReturn(RTSemPongIsSpeaker(&pVM->dbgf.s.PingPong), VERR_SEM_OUT_OF_TURN);
1017
1018 /*
1019 * Send the ping back to the emulation thread telling it to run.
1020 */
1021 dbgfR3SetCmd(pVM, DBGFCMD_GO);
1022 int rc = RTSemPong(&pVM->dbgf.s.PingPong);
1023 AssertRC(rc);
1024
1025 return rc;
1026}
1027
1028
1029/**
1030 * Step Into.
1031 *
1032 * A single step event is generated from this command.
1033 * The current implementation is not reliable, so don't rely on the event comming.
1034 *
1035 * @returns VBox status.
1036 * @param pVM VM handle.
1037 */
1038VMMR3DECL(int) DBGFR3Step(PVM pVM)
1039{
1040 /*
1041 * Check state.
1042 */
1043 AssertReturn(pVM->dbgf.s.fAttached, VERR_DBGF_NOT_ATTACHED);
1044 AssertReturn(RTSemPongIsSpeaker(&pVM->dbgf.s.PingPong), VERR_SEM_OUT_OF_TURN);
1045
1046 /*
1047 * Send the ping back to the emulation thread telling it to run.
1048 */
1049 dbgfR3SetCmd(pVM, DBGFCMD_SINGLE_STEP);
1050 int rc = RTSemPong(&pVM->dbgf.s.PingPong);
1051 AssertRC(rc);
1052 return rc;
1053}
1054
1055
1056/**
1057 * Call this to single step rawmode or recompiled mode.
1058 *
1059 * You must pass down the return code to the EM loop! That's
1060 * where the actual single stepping take place (at least in the
1061 * current implementation).
1062 *
1063 * @returns VINF_EM_DBG_STEP
1064 * @thread EMT
1065 */
1066VMMR3DECL(int) DBGFR3PrgStep(PVM pVM)
1067{
1068 VM_ASSERT_EMT(pVM);
1069
1070 pVM->dbgf.s.fSingleSteppingRaw = true;
1071 return VINF_EM_DBG_STEP;
1072}
1073
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette