// Copyright (c) 2010 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_HTTP_HTTP_PROXY_CLIENT_SOCKET_POOL_H_ #define NET_HTTP_HTTP_PROXY_CLIENT_SOCKET_POOL_H_ #pragma once #include #include "base/basictypes.h" #include "base/ref_counted.h" #include "base/scoped_ptr.h" #include "base/time.h" #include "net/base/host_port_pair.h" #include "net/http/http_auth.h" #include "net/socket/client_socket_pool_base.h" #include "net/socket/client_socket_pool_histograms.h" #include "net/socket/client_socket_pool.h" namespace net { class HostResolver; class HttpNetworkSession; class SSLClientSocketPool; class SSLSocketParams; class TCPClientSocketPool; class TCPSocketParams; // HttpProxySocketParams only needs the socket params for one of the proxy // types. The other param must be NULL. When using an HTTP Proxy, // |tcp_params| must be set. When using an HTTPS Proxy, |ssl_params| // must be set. class HttpProxySocketParams : public base::RefCounted { public: HttpProxySocketParams(const scoped_refptr& tcp_params, const scoped_refptr& ssl_params, const GURL& request_url, const std::string& user_agent, HostPortPair endpoint, scoped_refptr session, bool tunnel); const scoped_refptr& tcp_params() const { return tcp_params_; } const scoped_refptr& ssl_params() const { return ssl_params_; } const GURL& request_url() const { return request_url_; } const std::string& user_agent() const { return user_agent_; } const HostPortPair& endpoint() const { return endpoint_; } const scoped_refptr& session() { return session_; } const HostResolver::RequestInfo& destination() const; bool tunnel() const { return tunnel_; } private: friend class base::RefCounted; ~HttpProxySocketParams(); const scoped_refptr tcp_params_; const scoped_refptr ssl_params_; const GURL request_url_; const std::string user_agent_; const HostPortPair endpoint_; const scoped_refptr session_; const bool tunnel_; DISALLOW_COPY_AND_ASSIGN(HttpProxySocketParams); }; // HttpProxyConnectJob optionally establishes a tunnel through the proxy // server after connecting the underlying transport socket. class HttpProxyConnectJob : public ConnectJob { public: HttpProxyConnectJob(const std::string& group_name, const scoped_refptr& params, const base::TimeDelta& timeout_duration, const scoped_refptr& tcp_pool, const scoped_refptr& ssl_pool, const scoped_refptr &host_resolver, Delegate* delegate, NetLog* net_log); virtual ~HttpProxyConnectJob(); // ConnectJob methods. virtual LoadState GetLoadState() const; private: enum State { kStateTCPConnect, kStateTCPConnectComplete, kStateSSLConnect, kStateSSLConnectComplete, kStateHttpProxyConnect, kStateHttpProxyConnectComplete, kStateNone, }; // Begins the tcp connection and the optional Http proxy tunnel. If the // request is not immediately servicable (likely), the request will return // ERR_IO_PENDING. An OK return from this function or the callback means // that the connection is established; ERR_PROXY_AUTH_REQUESTED means // that the tunnel needs authentication credentials, the socket will be // returned in this case, and must be release back to the pool; or // a standard net error code will be returned. virtual int ConnectInternal(); void OnIOComplete(int result); // Runs the state transition loop. int DoLoop(int result); // Connecting to HTTP Proxy int DoTCPConnect(); int DoTCPConnectComplete(int result); // Connecting to HTTPS Proxy int DoSSLConnect(); int DoSSLConnectComplete(int result); int DoHttpProxyConnect(); int DoHttpProxyConnectComplete(int result); scoped_refptr params_; const scoped_refptr tcp_pool_; const scoped_refptr ssl_pool_; const scoped_refptr resolver_; State next_state_; CompletionCallbackImpl callback_; scoped_ptr transport_socket_handle_; scoped_ptr transport_socket_; DISALLOW_COPY_AND_ASSIGN(HttpProxyConnectJob); }; class HttpProxyClientSocketPool : public ClientSocketPool { public: HttpProxyClientSocketPool( int max_sockets, int max_sockets_per_group, const scoped_refptr& histograms, const scoped_refptr& host_resolver, const scoped_refptr& tcp_pool, const scoped_refptr& ssl_pool, NetLog* net_log); // ClientSocketPool methods: virtual int RequestSocket(const std::string& group_name, const void* connect_params, RequestPriority priority, ClientSocketHandle* handle, CompletionCallback* callback, const BoundNetLog& net_log); virtual void CancelRequest(const std::string& group_name, ClientSocketHandle* handle); virtual void ReleaseSocket(const std::string& group_name, ClientSocket* socket, int id); virtual void Flush(); virtual void CloseIdleSockets(); virtual int IdleSocketCount() const { return base_.idle_socket_count(); } virtual int IdleSocketCountInGroup(const std::string& group_name) const; virtual LoadState GetLoadState(const std::string& group_name, const ClientSocketHandle* handle) const; virtual Value* GetInfoAsValue(const std::string& name, const std::string& type) const { return base_.GetInfoAsValue(name, type); } virtual base::TimeDelta ConnectionTimeout() const { return base_.ConnectionTimeout(); } virtual scoped_refptr histograms() const { return base_.histograms(); }; protected: virtual ~HttpProxyClientSocketPool(); private: typedef ClientSocketPoolBase PoolBase; class HttpProxyConnectJobFactory : public PoolBase::ConnectJobFactory { public: HttpProxyConnectJobFactory( const scoped_refptr& tcp_pool, const scoped_refptr& ssl_pool, HostResolver* host_resolver, NetLog* net_log); // ClientSocketPoolBase::ConnectJobFactory methods. virtual ConnectJob* NewConnectJob(const std::string& group_name, const PoolBase::Request& request, ConnectJob::Delegate* delegate) const; virtual base::TimeDelta ConnectionTimeout() const { return timeout_; } private: const scoped_refptr tcp_pool_; const scoped_refptr ssl_pool_; const scoped_refptr host_resolver_; NetLog* net_log_; base::TimeDelta timeout_; DISALLOW_COPY_AND_ASSIGN(HttpProxyConnectJobFactory); }; PoolBase base_; DISALLOW_COPY_AND_ASSIGN(HttpProxyClientSocketPool); }; REGISTER_SOCKET_PARAMS_FOR_POOL(HttpProxyClientSocketPool, HttpProxySocketParams); } // namespace net #endif // NET_HTTP_HTTP_PROXY_CLIENT_SOCKET_POOL_H_