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
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ash/auth/legacy_fingerprint_engine.h"
#include "ash/constants/ash_features.h"
#include "ash/constants/ash_pref_names.h"
#include "ash/constants/ash_switches.h"
#include "base/command_line.h"
#include "base/containers/contains.h"
#include "base/feature_list.h"
#include "base/notreached.h"
#include "chrome/browser/ash/login/quick_unlock/quick_unlock_utils.h"
#include "chrome/browser/ash/profiles/profile_helper.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chromeos/ash/components/cryptohome/auth_factor.h"
#include "chromeos/ash/components/login/auth/auth_performer.h"
#include "chromeos/ash/components/login/auth/public/auth_callbacks.h"
#include "chromeos/ash/components/login/auth/public/authentication_error.h"
#include "chromeos/ash/components/login/auth/public/user_context.h"
#include "components/prefs/pref_service.h"
namespace ash {
namespace {
const char kFactorsOptionAll[] = "all";
const char kFactorsOptionFingerprint[] = "FINGERPRINT";
bool HasPolicyValue(const PrefService& pref_service,
LegacyFingerprintEngine::Purpose purpose,
const char* value) {
const base::Value::List* factors = nullptr;
switch (purpose) {
case LegacyFingerprintEngine::Purpose::kUnlock:
factors = &pref_service.GetList(prefs::kQuickUnlockModeAllowlist);
break;
case LegacyFingerprintEngine::Purpose::kWebAuthn:
factors = &pref_service.GetList(prefs::kWebAuthnFactors);
break;
default:
return false;
}
return base::Contains(*factors, base::Value(value));
}
// Check if fingerprint is disabled for a specific purpose (so not including
// kAny) by reading the policy value.
bool IsFingerprintDisabledByPolicySinglePurpose(
const PrefService& pref_service,
LegacyFingerprintEngine::Purpose purpose) {
DCHECK(purpose != LegacyFingerprintEngine::Purpose::kAny);
const bool enabled =
HasPolicyValue(pref_service, purpose, kFactorsOptionAll) ||
HasPolicyValue(pref_service, purpose, kFactorsOptionFingerprint);
return !enabled;
}
bool HasRecord(const PrefService& pref_service) {
return pref_service.GetInteger(prefs::kQuickUnlockFingerprintRecord) != 0;
}
} // namespace
LegacyFingerprintEngine::LegacyFingerprintEngine(AuthPerformer* auth_performer)
: auth_performer_(auth_performer) {}
LegacyFingerprintEngine::~LegacyFingerprintEngine() = default;
LegacyFingerprintEngine::Purpose
LegacyFingerprintEngine::FromQuickUnlockPurpose(
quick_unlock::Purpose purpose) const {
switch (purpose) {
case quick_unlock::Purpose::kAny:
return LegacyFingerprintEngine::Purpose::kAny;
case quick_unlock::Purpose::kUnlock:
return LegacyFingerprintEngine::Purpose::kUnlock;
case quick_unlock::Purpose::kWebAuthn:
return LegacyFingerprintEngine::Purpose::kWebAuthn;
case quick_unlock::Purpose::kNumOfPurposes:
NOTREACHED();
}
NOTREACHED();
}
quick_unlock::Purpose LegacyFingerprintEngine::ToQuickUnlockPurpose(
LegacyFingerprintEngine::Purpose purpose) const {
switch (purpose) {
case LegacyFingerprintEngine::Purpose::kAny:
return quick_unlock::Purpose::kAny;
case LegacyFingerprintEngine::Purpose::kUnlock:
return quick_unlock::Purpose::kUnlock;
case LegacyFingerprintEngine::Purpose::kWebAuthn:
return quick_unlock::Purpose::kWebAuthn;
}
NOTREACHED();
}
bool LegacyFingerprintEngine::IsFingerprintDisabledByPolicy(
const PrefService& pref_service,
LegacyFingerprintEngine::Purpose purpose) const {
// TODO(b/274087315): Create a TestApi for this class.
if (auto* test_api = quick_unlock::TestApi::Get();
test_api && test_api->IsQuickUnlockOverridden()) {
return !test_api->IsFingerprintEnabledByPolicy(
ToQuickUnlockPurpose(purpose));
}
if (purpose == LegacyFingerprintEngine::Purpose::kAny) {
return IsFingerprintDisabledByPolicySinglePurpose(
pref_service, LegacyFingerprintEngine::Purpose::kUnlock) &&
IsFingerprintDisabledByPolicySinglePurpose(
pref_service, LegacyFingerprintEngine::Purpose::kWebAuthn);
}
return IsFingerprintDisabledByPolicySinglePurpose(pref_service, purpose);
}
bool IsFingerprintSupported() {
const base::CommandLine* command_line =
base::CommandLine::ForCurrentProcess();
return base::FeatureList::IsEnabled(features::kQuickUnlockFingerprint) &&
command_line->HasSwitch(switches::kFingerprintSensorLocation);
}
bool LegacyFingerprintEngine::IsFingerprintEnabled(
const PrefService& pref_service,
LegacyFingerprintEngine::Purpose purpose) const {
// TODO(b/274087315): Create a TestApi for this class.
if (auto* test_api = quick_unlock::TestApi::Get();
test_api && test_api->IsQuickUnlockOverridden()) {
// When we override behavior for test we don't need to check
// `IsFingerprintSupported`
return !IsFingerprintDisabledByPolicy(pref_service, purpose);
}
return !IsFingerprintDisabledByPolicy(pref_service, purpose) &&
IsFingerprintSupported();
}
bool LegacyFingerprintEngine::IsFingerprintAvailable(
Purpose purpose,
const AccountId& account_id) {
auto* profile = ProfileHelper::Get()->GetProfileByAccountId(account_id);
auto* pref_service = profile->GetPrefs();
if (!pref_service) {
return false;
}
if (profile != ProfileManager::GetPrimaryUserProfile() ||
IsFingerprintDisabledByPolicy(*pref_service, purpose)) {
return false;
}
return HasRecord(*pref_service);
}
void LegacyFingerprintEngine::PrepareLegacyFingerprintFactor(
std::unique_ptr<UserContext> user_context,
AuthOperationCallback callback) {
auth_performer_->PrepareAuthFactor(
std::move(user_context), cryptohome::AuthFactorType::kLegacyFingerprint,
std::move(callback));
}
void LegacyFingerprintEngine::TerminateLegacyFingerprintFactor(
std::unique_ptr<UserContext> user_context,
AuthOperationCallback callback) {
auth_performer_->TerminateAuthFactor(
std::move(user_context), cryptohome::AuthFactorType::kLegacyFingerprint,
std::move(callback));
}
} // namespace ash
|