• Omer Katz's avatar
    cppgc: Add missing guard for PersistentNode allocation. · d98b12d3
    Omer Katz authored
    Two threads might get the same PersistentNode because the
    BasicCrossThreadPersistent ctor wasn't taking a lock. Then if one thread
    frees the node and the other initalizes it or updates its owner, we get
    some random object in our free list of PersistentNodes.
    
    I debug a crash in Assign(Unsafe) and Clear where the PersistentNode
    seemed to be allocated on stack. Empirically, adding this guard resolved
    it. I can't confirm in the code that the scenario above is what was
    happening.
    
    Drive-by: adding a few DCHECKs.
    
    Bug: chromium:1056170
    Change-Id: I37d8ed5bb942a124c98d7524b7f04fe8ccb2aefd
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2718144
    Commit-Queue: Omer Katz <omerkatz@chromium.org>
    Reviewed-by: 's avatarMichael Lippautz <mlippautz@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#73023}
    d98b12d3
Name
Last commit
Last update
..
internal Loading commit data...
DEPS Loading commit data...
OWNERS Loading commit data...
README.md Loading commit data...
allocation.h Loading commit data...
common.h Loading commit data...
cross-thread-persistent.h Loading commit data...
custom-space.h Loading commit data...
default-platform.h Loading commit data...
ephemeron-pair.h Loading commit data...
garbage-collected.h Loading commit data...
heap-consistency.h Loading commit data...
heap-state.h Loading commit data...
heap-statistics.h Loading commit data...
heap.h Loading commit data...
liveness-broker.h Loading commit data...
macros.h Loading commit data...
member.h Loading commit data...
name-provider.h Loading commit data...
object-size-trait.h Loading commit data...
persistent.h Loading commit data...
platform.h Loading commit data...
prefinalizer.h Loading commit data...
process-heap-statistics.h Loading commit data...
sentinel-pointer.h Loading commit data...
source-location.h Loading commit data...
testing.h Loading commit data...
trace-trait.h Loading commit data...
type-traits.h Loading commit data...
visitor.h Loading commit data...