VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMGuruMeditation.cpp@ 17610

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

unused variables

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 15.9 KB
Line 
1/* $Id: VMMGuruMeditation.cpp 17189 2009-02-27 08:41:03Z vboxsync $ */
2/** @file
3 * VMM - The Virtual Machine Monitor, Guru Meditation Code.
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* Header Files *
24*******************************************************************************/
25#define LOG_GROUP LOG_GROUP_VMM
26#include <VBox/vmm.h>
27#include <VBox/pdmapi.h>
28#include <VBox/trpm.h>
29#include <VBox/dbgf.h>
30#include "VMMInternal.h"
31#include <VBox/vm.h>
32
33#include <VBox/err.h>
34#include <VBox/param.h>
35#include <VBox/version.h>
36#include <VBox/hwaccm.h>
37#include <iprt/assert.h>
38#include <iprt/time.h>
39#include <iprt/stream.h>
40#include <iprt/string.h>
41#include <iprt/stdarg.h>
42
43
44/*******************************************************************************
45* Structures and Typedefs *
46*******************************************************************************/
47/**
48 * Structure to pass to DBGFR3Info() and for doing all other
49 * output during fatal dump.
50 */
51typedef struct VMMR3FATALDUMPINFOHLP
52{
53 /** The helper core. */
54 DBGFINFOHLP Core;
55 /** The release logger instance. */
56 PRTLOGGER pRelLogger;
57 /** The saved release logger flags. */
58 RTUINT fRelLoggerFlags;
59 /** The logger instance. */
60 PRTLOGGER pLogger;
61 /** The saved logger flags. */
62 RTUINT fLoggerFlags;
63 /** The saved logger destination flags. */
64 RTUINT fLoggerDestFlags;
65 /** Whether to output to stderr or not. */
66 bool fStdErr;
67} VMMR3FATALDUMPINFOHLP, *PVMMR3FATALDUMPINFOHLP;
68/** Pointer to a VMMR3FATALDUMPINFOHLP structure. */
69typedef const VMMR3FATALDUMPINFOHLP *PCVMMR3FATALDUMPINFOHLP;
70
71
72/**
73 * Print formatted string.
74 *
75 * @param pHlp Pointer to this structure.
76 * @param pszFormat The format string.
77 * @param ... Arguments.
78 */
79static DECLCALLBACK(void) vmmR3FatalDumpInfoHlp_pfnPrintf(PCDBGFINFOHLP pHlp, const char *pszFormat, ...)
80{
81 va_list args;
82 va_start(args, pszFormat);
83 pHlp->pfnPrintfV(pHlp, pszFormat, args);
84 va_end(args);
85}
86
87
88/**
89 * Print formatted string.
90 *
91 * @param pHlp Pointer to this structure.
92 * @param pszFormat The format string.
93 * @param args Argument list.
94 */
95static DECLCALLBACK(void) vmmR3FatalDumpInfoHlp_pfnPrintfV(PCDBGFINFOHLP pHlp, const char *pszFormat, va_list args)
96{
97 PCVMMR3FATALDUMPINFOHLP pMyHlp = (PCVMMR3FATALDUMPINFOHLP)pHlp;
98
99 if (pMyHlp->pRelLogger)
100 {
101 va_list args2;
102 va_copy(args2, args);
103 RTLogLoggerV(pMyHlp->pRelLogger, pszFormat, args2);
104 va_end(args2);
105 }
106 if (pMyHlp->pLogger)
107 {
108 va_list args2;
109 va_copy(args2, args);
110 RTLogLoggerV(pMyHlp->pLogger, pszFormat, args);
111 va_end(args2);
112 }
113 if (pMyHlp->fStdErr)
114 {
115 va_list args2;
116 va_copy(args2, args);
117 RTStrmPrintfV(g_pStdErr, pszFormat, args);
118 va_end(args2);
119 }
120}
121
122
123/**
124 * Initializes the fatal dump output helper.
125 *
126 * @param pHlp The structure to initialize.
127 */
128static void vmmR3FatalDumpInfoHlpInit(PVMMR3FATALDUMPINFOHLP pHlp)
129{
130 memset(pHlp, 0, sizeof(*pHlp));
131
132 pHlp->Core.pfnPrintf = vmmR3FatalDumpInfoHlp_pfnPrintf;
133 pHlp->Core.pfnPrintfV = vmmR3FatalDumpInfoHlp_pfnPrintfV;
134
135 /*
136 * The loggers.
137 */
138 pHlp->pRelLogger = RTLogRelDefaultInstance();
139#ifndef LOG_ENABLED
140 if (!pHlp->pRelLogger)
141#endif
142 pHlp->pLogger = RTLogDefaultInstance();
143
144 if (pHlp->pRelLogger)
145 {
146 pHlp->fRelLoggerFlags = pHlp->pRelLogger->fFlags;
147 pHlp->pRelLogger->fFlags &= ~(RTLOGFLAGS_BUFFERED | RTLOGFLAGS_DISABLED);
148 }
149
150 if (pHlp->pLogger)
151 {
152 pHlp->fLoggerFlags = pHlp->pLogger->fFlags;
153 pHlp->fLoggerDestFlags = pHlp->pLogger->fDestFlags;
154 pHlp->pLogger->fFlags &= ~(RTLOGFLAGS_BUFFERED | RTLOGFLAGS_DISABLED);
155#ifndef DEBUG_sandervl
156 pHlp->pLogger->fDestFlags |= RTLOGDEST_DEBUGGER;
157#endif
158 }
159
160 /*
161 * Check if we need write to stderr.
162 */
163#ifdef DEBUG_sandervl
164 pHlp->fStdErr = false; /* takes too long to display here */
165#else
166 pHlp->fStdErr = (!pHlp->pRelLogger || !(pHlp->pRelLogger->fDestFlags & (RTLOGDEST_STDOUT | RTLOGDEST_STDERR)))
167 && (!pHlp->pLogger || !(pHlp->pLogger->fDestFlags & (RTLOGDEST_STDOUT | RTLOGDEST_STDERR)));
168#endif
169}
170
171
172/**
173 * Deletes the fatal dump output helper.
174 *
175 * @param pHlp The structure to delete.
176 */
177static void vmmR3FatalDumpInfoHlpDelete(PVMMR3FATALDUMPINFOHLP pHlp)
178{
179 if (pHlp->pRelLogger)
180 {
181 RTLogFlush(pHlp->pRelLogger);
182 pHlp->pRelLogger->fFlags = pHlp->fRelLoggerFlags;
183 }
184
185 if (pHlp->pLogger)
186 {
187 RTLogFlush(pHlp->pLogger);
188 pHlp->pLogger->fFlags = pHlp->fLoggerFlags;
189 pHlp->pLogger->fDestFlags = pHlp->fLoggerDestFlags;
190 }
191}
192
193
194/**
195 * Dumps the VM state on a fatal error.
196 *
197 * @param pVM VM Handle.
198 * @param rcErr VBox status code.
199 */
200VMMR3DECL(void) VMMR3FatalDump(PVM pVM, int rcErr)
201{
202 /*
203 * Create our output helper and sync it with the log settings.
204 * This helper will be used for all the output.
205 */
206 VMMR3FATALDUMPINFOHLP Hlp;
207 PCDBGFINFOHLP pHlp = &Hlp.Core;
208 vmmR3FatalDumpInfoHlpInit(&Hlp);
209
210 /*
211 * Header.
212 */
213 pHlp->pfnPrintf(pHlp,
214 "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n"
215 "!!\n"
216 "!! Guru Meditation %d (%Rrc)\n"
217 "!!\n",
218 rcErr, rcErr);
219
220 /*
221 * Continue according to context.
222 */
223 bool fDoneHyper = false;
224 switch (rcErr)
225 {
226 /*
227 * Hypervisor errors.
228 */
229 case VERR_VMM_RING0_ASSERTION:
230 case VINF_EM_DBG_HYPER_ASSERTION:
231 {
232 const char *pszMsg1 = VMMR3GetRZAssertMsg1(pVM);
233 while (pszMsg1 && *pszMsg1 == '\n')
234 pszMsg1++;
235 const char *pszMsg2 = VMMR3GetRZAssertMsg2(pVM);
236 while (pszMsg2 && *pszMsg2 == '\n')
237 pszMsg2++;
238 pHlp->pfnPrintf(pHlp,
239 "%s"
240 "%s",
241 pszMsg1,
242 pszMsg2);
243 if ( !pszMsg2
244 || !*pszMsg2
245 || strchr(pszMsg2, '\0')[-1] != '\n')
246 pHlp->pfnPrintf(pHlp, "\n");
247 pHlp->pfnPrintf(pHlp, "!!\n");
248 /* fall thru */
249 }
250 case VERR_TRPM_DONT_PANIC:
251 case VERR_TRPM_PANIC:
252 case VINF_EM_RAW_STALE_SELECTOR:
253 case VINF_EM_RAW_IRET_TRAP:
254 case VINF_EM_DBG_HYPER_BREAKPOINT:
255 case VINF_EM_DBG_HYPER_STEPPED:
256 {
257 /*
258 * Active trap? This is only of partial interest when in hardware
259 * assisted virtualization mode, thus the different messages.
260 */
261 uint32_t uEIP = CPUMGetHyperEIP(pVM);
262 TRPMEVENT enmType;
263 uint8_t u8TrapNo = 0xce;
264 RTGCUINT uErrorCode = 0xdeadface;
265 RTGCUINTPTR uCR2 = 0xdeadface;
266 int rc2 = TRPMQueryTrapAll(pVM, &u8TrapNo, &enmType, &uErrorCode, &uCR2);
267 if (!HWACCMR3IsActive(pVM))
268 {
269 if (RT_SUCCESS(rc2))
270 pHlp->pfnPrintf(pHlp,
271 "!! TRAP=%02x ERRCD=%RGv CR2=%RGv EIP=%RX32 Type=%d\n",
272 u8TrapNo, uErrorCode, uCR2, uEIP, enmType);
273 else
274 pHlp->pfnPrintf(pHlp,
275 "!! EIP=%RX32 NOTRAP\n",
276 uEIP);
277 }
278 else if (RT_SUCCESS(rc2))
279 pHlp->pfnPrintf(pHlp,
280 "!! ACTIVE TRAP=%02x ERRCD=%RGv CR2=%RGv PC=%RGr Type=%d (Guest!)\n",
281 u8TrapNo, uErrorCode, uCR2, CPUMGetGuestRIP(pVM), enmType);
282
283 /*
284 * The hypervisor dump is not relevant when we're in VT-x/AMD-V mode.
285 */
286 if (HWACCMR3IsActive(pVM))
287 pHlp->pfnPrintf(pHlp, "\n");
288 else
289 {
290 /*
291 * Try figure out where eip is.
292 */
293 /* core code? */
294 if (uEIP - (RTGCUINTPTR)pVM->vmm.s.pvCoreCodeRC < pVM->vmm.s.cbCoreCode)
295 pHlp->pfnPrintf(pHlp,
296 "!! EIP is in CoreCode, offset %#x\n",
297 uEIP - (RTGCUINTPTR)pVM->vmm.s.pvCoreCodeRC);
298 else
299 { /* ask PDM */ /** @todo ask DBGFR3Sym later? */
300 char szModName[64];
301 RTRCPTR RCPtrMod;
302 char szNearSym1[260];
303 RTRCPTR RCPtrNearSym1;
304 char szNearSym2[260];
305 RTRCPTR RCPtrNearSym2;
306 int rc = PDMR3LdrQueryRCModFromPC(pVM, uEIP,
307 &szModName[0], sizeof(szModName), &RCPtrMod,
308 &szNearSym1[0], sizeof(szNearSym1), &RCPtrNearSym1,
309 &szNearSym2[0], sizeof(szNearSym2), &RCPtrNearSym2);
310 if (RT_SUCCESS(rc))
311 pHlp->pfnPrintf(pHlp,
312 "!! EIP in %s (%RRv) at rva %x near symbols:\n"
313 "!! %RRv rva %RRv off %08x %s\n"
314 "!! %RRv rva %RRv off -%08x %s\n",
315 szModName, RCPtrMod, (unsigned)(uEIP - RCPtrMod),
316 RCPtrNearSym1, RCPtrNearSym1 - RCPtrMod, (unsigned)(uEIP - RCPtrNearSym1), szNearSym1,
317 RCPtrNearSym2, RCPtrNearSym2 - RCPtrMod, (unsigned)(RCPtrNearSym2 - uEIP), szNearSym2);
318 else
319 pHlp->pfnPrintf(pHlp,
320 "!! EIP is not in any code known to VMM!\n");
321 }
322
323 /* Disassemble the instruction. */
324 char szInstr[256];
325 rc2 = DBGFR3DisasInstrEx(pVM, 0, 0, DBGF_DISAS_FLAGS_CURRENT_HYPER, &szInstr[0], sizeof(szInstr), NULL);
326 if (RT_SUCCESS(rc2))
327 pHlp->pfnPrintf(pHlp,
328 "!! %s\n", szInstr);
329
330 /* Dump the hypervisor cpu state. */
331 pHlp->pfnPrintf(pHlp,
332 "!!\n"
333 "!!\n"
334 "!!\n");
335 rc2 = DBGFR3Info(pVM, "cpumhyper", "verbose", pHlp);
336 fDoneHyper = true;
337
338 /* Callstack. */
339 DBGFSTACKFRAME Frame = {0};
340 rc2 = DBGFR3StackWalkBeginHyper(pVM, &Frame);
341 if (RT_SUCCESS(rc2))
342 {
343 pHlp->pfnPrintf(pHlp,
344 "!!\n"
345 "!! Call Stack:\n"
346 "!!\n"
347 "EBP Ret EBP Ret CS:EIP Arg0 Arg1 Arg2 Arg3 CS:EIP Symbol [line]\n");
348 do
349 {
350 pHlp->pfnPrintf(pHlp,
351 "%08RX32 %08RX32 %04RX32:%08RX32 %08RX32 %08RX32 %08RX32 %08RX32",
352 (uint32_t)Frame.AddrFrame.off,
353 (uint32_t)Frame.AddrReturnFrame.off,
354 (uint32_t)Frame.AddrReturnPC.Sel,
355 (uint32_t)Frame.AddrReturnPC.off,
356 Frame.Args.au32[0],
357 Frame.Args.au32[1],
358 Frame.Args.au32[2],
359 Frame.Args.au32[3]);
360 pHlp->pfnPrintf(pHlp, " %RTsel:%08RGv", Frame.AddrPC.Sel, Frame.AddrPC.off);
361 if (Frame.pSymPC)
362 {
363 RTGCINTPTR offDisp = Frame.AddrPC.FlatPtr - Frame.pSymPC->Value;
364 if (offDisp > 0)
365 pHlp->pfnPrintf(pHlp, " %s+%llx", Frame.pSymPC->szName, (int64_t)offDisp);
366 else if (offDisp < 0)
367 pHlp->pfnPrintf(pHlp, " %s-%llx", Frame.pSymPC->szName, -(int64_t)offDisp);
368 else
369 pHlp->pfnPrintf(pHlp, " %s", Frame.pSymPC->szName);
370 }
371 if (Frame.pLinePC)
372 pHlp->pfnPrintf(pHlp, " [%s @ 0i%d]", Frame.pLinePC->szFilename, Frame.pLinePC->uLineNo);
373 pHlp->pfnPrintf(pHlp, "\n");
374
375 /* next */
376 rc2 = DBGFR3StackWalkNext(pVM, &Frame);
377 } while (RT_SUCCESS(rc2));
378 DBGFR3StackWalkEnd(pVM, &Frame);
379 }
380
381 /* raw stack */
382 pHlp->pfnPrintf(pHlp,
383 "!!\n"
384 "!! Raw stack (mind the direction).\n"
385 "!!\n"
386 "%.*Rhxd\n",
387 VMM_STACK_SIZE, pVM->vmm.s.pbEMTStackR3);
388 } /* !HWACCMR3IsActive */
389 break;
390 }
391
392 default:
393 {
394 break;
395 }
396
397 } /* switch (rcErr) */
398
399
400 /*
401 * Generic info dumper loop.
402 */
403 static struct
404 {
405 const char *pszInfo;
406 const char *pszArgs;
407 } const aInfo[] =
408 {
409 { "mappings", NULL },
410 { "hma", NULL },
411 { "cpumguest", "verbose" },
412 { "cpumguestinstr", "verbose" },
413 { "cpumhyper", "verbose" },
414 { "cpumhost", "verbose" },
415 { "mode", "all" },
416 { "cpuid", "verbose" },
417 { "gdt", NULL },
418 { "ldt", NULL },
419 //{ "tss", NULL },
420 { "ioport", NULL },
421 { "mmio", NULL },
422 { "phys", NULL },
423 //{ "pgmpd", NULL }, - doesn't always work at init time...
424 { "timers", NULL },
425 { "activetimers", NULL },
426 { "handlers", "phys virt hyper stats" },
427 { "cfgm", NULL },
428 };
429 for (unsigned i = 0; i < RT_ELEMENTS(aInfo); i++)
430 {
431 if (fDoneHyper && !strcmp(aInfo[i].pszInfo, "cpumhyper"))
432 continue;
433 pHlp->pfnPrintf(pHlp,
434 "!!\n"
435 "!! {%s, %s}\n"
436 "!!\n",
437 aInfo[i].pszInfo, aInfo[i].pszArgs);
438 DBGFR3Info(pVM, aInfo[i].pszInfo, aInfo[i].pszArgs, pHlp);
439 }
440
441 /* done */
442 pHlp->pfnPrintf(pHlp,
443 "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
444
445
446 /*
447 * Delete the output instance (flushing and restoring of flags).
448 */
449 vmmR3FatalDumpInfoHlpDelete(&Hlp);
450}
451
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