blob: 5ce699f933d127b31a7f7946c7082a2655d78298 [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_SERVER_HANDSHAKER_H_
6#define QUICHE_QUIC_CORE_TLS_SERVER_HANDSHAKER_H_
7
vasilvv872e7a32019-03-12 16:42:44 -07008#include <string>
9
QUICHE teama6ef0a62019-03-07 20:34:33 -050010#include "third_party/boringssl/src/include/openssl/pool.h"
11#include "third_party/boringssl/src/include/openssl/ssl.h"
nharper6ebe83b2019-06-13 17:43:52 -070012#include "net/third_party/quiche/src/quic/core/crypto/tls_server_connection.h"
dschinazi56fb53e2019-06-21 15:30:04 -070013#include "net/third_party/quiche/src/quic/core/proto/cached_network_parameters_proto.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050014#include "net/third_party/quiche/src/quic/core/quic_crypto_server_stream.h"
15#include "net/third_party/quiche/src/quic/core/quic_crypto_stream.h"
16#include "net/third_party/quiche/src/quic/core/tls_handshaker.h"
17#include "net/third_party/quiche/src/quic/platform/api/quic_export.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050018
19namespace quic {
20
21// An implementation of QuicCryptoServerStream::HandshakerDelegate which uses
22// TLS 1.3 for the crypto handshake protocol.
23class QUIC_EXPORT_PRIVATE TlsServerHandshaker
nharper6ebe83b2019-06-13 17:43:52 -070024 : public TlsHandshaker,
25 public TlsServerConnection::Delegate,
26 public QuicCryptoServerStream::HandshakerDelegate {
QUICHE teama6ef0a62019-03-07 20:34:33 -050027 public:
28 TlsServerHandshaker(QuicCryptoStream* stream,
29 QuicSession* session,
30 SSL_CTX* ssl_ctx,
31 ProofSource* proof_source);
32 TlsServerHandshaker(const TlsServerHandshaker&) = delete;
33 TlsServerHandshaker& operator=(const TlsServerHandshaker&) = delete;
34
35 ~TlsServerHandshaker() override;
36
37 // Creates and configures an SSL_CTX to be used with a TlsServerHandshaker.
38 // The caller is responsible for ownership of the newly created struct.
39 static bssl::UniquePtr<SSL_CTX> CreateSslCtx();
40
41 // From QuicCryptoServerStream::HandshakerDelegate
42 void CancelOutstandingCallbacks() override;
vasilvvc48c8712019-03-11 13:38:16 -070043 bool GetBase64SHA256ClientChannelID(std::string* output) const override;
QUICHE teama6ef0a62019-03-07 20:34:33 -050044 void SendServerConfigUpdate(
45 const CachedNetworkParameters* cached_network_params) override;
46 uint8_t NumHandshakeMessages() const override;
47 uint8_t NumHandshakeMessagesWithServerNonces() const override;
48 int NumServerConfigUpdateMessagesSent() const override;
49 const CachedNetworkParameters* PreviousCachedNetworkParams() const override;
50 bool ZeroRttAttempted() const override;
51 void SetPreviousCachedNetworkParams(
52 CachedNetworkParameters cached_network_params) override;
53 bool ShouldSendExpectCTHeader() const override;
54
55 // From QuicCryptoServerStream::HandshakerDelegate and TlsHandshaker
56 bool encryption_established() const override;
57 bool handshake_confirmed() const override;
58 const QuicCryptoNegotiatedParameters& crypto_negotiated_params()
59 const override;
60 CryptoMessageParser* crypto_message_parser() override;
61
nharper6ebe83b2019-06-13 17:43:52 -070062 protected:
renjietang96c17672019-06-14 12:50:14 -070063 TlsConnection* tls_connection() override { return &tls_connection_; }
QUICHE teama6ef0a62019-03-07 20:34:33 -050064
nharper6ebe83b2019-06-13 17:43:52 -070065 // Called when a new message is received on the crypto stream and is available
66 // for the TLS stack to read.
67 void AdvanceHandshake() override;
68 void CloseConnection(QuicErrorCode error,
69 const std::string& reason_phrase) override;
70
71 // TlsServerConnection::Delegate implementation:
72 int SelectCertificate(int* out_alert) override;
73 int SelectAlpn(const uint8_t** out,
74 uint8_t* out_len,
75 const uint8_t* in,
76 unsigned in_len) override;
77 ssl_private_key_result_t PrivateKeySign(uint8_t* out,
78 size_t* out_len,
79 size_t max_out,
80 uint16_t sig_alg,
81 QuicStringPiece in) override;
82 ssl_private_key_result_t PrivateKeyComplete(uint8_t* out,
83 size_t* out_len,
84 size_t max_out) override;
85 TlsConnection::Delegate* ConnectionDelegate() override { return this; }
dschinazi35e749e2019-04-09 09:36:04 -070086
QUICHE teama6ef0a62019-03-07 20:34:33 -050087 private:
88 class SignatureCallback : public ProofSource::SignatureCallback {
89 public:
90 explicit SignatureCallback(TlsServerHandshaker* handshaker);
vasilvvc48c8712019-03-11 13:38:16 -070091 void Run(bool ok, std::string signature) override;
QUICHE teama6ef0a62019-03-07 20:34:33 -050092
93 // If called, Cancel causes the pending callback to be a no-op.
94 void Cancel();
95
96 private:
97 TlsServerHandshaker* handshaker_;
98 };
99
100 enum State {
101 STATE_LISTENING,
102 STATE_SIGNATURE_PENDING,
103 STATE_SIGNATURE_COMPLETE,
104 STATE_HANDSHAKE_COMPLETE,
105 STATE_CONNECTION_CLOSED,
106 };
107
QUICHE teama6ef0a62019-03-07 20:34:33 -0500108 // Called when the TLS handshake is complete.
109 void FinishHandshake();
110
vasilvvc48c8712019-03-11 13:38:16 -0700111 void CloseConnection(const std::string& reason_phrase);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500112
113 bool SetTransportParameters();
vasilvvc48c8712019-03-11 13:38:16 -0700114 bool ProcessTransportParameters(std::string* error_details);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500115
QUICHE teama6ef0a62019-03-07 20:34:33 -0500116 State state_ = STATE_LISTENING;
117
118 ProofSource* proof_source_;
119 SignatureCallback* signature_callback_ = nullptr;
120
vasilvvc48c8712019-03-11 13:38:16 -0700121 std::string hostname_;
122 std::string cert_verify_sig_;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500123
124 bool encryption_established_ = false;
125 bool handshake_confirmed_ = false;
dschinazi91453642019-08-01 11:12:15 -0700126 bool valid_alpn_received_ = false;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500127 QuicReferenceCountedPointer<QuicCryptoNegotiatedParameters>
128 crypto_negotiated_params_;
nharper6ebe83b2019-06-13 17:43:52 -0700129 TlsServerConnection tls_connection_;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500130};
131
132} // namespace quic
133
134#endif // QUICHE_QUIC_CORE_TLS_SERVER_HANDSHAKER_H_