/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "WorkerRunnable.h" #include "nsGlobalWindow.h" #include "nsIEventTarget.h" #include "nsIGlobalObject.h" #include "nsIRunnable.h" #include "nsThreadUtils.h" #include "mozilla/DebugOnly.h" #include "mozilla/ErrorResult.h" #include "mozilla/dom/ScriptSettings.h" #include "js/RootingAPI.h" #include "js/Value.h" #include "WorkerPrivate.h" #include "WorkerScope.h" USING_WORKERS_NAMESPACE namespace { const nsIID kWorkerRunnableIID = { 0x320cc0b5, 0xef12, 0x4084, { 0x88, 0x6e, 0xca, 0x6a, 0x81, 0xe4, 0x1d, 0x68 } }; } // namespace #ifdef DEBUG WorkerRunnable::WorkerRunnable(WorkerPrivate* aWorkerPrivate, TargetAndBusyBehavior aBehavior) : mWorkerPrivate(aWorkerPrivate), mBehavior(aBehavior), mCanceled(0), mCallingCancelWithinRun(false) { MOZ_ASSERT(aWorkerPrivate); } #endif bool WorkerRunnable::IsDebuggerRunnable() const { return false; } nsIGlobalObject* WorkerRunnable::DefaultGlobalObject() const { if (IsDebuggerRunnable()) { return mWorkerPrivate->DebuggerGlobalScope(); } else { return mWorkerPrivate->GlobalScope(); } } bool WorkerRunnable::PreDispatch(WorkerPrivate* aWorkerPrivate) { #ifdef DEBUG MOZ_ASSERT(aWorkerPrivate); switch (mBehavior) { case ParentThreadUnchangedBusyCount: aWorkerPrivate->AssertIsOnWorkerThread(); break; case WorkerThreadModifyBusyCount: aWorkerPrivate->AssertIsOnParentThread(); break; case WorkerThreadUnchangedBusyCount: aWorkerPrivate->AssertIsOnParentThread(); break; default: MOZ_ASSERT_UNREACHABLE("Unknown behavior!"); } #endif if (mBehavior == WorkerThreadModifyBusyCount) { return aWorkerPrivate->ModifyBusyCount(true); } return true; } bool WorkerRunnable::Dispatch(JSContext* aCx) { bool ok; if (!aCx) { ok = PreDispatch(mWorkerPrivate); if (ok) { ok = DispatchInternal(); } PostDispatch(nullptr, mWorkerPrivate, ok); return ok; } JSAutoRequest ar(aCx); JS::Rooted global(aCx, JS::CurrentGlobalOrNull(aCx)); Maybe ac; if (global) { ac.emplace(aCx, global); } ok = PreDispatch(mWorkerPrivate); if (ok && !DispatchInternal()) { ok = false; } PostDispatch(aCx, mWorkerPrivate, ok); return ok; } bool WorkerRunnable::DispatchInternal() { RefPtr runnable(this); if (mBehavior == WorkerThreadModifyBusyCount || mBehavior == WorkerThreadUnchangedBusyCount) { if (IsDebuggerRunnable()) { return NS_SUCCEEDED(mWorkerPrivate->DispatchDebuggerRunnable(runnable.forget())); } else { return NS_SUCCEEDED(mWorkerPrivate->Dispatch(runnable.forget())); } } MOZ_ASSERT(mBehavior == ParentThreadUnchangedBusyCount); if (WorkerPrivate* parent = mWorkerPrivate->GetParent()) { return NS_SUCCEEDED(parent->Dispatch(runnable.forget())); } nsCOMPtr mainThread = do_GetMainThread(); MOZ_ASSERT(mainThread); return NS_SUCCEEDED(mainThread->Dispatch(runnable.forget(), NS_DISPATCH_NORMAL)); } void WorkerRunnable::PostDispatch(JSContext* aCx, WorkerPrivate* aWorkerPrivate, bool aDispatchResult) { MOZ_ASSERT(aWorkerPrivate); #ifdef DEBUG switch (mBehavior) { case ParentThreadUnchangedBusyCount: aWorkerPrivate->AssertIsOnWorkerThread(); break; case WorkerThreadModifyBusyCount: aWorkerPrivate->AssertIsOnParentThread(); MOZ_ASSERT(aCx); break; case WorkerThreadUnchangedBusyCount: aWorkerPrivate->AssertIsOnParentThread(); break; default: MOZ_ASSERT_UNREACHABLE("Unknown behavior!"); } #endif if (!aDispatchResult) { if (mBehavior == WorkerThreadModifyBusyCount) { aWorkerPrivate->ModifyBusyCount(false); } if (aCx) { JS_ReportPendingException(aCx); } } } void WorkerRunnable::PostRun(JSContext* aCx, WorkerPrivate* aWorkerPrivate, bool aRunResult) { MOZ_ASSERT(aCx); MOZ_ASSERT(aWorkerPrivate); #ifdef DEBUG switch (mBehavior) { case ParentThreadUnchangedBusyCount: aWorkerPrivate->AssertIsOnParentThread(); break; case WorkerThreadModifyBusyCount: aWorkerPrivate->AssertIsOnWorkerThread(); break; case WorkerThreadUnchangedBusyCount: aWorkerPrivate->AssertIsOnWorkerThread(); break; default: MOZ_ASSERT_UNREACHABLE("Unknown behavior!"); } #endif if (mBehavior == WorkerThreadModifyBusyCount) { aWorkerPrivate->ModifyBusyCountFromWorker(aCx, false); } if (!aRunResult) { JS_ReportPendingException(aCx); } } // static WorkerRunnable* WorkerRunnable::FromRunnable(nsIRunnable* aRunnable) { MOZ_ASSERT(aRunnable); WorkerRunnable* runnable; nsresult rv = aRunnable->QueryInterface(kWorkerRunnableIID, reinterpret_cast(&runnable)); if (NS_FAILED(rv)) { return nullptr; } MOZ_ASSERT(runnable); return runnable; } NS_IMPL_ADDREF(WorkerRunnable) NS_IMPL_RELEASE(WorkerRunnable) NS_INTERFACE_MAP_BEGIN(WorkerRunnable) NS_INTERFACE_MAP_ENTRY(nsIRunnable) NS_INTERFACE_MAP_ENTRY(nsICancelableRunnable) NS_INTERFACE_MAP_ENTRY(nsISupports) // kWorkerRunnableIID is special in that it does not AddRef its result. if (aIID.Equals(kWorkerRunnableIID)) { *aInstancePtr = this; return NS_OK; } else NS_INTERFACE_MAP_END NS_IMETHODIMP WorkerRunnable::Run() { bool targetIsWorkerThread = mBehavior == WorkerThreadModifyBusyCount || mBehavior == WorkerThreadUnchangedBusyCount; #ifdef DEBUG MOZ_ASSERT_IF(mCallingCancelWithinRun, targetIsWorkerThread); if (targetIsWorkerThread) { mWorkerPrivate->AssertIsOnWorkerThread(); } else { MOZ_ASSERT(mBehavior == ParentThreadUnchangedBusyCount); mWorkerPrivate->AssertIsOnParentThread(); } #endif if (IsCanceled() && !mCallingCancelWithinRun) { return NS_OK; } if (targetIsWorkerThread && mWorkerPrivate->AllPendingRunnablesShouldBeCanceled() && !IsCanceled() && !mCallingCancelWithinRun) { // Prevent recursion. mCallingCancelWithinRun = true; Cancel(); MOZ_ASSERT(mCallingCancelWithinRun); mCallingCancelWithinRun = false; MOZ_ASSERT(IsCanceled(), "Subclass Cancel() didn't set IsCanceled()!"); return NS_OK; } // Track down the appropriate global to use for the AutoJSAPI/AutoEntryScript. nsCOMPtr globalObject; bool isMainThread = !targetIsWorkerThread && !mWorkerPrivate->GetParent(); MOZ_ASSERT(isMainThread == NS_IsMainThread()); RefPtr kungFuDeathGrip; if (targetIsWorkerThread) { JSContext* cx = GetCurrentThreadJSContext(); if (NS_WARN_IF(!cx)) { return NS_ERROR_FAILURE; } JSObject* global = JS::CurrentGlobalOrNull(cx); if (global) { globalObject = GetGlobalObjectForGlobal(global); } else { globalObject = DefaultGlobalObject(); } } else { kungFuDeathGrip = mWorkerPrivate; if (isMainThread) { globalObject = nsGlobalWindow::Cast(mWorkerPrivate->GetWindow()); } else { globalObject = mWorkerPrivate->GetParent()->GlobalScope(); } } // We might run script as part of WorkerRun, so we need an AutoEntryScript. // This is part of the HTML spec for workers at: // http://www.whatwg.org/specs/web-apps/current-work/#run-a-worker // If we don't have a globalObject we have to use an AutoJSAPI instead, but // this is OK as we won't be running script in these circumstances. // It's important that aes is declared after jsapi, because if WorkerRun // creates a global then we construct aes before PostRun and we need them to // be destroyed in the correct order. mozilla::dom::AutoJSAPI jsapi; Maybe aes; JSContext* cx; if (globalObject) { aes.emplace(globalObject, "Worker runnable", isMainThread, isMainThread ? nullptr : GetCurrentThreadJSContext()); cx = aes->cx(); } else { jsapi.Init(); cx = jsapi.cx(); } // Note that we can't assert anything about mWorkerPrivate->GetWrapper() // existing, since it may in fact have been GCed (and we may be one of the // runnables cleaning up the worker as a result). // If we are on the parent thread and that thread is not the main thread, // then we must be a dedicated worker (because there are no // Shared/ServiceWorkers whose parent is itself a worker) and then we // definitely have a globalObject. If it _is_ the main thread, globalObject // can be null for workers started from JSMs or other non-window contexts, // sadly. MOZ_ASSERT_IF(!targetIsWorkerThread && !isMainThread, mWorkerPrivate->IsDedicatedWorker() && globalObject); // If we're on the parent thread we might be in a null compartment in the // situation described above when globalObject is null. Make sure to enter // the compartment of the worker's reflector if there is one. There might // not be one if we're just starting to compile the script for this worker. Maybe ac; if (!targetIsWorkerThread && mWorkerPrivate->GetWrapper()) { // If we're on the parent thread and have a reflector and a globalObject, // then the compartments of cx, globalObject, and the worker's reflector // should all match. MOZ_ASSERT_IF(globalObject, js::GetObjectCompartment(mWorkerPrivate->GetWrapper()) == js::GetContextCompartment(cx)); MOZ_ASSERT_IF(globalObject, js::GetObjectCompartment(mWorkerPrivate->GetWrapper()) == js::GetObjectCompartment(globalObject->GetGlobalJSObject())); // If we're on the parent thread and have a reflector, then our // JSContext had better be either in the null compartment (and hence // have no globalObject) or in the compartment of our reflector. MOZ_ASSERT(!js::GetContextCompartment(cx) || js::GetObjectCompartment(mWorkerPrivate->GetWrapper()) == js::GetContextCompartment(cx), "Must either be in the null compartment or in our reflector " "compartment"); ac.emplace(cx, mWorkerPrivate->GetWrapper()); } bool result = WorkerRun(cx, mWorkerPrivate); // In the case of CompileScriptRunnnable, WorkerRun above can cause us to // lazily create a global, so we construct aes here before calling PostRun. if (targetIsWorkerThread && !aes && DefaultGlobalObject()) { aes.emplace(DefaultGlobalObject(), "worker runnable", false, GetCurrentThreadJSContext()); cx = aes->cx(); } PostRun(cx, mWorkerPrivate, result); return result ? NS_OK : NS_ERROR_FAILURE; } NS_IMETHODIMP WorkerRunnable::Cancel() { uint32_t canceledCount = ++mCanceled; MOZ_ASSERT(canceledCount, "Cancel() overflow!"); // The docs say that Cancel() should not be called more than once and that we // should throw NS_ERROR_UNEXPECTED if it is. return (canceledCount == 1) ? NS_OK : NS_ERROR_UNEXPECTED; } void WorkerDebuggerRunnable::PostDispatch(JSContext* aCx, WorkerPrivate* aWorkerPrivate, bool aDispatchResult) { // The only way aDispatchResult can be false here is if either PreDispatch or // DispatchInternal returned false. // // PreDispatch can never throw on a JSContext. We inherit DispatchInternal // from WorkerRunnable and don't allow overriding it in our subclasses. // WorkerRunnable::DispatchInternal only fails if one of its runnable // dispatching functions fails, and none of those cases can throw a JS // exception. So we can never have a JS exception here. MOZ_ASSERT_IF(aCx, !JS_IsExceptionPending(aCx)); } WorkerSyncRunnable::WorkerSyncRunnable(WorkerPrivate* aWorkerPrivate, nsIEventTarget* aSyncLoopTarget) : WorkerRunnable(aWorkerPrivate, WorkerThreadUnchangedBusyCount), mSyncLoopTarget(aSyncLoopTarget) { #ifdef DEBUG if (mSyncLoopTarget) { mWorkerPrivate->AssertValidSyncLoop(mSyncLoopTarget); } #endif } WorkerSyncRunnable::WorkerSyncRunnable( WorkerPrivate* aWorkerPrivate, already_AddRefed&& aSyncLoopTarget) : WorkerRunnable(aWorkerPrivate, WorkerThreadUnchangedBusyCount), mSyncLoopTarget(aSyncLoopTarget) { #ifdef DEBUG if (mSyncLoopTarget) { mWorkerPrivate->AssertValidSyncLoop(mSyncLoopTarget); } #endif } WorkerSyncRunnable::~WorkerSyncRunnable() { } bool WorkerSyncRunnable::DispatchInternal() { if (mSyncLoopTarget) { RefPtr runnable(this); return NS_SUCCEEDED(mSyncLoopTarget->Dispatch(runnable.forget(), NS_DISPATCH_NORMAL)); } return WorkerRunnable::DispatchInternal(); } void MainThreadWorkerSyncRunnable::PostDispatch(JSContext* aCx, WorkerPrivate* aWorkerPrivate, bool aDispatchResult) { // The only way aDispatchResult can be false here is if either PreDispatch or // DispatchInternal returned false. // // PreDispatch can never throw on a JSContext. We inherit DispatchInternal // from WorkerSyncRunnable and don't allow overriding it in our subclasses. // WorkerSyncRunnable::DispatchInternal only returns false if if dispatch to // the syncloop target fails or if calling up to // WorkerRunnable::DispatchInternal fails. WorkerRunnable::DispatchInternal // only fails if one of its runnable dispatching functions fails, and none of // those cases can throw a JS exception. So we can never have a JS exception // here. MOZ_ASSERT_IF(aCx, !JS_IsExceptionPending(aCx)); } StopSyncLoopRunnable::StopSyncLoopRunnable( WorkerPrivate* aWorkerPrivate, already_AddRefed&& aSyncLoopTarget, bool aResult) : WorkerSyncRunnable(aWorkerPrivate, Move(aSyncLoopTarget)), mResult(aResult) { #ifdef DEBUG mWorkerPrivate->AssertValidSyncLoop(mSyncLoopTarget); #endif } NS_IMETHODIMP StopSyncLoopRunnable::Cancel() { nsresult rv = Run(); NS_WARN_IF_FALSE(NS_SUCCEEDED(rv), "Run() failed"); nsresult rv2 = WorkerSyncRunnable::Cancel(); NS_WARN_IF_FALSE(NS_SUCCEEDED(rv2), "Cancel() failed"); return NS_FAILED(rv) ? rv : rv2; } bool StopSyncLoopRunnable::WorkerRun(JSContext* aCx, WorkerPrivate* aWorkerPrivate) { aWorkerPrivate->AssertIsOnWorkerThread(); MOZ_ASSERT(mSyncLoopTarget); nsCOMPtr syncLoopTarget; mSyncLoopTarget.swap(syncLoopTarget); if (!mResult) { MaybeSetException(aCx); } aWorkerPrivate->StopSyncLoop(syncLoopTarget, mResult); return true; } bool StopSyncLoopRunnable::DispatchInternal() { MOZ_ASSERT(mSyncLoopTarget); RefPtr runnable(this); return NS_SUCCEEDED(mSyncLoopTarget->Dispatch(runnable.forget(), NS_DISPATCH_NORMAL)); } void MainThreadStopSyncLoopRunnable::PostDispatch(JSContext* aCx, WorkerPrivate* aWorkerPrivate, bool aDispatchResult) { // The only way aDispatchResult can be false here is if either PreDispatch or // DispatchInternal returned false. // // PreDispatch can never throw on a JSContext. We inherit DispatchInternal // from StopSyncLoopRunnable, and that itself is final and only returns false // if dispatch to the syncloop target fails. So we can never have a JS // exception here. MOZ_ASSERT_IF(aCx, !JS_IsExceptionPending(aCx)); } #ifdef DEBUG WorkerControlRunnable::WorkerControlRunnable(WorkerPrivate* aWorkerPrivate, TargetAndBusyBehavior aBehavior) : WorkerRunnable(aWorkerPrivate, aBehavior) { MOZ_ASSERT(aWorkerPrivate); MOZ_ASSERT(aBehavior == ParentThreadUnchangedBusyCount || aBehavior == WorkerThreadUnchangedBusyCount, "WorkerControlRunnables should not modify the busy count"); } #endif NS_IMETHODIMP WorkerControlRunnable::Cancel() { if (NS_FAILED(Run())) { NS_WARNING("WorkerControlRunnable::Run() failed."); } return WorkerRunnable::Cancel(); } bool WorkerControlRunnable::DispatchInternal() { RefPtr runnable(this); if (mBehavior == WorkerThreadUnchangedBusyCount) { return NS_SUCCEEDED(mWorkerPrivate->DispatchControlRunnable(runnable.forget())); } if (WorkerPrivate* parent = mWorkerPrivate->GetParent()) { return NS_SUCCEEDED(parent->DispatchControlRunnable(runnable.forget())); } nsCOMPtr mainThread = do_GetMainThread(); MOZ_ASSERT(mainThread); return NS_SUCCEEDED(mainThread->Dispatch(runnable.forget(), NS_DISPATCH_NORMAL)); } void MainThreadWorkerControlRunnable::PostDispatch(JSContext* aCx, WorkerPrivate* aWorkerPrivate, bool aDispatchResult) { AssertIsOnMainThread(); if (aCx && !aDispatchResult) { JS_ReportPendingException(aCx); } } NS_IMPL_ISUPPORTS_INHERITED0(WorkerControlRunnable, WorkerRunnable) WorkerMainThreadRunnable::WorkerMainThreadRunnable(WorkerPrivate* aWorkerPrivate) : mWorkerPrivate(aWorkerPrivate) { mWorkerPrivate->AssertIsOnWorkerThread(); } void WorkerMainThreadRunnable::Dispatch(ErrorResult& aRv) { mWorkerPrivate->AssertIsOnWorkerThread(); AutoSyncLoopHolder syncLoop(mWorkerPrivate); mSyncLoopTarget = syncLoop.EventTarget(); RefPtr runnable(this); DebugOnly rv = NS_DispatchToMainThread(runnable.forget(), NS_DISPATCH_NORMAL); MOZ_ASSERT(NS_SUCCEEDED(rv), "Should only fail after xpcom-shutdown-threads and we're gone by then"); if (!syncLoop.Run()) { aRv.ThrowUncatchableException(); } } NS_IMETHODIMP WorkerMainThreadRunnable::Run() { AssertIsOnMainThread(); bool runResult = MainThreadRun(); RefPtr response = new MainThreadStopSyncLoopRunnable(mWorkerPrivate, mSyncLoopTarget.forget(), runResult); MOZ_ALWAYS_TRUE(response->Dispatch(nullptr)); return NS_OK; } bool WorkerCheckAPIExposureOnMainThreadRunnable::Dispatch() { ErrorResult rv; WorkerMainThreadRunnable::Dispatch(rv); bool ok = !rv.Failed(); rv.SuppressException(); return ok; } bool WorkerSameThreadRunnable::PreDispatch(WorkerPrivate* aWorkerPrivate) { // We don't call WorkerRunnable::PreDispatch, because we're using // WorkerThreadModifyBusyCount for mBehavior, and WorkerRunnable will assert // that PreDispatch is on the parent thread in that case. aWorkerPrivate->AssertIsOnWorkerThread(); return true; } void WorkerSameThreadRunnable::PostDispatch(JSContext* aCx, WorkerPrivate* aWorkerPrivate, bool aDispatchResult) { // We don't call WorkerRunnable::PostDispatch, because we're using // WorkerThreadModifyBusyCount for mBehavior, and WorkerRunnable will assert // that PostDispatch is on the parent thread in that case. aWorkerPrivate->AssertIsOnWorkerThread(); if (aDispatchResult) { DebugOnly willIncrement = aWorkerPrivate->ModifyBusyCountFromWorker(aCx, true); // Should never fail since if this thread is still running, so should the // parent and it should be able to process a control runnable. MOZ_ASSERT(willIncrement); } }