First public contribution.
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* connection.c Client connections
4 * Copyright (C) 2003 Red Hat, Inc.
5 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
6 * Licensed under the Academic Free License version 2.1
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "connection.h"
29 #include "expirelist.h"
32 #include <dbus/dbus-list.h>
33 #include <dbus/dbus-hash.h>
34 #include <dbus/dbus-timeout.h>
36 #include "dbus-list.h"
37 #include "dbus-hash.h"
38 #include "dbus-timeout.h"
39 #endif //__SYMBIAN32__
43 #endif //__SYMBIAN32__
45 static void bus_connection_remove_transactions (DBusConnection *connection);
49 BusExpireItem expire_item;
51 DBusConnection *will_get_reply;
52 DBusConnection *will_send_reply;
54 dbus_uint32_t reply_serial;
61 DBusList *completed; /**< List of all completed connections */
62 int n_completed; /**< Length of completed list */
63 DBusList *incomplete; /**< List of all not-yet-active connections */
64 int n_incomplete; /**< Length of incomplete list */
66 DBusHashTable *completed_by_user; /**< Number of completed connections for each UID */
67 DBusTimeout *expire_timeout; /**< Timeout for expiring incomplete connections. */
68 int stamp; /**< Incrementing number */
69 BusExpireList *pending_replies; /**< List of pending replies */
72 static dbus_int32_t connection_data_slot = -1;
76 BusConnections *connections;
77 DBusList *link_in_connection_list;
78 DBusConnection *connection;
79 DBusList *services_owned;
81 DBusList *match_rules;
84 DBusList *transaction_messages; /**< Stuff we need to send as part of a transaction */
85 DBusMessage *oom_message;
86 DBusPreallocatedSend *oom_preallocated;
87 BusClientPolicy *policy;
89 BusSELinuxID *selinux_id;
91 long connection_tv_sec; /**< Time when we connected (seconds component) */
92 long connection_tv_usec; /**< Time when we connected (microsec component) */
93 int stamp; /**< connections->stamp last time we were traversed */
96 static dbus_bool_t bus_pending_reply_expired (BusExpireList *list,
100 static void bus_connection_drop_pending_replies (BusConnections *connections,
101 DBusConnection *connection);
103 static dbus_bool_t expire_incomplete_timeout (void *data);
105 #define BUS_CONNECTION_DATA(connection) (dbus_connection_get_data ((connection), connection_data_slot))
108 connection_get_loop (DBusConnection *connection)
110 BusConnectionData *d;
112 d = BUS_CONNECTION_DATA (connection);
114 return bus_context_get_loop (d->connections->context);
119 get_connections_for_uid (BusConnections *connections,
125 /* val is NULL is 0 when it isn't in the hash yet */
127 val = _dbus_hash_table_lookup_ulong (connections->completed_by_user,
130 current_count = _DBUS_POINTER_TO_INT (val);
132 return current_count;
136 adjust_connections_for_uid (BusConnections *connections,
142 current_count = get_connections_for_uid (connections, uid);
144 _dbus_verbose ("Adjusting connection count for UID " DBUS_UID_FORMAT
145 ": was %d adjustment %d making %d\n",
146 uid, current_count, adjustment, current_count + adjustment);
148 _dbus_assert (current_count >= 0);
150 current_count += adjustment;
152 _dbus_assert (current_count >= 0);
154 if (current_count == 0)
156 _dbus_hash_table_remove_ulong (connections->completed_by_user, uid);
163 retval = _dbus_hash_table_insert_ulong (connections->completed_by_user,
164 uid, _DBUS_INT_TO_POINTER (current_count));
166 /* only positive adjustment can fail as otherwise
167 * a hash entry should already exist
169 _dbus_assert (adjustment > 0 ||
170 (adjustment <= 0 && retval));
177 bus_connection_disconnected (DBusConnection *connection)
179 BusConnectionData *d;
181 BusMatchmaker *matchmaker;
183 d = BUS_CONNECTION_DATA (connection);
184 _dbus_assert (d != NULL);
186 _dbus_verbose ("%s disconnected, dropping all service ownership and releasing\n",
187 d->name ? d->name : "(inactive)");
189 /* Delete our match rules */
190 if (d->n_match_rules > 0)
192 matchmaker = bus_context_get_matchmaker (d->connections->context);
193 bus_matchmaker_disconnected (matchmaker, connection);
196 /* Drop any service ownership. Unfortunately, this requires
197 * memory allocation and there doesn't seem to be a good way to
198 * handle it other than sleeping; we can't "fail" the operation of
199 * disconnecting a client, and preallocating a broadcast "service is
200 * now gone" message for every client-service pair seems kind of
203 while ((service = _dbus_list_get_last (&d->services_owned)))
205 BusTransaction *transaction;
210 dbus_error_init (&error);
212 while ((transaction = bus_transaction_new (d->connections->context)) == NULL)
213 _dbus_wait_for_memory ();
215 if (!bus_service_remove_owner (service, connection,
216 transaction, &error))
218 _DBUS_ASSERT_ERROR_IS_SET (&error);
220 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
222 dbus_error_free (&error);
223 bus_transaction_cancel_and_free (transaction);
224 _dbus_wait_for_memory ();
229 _dbus_verbose ("Failed to remove service owner: %s %s\n",
230 error.name, error.message);
231 _dbus_assert_not_reached ("Removing service owner failed for non-memory-related reason");
235 bus_transaction_execute_and_free (transaction);
238 bus_dispatch_remove_connection (connection);
240 /* no more watching */
241 if (!dbus_connection_set_watch_functions (connection,
245 _dbus_assert_not_reached ("setting watch functions to NULL failed");
247 if (!dbus_connection_set_timeout_functions (connection,
251 _dbus_assert_not_reached ("setting timeout functions to NULL failed");
253 dbus_connection_set_unix_user_function (connection,
256 dbus_connection_set_dispatch_status_function (connection,
259 bus_connection_remove_transactions (connection);
261 if (d->link_in_connection_list != NULL)
267 _dbus_list_remove_link (&d->connections->completed, d->link_in_connection_list);
268 d->link_in_connection_list = NULL;
269 d->connections->n_completed -= 1;
271 if (dbus_connection_get_unix_user (connection, &uid))
273 if (!adjust_connections_for_uid (d->connections,
275 _dbus_assert_not_reached ("adjusting downward should never fail");
280 _dbus_list_remove_link (&d->connections->incomplete, d->link_in_connection_list);
281 d->link_in_connection_list = NULL;
282 d->connections->n_incomplete -= 1;
285 _dbus_assert (d->connections->n_incomplete >= 0);
286 _dbus_assert (d->connections->n_completed >= 0);
289 bus_connection_drop_pending_replies (d->connections, connection);
291 /* frees "d" as side effect */
292 dbus_connection_set_data (connection,
293 connection_data_slot,
296 dbus_connection_unref (connection);
300 connection_watch_callback (DBusWatch *watch,
301 unsigned int condition,
304 /* FIXME this can be done in dbus-mainloop.c
305 * if the code in activation.c for the babysitter
306 * watch handler is fixed.
310 _dbus_verbose ("Calling handle_watch\n");
312 return dbus_watch_handle (watch, condition);
316 add_connection_watch (DBusWatch *watch,
319 DBusConnection *connection = data;
321 return _dbus_loop_add_watch (connection_get_loop (connection),
322 watch, connection_watch_callback, connection,
327 remove_connection_watch (DBusWatch *watch,
330 DBusConnection *connection = data;
332 _dbus_loop_remove_watch (connection_get_loop (connection),
333 watch, connection_watch_callback, connection);
337 connection_timeout_callback (DBusTimeout *timeout,
340 /* DBusConnection *connection = data; */
342 /* can return FALSE on OOM but we just let it fire again later */
343 dbus_timeout_handle (timeout);
347 add_connection_timeout (DBusTimeout *timeout,
350 DBusConnection *connection = data;
352 return _dbus_loop_add_timeout (connection_get_loop (connection),
353 timeout, connection_timeout_callback, connection, NULL);
357 remove_connection_timeout (DBusTimeout *timeout,
360 DBusConnection *connection = data;
362 _dbus_loop_remove_timeout (connection_get_loop (connection),
363 timeout, connection_timeout_callback, connection);
367 dispatch_status_function (DBusConnection *connection,
368 DBusDispatchStatus new_status,
371 DBusLoop *loop = data;
373 if (new_status != DBUS_DISPATCH_COMPLETE)
375 while (!_dbus_loop_queue_dispatch (loop, connection))
376 _dbus_wait_for_memory ();
381 allow_user_function (DBusConnection *connection,
385 BusConnectionData *d;
387 d = BUS_CONNECTION_DATA (connection);
389 _dbus_assert (d != NULL);
391 return bus_context_allow_user (d->connections->context, uid);
395 free_connection_data (void *data)
397 BusConnectionData *d = data;
399 /* services_owned should be NULL since we should be disconnected */
400 _dbus_assert (d->services_owned == NULL);
401 _dbus_assert (d->n_services_owned == 0);
403 _dbus_assert (d->transaction_messages == NULL);
405 if (d->oom_preallocated)
406 dbus_connection_free_preallocated_send (d->connection, d->oom_preallocated);
409 dbus_message_unref (d->oom_message);
412 bus_client_policy_unref (d->policy);
415 bus_selinux_id_unref (d->selinux_id);
423 call_timeout_callback (DBusTimeout *timeout,
426 /* can return FALSE on OOM but we just let it fire again later */
427 dbus_timeout_handle (timeout);
431 bus_connections_new (BusContext *context)
433 BusConnections *connections;
435 if (!dbus_connection_allocate_data_slot (&connection_data_slot))
438 connections = dbus_new0 (BusConnections, 1);
439 if (connections == NULL)
442 connections->completed_by_user = _dbus_hash_table_new (DBUS_HASH_ULONG,
444 if (connections->completed_by_user == NULL)
447 connections->expire_timeout = _dbus_timeout_new (100, /* irrelevant */
448 expire_incomplete_timeout,
450 if (connections->expire_timeout == NULL)
453 _dbus_timeout_set_enabled (connections->expire_timeout, FALSE);
455 connections->pending_replies = bus_expire_list_new (bus_context_get_loop (context),
456 bus_context_get_reply_timeout (context),
457 bus_pending_reply_expired,
459 if (connections->pending_replies == NULL)
462 if (!_dbus_loop_add_timeout (bus_context_get_loop (context),
463 connections->expire_timeout,
464 call_timeout_callback, NULL, NULL))
467 connections->refcount = 1;
468 connections->context = context;
473 bus_expire_list_free (connections->pending_replies);
475 _dbus_timeout_unref (connections->expire_timeout);
477 _dbus_hash_table_unref (connections->completed_by_user);
479 dbus_free (connections);
481 dbus_connection_free_data_slot (&connection_data_slot);
487 bus_connections_ref (BusConnections *connections)
489 _dbus_assert (connections->refcount > 0);
490 connections->refcount += 1;
496 bus_connections_unref (BusConnections *connections)
498 _dbus_assert (connections->refcount > 0);
499 connections->refcount -= 1;
500 if (connections->refcount == 0)
502 /* drop all incomplete */
503 while (connections->incomplete != NULL)
505 DBusConnection *connection;
507 connection = connections->incomplete->data;
509 dbus_connection_ref (connection);
510 dbus_connection_close (connection);
511 bus_connection_disconnected (connection);
512 dbus_connection_unref (connection);
515 _dbus_assert (connections->n_incomplete == 0);
517 /* drop all real connections */
518 while (connections->completed != NULL)
520 DBusConnection *connection;
522 connection = connections->completed->data;
524 dbus_connection_ref (connection);
525 dbus_connection_close (connection);
526 bus_connection_disconnected (connection);
527 dbus_connection_unref (connection);
530 _dbus_assert (connections->n_completed == 0);
532 bus_expire_list_free (connections->pending_replies);
534 _dbus_loop_remove_timeout (bus_context_get_loop (connections->context),
535 connections->expire_timeout,
536 call_timeout_callback, NULL);
538 _dbus_timeout_unref (connections->expire_timeout);
540 _dbus_hash_table_unref (connections->completed_by_user);
542 dbus_free (connections);
544 dbus_connection_free_data_slot (&connection_data_slot);
549 bus_connections_setup_connection (BusConnections *connections,
550 DBusConnection *connection)
552 BusConnectionData *d;
556 d = dbus_new0 (BusConnectionData, 1);
561 d->connections = connections;
562 d->connection = connection;
564 _dbus_get_current_time (&d->connection_tv_sec,
565 &d->connection_tv_usec);
567 _dbus_assert (connection_data_slot >= 0);
569 if (!dbus_connection_set_data (connection,
570 connection_data_slot,
571 d, free_connection_data))
577 dbus_connection_set_route_peer_messages (connection, TRUE);
581 dbus_error_init (&error);
582 d->selinux_id = bus_selinux_init_connection_id (connection,
584 if (dbus_error_is_set (&error))
586 /* This is a bit bogus because we pretend all errors
587 * are OOM; this is done because we know that in bus.c
588 * an OOM error disconnects the connection, which is
589 * the same thing we want on any other error.
591 dbus_error_free (&error);
595 if (!dbus_connection_set_watch_functions (connection,
596 add_connection_watch,
597 remove_connection_watch,
603 if (!dbus_connection_set_timeout_functions (connection,
604 add_connection_timeout,
605 remove_connection_timeout,
610 dbus_connection_set_unix_user_function (connection,
614 dbus_connection_set_dispatch_status_function (connection,
615 dispatch_status_function,
616 bus_context_get_loop (connections->context),
619 d->link_in_connection_list = _dbus_list_alloc_link (connection);
620 if (d->link_in_connection_list == NULL)
623 /* Setup the connection with the dispatcher */
624 if (!bus_dispatch_add_connection (connection))
627 if (dbus_connection_get_dispatch_status (connection) != DBUS_DISPATCH_COMPLETE)
629 if (!_dbus_loop_queue_dispatch (bus_context_get_loop (connections->context), connection))
631 bus_dispatch_remove_connection (connection);
636 _dbus_list_append_link (&connections->incomplete, d->link_in_connection_list);
637 connections->n_incomplete += 1;
639 dbus_connection_ref (connection);
641 /* Note that we might disconnect ourselves here, but it only takes
642 * effect on return to the main loop. We call this to free up
643 * expired connections if possible, and to queue the timeout for our
646 bus_connections_expire_incomplete (connections);
648 /* And we might also disconnect ourselves here, but again it
649 * only takes effect on return to main loop.
651 if (connections->n_incomplete >
652 bus_context_get_max_incomplete_connections (connections->context))
654 _dbus_verbose ("Number of incomplete connections exceeds max, dropping oldest one\n");
656 _dbus_assert (connections->incomplete != NULL);
657 /* Disconnect the oldest unauthenticated connection. FIXME
658 * would it be more secure to drop a *random* connection? This
659 * algorithm seems to mean that if someone can create new
660 * connections quickly enough, they can keep anyone else from
661 * completing authentication. But random may or may not really
662 * help with that, a more elaborate solution might be required.
664 dbus_connection_close (connections->incomplete->data);
673 bus_selinux_id_unref (d->selinux_id);
674 d->selinux_id = NULL;
676 if (!dbus_connection_set_watch_functions (connection,
680 _dbus_assert_not_reached ("setting watch functions to NULL failed");
682 if (!dbus_connection_set_timeout_functions (connection,
686 _dbus_assert_not_reached ("setting timeout functions to NULL failed");
688 dbus_connection_set_unix_user_function (connection,
691 dbus_connection_set_dispatch_status_function (connection,
694 if (d->link_in_connection_list != NULL)
696 _dbus_assert (d->link_in_connection_list->next == NULL);
697 _dbus_assert (d->link_in_connection_list->prev == NULL);
698 _dbus_list_free_link (d->link_in_connection_list);
699 d->link_in_connection_list = NULL;
702 if (!dbus_connection_set_data (connection,
703 connection_data_slot,
705 _dbus_assert_not_reached ("failed to set connection data to null");
707 /* "d" has now been freed */
714 bus_connections_expire_incomplete (BusConnections *connections)
720 if (connections->incomplete != NULL)
722 long tv_sec, tv_usec;
726 _dbus_get_current_time (&tv_sec, &tv_usec);
727 auth_timeout = bus_context_get_auth_timeout (connections->context);
729 link = _dbus_list_get_first_link (&connections->incomplete);
732 DBusList *next = _dbus_list_get_next_link (&connections->incomplete, link);
733 DBusConnection *connection;
734 BusConnectionData *d;
737 connection = link->data;
739 d = BUS_CONNECTION_DATA (connection);
741 _dbus_assert (d != NULL);
743 elapsed = ELAPSED_MILLISECONDS_SINCE (d->connection_tv_sec,
744 d->connection_tv_usec,
747 if (elapsed >= (double) auth_timeout)
749 _dbus_verbose ("Timing out authentication for connection %p\n", connection);
750 dbus_connection_close (connection);
754 /* We can end the loop, since the connections are in oldest-first order */
755 next_interval = ((double)auth_timeout) - elapsed;
756 _dbus_verbose ("Connection %p authentication expires in %d milliseconds\n",
757 connection, next_interval);
766 bus_expire_timeout_set_interval (connections->expire_timeout,
771 expire_incomplete_timeout (void *data)
773 BusConnections *connections = data;
775 _dbus_verbose ("Running %s\n", _DBUS_FUNCTION_NAME);
777 /* note that this may remove the timeout */
778 bus_connections_expire_incomplete (connections);
784 bus_connection_get_groups (DBusConnection *connection,
785 unsigned long **groups,
789 BusConnectionData *d;
791 DBusUserDatabase *user_database;
793 d = BUS_CONNECTION_DATA (connection);
795 _dbus_assert (d != NULL);
797 user_database = bus_context_get_user_database (d->connections->context);
802 if (dbus_connection_get_unix_user (connection, &uid))
804 if (!_dbus_user_database_get_groups (user_database,
805 uid, groups, n_groups,
808 _DBUS_ASSERT_ERROR_IS_SET (error);
809 _dbus_verbose ("Did not get any groups for UID %lu\n",
815 _dbus_verbose ("Got %d groups for UID %lu\n",
821 return TRUE; /* successfully got 0 groups */
825 bus_connection_is_in_group (DBusConnection *connection,
829 unsigned long *group_ids;
832 if (!bus_connection_get_groups (connection, &group_ids, &n_group_ids,
837 while (i < n_group_ids)
839 if (group_ids[i] == gid)
841 dbus_free (group_ids);
847 dbus_free (group_ids);
852 bus_connection_get_policy (DBusConnection *connection)
854 BusConnectionData *d;
856 d = BUS_CONNECTION_DATA (connection);
858 _dbus_assert (d != NULL);
859 _dbus_assert (d->policy != NULL);
865 foreach_active (BusConnections *connections,
866 BusConnectionForeachFunction function,
871 link = _dbus_list_get_first_link (&connections->completed);
874 DBusConnection *connection = link->data;
875 DBusList *next = _dbus_list_get_next_link (&connections->completed, link);
877 if (!(* function) (connection, data))
887 foreach_inactive (BusConnections *connections,
888 BusConnectionForeachFunction function,
893 link = _dbus_list_get_first_link (&connections->incomplete);
896 DBusConnection *connection = link->data;
897 DBusList *next = _dbus_list_get_next_link (&connections->incomplete, link);
899 if (!(* function) (connection, data))
909 * Calls function on each active connection; if the function returns
910 * #FALSE, stops iterating. Active connections are authenticated
911 * and have sent a Hello message.
913 * @param connections the connections object
914 * @param function the function
915 * @param data data to pass to it as a second arg
918 bus_connections_foreach_active (BusConnections *connections,
919 BusConnectionForeachFunction function,
922 foreach_active (connections, function, data);
926 * Calls function on each connection; if the function returns
927 * #FALSE, stops iterating.
929 * @param connections the connections object
930 * @param function the function
931 * @param data data to pass to it as a second arg
934 bus_connections_foreach (BusConnections *connections,
935 BusConnectionForeachFunction function,
938 if (!foreach_active (connections, function, data))
941 foreach_inactive (connections, function, data);
945 bus_connections_get_context (BusConnections *connections)
947 return connections->context;
951 * This is used to avoid covering the same connection twice when
952 * traversing connections. Note that it assumes we will
953 * bus_connection_mark_stamp() each connection at least once per
954 * INT_MAX increments of the global stamp, or wraparound would break
958 bus_connections_increment_stamp (BusConnections *connections)
960 connections->stamp += 1;
963 /* Mark connection with current stamp, return TRUE if it
964 * didn't already have that stamp
967 bus_connection_mark_stamp (DBusConnection *connection)
969 BusConnectionData *d;
971 d = BUS_CONNECTION_DATA (connection);
973 _dbus_assert (d != NULL);
975 if (d->stamp == d->connections->stamp)
979 d->stamp = d->connections->stamp;
985 bus_connection_get_context (DBusConnection *connection)
987 BusConnectionData *d;
989 d = BUS_CONNECTION_DATA (connection);
991 _dbus_assert (d != NULL);
993 return d->connections->context;
997 bus_connection_get_connections (DBusConnection *connection)
999 BusConnectionData *d;
1001 d = BUS_CONNECTION_DATA (connection);
1003 _dbus_assert (d != NULL);
1005 return d->connections;
1009 bus_connection_get_registry (DBusConnection *connection)
1011 BusConnectionData *d;
1013 d = BUS_CONNECTION_DATA (connection);
1015 _dbus_assert (d != NULL);
1017 return bus_context_get_registry (d->connections->context);
1021 bus_connection_get_activation (DBusConnection *connection)
1023 BusConnectionData *d;
1025 d = BUS_CONNECTION_DATA (connection);
1027 _dbus_assert (d != NULL);
1029 return bus_context_get_activation (d->connections->context);
1033 bus_connection_get_matchmaker (DBusConnection *connection)
1035 BusConnectionData *d;
1037 d = BUS_CONNECTION_DATA (connection);
1039 _dbus_assert (d != NULL);
1041 return bus_context_get_matchmaker (d->connections->context);
1045 bus_connection_get_selinux_id (DBusConnection *connection)
1047 BusConnectionData *d;
1049 d = BUS_CONNECTION_DATA (connection);
1051 _dbus_assert (d != NULL);
1053 return d->selinux_id;
1057 * Checks whether the connection is registered with the message bus.
1059 * @param connection the connection
1060 * @returns #TRUE if we're an active message bus participant
1063 bus_connection_is_active (DBusConnection *connection)
1065 BusConnectionData *d;
1067 d = BUS_CONNECTION_DATA (connection);
1069 return d != NULL && d->name != NULL;
1073 bus_connection_preallocate_oom_error (DBusConnection *connection)
1075 DBusMessage *message;
1076 DBusPreallocatedSend *preallocated;
1077 BusConnectionData *d;
1079 d = BUS_CONNECTION_DATA (connection);
1081 _dbus_assert (d != NULL);
1083 if (d->oom_preallocated != NULL)
1086 preallocated = dbus_connection_preallocate_send (connection);
1087 if (preallocated == NULL)
1090 message = dbus_message_new (DBUS_MESSAGE_TYPE_ERROR);
1092 if (message == NULL)
1094 dbus_connection_free_preallocated_send (connection, preallocated);
1098 /* d->name may be NULL, but that is OK */
1099 if (!dbus_message_set_error_name (message, DBUS_ERROR_NO_MEMORY) ||
1100 !dbus_message_set_destination (message, d->name) ||
1101 !dbus_message_set_sender (message,
1104 dbus_connection_free_preallocated_send (connection, preallocated);
1105 dbus_message_unref (message);
1109 /* set reply serial to placeholder value just so space is already allocated
1112 if (!dbus_message_set_reply_serial (message, 14))
1114 dbus_connection_free_preallocated_send (connection, preallocated);
1115 dbus_message_unref (message);
1119 d->oom_message = message;
1120 d->oom_preallocated = preallocated;
1126 bus_connection_send_oom_error (DBusConnection *connection,
1127 DBusMessage *in_reply_to)
1129 BusConnectionData *d;
1131 d = BUS_CONNECTION_DATA (connection);
1133 _dbus_assert (d != NULL);
1134 _dbus_assert (d->oom_message != NULL);
1136 /* should always succeed since we set it to a placeholder earlier */
1137 if (!dbus_message_set_reply_serial (d->oom_message,
1138 dbus_message_get_serial (in_reply_to)))
1139 _dbus_assert_not_reached ("Failed to set reply serial for preallocated oom message");
1141 _dbus_assert (dbus_message_get_sender (d->oom_message) != NULL);
1143 dbus_connection_send_preallocated (connection, d->oom_preallocated,
1144 d->oom_message, NULL);
1146 dbus_message_unref (d->oom_message);
1147 d->oom_message = NULL;
1148 d->oom_preallocated = NULL;
1152 bus_connection_add_match_rule_link (DBusConnection *connection,
1155 BusConnectionData *d;
1157 d = BUS_CONNECTION_DATA (connection);
1158 _dbus_assert (d != NULL);
1160 _dbus_list_append_link (&d->match_rules, link);
1162 d->n_match_rules += 1;
1166 bus_connection_add_match_rule (DBusConnection *connection,
1171 link = _dbus_list_alloc_link (rule);
1176 bus_connection_add_match_rule_link (connection, link);
1182 bus_connection_remove_match_rule (DBusConnection *connection,
1185 BusConnectionData *d;
1187 d = BUS_CONNECTION_DATA (connection);
1188 _dbus_assert (d != NULL);
1190 _dbus_list_remove_last (&d->match_rules, rule);
1192 d->n_match_rules -= 1;
1193 _dbus_assert (d->n_match_rules >= 0);
1197 bus_connection_get_n_match_rules (DBusConnection *connection)
1199 BusConnectionData *d;
1201 d = BUS_CONNECTION_DATA (connection);
1202 _dbus_assert (d != NULL);
1204 return d->n_match_rules;
1208 bus_connection_add_owned_service_link (DBusConnection *connection,
1211 BusConnectionData *d;
1213 d = BUS_CONNECTION_DATA (connection);
1214 _dbus_assert (d != NULL);
1216 _dbus_list_append_link (&d->services_owned, link);
1218 d->n_services_owned += 1;
1222 bus_connection_add_owned_service (DBusConnection *connection,
1223 BusService *service)
1227 link = _dbus_list_alloc_link (service);
1232 bus_connection_add_owned_service_link (connection, link);
1238 bus_connection_remove_owned_service (DBusConnection *connection,
1239 BusService *service)
1241 BusConnectionData *d;
1243 d = BUS_CONNECTION_DATA (connection);
1244 _dbus_assert (d != NULL);
1246 _dbus_list_remove_last (&d->services_owned, service);
1248 d->n_services_owned -= 1;
1249 _dbus_assert (d->n_services_owned >= 0);
1253 bus_connection_get_n_services_owned (DBusConnection *connection)
1255 BusConnectionData *d;
1257 d = BUS_CONNECTION_DATA (connection);
1258 _dbus_assert (d != NULL);
1260 return d->n_services_owned;
1264 bus_connection_complete (DBusConnection *connection,
1265 const DBusString *name,
1268 BusConnectionData *d;
1271 d = BUS_CONNECTION_DATA (connection);
1272 _dbus_assert (d != NULL);
1273 _dbus_assert (d->name == NULL);
1274 _dbus_assert (d->policy == NULL);
1276 _dbus_assert (!bus_connection_is_active (connection));
1278 if (!_dbus_string_copy_data (name, &d->name))
1280 BUS_SET_OOM (error);
1284 _dbus_assert (d->name != NULL);
1286 _dbus_verbose ("Name %s assigned to %p\n", d->name, connection);
1288 d->policy = bus_context_create_client_policy (d->connections->context,
1292 /* we may have a NULL policy on OOM or error getting list of
1293 * groups for a user. In the latter case we don't handle it so
1294 * well currently, as it will just keep failing over and over.
1297 if (d->policy == NULL)
1299 _dbus_verbose ("Failed to create security policy for connection %p\n",
1301 _DBUS_ASSERT_ERROR_IS_SET (error);
1302 dbus_free (d->name);
1307 if (dbus_connection_get_unix_user (connection, &uid))
1309 if (!adjust_connections_for_uid (d->connections,
1312 BUS_SET_OOM (error);
1313 dbus_free (d->name);
1319 /* Now the connection is active, move it between lists */
1320 _dbus_list_unlink (&d->connections->incomplete,
1321 d->link_in_connection_list);
1322 d->connections->n_incomplete -= 1;
1323 _dbus_list_append_link (&d->connections->completed,
1324 d->link_in_connection_list);
1325 d->connections->n_completed += 1;
1327 _dbus_assert (d->connections->n_incomplete >= 0);
1328 _dbus_assert (d->connections->n_completed > 0);
1330 /* See if we can remove the timeout */
1331 bus_connections_expire_incomplete (d->connections);
1333 _dbus_assert (bus_connection_is_active (connection));
1339 bus_connection_get_name (DBusConnection *connection)
1341 BusConnectionData *d;
1343 d = BUS_CONNECTION_DATA (connection);
1344 _dbus_assert (d != NULL);
1350 * Check whether completing the passed-in connection would
1351 * exceed limits, and if so set error and return #FALSE
1354 bus_connections_check_limits (BusConnections *connections,
1355 DBusConnection *requesting_completion,
1358 BusConnectionData *d;
1361 d = BUS_CONNECTION_DATA (requesting_completion);
1362 _dbus_assert (d != NULL);
1364 _dbus_assert (d->name == NULL);
1366 if (connections->n_completed >=
1367 bus_context_get_max_completed_connections (connections->context))
1369 dbus_set_error (error, DBUS_ERROR_LIMITS_EXCEEDED,
1370 "The maximum number of active connections has been reached");
1374 if (dbus_connection_get_unix_user (requesting_completion, &uid))
1376 if (get_connections_for_uid (connections, uid) >=
1377 bus_context_get_max_connections_per_user (connections->context))
1379 dbus_set_error (error, DBUS_ERROR_LIMITS_EXCEEDED,
1380 "The maximum number of active connections for UID %lu has been reached",
1390 bus_pending_reply_free (BusPendingReply *pending)
1392 _dbus_verbose ("Freeing pending reply %p, replier %p receiver %p serial %u\n",
1394 pending->will_send_reply,
1395 pending->will_get_reply,
1396 pending->reply_serial);
1398 dbus_free (pending);
1402 bus_pending_reply_send_no_reply (BusConnections *connections,
1403 BusTransaction *transaction,
1404 BusPendingReply *pending)
1406 DBusMessage *message;
1407 DBusMessageIter iter;
1413 message = dbus_message_new (DBUS_MESSAGE_TYPE_ERROR);
1414 if (message == NULL)
1417 dbus_message_set_no_reply (message, TRUE);
1419 if (!dbus_message_set_reply_serial (message,
1420 pending->reply_serial))
1423 if (!dbus_message_set_error_name (message,
1424 DBUS_ERROR_NO_REPLY))
1427 errmsg = "Message did not receive a reply (timeout by message bus)";
1428 dbus_message_iter_init_append (message, &iter);
1429 if (!dbus_message_iter_append_basic (&iter, DBUS_TYPE_STRING, &errmsg))
1432 if (!bus_transaction_send_from_driver (transaction, pending->will_get_reply,
1439 dbus_message_unref (message);
1444 bus_pending_reply_expired (BusExpireList *list,
1448 BusPendingReply *pending = link->data;
1449 BusConnections *connections = data;
1450 BusTransaction *transaction;
1452 /* No reply is forthcoming. So nuke it if we can. If not,
1453 * leave it in the list to try expiring again later when we
1457 _dbus_verbose ("Expiring pending reply %p, replier %p receiver %p serial %u\n",
1459 pending->will_send_reply,
1460 pending->will_get_reply,
1461 pending->reply_serial);
1463 transaction = bus_transaction_new (connections->context);
1464 if (transaction == NULL)
1467 if (!bus_pending_reply_send_no_reply (connections,
1471 bus_transaction_cancel_and_free (transaction);
1475 _dbus_list_remove_link (&connections->pending_replies->items,
1477 bus_pending_reply_free (pending);
1478 bus_transaction_execute_and_free (transaction);
1484 bus_connection_drop_pending_replies (BusConnections *connections,
1485 DBusConnection *connection)
1487 /* The DBusConnection is almost 100% finalized here, so you can't
1488 * do anything with it except check for pointer equality
1492 _dbus_verbose ("Dropping pending replies that involve connection %p\n",
1495 link = _dbus_list_get_first_link (&connections->pending_replies->items);
1496 while (link != NULL)
1499 BusPendingReply *pending;
1501 next = _dbus_list_get_next_link (&connections->pending_replies->items,
1503 pending = link->data;
1505 if (pending->will_get_reply == connection)
1507 /* We don't need to track this pending reply anymore */
1509 _dbus_verbose ("Dropping pending reply %p, replier %p receiver %p serial %u\n",
1511 pending->will_send_reply,
1512 pending->will_get_reply,
1513 pending->reply_serial);
1515 _dbus_list_remove_link (&connections->pending_replies->items,
1517 bus_pending_reply_free (pending);
1519 else if (pending->will_send_reply == connection)
1521 /* The reply isn't going to be sent, so set things
1522 * up so it will be expired right away
1524 _dbus_verbose ("Will expire pending reply %p, replier %p receiver %p serial %u\n",
1526 pending->will_send_reply,
1527 pending->will_get_reply,
1528 pending->reply_serial);
1530 pending->will_send_reply = NULL;
1531 pending->expire_item.added_tv_sec = 0;
1532 pending->expire_item.added_tv_usec = 0;
1534 bus_expire_timeout_set_interval (connections->pending_replies->timeout,
1545 BusPendingReply *pending;
1546 BusConnections *connections;
1547 } CancelPendingReplyData;
1550 cancel_pending_reply (void *data)
1552 CancelPendingReplyData *d = data;
1554 _dbus_verbose ("%s: d = %p\n", _DBUS_FUNCTION_NAME, d);
1556 if (!_dbus_list_remove (&d->connections->pending_replies->items,
1558 _dbus_assert_not_reached ("pending reply did not exist to be cancelled");
1560 bus_pending_reply_free (d->pending); /* since it's been cancelled */
1564 cancel_pending_reply_data_free (void *data)
1566 CancelPendingReplyData *d = data;
1568 _dbus_verbose ("%s: d = %p\n", _DBUS_FUNCTION_NAME, d);
1570 /* d->pending should be either freed or still
1571 * in the list of pending replies (owned by someone
1579 * Record that a reply is allowed; return TRUE on success.
1582 bus_connections_expect_reply (BusConnections *connections,
1583 BusTransaction *transaction,
1584 DBusConnection *will_get_reply,
1585 DBusConnection *will_send_reply,
1586 DBusMessage *reply_to_this,
1589 BusPendingReply *pending;
1590 dbus_uint32_t reply_serial;
1592 CancelPendingReplyData *cprd;
1595 _dbus_assert (will_get_reply != NULL);
1596 _dbus_assert (will_send_reply != NULL);
1597 _dbus_assert (reply_to_this != NULL);
1599 if (dbus_message_get_no_reply (reply_to_this))
1600 return TRUE; /* we won't allow a reply, since client doesn't care for one. */
1602 reply_serial = dbus_message_get_serial (reply_to_this);
1604 link = _dbus_list_get_first_link (&connections->pending_replies->items);
1606 while (link != NULL)
1608 pending = link->data;
1610 if (pending->reply_serial == reply_serial &&
1611 pending->will_get_reply == will_get_reply &&
1612 pending->will_send_reply == will_send_reply)
1614 dbus_set_error (error, DBUS_ERROR_ACCESS_DENIED,
1615 "Message has the same reply serial as a currently-outstanding existing method call");
1619 link = _dbus_list_get_next_link (&connections->pending_replies->items,
1621 if (pending->will_get_reply == will_get_reply)
1626 bus_context_get_max_replies_per_connection (connections->context))
1628 dbus_set_error (error, DBUS_ERROR_LIMITS_EXCEEDED,
1629 "The maximum number of pending replies per connection has been reached");
1633 pending = dbus_new0 (BusPendingReply, 1);
1634 if (pending == NULL)
1636 BUS_SET_OOM (error);
1640 #ifdef DBUS_ENABLE_VERBOSE_MODE
1641 /* so we can see a not-yet-added pending reply */
1642 pending->expire_item.added_tv_sec = 1;
1643 pending->expire_item.added_tv_usec = 1;
1646 pending->will_get_reply = will_get_reply;
1647 pending->will_send_reply = will_send_reply;
1648 pending->reply_serial = reply_serial;
1650 cprd = dbus_new0 (CancelPendingReplyData, 1);
1653 BUS_SET_OOM (error);
1654 bus_pending_reply_free (pending);
1658 if (!_dbus_list_prepend (&connections->pending_replies->items,
1661 BUS_SET_OOM (error);
1663 bus_pending_reply_free (pending);
1667 if (!bus_transaction_add_cancel_hook (transaction,
1668 cancel_pending_reply,
1670 cancel_pending_reply_data_free))
1672 BUS_SET_OOM (error);
1673 _dbus_list_remove (&connections->pending_replies->items, pending);
1675 bus_pending_reply_free (pending);
1679 cprd->pending = pending;
1680 cprd->connections = connections;
1682 _dbus_get_current_time (&pending->expire_item.added_tv_sec,
1683 &pending->expire_item.added_tv_usec);
1685 _dbus_verbose ("Added pending reply %p, replier %p receiver %p serial %u\n",
1687 pending->will_send_reply,
1688 pending->will_get_reply,
1689 pending->reply_serial);
1697 BusConnections *connections;
1698 } CheckPendingReplyData;
1701 cancel_check_pending_reply (void *data)
1703 CheckPendingReplyData *d = data;
1705 _dbus_verbose ("%s: d = %p\n", _DBUS_FUNCTION_NAME, d);
1707 _dbus_list_prepend_link (&d->connections->pending_replies->items,
1713 check_pending_reply_data_free (void *data)
1715 CheckPendingReplyData *d = data;
1717 _dbus_verbose ("%s: d = %p\n", _DBUS_FUNCTION_NAME, d);
1719 if (d->link != NULL)
1721 BusPendingReply *pending = d->link->data;
1723 _dbus_assert (_dbus_list_find_last (&d->connections->pending_replies->items,
1726 bus_pending_reply_free (pending);
1727 _dbus_list_free_link (d->link);
1734 * Check whether a reply is allowed, remove BusPendingReply
1735 * if so, return TRUE if so.
1738 bus_connections_check_reply (BusConnections *connections,
1739 BusTransaction *transaction,
1740 DBusConnection *sending_reply,
1741 DBusConnection *receiving_reply,
1745 CheckPendingReplyData *cprd;
1747 dbus_uint32_t reply_serial;
1749 _dbus_assert (sending_reply != NULL);
1750 _dbus_assert (receiving_reply != NULL);
1752 reply_serial = dbus_message_get_reply_serial (reply);
1754 link = _dbus_list_get_first_link (&connections->pending_replies->items);
1755 while (link != NULL)
1757 BusPendingReply *pending = link->data;
1759 if (pending->reply_serial == reply_serial &&
1760 pending->will_get_reply == receiving_reply &&
1761 pending->will_send_reply == sending_reply)
1763 _dbus_verbose ("Found pending reply with serial %u\n", reply_serial);
1767 link = _dbus_list_get_next_link (&connections->pending_replies->items,
1773 _dbus_verbose ("No pending reply expected\n");
1778 cprd = dbus_new0 (CheckPendingReplyData, 1);
1781 BUS_SET_OOM (error);
1785 if (!bus_transaction_add_cancel_hook (transaction,
1786 cancel_check_pending_reply,
1788 check_pending_reply_data_free))
1790 BUS_SET_OOM (error);
1796 cprd->connections = connections;
1798 _dbus_list_unlink (&connections->pending_replies->items,
1801 _dbus_assert (_dbus_list_find_last (&connections->pending_replies->items,
1802 link->data) == NULL);
1810 * Note that this is fairly fragile; in particular, don't try to use
1811 * one transaction across any main loop iterations.
1816 BusTransaction *transaction;
1817 DBusMessage *message;
1818 DBusPreallocatedSend *preallocated;
1823 BusTransactionCancelFunction cancel_function;
1824 DBusFreeFunction free_data_function;
1828 struct BusTransaction
1830 DBusList *connections;
1831 BusContext *context;
1832 DBusList *cancel_hooks;
1836 message_to_send_free (DBusConnection *connection,
1837 MessageToSend *to_send)
1839 if (to_send->message)
1840 dbus_message_unref (to_send->message);
1842 if (to_send->preallocated)
1843 dbus_connection_free_preallocated_send (connection, to_send->preallocated);
1845 dbus_free (to_send);
1849 cancel_hook_cancel (void *element,
1852 CancelHook *ch = element;
1854 _dbus_verbose ("Running transaction cancel hook\n");
1856 if (ch->cancel_function)
1857 (* ch->cancel_function) (ch->data);
1861 cancel_hook_free (void *element,
1864 CancelHook *ch = element;
1866 if (ch->free_data_function)
1867 (* ch->free_data_function) (ch->data);
1873 free_cancel_hooks (BusTransaction *transaction)
1875 _dbus_list_foreach (&transaction->cancel_hooks,
1876 cancel_hook_free, NULL);
1878 _dbus_list_clear (&transaction->cancel_hooks);
1882 bus_transaction_new (BusContext *context)
1884 BusTransaction *transaction;
1886 transaction = dbus_new0 (BusTransaction, 1);
1887 if (transaction == NULL)
1890 transaction->context = context;
1896 bus_transaction_get_context (BusTransaction *transaction)
1898 return transaction->context;
1902 bus_transaction_get_connections (BusTransaction *transaction)
1904 return bus_context_get_connections (transaction->context);
1908 bus_transaction_send_from_driver (BusTransaction *transaction,
1909 DBusConnection *connection,
1910 DBusMessage *message)
1912 /* We have to set the sender to the driver, and have
1913 * to check security policy since it was not done in
1916 _dbus_verbose ("Sending %s %s %s from driver\n",
1917 dbus_message_get_interface (message) ?
1918 dbus_message_get_interface (message) : "(no interface)",
1919 dbus_message_get_member (message) ?
1920 dbus_message_get_member (message) : "(no member)",
1921 dbus_message_get_error_name (message) ?
1922 dbus_message_get_error_name (message) : "(no error name)");
1924 if (!dbus_message_set_sender (message, DBUS_SERVICE_DBUS))
1927 if (bus_connection_is_active (connection))
1929 if (!dbus_message_set_destination (message,
1930 bus_connection_get_name (connection)))
1934 /* bus driver never wants a reply */
1935 dbus_message_set_no_reply (message, TRUE);
1937 /* If security policy doesn't allow the message, we silently
1938 * eat it; the driver doesn't care about getting a reply.
1940 if (!bus_context_check_security_policy (bus_transaction_get_context (transaction),
1942 NULL, connection, connection, message, NULL))
1945 return bus_transaction_send (transaction, connection, message);
1949 bus_transaction_send (BusTransaction *transaction,
1950 DBusConnection *connection,
1951 DBusMessage *message)
1953 MessageToSend *to_send;
1954 BusConnectionData *d;
1957 _dbus_verbose (" trying to add %s interface=%s member=%s error=%s to transaction%s\n",
1958 dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR ? "error" :
1959 dbus_message_get_reply_serial (message) != 0 ? "reply" :
1961 dbus_message_get_interface (message) ?
1962 dbus_message_get_interface (message) : "(unset)",
1963 dbus_message_get_member (message) ?
1964 dbus_message_get_member (message) : "(unset)",
1965 dbus_message_get_error_name (message) ?
1966 dbus_message_get_error_name (message) : "(unset)",
1967 dbus_connection_get_is_connected (connection) ?
1968 "" : " (disconnected)");
1970 _dbus_assert (dbus_message_get_sender (message) != NULL);
1972 if (!dbus_connection_get_is_connected (connection))
1973 return TRUE; /* silently ignore disconnected connections */
1975 d = BUS_CONNECTION_DATA (connection);
1976 _dbus_assert (d != NULL);
1978 to_send = dbus_new (MessageToSend, 1);
1979 if (to_send == NULL)
1984 to_send->preallocated = dbus_connection_preallocate_send (connection);
1985 if (to_send->preallocated == NULL)
1987 dbus_free (to_send);
1991 dbus_message_ref (message);
1992 to_send->message = message;
1993 to_send->transaction = transaction;
1995 _dbus_verbose ("about to prepend message\n");
1997 if (!_dbus_list_prepend (&d->transaction_messages, to_send))
1999 message_to_send_free (connection, to_send);
2003 _dbus_verbose ("prepended message\n");
2005 /* See if we already had this connection in the list
2006 * for this transaction. If we have a pending message,
2007 * then we should already be in transaction->connections
2009 link = _dbus_list_get_first_link (&d->transaction_messages);
2010 _dbus_assert (link->data == to_send);
2011 link = _dbus_list_get_next_link (&d->transaction_messages, link);
2012 while (link != NULL)
2014 MessageToSend *m = link->data;
2015 DBusList *next = _dbus_list_get_next_link (&d->transaction_messages, link);
2017 if (m->transaction == transaction)
2025 if (!_dbus_list_prepend (&transaction->connections, connection))
2027 _dbus_list_remove (&d->transaction_messages, to_send);
2028 message_to_send_free (connection, to_send);
2037 connection_cancel_transaction (DBusConnection *connection,
2038 BusTransaction *transaction)
2041 BusConnectionData *d;
2043 d = BUS_CONNECTION_DATA (connection);
2044 _dbus_assert (d != NULL);
2046 link = _dbus_list_get_first_link (&d->transaction_messages);
2047 while (link != NULL)
2049 MessageToSend *m = link->data;
2050 DBusList *next = _dbus_list_get_next_link (&d->transaction_messages, link);
2052 if (m->transaction == transaction)
2054 _dbus_list_remove_link (&d->transaction_messages,
2057 message_to_send_free (connection, m);
2065 bus_transaction_cancel_and_free (BusTransaction *transaction)
2067 DBusConnection *connection;
2069 _dbus_verbose ("TRANSACTION: cancelled\n");
2071 while ((connection = _dbus_list_pop_first (&transaction->connections)))
2072 connection_cancel_transaction (connection, transaction);
2074 _dbus_assert (transaction->connections == NULL);
2076 _dbus_list_foreach (&transaction->cancel_hooks,
2077 cancel_hook_cancel, NULL);
2079 free_cancel_hooks (transaction);
2081 dbus_free (transaction);
2085 connection_execute_transaction (DBusConnection *connection,
2086 BusTransaction *transaction)
2089 BusConnectionData *d;
2091 d = BUS_CONNECTION_DATA (connection);
2092 _dbus_assert (d != NULL);
2094 /* Send the queue in order (FIFO) */
2095 link = _dbus_list_get_last_link (&d->transaction_messages);
2096 while (link != NULL)
2098 MessageToSend *m = link->data;
2099 DBusList *prev = _dbus_list_get_prev_link (&d->transaction_messages, link);
2101 if (m->transaction == transaction)
2103 _dbus_list_remove_link (&d->transaction_messages,
2106 _dbus_assert (dbus_message_get_sender (m->message) != NULL);
2108 dbus_connection_send_preallocated (connection,
2113 m->preallocated = NULL; /* so we don't double-free it */
2115 message_to_send_free (connection, m);
2123 bus_transaction_execute_and_free (BusTransaction *transaction)
2125 /* For each connection in transaction->connections
2128 DBusConnection *connection;
2130 _dbus_verbose ("TRANSACTION: executing\n");
2132 while ((connection = _dbus_list_pop_first (&transaction->connections)))
2133 connection_execute_transaction (connection, transaction);
2135 _dbus_assert (transaction->connections == NULL);
2137 free_cancel_hooks (transaction);
2139 dbus_free (transaction);
2143 bus_connection_remove_transactions (DBusConnection *connection)
2145 MessageToSend *to_send;
2146 BusConnectionData *d;
2148 d = BUS_CONNECTION_DATA (connection);
2149 _dbus_assert (d != NULL);
2151 while ((to_send = _dbus_list_get_first (&d->transaction_messages)))
2153 /* only has an effect for the first MessageToSend listing this transaction */
2154 _dbus_list_remove (&to_send->transaction->connections,
2157 _dbus_list_remove (&d->transaction_messages, to_send);
2158 message_to_send_free (connection, to_send);
2163 * Converts the DBusError to a message reply
2166 bus_transaction_send_error_reply (BusTransaction *transaction,
2167 DBusConnection *connection,
2168 const DBusError *error,
2169 DBusMessage *in_reply_to)
2173 _dbus_assert (error != NULL);
2174 _DBUS_ASSERT_ERROR_IS_SET (error);
2176 _dbus_verbose ("Sending error reply %s \"%s\"\n",
2177 error->name, error->message);
2179 reply = dbus_message_new_error (in_reply_to,
2185 if (!bus_transaction_send_from_driver (transaction, connection, reply))
2187 dbus_message_unref (reply);
2191 dbus_message_unref (reply);
2197 bus_transaction_add_cancel_hook (BusTransaction *transaction,
2198 BusTransactionCancelFunction cancel_function,
2200 DBusFreeFunction free_data_function)
2204 ch = dbus_new (CancelHook, 1);
2208 _dbus_verbose (" adding cancel hook function = %p data = %p\n",
2209 cancel_function, data);
2211 ch->cancel_function = cancel_function;
2213 ch->free_data_function = free_data_function;
2215 /* It's important that the hooks get run in reverse order that they
2218 if (!_dbus_list_prepend (&transaction->cancel_hooks, ch))