Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(676)

Side by Side Diff: net/quic/quic_server.h

Issue 340433002: Port QuicServer to Chrome network stack (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Indentation fix Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // A toy server, which listens on a specified address for QUIC traffic and 5 // A toy server, which listens on a specified address for QUIC traffic and
6 // handles incoming responses. 6 // handles incoming responses.
7 7
8 #ifndef NET_TOOLS_QUIC_QUIC_SERVER_H_ 8 #ifndef NET_QUIC_QUIC_SERVER_H_
9 #define NET_TOOLS_QUIC_QUIC_SERVER_H_ 9 #define NET_QUIC_QUIC_SERVER_H_
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "net/base/io_buffer.h"
13 #include "net/base/ip_endpoint.h" 14 #include "net/base/ip_endpoint.h"
15 #include "net/base/net_log.h"
14 #include "net/quic/crypto/quic_crypto_server_config.h" 16 #include "net/quic/crypto/quic_crypto_server_config.h"
17 #include "net/quic/quic_clock.h"
15 #include "net/quic/quic_config.h" 18 #include "net/quic/quic_config.h"
16 #include "net/quic/quic_framer.h" 19 #include "net/quic/quic_connection_helper.h"
17 #include "net/tools/epoll_server/epoll_server.h"
18 #include "net/tools/quic/quic_dispatcher.h"
19 20
20 namespace net { 21 namespace net {
21 22
22 namespace tools {
23 23
24 namespace test { 24 namespace test {
25 class QuicServerPeer; 25 class QuicServerPeer;
26 } // namespace test 26 } // namespace test
27 27
28 class QuicConnectionHelperInterface;
28 class QuicDispatcher; 29 class QuicDispatcher;
30 class UDPServerSocket;
29 31
30 class QuicServer : public EpollCallbackInterface { 32 class QuicServer {
31 public: 33 public:
32 QuicServer();
33 QuicServer(const QuicConfig& config, 34 QuicServer(const QuicConfig& config,
34 const QuicVersionVector& supported_versions); 35 const QuicVersionVector& supported_versions);
35 36
36 virtual ~QuicServer(); 37 virtual ~QuicServer();
37 38
38 // Start listening on the specified address. 39 // Start listening on the specified address. Returns an error code.
39 bool Listen(const IPEndPoint& address); 40 int Listen(const IPEndPoint& address);
40 41
41 // Wait up to 50ms, and handle any events which occur. 42 // Server deletion is imminent. Start cleaning up.
42 void WaitForEvents();
43
44 // Server deletion is imminent. Start cleaning up the epoll server.
45 void Shutdown(); 43 void Shutdown();
46 44
47 // From EpollCallbackInterface 45 // Start reading on the socket. On asynchronous reads, this registers
48 virtual void OnRegistration(EpollServer* eps, 46 // OnReadComplete as the callback, which will then call StartReading again.
49 int fd, 47 void StartReading();
50 int event_mask) OVERRIDE {}
51 virtual void OnModification(int fd, int event_mask) OVERRIDE {}
52 virtual void OnEvent(int fd, EpollEvent* event) OVERRIDE;
53 virtual void OnUnregistration(int fd, bool replaced) OVERRIDE {}
54 48
55 // Reads a packet from the given fd, and then passes it off to 49 // Called on reads that complete asynchronously. Dispatches the packet and
56 // the QuicDispatcher. Returns true if a packet is read, false 50 // continues the read loop.
57 // otherwise. 51 void OnReadComplete(int result);
58 // If packets_dropped is non-null, the socket is configured to track
59 // dropped packets, and some packets are read, it will be set to the number of
60 // dropped packets.
61 static bool ReadAndDispatchSinglePacket(int fd, int port,
62 QuicDispatcher* dispatcher,
63 uint32* packets_dropped);
64
65 virtual void OnShutdown(EpollServer* eps, int fd) OVERRIDE {}
66 52
67 void SetStrikeRegisterNoStartupPeriod() { 53 void SetStrikeRegisterNoStartupPeriod() {
68 crypto_config_.set_strike_register_no_startup_period(); 54 crypto_config_.set_strike_register_no_startup_period();
69 } 55 }
70 56
71 // SetProofSource sets the ProofSource that will be used to verify the 57 // SetProofSource sets the ProofSource that will be used to verify the
72 // server's certificate, and takes ownership of |source|. 58 // server's certificate, and takes ownership of |source|.
73 void SetProofSource(ProofSource* source) { 59 void SetProofSource(ProofSource* source) {
74 crypto_config_.SetProofSource(source); 60 crypto_config_.SetProofSource(source);
75 } 61 }
76 62
77 bool overflow_supported() { return overflow_supported_; }
78
79 uint32 packets_dropped() { return packets_dropped_; }
80
81 int port() { return port_; }
82
83 protected:
84 virtual QuicDispatcher* CreateQuicDispatcher();
85
86 const QuicConfig& config() const { return config_; }
87 const QuicCryptoServerConfig& crypto_config() const {
88 return crypto_config_;
89 }
90 const QuicVersionVector& supported_versions() const {
91 return supported_versions_;
92 }
93 EpollServer* epoll_server() { return &epoll_server_; }
94
95 private: 63 private:
96 friend class net::tools::test::QuicServerPeer; 64 friend class net::test::QuicServerPeer;
97 65
98 // Initialize the internal state of the server. 66 // Initialize the internal state of the server.
99 void Initialize(); 67 void Initialize();
100 68
101 // Accepts data from the framer and demuxes clients to sessions. 69 // Accepts data from the framer and demuxes clients to sessions.
102 scoped_ptr<QuicDispatcher> dispatcher_; 70 scoped_ptr<QuicDispatcher> dispatcher_;
103 // Frames incoming packets and hands them to the dispatcher.
104 EpollServer epoll_server_;
105 71
106 // The port the server is listening on. 72 // Used by the helper_ to time alarms.
107 int port_; 73 QuicClock clock_;
108 74
109 // Listening connection. Also used for outbound client communication. 75 // Used to manage the message loop.
110 int fd_; 76 QuicConnectionHelper helper_;
111 77
112 // If overflow_supported_ is true this will be the number of packets dropped 78 // Listening socket. Also used for outbound client communication.
113 // during the lifetime of the server. This may overflow if enough packets 79 scoped_ptr<UDPServerSocket> socket_;
114 // are dropped.
115 uint32 packets_dropped_;
116
117 // True if the kernel supports SO_RXQ_OVFL, the number of packets dropped
118 // because the socket would otherwise overflow.
119 bool overflow_supported_;
120
121 // If true, use recvmmsg for reading.
122 bool use_recvmmsg_;
123 80
124 // config_ contains non-crypto parameters that are negotiated in the crypto 81 // config_ contains non-crypto parameters that are negotiated in the crypto
125 // handshake. 82 // handshake.
126 QuicConfig config_; 83 QuicConfig config_;
127 // crypto_config_ contains crypto parameters for the handshake. 84 // crypto_config_ contains crypto parameters for the handshake.
128 QuicCryptoServerConfig crypto_config_; 85 QuicCryptoServerConfig crypto_config_;
129 86
130 // This vector contains QUIC versions which we currently support. 87 // This vector contains QUIC versions which we currently support.
131 // This should be ordered such that the highest supported version is the first 88 // This should be ordered such that the highest supported version is the first
132 // element, with subsequent elements in descending order (versions can be 89 // element, with subsequent elements in descending order (versions can be
133 // skipped as necessary). 90 // skipped as necessary).
134 QuicVersionVector supported_versions_; 91 QuicVersionVector supported_versions_;
135 92
136 // Size of flow control receive window to advertise to clients on new 93 // The address that the server listens on.
137 // connections. 94 IPEndPoint server_address_;
138 uint32 server_initial_flow_control_receive_window_; 95
96 // Keeps track of whether a read is currently in flight, after which
97 // OnReadComplete will be called.
98 bool read_pending_;
99
100 // The number of iterations of the read loop that have completed synchronously
101 // and without posting a new task to the message loop.
102 int synchronous_read_count_;
103
104 // The target buffer of the current read.
105 scoped_refptr<IOBufferWithSize> read_buffer_;
106
107 // The source address of the current read.
108 IPEndPoint client_address_;
109
110 // The log to use for the socket.
111 NetLog net_log_;
112
113 base::WeakPtrFactory<QuicServer> weak_factory_;
139 114
140 DISALLOW_COPY_AND_ASSIGN(QuicServer); 115 DISALLOW_COPY_AND_ASSIGN(QuicServer);
141 }; 116 };
142 117
143 } // namespace tools
144 } // namespace net 118 } // namespace net
145 119
146 #endif // NET_TOOLS_QUIC_QUIC_SERVER_H_ 120 #endif // NET_QUIC_QUIC_SERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698