follow consolekit's recent D-Bus API change, original patch from William Jon McCan
[platform/upstream/pulseaudio.git] / src / modules / module-console-kit.c
1 /***
2     This file is part of PulseAudio.
3
4     Copyright 2008 Lennart Poettering
5
6     PulseAudio is free software; you can redistribute it and/or modify
7     it under the terms of the GNU Lesser General Public License as published
8     by the Free Software Foundation; either version 2 of the License,
9     or (at your option) any later version.
10
11     PulseAudio is distributed in the hope that it will be useful, but
12     WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14     General Public License for more details.
15
16     You should have received a copy of the GNU Lesser General Public License
17     along with PulseAudio; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19     USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdio.h>
27 #include <unistd.h>
28 #include <string.h>
29 #include <stdlib.h>
30 #include <errno.h>
31 #include <stdlib.h>
32 #include <sys/types.h>
33 #include <sys/stat.h>
34
35 #include <pulse/xmalloc.h>
36 #include <pulse/timeval.h>
37
38 #include <pulsecore/core-error.h>
39 #include <pulsecore/module.h>
40 #include <pulsecore/log.h>
41 #include <pulsecore/hashmap.h>
42 #include <pulsecore/idxset.h>
43 #include <pulsecore/core-util.h>
44 #include <pulsecore/namereg.h>
45 #include <pulsecore/core-scache.h>
46 #include <pulsecore/modargs.h>
47
48 #include "dbus-util.h"
49 #include "module-console-kit-symdef.h"
50
51 PA_MODULE_AUTHOR("Lennart Poettering");
52 PA_MODULE_DESCRIPTION("Create a client for each ConsoleKit session of this user");
53 PA_MODULE_VERSION(PACKAGE_VERSION);
54 PA_MODULE_LOAD_ONCE(TRUE);
55
56 static const char* const valid_modargs[] = {
57     NULL
58 };
59
60 struct session {
61     char *id;
62     pa_client *client;
63 };
64
65 struct userdata {
66     pa_core *core;
67     pa_dbus_connection *connection;
68     pa_hashmap *sessions;
69 };
70
71 static void add_session(struct userdata *u, const char *id) {
72     DBusError error;
73     DBusMessage *m = NULL, *reply = NULL;
74     uint32_t uid;
75     struct session *session;
76     char *t;
77
78     dbus_error_init (&error);
79
80     if (pa_hashmap_get(u->sessions, id)) {
81         pa_log_warn("Duplicate session %s, ignoring.", id);
82         return;
83     }
84
85     if (!(m = dbus_message_new_method_call("org.freedesktop.ConsoleKit", id, "org.freedesktop.ConsoleKit.Session", "GetUnixUser"))) {
86         pa_log("Failed to allocate GetUnixUser() method call.");
87         goto fail;
88     }
89
90     if (!(reply = dbus_connection_send_with_reply_and_block(pa_dbus_connection_get(u->connection), m, -1, &error))) {
91         pa_log("GetUnixUser() call failed: %s: %s", error.name, error.message);
92         goto fail;
93     }
94
95     /* CK 0.3 this changed from int32 to uint32 */
96     if (!dbus_message_get_args(reply, &error, DBUS_TYPE_UINT32, &uid, DBUS_TYPE_INVALID)) {
97         if (!dbus_message_get_args(reply, &error, DBUS_TYPE_INT32, &uid, DBUS_TYPE_INVALID)) {
98             pa_log("Failed to parse GetUnixUser() result: %s: %s", error.name, error.message);
99             goto fail;
100         }
101     }
102
103     /* We only care about our own sessions */
104     if ((uid_t) uid != getuid())
105         goto fail;
106
107     session = pa_xnew(struct session, 1);
108     session->id = pa_xstrdup(id);
109
110     t = pa_sprintf_malloc("ConsoleKit Session %s", id);
111     session->client = pa_client_new(u->core, __FILE__, t);
112     pa_xfree(t);
113
114     pa_proplist_sets(session->client->proplist, "console-kit.session", id);
115
116     pa_hashmap_put(u->sessions, session->id, session);
117
118     pa_log_debug("Added new session %s", id);
119
120 fail:
121
122     if (m)
123         dbus_message_unref(m);
124
125     if (reply)
126         dbus_message_unref(reply);
127
128     dbus_error_free(&error);
129 }
130
131 static void free_session(struct session *session) {
132     pa_assert(session);
133
134     pa_log_debug("Removing session %s", session->id);
135
136     pa_client_free(session->client);
137     pa_xfree(session->id);
138     pa_xfree(session);
139 }
140
141 static void remove_session(struct userdata *u, const char *id) {
142     struct session *session;
143
144     if (!(session = pa_hashmap_remove(u->sessions, id)))
145         return;
146
147     free_session(session);
148 }
149
150 static DBusHandlerResult filter_cb(DBusConnection *bus, DBusMessage *message, void *userdata) {
151     struct userdata *u = userdata;
152     DBusError error;
153     const char *path;
154
155     pa_assert(bus);
156     pa_assert(message);
157     pa_assert(u);
158
159     dbus_error_init(&error);
160
161     pa_log_debug("dbus: interface=%s, path=%s, member=%s\n",
162                  dbus_message_get_interface(message),
163                  dbus_message_get_path(message),
164                  dbus_message_get_member(message));
165
166     if (dbus_message_is_signal(message, "org.freedesktop.ConsoleKit.Seat", "SessionAdded")) {
167
168         /* CK API changed to match spec in 0.3 */
169         if (!dbus_message_get_args(message, &error, DBUS_TYPE_OBJECT_PATH, &path, DBUS_TYPE_INVALID)) {
170             if (!dbus_message_get_args(message, &error, DBUS_TYPE_STRING, &path, DBUS_TYPE_INVALID)) {
171                 pa_log_error("Failed to parse SessionAdded message: %s: %s", error.name, error.message);
172                 goto finish;
173             }
174         }
175
176         add_session(u, path);
177
178     } else if (dbus_message_is_signal(message, "org.freedesktop.ConsoleKit.Seat", "SessionRemoved")) {
179
180         /* CK API changed to match spec in 0.3 */
181         if (!dbus_message_get_args(message, &error, DBUS_TYPE_OBJECT_PATH, &path, DBUS_TYPE_INVALID)) {
182             if (!dbus_message_get_args(message, &error, DBUS_TYPE_STRING, &path, DBUS_TYPE_INVALID)) {
183                 pa_log_error("Failed to parse SessionRemoved message: %s: %s", error.name, error.message);
184                 goto finish;
185             }
186         }
187
188         remove_session(u, path);
189     }
190
191 finish:
192     dbus_error_free(&error);
193
194     return DBUS_HANDLER_RESULT_HANDLED;
195 }
196
197 static int get_session_list(struct userdata *u) {
198     DBusError error;
199     DBusMessage *m = NULL, *reply = NULL;
200     uint32_t uid;
201     DBusMessageIter iter, sub;
202     int ret = -1;
203
204     pa_assert(u);
205
206     dbus_error_init(&error);
207
208     if (!(m = dbus_message_new_method_call("org.freedesktop.ConsoleKit", "/org/freedesktop/ConsoleKit/Manager", "org.freedesktop.ConsoleKit.Manager", "GetSessionsForUnixUser"))) {
209         pa_log("Failed to allocate GetSessionsForUnixUser() method call.");
210         goto fail;
211     }
212
213     uid = (uint32_t) getuid();
214     if (!(dbus_message_append_args(m, DBUS_TYPE_UINT32, &uid, DBUS_TYPE_INVALID))) {
215         pa_log("Failed to append arguments to GetSessionsForUnixUser() method call.");
216         goto fail;
217     }
218
219     if (!(reply = dbus_connection_send_with_reply_and_block(pa_dbus_connection_get(u->connection), m, -1, &error))) {
220         pa_log("GetSessionsForUnixUser() call failed: %s: %s", error.name, error.message);
221         goto fail;
222     }
223
224     dbus_message_iter_init(reply, &iter);
225
226     if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY ||
227         dbus_message_iter_get_element_type(&iter) != DBUS_TYPE_OBJECT_PATH) {
228         pa_log("Failed to parse GetSessionsForUnixUser() result.");
229         goto fail;
230     }
231
232     dbus_message_iter_recurse(&iter, &sub);
233
234     for (;;) {
235         int at;
236         const char *id;
237
238         if ((at = dbus_message_iter_get_arg_type(&sub)) == DBUS_TYPE_INVALID)
239             break;
240
241         assert(at == DBUS_TYPE_OBJECT_PATH);
242         dbus_message_iter_get_basic(&sub, &id);
243
244         add_session(u, id);
245
246         dbus_message_iter_next(&sub);
247     }
248
249     ret = 0;
250
251 fail:
252
253     if (m)
254         dbus_message_unref(m);
255
256     if (reply)
257         dbus_message_unref(reply);
258
259     dbus_error_free(&error);
260
261     return ret;
262 }
263
264 int pa__init(pa_module*m) {
265     DBusError error;
266     pa_dbus_connection *connection;
267     struct userdata *u = NULL;
268     pa_modargs *ma;
269
270     pa_assert(m);
271
272     dbus_error_init(&error);
273
274     if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
275         pa_log("Failed to parse module arguments");
276         goto fail;
277     }
278
279     if (!(connection = pa_dbus_bus_get(m->core, DBUS_BUS_SYSTEM, &error)) || dbus_error_is_set(&error)) {
280
281         if (connection)
282             pa_dbus_connection_unref(connection);
283
284         pa_log_error("Unable to contact D-Bus system bus: %s: %s", error.name, error.message);
285         goto fail;
286     }
287
288     m->userdata = u = pa_xnew(struct userdata, 1);
289     u->core = m->core;
290     u->connection = connection;
291     u->sessions = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
292
293     if (!dbus_connection_add_filter(pa_dbus_connection_get(connection), filter_cb, u, NULL)) {
294         pa_log_error("Failed to add filter function");
295         goto fail;
296     }
297
298     dbus_bus_add_match(pa_dbus_connection_get(connection), "type='signal',sender='org.freedesktop.ConsoleKit', interface='org.freedesktop.ConsoleKit.Seat'", &error);
299     if (dbus_error_is_set(&error)) {
300         pa_log_error("Unable to subscribe to ConsoleKit signals: %s: %s", error.name, error.message);
301         goto fail;
302     }
303
304     if (get_session_list(u) < 0)
305         goto fail;
306
307     pa_modargs_free(ma);
308
309     return 0;
310
311 fail:
312     if (ma)
313         pa_modargs_free(ma);
314
315     dbus_error_free(&error);
316     pa__done(m);
317
318     return -1;
319 }
320
321
322 void pa__done(pa_module *m) {
323     struct userdata *u;
324     struct session *session;
325
326     pa_assert(m);
327
328     if (!(u = m->userdata))
329         return;
330
331     if (u->sessions) {
332         while ((session = pa_hashmap_steal_first(u->sessions)))
333             free_session(session);
334
335         pa_hashmap_free(u->sessions, NULL, NULL);
336     }
337
338     if (u->connection)
339         pa_dbus_connection_unref(u->connection);
340
341     pa_xfree(u);
342 }