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

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: Address further comments 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"
14 #include "net/quic/crypto/quic_crypto_server_config.h" 15 #include "net/quic/crypto/quic_crypto_server_config.h"
16 #include "net/quic/quic_clock.h"
15 #include "net/quic/quic_config.h" 17 #include "net/quic/quic_config.h"
16 #include "net/quic/quic_framer.h"
17 #include "net/tools/epoll_server/epoll_server.h"
18 #include "net/tools/quic/quic_dispatcher.h"
19 18
20 namespace net { 19 namespace net {
21 20
22 namespace tools {
23 21
24 namespace test { 22 namespace test {
25 class QuicServerPeer; 23 class QuicServerPeer;
26 } // namespace test 24 } // namespace test
27 25
26 class QuicConnectionHelperInterface;
28 class QuicDispatcher; 27 class QuicDispatcher;
28 class UDPServerSocket;
29 29
30 class QuicServer : public EpollCallbackInterface { 30 class NET_EXPORT_PRIVATE QuicServer {
31 public: 31 public:
32 QuicServer();
33 QuicServer(const QuicConfig& config, 32 QuicServer(const QuicConfig& config,
34 const QuicVersionVector& supported_versions); 33 const QuicVersionVector& supported_versions);
wtc 2014/06/20 21:40:49 Why did you delete the default QuicServer construc
dmziegler 2014/06/23 18:31:24 Oh, I believe I did that back when the constructor
35 34
36 virtual ~QuicServer(); 35 virtual ~QuicServer();
37 36
38 // Start listening on the specified address. 37 // Start listening on the specified address. Returns an error code.
39 bool Listen(const IPEndPoint& address); 38 int Listen(const IPEndPoint& address);
40 39
41 // Wait up to 50ms, and handle any events which occur. 40 // 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(); 41 void Shutdown();
46 42
47 // From EpollCallbackInterface 43 // Start reading on the socket. On asynchronous reads, this registers
48 virtual void OnRegistration(EpollServer* eps, 44 // OnReadComplete as the callback, which will then call StartReading again.
49 int fd, 45 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 46
55 // Reads a packet from the given fd, and then passes it off to 47 // Called on reads that complete asynchronously. Dispatches the packet and
56 // the QuicDispatcher. Returns true if a packet is read, false 48 // continues the read loop.
57 // otherwise. 49 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 50
67 void SetStrikeRegisterNoStartupPeriod() { 51 void SetStrikeRegisterNoStartupPeriod() {
68 crypto_config_.set_strike_register_no_startup_period(); 52 crypto_config_.set_strike_register_no_startup_period();
69 } 53 }
70 54
71 // SetProofSource sets the ProofSource that will be used to verify the 55 // SetProofSource sets the ProofSource that will be used to verify the
72 // server's certificate, and takes ownership of |source|. 56 // server's certificate, and takes ownership of |source|.
73 void SetProofSource(ProofSource* source) { 57 void SetProofSource(ProofSource* source) {
74 crypto_config_.SetProofSource(source); 58 crypto_config_.SetProofSource(source);
75 } 59 }
76 60
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: 61 private:
96 friend class net::tools::test::QuicServerPeer; 62 friend class net::test::QuicServerPeer;
97 63
98 // Initialize the internal state of the server. 64 // Initialize the internal state of the server.
99 void Initialize(); 65 void Initialize();
100 66
101 // Accepts data from the framer and demuxes clients to sessions. 67 // Accepts data from the framer and demuxes clients to sessions.
102 scoped_ptr<QuicDispatcher> dispatcher_; 68 scoped_ptr<QuicDispatcher> dispatcher_;
103 // Frames incoming packets and hands them to the dispatcher.
104 EpollServer epoll_server_;
105 69
106 // The port the server is listening on. 70 // Used by the helper_ to time alarms.
107 int port_; 71 QuicClock clock_;
108 72
109 // Listening connection. Also used for outbound client communication. 73 // Used to manage the message loop.
110 int fd_; 74 QuicConnectionHelperInterface* helper_;
111 75
112 // If overflow_supported_ is true this will be the number of packets dropped 76 // Listening socket. Also used for outbound client communication.
113 // during the lifetime of the server. This may overflow if enough packets 77 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 78
124 // config_ contains non-crypto parameters that are negotiated in the crypto 79 // config_ contains non-crypto parameters that are negotiated in the crypto
125 // handshake. 80 // handshake.
126 QuicConfig config_; 81 QuicConfig config_;
127 // crypto_config_ contains crypto parameters for the handshake. 82 // crypto_config_ contains crypto parameters for the handshake.
128 QuicCryptoServerConfig crypto_config_; 83 QuicCryptoServerConfig crypto_config_;
129 84
130 // This vector contains QUIC versions which we currently support. 85 // This vector contains QUIC versions which we currently support.
131 // This should be ordered such that the highest supported version is the first 86 // This should be ordered such that the highest supported version is the first
132 // element, with subsequent elements in descending order (versions can be 87 // element, with subsequent elements in descending order (versions can be
133 // skipped as necessary). 88 // skipped as necessary).
134 QuicVersionVector supported_versions_; 89 QuicVersionVector supported_versions_;
135 90
136 // Size of flow control receive window to advertise to clients on new 91 // The address that the server listens on.
137 // connections. 92 IPEndPoint server_address_;
138 uint32 server_initial_flow_control_receive_window_; 93
94 // Keeps track of whether a read is currently in flight, after which
95 // OnReadComplete will be called.
96 bool read_pending_;
97
98 // The number of iterations of the read loop that have completed synchronously
99 // and without posting a new task to the message loop.
100 int synchronous_read_count_;
101
102 // The target buffer of the current read.
103 scoped_refptr<IOBufferWithSize> read_buffer_;
104
105 // The source address of the current read.
106 IPEndPoint read_addr_;
wtc 2014/06/20 21:40:49 Name this member client_address_ or source_address
dmziegler 2014/06/23 18:31:24 Done.
107
108 base::WeakPtrFactory<QuicServer> weak_factory_;
139 109
140 DISALLOW_COPY_AND_ASSIGN(QuicServer); 110 DISALLOW_COPY_AND_ASSIGN(QuicServer);
141 }; 111 };
142 112
143 } // namespace tools
144 } // namespace net 113 } // namespace net
145 114
146 #endif // NET_TOOLS_QUIC_QUIC_SERVER_H_ 115 #endif // NET_QUIC_QUIC_SERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698