vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 1 | // Copyright (c) 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_QUIC_TRANSPORT_QUIC_TRANSPORT_SERVER_SESSION_H_ |
| 6 | #define QUICHE_QUIC_QUIC_TRANSPORT_QUIC_TRANSPORT_SERVER_SESSION_H_ |
| 7 | |
vasilvv | 7857189 | 2019-12-06 07:14:57 -0800 | [diff] [blame] | 8 | #include "url/gurl.h" |
vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 9 | #include "url/origin.h" |
| 10 | #include "net/third_party/quiche/src/quic/core/quic_connection.h" |
| 11 | #include "net/third_party/quiche/src/quic/core/quic_crypto_server_stream.h" |
| 12 | #include "net/third_party/quiche/src/quic/core/quic_session.h" |
vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 13 | #include "net/third_party/quiche/src/quic/quic_transport/quic_transport_protocol.h" |
vasilvv | 59dc4b6 | 2019-10-11 12:56:14 -0700 | [diff] [blame] | 14 | #include "net/third_party/quiche/src/quic/quic_transport/quic_transport_session_interface.h" |
vasilvv | d88f162 | 2019-11-04 13:50:53 -0800 | [diff] [blame] | 15 | #include "net/third_party/quiche/src/quic/quic_transport/quic_transport_stream.h" |
dmcardle | 1ec1119 | 2019-12-12 10:36:42 -0800 | [diff] [blame] | 16 | #include "net/third_party/quiche/src/common/platform/api/quiche_string_piece.h" |
vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 17 | |
| 18 | namespace quic { |
| 19 | |
| 20 | // A server session for the QuicTransport protocol. |
dschinazi | f25169a | 2019-10-23 08:12:18 -0700 | [diff] [blame] | 21 | class QUIC_EXPORT_PRIVATE QuicTransportServerSession |
vasilvv | 59dc4b6 | 2019-10-11 12:56:14 -0700 | [diff] [blame] | 22 | : public QuicSession, |
| 23 | public QuicTransportSessionInterface { |
vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 24 | public: |
dschinazi | f25169a | 2019-10-23 08:12:18 -0700 | [diff] [blame] | 25 | class QUIC_EXPORT_PRIVATE ServerVisitor { |
vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 26 | public: |
| 27 | virtual ~ServerVisitor() {} |
| 28 | |
vasilvv | 7857189 | 2019-12-06 07:14:57 -0800 | [diff] [blame] | 29 | // Allows the server to decide whether the specified origin is allowed to |
| 30 | // connect to it. |
vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 31 | virtual bool CheckOrigin(url::Origin origin) = 0; |
vasilvv | 7857189 | 2019-12-06 07:14:57 -0800 | [diff] [blame] | 32 | |
| 33 | // Indicates that the server received a path parameter from the client. The |
| 34 | // path parameter is parsed, and can be retrived from url.path() and |
| 35 | // url.query(). If this method returns false, the connection is closed. |
| 36 | virtual bool ProcessPath(const GURL& url) = 0; |
vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 37 | }; |
| 38 | |
| 39 | QuicTransportServerSession(QuicConnection* connection, |
| 40 | Visitor* owner, |
| 41 | const QuicConfig& config, |
| 42 | const ParsedQuicVersionVector& supported_versions, |
| 43 | const QuicCryptoServerConfig* crypto_config, |
| 44 | QuicCompressedCertsCache* compressed_certs_cache, |
| 45 | ServerVisitor* visitor); |
| 46 | |
dmcardle | 1ec1119 | 2019-12-12 10:36:42 -0800 | [diff] [blame] | 47 | std::vector<quiche::QuicheStringPiece>::const_iterator SelectAlpn( |
| 48 | const std::vector<quiche::QuicheStringPiece>& alpns) const override { |
vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 49 | return std::find(alpns.cbegin(), alpns.cend(), QuicTransportAlpn()); |
| 50 | } |
| 51 | |
| 52 | bool ShouldKeepConnectionAlive() const override { return true; } |
| 53 | |
| 54 | QuicCryptoStream* GetMutableCryptoStream() override { |
| 55 | return crypto_stream_.get(); |
| 56 | } |
| 57 | const QuicCryptoStream* GetCryptoStream() const override { |
| 58 | return crypto_stream_.get(); |
| 59 | } |
| 60 | |
vasilvv | 097f372 | 2019-10-23 13:36:16 -0700 | [diff] [blame] | 61 | // Returns true once the encryption has been established, the client |
| 62 | // indication has been received and the origin has been verified. No |
| 63 | // application data will be read or written before the connection is ready. |
| 64 | // Once the connection becomes ready, this method will never return false. |
vasilvv | 59dc4b6 | 2019-10-11 12:56:14 -0700 | [diff] [blame] | 65 | bool IsSessionReady() const override { return ready_; } |
vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 66 | |
| 67 | QuicStream* CreateIncomingStream(QuicStreamId id) override; |
| 68 | QuicStream* CreateIncomingStream(PendingStream* /*pending*/) override { |
| 69 | QUIC_BUG << "QuicTransportServerSession::CreateIncomingStream(" |
| 70 | "PendingStream) not implemented"; |
| 71 | return nullptr; |
| 72 | } |
| 73 | |
| 74 | protected: |
dschinazi | f25169a | 2019-10-23 08:12:18 -0700 | [diff] [blame] | 75 | class QUIC_EXPORT_PRIVATE ClientIndication : public QuicStream { |
vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 76 | public: |
| 77 | explicit ClientIndication(QuicTransportServerSession* session); |
| 78 | void OnDataAvailable() override; |
| 79 | |
| 80 | private: |
| 81 | QuicTransportServerSession* session_; |
| 82 | std::string buffer_; |
| 83 | }; |
| 84 | |
| 85 | // Utility class for parsing the client indication. |
dschinazi | f25169a | 2019-10-23 08:12:18 -0700 | [diff] [blame] | 86 | class QUIC_EXPORT_PRIVATE ClientIndicationParser { |
vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 87 | public: |
| 88 | ClientIndicationParser(QuicTransportServerSession* session, |
dmcardle | 1ec1119 | 2019-12-12 10:36:42 -0800 | [diff] [blame] | 89 | quiche::QuicheStringPiece indication) |
vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 90 | : session_(session), reader_(indication) {} |
| 91 | |
| 92 | // Parses the specified indication. Automatically closes the connection |
| 93 | // with detailed error if parsing fails. Returns true on success, false on |
| 94 | // failure. |
| 95 | bool Parse(); |
| 96 | |
| 97 | private: |
| 98 | void Error(const std::string& error_message); |
dmcardle | 1ec1119 | 2019-12-12 10:36:42 -0800 | [diff] [blame] | 99 | void ParseError(quiche::QuicheStringPiece error_message); |
vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 100 | |
vasilvv | 7857189 | 2019-12-06 07:14:57 -0800 | [diff] [blame] | 101 | // Processes the path portion of the client indication. |
dmcardle | 1ec1119 | 2019-12-12 10:36:42 -0800 | [diff] [blame] | 102 | bool ProcessPath(quiche::QuicheStringPiece path); |
vasilvv | 7857189 | 2019-12-06 07:14:57 -0800 | [diff] [blame] | 103 | |
vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 104 | QuicTransportServerSession* session_; |
| 105 | QuicDataReader reader_; |
| 106 | }; |
| 107 | |
| 108 | // Parses and processes the client indication as described in |
| 109 | // https://vasilvv.github.io/webtransport/draft-vvv-webtransport-quic.html#rfc.section.3.2 |
dmcardle | 1ec1119 | 2019-12-12 10:36:42 -0800 | [diff] [blame] | 110 | void ProcessClientIndication(quiche::QuicheStringPiece indication); |
vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 111 | |
vasilvv | d88f162 | 2019-11-04 13:50:53 -0800 | [diff] [blame] | 112 | virtual void OnIncomingDataStream(QuicTransportStream* /*stream*/) {} |
| 113 | |
nharper | 23d4074 | 2020-01-03 14:55:01 -0800 | [diff] [blame] | 114 | std::unique_ptr<QuicCryptoServerStreamBase> crypto_stream_; |
vasilvv | 59dc4b6 | 2019-10-11 12:56:14 -0700 | [diff] [blame] | 115 | bool ready_ = false; |
vasilvv | efc6af8 | 2019-10-11 12:46:56 -0700 | [diff] [blame] | 116 | ServerVisitor* visitor_; |
| 117 | }; |
| 118 | |
| 119 | } // namespace quic |
| 120 | |
| 121 | #endif // QUICHE_QUIC_QUIC_TRANSPORT_QUIC_TRANSPORT_SERVER_SESSION_H_ |