Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Add support to throw OOM if MarkedArgumentBuffer may overflow.
https://bugs.webkit.org/show_bug.cgi?id=179092 <rdar://problem/35116160> Reviewed by Saam Barati. Source/JavaScriptCore: The test for overflowing a MarkedArgumentBuffer will run for a ridiculously long time, which renders it unsuitable for automated tests. Instead, I've run a test manually to verify that an OutOfMemoryError will be thrown when an overflow occurs. The MarkedArgumentBuffer's destructor will now assert that the client has indeed checked for an overflow after invoking methods that may result in an overflow i.e. the destructor checks that MarkedArgumentBuffer::hasOverflowed() has been called. This is only done on debug builds. * API/JSObjectRef.cpp: (JSObjectMakeFunction): (JSObjectMakeArray): (JSObjectMakeDate): (JSObjectMakeRegExp): (JSObjectCallAsFunction): (JSObjectCallAsConstructor): * dfg/DFGOperations.cpp: * inspector/InjectedScriptManager.cpp: (Inspector::InjectedScriptManager::createInjectedScript): * inspector/JSJavaScriptCallFrame.cpp: (Inspector::JSJavaScriptCallFrame::scopeChain const): * interpreter/Interpreter.cpp: (JSC::Interpreter::executeProgram): * jsc.cpp: (functionDollarAgentReceiveBroadcast): * runtime/ArgList.cpp: (JSC::MarkedArgumentBuffer::slowEnsureCapacity): (JSC::MarkedArgumentBuffer::expandCapacity): (JSC::MarkedArgumentBuffer::slowAppend): * runtime/ArgList.h: (JSC::MarkedArgumentBuffer::~MarkedArgumentBuffer): (JSC::MarkedArgumentBuffer::appendWithAction): (JSC::MarkedArgumentBuffer::append): (JSC::MarkedArgumentBuffer::appendWithCrashOnOverflow): (JSC::MarkedArgumentBuffer::hasOverflowed): (JSC::MarkedArgumentBuffer::setNeedsOverflowCheck): (JSC::MarkedArgumentBuffer::clearNeedsOverflowCheck): * runtime/ArrayPrototype.cpp: * runtime/CommonSlowPaths.cpp: (JSC::SLOW_PATH_DECL): * runtime/GetterSetter.cpp: (JSC::callSetter): * runtime/IteratorOperations.cpp: (JSC::iteratorNext): (JSC::iteratorClose): * runtime/JSBoundFunction.cpp: (JSC::boundThisNoArgsFunctionCall): (JSC::boundFunctionCall): (JSC::boundThisNoArgsFunctionConstruct): (JSC::boundFunctionConstruct): * runtime/JSGenericTypedArrayViewConstructorInlines.h: (JSC::constructGenericTypedArrayViewFromIterator): * runtime/JSGenericTypedArrayViewPrototypeFunctions.h: (JSC::genericTypedArrayViewProtoFuncSlice): (JSC::genericTypedArrayViewPrivateFuncSubarrayCreate): * runtime/JSGlobalObject.cpp: (JSC::JSGlobalObject::haveABadTime): * runtime/JSInternalPromise.cpp: (JSC::JSInternalPromise::then): * runtime/JSJob.cpp: (JSC::JSJobMicrotask::run): * runtime/JSMapIterator.cpp: (JSC::JSMapIterator::createPair): * runtime/JSModuleLoader.cpp: (JSC::JSModuleLoader::provideFetch): (JSC::JSModuleLoader::loadAndEvaluateModule): (JSC::JSModuleLoader::loadModule): (JSC::JSModuleLoader::linkAndEvaluateModule): (JSC::JSModuleLoader::requestImportModule): * runtime/JSONObject.cpp: (JSC::Stringifier::toJSONImpl): (JSC::Stringifier::appendStringifiedValue): (JSC::Walker::callReviver): * runtime/JSObject.cpp: (JSC::ordinarySetSlow): (JSC::callToPrimitiveFunction): (JSC::JSObject::hasInstance): * runtime/JSPromise.cpp: (JSC::JSPromise::initialize): (JSC::JSPromise::resolve): * runtime/JSPromiseDeferred.cpp: (JSC::newPromiseCapability): (JSC::callFunction): * runtime/JSSetIterator.cpp: (JSC::JSSetIterator::createPair): * runtime/LiteralParser.cpp: (JSC::LiteralParser<CharType>::parse): * runtime/MapConstructor.cpp: (JSC::constructMap): * runtime/ObjectConstructor.cpp: (JSC::defineProperties): * runtime/ProxyObject.cpp: (JSC::performProxyGet): (JSC::ProxyObject::performInternalMethodGetOwnProperty): (JSC::ProxyObject::performHasProperty): (JSC::ProxyObject::performPut): (JSC::performProxyCall): (JSC::performProxyConstruct): (JSC::ProxyObject::performDelete): (JSC::ProxyObject::performPreventExtensions): (JSC::ProxyObject::performIsExtensible): (JSC::ProxyObject::performDefineOwnProperty): (JSC::ProxyObject::performGetOwnPropertyNames): (JSC::ProxyObject::performSetPrototype): (JSC::ProxyObject::performGetPrototype): * runtime/ReflectObject.cpp: (JSC::reflectObjectConstruct): * runtime/SetConstructor.cpp: (JSC::constructSet): * runtime/StringPrototype.cpp: (JSC::replaceUsingRegExpSearch): (JSC::replaceUsingStringSearch): * runtime/WeakMapConstructor.cpp: (JSC::constructWeakMap): * runtime/WeakSetConstructor.cpp: (JSC::constructWeakSet): * wasm/js/WasmToJS.cpp: (JSC::Wasm::wasmToJS): Source/WebCore: No new tests. The test for overflowing a MarkedArgumentBuffer will run for a ridiculously long time, which renders it unsuitable for automated tests. * Modules/plugins/QuickTimePluginReplacement.mm: (WebCore::QuickTimePluginReplacement::installReplacement): * bindings/js/JSCustomElementInterface.cpp: (WebCore::constructCustomElementSynchronously): (WebCore::JSCustomElementInterface::upgradeElement): (WebCore::JSCustomElementInterface::invokeCallback): * bindings/js/JSCustomXPathNSResolver.cpp: (WebCore::JSCustomXPathNSResolver::lookupNamespaceURI): * bindings/js/JSDOMBuiltinConstructorBase.cpp: (WebCore::JSDOMBuiltinConstructorBase::callFunctionWithCurrentArguments): * bindings/js/JSDOMConvertSequences.h: (WebCore::JSConverter<IDLSequence<T>>::convert): (WebCore::JSConverter<IDLFrozenArray<T>>::convert): * bindings/js/JSDOMConvertWebGL.cpp: (WebCore::convertToJSValue): * bindings/js/JSDOMIterator.h: (WebCore::jsPair): (WebCore::iteratorForEach): * bindings/js/JSDOMMapLike.cpp: (WebCore::forwardFunctionCallToBackingMap): (WebCore::forwardForEachCallToBackingMap): * bindings/js/JSDOMPromiseDeferred.cpp: (WebCore::DeferredPromise::callFunction): (WebCore::createRejectedPromiseWithTypeError): * bindings/js/JSErrorHandler.cpp: (WebCore::JSErrorHandler::handleEvent): * bindings/js/JSEventListener.cpp: (WebCore::JSEventListener::handleEvent): * bindings/js/JSLazyEventListener.cpp: (WebCore::JSLazyEventListener::initializeJSFunction const): * bindings/js/JSPluginElementFunctions.cpp: (WebCore::callPlugin): * bindings/js/JSReadableStreamPrivateConstructors.cpp: (WebCore::constructJSReadableStreamReaderGeneric): * bindings/js/ReadableStream.cpp: (WebCore::ReadableStream::create): (WebCore::ReadableStream::pipeTo): (WebCore::ReadableStream::tee): (WebCore::ReadableStream::lock): (WebCore::checkReadableStream): * bindings/js/ReadableStreamDefaultController.cpp: (WebCore::ReadableStreamDefaultController::invoke): * bindings/js/ScheduledAction.cpp: (WebCore::ScheduledAction::executeFunctionInContext): * bindings/js/SerializedScriptValue.cpp: (WebCore::CloneSerializer::recordObject): (WebCore::CloneSerializer::serialize): (WebCore::CloneDeserializer::readTerminal): (WebCore::CloneDeserializer::deserialize): * bindings/scripts/CodeGeneratorJS.pm: (GenerateCallbackImplementationContent): * bindings/scripts/test/JS/JSTestCallbackFunction.cpp: (WebCore::JSTestCallbackFunction::handleEvent): * bindings/scripts/test/JS/JSTestCallbackFunctionRethrow.cpp: (WebCore::JSTestCallbackFunctionRethrow::handleEvent): * bindings/scripts/test/JS/JSTestCallbackFunctionWithThisObject.cpp: (WebCore::JSTestCallbackFunctionWithThisObject::handleEvent): * bindings/scripts/test/JS/JSTestCallbackFunctionWithTypedefs.cpp: (WebCore::JSTestCallbackFunctionWithTypedefs::handleEvent): * bindings/scripts/test/JS/JSTestCallbackInterface.cpp: (WebCore::JSTestCallbackInterface::callbackWithNoParam): (WebCore::JSTestCallbackInterface::callbackWithArrayParam): (WebCore::JSTestCallbackInterface::callbackWithSerializedScriptValueParam): (WebCore::JSTestCallbackInterface::callbackWithStringList): (WebCore::JSTestCallbackInterface::callbackWithBoolean): (WebCore::JSTestCallbackInterface::callbackRequiresThisToPass): (WebCore::JSTestCallbackInterface::callbackWithAReturnValue): (WebCore::JSTestCallbackInterface::callbackThatRethrowsExceptions): (WebCore::JSTestCallbackInterface::callbackThatSkipsInvokeCheck): (WebCore::JSTestCallbackInterface::callbackWithThisObject): * bindings/scripts/test/JS/JSTestVoidCallbackFunction.cpp: (WebCore::JSTestVoidCallbackFunction::handleEvent): * bridge/NP_jsobject.cpp: * bridge/objc/WebScriptObject.mm: (-[WebScriptObject callWebScriptMethod:withArguments:]): * html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::updateCaptionContainer): (WebCore::HTMLMediaElement::didAddUserAgentShadowRoot): (WebCore::HTMLMediaElement::updateMediaControlsAfterPresentationModeChange): (WebCore::HTMLMediaElement::getCurrentMediaControlsStatus): * html/HTMLPlugInImageElement.cpp: (WebCore::HTMLPlugInImageElement::didAddUserAgentShadowRoot): * testing/Internals.cpp: (WebCore::Internals::cloneArrayBuffer): Canonical link: https://commits.webkit.org/195256@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@224309 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
533 additions
and 61 deletions.
- +36 −0 Source/JavaScriptCore/API/JSObjectRef.cpp
- +128 −0 Source/JavaScriptCore/ChangeLog
- +1 −0 Source/JavaScriptCore/dfg/DFGOperations.cpp
- +2 −1 Source/JavaScriptCore/inspector/InjectedScriptManager.cpp
- +8 −1 Source/JavaScriptCore/inspector/JSJavaScriptCallFrame.cpp
- +1 −0 Source/JavaScriptCore/interpreter/Interpreter.cpp
- +2 −0 Source/JavaScriptCore/jsc.cpp
- +19 −6 Source/JavaScriptCore/runtime/ArgList.cpp
- +35 −6 Source/JavaScriptCore/runtime/ArgList.h
- +1 −0 Source/JavaScriptCore/runtime/ArrayPrototype.cpp
- +1 −0 Source/JavaScriptCore/runtime/CommonSlowPaths.cpp
- +2 −1 Source/JavaScriptCore/runtime/GetterSetter.cpp
- +2 −0 Source/JavaScriptCore/runtime/IteratorOperations.cpp
- +16 −0 Source/JavaScriptCore/runtime/JSBoundFunction.cpp
- +5 −1 Source/JavaScriptCore/runtime/JSGenericTypedArrayViewConstructorInlines.h
- +2 −0 Source/JavaScriptCore/runtime/JSGenericTypedArrayViewPrototypeFunctions.h
- +1 −0 Source/JavaScriptCore/runtime/JSGlobalObject.cpp
- +2 −1 Source/JavaScriptCore/runtime/JSInternalPromise.cpp
- +3 −1 Source/JavaScriptCore/runtime/JSJob.cpp
- +2 −1 Source/JavaScriptCore/runtime/JSMapIterator.cpp
- +6 −1 Source/JavaScriptCore/runtime/JSModuleLoader.cpp
- +3 −0 Source/JavaScriptCore/runtime/JSONObject.cpp
- +3 −0 Source/JavaScriptCore/runtime/JSObject.cpp
- +3 −1 Source/JavaScriptCore/runtime/JSPromise.cpp
- +3 −1 Source/JavaScriptCore/runtime/JSPromiseDeferred.cpp
- +2 −1 Source/JavaScriptCore/runtime/JSSetIterator.cpp
- +3 −3 Source/JavaScriptCore/runtime/LiteralParser.cpp
- +2 −1 Source/JavaScriptCore/runtime/MapConstructor.cpp
- +1 −0 Source/JavaScriptCore/runtime/ObjectConstructor.cpp
- +14 −1 Source/JavaScriptCore/runtime/ProxyObject.cpp
- +4 −0 Source/JavaScriptCore/runtime/ReflectObject.cpp
- +2 −1 Source/JavaScriptCore/runtime/SetConstructor.cpp
- +5 −0 Source/JavaScriptCore/runtime/StringPrototype.cpp
- +2 −1 Source/JavaScriptCore/runtime/WeakMapConstructor.cpp
- +2 −1 Source/JavaScriptCore/runtime/WeakSetConstructor.cpp
- +4 −0 Source/JavaScriptCore/wasm/js/WasmToJS.cpp
- +96 −0 Source/WebCore/ChangeLog
- +1 −0 Source/WebCore/Modules/plugins/QuickTimePluginReplacement.mm
- +4 −1 Source/WebCore/bindings/js/JSCustomElementInterface.cpp
- +1 −0 Source/WebCore/bindings/js/JSCustomXPathNSResolver.cpp
- +7 −1 Source/WebCore/bindings/js/JSDOMBuiltinConstructorBase.cpp
- +13 −1 Source/WebCore/bindings/js/JSDOMConvertSequences.h
- +2 −0 Source/WebCore/bindings/js/JSDOMConvertWebGL.cpp
- +6 −1 Source/WebCore/bindings/js/JSDOMIterator.h
- +2 −0 Source/WebCore/bindings/js/JSDOMMapLike.cpp
- +2 −0 Source/WebCore/bindings/js/JSDOMPromiseDeferred.cpp
- +2 −1 Source/WebCore/bindings/js/JSErrorHandler.cpp
- +1 −0 Source/WebCore/bindings/js/JSEventListener.cpp
- +1 −0 Source/WebCore/bindings/js/JSLazyEventListener.cpp
- +1 −0 Source/WebCore/bindings/js/JSPluginElementFunctions.cpp
- +2 −1 Source/WebCore/bindings/js/JSReadableStreamPrivateConstructors.cpp
- +5 −0 Source/WebCore/bindings/js/ReadableStream.cpp
- +1 −0 Source/WebCore/bindings/js/ReadableStreamDefaultController.cpp
- +10 −2 Source/WebCore/bindings/js/ScheduledAction.cpp
- +20 −20 Source/WebCore/bindings/js/SerializedScriptValue.cpp
- +1 −0 Source/WebCore/bindings/scripts/CodeGeneratorJS.pm
- +1 −0 Source/WebCore/bindings/scripts/test/JS/JSTestCallbackFunction.cpp
- +1 −0 Source/WebCore/bindings/scripts/test/JS/JSTestCallbackFunctionRethrow.cpp
- +1 −0 Source/WebCore/bindings/scripts/test/JS/JSTestCallbackFunctionWithThisObject.cpp
- +1 −0 Source/WebCore/bindings/scripts/test/JS/JSTestCallbackFunctionWithTypedefs.cpp
- +10 −0 Source/WebCore/bindings/scripts/test/JS/JSTestCallbackInterface.cpp
- +1 −0 Source/WebCore/bindings/scripts/test/JS/JSTestVoidCallbackFunction.cpp
- +4 −1 Source/WebCore/bridge/NP_jsobject.cpp
- +2 −1 Source/WebCore/bridge/objc/WebScriptObject.mm
- +4 −0 Source/WebCore/html/HTMLMediaElement.cpp
- +1 −0 Source/WebCore/html/HTMLPlugInImageElement.cpp
- +1 −0 Source/WebCore/testing/Internals.cpp
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.