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

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