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
|
// Copyright 2014 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/push_messaging/push_messaging_router.h"
#include <string>
#include "base/check_deref.h"
#include "base/feature_list.h"
#include "base/functional/bind.h"
#include "base/metrics/histogram_macros.h"
#include "content/browser/devtools/devtools_background_services_context_impl.h"
#include "content/browser/service_worker/service_worker_context_wrapper.h"
#include "content/browser/service_worker/service_worker_registration.h"
#include "content/browser/storage_partition_impl.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/common/content_features.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/push_messaging/push_messaging.mojom.h"
#include "third_party/blink/public/mojom/push_messaging/push_messaging_status.mojom.h"
namespace content {
namespace {
using ServiceWorkerStartCallback =
base::OnceCallback<void(scoped_refptr<ServiceWorkerVersion>,
scoped_refptr<ServiceWorkerContextWrapper>,
blink::ServiceWorkerStatusCode)>;
DevToolsBackgroundServicesContextImpl* GetDevTools(
const ServiceWorkerContextWrapper& service_worker_context) {
auto* storage_partition = service_worker_context.storage_partition();
// `storage_partition` will be null of the associated profile was deleted,
// which can happen if the last browser window for that profile was closed.
return storage_partition
? static_cast<DevToolsBackgroundServicesContextImpl*>(
storage_partition->GetDevToolsBackgroundServicesContext())
: nullptr;
}
void RunPushEventCallback(
PushMessagingRouter::PushEventCallback deliver_message_callback,
blink::mojom::PushEventStatus push_event_status) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
// PostTask() to ensure the callback is called asynchronously.
GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(std::move(deliver_message_callback), push_event_status));
}
// Given the |service_worker_registration|, this method finds and finishes the
// |callback| by finding the |service_worker_version|.
void DidFindServiceWorkerRegistration(
ServiceWorkerMetrics::EventType event_type,
scoped_refptr<ServiceWorkerContextWrapper> service_worker_context,
ServiceWorkerStartCallback callback,
blink::ServiceWorkerStatusCode service_worker_status,
scoped_refptr<ServiceWorkerRegistration> service_worker_registration) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
if (service_worker_status != blink::ServiceWorkerStatusCode::kOk) {
std::move(callback).Run(nullptr /* service_worker_version */,
nullptr /* service_worker_context */,
service_worker_status);
return;
}
ServiceWorkerVersion* version = service_worker_registration->active_version();
DCHECK(version);
version->RunAfterStartWorker(
event_type,
base::BindOnce(std::move(callback), base::WrapRefCounted(version),
std::move(service_worker_context)));
}
// Finds the |service_worker_registration|.
void FindServiceWorkerRegistration(
ServiceWorkerMetrics::EventType event_type,
scoped_refptr<ServiceWorkerContextWrapper> service_worker_context,
const url::Origin& origin,
int64_t service_worker_registration_id,
ServiceWorkerStartCallback callback) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
// Try to acquire the registration from storage. If it's already live we'll
// receive it right away. If not, it will be revived from storage.
service_worker_context->FindReadyRegistrationForId(
service_worker_registration_id,
blink::StorageKey::CreateFirstParty(origin),
base::BindOnce(&DidFindServiceWorkerRegistration, event_type,
service_worker_context, std::move(callback)));
}
// According to the |event_type| this method will start finding the
// |service_worker_version| for the event. Must be called on the UI thread.
void StartServiceWorkerForDispatch(ServiceWorkerMetrics::EventType event_type,
BrowserContext* browser_context,
const GURL& origin,
int64_t service_worker_registration_id,
ServiceWorkerStartCallback callback) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
StoragePartition* partition =
browser_context->GetStoragePartitionForUrl(origin);
scoped_refptr<ServiceWorkerContextWrapper> service_worker_context =
static_cast<ServiceWorkerContextWrapper*>(
partition->GetServiceWorkerContext());
FindServiceWorkerRegistration(event_type, std::move(service_worker_context),
url::Origin::Create(origin),
service_worker_registration_id,
std::move(callback));
}
} // namespace
// static
void PushMessagingRouter::DeliverMessage(
BrowserContext* browser_context,
const GURL& origin,
int64_t service_worker_registration_id,
const std::string& message_id,
std::optional<std::string> payload,
PushEventCallback deliver_message_callback) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
StartServiceWorkerForDispatch(
ServiceWorkerMetrics::EventType::PUSH, browser_context, origin,
service_worker_registration_id,
base::BindOnce(&PushMessagingRouter::DeliverMessageToWorker, message_id,
std::move(payload), std::move(deliver_message_callback)));
}
// static
void PushMessagingRouter::DeliverMessageToWorker(
const std::string& message_id,
std::optional<std::string> payload,
PushEventCallback deliver_message_callback,
scoped_refptr<ServiceWorkerVersion> service_worker,
scoped_refptr<ServiceWorkerContextWrapper> service_worker_context,
blink::ServiceWorkerStatusCode status) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
// Service worker registration was not found, run callback immediately
if (!service_worker) {
DCHECK_NE(blink::ServiceWorkerStatusCode::kOk, status);
RunPushEventCallback(
std::move(deliver_message_callback),
status == blink::ServiceWorkerStatusCode::kErrorNotFound
? blink::mojom::PushEventStatus::NO_SERVICE_WORKER
: blink::mojom::PushEventStatus::SERVICE_WORKER_ERROR);
return;
}
// RunAfterStartWorker was not successful, end message delivery and log error
// in devtools_context before running RunPushEventCallback
if (status != blink::ServiceWorkerStatusCode::kOk) {
DeliverMessageEnd(std::move(service_worker),
std::move(service_worker_context), message_id,
std::move(deliver_message_callback), status);
return;
}
int request_id = service_worker->StartRequestWithCustomTimeout(
ServiceWorkerMetrics::EventType::PUSH,
base::BindOnce(&PushMessagingRouter::DeliverMessageEnd, service_worker,
service_worker_context, message_id,
std::move(deliver_message_callback)),
base::Seconds(blink::mojom::kPushEventTimeoutSeconds),
ServiceWorkerVersion::KILL_ON_TIMEOUT);
service_worker->endpoint()->DispatchPushEvent(
payload, service_worker->CreateSimpleEventCallback(request_id));
auto* devtools_context =
GetDevTools(CHECK_DEREF(service_worker_context.get()));
if (devtools_context && devtools_context->IsRecording(
DevToolsBackgroundService::kPushMessaging)) {
std::map<std::string, std::string> event_metadata;
if (payload)
event_metadata["Payload"] = *payload;
devtools_context->LogBackgroundServiceEvent(
service_worker->registration_id(), service_worker->key(),
DevToolsBackgroundService::kPushMessaging, "Push event dispatched",
message_id, event_metadata);
}
}
// static
void PushMessagingRouter::DeliverMessageEnd(
scoped_refptr<ServiceWorkerVersion> service_worker,
scoped_refptr<ServiceWorkerContextWrapper> service_worker_context,
const std::string& message_id,
PushEventCallback deliver_message_callback,
blink::ServiceWorkerStatusCode service_worker_status) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
blink::mojom::PushEventStatus push_event_status =
blink::mojom::PushEventStatus::SERVICE_WORKER_ERROR;
std::string status_description;
switch (service_worker_status) {
case blink::ServiceWorkerStatusCode::kOk:
push_event_status = blink::mojom::PushEventStatus::SUCCESS;
status_description = "Success";
break;
case blink::ServiceWorkerStatusCode::kErrorEventWaitUntilRejected:
push_event_status =
blink::mojom::PushEventStatus::EVENT_WAITUNTIL_REJECTED;
status_description = "waitUntil Rejected";
break;
case blink::ServiceWorkerStatusCode::kErrorTimeout:
push_event_status = blink::mojom::PushEventStatus::TIMEOUT;
status_description = "Timeout";
break;
case blink::ServiceWorkerStatusCode::kErrorFailed:
case blink::ServiceWorkerStatusCode::kErrorAbort:
case blink::ServiceWorkerStatusCode::kErrorStartWorkerFailed:
case blink::ServiceWorkerStatusCode::kErrorProcessNotFound:
case blink::ServiceWorkerStatusCode::kErrorNotFound:
case blink::ServiceWorkerStatusCode::kErrorIpcFailed:
case blink::ServiceWorkerStatusCode::kErrorScriptEvaluateFailed:
case blink::ServiceWorkerStatusCode::kErrorDiskCache:
case blink::ServiceWorkerStatusCode::kErrorRedundant:
case blink::ServiceWorkerStatusCode::kErrorDisallowed:
push_event_status = blink::mojom::PushEventStatus::SERVICE_WORKER_ERROR;
break;
case blink::ServiceWorkerStatusCode::kErrorExists:
case blink::ServiceWorkerStatusCode::kErrorInstallWorkerFailed:
case blink::ServiceWorkerStatusCode::kErrorActivateWorkerFailed:
case blink::ServiceWorkerStatusCode::kErrorNetwork:
case blink::ServiceWorkerStatusCode::kErrorSecurity:
case blink::ServiceWorkerStatusCode::kErrorState:
case blink::ServiceWorkerStatusCode::kErrorInvalidArguments:
case blink::ServiceWorkerStatusCode::kErrorStorageDisconnected:
case blink::ServiceWorkerStatusCode::kErrorStorageDataCorrupted:
NOTREACHED() << "Got unexpected error code: "
<< static_cast<uint32_t>(service_worker_status) << " "
<< blink::ServiceWorkerStatusToString(service_worker_status);
}
RunPushEventCallback(std::move(deliver_message_callback), push_event_status);
auto* devtools_context =
GetDevTools(CHECK_DEREF(service_worker_context.get()));
if (devtools_context &&
devtools_context->IsRecording(
DevToolsBackgroundService::kPushMessaging) &&
push_event_status !=
blink::mojom::PushEventStatus::SERVICE_WORKER_ERROR) {
devtools_context->LogBackgroundServiceEvent(
service_worker->registration_id(), service_worker->key(),
DevToolsBackgroundService::kPushMessaging, "Push event completed",
message_id, {{"Status", status_description}});
}
}
// static
void PushMessagingRouter::FireSubscriptionChangeEvent(
BrowserContext* browser_context,
const GURL& origin,
int64_t service_worker_registration_id,
blink::mojom::PushSubscriptionPtr new_subscription,
blink::mojom::PushSubscriptionPtr old_subscription,
PushEventCallback subscription_change_callback) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
CHECK(features::IsPushSubscriptionChangeEventEnabled());
StartServiceWorkerForDispatch(
ServiceWorkerMetrics::EventType::PUSH_SUBSCRIPTION_CHANGE,
browser_context, origin, service_worker_registration_id,
base::BindOnce(&PushMessagingRouter::FireSubscriptionChangeEventToWorker,
std::move(new_subscription), std::move(old_subscription),
std::move(subscription_change_callback)));
}
// static
void PushMessagingRouter::FireSubscriptionChangeEventToWorker(
blink::mojom::PushSubscriptionPtr new_subscription,
blink::mojom::PushSubscriptionPtr old_subscription,
PushEventCallback subscription_change_callback,
scoped_refptr<ServiceWorkerVersion> service_worker,
scoped_refptr<ServiceWorkerContextWrapper> service_worker_context,
blink::ServiceWorkerStatusCode status) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
CHECK(features::IsPushSubscriptionChangeEventEnabled());
if (!service_worker) {
DCHECK_NE(blink::ServiceWorkerStatusCode::kOk, status);
RunPushEventCallback(
std::move(subscription_change_callback),
status == blink::ServiceWorkerStatusCode::kErrorNotFound
? blink::mojom::PushEventStatus::NO_SERVICE_WORKER
: blink::mojom::PushEventStatus::SERVICE_WORKER_ERROR);
return;
}
if (status != blink::ServiceWorkerStatusCode::kOk) {
FireSubscriptionChangeEventEnd(std::move(service_worker),
std::move(subscription_change_callback),
status);
return;
}
int request_id = service_worker->StartRequestWithCustomTimeout(
ServiceWorkerMetrics::EventType::PUSH_SUBSCRIPTION_CHANGE,
base::BindOnce(&PushMessagingRouter::FireSubscriptionChangeEventEnd,
service_worker, std::move(subscription_change_callback)),
base::Seconds(blink::mojom::kPushEventTimeoutSeconds),
ServiceWorkerVersion::KILL_ON_TIMEOUT);
service_worker->endpoint()->DispatchPushSubscriptionChangeEvent(
std::move(old_subscription), std::move(new_subscription),
service_worker->CreateSimpleEventCallback(request_id));
}
// static
void PushMessagingRouter::FireSubscriptionChangeEventEnd(
scoped_refptr<ServiceWorkerVersion> service_worker,
PushEventCallback subscription_change_callback,
blink::ServiceWorkerStatusCode service_worker_status) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
blink::mojom::PushEventStatus push_event_status =
blink::mojom::PushEventStatus::SERVICE_WORKER_ERROR;
switch (service_worker_status) {
case blink::ServiceWorkerStatusCode::kOk:
push_event_status = blink::mojom::PushEventStatus::SUCCESS;
break;
case blink::ServiceWorkerStatusCode::kErrorEventWaitUntilRejected:
push_event_status =
blink::mojom::PushEventStatus::EVENT_WAITUNTIL_REJECTED;
break;
case blink::ServiceWorkerStatusCode::kErrorTimeout:
push_event_status = blink::mojom::PushEventStatus::TIMEOUT;
break;
default:
break;
}
RunPushEventCallback(std::move(subscription_change_callback),
push_event_status);
}
} // namespace content
|