1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/webid/federated_sd_jwt_handler.h"
#include <string>
#include <vector>
#include "base/barrier_closure.h"
#include "base/containers/span.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/strings/escape.h"
#include "base/strings/strcat.h"
#include "base/time/time.h"
#include "content/browser/webid/fedcm_mappers.h"
#include "content/browser/webid/federated_auth_request_impl.h"
#include "content/browser/webid/flags.h"
#include "content/browser/webid/jwt_signer.h"
#include "content/browser/webid/sd_jwt.h"
#include "crypto/ec_private_key.h"
#include "crypto/hash.h"
#include "crypto/sha2.h"
#include "third_party/blink/public/mojom/webid/federated_auth_request.mojom.h"
namespace content {
using blink::mojom::FederatedAuthRequestResult;
namespace {
std::vector<uint8_t> Sha256(std::string_view data) {
auto hash = crypto::hash::Sha256(base::as_byte_span(data));
std::vector<uint8_t> result{hash.begin(), hash.end()};
return result;
}
} // namespace
FederatedSdJwtHandler::FederatedSdJwtHandler(
const blink::mojom::IdentityProviderRequestOptionsPtr& provider,
RenderFrameHost& render_frame_host,
FederatedAuthRequestImpl* federated_auth_request_impl)
: fields_(provider->fields),
nonce_(provider->nonce),
config_url_(provider->config->config_url),
render_frame_host_(&render_frame_host),
federated_auth_request_impl_(federated_auth_request_impl) {
// Creates a throw away private key for a one-time use for
// a single presentation. The public key gets sent to the
// VC issuance endpoint and gets bound to the issued SD-JWT
// by the issuer, delegating the presentation to the holder.
// The browser selectively discloses the fields that were
// requested and binds the audience and the nonce to the
// Key Binding JWT before returning to the verifier.
private_key_ = crypto::ECPrivateKey::Create();
}
FederatedSdJwtHandler::~FederatedSdJwtHandler() {}
std::string FederatedSdJwtHandler::ComputeUrlEncodedTokenPostDataForIssuers(
const std::string& account_id) {
return base::StrCat(
{"account_id=", base::EscapeUrlEncodedData(account_id, /*use_plus=*/true),
"&holder_key=",
base::EscapeUrlEncodedData(*GetPublicKey().Serialize(),
/*use_plus=*/true),
"&format=", base::EscapeUrlEncodedData("vc+sd-jwt", /*use_plus=*/true)});
}
void FederatedSdJwtHandler::ProcessSdJwt(const std::string& token) {
// Checked previously.
DCHECK(IsFedCmDelegationEnabled());
auto value = sdjwt::SdJwt::Parse(token);
if (!value) {
federated_auth_request_impl_->CompleteRequestWithError(
FederatedAuthRequestResult::kError,
/*token_status=*/std::nullopt,
/*should_delay_callback=*/false);
return;
}
auto sd_jwt = sdjwt::SdJwt::From(*value);
if (!sd_jwt) {
federated_auth_request_impl_->CompleteRequestWithError(
FederatedAuthRequestResult::kError,
/*token_status=*/std::nullopt,
/*should_delay_callback=*/false);
return;
}
// Each of the disclosures is an individual JSON Object.
// Parse them all and use BarrierCallback to get a callback when all
// parsing is done.
auto callback = BarrierClosure(
sd_jwt->disclosures.size(),
base::BindOnce(&FederatedSdJwtHandler::OnSdJwtParsed,
weak_ptr_factory_.GetWeakPtr(), sd_jwt->jwt));
for (const auto& json : sd_jwt->disclosures) {
data_decoder::DataDecoder::ParseJsonIsolated(
json.value(),
base::BindOnce(&FederatedSdJwtHandler::OnDisclosureParsed,
weak_ptr_factory_.GetWeakPtr(), callback, json.value()));
}
}
sdjwt::Jwk FederatedSdJwtHandler::GetPublicKey() const {
return *sdjwt::ExportPublicKey(*private_key_);
}
void FederatedSdJwtHandler::OnDisclosureParsed(
base::RepeatingClosure cb,
const std::string& json,
data_decoder::DataDecoder::ValueOrError result) {
if (!result.has_value() || !result->is_list()) {
cb.Run();
return;
}
auto disclosure = sdjwt::Disclosure::From(result->GetList());
if (!disclosure) {
// Ignore invalid disclosure structures.
cb.Run();
return;
}
disclosures_.push_back({disclosure->name, sdjwt::JSONString(json)});
cb.Run();
}
void FederatedSdJwtHandler::OnSdJwtParsed(const sdjwt::Jwt& jwt) {
std::vector<std::string> fields = {kFedCmDefaultFieldName,
kFedCmDefaultFieldEmail,
kFedCmDefaultFieldPicture};
if (fields_.has_value()) {
fields = fields_.value();
}
auto selected = sdjwt::SdJwt::Disclose(disclosures_, fields);
disclosures_.clear();
if (!selected) {
federated_auth_request_impl_->CompleteRequestWithError(
FederatedAuthRequestResult::kError,
/*token_status=*/std::nullopt,
/*should_delay_callback=*/false);
return;
}
sdjwt::SdJwt result;
result.jwt = jwt;
result.disclosures = *selected;
auto sdjwtkb = sdjwt::SdJwtKb::Create(
result, render_frame_host_->GetLastCommittedOrigin().Serialize(), nonce_,
/*iat=*/base::Time::Now(), base::BindRepeating(Sha256),
sdjwt::CreateJwtSigner(std::move(private_key_)));
if (!sdjwtkb) {
federated_auth_request_impl_->CompleteRequestWithError(
FederatedAuthRequestResult::kError,
/*token_status=*/std::nullopt,
/*should_delay_callback=*/false);
return;
}
auto token = sdjwtkb->Serialize();
// TODO(crbug.com/380367784): introduce and use a more specific
// TokenStatus type for SD-JWTs.
federated_auth_request_impl_->CompleteRequest(
FederatedAuthRequestResult::kSuccess,
FedCmRequestIdTokenStatus::kSuccessUsingTokenInHttpResponse,
/*token_error=*/std::nullopt, config_url_, token,
/*should_delay_callback=*/false);
}
} // namespace content
|