Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / net / url_request / url_request_http_job.cc
blob2937478109334fc4a467408a1fcf596b3d33f954
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "net/url_request/url_request_http_job.h"
7 #include "base/base_switches.h"
8 #include "base/bind.h"
9 #include "base/bind_helpers.h"
10 #include "base/command_line.h"
11 #include "base/compiler_specific.h"
12 #include "base/file_version_info.h"
13 #include "base/location.h"
14 #include "base/metrics/field_trial.h"
15 #include "base/metrics/histogram_macros.h"
16 #include "base/profiler/scoped_tracker.h"
17 #include "base/rand_util.h"
18 #include "base/single_thread_task_runner.h"
19 #include "base/strings/string_util.h"
20 #include "base/thread_task_runner_handle.h"
21 #include "base/time/time.h"
22 #include "base/values.h"
23 #include "net/base/host_port_pair.h"
24 #include "net/base/load_flags.h"
25 #include "net/base/net_errors.h"
26 #include "net/base/net_util.h"
27 #include "net/base/network_delegate.h"
28 #include "net/base/network_quality_estimator.h"
29 #include "net/base/sdch_manager.h"
30 #include "net/base/sdch_net_log_params.h"
31 #include "net/cert/cert_status_flags.h"
32 #include "net/cookies/cookie_store.h"
33 #include "net/http/http_content_disposition.h"
34 #include "net/http/http_network_session.h"
35 #include "net/http/http_request_headers.h"
36 #include "net/http/http_response_headers.h"
37 #include "net/http/http_response_info.h"
38 #include "net/http/http_status_code.h"
39 #include "net/http/http_transaction.h"
40 #include "net/http/http_transaction_factory.h"
41 #include "net/http/http_util.h"
42 #include "net/proxy/proxy_info.h"
43 #include "net/ssl/ssl_cert_request_info.h"
44 #include "net/ssl/ssl_config_service.h"
45 #include "net/url_request/http_user_agent_settings.h"
46 #include "net/url_request/url_request.h"
47 #include "net/url_request/url_request_backoff_manager.h"
48 #include "net/url_request/url_request_context.h"
49 #include "net/url_request/url_request_error_job.h"
50 #include "net/url_request/url_request_job_factory.h"
51 #include "net/url_request/url_request_redirect_job.h"
52 #include "net/url_request/url_request_throttler_manager.h"
53 #include "net/websockets/websocket_handshake_stream_base.h"
55 static const char kAvailDictionaryHeader[] = "Avail-Dictionary";
57 namespace net {
59 class URLRequestHttpJob::HttpFilterContext : public FilterContext {
60 public:
61 explicit HttpFilterContext(URLRequestHttpJob* job);
62 ~HttpFilterContext() override;
64 // FilterContext implementation.
65 bool GetMimeType(std::string* mime_type) const override;
66 bool GetURL(GURL* gurl) const override;
67 base::Time GetRequestTime() const override;
68 bool IsCachedContent() const override;
69 SdchManager::DictionarySet* SdchDictionariesAdvertised() const override;
70 int64 GetByteReadCount() const override;
71 int GetResponseCode() const override;
72 const URLRequestContext* GetURLRequestContext() const override;
73 void RecordPacketStats(StatisticSelector statistic) const override;
74 const BoundNetLog& GetNetLog() const override;
76 private:
77 URLRequestHttpJob* job_;
79 // URLRequestHttpJob may be detached from URLRequest, but we still need to
80 // return something.
81 BoundNetLog dummy_log_;
83 DISALLOW_COPY_AND_ASSIGN(HttpFilterContext);
86 URLRequestHttpJob::HttpFilterContext::HttpFilterContext(URLRequestHttpJob* job)
87 : job_(job) {
88 DCHECK(job_);
91 URLRequestHttpJob::HttpFilterContext::~HttpFilterContext() {
94 bool URLRequestHttpJob::HttpFilterContext::GetMimeType(
95 std::string* mime_type) const {
96 return job_->GetMimeType(mime_type);
99 bool URLRequestHttpJob::HttpFilterContext::GetURL(GURL* gurl) const {
100 if (!job_->request())
101 return false;
102 *gurl = job_->request()->url();
103 return true;
106 base::Time URLRequestHttpJob::HttpFilterContext::GetRequestTime() const {
107 return job_->request() ? job_->request()->request_time() : base::Time();
110 bool URLRequestHttpJob::HttpFilterContext::IsCachedContent() const {
111 return job_->is_cached_content_;
114 SdchManager::DictionarySet*
115 URLRequestHttpJob::HttpFilterContext::SdchDictionariesAdvertised() const {
116 return job_->dictionaries_advertised_.get();
119 int64 URLRequestHttpJob::HttpFilterContext::GetByteReadCount() const {
120 return job_->prefilter_bytes_read();
123 int URLRequestHttpJob::HttpFilterContext::GetResponseCode() const {
124 return job_->GetResponseCode();
127 const URLRequestContext*
128 URLRequestHttpJob::HttpFilterContext::GetURLRequestContext() const {
129 return job_->request() ? job_->request()->context() : NULL;
132 void URLRequestHttpJob::HttpFilterContext::RecordPacketStats(
133 StatisticSelector statistic) const {
134 job_->RecordPacketStats(statistic);
137 const BoundNetLog& URLRequestHttpJob::HttpFilterContext::GetNetLog() const {
138 return job_->request() ? job_->request()->net_log() : dummy_log_;
141 // TODO(darin): make sure the port blocking code is not lost
142 // static
143 URLRequestJob* URLRequestHttpJob::Factory(URLRequest* request,
144 NetworkDelegate* network_delegate,
145 const std::string& scheme) {
146 DCHECK(scheme == "http" || scheme == "https" || scheme == "ws" ||
147 scheme == "wss");
149 if (!request->context()->http_transaction_factory()) {
150 NOTREACHED() << "requires a valid context";
151 return new URLRequestErrorJob(
152 request, network_delegate, ERR_INVALID_ARGUMENT);
155 GURL redirect_url;
156 if (request->GetHSTSRedirect(&redirect_url)) {
157 return new URLRequestRedirectJob(
158 request, network_delegate, redirect_url,
159 // Use status code 307 to preserve the method, so POST requests work.
160 URLRequestRedirectJob::REDIRECT_307_TEMPORARY_REDIRECT, "HSTS");
162 return new URLRequestHttpJob(request,
163 network_delegate,
164 request->context()->http_user_agent_settings());
167 URLRequestHttpJob::URLRequestHttpJob(
168 URLRequest* request,
169 NetworkDelegate* network_delegate,
170 const HttpUserAgentSettings* http_user_agent_settings)
171 : URLRequestJob(request, network_delegate),
172 priority_(DEFAULT_PRIORITY),
173 response_info_(NULL),
174 response_cookies_save_index_(0),
175 proxy_auth_state_(AUTH_STATE_DONT_NEED_AUTH),
176 server_auth_state_(AUTH_STATE_DONT_NEED_AUTH),
177 start_callback_(base::Bind(&URLRequestHttpJob::OnStartCompleted,
178 base::Unretained(this))),
179 notify_before_headers_sent_callback_(
180 base::Bind(&URLRequestHttpJob::NotifyBeforeSendHeadersCallback,
181 base::Unretained(this))),
182 read_in_progress_(false),
183 throttling_entry_(NULL),
184 sdch_test_activated_(false),
185 sdch_test_control_(false),
186 is_cached_content_(false),
187 request_creation_time_(),
188 packet_timing_enabled_(false),
189 done_(false),
190 bytes_observed_in_packets_(0),
191 request_time_snapshot_(),
192 final_packet_time_(),
193 filter_context_(new HttpFilterContext(this)),
194 on_headers_received_callback_(
195 base::Bind(&URLRequestHttpJob::OnHeadersReceivedCallback,
196 base::Unretained(this))),
197 awaiting_callback_(false),
198 http_user_agent_settings_(http_user_agent_settings),
199 backoff_manager_(request->context()->backoff_manager()),
200 total_received_bytes_from_previous_transactions_(0),
201 total_sent_bytes_from_previous_transactions_(0),
202 weak_factory_(this) {
203 URLRequestThrottlerManager* manager = request->context()->throttler_manager();
204 if (manager)
205 throttling_entry_ = manager->RegisterRequestUrl(request->url());
207 ResetTimer();
210 URLRequestHttpJob::~URLRequestHttpJob() {
211 CHECK(!awaiting_callback_);
213 DCHECK(!sdch_test_control_ || !sdch_test_activated_);
214 if (!is_cached_content_) {
215 if (sdch_test_control_)
216 RecordPacketStats(FilterContext::SDCH_EXPERIMENT_HOLDBACK);
217 if (sdch_test_activated_)
218 RecordPacketStats(FilterContext::SDCH_EXPERIMENT_DECODE);
220 // Make sure SDCH filters are told to emit histogram data while
221 // filter_context_ is still alive.
222 DestroyFilters();
224 DoneWithRequest(ABORTED);
227 void URLRequestHttpJob::SetPriority(RequestPriority priority) {
228 priority_ = priority;
229 if (transaction_)
230 transaction_->SetPriority(priority_);
233 void URLRequestHttpJob::Start() {
234 // TODO(mmenke): Remove ScopedTracker below once crbug.com/456327 is fixed.
235 tracked_objects::ScopedTracker tracking_profile(
236 FROM_HERE_WITH_EXPLICIT_FUNCTION("456327 URLRequestHttpJob::Start"));
238 DCHECK(!transaction_.get());
240 // URLRequest::SetReferrer ensures that we do not send username and password
241 // fields in the referrer.
242 GURL referrer(request_->referrer());
244 request_info_.url = request_->url();
245 request_info_.method = request_->method();
246 request_info_.load_flags = request_->load_flags();
247 // Enable privacy mode if cookie settings or flags tell us not send or
248 // save cookies.
249 bool enable_privacy_mode =
250 (request_info_.load_flags & LOAD_DO_NOT_SEND_COOKIES) ||
251 (request_info_.load_flags & LOAD_DO_NOT_SAVE_COOKIES) ||
252 CanEnablePrivacyMode();
253 // Privacy mode could still be disabled in OnCookiesLoaded if we are going
254 // to send previously saved cookies.
255 request_info_.privacy_mode = enable_privacy_mode ?
256 PRIVACY_MODE_ENABLED : PRIVACY_MODE_DISABLED;
258 // Strip Referer from request_info_.extra_headers to prevent, e.g., plugins
259 // from overriding headers that are controlled using other means. Otherwise a
260 // plugin could set a referrer although sending the referrer is inhibited.
261 request_info_.extra_headers.RemoveHeader(HttpRequestHeaders::kReferer);
263 // Our consumer should have made sure that this is a safe referrer. See for
264 // instance WebCore::FrameLoader::HideReferrer.
265 if (referrer.is_valid()) {
266 request_info_.extra_headers.SetHeader(HttpRequestHeaders::kReferer,
267 referrer.spec());
270 request_info_.extra_headers.SetHeaderIfMissing(
271 HttpRequestHeaders::kUserAgent,
272 http_user_agent_settings_ ?
273 http_user_agent_settings_->GetUserAgent() : std::string());
275 AddExtraHeaders();
276 AddCookieHeaderAndStart();
279 void URLRequestHttpJob::Kill() {
280 if (!transaction_.get())
281 return;
283 weak_factory_.InvalidateWeakPtrs();
284 DestroyTransaction();
285 URLRequestJob::Kill();
288 void URLRequestHttpJob::GetConnectionAttempts(ConnectionAttempts* out) const {
289 if (transaction_)
290 transaction_->GetConnectionAttempts(out);
291 else
292 out->clear();
295 void URLRequestHttpJob::NotifyBeforeSendProxyHeadersCallback(
296 const ProxyInfo& proxy_info,
297 HttpRequestHeaders* request_headers) {
298 DCHECK(request_headers);
299 DCHECK_NE(URLRequestStatus::CANCELED, GetStatus().status());
300 if (network_delegate()) {
301 network_delegate()->NotifyBeforeSendProxyHeaders(
302 request_,
303 proxy_info,
304 request_headers);
308 void URLRequestHttpJob::NotifyBeforeNetworkStart(bool* defer) {
309 if (!request_)
310 return;
311 if (backoff_manager_) {
312 if (backoff_manager_->ShouldRejectRequest(request()->url(),
313 request()->request_time())) {
314 *defer = true;
315 base::MessageLoop::current()->PostTask(
316 FROM_HERE,
317 base::Bind(&URLRequestHttpJob::OnStartCompleted,
318 weak_factory_.GetWeakPtr(), ERR_TEMPORARY_BACKOFF));
319 return;
322 URLRequestJob::NotifyBeforeNetworkStart(defer);
325 void URLRequestHttpJob::NotifyHeadersComplete() {
326 DCHECK(!response_info_);
328 response_info_ = transaction_->GetResponseInfo();
330 // Save boolean, as we'll need this info at destruction time, and filters may
331 // also need this info.
332 is_cached_content_ = response_info_->was_cached;
334 if (!is_cached_content_ && throttling_entry_.get())
335 throttling_entry_->UpdateWithResponse(GetResponseCode());
337 if (!is_cached_content_)
338 ProcessBackoffHeader();
340 // The ordering of these calls is not important.
341 ProcessStrictTransportSecurityHeader();
342 ProcessPublicKeyPinsHeader();
344 // Handle the server notification of a new SDCH dictionary.
345 SdchManager* sdch_manager(request()->context()->sdch_manager());
346 if (sdch_manager) {
347 SdchProblemCode rv = sdch_manager->IsInSupportedDomain(request()->url());
348 if (rv != SDCH_OK) {
349 SdchManager::SdchErrorRecovery(rv);
350 request()->net_log().AddEvent(
351 NetLog::TYPE_SDCH_DECODING_ERROR,
352 base::Bind(&NetLogSdchResourceProblemCallback, rv));
353 } else {
354 const std::string name = "Get-Dictionary";
355 std::string url_text;
356 void* iter = NULL;
357 // TODO(jar): We need to not fetch dictionaries the first time they are
358 // seen, but rather wait until we can justify their usefulness.
359 // For now, we will only fetch the first dictionary, which will at least
360 // require multiple suggestions before we get additional ones for this
361 // site. Eventually we should wait until a dictionary is requested
362 // several times
363 // before we even download it (so that we don't waste memory or
364 // bandwidth).
365 if (GetResponseHeaders()->EnumerateHeader(&iter, name, &url_text)) {
366 // Resolve suggested URL relative to request url.
367 GURL sdch_dictionary_url = request_->url().Resolve(url_text);
368 if (sdch_dictionary_url.is_valid()) {
369 rv = sdch_manager->OnGetDictionary(request_->url(),
370 sdch_dictionary_url);
371 if (rv != SDCH_OK) {
372 SdchManager::SdchErrorRecovery(rv);
373 request_->net_log().AddEvent(
374 NetLog::TYPE_SDCH_DICTIONARY_ERROR,
375 base::Bind(&NetLogSdchDictionaryFetchProblemCallback, rv,
376 sdch_dictionary_url, false));
383 // Handle the server signalling no SDCH encoding.
384 if (dictionaries_advertised_) {
385 // We are wary of proxies that discard or damage SDCH encoding. If a server
386 // explicitly states that this is not SDCH content, then we can correct our
387 // assumption that this is an SDCH response, and avoid the need to recover
388 // as though the content is corrupted (when we discover it is not SDCH
389 // encoded).
390 std::string sdch_response_status;
391 void* iter = NULL;
392 while (GetResponseHeaders()->EnumerateHeader(&iter, "X-Sdch-Encode",
393 &sdch_response_status)) {
394 if (sdch_response_status == "0") {
395 dictionaries_advertised_.reset();
396 break;
401 // The HTTP transaction may be restarted several times for the purposes
402 // of sending authorization information. Each time it restarts, we get
403 // notified of the headers completion so that we can update the cookie store.
404 if (transaction_->IsReadyToRestartForAuth()) {
405 DCHECK(!response_info_->auth_challenge.get());
406 // TODO(battre): This breaks the webrequest API for
407 // URLRequestTestHTTP.BasicAuthWithCookies
408 // where OnBeforeSendHeaders -> OnSendHeaders -> OnBeforeSendHeaders
409 // occurs.
410 RestartTransactionWithAuth(AuthCredentials());
411 return;
414 URLRequestJob::NotifyHeadersComplete();
417 void URLRequestHttpJob::NotifyDone(const URLRequestStatus& status) {
418 DoneWithRequest(FINISHED);
419 URLRequestJob::NotifyDone(status);
422 void URLRequestHttpJob::DestroyTransaction() {
423 DCHECK(transaction_.get());
425 DoneWithRequest(ABORTED);
427 total_received_bytes_from_previous_transactions_ +=
428 transaction_->GetTotalReceivedBytes();
429 total_sent_bytes_from_previous_transactions_ +=
430 transaction_->GetTotalSentBytes();
431 transaction_.reset();
432 response_info_ = NULL;
433 receive_headers_end_ = base::TimeTicks();
436 void URLRequestHttpJob::StartTransaction() {
437 // TODO(mmenke): Remove ScopedTracker below once crbug.com/456327 is fixed.
438 tracked_objects::ScopedTracker tracking_profile(
439 FROM_HERE_WITH_EXPLICIT_FUNCTION(
440 "456327 URLRequestHttpJob::StartTransaction"));
442 if (network_delegate()) {
443 OnCallToDelegate();
444 int rv = network_delegate()->NotifyBeforeSendHeaders(
445 request_, notify_before_headers_sent_callback_,
446 &request_info_.extra_headers);
447 // If an extension blocks the request, we rely on the callback to
448 // MaybeStartTransactionInternal().
449 if (rv == ERR_IO_PENDING)
450 return;
451 MaybeStartTransactionInternal(rv);
452 return;
454 StartTransactionInternal();
457 void URLRequestHttpJob::NotifyBeforeSendHeadersCallback(int result) {
458 // Check that there are no callbacks to already canceled requests.
459 DCHECK_NE(URLRequestStatus::CANCELED, GetStatus().status());
461 MaybeStartTransactionInternal(result);
464 void URLRequestHttpJob::MaybeStartTransactionInternal(int result) {
465 // TODO(mmenke): Remove ScopedTracker below once crbug.com/456327 is fixed.
466 tracked_objects::ScopedTracker tracking_profile(
467 FROM_HERE_WITH_EXPLICIT_FUNCTION(
468 "456327 URLRequestHttpJob::MaybeStartTransactionInternal"));
470 OnCallToDelegateComplete();
471 if (result == OK) {
472 StartTransactionInternal();
473 } else {
474 std::string source("delegate");
475 request_->net_log().AddEvent(NetLog::TYPE_CANCELLED,
476 NetLog::StringCallback("source", &source));
477 NotifyCanceled();
478 NotifyStartError(URLRequestStatus(URLRequestStatus::FAILED, result));
482 void URLRequestHttpJob::StartTransactionInternal() {
483 // NOTE: This method assumes that request_info_ is already setup properly.
485 // If we already have a transaction, then we should restart the transaction
486 // with auth provided by auth_credentials_.
488 int rv;
490 if (network_delegate()) {
491 network_delegate()->NotifySendHeaders(
492 request_, request_info_.extra_headers);
495 if (transaction_.get()) {
496 rv = transaction_->RestartWithAuth(auth_credentials_, start_callback_);
497 auth_credentials_ = AuthCredentials();
498 } else {
499 DCHECK(request_->context()->http_transaction_factory());
501 rv = request_->context()->http_transaction_factory()->CreateTransaction(
502 priority_, &transaction_);
504 if (rv == OK && request_info_.url.SchemeIsWSOrWSS()) {
505 base::SupportsUserData::Data* data = request_->GetUserData(
506 WebSocketHandshakeStreamBase::CreateHelper::DataKey());
507 if (data) {
508 transaction_->SetWebSocketHandshakeStreamCreateHelper(
509 static_cast<WebSocketHandshakeStreamBase::CreateHelper*>(data));
510 } else {
511 rv = ERR_DISALLOWED_URL_SCHEME;
515 if (rv == OK) {
516 transaction_->SetBeforeNetworkStartCallback(
517 base::Bind(&URLRequestHttpJob::NotifyBeforeNetworkStart,
518 base::Unretained(this)));
519 transaction_->SetBeforeProxyHeadersSentCallback(
520 base::Bind(&URLRequestHttpJob::NotifyBeforeSendProxyHeadersCallback,
521 base::Unretained(this)));
523 if (!throttling_entry_.get() ||
524 !throttling_entry_->ShouldRejectRequest(*request_)) {
525 rv = transaction_->Start(
526 &request_info_, start_callback_, request_->net_log());
527 start_time_ = base::TimeTicks::Now();
528 } else {
529 // Special error code for the exponential back-off module.
530 rv = ERR_TEMPORARILY_THROTTLED;
535 if (rv == ERR_IO_PENDING)
536 return;
538 // The transaction started synchronously, but we need to notify the
539 // URLRequest delegate via the message loop.
540 base::ThreadTaskRunnerHandle::Get()->PostTask(
541 FROM_HERE, base::Bind(&URLRequestHttpJob::OnStartCompleted,
542 weak_factory_.GetWeakPtr(), rv));
545 void URLRequestHttpJob::AddExtraHeaders() {
546 SdchManager* sdch_manager = request()->context()->sdch_manager();
548 // Supply Accept-Encoding field only if it is not already provided.
549 // It should be provided IF the content is known to have restrictions on
550 // potential encoding, such as streaming multi-media.
551 // For details see bug 47381.
552 // TODO(jar, enal): jpeg files etc. should set up a request header if
553 // possible. Right now it is done only by buffered_resource_loader and
554 // simple_data_source.
555 if (!request_info_.extra_headers.HasHeader(
556 HttpRequestHeaders::kAcceptEncoding)) {
557 // We don't support SDCH responses to POST as there is a possibility
558 // of having SDCH encoded responses returned (e.g. by the cache)
559 // which we cannot decode, and in those situations, we will need
560 // to retransmit the request without SDCH, which is illegal for a POST.
561 bool advertise_sdch = sdch_manager != NULL && request()->method() != "POST";
562 if (advertise_sdch) {
563 SdchProblemCode rv = sdch_manager->IsInSupportedDomain(request()->url());
564 if (rv != SDCH_OK) {
565 advertise_sdch = false;
566 SdchManager::SdchErrorRecovery(rv);
567 request()->net_log().AddEvent(
568 NetLog::TYPE_SDCH_DECODING_ERROR,
569 base::Bind(&NetLogSdchResourceProblemCallback, rv));
572 if (advertise_sdch) {
573 dictionaries_advertised_ =
574 sdch_manager->GetDictionarySet(request_->url());
577 // The AllowLatencyExperiment() is only true if we've successfully done a
578 // full SDCH compression recently in this browser session for this host.
579 // Note that for this path, there might be no applicable dictionaries,
580 // and hence we can't participate in the experiment.
581 if (dictionaries_advertised_ &&
582 sdch_manager->AllowLatencyExperiment(request_->url())) {
583 // We are participating in the test (or control), and hence we'll
584 // eventually record statistics via either SDCH_EXPERIMENT_DECODE or
585 // SDCH_EXPERIMENT_HOLDBACK, and we'll need some packet timing data.
586 packet_timing_enabled_ = true;
587 if (base::RandDouble() < .01) {
588 sdch_test_control_ = true; // 1% probability.
589 dictionaries_advertised_.reset();
590 advertise_sdch = false;
591 } else {
592 sdch_test_activated_ = true;
596 // Supply Accept-Encoding headers first so that it is more likely that they
597 // will be in the first transmitted packet. This can sometimes make it
598 // easier to filter and analyze the streams to assure that a proxy has not
599 // damaged these headers. Some proxies deliberately corrupt Accept-Encoding
600 // headers.
601 if (!advertise_sdch) {
602 // Tell the server what compression formats we support (other than SDCH).
603 request_info_.extra_headers.SetHeader(
604 HttpRequestHeaders::kAcceptEncoding, "gzip, deflate");
605 } else {
606 // Include SDCH in acceptable list.
607 request_info_.extra_headers.SetHeader(
608 HttpRequestHeaders::kAcceptEncoding, "gzip, deflate, sdch");
609 if (dictionaries_advertised_) {
610 request_info_.extra_headers.SetHeader(
611 kAvailDictionaryHeader,
612 dictionaries_advertised_->GetDictionaryClientHashList());
613 // Since we're tagging this transaction as advertising a dictionary,
614 // we'll definitely employ an SDCH filter (or tentative sdch filter)
615 // when we get a response. When done, we'll record histograms via
616 // SDCH_DECODE or SDCH_PASSTHROUGH. Hence we need to record packet
617 // arrival times.
618 packet_timing_enabled_ = true;
623 if (http_user_agent_settings_) {
624 // Only add default Accept-Language if the request didn't have it
625 // specified.
626 std::string accept_language =
627 http_user_agent_settings_->GetAcceptLanguage();
628 if (!accept_language.empty()) {
629 request_info_.extra_headers.SetHeaderIfMissing(
630 HttpRequestHeaders::kAcceptLanguage,
631 accept_language);
636 void URLRequestHttpJob::AddCookieHeaderAndStart() {
637 // No matter what, we want to report our status as IO pending since we will
638 // be notifying our consumer asynchronously via OnStartCompleted.
639 SetStatus(URLRequestStatus(URLRequestStatus::IO_PENDING, 0));
641 // If the request was destroyed, then there is no more work to do.
642 if (!request_)
643 return;
645 CookieStore* cookie_store = request_->context()->cookie_store();
646 if (cookie_store && !(request_info_.load_flags & LOAD_DO_NOT_SEND_COOKIES)) {
647 cookie_store->GetAllCookiesForURLAsync(
648 request_->url(),
649 base::Bind(&URLRequestHttpJob::CheckCookiePolicyAndLoad,
650 weak_factory_.GetWeakPtr()));
651 } else {
652 DoStartTransaction();
656 void URLRequestHttpJob::DoLoadCookies() {
657 CookieOptions options;
658 options.set_include_httponly();
660 // TODO(mkwst): Drop this `if` once we decide whether or not to ship
661 // first-party cookies: https://crbug.com/459154
662 if (network_delegate() &&
663 network_delegate()->FirstPartyOnlyCookieExperimentEnabled())
664 options.set_first_party_url(request_->first_party_for_cookies());
665 else
666 options.set_include_first_party_only();
668 request_->context()->cookie_store()->GetCookiesWithOptionsAsync(
669 request_->url(), options, base::Bind(&URLRequestHttpJob::OnCookiesLoaded,
670 weak_factory_.GetWeakPtr()));
673 void URLRequestHttpJob::CheckCookiePolicyAndLoad(
674 const CookieList& cookie_list) {
675 if (CanGetCookies(cookie_list))
676 DoLoadCookies();
677 else
678 DoStartTransaction();
681 void URLRequestHttpJob::OnCookiesLoaded(const std::string& cookie_line) {
682 if (!cookie_line.empty()) {
683 request_info_.extra_headers.SetHeader(
684 HttpRequestHeaders::kCookie, cookie_line);
685 // Disable privacy mode as we are sending cookies anyway.
686 request_info_.privacy_mode = PRIVACY_MODE_DISABLED;
688 DoStartTransaction();
691 void URLRequestHttpJob::DoStartTransaction() {
692 // We may have been canceled while retrieving cookies.
693 if (GetStatus().is_success()) {
694 StartTransaction();
695 } else {
696 NotifyCanceled();
700 void URLRequestHttpJob::SaveCookiesAndNotifyHeadersComplete(int result) {
701 // End of the call started in OnStartCompleted.
702 OnCallToDelegateComplete();
704 if (result != OK) {
705 std::string source("delegate");
706 request_->net_log().AddEvent(NetLog::TYPE_CANCELLED,
707 NetLog::StringCallback("source", &source));
708 NotifyStartError(URLRequestStatus(URLRequestStatus::FAILED, result));
709 return;
712 DCHECK(transaction_.get());
714 const HttpResponseInfo* response_info = transaction_->GetResponseInfo();
715 DCHECK(response_info);
717 response_cookies_.clear();
718 response_cookies_save_index_ = 0;
720 FetchResponseCookies(&response_cookies_);
722 if (!GetResponseHeaders()->GetDateValue(&response_date_))
723 response_date_ = base::Time();
725 // Now, loop over the response cookies, and attempt to persist each.
726 SaveNextCookie();
729 // If the save occurs synchronously, SaveNextCookie will loop and save the next
730 // cookie. If the save is deferred, the callback is responsible for continuing
731 // to iterate through the cookies.
732 // TODO(erikwright): Modify the CookieStore API to indicate via return value
733 // whether it completed synchronously or asynchronously.
734 // See http://crbug.com/131066.
735 void URLRequestHttpJob::SaveNextCookie() {
736 // No matter what, we want to report our status as IO pending since we will
737 // be notifying our consumer asynchronously via OnStartCompleted.
738 SetStatus(URLRequestStatus(URLRequestStatus::IO_PENDING, 0));
740 // Used to communicate with the callback. See the implementation of
741 // OnCookieSaved.
742 scoped_refptr<SharedBoolean> callback_pending = new SharedBoolean(false);
743 scoped_refptr<SharedBoolean> save_next_cookie_running =
744 new SharedBoolean(true);
746 if (!(request_info_.load_flags & LOAD_DO_NOT_SAVE_COOKIES) &&
747 request_->context()->cookie_store() && response_cookies_.size() > 0) {
748 CookieOptions options;
749 options.set_include_httponly();
750 options.set_server_time(response_date_);
752 CookieStore::SetCookiesCallback callback(base::Bind(
753 &URLRequestHttpJob::OnCookieSaved, weak_factory_.GetWeakPtr(),
754 save_next_cookie_running, callback_pending));
756 // Loop through the cookies as long as SetCookieWithOptionsAsync completes
757 // synchronously.
758 while (!callback_pending->data &&
759 response_cookies_save_index_ < response_cookies_.size()) {
760 if (CanSetCookie(
761 response_cookies_[response_cookies_save_index_], &options)) {
762 callback_pending->data = true;
763 request_->context()->cookie_store()->SetCookieWithOptionsAsync(
764 request_->url(), response_cookies_[response_cookies_save_index_],
765 options, callback);
767 ++response_cookies_save_index_;
771 save_next_cookie_running->data = false;
773 if (!callback_pending->data) {
774 response_cookies_.clear();
775 response_cookies_save_index_ = 0;
776 SetStatus(URLRequestStatus()); // Clear the IO_PENDING status
777 NotifyHeadersComplete();
778 return;
782 // |save_next_cookie_running| is true when the callback is bound and set to
783 // false when SaveNextCookie exits, allowing the callback to determine if the
784 // save occurred synchronously or asynchronously.
785 // |callback_pending| is false when the callback is invoked and will be set to
786 // true by the callback, allowing SaveNextCookie to detect whether the save
787 // occurred synchronously.
788 // See SaveNextCookie() for more information.
789 void URLRequestHttpJob::OnCookieSaved(
790 scoped_refptr<SharedBoolean> save_next_cookie_running,
791 scoped_refptr<SharedBoolean> callback_pending,
792 bool cookie_status) {
793 callback_pending->data = false;
795 // If we were called synchronously, return.
796 if (save_next_cookie_running->data) {
797 return;
800 // We were called asynchronously, so trigger the next save.
801 // We may have been canceled within OnSetCookie.
802 if (GetStatus().is_success()) {
803 SaveNextCookie();
804 } else {
805 NotifyCanceled();
809 void URLRequestHttpJob::FetchResponseCookies(
810 std::vector<std::string>* cookies) {
811 const std::string name = "Set-Cookie";
812 std::string value;
814 void* iter = NULL;
815 HttpResponseHeaders* headers = GetResponseHeaders();
816 while (headers->EnumerateHeader(&iter, name, &value)) {
817 if (!value.empty())
818 cookies->push_back(value);
822 void URLRequestHttpJob::ProcessBackoffHeader() {
823 DCHECK(response_info_);
825 if (!backoff_manager_)
826 return;
828 TransportSecurityState* security_state =
829 request_->context()->transport_security_state();
830 const SSLInfo& ssl_info = response_info_->ssl_info;
832 // Only accept Backoff headers on HTTPS connections that have no
833 // certificate errors.
834 if (!ssl_info.is_valid() || IsCertStatusError(ssl_info.cert_status) ||
835 !security_state)
836 return;
838 backoff_manager_->UpdateWithResponse(request()->url(), GetResponseHeaders(),
839 base::Time::Now());
842 // NOTE: |ProcessStrictTransportSecurityHeader| and
843 // |ProcessPublicKeyPinsHeader| have very similar structures, by design.
844 void URLRequestHttpJob::ProcessStrictTransportSecurityHeader() {
845 DCHECK(response_info_);
846 TransportSecurityState* security_state =
847 request_->context()->transport_security_state();
848 const SSLInfo& ssl_info = response_info_->ssl_info;
850 // Only accept HSTS headers on HTTPS connections that have no
851 // certificate errors.
852 if (!ssl_info.is_valid() || IsCertStatusError(ssl_info.cert_status) ||
853 !security_state)
854 return;
856 // Don't accept HSTS headers when the hostname is an IP address.
857 if (request_info_.url.HostIsIPAddress())
858 return;
860 // http://tools.ietf.org/html/draft-ietf-websec-strict-transport-sec:
862 // If a UA receives more than one STS header field in a HTTP response
863 // message over secure transport, then the UA MUST process only the
864 // first such header field.
865 HttpResponseHeaders* headers = GetResponseHeaders();
866 std::string value;
867 if (headers->EnumerateHeader(NULL, "Strict-Transport-Security", &value))
868 security_state->AddHSTSHeader(request_info_.url.host(), value);
871 void URLRequestHttpJob::ProcessPublicKeyPinsHeader() {
872 DCHECK(response_info_);
873 TransportSecurityState* security_state =
874 request_->context()->transport_security_state();
875 const SSLInfo& ssl_info = response_info_->ssl_info;
877 // Only accept HPKP headers on HTTPS connections that have no
878 // certificate errors.
879 if (!ssl_info.is_valid() || IsCertStatusError(ssl_info.cert_status) ||
880 !security_state)
881 return;
883 // Don't accept HSTS headers when the hostname is an IP address.
884 if (request_info_.url.HostIsIPAddress())
885 return;
887 // http://tools.ietf.org/html/rfc7469:
889 // If a UA receives more than one PKP header field in an HTTP
890 // response message over secure transport, then the UA MUST process
891 // only the first such header field.
892 HttpResponseHeaders* headers = GetResponseHeaders();
893 std::string value;
894 if (headers->EnumerateHeader(nullptr, "Public-Key-Pins", &value))
895 security_state->AddHPKPHeader(request_info_.url.host(), value, ssl_info);
896 if (headers->EnumerateHeader(nullptr, "Public-Key-Pins-Report-Only",
897 &value)) {
898 security_state->ProcessHPKPReportOnlyHeader(
899 value, HostPortPair::FromURL(request_info_.url), ssl_info);
903 void URLRequestHttpJob::OnStartCompleted(int result) {
904 RecordTimer();
906 // If the request was destroyed, then there is no more work to do.
907 if (!request_)
908 return;
910 // If the job is done (due to cancellation), can just ignore this
911 // notification.
912 if (done_)
913 return;
915 receive_headers_end_ = base::TimeTicks::Now();
917 // Clear the IO_PENDING status
918 SetStatus(URLRequestStatus());
920 const URLRequestContext* context = request_->context();
922 if (result == OK) {
923 if (transaction_ && transaction_->GetResponseInfo()) {
924 SetProxyServer(transaction_->GetResponseInfo()->proxy_server);
926 scoped_refptr<HttpResponseHeaders> headers = GetResponseHeaders();
927 if (network_delegate()) {
928 // Note that |this| may not be deleted until
929 // |on_headers_received_callback_| or
930 // |NetworkDelegate::URLRequestDestroyed()| has been called.
931 OnCallToDelegate();
932 allowed_unsafe_redirect_url_ = GURL();
933 int error = network_delegate()->NotifyHeadersReceived(
934 request_,
935 on_headers_received_callback_,
936 headers.get(),
937 &override_response_headers_,
938 &allowed_unsafe_redirect_url_);
939 if (error != OK) {
940 if (error == ERR_IO_PENDING) {
941 awaiting_callback_ = true;
942 } else {
943 std::string source("delegate");
944 request_->net_log().AddEvent(NetLog::TYPE_CANCELLED,
945 NetLog::StringCallback("source",
946 &source));
947 OnCallToDelegateComplete();
948 NotifyStartError(URLRequestStatus(URLRequestStatus::FAILED, error));
950 return;
954 SaveCookiesAndNotifyHeadersComplete(OK);
955 } else if (IsCertificateError(result)) {
956 // We encountered an SSL certificate error.
957 if (result == ERR_SSL_WEAK_SERVER_EPHEMERAL_DH_KEY ||
958 result == ERR_SSL_PINNED_KEY_NOT_IN_CERT_CHAIN) {
959 // These are hard failures. They're handled separately and don't have
960 // the correct cert status, so set it here.
961 SSLInfo info(transaction_->GetResponseInfo()->ssl_info);
962 info.cert_status = MapNetErrorToCertStatus(result);
963 NotifySSLCertificateError(info, true);
964 } else {
965 // Maybe overridable, maybe not. Ask the delegate to decide.
966 TransportSecurityState* state = context->transport_security_state();
967 const bool fatal =
968 state && state->ShouldSSLErrorsBeFatal(request_info_.url.host());
969 NotifySSLCertificateError(
970 transaction_->GetResponseInfo()->ssl_info, fatal);
972 } else if (result == ERR_SSL_CLIENT_AUTH_CERT_NEEDED) {
973 NotifyCertificateRequested(
974 transaction_->GetResponseInfo()->cert_request_info.get());
975 } else {
976 // Even on an error, there may be useful information in the response
977 // info (e.g. whether there's a cached copy).
978 if (transaction_.get())
979 response_info_ = transaction_->GetResponseInfo();
980 NotifyStartError(URLRequestStatus(URLRequestStatus::FAILED, result));
984 void URLRequestHttpJob::OnHeadersReceivedCallback(int result) {
985 awaiting_callback_ = false;
987 // Check that there are no callbacks to already canceled requests.
988 DCHECK_NE(URLRequestStatus::CANCELED, GetStatus().status());
990 SaveCookiesAndNotifyHeadersComplete(result);
993 void URLRequestHttpJob::OnReadCompleted(int result) {
994 read_in_progress_ = false;
996 if (ShouldFixMismatchedContentLength(result))
997 result = OK;
999 if (result == OK) {
1000 NotifyDone(URLRequestStatus());
1001 } else if (result < 0) {
1002 NotifyDone(URLRequestStatus(URLRequestStatus::FAILED, result));
1003 } else {
1004 // Clear the IO_PENDING status
1005 SetStatus(URLRequestStatus());
1008 NotifyReadComplete(result);
1011 void URLRequestHttpJob::RestartTransactionWithAuth(
1012 const AuthCredentials& credentials) {
1013 auth_credentials_ = credentials;
1015 // These will be reset in OnStartCompleted.
1016 response_info_ = NULL;
1017 receive_headers_end_ = base::TimeTicks();
1018 response_cookies_.clear();
1020 ResetTimer();
1022 // Update the cookies, since the cookie store may have been updated from the
1023 // headers in the 401/407. Since cookies were already appended to
1024 // extra_headers, we need to strip them out before adding them again.
1025 request_info_.extra_headers.RemoveHeader(HttpRequestHeaders::kCookie);
1027 AddCookieHeaderAndStart();
1030 void URLRequestHttpJob::SetUpload(UploadDataStream* upload) {
1031 DCHECK(!transaction_.get()) << "cannot change once started";
1032 request_info_.upload_data_stream = upload;
1035 void URLRequestHttpJob::SetExtraRequestHeaders(
1036 const HttpRequestHeaders& headers) {
1037 DCHECK(!transaction_.get()) << "cannot change once started";
1038 request_info_.extra_headers.CopyFrom(headers);
1041 LoadState URLRequestHttpJob::GetLoadState() const {
1042 return transaction_.get() ?
1043 transaction_->GetLoadState() : LOAD_STATE_IDLE;
1046 UploadProgress URLRequestHttpJob::GetUploadProgress() const {
1047 return transaction_.get() ?
1048 transaction_->GetUploadProgress() : UploadProgress();
1051 bool URLRequestHttpJob::GetMimeType(std::string* mime_type) const {
1052 DCHECK(transaction_.get());
1054 if (!response_info_)
1055 return false;
1057 HttpResponseHeaders* headers = GetResponseHeaders();
1058 if (!headers)
1059 return false;
1060 return headers->GetMimeType(mime_type);
1063 bool URLRequestHttpJob::GetCharset(std::string* charset) {
1064 DCHECK(transaction_.get());
1066 if (!response_info_)
1067 return false;
1069 return GetResponseHeaders()->GetCharset(charset);
1072 void URLRequestHttpJob::GetResponseInfo(HttpResponseInfo* info) {
1073 DCHECK(request_);
1075 if (response_info_) {
1076 DCHECK(transaction_.get());
1078 *info = *response_info_;
1079 if (override_response_headers_.get())
1080 info->headers = override_response_headers_;
1084 void URLRequestHttpJob::GetLoadTimingInfo(
1085 LoadTimingInfo* load_timing_info) const {
1086 // If haven't made it far enough to receive any headers, don't return
1087 // anything. This makes for more consistent behavior in the case of errors.
1088 if (!transaction_ || receive_headers_end_.is_null())
1089 return;
1090 if (transaction_->GetLoadTimingInfo(load_timing_info))
1091 load_timing_info->receive_headers_end = receive_headers_end_;
1094 bool URLRequestHttpJob::GetResponseCookies(std::vector<std::string>* cookies) {
1095 DCHECK(transaction_.get());
1097 if (!response_info_)
1098 return false;
1100 // TODO(darin): Why are we extracting response cookies again? Perhaps we
1101 // should just leverage response_cookies_.
1103 cookies->clear();
1104 FetchResponseCookies(cookies);
1105 return true;
1108 int URLRequestHttpJob::GetResponseCode() const {
1109 DCHECK(transaction_.get());
1111 if (!response_info_)
1112 return -1;
1114 return GetResponseHeaders()->response_code();
1117 Filter* URLRequestHttpJob::SetupFilter() const {
1118 DCHECK(transaction_.get());
1119 if (!response_info_)
1120 return NULL;
1122 std::vector<Filter::FilterType> encoding_types;
1123 std::string encoding_type;
1124 HttpResponseHeaders* headers = GetResponseHeaders();
1125 void* iter = NULL;
1126 while (headers->EnumerateHeader(&iter, "Content-Encoding", &encoding_type)) {
1127 encoding_types.push_back(Filter::ConvertEncodingToType(encoding_type));
1130 // Even if encoding types are empty, there is a chance that we need to add
1131 // some decoding, as some proxies strip encoding completely. In such cases,
1132 // we may need to add (for example) SDCH filtering (when the context suggests
1133 // it is appropriate).
1134 Filter::FixupEncodingTypes(*filter_context_, &encoding_types);
1136 return !encoding_types.empty()
1137 ? Filter::Factory(encoding_types, *filter_context_) : NULL;
1140 bool URLRequestHttpJob::CopyFragmentOnRedirect(const GURL& location) const {
1141 // Allow modification of reference fragments by default, unless
1142 // |allowed_unsafe_redirect_url_| is set and equal to the redirect URL.
1143 // When this is the case, we assume that the network delegate has set the
1144 // desired redirect URL (with or without fragment), so it must not be changed
1145 // any more.
1146 return !allowed_unsafe_redirect_url_.is_valid() ||
1147 allowed_unsafe_redirect_url_ != location;
1150 bool URLRequestHttpJob::IsSafeRedirect(const GURL& location) {
1151 // HTTP is always safe.
1152 // TODO(pauljensen): Remove once crbug.com/146591 is fixed.
1153 if (location.is_valid() &&
1154 (location.scheme() == "http" || location.scheme() == "https")) {
1155 return true;
1157 // Delegates may mark a URL as safe for redirection.
1158 if (allowed_unsafe_redirect_url_.is_valid() &&
1159 allowed_unsafe_redirect_url_ == location) {
1160 return true;
1162 // Query URLRequestJobFactory as to whether |location| would be safe to
1163 // redirect to.
1164 return request_->context()->job_factory() &&
1165 request_->context()->job_factory()->IsSafeRedirectTarget(location);
1168 bool URLRequestHttpJob::NeedsAuth() {
1169 int code = GetResponseCode();
1170 if (code == -1)
1171 return false;
1173 // Check if we need either Proxy or WWW Authentication. This could happen
1174 // because we either provided no auth info, or provided incorrect info.
1175 switch (code) {
1176 case 407:
1177 if (proxy_auth_state_ == AUTH_STATE_CANCELED)
1178 return false;
1179 proxy_auth_state_ = AUTH_STATE_NEED_AUTH;
1180 return true;
1181 case 401:
1182 if (server_auth_state_ == AUTH_STATE_CANCELED)
1183 return false;
1184 server_auth_state_ = AUTH_STATE_NEED_AUTH;
1185 return true;
1187 return false;
1190 void URLRequestHttpJob::GetAuthChallengeInfo(
1191 scoped_refptr<AuthChallengeInfo>* result) {
1192 DCHECK(transaction_.get());
1193 DCHECK(response_info_);
1195 // sanity checks:
1196 DCHECK(proxy_auth_state_ == AUTH_STATE_NEED_AUTH ||
1197 server_auth_state_ == AUTH_STATE_NEED_AUTH);
1198 DCHECK((GetResponseHeaders()->response_code() == HTTP_UNAUTHORIZED) ||
1199 (GetResponseHeaders()->response_code() ==
1200 HTTP_PROXY_AUTHENTICATION_REQUIRED));
1202 *result = response_info_->auth_challenge;
1205 void URLRequestHttpJob::SetAuth(const AuthCredentials& credentials) {
1206 DCHECK(transaction_.get());
1208 // Proxy gets set first, then WWW.
1209 if (proxy_auth_state_ == AUTH_STATE_NEED_AUTH) {
1210 proxy_auth_state_ = AUTH_STATE_HAVE_AUTH;
1211 } else {
1212 DCHECK_EQ(server_auth_state_, AUTH_STATE_NEED_AUTH);
1213 server_auth_state_ = AUTH_STATE_HAVE_AUTH;
1216 RestartTransactionWithAuth(credentials);
1219 void URLRequestHttpJob::CancelAuth() {
1220 // Proxy gets set first, then WWW.
1221 if (proxy_auth_state_ == AUTH_STATE_NEED_AUTH) {
1222 proxy_auth_state_ = AUTH_STATE_CANCELED;
1223 } else {
1224 DCHECK_EQ(server_auth_state_, AUTH_STATE_NEED_AUTH);
1225 server_auth_state_ = AUTH_STATE_CANCELED;
1228 // These will be reset in OnStartCompleted.
1229 response_info_ = NULL;
1230 receive_headers_end_ = base::TimeTicks::Now();
1231 response_cookies_.clear();
1233 ResetTimer();
1235 // OK, let the consumer read the error page...
1237 // Because we set the AUTH_STATE_CANCELED flag, NeedsAuth will return false,
1238 // which will cause the consumer to receive OnResponseStarted instead of
1239 // OnAuthRequired.
1241 // We have to do this via InvokeLater to avoid "recursing" the consumer.
1243 base::ThreadTaskRunnerHandle::Get()->PostTask(
1244 FROM_HERE, base::Bind(&URLRequestHttpJob::OnStartCompleted,
1245 weak_factory_.GetWeakPtr(), OK));
1248 void URLRequestHttpJob::ContinueWithCertificate(
1249 X509Certificate* client_cert) {
1250 DCHECK(transaction_.get());
1252 DCHECK(!response_info_) << "should not have a response yet";
1253 receive_headers_end_ = base::TimeTicks();
1255 ResetTimer();
1257 // No matter what, we want to report our status as IO pending since we will
1258 // be notifying our consumer asynchronously via OnStartCompleted.
1259 SetStatus(URLRequestStatus(URLRequestStatus::IO_PENDING, 0));
1261 int rv = transaction_->RestartWithCertificate(client_cert, start_callback_);
1262 if (rv == ERR_IO_PENDING)
1263 return;
1265 // The transaction started synchronously, but we need to notify the
1266 // URLRequest delegate via the message loop.
1267 base::ThreadTaskRunnerHandle::Get()->PostTask(
1268 FROM_HERE, base::Bind(&URLRequestHttpJob::OnStartCompleted,
1269 weak_factory_.GetWeakPtr(), rv));
1272 void URLRequestHttpJob::ContinueDespiteLastError() {
1273 // If the transaction was destroyed, then the job was cancelled.
1274 if (!transaction_.get())
1275 return;
1277 DCHECK(!response_info_) << "should not have a response yet";
1278 receive_headers_end_ = base::TimeTicks();
1280 ResetTimer();
1282 // No matter what, we want to report our status as IO pending since we will
1283 // be notifying our consumer asynchronously via OnStartCompleted.
1284 SetStatus(URLRequestStatus(URLRequestStatus::IO_PENDING, 0));
1286 int rv = transaction_->RestartIgnoringLastError(start_callback_);
1287 if (rv == ERR_IO_PENDING)
1288 return;
1290 // The transaction started synchronously, but we need to notify the
1291 // URLRequest delegate via the message loop.
1292 base::ThreadTaskRunnerHandle::Get()->PostTask(
1293 FROM_HERE, base::Bind(&URLRequestHttpJob::OnStartCompleted,
1294 weak_factory_.GetWeakPtr(), rv));
1297 void URLRequestHttpJob::ResumeNetworkStart() {
1298 DCHECK(transaction_.get());
1299 transaction_->ResumeNetworkStart();
1302 bool URLRequestHttpJob::ShouldFixMismatchedContentLength(int rv) const {
1303 // Some servers send the body compressed, but specify the content length as
1304 // the uncompressed size. Although this violates the HTTP spec we want to
1305 // support it (as IE and FireFox do), but *only* for an exact match.
1306 // See http://crbug.com/79694.
1307 if (rv == ERR_CONTENT_LENGTH_MISMATCH ||
1308 rv == ERR_INCOMPLETE_CHUNKED_ENCODING) {
1309 if (request_ && request_->response_headers()) {
1310 int64 expected_length = request_->response_headers()->GetContentLength();
1311 VLOG(1) << __FUNCTION__ << "() "
1312 << "\"" << request_->url().spec() << "\""
1313 << " content-length = " << expected_length
1314 << " pre total = " << prefilter_bytes_read()
1315 << " post total = " << postfilter_bytes_read();
1316 if (postfilter_bytes_read() == expected_length) {
1317 // Clear the error.
1318 return true;
1322 return false;
1325 bool URLRequestHttpJob::ReadRawData(IOBuffer* buf, int buf_size,
1326 int* bytes_read) {
1327 DCHECK_NE(buf_size, 0);
1328 DCHECK(bytes_read);
1329 DCHECK(!read_in_progress_);
1331 int rv = transaction_->Read(
1332 buf, buf_size,
1333 base::Bind(&URLRequestHttpJob::OnReadCompleted, base::Unretained(this)));
1335 if (ShouldFixMismatchedContentLength(rv))
1336 rv = 0;
1338 if (rv >= 0) {
1339 *bytes_read = rv;
1340 if (!rv)
1341 DoneWithRequest(FINISHED);
1342 return true;
1345 if (rv == ERR_IO_PENDING) {
1346 read_in_progress_ = true;
1347 SetStatus(URLRequestStatus(URLRequestStatus::IO_PENDING, 0));
1348 } else {
1349 NotifyDone(URLRequestStatus(URLRequestStatus::FAILED, rv));
1352 return false;
1355 void URLRequestHttpJob::StopCaching() {
1356 if (transaction_.get())
1357 transaction_->StopCaching();
1360 bool URLRequestHttpJob::GetFullRequestHeaders(
1361 HttpRequestHeaders* headers) const {
1362 if (!transaction_)
1363 return false;
1365 return transaction_->GetFullRequestHeaders(headers);
1368 int64 URLRequestHttpJob::GetTotalReceivedBytes() const {
1369 int64_t total_received_bytes =
1370 total_received_bytes_from_previous_transactions_;
1371 if (transaction_)
1372 total_received_bytes += transaction_->GetTotalReceivedBytes();
1373 return total_received_bytes;
1376 int64_t URLRequestHttpJob::GetTotalSentBytes() const {
1377 int64_t total_sent_bytes = total_sent_bytes_from_previous_transactions_;
1378 if (transaction_)
1379 total_sent_bytes += transaction_->GetTotalSentBytes();
1380 return total_sent_bytes;
1383 void URLRequestHttpJob::DoneReading() {
1384 if (transaction_) {
1385 transaction_->DoneReading();
1387 DoneWithRequest(FINISHED);
1390 void URLRequestHttpJob::DoneReadingRedirectResponse() {
1391 if (transaction_) {
1392 if (transaction_->GetResponseInfo()->headers->IsRedirect(NULL)) {
1393 // If the original headers indicate a redirect, go ahead and cache the
1394 // response, even if the |override_response_headers_| are a redirect to
1395 // another location.
1396 transaction_->DoneReading();
1397 } else {
1398 // Otherwise, |override_response_headers_| must be non-NULL and contain
1399 // bogus headers indicating a redirect.
1400 DCHECK(override_response_headers_.get());
1401 DCHECK(override_response_headers_->IsRedirect(NULL));
1402 transaction_->StopCaching();
1405 DoneWithRequest(FINISHED);
1408 HostPortPair URLRequestHttpJob::GetSocketAddress() const {
1409 return response_info_ ? response_info_->socket_address : HostPortPair();
1412 void URLRequestHttpJob::RecordTimer() {
1413 if (request_creation_time_.is_null()) {
1414 NOTREACHED()
1415 << "The same transaction shouldn't start twice without new timing.";
1416 return;
1419 base::TimeDelta to_start = base::Time::Now() - request_creation_time_;
1420 request_creation_time_ = base::Time();
1422 UMA_HISTOGRAM_MEDIUM_TIMES("Net.HttpTimeToFirstByte", to_start);
1425 void URLRequestHttpJob::ResetTimer() {
1426 if (!request_creation_time_.is_null()) {
1427 NOTREACHED()
1428 << "The timer was reset before it was recorded.";
1429 return;
1431 request_creation_time_ = base::Time::Now();
1434 void URLRequestHttpJob::UpdatePacketReadTimes() {
1435 if (!packet_timing_enabled_)
1436 return;
1438 DCHECK_GT(prefilter_bytes_read(), bytes_observed_in_packets_);
1440 base::Time now(base::Time::Now());
1441 if (!bytes_observed_in_packets_)
1442 request_time_snapshot_ = now;
1443 final_packet_time_ = now;
1445 bytes_observed_in_packets_ = prefilter_bytes_read();
1448 void URLRequestHttpJob::RecordPacketStats(
1449 FilterContext::StatisticSelector statistic) const {
1450 if (!packet_timing_enabled_ || (final_packet_time_ == base::Time()))
1451 return;
1453 base::TimeDelta duration = final_packet_time_ - request_time_snapshot_;
1454 switch (statistic) {
1455 case FilterContext::SDCH_DECODE: {
1456 UMA_HISTOGRAM_CUSTOM_COUNTS("Sdch3.Network_Decode_Bytes_Processed_b",
1457 static_cast<int>(bytes_observed_in_packets_), 500, 100000, 100);
1458 return;
1460 case FilterContext::SDCH_PASSTHROUGH: {
1461 // Despite advertising a dictionary, we handled non-sdch compressed
1462 // content.
1463 return;
1466 case FilterContext::SDCH_EXPERIMENT_DECODE: {
1467 UMA_HISTOGRAM_CUSTOM_TIMES("Sdch3.Experiment3_Decode",
1468 duration,
1469 base::TimeDelta::FromMilliseconds(20),
1470 base::TimeDelta::FromMinutes(10), 100);
1471 return;
1473 case FilterContext::SDCH_EXPERIMENT_HOLDBACK: {
1474 UMA_HISTOGRAM_CUSTOM_TIMES("Sdch3.Experiment3_Holdback",
1475 duration,
1476 base::TimeDelta::FromMilliseconds(20),
1477 base::TimeDelta::FromMinutes(10), 100);
1478 return;
1480 default:
1481 NOTREACHED();
1482 return;
1486 void URLRequestHttpJob::RecordPerfHistograms(CompletionCause reason) {
1487 if (start_time_.is_null())
1488 return;
1490 base::TimeDelta total_time = base::TimeTicks::Now() - start_time_;
1491 UMA_HISTOGRAM_TIMES("Net.HttpJob.TotalTime", total_time);
1493 if (reason == FINISHED) {
1494 UMA_HISTOGRAM_TIMES("Net.HttpJob.TotalTimeSuccess", total_time);
1495 } else {
1496 UMA_HISTOGRAM_TIMES("Net.HttpJob.TotalTimeCancel", total_time);
1499 if (response_info_) {
1500 // QUIC (by default) supports https scheme only, thus track https URLs only
1501 // for QUIC.
1502 bool is_https_google = request() && request()->url().SchemeIs("https") &&
1503 HasGoogleHost(request()->url());
1504 bool used_quic = response_info_->DidUseQuic();
1505 if (is_https_google) {
1506 if (used_quic) {
1507 UMA_HISTOGRAM_MEDIUM_TIMES("Net.HttpJob.TotalTime.Secure.Quic",
1508 total_time);
1509 } else {
1510 UMA_HISTOGRAM_MEDIUM_TIMES("Net.HttpJob.TotalTime.Secure.NotQuic",
1511 total_time);
1514 if (response_info_->was_cached) {
1515 UMA_HISTOGRAM_TIMES("Net.HttpJob.TotalTimeCached", total_time);
1516 if (is_https_google) {
1517 if (used_quic) {
1518 UMA_HISTOGRAM_MEDIUM_TIMES("Net.HttpJob.TotalTimeCached.Secure.Quic",
1519 total_time);
1520 } else {
1521 UMA_HISTOGRAM_MEDIUM_TIMES(
1522 "Net.HttpJob.TotalTimeCached.Secure.NotQuic", total_time);
1525 } else {
1526 UMA_HISTOGRAM_TIMES("Net.HttpJob.TotalTimeNotCached", total_time);
1527 if (is_https_google) {
1528 if (used_quic) {
1529 UMA_HISTOGRAM_MEDIUM_TIMES(
1530 "Net.HttpJob.TotalTimeNotCached.Secure.Quic", total_time);
1531 } else {
1532 UMA_HISTOGRAM_MEDIUM_TIMES(
1533 "Net.HttpJob.TotalTimeNotCached.Secure.NotQuic", total_time);
1539 if (request_info_.load_flags & LOAD_PREFETCH && !request_->was_cached())
1540 UMA_HISTOGRAM_COUNTS("Net.Prefetch.PrefilterBytesReadFromNetwork",
1541 prefilter_bytes_read());
1543 start_time_ = base::TimeTicks();
1546 void URLRequestHttpJob::DoneWithRequest(CompletionCause reason) {
1547 if (done_)
1548 return;
1549 done_ = true;
1551 // Notify NetworkQualityEstimator.
1552 if (request() && (reason == FINISHED || reason == ABORTED)) {
1553 NetworkQualityEstimator* network_quality_estimator =
1554 request()->context()->network_quality_estimator();
1555 if (network_quality_estimator)
1556 network_quality_estimator->NotifyRequestCompleted(*request());
1559 RecordPerfHistograms(reason);
1560 if (request_)
1561 request_->set_received_response_content_length(prefilter_bytes_read());
1564 HttpResponseHeaders* URLRequestHttpJob::GetResponseHeaders() const {
1565 DCHECK(transaction_.get());
1566 DCHECK(transaction_->GetResponseInfo());
1567 return override_response_headers_.get() ?
1568 override_response_headers_.get() :
1569 transaction_->GetResponseInfo()->headers.get();
1572 void URLRequestHttpJob::NotifyURLRequestDestroyed() {
1573 awaiting_callback_ = false;
1576 } // namespace net