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
|
// 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.
#ifndef COMPONENTS_TRUSTED_VAULT_TRUSTED_VAULT_CONNECTION_H_
#define COMPONENTS_TRUSTED_VAULT_TRUSTED_VAULT_CONNECTION_H_
#include <memory>
#include <optional>
#include <set>
#include <variant>
#include <vector>
#include "base/functional/callback_forward.h"
#include "base/time/time.h"
#include "base/types/strong_alias.h"
struct CoreAccountInfo;
namespace trusted_vault_pb {
enum SecurityDomainMember_MemberType : int;
} // namespace trusted_vault_pb
namespace trusted_vault {
class SecureBoxKeyPair;
class SecureBoxPublicKey;
enum class TrustedVaultRegistrationStatus {
kSuccess,
// Used when member corresponding to authentication factor already exists and
// local keys that were sent as part of the request aren't stale.
kAlreadyRegistered,
// Used when trusted vault request can't be completed successfully due to
// vault key being outdated or device key being not registered.
kLocalDataObsolete,
// Used when request wasn't sent due to transient auth error that prevented
// fetching an access token.
kTransientAccessTokenFetchError,
// Used when request wasn't sent due to persistent auth error that prevented
// fetching an access token.
kPersistentAccessTokenFetchError,
// Used when request wasn't sent because primary account changed meanwhile.
kPrimaryAccountChangeAccessTokenFetchError,
// Used for all network errors.
kNetworkError,
// Used for all http and protocol errors not covered by the above.
kOtherError,
};
enum class TrustedVaultDownloadKeysStatus {
kSuccess,
// Member corresponding to the authentication factor doesn't exist.
kMemberNotFound,
// Member corresponding to the authentication factor not registered in the
// security domain.
kMembershipNotFound,
// Membership exists but is corrupted.
kMembershipCorrupted,
// Membership exists but is empty.
kMembershipEmpty,
// Keys were successfully downloaded and verified, but no new keys exist.
kNoNewKeys,
// At least one of the key proofs isn't valid or unable to verify them using
// latest local trusted vault key (e.g. it's too old).
kKeyProofsVerificationFailed,
// Used when request isn't sent due to access token fetching failure.
kAccessTokenFetchingFailure,
// Used for all network errors.
kNetworkError,
// Used for all http and protocol errors, when no statuses above fits.
kOtherError,
};
// This enum is used in histograms. These values are persisted to logs. Entries
// should not be renumbered and numeric values should never be reused, only add
// at the end and. Also remember to update in tools/metrics/histograms/enums.xml
// TrustedVaultRecoverabilityStatus enum.
// LINT.IfChange(TrustedVaultRecoverabilityStatus)
enum class TrustedVaultRecoverabilityStatus {
// Recoverability status not retrieved due to network, http or protocol error.
kNotDegraded = 0,
kDegraded = 1,
kError = 2,
kMaxValue = kError,
};
// LINT.ThenChange(/tools/metrics/histograms/metadata/trusted_vault/enums.xml:TrustedVaultRecoverabilityStatus)
// Contains metadata about a Google Password Manager PIN that is stored in
// a trusted vault and can be used for recovery.
struct UsableRecoveryPinMetadata {
UsableRecoveryPinMetadata(std::string wrapped_pin, base::Time expiry);
UsableRecoveryPinMetadata(const UsableRecoveryPinMetadata&);
UsableRecoveryPinMetadata& operator=(const UsableRecoveryPinMetadata&);
UsableRecoveryPinMetadata(UsableRecoveryPinMetadata&&);
UsableRecoveryPinMetadata& operator=(UsableRecoveryPinMetadata&&);
~UsableRecoveryPinMetadata();
bool operator==(const UsableRecoveryPinMetadata&) const;
// The encrypted PIN value, for validation.
std::string wrapped_pin;
// The time when the underlying recovery-key-store entry will expire. Ignored
// when uploading.
base::Time expiry;
};
// Contains information about a Google Password Manager PIN that is stored in
// a trusted vault.
struct GpmPinMetadata {
GpmPinMetadata(std::optional<std::string> public_key,
std::optional<UsableRecoveryPinMetadata> pin_metadata);
GpmPinMetadata(const GpmPinMetadata&);
GpmPinMetadata& operator=(const GpmPinMetadata&);
GpmPinMetadata(GpmPinMetadata&&);
GpmPinMetadata& operator=(GpmPinMetadata&&);
~GpmPinMetadata();
bool operator==(const GpmPinMetadata&) const;
// The securebox public key for the virtual member. This will always have a
// value when this metadata is downloaded with
// `DownloadAuthenticationFactorsRegistrationState`. When used with
// `RegisterAuthenticationFactor`, this can be empty to upload the first GPM
// PIN to an account, but it must be set to replace a GPM PIN.
std::optional<std::string> public_key;
// Contains metadata about the PIN member. If present, the PIN can be used for
// recovery. If not present, the PIN cannot be used for recovery, but it might
// be necessary to refer to its properties when changing or renewing it.
std::optional<UsableRecoveryPinMetadata> usable_pin_metadata;
};
// A MemberKeys contains the cryptographic outputs needed to add or use an
// authentication factor: the trusted vault key, encrypted to the public key of
// the member, and an authenticator of that public key.
struct MemberKeys {
MemberKeys(int version,
std::vector<uint8_t> wrapped_key,
std::vector<uint8_t> proof);
MemberKeys(const MemberKeys&) = delete;
MemberKeys& operator=(const MemberKeys&) = delete;
MemberKeys(MemberKeys&&);
MemberKeys& operator=(MemberKeys&&);
~MemberKeys();
int version;
std::vector<uint8_t> wrapped_key;
std::vector<uint8_t> proof;
};
// A vault member public key and its member keys.
struct VaultMember {
VaultMember(std::unique_ptr<SecureBoxPublicKey> public_key,
std::vector<MemberKeys> member_keys);
VaultMember(const VaultMember&) = delete;
VaultMember& operator=(const VaultMember&) = delete;
VaultMember(VaultMember&&);
VaultMember& operator=(VaultMember&&);
~VaultMember();
std::unique_ptr<SecureBoxPublicKey> public_key;
std::vector<MemberKeys> member_keys;
};
// The result of calling
// DownloadAuthenticationFactorsRegistrationState.
struct DownloadAuthenticationFactorsRegistrationStateResult {
DownloadAuthenticationFactorsRegistrationStateResult();
DownloadAuthenticationFactorsRegistrationStateResult(
DownloadAuthenticationFactorsRegistrationStateResult&&);
DownloadAuthenticationFactorsRegistrationStateResult& operator=(
DownloadAuthenticationFactorsRegistrationStateResult&&);
~DownloadAuthenticationFactorsRegistrationStateResult();
// These values are persisted in histograms. Entries should not be renumbered
// and numeric values should never be reused.
enum class State {
// The state of the security domain could not be determined.
kError = 0,
// The security domain is empty and thus doesn't have any secrets.
kEmpty = 1,
// The security domain is non-empty, but has virtual devices that are valid
// for recovery.
kRecoverable = 2,
// The security domain is non-empty, but has no virtual devices that can be
// used for recovery.
kIrrecoverable = 3,
kMaxValue = kIrrecoverable,
};
State state = State::kError;
// If there are members in the domain then this will contain the current key
// version.
std::optional<int> key_version;
// The expiry time of any LSKF virtual devices.
std::vector<base::Time> lskf_expiries;
// If a Google Password Manager PIN is a member of the domain, then this will
// contain its metadata.
std::optional<GpmPinMetadata> gpm_pin_metadata;
// The list of iCloud recovery key domain members.
std::vector<VaultMember> icloud_keys;
};
// Authentication factor types:
using LocalPhysicalDevice =
base::StrongAlias<class LocalPhysicalDeviceTag, std::monostate>;
using LockScreenKnowledgeFactor =
base::StrongAlias<class VirtualDeviceTag, std::monostate>;
using ICloudKeychain =
base::StrongAlias<class ICloudKeychainTag, std::monostate>;
// UnspecifiedAuthenticationFactorType carries a type hint for the backend.
using UnspecifiedAuthenticationFactorType =
base::StrongAlias<class UnspecifiedAuthenticationFactorTypeTag, int>;
using AuthenticationFactorTypeAndRegistrationParams =
std::variant<LocalPhysicalDevice,
LockScreenKnowledgeFactor,
UnspecifiedAuthenticationFactorType,
GpmPinMetadata,
ICloudKeychain>;
struct TrustedVaultKeyAndVersion {
TrustedVaultKeyAndVersion(const std::vector<uint8_t>& key, int version);
TrustedVaultKeyAndVersion(const TrustedVaultKeyAndVersion& other);
TrustedVaultKeyAndVersion& operator=(const TrustedVaultKeyAndVersion& other);
~TrustedVaultKeyAndVersion();
bool operator==(const TrustedVaultKeyAndVersion& other) const;
std::vector<uint8_t> key;
int version;
};
// Returns a vector of `TrustedVaultKeyAndVersion` given a vector of keys and
// the version of the last key, assuming that the versions are sequential.
std::vector<TrustedVaultKeyAndVersion> GetTrustedVaultKeysWithVersions(
const std::vector<std::vector<uint8_t>>& trusted_vault_keys,
int last_key_version);
// A MemberKeysSource provides a method of calculating the values needed to
// add an authenticator factor.
using MemberKeysSource =
std::variant<std::vector<TrustedVaultKeyAndVersion>, MemberKeys>;
// Supports interaction with vault service, all methods must called on trusted
// vault backend sequence.
class TrustedVaultConnection {
public:
// The result of attempting to add a member to the security domain. If the
// status is successful then `key_version` carries the current version of
// the security domain, otherwise it's zero.
using RegisterAuthenticationFactorCallback =
base::OnceCallback<void(TrustedVaultRegistrationStatus,
/*key_version=*/int)>;
using DownloadNewKeysCallback =
base::OnceCallback<void(TrustedVaultDownloadKeysStatus,
const std::vector<std::vector<uint8_t>>& /*keys*/,
int /*last_key_version*/)>;
using IsRecoverabilityDegradedCallback =
base::OnceCallback<void(TrustedVaultRecoverabilityStatus)>;
using DownloadAuthenticationFactorsRegistrationStateCallback =
base::OnceCallback<void(
DownloadAuthenticationFactorsRegistrationStateResult)>;
// Used to control ongoing request lifetime, destroying Request object causes
// request cancellation.
class Request {
public:
Request() = default;
Request(const Request& other) = delete;
Request& operator=(const Request& other) = delete;
virtual ~Request() = default;
};
TrustedVaultConnection() = default;
TrustedVaultConnection(const TrustedVaultConnection& other) = delete;
TrustedVaultConnection& operator=(const TrustedVaultConnection& other) =
delete;
virtual ~TrustedVaultConnection() = default;
// Asynchronously attempts to register the authentication factor on the
// trusted vault server to allow further vault server API calls using this
// authentication factor. Calls |callback| upon completion, unless the
// returned object is destroyed earlier. Caller should hold returned request
// object until |callback| call or until request needs to be cancelled.
// |trusted_vault_keys| must be ordered by version and must not be empty.
// TODO(crbug.com/406191378): Rename to ...RecoveryFactor.
[[nodiscard]] virtual std::unique_ptr<Request> RegisterAuthenticationFactor(
const CoreAccountInfo& account_info,
const MemberKeysSource& member_keys_source,
const SecureBoxPublicKey& authentication_factor_public_key,
AuthenticationFactorTypeAndRegistrationParams
authentication_factor_type_and_registration_params,
RegisterAuthenticationFactorCallback callback) = 0;
// Special version of the above for the case where the caller has no local
// keys available. Attempts to register the device using constant key. May
// succeed only if constant key is the only key known server-side.
[[nodiscard]] virtual std::unique_ptr<Request> RegisterLocalDeviceWithoutKeys(
const CoreAccountInfo& account_info,
const SecureBoxPublicKey& device_public_key,
RegisterAuthenticationFactorCallback callback) = 0;
// Asynchronously attempts to download new vault keys (e.g. keys with version
// greater than the on in |last_trusted_vault_key_and_version|) from the
// trusted vault server. Caller should hold returned request object until
// |callback| call or until request needs to be cancelled.
[[nodiscard]] virtual std::unique_ptr<Request> DownloadNewKeys(
const CoreAccountInfo& account_info,
const TrustedVaultKeyAndVersion& last_trusted_vault_key_and_version,
std::unique_ptr<SecureBoxKeyPair> device_key_pair,
DownloadNewKeysCallback callback) = 0;
// Asynchronously attempts to download degraded recoverability status from the
// trusted vault server. Caller should hold returned request object until
// |callback| call or until request needs to be cancelled.
[[nodiscard]] virtual std::unique_ptr<Request>
DownloadIsRecoverabilityDegraded(
const CoreAccountInfo& account_info,
IsRecoverabilityDegradedCallback callback) = 0;
// Enumerates the members of the security domain and determines the
// recoverability of the security domain. (See the values of
// `DownloadAuthenticationFactorsRegistrationStateResult`.)
// |keep_alive_callback| will be called whenever there's a partial response
// from the server, i.e. we got a response but we still need more data.
// TODO(crbug.com/406191378): Rename to ...RecoveryFactor.
[[nodiscard]] virtual std::unique_ptr<Request>
DownloadAuthenticationFactorsRegistrationState(
const CoreAccountInfo& account_info,
DownloadAuthenticationFactorsRegistrationStateCallback callback,
base::RepeatingClosure keep_alive_callback) = 0;
// Enumerates the members of the security domain and determines the
// recoverability of the security domain. (See the values of
// `DownloadAuthenticationFactorsRegistrationStateResult`.)
// If |AuthenticationFactorType| is non-empty, then only information from the
// authentication factor types in that set is fetched and taken into account
// when constructing the result. |keep_alive_callback| will be called whenever
// there's a partial response from the server, i.e. we got a response but we
// still need more data.
// TODO(crbug.com/406191378): Rename to ...RecoveryFactor.
[[nodiscard]] virtual std::unique_ptr<Request>
DownloadAuthenticationFactorsRegistrationState(
const CoreAccountInfo& account_info,
std::set<trusted_vault_pb::SecurityDomainMember_MemberType>
recovery_factor_filter,
DownloadAuthenticationFactorsRegistrationStateCallback callback,
base::RepeatingClosure keep_alive_callback) = 0;
};
} // namespace trusted_vault
#endif // COMPONENTS_TRUSTED_VAULT_TRUSTED_VAULT_CONNECTION_H_
|