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
3 // found in the LICENSE file.
5 // A server side dispatcher which dispatches a given client's data to their
8 #ifndef NET_TOOLS_QUIC_QUIC_DISPATCHER_H_
9 #define NET_TOOLS_QUIC_QUIC_DISPATCHER_H_
13 #include "base/basictypes.h"
14 #include "base/containers/hash_tables.h"
15 #include "base/memory/scoped_ptr.h"
16 #include "net/base/ip_endpoint.h"
17 #include "net/base/linked_hash_map.h"
18 #include "net/quic/quic_blocked_writer_interface.h"
19 #include "net/quic/quic_protocol.h"
20 #include "net/tools/quic/quic_server_session.h"
21 #include "net/tools/quic/quic_time_wait_list_manager.h"
27 class QuicCryptoServerConfig
;
32 class DeleteSessionsAlarm
;
33 class QuicEpollConnectionHelper
;
34 class QuicPacketWriterWrapper
;
37 class QuicDispatcherPeer
;
40 class ProcessPacketInterface
{
42 virtual ~ProcessPacketInterface() {}
43 virtual void ProcessPacket(const IPEndPoint
& server_address
,
44 const IPEndPoint
& client_address
,
45 const QuicEncryptedPacket
& packet
) = 0;
48 class QuicDispatcher
: public QuicServerSessionVisitor
,
49 public ProcessPacketInterface
{
51 // Creates per-connection packet writers out of the QuicDispatcher's shared
52 // QuicPacketWriter. The per-connection writers' IsWriteBlocked() state must
53 // always be the same as the shared writer's IsWriteBlocked(), or else the
54 // QuicDispatcher::OnCanWrite logic will not work. (This will hopefully be
55 // cleaned up for bug 16950226.)
56 class PacketWriterFactory
{
58 virtual ~PacketWriterFactory() {}
60 virtual QuicPacketWriter
* Create(QuicPacketWriter
* writer
,
61 QuicConnection
* connection
) = 0;
64 // Creates ordinary QuicPerConnectionPacketWriter instances.
65 class DefaultPacketWriterFactory
: public PacketWriterFactory
{
67 virtual ~DefaultPacketWriterFactory() {}
69 virtual QuicPacketWriter
* Create(
70 QuicPacketWriter
* writer
,
71 QuicConnection
* connection
) override
;
74 // Ideally we'd have a linked_hash_set: the boolean is unused.
75 typedef linked_hash_map
<QuicBlockedWriterInterface
*, bool> WriteBlockedList
;
77 // Due to the way delete_sessions_closure_ is registered, the Dispatcher must
78 // live until epoll_server Shutdown. |supported_versions| specifies the list
79 // of supported QUIC versions. Takes ownership of |packet_writer_factory|,
80 // which is used to create per-connection writers.
81 QuicDispatcher(const QuicConfig
& config
,
82 const QuicCryptoServerConfig
& crypto_config
,
83 const QuicVersionVector
& supported_versions
,
84 PacketWriterFactory
* packet_writer_factory
,
85 EpollServer
* epoll_server
);
87 virtual ~QuicDispatcher();
89 virtual void Initialize(int fd
);
91 // Process the incoming packet by creating a new session, passing it to
92 // an existing session, or passing it to the TimeWaitListManager.
93 virtual void ProcessPacket(const IPEndPoint
& server_address
,
94 const IPEndPoint
& client_address
,
95 const QuicEncryptedPacket
& packet
) override
;
97 // Called when the socket becomes writable to allow queued writes to happen.
98 virtual void OnCanWrite();
100 // Returns true if there's anything in the blocked writer list.
101 virtual bool HasPendingWrites() const;
103 // Sends ConnectionClose frames to all connected clients.
106 // QuicServerSessionVisitor interface implementation:
107 // Ensure that the closed connection is cleaned up asynchronously.
108 virtual void OnConnectionClosed(QuicConnectionId connection_id
,
109 QuicErrorCode error
) override
;
111 // Queues the blocked writer for later resumption.
112 virtual void OnWriteBlocked(
113 QuicBlockedWriterInterface
* blocked_writer
) override
;
115 typedef base::hash_map
<QuicConnectionId
, QuicSession
*> SessionMap
;
117 // Deletes all sessions on the closed session list and clears the list.
118 void DeleteSessions();
120 const SessionMap
& session_map() const { return session_map_
; }
123 // Instantiates a new low-level packet writer. Caller takes ownership of the
125 virtual QuicPacketWriter
* CreateWriter(int fd
);
127 virtual QuicSession
* CreateQuicSession(QuicConnectionId connection_id
,
128 const IPEndPoint
& server_address
,
129 const IPEndPoint
& client_address
);
131 virtual QuicConnection
* CreateQuicConnection(
132 QuicConnectionId connection_id
,
133 const IPEndPoint
& server_address
,
134 const IPEndPoint
& client_address
);
136 // Called by |framer_visitor_| when the public header has been parsed.
137 virtual bool OnUnauthenticatedPublicHeader(
138 const QuicPacketPublicHeader
& header
);
140 // Create and return the time wait list manager for this dispatcher, which
141 // will be owned by the dispatcher as time_wait_list_manager_
142 virtual QuicTimeWaitListManager
* CreateQuicTimeWaitListManager();
144 // Replaces the packet writer with |writer|. Takes ownership of |writer|.
145 void set_writer(QuicPacketWriter
* writer
) {
146 writer_
.reset(writer
);
149 QuicTimeWaitListManager
* time_wait_list_manager() {
150 return time_wait_list_manager_
.get();
153 EpollServer
* epoll_server() { return epoll_server_
; }
155 const QuicVersionVector
& supported_versions() const {
156 return supported_versions_
;
159 const IPEndPoint
& current_server_address() {
160 return current_server_address_
;
162 const IPEndPoint
& current_client_address() {
163 return current_client_address_
;
165 const QuicEncryptedPacket
& current_packet() {
166 return *current_packet_
;
169 const QuicConfig
& config() const { return config_
; }
171 const QuicCryptoServerConfig
& crypto_config() const { return crypto_config_
; }
173 QuicFramer
* framer() { return &framer_
; }
175 QuicEpollConnectionHelper
* helper() { return helper_
.get(); }
177 QuicPacketWriter
* writer() { return writer_
.get(); }
179 const QuicConnection::PacketWriterFactory
& connection_writer_factory() {
180 return connection_writer_factory_
;
184 class QuicFramerVisitor
;
185 friend class net::tools::test::QuicDispatcherPeer
;
187 // An adapter that creates packet writers using the dispatcher's
188 // PacketWriterFactory and shared writer. Essentially, it just curries the
189 // writer argument away from QuicDispatcher::PacketWriterFactory.
190 class PacketWriterFactoryAdapter
:
191 public QuicConnection::PacketWriterFactory
{
193 PacketWriterFactoryAdapter(QuicDispatcher
* dispatcher
);
194 virtual ~PacketWriterFactoryAdapter ();
196 virtual QuicPacketWriter
* Create(QuicConnection
* connection
) const override
;
199 QuicDispatcher
* dispatcher_
;
202 // Called by |framer_visitor_| when the private header has been parsed
203 // of a data packet that is destined for the time wait manager.
204 void OnUnauthenticatedHeader(const QuicPacketHeader
& header
);
206 // Removes the session from the session map and write blocked list, and
207 // adds the ConnectionId to the time-wait list.
208 void CleanUpSession(SessionMap::iterator it
);
210 bool HandlePacketForTimeWait(const QuicPacketPublicHeader
& header
);
212 const QuicConfig
& config_
;
214 const QuicCryptoServerConfig
& crypto_config_
;
216 // The list of connections waiting to write.
217 WriteBlockedList write_blocked_list_
;
219 SessionMap session_map_
;
221 // Entity that manages connection_ids in time wait state.
222 scoped_ptr
<QuicTimeWaitListManager
> time_wait_list_manager_
;
224 // An alarm which deletes closed sessions.
225 scoped_ptr
<DeleteSessionsAlarm
> delete_sessions_alarm_
;
227 // The list of closed but not-yet-deleted sessions.
228 std::list
<QuicSession
*> closed_session_list_
;
230 EpollServer
* epoll_server_
; // Owned by the server.
232 // The helper used for all connections.
233 scoped_ptr
<QuicEpollConnectionHelper
> helper_
;
235 // The writer to write to the socket with.
236 scoped_ptr
<QuicPacketWriter
> writer_
;
238 // Used to create per-connection packet writers, not |writer_| itself.
239 scoped_ptr
<PacketWriterFactory
> packet_writer_factory_
;
241 // Passed in to QuicConnection for it to create the per-connection writers
242 PacketWriterFactoryAdapter connection_writer_factory_
;
244 // This vector contains QUIC versions which we currently support.
245 // This should be ordered such that the highest supported version is the first
246 // element, with subsequent elements in descending order (versions can be
247 // skipped as necessary).
248 const QuicVersionVector supported_versions_
;
250 // Information about the packet currently being handled.
251 IPEndPoint current_client_address_
;
252 IPEndPoint current_server_address_
;
253 const QuicEncryptedPacket
* current_packet_
;
256 scoped_ptr
<QuicFramerVisitor
> framer_visitor_
;
258 DISALLOW_COPY_AND_ASSIGN(QuicDispatcher
);
264 #endif // NET_TOOLS_QUIC_QUIC_DISPATCHER_H_