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
|
// 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.
#include "content/browser/service_worker/service_worker_installed_scripts_sender.h"
#include "base/memory/ref_counted.h"
#include "base/stl_util.h"
#include "base/trace_event/trace_event.h"
#include "content/browser/service_worker/service_worker_consts.h"
#include "content/browser/service_worker/service_worker_context_core.h"
#include "content/browser/service_worker/service_worker_script_cache_map.h"
namespace content {
ServiceWorkerInstalledScriptsSender::ServiceWorkerInstalledScriptsSender(
ServiceWorkerVersion* owner)
: owner_(owner),
main_script_url_(owner_->script_url()),
main_script_id_(
owner_->script_cache_map()->LookupResourceId(main_script_url_)),
sent_main_script_(false),
state_(State::kNotStarted),
last_finished_reason_(
ServiceWorkerInstalledScriptReader::FinishedReason::kNotFinished) {
DCHECK(ServiceWorkerVersion::IsInstalled(owner_->status()));
DCHECK_NE(blink::mojom::kInvalidServiceWorkerResourceId, main_script_id_);
}
ServiceWorkerInstalledScriptsSender::~ServiceWorkerInstalledScriptsSender() {}
blink::mojom::ServiceWorkerInstalledScriptsInfoPtr
ServiceWorkerInstalledScriptsSender::CreateInfoAndBind() {
DCHECK_EQ(State::kNotStarted, state_);
std::vector<storage::mojom::ServiceWorkerResourceRecordPtr> resources =
owner_->script_cache_map()->GetResources();
std::vector<GURL> installed_urls;
for (const auto& resource : resources) {
installed_urls.emplace_back(resource->url);
if (resource->url == main_script_url_)
continue;
pending_scripts_.emplace(resource->resource_id, resource->url);
}
DCHECK(!installed_urls.empty())
<< "At least the main script should be installed.";
auto info = blink::mojom::ServiceWorkerInstalledScriptsInfo::New();
info->manager_receiver = manager_.BindNewPipeAndPassReceiver();
info->installed_urls = std::move(installed_urls);
receiver_.Bind(info->manager_host_remote.InitWithNewPipeAndPassReceiver());
return info;
}
void ServiceWorkerInstalledScriptsSender::Start() {
DCHECK_EQ(State::kNotStarted, state_);
DCHECK_NE(blink::mojom::kInvalidServiceWorkerResourceId, main_script_id_);
TRACE_EVENT_NESTABLE_ASYNC_BEGIN1("ServiceWorker",
"ServiceWorkerInstalledScriptsSender", this,
"main_script_url", main_script_url_.spec());
StartSendingScript(main_script_id_, main_script_url_);
}
void ServiceWorkerInstalledScriptsSender::StartSendingScript(
int64_t resource_id,
const GURL& script_url) {
DCHECK(!reader_);
DCHECK(current_sending_url_.is_empty());
state_ = State::kSendingScripts;
// (crbug.com/352578800) Override the state and bypass reading the scripts as
// it does not exist since the registration is a fake one and therefore there
// is no actual script.
if (resource_id == blink::mojom::kSyntheticResponseServiceWorkerResourceId) {
state_ = State::kIdle;
return;
}
if (!owner_->context()) {
Abort(ServiceWorkerInstalledScriptReader::FinishedReason::kNoContextError);
return;
}
current_sending_url_ = script_url;
mojo::Remote<storage::mojom::ServiceWorkerResourceReader> resource_reader;
owner_->context()
->registry()
->GetRemoteStorageControl()
->CreateResourceReader(resource_id,
resource_reader.BindNewPipeAndPassReceiver());
TRACE_EVENT_NESTABLE_ASYNC_BEGIN1("ServiceWorker", "SendingScript", this,
"script_url", current_sending_url_.spec());
reader_ = std::make_unique<ServiceWorkerInstalledScriptReader>(
std::move(resource_reader), this);
reader_->Start();
}
void ServiceWorkerInstalledScriptsSender::OnStarted(
network::mojom::URLResponseHeadPtr response_head,
std::optional<mojo_base::BigBuffer> metadata,
mojo::ScopedDataPipeConsumerHandle body_handle,
mojo::ScopedDataPipeConsumerHandle meta_data_handle) {
DCHECK(response_head);
DCHECK(reader_);
DCHECK_EQ(State::kSendingScripts, state_);
uint64_t meta_data_size = metadata ? metadata->size() : 0;
TRACE_EVENT_NESTABLE_ASYNC_INSTANT2(
"ServiceWorker", "OnStarted", this, "body_size",
response_head->content_length, "meta_data_size", meta_data_size);
// Create a map of response headers.
scoped_refptr<net::HttpResponseHeaders> headers = response_head->headers;
DCHECK(headers);
base::flat_map<std::string, std::string> header_strings;
size_t iter = 0;
std::string key;
std::string value;
// This logic is copied from blink::ResourceResponse::AddHttpHeaderField.
while (headers->EnumerateHeaderLines(&iter, &key, &value)) {
if (header_strings.find(key) == header_strings.end()) {
header_strings[key] = value;
} else {
header_strings[key] += ", " + value;
}
}
// If `CreateInfoAndBind()` is not called, manager_ won't be set up.
if (manager_.is_bound()) {
auto script_info = blink::mojom::ServiceWorkerScriptInfo::New();
script_info->script_url = current_sending_url_;
script_info->headers = std::move(header_strings);
headers->GetCharset(&script_info->encoding);
script_info->body = std::move(body_handle);
script_info->body_size = response_head->content_length;
script_info->meta_data = std::move(meta_data_handle);
script_info->meta_data_size = meta_data_size;
manager_->TransferInstalledScript(std::move(script_info));
}
if (IsSendingMainScript()) {
owner_->SetMainScriptResponse(
std::make_unique<ServiceWorkerVersion::MainScriptResponse>(
*response_head));
}
}
void ServiceWorkerInstalledScriptsSender::OnFinished(
ServiceWorkerInstalledScriptReader::FinishedReason reason) {
DCHECK(reader_);
DCHECK_EQ(State::kSendingScripts, state_);
TRACE_EVENT_NESTABLE_ASYNC_END0("ServiceWorker", "SendingScript", this);
reader_.reset();
current_sending_url_ = GURL();
if (IsSendingMainScript())
sent_main_script_ = true;
if (reason != ServiceWorkerInstalledScriptReader::FinishedReason::kSuccess) {
Abort(reason);
return;
}
if (pending_scripts_.empty()) {
UpdateFinishedReasonAndBecomeIdle(
ServiceWorkerInstalledScriptReader::FinishedReason::kSuccess);
TRACE_EVENT_NESTABLE_ASYNC_END0(
"ServiceWorker", "ServiceWorkerInstalledScriptsSender", this);
return;
}
// Start sending the next script.
int64_t next_id = pending_scripts_.front().first;
GURL next_url = pending_scripts_.front().second;
pending_scripts_.pop();
StartSendingScript(next_id, next_url);
}
void ServiceWorkerInstalledScriptsSender::Abort(
ServiceWorkerInstalledScriptReader::FinishedReason reason) {
DCHECK_EQ(State::kSendingScripts, state_);
DCHECK_NE(ServiceWorkerInstalledScriptReader::FinishedReason::kSuccess,
reason);
TRACE_EVENT_NESTABLE_ASYNC_END1("ServiceWorker",
"ServiceWorkerInstalledScriptsSender", this,
"FinishedReason", static_cast<int>(reason));
// Remove all pending scripts.
// Note that base::queue doesn't have clear(), and also base::STLClearObject
// is not applicable for base::queue since it doesn't have reserve().
base::queue<std::pair<int64_t, GURL>> empty;
pending_scripts_.swap(empty);
UpdateFinishedReasonAndBecomeIdle(reason);
switch (reason) {
case ServiceWorkerInstalledScriptReader::FinishedReason::kNotFinished:
case ServiceWorkerInstalledScriptReader::FinishedReason::kSuccess:
NOTREACHED();
case ServiceWorkerInstalledScriptReader::FinishedReason::
kNoResponseHeadError:
case ServiceWorkerInstalledScriptReader::FinishedReason::
kResponseReaderError:
owner_->SetStartWorkerStatusCode(
blink::ServiceWorkerStatusCode::kErrorDiskCache);
// Break the Mojo connection with the renderer so the service worker knows
// to stop waiting for the script data to arrive and terminate. Note that
// DeleteVersion() below sends the Stop IPC, but without breaking the
// connection here, the service worker would be blocked waiting for the
// script data and won't respond to Stop.
manager_.reset();
receiver_.reset();
// Delete the registration data since the data was corrupted.
if (owner_->context()) {
scoped_refptr<ServiceWorkerRegistration> registration =
owner_->context()->GetLiveRegistration(owner_->registration_id());
DCHECK(registration);
// Check if the registation is still alive. The registration may have
// already been deleted while this service worker was running.
if (!registration->is_uninstalled()) {
// This can destruct |this|.
registration->ForceDelete();
}
}
return;
case ServiceWorkerInstalledScriptReader::FinishedReason::
kCreateDataPipeError:
case ServiceWorkerInstalledScriptReader::FinishedReason::kConnectionError:
case ServiceWorkerInstalledScriptReader::FinishedReason::
kMetaDataSenderError:
case ServiceWorkerInstalledScriptReader::FinishedReason::kNoContextError:
// Break the Mojo connection with the renderer. This usually causes the
// service worker to stop, and the error handler of EmbeddedWorkerInstance
// is invoked soon.
manager_.reset();
receiver_.reset();
return;
}
}
void ServiceWorkerInstalledScriptsSender::UpdateFinishedReasonAndBecomeIdle(
ServiceWorkerInstalledScriptReader::FinishedReason reason) {
DCHECK_EQ(State::kSendingScripts, state_);
DCHECK_NE(ServiceWorkerInstalledScriptReader::FinishedReason::kNotFinished,
reason);
DCHECK(current_sending_url_.is_empty());
state_ = State::kIdle;
last_finished_reason_ = reason;
if (finish_callback_) {
std::move(finish_callback_).Run();
}
}
void ServiceWorkerInstalledScriptsSender::RequestInstalledScript(
const GURL& script_url) {
TRACE_EVENT1("ServiceWorker",
"ServiceWorkerInstalledScriptsSender::RequestInstalledScript",
"script_url", script_url.spec());
int64_t resource_id =
owner_->script_cache_map()->LookupResourceId(script_url);
if (resource_id == blink::mojom::kInvalidServiceWorkerResourceId) {
receiver_.ReportBadMessage("Requested script was not installed.");
return;
}
if (state_ == State::kSendingScripts) {
// The sender is now sending other scripts. Push the requested script into
// the waiting queue.
pending_scripts_.emplace(resource_id, script_url);
return;
}
DCHECK_EQ(State::kIdle, state_);
TRACE_EVENT_NESTABLE_ASYNC_BEGIN1("ServiceWorker",
"ServiceWorkerInstalledScriptsSender", this,
"main_script_url", main_script_url_.spec());
StartSendingScript(resource_id, script_url);
}
bool ServiceWorkerInstalledScriptsSender::IsSendingMainScript() const {
// |current_sending_url_| could match |main_script_url_| even though
// |sent_main_script_| is false if calling importScripts for the main
// script.
return !sent_main_script_ && current_sending_url_ == main_script_url_;
}
void ServiceWorkerInstalledScriptsSender::SetFinishCallback(
base::OnceClosure callback) {
finish_callback_ = std::move(callback);
}
} // namespace content
|