Issue metadata
Sign in to add a comment
|
Stack-overflow in v8::internal::ElementsAccessorBase<v8::internal::FastHoleyObjectElementsAccessor |
||||||||||||||||||||||
Issue descriptionDetailed report: https://clusterfuzz.com/testcase?key=5979023183446016 Fuzzer: ochang_js_fuzzer Job Type: linux_ubsan_vptr_d8 Platform Id: linux Crash Type: Stack-overflow Crash Address: 0x7ffc2cd9aff8 Crash State: v8::internal::ElementsAccessorBase<v8::internal::FastHoleyObjectElementsAccessor CollectElementIndices v8::internal::KeyAccumulator::CollectOwnElementIndices Sanitizer: undefined (UBSAN) Regressed: https://clusterfuzz.com/revisions?job=linux_ubsan_vptr_d8&range=48783:48784 Reproducer Testcase: https://clusterfuzz.com/download?testcase_id=5979023183446016 Issue filed automatically. See https://github.com/google/clusterfuzz-tools for more information.
,
Nov 7 2017
Minimized it to
function foo() {
for (const x of Array.prototype) {}
}
Array.prototype[Symbol.iterator] = function*() {
try { foo(); } catch (e) { }
try { foo(); } catch (e) { }
}
for (const x of Array.prototype) {}
there's some place where we don't do proper stack overflow checks.
,
Nov 7 2017
This doesn't seem to be related to my CL. Seems to be some edge case with the throwing logic? Michi, can you please take a look.
,
Nov 7 2017
,
Nov 13 2017
This is due to a missing stack check during generator resumption.
,
Nov 14 2017
ClusterFuzz has detected this issue as fixed in range 49326:49327. Detailed report: https://clusterfuzz.com/testcase?key=5979023183446016 Fuzzer: ochang_js_fuzzer Job Type: linux_ubsan_vptr_d8 Platform Id: linux Crash Type: Stack-overflow Crash Address: 0x7ffc2cd9aff8 Crash State: v8::internal::ElementsAccessorBase<v8::internal::FastHoleyObjectElementsAccessor CollectElementIndices v8::internal::KeyAccumulator::CollectOwnElementIndices Sanitizer: undefined (UBSAN) Regressed: https://clusterfuzz.com/revisions?job=linux_ubsan_vptr_d8&range=48783:48784 Fixed: https://clusterfuzz.com/revisions?job=linux_ubsan_vptr_d8&range=49326:49327 Reproducer Testcase: https://clusterfuzz.com/download?testcase_id=5979023183446016 See https://github.com/google/clusterfuzz-tools for more information. If you suspect that the result above is incorrect, try re-doing that job on the test case report page. |
|||||||||||||||||||||||
►
Sign in to add a comment |
|||||||||||||||||||||||
Comment 1 by ClusterFuzz
, Nov 7 2017Owner: bmeu...@chromium.org
Status: Assigned (was: Untriaged)