blob: 6fa22d00c047ab5e058119f6a6b2f2c7f653aca4 [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// Copyright (c) 2017 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_CORE_TLS_HANDSHAKER_H_
6#define QUICHE_QUIC_CORE_TLS_HANDSHAKER_H_
7
8#include "third_party/boringssl/src/include/openssl/base.h"
9#include "third_party/boringssl/src/include/openssl/ssl.h"
10#include "net/third_party/quiche/src/quic/core/crypto/crypto_handshake.h"
11#include "net/third_party/quiche/src/quic/core/crypto/crypto_message_parser.h"
12#include "net/third_party/quiche/src/quic/core/crypto/quic_decrypter.h"
13#include "net/third_party/quiche/src/quic/core/crypto/quic_encrypter.h"
nharper6ebe83b2019-06-13 17:43:52 -070014#include "net/third_party/quiche/src/quic/core/crypto/tls_connection.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050015#include "net/third_party/quiche/src/quic/core/quic_session.h"
16#include "net/third_party/quiche/src/quic/platform/api/quic_export.h"
dmcardlecf0bfcf2019-12-13 08:08:21 -080017#include "net/third_party/quiche/src/common/platform/api/quiche_string_piece.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050018
19namespace quic {
20
21class QuicCryptoStream;
22
23// Base class for TlsClientHandshaker and TlsServerHandshaker. TlsHandshaker
24// provides functionality common to both the client and server, such as moving
25// messages between the TLS stack and the QUIC crypto stream, and handling
26// derivation of secrets.
nharper6ebe83b2019-06-13 17:43:52 -070027class QUIC_EXPORT_PRIVATE TlsHandshaker : public TlsConnection::Delegate,
28 public CryptoMessageParser {
QUICHE teama6ef0a62019-03-07 20:34:33 -050029 public:
30 // TlsHandshaker does not take ownership of any of its arguments; they must
31 // outlive the TlsHandshaker.
nharper80d3b172020-01-17 11:43:39 -080032 TlsHandshaker(QuicCryptoStream* stream, QuicSession* session);
QUICHE teama6ef0a62019-03-07 20:34:33 -050033 TlsHandshaker(const TlsHandshaker&) = delete;
34 TlsHandshaker& operator=(const TlsHandshaker&) = delete;
35
36 ~TlsHandshaker() override;
37
38 // From CryptoMessageParser
dmcardlecf0bfcf2019-12-13 08:08:21 -080039 bool ProcessInput(quiche::QuicheStringPiece input,
40 EncryptionLevel level) override;
QUICHE teama6ef0a62019-03-07 20:34:33 -050041 size_t InputBytesRemaining() const override { return 0; }
42 QuicErrorCode error() const override { return parser_error_; }
vasilvvc48c8712019-03-11 13:38:16 -070043 const std::string& error_detail() const override {
QUICHE teama6ef0a62019-03-07 20:34:33 -050044 return parser_error_detail_;
45 }
46
47 // From QuicCryptoStream
48 virtual bool encryption_established() const = 0;
fayang685367a2020-01-14 10:40:15 -080049 virtual bool one_rtt_keys_available() const = 0;
QUICHE teama6ef0a62019-03-07 20:34:33 -050050 virtual const QuicCryptoNegotiatedParameters& crypto_negotiated_params()
51 const = 0;
52 virtual CryptoMessageParser* crypto_message_parser() { return this; }
fayang9a863cf2020-01-16 14:12:11 -080053 virtual HandshakeState GetHandshakeState() const = 0;
nharper486a8a92019-08-28 16:25:10 -070054 size_t BufferSizeLimitForLevel(EncryptionLevel level) const;
QUICHE teama6ef0a62019-03-07 20:34:33 -050055
56 protected:
57 virtual void AdvanceHandshake() = 0;
58
59 virtual void CloseConnection(QuicErrorCode error,
vasilvvc48c8712019-03-11 13:38:16 -070060 const std::string& reason_phrase) = 0;
QUICHE teama6ef0a62019-03-07 20:34:33 -050061
QUICHE teama6ef0a62019-03-07 20:34:33 -050062 // Returns the PRF used by the cipher suite negotiated in the TLS handshake.
63 const EVP_MD* Prf();
64
nharper486a8a92019-08-28 16:25:10 -070065 virtual const TlsConnection* tls_connection() const = 0;
nharper6ebe83b2019-06-13 17:43:52 -070066
nharper486a8a92019-08-28 16:25:10 -070067 SSL* ssl() const { return tls_connection()->ssl(); }
nharper6ebe83b2019-06-13 17:43:52 -070068
QUICHE teama6ef0a62019-03-07 20:34:33 -050069 QuicCryptoStream* stream() { return stream_; }
fayangd58736d2019-11-27 13:35:31 -080070 HandshakerDelegateInterface* delegate() { return delegate_; }
QUICHE teama6ef0a62019-03-07 20:34:33 -050071
QUICHE teama6ef0a62019-03-07 20:34:33 -050072 // SetEncryptionSecret provides the encryption secret to use at a particular
73 // encryption level. The secrets provided here are the ones from the TLS 1.3
74 // key schedule (RFC 8446 section 7.1), in particular the handshake traffic
75 // secrets and application traffic secrets. For a given secret |secret|,
76 // |level| indicates which EncryptionLevel it is to be used at, and |is_write|
77 // indicates whether it is used for encryption or decryption.
78 void SetEncryptionSecret(EncryptionLevel level,
79 const std::vector<uint8_t>& read_secret,
nharper6ebe83b2019-06-13 17:43:52 -070080 const std::vector<uint8_t>& write_secret) override;
QUICHE teama6ef0a62019-03-07 20:34:33 -050081
82 // WriteMessage is called when there is |data| from the TLS stack ready for
83 // the QUIC stack to write in a crypto frame. The data must be transmitted at
84 // encryption level |level|.
dmcardlecf0bfcf2019-12-13 08:08:21 -080085 void WriteMessage(EncryptionLevel level,
86 quiche::QuicheStringPiece data) override;
QUICHE teama6ef0a62019-03-07 20:34:33 -050087
88 // FlushFlight is called to signal that the current flight of
89 // messages have all been written (via calls to WriteMessage) and can be
90 // flushed to the underlying transport.
nharper6ebe83b2019-06-13 17:43:52 -070091 void FlushFlight() override;
QUICHE teama6ef0a62019-03-07 20:34:33 -050092
93 // SendAlert causes this TlsHandshaker to close the QUIC connection with an
94 // error code corresponding to the TLS alert description |desc|.
nharper6ebe83b2019-06-13 17:43:52 -070095 void SendAlert(EncryptionLevel level, uint8_t desc) override;
QUICHE teama6ef0a62019-03-07 20:34:33 -050096
nharper6ebe83b2019-06-13 17:43:52 -070097 private:
QUICHE teama6ef0a62019-03-07 20:34:33 -050098 QuicCryptoStream* stream_;
fayangd58736d2019-11-27 13:35:31 -080099 HandshakerDelegateInterface* delegate_;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500100
101 QuicErrorCode parser_error_ = QUIC_NO_ERROR;
vasilvvc48c8712019-03-11 13:38:16 -0700102 std::string parser_error_detail_;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500103};
104
105} // namespace quic
106
107#endif // QUICHE_QUIC_CORE_TLS_HANDSHAKER_H_