Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1344)

Unified Diff: content/browser/service_worker/service_worker_url_request_job.cc

Issue 2108573002: ServiceWorker: Add an API to fallback to renderer for CORS preflight (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/service_worker/service_worker_url_request_job.cc
diff --git a/content/browser/service_worker/service_worker_url_request_job.cc b/content/browser/service_worker/service_worker_url_request_job.cc
index a81f696815cd59d644941d3b4f275ec9db14013b..04a62d5b0078c013c3b4b330bf630d654901bae3 100644
--- a/content/browser/service_worker/service_worker_url_request_job.cc
+++ b/content/browser/service_worker/service_worker_url_request_job.cc
@@ -250,7 +250,14 @@ ServiceWorkerURLRequestJob::~ServiceWorkerURLRequestJob() {
void ServiceWorkerURLRequestJob::FallbackToNetwork() {
horo 2016/06/29 05:31:35 This function name should be FallbackToNetworkOrRe
shimazu 2016/07/04 06:31:11 Done.
falken 2016/07/05 06:49:28 What's the reason for both FallbackToNetwork() and
shimazu 2016/07/06 06:27:35 It's just for error cases. I think we should handl
DCHECK_EQ(NOT_DETERMINED, response_type_);
- response_type_ = FALLBACK_TO_NETWORK;
+ // TODO(mek): http://crbug.com/604084 Figure out what to do about CORS
+ // preflight and fallbacks for foreign fetch events.
+ if (fetch_type_ != ServiceWorkerFetchType::FOREIGN_FETCH &&
+ IsNeedToFallbackToRenderer()) {
+ response_type_ = FALLBACK_TO_RENDERER;
+ } else {
+ response_type_ = FALLBACK_TO_NETWORK;
+ }
MaybeStartRequest();
}
@@ -499,10 +506,11 @@ void ServiceWorkerURLRequestJob::StartRequest() {
return;
case FALLBACK_TO_NETWORK:
- // Restart the request to create a new job. Our request handler will
- // return nullptr, and the default job (which will hit network) should be
- // created.
- NotifyRestartRequired();
+ FinalizeToFallbackToNetwork();
+ return;
+
+ case FALLBACK_TO_RENDERER:
+ FinalizeToFallbackToRenderer();
return;
case FORWARD_TO_SERVICE_WORKER:
@@ -698,8 +706,7 @@ void ServiceWorkerURLRequestJob::DidDispatchFetchEvent(
if (IsMainResourceLoad()) {
// Using the service worker failed, so fallback to network.
delegate_->MainResourceLoadFailed();
- response_type_ = FALLBACK_TO_NETWORK;
- NotifyRestartRequired();
+ FinalizeToFallbackToNetwork();
} else {
DeliverErrorResponse();
}
@@ -707,31 +714,11 @@ void ServiceWorkerURLRequestJob::DidDispatchFetchEvent(
}
if (fetch_result == SERVICE_WORKER_FETCH_EVENT_RESULT_FALLBACK) {
- ServiceWorkerMetrics::RecordFallbackedRequestMode(request_mode_);
- // When the request_mode is |CORS| or |CORS-with-forced-preflight| and the
- // origin of the request URL is different from the security origin of the
- // document, we can't simply fallback to the network in the browser process.
- // It is because the CORS preflight logic is implemented in the renderer. So
- // we returns a fall_back_required response to the renderer.
- if ((request_mode_ == FETCH_REQUEST_MODE_CORS ||
- request_mode_ == FETCH_REQUEST_MODE_CORS_WITH_FORCED_PREFLIGHT) &&
- !request()->initiator().IsSameOriginWith(
- url::Origin(request()->url()))) {
- // TODO(mek): http://crbug.com/604084 Figure out what to do about CORS
- // preflight and fallbacks for foreign fetch events.
- fall_back_required_ =
- fetch_type_ != ServiceWorkerFetchType::FOREIGN_FETCH;
- RecordResult(ServiceWorkerMetrics::REQUEST_JOB_FALLBACK_FOR_CORS);
- CreateResponseHeader(
- 400, "Service Worker Fallback Required", ServiceWorkerHeaderMap());
- CommitResponseHeader();
- return;
+ if (IsNeedToFallbackToRenderer()) {
+ FinalizeToFallbackToRenderer();
+ } else {
+ FinalizeToFallbackToNetwork();
}
- // Change the response type and restart the request to fallback to
- // the network.
- RecordResult(ServiceWorkerMetrics::REQUEST_JOB_FALLBACK_RESPONSE);
- response_type_ = FALLBACK_TO_NETWORK;
- NotifyRestartRequired();
return;
}
@@ -866,6 +853,44 @@ void ServiceWorkerURLRequestJob::DeliverErrorResponse() {
CommitResponseHeader();
}
+void ServiceWorkerURLRequestJob::FinalizeToFallbackToNetwork() {
+ // Restart this request to create a new job. The default job (which will hit
+ // network) will be created in the next time because our request handler will
+ // return nullptr after restarting and this means our interceptor does not
+ // intercept.
+ if (ShouldRecordResult())
+ RecordResult(ServiceWorkerMetrics::REQUEST_JOB_FALLBACK_RESPONSE);
+ response_type_ = FALLBACK_TO_NETWORK;
+ NotifyRestartRequired();
+ return;
+}
+
+void ServiceWorkerURLRequestJob::FinalizeToFallbackToRenderer() {
+ ServiceWorkerMetrics::RecordFallbackedRequestMode(request_mode_);
+ // TODO(mek): http://crbug.com/604084 Figure out what to do about CORS
+ // preflight and fallbacks for foreign fetch events.
+ fall_back_required_ = fetch_type_ != ServiceWorkerFetchType::FOREIGN_FETCH;
+ if (ShouldRecordResult())
+ RecordResult(ServiceWorkerMetrics::REQUEST_JOB_FALLBACK_FOR_CORS);
+ CreateResponseHeader(400, "Service Worker Fallback Required",
+ ServiceWorkerHeaderMap());
+ response_type_ = FALLBACK_TO_RENDERER;
+ CommitResponseHeader();
+}
+
+bool ServiceWorkerURLRequestJob::IsNeedToFallbackToRenderer() {
+ // When the request_mode is |CORS| or |CORS-with-forced-preflight| and the
+ // origin of the request URL is different from the security origin of the
+ // document, we can't simply fallback to the network in the browser process.
+ // It is because the CORS preflight logic is implemented in the renderer. So
+ // we returns a fall_back_required response to the renderer.
+ return !IsMainResourceLoad() &&
+ (request_mode_ == FETCH_REQUEST_MODE_CORS ||
+ request_mode_ == FETCH_REQUEST_MODE_CORS_WITH_FORCED_PREFLIGHT) &&
+ !request()->initiator().IsSameOriginWith(
+ url::Origin(request()->url()));
+}
+
void ServiceWorkerURLRequestJob::SetResponseBodyType(ResponseBodyType type) {
DCHECK_EQ(response_body_type_, UNKNOWN);
DCHECK_NE(type, UNKNOWN);
@@ -941,7 +966,8 @@ void ServiceWorkerURLRequestJob::NotifyRestartRequired() {
}
void ServiceWorkerURLRequestJob::OnStartCompleted() const {
- if (response_type_ != FORWARD_TO_SERVICE_WORKER) {
+ if (response_type_ != FORWARD_TO_SERVICE_WORKER &&
+ response_type_ != FALLBACK_TO_RENDERER) {
ServiceWorkerResponseInfo::ForRequest(request_, true)
->OnStartCompleted(
false /* was_fetched_via_service_worker */,

Powered by Google App Engine
This is Rietveld 408576698