| Index: net/quic/crypto/quic_crypto_server_config.cc
|
| diff --git a/net/quic/crypto/quic_crypto_server_config.cc b/net/quic/crypto/quic_crypto_server_config.cc
|
| index d1e2751720acb6bce05d50c1e281c0db11177ec6..e4c052f6c71c29193ce616c2b8397a84e5f1db05 100644
|
| --- a/net/quic/crypto/quic_crypto_server_config.cc
|
| +++ b/net/quic/crypto/quic_crypto_server_config.cc
|
| @@ -205,6 +205,7 @@ void ValidateClientHelloResultCallback::Run(const Result* result) {
|
| QuicCryptoServerConfig::ConfigOptions::ConfigOptions()
|
| : expiry_time(QuicWallTime::Zero()),
|
| channel_id_enabled(false),
|
| + token_binding_enabled(false),
|
| p256(false) {}
|
|
|
| QuicCryptoServerConfig::QuicCryptoServerConfig(
|
| @@ -322,6 +323,10 @@ QuicServerConfigProtobuf* QuicCryptoServerConfig::GenerateConfig(
|
| msg.SetTaglist(kPDMD, kCHID, 0);
|
| }
|
|
|
| + if (options.token_binding_enabled) {
|
| + msg.SetTaglist(kTBKP, kP256, 0);
|
| + }
|
| +
|
| if (options.id.empty()) {
|
| // We need to ensure that the SCID changes whenever the server config does
|
| // thus we make it a hash of the rest of the server config.
|
| @@ -641,6 +646,25 @@ QuicErrorCode QuicCryptoServerConfig::ProcessClientHello(
|
| return QUIC_CRYPTO_NO_SUPPORT;
|
| }
|
|
|
| + if (!requested_config->tb_key_params.empty()) {
|
| + const QuicTag* their_tbkps;
|
| + size_t num_their_tbkps;
|
| + switch (client_hello.GetTaglist(kTBKP, &their_tbkps, &num_their_tbkps)) {
|
| + case QUIC_CRYPTO_MESSAGE_PARAMETER_NOT_FOUND:
|
| + break;
|
| + case QUIC_NO_ERROR:
|
| + if (QuicUtils::FindMutualTag(
|
| + requested_config->tb_key_params, their_tbkps, num_their_tbkps,
|
| + QuicUtils::LOCAL_PRIORITY, ¶ms->token_binding_key_param,
|
| + nullptr)) {
|
| + break;
|
| + }
|
| + default:
|
| + *error_details = "Invalid Token Binding key parameter";
|
| + return QUIC_INVALID_CRYPTO_MESSAGE_PARAMETER;
|
| + }
|
| + }
|
| +
|
| StringPiece public_value;
|
| if (!client_hello.GetStringPiece(kPUBS, &public_value)) {
|
| *error_details = "Missing public value";
|
| @@ -1301,6 +1325,17 @@ QuicCryptoServerConfig::ParseConfigProtobuf(
|
| return nullptr;
|
| }
|
|
|
| + const QuicTag* tbkp_tags;
|
| + size_t tbkp_len;
|
| + QuicErrorCode err;
|
| + if ((err = msg->GetTaglist(kTBKP, &tbkp_tags, &tbkp_len)) !=
|
| + QUIC_CRYPTO_MESSAGE_PARAMETER_NOT_FOUND &&
|
| + err != QUIC_NO_ERROR) {
|
| + LOG(WARNING) << "Server config message is missing or has invalid TBKP";
|
| + return nullptr;
|
| + }
|
| + config->tb_key_params = vector<QuicTag>(tbkp_tags, tbkp_tags + tbkp_len);
|
| +
|
| StringPiece orbit;
|
| if (!msg->GetStringPiece(kORBT, &orbit)) {
|
| LOG(WARNING) << "Server config message is missing ORBT";
|
|
|