[phobos] opinions on bug 5370

Steve Schveighoffer schveiguy at yahoo.com
Mon Aug 8 06:07:57 PDT 2011




>________________________________
>From: Dmitry Olshansky <dmitry.olsh at gmail.com>
>
>On 04.08.2011 7:21, Brad Roberts wrote:
>> http://d.puremagic.com/issues/show_bug.cgi?id=5370
>> 
>> It's listed as a regression, but it looks like a deliberate behavior change.  My personal opinion is that buffers don't
>> contain pointers.  They shouldn't participate in garbage collection.
>> 
>> Either way, a decision needs to be made and either the changes applied or the bug closed as won't fix.
>> 
>> Thoughts?
>
>When I filed it I was certain it's a regression, I discovered it while chasing memory corruption in my D2 port of DMDscript.
>All boiled down to "it works untill garbage collection", and then I found the cause:  the original code stores pointers to heap allocated objects in OutBuffer. So I think it _was_ supposed to be able to hold pointers to heap allocated stuff.
>Also grep code for:
>GC.clrAttr(data.ptr, GC.BlkAttr.NO_SCAN);
>I think this made it to scan GC  before array LRU append cache. Nowdays this part of code does nothing, since it somehow doesn't point to _block_. At any rate, I can wrap up the patch as pull request if I convinced anybody.

I think I can shed some light on this.

It's not so much the LRU cache but the array append code (that is the code that stores the number of *used* bytes).

In the case where a shared array gets longer than 4096 bytes (including metadata), there is the possibility to *extend* into consecutive pages.  If I store the metadata at the end of the block, then this scenario may occur:

1. thread A appends, gets the block info

2. thread B appends, gets the block info

3. thread A is able to extend to a consecutive page.  The metadata is moved to the end of the new page, and overwrites the original metadata with the appended data.
4. thread B, using its stale block info, reads the overwritten metadata, corruption ensues.

So I decided for blocks >= PAGESIZE should store the metadata at the beginning of the block.  This way, at least when using stale block info, thread B still sees valid metdata, and reallocates.

The other option I think is to hold the GC lock for the entire append operation, not just for the block lookup (I have a separate lock used to prevent races when modifying shared metadata).

If you have other ideas, I'd be open to changing it.

BTW, in my opinion, I think OutBuffer should simply be templated on the array type.

-Steve



More information about the phobos mailing list