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
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef EXTENSIONS_BROWSER_SERVICE_WORKER_SERVICE_WORKER_TASK_QUEUE_H_
#define EXTENSIONS_BROWSER_SERVICE_WORKER_SERVICE_WORKER_TASK_QUEUE_H_
#include <map>
#include <optional>
#include <string>
#include <vector>
#include "base/containers/flat_map.h"
#include "base/containers/span.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/scoped_multi_source_observation.h"
#include "base/unguessable_token.h"
#include "base/version.h"
#include "components/keyed_service/core/keyed_service.h"
#include "content/public/browser/service_worker_context.h"
#include "content/public/browser/service_worker_context_observer.h"
#include "extensions/browser/lazy_context_id.h"
#include "extensions/browser/lazy_context_task_queue.h"
#include "extensions/browser/service_worker/sequenced_context_id.h"
#include "extensions/browser/service_worker/service_worker_state.h"
#include "extensions/browser/service_worker/worker_id.h"
#include "extensions/common/extension_id.h"
#include "third_party/blink/public/common/service_worker/service_worker_status_code.h"
#include "third_party/blink/public/common/tokens/tokens.h"
#include "url/gurl.h"
namespace content {
class BrowserContext;
struct ServiceWorkerRunningInfo;
}
namespace extensions {
class Extension;
// A service worker implementation of `LazyContextTaskQueue`. For an overview of
// service workers on the web see https://web.dev/learn/pwa/service-workers.
// Extension workers do not follow the typical web worker lifecycle. At a high
// level:
// * only one worker instance should run at any given time for an extension
// (e.g. there should not be a active and waiting version)
// * only one worker version (version of its code) should run for each browser
// session
// * events can be dispatched to the worker before it is activated
//
// This class, despite being a task queue, does much more than just queue tasks
// for the worker. It handles worker registration, starting/stopping, and task
// readiness monitoring. The highlights to understand this class are:
//
// Worker Registration:
//
// Worker registration must occur in order to start a worker for the extension.
// Otherwise requests to start a worker will fail. Service worker registration
// is persisted to disk in the //content layer to avoid unnecessary registration
// requests. This prevents a registration request for every restart of the
// browser. If there’s a registration record the registration is still verified
// with the //content layer).
//
// Worker Started/Stopped:
//
// Starting:
//
// A worker must be started before it can become ready to process the event
// tasks. Every task added outside of when the worker is starting will cause
// this class to request the worker to start. This is done this way because it
// is difficult to know if a worker is currently running and ready to process
// tasks.
//
// `DidStartServiceWorkerContext()` is called asynchronously from the extension
// renderer process (potentially before or after `DidStartWorkerForScope()`) and
// it records that the worker has started in the renderer (process).
//
// Stopping:
//
// TODO(crbug.com/40936639): update the below once `OnStopped()` is called to
// track browser starting.
//
// `DidStopServiceWorkerContext()` is called when the worker is stopped to track
// renderer stopping. `DidStopServiceWorkerContext()` is not always guaranteed
// to be called.
//
// Task Processing Readiness:
//
// Three worker started signals are together used to determine when a worker is
// ready to process tasks. Due to this it makes the process more complicated
// than just checking if the worker is “running” (e.g by calling the //content
// layer for this).
//
// A worker is checked for readiness by its worker state. Readiness checks three
// signals: `BrowserState`, `RendererState`, and `WorkerId` that are each set by
// certain methods:
// * `BrowserState`: `DidStartWorkerForScope()` signal sets the value to
// ready. This signal means that the worker was *requested* to start and it
// verified that a worker registration exists at the //content layer. It is
// considered the “browser-side” signal that the worker is ready.
// * `RendererState`: `DidStartServiceWorkerContext()` signal sets the value
// to ready. This is start requests are sent to the worker. This signal
// means:
// * that there is a worker renderer process thread running the service
// worker code
// * the worker has done one pass and executed it’s entire JS global scope
// * as part of executing that scope: the worker has registered all its
// (top-level/global) event listeners with the //extensions layer (all
// event listener mojom calls have been received and processed). This
// ordering is guaranteed because the mojom message that calls this
// signal is after the event listener mojom messages on an associated
// mojom pipe.
// * `worker_id_.has_value()`: this signal confirms that
// the class is populated with the running service worker’s information
// (render process and thread id, and worker version id) . This confirms
// that when the task is dispatched to the worker it is sent to the running
// worker (and not a previously stopped one).
//
// Ordering of Registration and Start Worker Completion:
//
// Note that while worker registration in //content `DidRegisterServiceWorker()`
// will finish before requesting the worker to start, there is no guarantee on
// how the signals for their completion will be received.
//
// For example `DidRegisterServiceWorker()`, `DidStartWorkerForScope()` and
// `DidStartServiceWorkerContext()` signals are not guaranteed to finish in any
// order.
//
// Activation Token:
//
// TODO(jlulejian): Explain how the activation token tracks
// activation/deactivation and how the class uses it.
//
// TODO(lazyboy): Clean up queue when extension is unloaded/uninstalled.
class ServiceWorkerTaskQueue : public KeyedService,
public LazyContextTaskQueue,
public content::ServiceWorkerContextObserver,
public ServiceWorkerState::Observer {
public:
explicit ServiceWorkerTaskQueue(content::BrowserContext* browser_context);
ServiceWorkerTaskQueue(const ServiceWorkerTaskQueue&) = delete;
ServiceWorkerTaskQueue& operator=(const ServiceWorkerTaskQueue&) = delete;
~ServiceWorkerTaskQueue() override;
// Convenience method to return the ServiceWorkerTaskQueue for a given
// `context`.
static ServiceWorkerTaskQueue* Get(content::BrowserContext* context);
// Always returns true since we currently request a worker to start for every
// task sent to it.
bool ShouldEnqueueTask(content::BrowserContext* context,
const Extension* extension) const override;
// Returns true if the service worker seems ready to run pending tasks. It
// only informs metrics data, not task dispatching logic.
bool IsReadyToRunTasks(content::BrowserContext* context,
const Extension* extension) const override;
// TODO(crbug.com/40276609): rename to AddPendingTaskAndMaybeDispatch.
void AddPendingTask(const LazyContextId& context_id,
PendingTask task) override;
// Performs Service Worker related tasks upon `extension` activation,
// e.g. registering `extension`'s worker, executing any pending tasks.
void ActivateExtension(const Extension* extension);
// Performs Service Worker related tasks upon `extension` deactivation,
// e.g. unregistering `extension`'s worker.
void DeactivateExtension(const Extension* extension);
// Called once an extension Service Worker context was initialized but not
// necessarily started executing its JavaScript.
void DidInitializeServiceWorkerContext(
int render_process_id,
const ExtensionId& extension_id,
int64_t service_worker_version_id,
int thread_id,
const blink::ServiceWorkerToken& service_worker_token);
// Called once an extension Service Worker started running.
// This can be thought as "loadstop", i.e. the global JS script of the worker
// has completed executing.
void DidStartServiceWorkerContext(
int render_process_id,
const ExtensionId& extension_id,
const base::UnguessableToken& activation_token,
const GURL& service_worker_scope,
int64_t service_worker_version_id,
int thread_id);
// Called once an extension Service Worker was destroyed.
void DidStopServiceWorkerContext(
int render_process_id,
const ExtensionId& extension_id,
const base::UnguessableToken& activation_token,
const GURL& service_worker_scope,
int64_t service_worker_version_id,
int thread_id);
// Called when the extension renderer process that was running an extension
// Service Worker has exited.
void RenderProcessForWorkerExited(const WorkerId& worker_id);
// Returns the current activation token for an extension, if the extension
// is currently activated. Returns std::nullopt if the extension isn't
// activated.
std::optional<base::UnguessableToken> GetCurrentActivationToken(
const ExtensionId& extension_id) const;
// Activates incognito split mode extensions that are activated in `other`
// task queue.
void ActivateIncognitoSplitModeExtensions(ServiceWorkerTaskQueue* other);
// Retrieves the version of the extension that has currently registered
// and stored an extension service worker. If there is no such version (if
// there was never a service worker or if the worker was unregistered),
// returns an invalid version.
base::Version RetrieveRegisteredServiceWorkerVersion(
const ExtensionId& extension_id);
// ServiceWorkerState::Observer:
void OnWorkerStart(const SequencedContextId& context_id,
const WorkerId& worker_id) override;
void OnWorkerStartFail(const SequencedContextId& context_id,
base::Time start_time,
content::StatusCodeResponse status) override;
void OnWorkerStop(
int64_t version_id,
const content::ServiceWorkerRunningInfo& worker_info) override;
// TODO(crbug.com/334940006): Convert these completely to
// ServiceWorkerContextObserverSynchronous.
// content::ServiceWorkerContextObserver:
void OnRegistrationStored(int64_t registration_id,
const GURL& scope,
const content::ServiceWorkerRegistrationInformation&
service_worker_info) override;
void OnReportConsoleMessage(int64_t version_id,
const GURL& scope,
const content::ConsoleMessage& message) override;
void OnDestruct(content::ServiceWorkerContext* context) override;
// Worker unregistrations can fail in expected and unexpected ways, this
// determines if the unregistration can be accepted as successful from the
// extension's perspective. When there was a record of worker registration
// prior to unregistering, `worker_previously_registered` should be set to
// true. Used in metrics.
bool IsWorkerUnregistrationSuccess(blink::ServiceWorkerStatusCode status_code,
bool worker_previously_registered);
// Whether this class is aware of a worker being registered. Note: This does
// not verify that the registration exists in the service worker layer, so it
// may not be 100% accurate (if there are bugs in registration tracking logic
// in this class). Used in metrics.
bool IsWorkerRegistered(const ExtensionId extension_id);
class TestObserver {
public:
TestObserver();
TestObserver(const TestObserver&) = delete;
TestObserver& operator=(const TestObserver&) = delete;
virtual ~TestObserver();
// Called when an extension with id `extension_id` is going to be activated.
// `will_register_service_worker` is true if a Service Worker will be
// registered.
virtual void OnActivateExtension(const ExtensionId& extension_id,
bool will_register_service_worker) {}
// Called immediately after we send a request to start the worker (whether
// it ultimately succeeds or fails).
virtual void RequestedWorkerStart(const ExtensionId& extension_id) {}
virtual void OnWorkerRegistrationFailed(
const ExtensionId& extension_id,
blink::ServiceWorkerStatusCode status_code) {}
virtual void DidStartWorkerFail(
const ExtensionId& extension_id,
size_t num_pending_tasks,
blink::ServiceWorkerStatusCode status_code) {}
// Called when SW was re-registered to fix missing registration, and that
// step finished to mitigate the problem.
virtual void RegistrationMismatchMitigated(const ExtensionId& extension_id,
bool mitigation_succeeded) {}
// Called when a service worker is registered for the extension with the
// associated `extension_id`.
virtual void DidInitializeServiceWorkerContext(
const ExtensionId& extension_id) {}
// Called when a service worker is fully started (DidStartWorkerForScope()
// and DidStartServiceWorkerContext() were called) for the extension with
// the associated `extension_id`.
virtual void DidStartWorker(const ExtensionId& extension_id) {}
// Called when a service worker registered for the extension with the
// `extension_id` has notified the task queue that the render worker thread
// is preparing to terminate.
virtual void DidStopServiceWorkerContext(const ExtensionId& extension_id) {}
// Called when UntrackServiceWorkerState() is invoked for a worker
// associated with `scope` (because it's stopping or has stopped).
// This notification occurs even if the worker is a sub-scope worker and
// does not result in altering the ServiceWorkerTaskQueue's tracking state
// for the primary extension service worker.
virtual void UntrackServiceWorkerState(const GURL& scope) {}
// Called when a service worker registered for the extension with the
// `extension_id` has been unregistered in the //content layer.
virtual void WorkerUnregistered(const ExtensionId& extension_id) {}
// Called when a service worker registered for the extension with the
// `extension_id` has been registered in the //content layer. It is always
// called, even if the registration request fails.
virtual void OnWorkerRegistered(const ExtensionId& extension_id) {}
};
static void SetObserverForTest(TestObserver* observer);
size_t GetNumPendingTasksForTest(const LazyContextId& lazy_context_id);
ServiceWorkerState* GetWorkerStateForTesting(
const SequencedContextId& context_id) {
return GetWorkerState(context_id);
}
private:
enum class RegistrationReason {
REGISTER_ON_EXTENSION_LOAD,
RE_REGISTER_ON_STATE_MISMATCH,
RE_REGISTER_ON_TIMEOUT,
};
// KeyedService:
void Shutdown() override;
// Untracks the service worker from any state that believe the worker in ready
// to receive extension events.
void UntrackServiceWorkerState(
int64_t version_id,
const content::ServiceWorkerRunningInfo& worker_info);
void RegisterServiceWorker(RegistrationReason reason,
const SequencedContextId& context_id,
const Extension& extension);
// Dispatches the given tasks to the service worker associated to the given
// context. Requires the worker to be ready.
void DispatchTasksImmediately(const SequencedContextId& context_id,
base::span<PendingTask> tasks);
// Checks if the `activation_token` has any more worker registration retries
// left. Retries are only performed on registration timeout and up to 3 times
// before silently failing. CHECK()s if called before a worker registration is
// attempted.
bool ShouldRetryRegistrationRequest(base::UnguessableToken activation_token);
// Callbacks called when the worker is registered or unregistered,
// respectively. `worker_previously_successfully_registered` true indicates
// that when the unregistration request was made the task queue had a record
// of an existing worker registration.
void DidRegisterServiceWorker(const SequencedContextId& context_id,
RegistrationReason reason,
base::Time start_time,
blink::ServiceWorkerStatusCode status);
void DidUnregisterServiceWorker(
const ExtensionId& extension_id,
const base::UnguessableToken& activation_token,
bool worker_previously_registered,
blink::ServiceWorkerStatusCode status);
// Worker registrations can fail in expected and unexpected ways, this
// determines if the registration can be accepted as successful from the
// extension's perspective.
bool IsWorkerRegistrationSuccess(blink::ServiceWorkerStatusCode status);
bool IsStartWorkerFailureUnexpected(
blink::ServiceWorkerStatusCode status_code);
// Records that the extension with `extension_id` and `version` successfully
// registered a Service Worker.
void SetRegisteredServiceWorkerInfo(const ExtensionId& extension_id,
const base::Version& version);
// Clears any record of registered Service Worker for the given extension with
// `extension_id`.
void RemoveRegisteredServiceWorkerInfo(const ExtensionId& extension_id);
// Returns true if `activation_token` is the current activation for
// `extension_id`.
bool IsCurrentActivation(
const ExtensionId& extension_id,
const base::UnguessableToken& activation_token) const;
const ServiceWorkerState* GetWorkerState(
const SequencedContextId& context_id) const;
ServiceWorkerState* GetWorkerState(const SequencedContextId& context_id);
content::ServiceWorkerContext* GetServiceWorkerContext(
const ExtensionId& extension_id);
// Starts and stops observing `service_worker_context`.
//
// The methods ensure that many:1 relationship of SWContext:SWContextObserver
// is preserved correctly.
void StartObserving(content::ServiceWorkerContext* service_worker_context);
void StopObserving(content::ServiceWorkerContext* service_worker_context);
// Asynchronously verifies whether an expected SW registration (denoted by
// `scope`) is there.
void VerifyRegistration(content::ServiceWorkerContext* service_worker_context,
const SequencedContextId& context_id,
const GURL& scope);
void DidVerifyRegistration(const SequencedContextId& context_id,
content::ServiceWorkerCapability capability);
// Emit histograms when we know we're going to start the worker.
void EmitWorkerWillBeStartedHistograms(const ExtensionId& extension_id);
// Returns the pending tasks for the activated extension. This returns
// `nullptr` if the vector has not been created yet for `context_id`. Should
// return non-null after activating extension and before deactivating
// extension.
std::vector<PendingTask>* pending_tasks(const SequencedContextId& context_id);
// Returns the pending tasks for the activated extension. This creates an
// empty `std::vector<PendingTask>` for `context_id` if there is not one yet.
// TODO(crbug.com/40276609): Can we ensure `context_id` key has been set
// before this is called so we don't need to add it?
std::vector<ServiceWorkerTaskQueue::PendingTask>& GetOrAddPendingTasks(
const SequencedContextId& context_id);
// Adds a pending task for the activated extension.
void AddPendingTaskForContext(PendingTask&& pending_task,
const SequencedContextId& context_id);
// Stop tracking any pending tasks for this `context_id` for the activated
// extension.
void DeleteAllPendingTasks(const SequencedContextId& context_id);
// Whether there are any pending tasks to run for the activated extension.
bool HasPendingTasks(const SequencedContextId& context_id);
// Starts service worker, unless it's already in the process of starting.
void MaybeStartWorker(ServiceWorkerState* worker_state,
const SequencedContextId& context_id);
// Whether the task queue (as a keyed service) has been informed that the
// browser context is shutting down. Used for metrics purposes.
bool browser_context_shutting_down_ = false;
std::map<content::ServiceWorkerContext*, int> observing_worker_contexts_;
// The state of worker of each activated extension.
base::flat_map<SequencedContextId, std::unique_ptr<ServiceWorkerState>>
worker_state_map_;
// NOTE: this needs to come after `worker_state_map_` to ensure the observers
// are removed before the `ServiceWorkerState`s are cleaned up.
base::ScopedMultiSourceObservation<ServiceWorkerState,
ServiceWorkerState::Observer>
worker_state_observations_{this};
// TODO(crbug.com/40276609): Do we need to track this by `SequencedContextId`
// or could we use `ExtensionId` instead?
// `PendingTasks` for the activated extension that will be run as soon as the
// worker is started and ready.
std::map<SequencedContextId, std::vector<PendingTask>> pending_tasks_map_;
const raw_ptr<content::BrowserContext> browser_context_ = nullptr;
// A map of Service Worker registrations if this instance is for an
// off-the-record BrowserContext. These are stored in the ExtensionPrefs
// for a regular profile.
// TODO(crbug.com/40617251): Make this better by passing in something that
// will manage storing and retrieving this data.
base::flat_map<ExtensionId, base::Version> off_the_record_registrations_;
// Current activation tokens for each activated extensions.
std::map<ExtensionId, base::UnguessableToken> activation_tokens_;
// The number of times that a worker registration request has been retried
// for an activation token.
std::map<base::UnguessableToken, int> worker_reregistration_attempts_;
// A set of service worker registrations that are pending storage.
// These are registrations that succeeded in the first step (triggering
// `DidRegisterServiceWorker`), but have not yet been stored.
// They are cleared out (and the registration state is stored) in response to
// `OnRegistrationStored`. The key is the extension's ID and the value is the
// activation token expected for that registration.
std::map<ExtensionId, base::UnguessableToken> pending_storage_registrations_;
// TODO(crbug.com/40276609): Do we need to track this by `SequencedContextId`
// or could we used `ExtensionId` instead?
// The activated extensions that have workers that are registered with the
// //content layer.
std::set<SequencedContextId> worker_registered_;
base::WeakPtrFactory<ServiceWorkerTaskQueue> weak_factory_{this};
};
} // namespace extensions
#endif // EXTENSIONS_BROWSER_SERVICE_WORKER_SERVICE_WORKER_TASK_QUEUE_H_
|