1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946
|
/*
* Copyright (C) 1999-2001 Harri Porten (porten@kde.org)
* Copyright (C) 2001 Peter Kelly (pmk@post.com)
* Copyright (C) 2006-2020 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "config.h"
#include "ScriptController.h"
#include "BridgeJSC.h"
#include "CachedScriptFetcher.h"
#include "CommonVM.h"
#include "ContentSecurityPolicy.h"
#include "DOMWrapperWorld.h"
#include "DocumentInlines.h"
#include "DocumentLoader.h"
#include "Event.h"
#include "FrameLoader.h"
#include "HTMLPlugInElement.h"
#include "InspectorInstrumentation.h"
#include "JSDOMBindingSecurity.h"
#include "JSDOMExceptionHandling.h"
#include "JSDocument.h"
#include "JSExecState.h"
#include "JSLocalDOMWindow.h"
#include "LoadableModuleScript.h"
#include "LocalFrame.h"
#include "LocalFrameLoaderClient.h"
#include "Logging.h"
#include "ModuleFetchFailureKind.h"
#include "ModuleFetchParameters.h"
#include "Page.h"
#include "PageConsoleClient.h"
#include "PageGroup.h"
#include "PaymentCoordinator.h"
#include "RunJavaScriptParameters.h"
#include "RuntimeApplicationChecks.h"
#include "ScriptDisallowedScope.h"
#include "ScriptSourceCode.h"
#include "ScriptableDocumentParser.h"
#include "Settings.h"
#include "UserGestureIndicator.h"
#include "WebCoreJITOperations.h"
#include "WebCoreJSClientData.h"
#include "runtime_root.h"
#include <JavaScriptCore/AbstractModuleRecord.h>
#include <JavaScriptCore/Debugger.h>
#include <JavaScriptCore/Heap.h>
#include <JavaScriptCore/ImportMap.h>
#include <JavaScriptCore/InitializeThreading.h>
#include <JavaScriptCore/JSFunction.h>
#include <JavaScriptCore/JSInternalPromise.h>
#include <JavaScriptCore/JSLock.h>
#include <JavaScriptCore/JSModuleRecord.h>
#include <JavaScriptCore/JSNativeStdFunction.h>
#include <JavaScriptCore/JSScriptFetchParameters.h>
#include <JavaScriptCore/JSScriptFetcher.h>
#include <JavaScriptCore/ScriptCallStack.h>
#include <JavaScriptCore/StrongInlines.h>
#include <JavaScriptCore/SyntheticModuleRecord.h>
#include <JavaScriptCore/WeakGCMapInlines.h>
#include <JavaScriptCore/WebAssemblyModuleRecord.h>
#include <wtf/GenerateProfiles.h>
#include <wtf/SetForScope.h>
#include <wtf/SharedTask.h>
#include <wtf/Threading.h>
#include <wtf/text/TextPosition.h>
#define SCRIPTCONTROLLER_RELEASE_LOG_ERROR(channel, fmt, ...) RELEASE_LOG_ERROR(channel, "%p - ScriptController::" fmt, this, ##__VA_ARGS__)
namespace WebCore {
using namespace JSC;
enum class WebCoreProfileTag { };
void ScriptController::initializeMainThread()
{
#if !PLATFORM(IOS_FAMILY)
JSC::initialize();
WTF::initializeMainThread();
WebCore::populateJITOperations();
#endif
WTF::registerProfileGenerationCallback<WebCoreProfileTag>("WebCore");
}
ScriptController::ScriptController(LocalFrame& frame)
: m_frame(frame)
, m_sourceURL(0)
, m_paused(false)
#if PLATFORM(COCOA)
, m_windowScriptObject(0)
#endif
{
}
ScriptController::~ScriptController()
{
disconnectPlatformScriptObjects();
if (m_cacheableBindingRootObject) {
JSLockHolder lock(commonVM());
m_cacheableBindingRootObject->invalidate();
m_cacheableBindingRootObject = nullptr;
}
}
JSC::JSValue ScriptController::evaluateInWorldIgnoringException(const ScriptSourceCode& sourceCode, DOMWrapperWorld& world)
{
auto result = evaluateInWorld(sourceCode, world);
return result ? result.value() : JSC::JSValue { };
}
ValueOrException ScriptController::evaluateInWorld(const ScriptSourceCode& sourceCode, DOMWrapperWorld& world)
{
auto& vm = world.vm();
JSLockHolder lock(vm);
if (vm.hasPendingTerminationException()) {
ExceptionDetails details;
return makeUnexpected(details);
}
const SourceCode& jsSourceCode = sourceCode.jsSourceCode();
const URL& sourceURL = jsSourceCode.provider()->sourceOrigin().url();
// evaluate code. Returns the JS return value or 0
// if there was none, an error occurred or the type couldn't be converted.
// inlineCode is true for <a href="javascript:doSomething()">
// and false for <script>doSomething()</script>. Check if it has the
// expected value in all cases.
// See smart window.open policy for where this is used.
auto& proxy = jsWindowProxy(world);
auto& globalObject = *proxy.window();
Ref protector { m_frame };
SetForScope sourceURLScope(m_sourceURL, &sourceURL);
InspectorInstrumentation::willEvaluateScript(m_frame, sourceURL.string(), sourceCode.startLine(), sourceCode.startColumn());
NakedPtr<JSC::Exception> evaluationException;
JSValue returnValue = JSExecState::profiledEvaluate(&globalObject, JSC::ProfilingReason::Other, jsSourceCode, &proxy, evaluationException);
InspectorInstrumentation::didEvaluateScript(m_frame);
std::optional<ExceptionDetails> optionalDetails;
if (evaluationException) {
ExceptionDetails details;
reportException(&globalObject, evaluationException, sourceCode.cachedScript(), false, &details);
optionalDetails = WTFMove(details);
}
if (optionalDetails)
return makeUnexpected(*optionalDetails);
return returnValue;
}
JSC::JSValue ScriptController::evaluateIgnoringException(const ScriptSourceCode& sourceCode)
{
return evaluateInWorldIgnoringException(sourceCode, mainThreadNormalWorld());
}
void ScriptController::loadModuleScriptInWorld(LoadableModuleScript& moduleScript, const URL& topLevelModuleURL, Ref<JSC::ScriptFetchParameters>&& topLevelFetchParameters, DOMWrapperWorld& world)
{
JSLockHolder lock(world.vm());
auto& proxy = jsWindowProxy(world);
auto& lexicalGlobalObject = *proxy.window();
auto& promise = JSExecState::loadModule(lexicalGlobalObject, topLevelModuleURL, JSC::JSScriptFetchParameters::create(lexicalGlobalObject.vm(), WTFMove(topLevelFetchParameters)), JSC::JSScriptFetcher::create(lexicalGlobalObject.vm(), { &moduleScript }));
setupModuleScriptHandlers(moduleScript, promise, world);
}
void ScriptController::loadModuleScript(LoadableModuleScript& moduleScript, const URL& topLevelModuleURL, Ref<JSC::ScriptFetchParameters>&& topLevelFetchParameters)
{
loadModuleScriptInWorld(moduleScript, topLevelModuleURL, WTFMove(topLevelFetchParameters), mainThreadNormalWorld());
}
void ScriptController::loadModuleScriptInWorld(LoadableModuleScript& moduleScript, const ScriptSourceCode& sourceCode, DOMWrapperWorld& world)
{
JSLockHolder lock(world.vm());
auto& proxy = jsWindowProxy(world);
auto& lexicalGlobalObject = *proxy.window();
auto& promise = JSExecState::loadModule(lexicalGlobalObject, sourceCode.jsSourceCode(), JSC::JSScriptFetcher::create(lexicalGlobalObject.vm(), { &moduleScript }));
setupModuleScriptHandlers(moduleScript, promise, world);
}
void ScriptController::loadModuleScript(LoadableModuleScript& moduleScript, const ScriptSourceCode& sourceCode)
{
loadModuleScriptInWorld(moduleScript, sourceCode, mainThreadNormalWorld());
}
JSC::JSValue ScriptController::linkAndEvaluateModuleScriptInWorld(LoadableModuleScript& moduleScript, DOMWrapperWorld& world)
{
JSC::VM& vm = world.vm();
JSLockHolder lock(vm);
auto& proxy = jsWindowProxy(world);
auto& lexicalGlobalObject = *proxy.window();
// FIXME: Preventing Frame from being destroyed is essentially unnecessary.
// https://bugs.webkit.org/show_bug.cgi?id=164763
Ref protectedFrame { m_frame };
NakedPtr<JSC::Exception> evaluationException;
auto returnValue = JSExecState::linkAndEvaluateModule(lexicalGlobalObject, Identifier::fromUid(vm, moduleScript.moduleKey()), jsUndefined(), evaluationException);
if (evaluationException) {
// FIXME: Give a chance to dump the stack trace if the "crossorigin" attribute allows.
// https://bugs.webkit.org/show_bug.cgi?id=164539
constexpr bool fromModule = true;
reportException(&lexicalGlobalObject, evaluationException, nullptr, fromModule);
return jsUndefined();
}
return returnValue;
}
JSC::JSValue ScriptController::linkAndEvaluateModuleScript(LoadableModuleScript& moduleScript)
{
return linkAndEvaluateModuleScriptInWorld(moduleScript, mainThreadNormalWorld());
}
JSC::JSValue ScriptController::evaluateModule(const URL& sourceURL, AbstractModuleRecord& moduleRecord, DOMWrapperWorld& world, JSC::JSValue awaitedValue, JSC::JSValue resumeMode)
{
JSC::VM& vm = world.vm();
JSLockHolder lock(vm);
auto& proxy = jsWindowProxy(world);
auto& lexicalGlobalObject = *proxy.window();
Ref protector { m_frame };
SetForScope sourceURLScope(m_sourceURL, &sourceURL);
#if ENABLE(WEBASSEMBLY)
const bool isWasmModule = moduleRecord.inherits<WebAssemblyModuleRecord>();
#else
constexpr bool isWasmModule = false;
#endif
if (isWasmModule) {
// FIXME: Provide better inspector support for Wasm scripts.
InspectorInstrumentation::willEvaluateScript(m_frame, sourceURL.string(), 1, 1);
} else if (moduleRecord.inherits<JSC::SyntheticModuleRecord>())
InspectorInstrumentation::willEvaluateScript(m_frame, sourceURL.string(), 1, 1);
else {
auto* jsModuleRecord = jsCast<JSModuleRecord*>(&moduleRecord);
const auto& jsSourceCode = jsModuleRecord->sourceCode();
InspectorInstrumentation::willEvaluateScript(m_frame, sourceURL.string(), jsSourceCode.firstLine().oneBasedInt(), jsSourceCode.startColumn().oneBasedInt());
}
auto returnValue = moduleRecord.evaluate(&lexicalGlobalObject, awaitedValue, resumeMode);
InspectorInstrumentation::didEvaluateScript(m_frame);
return returnValue;
}
JSC::JSValue ScriptController::evaluateModule(const URL& sourceURL, AbstractModuleRecord& moduleRecord, JSC::JSValue awaitedValue, JSC::JSValue resumeMode)
{
return evaluateModule(sourceURL, moduleRecord, mainThreadNormalWorld(), awaitedValue, resumeMode);
}
Ref<DOMWrapperWorld> ScriptController::createWorld(const String& name, WorldType type)
{
return DOMWrapperWorld::create(commonVM(), type == WorldType::User ? DOMWrapperWorld::Type::User : DOMWrapperWorld::Type::Internal, name);
}
void ScriptController::getAllWorlds(Vector<Ref<DOMWrapperWorld>>& worlds)
{
static_cast<JSVMClientData*>(commonVM().clientData)->getAllWorlds(worlds);
}
void ScriptController::initScriptForWindowProxy(JSWindowProxy& windowProxy)
{
auto& world = windowProxy.world();
JSC::VM& vm = world.vm();
auto scope = DECLARE_CATCH_SCOPE(vm);
jsCast<JSLocalDOMWindow*>(windowProxy.window())->updateDocument();
EXCEPTION_ASSERT_UNUSED(scope, !scope.exception());
if (Document* document = m_frame.document())
document->contentSecurityPolicy()->didCreateWindowProxy(windowProxy);
if (Page* page = m_frame.page()) {
windowProxy.attachDebugger(page->debugger());
windowProxy.window()->setProfileGroup(page->group().identifier());
windowProxy.window()->setConsoleClient(page->console());
}
m_frame.loader().dispatchDidClearWindowObjectInWorld(world);
}
static Identifier jsValueToModuleKey(JSGlobalObject* lexicalGlobalObject, JSValue value)
{
if (value.isSymbol())
return Identifier::fromUid(jsCast<Symbol*>(value)->privateName());
ASSERT(value.isString());
return asString(value)->toIdentifier(lexicalGlobalObject);
}
void ScriptController::setupModuleScriptHandlers(LoadableModuleScript& moduleScriptRef, JSInternalPromise& promise, DOMWrapperWorld& world)
{
auto& proxy = jsWindowProxy(world);
auto& lexicalGlobalObject = *proxy.window();
// It is not guaranteed that either fulfillHandler or rejectHandler is eventually called.
// For example, if the page load is canceled, the DeferredPromise used in the module loader pipeline will stop executing JS code.
// Thus the promise returned from this function could remain unresolved.
RefPtr<LoadableModuleScript> moduleScript(&moduleScriptRef);
auto& fulfillHandler = *JSNativeStdFunction::create(lexicalGlobalObject.vm(), proxy.window(), 1, String(), [moduleScript](JSGlobalObject* globalObject, CallFrame* callFrame) -> JSC::EncodedJSValue {
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
Identifier moduleKey = jsValueToModuleKey(globalObject, callFrame->argument(0));
RETURN_IF_EXCEPTION(scope, { });
moduleScript->notifyLoadCompleted(*moduleKey.impl());
return JSValue::encode(jsUndefined());
});
auto& rejectHandler = *JSNativeStdFunction::create(lexicalGlobalObject.vm(), proxy.window(), 1, String(), [moduleScript](JSGlobalObject* globalObject, CallFrame* callFrame) {
VM& vm = globalObject->vm();
JSValue errorValue = callFrame->argument(0);
auto scope = DECLARE_CATCH_SCOPE(vm);
if (errorValue.isObject()) {
auto* object = JSC::asObject(errorValue);
if (JSValue failureKindValue = object->getDirect(vm, builtinNames(vm).failureKindPrivateName())) {
// This is host propagated error in the module loader pipeline.
switch (static_cast<ModuleFetchFailureKind>(failureKindValue.asInt32())) {
case ModuleFetchFailureKind::WasPropagatedError:
moduleScript->notifyLoadFailed(LoadableScript::Error {
LoadableScript::ErrorType::Fetch,
{ },
{ }
});
break;
// For a fetch error that was not propagated from further in the
// pipeline, we include the console error message but do not
// include an error value as it should not be reported.
case ModuleFetchFailureKind::WasFetchError:
moduleScript->notifyLoadFailed(LoadableScript::Error {
LoadableScript::ErrorType::Fetch,
LoadableScript::ConsoleMessage {
MessageSource::JS,
MessageLevel::Error,
retrieveErrorMessage(*globalObject, vm, errorValue, scope),
},
{ }
});
break;
case ModuleFetchFailureKind::WasResolveError:
moduleScript->notifyLoadFailed(LoadableScript::Error {
LoadableScript::ErrorType::Resolve,
LoadableScript::ConsoleMessage {
MessageSource::JS,
MessageLevel::Error,
retrieveErrorMessage(*globalObject, vm, errorValue, scope),
},
// The error value is included so that it can be reported to the
// appropriate global object.
{ vm, errorValue }
});
break;
case ModuleFetchFailureKind::WasCanceled:
moduleScript->notifyLoadWasCanceled();
break;
}
return JSValue::encode(jsUndefined());
}
}
moduleScript->notifyLoadFailed(LoadableScript::Error {
LoadableScript::ErrorType::Script,
LoadableScript::ConsoleMessage {
MessageSource::JS,
MessageLevel::Error,
retrieveErrorMessage(*globalObject, vm, errorValue, scope),
},
// The error value is included so that it can be reported to the
// appropriate global object.
{ vm, errorValue }
});
return JSValue::encode(jsUndefined());
});
promise.then(&lexicalGlobalObject, &fulfillHandler, &rejectHandler);
}
WindowProxy& ScriptController::windowProxy()
{
return m_frame.windowProxy();
}
JSWindowProxy& ScriptController::jsWindowProxy(DOMWrapperWorld& world)
{
auto* jsWindowProxy = m_frame.windowProxy().jsWindowProxy(world);
ASSERT_WITH_MESSAGE(jsWindowProxy, "The JSWindowProxy can only be null if the frame has been destroyed");
return *jsWindowProxy;
}
TextPosition ScriptController::eventHandlerPosition() const
{
// FIXME: If we are not currently parsing, we should use our current location
// in JavaScript, to cover cases like "element.setAttribute('click', ...)".
// FIXME: This location maps to the end of the HTML tag, and not to the
// exact column number belonging to the event handler attribute.
auto* parser = m_frame.document()->scriptableDocumentParser();
if (parser)
return parser->textPosition();
return TextPosition();
}
void ScriptController::setEvalEnabled(bool value, const String& errorMessage)
{
auto* jsWindowProxy = windowProxy().existingJSWindowProxy(mainThreadNormalWorld());
if (!jsWindowProxy)
return;
jsWindowProxy->window()->setEvalEnabled(value, errorMessage);
}
void ScriptController::setWebAssemblyEnabled(bool value, const String& errorMessage)
{
auto* jsWindowProxy = windowProxy().existingJSWindowProxy(mainThreadNormalWorld());
if (!jsWindowProxy)
return;
jsWindowProxy->window()->setWebAssemblyEnabled(value, errorMessage);
}
bool ScriptController::canAccessFromCurrentOrigin(LocalFrame* frame, Document& accessingDocument)
{
auto* lexicalGlobalObject = JSExecState::currentState();
// If the current lexicalGlobalObject is null we should use the accessing document for the security check.
if (!lexicalGlobalObject) {
auto* targetDocument = frame ? frame->document() : nullptr;
return targetDocument && accessingDocument.securityOrigin().isSameOriginDomain(targetDocument->securityOrigin());
}
return BindingSecurity::shouldAllowAccessToFrame(lexicalGlobalObject, frame);
}
void ScriptController::updateDocument()
{
for (auto& jsWindowProxy : windowProxy().jsWindowProxiesAsVector()) {
JSLockHolder lock(jsWindowProxy->world().vm());
jsCast<JSLocalDOMWindow*>(jsWindowProxy->window())->updateDocument();
}
}
Bindings::RootObject* ScriptController::cacheableBindingRootObject()
{
if (!canExecuteScripts(ReasonForCallingCanExecuteScripts::NotAboutToExecuteScript))
return nullptr;
if (!m_cacheableBindingRootObject) {
JSLockHolder lock(commonVM());
m_cacheableBindingRootObject = Bindings::RootObject::create(nullptr, globalObject(pluginWorld()));
}
return m_cacheableBindingRootObject.get();
}
Bindings::RootObject* ScriptController::bindingRootObject()
{
if (!canExecuteScripts(ReasonForCallingCanExecuteScripts::NotAboutToExecuteScript))
return nullptr;
if (!m_bindingRootObject) {
JSLockHolder lock(commonVM());
m_bindingRootObject = Bindings::RootObject::create(nullptr, globalObject(pluginWorld()));
}
return m_bindingRootObject.get();
}
Ref<Bindings::RootObject> ScriptController::createRootObject(void* nativeHandle)
{
auto it = m_rootObjects.find(nativeHandle);
if (it != m_rootObjects.end())
return it->value.copyRef();
auto rootObject = Bindings::RootObject::create(nativeHandle, globalObject(pluginWorld()));
m_rootObjects.set(nativeHandle, rootObject.copyRef());
return rootObject;
}
void ScriptController::collectIsolatedContexts(Vector<std::pair<JSC::JSGlobalObject*, SecurityOrigin*>>& result)
{
for (auto& jsWindowProxy : windowProxy().jsWindowProxiesAsVector()) {
auto* lexicalGlobalObject = jsWindowProxy->window();
auto* origin = &downcast<LocalDOMWindow>(jsWindowProxy->wrapped()).document()->securityOrigin();
result.append(std::make_pair(lexicalGlobalObject, origin));
}
}
#if !PLATFORM(COCOA)
RefPtr<JSC::Bindings::Instance> ScriptController::createScriptInstanceForWidget(Widget*)
{
return nullptr;
}
#endif
JSObject* ScriptController::jsObjectForPluginElement(HTMLPlugInElement* plugin)
{
// Can't create JSObjects when JavaScript is disabled
if (!canExecuteScripts(ReasonForCallingCanExecuteScripts::NotAboutToExecuteScript))
return nullptr;
JSLockHolder lock(commonVM());
// Create a JSObject bound to this element
auto* globalObj = globalObject(pluginWorld());
// FIXME: is normal okay? - used for NP plugins?
JSValue jsElementValue = toJS(globalObj, globalObj, plugin);
if (!jsElementValue || !jsElementValue.isObject())
return nullptr;
return jsElementValue.getObject();
}
#if !PLATFORM(COCOA)
void ScriptController::updatePlatformScriptObjects()
{
}
void ScriptController::disconnectPlatformScriptObjects()
{
}
#endif
void ScriptController::cleanupScriptObjectsForPlugin(void* nativeHandle)
{
auto it = m_rootObjects.find(nativeHandle);
if (it == m_rootObjects.end())
return;
it->value->invalidate();
m_rootObjects.remove(it);
}
void ScriptController::clearScriptObjects()
{
JSLockHolder lock(commonVM());
for (auto& rootObject : m_rootObjects.values())
rootObject->invalidate();
m_rootObjects.clear();
if (m_bindingRootObject) {
m_bindingRootObject->invalidate();
m_bindingRootObject = nullptr;
}
}
JSC::JSValue ScriptController::executeScriptIgnoringException(const String& script, bool forceUserGesture)
{
return executeScriptInWorldIgnoringException(mainThreadNormalWorld(), script, forceUserGesture);
}
JSC::JSValue ScriptController::executeScriptInWorldIgnoringException(DOMWrapperWorld& world, const String& script, bool forceUserGesture)
{
auto result = executeScriptInWorld(world, { script, URL { }, false, std::nullopt, forceUserGesture, RemoveTransientActivation::Yes });
return result ? result.value() : JSC::JSValue { };
}
ValueOrException ScriptController::executeScriptInWorld(DOMWrapperWorld& world, RunJavaScriptParameters&& parameters)
{
#if ENABLE(APP_BOUND_DOMAINS)
if (m_frame.loader().client().shouldEnableInAppBrowserPrivacyProtections()) {
if (auto* document = m_frame.document())
document->addConsoleMessage(MessageSource::Security, MessageLevel::Warning, "Ignoring user script injection for non-app bound domain."_s);
SCRIPTCONTROLLER_RELEASE_LOG_ERROR(Loading, "executeScriptInWorld: Ignoring user script injection for non app-bound domain");
return makeUnexpected(ExceptionDetails { "Ignoring user script injection for non-app bound domain"_s });
}
m_frame.loader().client().notifyPageOfAppBoundBehavior();
#endif
UserGestureIndicator gestureIndicator(parameters.forceUserGesture == ForceUserGesture::Yes ? std::optional<ProcessingUserGestureState>(ProcessingUserGesture) : std::nullopt, m_frame.document());
if (parameters.forceUserGesture == ForceUserGesture::Yes && UserGestureIndicator::currentUserGesture() && parameters.removeTransientActivation == RemoveTransientActivation::Yes) {
UserGestureIndicator::currentUserGesture()->addDestructionObserver([](UserGestureToken& token) {
token.forEachImpactedDocument([](Document& document) {
if (auto* window = document.domWindow())
window->consumeTransientActivation();
});
});
}
if (!canExecuteScripts(ReasonForCallingCanExecuteScripts::AboutToExecuteScript) || isPaused())
return makeUnexpected(ExceptionDetails { "Cannot execute JavaScript in this document"_s });
auto sourceURL = parameters.sourceURL;
if (!sourceURL.isValid()) {
// FIXME: This is gross, but when setTimeout() and setInterval() are passed JS strings, the thrown errors should use the frame document URL (according to WPT).
sourceURL = m_frame.document()->url();
}
switch (parameters.runAsAsyncFunction) {
case RunAsAsyncFunction::No:
return evaluateInWorld({ parameters.source, WTFMove(sourceURL), TextPosition(), JSC::SourceProviderSourceType::Program, CachedScriptFetcher::create(m_frame.document()->charset()) }, world);
case RunAsAsyncFunction::Yes:
return callInWorld(WTFMove(parameters), world);
default:
RELEASE_ASSERT_NOT_REACHED();
}
}
ValueOrException ScriptController::callInWorld(RunJavaScriptParameters&& parameters, DOMWrapperWorld& world)
{
ASSERT(parameters.runAsAsyncFunction == RunAsAsyncFunction::Yes);
ASSERT(parameters.arguments);
auto& proxy = jsWindowProxy(world);
auto& globalObject = *proxy.window();
MarkedArgumentBuffer markedArguments;
StringBuilder functionStringBuilder;
String errorMessage;
// Build up a new script string that is an async function with arguments, and deserialize those arguments.
functionStringBuilder.append("(async function(");
for (auto argument = parameters.arguments->begin(); argument != parameters.arguments->end();) {
functionStringBuilder.append(argument->key);
auto serializedArgument = SerializedScriptValue::createFromWireBytes(WTFMove(argument->value));
auto scope = DECLARE_CATCH_SCOPE(globalObject.vm());
auto jsArgument = serializedArgument->deserialize(globalObject, &globalObject);
if (UNLIKELY(scope.exception())) {
errorMessage = "Unable to deserialize argument to execute asynchronous JavaScript function"_s;
break;
}
markedArguments.append(jsArgument);
++argument;
if (argument != parameters.arguments->end())
functionStringBuilder.append(',');
}
ASSERT(!markedArguments.hasOverflowed());
if (!errorMessage.isEmpty())
return makeUnexpected(ExceptionDetails { errorMessage });
functionStringBuilder.append("){", parameters.source, "})");
auto sourceCode = ScriptSourceCode { functionStringBuilder.toString(), WTFMove(parameters.sourceURL), TextPosition(), JSC::SourceProviderSourceType::Program, CachedScriptFetcher::create(m_frame.document()->charset()) };
const auto& jsSourceCode = sourceCode.jsSourceCode();
const URL& sourceURL = jsSourceCode.provider()->sourceOrigin().url();
Ref protector { m_frame };
SetForScope sourceURLScope(m_sourceURL, &sourceURL);
InspectorInstrumentation::willEvaluateScript(m_frame, sourceURL.string(), sourceCode.startLine(), sourceCode.startColumn());
NakedPtr<JSC::Exception> evaluationException;
std::optional<ExceptionDetails> optionalDetails;
JSValue returnValue;
do {
JSValue functionObject = JSExecState::profiledEvaluate(&globalObject, JSC::ProfilingReason::Other, jsSourceCode, &proxy, evaluationException);
if (evaluationException)
break;
if (!functionObject || !functionObject.isCallable()) {
optionalDetails = { { "Unable to create JavaScript async function to call"_s } };
break;
}
// FIXME: https://bugs.webkit.org/show_bug.cgi?id=205562
// Getting CallData shouldn't be required to call into JS.
auto callData = JSC::getCallData(functionObject);
if (callData.type == CallData::Type::None) {
optionalDetails = { { "Unable to prepare JavaScript async function to be called"_s } };
break;
}
returnValue = JSExecState::profiledCall(&globalObject, JSC::ProfilingReason::Other, functionObject, callData, &proxy, markedArguments, evaluationException);
} while (false);
InspectorInstrumentation::didEvaluateScript(m_frame);
if (evaluationException && !optionalDetails) {
ExceptionDetails details;
reportException(&globalObject, evaluationException, sourceCode.cachedScript(), false, &details);
optionalDetails = WTFMove(details);
}
if (optionalDetails)
return makeUnexpected(*optionalDetails);
return returnValue;
}
JSC::JSValue ScriptController::executeUserAgentScriptInWorldIgnoringException(DOMWrapperWorld& world, const String& script, bool forceUserGesture)
{
auto result = executeUserAgentScriptInWorld(world, script, forceUserGesture);
return result ? result.value() : JSC::JSValue { };
}
ValueOrException ScriptController::executeUserAgentScriptInWorld(DOMWrapperWorld& world, const String& script, bool forceUserGesture)
{
return executeScriptInWorld(world, { script, URL { }, false, std::nullopt, forceUserGesture, RemoveTransientActivation::No });
}
void ScriptController::executeAsynchronousUserAgentScriptInWorld(DOMWrapperWorld& world, RunJavaScriptParameters&& parameters, ResolveFunction&& resolveCompletionHandler)
{
auto runAsAsyncFunction = parameters.runAsAsyncFunction;
auto result = executeScriptInWorld(world, WTFMove(parameters));
if (runAsAsyncFunction == RunAsAsyncFunction::No || !result || !result.value().isObject()) {
resolveCompletionHandler(result);
return;
}
// When running JavaScript as an async function, any "thenable" object gets promise-like behavior of deferred completion.
auto thenIdentifier = world.vm().propertyNames->then;
auto& proxy = jsWindowProxy(world);
auto& globalObject = *proxy.window();
auto thenFunction = result.value().get(&globalObject, thenIdentifier);
if (!thenFunction.isObject()) {
resolveCompletionHandler(result);
return;
}
auto callData = JSC::getCallData(thenFunction);
if (callData.type == CallData::Type::None) {
resolveCompletionHandler(result);
return;
}
auto sharedResolveFunction = createSharedTask<void(ValueOrException)>([resolveCompletionHandler = WTFMove(resolveCompletionHandler)](ValueOrException result) mutable {
if (resolveCompletionHandler)
resolveCompletionHandler(result);
resolveCompletionHandler = nullptr;
});
auto* fulfillHandler = JSC::JSNativeStdFunction::create(world.vm(), &globalObject, 1, String { }, [sharedResolveFunction] (JSGlobalObject*, CallFrame* callFrame) mutable {
sharedResolveFunction->run(callFrame->argument(0));
return JSValue::encode(jsUndefined());
});
auto* rejectHandler = JSC::JSNativeStdFunction::create(world.vm(), &globalObject, 1, String { }, [sharedResolveFunction] (JSGlobalObject* globalObject, CallFrame* callFrame) mutable {
sharedResolveFunction->run(makeUnexpected(ExceptionDetails { callFrame->argument(0).toWTFString(globalObject) }));
return JSValue::encode(jsUndefined());
});
auto finalizeCount = makeUniqueWithoutFastMallocCheck<unsigned>(0);
auto finalizeGuard = createSharedTask<void()>([sharedResolveFunction = WTFMove(sharedResolveFunction), finalizeCount = WTFMove(finalizeCount)]() {
if (++(*finalizeCount) == 2)
sharedResolveFunction->run(makeUnexpected(ExceptionDetails { "Completion handler for function call is no longer reachable"_s }));
});
world.vm().heap.addFinalizer(fulfillHandler, [finalizeGuard](JSCell*) {
finalizeGuard->run();
});
world.vm().heap.addFinalizer(rejectHandler, [finalizeGuard](JSCell*) {
finalizeGuard->run();
});
JSC::MarkedArgumentBuffer arguments;
arguments.append(fulfillHandler);
arguments.append(rejectHandler);
ASSERT(!arguments.hasOverflowed());
call(&globalObject, thenFunction, callData, result.value(), arguments);
}
bool ScriptController::canExecuteScripts(ReasonForCallingCanExecuteScripts reason)
{
if (reason == ReasonForCallingCanExecuteScripts::AboutToExecuteScript)
RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(ScriptDisallowedScope::InMainThread::isScriptAllowed() || !isInWebProcess());
if (m_frame.document() && m_frame.document()->isSandboxed(SandboxScripts)) {
// FIXME: This message should be moved off the console once a solution to https://bugs.webkit.org/show_bug.cgi?id=103274 exists.
if (reason == ReasonForCallingCanExecuteScripts::AboutToExecuteScript || reason == ReasonForCallingCanExecuteScripts::AboutToCreateEventListener)
m_frame.document()->addConsoleMessage(MessageSource::Security, MessageLevel::Error, "Blocked script execution in '" + m_frame.document()->url().stringCenterEllipsizedToLength() + "' because the document's frame is sandboxed and the 'allow-scripts' permission is not set.");
return false;
}
if (!m_frame.page())
return false;
return m_frame.loader().client().allowScript(m_frame.settings().isScriptEnabled());
}
void ScriptController::executeJavaScriptURL(const URL& url, RefPtr<SecurityOrigin> securityOrigin, ShouldReplaceDocumentIfJavaScriptURL shouldReplaceDocumentIfJavaScriptURL)
{
bool didReplaceDocument = false;
executeJavaScriptURL(url, securityOrigin, shouldReplaceDocumentIfJavaScriptURL, didReplaceDocument);
}
void ScriptController::executeJavaScriptURL(const URL& url, RefPtr<SecurityOrigin> requesterSecurityOrigin, ShouldReplaceDocumentIfJavaScriptURL shouldReplaceDocumentIfJavaScriptURL, bool& didReplaceDocument)
{
ASSERT(url.protocolIsJavaScript());
if (requesterSecurityOrigin && !requesterSecurityOrigin->isSameOriginDomain(m_frame.document()->securityOrigin()))
return;
if (!m_frame.page() || !m_frame.document()->contentSecurityPolicy()->allowJavaScriptURLs(m_frame.document()->url().string(), eventHandlerPosition().m_line, url.string(), nullptr))
return;
// We need to hold onto the Frame here because executing script can
// destroy the frame.
Ref protectedFrame { m_frame };
RefPtr ownerDocument { m_frame.document() };
const int javascriptSchemeLength = sizeof("javascript:") - 1;
JSDOMGlobalObject* globalObject = jsWindowProxy(mainThreadNormalWorld()).window();
VM& vm = globalObject->vm();
auto throwScope = DECLARE_THROW_SCOPE(vm);
String decodedURL = PAL::decodeURLEscapeSequences(url.string());
auto result = executeScriptIgnoringException(decodedURL.substring(javascriptSchemeLength));
RELEASE_ASSERT(&vm == &jsWindowProxy(mainThreadNormalWorld()).window()->vm());
// If executing script caused this frame to be removed from the page, we
// don't want to try to replace its document!
if (!m_frame.page())
return;
if (!result)
return;
String scriptResult;
bool isString = result.getString(globalObject, scriptResult);
RETURN_IF_EXCEPTION(throwScope, void());
if (!isString)
return;
// FIXME: We should always replace the document, but doing so
// synchronously can cause crashes:
// http://bugs.webkit.org/show_bug.cgi?id=16782
if (shouldReplaceDocumentIfJavaScriptURL == ReplaceDocumentIfJavaScriptURL) {
// We're still in a frame, so there should be a DocumentLoader.
ASSERT(m_frame.document()->loader());
// Signal to FrameLoader to disable navigations within this frame while replacing it with the result of executing javascript
// FIXME: https://bugs.webkit.org/show_bug.cgi?id=200523
// The only reason we do a nestable save/restore of this flag here is because we sometimes nest javascript: url loads as
// some will load synchronously. We'd like to remove those synchronous loads and then change this.
SetForScope willBeReplaced(m_willReplaceWithResultOfExecutingJavascriptURL, true);
// DocumentWriter::replaceDocumentWithResultOfExecutingJavascriptURL can cause the DocumentLoader to get deref'ed and possible destroyed,
// so protect it with a RefPtr.
if (RefPtr<DocumentLoader> loader = m_frame.document()->loader()) {
loader->writer().replaceDocumentWithResultOfExecutingJavascriptURL(scriptResult, ownerDocument.get());
didReplaceDocument = true;
}
}
}
void ScriptController::reportExceptionFromScriptError(LoadableScript::Error error, bool isModule)
{
auto& world = mainThreadNormalWorld();
JSC::VM& vm = world.vm();
JSLockHolder lock(vm);
auto& proxy = jsWindowProxy(world);
auto& lexicalGlobalObject = *proxy.window();
reportException(&lexicalGlobalObject, error.errorValue.get(), nullptr, isModule);
}
class ImportMapWarningReporter final : public JSC::ImportMap::Reporter {
WTF_FORBID_HEAP_ALLOCATION;
public:
ImportMapWarningReporter(JSDOMGlobalObject* globalObject)
: m_globalObject(globalObject)
{
}
void reportWarning(const String& message) final
{
m_globalObject->scriptExecutionContext()->addConsoleMessage(MessageSource::JS, MessageLevel::Warning, message);
}
private:
JSDOMGlobalObject* m_globalObject;
};
void ScriptController::registerImportMap(const ScriptSourceCode& sourceCode, const URL& baseURL)
{
auto& world = mainThreadNormalWorld();
JSC::VM& vm = world.vm();
JSLockHolder lock(vm);
JSDOMGlobalObject* globalObject = jsWindowProxy(world).window();
ImportMapWarningReporter reporter(globalObject);
auto result = globalObject->importMap().registerImportMap(sourceCode.jsSourceCode(), baseURL, &reporter);
if (!result)
globalObject->scriptExecutionContext()->addConsoleMessage(MessageSource::JS, MessageLevel::Error, result.error());
globalObject->clearPendingImportMaps();
}
bool ScriptController::isAcquiringImportMaps()
{
auto& world = mainThreadNormalWorld();
JSC::VM& vm = world.vm();
JSLockHolder lock(vm);
return jsWindowProxy(world).window()->isAcquiringImportMaps();
}
void ScriptController::setAcquiringImportMaps()
{
auto& world = mainThreadNormalWorld();
JSC::VM& vm = world.vm();
JSLockHolder lock(vm);
jsWindowProxy(world).window()->setAcquiringImportMaps();
}
void ScriptController::setPendingImportMaps()
{
auto& world = mainThreadNormalWorld();
JSC::VM& vm = world.vm();
JSLockHolder lock(vm);
jsWindowProxy(world).window()->setPendingImportMaps();
}
void ScriptController::clearPendingImportMaps()
{
auto& world = mainThreadNormalWorld();
JSC::VM& vm = world.vm();
JSLockHolder lock(vm);
jsWindowProxy(world).window()->clearPendingImportMaps();
}
} // namespace WebCore
#undef SCRIPTCONTROLLER_RELEASE_LOG_ERROR
|