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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/payments/content/secure_payment_confirmation_service.h"
#include "base/compiler_specific.h"
#include "base/feature_list.h"
#include "base/memory/ref_counted_memory.h"
#include "components/payments/content/browser_binding/browser_bound_key.h"
#include "components/payments/content/payment_manifest_web_data_service.h"
#include "components/payments/core/features.h"
#include "components/payments/core/secure_payment_confirmation_credential.h"
#include "components/webauthn/core/browser/internal_authenticator.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/secure_payment_confirmation_utils.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/content_features.h"
#include "crypto/random.h"
#include "services/network/public/mojom/permissions_policy/permissions_policy_feature.mojom-shared.h"
#if BUILDFLAG(IS_ANDROID)
#include "components/payments/content/browser_binding/browser_bound_key_store.h"
#include "third_party/blink/public/common/features.h"
#endif
namespace payments {
namespace {
void OnIsUserVerifyingPlatformAuthenticatorAvailable(
SecurePaymentConfirmationService::
SecurePaymentConfirmationAvailabilityCallback callback,
bool is_user_verifying_platform_authenticator_available) {
std::move(callback).Run(
is_user_verifying_platform_authenticator_available
? mojom::SecurePaymentConfirmationAvailabilityEnum::kAvailable
: mojom::SecurePaymentConfirmationAvailabilityEnum::
kUnavailableNoUserVerifyingPlatformAuthenticator);
}
} // namespace
SecurePaymentConfirmationService::SecurePaymentConfirmationService(
content::RenderFrameHost& render_frame_host,
mojo::PendingReceiver<mojom::SecurePaymentConfirmationService> receiver,
scoped_refptr<PaymentManifestWebDataService> web_data_service,
std::unique_ptr<webauthn::InternalAuthenticator> authenticator)
: DocumentService(render_frame_host, std::move(receiver)),
web_data_service_(web_data_service),
authenticator_(std::move(authenticator)) {}
SecurePaymentConfirmationService::~SecurePaymentConfirmationService() {
Reset();
}
void SecurePaymentConfirmationService::SecurePaymentConfirmationAvailability(
SecurePaymentConfirmationAvailabilityCallback callback) {
if (!base::FeatureList::IsEnabled(::features::kSecurePaymentConfirmation)) {
std::move(callback).Run(mojom::SecurePaymentConfirmationAvailabilityEnum::
kUnavailableFeatureNotEnabled);
return;
}
// TODO(crbug.com/40258712): This method should next check that the 'payment'
// permission policy is set. However, SecurePaymentConfirmationService is only
// installed by the factory if the policy is set, so it is not possible for
// that check to ever be false here. Instead, the renderer-side implementation
// of isSecurePaymentConfirmationAvailable checks for the permission policy
// before trying to call to the browser (or else it would hit a mojo error).
//
// This all technically works, but it would probably be cleaner to refactor
// SecurePaymentConfirmationService to always be available and to properly
// handle calls if the 'payment' policy is not present.
// The remaining checks in this method are for the underlying platform
// authenticator. If the kSecurePaymentConfirmationDebug method is enabled we
// may not have a real authenticator, so early-exit here. This is never
// expected to be hit in production, as it is a debug flag only.
if (base::FeatureList::IsEnabled(
::features::kSecurePaymentConfirmationDebug)) {
std::move(callback).Run(
mojom::SecurePaymentConfirmationAvailabilityEnum::kAvailable);
return;
}
if (!authenticator_) {
std::move(callback).Run(mojom::SecurePaymentConfirmationAvailabilityEnum::
kUnavailableUnknownReason);
return;
}
if (base::FeatureList::IsEnabled(
features::kSecurePaymentConfirmationUseCredentialStoreAPIs) &&
!authenticator_->IsGetMatchingCredentialIdsSupported()) {
std::move(callback).Run(mojom::SecurePaymentConfirmationAvailabilityEnum::
kUnavailableUnknownReason);
return;
}
authenticator_->IsUserVerifyingPlatformAuthenticatorAvailable(base::BindOnce(
&OnIsUserVerifyingPlatformAuthenticatorAvailable, std::move(callback)));
}
void SecurePaymentConfirmationService::StorePaymentCredential(
const std::vector<uint8_t>& credential_id,
const std::string& rp_id,
const std::vector<uint8_t>& user_id,
StorePaymentCredentialCallback callback) {
if (state_ != State::kIdle || !IsCurrentStateValid() ||
credential_id.empty() || rp_id.empty() || user_id.empty()) {
Reset();
std::move(callback).Run(
mojom::PaymentCredentialStorageStatus::FAILED_TO_STORE_CREDENTIAL);
return;
}
RecordFirstSystemPromptResult(
SecurePaymentConfirmationEnrollSystemPromptResult::kAccepted);
// If credential-store level APIs are available, the credential information
// will already have been stored during creation.
if (base::FeatureList::IsEnabled(
features::kSecurePaymentConfirmationUseCredentialStoreAPIs)) {
Reset();
std::move(callback).Run(mojom::PaymentCredentialStorageStatus::SUCCESS);
return;
}
storage_callback_ = std::move(callback);
state_ = State::kStoringCredential;
data_service_request_handle_ =
web_data_service_->AddSecurePaymentConfirmationCredential(
std::make_unique<SecurePaymentConfirmationCredential>(credential_id,
rp_id, user_id),
/*consumer=*/this);
}
void SecurePaymentConfirmationService::MakePaymentCredential(
blink::mojom::PublicKeyCredentialCreationOptionsPtr options,
MakePaymentCredentialCallback callback) {
std::string relying_party_id;
std::optional<PasskeyBrowserBinder::UnboundKey> browser_bound_key;
#if BUILDFLAG(IS_ANDROID)
if (options &&
base::FeatureList::IsEnabled(
blink::features::kSecurePaymentConfirmationBrowserBoundKeys)) {
relying_party_id = options->relying_party.id;
if (!passkey_browser_binder_) {
if (scoped_refptr<BrowserBoundKeyStore> key_store =
GetBrowserBoundKeyStoreInstance()) {
passkey_browser_binder_ = std::make_unique<PasskeyBrowserBinder>(
key_store, web_data_service_);
}
}
if (passkey_browser_binder_ &&
!render_frame_host().GetBrowserContext()->IsOffTheRecord()) {
// TODO(crbug.com/384940850): Regenerate the browser bound key identifier
// if a browser bound key with the same identifier already exists.
// TODO(crbug.com/377278827): Provide the browser bound public key
// credential parameters from the payment extensions to the key store.
browser_bound_key = passkey_browser_binder_->CreateUnboundKey(
options->payment_browser_bound_key_parameters.value_or(
options->public_key_parameters));
}
auto payment_options = ::blink::mojom::PaymentOptions::New();
payment_options->total = mojom::PaymentCurrencyAmount::New();
payment_options->instrument =
::blink::mojom::PaymentCredentialInstrument::New();
if (browser_bound_key) {
payment_options->browser_bound_public_key =
browser_bound_key->Get().GetPublicKeyAsCoseKey();
}
authenticator_->SetPaymentOptions(std::move(payment_options));
}
#endif // BUILDFLAG(IS_ANDROID)
authenticator_->MakeCredential(
std::move(options),
base::BindOnce(
&SecurePaymentConfirmationService::OnAuthenticatorMakeCredential,
weak_ptr_factory_.GetWeakPtr(), std::move(callback),
std::move(relying_party_id), std::move(browser_bound_key)));
}
#if BUILDFLAG(IS_ANDROID)
void SecurePaymentConfirmationService::SetPasskeyBrowserBinderForTesting(
std::unique_ptr<PasskeyBrowserBinder> passkey_browser_binder) {
passkey_browser_binder_ = std::move(passkey_browser_binder);
}
#endif // BUILDFLAG(IS_ANDROID)
void SecurePaymentConfirmationService::OnWebDataServiceRequestDone(
WebDataServiceBase::Handle h,
std::unique_ptr<WDTypedResult> result) {
if (state_ != State::kStoringCredential || !IsCurrentStateValid() ||
data_service_request_handle_ != h) {
Reset();
return;
}
auto callback = std::move(storage_callback_);
Reset();
std::move(callback).Run(
result && static_cast<WDResult<bool>*>(result.get())->GetValue()
? mojom::PaymentCredentialStorageStatus::SUCCESS
: mojom::PaymentCredentialStorageStatus::FAILED_TO_STORE_CREDENTIAL);
}
// Handles the authenticator make credential callback by adding the browser
// bound signature, then running the callback.
void SecurePaymentConfirmationService::OnAuthenticatorMakeCredential(
SecurePaymentConfirmationService::MakePaymentCredentialCallback callback,
std::string relying_party,
std::optional<PasskeyBrowserBinder::UnboundKey> browser_bound_key,
::blink::mojom::AuthenticatorStatus authenticator_status,
::blink::mojom::MakeCredentialAuthenticatorResponsePtr response,
::blink::mojom::WebAuthnDOMExceptionDetailsPtr maybe_exception_details) {
#if BUILDFLAG(IS_ANDROID)
if (response &&
base::FeatureList::IsEnabled(
blink::features::kSecurePaymentConfirmationBrowserBoundKeys)) {
if (browser_bound_key) {
std::vector<uint8_t> signature_output =
browser_bound_key->Get().Sign(response->info->client_data_json);
response->payment =
blink::mojom::AuthenticationExtensionsPaymentResponse::New();
response->payment->browser_bound_signature = std::move(signature_output);
passkey_browser_binder_->BindKey(std::move(*browser_bound_key),
response->info->raw_id,
std::move(relying_party));
}
}
#endif
std::move(callback).Run(authenticator_status, std::move(response),
std::move(maybe_exception_details));
}
bool SecurePaymentConfirmationService::IsCurrentStateValid() const {
if (!content::IsFrameAllowedToUseSecurePaymentConfirmation(
&render_frame_host()) ||
!web_data_service_) {
return false;
}
switch (state_) {
case State::kIdle:
return !storage_callback_ && !data_service_request_handle_;
case State::kStoringCredential:
return storage_callback_ && data_service_request_handle_;
}
}
void SecurePaymentConfirmationService::RecordFirstSystemPromptResult(
SecurePaymentConfirmationEnrollSystemPromptResult result) {
if (!is_system_prompt_result_recorded_) {
is_system_prompt_result_recorded_ = true;
RecordEnrollSystemPromptResult(result);
}
}
void SecurePaymentConfirmationService::Reset() {
// Callbacks must either be run or disconnected before being destroyed, so
// run them if they are still connected.
if (storage_callback_) {
std::move(storage_callback_)
.Run(mojom::PaymentCredentialStorageStatus::FAILED_TO_STORE_CREDENTIAL);
}
if (web_data_service_ && data_service_request_handle_) {
web_data_service_->CancelRequest(data_service_request_handle_.value());
}
data_service_request_handle_.reset();
is_system_prompt_result_recorded_ = false;
state_ = State::kIdle;
}
} // namespace payments
|