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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/base/network_delegate.h"
#include <utility>
#include "base/logging.h"
#include "base/ranges/algorithm.h"
#include "net/base/load_flags.h"
#include "net/base/net_errors.h"
#include "net/base/trace_constants.h"
#include "net/base/tracing.h"
#include "net/cookies/cookie_setting_override.h"
#include "net/cookies/cookie_util.h"
#include "net/proxy_resolution/proxy_info.h"
#include "net/url_request/url_request.h"
namespace net {
NetworkDelegate::~NetworkDelegate() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
}
int NetworkDelegate::NotifyBeforeURLRequest(URLRequest* request,
CompletionOnceCallback callback,
GURL* new_url) {
TRACE_EVENT0(NetTracingCategory(), "NetworkDelegate::NotifyBeforeURLRequest");
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(request);
DCHECK(!callback.is_null());
// ClusterFuzz depends on the following VLOG. See: crbug.com/715656
VLOG(1) << "NetworkDelegate::NotifyBeforeURLRequest: " << request->url();
return OnBeforeURLRequest(request, std::move(callback), new_url);
}
int NetworkDelegate::NotifyBeforeStartTransaction(
URLRequest* request,
const HttpRequestHeaders& headers,
OnBeforeStartTransactionCallback callback) {
TRACE_EVENT0(NetTracingCategory(),
"NetworkDelegate::NotifyBeforeStartTransation");
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(!callback.is_null());
return OnBeforeStartTransaction(request, headers, std::move(callback));
}
int NetworkDelegate::NotifyHeadersReceived(
URLRequest* request,
CompletionOnceCallback callback,
const HttpResponseHeaders* original_response_headers,
scoped_refptr<HttpResponseHeaders>* override_response_headers,
const IPEndPoint& endpoint,
absl::optional<GURL>* preserve_fragment_on_redirect_url) {
TRACE_EVENT0(NetTracingCategory(), "NetworkDelegate::NotifyHeadersReceived");
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(original_response_headers);
DCHECK(!callback.is_null());
DCHECK(!preserve_fragment_on_redirect_url->has_value());
return OnHeadersReceived(request, std::move(callback),
original_response_headers, override_response_headers,
endpoint, preserve_fragment_on_redirect_url);
}
void NetworkDelegate::NotifyResponseStarted(URLRequest* request,
int net_error) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(request);
OnResponseStarted(request, net_error);
}
void NetworkDelegate::NotifyBeforeRedirect(URLRequest* request,
const GURL& new_location) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(request);
OnBeforeRedirect(request, new_location);
}
void NetworkDelegate::NotifyCompleted(URLRequest* request,
bool started,
int net_error) {
TRACE_EVENT0(NetTracingCategory(), "NetworkDelegate::NotifyCompleted");
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(request);
OnCompleted(request, started, net_error);
}
void NetworkDelegate::NotifyURLRequestDestroyed(URLRequest* request) {
TRACE_EVENT0(NetTracingCategory(),
"NetworkDelegate::NotifyURLRequestDestroyed");
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(request);
OnURLRequestDestroyed(request);
}
void NetworkDelegate::NotifyPACScriptError(int line_number,
const std::u16string& error) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
OnPACScriptError(line_number, error);
}
bool NetworkDelegate::AnnotateAndMoveUserBlockedCookies(
const URLRequest& request,
const net::FirstPartySetMetadata& first_party_set_metadata,
net::CookieAccessResultList& maybe_included_cookies,
net::CookieAccessResultList& excluded_cookies) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
bool allowed = OnAnnotateAndMoveUserBlockedCookies(
request, first_party_set_metadata, maybe_included_cookies,
excluded_cookies);
cookie_util::DCheckIncludedAndExcludedCookieLists(maybe_included_cookies,
excluded_cookies);
return allowed;
}
bool NetworkDelegate::CanSetCookie(const URLRequest& request,
const CanonicalCookie& cookie,
CookieOptions* options,
CookieInclusionStatus* inclusion_status) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(!(request.load_flags() & LOAD_DO_NOT_SAVE_COOKIES));
return OnCanSetCookie(request, cookie, options, inclusion_status);
}
NetworkDelegate::PrivacySetting NetworkDelegate::ForcePrivacyMode(
const URLRequest& request) const {
TRACE_EVENT0(NetTracingCategory(), "NetworkDelegate::ForcePrivacyMode");
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return OnForcePrivacyMode(request);
}
bool NetworkDelegate::CancelURLRequestWithPolicyViolatingReferrerHeader(
const URLRequest& request,
const GURL& target_url,
const GURL& referrer_url) const {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return OnCancelURLRequestWithPolicyViolatingReferrerHeader(
request, target_url, referrer_url);
}
bool NetworkDelegate::CanQueueReportingReport(const url::Origin& origin) const {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return OnCanQueueReportingReport(origin);
}
void NetworkDelegate::CanSendReportingReports(
std::set<url::Origin> origins,
base::OnceCallback<void(std::set<url::Origin>)> result_callback) const {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
OnCanSendReportingReports(std::move(origins), std::move(result_callback));
}
bool NetworkDelegate::CanSetReportingClient(const url::Origin& origin,
const GURL& endpoint) const {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return OnCanSetReportingClient(origin, endpoint);
}
bool NetworkDelegate::CanUseReportingClient(const url::Origin& origin,
const GURL& endpoint) const {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return OnCanUseReportingClient(origin, endpoint);
}
// static
void NetworkDelegate::ExcludeAllCookies(
net::CookieInclusionStatus::ExclusionReason reason,
net::CookieAccessResultList& maybe_included_cookies,
net::CookieAccessResultList& excluded_cookies) {
excluded_cookies.insert(
excluded_cookies.end(),
std::make_move_iterator(maybe_included_cookies.begin()),
std::make_move_iterator(maybe_included_cookies.end()));
maybe_included_cookies.clear();
// Add the ExclusionReason for all cookies.
for (net::CookieWithAccessResult& cookie : excluded_cookies) {
cookie.access_result.status.AddExclusionReason(reason);
}
}
// static
void NetworkDelegate::MoveExcludedCookies(
net::CookieAccessResultList& maybe_included_cookies,
net::CookieAccessResultList& excluded_cookies) {
const auto to_be_moved = base::ranges::stable_partition(
maybe_included_cookies, [](const CookieWithAccessResult& cookie) {
return cookie.access_result.status.IsInclude();
});
excluded_cookies.insert(
excluded_cookies.end(), std::make_move_iterator(to_be_moved),
std::make_move_iterator(maybe_included_cookies.end()));
maybe_included_cookies.erase(to_be_moved, maybe_included_cookies.end());
}
} // namespace net
|