// Copyright 2018 The Chromium Authors. All rights reserved. // Copyright 2018 klzgrad . 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_TOOLS_NAIVE_NAIVE_CONNECTION_H_ #define NET_TOOLS_NAIVE_NAIVE_CONNECTION_H_ #include #include #include "base/macros.h" #include "base/memory/scoped_refptr.h" #include "base/memory/weak_ptr.h" #include "base/time/time.h" #include "net/base/completion_once_callback.h" #include "net/base/completion_repeating_callback.h" #include "net/tools/naive/naive_protocol.h" #include "net/tools/naive/naive_proxy_delegate.h" namespace net { class ClientSocketHandle; class DrainableIOBuffer; class HttpNetworkSession; class IOBuffer; class NetLogWithSource; class ProxyInfo; class StreamSocket; struct NetworkTrafficAnnotationTag; struct SSLConfig; class RedirectResolver; class NetworkIsolationKey; class NaiveConnection { public: using TimeFunc = base::TimeTicks (*)(); NaiveConnection( unsigned int id, ClientProtocol protocol, std::unique_ptr padding_detector_delegate, const ProxyInfo& proxy_info, const SSLConfig& server_ssl_config, const SSLConfig& proxy_ssl_config, RedirectResolver* resolver, HttpNetworkSession* session, const NetworkIsolationKey& network_isolation_key, const NetLogWithSource& net_log, std::unique_ptr accepted_socket, const NetworkTrafficAnnotationTag& traffic_annotation); ~NaiveConnection(); unsigned int id() const { return id_; } int Connect(CompletionOnceCallback callback); void Disconnect(); int Run(CompletionOnceCallback callback); private: enum State { STATE_CONNECT_CLIENT, STATE_CONNECT_CLIENT_COMPLETE, STATE_CONNECT_SERVER, STATE_CONNECT_SERVER_COMPLETE, STATE_NONE, }; enum PaddingState { STATE_READ_PAYLOAD_LENGTH_1, STATE_READ_PAYLOAD_LENGTH_2, STATE_READ_PADDING_LENGTH, STATE_READ_PAYLOAD, STATE_READ_PADDING, }; void DoCallback(int result); void OnIOComplete(int result); int DoLoop(int last_io_result); int DoConnectClient(); int DoConnectClientComplete(int result); int DoConnectServer(); int DoConnectServerComplete(int result); void Pull(Direction from, Direction to); void Push(Direction from, Direction to, int size); void Disconnect(Direction side); bool IsConnected(Direction side); void OnBothDisconnected(); void OnPullError(Direction from, Direction to, int error); void OnPushError(Direction from, Direction to, int error); void OnPullComplete(Direction from, Direction to, int result); void OnPushComplete(Direction from, Direction to, int result); unsigned int id_; ClientProtocol protocol_; std::unique_ptr padding_detector_delegate_; const ProxyInfo& proxy_info_; const SSLConfig& server_ssl_config_; const SSLConfig& proxy_ssl_config_; RedirectResolver* resolver_; HttpNetworkSession* session_; const NetworkIsolationKey& network_isolation_key_; const NetLogWithSource& net_log_; CompletionRepeatingCallback io_callback_; CompletionOnceCallback connect_callback_; CompletionOnceCallback run_callback_; State next_state_; std::unique_ptr client_socket_; std::unique_ptr server_socket_handle_; StreamSocket* sockets_[kNumDirections]; scoped_refptr read_buffers_[kNumDirections]; scoped_refptr write_buffers_[kNumDirections]; int errors_[kNumDirections]; bool write_pending_[kNumDirections]; int bytes_passed_without_yielding_[kNumDirections]; base::TimeTicks yield_after_time_[kNumDirections]; bool early_pull_pending_; bool can_push_to_server_; int early_pull_result_; int num_paddings_[kNumDirections]; PaddingState read_padding_state_; int payload_length_; int padding_length_; bool full_duplex_; TimeFunc time_func_; // Traffic annotation for socket control. const NetworkTrafficAnnotationTag& traffic_annotation_; base::WeakPtrFactory weak_ptr_factory_{this}; DISALLOW_COPY_AND_ASSIGN(NaiveConnection); }; } // namespace net #endif // NET_TOOLS_NAIVE_NAIVE_CONNECTION_H_