1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-connection.c DBusConnection object
4 * Copyright (C) 2002-2006 Red Hat Inc.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 #include "dbus-shared.h"
26 #include "dbus-connection.h"
27 #include "dbus-list.h"
28 #include "dbus-timeout.h"
29 #include "dbus-transport.h"
30 #include "dbus-watch.h"
31 #include "dbus-connection-internal.h"
32 #include "dbus-pending-call-internal.h"
33 #include "dbus-list.h"
34 #include "dbus-hash.h"
35 #include "dbus-message-internal.h"
36 #include "dbus-message-private.h"
37 #include "dbus-threads.h"
38 #include "dbus-protocol.h"
39 #include "dbus-dataslot.h"
40 #include "dbus-string.h"
41 #include "dbus-signature.h"
42 #include "dbus-pending-call.h"
43 #include "dbus-object-tree.h"
44 #include "dbus-threads-internal.h"
46 #include "dbus-marshal-basic.h"
48 #ifdef DBUS_ENABLE_SMACK
49 #include <sys/smack.h>
53 #ifdef DBUS_DISABLE_CHECKS
54 #define TOOK_LOCK_CHECK(connection)
55 #define RELEASING_LOCK_CHECK(connection)
56 #define HAVE_LOCK_CHECK(connection)
58 #define TOOK_LOCK_CHECK(connection) do { \
59 _dbus_assert (!(connection)->have_connection_lock); \
60 (connection)->have_connection_lock = TRUE; \
62 #define RELEASING_LOCK_CHECK(connection) do { \
63 _dbus_assert ((connection)->have_connection_lock); \
64 (connection)->have_connection_lock = FALSE; \
66 #define HAVE_LOCK_CHECK(connection) _dbus_assert ((connection)->have_connection_lock)
67 /* A "DO_NOT_HAVE_LOCK_CHECK" is impossible since we need the lock to check the flag */
72 #define CONNECTION_LOCK(connection) do { \
73 if (TRACE_LOCKS) { _dbus_verbose ("LOCK\n"); } \
74 _dbus_rmutex_lock ((connection)->mutex); \
75 TOOK_LOCK_CHECK (connection); \
78 #define CONNECTION_UNLOCK(connection) _dbus_connection_unlock (connection)
80 #define SLOTS_LOCK(connection) do { \
81 _dbus_rmutex_lock ((connection)->slot_mutex); \
84 #define SLOTS_UNLOCK(connection) do { \
85 _dbus_rmutex_unlock ((connection)->slot_mutex); \
88 #define DISPATCH_STATUS_NAME(s) \
89 ((s) == DBUS_DISPATCH_COMPLETE ? "complete" : \
90 (s) == DBUS_DISPATCH_DATA_REMAINS ? "data remains" : \
91 (s) == DBUS_DISPATCH_NEED_MEMORY ? "need memory" : \
95 * @defgroup DBusConnection DBusConnection
97 * @brief Connection to another application
99 * A DBusConnection represents a connection to another
100 * application. Messages can be sent and received via this connection.
101 * The other application may be a message bus; for convenience, the
102 * function dbus_bus_get() is provided to automatically open a
103 * connection to the well-known message buses.
105 * In brief a DBusConnection is a message queue associated with some
106 * message transport mechanism such as a socket. The connection
107 * maintains a queue of incoming messages and a queue of outgoing
110 * Several functions use the following terms:
112 * <li><b>read</b> means to fill the incoming message queue by reading from the socket</li>
113 * <li><b>write</b> means to drain the outgoing queue by writing to the socket</li>
114 * <li><b>dispatch</b> means to drain the incoming queue by invoking application-provided message handlers</li>
117 * The function dbus_connection_read_write_dispatch() for example does all
118 * three of these things, offering a simple alternative to a main loop.
120 * In an application with a main loop, the read/write/dispatch
121 * operations are usually separate.
123 * The connection provides #DBusWatch and #DBusTimeout objects to
124 * the main loop. These are used to know when reading, writing, or
125 * dispatching should be performed.
127 * Incoming messages are processed
128 * by calling dbus_connection_dispatch(). dbus_connection_dispatch()
129 * runs any handlers registered for the topmost message in the message
130 * queue, then discards the message, then returns.
132 * dbus_connection_get_dispatch_status() indicates whether
133 * messages are currently in the queue that need dispatching.
134 * dbus_connection_set_dispatch_status_function() allows
135 * you to set a function to be used to monitor the dispatch status.
137 * If you're using GLib or Qt add-on libraries for D-Bus, there are
138 * special convenience APIs in those libraries that hide
139 * all the details of dispatch and watch/timeout monitoring.
140 * For example, dbus_connection_setup_with_g_main().
142 * If you aren't using these add-on libraries, but want to process
143 * messages asynchronously, you must manually call
144 * dbus_connection_set_dispatch_status_function(),
145 * dbus_connection_set_watch_functions(),
146 * dbus_connection_set_timeout_functions() providing appropriate
147 * functions to integrate the connection with your application's main
148 * loop. This can be tricky to get right; main loops are not simple.
150 * If you don't need to be asynchronous, you can ignore #DBusWatch,
151 * #DBusTimeout, and dbus_connection_dispatch(). Instead,
152 * dbus_connection_read_write_dispatch() can be used.
154 * Or, in <em>very</em> simple applications,
155 * dbus_connection_pop_message() may be all you need, allowing you to
156 * avoid setting up any handler functions (see
157 * dbus_connection_add_filter(),
158 * dbus_connection_register_object_path() for more on handlers).
160 * When you use dbus_connection_send() or one of its variants to send
161 * a message, the message is added to the outgoing queue. It's
162 * actually written to the network later; either in
163 * dbus_watch_handle() invoked by your main loop, or in
164 * dbus_connection_flush() which blocks until it can write out the
165 * entire outgoing queue. The GLib/Qt add-on libraries again
166 * handle the details here for you by setting up watch functions.
168 * When a connection is disconnected, you are guaranteed to get a
169 * signal "Disconnected" from the interface
170 * #DBUS_INTERFACE_LOCAL, path
173 * You may not drop the last reference to a #DBusConnection
174 * until that connection has been disconnected.
176 * You may dispatch the unprocessed incoming message queue even if the
177 * connection is disconnected. However, "Disconnected" will always be
178 * the last message in the queue (obviously no messages are received
179 * after disconnection).
181 * After calling dbus_threads_init(), #DBusConnection has thread
182 * locks and drops them when invoking user callbacks, so in general is
183 * transparently threadsafe. However, #DBusMessage does NOT have
184 * thread locks; you must not send the same message to multiple
185 * #DBusConnection if those connections will be used from different threads,
188 * Also, if you dispatch or pop messages from multiple threads, it
189 * may work in the sense that it won't crash, but it's tough to imagine
190 * sane results; it will be completely unpredictable which messages
191 * go to which threads.
193 * It's recommended to dispatch from a single thread.
195 * The most useful function to call from multiple threads at once
196 * is dbus_connection_send_with_reply_and_block(). That is,
197 * multiple threads can make method calls at the same time.
199 * If you aren't using threads, you can use a main loop and
200 * dbus_pending_call_set_notify() to achieve a similar result.
204 * @defgroup DBusConnectionInternals DBusConnection implementation details
205 * @ingroup DBusInternals
206 * @brief Implementation details of DBusConnection
212 _dbus_connection_trace_ref (DBusConnection *connection,
217 #ifdef DBUS_ENABLE_VERBOSE_MODE
218 static int enabled = -1;
220 _dbus_trace_ref ("DBusConnection", connection, old_refcount, new_refcount,
221 why, "DBUS_CONNECTION_TRACE", &enabled);
226 * Internal struct representing a message filter function
228 typedef struct DBusMessageFilter DBusMessageFilter;
231 * Internal struct representing a message filter function
233 struct DBusMessageFilter
235 DBusAtomic refcount; /**< Reference count */
236 DBusHandleMessageFunction function; /**< Function to call to filter */
237 void *user_data; /**< User data for the function */
238 DBusFreeFunction free_user_data_function; /**< Function to free the user data */
243 * Internals of DBusPreallocatedSend
245 struct DBusPreallocatedSend
247 DBusConnection *connection; /**< Connection we'd send the message to */
248 DBusList *queue_link; /**< Preallocated link in the queue */
249 DBusList *counter_link; /**< Preallocated link in the resource counter */
252 #if HAVE_DECL_MSG_NOSIGNAL
253 static dbus_bool_t _dbus_modify_sigpipe = FALSE;
255 static dbus_bool_t _dbus_modify_sigpipe = TRUE;
259 * Implementation details of DBusConnection. All fields are private.
261 struct DBusConnection
263 DBusAtomic refcount; /**< Reference count. */
265 DBusRMutex *mutex; /**< Lock on the entire DBusConnection */
267 DBusCMutex *dispatch_mutex; /**< Protects dispatch_acquired */
268 DBusCondVar *dispatch_cond; /**< Notify when dispatch_acquired is available */
269 DBusCMutex *io_path_mutex; /**< Protects io_path_acquired */
270 DBusCondVar *io_path_cond; /**< Notify when io_path_acquired is available */
272 DBusList *outgoing_messages; /**< Queue of messages we need to send, send the end of the list first. */
273 DBusList *incoming_messages; /**< Queue of messages we have received, end of the list received most recently. */
274 DBusList *expired_messages; /**< Messages that will be released when we next unlock. */
276 DBusMessage *message_borrowed; /**< Filled in if the first incoming message has been borrowed;
277 * dispatch_acquired will be set by the borrower
280 int n_outgoing; /**< Length of outgoing queue. */
281 int n_incoming; /**< Length of incoming queue. */
283 DBusCounter *outgoing_counter; /**< Counts size of outgoing messages. */
285 DBusTransport *transport; /**< Object that sends/receives messages over network. */
286 DBusWatchList *watches; /**< Stores active watches. */
287 DBusTimeoutList *timeouts; /**< Stores active timeouts. */
289 DBusList *filter_list; /**< List of filters. */
291 DBusRMutex *slot_mutex; /**< Lock on slot_list so overall connection lock need not be taken */
292 DBusDataSlotList slot_list; /**< Data stored by allocated integer ID */
294 DBusHashTable *pending_replies; /**< Hash of message serials to #DBusPendingCall. */
296 dbus_uint32_t client_serial; /**< Client serial. Increments each time a message is sent */
297 DBusList *disconnect_message_link; /**< Preallocated list node for queueing the disconnection message */
299 DBusWakeupMainFunction wakeup_main_function; /**< Function to wake up the mainloop */
300 void *wakeup_main_data; /**< Application data for wakeup_main_function */
301 DBusFreeFunction free_wakeup_main_data; /**< free wakeup_main_data */
303 DBusDispatchStatusFunction dispatch_status_function; /**< Function on dispatch status changes */
304 void *dispatch_status_data; /**< Application data for dispatch_status_function */
305 DBusFreeFunction free_dispatch_status_data; /**< free dispatch_status_data */
307 DBusDispatchStatus last_dispatch_status; /**< The last dispatch status we reported to the application. */
309 DBusObjectTree *objects; /**< Object path handlers registered with this connection */
311 char *server_guid; /**< GUID of server if we are in shared_connections, #NULL if server GUID is unknown or connection is private */
312 #ifdef DBUS_ENABLE_SMACK
313 char *peer_smack_label; /** Smack label of the peer at the time when the connection was established. Allocated with malloc(), NULL if unknown. */
316 /* These two MUST be bools and not bitfields, because they are protected by a separate lock
317 * from connection->mutex and all bitfields in a word have to be read/written together.
318 * So you can't have a different lock for different bitfields in the same word.
320 dbus_bool_t dispatch_acquired; /**< Someone has dispatch path (can drain incoming queue) */
321 dbus_bool_t io_path_acquired; /**< Someone has transport io path (can use the transport to read/write messages) */
323 unsigned int dispatch_disabled : 1; /**< if true, then dispatching incoming messages is stopped until enabled again */
324 unsigned int shareable : 1; /**< #TRUE if libdbus owns a reference to the connection and can return it from dbus_connection_open() more than once */
326 unsigned int exit_on_disconnect : 1; /**< If #TRUE, exit after handling disconnect signal */
328 unsigned int route_peer_messages : 1; /**< If #TRUE, if org.freedesktop.DBus.Peer messages have a bus name, don't handle them automatically */
330 unsigned int disconnected_message_arrived : 1; /**< We popped or are dispatching the disconnected message.
331 * if the disconnect_message_link is NULL then we queued it, but
332 * this flag is whether it got to the head of the queue.
334 unsigned int disconnected_message_processed : 1; /**< We did our default handling of the disconnected message,
335 * such as closing the connection.
338 #ifndef DBUS_DISABLE_CHECKS
339 unsigned int have_connection_lock : 1; /**< Used to check locking */
342 #if defined(DBUS_ENABLE_CHECKS) || defined(DBUS_ENABLE_ASSERT)
343 int generation; /**< _dbus_current_generation that should correspond to this connection */
347 static DBusDispatchStatus _dbus_connection_get_dispatch_status_unlocked (DBusConnection *connection);
348 static void _dbus_connection_update_dispatch_status_and_unlock (DBusConnection *connection,
349 DBusDispatchStatus new_status);
350 static void _dbus_connection_last_unref (DBusConnection *connection);
351 static void _dbus_connection_acquire_dispatch (DBusConnection *connection);
352 static void _dbus_connection_release_dispatch (DBusConnection *connection);
353 static DBusDispatchStatus _dbus_connection_flush_unlocked (DBusConnection *connection);
354 static void _dbus_connection_close_possibly_shared_and_unlock (DBusConnection *connection);
355 static dbus_bool_t _dbus_connection_get_is_connected_unlocked (DBusConnection *connection);
356 static dbus_bool_t _dbus_connection_peek_for_reply_unlocked (DBusConnection *connection,
357 dbus_uint32_t client_serial);
359 static DBusMessageFilter *
360 _dbus_message_filter_ref (DBusMessageFilter *filter)
362 #ifdef DBUS_DISABLE_ASSERT
363 _dbus_atomic_inc (&filter->refcount);
365 dbus_int32_t old_value;
367 old_value = _dbus_atomic_inc (&filter->refcount);
368 _dbus_assert (old_value > 0);
375 _dbus_message_filter_unref (DBusMessageFilter *filter)
377 dbus_int32_t old_value;
379 old_value = _dbus_atomic_dec (&filter->refcount);
380 _dbus_assert (old_value > 0);
384 if (filter->free_user_data_function)
385 (* filter->free_user_data_function) (filter->user_data);
392 * Acquires the connection lock.
394 * @param connection the connection.
397 _dbus_connection_lock (DBusConnection *connection)
399 CONNECTION_LOCK (connection);
403 * Releases the connection lock.
405 * @param connection the connection.
408 _dbus_connection_unlock (DBusConnection *connection)
410 DBusList *expired_messages;
415 _dbus_verbose ("UNLOCK\n");
418 /* If we had messages that expired (fell off the incoming or outgoing
419 * queues) while we were locked, actually release them now */
420 expired_messages = connection->expired_messages;
421 connection->expired_messages = NULL;
423 RELEASING_LOCK_CHECK (connection);
424 _dbus_rmutex_unlock (connection->mutex);
426 for (iter = _dbus_list_pop_first_link (&expired_messages);
428 iter = _dbus_list_pop_first_link (&expired_messages))
430 DBusMessage *message = iter->data;
432 dbus_message_unref (message);
433 _dbus_list_free_link (iter);
438 * Wakes up the main loop if it is sleeping
439 * Needed if we're e.g. queueing outgoing messages
440 * on a thread while the mainloop sleeps.
442 * @param connection the connection.
445 _dbus_connection_wakeup_mainloop (DBusConnection *connection)
447 if (connection->wakeup_main_function)
448 (*connection->wakeup_main_function) (connection->wakeup_main_data);
452 _dbus_connection_set_dispatch(DBusConnection *connection,
453 dbus_bool_t disabled)
455 CONNECTION_LOCK (connection);
456 if (connection->dispatch_disabled != disabled)
458 DBusDispatchStatus status;
460 connection->dispatch_disabled = disabled;
461 status = _dbus_connection_get_dispatch_status_unlocked (connection);
462 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
466 CONNECTION_UNLOCK (connection);
472 _dbus_connection_enable_dispatch (DBusConnection *connection)
474 _dbus_connection_set_dispatch (connection, FALSE);
478 _dbus_connection_disable_dispatch (DBusConnection *connection)
480 _dbus_connection_set_dispatch (connection, TRUE);
484 #ifdef DBUS_ENABLE_EMBEDDED_TESTS
486 * Gets the locks so we can examine them
488 * @param connection the connection.
489 * @param mutex_loc return for the location of the main mutex pointer
490 * @param dispatch_mutex_loc return location of the dispatch mutex pointer
491 * @param io_path_mutex_loc return location of the io_path mutex pointer
492 * @param dispatch_cond_loc return location of the dispatch conditional
494 * @param io_path_cond_loc return location of the io_path conditional
498 _dbus_connection_test_get_locks (DBusConnection *connection,
499 DBusMutex **mutex_loc,
500 DBusMutex **dispatch_mutex_loc,
501 DBusMutex **io_path_mutex_loc,
502 DBusCondVar **dispatch_cond_loc,
503 DBusCondVar **io_path_cond_loc)
505 *mutex_loc = (DBusMutex *) connection->mutex;
506 *dispatch_mutex_loc = (DBusMutex *) connection->dispatch_mutex;
507 *io_path_mutex_loc = (DBusMutex *) connection->io_path_mutex;
508 *dispatch_cond_loc = connection->dispatch_cond;
509 *io_path_cond_loc = connection->io_path_cond;
514 * Adds a message-containing list link to the incoming message queue,
515 * taking ownership of the link and the message's current refcount.
516 * Cannot fail due to lack of memory.
518 * @param connection the connection.
519 * @param link the message link to queue.
522 _dbus_connection_queue_received_message_link (DBusConnection *connection,
525 DBusPendingCall *pending;
526 dbus_uint32_t reply_serial;
527 DBusMessage *message;
529 _dbus_assert (_dbus_transport_peek_is_authenticated (connection->transport));
531 _dbus_list_append_link (&connection->incoming_messages,
533 message = link->data;
535 /* If this is a reply we're waiting on, remove timeout for it */
536 reply_serial = dbus_message_get_reply_serial (message);
537 if (reply_serial != 0)
539 pending = _dbus_hash_table_lookup_int (connection->pending_replies,
543 if (_dbus_pending_call_is_timeout_added_unlocked (pending))
544 _dbus_connection_remove_timeout_unlocked (connection,
545 _dbus_pending_call_get_timeout_unlocked (pending));
547 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
553 connection->n_incoming += 1;
555 _dbus_connection_wakeup_mainloop (connection);
557 _dbus_verbose ("Message %p (%s %s %s %s '%s' reply to %u) added to incoming queue %p, %d incoming\n",
559 dbus_message_type_to_string (dbus_message_get_type (message)),
560 dbus_message_get_path (message) ?
561 dbus_message_get_path (message) :
563 dbus_message_get_interface (message) ?
564 dbus_message_get_interface (message) :
566 dbus_message_get_member (message) ?
567 dbus_message_get_member (message) :
569 dbus_message_get_signature (message),
570 dbus_message_get_reply_serial (message),
572 connection->n_incoming);
574 _dbus_message_trace_ref (message, -1, -1,
575 "_dbus_conection_queue_received_message_link");
579 * Adds a link + message to the incoming message queue.
580 * Can't fail. Takes ownership of both link and message.
582 * @param connection the connection.
583 * @param link the list node and message to queue.
587 _dbus_connection_queue_synthesized_message_link (DBusConnection *connection,
590 DBusMessage *msg, *rmsg;
592 HAVE_LOCK_CHECK (connection);
594 msg = (DBusMessage *)link->data;
597 if (_dbus_transport_assure_protocol_version (connection->transport, &rmsg))
599 /* If the message is converted, then we don't need the old format anymore */
600 _dbus_list_free_link(link);
601 link = _dbus_list_alloc_link (rmsg);
602 dbus_message_unref (msg);
605 _dbus_list_append_link (&connection->incoming_messages, link);
607 connection->n_incoming += 1;
609 _dbus_connection_wakeup_mainloop (connection);
611 _dbus_message_trace_ref (link->data, -1, -1,
612 "_dbus_connection_queue_synthesized_message_link");
614 _dbus_verbose ("Synthesized message %p added to incoming queue %p, %d incoming\n",
615 link->data, connection, connection->n_incoming);
620 * Checks whether there are messages in the outgoing message queue.
621 * Called with connection lock held.
623 * @param connection the connection.
624 * @returns #TRUE if the outgoing queue is non-empty.
627 _dbus_connection_has_messages_to_send_unlocked (DBusConnection *connection)
629 HAVE_LOCK_CHECK (connection);
630 return connection->outgoing_messages != NULL;
634 * Checks whether there are messages in the outgoing message queue.
635 * Use dbus_connection_flush() to block until all outgoing
636 * messages have been written to the underlying transport
637 * (such as a socket).
639 * @param connection the connection.
640 * @returns #TRUE if the outgoing queue is non-empty.
643 dbus_connection_has_messages_to_send (DBusConnection *connection)
647 _dbus_return_val_if_fail (connection != NULL, FALSE);
649 CONNECTION_LOCK (connection);
650 v = _dbus_connection_has_messages_to_send_unlocked (connection);
651 CONNECTION_UNLOCK (connection);
657 * Gets the next outgoing message. The message remains in the
658 * queue, and the caller does not own a reference to it.
660 * @param connection the connection.
661 * @returns the message to be sent.
664 _dbus_connection_get_message_to_send (DBusConnection *connection)
666 HAVE_LOCK_CHECK (connection);
668 return _dbus_list_get_last (&connection->outgoing_messages);
672 * Notifies the connection that a message has been sent, so the
673 * message can be removed from the outgoing queue.
674 * Called with the connection lock held.
676 * @param connection the connection.
677 * @param message the message that was sent.
680 _dbus_connection_message_sent_unlocked (DBusConnection *connection,
681 DBusMessage *message)
685 HAVE_LOCK_CHECK (connection);
687 /* This can be called before we even complete authentication, since
688 * it's called on disconnect to clean up the outgoing queue.
689 * It's also called as we successfully send each message.
692 link = _dbus_list_get_last_link (&connection->outgoing_messages);
693 _dbus_assert (link != NULL);
694 _dbus_assert (link->data == message);
696 _dbus_list_unlink (&connection->outgoing_messages,
698 _dbus_list_prepend_link (&connection->expired_messages, link);
700 connection->n_outgoing -= 1;
702 _dbus_verbose ("Message %p (%s %s %s %s '%s') removed from outgoing queue %p, %d left to send\n",
704 dbus_message_type_to_string (dbus_message_get_type (message)),
705 dbus_message_get_path (message) ?
706 dbus_message_get_path (message) :
708 dbus_message_get_interface (message) ?
709 dbus_message_get_interface (message) :
711 dbus_message_get_member (message) ?
712 dbus_message_get_member (message) :
714 dbus_message_get_signature (message),
715 connection, connection->n_outgoing);
717 /* It's OK that in principle we call the notify function, because for the
718 * outgoing limit, there isn't one */
719 _dbus_message_remove_counter (message, connection->outgoing_counter);
721 /* The message will actually be unreffed when we unlock */
724 /** Function to be called in protected_change_watch() with refcount held */
725 typedef dbus_bool_t (* DBusWatchAddFunction) (DBusWatchList *list,
727 /** Function to be called in protected_change_watch() with refcount held */
728 typedef void (* DBusWatchRemoveFunction) (DBusWatchList *list,
730 /** Function to be called in protected_change_watch() with refcount held */
731 typedef void (* DBusWatchToggleFunction) (DBusWatchList *list,
733 dbus_bool_t enabled);
736 protected_change_watch (DBusConnection *connection,
738 DBusWatchAddFunction add_function,
739 DBusWatchRemoveFunction remove_function,
740 DBusWatchToggleFunction toggle_function,
745 HAVE_LOCK_CHECK (connection);
747 /* The original purpose of protected_change_watch() was to hold a
748 * ref on the connection while dropping the connection lock, then
749 * calling out to the app. This was a broken hack that did not
750 * work, since the connection was in a hosed state (no WatchList
751 * field) while calling out.
753 * So for now we'll just keep the lock while calling out. This means
754 * apps are not allowed to call DBusConnection methods inside a
755 * watch function or they will deadlock.
757 * The "real fix" is to use the _and_unlock() pattern found
758 * elsewhere in the code, to defer calling out to the app until
759 * we're about to drop locks and return flow of control to the app
762 * See http://lists.freedesktop.org/archives/dbus/2007-July/thread.html#8144
765 if (connection->watches)
768 retval = (* add_function) (connection->watches, watch);
769 else if (remove_function)
772 (* remove_function) (connection->watches, watch);
777 (* toggle_function) (connection->watches, watch, enabled);
787 * Adds a watch using the connection's DBusAddWatchFunction if
788 * available. Otherwise records the watch to be added when said
789 * function is available. Also re-adds the watch if the
790 * DBusAddWatchFunction changes. May fail due to lack of memory.
791 * Connection lock should be held when calling this.
793 * @param connection the connection.
794 * @param watch the watch to add.
795 * @returns #TRUE on success.
798 _dbus_connection_add_watch_unlocked (DBusConnection *connection,
801 return protected_change_watch (connection, watch,
802 _dbus_watch_list_add_watch,
807 * Removes a watch using the connection's DBusRemoveWatchFunction
808 * if available. It's an error to call this function on a watch
809 * that was not previously added.
810 * Connection lock should be held when calling this.
812 * @param connection the connection.
813 * @param watch the watch to remove.
816 _dbus_connection_remove_watch_unlocked (DBusConnection *connection,
819 protected_change_watch (connection, watch,
821 _dbus_watch_list_remove_watch,
826 * Toggles a watch and notifies app via connection's
827 * DBusWatchToggledFunction if available. It's an error to call this
828 * function on a watch that was not previously added.
829 * Connection lock should be held when calling this.
831 * @param connection the connection.
832 * @param watch the watch to toggle.
833 * @param enabled whether to enable or disable
836 _dbus_connection_toggle_watch_unlocked (DBusConnection *connection,
840 _dbus_assert (watch != NULL);
842 protected_change_watch (connection, watch,
844 _dbus_watch_list_toggle_watch,
848 /** Function to be called in protected_change_timeout() with refcount held */
849 typedef dbus_bool_t (* DBusTimeoutAddFunction) (DBusTimeoutList *list,
850 DBusTimeout *timeout);
851 /** Function to be called in protected_change_timeout() with refcount held */
852 typedef void (* DBusTimeoutRemoveFunction) (DBusTimeoutList *list,
853 DBusTimeout *timeout);
854 /** Function to be called in protected_change_timeout() with refcount held */
855 typedef void (* DBusTimeoutToggleFunction) (DBusTimeoutList *list,
856 DBusTimeout *timeout,
857 dbus_bool_t enabled);
860 protected_change_timeout (DBusConnection *connection,
861 DBusTimeout *timeout,
862 DBusTimeoutAddFunction add_function,
863 DBusTimeoutRemoveFunction remove_function,
864 DBusTimeoutToggleFunction toggle_function,
869 HAVE_LOCK_CHECK (connection);
871 /* The original purpose of protected_change_timeout() was to hold a
872 * ref on the connection while dropping the connection lock, then
873 * calling out to the app. This was a broken hack that did not
874 * work, since the connection was in a hosed state (no TimeoutList
875 * field) while calling out.
877 * So for now we'll just keep the lock while calling out. This means
878 * apps are not allowed to call DBusConnection methods inside a
879 * timeout function or they will deadlock.
881 * The "real fix" is to use the _and_unlock() pattern found
882 * elsewhere in the code, to defer calling out to the app until
883 * we're about to drop locks and return flow of control to the app
886 * See http://lists.freedesktop.org/archives/dbus/2007-July/thread.html#8144
889 if (connection->timeouts)
892 retval = (* add_function) (connection->timeouts, timeout);
893 else if (remove_function)
896 (* remove_function) (connection->timeouts, timeout);
901 (* toggle_function) (connection->timeouts, timeout, enabled);
910 * Adds a timeout using the connection's DBusAddTimeoutFunction if
911 * available. Otherwise records the timeout to be added when said
912 * function is available. Also re-adds the timeout if the
913 * DBusAddTimeoutFunction changes. May fail due to lack of memory.
914 * The timeout will fire repeatedly until removed.
915 * Connection lock should be held when calling this.
917 * @param connection the connection.
918 * @param timeout the timeout to add.
919 * @returns #TRUE on success.
922 _dbus_connection_add_timeout_unlocked (DBusConnection *connection,
923 DBusTimeout *timeout)
925 return protected_change_timeout (connection, timeout,
926 _dbus_timeout_list_add_timeout,
931 * Removes a timeout using the connection's DBusRemoveTimeoutFunction
932 * if available. It's an error to call this function on a timeout
933 * that was not previously added.
934 * Connection lock should be held when calling this.
936 * @param connection the connection.
937 * @param timeout the timeout to remove.
940 _dbus_connection_remove_timeout_unlocked (DBusConnection *connection,
941 DBusTimeout *timeout)
943 protected_change_timeout (connection, timeout,
945 _dbus_timeout_list_remove_timeout,
950 * Toggles a timeout and notifies app via connection's
951 * DBusTimeoutToggledFunction if available. It's an error to call this
952 * function on a timeout that was not previously added.
953 * Connection lock should be held when calling this.
955 * @param connection the connection.
956 * @param timeout the timeout to toggle.
957 * @param enabled whether to enable or disable
960 _dbus_connection_toggle_timeout_unlocked (DBusConnection *connection,
961 DBusTimeout *timeout,
964 protected_change_timeout (connection, timeout,
966 _dbus_timeout_list_toggle_timeout,
971 _dbus_connection_attach_pending_call_unlocked (DBusConnection *connection,
972 DBusPendingCall *pending)
974 dbus_uint32_t reply_serial;
975 DBusTimeout *timeout;
977 HAVE_LOCK_CHECK (connection);
979 reply_serial = _dbus_pending_call_get_reply_serial_unlocked (pending);
981 _dbus_assert (reply_serial != 0);
983 timeout = _dbus_pending_call_get_timeout_unlocked (pending);
987 if (!_dbus_connection_add_timeout_unlocked (connection, timeout))
990 if (!_dbus_hash_table_insert_int (connection->pending_replies,
994 _dbus_connection_remove_timeout_unlocked (connection, timeout);
996 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
997 HAVE_LOCK_CHECK (connection);
1001 _dbus_pending_call_set_timeout_added_unlocked (pending, TRUE);
1005 if (!_dbus_hash_table_insert_int (connection->pending_replies,
1009 HAVE_LOCK_CHECK (connection);
1014 _dbus_pending_call_ref_unlocked (pending);
1016 HAVE_LOCK_CHECK (connection);
1022 free_pending_call_on_hash_removal (void *data)
1024 DBusPendingCall *pending;
1025 DBusConnection *connection;
1032 connection = _dbus_pending_call_get_connection_unlocked (pending);
1034 HAVE_LOCK_CHECK (connection);
1036 if (_dbus_pending_call_is_timeout_added_unlocked (pending))
1038 _dbus_connection_remove_timeout_unlocked (connection,
1039 _dbus_pending_call_get_timeout_unlocked (pending));
1041 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
1044 /* FIXME 1.0? this is sort of dangerous and undesirable to drop the lock
1045 * here, but the pending call finalizer could in principle call out to
1046 * application code so we pretty much have to... some larger code reorg
1049 _dbus_connection_ref_unlocked (connection);
1050 _dbus_pending_call_unref_and_unlock (pending);
1051 CONNECTION_LOCK (connection);
1052 _dbus_connection_unref_unlocked (connection);
1056 _dbus_connection_detach_pending_call_unlocked (DBusConnection *connection,
1057 DBusPendingCall *pending)
1059 /* This ends up unlocking to call the pending call finalizer, which is unexpected to
1062 _dbus_hash_table_remove_int (connection->pending_replies,
1063 _dbus_pending_call_get_reply_serial_unlocked (pending));
1067 _dbus_connection_detach_pending_call_and_unlock (DBusConnection *connection,
1068 DBusPendingCall *pending)
1070 /* The idea here is to avoid finalizing the pending call
1071 * with the lock held, since there's a destroy notifier
1072 * in pending call that goes out to application code.
1074 * There's an extra unlock inside the hash table
1075 * "free pending call" function FIXME...
1077 _dbus_pending_call_ref_unlocked (pending);
1078 _dbus_hash_table_remove_int (connection->pending_replies,
1079 _dbus_pending_call_get_reply_serial_unlocked (pending));
1081 if (_dbus_pending_call_is_timeout_added_unlocked (pending))
1082 _dbus_connection_remove_timeout_unlocked (connection,
1083 _dbus_pending_call_get_timeout_unlocked (pending));
1085 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
1087 _dbus_pending_call_unref_and_unlock (pending);
1091 * Removes a pending call from the connection, such that
1092 * the pending reply will be ignored. May drop the last
1093 * reference to the pending call.
1095 * @param connection the connection
1096 * @param pending the pending call
1099 _dbus_connection_remove_pending_call (DBusConnection *connection,
1100 DBusPendingCall *pending)
1102 CONNECTION_LOCK (connection);
1103 _dbus_connection_detach_pending_call_and_unlock (connection, pending);
1107 * Acquire the transporter I/O path. This must be done before
1108 * doing any I/O in the transporter. May sleep and drop the
1109 * IO path mutex while waiting for the I/O path.
1111 * @param connection the connection.
1112 * @param timeout_milliseconds maximum blocking time, or -1 for no limit.
1113 * @returns TRUE if the I/O path was acquired.
1116 _dbus_connection_acquire_io_path (DBusConnection *connection,
1117 int timeout_milliseconds)
1119 dbus_bool_t we_acquired;
1121 HAVE_LOCK_CHECK (connection);
1123 /* We don't want the connection to vanish */
1124 _dbus_connection_ref_unlocked (connection);
1126 /* We will only touch io_path_acquired which is protected by our mutex */
1127 CONNECTION_UNLOCK (connection);
1129 _dbus_verbose ("locking io_path_mutex\n");
1130 _dbus_cmutex_lock (connection->io_path_mutex);
1132 _dbus_verbose ("start connection->io_path_acquired = %d timeout = %d\n",
1133 connection->io_path_acquired, timeout_milliseconds);
1135 we_acquired = FALSE;
1137 if (connection->io_path_acquired)
1139 if (timeout_milliseconds != -1)
1141 _dbus_verbose ("waiting %d for IO path to be acquirable\n",
1142 timeout_milliseconds);
1144 if (!_dbus_condvar_wait_timeout (connection->io_path_cond,
1145 connection->io_path_mutex,
1146 timeout_milliseconds))
1148 /* We timed out before anyone signaled. */
1149 /* (writing the loop to handle the !timedout case by
1150 * waiting longer if needed is a pain since dbus
1151 * wraps pthread_cond_timedwait to take a relative
1152 * time instead of absolute, something kind of stupid
1153 * on our part. for now it doesn't matter, we will just
1154 * end up back here eventually.)
1160 while (connection->io_path_acquired)
1162 _dbus_verbose ("waiting for IO path to be acquirable\n");
1163 _dbus_condvar_wait (connection->io_path_cond,
1164 connection->io_path_mutex);
1169 if (!connection->io_path_acquired)
1172 connection->io_path_acquired = TRUE;
1175 _dbus_verbose ("end connection->io_path_acquired = %d we_acquired = %d\n",
1176 connection->io_path_acquired, we_acquired);
1178 _dbus_verbose ("unlocking io_path_mutex\n");
1179 _dbus_cmutex_unlock (connection->io_path_mutex);
1181 CONNECTION_LOCK (connection);
1183 HAVE_LOCK_CHECK (connection);
1185 _dbus_connection_unref_unlocked (connection);
1191 * Release the I/O path when you're done with it. Only call
1192 * after you've acquired the I/O. Wakes up at most one thread
1193 * currently waiting to acquire the I/O path.
1195 * @param connection the connection.
1198 _dbus_connection_release_io_path (DBusConnection *connection)
1200 HAVE_LOCK_CHECK (connection);
1202 _dbus_verbose ("locking io_path_mutex\n");
1203 _dbus_cmutex_lock (connection->io_path_mutex);
1205 _dbus_assert (connection->io_path_acquired);
1207 _dbus_verbose ("start connection->io_path_acquired = %d\n",
1208 connection->io_path_acquired);
1210 connection->io_path_acquired = FALSE;
1211 _dbus_condvar_wake_one (connection->io_path_cond);
1213 _dbus_verbose ("unlocking io_path_mutex\n");
1214 _dbus_cmutex_unlock (connection->io_path_mutex);
1218 * Queues incoming messages and sends outgoing messages for this
1219 * connection, optionally blocking in the process. Each call to
1220 * _dbus_connection_do_iteration_unlocked() will call select() or poll() one
1221 * time and then read or write data if possible.
1223 * The purpose of this function is to be able to flush outgoing
1224 * messages or queue up incoming messages without returning
1225 * control to the application and causing reentrancy weirdness.
1227 * The flags parameter allows you to specify whether to
1228 * read incoming messages, write outgoing messages, or both,
1229 * and whether to block if no immediate action is possible.
1231 * The timeout_milliseconds parameter does nothing unless the
1232 * iteration is blocking.
1234 * If there are no outgoing messages and DBUS_ITERATION_DO_READING
1235 * wasn't specified, then it's impossible to block, even if
1236 * you specify DBUS_ITERATION_BLOCK; in that case the function
1237 * returns immediately.
1239 * If pending is not NULL then a check is made if the pending call
1240 * is completed after the io path has been required. If the call
1241 * has been completed nothing is done. This must be done since
1242 * the _dbus_connection_acquire_io_path releases the connection
1245 * Called with connection lock held.
1247 * @param connection the connection.
1248 * @param pending the pending call that should be checked or NULL
1249 * @param flags iteration flags.
1250 * @param timeout_milliseconds maximum blocking time, or -1 for no limit.
1253 _dbus_connection_do_iteration_unlocked (DBusConnection *connection,
1254 DBusPendingCall *pending,
1256 int timeout_milliseconds)
1258 _dbus_verbose ("start\n");
1260 HAVE_LOCK_CHECK (connection);
1262 if (connection->n_outgoing == 0)
1263 flags &= ~DBUS_ITERATION_DO_WRITING;
1265 if (_dbus_connection_acquire_io_path (connection,
1266 (flags & DBUS_ITERATION_BLOCK) ? timeout_milliseconds : 0))
1268 HAVE_LOCK_CHECK (connection);
1270 if ( (pending != NULL) && _dbus_pending_call_get_completed_unlocked(pending))
1272 _dbus_verbose ("pending call completed while acquiring I/O path");
1274 else if ( (pending != NULL) &&
1275 _dbus_connection_peek_for_reply_unlocked (connection,
1276 _dbus_pending_call_get_reply_serial_unlocked (pending)))
1278 _dbus_verbose ("pending call completed while acquiring I/O path (reply found in queue)");
1282 _dbus_transport_do_iteration (connection->transport,
1283 flags, timeout_milliseconds);
1286 _dbus_connection_release_io_path (connection);
1289 HAVE_LOCK_CHECK (connection);
1291 _dbus_verbose ("end\n");
1295 * Creates a new connection for the given transport. A transport
1296 * represents a message stream that uses some concrete mechanism, such
1297 * as UNIX domain sockets. May return #NULL if insufficient
1298 * memory exists to create the connection.
1300 * @param transport the transport.
1301 * @returns the new connection, or #NULL on failure.
1304 _dbus_connection_new_for_transport (DBusTransport *transport)
1306 DBusConnection *connection;
1307 DBusWatchList *watch_list;
1308 DBusTimeoutList *timeout_list;
1309 DBusHashTable *pending_replies;
1310 DBusList *disconnect_link;
1311 DBusMessage *disconnect_message;
1312 DBusCounter *outgoing_counter;
1313 DBusObjectTree *objects;
1317 pending_replies = NULL;
1318 timeout_list = NULL;
1319 disconnect_link = NULL;
1320 disconnect_message = NULL;
1321 outgoing_counter = NULL;
1324 watch_list = _dbus_watch_list_new ();
1325 if (watch_list == NULL)
1328 timeout_list = _dbus_timeout_list_new ();
1329 if (timeout_list == NULL)
1333 _dbus_hash_table_new (DBUS_HASH_INT,
1335 (DBusFreeFunction)free_pending_call_on_hash_removal);
1336 if (pending_replies == NULL)
1339 connection = dbus_new0 (DBusConnection, 1);
1340 if (connection == NULL)
1343 #ifdef DBUS_ENABLE_SMACK
1344 /* If we cannot get the Smack label, proceed without. */
1347 if (_dbus_transport_get_socket_fd(transport, &sock_fd)) {
1349 if (smack_new_label_from_socket(_dbus_socket_get_int (sock_fd), &label) >= 0) {
1350 connection->peer_smack_label = label;
1356 _dbus_rmutex_new_at_location (&connection->mutex);
1357 if (connection->mutex == NULL)
1360 _dbus_cmutex_new_at_location (&connection->io_path_mutex);
1361 if (connection->io_path_mutex == NULL)
1364 _dbus_cmutex_new_at_location (&connection->dispatch_mutex);
1365 if (connection->dispatch_mutex == NULL)
1368 _dbus_condvar_new_at_location (&connection->dispatch_cond);
1369 if (connection->dispatch_cond == NULL)
1372 _dbus_condvar_new_at_location (&connection->io_path_cond);
1373 if (connection->io_path_cond == NULL)
1376 _dbus_rmutex_new_at_location (&connection->slot_mutex);
1377 if (connection->slot_mutex == NULL)
1380 disconnect_message = dbus_message_new_signal (DBUS_PATH_LOCAL,
1381 DBUS_INTERFACE_LOCAL,
1384 if (disconnect_message == NULL)
1387 disconnect_link = _dbus_list_alloc_link (disconnect_message);
1388 if (disconnect_link == NULL)
1391 outgoing_counter = _dbus_counter_new ();
1392 if (outgoing_counter == NULL)
1395 objects = _dbus_object_tree_new (connection);
1396 if (objects == NULL)
1399 if (_dbus_modify_sigpipe)
1400 _dbus_disable_sigpipe ();
1402 /* initialized to 0: use atomic op to avoid mixing atomic and non-atomic */
1403 _dbus_atomic_inc (&connection->refcount);
1404 connection->transport = transport;
1405 connection->watches = watch_list;
1406 connection->timeouts = timeout_list;
1407 connection->pending_replies = pending_replies;
1408 connection->outgoing_counter = outgoing_counter;
1409 connection->filter_list = NULL;
1410 connection->last_dispatch_status = DBUS_DISPATCH_COMPLETE; /* so we're notified first time there's data */
1411 connection->objects = objects;
1412 connection->exit_on_disconnect = FALSE;
1413 connection->shareable = FALSE;
1414 connection->route_peer_messages = FALSE;
1415 connection->disconnected_message_arrived = FALSE;
1416 connection->disconnected_message_processed = FALSE;
1418 #if defined(DBUS_ENABLE_CHECKS) || defined(DBUS_ENABLE_ASSERT)
1419 connection->generation = _dbus_current_generation;
1422 _dbus_data_slot_list_init (&connection->slot_list);
1424 connection->client_serial = 1;
1426 connection->disconnect_message_link = disconnect_link;
1428 CONNECTION_LOCK (connection);
1430 if (!_dbus_transport_set_connection (transport, connection))
1432 CONNECTION_UNLOCK (connection);
1437 _dbus_transport_ref (transport);
1439 CONNECTION_UNLOCK (connection);
1441 _dbus_connection_trace_ref (connection, 0, 1, "new_for_transport");
1445 if (disconnect_message != NULL)
1446 dbus_message_unref (disconnect_message);
1448 if (disconnect_link != NULL)
1449 _dbus_list_free_link (disconnect_link);
1451 if (connection != NULL)
1453 _dbus_condvar_free_at_location (&connection->io_path_cond);
1454 _dbus_condvar_free_at_location (&connection->dispatch_cond);
1455 _dbus_rmutex_free_at_location (&connection->mutex);
1456 _dbus_cmutex_free_at_location (&connection->io_path_mutex);
1457 _dbus_cmutex_free_at_location (&connection->dispatch_mutex);
1458 _dbus_rmutex_free_at_location (&connection->slot_mutex);
1459 dbus_free (connection);
1461 if (pending_replies)
1462 _dbus_hash_table_unref (pending_replies);
1465 _dbus_watch_list_free (watch_list);
1468 _dbus_timeout_list_free (timeout_list);
1470 if (outgoing_counter)
1471 _dbus_counter_unref (outgoing_counter);
1474 _dbus_object_tree_unref (objects);
1480 * Increments the reference count of a DBusConnection.
1481 * Requires that the caller already holds the connection lock.
1483 * @param connection the connection.
1484 * @returns the connection.
1487 _dbus_connection_ref_unlocked (DBusConnection *connection)
1489 dbus_int32_t old_refcount;
1491 _dbus_assert (connection != NULL);
1492 _dbus_assert (connection->generation == _dbus_current_generation);
1494 HAVE_LOCK_CHECK (connection);
1496 old_refcount = _dbus_atomic_inc (&connection->refcount);
1497 _dbus_connection_trace_ref (connection, old_refcount, old_refcount + 1,
1504 * Decrements the reference count of a DBusConnection.
1505 * Requires that the caller already holds the connection lock.
1507 * @param connection the connection.
1510 _dbus_connection_unref_unlocked (DBusConnection *connection)
1512 dbus_int32_t old_refcount;
1514 HAVE_LOCK_CHECK (connection);
1516 _dbus_assert (connection != NULL);
1518 old_refcount = _dbus_atomic_dec (&connection->refcount);
1520 _dbus_connection_trace_ref (connection, old_refcount, old_refcount - 1,
1523 if (old_refcount == 1)
1524 _dbus_connection_last_unref (connection);
1527 static dbus_uint32_t
1528 _dbus_connection_get_next_client_serial (DBusConnection *connection)
1530 dbus_uint32_t serial;
1532 serial = connection->client_serial++;
1534 if (connection->client_serial == 0)
1535 connection->client_serial = 1;
1541 * A callback for use with dbus_watch_new() to create a DBusWatch.
1543 * @todo This is basically a hack - we could delete _dbus_transport_handle_watch()
1544 * and the virtual handle_watch in DBusTransport if we got rid of it.
1545 * The reason this is some work is threading, see the _dbus_connection_handle_watch()
1548 * @param watch the watch.
1549 * @param condition the current condition of the file descriptors being watched.
1550 * @param data must be a pointer to a #DBusConnection
1551 * @returns #FALSE if the IO condition may not have been fully handled due to lack of memory
1554 _dbus_connection_handle_watch (DBusWatch *watch,
1555 unsigned int condition,
1558 DBusConnection *connection;
1560 DBusDispatchStatus status;
1564 _dbus_verbose ("start\n");
1566 CONNECTION_LOCK (connection);
1568 if (!_dbus_connection_acquire_io_path (connection, 1))
1570 /* another thread is handling the message */
1571 CONNECTION_UNLOCK (connection);
1575 HAVE_LOCK_CHECK (connection);
1576 retval = _dbus_transport_handle_watch (connection->transport,
1579 _dbus_connection_release_io_path (connection);
1581 HAVE_LOCK_CHECK (connection);
1583 _dbus_verbose ("middle\n");
1585 status = _dbus_connection_get_dispatch_status_unlocked (connection);
1587 /* this calls out to user code */
1588 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
1590 _dbus_verbose ("end\n");
1595 /* Protected by _DBUS_LOCK (shared_connections) */
1596 static DBusHashTable *shared_connections = NULL;
1597 static DBusList *shared_connections_no_guid = NULL;
1600 close_connection_on_shutdown (DBusConnection *connection)
1602 DBusMessage *message;
1604 dbus_connection_ref (connection);
1605 _dbus_connection_close_possibly_shared (connection);
1607 /* Churn through to the Disconnected message */
1608 while ((message = dbus_connection_pop_message (connection)))
1610 dbus_message_unref (message);
1612 dbus_connection_unref (connection);
1616 shared_connections_shutdown (void *data)
1620 if (!_DBUS_LOCK (shared_connections))
1622 /* We'd have initialized locks before adding anything, so there
1623 * can't be anything there. */
1627 /* This is a little bit unpleasant... better ideas? */
1628 while ((n_entries = _dbus_hash_table_get_n_entries (shared_connections)) > 0)
1630 DBusConnection *connection;
1633 _dbus_hash_iter_init (shared_connections, &iter);
1634 _dbus_hash_iter_next (&iter);
1636 connection = _dbus_hash_iter_get_value (&iter);
1638 _DBUS_UNLOCK (shared_connections);
1639 close_connection_on_shutdown (connection);
1640 if (!_DBUS_LOCK (shared_connections))
1641 _dbus_assert_not_reached ("global locks were already initialized");
1643 /* The connection should now be dead and not in our hash ... */
1644 _dbus_assert (_dbus_hash_table_get_n_entries (shared_connections) < n_entries);
1647 _dbus_assert (_dbus_hash_table_get_n_entries (shared_connections) == 0);
1649 _dbus_hash_table_unref (shared_connections);
1650 shared_connections = NULL;
1652 if (shared_connections_no_guid != NULL)
1654 DBusConnection *connection;
1655 connection = _dbus_list_pop_first (&shared_connections_no_guid);
1656 while (connection != NULL)
1658 _DBUS_UNLOCK (shared_connections);
1659 close_connection_on_shutdown (connection);
1660 if (!_DBUS_LOCK (shared_connections))
1661 _dbus_assert_not_reached ("global locks were already initialized");
1662 connection = _dbus_list_pop_first (&shared_connections_no_guid);
1666 shared_connections_no_guid = NULL;
1668 _DBUS_UNLOCK (shared_connections);
1672 connection_lookup_shared (DBusAddressEntry *entry,
1673 DBusConnection **result)
1675 _dbus_verbose ("checking for existing connection\n");
1679 if (!_DBUS_LOCK (shared_connections))
1681 /* If it was shared, we'd have initialized global locks when we put
1682 * it in shared_connections. */
1686 if (shared_connections == NULL)
1688 _dbus_verbose ("creating shared_connections hash table\n");
1690 shared_connections = _dbus_hash_table_new (DBUS_HASH_STRING,
1693 if (shared_connections == NULL)
1695 _DBUS_UNLOCK (shared_connections);
1699 if (!_dbus_register_shutdown_func (shared_connections_shutdown, NULL))
1701 _dbus_hash_table_unref (shared_connections);
1702 shared_connections = NULL;
1703 _DBUS_UNLOCK (shared_connections);
1707 _dbus_verbose (" successfully created shared_connections\n");
1709 _DBUS_UNLOCK (shared_connections);
1710 return TRUE; /* no point looking up in the hash we just made */
1716 guid = dbus_address_entry_get_value (entry, "guid");
1720 DBusConnection *connection;
1722 connection = _dbus_hash_table_lookup_string (shared_connections,
1727 /* The DBusConnection can't be finalized without taking
1728 * the shared_connections lock to remove it from the
1729 * hash. So it's safe to ref the connection here.
1730 * However, it may be disconnected if the Disconnected
1731 * message hasn't been processed yet, in which case we
1732 * want to pretend it isn't in the hash and avoid
1735 * The idea is to avoid ever returning a disconnected connection
1736 * from dbus_connection_open(). We could just synchronously
1737 * drop our shared ref to the connection on connection disconnect,
1738 * and then assert here that the connection is connected, but
1739 * that causes reentrancy headaches.
1741 CONNECTION_LOCK (connection);
1742 if (_dbus_connection_get_is_connected_unlocked (connection))
1744 _dbus_connection_ref_unlocked (connection);
1745 *result = connection;
1746 _dbus_verbose ("looked up existing connection to server guid %s\n",
1751 _dbus_verbose ("looked up existing connection to server guid %s but it was disconnected so ignoring it\n",
1754 CONNECTION_UNLOCK (connection);
1758 _DBUS_UNLOCK (shared_connections);
1764 connection_record_shared_unlocked (DBusConnection *connection,
1768 char *guid_in_connection;
1770 HAVE_LOCK_CHECK (connection);
1771 _dbus_assert (connection->server_guid == NULL);
1772 _dbus_assert (connection->shareable);
1774 /* get a hard ref on this connection, even if
1775 * we won't in fact store it in the hash, we still
1776 * need to hold a ref on it until it's disconnected.
1778 _dbus_connection_ref_unlocked (connection);
1782 if (!_DBUS_LOCK (shared_connections))
1785 if (!_dbus_list_prepend (&shared_connections_no_guid, connection))
1787 _DBUS_UNLOCK (shared_connections);
1791 _DBUS_UNLOCK (shared_connections);
1792 return TRUE; /* don't store in the hash */
1795 /* A separate copy of the key is required in the hash table, because
1796 * we don't have a lock on the connection when we are doing a hash
1800 guid_key = _dbus_strdup (guid);
1801 if (guid_key == NULL)
1804 guid_in_connection = _dbus_strdup (guid);
1805 if (guid_in_connection == NULL)
1807 dbus_free (guid_key);
1811 if (!_DBUS_LOCK (shared_connections))
1813 dbus_free (guid_in_connection);
1814 dbus_free (guid_key);
1818 _dbus_assert (shared_connections != NULL);
1820 if (!_dbus_hash_table_insert_string (shared_connections,
1821 guid_key, connection))
1823 dbus_free (guid_key);
1824 dbus_free (guid_in_connection);
1825 _DBUS_UNLOCK (shared_connections);
1829 connection->server_guid = guid_in_connection;
1831 _dbus_verbose ("stored connection to %s to be shared\n",
1832 connection->server_guid);
1834 _DBUS_UNLOCK (shared_connections);
1836 _dbus_assert (connection->server_guid != NULL);
1842 connection_forget_shared_unlocked (DBusConnection *connection)
1844 HAVE_LOCK_CHECK (connection);
1846 if (!connection->shareable)
1849 if (!_DBUS_LOCK (shared_connections))
1851 /* If it was shared, we'd have initialized global locks when we put
1852 * it in the table; so it can't be there. */
1856 if (connection->server_guid != NULL)
1858 _dbus_verbose ("dropping connection to %s out of the shared table\n",
1859 connection->server_guid);
1861 if (!_dbus_hash_table_remove_string (shared_connections,
1862 connection->server_guid))
1863 _dbus_assert_not_reached ("connection was not in the shared table");
1865 dbus_free (connection->server_guid);
1866 connection->server_guid = NULL;
1870 _dbus_list_remove (&shared_connections_no_guid, connection);
1873 _DBUS_UNLOCK (shared_connections);
1875 /* remove our reference held on all shareable connections */
1876 _dbus_connection_unref_unlocked (connection);
1879 static DBusConnection*
1880 connection_try_from_address_entry (DBusAddressEntry *entry,
1883 DBusTransport *transport;
1884 DBusConnection *connection;
1886 transport = _dbus_transport_open (entry, error);
1888 if (transport == NULL)
1890 _DBUS_ASSERT_ERROR_IS_SET (error);
1894 connection = _dbus_connection_new_for_transport (transport);
1896 _dbus_transport_unref (transport);
1898 if (connection == NULL)
1900 _DBUS_SET_OOM (error);
1904 #ifndef DBUS_DISABLE_CHECKS
1905 _dbus_assert (!connection->have_connection_lock);
1911 * If the shared parameter is true, then any existing connection will
1912 * be used (and if a new connection is created, it will be available
1913 * for use by others). If the shared parameter is false, a new
1914 * connection will always be created, and the new connection will
1915 * never be returned to other callers.
1917 * @param address the address
1918 * @param shared whether the connection is shared or private
1919 * @param error error return
1920 * @returns the connection or #NULL on error
1922 static DBusConnection*
1923 _dbus_connection_open_internal (const char *address,
1927 DBusConnection *connection;
1928 DBusAddressEntry **entries;
1929 DBusError tmp_error = DBUS_ERROR_INIT;
1930 DBusError first_error = DBUS_ERROR_INIT;
1933 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1935 _dbus_verbose ("opening %s connection to: %s\n",
1936 shared ? "shared" : "private", address);
1938 if (!dbus_parse_address (address, &entries, &len, error))
1941 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1945 for (i = 0; i < len; i++)
1949 if (!connection_lookup_shared (entries[i], &connection))
1950 _DBUS_SET_OOM (&tmp_error);
1953 if (connection == NULL)
1955 connection = connection_try_from_address_entry (entries[i],
1958 if (connection != NULL && shared)
1962 connection->shareable = TRUE;
1964 /* guid may be NULL */
1965 guid = dbus_address_entry_get_value (entries[i], "guid");
1967 CONNECTION_LOCK (connection);
1969 if (!connection_record_shared_unlocked (connection, guid))
1971 _DBUS_SET_OOM (&tmp_error);
1972 _dbus_connection_close_possibly_shared_and_unlock (connection);
1973 dbus_connection_unref (connection);
1977 CONNECTION_UNLOCK (connection);
1984 _DBUS_ASSERT_ERROR_IS_SET (&tmp_error);
1987 dbus_move_error (&tmp_error, &first_error);
1989 dbus_error_free (&tmp_error);
1992 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1993 _DBUS_ASSERT_ERROR_IS_CLEAR (&tmp_error);
1995 if (connection == NULL)
1997 _DBUS_ASSERT_ERROR_IS_SET (&first_error);
1998 dbus_move_error (&first_error, error);
2001 dbus_error_free (&first_error);
2003 dbus_address_entries_free (entries);
2008 * Closes a shared OR private connection, while dbus_connection_close() can
2009 * only be used on private connections. Should only be called by the
2010 * dbus code that owns the connection - an owner must be known,
2011 * the open/close state is like malloc/free, not like ref/unref.
2013 * @param connection the connection
2016 _dbus_connection_close_possibly_shared (DBusConnection *connection)
2018 _dbus_assert (connection != NULL);
2019 _dbus_assert (connection->generation == _dbus_current_generation);
2021 CONNECTION_LOCK (connection);
2022 _dbus_connection_close_possibly_shared_and_unlock (connection);
2025 static DBusPreallocatedSend*
2026 _dbus_connection_preallocate_send_unlocked (DBusConnection *connection)
2028 DBusPreallocatedSend *preallocated;
2030 HAVE_LOCK_CHECK (connection);
2032 _dbus_assert (connection != NULL);
2034 preallocated = dbus_new (DBusPreallocatedSend, 1);
2035 if (preallocated == NULL)
2038 preallocated->queue_link = _dbus_list_alloc_link (NULL);
2039 if (preallocated->queue_link == NULL)
2042 preallocated->counter_link = _dbus_list_alloc_link (connection->outgoing_counter);
2043 if (preallocated->counter_link == NULL)
2046 _dbus_counter_ref (preallocated->counter_link->data);
2048 preallocated->connection = connection;
2050 return preallocated;
2053 _dbus_list_free_link (preallocated->queue_link);
2055 dbus_free (preallocated);
2060 /* Called with lock held, does not update dispatch status */
2062 _dbus_connection_send_preallocated_unlocked_no_update (DBusConnection *connection,
2063 DBusPreallocatedSend *preallocated,
2064 DBusMessage *message,
2065 dbus_uint32_t *client_serial)
2067 dbus_uint32_t serial;
2069 /* Finish preparing the message */
2070 if (dbus_message_get_serial (message) == 0)
2072 serial = _dbus_connection_get_next_client_serial (connection);
2073 dbus_message_set_serial (message, serial);
2075 *client_serial = serial;
2080 *client_serial = dbus_message_get_serial (message);
2083 _dbus_verbose ("Message %p serial is %u\n",
2084 message, dbus_message_get_serial (message));
2086 dbus_message_lock (message);
2088 /* This converts message if neccessary */
2089 if (!_dbus_transport_assure_protocol_version (connection->transport, &message))
2091 /* Only non-converted messages must be refed.
2092 * Converted messages are local anyway.
2094 dbus_message_ref (message);
2097 preallocated->queue_link->data = message;
2098 _dbus_list_prepend_link (&connection->outgoing_messages,
2099 preallocated->queue_link);
2101 /* It's OK that we'll never call the notify function, because for the
2102 * outgoing limit, there isn't one */
2103 _dbus_message_add_counter_link (message,
2104 preallocated->counter_link);
2106 dbus_free (preallocated);
2107 preallocated = NULL;
2109 connection->n_outgoing += 1;
2111 _dbus_verbose ("Message %p (%s %s %s %s '%s') for %s added to outgoing queue %p, %d pending to send\n",
2113 dbus_message_type_to_string (dbus_message_get_type (message)),
2114 dbus_message_get_path (message) ?
2115 dbus_message_get_path (message) :
2117 dbus_message_get_interface (message) ?
2118 dbus_message_get_interface (message) :
2120 dbus_message_get_member (message) ?
2121 dbus_message_get_member (message) :
2123 dbus_message_get_signature (message),
2124 dbus_message_get_destination (message) ?
2125 dbus_message_get_destination (message) :
2128 connection->n_outgoing);
2130 /* Now we need to run an iteration to hopefully just write the messages
2131 * out immediately, and otherwise get them queued up
2133 _dbus_connection_do_iteration_unlocked (connection,
2135 DBUS_ITERATION_DO_WRITING,
2138 /* If stuff is still queued up, be sure we wake up the main loop */
2139 if (connection->n_outgoing > 0)
2140 _dbus_connection_wakeup_mainloop (connection);
2144 _dbus_connection_send_preallocated_and_unlock (DBusConnection *connection,
2145 DBusPreallocatedSend *preallocated,
2146 DBusMessage *message,
2147 dbus_uint32_t *client_serial)
2149 DBusDispatchStatus status;
2151 HAVE_LOCK_CHECK (connection);
2153 _dbus_connection_send_preallocated_unlocked_no_update (connection,
2155 message, client_serial);
2157 _dbus_verbose ("middle\n");
2158 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2160 /* this calls out to user code */
2161 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2165 * Like dbus_connection_send(), but assumes the connection
2166 * is already locked on function entry, and unlocks before returning.
2168 * @param connection the connection
2169 * @param message the message to send
2170 * @param client_serial return location for client serial of sent message
2171 * @returns #FALSE on out-of-memory
2174 _dbus_connection_send_and_unlock (DBusConnection *connection,
2175 DBusMessage *message,
2176 dbus_uint32_t *client_serial)
2178 DBusPreallocatedSend *preallocated;
2180 _dbus_assert (connection != NULL);
2181 _dbus_assert (message != NULL);
2183 preallocated = _dbus_connection_preallocate_send_unlocked (connection);
2184 if (preallocated == NULL)
2186 CONNECTION_UNLOCK (connection);
2190 _dbus_connection_send_preallocated_and_unlock (connection,
2198 * Used internally to handle the semantics of dbus_server_set_new_connection_function().
2199 * If the new connection function does not ref the connection, we want to close it.
2201 * A bit of a hack, probably the new connection function should have returned a value
2202 * for whether to close, or should have had to close the connection itself if it
2205 * But, this works OK as long as the new connection function doesn't do anything
2206 * crazy like keep the connection around without ref'ing it.
2208 * We have to lock the connection across refcount check and close in case
2209 * the new connection function spawns a thread that closes and unrefs.
2210 * In that case, if the app thread
2211 * closes and unrefs first, we'll harmlessly close again; if the app thread
2212 * still has the ref, we'll close and then the app will close harmlessly.
2213 * If the app unrefs without closing, the app is broken since if the
2214 * app refs from the new connection function it is supposed to also close.
2216 * If we didn't atomically check the refcount and close with the lock held
2217 * though, we could screw this up.
2219 * @param connection the connection
2222 _dbus_connection_close_if_only_one_ref (DBusConnection *connection)
2224 dbus_int32_t refcount;
2226 CONNECTION_LOCK (connection);
2228 refcount = _dbus_atomic_get (&connection->refcount);
2229 /* The caller should have at least one ref */
2230 _dbus_assert (refcount >= 1);
2233 _dbus_connection_close_possibly_shared_and_unlock (connection);
2235 CONNECTION_UNLOCK (connection);
2240 * When a function that blocks has been called with a timeout, and we
2241 * run out of memory, the time to wait for memory is based on the
2242 * timeout. If the caller was willing to block a long time we wait a
2243 * relatively long time for memory, if they were only willing to block
2244 * briefly then we retry for memory at a rapid rate.
2246 * @param timeout_milliseconds the timeout requested for blocking
2249 _dbus_memory_pause_based_on_timeout (int timeout_milliseconds)
2251 if (timeout_milliseconds == -1)
2252 _dbus_sleep_milliseconds (1000);
2253 else if (timeout_milliseconds < 100)
2254 ; /* just busy loop */
2255 else if (timeout_milliseconds <= 1000)
2256 _dbus_sleep_milliseconds (timeout_milliseconds / 3);
2258 _dbus_sleep_milliseconds (1000);
2262 * Peek the incoming queue to see if we got reply for a specific serial
2265 _dbus_connection_peek_for_reply_unlocked (DBusConnection *connection,
2266 dbus_uint32_t client_serial)
2269 HAVE_LOCK_CHECK (connection);
2271 link = _dbus_list_get_first_link (&connection->incoming_messages);
2273 while (link != NULL)
2275 DBusMessage *reply = link->data;
2277 if (dbus_message_get_reply_serial (reply) == client_serial)
2279 _dbus_verbose ("%s reply to %d found in queue\n", _DBUS_FUNCTION_NAME, client_serial);
2282 link = _dbus_list_get_next_link (&connection->incoming_messages, link);
2288 /* This is slightly strange since we can pop a message here without
2289 * the dispatch lock.
2292 check_for_reply_unlocked (DBusConnection *connection,
2293 dbus_uint32_t client_serial)
2297 HAVE_LOCK_CHECK (connection);
2299 link = _dbus_list_get_first_link (&connection->incoming_messages);
2301 while (link != NULL)
2303 DBusMessage *reply = link->data;
2305 if (dbus_message_get_reply_serial (reply) == client_serial)
2307 _dbus_list_remove_link (&connection->incoming_messages, link);
2308 connection->n_incoming -= 1;
2311 link = _dbus_list_get_next_link (&connection->incoming_messages, link);
2318 connection_timeout_and_complete_all_pending_calls_unlocked (DBusConnection *connection)
2320 /* We can't iterate over the hash in the normal way since we'll be
2321 * dropping the lock for each item. So we restart the
2322 * iter each time as we drain the hash table.
2325 while (_dbus_hash_table_get_n_entries (connection->pending_replies) > 0)
2327 DBusPendingCall *pending;
2330 _dbus_hash_iter_init (connection->pending_replies, &iter);
2331 _dbus_hash_iter_next (&iter);
2333 pending = _dbus_hash_iter_get_value (&iter);
2334 _dbus_pending_call_ref_unlocked (pending);
2336 _dbus_pending_call_queue_timeout_error_unlocked (pending,
2339 if (_dbus_pending_call_is_timeout_added_unlocked (pending))
2340 _dbus_connection_remove_timeout_unlocked (connection,
2341 _dbus_pending_call_get_timeout_unlocked (pending));
2342 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
2343 _dbus_hash_iter_remove_entry (&iter);
2345 _dbus_pending_call_unref_and_unlock (pending);
2346 CONNECTION_LOCK (connection);
2348 HAVE_LOCK_CHECK (connection);
2352 complete_pending_call_and_unlock (DBusConnection *connection,
2353 DBusPendingCall *pending,
2354 DBusMessage *message)
2356 _dbus_pending_call_set_reply_unlocked (pending, message);
2357 _dbus_pending_call_ref_unlocked (pending); /* in case there's no app with a ref held */
2358 _dbus_connection_detach_pending_call_and_unlock (connection, pending);
2360 /* Must be called unlocked since it invokes app callback */
2361 _dbus_pending_call_complete (pending);
2362 dbus_pending_call_unref (pending);
2366 check_for_reply_and_update_dispatch_unlocked (DBusConnection *connection,
2367 DBusPendingCall *pending)
2370 DBusDispatchStatus status;
2372 reply = check_for_reply_unlocked (connection,
2373 _dbus_pending_call_get_reply_serial_unlocked (pending));
2376 _dbus_verbose ("checked for reply\n");
2378 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): got reply\n");
2380 complete_pending_call_and_unlock (connection, pending, reply);
2381 dbus_message_unref (reply);
2383 CONNECTION_LOCK (connection);
2384 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2385 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2386 dbus_pending_call_unref (pending);
2395 * Blocks until a pending call times out or gets a reply.
2397 * Does not re-enter the main loop or run filter/path-registered
2398 * callbacks. The reply to the message will not be seen by
2401 * Returns immediately if pending call already got a reply.
2403 * @todo could use performance improvements (it keeps scanning
2404 * the whole message queue for example)
2406 * @param pending the pending call we block for a reply on
2409 _dbus_connection_block_pending_call (DBusPendingCall *pending)
2411 long start_tv_sec, start_tv_usec;
2412 long tv_sec, tv_usec;
2413 DBusDispatchStatus status;
2414 DBusConnection *connection;
2415 dbus_uint32_t client_serial;
2416 DBusTimeout *timeout;
2417 int timeout_milliseconds, elapsed_milliseconds;
2419 _dbus_assert (pending != NULL);
2421 if (dbus_pending_call_get_completed (pending))
2424 dbus_pending_call_ref (pending); /* necessary because the call could be canceled */
2426 connection = _dbus_pending_call_get_connection_and_lock (pending);
2428 /* Flush message queue - note, can affect dispatch status */
2429 _dbus_connection_flush_unlocked (connection);
2431 client_serial = _dbus_pending_call_get_reply_serial_unlocked (pending);
2433 /* note that timeout_milliseconds is limited to a smallish value
2434 * in _dbus_pending_call_new() so overflows aren't possible
2437 timeout = _dbus_pending_call_get_timeout_unlocked (pending);
2438 _dbus_get_monotonic_time (&start_tv_sec, &start_tv_usec);
2441 timeout_milliseconds = dbus_timeout_get_interval (timeout);
2443 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): will block %d milliseconds for reply serial %u from %ld sec %ld usec\n",
2444 timeout_milliseconds,
2446 start_tv_sec, start_tv_usec);
2450 timeout_milliseconds = -1;
2452 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): will block for reply serial %u\n", client_serial);
2455 /* check to see if we already got the data off the socket */
2456 /* from another blocked pending call */
2457 if (check_for_reply_and_update_dispatch_unlocked (connection, pending))
2460 /* Now we wait... */
2461 /* always block at least once as we know we don't have the reply yet */
2462 _dbus_connection_do_iteration_unlocked (connection,
2464 DBUS_ITERATION_DO_READING |
2465 DBUS_ITERATION_BLOCK,
2466 timeout_milliseconds);
2470 _dbus_verbose ("top of recheck\n");
2472 HAVE_LOCK_CHECK (connection);
2474 /* queue messages and get status */
2476 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2478 /* the get_completed() is in case a dispatch() while we were blocking
2479 * got the reply instead of us.
2481 if (_dbus_pending_call_get_completed_unlocked (pending))
2483 _dbus_verbose ("Pending call completed by dispatch\n");
2484 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2485 dbus_pending_call_unref (pending);
2489 if (status == DBUS_DISPATCH_DATA_REMAINS)
2491 if (check_for_reply_and_update_dispatch_unlocked (connection, pending))
2495 _dbus_get_monotonic_time (&tv_sec, &tv_usec);
2496 elapsed_milliseconds = (tv_sec - start_tv_sec) * 1000 +
2497 (tv_usec - start_tv_usec) / 1000;
2499 if (!_dbus_connection_get_is_connected_unlocked (connection))
2501 DBusMessage *error_msg;
2503 error_msg = _dbus_generate_local_error_message (client_serial,
2504 DBUS_ERROR_DISCONNECTED,
2505 "Connection was disconnected before a reply was received");
2507 /* on OOM error_msg is set to NULL */
2508 complete_pending_call_and_unlock (connection, pending, error_msg);
2509 dbus_pending_call_unref (pending);
2512 else if (connection->disconnect_message_link == NULL)
2513 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): disconnected\n");
2514 else if (timeout == NULL)
2516 if (status == DBUS_DISPATCH_NEED_MEMORY)
2518 /* Try sleeping a bit, as we aren't sure we need to block for reading,
2519 * we may already have a reply in the buffer and just can't process
2522 _dbus_verbose ("dbus_connection_send_with_reply_and_block() waiting for more memory\n");
2524 _dbus_memory_pause_based_on_timeout (timeout_milliseconds - elapsed_milliseconds);
2528 /* block again, we don't have the reply buffered yet. */
2529 _dbus_connection_do_iteration_unlocked (connection,
2531 DBUS_ITERATION_DO_READING |
2532 DBUS_ITERATION_BLOCK,
2533 timeout_milliseconds - elapsed_milliseconds);
2536 goto recheck_status;
2538 else if (tv_sec < start_tv_sec)
2539 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): clock set backward\n");
2540 else if (elapsed_milliseconds < timeout_milliseconds)
2542 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): %d milliseconds remain\n", timeout_milliseconds - elapsed_milliseconds);
2544 if (status == DBUS_DISPATCH_NEED_MEMORY)
2546 /* Try sleeping a bit, as we aren't sure we need to block for reading,
2547 * we may already have a reply in the buffer and just can't process
2550 _dbus_verbose ("dbus_connection_send_with_reply_and_block() waiting for more memory\n");
2552 _dbus_memory_pause_based_on_timeout (timeout_milliseconds - elapsed_milliseconds);
2556 /* block again, we don't have the reply buffered yet. */
2557 _dbus_connection_do_iteration_unlocked (connection,
2559 DBUS_ITERATION_DO_READING |
2560 DBUS_ITERATION_BLOCK,
2561 timeout_milliseconds - elapsed_milliseconds);
2564 goto recheck_status;
2567 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): Waited %d milliseconds and got no reply\n",
2568 elapsed_milliseconds);
2570 _dbus_assert (!_dbus_pending_call_get_completed_unlocked (pending));
2572 /* unlock and call user code */
2573 complete_pending_call_and_unlock (connection, pending, NULL);
2575 /* update user code on dispatch status */
2576 CONNECTION_LOCK (connection);
2577 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2578 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2579 dbus_pending_call_unref (pending);
2583 * Return how many file descriptors are pending in the loader
2585 * @param connection the connection
2588 _dbus_connection_get_pending_fds_count (DBusConnection *connection)
2590 return _dbus_transport_get_pending_fds_count (connection->transport);
2594 * Register a function to be called whenever the number of pending file
2595 * descriptors in the loader change.
2597 * @param connection the connection
2598 * @param callback the callback
2601 _dbus_connection_set_pending_fds_function (DBusConnection *connection,
2602 DBusPendingFdsChangeFunction callback,
2605 _dbus_transport_set_pending_fds_function (connection->transport,
2612 * @addtogroup DBusConnection
2618 * Gets a connection to a remote address. If a connection to the given
2619 * address already exists, returns the existing connection with its
2620 * reference count incremented. Otherwise, returns a new connection
2621 * and saves the new connection for possible re-use if a future call
2622 * to dbus_connection_open() asks to connect to the same server.
2624 * Use dbus_connection_open_private() to get a dedicated connection
2625 * not shared with other callers of dbus_connection_open().
2627 * If the open fails, the function returns #NULL, and provides a
2628 * reason for the failure in the error parameter. Pass #NULL for the
2629 * error parameter if you aren't interested in the reason for
2632 * Because this connection is shared, no user of the connection
2633 * may call dbus_connection_close(). However, when you are done with the
2634 * connection you should call dbus_connection_unref().
2636 * @note Prefer dbus_connection_open() to dbus_connection_open_private()
2637 * unless you have good reason; connections are expensive enough
2638 * that it's wasteful to create lots of connections to the same
2641 * @param address the address.
2642 * @param error address where an error can be returned.
2643 * @returns new connection, or #NULL on failure.
2646 dbus_connection_open (const char *address,
2649 DBusConnection *connection;
2651 _dbus_return_val_if_fail (address != NULL, NULL);
2652 _dbus_return_val_if_error_is_set (error, NULL);
2654 connection = _dbus_connection_open_internal (address,
2662 * Opens a new, dedicated connection to a remote address. Unlike
2663 * dbus_connection_open(), always creates a new connection.
2664 * This connection will not be saved or recycled by libdbus.
2666 * If the open fails, the function returns #NULL, and provides a
2667 * reason for the failure in the error parameter. Pass #NULL for the
2668 * error parameter if you aren't interested in the reason for
2671 * When you are done with this connection, you must
2672 * dbus_connection_close() to disconnect it,
2673 * and dbus_connection_unref() to free the connection object.
2675 * (The dbus_connection_close() can be skipped if the
2676 * connection is already known to be disconnected, for example
2677 * if you are inside a handler for the Disconnected signal.)
2679 * @note Prefer dbus_connection_open() to dbus_connection_open_private()
2680 * unless you have good reason; connections are expensive enough
2681 * that it's wasteful to create lots of connections to the same
2684 * @param address the address.
2685 * @param error address where an error can be returned.
2686 * @returns new connection, or #NULL on failure.
2689 dbus_connection_open_private (const char *address,
2692 DBusConnection *connection;
2694 _dbus_return_val_if_fail (address != NULL, NULL);
2695 _dbus_return_val_if_error_is_set (error, NULL);
2697 connection = _dbus_connection_open_internal (address,
2705 * Increments the reference count of a DBusConnection.
2707 * @param connection the connection.
2708 * @returns the connection.
2711 dbus_connection_ref (DBusConnection *connection)
2713 dbus_int32_t old_refcount;
2715 _dbus_return_val_if_fail (connection != NULL, NULL);
2716 _dbus_return_val_if_fail (connection->generation == _dbus_current_generation, NULL);
2717 old_refcount = _dbus_atomic_inc (&connection->refcount);
2718 _dbus_connection_trace_ref (connection, old_refcount, old_refcount + 1,
2725 free_outgoing_message (void *element,
2728 DBusMessage *message = element;
2729 DBusConnection *connection = data;
2731 _dbus_message_remove_counter (message, connection->outgoing_counter);
2732 dbus_message_unref (message);
2735 /* This is run without the mutex held, but after the last reference
2736 * to the connection has been dropped we should have no thread-related
2740 _dbus_connection_last_unref (DBusConnection *connection)
2744 _dbus_verbose ("Finalizing connection %p\n", connection);
2746 _dbus_assert (_dbus_atomic_get (&connection->refcount) == 0);
2748 /* You have to disconnect the connection before unref:ing it. Otherwise
2749 * you won't get the disconnected message.
2751 _dbus_assert (!_dbus_transport_get_is_connected (connection->transport));
2752 _dbus_assert (connection->server_guid == NULL);
2754 /* ---- We're going to call various application callbacks here, hope it doesn't break anything... */
2755 _dbus_object_tree_free_all_unlocked (connection->objects);
2757 dbus_connection_set_dispatch_status_function (connection, NULL, NULL, NULL);
2758 dbus_connection_set_wakeup_main_function (connection, NULL, NULL, NULL);
2759 dbus_connection_set_unix_user_function (connection, NULL, NULL, NULL);
2760 dbus_connection_set_windows_user_function (connection, NULL, NULL, NULL);
2762 _dbus_watch_list_free (connection->watches);
2763 connection->watches = NULL;
2765 _dbus_timeout_list_free (connection->timeouts);
2766 connection->timeouts = NULL;
2768 _dbus_data_slot_list_free (&connection->slot_list);
2770 link = _dbus_list_get_first_link (&connection->filter_list);
2771 while (link != NULL)
2773 DBusMessageFilter *filter = link->data;
2774 DBusList *next = _dbus_list_get_next_link (&connection->filter_list, link);
2776 filter->function = NULL;
2777 _dbus_message_filter_unref (filter); /* calls app callback */
2782 _dbus_list_clear (&connection->filter_list);
2784 /* ---- Done with stuff that invokes application callbacks */
2786 _dbus_object_tree_unref (connection->objects);
2788 _dbus_hash_table_unref (connection->pending_replies);
2789 connection->pending_replies = NULL;
2791 _dbus_list_clear (&connection->filter_list);
2793 _dbus_list_foreach (&connection->outgoing_messages,
2794 free_outgoing_message,
2796 _dbus_list_clear (&connection->outgoing_messages);
2798 _dbus_list_foreach (&connection->incoming_messages,
2799 (DBusForeachFunction) dbus_message_unref,
2801 _dbus_list_clear (&connection->incoming_messages);
2803 _dbus_counter_unref (connection->outgoing_counter);
2805 _dbus_transport_unref (connection->transport);
2807 if (connection->disconnect_message_link)
2809 DBusMessage *message = connection->disconnect_message_link->data;
2810 dbus_message_unref (message);
2811 _dbus_list_free_link (connection->disconnect_message_link);
2814 _dbus_condvar_free_at_location (&connection->dispatch_cond);
2815 _dbus_condvar_free_at_location (&connection->io_path_cond);
2817 _dbus_cmutex_free_at_location (&connection->io_path_mutex);
2818 _dbus_cmutex_free_at_location (&connection->dispatch_mutex);
2820 _dbus_rmutex_free_at_location (&connection->slot_mutex);
2822 _dbus_rmutex_free_at_location (&connection->mutex);
2824 #ifdef DBUS_ENABLE_SMACK
2825 if (connection->peer_smack_label)
2826 free (connection->peer_smack_label);
2829 dbus_free (connection);
2833 * Decrements the reference count of a DBusConnection, and finalizes
2834 * it if the count reaches zero.
2836 * Note: it is a bug to drop the last reference to a connection that
2837 * is still connected.
2839 * For shared connections, libdbus will own a reference
2840 * as long as the connection is connected, so you can know that either
2841 * you don't have the last reference, or it's OK to drop the last reference.
2842 * Most connections are shared. dbus_connection_open() and dbus_bus_get()
2843 * return shared connections.
2845 * For private connections, the creator of the connection must arrange for
2846 * dbus_connection_close() to be called prior to dropping the last reference.
2847 * Private connections come from dbus_connection_open_private() or dbus_bus_get_private().
2849 * @param connection the connection.
2852 dbus_connection_unref (DBusConnection *connection)
2854 dbus_int32_t old_refcount;
2856 _dbus_return_if_fail (connection != NULL);
2857 _dbus_return_if_fail (connection->generation == _dbus_current_generation);
2859 old_refcount = _dbus_atomic_dec (&connection->refcount);
2861 _dbus_connection_trace_ref (connection, old_refcount, old_refcount - 1,
2864 if (old_refcount == 1)
2866 #ifndef DBUS_DISABLE_CHECKS
2867 if (_dbus_transport_get_is_connected (connection->transport))
2869 _dbus_warn_check_failed ("The last reference on a connection was dropped without closing the connection. This is a bug in an application. See dbus_connection_unref() documentation for details.\n%s",
2870 connection->shareable ?
2871 "Most likely, the application called unref() too many times and removed a reference belonging to libdbus, since this is a shared connection.\n" :
2872 "Most likely, the application was supposed to call dbus_connection_close(), since this is a private connection.\n");
2876 _dbus_connection_last_unref (connection);
2881 * Note that the transport can disconnect itself (other end drops us)
2882 * and in that case this function never runs. So this function must
2883 * not do anything more than disconnect the transport and update the
2886 * If the transport self-disconnects, then we assume someone will
2887 * dispatch the connection to cause the dispatch status update.
2890 _dbus_connection_close_possibly_shared_and_unlock (DBusConnection *connection)
2892 DBusDispatchStatus status;
2894 HAVE_LOCK_CHECK (connection);
2896 _dbus_verbose ("Disconnecting %p\n", connection);
2898 /* We need to ref because update_dispatch_status_and_unlock will unref
2899 * the connection if it was shared and libdbus was the only remaining
2902 _dbus_connection_ref_unlocked (connection);
2904 _dbus_transport_disconnect (connection->transport);
2906 /* This has the side effect of queuing the disconnect message link
2907 * (unless we don't have enough memory, possibly, so don't assert it).
2908 * After the disconnect message link is queued, dbus_bus_get/dbus_connection_open
2909 * should never again return the newly-disconnected connection.
2911 * However, we only unref the shared connection and exit_on_disconnect when
2912 * the disconnect message reaches the head of the message queue,
2913 * NOT when it's first queued.
2915 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2917 /* This calls out to user code */
2918 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2920 /* Could also call out to user code */
2921 dbus_connection_unref (connection);
2925 * Closes a private connection, so no further data can be sent or received.
2926 * This disconnects the transport (such as a socket) underlying the
2929 * Attempts to send messages after closing a connection are safe, but will result in
2930 * error replies generated locally in libdbus.
2932 * This function does not affect the connection's reference count. It's
2933 * safe to close a connection more than once; all calls after the
2934 * first do nothing. It's impossible to "reopen" a connection, a
2935 * new connection must be created. This function may result in a call
2936 * to the DBusDispatchStatusFunction set with
2937 * dbus_connection_set_dispatch_status_function(), as the disconnect
2938 * message it generates needs to be dispatched.
2940 * If a connection is dropped by the remote application, it will
2943 * You must close a connection prior to releasing the last reference to
2944 * the connection. If you dbus_connection_unref() for the last time
2945 * without closing the connection, the results are undefined; it
2946 * is a bug in your program and libdbus will try to print a warning.
2948 * You may not close a shared connection. Connections created with
2949 * dbus_connection_open() or dbus_bus_get() are shared.
2950 * These connections are owned by libdbus, and applications should
2951 * only unref them, never close them. Applications can know it is
2952 * safe to unref these connections because libdbus will be holding a
2953 * reference as long as the connection is open. Thus, either the
2954 * connection is closed and it is OK to drop the last reference,
2955 * or the connection is open and the app knows it does not have the
2958 * Connections created with dbus_connection_open_private() or
2959 * dbus_bus_get_private() are not kept track of or referenced by
2960 * libdbus. The creator of these connections is responsible for
2961 * calling dbus_connection_close() prior to releasing the last
2962 * reference, if the connection is not already disconnected.
2964 * @param connection the private (unshared) connection to close
2967 dbus_connection_close (DBusConnection *connection)
2969 _dbus_return_if_fail (connection != NULL);
2970 _dbus_return_if_fail (connection->generation == _dbus_current_generation);
2972 CONNECTION_LOCK (connection);
2974 #ifndef DBUS_DISABLE_CHECKS
2975 if (connection->shareable)
2977 CONNECTION_UNLOCK (connection);
2979 _dbus_warn_check_failed ("Applications must not close shared connections - see dbus_connection_close() docs. This is a bug in the application.\n");
2984 _dbus_connection_close_possibly_shared_and_unlock (connection);
2988 _dbus_connection_get_is_connected_unlocked (DBusConnection *connection)
2990 HAVE_LOCK_CHECK (connection);
2991 return _dbus_transport_get_is_connected (connection->transport);
2995 * Gets whether the connection is currently open. A connection may
2996 * become disconnected when the remote application closes its end, or
2997 * exits; a connection may also be disconnected with
2998 * dbus_connection_close().
3000 * There are not separate states for "closed" and "disconnected," the two
3001 * terms are synonymous. This function should really be called
3002 * get_is_open() but for historical reasons is not.
3004 * @param connection the connection.
3005 * @returns #TRUE if the connection is still alive.
3008 dbus_connection_get_is_connected (DBusConnection *connection)
3012 _dbus_return_val_if_fail (connection != NULL, FALSE);
3014 CONNECTION_LOCK (connection);
3015 res = _dbus_connection_get_is_connected_unlocked (connection);
3016 CONNECTION_UNLOCK (connection);
3022 * Gets whether the connection was authenticated. (Note that
3023 * if the connection was authenticated then disconnected,
3024 * this function still returns #TRUE)
3026 * @param connection the connection
3027 * @returns #TRUE if the connection was ever authenticated
3030 dbus_connection_get_is_authenticated (DBusConnection *connection)
3034 _dbus_return_val_if_fail (connection != NULL, FALSE);
3036 CONNECTION_LOCK (connection);
3037 res = _dbus_transport_try_to_authenticate (connection->transport);
3038 CONNECTION_UNLOCK (connection);
3044 * Gets whether the connection is not authenticated as a specific
3045 * user. If the connection is not authenticated, this function
3046 * returns #TRUE, and if it is authenticated but as an anonymous user,
3047 * it returns #TRUE. If it is authenticated as a specific user, then
3048 * this returns #FALSE. (Note that if the connection was authenticated
3049 * as anonymous then disconnected, this function still returns #TRUE.)
3051 * If the connection is not anonymous, you can use
3052 * dbus_connection_get_unix_user() and
3053 * dbus_connection_get_windows_user() to see who it's authorized as.
3055 * If you want to prevent non-anonymous authorization, use
3056 * dbus_server_set_auth_mechanisms() to remove the mechanisms that
3057 * allow proving user identity (i.e. only allow the ANONYMOUS
3060 * @param connection the connection
3061 * @returns #TRUE if not authenticated or authenticated as anonymous
3064 dbus_connection_get_is_anonymous (DBusConnection *connection)
3068 _dbus_return_val_if_fail (connection != NULL, FALSE);
3070 CONNECTION_LOCK (connection);
3071 res = _dbus_transport_get_is_anonymous (connection->transport);
3072 CONNECTION_UNLOCK (connection);
3078 * Gets the ID of the server address we are authenticated to, if this
3079 * connection is on the client side. If the connection is on the
3080 * server side, this will always return #NULL - use dbus_server_get_id()
3081 * to get the ID of your own server, if you are the server side.
3083 * If a client-side connection is not authenticated yet, the ID may be
3084 * available if it was included in the server address, but may not be
3085 * available. The only way to be sure the server ID is available
3086 * is to wait for authentication to complete.
3088 * In general, each mode of connecting to a given server will have
3089 * its own ID. So for example, if the session bus daemon is listening
3090 * on UNIX domain sockets and on TCP, then each of those modalities
3091 * will have its own server ID.
3093 * If you want an ID that identifies an entire session bus, look at
3094 * dbus_bus_get_id() instead (which is just a convenience wrapper
3095 * around the org.freedesktop.DBus.GetId method invoked on the bus).
3097 * You can also get a machine ID; see dbus_get_local_machine_id() to
3098 * get the machine you are on. There isn't a convenience wrapper, but
3099 * you can invoke org.freedesktop.DBus.Peer.GetMachineId on any peer
3100 * to get the machine ID on the other end.
3102 * The D-Bus specification describes the server ID and other IDs in a
3105 * @param connection the connection
3106 * @returns the server ID or #NULL if no memory or the connection is server-side
3109 dbus_connection_get_server_id (DBusConnection *connection)
3113 _dbus_return_val_if_fail (connection != NULL, NULL);
3115 CONNECTION_LOCK (connection);
3116 id = _dbus_strdup (_dbus_transport_get_server_id (connection->transport));
3117 CONNECTION_UNLOCK (connection);
3123 * Tests whether a certain type can be send via the connection. This
3124 * will always return TRUE for all types, with the exception of
3125 * DBUS_TYPE_UNIX_FD. The function will return TRUE for
3126 * DBUS_TYPE_UNIX_FD only on systems that know Unix file descriptors
3127 * and can send them via the chosen transport and when the remote side
3130 * This function can be used to do runtime checking for types that
3131 * might be unknown to the specific D-Bus client implementation
3132 * version, i.e. it will return FALSE for all types this
3133 * implementation does not know, including invalid or reserved types.
3135 * @param connection the connection
3136 * @param type the type to check
3137 * @returns TRUE if the type may be send via the connection
3140 dbus_connection_can_send_type(DBusConnection *connection,
3143 _dbus_return_val_if_fail (connection != NULL, FALSE);
3145 if (!dbus_type_is_valid (type))
3148 if (type != DBUS_TYPE_UNIX_FD)
3151 #ifdef HAVE_UNIX_FD_PASSING
3155 CONNECTION_LOCK(connection);
3156 b = _dbus_transport_can_pass_unix_fd(connection->transport);
3157 CONNECTION_UNLOCK(connection);
3167 * Set whether _exit() should be called when the connection receives a
3168 * disconnect signal. The call to _exit() comes after any handlers for
3169 * the disconnect signal run; handlers can cancel the exit by calling
3172 * By default, exit_on_disconnect is #FALSE; but for message bus
3173 * connections returned from dbus_bus_get() it will be toggled on
3176 * @param connection the connection
3177 * @param exit_on_disconnect #TRUE if _exit() should be called after a disconnect signal
3180 dbus_connection_set_exit_on_disconnect (DBusConnection *connection,
3181 dbus_bool_t exit_on_disconnect)
3183 _dbus_return_if_fail (connection != NULL);
3185 CONNECTION_LOCK (connection);
3186 connection->exit_on_disconnect = exit_on_disconnect != FALSE;
3187 CONNECTION_UNLOCK (connection);
3191 * Preallocates resources needed to send a message, allowing the message
3192 * to be sent without the possibility of memory allocation failure.
3193 * Allows apps to create a future guarantee that they can send
3194 * a message regardless of memory shortages.
3196 * @param connection the connection we're preallocating for.
3197 * @returns the preallocated resources, or #NULL
3199 DBusPreallocatedSend*
3200 dbus_connection_preallocate_send (DBusConnection *connection)
3202 DBusPreallocatedSend *preallocated;
3204 _dbus_return_val_if_fail (connection != NULL, NULL);
3206 CONNECTION_LOCK (connection);
3209 _dbus_connection_preallocate_send_unlocked (connection);
3211 CONNECTION_UNLOCK (connection);
3213 return preallocated;
3217 * Frees preallocated message-sending resources from
3218 * dbus_connection_preallocate_send(). Should only
3219 * be called if the preallocated resources are not used
3220 * to send a message.
3222 * @param connection the connection
3223 * @param preallocated the resources
3226 dbus_connection_free_preallocated_send (DBusConnection *connection,
3227 DBusPreallocatedSend *preallocated)
3229 _dbus_return_if_fail (connection != NULL);
3230 _dbus_return_if_fail (preallocated != NULL);
3231 _dbus_return_if_fail (connection == preallocated->connection);
3233 _dbus_list_free_link (preallocated->queue_link);
3234 _dbus_counter_unref (preallocated->counter_link->data);
3235 _dbus_list_free_link (preallocated->counter_link);
3236 dbus_free (preallocated);
3240 * Sends a message using preallocated resources. This function cannot fail.
3241 * It works identically to dbus_connection_send() in other respects.
3242 * Preallocated resources comes from dbus_connection_preallocate_send().
3243 * This function "consumes" the preallocated resources, they need not
3244 * be freed separately.
3246 * @param connection the connection
3247 * @param preallocated the preallocated resources
3248 * @param message the message to send
3249 * @param client_serial return location for client serial assigned to the message
3252 dbus_connection_send_preallocated (DBusConnection *connection,
3253 DBusPreallocatedSend *preallocated,
3254 DBusMessage *message,
3255 dbus_uint32_t *client_serial)
3257 _dbus_return_if_fail (connection != NULL);
3258 _dbus_return_if_fail (preallocated != NULL);
3259 _dbus_return_if_fail (message != NULL);
3260 _dbus_return_if_fail (preallocated->connection == connection);
3261 _dbus_return_if_fail (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_METHOD_CALL ||
3262 dbus_message_get_member (message) != NULL);
3263 _dbus_return_if_fail (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL ||
3264 (dbus_message_get_interface (message) != NULL &&
3265 dbus_message_get_member (message) != NULL));
3267 CONNECTION_LOCK (connection);
3269 #ifdef HAVE_UNIX_FD_PASSING
3271 if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3272 message->n_unix_fds > 0)
3274 /* Refuse to send fds on a connection that cannot handle
3275 them. Unfortunately we cannot return a proper error here, so
3276 the best we can is just return. */
3277 CONNECTION_UNLOCK (connection);
3283 _dbus_connection_send_preallocated_and_unlock (connection,
3285 message, client_serial);
3289 _dbus_connection_send_unlocked_no_update (DBusConnection *connection,
3290 DBusMessage *message,
3291 dbus_uint32_t *client_serial)
3293 DBusPreallocatedSend *preallocated;
3295 _dbus_assert (connection != NULL);
3296 _dbus_assert (message != NULL);
3298 preallocated = _dbus_connection_preallocate_send_unlocked (connection);
3299 if (preallocated == NULL)
3302 _dbus_connection_send_preallocated_unlocked_no_update (connection,
3310 * Adds a message to the outgoing message queue. Does not block to
3311 * write the message to the network; that happens asynchronously. To
3312 * force the message to be written, call dbus_connection_flush() however
3313 * it is not necessary to call dbus_connection_flush() by hand; the
3314 * message will be sent the next time the main loop is run.
3315 * dbus_connection_flush() should only be used, for example, if
3316 * the application was expected to exit before running the main loop.
3318 * Because this only queues the message, the only reason it can
3319 * fail is lack of memory. Even if the connection is disconnected,
3320 * no error will be returned. If the function fails due to lack of memory,
3321 * it returns #FALSE. The function will never fail for other reasons; even
3322 * if the connection is disconnected, you can queue an outgoing message,
3323 * though obviously it won't be sent.
3325 * The message serial is used by the remote application to send a
3326 * reply; see dbus_message_get_serial() or the D-Bus specification.
3328 * dbus_message_unref() can be called as soon as this method returns
3329 * as the message queue will hold its own ref until the message is sent.
3331 * @param connection the connection.
3332 * @param message the message to write.
3333 * @param serial return location for message serial, or #NULL if you don't care
3334 * @returns #TRUE on success.
3337 dbus_connection_send (DBusConnection *connection,
3338 DBusMessage *message,
3339 dbus_uint32_t *serial)
3341 _dbus_return_val_if_fail (connection != NULL, FALSE);
3342 _dbus_return_val_if_fail (message != NULL, FALSE);
3344 CONNECTION_LOCK (connection);
3346 #ifdef HAVE_UNIX_FD_PASSING
3348 if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3349 message->n_unix_fds > 0)
3351 /* Refuse to send fds on a connection that cannot handle
3352 them. Unfortunately we cannot return a proper error here, so
3353 the best we can is just return. */
3354 CONNECTION_UNLOCK (connection);
3360 return _dbus_connection_send_and_unlock (connection,
3366 reply_handler_timeout (void *data)
3368 DBusConnection *connection;
3369 DBusDispatchStatus status;
3370 DBusPendingCall *pending = data;
3372 connection = _dbus_pending_call_get_connection_and_lock (pending);
3373 _dbus_connection_ref_unlocked (connection);
3375 _dbus_pending_call_queue_timeout_error_unlocked (pending,
3377 _dbus_connection_remove_timeout_unlocked (connection,
3378 _dbus_pending_call_get_timeout_unlocked (pending));
3379 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
3381 _dbus_verbose ("middle\n");
3382 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3384 /* Unlocks, and calls out to user code */
3385 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3386 dbus_connection_unref (connection);
3392 * Queues a message to send, as with dbus_connection_send(),
3393 * but also returns a #DBusPendingCall used to receive a reply to the
3394 * message. If no reply is received in the given timeout_milliseconds,
3395 * this function expires the pending reply and generates a synthetic
3396 * error reply (generated in-process, not by the remote application)
3397 * indicating that a timeout occurred.
3399 * A #DBusPendingCall will see a reply message before any filters or
3400 * registered object path handlers. See dbus_connection_dispatch() for
3401 * details on when handlers are run.
3403 * A #DBusPendingCall will always see exactly one reply message,
3404 * unless it's cancelled with dbus_pending_call_cancel().
3406 * If #NULL is passed for the pending_return, the #DBusPendingCall
3407 * will still be generated internally, and used to track
3408 * the message reply timeout. This means a timeout error will
3409 * occur if no reply arrives, unlike with dbus_connection_send().
3411 * If -1 is passed for the timeout, a sane default timeout is used. -1
3412 * is typically the best value for the timeout for this reason, unless
3413 * you want a very short or very long timeout. If #DBUS_TIMEOUT_INFINITE is
3414 * passed for the timeout, no timeout will be set and the call will block
3417 * @warning if the connection is disconnected or you try to send Unix
3418 * file descriptors on a connection that does not support them, the
3419 * #DBusPendingCall will be set to #NULL, so be careful with this.
3421 * @param connection the connection
3422 * @param message the message to send
3423 * @param pending_return return location for a #DBusPendingCall
3424 * object, or #NULL if connection is disconnected or when you try to
3425 * send Unix file descriptors on a connection that does not support
3427 * @param timeout_milliseconds timeout in milliseconds, -1 (or
3428 * #DBUS_TIMEOUT_USE_DEFAULT) for default or #DBUS_TIMEOUT_INFINITE for no
3430 * @returns #FALSE if no memory, #TRUE otherwise.
3434 dbus_connection_send_with_reply (DBusConnection *connection,
3435 DBusMessage *message,
3436 DBusPendingCall **pending_return,
3437 int timeout_milliseconds)
3439 DBusPendingCall *pending;
3440 dbus_int32_t serial = -1;
3441 DBusDispatchStatus status;
3443 _dbus_return_val_if_fail (connection != NULL, FALSE);
3444 _dbus_return_val_if_fail (message != NULL, FALSE);
3445 _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
3448 *pending_return = NULL;
3450 CONNECTION_LOCK (connection);
3452 #ifdef HAVE_UNIX_FD_PASSING
3454 if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3455 message->n_unix_fds > 0)
3457 /* Refuse to send fds on a connection that cannot handle
3458 them. Unfortunately we cannot return a proper error here, so
3459 the best we can do is return TRUE but leave *pending_return
3461 CONNECTION_UNLOCK (connection);
3467 if (!_dbus_connection_get_is_connected_unlocked (connection))
3469 CONNECTION_UNLOCK (connection);
3474 pending = _dbus_pending_call_new_unlocked (connection,
3475 timeout_milliseconds,
3476 reply_handler_timeout);
3478 if (pending == NULL)
3480 CONNECTION_UNLOCK (connection);
3484 /* Assign a serial to the message */
3485 serial = dbus_message_get_serial (message);
3488 serial = _dbus_connection_get_next_client_serial (connection);
3489 dbus_message_set_serial (message, serial);
3492 if (!_dbus_pending_call_set_timeout_error_unlocked (pending, message, serial))
3495 /* Insert the serial in the pending replies hash;
3496 * hash takes a refcount on DBusPendingCall.
3497 * Also, add the timeout.
3499 if (!_dbus_connection_attach_pending_call_unlocked (connection,
3503 if (!_dbus_connection_send_unlocked_no_update (connection, message, NULL))
3505 _dbus_connection_detach_pending_call_and_unlock (connection,
3507 goto error_unlocked;
3511 *pending_return = pending; /* hand off refcount */
3514 _dbus_connection_detach_pending_call_unlocked (connection, pending);
3515 /* we still have a ref to the pending call in this case, we unref
3516 * after unlocking, below
3520 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3522 /* this calls out to user code */
3523 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3525 if (pending_return == NULL)
3526 dbus_pending_call_unref (pending);
3531 CONNECTION_UNLOCK (connection);
3533 dbus_pending_call_unref (pending);
3538 * Sends a message and blocks a certain time period while waiting for
3539 * a reply. This function does not reenter the main loop,
3540 * i.e. messages other than the reply are queued up but not
3541 * processed. This function is used to invoke method calls on a
3544 * If a normal reply is received, it is returned, and removed from the
3545 * incoming message queue. If it is not received, #NULL is returned
3546 * and the error is set to #DBUS_ERROR_NO_REPLY. If an error reply is
3547 * received, it is converted to a #DBusError and returned as an error,
3548 * then the reply message is deleted and #NULL is returned. If
3549 * something else goes wrong, result is set to whatever is
3550 * appropriate, such as #DBUS_ERROR_NO_MEMORY or
3551 * #DBUS_ERROR_DISCONNECTED.
3553 * @warning While this function blocks the calling thread will not be
3554 * processing the incoming message queue. This means you can end up
3555 * deadlocked if the application you're talking to needs you to reply
3556 * to a method. To solve this, either avoid the situation, block in a
3557 * separate thread from the main connection-dispatching thread, or use
3558 * dbus_pending_call_set_notify() to avoid blocking.
3560 * @param connection the connection
3561 * @param message the message to send
3562 * @param timeout_milliseconds timeout in milliseconds, -1 (or
3563 * #DBUS_TIMEOUT_USE_DEFAULT) for default or #DBUS_TIMEOUT_INFINITE for no
3565 * @param error return location for error message
3566 * @returns the message that is the reply or #NULL with an error code if the
3570 dbus_connection_send_with_reply_and_block (DBusConnection *connection,
3571 DBusMessage *message,
3572 int timeout_milliseconds,
3576 DBusPendingCall *pending;
3578 _dbus_return_val_if_fail (connection != NULL, NULL);
3579 _dbus_return_val_if_fail (message != NULL, NULL);
3580 _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, NULL);
3581 _dbus_return_val_if_error_is_set (error, NULL);
3583 if (_dbus_transport_can_send_sync_call (connection->transport))
3585 dbus_int32_t serial;
3588 serial = dbus_message_get_serial (message);
3591 serial = _dbus_connection_get_next_client_serial (connection);
3592 dbus_message_set_serial (message, serial);
3595 reply = _dbus_transport_send_sync_call (connection->transport, message);
3599 #ifdef HAVE_UNIX_FD_PASSING
3601 CONNECTION_LOCK (connection);
3602 if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3603 message->n_unix_fds > 0)
3605 CONNECTION_UNLOCK (connection);
3606 dbus_set_error(error, DBUS_ERROR_FAILED, "Cannot send file descriptors on this connection.");
3609 CONNECTION_UNLOCK (connection);
3613 if (!dbus_connection_send_with_reply (connection, message,
3614 &pending, timeout_milliseconds))
3616 _DBUS_SET_OOM (error);
3620 if (pending == NULL)
3622 dbus_set_error (error, DBUS_ERROR_DISCONNECTED, "Connection is closed");
3626 dbus_pending_call_block (pending);
3628 reply = dbus_pending_call_steal_reply (pending);
3629 dbus_pending_call_unref (pending);
3631 /* call_complete_and_unlock() called from pending_call_block() should
3632 * always fill this in.
3636 _dbus_assert (reply != NULL);
3638 if (dbus_set_error_from_message (error, reply))
3640 dbus_message_unref (reply);
3648 * Blocks until the outgoing message queue is empty.
3649 * Assumes connection lock already held.
3651 * If you call this, you MUST call update_dispatch_status afterword...
3653 * @param connection the connection.
3655 static DBusDispatchStatus
3656 _dbus_connection_flush_unlocked (DBusConnection *connection)
3658 /* We have to specify DBUS_ITERATION_DO_READING here because
3659 * otherwise we could have two apps deadlock if they are both doing
3660 * a flush(), and the kernel buffers fill up. This could change the
3663 DBusDispatchStatus status;
3665 HAVE_LOCK_CHECK (connection);
3667 while (connection->n_outgoing > 0 &&
3668 _dbus_connection_get_is_connected_unlocked (connection))
3670 _dbus_verbose ("doing iteration in\n");
3671 HAVE_LOCK_CHECK (connection);
3672 _dbus_connection_do_iteration_unlocked (connection,
3674 DBUS_ITERATION_DO_READING |
3675 DBUS_ITERATION_DO_WRITING |
3676 DBUS_ITERATION_BLOCK,
3680 HAVE_LOCK_CHECK (connection);
3681 _dbus_verbose ("middle\n");
3682 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3684 HAVE_LOCK_CHECK (connection);
3689 * Blocks until the outgoing message queue is empty.
3691 * @param connection the connection.
3694 dbus_connection_flush (DBusConnection *connection)
3696 /* We have to specify DBUS_ITERATION_DO_READING here because
3697 * otherwise we could have two apps deadlock if they are both doing
3698 * a flush(), and the kernel buffers fill up. This could change the
3701 DBusDispatchStatus status;
3703 _dbus_return_if_fail (connection != NULL);
3705 CONNECTION_LOCK (connection);
3707 status = _dbus_connection_flush_unlocked (connection);
3709 HAVE_LOCK_CHECK (connection);
3710 /* Unlocks and calls out to user code */
3711 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3713 _dbus_verbose ("end\n");
3717 * This function implements dbus_connection_read_write_dispatch() and
3718 * dbus_connection_read_write() (they pass a different value for the
3719 * dispatch parameter).
3721 * @param connection the connection
3722 * @param timeout_milliseconds max time to block or -1 for infinite
3723 * @param dispatch dispatch new messages or leave them on the incoming queue
3724 * @returns #TRUE if the disconnect message has not been processed
3727 _dbus_connection_read_write_dispatch (DBusConnection *connection,
3728 int timeout_milliseconds,
3729 dbus_bool_t dispatch)
3731 DBusDispatchStatus dstatus;
3732 dbus_bool_t progress_possible;
3734 /* Need to grab a ref here in case we're a private connection and
3735 * the user drops the last ref in a handler we call; see bug
3736 * https://bugs.freedesktop.org/show_bug.cgi?id=15635
3738 dbus_connection_ref (connection);
3739 dstatus = dbus_connection_get_dispatch_status (connection);
3741 if (dispatch && dstatus == DBUS_DISPATCH_DATA_REMAINS)
3743 _dbus_verbose ("doing dispatch\n");
3744 dbus_connection_dispatch (connection);
3745 CONNECTION_LOCK (connection);
3747 else if (dstatus == DBUS_DISPATCH_NEED_MEMORY)
3749 _dbus_verbose ("pausing for memory\n");
3750 _dbus_memory_pause_based_on_timeout (timeout_milliseconds);
3751 CONNECTION_LOCK (connection);
3755 CONNECTION_LOCK (connection);
3756 if (_dbus_connection_get_is_connected_unlocked (connection))
3758 _dbus_verbose ("doing iteration\n");
3759 _dbus_connection_do_iteration_unlocked (connection,
3761 DBUS_ITERATION_DO_READING |
3762 DBUS_ITERATION_DO_WRITING |
3763 DBUS_ITERATION_BLOCK,
3764 timeout_milliseconds);
3768 HAVE_LOCK_CHECK (connection);
3769 /* If we can dispatch, we can make progress until the Disconnected message
3770 * has been processed; if we can only read/write, we can make progress
3771 * as long as the transport is open.
3774 progress_possible = connection->n_incoming != 0 ||
3775 connection->disconnect_message_link != NULL;
3777 progress_possible = _dbus_connection_get_is_connected_unlocked (connection);
3779 CONNECTION_UNLOCK (connection);
3781 dbus_connection_unref (connection);
3783 return progress_possible; /* TRUE if we can make more progress */
3788 * This function is intended for use with applications that don't want
3789 * to write a main loop and deal with #DBusWatch and #DBusTimeout. An
3790 * example usage would be:
3793 * while (dbus_connection_read_write_dispatch (connection, -1))
3794 * ; // empty loop body
3797 * In this usage you would normally have set up a filter function to look
3798 * at each message as it is dispatched. The loop terminates when the last
3799 * message from the connection (the disconnected signal) is processed.
3801 * If there are messages to dispatch, this function will
3802 * dbus_connection_dispatch() once, and return. If there are no
3803 * messages to dispatch, this function will block until it can read or
3804 * write, then read or write, then return.
3806 * The way to think of this function is that it either makes some sort
3807 * of progress, or it blocks. Note that, while it is blocked on I/O, it
3808 * cannot be interrupted (even by other threads), which makes this function
3809 * unsuitable for applications that do more than just react to received
3812 * The return value indicates whether the disconnect message has been
3813 * processed, NOT whether the connection is connected. This is
3814 * important because even after disconnecting, you want to process any
3815 * messages you received prior to the disconnect.
3817 * @param connection the connection
3818 * @param timeout_milliseconds max time to block or -1 for infinite
3819 * @returns #TRUE if the disconnect message has not been processed
3822 dbus_connection_read_write_dispatch (DBusConnection *connection,
3823 int timeout_milliseconds)
3825 _dbus_return_val_if_fail (connection != NULL, FALSE);
3826 _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
3827 return _dbus_connection_read_write_dispatch(connection, timeout_milliseconds, TRUE);
3831 * This function is intended for use with applications that don't want to
3832 * write a main loop and deal with #DBusWatch and #DBusTimeout. See also
3833 * dbus_connection_read_write_dispatch().
3835 * As long as the connection is open, this function will block until it can
3836 * read or write, then read or write, then return #TRUE.
3838 * If the connection is closed, the function returns #FALSE.
3840 * The return value indicates whether reading or writing is still
3841 * possible, i.e. whether the connection is connected.
3843 * Note that even after disconnection, messages may remain in the
3844 * incoming queue that need to be
3845 * processed. dbus_connection_read_write_dispatch() dispatches
3846 * incoming messages for you; with dbus_connection_read_write() you
3847 * have to arrange to drain the incoming queue yourself.
3849 * @param connection the connection
3850 * @param timeout_milliseconds max time to block or -1 for infinite
3851 * @returns #TRUE if still connected
3854 dbus_connection_read_write (DBusConnection *connection,
3855 int timeout_milliseconds)
3857 _dbus_return_val_if_fail (connection != NULL, FALSE);
3858 _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
3859 return _dbus_connection_read_write_dispatch(connection, timeout_milliseconds, FALSE);
3862 /* We need to call this anytime we pop the head of the queue, and then
3863 * update_dispatch_status_and_unlock needs to be called afterward
3864 * which will "process" the disconnected message and set
3865 * disconnected_message_processed.
3868 check_disconnected_message_arrived_unlocked (DBusConnection *connection,
3869 DBusMessage *head_of_queue)
3871 HAVE_LOCK_CHECK (connection);
3873 /* checking that the link is NULL is an optimization to avoid the is_signal call */
3874 if (connection->disconnect_message_link == NULL &&
3875 dbus_message_is_signal (head_of_queue,
3876 DBUS_INTERFACE_LOCAL,
3879 connection->disconnected_message_arrived = TRUE;
3884 * Returns the first-received message from the incoming message queue,
3885 * leaving it in the queue. If the queue is empty, returns #NULL.
3887 * The caller does not own a reference to the returned message, and
3888 * must either return it using dbus_connection_return_message() or
3889 * keep it after calling dbus_connection_steal_borrowed_message(). No
3890 * one can get at the message while its borrowed, so return it as
3891 * quickly as possible and don't keep a reference to it after
3892 * returning it. If you need to keep the message, make a copy of it.
3894 * dbus_connection_dispatch() will block if called while a borrowed
3895 * message is outstanding; only one piece of code can be playing with
3896 * the incoming queue at a time. This function will block if called
3897 * during a dbus_connection_dispatch().
3899 * @param connection the connection.
3900 * @returns next message in the incoming queue.
3903 dbus_connection_borrow_message (DBusConnection *connection)
3905 DBusDispatchStatus status;
3906 DBusMessage *message;
3908 _dbus_return_val_if_fail (connection != NULL, NULL);
3910 _dbus_verbose ("start\n");
3912 /* this is called for the side effect that it queues
3913 * up any messages from the transport
3915 status = dbus_connection_get_dispatch_status (connection);
3916 if (status != DBUS_DISPATCH_DATA_REMAINS)
3919 CONNECTION_LOCK (connection);
3921 _dbus_connection_acquire_dispatch (connection);
3923 /* While a message is outstanding, the dispatch lock is held */
3924 _dbus_assert (connection->message_borrowed == NULL);
3926 connection->message_borrowed = _dbus_list_get_first (&connection->incoming_messages);
3928 message = connection->message_borrowed;
3930 check_disconnected_message_arrived_unlocked (connection, message);
3932 /* Note that we KEEP the dispatch lock until the message is returned */
3933 if (message == NULL)
3934 _dbus_connection_release_dispatch (connection);
3936 CONNECTION_UNLOCK (connection);
3938 _dbus_message_trace_ref (message, -1, -1, "dbus_connection_borrow_message");
3940 /* We don't update dispatch status until it's returned or stolen */
3946 * Used to return a message after peeking at it using
3947 * dbus_connection_borrow_message(). Only called if
3948 * message from dbus_connection_borrow_message() was non-#NULL.
3950 * @param connection the connection
3951 * @param message the message from dbus_connection_borrow_message()
3954 dbus_connection_return_message (DBusConnection *connection,
3955 DBusMessage *message)
3957 DBusDispatchStatus status;
3959 _dbus_return_if_fail (connection != NULL);
3960 _dbus_return_if_fail (message != NULL);
3961 _dbus_return_if_fail (message == connection->message_borrowed);
3962 _dbus_return_if_fail (connection->dispatch_acquired);
3964 CONNECTION_LOCK (connection);
3966 _dbus_assert (message == connection->message_borrowed);
3968 connection->message_borrowed = NULL;
3970 _dbus_connection_release_dispatch (connection);
3972 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3973 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3975 _dbus_message_trace_ref (message, -1, -1, "dbus_connection_return_message");
3979 * Used to keep a message after peeking at it using
3980 * dbus_connection_borrow_message(). Before using this function, see
3981 * the caveats/warnings in the documentation for
3982 * dbus_connection_pop_message().
3984 * @param connection the connection
3985 * @param message the message from dbus_connection_borrow_message()
3988 dbus_connection_steal_borrowed_message (DBusConnection *connection,
3989 DBusMessage *message)
3991 DBusMessage *pop_message;
3992 DBusDispatchStatus status;
3994 _dbus_return_if_fail (connection != NULL);
3995 _dbus_return_if_fail (message != NULL);
3996 _dbus_return_if_fail (message == connection->message_borrowed);
3997 _dbus_return_if_fail (connection->dispatch_acquired);
3999 CONNECTION_LOCK (connection);
4001 _dbus_assert (message == connection->message_borrowed);
4003 pop_message = _dbus_list_pop_first (&connection->incoming_messages);
4004 _dbus_assert (message == pop_message);
4005 (void) pop_message; /* unused unless asserting */
4007 connection->n_incoming -= 1;
4009 _dbus_verbose ("Incoming message %p stolen from queue, %d incoming\n",
4010 message, connection->n_incoming);
4012 connection->message_borrowed = NULL;
4014 _dbus_connection_release_dispatch (connection);
4016 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4017 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4018 _dbus_message_trace_ref (message, -1, -1,
4019 "dbus_connection_steal_borrowed_message");
4022 /* See dbus_connection_pop_message, but requires the caller to own
4023 * the lock before calling. May drop the lock while running.
4026 _dbus_connection_pop_message_link_unlocked (DBusConnection *connection)
4028 HAVE_LOCK_CHECK (connection);
4030 _dbus_assert (connection->message_borrowed == NULL);
4032 if (connection->n_incoming > 0)
4036 link = _dbus_list_pop_first_link (&connection->incoming_messages);
4037 connection->n_incoming -= 1;
4039 _dbus_verbose ("Message %p (%s %s %s %s sig:'%s' serial:%u) removed from incoming queue %p, %d incoming\n",
4041 dbus_message_type_to_string (dbus_message_get_type (link->data)),
4042 dbus_message_get_path (link->data) ?
4043 dbus_message_get_path (link->data) :
4045 dbus_message_get_interface (link->data) ?
4046 dbus_message_get_interface (link->data) :
4048 dbus_message_get_member (link->data) ?
4049 dbus_message_get_member (link->data) :
4051 dbus_message_get_signature (link->data),
4052 dbus_message_get_serial (link->data),
4053 connection, connection->n_incoming);
4055 _dbus_message_trace_ref (link->data, -1, -1,
4056 "_dbus_connection_pop_message_link_unlocked");
4058 check_disconnected_message_arrived_unlocked (connection, link->data);
4066 /* See dbus_connection_pop_message, but requires the caller to own
4067 * the lock before calling. May drop the lock while running.
4070 _dbus_connection_pop_message_unlocked (DBusConnection *connection)
4074 HAVE_LOCK_CHECK (connection);
4076 link = _dbus_connection_pop_message_link_unlocked (connection);
4080 DBusMessage *message;
4082 message = link->data;
4084 _dbus_list_free_link (link);
4093 _dbus_connection_putback_message_link_unlocked (DBusConnection *connection,
4094 DBusList *message_link)
4096 HAVE_LOCK_CHECK (connection);
4098 _dbus_assert (message_link != NULL);
4099 /* You can't borrow a message while a link is outstanding */
4100 _dbus_assert (connection->message_borrowed == NULL);
4101 /* We had to have the dispatch lock across the pop/putback */
4102 _dbus_assert (connection->dispatch_acquired);
4104 _dbus_list_prepend_link (&connection->incoming_messages,
4106 connection->n_incoming += 1;
4108 _dbus_verbose ("Message %p (%s %s %s '%s') put back into queue %p, %d incoming\n",
4110 dbus_message_type_to_string (dbus_message_get_type (message_link->data)),
4111 dbus_message_get_interface (message_link->data) ?
4112 dbus_message_get_interface (message_link->data) :
4114 dbus_message_get_member (message_link->data) ?
4115 dbus_message_get_member (message_link->data) :
4117 dbus_message_get_signature (message_link->data),
4118 connection, connection->n_incoming);
4120 _dbus_message_trace_ref (message_link->data, -1, -1,
4121 "_dbus_connection_putback_message_link_unlocked");
4125 _dbus_connection_putback_message (DBusConnection *connection,
4126 DBusMessage *after_message,
4127 DBusMessage *message,
4130 DBusDispatchStatus status;
4131 DBusList *message_link = _dbus_list_alloc_link (message);
4132 DBusList *after_link;
4133 if (message_link == NULL)
4135 _DBUS_SET_OOM (error);
4138 dbus_message_ref (message);
4140 CONNECTION_LOCK (connection);
4141 _dbus_connection_acquire_dispatch (connection);
4142 HAVE_LOCK_CHECK (connection);
4144 after_link = _dbus_list_find_first(&connection->incoming_messages, after_message);
4145 _dbus_list_insert_after_link (&connection->incoming_messages, after_link, message_link);
4146 connection->n_incoming += 1;
4148 _dbus_verbose ("Message %p (%s %s %s '%s') put back into queue %p, %d incoming\n",
4150 dbus_message_type_to_string (dbus_message_get_type (message_link->data)),
4151 dbus_message_get_interface (message_link->data) ?
4152 dbus_message_get_interface (message_link->data) :
4154 dbus_message_get_member (message_link->data) ?
4155 dbus_message_get_member (message_link->data) :
4157 dbus_message_get_signature (message_link->data),
4158 connection, connection->n_incoming);
4160 _dbus_message_trace_ref (message_link->data, -1, -1,
4161 "_dbus_connection_putback_message");
4163 _dbus_connection_release_dispatch (connection);
4165 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4166 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4172 _dbus_connection_remove_message (DBusConnection *connection,
4173 DBusMessage *message)
4175 DBusDispatchStatus status;
4176 dbus_bool_t removed;
4178 CONNECTION_LOCK (connection);
4179 _dbus_connection_acquire_dispatch (connection);
4180 HAVE_LOCK_CHECK (connection);
4182 removed = _dbus_list_remove(&connection->incoming_messages, message);
4186 connection->n_incoming -= 1;
4187 dbus_message_unref(message);
4188 _dbus_verbose ("Message %p removed from incoming queue\n", message);
4191 _dbus_verbose ("Message %p not found in the incoming queue\n", message);
4193 _dbus_connection_release_dispatch (connection);
4195 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4196 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4201 * Returns the first-received message from the incoming message queue,
4202 * removing it from the queue. The caller owns a reference to the
4203 * returned message. If the queue is empty, returns #NULL.
4205 * This function bypasses any message handlers that are registered,
4206 * and so using it is usually wrong. Instead, let the main loop invoke
4207 * dbus_connection_dispatch(). Popping messages manually is only
4208 * useful in very simple programs that don't share a #DBusConnection
4209 * with any libraries or other modules.
4211 * There is a lock that covers all ways of accessing the incoming message
4212 * queue, so dbus_connection_dispatch(), dbus_connection_pop_message(),
4213 * dbus_connection_borrow_message(), etc. will all block while one of the others
4214 * in the group is running.
4216 * @param connection the connection.
4217 * @returns next message in the incoming queue.
4220 dbus_connection_pop_message (DBusConnection *connection)
4222 DBusMessage *message;
4223 DBusDispatchStatus status;
4225 _dbus_verbose ("start\n");
4227 /* this is called for the side effect that it queues
4228 * up any messages from the transport
4230 status = dbus_connection_get_dispatch_status (connection);
4231 if (status != DBUS_DISPATCH_DATA_REMAINS)
4234 CONNECTION_LOCK (connection);
4235 _dbus_connection_acquire_dispatch (connection);
4236 HAVE_LOCK_CHECK (connection);
4238 message = _dbus_connection_pop_message_unlocked (connection);
4240 _dbus_verbose ("Returning popped message %p\n", message);
4242 _dbus_connection_release_dispatch (connection);
4244 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4245 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4251 * Acquire the dispatcher. This is a separate lock so the main
4252 * connection lock can be dropped to call out to application dispatch
4255 * @param connection the connection.
4258 _dbus_connection_acquire_dispatch (DBusConnection *connection)
4260 HAVE_LOCK_CHECK (connection);
4262 _dbus_connection_ref_unlocked (connection);
4263 CONNECTION_UNLOCK (connection);
4265 _dbus_verbose ("locking dispatch_mutex\n");
4266 _dbus_cmutex_lock (connection->dispatch_mutex);
4268 while (connection->dispatch_acquired)
4270 _dbus_verbose ("waiting for dispatch to be acquirable\n");
4271 _dbus_condvar_wait (connection->dispatch_cond,
4272 connection->dispatch_mutex);
4275 _dbus_assert (!connection->dispatch_acquired);
4277 connection->dispatch_acquired = TRUE;
4279 _dbus_verbose ("unlocking dispatch_mutex\n");
4280 _dbus_cmutex_unlock (connection->dispatch_mutex);
4282 CONNECTION_LOCK (connection);
4283 _dbus_connection_unref_unlocked (connection);
4287 * Release the dispatcher when you're done with it. Only call
4288 * after you've acquired the dispatcher. Wakes up at most one
4289 * thread currently waiting to acquire the dispatcher.
4291 * @param connection the connection.
4294 _dbus_connection_release_dispatch (DBusConnection *connection)
4296 HAVE_LOCK_CHECK (connection);
4298 _dbus_verbose ("locking dispatch_mutex\n");
4299 _dbus_cmutex_lock (connection->dispatch_mutex);
4301 _dbus_assert (connection->dispatch_acquired);
4303 connection->dispatch_acquired = FALSE;
4304 _dbus_condvar_wake_one (connection->dispatch_cond);
4306 _dbus_verbose ("unlocking dispatch_mutex\n");
4307 _dbus_cmutex_unlock (connection->dispatch_mutex);
4311 _dbus_connection_failed_pop (DBusConnection *connection,
4312 DBusList *message_link)
4314 _dbus_list_prepend_link (&connection->incoming_messages,
4316 connection->n_incoming += 1;
4319 /* Note this may be called multiple times since we don't track whether we already did it */
4321 notify_disconnected_unlocked (DBusConnection *connection)
4323 HAVE_LOCK_CHECK (connection);
4325 /* Set the weakref in dbus-bus.c to NULL, so nobody will get a disconnected
4326 * connection from dbus_bus_get(). We make the same guarantee for
4327 * dbus_connection_open() but in a different way since we don't want to
4328 * unref right here; we instead check for connectedness before returning
4329 * the connection from the hash.
4331 _dbus_bus_notify_shared_connection_disconnected_unlocked (connection);
4333 /* Dump the outgoing queue, we aren't going to be able to
4334 * send it now, and we'd like accessors like
4335 * dbus_connection_get_outgoing_size() to be accurate.
4337 if (connection->n_outgoing > 0)
4341 _dbus_verbose ("Dropping %d outgoing messages since we're disconnected\n",
4342 connection->n_outgoing);
4344 while ((link = _dbus_list_get_last_link (&connection->outgoing_messages)))
4346 _dbus_connection_message_sent_unlocked (connection, link->data);
4351 /* Note this may be called multiple times since we don't track whether we already did it */
4352 static DBusDispatchStatus
4353 notify_disconnected_and_dispatch_complete_unlocked (DBusConnection *connection)
4355 HAVE_LOCK_CHECK (connection);
4357 if (connection->disconnect_message_link != NULL)
4359 _dbus_verbose ("Sending disconnect message\n");
4361 /* If we have pending calls, queue their timeouts - we want the Disconnected
4362 * to be the last message, after these timeouts.
4364 connection_timeout_and_complete_all_pending_calls_unlocked (connection);
4366 /* We haven't sent the disconnect message already,
4367 * and all real messages have been queued up.
4369 _dbus_connection_queue_synthesized_message_link (connection,
4370 connection->disconnect_message_link);
4371 connection->disconnect_message_link = NULL;
4373 return DBUS_DISPATCH_DATA_REMAINS;
4376 return DBUS_DISPATCH_COMPLETE;
4379 static DBusDispatchStatus
4380 _dbus_connection_get_dispatch_status_unlocked (DBusConnection *connection)
4382 HAVE_LOCK_CHECK (connection);
4383 if (connection->dispatch_disabled && dbus_connection_get_is_connected(connection))
4384 return DBUS_DISPATCH_COMPLETE;
4385 else if (connection->n_incoming > 0)
4386 return DBUS_DISPATCH_DATA_REMAINS;
4387 else if (!_dbus_transport_queue_messages (connection->transport))
4388 return DBUS_DISPATCH_NEED_MEMORY;
4391 DBusDispatchStatus status;
4392 dbus_bool_t is_connected;
4394 status = _dbus_transport_get_dispatch_status (connection->transport);
4395 is_connected = _dbus_transport_get_is_connected (connection->transport);
4397 _dbus_verbose ("dispatch status = %s is_connected = %d\n",
4398 DISPATCH_STATUS_NAME (status), is_connected);
4402 /* It's possible this would be better done by having an explicit
4403 * notification from _dbus_transport_disconnect() that would
4404 * synchronously do this, instead of waiting for the next dispatch
4405 * status check. However, probably not good to change until it causes
4408 notify_disconnected_unlocked (connection);
4410 /* I'm not sure this is needed; the idea is that we want to
4411 * queue the Disconnected only after we've read all the
4412 * messages, but if we're disconnected maybe we are guaranteed
4413 * to have read them all ?
4415 if (status == DBUS_DISPATCH_COMPLETE)
4416 status = notify_disconnected_and_dispatch_complete_unlocked (connection);
4419 if (status != DBUS_DISPATCH_COMPLETE)
4421 else if (connection->n_incoming > 0)
4422 return DBUS_DISPATCH_DATA_REMAINS;
4424 return DBUS_DISPATCH_COMPLETE;
4429 _dbus_connection_update_dispatch_status_and_unlock (DBusConnection *connection,
4430 DBusDispatchStatus new_status)
4432 dbus_bool_t changed;
4433 DBusDispatchStatusFunction function;
4436 HAVE_LOCK_CHECK (connection);
4438 _dbus_connection_ref_unlocked (connection);
4440 changed = new_status != connection->last_dispatch_status;
4442 connection->last_dispatch_status = new_status;
4444 function = connection->dispatch_status_function;
4445 data = connection->dispatch_status_data;
4447 if (connection->disconnected_message_arrived &&
4448 !connection->disconnected_message_processed)
4450 connection->disconnected_message_processed = TRUE;
4452 /* this does an unref, but we have a ref
4453 * so we should not run the finalizer here
4456 connection_forget_shared_unlocked (connection);
4458 if (connection->exit_on_disconnect)
4460 CONNECTION_UNLOCK (connection);
4462 _dbus_verbose ("Exiting on Disconnected signal\n");
4464 _dbus_assert_not_reached ("Call to exit() returned");
4468 /* We drop the lock */
4469 CONNECTION_UNLOCK (connection);
4471 if (changed && function)
4473 _dbus_verbose ("Notifying of change to dispatch status of %p now %d (%s)\n",
4474 connection, new_status,
4475 DISPATCH_STATUS_NAME (new_status));
4476 (* function) (connection, new_status, data);
4479 dbus_connection_unref (connection);
4483 * Gets the current state of the incoming message queue.
4484 * #DBUS_DISPATCH_DATA_REMAINS indicates that the message queue
4485 * may contain messages. #DBUS_DISPATCH_COMPLETE indicates that the
4486 * incoming queue is empty. #DBUS_DISPATCH_NEED_MEMORY indicates that
4487 * there could be data, but we can't know for sure without more
4490 * To process the incoming message queue, use dbus_connection_dispatch()
4491 * or (in rare cases) dbus_connection_pop_message().
4493 * Note, #DBUS_DISPATCH_DATA_REMAINS really means that either we
4494 * have messages in the queue, or we have raw bytes buffered up
4495 * that need to be parsed. When these bytes are parsed, they
4496 * may not add up to an entire message. Thus, it's possible
4497 * to see a status of #DBUS_DISPATCH_DATA_REMAINS but not
4498 * have a message yet.
4500 * In particular this happens on initial connection, because all sorts
4501 * of authentication protocol stuff has to be parsed before the
4502 * first message arrives.
4504 * @param connection the connection.
4505 * @returns current dispatch status
4508 dbus_connection_get_dispatch_status (DBusConnection *connection)
4510 DBusDispatchStatus status;
4512 _dbus_return_val_if_fail (connection != NULL, DBUS_DISPATCH_COMPLETE);
4514 _dbus_verbose ("start\n");
4516 CONNECTION_LOCK (connection);
4518 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4520 CONNECTION_UNLOCK (connection);
4526 * Filter funtion for handling the Peer standard interface.
4528 static DBusHandlerResult
4529 _dbus_connection_peer_filter_unlocked_no_update (DBusConnection *connection,
4530 DBusMessage *message)
4532 dbus_bool_t sent = FALSE;
4533 DBusMessage *ret = NULL;
4534 DBusList *expire_link;
4536 if (connection->route_peer_messages && dbus_message_get_destination (message) != NULL)
4538 /* This means we're letting the bus route this message */
4539 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
4542 if (!dbus_message_has_interface (message, DBUS_INTERFACE_PEER))
4544 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
4547 /* Preallocate a linked-list link, so that if we need to dispose of a
4548 * message, we can attach it to the expired list */
4549 expire_link = _dbus_list_alloc_link (NULL);
4552 return DBUS_HANDLER_RESULT_NEED_MEMORY;
4554 if (dbus_message_is_method_call (message,
4555 DBUS_INTERFACE_PEER,
4558 ret = dbus_message_new_method_return (message);
4562 sent = _dbus_connection_send_unlocked_no_update (connection, ret, NULL);
4564 else if (dbus_message_is_method_call (message,
4565 DBUS_INTERFACE_PEER,
4569 DBusError error = DBUS_ERROR_INIT;
4571 if (!_dbus_string_init (&uuid))
4574 if (_dbus_get_local_machine_uuid_encoded (&uuid, &error))
4576 const char *v_STRING;
4578 ret = dbus_message_new_method_return (message);
4582 _dbus_string_free (&uuid);
4586 v_STRING = _dbus_string_get_const_data (&uuid);
4587 if (dbus_message_append_args (ret,
4588 DBUS_TYPE_STRING, &v_STRING,
4591 sent = _dbus_connection_send_unlocked_no_update (connection, ret, NULL);
4594 else if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
4596 dbus_error_free (&error);
4601 ret = dbus_message_new_error (message, error.name, error.message);
4602 dbus_error_free (&error);
4607 sent = _dbus_connection_send_unlocked_no_update (connection, ret,
4611 _dbus_string_free (&uuid);
4615 /* We need to bounce anything else with this interface, otherwise apps
4616 * could start extending the interface and when we added extensions
4617 * here to DBusConnection we'd break those apps.
4619 ret = dbus_message_new_error (message,
4620 DBUS_ERROR_UNKNOWN_METHOD,
4621 "Unknown method invoked on org.freedesktop.DBus.Peer interface");
4625 sent = _dbus_connection_send_unlocked_no_update (connection, ret, NULL);
4631 _dbus_list_free_link (expire_link);
4635 /* It'll be safe to unref the reply when we unlock */
4636 expire_link->data = ret;
4637 _dbus_list_prepend_link (&connection->expired_messages, expire_link);
4641 return DBUS_HANDLER_RESULT_NEED_MEMORY;
4643 return DBUS_HANDLER_RESULT_HANDLED;
4647 * Processes all builtin filter functions
4649 * If the spec specifies a standard interface
4650 * they should be processed from this method
4652 static DBusHandlerResult
4653 _dbus_connection_run_builtin_filters_unlocked_no_update (DBusConnection *connection,
4654 DBusMessage *message)
4656 /* We just run one filter for now but have the option to run more
4657 if the spec calls for it in the future */
4659 return _dbus_connection_peer_filter_unlocked_no_update (connection, message);
4663 * Processes any incoming data.
4665 * If there's incoming raw data that has not yet been parsed, it is
4666 * parsed, which may or may not result in adding messages to the
4669 * The incoming data buffer is filled when the connection reads from
4670 * its underlying transport (such as a socket). Reading usually
4671 * happens in dbus_watch_handle() or dbus_connection_read_write().
4673 * If there are complete messages in the incoming queue,
4674 * dbus_connection_dispatch() removes one message from the queue and
4675 * processes it. Processing has three steps.
4677 * First, any method replies are passed to #DBusPendingCall or
4678 * dbus_connection_send_with_reply_and_block() in order to
4679 * complete the pending method call.
4681 * Second, any filters registered with dbus_connection_add_filter()
4682 * are run. If any filter returns #DBUS_HANDLER_RESULT_HANDLED
4683 * then processing stops after that filter.
4685 * Third, if the message is a method call it is forwarded to
4686 * any registered object path handlers added with
4687 * dbus_connection_register_object_path() or
4688 * dbus_connection_register_fallback().
4690 * A single call to dbus_connection_dispatch() will process at most
4691 * one message; it will not clear the entire message queue.
4693 * Be careful about calling dbus_connection_dispatch() from inside a
4694 * message handler, i.e. calling dbus_connection_dispatch()
4695 * recursively. If threads have been initialized with a recursive
4696 * mutex function, then this will not deadlock; however, it can
4697 * certainly confuse your application.
4699 * @todo some FIXME in here about handling DBUS_HANDLER_RESULT_NEED_MEMORY
4701 * @param connection the connection
4702 * @returns dispatch status, see dbus_connection_get_dispatch_status()
4705 dbus_connection_dispatch (DBusConnection *connection)
4707 DBusMessage *message;
4708 DBusList *link, *filter_list_copy, *message_link;
4709 DBusHandlerResult result;
4710 DBusPendingCall *pending;
4711 dbus_int32_t reply_serial;
4712 DBusDispatchStatus status;
4713 dbus_bool_t found_object;
4715 _dbus_return_val_if_fail (connection != NULL, DBUS_DISPATCH_COMPLETE);
4717 _dbus_verbose ("\n");
4719 CONNECTION_LOCK (connection);
4720 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4721 if (status != DBUS_DISPATCH_DATA_REMAINS)
4723 /* unlocks and calls out to user code */
4724 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4728 /* We need to ref the connection since the callback could potentially
4729 * drop the last ref to it
4731 _dbus_connection_ref_unlocked (connection);
4733 _dbus_connection_acquire_dispatch (connection);
4734 HAVE_LOCK_CHECK (connection);
4736 message_link = _dbus_connection_pop_message_link_unlocked (connection);
4737 if (message_link == NULL)
4739 /* another thread dispatched our stuff */
4741 _dbus_verbose ("another thread dispatched message (during acquire_dispatch above)\n");
4743 _dbus_connection_release_dispatch (connection);
4745 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4747 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4749 dbus_connection_unref (connection);
4754 message = message_link->data;
4756 _dbus_verbose (" dispatching message %p (%s %s %s '%s')\n",
4758 dbus_message_type_to_string (dbus_message_get_type (message)),
4759 dbus_message_get_interface (message) ?
4760 dbus_message_get_interface (message) :
4762 dbus_message_get_member (message) ?
4763 dbus_message_get_member (message) :
4765 dbus_message_get_signature (message));
4767 result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
4769 /* Pending call handling must be first, because if you do
4770 * dbus_connection_send_with_reply_and_block() or
4771 * dbus_pending_call_block() then no handlers/filters will be run on
4772 * the reply. We want consistent semantics in the case where we
4773 * dbus_connection_dispatch() the reply.
4776 reply_serial = dbus_message_get_reply_serial (message);
4777 pending = _dbus_hash_table_lookup_int (connection->pending_replies,
4781 _dbus_verbose ("Dispatching a pending reply\n");
4782 complete_pending_call_and_unlock (connection, pending, message);
4783 pending = NULL; /* it's probably unref'd */
4785 CONNECTION_LOCK (connection);
4786 _dbus_verbose ("pending call completed in dispatch\n");
4787 result = DBUS_HANDLER_RESULT_HANDLED;
4791 result = _dbus_connection_run_builtin_filters_unlocked_no_update (connection, message);
4792 if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
4795 if (!_dbus_list_copy (&connection->filter_list, &filter_list_copy))
4797 _dbus_connection_release_dispatch (connection);
4798 HAVE_LOCK_CHECK (connection);
4800 _dbus_connection_failed_pop (connection, message_link);
4802 /* unlocks and calls user code */
4803 _dbus_connection_update_dispatch_status_and_unlock (connection,
4804 DBUS_DISPATCH_NEED_MEMORY);
4805 dbus_connection_unref (connection);
4807 return DBUS_DISPATCH_NEED_MEMORY;
4810 _dbus_list_foreach (&filter_list_copy,
4811 (DBusForeachFunction)_dbus_message_filter_ref,
4814 /* We're still protected from dispatch() reentrancy here
4815 * since we acquired the dispatcher
4817 CONNECTION_UNLOCK (connection);
4819 link = _dbus_list_get_first_link (&filter_list_copy);
4820 while (link != NULL)
4822 DBusMessageFilter *filter = link->data;
4823 DBusList *next = _dbus_list_get_next_link (&filter_list_copy, link);
4825 if (filter->function == NULL)
4827 _dbus_verbose (" filter was removed in a callback function\n");
4832 _dbus_verbose (" running filter on message %p\n", message);
4833 result = (* filter->function) (connection, message, filter->user_data);
4835 if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
4841 _dbus_list_foreach (&filter_list_copy,
4842 (DBusForeachFunction)_dbus_message_filter_unref,
4844 _dbus_list_clear (&filter_list_copy);
4846 CONNECTION_LOCK (connection);
4848 if (result == DBUS_HANDLER_RESULT_LATER)
4850 if (result == DBUS_HANDLER_RESULT_NEED_MEMORY)
4852 _dbus_verbose ("No memory\n");
4855 else if (result == DBUS_HANDLER_RESULT_HANDLED)
4857 _dbus_verbose ("filter handled message in dispatch\n");
4861 /* We're still protected from dispatch() reentrancy here
4862 * since we acquired the dispatcher
4864 _dbus_verbose (" running object path dispatch on message %p (%s %s %s '%s')\n",
4866 dbus_message_type_to_string (dbus_message_get_type (message)),
4867 dbus_message_get_interface (message) ?
4868 dbus_message_get_interface (message) :
4870 dbus_message_get_member (message) ?
4871 dbus_message_get_member (message) :
4873 dbus_message_get_signature (message));
4875 HAVE_LOCK_CHECK (connection);
4876 result = _dbus_object_tree_dispatch_and_unlock (connection->objects,
4880 CONNECTION_LOCK (connection);
4882 if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
4884 _dbus_verbose ("object tree handled message in dispatch\n");
4888 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_CALL)
4892 DBusPreallocatedSend *preallocated;
4893 DBusList *expire_link;
4895 _dbus_verbose (" sending error %s\n",
4896 DBUS_ERROR_UNKNOWN_METHOD);
4898 if (!_dbus_string_init (&str))
4900 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4901 _dbus_verbose ("no memory for error string in dispatch\n");
4905 if (!_dbus_string_append_printf (&str,
4906 "Method \"%s\" with signature \"%s\" on interface \"%s\" doesn't exist\n",
4907 dbus_message_get_member (message),
4908 dbus_message_get_signature (message),
4909 dbus_message_get_interface (message)))
4911 _dbus_string_free (&str);
4912 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4913 _dbus_verbose ("no memory for error string in dispatch\n");
4917 reply = dbus_message_new_error (message,
4918 found_object ? DBUS_ERROR_UNKNOWN_METHOD : DBUS_ERROR_UNKNOWN_OBJECT,
4919 _dbus_string_get_const_data (&str));
4920 _dbus_string_free (&str);
4924 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4925 _dbus_verbose ("no memory for error reply in dispatch\n");
4929 expire_link = _dbus_list_alloc_link (reply);
4931 if (expire_link == NULL)
4933 dbus_message_unref (reply);
4934 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4935 _dbus_verbose ("no memory for error send in dispatch\n");
4939 preallocated = _dbus_connection_preallocate_send_unlocked (connection);
4941 if (preallocated == NULL)
4943 _dbus_list_free_link (expire_link);
4944 /* It's OK that this is finalized, because it hasn't been seen by
4945 * anything that could attach user callbacks */
4946 dbus_message_unref (reply);
4947 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4948 _dbus_verbose ("no memory for error send in dispatch\n");
4952 _dbus_connection_send_preallocated_unlocked_no_update (connection, preallocated,
4954 /* reply will be freed when we release the lock */
4955 _dbus_list_prepend_link (&connection->expired_messages, expire_link);
4957 result = DBUS_HANDLER_RESULT_HANDLED;
4960 _dbus_verbose (" done dispatching %p (%s %s %s '%s') on connection %p\n", message,
4961 dbus_message_type_to_string (dbus_message_get_type (message)),
4962 dbus_message_get_interface (message) ?
4963 dbus_message_get_interface (message) :
4965 dbus_message_get_member (message) ?
4966 dbus_message_get_member (message) :
4968 dbus_message_get_signature (message),
4972 if (result == DBUS_HANDLER_RESULT_LATER ||
4973 result == DBUS_HANDLER_RESULT_NEED_MEMORY)
4975 if (result == DBUS_HANDLER_RESULT_NEED_MEMORY)
4976 _dbus_verbose ("out of memory\n");
4978 /* Put message back, and we'll start over.
4979 * Yes this means handlers must be idempotent if they
4980 * don't return HANDLED; c'est la vie.
4982 _dbus_connection_putback_message_link_unlocked (connection,
4984 /* now we don't want to free them */
4985 message_link = NULL;
4990 _dbus_verbose (" ... done dispatching\n");
4993 _dbus_connection_release_dispatch (connection);
4994 HAVE_LOCK_CHECK (connection);
4996 if (message != NULL)
4998 /* We don't want this message to count in maximum message limits when
4999 * computing the dispatch status, below. We have to drop the lock
5000 * temporarily, because finalizing a message can trigger callbacks.
5002 * We have a reference to the connection, and we don't use any cached
5003 * pointers to the connection's internals below this point, so it should
5004 * be safe to drop the lock and take it back. */
5005 CONNECTION_UNLOCK (connection);
5006 dbus_message_unref (message);
5007 CONNECTION_LOCK (connection);
5010 if (message_link != NULL)
5011 _dbus_list_free_link (message_link);
5013 _dbus_verbose ("before final status update\n");
5014 status = _dbus_connection_get_dispatch_status_unlocked (connection);
5016 /* unlocks and calls user code */
5017 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
5019 dbus_connection_unref (connection);
5025 * Sets the watch functions for the connection. These functions are
5026 * responsible for making the application's main loop aware of file
5027 * descriptors that need to be monitored for events, using select() or
5028 * poll(). When using Qt, typically the DBusAddWatchFunction would
5029 * create a QSocketNotifier. When using GLib, the DBusAddWatchFunction
5030 * could call g_io_add_watch(), or could be used as part of a more
5031 * elaborate GSource. Note that when a watch is added, it may
5034 * The DBusWatchToggledFunction notifies the application that the
5035 * watch has been enabled or disabled. Call dbus_watch_get_enabled()
5036 * to check this. A disabled watch should have no effect, and enabled
5037 * watch should be added to the main loop. This feature is used
5038 * instead of simply adding/removing the watch because
5039 * enabling/disabling can be done without memory allocation. The
5040 * toggled function may be NULL if a main loop re-queries
5041 * dbus_watch_get_enabled() every time anyway.
5043 * The DBusWatch can be queried for the file descriptor to watch using
5044 * dbus_watch_get_unix_fd() or dbus_watch_get_socket(), and for the
5045 * events to watch for using dbus_watch_get_flags(). The flags
5046 * returned by dbus_watch_get_flags() will only contain
5047 * DBUS_WATCH_READABLE and DBUS_WATCH_WRITABLE, never
5048 * DBUS_WATCH_HANGUP or DBUS_WATCH_ERROR; all watches implicitly
5049 * include a watch for hangups, errors, and other exceptional
5052 * Once a file descriptor becomes readable or writable, or an exception
5053 * occurs, dbus_watch_handle() should be called to
5054 * notify the connection of the file descriptor's condition.
5056 * dbus_watch_handle() cannot be called during the
5057 * DBusAddWatchFunction, as the connection will not be ready to handle
5060 * It is not allowed to reference a DBusWatch after it has been passed
5061 * to remove_function.
5063 * If #FALSE is returned due to lack of memory, the failure may be due
5064 * to a #FALSE return from the new add_function. If so, the
5065 * add_function may have been called successfully one or more times,
5066 * but the remove_function will also have been called to remove any
5067 * successful adds. i.e. if #FALSE is returned the net result
5068 * should be that dbus_connection_set_watch_functions() has no effect,
5069 * but the add_function and remove_function may have been called.
5071 * @note The thread lock on DBusConnection is held while
5072 * watch functions are invoked, so inside these functions you
5073 * may not invoke any methods on DBusConnection or it will deadlock.
5074 * See the comments in the code or http://lists.freedesktop.org/archives/dbus/2007-July/tread.html#8144
5075 * if you encounter this issue and want to attempt writing a patch.
5077 * @param connection the connection.
5078 * @param add_function function to begin monitoring a new descriptor.
5079 * @param remove_function function to stop monitoring a descriptor.
5080 * @param toggled_function function to notify of enable/disable
5081 * @param data data to pass to add_function and remove_function.
5082 * @param free_data_function function to be called to free the data.
5083 * @returns #FALSE on failure (no memory)
5086 dbus_connection_set_watch_functions (DBusConnection *connection,
5087 DBusAddWatchFunction add_function,
5088 DBusRemoveWatchFunction remove_function,
5089 DBusWatchToggledFunction toggled_function,
5091 DBusFreeFunction free_data_function)
5095 _dbus_return_val_if_fail (connection != NULL, FALSE);
5097 CONNECTION_LOCK (connection);
5099 retval = _dbus_watch_list_set_functions (connection->watches,
5100 add_function, remove_function,
5102 data, free_data_function);
5104 CONNECTION_UNLOCK (connection);
5110 * Sets the timeout functions for the connection. These functions are
5111 * responsible for making the application's main loop aware of timeouts.
5112 * When using Qt, typically the DBusAddTimeoutFunction would create a
5113 * QTimer. When using GLib, the DBusAddTimeoutFunction would call
5116 * The DBusTimeoutToggledFunction notifies the application that the
5117 * timeout has been enabled or disabled. Call
5118 * dbus_timeout_get_enabled() to check this. A disabled timeout should
5119 * have no effect, and enabled timeout should be added to the main
5120 * loop. This feature is used instead of simply adding/removing the
5121 * timeout because enabling/disabling can be done without memory
5122 * allocation. With Qt, QTimer::start() and QTimer::stop() can be used
5123 * to enable and disable. The toggled function may be NULL if a main
5124 * loop re-queries dbus_timeout_get_enabled() every time anyway.
5125 * Whenever a timeout is toggled, its interval may change.
5127 * The DBusTimeout can be queried for the timer interval using
5128 * dbus_timeout_get_interval(). dbus_timeout_handle() should be called
5129 * repeatedly, each time the interval elapses, starting after it has
5130 * elapsed once. The timeout stops firing when it is removed with the
5131 * given remove_function. The timer interval may change whenever the
5132 * timeout is added, removed, or toggled.
5134 * @note The thread lock on DBusConnection is held while
5135 * timeout functions are invoked, so inside these functions you
5136 * may not invoke any methods on DBusConnection or it will deadlock.
5137 * See the comments in the code or http://lists.freedesktop.org/archives/dbus/2007-July/thread.html#8144
5138 * if you encounter this issue and want to attempt writing a patch.
5140 * @param connection the connection.
5141 * @param add_function function to add a timeout.
5142 * @param remove_function function to remove a timeout.
5143 * @param toggled_function function to notify of enable/disable
5144 * @param data data to pass to add_function and remove_function.
5145 * @param free_data_function function to be called to free the data.
5146 * @returns #FALSE on failure (no memory)
5149 dbus_connection_set_timeout_functions (DBusConnection *connection,
5150 DBusAddTimeoutFunction add_function,
5151 DBusRemoveTimeoutFunction remove_function,
5152 DBusTimeoutToggledFunction toggled_function,
5154 DBusFreeFunction free_data_function)
5158 _dbus_return_val_if_fail (connection != NULL, FALSE);
5160 CONNECTION_LOCK (connection);
5162 retval = _dbus_timeout_list_set_functions (connection->timeouts,
5163 add_function, remove_function,
5165 data, free_data_function);
5167 CONNECTION_UNLOCK (connection);
5173 * Sets the mainloop wakeup function for the connection. This function
5174 * is responsible for waking up the main loop (if its sleeping in
5175 * another thread) when some some change has happened to the
5176 * connection that the mainloop needs to reconsider (e.g. a message
5177 * has been queued for writing). When using Qt, this typically
5178 * results in a call to QEventLoop::wakeUp(). When using GLib, it
5179 * would call g_main_context_wakeup().
5181 * @param connection the connection.
5182 * @param wakeup_main_function function to wake up the mainloop
5183 * @param data data to pass wakeup_main_function
5184 * @param free_data_function function to be called to free the data.
5187 dbus_connection_set_wakeup_main_function (DBusConnection *connection,
5188 DBusWakeupMainFunction wakeup_main_function,
5190 DBusFreeFunction free_data_function)
5193 DBusFreeFunction old_free_data;
5195 _dbus_return_if_fail (connection != NULL);
5197 CONNECTION_LOCK (connection);
5198 old_data = connection->wakeup_main_data;
5199 old_free_data = connection->free_wakeup_main_data;
5201 connection->wakeup_main_function = wakeup_main_function;
5202 connection->wakeup_main_data = data;
5203 connection->free_wakeup_main_data = free_data_function;
5205 CONNECTION_UNLOCK (connection);
5207 /* Callback outside the lock */
5209 (*old_free_data) (old_data);
5213 * Set a function to be invoked when the dispatch status changes.
5214 * If the dispatch status is #DBUS_DISPATCH_DATA_REMAINS, then
5215 * dbus_connection_dispatch() needs to be called to process incoming
5216 * messages. However, dbus_connection_dispatch() MUST NOT BE CALLED
5217 * from inside the DBusDispatchStatusFunction. Indeed, almost
5218 * any reentrancy in this function is a bad idea. Instead,
5219 * the DBusDispatchStatusFunction should simply save an indication
5220 * that messages should be dispatched later, when the main loop
5223 * If you don't set a dispatch status function, you have to be sure to
5224 * dispatch on every iteration of your main loop, especially if
5225 * dbus_watch_handle() or dbus_timeout_handle() were called.
5227 * @param connection the connection
5228 * @param function function to call on dispatch status changes
5229 * @param data data for function
5230 * @param free_data_function free the function data
5233 dbus_connection_set_dispatch_status_function (DBusConnection *connection,
5234 DBusDispatchStatusFunction function,
5236 DBusFreeFunction free_data_function)
5239 DBusFreeFunction old_free_data;
5241 _dbus_return_if_fail (connection != NULL);
5243 CONNECTION_LOCK (connection);
5244 old_data = connection->dispatch_status_data;
5245 old_free_data = connection->free_dispatch_status_data;
5247 connection->dispatch_status_function = function;
5248 connection->dispatch_status_data = data;
5249 connection->free_dispatch_status_data = free_data_function;
5251 CONNECTION_UNLOCK (connection);
5253 /* Callback outside the lock */
5255 (*old_free_data) (old_data);
5259 * Get the UNIX file descriptor of the connection, if any. This can
5260 * be used for SELinux access control checks with getpeercon() for
5261 * example. DO NOT read or write to the file descriptor, or try to
5262 * select() on it; use DBusWatch for main loop integration. Not all
5263 * connections will have a file descriptor. So for adding descriptors
5264 * to the main loop, use dbus_watch_get_unix_fd() and so forth.
5266 * If the connection is socket-based, you can also use
5267 * dbus_connection_get_socket(), which will work on Windows too.
5268 * This function always fails on Windows.
5270 * Right now the returned descriptor is always a socket, but
5271 * that is not guaranteed.
5273 * @param connection the connection
5274 * @param fd return location for the file descriptor.
5275 * @returns #TRUE if fd is successfully obtained.
5278 dbus_connection_get_unix_fd (DBusConnection *connection,
5281 _dbus_return_val_if_fail (connection != NULL, FALSE);
5282 _dbus_return_val_if_fail (connection->transport != NULL, FALSE);
5285 /* FIXME do this on a lower level */
5289 return dbus_connection_get_socket(connection, fd);
5293 * Gets the underlying Windows or UNIX socket file descriptor
5294 * of the connection, if any. DO NOT read or write to the file descriptor, or try to
5295 * select() on it; use DBusWatch for main loop integration. Not all
5296 * connections will have a socket. So for adding descriptors
5297 * to the main loop, use dbus_watch_get_socket() and so forth.
5299 * If the connection is not socket-based, this function will return FALSE,
5300 * even if the connection does have a file descriptor of some kind.
5301 * i.e. this function always returns specifically a socket file descriptor.
5303 * @param connection the connection
5304 * @param fd return location for the file descriptor.
5305 * @returns #TRUE if fd is successfully obtained.
5308 dbus_connection_get_socket(DBusConnection *connection,
5312 DBusSocket s = DBUS_SOCKET_INIT;
5314 _dbus_return_val_if_fail (connection != NULL, FALSE);
5315 _dbus_return_val_if_fail (connection->transport != NULL, FALSE);
5317 CONNECTION_LOCK (connection);
5319 retval = _dbus_transport_get_socket_fd (connection->transport, &s);
5323 *fd = _dbus_socket_get_int (s);
5326 CONNECTION_UNLOCK (connection);
5333 * Getter for number of messages in incoming queue.
5334 * Useful for sending reply to self (see kdbus_do_iteration)
5337 _dbus_connection_get_n_incoming (DBusConnection *connection)
5339 return connection->n_incoming;
5343 * Gets the UNIX user ID of the connection if known. Returns #TRUE if
5344 * the uid is filled in. Always returns #FALSE on non-UNIX platforms
5345 * for now, though in theory someone could hook Windows to NIS or
5346 * something. Always returns #FALSE prior to authenticating the
5349 * The UID is only read by servers from clients; clients can't usually
5350 * get the UID of servers, because servers do not authenticate to
5351 * clients. The returned UID is the UID the connection authenticated
5354 * The message bus is a server and the apps connecting to the bus
5357 * You can ask the bus to tell you the UID of another connection though
5358 * if you like; this is done with dbus_bus_get_unix_user().
5360 * @param connection the connection
5361 * @param uid return location for the user ID
5362 * @returns #TRUE if uid is filled in with a valid user ID
5365 dbus_connection_get_unix_user (DBusConnection *connection,
5370 _dbus_return_val_if_fail (connection != NULL, FALSE);
5371 _dbus_return_val_if_fail (uid != NULL, FALSE);
5373 CONNECTION_LOCK (connection);
5375 if (!_dbus_transport_try_to_authenticate (connection->transport))
5378 result = _dbus_transport_get_unix_user (connection->transport,
5382 _dbus_assert (!result);
5385 CONNECTION_UNLOCK (connection);
5391 * Gets the process ID of the connection if any.
5392 * Returns #TRUE if the pid is filled in.
5393 * Always returns #FALSE prior to authenticating the
5396 * @param connection the connection
5397 * @param pid return location for the process ID
5398 * @returns #TRUE if uid is filled in with a valid process ID
5401 dbus_connection_get_unix_process_id (DBusConnection *connection,
5406 _dbus_return_val_if_fail (connection != NULL, FALSE);
5407 _dbus_return_val_if_fail (pid != NULL, FALSE);
5409 CONNECTION_LOCK (connection);
5411 if (!_dbus_transport_try_to_authenticate (connection->transport))
5414 result = _dbus_transport_get_unix_process_id (connection->transport,
5417 CONNECTION_UNLOCK (connection);
5422 #ifdef DBUS_ENABLE_SMACK
5424 * Gets the Smack label of the peer at the time when the connection
5425 * was established. Returns #TRUE if the label is filled in.
5427 * @param connection the connection
5428 * @param label return location for the Smack label; returned value is valid as long as the connection exists
5429 * @returns #TRUE if uid is filled in with a valid process ID
5432 dbus_connection_get_smack_label (DBusConnection *connection,
5435 _dbus_return_val_if_fail (connection != NULL, FALSE);
5436 _dbus_return_val_if_fail (label != NULL, FALSE);
5438 *label = connection->peer_smack_label;
5439 return *label != NULL;
5444 * Gets the ADT audit data of the connection if any.
5445 * Returns #TRUE if the structure pointer is returned.
5446 * Always returns #FALSE prior to authenticating the
5449 * @param connection the connection
5450 * @param data return location for audit data
5451 * @param data_size return location for length of audit data
5452 * @returns #TRUE if audit data is filled in with a valid ucred pointer
5455 dbus_connection_get_adt_audit_session_data (DBusConnection *connection,
5457 dbus_int32_t *data_size)
5461 _dbus_return_val_if_fail (connection != NULL, FALSE);
5462 _dbus_return_val_if_fail (data != NULL, FALSE);
5463 _dbus_return_val_if_fail (data_size != NULL, FALSE);
5465 CONNECTION_LOCK (connection);
5467 if (!_dbus_transport_try_to_authenticate (connection->transport))
5470 result = _dbus_transport_get_adt_audit_session_data (connection->transport,
5473 CONNECTION_UNLOCK (connection);
5479 * Sets a predicate function used to determine whether a given user ID
5480 * is allowed to connect. When an incoming connection has
5481 * authenticated with a particular user ID, this function is called;
5482 * if it returns #TRUE, the connection is allowed to proceed,
5483 * otherwise the connection is disconnected.
5485 * If the function is set to #NULL (as it is by default), then
5486 * only the same UID as the server process will be allowed to
5487 * connect. Also, root is always allowed to connect.
5489 * On Windows, the function will be set and its free_data_function will
5490 * be invoked when the connection is freed or a new function is set.
5491 * However, the function will never be called, because there are
5492 * no UNIX user ids to pass to it, or at least none of the existing
5493 * auth protocols would allow authenticating as a UNIX user on Windows.
5495 * @param connection the connection
5496 * @param function the predicate
5497 * @param data data to pass to the predicate
5498 * @param free_data_function function to free the data
5501 dbus_connection_set_unix_user_function (DBusConnection *connection,
5502 DBusAllowUnixUserFunction function,
5504 DBusFreeFunction free_data_function)
5506 void *old_data = NULL;
5507 DBusFreeFunction old_free_function = NULL;
5509 _dbus_return_if_fail (connection != NULL);
5511 CONNECTION_LOCK (connection);
5512 _dbus_transport_set_unix_user_function (connection->transport,
5513 function, data, free_data_function,
5514 &old_data, &old_free_function);
5515 CONNECTION_UNLOCK (connection);
5517 if (old_free_function != NULL)
5518 (* old_free_function) (old_data);
5521 /* Same calling convention as dbus_connection_get_windows_user */
5523 _dbus_connection_get_linux_security_label (DBusConnection *connection,
5528 _dbus_assert (connection != NULL);
5529 _dbus_assert (label_p != NULL);
5531 CONNECTION_LOCK (connection);
5533 if (!_dbus_transport_try_to_authenticate (connection->transport))
5536 result = _dbus_transport_get_linux_security_label (connection->transport,
5539 _dbus_assert (!result);
5542 CONNECTION_UNLOCK (connection);
5548 * Gets the Windows user SID of the connection if known. Returns
5549 * #TRUE if the ID is filled in. Always returns #FALSE on non-Windows
5550 * platforms for now, though in theory someone could hook UNIX to
5551 * Active Directory or something. Always returns #FALSE prior to
5552 * authenticating the connection.
5554 * The user is only read by servers from clients; clients can't usually
5555 * get the user of servers, because servers do not authenticate to
5556 * clients. The returned user is the user the connection authenticated
5559 * The message bus is a server and the apps connecting to the bus
5562 * The returned user string has to be freed with dbus_free().
5564 * The return value indicates whether the user SID is available;
5565 * if it's available but we don't have the memory to copy it,
5566 * then the return value is #TRUE and #NULL is given as the SID.
5568 * @todo We would like to be able to say "You can ask the bus to tell
5569 * you the user of another connection though if you like; this is done
5570 * with dbus_bus_get_windows_user()." But this has to be implemented
5571 * in bus/driver.c and dbus/dbus-bus.c, and is pointless anyway
5572 * since on Windows we only use the session bus for now.
5574 * @param connection the connection
5575 * @param windows_sid_p return location for an allocated copy of the user ID, or #NULL if no memory
5576 * @returns #TRUE if user is available (returned value may be #NULL anyway if no memory)
5579 dbus_connection_get_windows_user (DBusConnection *connection,
5580 char **windows_sid_p)
5584 _dbus_return_val_if_fail (connection != NULL, FALSE);
5585 _dbus_return_val_if_fail (windows_sid_p != NULL, FALSE);
5587 CONNECTION_LOCK (connection);
5589 if (!_dbus_transport_try_to_authenticate (connection->transport))
5592 result = _dbus_transport_get_windows_user (connection->transport,
5596 _dbus_assert (!result);
5599 CONNECTION_UNLOCK (connection);
5605 * Sets a predicate function used to determine whether a given user ID
5606 * is allowed to connect. When an incoming connection has
5607 * authenticated with a particular user ID, this function is called;
5608 * if it returns #TRUE, the connection is allowed to proceed,
5609 * otherwise the connection is disconnected.
5611 * If the function is set to #NULL (as it is by default), then
5612 * only the same user owning the server process will be allowed to
5615 * On UNIX, the function will be set and its free_data_function will
5616 * be invoked when the connection is freed or a new function is set.
5617 * However, the function will never be called, because there is no
5618 * way right now to authenticate as a Windows user on UNIX.
5620 * @param connection the connection
5621 * @param function the predicate
5622 * @param data data to pass to the predicate
5623 * @param free_data_function function to free the data
5626 dbus_connection_set_windows_user_function (DBusConnection *connection,
5627 DBusAllowWindowsUserFunction function,
5629 DBusFreeFunction free_data_function)
5631 void *old_data = NULL;
5632 DBusFreeFunction old_free_function = NULL;
5634 _dbus_return_if_fail (connection != NULL);
5636 CONNECTION_LOCK (connection);
5637 _dbus_transport_set_windows_user_function (connection->transport,
5638 function, data, free_data_function,
5639 &old_data, &old_free_function);
5640 CONNECTION_UNLOCK (connection);
5642 if (old_free_function != NULL)
5643 (* old_free_function) (old_data);
5647 * This function must be called on the server side of a connection when the
5648 * connection is first seen in the #DBusNewConnectionFunction. If set to
5649 * #TRUE (the default is #FALSE), then the connection can proceed even if
5650 * the client does not authenticate as some user identity, i.e. clients
5651 * can connect anonymously.
5653 * This setting interacts with the available authorization mechanisms
5654 * (see dbus_server_set_auth_mechanisms()). Namely, an auth mechanism
5655 * such as ANONYMOUS that supports anonymous auth must be included in
5656 * the list of available mechanisms for anonymous login to work.
5658 * This setting also changes the default rule for connections
5659 * authorized as a user; normally, if a connection authorizes as
5660 * a user identity, it is permitted if the user identity is
5661 * root or the user identity matches the user identity of the server
5662 * process. If anonymous connections are allowed, however,
5663 * then any user identity is allowed.
5665 * You can override the rules for connections authorized as a
5666 * user identity with dbus_connection_set_unix_user_function()
5667 * and dbus_connection_set_windows_user_function().
5669 * @param connection the connection
5670 * @param value whether to allow authentication as an anonymous user
5673 dbus_connection_set_allow_anonymous (DBusConnection *connection,
5676 _dbus_return_if_fail (connection != NULL);
5678 CONNECTION_LOCK (connection);
5679 _dbus_transport_set_allow_anonymous (connection->transport, value);
5680 CONNECTION_UNLOCK (connection);
5685 * Normally #DBusConnection automatically handles all messages to the
5686 * org.freedesktop.DBus.Peer interface. However, the message bus wants
5687 * to be able to route methods on that interface through the bus and
5688 * to other applications. If routing peer messages is enabled, then
5689 * messages with the org.freedesktop.DBus.Peer interface that also
5690 * have a bus destination name set will not be automatically
5691 * handled by the #DBusConnection and instead will be dispatched
5692 * normally to the application.
5694 * If a normal application sets this flag, it can break things badly.
5695 * So don't set this unless you are the message bus.
5697 * @param connection the connection
5698 * @param value #TRUE to pass through org.freedesktop.DBus.Peer messages with a bus name set
5701 dbus_connection_set_route_peer_messages (DBusConnection *connection,
5704 _dbus_return_if_fail (connection != NULL);
5706 CONNECTION_LOCK (connection);
5707 connection->route_peer_messages = value;
5708 CONNECTION_UNLOCK (connection);
5712 * Adds a message filter. Filters are handlers that are run on all
5713 * incoming messages, prior to the objects registered with
5714 * dbus_connection_register_object_path(). Filters are run in the
5715 * order that they were added. The same handler can be added as a
5716 * filter more than once, in which case it will be run more than once.
5717 * Filters added during a filter callback won't be run on the message
5720 * @todo we don't run filters on messages while blocking without
5721 * entering the main loop, since filters are run as part of
5722 * dbus_connection_dispatch(). This is probably a feature, as filters
5723 * could create arbitrary reentrancy. But kind of sucks if you're
5724 * trying to filter METHOD_RETURN for some reason.
5726 * @param connection the connection
5727 * @param function function to handle messages
5728 * @param user_data user data to pass to the function
5729 * @param free_data_function function to use for freeing user data
5730 * @returns #TRUE on success, #FALSE if not enough memory.
5733 dbus_connection_add_filter (DBusConnection *connection,
5734 DBusHandleMessageFunction function,
5736 DBusFreeFunction free_data_function)
5738 DBusMessageFilter *filter;
5740 _dbus_return_val_if_fail (connection != NULL, FALSE);
5741 _dbus_return_val_if_fail (function != NULL, FALSE);
5743 filter = dbus_new0 (DBusMessageFilter, 1);
5747 _dbus_atomic_inc (&filter->refcount);
5749 CONNECTION_LOCK (connection);
5751 if (!_dbus_list_append (&connection->filter_list,
5754 _dbus_message_filter_unref (filter);
5755 CONNECTION_UNLOCK (connection);
5759 /* Fill in filter after all memory allocated,
5760 * so we don't run the free_user_data_function
5761 * if the add_filter() fails
5764 filter->function = function;
5765 filter->user_data = user_data;
5766 filter->free_user_data_function = free_data_function;
5768 CONNECTION_UNLOCK (connection);
5773 * Removes a previously-added message filter. It is a programming
5774 * error to call this function for a handler that has not been added
5775 * as a filter. If the given handler was added more than once, only
5776 * one instance of it will be removed (the most recently-added
5779 * @param connection the connection
5780 * @param function the handler to remove
5781 * @param user_data user data for the handler to remove
5785 dbus_connection_remove_filter (DBusConnection *connection,
5786 DBusHandleMessageFunction function,
5790 DBusMessageFilter *filter;
5792 _dbus_return_if_fail (connection != NULL);
5793 _dbus_return_if_fail (function != NULL);
5795 CONNECTION_LOCK (connection);
5799 link = _dbus_list_get_last_link (&connection->filter_list);
5800 while (link != NULL)
5802 filter = link->data;
5804 if (filter->function == function &&
5805 filter->user_data == user_data)
5807 _dbus_list_remove_link (&connection->filter_list, link);
5808 filter->function = NULL;
5813 link = _dbus_list_get_prev_link (&connection->filter_list, link);
5817 CONNECTION_UNLOCK (connection);
5819 #ifndef DBUS_DISABLE_CHECKS
5822 _dbus_warn_check_failed ("Attempt to remove filter function %p user data %p, but no such filter has been added\n",
5823 function, user_data);
5828 /* Call application code */
5829 if (filter->free_user_data_function)
5830 (* filter->free_user_data_function) (filter->user_data);
5832 filter->free_user_data_function = NULL;
5833 filter->user_data = NULL;
5835 _dbus_message_filter_unref (filter);
5839 * Registers a handler for a given path or subsection in the object
5840 * hierarchy. The given vtable handles messages sent to exactly the
5841 * given path or also for paths bellow that, depending on fallback
5844 * @param connection the connection
5845 * @param fallback whether to handle messages also for "subdirectory"
5846 * @param path a '/' delimited string of path elements
5847 * @param vtable the virtual table
5848 * @param user_data data to pass to functions in the vtable
5849 * @param error address where an error can be returned
5850 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5851 * #DBUS_ERROR_OBJECT_PATH_IN_USE) is reported
5854 _dbus_connection_register_object_path (DBusConnection *connection,
5855 dbus_bool_t fallback,
5857 const DBusObjectPathVTable *vtable,
5861 char **decomposed_path;
5864 if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
5867 CONNECTION_LOCK (connection);
5869 retval = _dbus_object_tree_register (connection->objects,
5871 (const char **) decomposed_path, vtable,
5874 CONNECTION_UNLOCK (connection);
5876 dbus_free_string_array (decomposed_path);
5882 * Registers a handler for a given path in the object hierarchy.
5883 * The given vtable handles messages sent to exactly the given path.
5885 * @param connection the connection
5886 * @param path a '/' delimited string of path elements
5887 * @param vtable the virtual table
5888 * @param user_data data to pass to functions in the vtable
5889 * @param error address where an error can be returned
5890 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5891 * #DBUS_ERROR_OBJECT_PATH_IN_USE) is reported
5894 dbus_connection_try_register_object_path (DBusConnection *connection,
5896 const DBusObjectPathVTable *vtable,
5900 _dbus_return_val_if_fail (connection != NULL, FALSE);
5901 _dbus_return_val_if_fail (path != NULL, FALSE);
5902 _dbus_return_val_if_fail (path[0] == '/', FALSE);
5903 _dbus_return_val_if_fail (vtable != NULL, FALSE);
5905 return _dbus_connection_register_object_path (connection, FALSE, path, vtable, user_data, error);
5909 * Registers a handler for a given path in the object hierarchy.
5910 * The given vtable handles messages sent to exactly the given path.
5912 * It is a bug to call this function for object paths which already
5913 * have a handler. Use dbus_connection_try_register_object_path() if this
5914 * might be the case.
5916 * @param connection the connection
5917 * @param path a '/' delimited string of path elements
5918 * @param vtable the virtual table
5919 * @param user_data data to pass to functions in the vtable
5920 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5921 * #DBUS_ERROR_OBJECT_PATH_IN_USE) ocurred
5924 dbus_connection_register_object_path (DBusConnection *connection,
5926 const DBusObjectPathVTable *vtable,
5930 DBusError error = DBUS_ERROR_INIT;
5932 _dbus_return_val_if_fail (connection != NULL, FALSE);
5933 _dbus_return_val_if_fail (path != NULL, FALSE);
5934 _dbus_return_val_if_fail (path[0] == '/', FALSE);
5935 _dbus_return_val_if_fail (vtable != NULL, FALSE);
5937 retval = _dbus_connection_register_object_path (connection, FALSE, path, vtable, user_data, &error);
5939 if (dbus_error_has_name (&error, DBUS_ERROR_OBJECT_PATH_IN_USE))
5941 _dbus_warn ("%s\n", error.message);
5942 dbus_error_free (&error);
5950 * Registers a fallback handler for a given subsection of the object
5951 * hierarchy. The given vtable handles messages at or below the given
5952 * path. You can use this to establish a default message handling
5953 * policy for a whole "subdirectory."
5955 * @param connection the connection
5956 * @param path a '/' delimited string of path elements
5957 * @param vtable the virtual table
5958 * @param user_data data to pass to functions in the vtable
5959 * @param error address where an error can be returned
5960 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5961 * #DBUS_ERROR_OBJECT_PATH_IN_USE) is reported
5964 dbus_connection_try_register_fallback (DBusConnection *connection,
5966 const DBusObjectPathVTable *vtable,
5970 _dbus_return_val_if_fail (connection != NULL, FALSE);
5971 _dbus_return_val_if_fail (path != NULL, FALSE);
5972 _dbus_return_val_if_fail (path[0] == '/', FALSE);
5973 _dbus_return_val_if_fail (vtable != NULL, FALSE);
5975 return _dbus_connection_register_object_path (connection, TRUE, path, vtable, user_data, error);
5979 * Registers a fallback handler for a given subsection of the object
5980 * hierarchy. The given vtable handles messages at or below the given
5981 * path. You can use this to establish a default message handling
5982 * policy for a whole "subdirectory."
5984 * It is a bug to call this function for object paths which already
5985 * have a handler. Use dbus_connection_try_register_fallback() if this
5986 * might be the case.
5988 * @param connection the connection
5989 * @param path a '/' delimited string of path elements
5990 * @param vtable the virtual table
5991 * @param user_data data to pass to functions in the vtable
5992 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5993 * #DBUS_ERROR_OBJECT_PATH_IN_USE) occured
5996 dbus_connection_register_fallback (DBusConnection *connection,
5998 const DBusObjectPathVTable *vtable,
6002 DBusError error = DBUS_ERROR_INIT;
6004 _dbus_return_val_if_fail (connection != NULL, FALSE);
6005 _dbus_return_val_if_fail (path != NULL, FALSE);
6006 _dbus_return_val_if_fail (path[0] == '/', FALSE);
6007 _dbus_return_val_if_fail (vtable != NULL, FALSE);
6009 retval = _dbus_connection_register_object_path (connection, TRUE, path, vtable, user_data, &error);
6011 if (dbus_error_has_name (&error, DBUS_ERROR_OBJECT_PATH_IN_USE))
6013 _dbus_warn ("%s\n", error.message);
6014 dbus_error_free (&error);
6022 * Unregisters the handler registered with exactly the given path.
6023 * It's a bug to call this function for a path that isn't registered.
6024 * Can unregister both fallback paths and object paths.
6026 * @param connection the connection
6027 * @param path a '/' delimited string of path elements
6028 * @returns #FALSE if not enough memory
6031 dbus_connection_unregister_object_path (DBusConnection *connection,
6034 char **decomposed_path;
6036 _dbus_return_val_if_fail (connection != NULL, FALSE);
6037 _dbus_return_val_if_fail (path != NULL, FALSE);
6038 _dbus_return_val_if_fail (path[0] == '/', FALSE);
6040 if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
6043 CONNECTION_LOCK (connection);
6045 _dbus_object_tree_unregister_and_unlock (connection->objects, (const char **) decomposed_path);
6047 dbus_free_string_array (decomposed_path);
6053 * Gets the user data passed to dbus_connection_register_object_path()
6054 * or dbus_connection_register_fallback(). If nothing was registered
6055 * at this path, the data is filled in with #NULL.
6057 * @param connection the connection
6058 * @param path the path you registered with
6059 * @param data_p location to store the user data, or #NULL
6060 * @returns #FALSE if not enough memory
6063 dbus_connection_get_object_path_data (DBusConnection *connection,
6067 char **decomposed_path;
6069 _dbus_return_val_if_fail (connection != NULL, FALSE);
6070 _dbus_return_val_if_fail (path != NULL, FALSE);
6071 _dbus_return_val_if_fail (data_p != NULL, FALSE);
6075 if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
6078 CONNECTION_LOCK (connection);
6080 *data_p = _dbus_object_tree_get_user_data_unlocked (connection->objects, (const char**) decomposed_path);
6082 CONNECTION_UNLOCK (connection);
6084 dbus_free_string_array (decomposed_path);
6090 * Lists the registered fallback handlers and object path handlers at
6091 * the given parent_path. The returned array should be freed with
6092 * dbus_free_string_array().
6094 * @param connection the connection
6095 * @param parent_path the path to list the child handlers of
6096 * @param child_entries returns #NULL-terminated array of children
6097 * @returns #FALSE if no memory to allocate the child entries
6100 dbus_connection_list_registered (DBusConnection *connection,
6101 const char *parent_path,
6102 char ***child_entries)
6104 char **decomposed_path;
6106 _dbus_return_val_if_fail (connection != NULL, FALSE);
6107 _dbus_return_val_if_fail (parent_path != NULL, FALSE);
6108 _dbus_return_val_if_fail (parent_path[0] == '/', FALSE);
6109 _dbus_return_val_if_fail (child_entries != NULL, FALSE);
6111 if (!_dbus_decompose_path (parent_path, strlen (parent_path), &decomposed_path, NULL))
6114 CONNECTION_LOCK (connection);
6116 retval = _dbus_object_tree_list_registered_and_unlock (connection->objects,
6117 (const char **) decomposed_path,
6119 dbus_free_string_array (decomposed_path);
6124 static DBusDataSlotAllocator slot_allocator =
6125 _DBUS_DATA_SLOT_ALLOCATOR_INIT (_DBUS_LOCK_NAME (connection_slots));
6128 * Allocates an integer ID to be used for storing application-specific
6129 * data on any DBusConnection. The allocated ID may then be used
6130 * with dbus_connection_set_data() and dbus_connection_get_data().
6131 * The passed-in slot must be initialized to -1, and is filled in
6132 * with the slot ID. If the passed-in slot is not -1, it's assumed
6133 * to be already allocated, and its refcount is incremented.
6135 * The allocated slot is global, i.e. all DBusConnection objects will
6136 * have a slot with the given integer ID reserved.
6138 * @param slot_p address of a global variable storing the slot
6139 * @returns #FALSE on failure (no memory)
6142 dbus_connection_allocate_data_slot (dbus_int32_t *slot_p)
6144 return _dbus_data_slot_allocator_alloc (&slot_allocator,
6149 * Deallocates a global ID for connection data slots.
6150 * dbus_connection_get_data() and dbus_connection_set_data() may no
6151 * longer be used with this slot. Existing data stored on existing
6152 * DBusConnection objects will be freed when the connection is
6153 * finalized, but may not be retrieved (and may only be replaced if
6154 * someone else reallocates the slot). When the refcount on the
6155 * passed-in slot reaches 0, it is set to -1.
6157 * @param slot_p address storing the slot to deallocate
6160 dbus_connection_free_data_slot (dbus_int32_t *slot_p)
6162 _dbus_return_if_fail (*slot_p >= 0);
6164 _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
6168 * Stores a pointer on a DBusConnection, along
6169 * with an optional function to be used for freeing
6170 * the data when the data is set again, or when
6171 * the connection is finalized. The slot number
6172 * must have been allocated with dbus_connection_allocate_data_slot().
6174 * @note This function does not take the
6175 * main thread lock on DBusConnection, which allows it to be
6176 * used from inside watch and timeout functions. (See the
6177 * note in docs for dbus_connection_set_watch_functions().)
6178 * A side effect of this is that you need to know there's
6179 * a reference held on the connection while invoking
6180 * dbus_connection_set_data(), or the connection could be
6181 * finalized during dbus_connection_set_data().
6183 * @param connection the connection
6184 * @param slot the slot number
6185 * @param data the data to store
6186 * @param free_data_func finalizer function for the data
6187 * @returns #TRUE if there was enough memory to store the data
6190 dbus_connection_set_data (DBusConnection *connection,
6193 DBusFreeFunction free_data_func)
6195 DBusFreeFunction old_free_func;
6199 _dbus_return_val_if_fail (connection != NULL, FALSE);
6200 _dbus_return_val_if_fail (slot >= 0, FALSE);
6202 SLOTS_LOCK (connection);
6204 retval = _dbus_data_slot_list_set (&slot_allocator,
6205 &connection->slot_list,
6206 slot, data, free_data_func,
6207 &old_free_func, &old_data);
6209 SLOTS_UNLOCK (connection);
6213 /* Do the actual free outside the connection lock */
6215 (* old_free_func) (old_data);
6222 * Retrieves data previously set with dbus_connection_set_data().
6223 * The slot must still be allocated (must not have been freed).
6225 * @note This function does not take the
6226 * main thread lock on DBusConnection, which allows it to be
6227 * used from inside watch and timeout functions. (See the
6228 * note in docs for dbus_connection_set_watch_functions().)
6229 * A side effect of this is that you need to know there's
6230 * a reference held on the connection while invoking
6231 * dbus_connection_get_data(), or the connection could be
6232 * finalized during dbus_connection_get_data().
6234 * @param connection the connection
6235 * @param slot the slot to get data from
6236 * @returns the data, or #NULL if not found
6239 dbus_connection_get_data (DBusConnection *connection,
6244 _dbus_return_val_if_fail (connection != NULL, NULL);
6245 _dbus_return_val_if_fail (slot >= 0, NULL);
6247 SLOTS_LOCK (connection);
6249 res = _dbus_data_slot_list_get (&slot_allocator,
6250 &connection->slot_list,
6253 SLOTS_UNLOCK (connection);
6259 * This function sets a global flag for whether dbus_connection_new()
6260 * will set SIGPIPE behavior to SIG_IGN.
6262 * @param will_modify_sigpipe #TRUE to allow sigpipe to be set to SIG_IGN
6265 dbus_connection_set_change_sigpipe (dbus_bool_t will_modify_sigpipe)
6267 _dbus_modify_sigpipe = will_modify_sigpipe != FALSE;
6271 * Specifies the maximum size message this connection is allowed to
6272 * receive. Larger messages will result in disconnecting the
6275 * @param connection a #DBusConnection
6276 * @param size maximum message size the connection can receive, in bytes
6279 dbus_connection_set_max_message_size (DBusConnection *connection,
6282 _dbus_return_if_fail (connection != NULL);
6284 CONNECTION_LOCK (connection);
6285 _dbus_transport_set_max_message_size (connection->transport,
6287 CONNECTION_UNLOCK (connection);
6291 * Gets the value set by dbus_connection_set_max_message_size().
6293 * @param connection the connection
6294 * @returns the max size of a single message
6297 dbus_connection_get_max_message_size (DBusConnection *connection)
6301 _dbus_return_val_if_fail (connection != NULL, 0);
6303 CONNECTION_LOCK (connection);
6304 res = _dbus_transport_get_max_message_size (connection->transport);
6305 CONNECTION_UNLOCK (connection);
6310 * Specifies the maximum number of unix fds a message on this
6311 * connection is allowed to receive. Messages with more unix fds will
6312 * result in disconnecting the connection.
6314 * @param connection a #DBusConnection
6315 * @param n maximum message unix fds the connection can receive
6318 dbus_connection_set_max_message_unix_fds (DBusConnection *connection,
6321 _dbus_return_if_fail (connection != NULL);
6323 CONNECTION_LOCK (connection);
6324 _dbus_transport_set_max_message_unix_fds (connection->transport,
6326 CONNECTION_UNLOCK (connection);
6330 * Gets the value set by dbus_connection_set_max_message_unix_fds().
6332 * @param connection the connection
6333 * @returns the max numer of unix fds of a single message
6336 dbus_connection_get_max_message_unix_fds (DBusConnection *connection)
6340 _dbus_return_val_if_fail (connection != NULL, 0);
6342 CONNECTION_LOCK (connection);
6343 res = _dbus_transport_get_max_message_unix_fds (connection->transport);
6344 CONNECTION_UNLOCK (connection);
6349 * Sets the maximum total number of bytes that can be used for all messages
6350 * received on this connection. Messages count toward the maximum until
6351 * they are finalized. When the maximum is reached, the connection will
6352 * not read more data until some messages are finalized.
6354 * The semantics of the maximum are: if outstanding messages are
6355 * already above the maximum, additional messages will not be read.
6356 * The semantics are not: if the next message would cause us to exceed
6357 * the maximum, we don't read it. The reason is that we don't know the
6358 * size of a message until after we read it.
6360 * Thus, the max live messages size can actually be exceeded
6361 * by up to the maximum size of a single message.
6363 * Also, if we read say 1024 bytes off the wire in a single read(),
6364 * and that contains a half-dozen small messages, we may exceed the
6365 * size max by that amount. But this should be inconsequential.
6367 * This does imply that we can't call read() with a buffer larger
6368 * than we're willing to exceed this limit by.
6370 * @param connection the connection
6371 * @param size the maximum size in bytes of all outstanding messages
6374 dbus_connection_set_max_received_size (DBusConnection *connection,
6377 _dbus_return_if_fail (connection != NULL);
6379 CONNECTION_LOCK (connection);
6380 _dbus_transport_set_max_received_size (connection->transport,
6382 CONNECTION_UNLOCK (connection);
6386 * Gets the value set by dbus_connection_set_max_received_size().
6388 * @param connection the connection
6389 * @returns the max size of all live messages
6392 dbus_connection_get_max_received_size (DBusConnection *connection)
6396 _dbus_return_val_if_fail (connection != NULL, 0);
6398 CONNECTION_LOCK (connection);
6399 res = _dbus_transport_get_max_received_size (connection->transport);
6400 CONNECTION_UNLOCK (connection);
6405 * Sets the maximum total number of unix fds that can be used for all messages
6406 * received on this connection. Messages count toward the maximum until
6407 * they are finalized. When the maximum is reached, the connection will
6408 * not read more data until some messages are finalized.
6410 * The semantics are analogous to those of dbus_connection_set_max_received_size().
6412 * @param connection the connection
6413 * @param n the maximum size in bytes of all outstanding messages
6416 dbus_connection_set_max_received_unix_fds (DBusConnection *connection,
6419 _dbus_return_if_fail (connection != NULL);
6421 CONNECTION_LOCK (connection);
6422 _dbus_transport_set_max_received_unix_fds (connection->transport,
6424 CONNECTION_UNLOCK (connection);
6428 * Gets the value set by dbus_connection_set_max_received_unix_fds().
6430 * @param connection the connection
6431 * @returns the max unix fds of all live messages
6434 dbus_connection_get_max_received_unix_fds (DBusConnection *connection)
6438 _dbus_return_val_if_fail (connection != NULL, 0);
6440 CONNECTION_LOCK (connection);
6441 res = _dbus_transport_get_max_received_unix_fds (connection->transport);
6442 CONNECTION_UNLOCK (connection);
6447 * Gets the approximate size in bytes of all messages in the outgoing
6448 * message queue. The size is approximate in that you shouldn't use
6449 * it to decide how many bytes to read off the network or anything
6450 * of that nature, as optimizations may choose to tell small white lies
6451 * to avoid performance overhead.
6453 * @param connection the connection
6454 * @returns the number of bytes that have been queued up but not sent
6457 dbus_connection_get_outgoing_size (DBusConnection *connection)
6461 _dbus_return_val_if_fail (connection != NULL, 0);
6463 CONNECTION_LOCK (connection);
6464 res = _dbus_counter_get_size_value (connection->outgoing_counter);
6465 CONNECTION_UNLOCK (connection);
6469 #ifdef DBUS_ENABLE_STATS
6471 _dbus_connection_get_stats (DBusConnection *connection,
6472 dbus_uint32_t *in_messages,
6473 dbus_uint32_t *in_bytes,
6474 dbus_uint32_t *in_fds,
6475 dbus_uint32_t *in_peak_bytes,
6476 dbus_uint32_t *in_peak_fds,
6477 dbus_uint32_t *out_messages,
6478 dbus_uint32_t *out_bytes,
6479 dbus_uint32_t *out_fds,
6480 dbus_uint32_t *out_peak_bytes,
6481 dbus_uint32_t *out_peak_fds)
6483 CONNECTION_LOCK (connection);
6485 if (in_messages != NULL)
6486 *in_messages = connection->n_incoming;
6488 _dbus_transport_get_stats (connection->transport,
6489 in_bytes, in_fds, in_peak_bytes, in_peak_fds);
6491 if (out_messages != NULL)
6492 *out_messages = connection->n_outgoing;
6494 if (out_bytes != NULL)
6495 *out_bytes = _dbus_counter_get_size_value (connection->outgoing_counter);
6497 if (out_fds != NULL)
6498 *out_fds = _dbus_counter_get_unix_fd_value (connection->outgoing_counter);
6500 if (out_peak_bytes != NULL)
6501 *out_peak_bytes = _dbus_counter_get_peak_size_value (connection->outgoing_counter);
6503 if (out_peak_fds != NULL)
6504 *out_peak_fds = _dbus_counter_get_peak_unix_fd_value (connection->outgoing_counter);
6506 CONNECTION_UNLOCK (connection);
6508 #endif /* DBUS_ENABLE_STATS */
6511 * Gets the approximate number of uni fds of all messages in the
6512 * outgoing message queue.
6514 * @param connection the connection
6515 * @returns the number of unix fds that have been queued up but not sent
6518 dbus_connection_get_outgoing_unix_fds (DBusConnection *connection)
6522 _dbus_return_val_if_fail (connection != NULL, 0);
6524 CONNECTION_LOCK (connection);
6525 res = _dbus_counter_get_unix_fd_value (connection->outgoing_counter);
6526 CONNECTION_UNLOCK (connection);
6530 #ifdef DBUS_ENABLE_EMBEDDED_TESTS
6532 * Returns the address of the transport object of this connection
6534 * @param connection the connection
6535 * @returns the address string
6538 _dbus_connection_get_address (DBusConnection *connection)
6540 return _dbus_transport_get_address (connection->transport);