Changeset 253515 in webkit


Ignore:
Timestamp:
Dec 13, 2019, 5:51:00 PM (5 years ago)
Author:
mark.lam@apple.com
Message:

Fix bad exception assertion in ExceptionHelpers.cpp's createError().
https://bugs.webkit.org/show_bug.cgi?id=205230
<rdar://problem/57875688>

Reviewed by Yusuke Suzuki.

JSTests:

  • stress/test-exception-assert-in-ExceptionHelpers-createError.js: Added.

Source/JavaScriptCore:

The code in createError() was doing the following:

String valueDescription = errorDescriptionForValue(globalObject, value);

EXCEPTION_ASSERT(scope.exception()
!!valueDescription);

if (!valueDescription) {

scope.clearException();
return createOutOfMemoryError(globalObject);

}

If errorDescriptionForValue() throws an exception, then we expect the
valueDescription string to be null so that we can throw an OutOfMemoryError.
However, errorDescriptionForValue() can detect an imminent overflow in String
length and just return a null string without throwing an exception which fails
the above assertion.

The fix is to simply do an explicit exception check in addition to the null string
check and remove the assertion.

  • runtime/ExceptionHelpers.cpp:

(JSC::createError):

Location:
trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r253460 r253515  
     12019-12-13  Mark Lam  <mark.lam@apple.com>
     2
     3        Fix bad exception assertion in ExceptionHelpers.cpp's createError().
     4        https://bugs.webkit.org/show_bug.cgi?id=205230
     5        <rdar://problem/57875688>
     6
     7        Reviewed by Yusuke Suzuki.
     8
     9        * stress/test-exception-assert-in-ExceptionHelpers-createError.js: Added.
     10
    1112019-12-12  Yusuke Suzuki  <ysuzuki@apple.com>
    212
  • trunk/Source/JavaScriptCore/ChangeLog

    r253500 r253515  
     12019-12-13  Mark Lam  <mark.lam@apple.com>
     2
     3        Fix bad exception assertion in ExceptionHelpers.cpp's createError().
     4        https://bugs.webkit.org/show_bug.cgi?id=205230
     5        <rdar://problem/57875688>
     6
     7        Reviewed by Yusuke Suzuki.
     8
     9        The code in createError() was doing the following:
     10
     11            String valueDescription = errorDescriptionForValue(globalObject, value);
     12            EXCEPTION_ASSERT(scope.exception() || !!valueDescription);
     13            if (!valueDescription) {
     14                scope.clearException();
     15                return createOutOfMemoryError(globalObject);
     16            }
     17
     18        If errorDescriptionForValue() throws an exception, then we expect the
     19        valueDescription string to be null so that we can throw an OutOfMemoryError.
     20        However, errorDescriptionForValue() can detect an imminent overflow in String
     21        length and just return a null string without throwing an exception which fails
     22        the above assertion.
     23
     24        The fix is to simply do an explicit exception check in addition to the null string
     25        check and remove the assertion.
     26
     27        * runtime/ExceptionHelpers.cpp:
     28        (JSC::createError):
     29
    1302019-12-13  Saam Barati  <sbarati@apple.com>
    231
  • trunk/Source/JavaScriptCore/runtime/ExceptionHelpers.cpp

    r253458 r253515  
    267267
    268268    String valueDescription = errorDescriptionForValue(globalObject, value);
    269     EXCEPTION_ASSERT(scope.exception() || !!valueDescription);
    270     if (!valueDescription) {
     269    if (scope.exception() || !valueDescription) {
     270        // When we see an exception, we're not returning immediately because
     271        // we're in a CatchScope, i.e. no exceptions are thrown past this scope.
     272        // We're using a CatchScope because the contract for createError() is
     273        // that it only creates an error object; it doesn't throw it.
    271274        scope.clearException();
    272275        return createOutOfMemoryError(globalObject);
Note: See TracChangeset for help on using the changeset viewer.