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
|
/*
* Copyright (C) 2017 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "ServiceWorkerGlobalScope.h"
#if ENABLE(SERVICE_WORKER)
#include "Document.h"
#include "EventLoop.h"
#include "EventNames.h"
#include "ExtendableEvent.h"
#include "FrameLoader.h"
#include "JSDOMPromiseDeferred.h"
#include "LocalFrame.h"
#include "LocalFrameLoaderClient.h"
#include "NotificationEvent.h"
#include "PushEvent.h"
#include "SWContextManager.h"
#include "SWServer.h"
#include "ServiceWorker.h"
#include "ServiceWorkerClient.h"
#include "ServiceWorkerClients.h"
#include "ServiceWorkerContainer.h"
#include "ServiceWorkerThread.h"
#include "ServiceWorkerWindowClient.h"
#include "WebCoreJSClientData.h"
#include "WorkerNavigator.h"
#include <wtf/IsoMallocInlines.h>
namespace WebCore {
WTF_MAKE_ISO_ALLOCATED_IMPL(ServiceWorkerGlobalScope);
Ref<ServiceWorkerGlobalScope> ServiceWorkerGlobalScope::create(ServiceWorkerContextData&& contextData, ServiceWorkerData&& workerData, const WorkerParameters& params, Ref<SecurityOrigin>&& origin, ServiceWorkerThread& thread, Ref<SecurityOrigin>&& topOrigin, IDBClient::IDBConnectionProxy* connectionProxy, SocketProvider* socketProvider, std::unique_ptr<NotificationClient>&& notificationClient)
{
auto scope = adoptRef(*new ServiceWorkerGlobalScope { WTFMove(contextData), WTFMove(workerData), params, WTFMove(origin), thread, WTFMove(topOrigin), connectionProxy, socketProvider, WTFMove(notificationClient) });
scope->addToContextsMap();
scope->applyContentSecurityPolicyResponseHeaders(params.contentSecurityPolicyResponseHeaders);
scope->notifyServiceWorkerPageOfCreationIfNecessary();
return scope;
}
ServiceWorkerGlobalScope::ServiceWorkerGlobalScope(ServiceWorkerContextData&& contextData, ServiceWorkerData&& workerData, const WorkerParameters& params, Ref<SecurityOrigin>&& origin, ServiceWorkerThread& thread, Ref<SecurityOrigin>&& topOrigin, IDBClient::IDBConnectionProxy* connectionProxy, SocketProvider* socketProvider, std::unique_ptr<NotificationClient>&& notificationClient)
: WorkerGlobalScope(WorkerThreadType::ServiceWorker, params, WTFMove(origin), thread, WTFMove(topOrigin), connectionProxy, socketProvider, nullptr)
, m_contextData(WTFMove(contextData))
, m_registration(ServiceWorkerRegistration::getOrCreate(*this, navigator().serviceWorker(), WTFMove(m_contextData.registration)))
, m_serviceWorker(ServiceWorker::getOrCreate(*this, WTFMove(workerData)))
, m_clients(ServiceWorkerClients::create())
, m_notificationClient(WTFMove(notificationClient))
, m_userGestureTimer(*this, &ServiceWorkerGlobalScope::resetUserGesture)
{
}
ServiceWorkerGlobalScope::~ServiceWorkerGlobalScope()
{
// We need to remove from the contexts map very early in the destructor so that calling postTask() on this WorkerGlobalScope from another thread is safe.
removeFromContextsMap();
// NotificationClient might have some interactions pending with the main thread,
// so it should also be destroyed there.
callOnMainThread([notificationClient = WTFMove(m_notificationClient)] { });
}
void ServiceWorkerGlobalScope::dispatchPushEvent(PushEvent& pushEvent)
{
ASSERT(!m_pushEvent);
m_pushEvent = &pushEvent;
m_lastPushEventTime = MonotonicTime::now();
dispatchEvent(pushEvent);
m_pushEvent = nullptr;
}
void ServiceWorkerGlobalScope::notifyServiceWorkerPageOfCreationIfNecessary()
{
auto serviceWorkerPage = this->serviceWorkerPage();
if (!serviceWorkerPage)
return;
ASSERT(isMainThread());
serviceWorkerPage->setServiceWorkerGlobalScope(*this);
if (auto* localMainFrame = dynamicDowncast<LocalFrame>(serviceWorkerPage->mainFrame())) {
// FIXME: We currently do not support non-normal worlds in service workers.
Ref normalWorld = static_cast<JSVMClientData*>(vm().clientData)->normalWorld();
localMainFrame->loader().client().dispatchServiceWorkerGlobalObjectAvailable(normalWorld);
}
}
Page* ServiceWorkerGlobalScope::serviceWorkerPage()
{
if (!m_contextData.serviceWorkerPageIdentifier)
return nullptr;
RELEASE_ASSERT(isMainThread());
return Page::serviceWorkerPage(*m_contextData.serviceWorkerPageIdentifier);
}
void ServiceWorkerGlobalScope::skipWaiting(Ref<DeferredPromise>&& promise)
{
uint64_t requestIdentifier = ++m_lastRequestIdentifier;
m_pendingSkipWaitingPromises.add(requestIdentifier, WTFMove(promise));
callOnMainThread([workerThread = Ref { thread() }, requestIdentifier]() mutable {
if (auto* connection = SWContextManager::singleton().connection()) {
auto identifier = workerThread->identifier();
connection->skipWaiting(identifier, [workerThread = WTFMove(workerThread), requestIdentifier] {
workerThread->runLoop().postTask([requestIdentifier](auto& context) {
auto& scope = downcast<ServiceWorkerGlobalScope>(context);
scope.eventLoop().queueTask(TaskSource::DOMManipulation, [scope = Ref { scope }, requestIdentifier]() mutable {
if (auto promise = scope->m_pendingSkipWaitingPromises.take(requestIdentifier))
promise->resolve();
});
});
});
}
});
}
EventTargetInterface ServiceWorkerGlobalScope::eventTargetInterface() const
{
return ServiceWorkerGlobalScopeEventTargetInterfaceType;
}
ServiceWorkerThread& ServiceWorkerGlobalScope::thread()
{
return static_cast<ServiceWorkerThread&>(WorkerGlobalScope::thread());
}
void ServiceWorkerGlobalScope::prepareForDestruction()
{
// Make sure we destroy fetch events objects before the VM goes away, since their
// destructor may access the VM.
m_extendedEvents.clear();
WorkerGlobalScope::prepareForDestruction();
}
// https://w3c.github.io/ServiceWorker/#update-service-worker-extended-events-set-algorithm
void ServiceWorkerGlobalScope::updateExtendedEventsSet(ExtendableEvent* newEvent)
{
ASSERT(isContextThread());
ASSERT(!newEvent || !newEvent->isBeingDispatched());
bool hadPendingEvents = hasPendingEvents();
m_extendedEvents.removeAllMatching([](auto& event) {
return !event->pendingPromiseCount();
});
if (newEvent && newEvent->pendingPromiseCount()) {
m_extendedEvents.append(*newEvent);
newEvent->whenAllExtendLifetimePromisesAreSettled([this](auto&&) {
this->updateExtendedEventsSet();
});
// Clear out the event's target as it is the WorkerGlobalScope and we do not want to keep it
// alive unnecessarily.
newEvent->setTarget(nullptr);
}
bool hasPendingEvents = this->hasPendingEvents();
if (hasPendingEvents == hadPendingEvents)
return;
callOnMainThread([threadIdentifier = thread().identifier(), hasPendingEvents] {
if (auto* connection = SWContextManager::singleton().connection())
connection->setServiceWorkerHasPendingEvents(threadIdentifier, hasPendingEvents);
});
}
const ServiceWorkerContextData::ImportedScript* ServiceWorkerGlobalScope::scriptResource(const URL& url) const
{
auto iterator = m_contextData.scriptResourceMap.find(url);
return iterator == m_contextData.scriptResourceMap.end() ? nullptr : &iterator->value;
}
void ServiceWorkerGlobalScope::setScriptResource(const URL& url, ServiceWorkerContextData::ImportedScript&& script)
{
callOnMainThread([threadIdentifier = thread().identifier(), url = url.isolatedCopy(), script = script.isolatedCopy()] {
if (auto* connection = SWContextManager::singleton().connection())
connection->setScriptResource(threadIdentifier, url, script);
});
m_contextData.scriptResourceMap.set(url, WTFMove(script));
}
void ServiceWorkerGlobalScope::didSaveScriptsToDisk(ScriptBuffer&& script, HashMap<URL, ScriptBuffer>&& importedScripts)
{
// These scripts should be identical to the ones we have. However, these are mmap'd so using them helps reduce dirty memory usage.
updateSourceProviderBuffers(script, importedScripts);
if (script) {
ASSERT(m_contextData.script == script);
m_contextData.script = WTFMove(script);
}
for (auto& pair : importedScripts) {
auto it = m_contextData.scriptResourceMap.find(pair.key);
if (it == m_contextData.scriptResourceMap.end())
continue;
ASSERT(it->value.script == pair.value); // Do a memcmp to make sure the scripts are identical.
it->value.script = WTFMove(pair.value);
}
}
void ServiceWorkerGlobalScope::recordUserGesture()
{
m_isProcessingUserGesture = true;
m_userGestureTimer.startOneShot(userGestureLifetime);
}
bool ServiceWorkerGlobalScope::didFirePushEventRecently() const
{
return MonotonicTime::now() <= m_lastPushEventTime + SWServer::defaultTerminationDelay;
}
void ServiceWorkerGlobalScope::addConsoleMessage(MessageSource source, MessageLevel level, const String& message, unsigned long requestIdentifier)
{
if (m_consoleMessageReportingEnabled) {
callOnMainThread([threadIdentifier = thread().identifier(), source, level, message = message.isolatedCopy(), requestIdentifier] {
if (auto* connection = SWContextManager::singleton().connection())
connection->reportConsoleMessage(threadIdentifier, source, level, message, requestIdentifier);
});
}
WorkerGlobalScope::addConsoleMessage(source, level, message, requestIdentifier);
}
} // namespace WebCore
#endif // ENABLE(SERVICE_WORKER)
|