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
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/service_worker/service_worker_loader_helpers.h"
#include <optional>
#include <string_view>
#include "base/command_line.h"
#include "base/no_destructor.h"
#include "base/strings/string_split.h"
#include "base/strings/stringprintf.h"
#include "base/time/time.h"
#include "components/network_session_configurator/common/network_switches.h"
#include "content/browser/devtools/devtools_instrumentation.h"
#include "content/browser/loader/browser_initiated_resource_request.h"
#include "content/browser/service_worker/service_worker_consts.h"
#include "content/common/features.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/content_browser_client.h"
#include "content/public/common/content_client.h"
#include "content/public/common/content_features.h"
#include "content/public/common/referrer.h"
#include "services/network/public/cpp/constants.h"
#include "services/network/public/cpp/permissions_policy/permissions_policy.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/public/common/mime_util/mime_util.h"
#include "third_party/blink/public/common/renderer_preferences/renderer_preferences.h"
#include "third_party/blink/public/common/service_worker/service_worker_scope_match.h"
#include "third_party/blink/public/mojom/loader/fetch_client_settings_object.mojom.h"
#include "third_party/blink/public/mojom/loader/resource_load_info.mojom.h"
#include "third_party/blink/public/mojom/service_worker/service_worker_registration.mojom.h"
namespace content {
namespace service_worker_loader_helpers {
namespace {
bool IsPathRestrictionSatisfiedInternal(
const GURL& scope,
const GURL& script_url,
bool service_worker_allowed_header_supported,
const std::optional<std::string_view>& service_worker_allowed_header_value,
std::string* error_message) {
DCHECK(scope.is_valid());
DCHECK(!scope.has_ref());
DCHECK(script_url.is_valid());
DCHECK(!script_url.has_ref());
DCHECK(error_message);
if (blink::ServiceWorkerScopeOrScriptUrlContainsDisallowedCharacter(
scope, script_url, error_message)) {
return false;
}
std::string max_scope_string;
if (service_worker_allowed_header_value &&
service_worker_allowed_header_supported) {
GURL max_scope = script_url.Resolve(*service_worker_allowed_header_value);
if (!max_scope.is_valid()) {
*error_message = "An invalid Service-Worker-Allowed header value ('";
error_message->append(*service_worker_allowed_header_value);
error_message->append("') was received when fetching the script.");
return false;
}
if (max_scope.DeprecatedGetOriginAsURL() !=
script_url.DeprecatedGetOriginAsURL()) {
*error_message = "A cross-origin Service-Worker-Allowed header value ('";
error_message->append(*service_worker_allowed_header_value);
error_message->append("') was received when fetching the script.");
return false;
}
max_scope_string = max_scope.path();
} else {
max_scope_string = script_url.GetWithoutFilename().path();
}
std::string scope_string = scope.path();
if (!base::StartsWith(scope_string, max_scope_string,
base::CompareCase::SENSITIVE)) {
*error_message = "The path of the provided scope ('";
error_message->append(scope_string);
error_message->append("') is not under the max scope allowed (");
if (service_worker_allowed_header_value &&
service_worker_allowed_header_supported)
error_message->append("set by Service-Worker-Allowed: ");
error_message->append("'");
error_message->append(max_scope_string);
if (service_worker_allowed_header_supported) {
error_message->append(
"'). Adjust the scope, move the Service Worker script, or use the "
"Service-Worker-Allowed HTTP header to allow the scope.");
} else {
error_message->append(
"'). Adjust the scope or move the Service Worker script.");
}
return false;
}
return true;
}
bool IsEligibleForSyntheticResponseInternal(const GURL& client_url,
const std::string& allowed_urls) {
const std::vector<std::string> parsed_urls = base::SplitString(
allowed_urls, ",", base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY);
for (const auto& it : parsed_urls) {
const GURL url(it);
// TODO(crbug.com/352578800): It's OK to use `start_with()` as far as the
// variation of given `client_url` value is limited, but consider
// replacing it with the standard SW scope matching if possible.
//
// We intentionally ignore port matching as the port is dynamically decided
// in tests, which is not predictable at the browser launch phase.
if (client_url.scheme_piece() == url.scheme_piece() &&
client_url.host_piece() == url.host_piece() &&
client_url.path_piece() == url.path_piece() &&
client_url.query_piece().starts_with(url.query_piece())) {
return true;
}
}
return false;
}
} // namespace
bool CheckResponseHead(
const network::mojom::URLResponseHead& response_head,
blink::ServiceWorkerStatusCode* out_service_worker_status,
network::URLLoaderCompletionStatus* out_completion_status,
std::string* out_error_message) {
if (response_head.headers->response_code() / 100 != 2) {
// Non-2XX HTTP status code is handled as an error.
*out_completion_status =
network::URLLoaderCompletionStatus(net::ERR_INVALID_RESPONSE);
*out_error_message = base::StringPrintf(
ServiceWorkerConsts::kServiceWorkerBadHTTPResponseError,
response_head.headers->response_code());
*out_service_worker_status = blink::ServiceWorkerStatusCode::kErrorNetwork;
return false;
}
if (!devtools_instrumentation::ShouldBypassCertificateErrors() &&
net::IsCertStatusError(response_head.cert_status) &&
!base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kIgnoreCertificateErrors)) {
*out_completion_status = network::URLLoaderCompletionStatus(
net::MapCertStatusToNetError(response_head.cert_status));
*out_error_message = ServiceWorkerConsts::kServiceWorkerSSLError;
*out_service_worker_status = blink::ServiceWorkerStatusCode::kErrorNetwork;
return false;
}
// Remain consistent with logic in
// blink::InstalledServiceWorkerModuleScriptFetcher::Fetch()
if (!blink::IsSupportedJavascriptMimeType(response_head.mime_type)) {
*out_completion_status =
network::URLLoaderCompletionStatus(net::ERR_INSECURE_RESPONSE);
*out_error_message =
response_head.mime_type.empty()
? ServiceWorkerConsts::kServiceWorkerNoMIMEError
: base::StringPrintf(
ServiceWorkerConsts::kServiceWorkerBadMIMEError,
response_head.mime_type.c_str());
*out_service_worker_status = blink::ServiceWorkerStatusCode::kErrorSecurity;
return false;
}
return true;
}
bool ShouldBypassCacheDueToUpdateViaCache(
bool is_main_script,
blink::mojom::ServiceWorkerUpdateViaCache cache_mode) {
switch (cache_mode) {
case blink::mojom::ServiceWorkerUpdateViaCache::kImports:
return is_main_script;
case blink::mojom::ServiceWorkerUpdateViaCache::kNone:
return true;
case blink::mojom::ServiceWorkerUpdateViaCache::kAll:
return false;
}
NOTREACHED() << static_cast<int>(cache_mode);
}
bool ShouldValidateBrowserCacheForScript(
bool is_main_script,
bool force_bypass_cache,
blink::mojom::ServiceWorkerUpdateViaCache cache_mode,
base::TimeDelta time_since_last_check) {
return (ShouldBypassCacheDueToUpdateViaCache(is_main_script, cache_mode) ||
time_since_last_check >
ServiceWorkerConsts::kServiceWorkerScriptMaxCacheAge ||
force_bypass_cache);
}
#if DCHECK_IS_ON()
void CheckVersionStatusBeforeWorkerScriptLoad(
ServiceWorkerVersion::Status status,
bool is_main_script,
blink::mojom::ScriptType script_type) {
if (is_main_script) {
// The service worker main script should be fetched during worker startup.
DCHECK_EQ(status, ServiceWorkerVersion::NEW);
return;
}
// Non-main scripts are fetched by importScripts() for classic scripts or
// static-import for module scripts.
switch (script_type) {
case blink::mojom::ScriptType::kClassic:
// importScripts() should be called until completion of the install event.
DCHECK(status == ServiceWorkerVersion::NEW ||
status == ServiceWorkerVersion::INSTALLING);
break;
case blink::mojom::ScriptType::kModule:
// Static-import should be handled during worker startup along with the
// main script.
DCHECK_EQ(status, ServiceWorkerVersion::NEW);
break;
}
}
#endif // DCHECK_IS_ON()
network::ResourceRequest CreateRequestForServiceWorkerScript(
const GURL& script_url,
const blink::StorageKey& storage_key,
bool is_main_script,
blink::mojom::ScriptType worker_script_type,
const blink::mojom::FetchClientSettingsObject& fetch_client_settings_object,
BrowserContext& browser_context) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
network::ResourceRequest request;
request.url = script_url;
// TODO(https://crbug.com/406525486): Permissions policies for workers are
// currently not supported so an all-blocking permissions policy is set.
// Propagate the actual permissions policy once it is available.
request.permissions_policy =
*network::PermissionsPolicy::CreateFromParsedPolicy(
{}, {}, url::Origin::Create(request.url));
request.site_for_cookies = storage_key.ToNetSiteForCookies();
request.do_not_prompt_for_login = true;
blink::RendererPreferences renderer_preferences;
GetContentClient()->browser()->UpdateRendererPreferencesForWorker(
&browser_context, &renderer_preferences);
UpdateAdditionalHeadersForBrowserInitiatedRequest(
&request.headers, &browser_context,
/*should_update_existing_headers=*/false, renderer_preferences,
/*is_for_worker_script=*/true);
// Set the accept header to '*/*'.
// https://fetch.spec.whatwg.org/#concept-fetch
request.headers.SetHeader(net::HttpRequestHeaders::kAccept,
network::kDefaultAcceptHeaderValue);
request.referrer_policy = Referrer::ReferrerPolicyForUrlRequest(
fetch_client_settings_object.referrer_policy);
request.referrer =
Referrer::SanitizeForRequest(
script_url, Referrer(fetch_client_settings_object.outgoing_referrer,
fetch_client_settings_object.referrer_policy))
.url;
request.upgrade_if_insecure =
fetch_client_settings_object.insecure_requests_policy ==
blink::mojom::InsecureRequestsPolicy::kUpgrade;
const url::Origin& origin = storage_key.origin();
// ResourceRequest::request_initiator is the request's origin in the spec.
// https://fetch.spec.whatwg.org/#concept-request-origin
// It's needed to be set to the origin where the service worker is registered.
// https://github.com/w3c/ServiceWorker/issues/1447
request.request_initiator = origin;
// This key is used to isolate requests from different contexts in accessing
// shared network resources like the http cache.
request.trusted_params = network::ResourceRequest::TrustedParams();
request.trusted_params->isolation_info =
storage_key.ToPartialNetIsolationInfo();
if (worker_script_type == blink::mojom::ScriptType::kClassic) {
if (is_main_script) {
// Set the "Service-Worker" header for the service worker script request:
// https://w3c.github.io/ServiceWorker/#service-worker-script-request
request.headers.SetHeader("Service-Worker", "script");
// The "Fetch a classic worker script" uses "same-origin" as mode and
// credentials mode.
// https://html.spec.whatwg.org/C/#fetch-a-classic-worker-script
request.mode = network::mojom::RequestMode::kSameOrigin;
request.credentials_mode = network::mojom::CredentialsMode::kSameOrigin;
// The request's destination is "serviceworker" for the main script.
// https://w3c.github.io/ServiceWorker/#update-algorithm
request.destination = network::mojom::RequestDestination::kServiceWorker;
request.resource_type =
static_cast<int>(blink::mojom::ResourceType::kServiceWorker);
} else {
// The "fetch a classic worker-imported script" doesn't have any statement
// about mode and credentials mode. Use the default value, which is
// "no-cors".
// https://html.spec.whatwg.org/C/#fetch-a-classic-worker-imported-script
DCHECK_EQ(network::mojom::RequestMode::kNoCors, request.mode);
// The request's destination is "script" for the imported script.
// https://w3c.github.io/ServiceWorker/#update-algorithm
request.destination = network::mojom::RequestDestination::kScript;
request.resource_type =
static_cast<int>(blink::mojom::ResourceType::kScript);
}
} else {
if (is_main_script) {
// https://html.spec.whatwg.org/multipage/webappapis.html#fetch-a-module-worker-script-tree
// Set the "Service-Worker" header for the service worker script request:
// https://w3c.github.io/ServiceWorker/#service-worker-script-request
request.headers.SetHeader("Service-Worker", "script");
// The "Fetch a module worker script graph" uses "same-origin" as mode for
// main script and "cors" otherwise.
// https://w3c.github.io/ServiceWorker/#update-algorithm
request.mode = network::mojom::RequestMode::kSameOrigin;
} else {
request.mode = network::mojom::RequestMode::kCors;
}
// The "Fetch a module worker script graph" uses "omit" as credentials
// mode.
// https://w3c.github.io/ServiceWorker/#update-algorithm
request.credentials_mode = network::mojom::CredentialsMode::kOmit;
// The request's destination is "serviceworker" for the main and
// static-imported module script.
// https://w3c.github.io/ServiceWorker/#update-algorithm
request.destination = network::mojom::RequestDestination::kServiceWorker;
request.resource_type =
static_cast<int>(blink::mojom::ResourceType::kServiceWorker);
}
return request;
}
bool IsPathRestrictionSatisfied(
const GURL& scope,
const GURL& script_url,
const std::optional<std::string_view>& service_worker_allowed_header_value,
std::string* error_message) {
return IsPathRestrictionSatisfiedInternal(scope, script_url, true,
service_worker_allowed_header_value,
error_message);
}
bool IsPathRestrictionSatisfiedWithoutHeader(const GURL& scope,
const GURL& script_url,
std::string* error_message) {
return IsPathRestrictionSatisfiedInternal(scope, script_url, false,
std::nullopt, error_message);
}
const base::flat_set<std::string> FetchHandlerBypassedHashStrings() {
const static base::NoDestructor<base::flat_set<std::string>> result(
base::SplitString(
features::kServiceWorkerBypassFetchHandlerBypassedHashStrings.Get(),
",", base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY));
return *result;
}
bool IsEligibleForSyntheticResponse(const GURL& client_url) {
if (!base::FeatureList::IsEnabled(
blink::features::kServiceWorkerSyntheticResponse)) {
return false;
}
const std::string allowed_urls =
blink::features::kServiceWorkerSyntheticResponseAllowedUrls.Get();
return IsEligibleForSyntheticResponseInternal(client_url, allowed_urls);
}
bool IsEligibleForSyntheticResponseForTesting( // IN-TEST
const GURL& client_url,
const std::string& allowed_urls) {
return IsEligibleForSyntheticResponseInternal(client_url, allowed_urls);
}
} // namespace service_worker_loader_helpers
} // namespace content
|