vote up 16 vote down star
18

I have come to realize that Windbg is a very powerful debugger for the Windows platform & I learn something new about it once in a while. Can fellow Windbg users share some of their mad skills?

ps: I am not looking for a nifty command, those can be found in the documentation. How about sharing tips on doing something that one couldn't otherwise imagine could be done with windbg? e.g. Some way to generate statistics about memory allocations when a process is run under windbg.

flag

45% accept rate

15 Answers

vote up 0 vote down

Someone above mentioned the command window and "Alt+1" to focus on the command input window. Anyone finds it's difficult to scroll the command output window without using mouse?

Well, I have recently used AutoHotKey to scroll the command output window using keyboard and without leaving the command input window.

; WM_VSCROLL = 0x115 (277)
ScrollUp(control="")
{
    SendMessage, 277, 0, 0, %control%, A
}

ScrollDown(control="")
{
    SendMessage, 277, 1, 0, %control%, A
}

ScrollPageUp(control="")
{
    SendMessage, 277, 2, 0, %control%, A
}

ScrollPageDown(control="")
{
    SendMessage, 277, 3, 0, %control%, A
}

ScrollToTop(control="")
{
    SendMessage, 277, 6, 0, %control%, A
}

ScrollToBottom(control="")
{   
    SendMessage, 277, 7, 0, %control%, A
}

#IfWinActive, ahk_class WinDbgFrameClass
    ; for windbg, when the child window is attached to the main window
    !UP::ScrollUp("RichEdit50W1")
    ^k::ScrollUp("RichEdit50W1")
    !DOWN::ScrollDown("RichEdit50W1")
    ^j::ScrollDown("RichEdit50W1")
    !PGDN::ScrollPageDown("RichEdit50W1")
    !PGUP::ScrollPageUp("RichEdit50W1")
    !HOME::ScrollToTop("RichEdit50W1")
    !END::ScrollToBottom("RichEdit50W1")
#IfWinActive, ahk_class WinBaseClass
    ; also for windbg, when the child window is a separate window
    !UP::ScrollUp("RichEdit50W1")
    !DOWN::ScrollDown("RichEdit50W1")
    !PGDN::ScrollPageDown("RichEdit50W1")
    !PGUP::ScrollPageUp("RichEdit50W1")
    !HOME::ScrollToTop("RichEdit50W1")
    !END::ScrollToBottom("RichEdit50W1")

After this script is run, you can use Alt+up/down to scroll one line of the command output window, Alt+Pgdn/Pgup to scroll one screen.

Note: it seems different versions of windbg will have different class names for the window and controls, so you might want to use window spy tool provided by AutoHotkey to find the actual class names first.

link|flag
vote up 0 vote down

One word (well, ok, three) : DML, i.e. Debugger Markup Language.

This is a fairly recent addition to Windbg and it's not documented in the help file. There is however some documentation in "dml.doc" in the installation directory for the Debugging Tools for Windows.

Basically, this is an html like syntax you can add to your debugger scripts for formatting and, more importantly, linking. You can use links to call other scripts, or even the same script.

My day-to-day work involves maintenance on a meta-modeler that provides generic objects and relationship between objects for a large piece of C++ software. At first, to ease debugging, I had written a simple dump script that extracts relevant information from these objects.

Now, with DML, I've been able to add links to the output, allowing the same script to be called again on related objects. This allows for much faster exploration of a model.

Here's a simplified example. Assume the object under introspection has a relationship called "reference" to another object. r @$t0 = $arg1 $$ arg1 is the adress of an object to examine

$$ dump some info from $t0

$$ allow the user to examine our reference
aS /x myref @@(&((<C++ type of the reference>*)@$t0)->reference )
.block { .printf /D "<link cmd=\"$$>a< <full path to this script> ${myref}\">dump Ref</link> " }

Obviously this a pretty canned example but this stuff is really invaluable for me. Instead of hunting around in very complex objects for the right data members (which usually took up to a minute and various casting and dereferencing trickery), everything is automated in one click !

link|flag
vote up 3 vote down

To investigate a memory leak in a crash dump (since I prefer by far UMDH for live processes).
The strategy is that objects are all allocated with the same size.

  • Feed the !heap -h 0 command to WinDbg command line version cdb.exe (for greater speed) to get all heap allocations:
"C:\Program Files\Debugging Tools for Windows\cdb.exe" -c "!heap -h 0;q" -z [DumpPath] > DumpHeapEntries.log
  • Use cygwin to grep the list of allocations, grouping them by size:
grep "busy ([[:alnum:]]\+)" DumpHeapEntries.log \  
| gawk '{ str = $8; gsub(/\(|\)/, "", str); print "0x" str " 0x" $4 }' \
| sort \  
| uniq -c \  
| gawk '{ printf "%10.2f %10d %10d ( %s = %d )\n", $1*strtonum($3)/1024, $1, strtonum($3), $2, strtonum($2) }' \  
| sort > DumpHeapEntriesStats.log
  • You get a table that look like this
   8489.52        707      12296 ( 0x3000 = 12288 )  
  11894.28       5924       2056 ( 0x800 = 2048 )  
  13222.66     846250         16 ( 0x2 = 2 )  
  14120.41     602471         24 ( 0x2 = 2 )  
  31539.30    2018515         16 ( 0x1 = 1 )  
  38902.01    1659819         24 ( 0x1 = 1 )  
  40856.38        817      51208 ( 0xc800 = 51200 )  
1196684.53   25529270         48 ( 0x24 = 36 )
  • Then if your objects have vtables, just use the dds command to seek some of the heap allocations in DumpHeapEntriesStats.log to know the type of the objects that are taking all the memory.
0:075> dds 3be7f7e8  
3be7f7e8  00020006  
3be7f7ec  090c01e7  
3be7f7f0  0b40fe94 SomeDll!TSomeType::`vftable'  
3be7f7f4  00000000  
3be7f7f8  00000000

Thats cheezy but it works :)

link|flag
vote up 3 vote down

The "tip" I use most often is one that will save you from having to touch that pesky mouse so often: Alt-1

Alt-1 will place focus into the command window so that you can actually type a command and so that up-arrow actually scrolls through command history. However, it doesn't work if your focus is already in the scrollable command history.

Peeve: why the heck are key presses ignored while the focus is in a source window? It's not like you can edit the source code from inside windbg. Alt-1 to the rescue.

link|flag
vote up 0 vote down

I like to use advanced breakpoint commands, such as using breakpoints to create new one-shot breakpoints.

link|flag
vote up 2 vote down

I really really like PowerDbg, a powershell library which makes windbg scripting easy, er, no, easier, well, make that "less tear wrenching".

There are some example scripts written for it, my favorite being one that display the most cpu-hogging threads or the worst GC handles leakers.

link|flag
wow, thats what I've been looking for, thanks! – unknown (yahoo) Dec 22 '08 at 11:20
vote up 0 vote down

Do not use Windbg .heap -stat command, it will sometimes give you incorrect output.
Instead use DebugDiags memory reporting.
Having the currect numbers you can then use windbg's .heap -flt ... command.

link|flag
vote up 2 vote down

My favorite is Getting an exception call stack from the catch block by Slava Oks (Microsoft C++ specific).

link|flag
vote up 3 vote down

Almost 60% of the commands I use everyday..

dv /i /t
?? this
kM (kinda undocumented) generates links to frames
.frame x
!analyze -v
!lmi
~

link|flag
Wow. kM is pretty fabulous! – Aaron Jan 7 '09 at 12:33
vote up 4 vote down

Following command:

dpp esp Range

comes very handy when looking on stack for C++ objects with vtables, especially when working with release builds when quite a few things get optimized away.
Being able to load an arbitrary PE file as dump is neat:

windbg -z mylib.dll

Query GetLastError() with:

!gle
!error error_number

helps to decode common error codes.

link|flag
dpp - good one, thanks. – unknown (yahoo) Oct 1 '08 at 22:39
vote up 0 vote down

I've just read this blog post on a very handy command called ".cmdtree". This one doesn't quite fit your question but I thought it's very cool and should mention it.

link|flag
Oh damn just got beaten...... – Daisuke Shimamoto Sep 24 '08 at 15:30
vote up 10 vote down

My favorite is the recently (sort of) discovered command .cmdtree (it's undocumented, but referenced in previous release notes). This can assist in bringing up another window (that can be docked) to display helpful or commonly used commands. This can help make the user much more productive using the tool.

Initially talked about here: http://blogs.msdn.com/debuggingtoolbox/archive/2008/09/17/special-command-execute-commands-from-a-customized-user-interface-with-cmdtree.aspx

Excellent example here: http://www.dumpanalysis.org/blog/index.php/2008/09/18/cmdtreetxt-for-cda-checklist/

Example: alt text

link|flag
vote up 12 vote down

My favorite tip is to follow Tess Ferrandez' blogging about Windows and .NET debugging. Start with http://blogs.msdn.com/tess/archive/2007/04/19/windbg-scripts-and-tools.aspx

link|flag
vote up 8 vote down

My favorite WinDbg tip is to read Advanced Windows Debugging by Mario Hewardt and Daniel Pravat:

alt text

link|flag
Without a doubt the best book to learn how to use WinDBG. – Sacha Sep 27 '08 at 18:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.