blob: 368219e031a5d8fca0fc050dfe329764e74444ef [file] [log] [blame]
dschinazi22e23c72019-12-17 17:16:15 -08001// Copyright 2019 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.
4
5#ifndef QUICHE_QUIC_MASQUE_MASQUE_DISPATCHER_H_
6#define QUICHE_QUIC_MASQUE_MASQUE_DISPATCHER_H_
7
vasilvv45a59fe2021-02-02 12:07:25 -08008#include "absl/container/flat_hash_map.h"
QUICHE team5be974e2020-12-29 18:35:24 -05009#include "quic/masque/masque_server_backend.h"
10#include "quic/masque/masque_server_session.h"
dschinazida88cd12021-02-25 11:44:05 -080011#include "quic/masque/masque_utils.h"
12#include "quic/platform/api/quic_epoll.h"
QUICHE team5be974e2020-12-29 18:35:24 -050013#include "quic/platform/api/quic_export.h"
14#include "quic/tools/quic_simple_dispatcher.h"
dschinazi22e23c72019-12-17 17:16:15 -080015
16namespace quic {
17
18// QUIC dispatcher that handles new MASQUE connections and can proxy traffic
19// between MASQUE clients and QUIC servers.
20class QUIC_NO_EXPORT MasqueDispatcher : public QuicSimpleDispatcher,
21 public MasqueServerSession::Visitor {
22 public:
23 explicit MasqueDispatcher(
dschinazida88cd12021-02-25 11:44:05 -080024 MasqueMode masque_mode,
dschinazi22e23c72019-12-17 17:16:15 -080025 const QuicConfig* config,
26 const QuicCryptoServerConfig* crypto_config,
27 QuicVersionManager* version_manager,
dschinazida88cd12021-02-25 11:44:05 -080028 QuicEpollServer* epoll_server,
dschinazi22e23c72019-12-17 17:16:15 -080029 std::unique_ptr<QuicConnectionHelperInterface> helper,
nharper5f23a2d2020-02-20 10:44:09 -080030 std::unique_ptr<QuicCryptoServerStreamBase::Helper> session_helper,
dschinazi22e23c72019-12-17 17:16:15 -080031 std::unique_ptr<QuicAlarmFactory> alarm_factory,
32 MasqueServerBackend* masque_server_backend,
33 uint8_t expected_server_connection_id_length);
34
35 // Disallow copy and assign.
36 MasqueDispatcher(const MasqueDispatcher&) = delete;
37 MasqueDispatcher& operator=(const MasqueDispatcher&) = delete;
38
39 // From QuicSimpleDispatcher.
40 std::unique_ptr<QuicSession> CreateQuicSession(
41 QuicConnectionId connection_id,
wub4e3fb902020-07-15 13:37:29 -070042 const QuicSocketAddress& self_address,
43 const QuicSocketAddress& peer_address,
vasilvv3049b2b2020-10-08 08:18:31 -070044 absl::string_view alpn,
danzh23ff9832021-04-02 15:44:38 -070045 const ParsedQuicVersion& version,
46 absl::string_view sni) override;
dschinazi22e23c72019-12-17 17:16:15 -080047
48 bool OnFailedToDispatchPacket(const ReceivedPacketInfo& packet_info) override;
49
50 // From MasqueServerSession::Visitor.
51 void RegisterClientConnectionId(
52 QuicConnectionId client_connection_id,
53 MasqueServerSession* masque_server_session) override;
54
55 void UnregisterClientConnectionId(
56 QuicConnectionId client_connection_id) override;
57
58 private:
dschinazida88cd12021-02-25 11:44:05 -080059 MasqueMode masque_mode_;
60 QuicEpollServer* epoll_server_; // Unowned.
dschinazi22e23c72019-12-17 17:16:15 -080061 MasqueServerBackend* masque_server_backend_; // Unowned.
62 // Mapping from client connection IDs to server sessions, allows routing
63 // incoming packets to the right MASQUE connection.
vasilvv45a59fe2021-02-02 12:07:25 -080064 absl::flat_hash_map<QuicConnectionId,
65 MasqueServerSession*,
66 QuicConnectionIdHash>
dschinazi22e23c72019-12-17 17:16:15 -080067 client_connection_id_registrations_;
68};
69
70} // namespace quic
71
72#endif // QUICHE_QUIC_MASQUE_MASQUE_DISPATCHER_H_