ContentsIntroductionDeveloping large enterprise applications is a complex and difficult undertaking. Writing the code is just one of many tasks we have to do. We worry about requirements, designs, architecture, unit testing, daily builds, release builds to QC and many more things. All this effort is spent to create a reliable, scalable, well performing and functioning application. Then comes the day where we move it in production (if you are lucky and it is hosted by your own organization) or customer start installing it on their servers. This is a big day, a day of celebration. We see the fruits of all our labor and we are excited to see users using the application, getting their feedback and improving the application. But too often it starts to haunt you. The customer reports crashes, instability or unpredictable behavior. You tell yourself, but it is working on our environments. What is different between our test environments and the customer environments?
This is one of the most difficult challenges a development team can face. Your options are suddenly limited. On your development environment you fire up the VS.NET debugger, set breakpoints, look at the application state, etc. Through that you are finally able to figure out what is going on and then make your code change. But tell the customer that you need to install VS.NET to be able to debug this issue. Watch out for the reaction, it might be pretty nasty. Production environments are very locked down and only approved applications can be installed. Very often any change applied to production needs to go through a stringent test process, which takes time. All this while the end users have to bear with the stability, performance or functional problems. If this goes on for too long then users will abandon the application and the organization has to fight an uphill battle to convince end users to come back. This creates lots of frustration, noise, problems and can result in large losses. This is ultimate hell for every developer. You have no idea what is going on while everyone expects a resolution by yesterday.
Top  Gather data to make informed decisionsApplications can behave very different in various environments and under load. First stop worrying about all the shouting. Concentrate on gathering the right data so you can narrow down what is going on. Start with basic information, like which OS and Windows patches are installed. Look at the event log to find out if there are system or application errors reported. If not done automatically, run a virus check too make sure there is no virus infection going on. Enable your custom application logs and comb through them to find out what is happening. If all that does not uncover anything, then understand how the application is used. Which features are used heavily by users, how many concurrent users are on the system, etc. Then replicate a similar environment in house and run a load test against it, which simulates a usage scenario as close as possible (see my article about concurrent users stress testing [^] ).
If all that does not bring you closer to a resolution then you need to take a snapshot of the application in production and analyze it. This article will introduce you to the basic approach for this and then point you to more advanced articles. It is easier then most people believe. Microsoft has built a very nice debugging story – in the unmanaged as well as managed world.
Top  The "Debugging Tools for Windows"Microsoft provides debugging tools for Windows NT 4.0, Windows 2000, Windows XP and Windows 2003. The homepage for the "Debugging Tools for Windows" can be found here [^] . Follow the link "Install Debugging Tools for Windows 32-bit Version" to download the latest version of them (this article uses the version 6.4.7.2). The tools by default are installed in the folder "c:\program files\debugging tools for windows". The install also adds a menu group "Debugging Tools for Windows" under "All Programs". This includes a "Debugging Help" which provides some very good information.
There are a number of debuggers which you can use to debug your application. This article will concentrate on how you can take a dump of your application and then analyze these dumps on another environment and not the production environment itself. You will see how you can take a dump when the application hangs, crashes or just while it is running. These dumps include a complete memory dump so you can see all the threads executing, all the objects on the stack, etc. This is the least intrusive approach in really understanding what is happening in your application while used in production. This does also not require any files to be registered, which makes it easier to get permission to use it in production and also to remove again when no longer needed (which the customer might request). Install the debugging tools on any machine you want and then copy the following five files from the "c:\program files\debugging tools for windows" folder to the production environment:
- adsplus.vbs
- cdb.exe
- dbgeng.dll
- dbghelp.dll
- tlist.exe
You don’t need to register the DLL’s. The file cdb.exe is the "Microsoft Console Debugger" and the file adsplus.vbs is a windows scripting file which is used to automate the CDB debugger. This requires the Windows Scripting Host 5.6 to be installed (run cscript.exe to check the version number). If required download the version from here [^] and install it on the production server.
Top  Always create the symbol files for your binariesSymbol files are needed by a debugger to be able to show you more then just class, method and object addresses. Symbols enable debuggers to show you the class names, variable names, etc. You can debug an application without symbols, but it is much harder and needs a lot of experience. You want to make your life as easy as possible, therefore always generate the symbol files. When you compile your application in debug mode you will see in the same folder where the DLL or EXE gets generated also a PDB file. The PDB file is the symbol file which you need for debugging purpose. Of course you do not want to release the debugging version of your binaries. You can tell the compiler also to generate these symbol files when compiling in release mode. Open the project settings in your Visual Studio .NET IDE (menu Project | Settings). Select the Build tab, select in the Configuration drop down box "Release" if not already selected and then click on the Advanced button. In the "Debug Info" drop down box select "PDB-only". Close your project settings and rebuild your project. You need to do that for all project files. Make it a habit that when you release your application you not just release the binaries (DLL’s and EXE’s) but also all its symbols. Therefore you have the symbols ready anytime you need them for debugging purpose.
Symbol files contain information like all the class names, method names, global and local variable names as well as source line numbers. They are kept separate so that your binaries are smaller and faster when running. Later in the article we explain how you can load these symbols into the debugger. You can also obtain all the symbols for the Windows OS, the .NET framework and many other Microsoft products. You can tell the debugger to download it as needed from the internet or if you do not have access to the Internet while debugging you can download them from the Microsoft site (Windows symbols [^] ). The article will explain how to set up your debugger to download Microsoft symbols files as needed.
Top  Using ADPlus to take application dumpsNow you are ready to take dumps. First start your application. The article has a ThrowException .NET sample application attached which allows you to generate two unhandled exceptions. We will use this sample application to walk through all the examples in this article. Next open the task manager and go to the "Process" tab. Select the check box "Show processes from all users" at the bottom so you can see all processes running. Next find the process named "ThrowException.exe" and note down the process ID (shown in the PID column).
ADPlus has a number of command line operations. First you need to decide if you want to perform a crash dump or hang dump. A crash dump is for situations when your application unexpectedly terminates. Hang dumps can be used to take a dump when your application hangs or any time while it is running. ADPlus can not be used in scenarios where your application crashes while starting up. It can only be used for applications which are running and then crash. Use the CDB or WinDbg debuggers for scenarios where your application crashes during startup. ADPlus is automating the CDB debugger and attaches it to your process. It can also be used to attach it to multiple processes, for example your application runs under IIS and uses also COM+. When CDB kicks in it freezes all processes it has been attached to, takes a dump for each asynchronously and then lets these processes continue to run.
Top  Running ADPlus in crash modeOpen a command prompt and go to the folder where you installed or copied the debugging files. You need to provide at a minimum the following command line arguments when running ADPlus:
- Mode – The mode you want the CDB debugger to run in. Add "-crash" for crash mode or "-hang" for hang mode.
- Process to monitor – Add "-p <process id>" to tell CDB which process to attach to. You can repeat that option for each process you want to monitor. For each process it spawns a separate instance of CDB.
- Quiet mode – When you run ADPlus it will show at the beginning a dialog box telling you which mode has been chosen and where the log files will be created. When you run ADPlus on a remote machine then you need to suppress this dialog box otherwise ADPlus itself will hang (see later in the article). Add the option "-quiet".
- Location of log files – With the option "-o <log file path>" you can specify the path where the log file will be created. The CDB debugger creates a unique folder each time it runs under that log file path. The folder name will be a combination of the mode and date and time the CDB has been started, for example:
Crash_Mode__Date_04-01-2005__Time_19-57-18PM This guarantees that no dump will be overwritten with another dump. In that folder you find the actual memory dump as well as a number of log files. The file "ADPlus_report.txt" contains information about the configuration the CDB debugger has been started up with. The file "Process_List.txt" lists information about all the processes running when CDB started. The file "PID-<process id>__<process name>__<date>__<time>.log" contains all the output of the CDB debugger while running. The actual dump generated by CDB gets placed in the file "PID-<process id>__<process name>__<...>.dmp".
- Symbol path – The option "-y <path> specifies the path where the symbol files can be found. The path contains three pieces of information:
- Symbol server – The symbol server to use. This should always be "srv" unless you have a custom symbol server you utilize.
- Downstream store – The downstream symbol store, e.g. "c:\symbols". CDB will cache symbols from the upstream store to the downstream store, providing a cascading symbol store cache.
- Upstream store – the upstream symbol store. This can be a local path, a network path or a URL.
All three pieces of the path should be separated by a "*". The following example points to the public symbol store from Microsoft and uses a local downstream store:
-y "srv*c:\local symbols*http://msdl.microsoft.com/download/symbols" This allows to download CDB the symbols to your local store which makes it much faster for any subsequent access to the symbol file. Symbols are copied to the downstream store as CDB requires it. So it doesn’t just go ahead and copy every symbol file. You can also list multiple symbol stores by separating each with a semicolon. The next example points to the Microsoft public symbol store as well as the symbol files of your application:
-y "srv*c:\local symbols*http://msdl.microsoft.com/download/symbols;srv*c:\local symbols*c:\ThrowException\bin\Release" You can also use the environment variable "_NT_SYMBOL_PATH" instead of using the "-y" option. As mentioned earlier in the article, you can download all the Microsoft symbols if the production environment does not have internet access. This also means that all your application symbols should be copied to a folder on the production environment. The following article [^] provides a much more comprehensive explanation of the symbol stores and symbol server.
- Exception mode – Any exception can be raised to the debugger as first-chance exception or second-chance exception. First chance exceptions are non fatal exceptions which are handled by the application. If a first chance exception is not handled by the application then it gets raised as second chance exception. Only debuggers can handle second chance exceptions. Second chance exceptions normally cause the application to shut down, unless a debugger is attached to it. By default ADPlus takes a minim dump for all first chance exceptions except unknown and EH exceptions (these are quite common and would generate too much overhead). This pauses the thread, logs in the log file the exception, thread ID and call stack of the thread which raised the exception as well as the date and time when the exception occurred. Finally it takes the mini dump and then resumes the process. The following four command line options control what action is taken when a first chance or second chance exception happens:
- Full dump on first chance exceptions – The option "-FullOnFirst" tells ADPlus to take a full dump for first chance exceptions.
- No dump on first chance exceptions – The option "-NoDumpOnFirst" tells ADPlus to take no dumps at all for first chance exceptions.
- Mini dump for second chance exceptions – By default ADPlus takes a full dump for second chance exceptions. The option "-MiniOnSecond" tells ADPlus to only take mini dumps at second chance exceptions. This is useful when you need to send the dump to someone to look at. These are small dumps while full dumps can be hundreds of mega bytes and are difficult to send around.
- No dump on second exceptions – The option "NoDumpOnSecond" tells ADPlus not to generate any dumps on second chance exceptions.
- Notification – The option "-notify <machine name> will send an alert to the machine when a crash dump is taken. This will bring up a message box on the machine and is useful so you don’t have to wait till a crash happens.
For a complete list of all the ADPlus command line arguments, please refer to the topic "ADPlus Command-Line Options" in the "Debugging Help". It also explains how you can create a configuration file with all these settings and tell ADPlus with the option "-c " to use the configuration file instead. Assuming that the application ThrowException runs under the process ID 2828, here is how to start ADPlus in crash mode, logging all information in the "c:\crashlogs" folder.
ADPlus –crash –p 2828 –o c:\crashlogs –y "srv*c:\symbols*c:\ThrowException;srv* c:\symbols*http://msdl.microsoft.com/download/symbols" –quiet -FullOnFirst
This spawns a new window which shows the CDB debugger attached to your application. You can press Ctrl+C in that window anytime to take a hang dump if no crash happens. But this will terminate the process. ADPlus can not be run in crash mode through Terminal Server on Windows NT 4.0 and Windows 2000. The following article [^] explains how to run in crash mode remotely. It also contains more detailed information about how to use ADPlus.
Top  Running ADPlus in hang modeA hang dump will be taken the moment you run it. The CDB debugger attaches to the process, freezes the process, takes a full dump, detaches again and then resumes the process again. This does not terminate the process at all. The hang mode can be run locally or remotely through Terminal Server. All command line options explained in the previous section apply to the hang mode, except the Exception mode and Notification. Here is a sample of a hang dump:
ADPlus –hang –p 2828 –o c:\crashlogs –y "srv*c:\symbols*c:\ThrowException;srv* c:\symbols*http://msdl.microsoft.com/download/symbols" –quiet
Top  Analyzing the dump fileTaking the dump file is only half the work. Now that we have the dump file we need to learn how to read it. The remainder of this article will assume that we have taken a full dump. We will also assume that we are using the .NET application attached to this article. Refer to the "Debugger Help" if you need to analyze a dump from an unmanaged application. First copy it off the production environment to another machine so you can analyze it without disturbing the production environment itself. The machine you use to analyze needs to have the "Debugging Tools for Windows" installed.
Through the start menu "All Programs | Debugging Tools for Windows" start the WinDbg debugger. Everything we will walk through can also be done through CDB, which is console based while WinDbg as a Windows UI. First we set again the Symbol path. Go to the menu "File | Symbol File Path". Enter the same as you passed along to ADPlus using the "-y option". In our case this is as follows:
srv*c:\symbols*c:\ThrowException;srv*c:\symbols*http://msdl.microsoft.com/download/symbols
This means you should also have the symbol files of your application available on the machine where you analyze the dump file. Next you open the dump file through the menu "File | Open Crash Dump". This can be either a crash or hang dump. Select the "DMP" file created by ADPlus. When you load a crash dump it will show that there was a second chance exception.
Top  Loading the SOS debugger extensionBefore we can start digging into the dump we need to load the SOS (Son of Strike) extension for .NET. This extension provides an easy way to analyze managed data structures and look at the managed world. You can find the SOS extension at "%windir%\Microsoft.NET\Framework\<.NET version>\sos.dll". The debugging tools include a newer version of the SOS extension for .NET 1.0 and 1.1 which is located at "c:\program files\debugging tools for windows\clr10\sos.dll".
At the bottom of the WinDbg window you see a single text box, which allows you to type in commands for the debugger. Commands can be started with an exclamation mark or a dot. This article will use the dot notation.
- .load – The load command can be used to load debugging extensions. If you have an environment variable which has a path to the .NET framework files then you can simply use ".load sos". You can also be explicit and type in the full path ".load c:\program files\debugging tools for windows\clr10\sos". We will debug a .NET 2.0 Beta 1 application so we use instead ".load c:\windows\Microsoft.NET\ Framework\v2.0.40607\sos".
- .unload – Is used to unload a debugger extension. You can provide the name of the extension, for example sos, or if no name is provided it will unload the last extension loaded. You can also use the unloadall command to unload any extension loaded.
- .chain – Used to display the chain of loaded debugger extensions.
Now that we have loaded the SOS extension we can start using its debugger commands to look at the .NET application dump. All the SOS debugger commands need to be started with the exclamation mark. Please note that the commands and options will differ depending on which version of the SOS you load. Of course the SOS provided as part of the latest version of the debugging tools will provide the most recent commands. Note that the latest debugging tools do not yet contain an updated version of the .NET 2.0 SOS extension. This one should become available with the Beta 2 of .NET soon.
Top  Digging into the .NET dump file using SOSUse the "!help" command do display a list of all the available debugger commands provided by the SOS extension. First we want to see a list of all threads and their status. You can use the "~" (without the exclamation mark) command to list all the unmanaged threads. We of course want to look at the managed threads, therefore we use the "!threads" command. You will see a listing like this:
ID ThreadOBJ State Domain APT Exception
. 0 1 001530f8 6020 00149ff8 STA System.IO.DirectoryNotFoundException
(00c01c3c)
2 2 00161248 b220 00149ff8 MTA (Finalizer)
You can see that thread number zero is a STA thread and it has thrown the exception. Thread number two is a MTA thread which is used by the garbage collector to run any Finalize method if implemented by an object before it gets destroyed. Next we want to find out more about the exception itself. We use the "!PrintException" command and pass along the address of the exception as shown by the "!threads" command. You will see the following information:
0:000> !PrintException 00c01c3c
Exception type: System.IO.DirectoryNotFoundException
Message: Could not find a part of the path 'w:\MyFile.txt'.
InnerException: <none>
StackTrace (generated):
<none>
StackTraceString: <none>
HResult: 80070003
We see that a System.IO.DirectoryFoundException has been thrown. We also see the exception message, any inner exception, any stack trace if present and any HResult in case there is a COM object involved. Next we want to find out more about the stack of the current thread. The current thread is marked in the thread list above with a dot at the beginning, which is the thread which threw the exception. We use the "!clrstack" command to get the stack trace, which will look like following:
ESP EIP
0012f140 77e649d3 [Frame: 12f140]
0012f180 78cb9da9 System.IO.__Error.WinIOError(Int32, System.String),
mdToken: 06003489
0012f1ac 78a8add4 System.IO.FileStream.Init(System.String, ...), mdToken:
060035d9
0012f258 78a8aa13 System.IO.FileStream..ctor(System.String, ...), mdToken:
060035d8
0012f288 78a8d295 System.IO.FileStream..ctor(System.String, ...), mdToken:
060035d5
0012f2b0 78b66e59 System.IO.File.Create(System.String, Int32, Boolean),
mdToken: 0600355e
0012f2c4 78b66e05 System.IO.File.Create(System.String), mdToken: 0600355c
0012f2c8 78b68250 System.IO.FileInfo.Create(), mdToken: 0600359b
0012f2cc 0520039d
ThrowException.ThrowException.UnhandledException2_Click(...),
mdToken:0600000d
0012f2d8 7b3b5f15 System.Windows.Forms.Control.OnClick(System.EventArgs),
mdToken: 0600126d
0012f2e8 7b3ed65d System.Windows.Forms.Button.OnClick(System.EventArgs),
mdToken: 06001b69
0012f2f4 7b3ed7a9 System.Windows.Forms.Button.OnMouseUp(...), mdToken:
06001b6b
0012f31c 7b3ba2f7 System.Windows.Forms.Control.WmMouseUp(...), mdToken:
06001346
0012f358 7b363775 System.Windows.Forms.Control.WndProc(...), mdToken:
06001359
0012f374 7b371345 [Frame: 12f374]
Please note that this is an abbreviated list. You can see the individual stack frames as well as all the calls. You see the class and method names for each call, the complete method signature (please note the list is again abbreviated in some cases) and a meta-data token ID. Next you can use the meta-data token and obtain the method table and method description of a specific method call shown above. We want to do that for the last method called from within our own code – UnhandledException2_Click. We use the "!Token2EE" command, passing along the name of the module and the meta-data token shown from the stack trace. The information you get is like this:
0:000> !Token2EE ThrowException.exe 0600000d
Module: 00187990
Token: 0x0600000d
MethodDesc: 03783320
Name: ThrowException.ThrowException.UnhandledException2_Click(System.Object,
System.EventArgs)
JITTED Code Address: 05200378
Please note that the list is again abbreviated. You see the module address (module where the class is loaded from), the meta-data token, the method description address and the method name. Next we want to find out more about the module itself, which we can do with the "!DumpModule" command passing along the module address. The information you get looks like this:
0:000> !DumpModule 00187990
Name: C:\ThrowException\bin\Release\ThrowException.exe
Attributes: PEFile
Assembly: 00187850
LoaderHeap: 0000cf81
TypeDefToMethodTableMap: 04a400b8
TypeRefToMethodTableMap: 04a400d0
MethodDefToDescMap: 04a40170
FieldDefToDescMap: 04a401b0
MemberRefToDescMap: 04a401dc
FileReferencesMap: 04a402a8
AssemblyReferencesMap: 04a402ac
MetaData start address: 004023d0 (3760 bytes)
You see a wealth of information about the module including the assembly address. Next you can use the "!DumpAssembly" command passing along the assembly address. This provides you more information about the assembly itself. The information looks like following:
0:000> !DumpAssembly 00187850
Parent Domain: 00149ff8
Name: C:\ThrowException\bin\Release\ThrowException.exe
ClassLoader: 001878e0
Module Name
00187990 C:\ThrowException\bin\Release\ThrowException.exe
You see the assembly file name, the class loader and a list of all the modules in the assembly as well as their addresses. You also see the domain address, which of course is the same as the one shown from the "!threads" command. We found our way from the thread to the stack call list, to the meta-data token description, to the module and finally to the assembly. Next we want to find out more about the domain using the "!DumpDomain" command passing along the domain address. The information looks like this:
0:000> !DumpDomain 00149ff8
---------------------------
Domain 1: 00149ff8
LowFrequencyHeap: 0014a038
HighFrequencyHeap: 0014a084
StubHeap: 0014a0d0
Name: ThrowException.exe
Assembly: 00164df0 [C:\WINDOWS\assembly\GAC_32\mscorlib\...\mscorlib.dll]
ClassLoader: 00165a88
Module Name
788b2000
C:\WINDOWS\assembly\GAC_32\mscorlib\2.0.3600.0__b77a5c561934e089\mscorlib.dll
0017cad0
C:\WINDOWS\assembly\GAC_32\mscorlib\2.0.3600.0__b77a5c561934e089\sortkey.nlp
0017c2d0
C:\WINDOWS\assembly\GAC_32\mscorlib\2.0.3600.0__b77a5c561934e089\sorttbls.nlp
Assembly: 00187850 [C:\ThrowException\bin\Release\ThrowException.exe]
ClassLoader: 001878e0
Module Name
00187990 C:\ThrowException\bin\Release\ThrowException.exe
Assembly: 0018b920
[C:\WINDOWS\assembly\GAC_MSIL\System.Windows.Forms\...\System.Windows.Forms.dll]
ClassLoader: 0018c6d8
Module Name
7b152000
C:\WINDOWS\assembly\GAC_MSIL\System.Windows.Forms\...\System.Windows.Forms.dll
Assembly: 0018a708 [C:\WINDOWS\assembly\GAC_MSIL\System\...\System.dll]
ClassLoader: 00194310
Module Name
7a6d2000 C:\WINDOWS\assembly\GAC_MSIL\System\...\System.dll
Assembly: 0018a7b0
[C:\WINDOWS\assembly\GAC_MSIL\System.Drawing\...\System.Drawing.dll]
ClassLoader: 00194858
Module Name
7af72000 C:\WINDOWS\assembly\GAC_MSIL\System.Drawing\...\System.Drawing.dll
Please note that the list is again abbreviated. You see a list of all assemblies loaded into the domain. For each assembly you see the class loader address as well as a list of modules. You could now use again "!DumpAssembly" as well as "!DumpModule" to find out more information about each assembly and module loaded. Let’s go back to the meta-data token description. You can also see a method description address which we can now use to find out more information about the method itself. Use the "!DumpMD" command and pass along the method description address. The information looks like this:
0:000> !DumpMD 03783320
Method Name: ThrowException.ThrowException.UnhandledException2_Click(...)
Class: 04a416b8
MethodTable: 03783384
mdToken: 0600000d
Module: 00187990
IsJitted: yes
m_CodeOrIL: 05200378
The information is again abbreviated. You see now the module this method is located in, whether it has been already JIT’ed or not and the class and method table address. Next we use the "!DumpMT –MD" command to find all the methods this class has. Pass along the method table address and you will get a list like this:
0:000> !DumpMT -MD 03783384
EEClass: 04a416b8
Module: 00187990
Name: ThrowException.ThrowException
mdToken: 02000006 (C:\ThrowException\bin\Release\ThrowException.exe)
BaseSize: 0x114
ComponentSize: 0x0
Number of IFaces in IFaceMap: 16
Slots in VTable: 348
--------------------
MethodDesc Table
Entry MethodDesc JIT Name
7b6d5583 7b6d5588 PreJIT System.Windows.Forms.Form.ToString()
78a67578 78cee968 PreJIT System.Object.Equals(System.Object)
78a5cb28 78cee998 PreJIT System.Object.GetHashCode()
This list is again abbreviated. You see again all the methods and for each the method description address. You can use again the "!DumpMD" to find out more information about each method. The command "!DumpMT –MD" shows you a EEClass address, which is the same as the Class address shown with "!DumpMD". Use the "!DumpClass" command passing along the class address to get a list of all class attributes and fields. The list will look like this:
0:000> !DumpClass 04a416b8
Class Name: ThrowException.ThrowException
mdToken: 02000006 (C:\ThrowException\bin\Release\ThrowException.exe)
Parent Class: 7b177c18
Module: 00187990
Method Table: 03783384
Vtable Slots: 158
Total Method Slots: 15c
Class Attributes: 100000
NumInstanceFields: 39
NumStaticFields: 0
MT Field Offset Type Attr Value Name
788ef7e4 4000162 4 CLASS instance __identity
7a6e50a4 400077b 8 CLASS instance site
7a6e50a4 400077c c CLASS instance events
7a6e50a4 400077a 120 CLASS static 00bed5fc EventDisposed
7b178104 40016c7 7f8 CLASS static 00bf4084 defaultIcon
This list is again abbreviated. You see how many methods the class has, how many instance and static fields it has and much more. It also shows the value of any static field. If you want to find more out about the class instance stored in a static field then you can use the "!DumpObj" command passing along the value of the static field. The information will look like this:
0:000> !DumpObj 00bf4084
Name: System.Drawing.Icon
MethodTable: 7af77784
EEClass: 7af776b4
Size: 40(0x28) bytes
(C:\WINDOWS\assembly\GAC_MSIL\System.Drawing\...\System.Drawing.dll)
Fields:
MT Field Offset Type Attr Value Name
788ef7e4 4000162 4 CLASS instance 00000000 __identity
7af77784 40002da 8 CLASS instance 00bf4310 iconData
7af77784 40002db c System.Int32 instance 38 bestImageOffset
7af77784 40002dc 10 System.Int32 instance 16 bestBitDepth
7af767c4 40002dd 1c VALUETYPE instance 00bf40a0 iconSize
This is again an abbreviated list. You can see the object size, the module file name as well as all instance fields and their values. If the field contains again a class instance then you can use again the "!DumpObj" command to find out more about that object. You can also find all objects stored on the stack (of course these are references to the objects which itself are on the heap) by using the "!DumpStackObjects" command. The list will look like this:
0:000> !DumpStackObjects
ESP/REG Object Name
0012f08c 788ed6c0 System.Exception
0012f098 00c01c3c System.IO.DirectoryNotFoundException
0012f0b8 00c01c3c System.IO.DirectoryNotFoundException
0012f0c0 00c014a0 System.IO.FileStream
0012f0c4 00c01dc0 System.Char[]
This is again an abbreviated list. You see all the objects, the object types and their addresses. Use again the "!DumpObj" command passing along the object address to find more out about the object itself. There are many more commands SOS supports. Use the "!help" command to get the list of commands and then "!help" passing along the command itself to get a more detailed description about the command.
Top  Using SOS from within your Visual Studio.NET IDEYou can also use SOS from within your Visual Studio.NET IDE. First you need to enable also the "unmanaged code" debugging option in Visual Studio. In VS 2005 open the project settings, go to the debugging tab and select the option "Unmanaged code debugging". Next set break points in your application, run it and when a breakpoint is hit open the "immediate window" (in VS 2005 through the menu "Debug | Windows | Immediate"). In the "immediate window" load the SOS debugger extension through the command ".load sos". Now you can execute the same commands as in WinDbg and you see the same output. For example the command "!threads" shows you a list of managed threads running.
Top  SummaryThis article provides a good introduction to the "live debugging" story Microsoft has. There is a robust debugging framework present but unfortunately it is not widely known in the developer community. Too often developers as well as managers take a shot in the dark approach and hope to find a resolution this way. It is easy to take crash and hang dumps in production without having to disturb the production environment. It will take some experience to be able to read these dump files. Nevertheless it is easy to find out a wealth of information about the application at the time of crash or hang. This article is just an introduction. There are many more commands available. You can find more out about each by using the "!help" command. The following blog [^] by Mike Taulty provides more examples as well as more command descriptions. There are two more articles by John Robbins (article one [^] and article two [^]) which give also a good introduction into this topic. Finally there is a very comprehensive guide by Microsoft how to debug production .NET applications [^]. If you have comments on this article or this topic, please contact me @ klaus_salchner@hotmail.com [^] . I want to hear if you learned something new. Contact me if you have questions about this topic or article.
Top 
About
Klaus Salchner
Klaus Salchner has worked for 14 years in the industry, nine years in Europe and another five years in North America. As a Senior Enterprise Architect with solid experience in enterprise software development, Klaus spends considerable time on performance, scalability, availability, maintainability, globalization/localization and security. The projects he has been involved in are used by more than a million users in 50 countries on three continents. Klaus calls Vancouver, British Columbia his home at the moment. His next big goal is doing the New York marathon in 2005. Klaus is interested in guest speaking opportunities or as an author for .NET magazines or Web sites. He can be contacted at klaus_salchner@hotmail.com or http://www.enterprise-minds.com. Enterprise application architecture and design consulting services are available. If you want to hear more about it contact me! Involve me in your projects and I will make a difference. |
Click here if you want to know more about
Klaus Salchner.
Other articles that may interest you
|