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 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_WEBAUTH_AUTHENTICATOR_COMMON_IMPL_H_
#define CONTENT_BROWSER_WEBAUTH_AUTHENTICATOR_COMMON_IMPL_H_
#include <stdint.h>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/memory/weak_ptr.h"
#include "base/types/strong_alias.h"
#include "content/browser/webauth/client_data_json.h"
#include "content/common/content_export.h"
#include "content/public/browser/authenticator_common.h"
#include "content/public/browser/authenticator_request_client_delegate.h"
#include "content/public/browser/global_routing_id.h"
#include "content/public/browser/web_authentication_request_proxy.h"
#include "device/fido/authenticator_get_assertion_response.h"
#include "device/fido/authenticator_make_credential_response.h"
#include "device/fido/fido_request_handler_base.h"
#include "device/fido/make_credential_request_handler.h"
#include "third_party/blink/public/mojom/webauthn/authenticator.mojom.h"
namespace device {
class FidoDiscoveryFactory;
enum class FidoReturnCode : uint8_t;
enum class GetAssertionStatus;
enum class MakeCredentialStatus;
} // namespace device
namespace url {
class Origin;
}
namespace content {
class BrowserContext;
class RenderFrameHost;
class WebAuthRequestSecurityChecker;
enum class RequestExtension;
enum class AttestationErasureOption;
// https://w3c.github.io/webauthn/#enumdef-clientcapability
namespace client_capabilities {
// This is the subset of client capabilities computed by the browser. See also
// //third_party/blink/renderer/modules/credentialmanagement/public_key_credential.cc.
inline constexpr char kConditionalCreate[] = "conditionalCreate";
inline constexpr char kConditionalGet[] = "conditionalGet";
inline constexpr char kHybridTransport[] = "hybridTransport";
inline constexpr char kPasskeyPlatformAuthenticator[] =
"passkeyPlatformAuthenticator";
inline constexpr char kUserVerifyingPlatformAuthenticator[] =
"userVerifyingPlatformAuthenticator";
inline constexpr char kRelatedOrigins[] = "relatedOrigins";
inline constexpr char kImmediateGet[] = "immediateGet";
} // namespace client_capabilities
// Common code for any WebAuthn Authenticator interfaces.
class CONTENT_EXPORT AuthenticatorCommonImpl : public AuthenticatorCommon {
public:
// ServingRequestsFor enumerates the sources of WebAuthn requests.
enum class ServingRequestsFor {
// kInternalUses is for synthesized requests that don't originate from
// any Javascript call.
kInternalUses,
// kWebContents is for typical cases where Javascript is making a
// `navigator.credentials` call.
kWebContents,
};
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class CredentialRequestResult {
kTimeout = 0,
kUserCancelled = 1,
kWinNativeSuccess = 2,
kWinNativeError = 3,
kTouchIDSuccess = 4,
kTouchIDError = 5,
kChromeOSSuccess = 6,
kChromeOSError = 7,
kPhoneSuccess = 8,
kPhoneError = 9,
kICloudKeychainSuccess = 10,
kICloudKeychainError = 11,
kEnclaveSuccess = 12,
kEnclaveError = 13,
kOtherSuccess = 14,
kOtherError = 15,
kMaxValue = kOtherError,
};
// Creates a new AuthenticatorCommonImpl. Callers must ensure that this
// instance outlives the RenderFrameHost.
explicit AuthenticatorCommonImpl(RenderFrameHost* render_frame_host,
ServingRequestsFor serving_requests_for);
AuthenticatorCommonImpl(const AuthenticatorCommonImpl&) = delete;
AuthenticatorCommonImpl& operator=(const AuthenticatorCommonImpl&) = delete;
~AuthenticatorCommonImpl() override;
// AuthenticatorCommon:
void MakeCredential(
url::Origin caller_origin,
blink::mojom::PublicKeyCredentialCreationOptionsPtr options,
blink::mojom::Authenticator::MakeCredentialCallback callback) override;
void GetCredential(
url::Origin caller_origin,
blink::mojom::PublicKeyCredentialRequestOptionsPtr options,
blink::mojom::PaymentOptionsPtr payment,
blink::mojom::Authenticator::GetCredentialCallback callback) override;
void IsUserVerifyingPlatformAuthenticatorAvailable(
url::Origin caller_origin,
blink::mojom::Authenticator::
IsUserVerifyingPlatformAuthenticatorAvailableCallback callback)
override;
void IsConditionalMediationAvailable(
url::Origin caller_origin,
blink::mojom::Authenticator::IsConditionalMediationAvailableCallback
callback) override;
void Cancel() override;
void Cleanup() override;
void DisableUI() override;
void DisableTLSCheck() override;
RenderFrameHost* GetRenderFrameHost() const override;
void EnableRequestProxyExtensionsAPISupport() override;
// GetClientCapabilities returns a list WebAuthn capabilities of the browser
// via the `callback` parameter. Websites can use this information to
// determine which WebAuthn features and extensions are supported and tailor
// their requests accordingly.
void GetClientCapabilities(
url::Origin caller_origin,
blink::mojom::Authenticator::GetClientCapabilitiesCallback callback);
// Report attempts to report a WebAuthn credential on behalf of
// `caller_origin` using the supplied `options` and invokes `callback` with
// the result.
void Report(url::Origin caller_origin,
blink::mojom::PublicKeyCredentialReportOptionsPtr options,
blink::mojom::Authenticator::ReportCallback callback);
protected:
// MaybeCreateRequestDelegate returns the embedder-provided implementation of
// AuthenticatorRequestClientDelegate, which encapsulates per-request state
// relevant to the embedder, e.g. because it is used to display browser UI.
//
// Chrome may return nullptr here in order to ensure that at most one request
// per WebContents is ongoing at once.
virtual std::unique_ptr<AuthenticatorRequestClientDelegate>
MaybeCreateRequestDelegate();
private:
friend class AuthenticatorImplTest;
struct RequestState;
// A RequestKey is a magic value that identifies a request. Since requests can
// be canceled, some callbacks need to ensure that they're still operating on
// the same request when they resolve.
using RequestKey = base::StrongAlias<class RequestKeyTag, uint64_t>;
// Enumerates whether or not to check that the WebContents has focus.
enum class Focus {
kDoCheck,
kDontCheck,
};
void ContinueMakeCredentialAfterRpIdCheck(
RequestKey request_key,
url::Origin caller_origin,
blink::mojom::PublicKeyCredentialCreationOptionsPtr options,
bool is_cross_origin_iframe,
blink::mojom::AuthenticatorStatus rp_id_validation_result);
void ContinueMakeCredentialAfterBrowserPasskeysAvailabilityCheck(
RequestKey request_key,
bool available);
void ContinueMakeCredentialAfterIsUvpaaOverrideCheck(
RequestKey request_key,
std::optional<bool> is_uvpaa_override);
void ContinueGetAssertionAfterRpIdCheck(
RequestKey request_key,
url::Origin caller_origin,
blink::mojom::PublicKeyCredentialRequestOptionsPtr options,
blink::mojom::PaymentOptionsPtr payment_options,
bool is_cross_origin_iframe,
blink::mojom::AuthenticatorStatus rp_id_validation_result);
void ContinueGetAssertionAfterBrowserPasskeysAvailabilityCheck(
RequestKey request_key,
bool available);
void ContinueGetAssertionAfterIsUvpaaOverrideCheck(
RequestKey request_key,
std::optional<bool> is_uvpaa_override);
void ContinueIsUvpaaAfterOverrideCheck(
blink::mojom::Authenticator::
IsUserVerifyingPlatformAuthenticatorAvailableCallback callback,
bool is_get_client_capabilities_call,
std::optional<bool> is_uvpaa_override);
void ContinueIsConditionalMediationAvailableAfterOverrideCheck(
url::Origin caller_origin,
blink::mojom::Authenticator::IsConditionalMediationAvailableCallback
callback,
std::optional<bool> is_uvpaa_override);
void ContinueReportAfterRpIdCheck(
RequestKey request_key,
blink::mojom::PublicKeyCredentialReportOptionsPtr options,
blink::mojom::AuthenticatorStatus rp_id_validation_result);
void GetMetricsWrappedMakeCredentialCallback(
blink::mojom::Authenticator::MakeCredentialCallback callback,
blink::mojom::AuthenticatorStatus status,
blink::mojom::MakeCredentialAuthenticatorResponsePtr
authenticator_response,
blink::mojom::WebAuthnDOMExceptionDetailsPtr dom_exception_details);
void GetMetricsWrappedGetCredentialCallback(
blink::mojom::Authenticator::GetCredentialCallback callback,
blink::mojom::GetCredentialResponsePtr response);
// Replaces the current |request_handler_| with a
// |MakeCredentialRequestHandler|, effectively restarting the request.
void StartMakeCredentialRequest(bool allow_skipping_pin_touch);
// Replaces the current |request_handler_| with a
// |GetAssertionRequestHandler|, effectively restarting the request.
void StartGetAssertionRequest(bool allow_skipping_pin_touch);
bool IsFocused() const;
// Checks if hybrid transport is supported on this device, i.e. if it has a
// Bluetooth adapter that supports BLE. If so, runs |callback| with `true`.
// Otherwise, or if Bluetooth is disabled by Permissions Policy, runs
// |callback| with `false`.
void IsHybridTransportSupported(base::OnceCallback<void(bool)> callback);
// `is_get_client_capabilities_call` is true if this call originated from the
// `GetClientCapabilities` method. The UMA metric is only recorded if this is
// false, i.e. the call came directly from
// `IsUserVerifyingPlatformAuthenticatorAvailable`.
void IsUvpaaAvailableInternal(
url::Origin caller_origin,
blink::mojom::Authenticator::
IsUserVerifyingPlatformAuthenticatorAvailableCallback callback,
bool is_get_client_capabilities_call);
void DispatchGetAssertionRequest(
const std::string& authenticator_id,
std::optional<std::vector<uint8_t>> credential_id);
// Callback to handle the async response from a U2fDevice.
void OnRegisterResponse(
device::MakeCredentialStatus status_code,
std::optional<device::AuthenticatorMakeCredentialResponse> response_data,
const device::FidoAuthenticator* authenticator);
// Callback to handle the async response from a U2fDevice.
void OnSignResponse(
device::GetAssertionStatus status_code,
std::optional<std::vector<device::AuthenticatorGetAssertionResponse>>
response_data,
device::FidoAuthenticator* authenticator);
// Begins a timeout at the beginning of a request.
void BeginRequestTimeout(std::optional<base::TimeDelta> timeout);
// Called when a request times out. This is for options.timeout parameter.
void OnTimeout();
// Begins a timeout at the beginning of an immediate mediation request.
void BeginImmediateRequestTimeout();
// Called when an immediate mediation request times out.
void OnImmediateTimeout();
// Cancels the immediate mediation timer when the UI is shown.
void CancelImmediateTimeout();
// Cancels the currently pending request (if any) with the supplied status.
void CancelWithStatus(blink::mojom::AuthenticatorStatus status);
// Runs when the user cancels WebAuthN request via UI dialog.
void OnCancelFromUI();
// Called when a GetAssertion has completed, either because an allow_list was
// used and so an answer is returned directly, or because the user selected an
// account from the options.
void OnAccountSelected(device::AuthenticatorGetAssertionResponse response);
// Signals to the request delegate that the request has failed for |reason|.
// The request delegate decides whether to present the user with a visual
// error before the request is finally resolved with |status|.
void SignalFailureToRequestDelegate(
AuthenticatorRequestClientDelegate::InterestingFailureReason reason,
blink::mojom::AuthenticatorStatus status);
// Creates a make credential response
blink::mojom::MakeCredentialAuthenticatorResponsePtr
CreateMakeCredentialResponse(
device::AuthenticatorMakeCredentialResponse response_data,
AttestationErasureOption attestation_erasure);
// Runs |make_credential_response_callback_| and then Cleanup().
void CompleteMakeCredentialRequest(
blink::mojom::AuthenticatorStatus status,
blink::mojom::MakeCredentialAuthenticatorResponsePtr response = nullptr,
blink::mojom::WebAuthnDOMExceptionDetailsPtr dom_exception_details =
nullptr,
Focus focus_check = Focus::kDontCheck);
// Creates a get assertion response.
blink::mojom::GetAssertionAuthenticatorResponsePtr CreateGetAssertionResponse(
device::AuthenticatorGetAssertionResponse response_data);
// Runs |get_assertion_response_callback_| and then Cleanup().
void CompleteGetAssertionRequest(
blink::mojom::AuthenticatorStatus status,
blink::mojom::GetAssertionAuthenticatorResponsePtr response = nullptr,
blink::mojom::WebAuthnDOMExceptionDetailsPtr dom_exception_details =
nullptr);
void HandlePasswordResponse(password_manager::CredentialInfo credential);
AuthenticatorRequestClientDelegate::RequestSource RequestSource() const;
BrowserContext* GetBrowserContext() const;
// Runs |report_response_callback_| and then Cleanup().
void CompleteReportRequest(blink::mojom::AuthenticatorStatus status,
blink::mojom::WebAuthnDOMExceptionDetailsPtr
dom_exception_details = nullptr);
// Returns the FidoDiscoveryFactory for the current request. This may be a
// real instance, or one injected by the Virtual Authenticator environment, or
// a unit testing fake. InitDiscoveryFactory() must be called before this
// accessor. It gets reset at the end of each request by Cleanup().
device::FidoDiscoveryFactory* discovery_factory();
void InitDiscoveryFactory();
WebAuthenticationRequestProxy* GetWebAuthnRequestProxyIfActive(
const url::Origin& caller_origin);
void OnMakeCredentialProxyResponse(
RequestKey request_key,
WebAuthenticationRequestProxy::RequestId request_id,
blink::mojom::WebAuthnDOMExceptionDetailsPtr error,
blink::mojom::MakeCredentialAuthenticatorResponsePtr response);
void OnGetAssertionProxyResponse(
RequestKey request_key,
WebAuthenticationRequestProxy::RequestId request_id,
blink::mojom::WebAuthnDOMExceptionDetailsPtr error,
blink::mojom::GetAssertionAuthenticatorResponsePtr response);
void UpdateChallengeFromUrl(
ClientDataJsonParams params,
std::optional<base::span<const uint8_t>> challenge);
// Get an identifier for the current request. Callbacks that might span a
// cancelation must hold one of these values to check whether they're still
// pertinent when called.
RequestKey GetRequestKey();
// Check whether the given `RequestKey` identifies the current request.
[[nodiscard]] bool CheckRequestKey(RequestKey key);
const GlobalRenderFrameHostId render_frame_host_id_;
const ServingRequestsFor serving_requests_for_;
const scoped_refptr<WebAuthRequestSecurityChecker> security_checker_;
// These members hold state that spans different requests. All
// request-specific state should go in `RequestState` to ensure that it's
// cleared between requests.
bool disable_tls_check_ = false;
bool disable_ui_ = false;
bool enable_request_proxy_api_ = false;
// The RequestKey of the next request. This starts at one so that a
// `RequestKey` that was default initialized to zero is invalid.
uint64_t next_request_key_ = 1;
// req_state_ contains all state specific to a single WebAuthn call. It
// only contains a value when a request is being processed.
std::unique_ptr<RequestState> req_state_;
// Cached values from the WebAuthenticationDelegate.
bool browser_passkeys_available_ = false;
std::optional<bool> is_uvpaa_override_;
base::WeakPtrFactory<AuthenticatorCommonImpl> weak_factory_{this};
};
} // namespace content
#endif // CONTENT_BROWSER_WEBAUTH_AUTHENTICATOR_COMMON_IMPL_H_
|