chiark / gitweb /
3be2c05d263f2b2d7c6c562d7489290d2fa51b4f
[elogind.git] / src / logind-user-dbus.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2011 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <errno.h>
23 #include <string.h>
24
25 #include "logind.h"
26 #include "logind-user.h"
27 #include "dbus-common.h"
28
29 #define BUS_USER_INTERFACE \
30         " <interface name=\"org.freedesktop.login1.User\">\n"           \
31         "  <method name=\"Terminate\"/>\n"                              \
32         "  <property name=\"UID\" type=\"u\" access=\"read\"/>\n"       \
33         "  <property name=\"GID\" type=\"u\" access=\"read\"/>\n"       \
34         "  <property name=\"Name\" type=\"s\" access=\"read\"/>\n"      \
35         "  <property name=\"Timestamp\" type=\"t\" access=\"read\"/>\n" \
36         "  <property name=\"TimestampMonotonic\" type=\"t\" access=\"read\"/>\n" \
37         "  <property name=\"RuntimePath\" type=\"s\" access=\"read\"/>\n" \
38         "  <property name=\"ControlGroupPath\" type=\"s\" access=\"read\"/>\n" \
39         "  <property name=\"Service\" type=\"s\" access=\"read\"/>\n"   \
40         "  <property name=\"Display\" type=\"(so)\" access=\"read\"/>\n" \
41         "  <property name=\"State\" type=\"s\" access=\"read\"/>\n"     \
42         "  <property name=\"Sessions\" type=\"a(so)\" access=\"read\"/>\n" \
43         "  <property name=\"IdleHint\" type=\"b\" access=\"read\"/>\n"  \
44         "  <property name=\"IdleSinceHint\" type=\"t\" access=\"read\"/>\n" \
45         "  <property name=\"IdleSinceHintMonotonic\" type=\"t\" access=\"read\"/>\n" \
46         " </interface>\n"                                               \
47
48 #define INTROSPECTION                                                   \
49         DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE                       \
50         "<node>\n"                                                      \
51         BUS_USER_INTERFACE                                              \
52         BUS_PROPERTIES_INTERFACE                                        \
53         BUS_PEER_INTERFACE                                              \
54         BUS_INTROSPECTABLE_INTERFACE                                    \
55         "</node>\n"
56
57 #define INTERFACES_LIST                              \
58         BUS_GENERIC_INTERFACES_LIST                  \
59         "org.freedesktop.login1.User\0"
60
61 static int bus_user_append_display(DBusMessageIter *i, const char *property, void *data) {
62         DBusMessageIter sub;
63         User *u = data;
64         const char *id, *path;
65         char *p = NULL;
66
67         assert(i);
68         assert(property);
69         assert(u);
70
71         if (!dbus_message_iter_open_container(i, DBUS_TYPE_STRUCT, NULL, &sub))
72                 return -ENOMEM;
73
74         if (u->display) {
75                 id = u->display->id;
76                 path = p = session_bus_path(u->display);
77
78                 if (!p)
79                         return -ENOMEM;
80         } else {
81                 id = "";
82                 path = "/";
83         }
84
85         if (!dbus_message_iter_append_basic(&sub, DBUS_TYPE_STRING, &id) ||
86             !dbus_message_iter_append_basic(&sub, DBUS_TYPE_OBJECT_PATH, &path)) {
87                 free(p);
88                 return -ENOMEM;
89         }
90
91         free(p);
92
93         if (!dbus_message_iter_close_container(i, &sub))
94                 return -ENOMEM;
95
96         return 0;
97 }
98
99 static int bus_user_append_state(DBusMessageIter *i, const char *property, void *data) {
100         User *u = data;
101         const char *state;
102
103         assert(i);
104         assert(property);
105         assert(u);
106
107         state = user_state_to_string(user_get_state(u));
108
109         if (!dbus_message_iter_append_basic(i, DBUS_TYPE_STRING, &state))
110                 return -ENOMEM;
111
112         return 0;
113 }
114
115 static int bus_user_append_sessions(DBusMessageIter *i, const char *property, void *data) {
116         DBusMessageIter sub, sub2;
117         User *u = data;
118         Session *session;
119
120         assert(i);
121         assert(property);
122         assert(u);
123
124         if (!dbus_message_iter_open_container(i, DBUS_TYPE_ARRAY, "so", &sub))
125                 return -ENOMEM;
126
127         LIST_FOREACH(sessions_by_user, session, u->sessions) {
128                 char *p;
129
130                 if (!dbus_message_iter_open_container(&sub, DBUS_TYPE_STRUCT, NULL, &sub2))
131                         return -ENOMEM;
132
133                 p = session_bus_path(session);
134                 if (!p)
135                         return -ENOMEM;
136
137                 if (!dbus_message_iter_append_basic(&sub2, DBUS_TYPE_STRING, &session->id) ||
138                     !dbus_message_iter_append_basic(&sub2, DBUS_TYPE_OBJECT_PATH, &p)) {
139                         free(p);
140                         return -ENOMEM;
141                 }
142
143                 free(p);
144
145                 if (!dbus_message_iter_close_container(&sub, &sub2))
146                         return -ENOMEM;
147         }
148
149         if (!dbus_message_iter_close_container(i, &sub))
150                 return -ENOMEM;
151
152         return 0;
153 }
154
155 static int bus_user_append_idle_hint(DBusMessageIter *i, const char *property, void *data) {
156         User *u = data;
157         bool b;
158
159         assert(i);
160         assert(property);
161         assert(u);
162
163         b = user_get_idle_hint(u, NULL);
164         if (!dbus_message_iter_append_basic(i, DBUS_TYPE_BOOLEAN, &b))
165                 return -ENOMEM;
166
167         return 0;
168 }
169
170 static int bus_user_append_idle_hint_since(DBusMessageIter *i, const char *property, void *data) {
171         User *u = data;
172         dual_timestamp t;
173         uint64_t k;
174
175         assert(i);
176         assert(property);
177         assert(u);
178
179         user_get_idle_hint(u, &t);
180         k = streq(property, "IdleSinceHint") ? t.realtime : t.monotonic;
181
182         if (!dbus_message_iter_append_basic(i, DBUS_TYPE_UINT64, &k))
183                 return -ENOMEM;
184
185         return 0;
186 }
187
188 static int get_user_for_path(Manager *m, const char *path, User **_u) {
189         User *u;
190         unsigned long lu;
191         int r;
192
193         assert(m);
194         assert(path);
195         assert(_u);
196
197         if (!startswith(path, "/org/freedesktop/login1/user/"))
198                 return -EINVAL;
199
200         r = safe_atolu(path + 29, &lu);
201         if (r < 0)
202                 return r;
203
204         u = hashmap_get(m->users, ULONG_TO_PTR(lu));
205         if (!u)
206                 return -ENOENT;
207
208         *_u = u;
209         return 0;
210 }
211
212 static DBusHandlerResult user_message_dispatch(
213                 User *u,
214                 DBusConnection *connection,
215                 DBusMessage *message) {
216
217         const BusProperty properties[] = {
218                 { "org.freedesktop.login1.User", "UID",                bus_property_append_uid,    "u",     &u->uid                 },
219                 { "org.freedesktop.login1.User", "GID",                bus_property_append_gid,    "u",     &u->gid                 },
220                 { "org.freedesktop.login1.User", "Name",               bus_property_append_string, "s",     u->name                 },
221                 { "org.freedesktop.login1.User", "Timestamp",          bus_property_append_usec,   "t",     &u->timestamp.realtime  },
222                 { "org.freedesktop.login1.User", "TimestampMonotonic", bus_property_append_usec,   "t",     &u->timestamp.monotonic },
223                 { "org.freedesktop.login1.User", "RuntimePath",        bus_property_append_string, "s",     u->runtime_path         },
224                 { "org.freedesktop.login1.User", "ControlGroupPath",   bus_property_append_string, "s",     u->cgroup_path          },
225                 { "org.freedesktop.login1.User", "Service",            bus_property_append_string, "s",     u->service              },
226                 { "org.freedesktop.login1.User", "Display",            bus_user_append_display,    "(so)",  u                       },
227                 { "org.freedesktop.login1.User", "State",              bus_user_append_state,      "s",     u                       },
228                 { "org.freedesktop.login1.User", "Sessions",           bus_user_append_sessions,   "a(so)", u                       },
229                 { "org.freedesktop.login1.User", "IdleHint",           bus_user_append_idle_hint,  "b",     u                       },
230                 { "org.freedesktop.login1.User", "IdleSinceHint",          bus_user_append_idle_hint_since, "t", u                  },
231                 { "org.freedesktop.login1.User", "IdleSinceHintMonotonic", bus_user_append_idle_hint_since, "t", u                  },
232                 { NULL, NULL, NULL, NULL, NULL }
233         };
234
235         DBusError error;
236         DBusMessage *reply = NULL;
237         int r;
238
239         assert(u);
240         assert(connection);
241         assert(message);
242
243         if (dbus_message_is_method_call(message, "org.freedesktop.login1.User", "Terminate")) {
244
245                 r = user_stop(u);
246                 if (r < 0)
247                         return bus_send_error_reply(connection, message, NULL, r);
248
249                 reply = dbus_message_new_method_return(message);
250                 if (!reply)
251                         goto oom;
252         } else
253                 return bus_default_message_handler(connection, message, INTROSPECTION, INTERFACES_LIST, properties);
254
255         if (reply) {
256                 if (!dbus_connection_send(connection, reply, NULL))
257                         goto oom;
258
259                 dbus_message_unref(reply);
260         }
261
262         return DBUS_HANDLER_RESULT_HANDLED;
263
264 oom:
265         if (reply)
266                 dbus_message_unref(reply);
267
268         dbus_error_free(&error);
269
270         return DBUS_HANDLER_RESULT_NEED_MEMORY;
271 }
272
273 static DBusHandlerResult user_message_handler(
274                 DBusConnection *connection,
275                 DBusMessage *message,
276                 void *userdata) {
277
278         Manager *m = userdata;
279         User *u;
280         int r;
281
282         r = get_user_for_path(m, dbus_message_get_path(message), &u);
283         if (r < 0) {
284
285                 if (r == -ENOMEM)
286                         return DBUS_HANDLER_RESULT_NEED_MEMORY;
287
288                 if (r == -ENOENT) {
289                         DBusError e;
290
291                         dbus_error_init(&e);
292                         dbus_set_error_const(&e, DBUS_ERROR_UNKNOWN_OBJECT, "Unknown user");
293                         return bus_send_error_reply(connection, message, &e, r);
294                 }
295
296                 return bus_send_error_reply(connection, message, NULL, r);
297         }
298
299         return user_message_dispatch(u, connection, message);
300 }
301
302 const DBusObjectPathVTable bus_user_vtable = {
303         .message_function = user_message_handler
304 };
305
306 char *user_bus_path(User *u) {
307         char *s;
308
309         assert(u);
310
311         if (asprintf(&s, "/org/freedesktop/login1/user/%llu", (unsigned long long) u->uid) < 0)
312                 return NULL;
313
314         return s;
315 }