From: Lennart Poettering Date: Wed, 1 Feb 2012 18:04:54 +0000 (+0100) Subject: logind: add GetSessionByPID() bus call X-Git-Tag: v40~19 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=c4aa65e7147dc742886edf25593e10466b02fc3a logind: add GetSessionByPID() bus call --- diff --git a/TODO b/TODO index a30621e75..baf4840cd 100644 --- a/TODO +++ b/TODO @@ -23,7 +23,7 @@ Features: * journald: reuse XZ context -* logind: add equivalent to sd_pid_get_session() to the D-Bus API +* logind: add equivalent to sd_pid_get_owner_uid() to the D-Bus API * Fedora: disable journald's /proc/kmsg reading on Fedora for now diff --git a/src/login/logind-dbus.c b/src/login/logind-dbus.c index da2eb141c..fda1b0dba 100644 --- a/src/login/logind-dbus.c +++ b/src/login/logind-dbus.c @@ -36,6 +36,10 @@ " \n" \ " \n" \ " \n" \ + " \n" \ + " \n" \ + " \n" \ + " \n" \ " \n" \ " \n" \ " \n" \ @@ -771,6 +775,40 @@ static DBusHandlerResult manager_message_handler( if (!b) goto oom; + } else if (dbus_message_is_method_call(message, "org.freedesktop.login1.Manager", "GetSessionByPID")) { + uint32_t pid; + char *p; + Session *session; + bool b; + + if (!dbus_message_get_args( + message, + &error, + DBUS_TYPE_UINT32, &pid, + DBUS_TYPE_INVALID)) + return bus_send_error_reply(connection, message, &error, -EINVAL); + + r = manager_get_session_by_pid(m, pid, &session); + if (r <= 0) + return bus_send_error_reply(connection, message, NULL, r < 0 ? r : -ENOENT); + + reply = dbus_message_new_method_return(message); + if (!reply) + goto oom; + + p = session_bus_path(session); + if (!p) + goto oom; + + b = dbus_message_append_args( + reply, + DBUS_TYPE_OBJECT_PATH, &p, + DBUS_TYPE_INVALID); + free(p); + + if (!b) + goto oom; + } else if (dbus_message_is_method_call(message, "org.freedesktop.login1.Manager", "GetUser")) { uint32_t uid; char *p; diff --git a/src/login/org.freedesktop.login1.conf b/src/login/org.freedesktop.login1.conf index c423ef593..17ec605cd 100644 --- a/src/login/org.freedesktop.login1.conf +++ b/src/login/org.freedesktop.login1.conf @@ -40,6 +40,10 @@ send_interface="org.freedesktop.login1.Manager" send_member="GetSession"/> + +