5 * Copyright (C) 2004-2011 Marcel Holtmann <marcel@holtmann.org>
8 * This program is free software; you can redistribute it and/or modify
9 * it 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.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
32 #include <dbus/dbus.h>
40 #define DBUS_INTERFACE_OBJECT_MANAGER "org.freedesktop.DBus.ObjectManager"
43 unsigned int refcount;
51 gboolean pending_prop;
53 struct generic_data *parent;
56 struct interface_data {
58 const GDBusMethodTable *methods;
59 const GDBusSignalTable *signals;
60 const GDBusPropertyTable *properties;
63 GDBusDestroyFunction destroy;
66 struct security_data {
67 GDBusPendingReply pending;
69 const GDBusMethodTable *method;
70 void *iface_user_data;
73 struct property_data {
74 GDBusPendingPropertySet id;
78 static gboolean process_changes(gpointer user_data);
79 static void process_properties_from_interface(struct generic_data *data,
80 struct interface_data *iface);
81 static void process_property_changes(struct generic_data *data);
83 static void print_arguments(GString *gstr, const GDBusArgInfo *args,
84 const char *direction)
86 for (; args && args->name; args++) {
87 g_string_append_printf(gstr,
88 "\t\t\t<arg name=\"%s\" type=\"%s\"",
89 args->name, args->signature);
92 g_string_append_printf(gstr,
93 " direction=\"%s\"/>\n", direction);
95 g_string_append_printf(gstr, "/>\n");
100 #define G_DBUS_ANNOTATE(prefix_, name_, value_) \
101 prefix_ "<annotation name=\"org.freedesktop.DBus." name_ "\" " \
102 "value=\"" value_ "\"/>\n"
104 #define G_DBUS_ANNOTATE_DEPRECATED(prefix_) \
105 G_DBUS_ANNOTATE(prefix_, "Deprecated", "true")
107 #define G_DBUS_ANNOTATE_NOREPLY(prefix_) \
108 G_DBUS_ANNOTATE(prefix_, "Method.NoReply", "true")
110 static void generate_interface_xml(GString *gstr, struct interface_data *iface)
112 const GDBusMethodTable *method;
113 const GDBusSignalTable *signal;
114 const GDBusPropertyTable *property;
116 for (method = iface->methods; method && method->name; method++) {
117 gboolean deprecated = method->flags &
118 G_DBUS_METHOD_FLAG_DEPRECATED;
119 gboolean noreply = method->flags &
120 G_DBUS_METHOD_FLAG_NOREPLY;
122 if (!deprecated && !noreply &&
123 !(method->in_args && method->in_args->name) &&
124 !(method->out_args && method->out_args->name))
125 g_string_append_printf(gstr,
126 "\t\t<method name=\"%s\"/>\n",
129 g_string_append_printf(gstr,
130 "\t\t<method name=\"%s\">\n",
132 print_arguments(gstr, method->in_args, "in");
133 print_arguments(gstr, method->out_args, "out");
136 g_string_append_printf(gstr,
137 G_DBUS_ANNOTATE_DEPRECATED("\t\t\t"));
139 g_string_append_printf(gstr,
140 G_DBUS_ANNOTATE_NOREPLY("\t\t\t"));
142 g_string_append_printf(gstr, "\t\t</method>\n");
146 for (signal = iface->signals; signal && signal->name; signal++) {
147 gboolean deprecated = signal->flags &
148 G_DBUS_SIGNAL_FLAG_DEPRECATED;
150 if (!deprecated && !(signal->args && signal->args->name))
151 g_string_append_printf(gstr,
152 "\t\t<signal name=\"%s\"/>\n",
155 g_string_append_printf(gstr,
156 "\t\t<signal name=\"%s\">\n",
158 print_arguments(gstr, signal->args, NULL);
161 g_string_append_printf(gstr,
162 G_DBUS_ANNOTATE_DEPRECATED("\t\t\t"));
164 g_string_append_printf(gstr, "\t\t</signal>\n");
168 for (property = iface->properties; property && property->name;
170 gboolean deprecated = property->flags &
171 G_DBUS_PROPERTY_FLAG_DEPRECATED;
173 g_string_append_printf(gstr, "\t\t<property name=\"%s\""
174 " type=\"%s\" access=\"%s%s\"",
175 property->name, property->type,
176 property->get ? "read" : "",
177 property->set ? "write" : "");
180 g_string_append_printf(gstr, "/>\n");
182 g_string_append_printf(gstr,
183 G_DBUS_ANNOTATE_DEPRECATED(">\n\t\t\t"));
187 static void generate_introspection_xml(DBusConnection *conn,
188 struct generic_data *data, const char *path)
195 g_free(data->introspect);
197 gstr = g_string_new(DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE);
199 g_string_append_printf(gstr, "<node>\n");
201 for (list = data->interfaces; list; list = list->next) {
202 struct interface_data *iface = list->data;
204 g_string_append_printf(gstr, "\t<interface name=\"%s\">\n",
207 generate_interface_xml(gstr, iface);
209 g_string_append_printf(gstr, "\t</interface>\n");
212 if (!dbus_connection_list_registered(conn, path, &children))
215 for (i = 0; children[i]; i++)
216 g_string_append_printf(gstr, "\t<node name=\"%s\"/>\n",
219 dbus_free_string_array(children);
222 g_string_append_printf(gstr, "</node>\n");
224 data->introspect = g_string_free(gstr, FALSE);
227 static DBusMessage *introspect(DBusConnection *connection,
228 DBusMessage *message, void *user_data)
230 struct generic_data *data = user_data;
233 if (data->introspect == NULL)
234 generate_introspection_xml(connection, data,
235 dbus_message_get_path(message));
237 reply = dbus_message_new_method_return(message);
241 dbus_message_append_args(reply, DBUS_TYPE_STRING, &data->introspect,
247 static DBusHandlerResult process_message(DBusConnection *connection,
248 DBusMessage *message, const GDBusMethodTable *method,
249 void *iface_user_data)
253 reply = method->function(connection, message, iface_user_data);
255 if (method->flags & G_DBUS_METHOD_FLAG_NOREPLY) {
257 dbus_message_unref(reply);
258 return DBUS_HANDLER_RESULT_HANDLED;
261 if (method->flags & G_DBUS_METHOD_FLAG_ASYNC) {
263 return DBUS_HANDLER_RESULT_HANDLED;
267 return DBUS_HANDLER_RESULT_NEED_MEMORY;
269 dbus_connection_send(connection, reply, NULL);
270 dbus_message_unref(reply);
272 return DBUS_HANDLER_RESULT_HANDLED;
275 static GDBusPendingReply next_pending = 1;
276 static GSList *pending_security = NULL;
278 static const GDBusSecurityTable *security_table = NULL;
280 void g_dbus_pending_success(DBusConnection *connection,
281 GDBusPendingReply pending)
285 for (list = pending_security; list; list = list->next) {
286 struct security_data *secdata = list->data;
288 if (secdata->pending != pending)
291 pending_security = g_slist_remove(pending_security, secdata);
293 process_message(connection, secdata->message,
294 secdata->method, secdata->iface_user_data);
296 dbus_message_unref(secdata->message);
302 void g_dbus_pending_error_valist(DBusConnection *connection,
303 GDBusPendingReply pending, const char *name,
304 const char *format, va_list args)
308 for (list = pending_security; list; list = list->next) {
309 struct security_data *secdata = list->data;
312 if (secdata->pending != pending)
315 pending_security = g_slist_remove(pending_security, secdata);
317 reply = g_dbus_create_error_valist(secdata->message,
320 dbus_connection_send(connection, reply, NULL);
321 dbus_message_unref(reply);
324 dbus_message_unref(secdata->message);
330 void g_dbus_pending_error(DBusConnection *connection,
331 GDBusPendingReply pending,
332 const char *name, const char *format, ...)
336 va_start(args, format);
338 g_dbus_pending_error_valist(connection, pending, name, format, args);
343 int polkit_check_authorization(DBusConnection *conn,
344 const char *action, gboolean interaction,
345 void (*function) (dbus_bool_t authorized,
347 void *user_data, int timeout);
349 struct builtin_security_data {
350 DBusConnection *conn;
351 GDBusPendingReply pending;
354 static void builtin_security_result(dbus_bool_t authorized, void *user_data)
356 struct builtin_security_data *data = user_data;
358 if (authorized == TRUE)
359 g_dbus_pending_success(data->conn, data->pending);
361 g_dbus_pending_error(data->conn, data->pending,
362 DBUS_ERROR_AUTH_FAILED, NULL);
367 static void builtin_security_function(DBusConnection *conn,
369 gboolean interaction,
370 GDBusPendingReply pending)
372 struct builtin_security_data *data;
374 data = g_new0(struct builtin_security_data, 1);
376 data->pending = pending;
378 if (polkit_check_authorization(conn, action, interaction,
379 builtin_security_result, data, 30000) < 0)
380 g_dbus_pending_error(conn, pending, NULL, NULL);
383 static gboolean check_privilege(DBusConnection *conn, DBusMessage *msg,
384 const GDBusMethodTable *method, void *iface_user_data)
386 const GDBusSecurityTable *security;
388 for (security = security_table; security && security->privilege;
390 struct security_data *secdata;
391 gboolean interaction;
393 if (security->privilege != method->privilege)
396 secdata = g_new(struct security_data, 1);
397 secdata->pending = next_pending++;
398 secdata->message = dbus_message_ref(msg);
399 secdata->method = method;
400 secdata->iface_user_data = iface_user_data;
402 pending_security = g_slist_prepend(pending_security, secdata);
404 if (security->flags & G_DBUS_SECURITY_FLAG_ALLOW_INTERACTION)
409 if (!(security->flags & G_DBUS_SECURITY_FLAG_BUILTIN) &&
411 security->function(conn, security->action,
412 interaction, secdata->pending);
414 builtin_security_function(conn, security->action,
415 interaction, secdata->pending);
423 static GDBusPendingPropertySet next_pending_property = 1;
424 static GSList *pending_property_set;
426 static struct property_data *remove_pending_property_data(
427 GDBusPendingPropertySet id)
429 struct property_data *propdata;
432 for (l = pending_property_set; l != NULL; l = l->next) {
434 if (propdata->id != id)
441 pending_property_set = g_slist_delete_link(pending_property_set, l);
446 void g_dbus_pending_property_success(DBusConnection *connection,
447 GDBusPendingPropertySet id)
449 struct property_data *propdata;
451 propdata = remove_pending_property_data(id);
452 if (propdata == NULL)
455 g_dbus_send_reply(connection, propdata->message, DBUS_TYPE_INVALID);
456 dbus_message_unref(propdata->message);
460 void g_dbus_pending_property_error_valist(DBusConnection *connection,
461 GDBusPendingReply id, const char *name,
462 const char *format, va_list args)
464 struct property_data *propdata;
467 propdata = remove_pending_property_data(id);
468 if (propdata == NULL)
471 reply = g_dbus_create_error_valist(propdata->message, name, format,
474 dbus_connection_send(connection, reply, NULL);
475 dbus_message_unref(reply);
478 dbus_message_unref(propdata->message);
482 void g_dbus_pending_property_error(DBusConnection *connection,
483 GDBusPendingReply id, const char *name,
484 const char *format, ...)
488 va_start(args, format);
490 g_dbus_pending_property_error_valist(connection, id, name, format,
496 static void reset_parent(gpointer data, gpointer user_data)
498 struct generic_data *child = data;
499 struct generic_data *parent = user_data;
501 child->parent = parent;
504 static void append_property(struct interface_data *iface,
505 const GDBusPropertyTable *p, DBusMessageIter *dict)
507 DBusMessageIter entry, value;
509 dbus_message_iter_open_container(dict, DBUS_TYPE_DICT_ENTRY, NULL,
511 dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &p->name);
512 dbus_message_iter_open_container(&entry, DBUS_TYPE_VARIANT, p->type,
515 p->get(p, &value, iface->user_data);
517 dbus_message_iter_close_container(&entry, &value);
518 dbus_message_iter_close_container(dict, &entry);
521 static void append_properties(struct interface_data *data,
522 DBusMessageIter *iter)
524 DBusMessageIter dict;
525 const GDBusPropertyTable *p;
527 dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY,
528 DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
529 DBUS_TYPE_STRING_AS_STRING
530 DBUS_TYPE_VARIANT_AS_STRING
531 DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &dict);
533 for (p = data->properties; p && p->name; p++) {
537 if (p->exists != NULL && !p->exists(p, data->user_data))
540 append_property(data, p, &dict);
543 dbus_message_iter_close_container(iter, &dict);
546 static void append_interface(gpointer data, gpointer user_data)
548 struct interface_data *iface = data;
549 DBusMessageIter *array = user_data;
550 DBusMessageIter entry;
552 dbus_message_iter_open_container(array, DBUS_TYPE_DICT_ENTRY, NULL,
554 dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &iface->name);
555 append_properties(data, &entry);
556 dbus_message_iter_close_container(array, &entry);
559 static void emit_interfaces_added(struct generic_data *data)
562 DBusMessageIter iter, array;
563 struct generic_data *parent = data->parent;
569 while (parent->parent)
570 parent = parent->parent;
572 signal = dbus_message_new_signal(parent->path,
573 DBUS_INTERFACE_OBJECT_MANAGER,
578 dbus_message_iter_init_append(signal, &iter);
579 dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
582 dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
583 DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
584 DBUS_TYPE_STRING_AS_STRING
585 DBUS_TYPE_ARRAY_AS_STRING
586 DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
587 DBUS_TYPE_STRING_AS_STRING
588 DBUS_TYPE_VARIANT_AS_STRING
589 DBUS_DICT_ENTRY_END_CHAR_AS_STRING
590 DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &array);
592 g_slist_foreach(data->added, append_interface, &array);
593 g_slist_free(data->added);
596 dbus_message_iter_close_container(&iter, &array);
598 g_dbus_send_message(data->conn, signal);
601 static struct interface_data *find_interface(GSList *interfaces,
609 for (list = interfaces; list; list = list->next) {
610 struct interface_data *iface = list->data;
611 if (!strcmp(name, iface->name))
618 static gboolean g_dbus_args_have_signature(const GDBusArgInfo *args,
619 DBusMessage *message)
621 const char *sig = dbus_message_get_signature(message);
622 const char *p = NULL;
624 for (; args && args->signature && *sig; args++) {
627 for (; *sig && *p; sig++, p++) {
633 if (*sig || (p && *p) || (args && args->signature))
639 static gboolean remove_interface(struct generic_data *data, const char *name)
641 struct interface_data *iface;
643 iface = find_interface(data->interfaces, name);
647 data->interfaces = g_slist_remove(data->interfaces, iface);
649 if (iface->destroy) {
650 iface->destroy(iface->user_data);
651 iface->user_data = NULL;
654 if (data->parent == NULL) {
660 data->removed = g_slist_prepend(data->removed, iface->name);
663 if (data->process_id > 0)
666 data->process_id = g_idle_add(process_changes, data);
671 static struct generic_data *invalidate_parent_data(DBusConnection *conn,
672 const char *child_path)
674 struct generic_data *data = NULL, *child = NULL, *parent = NULL;
675 char *parent_path, *slash;
677 parent_path = g_strdup(child_path);
678 slash = strrchr(parent_path, '/');
682 if (slash == parent_path && parent_path[1] != '\0')
683 parent_path[1] = '\0';
687 if (!strlen(parent_path))
690 if (dbus_connection_get_object_path_data(conn, parent_path,
691 (void *) &data) == FALSE) {
695 parent = invalidate_parent_data(conn, parent_path);
703 g_free(data->introspect);
704 data->introspect = NULL;
706 if (!dbus_connection_get_object_path_data(conn, child_path,
710 if (child == NULL || g_slist_find(data->objects, child) != NULL)
713 data->objects = g_slist_prepend(data->objects, child);
714 child->parent = data;
721 static inline const GDBusPropertyTable *find_property(const GDBusPropertyTable *properties,
724 const GDBusPropertyTable *p;
726 for (p = properties; p && p->name; p++) {
727 if (strcmp(name, p->name) == 0)
734 static DBusMessage *properties_get(DBusConnection *connection,
735 DBusMessage *message, void *user_data)
737 struct generic_data *data = user_data;
738 struct interface_data *iface;
739 const GDBusPropertyTable *property;
740 const char *interface, *name;
741 DBusMessageIter iter, value;
744 if (!dbus_message_get_args(message, NULL,
745 DBUS_TYPE_STRING, &interface,
746 DBUS_TYPE_STRING, &name,
750 iface = find_interface(data->interfaces, interface);
752 return g_dbus_create_error(message, DBUS_ERROR_INVALID_ARGS,
753 "No such interface '%s'", interface);
755 property = find_property(iface->properties, name);
756 if (property == NULL)
757 return g_dbus_create_error(message, DBUS_ERROR_INVALID_ARGS,
758 "No such property '%s'", name);
760 if (property->exists != NULL &&
761 !property->exists(property, iface->user_data))
762 return g_dbus_create_error(message, DBUS_ERROR_INVALID_ARGS,
763 "No such property '%s'", name);
765 if (property->get == NULL)
766 return g_dbus_create_error(message, DBUS_ERROR_INVALID_ARGS,
767 "Property '%s' is not readable", name);
769 reply = dbus_message_new_method_return(message);
773 dbus_message_iter_init_append(reply, &iter);
774 dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT,
775 property->type, &value);
777 if (!property->get(property, &value, iface->user_data)) {
778 dbus_message_unref(reply);
782 dbus_message_iter_close_container(&iter, &value);
787 static DBusMessage *properties_get_all(DBusConnection *connection,
788 DBusMessage *message, void *user_data)
790 struct generic_data *data = user_data;
791 struct interface_data *iface;
792 const char *interface;
793 DBusMessageIter iter;
796 if (!dbus_message_get_args(message, NULL,
797 DBUS_TYPE_STRING, &interface,
801 iface = find_interface(data->interfaces, interface);
803 return g_dbus_create_error(message, DBUS_ERROR_INVALID_ARGS,
804 "No such interface '%s'", interface);
806 reply = dbus_message_new_method_return(message);
810 dbus_message_iter_init_append(reply, &iter);
812 append_properties(iface, &iter);
817 static DBusMessage *properties_set(DBusConnection *connection,
818 DBusMessage *message, void *user_data)
820 struct generic_data *data = user_data;
821 DBusMessageIter iter, sub;
822 struct interface_data *iface;
823 const GDBusPropertyTable *property;
824 const char *name, *interface;
825 struct property_data *propdata;
827 if (!dbus_message_iter_init(message, &iter))
828 return g_dbus_create_error(message, DBUS_ERROR_INVALID_ARGS,
829 "No arguments given");
831 if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING)
832 return g_dbus_create_error(message, DBUS_ERROR_INVALID_ARGS,
833 "Invalid argument type: '%c'",
834 dbus_message_iter_get_arg_type(&iter));
836 dbus_message_iter_get_basic(&iter, &name);
837 dbus_message_iter_next(&iter);
839 if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING)
840 return g_dbus_create_error(message, DBUS_ERROR_INVALID_ARGS,
841 "Invalid argument type: '%c'",
842 dbus_message_iter_get_arg_type(&iter));
844 dbus_message_iter_get_basic(&iter, &interface);
845 dbus_message_iter_next(&iter);
847 if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT)
848 return g_dbus_create_error(message, DBUS_ERROR_INVALID_ARGS,
849 "Invalid argument type: '%c'",
850 dbus_message_iter_get_arg_type(&iter));
852 dbus_message_iter_recurse(&iter, &sub);
854 iface = find_interface(data->interfaces, interface);
856 return g_dbus_create_error(message, DBUS_ERROR_INVALID_ARGS,
857 "No such interface '%s'", interface);
859 property = find_property(iface->properties, name);
860 if (property == NULL)
861 return g_dbus_create_error(message,
862 DBUS_ERROR_UNKNOWN_PROPERTY,
863 "No such property '%s'", name);
865 if (property->set == NULL)
866 return g_dbus_create_error(message,
867 DBUS_ERROR_PROPERTY_READ_ONLY,
868 "Property '%s' is not writable", name);
870 if (property->exists != NULL &&
871 !property->exists(property, iface->user_data))
872 return g_dbus_create_error(message,
873 DBUS_ERROR_UNKNOWN_PROPERTY,
874 "No such property '%s'", name);
876 propdata = g_new(struct property_data, 1);
877 propdata->id = next_pending_property++;
878 propdata->message = dbus_message_ref(message);
880 property->set(property, &sub, propdata->id, iface->user_data);
885 static const GDBusMethodTable properties_methods[] = {
886 { GDBUS_METHOD("Get",
887 GDBUS_ARGS({ "interface", "s" }, { "name", "s" }),
888 GDBUS_ARGS({ "value", "v" }),
890 { GDBUS_ASYNC_METHOD("Set", NULL,
891 GDBUS_ARGS({ "interface", "s" }, { "name", "s" },
894 { GDBUS_METHOD("GetAll",
895 GDBUS_ARGS({ "interface", "s" }),
896 GDBUS_ARGS({ "properties", "a{sv}" }),
897 properties_get_all) },
901 static const GDBusSignalTable properties_signals[] = {
902 { GDBUS_SIGNAL("PropertiesChanged",
903 GDBUS_ARGS({ "interface", "s" },
904 { "changed_properties", "a{sv}" },
905 { "invalidated_properties", "as"})) },
909 static void append_name(gpointer data, gpointer user_data)
912 DBusMessageIter *iter = user_data;
914 dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &name);
917 static void emit_interfaces_removed(struct generic_data *data)
920 DBusMessageIter iter, array;
921 struct generic_data *parent = data->parent;
927 while (parent->parent)
928 parent = parent->parent;
930 signal = dbus_message_new_signal(parent->path,
931 DBUS_INTERFACE_OBJECT_MANAGER,
932 "InterfacesRemoved");
936 dbus_message_iter_init_append(signal, &iter);
937 dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
939 dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
940 DBUS_TYPE_STRING_AS_STRING, &array);
942 g_slist_foreach(data->removed, append_name, &array);
943 g_slist_free_full(data->removed, g_free);
944 data->removed = NULL;
946 dbus_message_iter_close_container(&iter, &array);
948 g_dbus_send_message(data->conn, signal);
951 static gboolean process_changes(gpointer user_data)
953 struct generic_data *data = user_data;
955 data->process_id = 0;
957 if (data->added != NULL)
958 emit_interfaces_added(data);
960 /* Flush pending properties */
961 if (data->pending_prop == TRUE)
962 process_property_changes(data);
964 if (data->removed != NULL)
965 emit_interfaces_removed(data);
970 static void generic_unregister(DBusConnection *connection, void *user_data)
972 struct generic_data *data = user_data;
973 struct generic_data *parent = data->parent;
976 parent->objects = g_slist_remove(parent->objects, data);
978 if (data->process_id > 0) {
979 g_source_remove(data->process_id);
980 process_changes(data);
983 g_slist_foreach(data->objects, reset_parent, data->parent);
984 g_slist_free(data->objects);
986 dbus_connection_unref(data->conn);
987 g_free(data->introspect);
992 static DBusHandlerResult generic_message(DBusConnection *connection,
993 DBusMessage *message, void *user_data)
995 struct generic_data *data = user_data;
996 struct interface_data *iface;
997 const GDBusMethodTable *method;
998 const char *interface;
1000 interface = dbus_message_get_interface(message);
1002 iface = find_interface(data->interfaces, interface);
1004 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
1006 for (method = iface->methods; method &&
1007 method->name && method->function; method++) {
1008 if (dbus_message_is_method_call(message, iface->name,
1009 method->name) == FALSE)
1012 if (g_dbus_args_have_signature(method->in_args,
1016 if (check_privilege(connection, message, method,
1017 iface->user_data) == TRUE)
1018 return DBUS_HANDLER_RESULT_HANDLED;
1020 return process_message(connection, message, method,
1024 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
1027 static DBusObjectPathVTable generic_table = {
1028 .unregister_function = generic_unregister,
1029 .message_function = generic_message,
1032 static const GDBusMethodTable introspect_methods[] = {
1033 { GDBUS_METHOD("Introspect", NULL,
1034 GDBUS_ARGS({ "xml", "s" }), introspect) },
1038 static void append_interfaces(struct generic_data *data, DBusMessageIter *iter)
1040 DBusMessageIter array;
1042 dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY,
1043 DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
1044 DBUS_TYPE_STRING_AS_STRING
1045 DBUS_TYPE_ARRAY_AS_STRING
1046 DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
1047 DBUS_TYPE_STRING_AS_STRING
1048 DBUS_TYPE_VARIANT_AS_STRING
1049 DBUS_DICT_ENTRY_END_CHAR_AS_STRING
1050 DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &array);
1052 g_slist_foreach(data->interfaces, append_interface, &array);
1054 dbus_message_iter_close_container(iter, &array);
1057 static void append_object(gpointer data, gpointer user_data)
1059 struct generic_data *child = data;
1060 DBusMessageIter *array = user_data;
1061 DBusMessageIter entry;
1063 dbus_message_iter_open_container(array, DBUS_TYPE_DICT_ENTRY, NULL,
1065 dbus_message_iter_append_basic(&entry, DBUS_TYPE_OBJECT_PATH,
1067 append_interfaces(child, &entry);
1068 dbus_message_iter_close_container(array, &entry);
1070 g_slist_foreach(child->objects, append_object, user_data);
1073 static DBusMessage *get_objects(DBusConnection *connection,
1074 DBusMessage *message, void *user_data)
1076 struct generic_data *data = user_data;
1078 DBusMessageIter iter;
1079 DBusMessageIter array;
1081 reply = dbus_message_new_method_return(message);
1085 dbus_message_iter_init_append(reply, &iter);
1087 dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
1088 DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
1089 DBUS_TYPE_OBJECT_PATH_AS_STRING
1090 DBUS_TYPE_ARRAY_AS_STRING
1091 DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
1092 DBUS_TYPE_STRING_AS_STRING
1093 DBUS_TYPE_ARRAY_AS_STRING
1094 DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
1095 DBUS_TYPE_STRING_AS_STRING
1096 DBUS_TYPE_VARIANT_AS_STRING
1097 DBUS_DICT_ENTRY_END_CHAR_AS_STRING
1098 DBUS_DICT_ENTRY_END_CHAR_AS_STRING
1099 DBUS_DICT_ENTRY_END_CHAR_AS_STRING,
1102 g_slist_foreach(data->objects, append_object, &array);
1104 dbus_message_iter_close_container(&iter, &array);
1109 static const GDBusMethodTable manager_methods[] = {
1110 { GDBUS_METHOD("GetManagedObjects", NULL,
1111 GDBUS_ARGS({ "objects", "a{oa{sa{sv}}}" }), get_objects) },
1115 static const GDBusSignalTable manager_signals[] = {
1116 { GDBUS_SIGNAL("InterfacesAdded",
1117 GDBUS_ARGS({ "object", "o" },
1118 { "interfaces", "a{sa{sv}}" })) },
1119 { GDBUS_SIGNAL("InterfacesRemoved",
1120 GDBUS_ARGS({ "object", "o" }, { "interfaces", "as" })) },
1124 static void add_interface(struct generic_data *data,
1126 const GDBusMethodTable *methods,
1127 const GDBusSignalTable *signals,
1128 const GDBusPropertyTable *properties,
1130 GDBusDestroyFunction destroy)
1132 struct interface_data *iface;
1134 iface = g_new0(struct interface_data, 1);
1135 iface->name = g_strdup(name);
1136 iface->methods = methods;
1137 iface->signals = signals;
1138 iface->properties = properties;
1139 iface->user_data = user_data;
1140 iface->destroy = destroy;
1142 data->interfaces = g_slist_append(data->interfaces, iface);
1143 if (data->parent == NULL)
1146 data->added = g_slist_append(data->added, iface);
1147 if (data->process_id > 0)
1150 data->process_id = g_idle_add(process_changes, data);
1153 static struct generic_data *object_path_ref(DBusConnection *connection,
1156 struct generic_data *data;
1158 if (dbus_connection_get_object_path_data(connection, path,
1159 (void *) &data) == TRUE) {
1166 data = g_new0(struct generic_data, 1);
1167 data->conn = dbus_connection_ref(connection);
1168 data->path = g_strdup(path);
1171 data->introspect = g_strdup(DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE "<node></node>");
1173 if (!dbus_connection_register_object_path(connection, path,
1174 &generic_table, data)) {
1175 g_free(data->introspect);
1180 invalidate_parent_data(connection, path);
1182 add_interface(data, DBUS_INTERFACE_INTROSPECTABLE, introspect_methods,
1183 NULL, NULL, data, NULL);
1185 /* Only root path export ObjectManager interface */
1186 if (data->parent == NULL)
1187 add_interface(data, DBUS_INTERFACE_OBJECT_MANAGER,
1188 manager_methods, manager_signals,
1191 add_interface(data, DBUS_INTERFACE_PROPERTIES, properties_methods,
1192 properties_signals, NULL, data, NULL);
1197 static void object_path_unref(DBusConnection *connection, const char *path)
1199 struct generic_data *data = NULL;
1201 if (dbus_connection_get_object_path_data(connection, path,
1202 (void *) &data) == FALSE)
1210 if (data->refcount > 0)
1213 remove_interface(data, DBUS_INTERFACE_INTROSPECTABLE);
1214 remove_interface(data, DBUS_INTERFACE_PROPERTIES);
1215 remove_interface(data, DBUS_INTERFACE_OBJECT_MANAGER);
1217 invalidate_parent_data(data->conn, data->path);
1219 dbus_connection_unregister_object_path(data->conn, data->path);
1222 static gboolean check_signal(DBusConnection *conn, const char *path,
1223 const char *interface, const char *name,
1224 const GDBusArgInfo **args)
1226 struct generic_data *data = NULL;
1227 struct interface_data *iface;
1228 const GDBusSignalTable *signal;
1231 if (!dbus_connection_get_object_path_data(conn, path,
1232 (void *) &data) || data == NULL) {
1233 error("dbus_connection_emit_signal: path %s isn't registered",
1238 iface = find_interface(data->interfaces, interface);
1239 if (iface == NULL) {
1240 error("dbus_connection_emit_signal: %s does not implement %s",
1245 for (signal = iface->signals; signal && signal->name; signal++) {
1246 if (!strcmp(signal->name, name)) {
1247 *args = signal->args;
1252 error("No signal named %s on interface %s", name, interface);
1256 static dbus_bool_t emit_signal_valist(DBusConnection *conn,
1258 const char *interface,
1263 DBusMessage *signal;
1265 const GDBusArgInfo *args;
1267 if (!check_signal(conn, path, interface, name, &args))
1270 signal = dbus_message_new_signal(path, interface, name);
1271 if (signal == NULL) {
1272 error("Unable to allocate new %s.%s signal", interface, name);
1276 ret = dbus_message_append_args_valist(signal, first, var_args);
1280 if (g_dbus_args_have_signature(args, signal) == FALSE) {
1281 error("%s.%s: got unexpected signature '%s'", interface, name,
1282 dbus_message_get_signature(signal));
1287 ret = dbus_connection_send(conn, signal, NULL);
1290 dbus_message_unref(signal);
1295 gboolean g_dbus_register_interface(DBusConnection *connection,
1296 const char *path, const char *name,
1297 const GDBusMethodTable *methods,
1298 const GDBusSignalTable *signals,
1299 const GDBusPropertyTable *properties,
1301 GDBusDestroyFunction destroy)
1303 struct generic_data *data;
1305 data = object_path_ref(connection, path);
1309 if (find_interface(data->interfaces, name)) {
1310 object_path_unref(connection, path);
1314 add_interface(data, name, methods, signals, properties, user_data,
1317 g_free(data->introspect);
1318 data->introspect = NULL;
1323 gboolean g_dbus_unregister_interface(DBusConnection *connection,
1324 const char *path, const char *name)
1326 struct generic_data *data = NULL;
1331 if (dbus_connection_get_object_path_data(connection, path,
1332 (void *) &data) == FALSE)
1338 if (remove_interface(data, name) == FALSE)
1341 g_free(data->introspect);
1342 data->introspect = NULL;
1344 object_path_unref(connection, data->path);
1349 gboolean g_dbus_register_security(const GDBusSecurityTable *security)
1351 if (security_table != NULL)
1354 security_table = security;
1359 gboolean g_dbus_unregister_security(const GDBusSecurityTable *security)
1361 security_table = NULL;
1366 DBusMessage *g_dbus_create_error_valist(DBusMessage *message, const char *name,
1367 const char *format, va_list args)
1371 vsnprintf(str, sizeof(str), format, args);
1373 return dbus_message_new_error(message, name, str);
1376 DBusMessage *g_dbus_create_error(DBusMessage *message, const char *name,
1377 const char *format, ...)
1382 va_start(args, format);
1384 reply = g_dbus_create_error_valist(message, name, format, args);
1391 DBusMessage *g_dbus_create_reply_valist(DBusMessage *message,
1392 int type, va_list args)
1396 reply = dbus_message_new_method_return(message);
1400 if (dbus_message_append_args_valist(reply, type, args) == FALSE) {
1401 dbus_message_unref(reply);
1408 DBusMessage *g_dbus_create_reply(DBusMessage *message, int type, ...)
1413 va_start(args, type);
1415 reply = g_dbus_create_reply_valist(message, type, args);
1422 gboolean g_dbus_send_message(DBusConnection *connection, DBusMessage *message)
1426 if (dbus_message_get_type(message) == DBUS_MESSAGE_TYPE_METHOD_CALL)
1427 dbus_message_set_no_reply(message, TRUE);
1429 result = dbus_connection_send(connection, message, NULL);
1431 dbus_message_unref(message);
1436 gboolean g_dbus_send_reply_valist(DBusConnection *connection,
1437 DBusMessage *message, int type, va_list args)
1441 reply = dbus_message_new_method_return(message);
1445 if (dbus_message_append_args_valist(reply, type, args) == FALSE) {
1446 dbus_message_unref(reply);
1450 return g_dbus_send_message(connection, reply);
1453 gboolean g_dbus_send_reply(DBusConnection *connection,
1454 DBusMessage *message, int type, ...)
1459 va_start(args, type);
1461 result = g_dbus_send_reply_valist(connection, message, type, args);
1468 gboolean g_dbus_emit_signal(DBusConnection *connection,
1469 const char *path, const char *interface,
1470 const char *name, int type, ...)
1475 va_start(args, type);
1477 result = emit_signal_valist(connection, path, interface,
1485 gboolean g_dbus_emit_signal_valist(DBusConnection *connection,
1486 const char *path, const char *interface,
1487 const char *name, int type, va_list args)
1489 return emit_signal_valist(connection, path, interface,
1493 static void process_properties_from_interface(struct generic_data *data,
1494 struct interface_data *iface)
1497 DBusMessage *signal;
1498 DBusMessageIter iter, dict, array;
1500 if (iface->pending_prop == NULL)
1503 signal = dbus_message_new_signal(data->path,
1504 DBUS_INTERFACE_PROPERTIES, "PropertiesChanged");
1505 if (signal == NULL) {
1506 error("Unable to allocate new " DBUS_INTERFACE_PROPERTIES
1507 ".PropertiesChanged signal");
1511 iface->pending_prop = g_slist_reverse(iface->pending_prop);
1513 dbus_message_iter_init_append(signal, &iter);
1514 dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &iface->name);
1515 dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
1516 DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
1517 DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING
1518 DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &dict);
1520 for (l = iface->pending_prop; l != NULL; l = l->next) {
1521 GDBusPropertyTable *p = l->data;
1526 if (p->exists != NULL && !p->exists(p, iface->user_data))
1529 append_property(iface, p, &dict);
1532 dbus_message_iter_close_container(&iter, &dict);
1533 dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
1534 DBUS_TYPE_STRING_AS_STRING, &array);
1535 dbus_message_iter_close_container(&iter, &array);
1537 g_dbus_send_message(data->conn, signal);
1539 g_slist_free(iface->pending_prop);
1540 iface->pending_prop = NULL;
1543 static void process_property_changes(struct generic_data *data)
1547 for (l = data->interfaces; l != NULL; l = l->next) {
1548 struct interface_data *iface = l->data;
1550 process_properties_from_interface(data, iface);
1553 data->pending_prop = FALSE;
1556 void g_dbus_emit_property_changed(DBusConnection *connection,
1557 const char *path, const char *interface,
1560 const GDBusPropertyTable *property;
1561 struct generic_data *data;
1562 struct interface_data *iface;
1564 if (!dbus_connection_get_object_path_data(connection, path,
1565 (void **) &data) || data == NULL)
1568 iface = find_interface(data->interfaces, interface);
1572 property = find_property(iface->properties, name);
1573 if (property == NULL) {
1574 error("Could not find property %s in %p", name,
1579 data->pending_prop = TRUE;
1580 iface->pending_prop = g_slist_prepend(iface->pending_prop,
1583 if (!data->process_id) {
1584 data->process_id = g_idle_add(process_changes, data);