Changeset 260343 in webkit
- Timestamp:
- Apr 19, 2020, 2:18:07 PM (5 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/APICallbackFunction.h
r259676 r260343 1 1 /* 2 * Copyright (C) 2013 , 2016Apple Inc. All rights reserved.2 * Copyright (C) 2013-2020 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 63 63 result = jsCast<T*>(toJS(functionRef))->functionCallback()(execRef, functionRef, thisObjRef, argumentCount, arguments.data(), &exception); 64 64 } 65 if (exception) 65 if (exception) { 66 66 throwException(globalObject, scope, toJS(globalObject, exception)); 67 return JSValue::encode(jsUndefined()); 68 } 67 69 68 70 // result must be a valid JSValue. … … 98 100 if (exception) { 99 101 throwException(globalObject, scope, toJS(globalObject, exception)); 100 return JSValue::encode( toJS(globalObject, exception));102 return JSValue::encode(jsUndefined()); 101 103 } 102 104 // result must be a valid JSValue. -
trunk/Source/JavaScriptCore/API/JSCallbackObjectFunctions.h
r259676 r260343 466 466 result = toJS(callAsConstructor(execRef, constructorRef, argumentCount, arguments.data(), &exception)); 467 467 } 468 if (exception) 468 if (exception) { 469 469 throwException(globalObject, scope, toJS(globalObject, exception)); 470 return JSValue::encode(jsUndefined()); 471 } 470 472 return JSValue::encode(result); 471 473 } … … 539 541 result = toJS(globalObject, callAsFunction(execRef, functionRef, thisObjRef, argumentCount, arguments.data(), &exception)); 540 542 } 541 if (exception) 543 if (exception) { 542 544 throwException(globalObject, scope, toJS(globalObject, exception)); 545 return JSValue::encode(jsUndefined()); 546 } 543 547 return JSValue::encode(result); 544 548 } -
trunk/Source/JavaScriptCore/API/JSObjectRef.cpp
r257529 r260343 349 349 if (!ctx || !object) { 350 350 ASSERT_NOT_REACHED(); 351 return 0;351 return nullptr; 352 352 } 353 353 JSGlobalObject* globalObject = toJS(ctx); … … 359 359 360 360 JSValue jsValue = jsObject->get(globalObject, propertyName->identifier(&vm)); 361 handleExceptionIfNeeded(scope, ctx, exception); 361 if (handleExceptionIfNeeded(scope, ctx, exception) == ExceptionStatus::DidThrow) 362 return nullptr; 362 363 return toRef(globalObject, jsValue); 363 364 } … … 408 409 409 410 bool result = jsObject->hasProperty(globalObject, ident); 410 handleExceptionIfNeeded(scope, ctx, exception); 411 if (handleExceptionIfNeeded(scope, ctx, exception) == ExceptionStatus::DidThrow) 412 return false; 411 413 return result; 412 414 } … … 429 431 430 432 JSValue jsValue = jsObject->get(globalObject, ident); 431 handleExceptionIfNeeded(scope, ctx, exception); 433 if (handleExceptionIfNeeded(scope, ctx, exception) == ExceptionStatus::DidThrow) 434 return nullptr; 432 435 return toRef(globalObject, jsValue); 433 436 } … … 481 484 482 485 bool result = JSCell::deleteProperty(jsObject, globalObject, ident); 483 handleExceptionIfNeeded(scope, ctx, exception); 486 if (handleExceptionIfNeeded(scope, ctx, exception) == ExceptionStatus::DidThrow) 487 return false; 484 488 return result; 485 489 } … … 489 493 if (!ctx) { 490 494 ASSERT_NOT_REACHED(); 491 return 0;495 return nullptr; 492 496 } 493 497 JSGlobalObject* globalObject = toJS(ctx); … … 499 503 500 504 JSValue jsValue = jsObject->get(globalObject, propertyIndex); 501 handleExceptionIfNeeded(scope, ctx, exception); 505 if (handleExceptionIfNeeded(scope, ctx, exception) == ExceptionStatus::DidThrow) 506 return nullptr; 502 507 return toRef(globalObject, jsValue); 503 508 } … … 536 541 537 542 bool result = JSCell::deleteProperty(jsObject, globalObject, propertyName->identifier(&vm)); 538 handleExceptionIfNeeded(scope, ctx, exception); 543 if (handleExceptionIfNeeded(scope, ctx, exception) == ExceptionStatus::DidThrow) 544 return false; 539 545 return result; 540 546 } -
trunk/Source/JavaScriptCore/API/JSValueRef.cpp
r253365 r260343 1 1 /* 2 * Copyright (C) 2006-20 19Apple Inc. All rights reserved.2 * Copyright (C) 2006-2020 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 236 236 237 237 bool result = JSValue::equal(globalObject, jsA, jsB); // false if an exception is thrown 238 handleExceptionIfNeeded(scope, ctx, exception); 238 if (handleExceptionIfNeeded(scope, ctx, exception) == ExceptionStatus::DidThrow) 239 return false; 239 240 240 241 return result; … … 273 274 return false; 274 275 bool result = jsConstructor->hasInstance(globalObject, jsValue); // false if an exception is thrown 275 handleExceptionIfNeeded(scope, ctx, exception); 276 if (handleExceptionIfNeeded(scope, ctx, exception) == ExceptionStatus::DidThrow) 277 return false; 276 278 return result; 277 279 } -
trunk/Source/JavaScriptCore/API/ObjCCallbackFunction.mm
r251425 r260343 1 1 /* 2 * Copyright (C) 2013 , 2016Apple Inc. All rights reserved.2 * Copyright (C) 2013-2020 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 68 68 void set(NSInvocation *invocation, NSInteger argumentNumber, JSContext *context, JSValueRef argument, JSValueRef* exception) override 69 69 { 70 ASSERT(exception && !*exception); 70 71 T value = (T)JSC::toInt32(JSValueToNumber([context JSGlobalContextRef], argument, exception)); 72 if (*exception) 73 return; 71 74 [invocation setArgument:&value atIndex:argumentNumber]; 72 75 } … … 77 80 void set(NSInvocation *invocation, NSInteger argumentNumber, JSContext *context, JSValueRef argument, JSValueRef* exception) override 78 81 { 82 ASSERT(exception && !*exception); 79 83 T value = (T)JSValueToNumber([context JSGlobalContextRef], argument, exception); 84 if (*exception) 85 return; 80 86 [invocation setArgument:&value atIndex:argumentNumber]; 81 87 } … … 108 114 void set(NSInvocation *invocation, NSInteger argumentNumber, JSContext *context, JSValueRef argument, JSValueRef* exception) override 109 115 { 116 ASSERT(exception && !*exception); 110 117 JSGlobalContextRef contextRef = [context JSGlobalContextRef]; 111 118 … … 131 138 void set(NSInvocation *invocation, NSInteger argumentNumber, JSContext *context, JSValueRef argument, JSValueRef* exception) override 132 139 { 140 ASSERT(exception && !*exception); 133 141 id value = valueToNumber([context JSGlobalContextRef], argument, exception); 142 if (*exception) 143 return; 134 144 [invocation setArgument:&value atIndex:argumentNumber]; 135 145 } … … 139 149 void set(NSInvocation *invocation, NSInteger argumentNumber, JSContext *context, JSValueRef argument, JSValueRef* exception) override 140 150 { 151 ASSERT(exception && !*exception); 141 152 id value = valueToString([context JSGlobalContextRef], argument, exception); 153 if (*exception) 154 return; 142 155 [invocation setArgument:&value atIndex:argumentNumber]; 143 156 } … … 147 160 void set(NSInvocation *invocation, NSInteger argumentNumber, JSContext *context, JSValueRef argument, JSValueRef* exception) override 148 161 { 162 ASSERT(exception && !*exception); 149 163 id value = valueToDate([context JSGlobalContextRef], argument, exception); 164 if (*exception) 165 return; 150 166 [invocation setArgument:&value atIndex:argumentNumber]; 151 167 } … … 155 171 void set(NSInvocation *invocation, NSInteger argumentNumber, JSContext *context, JSValueRef argument, JSValueRef* exception) override 156 172 { 173 ASSERT(exception && !*exception); 157 174 id value = valueToArray([context JSGlobalContextRef], argument, exception); 175 if (*exception) 176 return; 158 177 [invocation setArgument:&value atIndex:argumentNumber]; 159 178 } … … 163 182 void set(NSInvocation *invocation, NSInteger argumentNumber, JSContext *context, JSValueRef argument, JSValueRef* exception) override 164 183 { 184 ASSERT(exception && !*exception); 165 185 id value = valueToDictionary([context JSGlobalContextRef], argument, exception); 186 if (*exception) 187 return; 166 188 [invocation setArgument:&value atIndex:argumentNumber]; 167 189 } … … 448 470 static JSValueRef objCCallbackFunctionCallAsFunction(JSContextRef callerContext, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 449 471 { 472 ASSERT(exception && !*exception); 473 450 474 // Retake the API lock - we need this for a few reasons: 451 475 // (1) We don't want to support the C-API's confusing drops-locks-once policy - should only drop locks if we can do so recursively. … … 461 485 JSGlobalContextRef contextRef = [context JSGlobalContextRef]; 462 486 *exception = toRef(JSC::createTypeError(toJS(contextRef), "Cannot call a class constructor without |new|"_s)); 487 if (*exception) 488 return nullptr; 463 489 return JSValueMakeUndefined(contextRef); 464 490 } … … 473 499 [context endCallbackWithData:&callbackData]; 474 500 } 501 if (*exception) 502 return nullptr; 475 503 return result; 476 504 } … … 478 506 static JSObjectRef objCCallbackFunctionCallAsConstructor(JSContextRef callerContext, JSObjectRef constructor, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 479 507 { 508 ASSERT(exception && !*exception); 480 509 JSC::JSLockHolder locker(toJS(callerContext)); 481 510 … … 493 522 [context endCallbackWithData:&callbackData]; 494 523 } 524 if (*exception) 525 return nullptr; 495 526 496 527 JSGlobalContextRef contextRef = [context JSGlobalContextRef]; 497 if (*exception)498 return nullptr;499 500 528 if (!JSValueIsObject(contextRef, result)) { 501 529 *exception = toRef(JSC::createTypeError(toJS(contextRef), "Objective-C blocks called as constructors must return an object."_s)); 502 530 return nullptr; 503 531 } 532 ASSERT(!*exception); 504 533 return const_cast<JSObjectRef>(result); 505 534 } … … 541 570 JSValueRef ObjCCallbackFunctionImpl::call(JSContext *context, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 542 571 { 572 ASSERT(exception && !*exception); 543 573 JSGlobalContextRef contextRef = [context JSGlobalContextRef]; 544 574 … … 551 581 if (!target || ![target isKindOfClass:m_instanceClass.get()]) { 552 582 *exception = toRef(JSC::createTypeError(toJS(contextRef), "self type check failed for Objective-C instance method"_s)); 583 if (*exception) 584 return nullptr; 553 585 return JSValueMakeUndefined(contextRef); 554 586 } … … 561 593 if (!target || ![target isKindOfClass:m_instanceClass.get()]) { 562 594 *exception = toRef(JSC::createTypeError(toJS(contextRef), "self type check failed for Objective-C instance method"_s)); 595 if (*exception) 596 return nullptr; 563 597 return JSValueMakeUndefined(contextRef); 564 598 } … … 579 613 argument->set(m_invocation.get(), argumentNumber + firstArgument, context, value, exception); 580 614 if (*exception) 581 return JSValueMakeUndefined(contextRef);615 return nullptr; 582 616 ++argumentNumber; 583 617 } … … 586 620 587 621 JSValueRef result = m_result->get(m_invocation.get(), context, exception); 622 if (*exception) 623 return nullptr; 588 624 589 625 // Balance our call to -alloc with a call to -autorelease. We have to do this after calling -init -
trunk/Source/JavaScriptCore/ChangeLog
r260333 r260343 1 2020-04-19 Mark Lam <mark.lam@apple.com> 2 3 Fix missing exception checks and handling in JSC APIs. 4 https://bugs.webkit.org/show_bug.cgi?id=210715 5 <rdar://problem/61599658> 6 7 Reviewed by Saam Barati. 8 9 * API/APICallbackFunction.h: 10 (JSC::APICallbackFunction::call): 11 - We should return early if an exception was thrown. We should not be using the 12 result in any way since we cannot rely on it having any sane value. 13 (JSC::APICallbackFunction::construct): 14 - For consistency, also return an undefined here when an exception was thrown. 15 16 * API/JSCallbackObjectFunctions.h: 17 (JSC::JSCallbackObject<Parent>::construct): 18 (JSC::JSCallbackObject<Parent>::call): 19 - Return an undefined if an exception was thrown. Don't return the potentially 20 garbage result value. Who knows what the client code will do with it. Returning 21 an undefined here makes the code more robust. 22 23 * API/JSObjectRef.cpp: 24 (JSObjectGetProperty): 25 (JSObjectHasPropertyForKey): 26 (JSObjectGetPropertyForKey): 27 (JSObjectDeletePropertyForKey): 28 (JSObjectGetPropertyAtIndex): 29 (JSObjectDeleteProperty): 30 - Explicitly return a nullptr if an exception was thrown. The toRef() on the 31 result that follows the exception check may or may not return a nullptr 32 (also see toRef(JSC::VM& vm, JSC::JSValue v) for !CPU(ADDRESS64)). 33 34 * API/JSValueRef.cpp: 35 (JSValueIsEqual): 36 (JSValueIsInstanceOfConstructor): 37 - For consistency, make these return false if an exception is thrown. 38 39 * API/ObjCCallbackFunction.mm: 40 (JSC::objCCallbackFunctionCallAsFunction): 41 (JSC::objCCallbackFunctionCallAsConstructor): 42 (JSC::ObjCCallbackFunctionImpl::call): 43 - Add some assertions and return early if an exception was thrown. 44 1 45 2020-04-18 Keith Miller <keith_miller@apple.com> 2 46
Note:
See TracChangeset
for help on using the changeset viewer.