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
|
/*
* 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 "ServiceWorkerFetch.h"
#include "CrossOriginAccessControl.h"
#include "EventNames.h"
#include "FetchEvent.h"
#include "FetchRequest.h"
#include "FetchResponse.h"
#include "JSDOMPromise.h"
#include "JSDOMPromiseDeferred.h"
#include "MIMETypeRegistry.h"
#include "ResourceRequest.h"
#include "ScriptExecutionContextIdentifier.h"
#include "ServiceWorker.h"
#include "ServiceWorkerGlobalScope.h"
#include "ServiceWorkerThread.h"
#include "WorkerGlobalScope.h"
namespace WebCore {
namespace ServiceWorkerFetch {
// https://fetch.spec.whatwg.org/#http-fetch step 5.5
static inline ResourceError validateResponse(const ResourceResponse& response, FetchOptions::Mode mode, FetchOptions::Redirect redirect)
{
if (response.type() == ResourceResponse::Type::Error)
return ResourceError { errorDomainWebKitInternal, 0, response.url(), "Response served by service worker is an error"_s, ResourceError::Type::General, ResourceError::IsSanitized::Yes };
if (mode == FetchOptions::Mode::SameOrigin && response.type() == ResourceResponse::Type::Cors)
return ResourceError { errorDomainWebKitInternal, 0, response.url(), "Response served by service worker is CORS while mode is same origin"_s, ResourceError::Type::AccessControl, ResourceError::IsSanitized::Yes };
if (mode != FetchOptions::Mode::NoCors && response.tainting() == ResourceResponse::Tainting::Opaque)
return ResourceError { errorDomainWebKitInternal, 0, response.url(), "Response served by service worker is opaque"_s, ResourceError::Type::AccessControl, ResourceError::IsSanitized::Yes };
// Navigate mode induces manual redirect.
if (redirect != FetchOptions::Redirect::Manual && mode != FetchOptions::Mode::Navigate && response.tainting() == ResourceResponse::Tainting::Opaqueredirect)
return ResourceError { errorDomainWebKitInternal, 0, response.url(), "Response served by service worker is opaque redirect"_s, ResourceError::Type::AccessControl, ResourceError::IsSanitized::Yes };
if ((redirect != FetchOptions::Redirect::Follow || mode == FetchOptions::Mode::Navigate) && response.isRedirected())
return ResourceError { errorDomainWebKitInternal, 0, response.url(), "Response served by service worker has redirections"_s, ResourceError::Type::AccessControl, ResourceError::IsSanitized::Yes };
return { };
}
static void processResponse(Ref<Client>&& client, Expected<Ref<FetchResponse>, std::optional<ResourceError>>&& result, FetchOptions::Mode mode, FetchOptions::Redirect redirect, const URL& requestURL, CertificateInfo&& certificateInfo, DeferredPromise& promise)
{
if (!result.has_value()) {
auto& error = result.error();
if (!error) {
client->didNotHandle();
promise.resolve();
return;
}
client->didFail(*error);
promise.reject(Exception { ExceptionCode::NetworkError });
return;
}
auto response = WTFMove(result.value());
auto loadingError = response->loadingError();
if (!loadingError.isNull()) {
client->didFail(loadingError);
promise.reject(Exception { ExceptionCode::NetworkError });
return;
}
auto resourceResponse = response->resourceResponse();
if (auto error = validateResponse(resourceResponse, mode, redirect); !error.isNull()) {
client->didFail(error);
promise.reject(Exception { ExceptionCode::NetworkError });
return;
}
promise.resolve();
if (response->isAvailableNavigationPreload()) {
client->usePreload();
response->markAsUsedForPreload();
return;
}
// As per https://fetch.spec.whatwg.org/#main-fetch step 9, copy request's url list in response's url list if empty.
if (resourceResponse.url().isNull())
resourceResponse.setURL(requestURL);
if (resourceResponse.isRedirection() && resourceResponse.httpHeaderFields().contains(HTTPHeaderName::Location)) {
client->didReceiveRedirection(resourceResponse);
return;
}
// In case of main resource and mime type is the default one, we set it to text/html to pass more service worker WPT tests.
// FIXME: We should refine our MIME type sniffing strategy for synthetic responses.
if (mode == FetchOptions::Mode::Navigate) {
if (resourceResponse.mimeType() == defaultMIMEType() && !resourceResponse.isNosniff()) {
resourceResponse.setMimeType("text/html"_s);
resourceResponse.setTextEncodingName("UTF-8"_s);
}
if (!resourceResponse.certificateInfo())
resourceResponse.setCertificateInfo(WTFMove(certificateInfo));
}
client->didReceiveResponse(resourceResponse);
if (response->isBodyReceivedByChunk()) {
client->setCancelledCallback([response = WeakPtr { response.get() }] {
if (RefPtr protectedResponse = response.get())
protectedResponse->cancelStream();
});
response->consumeBodyReceivedByChunk([client = WTFMove(client), response = WeakPtr { response.get() }] (auto&& result) mutable {
if (result.hasException()) {
auto error = FetchEvent::createResponseError(URL { }, result.exception().message(), ResourceError::IsSanitized::Yes);
client->didFail(error);
return;
}
if (auto* chunk = result.returnValue())
client->didReceiveData(SharedBuffer::create(*chunk));
else
client->didFinish(response ? response->networkLoadMetrics() : NetworkLoadMetrics { });
});
return;
}
auto body = response->consumeBody();
WTF::switchOn(body, [&] (Ref<FormData>& formData) {
client->didReceiveFormDataAndFinish(WTFMove(formData));
}, [&] (Ref<SharedBuffer>& buffer) {
client->didReceiveData(WTFMove(buffer));
client->didFinish(response->networkLoadMetrics());
}, [&] (std::nullptr_t&) {
client->didFinish(response->networkLoadMetrics());
});
}
void dispatchFetchEvent(Ref<Client>&& client, ServiceWorkerGlobalScope& globalScope, ResourceRequest&& request, String&& referrer, FetchOptions&& options, SWServerConnectionIdentifier connectionIdentifier, FetchIdentifier fetchIdentifier, bool isServiceWorkerNavigationPreloadEnabled, String&& clientIdentifier, String&& resultingClientIdentifier)
{
auto requestHeaders = FetchHeaders::create(FetchHeaders::Guard::Immutable, HTTPHeaderMap { request.httpHeaderFields() });
FetchOptions::Mode mode = options.mode;
FetchOptions::Redirect redirect = options.redirect;
bool isNavigation = options.mode == FetchOptions::Mode::Navigate;
ASSERT(globalScope.registration().active());
ASSERT(globalScope.registration().active()->identifier() == globalScope.thread().identifier());
// FIXME: we should use the same path for registration changes as for fetch events.
ASSERT(globalScope.registration().active()->state() == ServiceWorkerState::Activated || globalScope.registration().active()->state() == ServiceWorkerState::Activating);
auto formData = request.httpBody();
std::optional<FetchBody> body;
if (formData && !formData->isEmpty()) {
body = FetchBody::fromFormData(globalScope, formData.releaseNonNull());
if (!body) {
client->didNotHandle();
return;
}
}
// FIXME: loading code should set redirect mode to manual.
if (isNavigation)
options.redirect = FetchOptions::Redirect::Manual;
URL requestURL = request.url();
auto fetchRequest = FetchRequest::create(globalScope, WTFMove(body), WTFMove(requestHeaders), WTFMove(request), WTFMove(options), WTFMove(referrer));
// The request has already passed content extension checks, no need to reapply them if service worker does the fetch itself.
fetchRequest->disableContentExtensionsCheck();
// If service worker navigation preload is not enabled, we do not want to reuse any preload directly.
if (!isServiceWorkerNavigationPreloadEnabled)
fetchRequest->setNavigationPreloadIdentifier(fetchIdentifier);
FetchEvent::Init init;
init.request = WTFMove(fetchRequest);
init.resultingClientId = WTFMove(resultingClientIdentifier);
init.clientId = WTFMove(clientIdentifier);
init.cancelable = true;
auto& jsDOMGlobalObject = *JSC::jsCast<JSDOMGlobalObject*>(globalScope.globalObject());
JSC::JSLockHolder lock(jsDOMGlobalObject.vm());
auto* promise = JSC::JSPromise::create(jsDOMGlobalObject.vm(), jsDOMGlobalObject.promiseStructure());
ASSERT(promise);
auto deferredPromise = DeferredPromise::create(jsDOMGlobalObject, *promise);
init.handled = DOMPromise::create(jsDOMGlobalObject, *promise);
auto event = FetchEvent::create(*globalScope.globalObject(), eventNames().fetchEvent, WTFMove(init), Event::IsTrusted::Yes);
if (isServiceWorkerNavigationPreloadEnabled) {
globalScope.addFetchEvent({ connectionIdentifier, fetchIdentifier }, event.get());
event->setNavigationPreloadIdentifier(fetchIdentifier);
}
CertificateInfo certificateInfo = globalScope.certificateInfo();
event->onResponse([client, mode, redirect, requestURL, certificateInfo = WTFMove(certificateInfo), deferredPromise]<typename Result> (Result&& result) mutable {
processResponse(WTFMove(client), std::forward<Result>(result), mode, redirect, requestURL, WTFMove(certificateInfo), deferredPromise.get());
});
globalScope.dispatchEvent(event);
if (!event->respondWithEntered()) {
if (event->defaultPrevented()) {
ResourceError error { errorDomainWebKitInternal, 0, requestURL, "Fetch event was canceled"_s, ResourceError::Type::General, ResourceError::IsSanitized::Yes };
client->didFail(error);
deferredPromise->reject(Exception { ExceptionCode::NetworkError });
return;
}
client->didNotHandle();
deferredPromise->resolve();
}
globalScope.updateExtendedEventsSet(event.ptr());
}
} // namespace ServiceWorkerFetch
} // namespace WebCore
|