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
|
/*
SPDX-FileCopyrightText: 2023 Janet Blackquill <uhhadd@gmail.com>
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#include <QDebug>
#include <algorithm>
#include "kscreenlocker_greet_logging.h"
#include "pamauthenticator.h"
#include "pamauthenticators.h"
struct PamAuthenticators::Private {
std::unique_ptr<PamAuthenticator> interactive;
std::vector<std::unique_ptr<PamAuthenticator>> noninteractive;
PamAuthenticator::NoninteractiveAuthenticatorTypes computedTypes = PamAuthenticator::NoninteractiveAuthenticatorType::None;
AuthenticatorsState state = AuthenticatorsState::Idle;
bool graceLocked = false;
bool hadPrompt = false;
void recomputeNoninteractiveAuthenticationTypes()
{
PamAuthenticator::NoninteractiveAuthenticatorTypes result = PamAuthenticator::NoninteractiveAuthenticatorType::None;
for (auto &&noninteractive : noninteractive) {
if (noninteractive->isAvailable()) {
result |= noninteractive->authenticatorType();
}
}
computedTypes = result;
}
void cancelNoninteractive()
{
for (auto &&noninteractive : noninteractive) {
noninteractive->cancel();
}
}
};
PamAuthenticators::PamAuthenticators(std::unique_ptr<PamAuthenticator> &&interactive,
std::vector<std::unique_ptr<PamAuthenticator>> &&noninteractive,
QObject *parent)
: QObject(parent)
, d(new Private{std::move(interactive), std::move(noninteractive)})
{
connect(d->interactive.get(), &PamAuthenticator::succeeded, this, [this] {
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: Success from interactive authenticator" << qUtf8Printable(d->interactive->service());
Q_EMIT succeeded();
});
connect(d->interactive.get(), &PamAuthenticator::failed, this, [this] {
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: Failure from interactive authenticator" << qUtf8Printable(d->interactive->service());
setState(AuthenticatorsState::Idle);
d->cancelNoninteractive();
Q_EMIT failed(PamAuthenticator::NoninteractiveAuthenticatorType::None, d->interactive.get());
});
connect(d->interactive.get(), &PamAuthenticator::loginFailedDelayStarted, this, [this](const uint uSecDelay) noexcept -> void {
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: Delay started on login failure for interactive authenticator" << qUtf8Printable(d->interactive->service())
<< "duration:" << uSecDelay;
Q_EMIT loginFailedDelayStarted(PamAuthenticator::NoninteractiveAuthenticatorType::None, d->interactive.get(), uSecDelay);
});
for (auto &&noninteractive : d->noninteractive) {
connect(noninteractive.get(), &PamAuthenticator::succeeded, this, [this, &noninteractive] {
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: Success from non-interactive authenticator" << qUtf8Printable(noninteractive->service());
Q_EMIT succeeded();
});
connect(noninteractive.get(), &PamAuthenticator::availableChanged, this, [this, &noninteractive] {
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: Availability changed for non-interactive authenticator"
<< qUtf8Printable(noninteractive->service()) << noninteractive->isAvailable();
d->recomputeNoninteractiveAuthenticationTypes();
Q_EMIT authenticatorTypesChanged();
});
connect(noninteractive.get(), &PamAuthenticator::failed, this, [this, &noninteractive] {
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: Non-interactive authenticator" << qUtf8Printable(noninteractive->service()) << "failed";
Q_EMIT failed(noninteractive->authenticatorType(), noninteractive.get());
});
connect(noninteractive.get(), &PamAuthenticator::loginFailedDelayStarted, this, [this, &noninteractive](const uint uSecDelay) noexcept -> void {
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: Delay started on login failure for non-interactive authenticator" << qUtf8Printable(noninteractive->service())
<< "duration:" << uSecDelay;
Q_EMIT loginFailedDelayStarted(noninteractive->authenticatorType(), noninteractive.get(), uSecDelay);
});
connect(noninteractive.get(), &PamAuthenticator::infoMessage, this, [this, &noninteractive]() {
if (!d->hadPrompt) {
d->hadPrompt = true;
Q_EMIT hadPromptChanged();
}
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: Info message from non-interactive authenticator" << qUtf8Printable(noninteractive->service());
Q_EMIT noninteractiveInfo(noninteractive->authenticatorType(), noninteractive.get());
});
connect(noninteractive.get(), &PamAuthenticator::errorMessage, this, [this, &noninteractive]() {
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: Error message from non-interactive authenticator " << qUtf8Printable(noninteractive->service());
Q_EMIT noninteractiveError(noninteractive->authenticatorType(), noninteractive.get());
});
}
// connect the delegated signals
connect(d->interactive.get(), &PamAuthenticator::busyChanged, this, [this] {
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: Interactive authenticator" << qUtf8Printable(d->interactive->service()) << "changed business";
Q_EMIT busyChanged();
});
connect(d->interactive.get(), &PamAuthenticator::prompt, this, [this] {
if (!d->hadPrompt) {
d->hadPrompt = true;
Q_EMIT hadPromptChanged();
}
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: Normal prompt from interactive authenticator" << qUtf8Printable(d->interactive->service());
Q_EMIT promptChanged();
});
connect(d->interactive.get(), &PamAuthenticator::promptForSecret, this, [this] {
if (!d->hadPrompt) {
d->hadPrompt = true;
Q_EMIT hadPromptChanged();
}
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: Secret prompt from interactive authenticator" << qUtf8Printable(d->interactive->service());
Q_EMIT promptForSecretChanged();
});
connect(d->interactive.get(), &PamAuthenticator::infoMessage, this, [this] {
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: Info message from interactive authenticator" << qUtf8Printable(d->interactive->service());
Q_EMIT infoMessageChanged();
});
connect(d->interactive.get(), &PamAuthenticator::errorMessage, this, [this] {
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: Error message from interactive authenticator" << qUtf8Printable(d->interactive->service());
Q_EMIT errorMessageChanged();
});
}
PamAuthenticators::~PamAuthenticators()
{
}
bool PamAuthenticators::isUnlocked() const
{
return d->interactive->isUnlocked() || std::any_of(d->noninteractive.cbegin(), d->noninteractive.cend(), [](auto &&t) {
return t->isUnlocked();
});
}
PamAuthenticators::AuthenticatorsState PamAuthenticators::state() const
{
return d->state;
}
void PamAuthenticators::startAuthenticating()
{
if (d->state == AuthenticatorsState::Authenticating || d->graceLocked) {
return;
}
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: starting authenticators";
d->interactive->tryUnlock();
for (auto &&noninteractive : d->noninteractive) {
noninteractive->tryUnlock();
}
setState(AuthenticatorsState::Authenticating);
}
void PamAuthenticators::stopAuthenticating()
{
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: stopping authenticators";
for (auto &&noninteractive : d->noninteractive) {
noninteractive->cancel();
}
d->interactive->cancel();
setState(AuthenticatorsState::Idle);
}
void PamAuthenticators::setState(AuthenticatorsState state)
{
if (d->state == state) {
return;
}
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: state changing from" << d->state << "to" << state;
d->state = state;
Q_EMIT stateChanged();
}
// these properties are delegated to interactive authenticator
bool PamAuthenticators::isBusy() const
{
return d->interactive->isBusy();
}
QString PamAuthenticators::prompt() const
{
return d->interactive->getPrompt();
}
QString PamAuthenticators::promptForSecret() const
{
return d->interactive->getPromptForSecret();
}
QString PamAuthenticators::infoMessage() const
{
return d->interactive->getInfoMessage();
}
QString PamAuthenticators::errorMessage() const
{
return d->interactive->getErrorMessage();
}
void PamAuthenticators::respond(const QByteArray &response)
{
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: responding to interactive authenticator";
return d->interactive->respond(response);
}
void PamAuthenticators::cancel()
{
qCDebug(KSCREENLOCKER_GREET) << "PamAuthenticators: cancelling interactive authenticator";
return d->interactive->cancel();
}
PamAuthenticator::NoninteractiveAuthenticatorTypes PamAuthenticators::authenticatorTypes() const
{
return d->computedTypes;
}
void PamAuthenticators::setGraceLocked(bool b)
{
d->graceLocked = b;
}
bool PamAuthenticators::hadPrompt() const
{
return d->hadPrompt;
}
|