Commit 8606664b authored by hpayer's avatar hpayer Committed by Commit bot

Filter out slot buffer slots, that point to SMIs in dead objects.

The following situation may happen which reproduces this bug:
(1) We allocate JSObject A on an evacuation candidate.
(2) We allocate JSObject B on a non-evacuation candidate.
(3) Incremental marking starts and marks object A and B.
(4) We create a reference from B.field = A; which records the slot B.field since A is on an evacuation candidate.
(5) After that we write a SMI into B.field.
(6) After that B goes into dictionary mode and shrinks its original size. B.field is now outside of the JSObject, i.e B.field is in memory that will be freed by the sweeper threads.
(7) GC is triggered.
(8) BUG: Slots buffer filtering walks over the slots buffer, SMIs are not filtered out because we assumed that SMIs are just ignored when the slots get updated later. However, recorded SMI slots of dead objects may be overwritten by double values at evacuation time.
(9) During evacuation, a heap number that looks like a valid pointer is moved over B.field.
(10) The slots buffer is scanned for updates, follows B.field since it looks like a pointer (the double value looks like a pointer), and crashes.

BUG=chromium:519577,chromium:454297
LOG=y

Review URL: https://codereview.chromium.org/1286343004

Cr-Commit-Position: refs/heads/master@{#30200}
parent 40f6e80d
...@@ -4497,12 +4497,10 @@ void SlotsBuffer::RemoveInvalidSlots(Heap* heap, SlotsBuffer* buffer) { ...@@ -4497,12 +4497,10 @@ void SlotsBuffer::RemoveInvalidSlots(Heap* heap, SlotsBuffer* buffer) {
ObjectSlot slot = slots[slot_idx]; ObjectSlot slot = slots[slot_idx];
if (!IsTypedSlot(slot)) { if (!IsTypedSlot(slot)) {
Object* object = *slot; Object* object = *slot;
if (object->IsHeapObject()) { if ((object->IsHeapObject() && heap->InNewSpace(object)) ||
if (heap->InNewSpace(object) || !heap->mark_compact_collector()->IsSlotInLiveObject(
!heap->mark_compact_collector()->IsSlotInLiveObject( reinterpret_cast<Address>(slot))) {
reinterpret_cast<Address>(slot))) { slots[slot_idx] = kRemovedEntry;
slots[slot_idx] = kRemovedEntry;
}
} }
} else { } else {
++slot_idx; ++slot_idx;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment