summaryrefslogtreecommitdiffstats
path: root/src/util/find_uid.c
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2013-09-10 18:24:41 -0400
committerSimo Sorce <simo@redhat.com>2013-09-11 09:17:41 -0400
commite5c8cd07eca20d4939edef4a5e500542445f79e1 (patch)
tree16fc5b387c829d3e72c01fb834cdad9f302e4035 /src/util/find_uid.c
parentfbc419b2eb101c7491324499a698b6bdcb14ad43 (diff)
downloadsssd-logind.tar.gz
sssd-logind.tar.xz
sssd-logind.zip
util: Use systemd-login to check user sessionslogind
Use systemd-lgin in preference to check if the user is logged in or not. Fall back to the old method if no systemd-login support is available at compile time or if it returns a fatal error, and can't determine the status of the user on its own. This will allow to consider a user really active (in order to reuse or refresh crdentials) only if it really is logged into the system, and not just if one of the user's processes is stuck around. Resolves: https://fedorahosted.org/sssd/ticket/2084
Diffstat (limited to 'src/util/find_uid.c')
-rw-r--r--src/util/find_uid.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/util/find_uid.c b/src/util/find_uid.c
index d34a4abd..10086ad6 100644
--- a/src/util/find_uid.c
+++ b/src/util/find_uid.c
@@ -40,6 +40,10 @@
#include "util/util.h"
#include "util/strtonum.h"
+#ifdef HAVE_SYSTEMD_LOGIN
+#include <systemd/sd-login.h>
+#endif
+
#define INITIAL_TABLE_SIZE 64
#define PATHLEN (NAME_MAX + 14)
#define BUFSIZE 4096
@@ -301,6 +305,22 @@ errno_t check_if_uid_is_active(uid_t uid, bool *result)
{
int ret;
+#ifdef HAVE_SYSTEMD_LOGIN
+ ret = sd_uid_get_sessions(uid, 0, NULL);
+ if (ret > 0) {
+ *result = true;
+ }
+ if (ret == 0) {
+ *result = false;
+ }
+ if (ret >= 0) {
+ return EOK;
+ }
+ DEBUG(0, ("systemd-login gave error %d: %s\n",
+ -ret, strerror(-ret)));
+ /* fall back to the old method */
+#endif
+
ret = get_active_uid_linux(NULL, uid);
if (ret != EOK && ret != ENOENT) {
DEBUG(1, ("get_uid_table failed.\n"));