mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
345 lines
16 KiB
C++
345 lines
16 KiB
C++
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef NET_BASE_NETWORK_DELEGATE_H_
|
|
#define NET_BASE_NETWORK_DELEGATE_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <set>
|
|
#include <string>
|
|
|
|
#include "base/callback.h"
|
|
#include "base/strings/string16.h"
|
|
#include "base/threading/thread_checker.h"
|
|
#include "net/base/auth.h"
|
|
#include "net/base/completion_once_callback.h"
|
|
#include "net/base/net_export.h"
|
|
#include "net/cookies/canonical_cookie.h"
|
|
#include "net/proxy_resolution/proxy_retry_info.h"
|
|
|
|
class GURL;
|
|
|
|
namespace base {
|
|
class FilePath;
|
|
}
|
|
|
|
namespace url {
|
|
class Origin;
|
|
}
|
|
|
|
namespace net {
|
|
|
|
// NOTE: Layering violations!
|
|
// We decided to accept these violations (depending
|
|
// on other net/ submodules from net/base/), because otherwise NetworkDelegate
|
|
// would have to be broken up into too many smaller interfaces targeted to each
|
|
// submodule. Also, since the lower levels in net/ may callback into higher
|
|
// levels, we may encounter dangerous casting issues.
|
|
//
|
|
// NOTE: It is not okay to add any compile-time dependencies on symbols outside
|
|
// of net/base here, because we have a net_base library. Forward declarations
|
|
// are ok.
|
|
class CookieOptions;
|
|
class HttpRequestHeaders;
|
|
class HttpResponseHeaders;
|
|
class ProxyInfo;
|
|
class URLRequest;
|
|
|
|
class NET_EXPORT NetworkDelegate {
|
|
public:
|
|
// AuthRequiredResponse indicates how a NetworkDelegate handles an
|
|
// OnAuthRequired call. It's placed in this file to prevent url_request.h
|
|
// from having to include network_delegate.h.
|
|
enum AuthRequiredResponse {
|
|
AUTH_REQUIRED_RESPONSE_NO_ACTION,
|
|
AUTH_REQUIRED_RESPONSE_SET_AUTH,
|
|
AUTH_REQUIRED_RESPONSE_CANCEL_AUTH,
|
|
AUTH_REQUIRED_RESPONSE_IO_PENDING,
|
|
};
|
|
using AuthCallback = base::OnceCallback<void(AuthRequiredResponse)>;
|
|
|
|
virtual ~NetworkDelegate();
|
|
|
|
// Notification interface called by the network stack. Note that these
|
|
// functions mostly forward to the private virtuals. They also add some sanity
|
|
// checking on parameters. See the corresponding virtuals for explanations of
|
|
// the methods and their arguments.
|
|
int NotifyBeforeURLRequest(URLRequest* request,
|
|
CompletionOnceCallback callback,
|
|
GURL* new_url);
|
|
int NotifyBeforeStartTransaction(URLRequest* request,
|
|
CompletionOnceCallback callback,
|
|
HttpRequestHeaders* headers);
|
|
void NotifyBeforeSendHeaders(URLRequest* request,
|
|
const ProxyInfo& proxy_info,
|
|
const ProxyRetryInfoMap& proxy_retry_info,
|
|
HttpRequestHeaders* headers);
|
|
void NotifyStartTransaction(URLRequest* request,
|
|
const HttpRequestHeaders& headers);
|
|
int NotifyHeadersReceived(
|
|
URLRequest* request,
|
|
CompletionOnceCallback callback,
|
|
const HttpResponseHeaders* original_response_headers,
|
|
scoped_refptr<HttpResponseHeaders>* override_response_headers,
|
|
GURL* allowed_unsafe_redirect_url);
|
|
void NotifyBeforeRedirect(URLRequest* request,
|
|
const GURL& new_location);
|
|
void NotifyResponseStarted(URLRequest* request, int net_error);
|
|
void NotifyNetworkBytesReceived(URLRequest* request, int64_t bytes_received);
|
|
void NotifyNetworkBytesSent(URLRequest* request, int64_t bytes_sent);
|
|
void NotifyCompleted(URLRequest* request, bool started, int net_error);
|
|
void NotifyURLRequestDestroyed(URLRequest* request);
|
|
void NotifyPACScriptError(int line_number, const base::string16& error);
|
|
AuthRequiredResponse NotifyAuthRequired(URLRequest* request,
|
|
const AuthChallengeInfo& auth_info,
|
|
AuthCallback callback,
|
|
AuthCredentials* credentials);
|
|
bool CanGetCookies(const URLRequest& request, const CookieList& cookie_list);
|
|
bool CanSetCookie(const URLRequest& request,
|
|
const net::CanonicalCookie& cookie,
|
|
CookieOptions* options);
|
|
bool CanAccessFile(const URLRequest& request,
|
|
const base::FilePath& original_path,
|
|
const base::FilePath& absolute_path) const;
|
|
bool CanEnablePrivacyMode(const GURL& url,
|
|
const GURL& site_for_cookies) const;
|
|
|
|
bool AreExperimentalCookieFeaturesEnabled() const;
|
|
|
|
bool CancelURLRequestWithPolicyViolatingReferrerHeader(
|
|
const URLRequest& request,
|
|
const GURL& target_url,
|
|
const GURL& referrer_url) const;
|
|
|
|
bool CanQueueReportingReport(const url::Origin& origin) const;
|
|
void CanSendReportingReports(
|
|
std::set<url::Origin> origins,
|
|
base::OnceCallback<void(std::set<url::Origin>)> result_callback) const;
|
|
bool CanSetReportingClient(const url::Origin& origin,
|
|
const GURL& endpoint) const;
|
|
bool CanUseReportingClient(const url::Origin& origin,
|
|
const GURL& endpoint) const;
|
|
|
|
protected:
|
|
THREAD_CHECKER(thread_checker_);
|
|
|
|
private:
|
|
// This is the interface for subclasses of NetworkDelegate to implement. These
|
|
// member functions will be called by the respective public notification
|
|
// member function, which will perform basic sanity checking.
|
|
//
|
|
// Note that these member functions refer to URLRequests which may be canceled
|
|
// or destroyed at any time. Implementations which return ERR_IO_PENDING must
|
|
// also implement OnURLRequestDestroyed and OnCompleted to handle cancelation.
|
|
// See below for details.
|
|
//
|
|
// (NetworkDelegateImpl has default implementations of these member functions.
|
|
// NetworkDelegate implementations should consider subclassing
|
|
// NetworkDelegateImpl.)
|
|
|
|
// Called before a request is sent. Allows the delegate to rewrite the URL
|
|
// being fetched by modifying |new_url|. If set, the URL must be valid. The
|
|
// reference fragment from the original URL is not automatically appended to
|
|
// |new_url|; callers are responsible for copying the reference fragment if
|
|
// desired.
|
|
//
|
|
// Returns OK to continue with the request, ERR_IO_PENDING if the result is
|
|
// not ready yet, and any other status code to cancel the request. If
|
|
// returning ERR_IO_PENDING, call |callback| when the result is ready. Note,
|
|
// however, that a pending operation may be cancelled by
|
|
// OnURLRequestDestroyed. Once cancelled, |request| and |new_url| become
|
|
// invalid and |callback| may not be called.
|
|
//
|
|
// The default implementation returns OK (continue with request).
|
|
virtual int OnBeforeURLRequest(URLRequest* request,
|
|
CompletionOnceCallback callback,
|
|
GURL* new_url) = 0;
|
|
|
|
// Called right before the network transaction starts. Allows the delegate to
|
|
// read/write |headers| before they get sent out.
|
|
//
|
|
// Returns OK to continue with the request, ERR_IO_PENDING if the result is
|
|
// not ready yet, and any other status code to cancel the request. If
|
|
// returning ERR_IO_PENDING, call |callback| when the result is ready. Note,
|
|
// however, that a pending operation may be cancelled by OnURLRequestDestroyed
|
|
// or OnCompleted. Once cancelled, |request| and |headers| become invalid and
|
|
// |callback| may not be called.
|
|
//
|
|
// The default implementation returns OK (continue with request) without
|
|
// modifying |headers|.
|
|
virtual int OnBeforeStartTransaction(URLRequest* request,
|
|
CompletionOnceCallback callback,
|
|
HttpRequestHeaders* headers) = 0;
|
|
|
|
// Called after a connection is established , and just before headers are sent
|
|
// to the destination server (i.e., not called for HTTP CONNECT requests). For
|
|
// non-tunneled requests using HTTP proxies, |headers| will include any
|
|
// proxy-specific headers as well. Allows the delegate to read/write |headers|
|
|
// before they get sent out. |headers| is valid only for the duration of the
|
|
// call.
|
|
virtual void OnBeforeSendHeaders(URLRequest* request,
|
|
const ProxyInfo& proxy_info,
|
|
const ProxyRetryInfoMap& proxy_retry_info,
|
|
HttpRequestHeaders* headers) = 0;
|
|
|
|
// Called right before the HTTP request(s) are being sent to the network.
|
|
// |headers| is only valid only for the duration of the call.
|
|
virtual void OnStartTransaction(URLRequest* request,
|
|
const HttpRequestHeaders& headers) = 0;
|
|
|
|
// Called for HTTP requests when the headers have been received.
|
|
// |original_response_headers| contains the headers as received over the
|
|
// network, these must not be modified. |override_response_headers| can be set
|
|
// to new values, that should be considered as overriding
|
|
// |original_response_headers|.
|
|
// If the response is a redirect, and the Location response header value is
|
|
// identical to |allowed_unsafe_redirect_url|, then the redirect is never
|
|
// blocked and the reference fragment is not copied from the original URL
|
|
// to the redirection target.
|
|
//
|
|
// Returns OK to continue with the request, ERR_IO_PENDING if the result is
|
|
// not ready yet, and any other status code to cancel the request. If
|
|
// returning ERR_IO_PENDING, call |callback| when the result is ready. Note,
|
|
// however, that a pending operation may be cancelled by
|
|
// OnURLRequestDestroyed. Once cancelled, |request|,
|
|
// |original_response_headers|, |override_response_headers|, and
|
|
// |allowed_unsafe_redirect_url| become invalid and |callback| may not be
|
|
// called.
|
|
virtual int OnHeadersReceived(
|
|
URLRequest* request,
|
|
CompletionOnceCallback callback,
|
|
const HttpResponseHeaders* original_response_headers,
|
|
scoped_refptr<HttpResponseHeaders>* override_response_headers,
|
|
GURL* allowed_unsafe_redirect_url) = 0;
|
|
|
|
// Called right after a redirect response code was received. |new_location| is
|
|
// only valid for the duration of the call.
|
|
virtual void OnBeforeRedirect(URLRequest* request,
|
|
const GURL& new_location) = 0;
|
|
|
|
// This corresponds to URLRequestDelegate::OnResponseStarted.
|
|
virtual void OnResponseStarted(URLRequest* request, int net_error) = 0;
|
|
|
|
// Called when bytes are received from the network, such as after receiving
|
|
// headers or reading raw response bytes. This includes localhost requests.
|
|
// |bytes_received| is the number of bytes measured at the application layer
|
|
// that have been received over the network for this request since the last
|
|
// time OnNetworkBytesReceived was called. |bytes_received| will always be
|
|
// greater than 0.
|
|
// Currently, this is only implemented for HTTP transactions, and
|
|
// |bytes_received| does not include TLS overhead or TCP retransmits.
|
|
virtual void OnNetworkBytesReceived(URLRequest* request,
|
|
int64_t bytes_received) = 0;
|
|
|
|
// Called when bytes are sent over the network, such as when sending request
|
|
// headers or uploading request body bytes. This includes localhost requests.
|
|
// |bytes_sent| is the number of bytes measured at the application layer that
|
|
// have been sent over the network for this request since the last time
|
|
// OnNetworkBytesSent was called. |bytes_sent| will always be greater than 0.
|
|
// Currently, this is only implemented for HTTP transactions, and |bytes_sent|
|
|
// does not include TLS overhead or TCP retransmits.
|
|
virtual void OnNetworkBytesSent(URLRequest* request, int64_t bytes_sent) = 0;
|
|
|
|
// Indicates that the URL request has been completed or failed.
|
|
// |started| indicates whether the request has been started. If false,
|
|
// some information like the socket address is not available.
|
|
virtual void OnCompleted(URLRequest* request,
|
|
bool started,
|
|
int net_error) = 0;
|
|
|
|
// Called when an URLRequest is being destroyed. Note that the request is
|
|
// being deleted, so it's not safe to call any methods that may result in
|
|
// a virtual method call.
|
|
virtual void OnURLRequestDestroyed(URLRequest* request) = 0;
|
|
|
|
// Corresponds to ProxyResolverJSBindings::OnError.
|
|
virtual void OnPACScriptError(int line_number,
|
|
const base::string16& error) = 0;
|
|
|
|
// Called when a request receives an authentication challenge
|
|
// specified by |auth_info|, and is unable to respond using cached
|
|
// credentials. |callback| and |credentials| must be non-NULL.
|
|
//
|
|
// The following return values are allowed:
|
|
// - AUTH_REQUIRED_RESPONSE_NO_ACTION: |auth_info| is observed, but
|
|
// no action is being taken on it.
|
|
// - AUTH_REQUIRED_RESPONSE_SET_AUTH: |credentials| is filled in with
|
|
// a username and password, which should be used in a response to
|
|
// |auth_info|.
|
|
// - AUTH_REQUIRED_RESPONSE_CANCEL_AUTH: The authentication challenge
|
|
// should not be attempted.
|
|
// - AUTH_REQUIRED_RESPONSE_IO_PENDING: The action will be decided
|
|
// asynchronously. |callback| will be invoked when the decision is made,
|
|
// and one of the other AuthRequiredResponse values will be passed in with
|
|
// the same semantics as described above. Note, however, that a pending
|
|
// operation may be cancelled by OnURLRequestDestroyed. Once cancelled,
|
|
// |request|, |auth_info|, and |credentials| become invalid and |callback|
|
|
// may not be called.
|
|
virtual AuthRequiredResponse OnAuthRequired(
|
|
URLRequest* request,
|
|
const AuthChallengeInfo& auth_info,
|
|
AuthCallback callback,
|
|
AuthCredentials* credentials) = 0;
|
|
|
|
// Called when reading cookies to allow the network delegate to block access
|
|
// to the cookie. This method will never be invoked when
|
|
// LOAD_DO_NOT_SEND_COOKIES is specified.
|
|
virtual bool OnCanGetCookies(const URLRequest& request,
|
|
const CookieList& cookie_list) = 0;
|
|
|
|
// Called when a cookie is set to allow the network delegate to block access
|
|
// to the cookie. This method will never be invoked when
|
|
// LOAD_DO_NOT_SAVE_COOKIES is specified.
|
|
virtual bool OnCanSetCookie(const URLRequest& request,
|
|
const net::CanonicalCookie& cookie,
|
|
CookieOptions* options) = 0;
|
|
|
|
// Called when a file access is attempted to allow the network delegate to
|
|
// allow or block access to the given file path, provided in the original
|
|
// and absolute forms (i.e. symbolic link is resolved). It's up to
|
|
// subclasses of NetworkDelegate to decide which path to use for
|
|
// checking. Returns true if access is allowed.
|
|
virtual bool OnCanAccessFile(const URLRequest& request,
|
|
const base::FilePath& original_path,
|
|
const base::FilePath& absolute_path) const = 0;
|
|
|
|
// Returns true if the given |url| has to be requested over connection that
|
|
// is not tracked by the server. Usually is false, unless user privacy
|
|
// settings block cookies from being get or set.
|
|
virtual bool OnCanEnablePrivacyMode(const GURL& url,
|
|
const GURL& site_for_cookies) const = 0;
|
|
|
|
// Returns true if the embedder has enabled the experimental features, and
|
|
// false otherwise.
|
|
virtual bool OnAreExperimentalCookieFeaturesEnabled() const = 0;
|
|
|
|
// Called when the |referrer_url| for requesting |target_url| during handling
|
|
// of the |request| is does not comply with the referrer policy (e.g. a
|
|
// secure referrer for an insecure initial target).
|
|
// Returns true if the request should be cancelled. Otherwise, the referrer
|
|
// header is stripped from the request.
|
|
virtual bool OnCancelURLRequestWithPolicyViolatingReferrerHeader(
|
|
const URLRequest& request,
|
|
const GURL& target_url,
|
|
const GURL& referrer_url) const = 0;
|
|
|
|
virtual bool OnCanQueueReportingReport(const url::Origin& origin) const = 0;
|
|
|
|
virtual void OnCanSendReportingReports(
|
|
std::set<url::Origin> origins,
|
|
base::OnceCallback<void(std::set<url::Origin>)> result_callback)
|
|
const = 0;
|
|
|
|
virtual bool OnCanSetReportingClient(const url::Origin& origin,
|
|
const GURL& endpoint) const = 0;
|
|
|
|
virtual bool OnCanUseReportingClient(const url::Origin& origin,
|
|
const GURL& endpoint) const = 0;
|
|
};
|
|
|
|
} // namespace net
|
|
|
|
#endif // NET_BASE_NETWORK_DELEGATE_H_
|