diff options
author | Ray Strode <rstrode@redhat.com> | 2018-02-09 16:40:53 -0500 |
---|---|---|
committer | Benjamin Berg <benjamin@sipsolutions.net> | 2019-02-03 12:28:58 +0000 |
commit | 3b96dd8c70aeb677e769d84a26951520e45ffc78 (patch) | |
tree | c72cb48aaa0962a4e5bbcde9f387c22eb1e26afd | |
parent | cfad586b1eb9d3b0f743edb47b458eabd4522906 (diff) | |
download | gnome-settings-daemon-3b96dd8c70aeb677e769d84a26951520e45ffc78.tar.gz |
smartcard: handle a smartcard getting removed very shortly after login
Right now we depend on the smartcard used at login time to be inserted,
at least long enough to read some basic stats about it. This
assumption, of course doesn't necessarly need to hold true. A user
could remove the smartcard immediately after login and we would
misreport that the card wasn't used for login at all.
This commit addresses that edge case by creating a login_token
smartcard alias object that's around even if the login token isn't.
Once the login token does show up it gets synchronized with it, so
both object paths refer to the same underlying token.
-rw-r--r-- | plugins/smartcard/gsd-smartcard-service.c | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/plugins/smartcard/gsd-smartcard-service.c b/plugins/smartcard/gsd-smartcard-service.c index 0710334b..6969ff34 100644 --- a/plugins/smartcard/gsd-smartcard-service.c +++ b/plugins/smartcard/gsd-smartcard-service.c @@ -38,6 +38,7 @@ struct _GsdSmartcardServicePrivate GCancellable *cancellable; GHashTable *tokens; + gboolean login_token_bound; guint name_id; }; @@ -110,6 +111,49 @@ register_object_manager (GsdSmartcardService *self) self->priv->bus_connection); } +static const char * +get_login_token_object_path (GsdSmartcardService *self) +{ + return GSD_SMARTCARD_MANAGER_TOKENS_DBUS_PATH "/login_token"; +} + +static void +register_login_token_alias (GsdSmartcardService *self) +{ + GsdSmartcardServicePrivate *priv; + GDBusObjectSkeleton *object; + GDBusInterfaceSkeleton *interface; + const char *object_path; + const char *token_name; + + token_name = g_getenv ("PKCS11_LOGIN_TOKEN_NAME"); + + if (token_name == NULL) + return; + + priv = self->priv; + + object_path = get_login_token_object_path (self); + object = G_DBUS_OBJECT_SKELETON (gsd_smartcard_service_object_skeleton_new (object_path)); + interface = G_DBUS_INTERFACE_SKELETON (gsd_smartcard_service_token_skeleton_new ()); + + g_dbus_object_skeleton_add_interface (object, interface); + g_object_unref (interface); + + g_object_set (G_OBJECT (interface), + "name", token_name, + "used-to-login", TRUE, + "is-inserted", FALSE, + NULL); + + g_dbus_object_manager_server_export (self->priv->object_manager_server, + object); + + G_LOCK (gsd_smartcard_tokens); + g_hash_table_insert (priv->tokens, g_strdup (object_path), interface); + G_UNLOCK (gsd_smartcard_tokens); +} + static void on_bus_gotten (GObject *source_object, GAsyncResult *result, @@ -141,6 +185,11 @@ on_bus_gotten (GObject *source_object, NULL, NULL, NULL); + + /* In case the login token is removed at start up, register an + * an alias interface that's always around + */ + register_login_token_alias (self); g_task_return_boolean (task, TRUE); out: @@ -218,6 +267,21 @@ gsd_smartcard_service_handle_get_login_token (GsdSmartcardServiceManager *manage card_slot = gsd_smartcard_manager_get_login_token (priv->smartcard_manager); if (card_slot == NULL) { + const char *login_token_object_path; + + /* If we know there's a login token but it was removed before the + * smartcard manager could examine it, just return the generic login + * token object path + */ + login_token_object_path = get_login_token_object_path (self); + + if (g_hash_table_contains (priv->tokens, login_token_object_path)) { + gsd_smartcard_service_manager_complete_get_login_token (manager, + invocation, + login_token_object_path); + return TRUE; + } + g_dbus_method_invocation_return_error (invocation, GSD_SMARTCARD_MANAGER_ERROR, GSD_SMARTCARD_MANAGER_ERROR_FINDING_SMARTCARD, @@ -525,6 +589,24 @@ synchronize_token_now (GsdSmartcardService *self, "is-inserted", &is_present, NULL); + if (is_login_card && !priv->login_token_bound) { + const char *login_token_path; + GDBusInterfaceSkeleton *login_token_interface; + + login_token_path = get_login_token_object_path (self); + login_token_interface = g_hash_table_lookup (priv->tokens, login_token_path); + + if (login_token_interface != NULL) { + g_object_bind_property (interface, "driver", + login_token_interface, "driver", + G_BINDING_SYNC_CREATE); + g_object_bind_property (interface, "is-inserted", + login_token_interface, "is-inserted", + G_BINDING_SYNC_CREATE); + priv->login_token_bound = TRUE; + } + } + out: G_UNLOCK (gsd_smartcard_tokens); } |