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
|
/*
* 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"
#include "Document.h"
#include "EventLoop.h"
#include "EventNames.h"
#include "ExtendableEvent.h"
#include "FetchEvent.h"
#include "FrameLoader.h"
#include "JSDOMPromiseDeferred.h"
#include "LocalFrame.h"
#include "LocalFrameLoaderClient.h"
#include "Logging.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/TZoneMallocInlines.h>
namespace WebCore {
WTF_MAKE_TZONE_OR_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, std::unique_ptr<WorkerClient>&& workerClient)
{
auto scope = adoptRef(*new ServiceWorkerGlobalScope { WTFMove(contextData), WTFMove(workerData), params, WTFMove(origin), thread, WTFMove(topOrigin), connectionProxy, socketProvider, WTFMove(notificationClient), WTFMove(workerClient) });
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, std::unique_ptr<WorkerClient>&& workerClient)
: WorkerGlobalScope(WorkerThreadType::ServiceWorker, params, WTFMove(origin), thread, WTFMove(topOrigin), connectionProxy, socketProvider, WTFMove(workerClient))
, 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)
{
#if ENABLE(DECLARATIVE_WEB_PUSH)
ASSERT(!m_declarativePushEvent && !m_pushEvent);
#else
ASSERT(!m_pushEvent);
#endif
m_pushEvent = &pushEvent;
m_lastPushEventTime = MonotonicTime::now();
dispatchEvent(pushEvent);
m_pushEvent = nullptr;
}
#if ENABLE(DECLARATIVE_WEB_PUSH)
void ServiceWorkerGlobalScope::dispatchDeclarativePushEvent(PushEvent& event)
{
ASSERT(!m_declarativePushEvent && !m_pushEvent);
m_declarativePushEvent = &event;
m_lastPushEventTime = MonotonicTime::now();
dispatchEvent(event);
}
void ServiceWorkerGlobalScope::clearDeclarativePushEvent()
{
ASSERT(m_declarativePushEvent);
m_declarativePushEvent = nullptr;
}
#endif
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 = downcast<JSVMClientData>(vm().clientData)->normalWorldSingleton();
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)
{
RELEASE_LOG(ServiceWorker, "ServiceWorkerGlobalScope::skipWaiting for worker %" PRIu64, thread().identifier().toUInt64());
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();
});
});
});
}
});
}
enum EventTargetInterfaceType ServiceWorkerGlobalScope::eventTargetInterface() const
{
return EventTargetInterfaceType::ServiceWorkerGlobalScope;
}
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();
auto ongoingFetchTasks = std::exchange(m_ongoingFetchTasks, { });
for (auto& task : ongoingFetchTasks.values())
task.client->contextIsStopping();
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);
}
CookieStore& ServiceWorkerGlobalScope::cookieStore()
{
if (!m_cookieStore)
m_cookieStore = CookieStore::create(this);
return *m_cookieStore;
}
void ServiceWorkerGlobalScope::addFetchTask(FetchKey key, Ref<ServiceWorkerFetch::Client>&& client)
{
ASSERT(!m_ongoingFetchTasks.contains(key));
m_ongoingFetchTasks.add(key, FetchTask { WTFMove(client), nullptr });
}
void ServiceWorkerGlobalScope::addFetchEvent(FetchKey key, FetchEvent& event)
{
ASSERT(m_ongoingFetchTasks.contains(key));
auto iterator = m_ongoingFetchTasks.find(key);
bool isHandled = WTF::switchOn(iterator->value.navigationPreload, [] (std::nullptr_t) {
return false;
}, [] (Ref<FetchEvent>&) {
ASSERT_NOT_REACHED();
return false;
}, [&event] (UniqueRef<ResourceResponse>& response) {
event.navigationPreloadIsReady(WTFMove(response.get()));
return true;
}, [&event] (UniqueRef<ResourceError>& error) {
event.navigationPreloadFailed(WTFMove(error.get()));
return true;
});
if (isHandled)
iterator->value.navigationPreload = nullptr;
else
iterator->value.navigationPreload = Ref { event };
}
void ServiceWorkerGlobalScope::removeFetchTask(FetchKey key)
{
m_ongoingFetchTasks.remove(key);
}
RefPtr<ServiceWorkerFetch::Client> ServiceWorkerGlobalScope::fetchTask(FetchKey key)
{
auto iterator = m_ongoingFetchTasks.find(key);
return iterator != m_ongoingFetchTasks.end() ? iterator->value.client.get() : nullptr;
}
RefPtr<ServiceWorkerFetch::Client> ServiceWorkerGlobalScope::takeFetchTask(FetchKey key)
{
return m_ongoingFetchTasks.take(key).client;
}
bool ServiceWorkerGlobalScope::hasFetchTask() const
{
return !m_ongoingFetchTasks.isEmpty();
}
void ServiceWorkerGlobalScope::navigationPreloadFailed(FetchKey key, ResourceError&& error)
{
auto iterator = m_ongoingFetchTasks.find(key);
if (iterator == m_ongoingFetchTasks.end())
return;
if (std::holds_alternative<Ref<FetchEvent>>(iterator->value.navigationPreload)) {
std::get<Ref<FetchEvent>>(iterator->value.navigationPreload)->navigationPreloadFailed(WTFMove(error));
iterator->value.navigationPreload = nullptr;
return;
}
iterator->value.navigationPreload = makeUniqueRef<ResourceError>(WTFMove(error));
}
void ServiceWorkerGlobalScope::navigationPreloadIsReady(FetchKey key, ResourceResponse&& response)
{
auto iterator = m_ongoingFetchTasks.find(key);
if (iterator == m_ongoingFetchTasks.end())
return;
if (std::holds_alternative<Ref<FetchEvent>>(iterator->value.navigationPreload)) {
std::get<Ref<FetchEvent>>(iterator->value.navigationPreload)->navigationPreloadIsReady(WTFMove(response));
iterator->value.navigationPreload = nullptr;
return;
}
iterator->value.navigationPreload = makeUniqueRef<ResourceResponse>(WTFMove(response));
}
} // namespace WebCore
|