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 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673
|
/*
* Copyright (C) 2013-2016 Canonical Ltd.
* Copyright (C) 2021 UBports Foundation
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.15
import QtQml 2.15
import AccountsService 0.1
import Biometryd 0.0
import GSettings 1.0
import Powerd 0.1
import Lomiri.Components 1.3
import Lomiri.Launcher 0.1
import Lomiri.Session 0.1
import "."
import ".."
import "../Components"
Showable {
id: root
created: loader.status == Loader.Ready
property real dragHandleLeftMargin: 0
property url background
property bool hasCustomBackground
property real backgroundSourceSize
// How far to offset the top greeter layer during a launcher left-drag
property real launcherOffset
// How far down to position the greeter's interface to avoid the Panel
property real panelHeight
readonly property bool active: required || hasLockedApp
readonly property bool fullyShown: loader.item ? loader.item.fullyShown : false
property bool allowFingerprint: true
// True when the greeter is waiting for PAM or other setup process
readonly property alias waiting: d.waiting
property string lockedApp: ""
readonly property bool hasLockedApp: lockedApp !== ""
property bool forcedUnlock
readonly property bool locked: LightDMService.greeter.active && !LightDMService.greeter.authenticated && !forcedUnlock
property bool tabletMode
property string usageMode
property url viewSource // only used for testing
property int failedLoginsDelayAttempts: 7 // number of failed logins
property real failedLoginsDelayMinutes: 5 // minutes of forced waiting
property int failedFingerprintLoginsDisableAttempts: 5 // number of failed fingerprint logins
property int failedFingerprintReaderRetryDelay: 250 // time to wait before retrying a failed fingerprint read [ms]
readonly property bool animating: loader.item ? loader.item.animating : false
property rect inputMethodRect
property bool hasKeyboard: false
property int orientation
signal tease()
signal sessionStarted()
signal emergencyCall()
function forceShow() {
if (!active) {
d.isLockscreen = true;
}
forcedUnlock = false;
if (required) {
if (loader.item) {
loader.item.forceShow();
}
// Normally loader.onLoaded will select a user, but if we're
// already shown, do it manually.
d.selectUser(d.currentIndex);
}
// Even though we may already be shown, we want to call show() for its
// possible side effects, like hiding indicators and such.
//
// We re-check forcedUnlock here, because selectUser above might
// process events during authentication, and a request to unlock could
// have come in in the meantime.
if (!forcedUnlock) {
showNow();
}
}
function notifyAppFocusRequested(appId) {
if (!active) {
return;
}
if (hasLockedApp) {
if (appId === lockedApp) {
hide(); // show locked app
} else {
show();
d.startUnlock(false /* toTheRight */);
}
} else {
d.startUnlock(false /* toTheRight */);
}
}
// Notify that the user has explicitly requested an app
function notifyUserRequestedApp() {
if (!active) {
return;
}
// A hint that we're about to focus an app. This way we can look
// a little more responsive, rather than waiting for the above
// notifyAppFocusRequested call. We also need this in case we have a locked
// app, in order to show lockscreen instead of new app.
d.startUnlock(false /* toTheRight */);
}
// This is a just a glorified notifyUserRequestedApp(), but it does one
// other thing: it hides any cover pages to the RIGHT, because the user
// just came from a launcher drag starting on the left.
// It also returns a boolean value, indicating whether there was a visual
// change or not (the shell only wants to hide the launcher if there was
// a change).
function notifyShowingDashFromDrag() {
if (!active) {
return false;
}
return d.startUnlock(true /* toTheRight */);
}
function sessionToStart() {
for (var i = 0; i < LightDMService.sessions.count; i++) {
var session = LightDMService.sessions.data(i,
LightDMService.sessionRoles.KeyRole);
if (loader.item.sessionToStart === session) {
return session;
}
}
return LightDMService.greeter.defaultSession;
}
QtObject {
id: d
readonly property bool multiUser: LightDMService.users.count > 1
readonly property int selectUserIndex: d.getUserIndex(LightDMService.greeter.selectUser)
property int currentIndex: Math.max(selectUserIndex, 0)
readonly property bool waiting: LightDMService.prompts.count == 0 && !root.forcedUnlock
property bool isLockscreen // true when we are locking an active session, rather than first user login
readonly property bool secureFingerprint: isLockscreen &&
AccountsService.failedFingerprintLogins <
root.failedFingerprintLoginsDisableAttempts
readonly property bool alphanumeric: AccountsService.passwordDisplayHint === AccountsService.Keyboard
// We want 'launcherOffset' to animate down to zero. But not to animate
// while being dragged. So ideally we change this only when the user
// lets go and launcherOffset drops to zero. But we need to wait for
// the behavior to be enabled first. So we cache the last known good
// launcherOffset value to cover us during that brief gap between
// release and the behavior turning on.
property real lastKnownPositiveOffset // set in a launcherOffsetChanged below
property real launcherOffsetProxy: (shown && !launcherOffsetProxyBehavior.enabled) ? lastKnownPositiveOffset : 0
Behavior on launcherOffsetProxy {
id: launcherOffsetProxyBehavior
enabled: launcherOffset === 0
LomiriNumberAnimation {}
}
function getUserIndex(username) {
if (username === "")
return -1;
// Find index for requested user, if it exists
for (var i = 0; i < LightDMService.users.count; i++) {
if (username === LightDMService.users.data(i, LightDMService.userRoles.NameRole)) {
return i;
}
}
return -1;
}
function selectUser(index) {
if (index < 0 || index >= LightDMService.users.count)
return;
currentIndex = index;
var user = LightDMService.users.data(index, LightDMService.userRoles.NameRole);
AccountsService.user = user;
LauncherModel.setUser(user);
LightDMService.greeter.authenticate(user); // always resets auth state
}
function hideView() {
if (loader.item) {
loader.item.enabled = false; // drop OSK and prevent interaction
loader.item.hide();
}
}
function login() {
if (LightDMService.greeter.startSessionSync(root.sessionToStart())) {
sessionStarted();
hideView();
} else if (loader.item) {
loader.item.notifyAuthenticationFailed();
}
}
function startUnlock(toTheRight) {
if (loader.item) {
return loader.item.tryToUnlock(toTheRight);
} else {
return false;
}
}
function checkForcedUnlock(hideNow) {
if (forcedUnlock && shown) {
hideView();
if (hideNow) {
ShellNotifier.greeter.hide(true); // skip hide animation
}
}
}
function showFingerprintMessage(msg) {
d.selectUser(d.currentIndex);
LightDMService.prompts.prepend(msg, LightDMService.prompts.Error);
if (loader.item) {
loader.item.showErrorMessage(msg);
loader.item.notifyAuthenticationFailed();
}
}
}
onLauncherOffsetChanged: {
if (launcherOffset > 0) {
d.lastKnownPositiveOffset = launcherOffset;
}
}
onForcedUnlockChanged: d.checkForcedUnlock(false /* hideNow */)
Component.onCompleted: d.checkForcedUnlock(true /* hideNow */)
onLockedChanged: {
if (!locked) {
AccountsService.failedLogins = 0;
AccountsService.failedFingerprintLogins = 0;
// Stop delay timer if they logged in with fingerprint
forcedDelayTimer.stop();
forcedDelayTimer.delayMinutes = 0;
}
}
onRequiredChanged: {
if (required) {
lockedApp = "";
}
}
GSettings {
id: greeterSettings
schema.id: "com.lomiri.Shell.Greeter"
}
Timer {
id: forcedDelayTimer
// We use a short interval and check against the system wall clock
// because we have to consider the case that the system is suspended
// for a few minutes. When we wake up, we want to quickly be correct.
interval: 500
property var delayTarget
property int delayMinutes
function forceDelay() {
// Store the beginning time for a lockout in GSettings, so that
// we still lock the user out if they reboot. And we store
// starting time rather than end-time or how-long because:
// - If storing end-time and on boot we have a problem with NTP,
// we might get locked out for a lot longer than we thought.
// - If storing how-long, and user turns their phone off for an
// hour rather than wait, they wouldn't expect to still be locked
// out.
// - A malicious actor could manipulate either of the above
// settings to keep the user out longer. But by storing
// start-time, we never make the user wait longer than the full
// lock out time.
greeterSettings.lockedOutTime = new Date().getTime();
checkForForcedDelay();
}
onTriggered: {
var diff = delayTarget - new Date();
if (diff > 0) {
delayMinutes = Math.ceil(diff / 60000);
start(); // go again
} else {
delayMinutes = 0;
}
}
function checkForForcedDelay() {
if (greeterSettings.lockedOutTime === 0) {
return;
}
var now = new Date();
delayTarget = new Date(greeterSettings.lockedOutTime + failedLoginsDelayMinutes * 60000);
// If tooEarly is true, something went very wrong. Bug or NTP
// misconfiguration maybe?
var tooEarly = now.getTime() < greeterSettings.lockedOutTime;
var tooLate = now >= delayTarget;
// Compare stored time to system time. If a malicious actor is
// able to manipulate time to avoid our lockout, they already have
// enough access to cause damage. So we choose to trust this check.
if (tooEarly || tooLate) {
stop();
delayMinutes = 0;
} else {
triggered();
}
}
Component.onCompleted: checkForForcedDelay()
}
// event eater
// Nothing should leak to items behind the greeter
MouseArea { anchors.fill: parent; hoverEnabled: true }
Loader {
id: loader
objectName: "loader"
anchors.fill: parent
active: root.required
source: root.viewSource.toString() ? root.viewSource : "GreeterView.qml"
onLoaded: {
root.lockedApp = "";
item.forceActiveFocus();
d.selectUser(d.currentIndex);
LightDMService.infographic.readyForDataChange();
}
Connections {
target: loader.item
function onSelected(index) {
d.selectUser(index);
}
function onResponded(response) {
if (root.locked) {
LightDMService.greeter.respond(response);
} else {
d.login();
}
}
function onTease() { root.tease() }
function onEmergencyCall() { root.emergencyCall() }
function onRequiredChanged() {
if (!loader.item.required) {
ShellNotifier.greeter.hide(false);
}
}
}
Binding {
target: loader.item
property: "panelHeight"
value: root.panelHeight
restoreMode: Binding.RestoreBinding
}
Binding {
target: loader.item
property: "launcherOffset"
value: d.launcherOffsetProxy
restoreMode: Binding.RestoreBinding
}
Binding {
target: loader.item
property: "dragHandleLeftMargin"
value: root.dragHandleLeftMargin
restoreMode: Binding.RestoreBinding
}
Binding {
target: loader.item
property: "delayMinutes"
value: forcedDelayTimer.delayMinutes
restoreMode: Binding.RestoreBinding
}
Binding {
target: loader.item
property: "background"
value: root.background
restoreMode: Binding.RestoreBinding
}
Binding {
target: loader.item
property: "backgroundSourceSize"
value: root.backgroundSourceSize
restoreMode: Binding.RestoreBinding
}
Binding {
target: loader.item
property: "hasCustomBackground"
value: root.hasCustomBackground
restoreMode: Binding.RestoreBinding
}
Binding {
target: loader.item
property: "locked"
value: root.locked
restoreMode: Binding.RestoreBinding
}
Binding {
target: loader.item
property: "waiting"
value: d.waiting
restoreMode: Binding.RestoreBinding
}
Binding {
target: loader.item
property: "alphanumeric"
value: d.alphanumeric
}
Binding {
target: loader.item
property: "currentIndex"
value: d.currentIndex
}
Binding {
target: loader.item
property: "userModel"
value: LightDMService.users
}
Binding {
target: loader.item
property: "infographicModel"
value: LightDMService.infographic
}
Binding {
target: loader.item
property: "inputMethodRect"
value: root.inputMethodRect
}
Binding {
target: loader.item
property: "hasKeyboard"
value: root.hasKeyboard
}
Binding {
target: loader.item
property: "usageMode"
value: root.usageMode
}
Binding {
target: loader.item
property: "multiUser"
value: d.multiUser
}
Binding {
target: loader.item
property: "orientation"
value: root.orientation
}
}
Connections {
target: LightDMService.greeter
function onShowGreeter() { root.forceShow() }
function onHideGreeter() { root.forcedUnlock = true }
function onLoginError(automatic) {
if (!loader.item) {
return;
}
loader.item.notifyAuthenticationFailed();
if (!automatic) {
AccountsService.failedLogins++;
// Check if we should initiate a forced login delay
if (failedLoginsDelayAttempts > 0
&& AccountsService.failedLogins > 0
&& AccountsService.failedLogins % failedLoginsDelayAttempts == 0) {
forcedDelayTimer.forceDelay();
}
d.selectUser(d.currentIndex);
}
}
function onLoginSuccess(automatic) {
if (!automatic) {
d.login();
}
}
function onRequestAuthenticationUser(user) { d.selectUser(d.getUserIndex(user)) }
}
Connections {
target: ShellNotifier.greeter
function onHide(now) {
if (now) {
root.hideNow(); // skip hide animation
} else {
root.hide();
}
}
}
Binding {
target: ShellNotifier.greeter
property: "shown"
value: root.shown
}
Connections {
target: DBusLomiriSessionService
function onLockRequested() { root.forceShow() }
function onUnlocked() {
root.forcedUnlock = true;
ShellNotifier.greeter.hide(true);
}
}
Binding {
target: LightDMService.greeter
property: "active"
value: root.active
}
Binding {
target: LightDMService.infographic
property: "username"
value: AccountsService.statsWelcomeScreen ? LightDMService.users.data(d.currentIndex, LightDMService.userRoles.NameRole) : ""
}
Connections {
target: i18n
function onLanguageChanged() { LightDMService.infographic.readyForDataChange() }
}
Timer {
id: fpRetryTimer
running: false
repeat: false
onTriggered: biometryd.startOperation()
interval: failedFingerprintReaderRetryDelay
}
Observer {
id: biometryd
objectName: "biometryd"
property var operation: null
readonly property bool idEnabled: root.active &&
root.allowFingerprint &&
Powerd.status === Powerd.On &&
Biometryd.available &&
AccountsService.enableFingerprintIdentification
function startOperation() {
if (idEnabled) {
var identifier = Biometryd.defaultDevice.identifier;
operation = identifier.identifyUser();
operation.start(biometryd);
}
}
function cancelOperation() {
if (operation) {
operation.cancel();
operation = null;
}
}
function restartOperation() {
cancelOperation();
if (failedFingerprintReaderRetryDelay > 0) {
fpRetryTimer.running = true;
} else {
startOperation();
}
}
function failOperation(reason) {
console.log("Failed to identify user by fingerprint:", reason);
restartOperation();
var msg = d.secureFingerprint ? i18n.tr("Try again") :
d.alphanumeric ? i18n.tr("Enter passphrase to unlock") :
i18n.tr("Enter passcode to unlock");
d.showFingerprintMessage(msg);
}
Component.onCompleted: startOperation()
Component.onDestruction: cancelOperation()
onIdEnabledChanged: restartOperation()
onSucceeded: {
if (!d.secureFingerprint) {
failOperation("fingerprint reader is locked");
return;
}
if (result !== LightDMService.users.data(d.currentIndex, LightDMService.userRoles.UidRole)) {
AccountsService.failedFingerprintLogins++;
failOperation("not the selected user");
return;
}
console.log("Identified user by fingerprint:", result);
if (loader.item) {
loader.item.showFakePassword();
}
if (root.active)
root.forcedUnlock = true;
}
onFailed: {
if (!d.secureFingerprint) {
failOperation("fingerprint reader is locked");
} else if (reason !== "ERROR_CANCELED") {
AccountsService.failedFingerprintLogins++;
failOperation(reason);
}
}
}
}
|