dschinazi | 22e23c7 | 2019-12-17 17:16:15 -0800 | [diff] [blame] | 1 | // 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 | |
vasilvv | 45a59fe | 2021-02-02 12:07:25 -0800 | [diff] [blame] | 8 | #include "absl/container/flat_hash_map.h" |
QUICHE team | 5be974e | 2020-12-29 18:35:24 -0500 | [diff] [blame] | 9 | #include "quic/masque/masque_server_backend.h" |
| 10 | #include "quic/masque/masque_server_session.h" |
dschinazi | da88cd1 | 2021-02-25 11:44:05 -0800 | [diff] [blame] | 11 | #include "quic/masque/masque_utils.h" |
| 12 | #include "quic/platform/api/quic_epoll.h" |
QUICHE team | 5be974e | 2020-12-29 18:35:24 -0500 | [diff] [blame] | 13 | #include "quic/platform/api/quic_export.h" |
| 14 | #include "quic/tools/quic_simple_dispatcher.h" |
dschinazi | 22e23c7 | 2019-12-17 17:16:15 -0800 | [diff] [blame] | 15 | |
| 16 | namespace quic { |
| 17 | |
| 18 | // QUIC dispatcher that handles new MASQUE connections and can proxy traffic |
| 19 | // between MASQUE clients and QUIC servers. |
| 20 | class QUIC_NO_EXPORT MasqueDispatcher : public QuicSimpleDispatcher, |
| 21 | public MasqueServerSession::Visitor { |
| 22 | public: |
| 23 | explicit MasqueDispatcher( |
dschinazi | da88cd1 | 2021-02-25 11:44:05 -0800 | [diff] [blame] | 24 | MasqueMode masque_mode, |
dschinazi | 22e23c7 | 2019-12-17 17:16:15 -0800 | [diff] [blame] | 25 | const QuicConfig* config, |
| 26 | const QuicCryptoServerConfig* crypto_config, |
| 27 | QuicVersionManager* version_manager, |
dschinazi | da88cd1 | 2021-02-25 11:44:05 -0800 | [diff] [blame] | 28 | QuicEpollServer* epoll_server, |
dschinazi | 22e23c7 | 2019-12-17 17:16:15 -0800 | [diff] [blame] | 29 | std::unique_ptr<QuicConnectionHelperInterface> helper, |
nharper | 5f23a2d | 2020-02-20 10:44:09 -0800 | [diff] [blame] | 30 | std::unique_ptr<QuicCryptoServerStreamBase::Helper> session_helper, |
dschinazi | 22e23c7 | 2019-12-17 17:16:15 -0800 | [diff] [blame] | 31 | 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, |
wub | 4e3fb90 | 2020-07-15 13:37:29 -0700 | [diff] [blame] | 42 | const QuicSocketAddress& self_address, |
| 43 | const QuicSocketAddress& peer_address, |
vasilvv | 3049b2b | 2020-10-08 08:18:31 -0700 | [diff] [blame] | 44 | absl::string_view alpn, |
danzh | 23ff983 | 2021-04-02 15:44:38 -0700 | [diff] [blame] | 45 | const ParsedQuicVersion& version, |
| 46 | absl::string_view sni) override; |
dschinazi | 22e23c7 | 2019-12-17 17:16:15 -0800 | [diff] [blame] | 47 | |
| 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: |
dschinazi | da88cd1 | 2021-02-25 11:44:05 -0800 | [diff] [blame] | 59 | MasqueMode masque_mode_; |
| 60 | QuicEpollServer* epoll_server_; // Unowned. |
dschinazi | 22e23c7 | 2019-12-17 17:16:15 -0800 | [diff] [blame] | 61 | MasqueServerBackend* masque_server_backend_; // Unowned. |
| 62 | // Mapping from client connection IDs to server sessions, allows routing |
| 63 | // incoming packets to the right MASQUE connection. |
vasilvv | 45a59fe | 2021-02-02 12:07:25 -0800 | [diff] [blame] | 64 | absl::flat_hash_map<QuicConnectionId, |
| 65 | MasqueServerSession*, |
| 66 | QuicConnectionIdHash> |
dschinazi | 22e23c7 | 2019-12-17 17:16:15 -0800 | [diff] [blame] | 67 | client_connection_id_registrations_; |
| 68 | }; |
| 69 | |
| 70 | } // namespace quic |
| 71 | |
| 72 | #endif // QUICHE_QUIC_MASQUE_MASQUE_DISPATCHER_H_ |