What determines what is written to a C++ pointer when delete is called? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T23:33:40Zhttp://stackoverflow.com/feeds/question/835922http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/835922/what-determines-what-is-written-to-a-c-pointer-when-delete-is-called7What determines what is written to a C++ pointer when delete is called?pj45332009-05-07T17:12:57Z2009-05-13T21:55:08Z
<p>I have a pointer to a given class. Lets say, for example, the pointer is:</p>
<p>0x24083094</p>
<p>That pointer points to:</p>
<p>0x03ac9184</p>
<p>Which is the virtual function table of my class. That makes sense to me. In windbg, everything looks correct.</p>
<p>I delete said pointer. Now at 0x24083094 is:</p>
<p>0x604751f8</p>
<p>But it isn't some random garbage, that address is put in there every time, it is consistently 0x604751f8! So much so that I can actually use that address to determine if that pointer was deleted, between executions of my application!</p>
<p>But Why? How does it determine that 0x604751f8 should be written there?</p>
<p>For the record, I am using windows, building under visual studio 2003. </p>
<p><strong>EDIT:</strong> I know I can't rely on that value being set, even if it does appear to be consistent, but can I rely on it being different? ie, 0x03ac9184 will not be at 0x24083094 if the pointer is deleted, right? WHAT is put there could be anything, but 0x03ac9184 will definitely not be there (or else I could still call methods, since that is the virtual function table). Am I right?</p>
<p><strong>Second EDIT:</strong> I feel like I have answer... can't rely on anything after it is deleted. Maybe some background will help people see where I am coming from. Essentially, I am trying to fix a bug where a pointer gets deleted out from under me. Its a long story, I won't go into the details. Basically, I am trying to detect that I am in this situation, so I can exit gracefully from my function. I suppose the easiest and best way is to just figure out who actually owns this pointer, and ask him if anything has changed. So I am going to implement a fix like that. It avoids any of this c++ delete hacker-y I was discussing. </p>
<p><strong>HOWEVER</strong>, the interesting thing is that in our code we have a class called 'BogusObject' that essentially acts as a tray catching people that accidentally dereference freed objects. Basically, we hook our own delete functions and bash the BogusObject class into the vtable of any freed class. Then if someone calls something they get a nice message saying something to the effect of "hey, something is wrong dude.". This is happening in my case. ie 0x604751f8+(someoffset) is inside the BogusObject class. <strong>BUT WE NO LONGER USE BOGUSOBJECT!!!!</strong> It literally isn't setup anywhere (even links properly if I completely remove the BogusObject class), and yet I still end up getting the nice message saying something is wrong! But I am now of the opinion that it is a coincidence. </p>
<p>For some reason the runtime is putting that 0x604751f8 value in this pointer when it is deleted, and that just happens to correspond with the one class that has a purpose to catch situations like this! weird. But on to bigger and better bugs! </p>
<p>thanks for the help!</p>
http://stackoverflow.com/questions/835922/what-determines-what-is-written-to-a-c-pointer-when-delete-is-called/835928#83592815Answer by Eclipse for What determines what is written to a C++ pointer when delete is called?Eclipse2009-05-07T17:14:56Z2009-05-07T18:37:33Z<p>Nothing in the standard determines what gets written there. Visual studio (at least in debug mode) will often write sentinal values all over the place to help in catching bugs early.</p>
<p>This value is not something you can rely on, but if you ever find that value popping up in your program mysteriously, you can assume that somewhere you are referencing deleted memory. See <a href="http://stackoverflow.com/questions/370195/when-and-why-will-an-os-initialise-memory-to-0xcd-0xdd-etc-on-malloc-free-new/370362#370362">this answer</a> for a list of values under one compiler.</p>
<p>It's also entirely possible that it's a free list pointer, pointing to the next piece of free memory. Most memory allocators keep their free memory in a linked list of sorts, using the free memory they are tracking to store the tracking data.</p>
<p>In any case, you MUST NOT use that pointer value for anything you want to keep working, unless you call up microsoft and get some documentation saying why that value is what it is, and get them to guarantee that it will not change. And even then, know that your code is now tied to one compiler's behaviour. In C++, accessing unallocated memory is undefined and evil.</p>
<p>Edit:
You can't even rely on that value changing after a delete. There's nothing that says a compiler needs to modify the data on delete. </p>
http://stackoverflow.com/questions/835922/what-determines-what-is-written-to-a-c-pointer-when-delete-is-called/835940#8359402Answer by Cătălin Pitiș for What determines what is written to a C++ pointer when delete is called?Cătălin Pitiș2009-05-07T17:16:55Z2009-05-07T17:16:55Z<p>Just calling the delete operator for a pointer doesn't mean that the "deleted" memory will be cleared. It will only call the destructor of the deleted object(s) and marks the allocated heap memory as deallocated. (this is the default behavior of the delete operator).</p>
<p>If you need to clear the memory content when deleting, then you need to override the delete operator.</p>
http://stackoverflow.com/questions/835922/what-determines-what-is-written-to-a-c-pointer-when-delete-is-called/835969#8359695Answer by Michael Burr for What determines what is written to a C++ pointer when delete is called?Michael Burr2009-05-07T17:23:09Z2009-05-07T17:23:09Z<p>One you delete an object the memory it was using gets put back into the free store (heap). Of course the free store will have its own data structures (and possibly debugging data) that it will apply to that memory.</p>
<p>What the particular value you're looking at means? Could be almost anything.</p>
http://stackoverflow.com/questions/835922/what-determines-what-is-written-to-a-c-pointer-when-delete-is-called/835972#8359722Answer by Serapth for What determines what is written to a C++ pointer when delete is called?Serapth2009-05-07T17:24:13Z2009-05-07T17:24:13Z<p>As Josh said, there are a number of values that can be inserted, to make life easier for the debugger with debug builds. These are compiler specific and in no way can be relied on. In a release build, I believe the default behavior of most C++ compilers is to do nothing with the memory that is freed, so, until that address space is allocated again, the contents will basically be what ever was there before, of course, you should NEVER rely on this.</p>
http://stackoverflow.com/questions/835922/what-determines-what-is-written-to-a-c-pointer-when-delete-is-called/836080#8360802Answer by Earwicker for What determines what is written to a C++ pointer when delete is called?Earwicker2009-05-07T17:46:39Z2009-05-07T17:46:39Z<p>There is almost certainly a specific internal meaning to the value that appears every time you delete the object.</p>
<p>However, it may change with the next version of Visual C++, and will certainly be different on other vendors compilers.</p>
<p>The fact that it appears to be the same every time you delete an object <em>does not signify anything useful</em>. Nor can it even be potentially useful. Supposing you found some way to take advantage of it, it would be an appalling hack to do so, and you'd regret it eventually. </p>
<p>Try to put it out of your mind!</p>
http://stackoverflow.com/questions/835922/what-determines-what-is-written-to-a-c-pointer-when-delete-is-called/836082#8360822Answer by florin for What determines what is written to a C++ pointer when delete is called?florin2009-05-07T17:47:21Z2009-05-07T17:47:21Z<p>As Michael Burr said earlier, the memory goes back to the free store. Some free stores are implemented as linked lists, with the ->next pointer placed at the beginning of the free buffer. It is possible that the magic number that you are seeing (0x604751f8) to be the 'end of list' guard. You can check by performing the following experiment:</p>
<pre><code>Foo* f = new Foo();
Bar* b = new Bar();
// make a note of the values of f and b _pointers_
delete b; // check that b points now to 0x604751f8
delete f; // check that f points now to 0x604751f8
// now check that does b point to; it might point to f!
</code></pre>
<p>Let us know what you find!</p>
http://stackoverflow.com/questions/835922/what-determines-what-is-written-to-a-c-pointer-when-delete-is-called/836164#8361642Answer by Chris Dodd for What determines what is written to a C++ pointer when delete is called?Chris Dodd2009-05-07T18:05:57Z2009-05-07T18:05:57Z<p>Most likely this pointer value is the vtable of the base class. When a destructor for a derived class runs, after it completes its normal body, it 'recasts' the memory as the base type (basically, writing the base class vtable pointer into the object) and then calls the base class destructor.</p>
<p>Note that this behavior is an internal implementation detail of the compiler's runtime C++ support, so other compilers (or future versions of the same compiler) may do something completely different. But this 'convert vtable to base class and call the base class destructor' is fairly common and dates back to the original cfront implementation of C++</p>
http://stackoverflow.com/questions/835922/what-determines-what-is-written-to-a-c-pointer-when-delete-is-called/836181#8361812Answer by Daniel Daranas for What determines what is written to a C++ pointer when delete is called?Daniel Daranas2009-05-07T18:11:22Z2009-05-12T08:54:49Z<p>The program is trying to tell you something. A date, a telephone number, who knows?</p>
<p>Now seriously, this is <strong>not specified</strong>, totally <strong>implementation-dependent</strong>, and of course trying to dereference that pointer after <code>delete</code> would lead to undefined behaviour. So, in short, <strong>who cares?</strong></p>
http://stackoverflow.com/questions/835922/what-determines-what-is-written-to-a-c-pointer-when-delete-is-called/836189#8361892Answer by Joshua for What determines what is written to a C++ pointer when delete is called?Joshua2009-05-07T18:13:16Z2009-05-07T18:13:16Z<p>No, you cannot rely on it being set. You cannot even rely on it being different.</p>
<p>MS-DOS heap managers often allowed using freed memory until the next call to malloc. New and delete in that era called malloc and free.</p>
<p>These days, most heap managers are reasonable about returning memory to the OS, which means you cannot even rely on it being readable! Even one ones that still allow it (glibc has a bwd-compat mode that allows it) you are subject to thread-race conditions.</p>
<p>Also, delete is allowed to change the pointer to NULL if it is an lvalue.</p>
<p>Once you call delete, don't even think about dereferencing the pointer.</p>
http://stackoverflow.com/questions/835922/what-determines-what-is-written-to-a-c-pointer-when-delete-is-called/860630#8606300Answer by Gigi for What determines what is written to a C++ pointer when delete is called?Gigi2009-05-13T21:55:08Z2009-05-13T21:55:08Z<p>You have access to the CRT source code in Visual Studio. You could take a look. I did once to better understand a bug I had.</p>