Blame SOURCES/enforce-smartcard-at-unlock.patch

35159f
From 8ce91c85fe052d1a9f4fed0743bceae7d9654aa0 Mon Sep 17 00:00:00 2001
35159f
From: Ray Strode <rstrode@redhat.com>
35159f
Date: Mon, 28 Sep 2015 10:57:02 -0400
35159f
Subject: [PATCH 1/3] smartcardManager: add way to detect if user logged using
35159f
 (any) token
35159f
35159f
If a user uses a token at login time, we need to make sure they continue
35159f
to use the token at unlock time.
35159f
35159f
As a prerequisite for addressing that problem we need to know up front
35159f
if a user logged in with a token at all.
35159f
35159f
This commit adds the necessary api to detect that case.
35159f
---
35159f
 js/misc/smartcardManager.js | 7 +++++++
35159f
 1 file changed, 7 insertions(+)
35159f
35159f
diff --git a/js/misc/smartcardManager.js b/js/misc/smartcardManager.js
35159f
index fda782d1e..bb43c96e7 100644
35159f
--- a/js/misc/smartcardManager.js
35159f
+++ b/js/misc/smartcardManager.js
35159f
@@ -112,5 +112,12 @@ var SmartcardManager = class {
35159f
         return true;
35159f
     }
35159f
 
35159f
+    loggedInWithToken() {
35159f
+        if (this._loginToken)
35159f
+            return true;
35159f
+
35159f
+        return false;
35159f
+    }
35159f
+
35159f
 };
35159f
 Signals.addSignalMethods(SmartcardManager.prototype);
35159f
-- 
35159f
2.21.0
35159f
35159f
35159f
From 6decf5560d309579760e10048533d3bd9bc56c3c Mon Sep 17 00:00:00 2001
35159f
From: Ray Strode <rstrode@redhat.com>
35159f
Date: Mon, 28 Sep 2015 19:56:53 -0400
35159f
Subject: [PATCH 2/3] gdm: only unlock with smartcard, if smartcard used for
35159f
 login
35159f
35159f
If a smartcard is used for login, we need to make sure the smartcard
35159f
gets used for unlock, too.
35159f
---
35159f
 js/gdm/util.js | 7 +++++--
35159f
 1 file changed, 5 insertions(+), 2 deletions(-)
35159f
35159f
diff --git a/js/gdm/util.js b/js/gdm/util.js
35159f
index 2e9935250..2b80e1dd9 100644
35159f
--- a/js/gdm/util.js
35159f
+++ b/js/gdm/util.js
35159f
@@ -126,7 +126,6 @@ var ShellUserVerifier = class {
35159f
         this._settings = new Gio.Settings({ schema_id: LOGIN_SCREEN_SCHEMA });
35159f
         this._settings.connect('changed',
35159f
                                this._updateDefaultService.bind(this));
35159f
-        this._updateDefaultService();
35159f
 
35159f
         this._fprintManager = Fprint.FprintManager();
35159f
         this._smartcardManager = SmartcardManager.getSmartcardManager();
35159f
@@ -138,6 +137,8 @@ var ShellUserVerifier = class {
35159f
         this.smartcardDetected = false;
35159f
         this._checkForSmartcard();
35159f
 
35159f
+        this._updateDefaultService();
35159f
+
35159f
         this._smartcardInsertedId = this._smartcardManager.connect('smartcard-inserted',
35159f
                                                                    this._checkForSmartcard.bind(this));
35159f
         this._smartcardRemovedId = this._smartcardManager.connect('smartcard-removed',
35159f
@@ -407,7 +408,9 @@ var ShellUserVerifier = class {
35159f
     }
35159f
 
35159f
     _updateDefaultService() {
35159f
-        if (this._settings.get_boolean(PASSWORD_AUTHENTICATION_KEY))
35159f
+        if (this._smartcardManager.loggedInWithToken())
35159f
+            this._defaultService = SMARTCARD_SERVICE_NAME;
35159f
+        else if (this._settings.get_boolean(PASSWORD_AUTHENTICATION_KEY))
35159f
             this._defaultService = PASSWORD_SERVICE_NAME;
35159f
         else if (this._settings.get_boolean(SMARTCARD_AUTHENTICATION_KEY))
35159f
             this._defaultService = SMARTCARD_SERVICE_NAME;
35159f
-- 
35159f
2.21.0
35159f
35159f
35159f
From dd844c98c3450dd1b21bcc580b51162c1b00ed2a Mon Sep 17 00:00:00 2001
35159f
From: Ray Strode <rstrode@redhat.com>
35159f
Date: Mon, 28 Sep 2015 19:57:36 -0400
35159f
Subject: [PATCH 3/3] gdm: update default service when smartcard inserted
35159f
35159f
Early on at start up we may not know if a smartcard is
35159f
available.  Make sure we reupdate the default service
35159f
after we get a smartcard insertion event.
35159f
---
35159f
 js/gdm/util.js | 2 ++
35159f
 1 file changed, 2 insertions(+)
35159f
35159f
diff --git a/js/gdm/util.js b/js/gdm/util.js
35159f
index 2b80e1dd9..6e940d2ab 100644
35159f
--- a/js/gdm/util.js
35159f
+++ b/js/gdm/util.js
35159f
@@ -327,6 +327,8 @@ var ShellUserVerifier = class {
35159f
             else if (this._preemptingService == SMARTCARD_SERVICE_NAME)
35159f
                 this._preemptingService = null;
35159f
 
35159f
+            this._updateDefaultService();
35159f
+
35159f
             this.emit('smartcard-status-changed');
35159f
         }
35159f
     }
35159f
-- 
35159f
2.21.0
35159f