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 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521
|
// 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.
#ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CONTAINER_HOST_H_
#define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CONTAINER_HOST_H_
#include <map>
#include <memory>
#include <vector>
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/types/pass_key.h"
#include "content/browser/renderer_host/policy_container_host.h"
#include "content/common/content_export.h"
#include "mojo/public/cpp/bindings/associated_remote.h"
#include "mojo/public/cpp/bindings/receiver_set.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "services/metrics/public/cpp/ukm_source_id.h"
#include "services/network/public/mojom/document_isolation_policy.mojom.h"
#include "third_party/blink/public/common/service_worker/service_worker_status_code.h"
#include "third_party/blink/public/common/storage_key/storage_key.h"
#include "third_party/blink/public/mojom/service_worker/service_worker_container.mojom.h"
#include "third_party/blink/public/mojom/service_worker/service_worker_object.mojom-forward.h"
#include "third_party/blink/public/mojom/service_worker/service_worker_registration.mojom.h"
namespace content {
namespace service_worker_object_host_unittest {
class ServiceWorkerObjectHostTest;
}
class ServiceWorkerClient;
class ServiceWorkerContainerHost;
class ServiceWorkerContextCore;
class ServiceWorkerHost;
class ServiceWorkerObjectHost;
class ServiceWorkerRegistration;
class ServiceWorkerRegistrationObjectHost;
class ServiceWorkerVersion;
// Manager classes that manages *Host objects associated with a
// `ServiceWorkerContainerHost`. These objects are owned by, corresponds 1:1 to,
// and have the same lifetime as the `ServiceWorkerContainerHost` object and
// thus the `container_host_` pointers are always valid.
class CONTENT_EXPORT ServiceWorkerRegistrationObjectManager final {
public:
explicit ServiceWorkerRegistrationObjectManager(
ServiceWorkerContainerHost* container_host);
~ServiceWorkerRegistrationObjectManager();
// Returns an object info representing |registration|. The object info holds a
// Mojo connection to the ServiceWorkerRegistrationObjectHost for the
// |registration| to ensure the host stays alive while the object info is
// alive. A new ServiceWorkerRegistrationObjectHost instance is created if one
// can not be found in |registration_object_hosts_|.
//
// NOTE: The registration object info should be sent over Mojo in the same
// task with calling this method. Otherwise, some Mojo calls to
// blink::mojom::ServiceWorkerRegistrationObject or
// blink::mojom::ServiceWorkerObject may happen before establishing the
// connections, and they'll end up with crashes.
blink::mojom::ServiceWorkerRegistrationObjectInfoPtr CreateInfo(
scoped_refptr<ServiceWorkerRegistration> registration);
// Removes the ServiceWorkerRegistrationObjectHost corresponding to
// |registration_id|.
void RemoveHost(int64_t registration_id);
private:
friend class service_worker_object_host_unittest::ServiceWorkerObjectHostTest;
FRIEND_TEST_ALL_PREFIXES(ServiceWorkerJobTest, Unregister);
FRIEND_TEST_ALL_PREFIXES(ServiceWorkerJobTest, RegisterDuplicateScript);
FRIEND_TEST_ALL_PREFIXES(ServiceWorkerUpdateJobTest,
RegisterWithDifferentUpdateViaCache);
FRIEND_TEST_ALL_PREFIXES(BackgroundSyncManagerTest,
RegisterWithoutLiveSWRegistration);
// Contains all ServiceWorkerRegistrationObjectHost instances corresponding to
// the service worker registration JavaScript objects for the hosted execution
// context (service worker global scope or service worker client) in the
// renderer process.
std::map<int64_t /* registration_id */,
std::unique_ptr<ServiceWorkerRegistrationObjectHost>>
registration_object_hosts_;
// Always non-null and valid.
const raw_ref<ServiceWorkerContainerHost> container_host_;
SEQUENCE_CHECKER(sequence_checker_);
};
class CONTENT_EXPORT ServiceWorkerObjectManager final {
public:
explicit ServiceWorkerObjectManager(
ServiceWorkerContainerHost* container_host);
~ServiceWorkerObjectManager();
// For service worker execution contexts.
// Returns an object info representing |self.serviceWorker|. The object
// info holds a Mojo connection to the ServiceWorkerObjectHost for the
// |serviceWorker| to ensure the host stays alive while the object info is
// alive. See documentation.
blink::mojom::ServiceWorkerObjectInfoPtr CreateInfoToSend(
scoped_refptr<ServiceWorkerVersion> version);
// Returns a ServiceWorkerObjectHost instance for |version| for this
// container host. A new instance is created if one does not already exist.
// ServiceWorkerObjectHost will have an ownership of the |version|.
base::WeakPtr<ServiceWorkerObjectHost> GetOrCreateHost(
scoped_refptr<ServiceWorkerVersion> version);
// Removes the ServiceWorkerObjectHost corresponding to |version_id|.
void RemoveHost(int64_t version_id);
private:
friend class service_worker_object_host_unittest::ServiceWorkerObjectHostTest;
FRIEND_TEST_ALL_PREFIXES(ServiceWorkerJobTest, Unregister);
FRIEND_TEST_ALL_PREFIXES(ServiceWorkerJobTest, RegisterDuplicateScript);
FRIEND_TEST_ALL_PREFIXES(ServiceWorkerUpdateJobTest,
RegisterWithDifferentUpdateViaCache);
// Contains all ServiceWorkerObjectHost instances corresponding to
// the service worker JavaScript objects for the hosted execution
// context (service worker global scope or service worker client) in the
// renderer process.
std::map<int64_t /* version_id */, std::unique_ptr<ServiceWorkerObjectHost>>
service_worker_object_hosts_;
// Always non-null and valid.
const raw_ref<ServiceWorkerContainerHost> container_host_;
SEQUENCE_CHECKER(sequence_checker_);
};
// `ServiceWorkerContainerHost` is the host of a ServiceWorkerContainer in the
// renderer process: https://w3c.github.io/ServiceWorker/#serviceworkercontainer
// - `ServiceWorkerContainerHostForClient` for a window, dedicated worker, or
// shared worker.
// - `ServiceWorkerContainerHostForServiceWorker` for a service worker execution
// context.
//
// Most of its functionality helps implement the web-exposed
// ServiceWorkerContainer interface (navigator.serviceWorker). The long-term
// goal is for it to be the host of ServiceWorkerContainer in the renderer,
// although currently only windows support ServiceWorkerContainers (see
// https://crbug.com/371690).
//
// ServiceWorkerContainerHost is also responsible for handling service worker
// related things in the execution context where the container lives. For
// example, the container host manages service worker (registration) JavaScript
// object hosts, delivers messages to/from the service worker, and dispatches
// events on the container.
class CONTENT_EXPORT ServiceWorkerContainerHost
: public blink::mojom::ServiceWorkerContainerHost {
public:
ServiceWorkerContainerHost(const ServiceWorkerContainerHost& other) = delete;
ServiceWorkerContainerHost& operator=(
const ServiceWorkerContainerHost& other) = delete;
ServiceWorkerContainerHost(ServiceWorkerContainerHost&& other) = delete;
ServiceWorkerContainerHost& operator=(ServiceWorkerContainerHost&& other) =
delete;
~ServiceWorkerContainerHost() override;
// Implements blink::mojom::ServiceWorkerContainerHost.
void CloneContainerHost(
mojo::PendingReceiver<blink::mojom::ServiceWorkerContainerHost> receiver)
override;
virtual const base::WeakPtr<ServiceWorkerContextCore>& context() const = 0;
virtual base::WeakPtr<ServiceWorkerContainerHost> AsWeakPtr() = 0;
// The URL of this context.
virtual const GURL& url() const = 0;
// The url to use for access check, the same url as the one used for scope
// match. This is needed for srcdoc iframes where url() is "about:srcdoc" and
// url_for_access_check() is the parent client's URL that matches the service
// worker's origin.
virtual const GURL& url_for_access_check() const = 0;
// Calls ContentBrowserClient::AllowServiceWorker(). Returns true if content
// settings allows service workers to run at |scope|. If this container is for
// a window client, the check involves the topmost frame url as well as
// |scope|, and may display tab-level UI.
// If non-empty, |script_url| is the script the service worker will run.
virtual bool AllowServiceWorker(const GURL& scope,
const GURL& script_url) = 0;
using StatusCallback =
base::OnceCallback<void(blink::ServiceWorkerStatusCode)>;
virtual void DispatchExtendableMessageEvent(
scoped_refptr<ServiceWorkerVersion> version,
::blink::TransferableMessage message,
StatusCallback callback) = 0;
virtual void Update(
scoped_refptr<ServiceWorkerRegistration> registration,
blink::mojom::FetchClientSettingsObjectPtr
outside_fetch_client_settings_object,
blink::mojom::ServiceWorkerRegistrationObjectHost::UpdateCallback
callback) = 0;
ServiceWorkerRegistrationObjectManager& registration_object_manager() {
return registration_object_manager_;
}
ServiceWorkerObjectManager& version_object_manager() {
return version_object_manager_;
}
protected:
ServiceWorkerContainerHost();
SEQUENCE_CHECKER(sequence_checker_);
private:
// Container host receivers other than the original |receiver_|. These include
// receivers used from (dedicated or shared) worker threads, or from
// ServiceWorkerSubresourceLoaderFactory.
mojo::ReceiverSet<blink::mojom::ServiceWorkerContainerHost>
additional_receivers_;
ServiceWorkerRegistrationObjectManager registration_object_manager_{this};
ServiceWorkerObjectManager version_object_manager_{this};
};
// `ServiceWorkerContainerHostForClient` is owned by and corresponds 1:1 to a
// `ServiceWorkerClient`.
//
// `ServiceWorkerContainerHostForClient` is created at the same time as the
// corresponding `ServiceWorkerClient` construction.
// TODO(https://crbug.com/336154571): Create
// `ServiceWorkerContainerHostForClient` once the global scope in the renderer
// process is created and ready to receive mojo calls.
//
// The container host has a Mojo connection to the container in the renderer,
// and destruction of the container host happens upon disconnection of the Mojo
// pipe.
class CONTENT_EXPORT ServiceWorkerContainerHostForClient final
: public ServiceWorkerContainerHost {
public:
// Binds `this` to the mojo pipes of `container_info`.
// Must be called during `ServiceWorkerClient::CommitResponse()`.
ServiceWorkerContainerHostForClient(
base::PassKey<ServiceWorkerClient>,
base::WeakPtr<ServiceWorkerClient> service_worker_client,
blink::mojom::ServiceWorkerContainerInfoForClientPtr& container_info,
const PolicyContainerPolicies& policy_container_policies,
mojo::PendingRemote<network::mojom::CrossOriginEmbedderPolicyReporter>
coep_reporter,
mojo::PendingRemote<network::mojom::DocumentIsolationPolicyReporter>
dip_reporter,
ukm::SourceId ukm_source_id);
~ServiceWorkerContainerHostForClient() override;
ServiceWorkerClient& service_worker_client() {
return *service_worker_client_;
}
const ServiceWorkerClient& service_worker_client() const {
return *service_worker_client_;
}
// For assertion only.
bool IsContainerRemoteConnected() const;
// Should be called only when `controller()` is non-null.
blink::mojom::ControllerServiceWorkerInfoPtr
CreateControllerServiceWorkerInfo();
// Dispatches message event to the client (document, dedicated worker, or
// shared worker).
void PostMessageToClient(ServiceWorkerVersion& version,
blink::TransferableMessage message);
// Sends information about the controller to the container of the service
// worker clients in the renderer. If |notify_controllerchange| is true,
// instructs the renderer to dispatch a 'controllerchange' event.
void SendSetController(bool notify_controllerchange);
// Called from ServiceWorkerClient.
void CountFeature(blink::mojom::WebFeature feature);
void OnVersionAttributesChanged(
ServiceWorkerRegistration* registration,
blink::mojom::ChangedServiceWorkerObjectsMaskPtr changed_mask);
void ReturnRegistrationForReadyIfNeeded();
void CloneControllerServiceWorker(
mojo::PendingReceiver<blink::mojom::ControllerServiceWorker> receiver);
// Implements blink::mojom::ServiceWorkerContainerHost.
void Register(const GURL& script_url,
blink::mojom::ServiceWorkerRegistrationOptionsPtr options,
blink::mojom::FetchClientSettingsObjectPtr
outside_fetch_client_settings_object,
RegisterCallback callback) override;
void GetRegistration(const GURL& client_url,
GetRegistrationCallback callback) override;
void GetRegistrations(GetRegistrationsCallback callback) override;
void GetRegistrationForReady(
GetRegistrationForReadyCallback callback) override;
void EnsureControllerServiceWorker(
mojo::PendingReceiver<blink::mojom::ControllerServiceWorker> receiver,
blink::mojom::ControllerServiceWorkerPurpose purpose) override;
void HintToUpdateServiceWorker() override;
void EnsureFileAccess(const std::vector<base::FilePath>& file_paths,
EnsureFileAccessCallback callback) override;
void OnExecutionReady() override;
// Implements ServiceWorkerContainerHost.
const base::WeakPtr<ServiceWorkerContextCore>& context() const override;
base::WeakPtr<ServiceWorkerContainerHost> AsWeakPtr() override;
const GURL& url() const override;
const GURL& url_for_access_check() const override;
bool AllowServiceWorker(const GURL& scope, const GURL& script_url) override;
void DispatchExtendableMessageEvent(
scoped_refptr<ServiceWorkerVersion> version,
::blink::TransferableMessage message,
StatusCallback callback) override;
void Update(scoped_refptr<ServiceWorkerRegistration> registration,
blink::mojom::FetchClientSettingsObjectPtr
outside_fetch_client_settings_object,
blink::mojom::ServiceWorkerRegistrationObjectHost::UpdateCallback
callback) override;
ukm::SourceId ukm_source_id() const { return ukm_source_id_; }
ServiceWorkerVersion* controller() const;
private:
// Callback for ServiceWorkerContextCore::RegisterServiceWorker().
void RegistrationComplete(const GURL& script_url,
const GURL& scope,
RegisterCallback callback,
int64_t trace_id,
mojo::ReportBadMessageCallback bad_message_callback,
blink::ServiceWorkerStatusCode status,
const std::string& status_message,
int64_t registration_id);
// Callback for ServiceWorkerRegistry::FindRegistrationForClientUrl().
void GetRegistrationComplete(
GetRegistrationCallback callback,
int64_t trace_id,
blink::ServiceWorkerStatusCode status,
scoped_refptr<ServiceWorkerRegistration> registration);
// Callback for ServiceWorkerStorage::GetRegistrationsForOrigin().
void GetRegistrationsComplete(
GetRegistrationsCallback callback,
int64_t trace_id,
blink::ServiceWorkerStatusCode status,
const std::vector<scoped_refptr<ServiceWorkerRegistration>>&
registrations);
// Callback for ServiceWorkerVersion::RunAfterStartWorker()
void StartControllerComplete(
mojo::PendingReceiver<blink::mojom::ControllerServiceWorker> receiver,
blink::ServiceWorkerStatusCode status);
bool IsValidGetRegistrationMessage(const GURL& client_url,
std::string* out_error) const;
bool IsValidGetRegistrationsMessage(std::string* out_error) const;
bool IsValidGetRegistrationForReadyMessage(std::string* out_error) const;
// Perform common checks that need to run before ContainerHost methods that
// come from a child process are handled.
// |scope| is checked if it is allowed to run a service worker.
// If non-empty, |script_url| is the script associated with the service
// worker.
// Returns true if all checks have passed.
// If anything looks wrong |callback| will run with an error
// message prefixed by |error_prefix| and |args|, and false is returned.
template <typename CallbackType, typename... Args>
bool CanServeContainerHostMethods(CallbackType* callback,
const GURL& scope,
const GURL& script_url,
const char* error_prefix,
Args... args);
// For service worker clients. Similar to EnsureControllerServiceWorker, but
// this returns a bound Mojo ptr which is supposed to be sent to clients. The
// controller ptr passed to the clients will be used to intercept requests
// from them.
// It is invalid to call this when controller_ is null.
//
// This method can be called in one of the following cases:
//
// - During navigation, right after CommitResponse().
// - When a controller is updated by UpdateController() (e.g.
// by OnSkippedWaiting() or SetControllerRegistration()).
// In some cases the controller worker may not be started yet.
//
// This may return nullptr if the controller service worker does not have a
// fetch handler, i.e. when the renderer does not need the controller ptr.
//
// WARNING:
// Unlike EnsureControllerServiceWorker, this method doesn't guarantee that
// the controller worker is running because this method can be called in some
// situations where the worker isn't running yet. When the returned ptr is
// stored somewhere and intended to use later, clients need to make sure
// that the worker is eventually started to use the ptr.
// Currently all the callsites do this, i.e. they start the worker before
// or after calling this, but there's no mechanism to prevent future breakage.
// TODO(crbug.com/40569659): Figure out a way to prevent misuse of this
// method.
// TODO(crbug.com/40569659): Make sure the connection error handler fires in
// ControllerServiceWorkerConnector (so that it can correctly call
// EnsureControllerServiceWorker later) if the worker gets killed before
// events are dispatched.
//
// TODO(kinuko): revisit this if we start to use the ControllerServiceWorker
// for posting messages.
mojo::PendingRemote<blink::mojom::ControllerServiceWorker>
GetRemoteControllerServiceWorker();
// The corresponding service worker client that owns `this`.
// Always valid and non-null except for initialization/destruction.
base::WeakPtr<ServiceWorkerClient> service_worker_client_;
// The ready() promise is only allowed to be created once.
// |get_ready_callback_| has three states:
// 1. |get_ready_callback_| is null when ready() has not yet been called.
// 2. |*get_ready_callback_| is a valid OnceCallback after ready() has been
// called and the callback has not yet been run.
// 3. |*get_ready_callback_| is a null OnceCallback after the callback has
// been run.
std::unique_ptr<GetRegistrationForReadyCallback> get_ready_callback_;
// |container_| is the remote renderer-side ServiceWorkerContainer that |this|
// is hosting.
mojo::AssociatedRemote<blink::mojom::ServiceWorkerContainer> container_;
// The source id of the client's ExecutionContext.
const ukm::SourceId ukm_source_id_;
// The policy container policies of the client.
const PolicyContainerPolicies policy_container_policies_;
// An endpoint connected to the COEP reporter. A clone of this connection is
// passed to the service worker. Bound on response commit.
mojo::Remote<network::mojom::CrossOriginEmbedderPolicyReporter>
coep_reporter_;
// An endpoint connected to the DocumentIsolationPolicy reporter. A clone of
// this connection is passed to the service worker. Bound on response commit.
mojo::Remote<network::mojom::DocumentIsolationPolicyReporter> dip_reporter_;
base::WeakPtrFactory<ServiceWorkerContainerHostForClient> weak_ptr_factory_{
this};
};
// ServiceWorkerContainerHostForServiceWorker is owned by ServiceWorkerHost,
// which in turn is owned by ServiceWorkerVersion. The container host and worker
// host are destructed when the service worker is stopped.
class CONTENT_EXPORT ServiceWorkerContainerHostForServiceWorker final
: public ServiceWorkerContainerHost {
public:
ServiceWorkerContainerHostForServiceWorker(
base::WeakPtr<ServiceWorkerContextCore> context,
ServiceWorkerHost* service_worker_host,
const GURL& url,
const blink::StorageKey& storage_key);
~ServiceWorkerContainerHostForServiceWorker() override;
// Implements blink::mojom::ServiceWorkerContainerHost.
void Register(const GURL& script_url,
blink::mojom::ServiceWorkerRegistrationOptionsPtr options,
blink::mojom::FetchClientSettingsObjectPtr
outside_fetch_client_settings_object,
RegisterCallback callback) override;
void GetRegistration(const GURL& client_url,
GetRegistrationCallback callback) override;
void GetRegistrations(GetRegistrationsCallback callback) override;
void GetRegistrationForReady(
GetRegistrationForReadyCallback callback) override;
void EnsureControllerServiceWorker(
mojo::PendingReceiver<blink::mojom::ControllerServiceWorker> receiver,
blink::mojom::ControllerServiceWorkerPurpose purpose) override;
void HintToUpdateServiceWorker() override;
void EnsureFileAccess(const std::vector<base::FilePath>& file_paths,
EnsureFileAccessCallback callback) override;
void OnExecutionReady() override;
// Implements ServiceWorkerContainerHost.
const base::WeakPtr<ServiceWorkerContextCore>& context() const override;
base::WeakPtr<ServiceWorkerContainerHost> AsWeakPtr() override;
const GURL& url() const override;
const GURL& url_for_access_check() const override;
bool AllowServiceWorker(const GURL& scope, const GURL& script_url) override;
void DispatchExtendableMessageEvent(
scoped_refptr<ServiceWorkerVersion> version,
::blink::TransferableMessage message,
StatusCallback callback) override;
void Update(scoped_refptr<ServiceWorkerRegistration> registration,
blink::mojom::FetchClientSettingsObjectPtr
outside_fetch_client_settings_object,
blink::mojom::ServiceWorkerRegistrationObjectHost::UpdateCallback
callback) override;
ServiceWorkerHost* service_worker_host();
const blink::StorageKey& key() const;
const url::Origin& top_frame_origin() const;
private:
// The ServiceWorkerHost that owns |this|.
const raw_ptr<ServiceWorkerHost> service_worker_host_;
const base::WeakPtr<ServiceWorkerContextCore> context_;
// The URL of the service worker's script.
const GURL url_;
const blink::StorageKey key_;
const url::Origin top_frame_origin_;
base::WeakPtrFactory<ServiceWorkerContainerHostForServiceWorker>
weak_ptr_factory_{this};
};
} // namespace content
#endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CONTAINER_HOST_H_
|