QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1 | // Copyright 2013 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_CRYPTO_QUIC_CRYPTO_CLIENT_CONFIG_H_ |
| 6 | #define QUICHE_QUIC_CORE_CRYPTO_QUIC_CRYPTO_CLIENT_CONFIG_H_ |
| 7 | |
| 8 | #include <cstdint> |
| 9 | #include <map> |
| 10 | #include <memory> |
| 11 | #include <vector> |
| 12 | |
| 13 | #include "base/macros.h" |
| 14 | #include "third_party/boringssl/src/include/openssl/base.h" |
| 15 | #include "net/third_party/quiche/src/quic/core/crypto/crypto_handshake.h" |
| 16 | #include "net/third_party/quiche/src/quic/core/crypto/crypto_protocol.h" |
| 17 | #include "net/third_party/quiche/src/quic/core/quic_packets.h" |
| 18 | #include "net/third_party/quiche/src/quic/core/quic_server_id.h" |
| 19 | #include "net/third_party/quiche/src/quic/platform/api/quic_export.h" |
| 20 | #include "net/third_party/quiche/src/quic/platform/api/quic_reference_counted.h" |
| 21 | #include "net/third_party/quiche/src/quic/platform/api/quic_string.h" |
| 22 | #include "net/third_party/quiche/src/quic/platform/api/quic_string_piece.h" |
| 23 | |
| 24 | namespace quic { |
| 25 | |
| 26 | class ChannelIDKey; |
| 27 | class ChannelIDSource; |
| 28 | class CryptoHandshakeMessage; |
| 29 | class ProofVerifier; |
| 30 | class ProofVerifyDetails; |
| 31 | class QuicRandom; |
| 32 | |
| 33 | // QuicCryptoClientConfig contains crypto-related configuration settings for a |
| 34 | // client. Note that this object isn't thread-safe. It's designed to be used on |
| 35 | // a single thread at a time. |
| 36 | class QUIC_EXPORT_PRIVATE QuicCryptoClientConfig : public QuicCryptoConfig { |
| 37 | public: |
| 38 | // A CachedState contains the information that the client needs in order to |
| 39 | // perform a 0-RTT handshake with a server. This information can be reused |
| 40 | // over several connections to the same server. |
| 41 | class QUIC_EXPORT_PRIVATE CachedState { |
| 42 | public: |
| 43 | // Enum to track if the server config is valid or not. If it is not valid, |
| 44 | // it specifies why it is invalid. |
| 45 | enum ServerConfigState { |
| 46 | // WARNING: Do not change the numerical values of any of server config |
| 47 | // state. Do not remove deprecated server config states - just comment |
| 48 | // them as deprecated. |
| 49 | SERVER_CONFIG_EMPTY = 0, |
| 50 | SERVER_CONFIG_INVALID = 1, |
| 51 | SERVER_CONFIG_CORRUPTED = 2, |
| 52 | SERVER_CONFIG_EXPIRED = 3, |
| 53 | SERVER_CONFIG_INVALID_EXPIRY = 4, |
| 54 | SERVER_CONFIG_VALID = 5, |
| 55 | // NOTE: Add new server config states only immediately above this line. |
| 56 | // Make sure to update the QuicServerConfigState enum in |
| 57 | // tools/metrics/histograms/histograms.xml accordingly. |
| 58 | SERVER_CONFIG_COUNT |
| 59 | }; |
| 60 | |
| 61 | CachedState(); |
| 62 | CachedState(const CachedState&) = delete; |
| 63 | CachedState& operator=(const CachedState&) = delete; |
| 64 | ~CachedState(); |
| 65 | |
| 66 | // IsComplete returns true if this object contains enough information to |
| 67 | // perform a handshake with the server. |now| is used to judge whether any |
| 68 | // cached server config has expired. |
| 69 | bool IsComplete(QuicWallTime now) const; |
| 70 | |
| 71 | // IsEmpty returns true if |server_config_| is empty. |
| 72 | bool IsEmpty() const; |
| 73 | |
| 74 | // GetServerConfig returns the parsed contents of |server_config|, or |
| 75 | // nullptr if |server_config| is empty. The return value is owned by this |
| 76 | // object and is destroyed when this object is. |
| 77 | const CryptoHandshakeMessage* GetServerConfig() const; |
| 78 | |
| 79 | // SetServerConfig checks that |server_config| parses correctly and stores |
| 80 | // it in |server_config_|. |now| is used to judge whether |server_config| |
| 81 | // has expired. |
| 82 | ServerConfigState SetServerConfig(QuicStringPiece server_config, |
| 83 | QuicWallTime now, |
| 84 | QuicWallTime expiry_time, |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 85 | std::string* error_details); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 86 | |
| 87 | // InvalidateServerConfig clears the cached server config (if any). |
| 88 | void InvalidateServerConfig(); |
| 89 | |
| 90 | // SetProof stores a cert chain, cert signed timestamp and signature. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 91 | void SetProof(const std::vector<std::string>& certs, |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 92 | QuicStringPiece cert_sct, |
| 93 | QuicStringPiece chlo_hash, |
| 94 | QuicStringPiece signature); |
| 95 | |
| 96 | // Clears all the data. |
| 97 | void Clear(); |
| 98 | |
| 99 | // Clears the certificate chain and signature and invalidates the proof. |
| 100 | void ClearProof(); |
| 101 | |
| 102 | // SetProofValid records that the certificate chain and signature have been |
| 103 | // validated and that it's safe to assume that the server is legitimate. |
| 104 | // (Note: this does not check the chain or signature.) |
| 105 | void SetProofValid(); |
| 106 | |
| 107 | // If the server config or the proof has changed then it needs to be |
| 108 | // revalidated. Helper function to keep server_config_valid_ and |
| 109 | // generation_counter_ in sync. |
| 110 | void SetProofInvalid(); |
| 111 | |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 112 | const std::string& server_config() const; |
| 113 | const std::string& source_address_token() const; |
| 114 | const std::vector<std::string>& certs() const; |
| 115 | const std::string& cert_sct() const; |
| 116 | const std::string& chlo_hash() const; |
| 117 | const std::string& signature() const; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 118 | bool proof_valid() const; |
| 119 | uint64_t generation_counter() const; |
| 120 | const ProofVerifyDetails* proof_verify_details() const; |
| 121 | |
| 122 | void set_source_address_token(QuicStringPiece token); |
| 123 | |
| 124 | void set_cert_sct(QuicStringPiece cert_sct); |
| 125 | |
| 126 | // Adds the connection ID to the queue of server-designated connection-ids. |
| 127 | void add_server_designated_connection_id(QuicConnectionId connection_id); |
| 128 | |
| 129 | // If true, the crypto config contains at least one connection ID specified |
| 130 | // by the server, and the client should use one of these IDs when initiating |
| 131 | // the next connection. |
| 132 | bool has_server_designated_connection_id() const; |
| 133 | |
| 134 | // This function should only be called when |
| 135 | // has_server_designated_connection_id is true. Returns the next |
| 136 | // connection_id specified by the server and removes it from the |
| 137 | // queue of ids. |
| 138 | QuicConnectionId GetNextServerDesignatedConnectionId(); |
| 139 | |
| 140 | // Adds the servernonce to the queue of server nonces. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 141 | void add_server_nonce(const std::string& server_nonce); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 142 | |
| 143 | // If true, the crypto config contains at least one server nonce, and the |
| 144 | // client should use one of these nonces. |
| 145 | bool has_server_nonce() const; |
| 146 | |
| 147 | // This function should only be called when has_server_nonce is true. |
| 148 | // Returns the next server_nonce specified by the server and removes it |
| 149 | // from the queue of nonces. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 150 | std::string GetNextServerNonce(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 151 | |
| 152 | // SetProofVerifyDetails takes ownership of |details|. |
| 153 | void SetProofVerifyDetails(ProofVerifyDetails* details); |
| 154 | |
| 155 | // Copy the |server_config_|, |source_address_token_|, |certs_|, |
| 156 | // |expiration_time_|, |cert_sct_|, |chlo_hash_| and |server_config_sig_| |
| 157 | // from the |other|. The remaining fields, |generation_counter_|, |
| 158 | // |proof_verify_details_|, and |scfg_| remain unchanged. |
| 159 | void InitializeFrom(const CachedState& other); |
| 160 | |
| 161 | // Initializes this cached state based on the arguments provided. |
| 162 | // Returns false if there is a problem parsing the server config. |
| 163 | bool Initialize(QuicStringPiece server_config, |
| 164 | QuicStringPiece source_address_token, |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 165 | const std::vector<std::string>& certs, |
| 166 | const std::string& cert_sct, |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 167 | QuicStringPiece chlo_hash, |
| 168 | QuicStringPiece signature, |
| 169 | QuicWallTime now, |
| 170 | QuicWallTime expiration_time); |
| 171 | |
| 172 | private: |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 173 | std::string server_config_; // A serialized handshake message. |
| 174 | std::string source_address_token_; // An opaque proof of IP ownership. |
| 175 | std::vector<std::string> certs_; // A list of certificates in leaf-first |
| 176 | // order. |
| 177 | std::string cert_sct_; // Signed timestamp of the leaf cert. |
| 178 | std::string chlo_hash_; // Hash of the CHLO message. |
| 179 | std::string server_config_sig_; // A signature of |server_config_|. |
| 180 | bool server_config_valid_; // True if |server_config_| is correctly |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 181 | // signed and |certs_| has been validated. |
| 182 | QuicWallTime expiration_time_; // Time when the config is no longer valid. |
| 183 | // Generation counter associated with the |server_config_|, |certs_| and |
| 184 | // |server_config_sig_| combination. It is incremented whenever we set |
| 185 | // server_config_valid_ to false. |
| 186 | uint64_t generation_counter_; |
| 187 | |
| 188 | std::unique_ptr<ProofVerifyDetails> proof_verify_details_; |
| 189 | |
| 190 | // scfg contains the cached, parsed value of |server_config|. |
| 191 | mutable std::unique_ptr<CryptoHandshakeMessage> scfg_; |
| 192 | |
| 193 | // TODO(jokulik): Consider using a hash-set as extra book-keeping to ensure |
| 194 | // that no connection-id is added twice. Also, consider keeping the server |
| 195 | // nonces and connection_ids together in one queue. |
| 196 | QuicQueue<QuicConnectionId> server_designated_connection_ids_; |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 197 | QuicQueue<std::string> server_nonces_; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 198 | }; |
| 199 | |
| 200 | // Used to filter server ids for partial config deletion. |
| 201 | class ServerIdFilter { |
| 202 | public: |
| 203 | virtual ~ServerIdFilter() {} |
| 204 | |
| 205 | // Returns true if |server_id| matches the filter. |
| 206 | virtual bool Matches(const QuicServerId& server_id) const = 0; |
| 207 | }; |
| 208 | |
| 209 | QuicCryptoClientConfig(std::unique_ptr<ProofVerifier> proof_verifier, |
| 210 | bssl::UniquePtr<SSL_CTX> ssl_ctx); |
| 211 | QuicCryptoClientConfig(const QuicCryptoClientConfig&) = delete; |
| 212 | QuicCryptoClientConfig& operator=(const QuicCryptoClientConfig&) = delete; |
| 213 | ~QuicCryptoClientConfig(); |
| 214 | |
| 215 | // LookupOrCreate returns a CachedState for the given |server_id|. If no such |
| 216 | // CachedState currently exists, it will be created and cached. |
| 217 | CachedState* LookupOrCreate(const QuicServerId& server_id); |
| 218 | |
| 219 | // Delete CachedState objects whose server ids match |filter| from |
| 220 | // cached_states. |
| 221 | void ClearCachedStates(const ServerIdFilter& filter); |
| 222 | |
| 223 | // FillInchoateClientHello sets |out| to be a CHLO message that elicits a |
| 224 | // source-address token or SCFG from a server. If |cached| is non-nullptr, the |
| 225 | // source-address token will be taken from it. |out_params| is used in order |
| 226 | // to store the cached certs that were sent as hints to the server in |
| 227 | // |out_params->cached_certs|. |preferred_version| is the version of the |
| 228 | // QUIC protocol that this client chose to use initially. This allows the |
| 229 | // server to detect downgrade attacks. If |demand_x509_proof| is true, |
| 230 | // then |out| will include an X509 proof demand, and the associated |
| 231 | // certificate related fields. |
| 232 | void FillInchoateClientHello( |
| 233 | const QuicServerId& server_id, |
| 234 | const ParsedQuicVersion preferred_version, |
| 235 | const CachedState* cached, |
| 236 | QuicRandom* rand, |
| 237 | bool demand_x509_proof, |
| 238 | QuicReferenceCountedPointer<QuicCryptoNegotiatedParameters> out_params, |
| 239 | CryptoHandshakeMessage* out) const; |
| 240 | |
| 241 | // FillClientHello sets |out| to be a CHLO message based on the configuration |
| 242 | // of this object. This object must have cached enough information about |
| 243 | // the server's hostname in order to perform a handshake. This can be checked |
| 244 | // with the |IsComplete| member of |CachedState|. |
| 245 | // |
| 246 | // |now| and |rand| are used to generate the nonce and |out_params| is |
| 247 | // filled with the results of the handshake that the server is expected to |
| 248 | // accept. |preferred_version| is the version of the QUIC protocol that this |
| 249 | // client chose to use initially. This allows the server to detect downgrade |
| 250 | // attacks. |
| 251 | // |
| 252 | // If |channel_id_key| is not null, it is used to sign a secret value derived |
| 253 | // from the client and server's keys, and the Channel ID public key and the |
| 254 | // signature are placed in the CETV value of the CHLO. |
| 255 | QuicErrorCode FillClientHello( |
| 256 | const QuicServerId& server_id, |
| 257 | QuicConnectionId connection_id, |
| 258 | const ParsedQuicVersion preferred_version, |
| 259 | const CachedState* cached, |
| 260 | QuicWallTime now, |
| 261 | QuicRandom* rand, |
| 262 | const ChannelIDKey* channel_id_key, |
| 263 | QuicReferenceCountedPointer<QuicCryptoNegotiatedParameters> out_params, |
| 264 | CryptoHandshakeMessage* out, |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 265 | std::string* error_details) const; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 266 | |
| 267 | // ProcessRejection processes a REJ message from a server and updates the |
| 268 | // cached information about that server. After this, |IsComplete| may return |
| 269 | // true for that server's CachedState. If the rejection message contains state |
| 270 | // about a future handshake (i.e. an nonce value from the server), then it |
| 271 | // will be saved in |out_params|. |now| is used to judge whether the server |
| 272 | // config in the rejection message has expired. |
| 273 | QuicErrorCode ProcessRejection( |
| 274 | const CryptoHandshakeMessage& rej, |
| 275 | QuicWallTime now, |
| 276 | QuicTransportVersion version, |
| 277 | QuicStringPiece chlo_hash, |
| 278 | CachedState* cached, |
| 279 | QuicReferenceCountedPointer<QuicCryptoNegotiatedParameters> out_params, |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 280 | std::string* error_details); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 281 | |
| 282 | // ProcessServerHello processes the message in |server_hello|, updates the |
| 283 | // cached information about that server, writes the negotiated parameters to |
| 284 | // |out_params| and returns QUIC_NO_ERROR. If |server_hello| is unacceptable |
| 285 | // then it puts an error message in |error_details| and returns an error |
| 286 | // code. |version| is the QUIC version for the current connection. |
| 287 | // |negotiated_versions| contains the list of version, if any, that were |
| 288 | // present in a version negotiation packet previously recevied from the |
| 289 | // server. The contents of this list will be compared against the list of |
| 290 | // versions provided in the VER tag of the server hello. |
| 291 | QuicErrorCode ProcessServerHello( |
| 292 | const CryptoHandshakeMessage& server_hello, |
| 293 | QuicConnectionId connection_id, |
| 294 | ParsedQuicVersion version, |
| 295 | const ParsedQuicVersionVector& negotiated_versions, |
| 296 | CachedState* cached, |
| 297 | QuicReferenceCountedPointer<QuicCryptoNegotiatedParameters> out_params, |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 298 | std::string* error_details); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 299 | |
| 300 | // Processes the message in |server_update|, updating the cached source |
| 301 | // address token, and server config. |
| 302 | // If |server_update| is invalid then |error_details| will contain an error |
| 303 | // message, and an error code will be returned. If all has gone well |
| 304 | // QUIC_NO_ERROR is returned. |
| 305 | QuicErrorCode ProcessServerConfigUpdate( |
| 306 | const CryptoHandshakeMessage& server_update, |
| 307 | QuicWallTime now, |
| 308 | const QuicTransportVersion version, |
| 309 | QuicStringPiece chlo_hash, |
| 310 | CachedState* cached, |
| 311 | QuicReferenceCountedPointer<QuicCryptoNegotiatedParameters> out_params, |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 312 | std::string* error_details); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 313 | |
| 314 | ProofVerifier* proof_verifier() const; |
| 315 | |
| 316 | ChannelIDSource* channel_id_source() const; |
| 317 | |
| 318 | SSL_CTX* ssl_ctx() const; |
| 319 | |
| 320 | // SetChannelIDSource sets a ChannelIDSource that will be called, when the |
| 321 | // server supports channel IDs, to obtain a channel ID for signing a message |
| 322 | // proving possession of the channel ID. This object takes ownership of |
| 323 | // |source|. |
| 324 | void SetChannelIDSource(ChannelIDSource* source); |
| 325 | |
| 326 | // Initialize the CachedState from |canonical_crypto_config| for the |
| 327 | // |canonical_server_id| as the initial CachedState for |server_id|. We will |
| 328 | // copy config data only if |canonical_crypto_config| has valid proof. |
| 329 | void InitializeFrom(const QuicServerId& server_id, |
| 330 | const QuicServerId& canonical_server_id, |
| 331 | QuicCryptoClientConfig* canonical_crypto_config); |
| 332 | |
| 333 | // Adds |suffix| as a domain suffix for which the server's crypto config |
| 334 | // is expected to be shared among servers with the domain suffix. If a server |
| 335 | // matches this suffix, then the server config from another server with the |
| 336 | // suffix will be used to initialize the cached state for this server. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 337 | void AddCanonicalSuffix(const std::string& suffix); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 338 | |
| 339 | // Saves the |user_agent_id| that will be passed in QUIC's CHLO message. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 340 | void set_user_agent_id(const std::string& user_agent_id) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 341 | user_agent_id_ = user_agent_id; |
| 342 | } |
| 343 | |
| 344 | // Returns the user_agent_id that will be provided in the client hello |
| 345 | // handshake message. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 346 | const std::string& user_agent_id() const { return user_agent_id_; } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 347 | |
| 348 | // Saves the |alpn| that will be passed in QUIC's CHLO message. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 349 | void set_alpn(const std::string& alpn) { alpn_ = alpn; } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 350 | |
| 351 | void set_pre_shared_key(QuicStringPiece psk) { |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 352 | pre_shared_key_ = std::string(psk); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | bool pad_inchoate_hello() const { return pad_inchoate_hello_; } |
| 356 | void set_pad_inchoate_hello(bool new_value) { |
| 357 | pad_inchoate_hello_ = new_value; |
| 358 | } |
| 359 | |
| 360 | bool pad_full_hello() const { return pad_full_hello_; } |
| 361 | void set_pad_full_hello(bool new_value) { pad_full_hello_ = new_value; } |
| 362 | |
| 363 | private: |
| 364 | // Sets the members to reasonable, default values. |
| 365 | void SetDefaults(); |
| 366 | |
| 367 | // CacheNewServerConfig checks for SCFG, STK, PROF, and CRT tags in |message|, |
| 368 | // verifies them, and stores them in the cached state if they validate. |
| 369 | // This is used on receipt of a REJ from a server, or when a server sends |
| 370 | // updated server config during a connection. |
| 371 | QuicErrorCode CacheNewServerConfig( |
| 372 | const CryptoHandshakeMessage& message, |
| 373 | QuicWallTime now, |
| 374 | QuicTransportVersion version, |
| 375 | QuicStringPiece chlo_hash, |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 376 | const std::vector<std::string>& cached_certs, |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 377 | CachedState* cached, |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 378 | std::string* error_details); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 379 | |
| 380 | // If the suffix of the hostname in |server_id| is in |canonical_suffixes_|, |
| 381 | // then populate |cached| with the canonical cached state from |
| 382 | // |canonical_server_map_| for that suffix. Returns true if |cached| is |
| 383 | // initialized with canonical cached state. |
| 384 | bool PopulateFromCanonicalConfig(const QuicServerId& server_id, |
| 385 | CachedState* cached); |
| 386 | |
| 387 | // cached_states_ maps from the server_id to the cached information about |
| 388 | // that server. |
| 389 | std::map<QuicServerId, std::unique_ptr<CachedState>> cached_states_; |
| 390 | |
| 391 | // Contains a map of servers which could share the same server config. Map |
| 392 | // from a canonical host suffix/port/scheme to a representative server with |
| 393 | // the canonical suffix, which has a plausible set of initial certificates |
| 394 | // (or at least server public key). |
| 395 | std::map<QuicServerId, QuicServerId> canonical_server_map_; |
| 396 | |
| 397 | // Contains list of suffixes (for exmaple ".c.youtube.com", |
| 398 | // ".googlevideo.com") of canonical hostnames. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 399 | std::vector<std::string> canonical_suffixes_; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 400 | |
| 401 | std::unique_ptr<ProofVerifier> proof_verifier_; |
| 402 | std::unique_ptr<ChannelIDSource> channel_id_source_; |
| 403 | bssl::UniquePtr<SSL_CTX> ssl_ctx_; |
| 404 | |
| 405 | // The |user_agent_id_| passed in QUIC's CHLO message. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 406 | std::string user_agent_id_; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 407 | |
| 408 | // The |alpn_| passed in QUIC's CHLO message. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 409 | std::string alpn_; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 410 | |
| 411 | // If non-empty, the client will operate in the pre-shared key mode by |
| 412 | // incorporating |pre_shared_key_| into the key schedule. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 413 | std::string pre_shared_key_; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 414 | |
| 415 | // In QUIC, technically, client hello should be fully padded. |
| 416 | // However, fully padding on slow network connection (e.g. 50kbps) can add |
| 417 | // 150ms latency to one roundtrip. Therefore, you can disable padding of |
| 418 | // individual messages. It is recommend to leave at least one message in |
| 419 | // each direction fully padded (e.g. full CHLO and SHLO), but if you know |
| 420 | // the lower-bound MTU, you don't need to pad all of them (keep in mind that |
| 421 | // it's not OK to do it according to the standard). |
| 422 | // |
| 423 | // Also, if you disable padding, you must disable (change) the |
| 424 | // anti-amplification protection. You should only do so if you have some |
| 425 | // other means of verifying the client. |
| 426 | bool pad_inchoate_hello_ = true; |
| 427 | bool pad_full_hello_ = true; |
| 428 | }; |
| 429 | |
| 430 | } // namespace quic |
| 431 | |
| 432 | #endif // QUICHE_QUIC_CORE_CRYPTO_QUIC_CRYPTO_CLIENT_CONFIG_H_ |