blob: c02326457ff6899c8bda1e1b765d4ba721819913 [file] [log] [blame]
vasilvvefc6af82019-10-11 12:46:56 -07001// 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
vasilvv78571892019-12-06 07:14:57 -08008#include "url/gurl.h"
vasilvvefc6af82019-10-11 12:46:56 -07009#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"
vasilvvefc6af82019-10-11 12:46:56 -070013#include "net/third_party/quiche/src/quic/quic_transport/quic_transport_protocol.h"
vasilvv59dc4b62019-10-11 12:56:14 -070014#include "net/third_party/quiche/src/quic/quic_transport/quic_transport_session_interface.h"
vasilvvd88f1622019-11-04 13:50:53 -080015#include "net/third_party/quiche/src/quic/quic_transport/quic_transport_stream.h"
dmcardle1ec11192019-12-12 10:36:42 -080016#include "net/third_party/quiche/src/common/platform/api/quiche_string_piece.h"
vasilvvefc6af82019-10-11 12:46:56 -070017
18namespace quic {
19
20// A server session for the QuicTransport protocol.
dschinazif25169a2019-10-23 08:12:18 -070021class QUIC_EXPORT_PRIVATE QuicTransportServerSession
vasilvv59dc4b62019-10-11 12:56:14 -070022 : public QuicSession,
23 public QuicTransportSessionInterface {
vasilvvefc6af82019-10-11 12:46:56 -070024 public:
dschinazif25169a2019-10-23 08:12:18 -070025 class QUIC_EXPORT_PRIVATE ServerVisitor {
vasilvvefc6af82019-10-11 12:46:56 -070026 public:
27 virtual ~ServerVisitor() {}
28
vasilvv78571892019-12-06 07:14:57 -080029 // Allows the server to decide whether the specified origin is allowed to
30 // connect to it.
vasilvvefc6af82019-10-11 12:46:56 -070031 virtual bool CheckOrigin(url::Origin origin) = 0;
vasilvv78571892019-12-06 07:14:57 -080032
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;
vasilvvefc6af82019-10-11 12:46:56 -070037 };
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
dmcardle1ec11192019-12-12 10:36:42 -080047 std::vector<quiche::QuicheStringPiece>::const_iterator SelectAlpn(
48 const std::vector<quiche::QuicheStringPiece>& alpns) const override {
vasilvvefc6af82019-10-11 12:46:56 -070049 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
vasilvv097f3722019-10-23 13:36:16 -070061 // 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.
vasilvv59dc4b62019-10-11 12:56:14 -070065 bool IsSessionReady() const override { return ready_; }
vasilvvefc6af82019-10-11 12:46:56 -070066
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:
dschinazif25169a2019-10-23 08:12:18 -070075 class QUIC_EXPORT_PRIVATE ClientIndication : public QuicStream {
vasilvvefc6af82019-10-11 12:46:56 -070076 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.
dschinazif25169a2019-10-23 08:12:18 -070086 class QUIC_EXPORT_PRIVATE ClientIndicationParser {
vasilvvefc6af82019-10-11 12:46:56 -070087 public:
88 ClientIndicationParser(QuicTransportServerSession* session,
dmcardle1ec11192019-12-12 10:36:42 -080089 quiche::QuicheStringPiece indication)
vasilvvefc6af82019-10-11 12:46:56 -070090 : 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);
dmcardle1ec11192019-12-12 10:36:42 -080099 void ParseError(quiche::QuicheStringPiece error_message);
vasilvvefc6af82019-10-11 12:46:56 -0700100
vasilvv78571892019-12-06 07:14:57 -0800101 // Processes the path portion of the client indication.
dmcardle1ec11192019-12-12 10:36:42 -0800102 bool ProcessPath(quiche::QuicheStringPiece path);
vasilvv78571892019-12-06 07:14:57 -0800103
vasilvvefc6af82019-10-11 12:46:56 -0700104 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
dmcardle1ec11192019-12-12 10:36:42 -0800110 void ProcessClientIndication(quiche::QuicheStringPiece indication);
vasilvvefc6af82019-10-11 12:46:56 -0700111
vasilvvd88f1622019-11-04 13:50:53 -0800112 virtual void OnIncomingDataStream(QuicTransportStream* /*stream*/) {}
113
nharper23d40742020-01-03 14:55:01 -0800114 std::unique_ptr<QuicCryptoServerStreamBase> crypto_stream_;
vasilvv59dc4b62019-10-11 12:56:14 -0700115 bool ready_ = false;
vasilvvefc6af82019-10-11 12:46:56 -0700116 ServerVisitor* visitor_;
117};
118
119} // namespace quic
120
121#endif // QUICHE_QUIC_QUIC_TRANSPORT_QUIC_TRANSPORT_SERVER_SESSION_H_