]> code.delx.au - pulseaudio/blob - src/pulsecore/protocol-dbus.c
Merge branch 'master' of git://0pointer.de/pulseaudio
[pulseaudio] / src / pulsecore / protocol-dbus.c
1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2009 Tanu Kaskinen
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.1 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 <dbus/dbus.h>
27
28 #include <pulse/xmalloc.h>
29
30 #include <pulsecore/core-util.h>
31 #include <pulsecore/dbus-util.h>
32 #include <pulsecore/hashmap.h>
33 #include <pulsecore/idxset.h>
34 #include <pulsecore/shared.h>
35 #include <pulsecore/strbuf.h>
36
37 #include "protocol-dbus.h"
38
39 struct pa_dbus_protocol {
40 PA_REFCNT_DECLARE;
41
42 pa_core *core;
43 pa_hashmap *objects; /* Object path -> struct object_entry */
44 pa_hashmap *connections; /* DBusConnection -> struct connection_entry */
45 pa_idxset *extensions; /* Strings */
46
47 pa_hook hooks[PA_DBUS_PROTOCOL_HOOK_MAX];
48 };
49
50 struct object_entry {
51 char *path;
52 pa_hashmap *interfaces; /* Interface name -> struct interface_entry */
53 char *introspection;
54 };
55
56 struct connection_entry {
57 DBusConnection *connection;
58 pa_client *client;
59
60 pa_bool_t listening_for_all_signals;
61
62 /* Contains object paths. If this is empty, then signals from all objects
63 * are accepted. Only used when listening_for_all_signals == TRUE. */
64 pa_idxset *all_signals_objects;
65
66 /* Signal name -> idxset. The idxsets contain object paths. If an idxset is
67 * empty, then that signal is accepted from all objects. Only used when
68 * listening_for_all_signals == FALSE. */
69 pa_hashmap *listening_signals;
70 };
71
72 struct interface_entry {
73 char *name;
74 pa_hashmap *method_handlers;
75 pa_hashmap *method_signatures; /* Derived from method_handlers. Contains only "in" arguments. */
76 pa_hashmap *property_handlers;
77 pa_dbus_receive_cb_t get_all_properties_cb;
78 pa_dbus_signal_info *signals;
79 unsigned n_signals;
80 void *userdata;
81 };
82
83 char *pa_get_dbus_address_from_server_type(pa_server_type_t server_type) {
84 char *address = NULL;
85 char *runtime_path = NULL;
86 char *escaped_path = NULL;
87
88 switch (server_type) {
89 case PA_SERVER_TYPE_USER:
90 pa_assert_se((runtime_path = pa_runtime_path(PA_DBUS_SOCKET_NAME)));
91 pa_assert_se((escaped_path = dbus_address_escape_value(runtime_path)));
92 address = pa_sprintf_malloc("unix:path=%s", escaped_path);
93 break;
94
95 case PA_SERVER_TYPE_SYSTEM:
96 pa_assert_se((escaped_path = dbus_address_escape_value(PA_DBUS_SYSTEM_SOCKET_PATH)));
97 address = pa_sprintf_malloc("unix:path=%s", escaped_path);
98 break;
99
100 case PA_SERVER_TYPE_NONE:
101 address = pa_xnew0(char, 1);
102 break;
103
104 default:
105 pa_assert_not_reached();
106 }
107
108 pa_xfree(runtime_path);
109 pa_xfree(escaped_path);
110
111 return address;
112 }
113
114 static pa_dbus_protocol *dbus_protocol_new(pa_core *c) {
115 pa_dbus_protocol *p;
116 unsigned i;
117
118 pa_assert(c);
119
120 p = pa_xnew(pa_dbus_protocol, 1);
121 PA_REFCNT_INIT(p);
122 p->core = pa_core_ref(c);
123 p->objects = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
124 p->connections = pa_hashmap_new(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func);
125 p->extensions = pa_idxset_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
126
127 for (i = 0; i < PA_DBUS_PROTOCOL_HOOK_MAX; ++i)
128 pa_hook_init(&p->hooks[i], p);
129
130 pa_assert_se(pa_shared_set(c, "dbus-protocol", p) >= 0);
131
132 return p;
133 }
134
135 pa_dbus_protocol* pa_dbus_protocol_get(pa_core *c) {
136 pa_dbus_protocol *p;
137
138 if ((p = pa_shared_get(c, "dbus-protocol")))
139 return pa_dbus_protocol_ref(p);
140
141 return dbus_protocol_new(c);
142 }
143
144 pa_dbus_protocol* pa_dbus_protocol_ref(pa_dbus_protocol *p) {
145 pa_assert(p);
146 pa_assert(PA_REFCNT_VALUE(p) >= 1);
147
148 PA_REFCNT_INC(p);
149
150 return p;
151 }
152
153 void pa_dbus_protocol_unref(pa_dbus_protocol *p) {
154 unsigned i;
155
156 pa_assert(p);
157 pa_assert(PA_REFCNT_VALUE(p) >= 1);
158
159 if (PA_REFCNT_DEC(p) > 0)
160 return;
161
162 pa_assert(pa_hashmap_isempty(p->objects));
163 pa_assert(pa_hashmap_isempty(p->connections));
164 pa_assert(pa_idxset_isempty(p->extensions));
165
166 pa_hashmap_free(p->objects, NULL, NULL);
167 pa_hashmap_free(p->connections, NULL, NULL);
168 pa_idxset_free(p->extensions, NULL, NULL);
169
170 for (i = 0; i < PA_DBUS_PROTOCOL_HOOK_MAX; ++i)
171 pa_hook_done(&p->hooks[i]);
172
173 pa_assert_se(pa_shared_remove(p->core, "dbus-protocol") >= 0);
174
175 pa_core_unref(p->core);
176
177 pa_xfree(p);
178 }
179
180 static void update_introspection(struct object_entry *oe) {
181 pa_strbuf *buf;
182 void *interfaces_state = NULL;
183 struct interface_entry *iface_entry = NULL;
184
185 pa_assert(oe);
186
187 buf = pa_strbuf_new();
188 pa_strbuf_puts(buf, DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE);
189 pa_strbuf_puts(buf, "<node>\n");
190
191 PA_HASHMAP_FOREACH(iface_entry, oe->interfaces, interfaces_state) {
192 pa_dbus_method_handler *method_handler;
193 pa_dbus_property_handler *property_handler;
194 void *handlers_state = NULL;
195 unsigned i;
196 unsigned j;
197
198 pa_strbuf_printf(buf, " <interface name=\"%s\">\n", iface_entry->name);
199
200 PA_HASHMAP_FOREACH(method_handler, iface_entry->method_handlers, handlers_state) {
201 pa_strbuf_printf(buf, " <method name=\"%s\">\n", method_handler->method_name);
202
203 for (i = 0; i < method_handler->n_arguments; ++i)
204 pa_strbuf_printf(buf, " <arg name=\"%s\" type=\"%s\" direction=\"%s\"/>\n",
205 method_handler->arguments[i].name,
206 method_handler->arguments[i].type,
207 method_handler->arguments[i].direction);
208
209 pa_strbuf_puts(buf, " </method>\n");
210 }
211
212 handlers_state = NULL;
213
214 PA_HASHMAP_FOREACH(property_handler, iface_entry->property_handlers, handlers_state)
215 pa_strbuf_printf(buf, " <property name=\"%s\" type=\"%s\" access=\"%s\"/>\n",
216 property_handler->property_name,
217 property_handler->type,
218 property_handler->get_cb ? (property_handler->set_cb ? "readwrite" : "read") : "write");
219
220 for (i = 0; i < iface_entry->n_signals; ++i) {
221 pa_strbuf_printf(buf, " <signal name=\"%s\">\n", iface_entry->signals[i].name);
222
223 for (j = 0; j < iface_entry->signals[i].n_arguments; ++j)
224 pa_strbuf_printf(buf, " <arg name=\"%s\" type=\"%s\"/>\n", iface_entry->signals[i].arguments[j].name,
225 iface_entry->signals[i].arguments[j].type);
226
227 pa_strbuf_puts(buf, " </signal>\n");
228 }
229
230 pa_strbuf_puts(buf, " </interface>\n");
231 }
232
233 pa_strbuf_puts(buf, " <interface name=\"" DBUS_INTERFACE_INTROSPECTABLE "\">\n"
234 " <method name=\"Introspect\">\n"
235 " <arg name=\"data\" type=\"s\" direction=\"out\"/>\n"
236 " </method>\n"
237 " </interface>\n"
238 " <interface name=\"" DBUS_INTERFACE_PROPERTIES "\">\n"
239 " <method name=\"Get\">\n"
240 " <arg name=\"interface_name\" type=\"s\" direction=\"in\"/>\n"
241 " <arg name=\"property_name\" type=\"s\" direction=\"in\"/>\n"
242 " <arg name=\"value\" type=\"v\" direction=\"out\"/>\n"
243 " </method>\n"
244 " <method name=\"Set\">\n"
245 " <arg name=\"interface_name\" type=\"s\" direction=\"in\"/>\n"
246 " <arg name=\"property_name\" type=\"s\" direction=\"in\"/>\n"
247 " <arg name=\"value\" type=\"v\" direction=\"in\"/>\n"
248 " </method>\n"
249 " <method name=\"GetAll\">\n"
250 " <arg name=\"interface_name\" type=\"s\" direction=\"in\"/>\n"
251 " <arg name=\"props\" type=\"a{sv}\" direction=\"out\"/>\n"
252 " </method>\n"
253 " </interface>\n");
254
255 pa_strbuf_puts(buf, "</node>\n");
256
257 pa_xfree(oe->introspection);
258 oe->introspection = pa_strbuf_tostring_free(buf);
259 }
260
261 /* Return value of find_handler() and its subfunctions. */
262 enum find_result_t {
263 /* The received message is a valid .Get call. */
264 FOUND_GET_PROPERTY,
265
266 /* The received message is a valid .Set call. */
267 FOUND_SET_PROPERTY,
268
269 /* The received message is a valid .GetAll call. */
270 FOUND_GET_ALL,
271
272 /* The received message is a valid method call. */
273 FOUND_METHOD,
274
275 /* The interface of the received message hasn't been registered for the
276 * destination object. */
277 NO_SUCH_INTERFACE,
278
279 /* No property handler was found for the received .Get or .Set call. */
280 NO_SUCH_PROPERTY,
281
282 /* The interface argument of a property call didn't match any registered
283 * interface. */
284 NO_SUCH_PROPERTY_INTERFACE,
285
286 /* The received message called .Get or .Set for a property whose access
287 * mode doesn't match the call. */
288 PROPERTY_ACCESS_DENIED,
289
290 /* The new value signature of a .Set call didn't match the expexted
291 * signature. */
292 INVALID_PROPERTY_SIG,
293
294 /* No method handler was found for the received message. */
295 NO_SUCH_METHOD,
296
297 /* The signature of the received message didn't match the expected
298 * signature. Despite the name, this can also be returned for a property
299 * call if its message signature is invalid. */
300 INVALID_METHOD_SIG
301 };
302
303 /* Data for resolving the correct reaction to a received message. */
304 struct call_info {
305 DBusMessage *message; /* The received message. */
306 struct object_entry *obj_entry;
307 const char *interface; /* Destination interface name (extracted from the message). */
308 struct interface_entry *iface_entry;
309
310 const char *property; /* Property name (extracted from the message). */
311 const char *property_interface; /* The interface argument of a property call is stored here. */
312 pa_dbus_property_handler *property_handler;
313 const char *expected_property_sig; /* Property signature from the introspection data. */
314 const char *property_sig; /* The signature of the new value in the received .Set message. */
315 DBusMessageIter variant_iter; /* Iterator pointing to the beginning of the new value variant of a .Set call. */
316
317 const char *method; /* Method name (extracted from the message). */
318 pa_dbus_method_handler *method_handler;
319 const char *expected_method_sig; /* Method signature from the introspection data. */
320 const char *method_sig; /* The signature of the received message. */
321 };
322
323 /* Called when call_info->property has been set and the property interface has
324 * not been given. In case of a Set call, call_info->property_sig is also set,
325 * which is checked against the expected value in this function. */
326 static enum find_result_t find_handler_by_property(struct call_info *call_info) {
327 void *state = NULL;
328
329 pa_assert(call_info);
330
331 PA_HASHMAP_FOREACH(call_info->iface_entry, call_info->obj_entry->interfaces, state) {
332 if ((call_info->property_handler = pa_hashmap_get(call_info->iface_entry->property_handlers, call_info->property))) {
333 if (pa_streq(call_info->method, "Get"))
334 return call_info->property_handler->get_cb ? FOUND_GET_PROPERTY : PROPERTY_ACCESS_DENIED;
335
336 else if (pa_streq(call_info->method, "Set")) {
337 call_info->expected_property_sig = call_info->property_handler->type;
338
339 if (pa_streq(call_info->property_sig, call_info->expected_property_sig))
340 return call_info->property_handler->set_cb ? FOUND_SET_PROPERTY : PROPERTY_ACCESS_DENIED;
341 else
342 return INVALID_PROPERTY_SIG;
343
344 } else
345 pa_assert_not_reached();
346 }
347 }
348
349 return NO_SUCH_PROPERTY;
350 }
351
352 static enum find_result_t find_handler_by_method(struct call_info *call_info) {
353 void *state = NULL;
354
355 pa_assert(call_info);
356
357 PA_HASHMAP_FOREACH(call_info->iface_entry, call_info->obj_entry->interfaces, state) {
358 if ((call_info->method_handler = pa_hashmap_get(call_info->iface_entry->method_handlers, call_info->method))) {
359 call_info->expected_method_sig = pa_hashmap_get(call_info->iface_entry->method_signatures, call_info->method);
360
361 if (pa_streq(call_info->method_sig, call_info->expected_method_sig))
362 return FOUND_METHOD;
363 else
364 return INVALID_METHOD_SIG;
365 }
366 }
367
368 return NO_SUCH_METHOD;
369 }
370
371 static enum find_result_t find_handler_from_properties_call(struct call_info *call_info) {
372 pa_assert(call_info);
373
374 if (pa_streq(call_info->method, "GetAll")) {
375 call_info->expected_method_sig = "s";
376 if (!pa_streq(call_info->method_sig, call_info->expected_method_sig))
377 return INVALID_METHOD_SIG;
378
379 pa_assert_se(dbus_message_get_args(call_info->message, NULL,
380 DBUS_TYPE_STRING, &call_info->property_interface,
381 DBUS_TYPE_INVALID));
382
383 if (*call_info->property_interface) {
384 if ((call_info->iface_entry = pa_hashmap_get(call_info->obj_entry->interfaces, call_info->property_interface)))
385 return FOUND_GET_ALL;
386 else
387 return NO_SUCH_PROPERTY_INTERFACE;
388
389 } else {
390 pa_assert_se(call_info->iface_entry = pa_hashmap_first(call_info->obj_entry->interfaces));
391 return FOUND_GET_ALL;
392 }
393
394 } else if (pa_streq(call_info->method, "Get")) {
395 call_info->expected_method_sig = "ss";
396 if (!pa_streq(call_info->method_sig, call_info->expected_method_sig))
397 return INVALID_METHOD_SIG;
398
399 pa_assert_se(dbus_message_get_args(call_info->message, NULL,
400 DBUS_TYPE_STRING, &call_info->property_interface,
401 DBUS_TYPE_STRING, &call_info->property,
402 DBUS_TYPE_INVALID));
403
404 if (*call_info->property_interface) {
405 if (!(call_info->iface_entry = pa_hashmap_get(call_info->obj_entry->interfaces, call_info->property_interface)))
406 return NO_SUCH_PROPERTY_INTERFACE;
407 else if ((call_info->property_handler =
408 pa_hashmap_get(call_info->iface_entry->property_handlers, call_info->property)))
409 return FOUND_GET_PROPERTY;
410 else
411 return NO_SUCH_PROPERTY;
412
413 } else
414 return find_handler_by_property(call_info);
415
416 } else if (pa_streq(call_info->method, "Set")) {
417 DBusMessageIter msg_iter;
418
419 call_info->expected_method_sig = "ssv";
420 if (!pa_streq(call_info->method_sig, call_info->expected_method_sig))
421 return INVALID_METHOD_SIG;
422
423 pa_assert_se(dbus_message_iter_init(call_info->message, &msg_iter));
424
425 dbus_message_iter_get_basic(&msg_iter, &call_info->property_interface);
426 pa_assert_se(dbus_message_iter_next(&msg_iter));
427 dbus_message_iter_get_basic(&msg_iter, &call_info->property);
428 pa_assert_se(dbus_message_iter_next(&msg_iter));
429
430 dbus_message_iter_recurse(&msg_iter, &call_info->variant_iter);
431
432 call_info->property_sig = dbus_message_iter_get_signature(&call_info->variant_iter);
433
434 if (*call_info->property_interface) {
435 if (!(call_info->iface_entry = pa_hashmap_get(call_info->obj_entry->interfaces, call_info->property_interface)))
436 return NO_SUCH_PROPERTY_INTERFACE;
437
438 else if ((call_info->property_handler =
439 pa_hashmap_get(call_info->iface_entry->property_handlers, call_info->property))) {
440 call_info->expected_property_sig = call_info->property_handler->type;
441
442 if (pa_streq(call_info->property_sig, call_info->expected_property_sig))
443 return FOUND_SET_PROPERTY;
444 else
445 return INVALID_PROPERTY_SIG;
446
447 } else
448 return NO_SUCH_PROPERTY;
449
450 } else
451 return find_handler_by_property(call_info);
452
453 } else
454 pa_assert_not_reached();
455 }
456
457 static enum find_result_t find_handler(struct call_info *call_info) {
458 pa_assert(call_info);
459
460 if (call_info->interface) {
461 if (pa_streq(call_info->interface, DBUS_INTERFACE_PROPERTIES))
462 return find_handler_from_properties_call(call_info);
463
464 else if (!(call_info->iface_entry = pa_hashmap_get(call_info->obj_entry->interfaces, call_info->interface)))
465 return NO_SUCH_INTERFACE;
466
467 else if ((call_info->method_handler = pa_hashmap_get(call_info->iface_entry->method_handlers, call_info->method)))
468 return FOUND_METHOD;
469
470 else
471 return NO_SUCH_METHOD;
472
473 } else { /* The method call doesn't contain an interface. */
474 if (pa_streq(call_info->method, "Get") || pa_streq(call_info->method, "Set") || pa_streq(call_info->method, "GetAll")) {
475 if (find_handler_by_method(call_info) == FOUND_METHOD)
476 /* The object has a method named Get, Set or GetAll in some other interface than .Properties. */
477 return FOUND_METHOD;
478 else
479 /* Assume this is a .Properties call. */
480 return find_handler_from_properties_call(call_info);
481
482 } else /* This is not a .Properties call. */
483 return find_handler_by_method(call_info);
484 }
485 }
486
487 static DBusHandlerResult handle_message_cb(DBusConnection *connection, DBusMessage *message, void *user_data) {
488 pa_dbus_protocol *p = user_data;
489 struct call_info call_info;
490
491 pa_assert(connection);
492 pa_assert(message);
493 pa_assert(p);
494 pa_assert(p->objects);
495
496 if (dbus_message_get_type(message) != DBUS_MESSAGE_TYPE_METHOD_CALL)
497 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
498
499 pa_log_debug("Received message: destination = %s, interface = %s, member = %s",
500 dbus_message_get_path(message),
501 dbus_message_get_interface(message),
502 dbus_message_get_member(message));
503
504 call_info.message = message;
505 pa_assert_se(call_info.obj_entry = pa_hashmap_get(p->objects, dbus_message_get_path(message)));
506 call_info.interface = dbus_message_get_interface(message);
507 pa_assert_se(call_info.method = dbus_message_get_member(message));
508 pa_assert_se(call_info.method_sig = dbus_message_get_signature(message));
509
510 if (dbus_message_is_method_call(message, "org.freedesktop.DBus.Introspectable", "Introspect") ||
511 (!dbus_message_get_interface(message) && dbus_message_has_member(message, "Introspect"))) {
512 pa_dbus_send_basic_value_reply(connection, message, DBUS_TYPE_STRING, &call_info.obj_entry->introspection);
513 goto finish;
514 }
515
516 switch (find_handler(&call_info)) {
517 case FOUND_GET_PROPERTY:
518 call_info.property_handler->get_cb(connection, message, call_info.iface_entry->userdata);
519 break;
520
521 case FOUND_SET_PROPERTY:
522 call_info.property_handler->set_cb(connection, message, &call_info.variant_iter, call_info.iface_entry->userdata);
523 break;
524
525 case FOUND_METHOD:
526 call_info.method_handler->receive_cb(connection, message, call_info.iface_entry->userdata);
527 break;
528
529 case FOUND_GET_ALL:
530 if (call_info.iface_entry->get_all_properties_cb)
531 call_info.iface_entry->get_all_properties_cb(connection, message, call_info.iface_entry->userdata);
532 else {
533 DBusMessage *dummy_reply = NULL;
534 DBusMessageIter msg_iter;
535 DBusMessageIter dict_iter;
536
537 pa_assert_se(dummy_reply = dbus_message_new_method_return(message));
538 dbus_message_iter_init_append(dummy_reply, &msg_iter);
539 pa_assert_se(dbus_message_iter_open_container(&msg_iter, DBUS_TYPE_ARRAY, "{sv}", &dict_iter));
540 pa_assert_se(dbus_message_iter_close_container(&msg_iter, &dict_iter));
541 pa_assert_se(dbus_connection_send(connection, dummy_reply, NULL));
542 dbus_message_unref(dummy_reply);
543 }
544 break;
545
546 case PROPERTY_ACCESS_DENIED:
547 pa_dbus_send_error(connection, message, DBUS_ERROR_ACCESS_DENIED,
548 "%s access denied for property %s", call_info.method, call_info.property);
549 break;
550
551 case NO_SUCH_METHOD:
552 pa_dbus_send_error(connection, message, DBUS_ERROR_UNKNOWN_METHOD, "No such method: %s", call_info.method);
553 break;
554
555 case NO_SUCH_INTERFACE:
556 pa_dbus_send_error(connection, message, PA_DBUS_ERROR_NO_SUCH_INTERFACE, "No such interface: %s", call_info.interface);
557 break;
558
559 case NO_SUCH_PROPERTY:
560 pa_dbus_send_error(connection, message, PA_DBUS_ERROR_NO_SUCH_PROPERTY, "No such property: %s", call_info.property);
561 break;
562
563 case NO_SUCH_PROPERTY_INTERFACE:
564 pa_dbus_send_error(connection, message, PA_DBUS_ERROR_NO_SUCH_INTERFACE, "No such property interface: %s", call_info.property_interface);
565 break;
566
567 case INVALID_METHOD_SIG:
568 pa_dbus_send_error(connection, message, DBUS_ERROR_INVALID_ARGS,
569 "Invalid signature for method %s: '%s'. Expected '%s'.",
570 call_info.method, call_info.method_sig, call_info.expected_method_sig);
571 break;
572
573 case INVALID_PROPERTY_SIG:
574 pa_dbus_send_error(connection, message, DBUS_ERROR_INVALID_ARGS,
575 "Invalid signature for property %s: '%s'. Expected '%s'.",
576 call_info.property, call_info.property_sig, call_info.expected_property_sig);
577 break;
578
579 default:
580 pa_assert_not_reached();
581 }
582
583 finish:
584 return DBUS_HANDLER_RESULT_HANDLED;
585 }
586
587 static DBusObjectPathVTable vtable = {
588 .unregister_function = NULL,
589 .message_function = handle_message_cb,
590 .dbus_internal_pad1 = NULL,
591 .dbus_internal_pad2 = NULL,
592 .dbus_internal_pad3 = NULL,
593 .dbus_internal_pad4 = NULL
594 };
595
596 static void register_object(pa_dbus_protocol *p, struct object_entry *obj_entry) {
597 struct connection_entry *conn_entry;
598 void *state = NULL;
599
600 pa_assert(p);
601 pa_assert(obj_entry);
602
603 PA_HASHMAP_FOREACH(conn_entry, p->connections, state)
604 pa_assert_se(dbus_connection_register_object_path(conn_entry->connection, obj_entry->path, &vtable, p));
605 }
606
607 static pa_dbus_arg_info *copy_args(const pa_dbus_arg_info *src, unsigned n) {
608 pa_dbus_arg_info *dst;
609 unsigned i;
610
611 if (n == 0)
612 return NULL;
613
614 pa_assert(src);
615
616 dst = pa_xnew0(pa_dbus_arg_info, n);
617
618 for (i = 0; i < n; ++i) {
619 dst[i].name = pa_xstrdup(src[i].name);
620 dst[i].type = pa_xstrdup(src[i].type);
621 dst[i].direction = pa_xstrdup(src[i].direction);
622 }
623
624 return dst;
625 }
626
627 static pa_hashmap *create_method_handlers(const pa_dbus_interface_info *info) {
628 pa_hashmap *handlers;
629 unsigned i;
630
631 pa_assert(info);
632 pa_assert(info->method_handlers || info->n_method_handlers == 0);
633
634 handlers = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
635
636 for (i = 0; i < info->n_method_handlers; ++i) {
637 pa_dbus_method_handler *h = pa_xnew(pa_dbus_method_handler, 1);
638 h->method_name = pa_xstrdup(info->method_handlers[i].method_name);
639 h->arguments = copy_args(info->method_handlers[i].arguments, info->method_handlers[i].n_arguments);
640 h->n_arguments = info->method_handlers[i].n_arguments;
641 h->receive_cb = info->method_handlers[i].receive_cb;
642
643 pa_hashmap_put(handlers, h->method_name, h);
644 }
645
646 return handlers;
647 }
648
649 static pa_hashmap *extract_method_signatures(pa_hashmap *method_handlers) {
650 pa_hashmap *signatures = NULL;
651 pa_dbus_method_handler *handler = NULL;
652 void *state = NULL;
653 pa_strbuf *sig_buf = NULL;
654 unsigned i = 0;
655
656 pa_assert(method_handlers);
657
658 signatures = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
659
660 PA_HASHMAP_FOREACH(handler, method_handlers, state) {
661 sig_buf = pa_strbuf_new();
662
663 for (i = 0; i < handler->n_arguments; ++i) {
664 if (pa_streq(handler->arguments[i].direction, "in"))
665 pa_strbuf_puts(sig_buf, handler->arguments[i].type);
666 }
667
668 pa_hashmap_put(signatures, handler->method_name, pa_strbuf_tostring_free(sig_buf));
669 }
670
671 return signatures;
672 }
673
674 static pa_hashmap *create_property_handlers(const pa_dbus_interface_info *info) {
675 pa_hashmap *handlers;
676 unsigned i = 0;
677
678 pa_assert(info);
679 pa_assert(info->property_handlers || info->n_property_handlers == 0);
680
681 handlers = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
682
683 for (i = 0; i < info->n_property_handlers; ++i) {
684 pa_dbus_property_handler *h = pa_xnew(pa_dbus_property_handler, 1);
685 h->property_name = pa_xstrdup(info->property_handlers[i].property_name);
686 h->type = pa_xstrdup(info->property_handlers[i].type);
687 h->get_cb = info->property_handlers[i].get_cb;
688 h->set_cb = info->property_handlers[i].set_cb;
689
690 pa_hashmap_put(handlers, h->property_name, h);
691 }
692
693 return handlers;
694 }
695
696 static pa_dbus_signal_info *copy_signals(const pa_dbus_interface_info *info) {
697 pa_dbus_signal_info *dst;
698 unsigned i;
699
700 pa_assert(info);
701
702 if (info->n_signals == 0)
703 return NULL;
704
705 pa_assert(info->signals);
706
707 dst = pa_xnew(pa_dbus_signal_info, info->n_signals);
708
709 for (i = 0; i < info->n_signals; ++i) {
710 dst[i].name = pa_xstrdup(info->signals[i].name);
711 dst[i].arguments = copy_args(info->signals[i].arguments, info->signals[i].n_arguments);
712 dst[i].n_arguments = info->signals[i].n_arguments;
713 }
714
715 return dst;
716 }
717
718 int pa_dbus_protocol_add_interface(pa_dbus_protocol *p,
719 const char *path,
720 const pa_dbus_interface_info *info,
721 void *userdata) {
722 struct object_entry *obj_entry;
723 struct interface_entry *iface_entry;
724 pa_bool_t obj_entry_created = FALSE;
725
726 pa_assert(p);
727 pa_assert(path);
728 pa_assert(info);
729 pa_assert(info->name);
730 pa_assert(info->method_handlers || info->n_method_handlers == 0);
731 pa_assert(info->property_handlers || info->n_property_handlers == 0);
732 pa_assert(info->get_all_properties_cb || info->n_property_handlers == 0);
733 pa_assert(info->signals || info->n_signals == 0);
734
735 if (!(obj_entry = pa_hashmap_get(p->objects, path))) {
736 obj_entry = pa_xnew(struct object_entry, 1);
737 obj_entry->path = pa_xstrdup(path);
738 obj_entry->interfaces = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
739 obj_entry->introspection = NULL;
740
741 pa_hashmap_put(p->objects, path, obj_entry);
742 obj_entry_created = TRUE;
743 }
744
745 if (pa_hashmap_get(obj_entry->interfaces, info->name) != NULL)
746 goto fail; /* The interface was already registered. */
747
748 iface_entry = pa_xnew(struct interface_entry, 1);
749 iface_entry->name = pa_xstrdup(info->name);
750 iface_entry->method_handlers = create_method_handlers(info);
751 iface_entry->method_signatures = extract_method_signatures(iface_entry->method_handlers);
752 iface_entry->property_handlers = create_property_handlers(info);
753 iface_entry->get_all_properties_cb = info->get_all_properties_cb;
754 iface_entry->signals = copy_signals(info);
755 iface_entry->n_signals = info->n_signals;
756 iface_entry->userdata = userdata;
757 pa_hashmap_put(obj_entry->interfaces, iface_entry->name, iface_entry);
758
759 update_introspection(obj_entry);
760
761 if (obj_entry_created)
762 register_object(p, obj_entry);
763
764 pa_log_debug("Interface %s added for object %s", iface_entry->name, obj_entry->path);
765
766 return 0;
767
768 fail:
769 if (obj_entry_created) {
770 pa_hashmap_remove(p->objects, path);
771 pa_xfree(obj_entry);
772 }
773
774 return -1;
775 }
776
777 static void unregister_object(pa_dbus_protocol *p, struct object_entry *obj_entry) {
778 struct connection_entry *conn_entry;
779 void *state = NULL;
780
781 pa_assert(p);
782 pa_assert(obj_entry);
783
784 PA_HASHMAP_FOREACH(conn_entry, p->connections, state)
785 pa_assert_se(dbus_connection_unregister_object_path(conn_entry->connection, obj_entry->path));
786 }
787
788 static void method_handler_free_cb(void *p, void *userdata) {
789 pa_dbus_method_handler *h = p;
790 unsigned i;
791
792 pa_assert(h);
793
794 pa_xfree((char *) h->method_name);
795
796 for (i = 0; i < h->n_arguments; ++i) {
797 pa_xfree((char *) h->arguments[i].name);
798 pa_xfree((char *) h->arguments[i].type);
799 pa_xfree((char *) h->arguments[i].direction);
800 }
801
802 pa_xfree((pa_dbus_arg_info *) h->arguments);
803 }
804
805 static void method_signature_free_cb(void *p, void *userdata) {
806 pa_assert(p);
807
808 pa_xfree(p);
809 }
810
811 static void property_handler_free_cb(void *p, void *userdata) {
812 pa_dbus_property_handler *h = p;
813
814 pa_assert(h);
815
816 pa_xfree((char *) h->property_name);
817 pa_xfree((char *) h->type);
818
819 pa_xfree(h);
820 }
821
822 int pa_dbus_protocol_remove_interface(pa_dbus_protocol *p, const char* path, const char* interface) {
823 struct object_entry *obj_entry;
824 struct interface_entry *iface_entry;
825 unsigned i;
826
827 pa_assert(p);
828 pa_assert(path);
829 pa_assert(interface);
830
831 if (!(obj_entry = pa_hashmap_get(p->objects, path)))
832 return -1;
833
834 if (!(iface_entry = pa_hashmap_remove(obj_entry->interfaces, interface)))
835 return -1;
836
837 update_introspection(obj_entry);
838
839 pa_log_debug("Interface %s removed from object %s", iface_entry->name, obj_entry->path);
840
841 pa_xfree(iface_entry->name);
842 pa_hashmap_free(iface_entry->method_handlers, method_handler_free_cb, NULL);
843 pa_hashmap_free(iface_entry->method_signatures, method_signature_free_cb, NULL);
844 pa_hashmap_free(iface_entry->property_handlers, property_handler_free_cb, NULL);
845
846 for (i = 0; i < iface_entry->n_signals; ++i) {
847 unsigned j;
848
849 pa_xfree((char *) iface_entry->signals[i].name);
850
851 for (j = 0; j < iface_entry->signals[i].n_arguments; ++j) {
852 pa_xfree((char *) iface_entry->signals[i].arguments[j].name);
853 pa_xfree((char *) iface_entry->signals[i].arguments[j].type);
854 pa_assert(iface_entry->signals[i].arguments[j].direction == NULL);
855 }
856
857 pa_xfree((pa_dbus_arg_info *) iface_entry->signals[i].arguments);
858 }
859
860 pa_xfree(iface_entry->signals);
861 pa_xfree(iface_entry);
862
863 if (pa_hashmap_isempty(obj_entry->interfaces)) {
864 unregister_object(p, obj_entry);
865
866 pa_hashmap_remove(p->objects, path);
867 pa_xfree(obj_entry->path);
868 pa_hashmap_free(obj_entry->interfaces, NULL, NULL);
869 pa_xfree(obj_entry->introspection);
870 pa_xfree(obj_entry);
871 }
872
873 return 0;
874 }
875
876 static void register_all_objects(pa_dbus_protocol *p, DBusConnection *conn) {
877 struct object_entry *obj_entry;
878 void *state = NULL;
879
880 pa_assert(p);
881 pa_assert(conn);
882
883 PA_HASHMAP_FOREACH(obj_entry, p->objects, state)
884 pa_assert_se(dbus_connection_register_object_path(conn, obj_entry->path, &vtable, p));
885 }
886
887 int pa_dbus_protocol_register_connection(pa_dbus_protocol *p, DBusConnection *conn, pa_client *client) {
888 struct connection_entry *conn_entry;
889
890 pa_assert(p);
891 pa_assert(conn);
892 pa_assert(client);
893
894 if (pa_hashmap_get(p->connections, conn))
895 return -1; /* The connection was already registered. */
896
897 register_all_objects(p, conn);
898
899 conn_entry = pa_xnew(struct connection_entry, 1);
900 conn_entry->connection = dbus_connection_ref(conn);
901 conn_entry->client = client;
902 conn_entry->listening_for_all_signals = FALSE;
903 conn_entry->all_signals_objects = pa_idxset_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
904 conn_entry->listening_signals = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
905
906 pa_hashmap_put(p->connections, conn, conn_entry);
907
908 return 0;
909 }
910
911 static void unregister_all_objects(pa_dbus_protocol *p, DBusConnection *conn) {
912 struct object_entry *obj_entry;
913 void *state = NULL;
914
915 pa_assert(p);
916 pa_assert(conn);
917
918 PA_HASHMAP_FOREACH(obj_entry, p->objects, state)
919 pa_assert_se(dbus_connection_unregister_object_path(conn, obj_entry->path));
920 }
921
922 static void free_listened_object_name_cb(void *p, void *userdata) {
923 pa_assert(p);
924
925 pa_xfree(p);
926 }
927
928 static void free_listening_signals_idxset_cb(void *p, void *userdata) {
929 pa_idxset *set = p;
930
931 pa_assert(set);
932
933 pa_idxset_free(set, free_listened_object_name_cb, NULL);
934 }
935
936 int pa_dbus_protocol_unregister_connection(pa_dbus_protocol *p, DBusConnection *conn) {
937 struct connection_entry *conn_entry;
938
939 pa_assert(p);
940 pa_assert(conn);
941
942 if (!(conn_entry = pa_hashmap_remove(p->connections, conn)))
943 return -1;
944
945 unregister_all_objects(p, conn);
946
947 dbus_connection_unref(conn_entry->connection);
948 pa_idxset_free(conn_entry->all_signals_objects, free_listened_object_name_cb, NULL);
949 pa_hashmap_free(conn_entry->listening_signals, free_listening_signals_idxset_cb, NULL);
950 pa_xfree(conn_entry);
951
952 return 0;
953 }
954
955 pa_client *pa_dbus_protocol_get_client(pa_dbus_protocol *p, DBusConnection *conn) {
956 struct connection_entry *conn_entry;
957
958 pa_assert(p);
959 pa_assert(conn);
960
961 if (!(conn_entry = pa_hashmap_get(p->connections, conn)))
962 return NULL;
963
964 return conn_entry->client;
965 }
966
967 void pa_dbus_protocol_add_signal_listener(
968 pa_dbus_protocol *p,
969 DBusConnection *conn,
970 const char *signal_name,
971 char **objects,
972 unsigned n_objects) {
973 struct connection_entry *conn_entry;
974 pa_idxset *object_set;
975 char *object_path;
976 unsigned i;
977
978 pa_assert(p);
979 pa_assert(conn);
980 pa_assert(objects || n_objects == 0);
981
982 pa_assert_se((conn_entry = pa_hashmap_get(p->connections, conn)));
983
984 /* all_signals_objects will either be emptied or replaced with new objects,
985 * so we empty it here unconditionally. If listening_for_all_signals is
986 * currently FALSE, the idxset is empty already. */
987 while ((object_path = pa_idxset_steal_first(conn_entry->all_signals_objects, NULL)))
988 pa_xfree(object_path);
989
990 if (signal_name) {
991 conn_entry->listening_for_all_signals = FALSE;
992
993 /* Replace the old object list with a new one. */
994 if ((object_set = pa_hashmap_remove(conn_entry->listening_signals, signal_name)))
995 pa_idxset_free(object_set, free_listened_object_name_cb, NULL);
996 object_set = pa_idxset_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
997
998 for (i = 0; i < n_objects; ++i)
999 pa_idxset_put(object_set, pa_xstrdup(objects[i]), NULL);
1000
1001 pa_hashmap_put(conn_entry->listening_signals, signal_name, object_set);
1002
1003 } else {
1004 conn_entry->listening_for_all_signals = TRUE;
1005
1006 /* We're not interested in individual signals anymore, so let's empty
1007 * listening_signals. */
1008 while ((object_set = pa_hashmap_steal_first(conn_entry->listening_signals)))
1009 pa_idxset_free(object_set, free_listened_object_name_cb, NULL);
1010
1011 for (i = 0; i < n_objects; ++i)
1012 pa_idxset_put(conn_entry->all_signals_objects, pa_xstrdup(objects[i]), NULL);
1013 }
1014 }
1015
1016 void pa_dbus_protocol_remove_signal_listener(pa_dbus_protocol *p, DBusConnection *conn, const char *signal_name) {
1017 struct connection_entry *conn_entry;
1018 pa_idxset *object_set;
1019
1020 pa_assert(p);
1021 pa_assert(conn);
1022
1023 pa_assert_se((conn_entry = pa_hashmap_get(p->connections, conn)));
1024
1025 if (signal_name) {
1026 if ((object_set = pa_hashmap_get(conn_entry->listening_signals, signal_name)))
1027 pa_idxset_free(object_set, free_listened_object_name_cb, NULL);
1028
1029 } else {
1030 char *object_path;
1031
1032 conn_entry->listening_for_all_signals = FALSE;
1033
1034 while ((object_path = pa_idxset_steal_first(conn_entry->all_signals_objects, NULL)))
1035 pa_xfree(object_path);
1036
1037 while ((object_set = pa_hashmap_steal_first(conn_entry->listening_signals)))
1038 pa_idxset_free(object_set, free_listened_object_name_cb, NULL);
1039 }
1040 }
1041
1042 void pa_dbus_protocol_send_signal(pa_dbus_protocol *p, DBusMessage *signal_name) {
1043 struct connection_entry *conn_entry;
1044 void *state = NULL;
1045 pa_idxset *object_set;
1046 DBusMessage *signal_copy;
1047 char *signal_string;
1048
1049 pa_assert(p);
1050 pa_assert(signal_name);
1051 pa_assert(dbus_message_get_type(signal_name) == DBUS_MESSAGE_TYPE_SIGNAL);
1052 pa_assert_se(dbus_message_get_interface(signal_name));
1053 pa_assert_se(dbus_message_get_member(signal_name));
1054
1055 signal_string = pa_sprintf_malloc("%s.%s", dbus_message_get_interface(signal_name), dbus_message_get_member(signal_name));
1056
1057 PA_HASHMAP_FOREACH(conn_entry, p->connections, state) {
1058 if ((conn_entry->listening_for_all_signals /* Case 1: listening for all signals */
1059 && (pa_idxset_get_by_data(conn_entry->all_signals_objects, dbus_message_get_path(signal_name), NULL)
1060 || pa_idxset_isempty(conn_entry->all_signals_objects)))
1061
1062 || (!conn_entry->listening_for_all_signals /* Case 2: not listening for all signals */
1063 && (object_set = pa_hashmap_get(conn_entry->listening_signals, signal_string))
1064 && (pa_idxset_get_by_data(object_set, dbus_message_get_path(signal_name), NULL)
1065 || pa_idxset_isempty(object_set)))) {
1066
1067 pa_assert_se(signal_copy = dbus_message_copy(signal_name));
1068 pa_assert_se(dbus_connection_send(conn_entry->connection, signal_copy, NULL));
1069 dbus_message_unref(signal_copy);
1070 }
1071 }
1072
1073 pa_xfree(signal_string);
1074 }
1075
1076 const char **pa_dbus_protocol_get_extensions(pa_dbus_protocol *p, unsigned *n) {
1077 const char **extensions;
1078 const char *ext_name;
1079 void *state = NULL;
1080 unsigned i = 0;
1081
1082 pa_assert(p);
1083 pa_assert(n);
1084
1085 *n = pa_idxset_size(p->extensions);
1086
1087 if (*n <= 0)
1088 return NULL;
1089
1090 extensions = pa_xnew(const char *, *n);
1091
1092 while ((ext_name = pa_idxset_iterate(p->extensions, &state, NULL)))
1093 extensions[i++] = ext_name;
1094
1095 return extensions;
1096 }
1097
1098 int pa_dbus_protocol_register_extension(pa_dbus_protocol *p, const char *name) {
1099 char *internal_name;
1100
1101 pa_assert(p);
1102 pa_assert(name);
1103
1104 internal_name = pa_xstrdup(name);
1105
1106 if (pa_idxset_put(p->extensions, internal_name, NULL) < 0) {
1107 pa_xfree(internal_name);
1108 return -1;
1109 }
1110
1111 pa_hook_fire(&p->hooks[PA_DBUS_PROTOCOL_HOOK_EXTENSION_REGISTERED], internal_name);
1112
1113 return 0;
1114 }
1115
1116 int pa_dbus_protocol_unregister_extension(pa_dbus_protocol *p, const char *name) {
1117 char *internal_name;
1118
1119 pa_assert(p);
1120 pa_assert(name);
1121
1122 if (!(internal_name = pa_idxset_remove_by_data(p->extensions, name, NULL)))
1123 return -1;
1124
1125 pa_hook_fire(&p->hooks[PA_DBUS_PROTOCOL_HOOK_EXTENSION_UNREGISTERED], internal_name);
1126
1127 pa_xfree(internal_name);
1128
1129 return 0;
1130 }
1131
1132 pa_hook_slot *pa_dbus_protocol_hook_connect(
1133 pa_dbus_protocol *p,
1134 pa_dbus_protocol_hook_t hook,
1135 pa_hook_priority_t prio,
1136 pa_hook_cb_t cb,
1137 void *data) {
1138 pa_assert(p);
1139 pa_assert(hook < PA_DBUS_PROTOCOL_HOOK_MAX);
1140 pa_assert(cb);
1141
1142 return pa_hook_connect(&p->hooks[hook], prio, cb, data);
1143 }