Program only crashes as release build -- how to debug? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T13:01:29Zhttp://stackoverflow.com/feeds/question/186237http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug17Program only crashes as release build -- how to debug?Nik Reiman2008-10-09T07:18:42Z2009-08-19T16:16:40Z
<p>I've got a "Schroedinger's Cat" type of problem here -- my program (actually the test suite for my program, but a program nonetheless) is crashing, but only when built in release mode, and only when launched from the command line. Through caveman debugging (ie, nasty printf() messages all over the place), I have determined the test method where the code is crashing, though unfortunately the actual crash seems to happen in some destructor, since the last trace messages I see are in other destructors which execute cleanly.</p>
<p>When I attempt to run this program inside of Visual Studio, it doesn't crash. Same goes when launching from WinDbg.exe. The crash only occurs when launching from the command line. This is happening under Windows Vista, btw, and unfortunately I don't have access to an XP machine right now to test on.</p>
<p>It would be really nice if I could get Windows to print out a stack trace, or <em>something</em> other than simply terminating the program as if it had exited cleanly. Does anyone have any advice as to how I could get some more meaningful information here and hopefully fix this bug?</p>
<p>Edit: The problem was indeed caused by an out-of-bounds array, <a href="http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug#187966">which I describe more in this post</a>. Thanks everybody for your help in finding this problem!</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186247#18624717Answer by David Dibben for Program only crashes as release build -- how to debug?David Dibben2008-10-09T07:24:56Z2008-10-09T07:24:56Z<p>When I have encountered problems like this before it has generally been due to variable initialization. In debug mode, variables and pointers get initialized to zero automatically but in release mode they do not. Therefore, if you have code like this</p>
<pre><code>int* p;
....
if (p == 0) { // do stuff }
</code></pre>
<p>In debug mode the code in the if is not executed but in release mode p contains an undefined value, which is unlikely to be 0, so the code is executed often causing a crash.</p>
<p>I would check your code for uninitialized variables. This can also apply to the contents of arrays.</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186250#1862500Answer by Remo.D for Program only crashes as release build -- how to debug?Remo.D2008-10-09T07:26:32Z2008-10-09T07:26:32Z<p>Something similar happend to me once with GCC. It turned out to be a too aggressive optimization that was enabled only when creating the final release and not during the development process.</p>
<p>Well, to tell the truth it was my fault, not gcc's, as I didn't noticed that my code was relying on the fact that that particular optimization wouldn't have been done.</p>
<p>It took me a lot of time to trace it and I only came to it because I asked on a newsgroup and somebody made me think about it. So, let me return the favour just in case this is happening to you as well.</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186257#1862570Answer by Cruachan for Program only crashes as release build -- how to debug?Cruachan2008-10-09T07:29:31Z2008-10-09T07:29:31Z<p>Crashes like this are almost always caused because an IDE will usually set the contents of uninitialized variable to zeros, null or some other such 'sensible' value, whereas when running natively you'll get whatever random rubbish that the system picks up.</p>
<p>Your error is therefore almost certainly that you are using something like you are using a pointer before it has been properly initialized and you're getting away with it in the IDE because it doesn't point anywhere dangerous - or the value is handled by your error checking - but in release mode it does something nasty.</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186269#1862698Answer by Franci Penov for Program only crashes as release build -- how to debug?Franci Penov2008-10-09T07:33:04Z2008-10-09T07:33:04Z<p>You can set WinDbg as your postmortem debugger. This will launch the debugger and attach it to the process when the crash occurs. To install WinDbg for postmortem debugging, use the /I option (note it is <strong>capitalized</strong>):</p>
<pre><code>windbg /I
</code></pre>
<p>More details <a href="http://msdn.microsoft.com/en-us/library/cc266343.aspx" rel="nofollow">here</a>.</p>
<p>As to the cause, it's most probably an unitialized variable as the other answers suggest.</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186272#1862720Answer by fizzer for Program only crashes as release build -- how to debug?fizzer2008-10-09T07:34:21Z2008-10-09T07:34:21Z<p>I've found this <a href="http://www.codeproject.com/KB/debug/releasemode.aspx" rel="nofollow">this article</a> useful for your scenario. ISTR the compiler options were a little out of date. Look around your Visual Studio project options to see how to generate pdb files for your release build, etc.</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186280#1862801Answer by DocMax for Program only crashes as release build -- how to debug?DocMax2008-10-09T07:38:25Z2008-10-09T07:38:25Z<p>With regard to your problems getting diagnostic information, have you tried using adplus.vbs as an alternative to WinDbg.exe? To attach to a running process, use</p>
<pre><code>adplus.vbs -crash -p <process_id>
</code></pre>
<p>Or to start the application in the event that the crash happens quickly:</p>
<pre><code>adplus.vbs -crash -sc your_app.exe
</code></pre>
<p>Full info on adplus.vbs can be found at: <a href="http://support.microsoft.com/kb/286350" rel="nofollow">http://support.microsoft.com/kb/286350</a></p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186282#1862822Answer by Yuval Peled for Program only crashes as release build -- how to debug?Yuval Peled2008-10-09T07:38:51Z2008-10-09T07:38:51Z<p>In order to have a crash dump that you can analyze:</p>
<ol>
<li>Generate pdb files for your code.</li>
<li>You rebase to have your exe and dlls loaded in the same address.</li>
<li>Enable post mortem debugger such as <a href="http://support.microsoft.com/kb/308538" rel="nofollow">Dr. Watson</a></li>
<li>Check the crash failures address using a tool such as <a href="http://www.wintellect.com/CS/blogs/jrobbins/archive/2006/04/19/crashfinder-returns.aspx" rel="nofollow">crash finder</a>.</li>
</ol>
<p>You should also check out the tools in <a href="http://www.microsoft.com/whdc/devtools/debugging/default.mspx" rel="nofollow">Debugging tools for windows</a>.
You can monitor the application and see all the first chance exceptions that were prior to your second chance exception.</p>
<p>Hope it helps...</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186285#18628511Answer by James Curran for Program only crashes as release build -- how to debug?James Curran2008-10-09T07:41:26Z2008-10-09T07:41:26Z<p>In 100% of the cases I've seen or heard of, where a C or C++ program runs fine in the debugger but fails when run outside, the cause has been writing past the end of a function local array. (The debugger puts more on the stack, so you're less likely to overwrite something important.)</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186293#1862930Answer by Nick for Program only crashes as release build -- how to debug?Nick2008-10-09T07:46:18Z2008-10-09T07:46:18Z<p>It's suspicious that it would happen outside the debugger and not inside; running in the debugger does not normally change the application behavior. I would check the environment differences between the console and the IDE. Also, obviously, compile release without optimizations and with debug information, and see if that affects the behavior. Finally, check out the post-mortem debugging tools other people have suggested here, usually you can get some clue from them.</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186304#1863043Answer by Greg Whitfield for Program only crashes as release build -- how to debug?Greg Whitfield2008-10-09T07:51:03Z2008-10-09T07:51:03Z<p>Even though you have built your exe as a release one, you can still generate PDB (Program database) files that will allow you to stack trace, and do a limited amount of variable inspection.
In your build settings there is an option to create the PDB files. Turn this on and relink. Then try running from the IDE first to see if you get the crash. If so, then great - you're all set to look at things. If not, then when running from the command line you can do one of two things:</p>
<ol>
<li>Run EXE, and before the crash do an Attach To Process (Tools menu on Visual Studio).</li>
<li>After the crash, select the option to launch debugger.</li>
</ol>
<p>When asked to point to PDB files, browse to find them. If the PDB's were put in the same output folder as your EXE or DLL's they will probably be picked up automatically.</p>
<p>The PDB's provide a link to the source with enough symbol information to make it possible to see stack traces, variables etc. You can inspect the values as normal, but do be aware that you can get false readings as the optimisation pass may mean things only appear in registers, or things happen in a different order than you expect.</p>
<p>NB: I'm assuming a Windows/Visual Studio environment here.</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186308#186308-5Answer by wnoise for Program only crashes as release build -- how to debug?wnoise2008-10-09T07:52:03Z2008-10-09T07:52:03Z<p>I agree with Rolf. Because reproducibility is so important, you shouldn't have a non-debug mode. All your builds should be debuggable. Having two targets to debug more than doubles your debugging load. Just ship the "debug mode" version, unless it is unusable. In which case, make it usable.</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186370#1863704Answer by morechilli for Program only crashes as release build -- how to debug?morechilli2008-10-09T08:15:37Z2008-10-09T08:15:37Z<p>Things to look out for:</p>
<p>Array overruns - the visual studio debugger inserts padding which may stop crashes.</p>
<p>Race conditions - do you have multiple threads involved if so a race condition many only show up when an application is executed directly.</p>
<p>Linking - is your release build pulling in the correct libraries.</p>
<p>Things to try:</p>
<p>Minidump - really easy to use (just look it up in msdn) will give you a full crash dump for each thread. You just load the output into visual studio and it is as if you were debugging at the time of the crash.</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186397#1863970Answer by JTeagle for Program only crashes as release build -- how to debug?JTeagle2008-10-09T08:24:28Z2008-10-09T08:24:28Z<p>Debugging release builds can be a pain due to optimizations changing the order in which lines of your code appear to be executed. It can really get confusing!</p>
<p>One technique to at least narrow down the problem is to use MessageBox() to display quick statements stating what part of the program your code has got to ("Starting Foo()", "Starting Foo2()"); start putting them at the top of functions in the area of your code that you suspect (what were you doing at the time when it crashed?). When you can tell which function, change the message boxes to blocks of code or even individual lines within that function until you narrow it down to a few lines. Then you can start printing out the value of variables to see what state they are in at the point of crashing.</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186401#1864012Answer by deemok for Program only crashes as release build -- how to debug?deemok2008-10-09T08:25:20Z2008-10-09T08:25:20Z<p><p>Once i had a problem when app behaved similarily to yours. It turned out to be a nasty buffer overrun in sprintf. Naturally, it worked when run with a debugger attached. What i did, was to install an unhandled exception filter (<a href="http://msdn.microsoft.com/en-us/library/ms680634(VS.85).aspx" rel="nofollow">SetUnhandledExceptionFilter</a>) in which i simply blocked infinitely (using WaitForSingleObject on a bogus handle with a timeout value of INFINITE).
<p>So you could something along the lines of:</p>
<pre>
long __stdcall MyFilter(EXCEPTION_POINTERS *)
{
HANDLE hEvt=::CreateEventW(0,1,0,0);
if(hEvt)
{
if(WAIT_FAILED==::WaitForSingleObject(hEvt, INFINITE))
{
//log failure
}
}
}
// somewhere in your wmain/WinMain:
SetUnhandledExceptionFilter(MyFilter);
</pre>
<p>I then attached the debugger after the bug had manifested itself (gui program stopped responding).
<p>Then you can either take a dump and work with it later:</p>
<blockquote>
.dump /ma path_to_dump_file
</blockquote>
<p>Or debug it right away. The simplest way is to track where processor context has been saved by the runtime exception handling machinery:</p>
<blockquote>
s-d esp <i>Range</i> 1003f
</blockquote>
<p>Command will search stack address space for CONTEXT record(s) provided the length of search. I usually use something like <i>'l?10000'</i>. Note, do not use unsually large numbers as the record you're after usually near to the unhanded exception filter frame.
1003f is the combination of flags (i believe it corresponds to CONTEXT_FULL) used to capture the processor state.
Your search would look similar to this:</p>
<blockquote>
0:000> s-d esp l1000 1003f<br>
<b>0012c160</b> 0001003f 00000000 00000000 00000000 ?...............
</blockquote>
<p>Once you get results back, use the address in the cxr command:</p>
<blockquote>
.cxr <b>0012c160</b>
</blockquote>
<p><p>This will take you to this new CONTEXT, exactly at the time of crash (you will get exactly the stack trace at the time your app crashed).
Additionally, use:</p>
<blockquote>
.exr -1
</blockquote>
<p>to find out exactly which exception had occurred.</p>
<p>Hope it helps.</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186547#1865470Answer by Suma for Program only crashes as release build -- how to debug?Suma2008-10-09T09:39:30Z2008-11-18T12:01:34Z<h2>Ntdll.dll with debugger attached</h2>
<p>One little know difference between launching a program from the IDE or WinDbg as opposed to launching it from command line / desktop is that when launching with a debugger attached (i.e. IDE or WinDbg) ntdll.dll uses a different heap implementation which performs some little validation on the memory allocation/freeing. </p>
<p>You may read some relevant information in <a href="http://www.debuginfo.com/tips/userbpntdll.html" rel="nofollow">unexpected user breakpoint in ntdll.dll</a>. One tool which might be able to help you identifying the problem is <a href="http://support.microsoft.com/?id=286470" rel="nofollow">PageHeap.exe</a>. </p>
<h2>Crash analysis</h2>
<p>You did not write what is the "crash" you are experiencing. Once the program crashes and offers you to send the error information to the Microsoft, you should be able to click on the technical information and to check at least the exception code, and with some effort you can even perform post-mortem analysis (see <a href="http://stackoverflow.com/questions/132116/heisenbug-winapi-program-crashes-on-some-computers#132189">Heisenbug: WinApi program crashes on some computers)</a> for instructions)</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186638#1866380Answer by Vhaerun for Program only crashes as release build -- how to debug?Vhaerun2008-10-09T10:14:35Z2008-10-09T10:14:35Z<p>Try using <strong>_CrtCheckMemory()</strong> to see what state the allocated memory is in .
If everything goes well , <strong>_CrtCheckMemory</strong> returns <strong>TRUE</strong> , else <strong>FALSE</strong> .</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186888#1868880Answer by Marcin Gil for Program only crashes as release build -- how to debug?Marcin Gil2008-10-09T11:48:15Z2008-10-09T11:48:15Z<p>You might run your software with Global Flags enabled (Look in Debugging Tools for Windows). It will very often help to nail the problem.</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/187966#1879663Answer by Nik Reiman for Program only crashes as release build -- how to debug?Nik Reiman2008-10-09T16:04:55Z2008-10-09T16:04:55Z<p>After many hours of debugging, I finally found the cause of the problem, which was indeed caused by a buffer overflow, caused a single byte difference:</p>
<pre><code>char *end = static_cast<char*>(attr->data) + attr->dataSize;
</code></pre>
<p>This is a fencepost error (off-by-one error) and was fixed by:</p>
<pre><code>char *end = static_cast<char*>(attr->data) + attr->dataSize - 1;
</code></pre>
<p>The weird thing was, I put several calls to _CrtCheckMemory() around various parts of my code, and they always returned 1. I was able to find the source of the problem by placing "return false;" calls in the test case, and then eventually determining through trial-and-error where the fault was.</p>
<p>Thanks everybody for your comments -- I learned a lot about windbg.exe today! :)</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/356251#3562510Answer by mikhailitsky for Program only crashes as release build -- how to debug?mikhailitsky2008-12-10T14:33:22Z2008-12-10T14:33:22Z<p>Make your program generate a mini dump when the exception occurs, then open it up in a debugger (for example, in WinDbg). The key functions to look at: MiniDumpWriteDump, SetUnhandledExceptionFilter</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/1301042#13010420Answer by nick for Program only crashes as release build -- how to debug?nick2009-08-19T16:16:40Z2009-08-19T16:16:40Z<p>Vista SP1 actually has a really nice crash dump generator built into the system. Unfortunately, it isn't turned on by default!</p>
<p>See this article:
<a href="http://msdn.microsoft.com/en-us/library/bb787181%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb787181%28VS.85%29.aspx</a></p>
<p>The benefit of this approach is that no extra software needs to be installed on the affected system. Grip it and rip it, baby!</p>