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_DISABLE_CHECKS
49 #define TOOK_LOCK_CHECK(connection)
50 #define RELEASING_LOCK_CHECK(connection)
51 #define HAVE_LOCK_CHECK(connection)
53 #define TOOK_LOCK_CHECK(connection) do { \
54 _dbus_assert (!(connection)->have_connection_lock); \
55 (connection)->have_connection_lock = TRUE; \
57 #define RELEASING_LOCK_CHECK(connection) do { \
58 _dbus_assert ((connection)->have_connection_lock); \
59 (connection)->have_connection_lock = FALSE; \
61 #define HAVE_LOCK_CHECK(connection) _dbus_assert ((connection)->have_connection_lock)
62 /* A "DO_NOT_HAVE_LOCK_CHECK" is impossible since we need the lock to check the flag */
67 #define CONNECTION_LOCK(connection) do { \
68 if (TRACE_LOCKS) { _dbus_verbose ("LOCK\n"); } \
69 _dbus_mutex_lock ((connection)->mutex); \
70 TOOK_LOCK_CHECK (connection); \
73 #define CONNECTION_UNLOCK(connection) do { \
74 if (TRACE_LOCKS) { _dbus_verbose ("UNLOCK\n"); } \
75 RELEASING_LOCK_CHECK (connection); \
76 _dbus_mutex_unlock ((connection)->mutex); \
79 #define SLOTS_LOCK(connection) do { \
80 _dbus_mutex_lock ((connection)->slot_mutex); \
83 #define SLOTS_UNLOCK(connection) do { \
84 _dbus_mutex_unlock ((connection)->slot_mutex); \
87 #define DISPATCH_STATUS_NAME(s) \
88 ((s) == DBUS_DISPATCH_COMPLETE ? "complete" : \
89 (s) == DBUS_DISPATCH_DATA_REMAINS ? "data remains" : \
90 (s) == DBUS_DISPATCH_NEED_MEMORY ? "need memory" : \
94 * @defgroup DBusConnection DBusConnection
96 * @brief Connection to another application
98 * A DBusConnection represents a connection to another
99 * application. Messages can be sent and received via this connection.
100 * The other application may be a message bus; for convenience, the
101 * function dbus_bus_get() is provided to automatically open a
102 * connection to the well-known message buses.
104 * In brief a DBusConnection is a message queue associated with some
105 * message transport mechanism such as a socket. The connection
106 * maintains a queue of incoming messages and a queue of outgoing
109 * Several functions use the following terms:
111 * <li><b>read</b> means to fill the incoming message queue by reading from the socket</li>
112 * <li><b>write</b> means to drain the outgoing queue by writing to the socket</li>
113 * <li><b>dispatch</b> means to drain the incoming queue by invoking application-provided message handlers</li>
116 * The function dbus_connection_read_write_dispatch() for example does all
117 * three of these things, offering a simple alternative to a main loop.
119 * In an application with a main loop, the read/write/dispatch
120 * operations are usually separate.
122 * The connection provides #DBusWatch and #DBusTimeout objects to
123 * the main loop. These are used to know when reading, writing, or
124 * dispatching should be performed.
126 * Incoming messages are processed
127 * by calling dbus_connection_dispatch(). dbus_connection_dispatch()
128 * runs any handlers registered for the topmost message in the message
129 * queue, then discards the message, then returns.
131 * dbus_connection_get_dispatch_status() indicates whether
132 * messages are currently in the queue that need dispatching.
133 * dbus_connection_set_dispatch_status_function() allows
134 * you to set a function to be used to monitor the dispatch status.
136 * If you're using GLib or Qt add-on libraries for D-Bus, there are
137 * special convenience APIs in those libraries that hide
138 * all the details of dispatch and watch/timeout monitoring.
139 * For example, dbus_connection_setup_with_g_main().
141 * If you aren't using these add-on libraries, but want to process
142 * messages asynchronously, you must manually call
143 * dbus_connection_set_dispatch_status_function(),
144 * dbus_connection_set_watch_functions(),
145 * dbus_connection_set_timeout_functions() providing appropriate
146 * functions to integrate the connection with your application's main
147 * loop. This can be tricky to get right; main loops are not simple.
149 * If you don't need to be asynchronous, you can ignore #DBusWatch,
150 * #DBusTimeout, and dbus_connection_dispatch(). Instead,
151 * dbus_connection_read_write_dispatch() can be used.
153 * Or, in <em>very</em> simple applications,
154 * dbus_connection_pop_message() may be all you need, allowing you to
155 * avoid setting up any handler functions (see
156 * dbus_connection_add_filter(),
157 * dbus_connection_register_object_path() for more on handlers).
159 * When you use dbus_connection_send() or one of its variants to send
160 * a message, the message is added to the outgoing queue. It's
161 * actually written to the network later; either in
162 * dbus_watch_handle() invoked by your main loop, or in
163 * dbus_connection_flush() which blocks until it can write out the
164 * entire outgoing queue. The GLib/Qt add-on libraries again
165 * handle the details here for you by setting up watch functions.
167 * When a connection is disconnected, you are guaranteed to get a
168 * signal "Disconnected" from the interface
169 * #DBUS_INTERFACE_LOCAL, path
172 * You may not drop the last reference to a #DBusConnection
173 * until that connection has been disconnected.
175 * You may dispatch the unprocessed incoming message queue even if the
176 * connection is disconnected. However, "Disconnected" will always be
177 * the last message in the queue (obviously no messages are received
178 * after disconnection).
180 * After calling dbus_threads_init(), #DBusConnection has thread
181 * locks and drops them when invoking user callbacks, so in general is
182 * transparently threadsafe. However, #DBusMessage does NOT have
183 * thread locks; you must not send the same message to multiple
184 * #DBusConnection if those connections will be used from different threads,
187 * Also, if you dispatch or pop messages from multiple threads, it
188 * may work in the sense that it won't crash, but it's tough to imagine
189 * sane results; it will be completely unpredictable which messages
190 * go to which threads.
192 * It's recommended to dispatch from a single thread.
194 * The most useful function to call from multiple threads at once
195 * is dbus_connection_send_with_reply_and_block(). That is,
196 * multiple threads can make method calls at the same time.
198 * If you aren't using threads, you can use a main loop and
199 * dbus_pending_call_set_notify() to achieve a similar result.
203 * @defgroup DBusConnectionInternals DBusConnection implementation details
204 * @ingroup DBusInternals
205 * @brief Implementation details of DBusConnection
211 * Internal struct representing a message filter function
213 typedef struct DBusMessageFilter DBusMessageFilter;
216 * Internal struct representing a message filter function
218 struct DBusMessageFilter
220 DBusAtomic refcount; /**< Reference count */
221 DBusHandleMessageFunction function; /**< Function to call to filter */
222 void *user_data; /**< User data for the function */
223 DBusFreeFunction free_user_data_function; /**< Function to free the user data */
228 * Internals of DBusPreallocatedSend
230 struct DBusPreallocatedSend
232 DBusConnection *connection; /**< Connection we'd send the message to */
233 DBusList *queue_link; /**< Preallocated link in the queue */
234 DBusList *counter_link; /**< Preallocated link in the resource counter */
237 #if HAVE_DECL_MSG_NOSIGNAL
238 static dbus_bool_t _dbus_modify_sigpipe = FALSE;
240 static dbus_bool_t _dbus_modify_sigpipe = TRUE;
244 * Implementation details of DBusConnection. All fields are private.
246 struct DBusConnection
248 DBusAtomic refcount; /**< Reference count. */
250 DBusMutex *mutex; /**< Lock on the entire DBusConnection */
252 DBusMutex *dispatch_mutex; /**< Protects dispatch_acquired */
253 DBusCondVar *dispatch_cond; /**< Notify when dispatch_acquired is available */
254 DBusMutex *io_path_mutex; /**< Protects io_path_acquired */
255 DBusCondVar *io_path_cond; /**< Notify when io_path_acquired is available */
257 DBusList *outgoing_messages; /**< Queue of messages we need to send, send the end of the list first. */
258 DBusList *incoming_messages; /**< Queue of messages we have received, end of the list received most recently. */
260 DBusMessage *message_borrowed; /**< Filled in if the first incoming message has been borrowed;
261 * dispatch_acquired will be set by the borrower
264 int n_outgoing; /**< Length of outgoing queue. */
265 int n_incoming; /**< Length of incoming queue. */
267 DBusCounter *outgoing_counter; /**< Counts size of outgoing messages. */
269 DBusTransport *transport; /**< Object that sends/receives messages over network. */
270 DBusWatchList *watches; /**< Stores active watches. */
271 DBusTimeoutList *timeouts; /**< Stores active timeouts. */
273 DBusList *filter_list; /**< List of filters. */
275 DBusMutex *slot_mutex; /**< Lock on slot_list so overall connection lock need not be taken */
276 DBusDataSlotList slot_list; /**< Data stored by allocated integer ID */
278 DBusHashTable *pending_replies; /**< Hash of message serials to #DBusPendingCall. */
280 dbus_uint32_t client_serial; /**< Client serial. Increments each time a message is sent */
281 DBusList *disconnect_message_link; /**< Preallocated list node for queueing the disconnection message */
283 DBusWakeupMainFunction wakeup_main_function; /**< Function to wake up the mainloop */
284 void *wakeup_main_data; /**< Application data for wakeup_main_function */
285 DBusFreeFunction free_wakeup_main_data; /**< free wakeup_main_data */
287 DBusDispatchStatusFunction dispatch_status_function; /**< Function on dispatch status changes */
288 void *dispatch_status_data; /**< Application data for dispatch_status_function */
289 DBusFreeFunction free_dispatch_status_data; /**< free dispatch_status_data */
291 DBusDispatchStatus last_dispatch_status; /**< The last dispatch status we reported to the application. */
293 DBusList *link_cache; /**< A cache of linked list links to prevent contention
294 * for the global linked list mempool lock
296 DBusObjectTree *objects; /**< Object path handlers registered with this connection */
298 char *server_guid; /**< GUID of server if we are in shared_connections, #NULL if server GUID is unknown or connection is private */
300 /* These two MUST be bools and not bitfields, because they are protected by a separate lock
301 * from connection->mutex and all bitfields in a word have to be read/written together.
302 * So you can't have a different lock for different bitfields in the same word.
304 dbus_bool_t dispatch_acquired; /**< Someone has dispatch path (can drain incoming queue) */
305 dbus_bool_t io_path_acquired; /**< Someone has transport io path (can use the transport to read/write messages) */
307 unsigned int shareable : 1; /**< #TRUE if libdbus owns a reference to the connection and can return it from dbus_connection_open() more than once */
309 unsigned int exit_on_disconnect : 1; /**< If #TRUE, exit after handling disconnect signal */
311 unsigned int route_peer_messages : 1; /**< If #TRUE, if org.freedesktop.DBus.Peer messages have a bus name, don't handle them automatically */
313 unsigned int disconnected_message_arrived : 1; /**< We popped or are dispatching the disconnected message.
314 * if the disconnect_message_link is NULL then we queued it, but
315 * this flag is whether it got to the head of the queue.
317 unsigned int disconnected_message_processed : 1; /**< We did our default handling of the disconnected message,
318 * such as closing the connection.
321 #ifndef DBUS_DISABLE_CHECKS
322 unsigned int have_connection_lock : 1; /**< Used to check locking */
325 #ifndef DBUS_DISABLE_CHECKS
326 int generation; /**< _dbus_current_generation that should correspond to this connection */
330 static DBusDispatchStatus _dbus_connection_get_dispatch_status_unlocked (DBusConnection *connection);
331 static void _dbus_connection_update_dispatch_status_and_unlock (DBusConnection *connection,
332 DBusDispatchStatus new_status);
333 static void _dbus_connection_last_unref (DBusConnection *connection);
334 static void _dbus_connection_acquire_dispatch (DBusConnection *connection);
335 static void _dbus_connection_release_dispatch (DBusConnection *connection);
336 static DBusDispatchStatus _dbus_connection_flush_unlocked (DBusConnection *connection);
337 static void _dbus_connection_close_possibly_shared_and_unlock (DBusConnection *connection);
338 static dbus_bool_t _dbus_connection_get_is_connected_unlocked (DBusConnection *connection);
339 static dbus_bool_t _dbus_connection_peek_for_reply_unlocked (DBusConnection *connection,
340 dbus_uint32_t client_serial);
342 static DBusMessageFilter *
343 _dbus_message_filter_ref (DBusMessageFilter *filter)
345 _dbus_assert (filter->refcount.value > 0);
346 _dbus_atomic_inc (&filter->refcount);
352 _dbus_message_filter_unref (DBusMessageFilter *filter)
354 _dbus_assert (filter->refcount.value > 0);
356 if (_dbus_atomic_dec (&filter->refcount) == 1)
358 if (filter->free_user_data_function)
359 (* filter->free_user_data_function) (filter->user_data);
366 * Acquires the connection lock.
368 * @param connection the connection.
371 _dbus_connection_lock (DBusConnection *connection)
373 CONNECTION_LOCK (connection);
377 * Releases the connection lock.
379 * @param connection the connection.
382 _dbus_connection_unlock (DBusConnection *connection)
384 CONNECTION_UNLOCK (connection);
388 * Wakes up the main loop if it is sleeping
389 * Needed if we're e.g. queueing outgoing messages
390 * on a thread while the mainloop sleeps.
392 * @param connection the connection.
395 _dbus_connection_wakeup_mainloop (DBusConnection *connection)
397 if (connection->wakeup_main_function)
398 (*connection->wakeup_main_function) (connection->wakeup_main_data);
401 #ifdef DBUS_BUILD_TESTS
402 /* For now this function isn't used */
404 * Adds a message to the incoming message queue, returning #FALSE
405 * if there's insufficient memory to queue the message.
406 * Does not take over refcount of the message.
408 * @param connection the connection.
409 * @param message the message to queue.
410 * @returns #TRUE on success.
413 _dbus_connection_queue_received_message (DBusConnection *connection,
414 DBusMessage *message)
418 link = _dbus_list_alloc_link (message);
422 dbus_message_ref (message);
423 _dbus_connection_queue_received_message_link (connection, link);
429 * Gets the locks so we can examine them
431 * @param connection the connection.
432 * @param mutex_loc return for the location of the main mutex pointer
433 * @param dispatch_mutex_loc return location of the dispatch mutex pointer
434 * @param io_path_mutex_loc return location of the io_path mutex pointer
435 * @param dispatch_cond_loc return location of the dispatch conditional
437 * @param io_path_cond_loc return location of the io_path conditional
441 _dbus_connection_test_get_locks (DBusConnection *connection,
442 DBusMutex **mutex_loc,
443 DBusMutex **dispatch_mutex_loc,
444 DBusMutex **io_path_mutex_loc,
445 DBusCondVar **dispatch_cond_loc,
446 DBusCondVar **io_path_cond_loc)
448 *mutex_loc = connection->mutex;
449 *dispatch_mutex_loc = connection->dispatch_mutex;
450 *io_path_mutex_loc = connection->io_path_mutex;
451 *dispatch_cond_loc = connection->dispatch_cond;
452 *io_path_cond_loc = connection->io_path_cond;
457 * Adds a message-containing list link to the incoming message queue,
458 * taking ownership of the link and the message's current refcount.
459 * Cannot fail due to lack of memory.
461 * @param connection the connection.
462 * @param link the message link to queue.
465 _dbus_connection_queue_received_message_link (DBusConnection *connection,
468 DBusPendingCall *pending;
469 dbus_uint32_t reply_serial;
470 DBusMessage *message;
472 _dbus_assert (_dbus_transport_get_is_authenticated (connection->transport));
474 _dbus_list_append_link (&connection->incoming_messages,
476 message = link->data;
478 /* If this is a reply we're waiting on, remove timeout for it */
479 reply_serial = dbus_message_get_reply_serial (message);
480 if (reply_serial != 0)
482 pending = _dbus_hash_table_lookup_int (connection->pending_replies,
486 if (_dbus_pending_call_is_timeout_added_unlocked (pending))
487 _dbus_connection_remove_timeout_unlocked (connection,
488 _dbus_pending_call_get_timeout_unlocked (pending));
490 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
496 connection->n_incoming += 1;
498 _dbus_connection_wakeup_mainloop (connection);
500 _dbus_verbose ("Message %p (%s %s %s %s '%s' reply to %u) added to incoming queue %p, %d incoming\n",
502 dbus_message_type_to_string (dbus_message_get_type (message)),
503 dbus_message_get_path (message) ?
504 dbus_message_get_path (message) :
506 dbus_message_get_interface (message) ?
507 dbus_message_get_interface (message) :
509 dbus_message_get_member (message) ?
510 dbus_message_get_member (message) :
512 dbus_message_get_signature (message),
513 dbus_message_get_reply_serial (message),
515 connection->n_incoming);}
518 * Adds a link + message to the incoming message queue.
519 * Can't fail. Takes ownership of both link and message.
521 * @param connection the connection.
522 * @param link the list node and message to queue.
526 _dbus_connection_queue_synthesized_message_link (DBusConnection *connection,
529 HAVE_LOCK_CHECK (connection);
531 _dbus_list_append_link (&connection->incoming_messages, link);
533 connection->n_incoming += 1;
535 _dbus_connection_wakeup_mainloop (connection);
537 _dbus_verbose ("Synthesized message %p added to incoming queue %p, %d incoming\n",
538 link->data, connection, connection->n_incoming);
543 * Checks whether there are messages in the outgoing message queue.
544 * Called with connection lock held.
546 * @param connection the connection.
547 * @returns #TRUE if the outgoing queue is non-empty.
550 _dbus_connection_has_messages_to_send_unlocked (DBusConnection *connection)
552 HAVE_LOCK_CHECK (connection);
553 return connection->outgoing_messages != NULL;
557 * Checks whether there are messages in the outgoing message queue.
558 * Use dbus_connection_flush() to block until all outgoing
559 * messages have been written to the underlying transport
560 * (such as a socket).
562 * @param connection the connection.
563 * @returns #TRUE if the outgoing queue is non-empty.
566 dbus_connection_has_messages_to_send (DBusConnection *connection)
570 _dbus_return_val_if_fail (connection != NULL, FALSE);
572 CONNECTION_LOCK (connection);
573 v = _dbus_connection_has_messages_to_send_unlocked (connection);
574 CONNECTION_UNLOCK (connection);
580 * Gets the next outgoing message. The message remains in the
581 * queue, and the caller does not own a reference to it.
583 * @param connection the connection.
584 * @returns the message to be sent.
587 _dbus_connection_get_message_to_send (DBusConnection *connection)
589 HAVE_LOCK_CHECK (connection);
591 return _dbus_list_get_last (&connection->outgoing_messages);
595 * Notifies the connection that a message has been sent, so the
596 * message can be removed from the outgoing queue.
597 * Called with the connection lock held.
599 * @param connection the connection.
600 * @param message the message that was sent.
603 _dbus_connection_message_sent (DBusConnection *connection,
604 DBusMessage *message)
608 HAVE_LOCK_CHECK (connection);
610 /* This can be called before we even complete authentication, since
611 * it's called on disconnect to clean up the outgoing queue.
612 * It's also called as we successfully send each message.
615 link = _dbus_list_get_last_link (&connection->outgoing_messages);
616 _dbus_assert (link != NULL);
617 _dbus_assert (link->data == message);
619 /* Save this link in the link cache */
620 _dbus_list_unlink (&connection->outgoing_messages,
622 _dbus_list_prepend_link (&connection->link_cache, link);
624 connection->n_outgoing -= 1;
626 _dbus_verbose ("Message %p (%s %s %s %s '%s') removed from outgoing queue %p, %d left to send\n",
628 dbus_message_type_to_string (dbus_message_get_type (message)),
629 dbus_message_get_path (message) ?
630 dbus_message_get_path (message) :
632 dbus_message_get_interface (message) ?
633 dbus_message_get_interface (message) :
635 dbus_message_get_member (message) ?
636 dbus_message_get_member (message) :
638 dbus_message_get_signature (message),
639 connection, connection->n_outgoing);
641 /* Save this link in the link cache also */
642 _dbus_message_remove_counter (message, connection->outgoing_counter,
644 _dbus_list_prepend_link (&connection->link_cache, link);
646 dbus_message_unref (message);
649 /** Function to be called in protected_change_watch() with refcount held */
650 typedef dbus_bool_t (* DBusWatchAddFunction) (DBusWatchList *list,
652 /** Function to be called in protected_change_watch() with refcount held */
653 typedef void (* DBusWatchRemoveFunction) (DBusWatchList *list,
655 /** Function to be called in protected_change_watch() with refcount held */
656 typedef void (* DBusWatchToggleFunction) (DBusWatchList *list,
658 dbus_bool_t enabled);
661 protected_change_watch (DBusConnection *connection,
663 DBusWatchAddFunction add_function,
664 DBusWatchRemoveFunction remove_function,
665 DBusWatchToggleFunction toggle_function,
670 HAVE_LOCK_CHECK (connection);
672 /* The original purpose of protected_change_watch() was to hold a
673 * ref on the connection while dropping the connection lock, then
674 * calling out to the app. This was a broken hack that did not
675 * work, since the connection was in a hosed state (no WatchList
676 * field) while calling out.
678 * So for now we'll just keep the lock while calling out. This means
679 * apps are not allowed to call DBusConnection methods inside a
680 * watch function or they will deadlock.
682 * The "real fix" is to use the _and_unlock() pattern found
683 * elsewhere in the code, to defer calling out to the app until
684 * we're about to drop locks and return flow of control to the app
687 * See http://lists.freedesktop.org/archives/dbus/2007-July/thread.html#8144
690 if (connection->watches)
693 retval = (* add_function) (connection->watches, watch);
694 else if (remove_function)
697 (* remove_function) (connection->watches, watch);
702 (* toggle_function) (connection->watches, watch, enabled);
712 * Adds a watch using the connection's DBusAddWatchFunction if
713 * available. Otherwise records the watch to be added when said
714 * function is available. Also re-adds the watch if the
715 * DBusAddWatchFunction changes. May fail due to lack of memory.
716 * Connection lock should be held when calling this.
718 * @param connection the connection.
719 * @param watch the watch to add.
720 * @returns #TRUE on success.
723 _dbus_connection_add_watch_unlocked (DBusConnection *connection,
726 return protected_change_watch (connection, watch,
727 _dbus_watch_list_add_watch,
732 * Removes a watch using the connection's DBusRemoveWatchFunction
733 * if available. It's an error to call this function on a watch
734 * that was not previously added.
735 * Connection lock should be held when calling this.
737 * @param connection the connection.
738 * @param watch the watch to remove.
741 _dbus_connection_remove_watch_unlocked (DBusConnection *connection,
744 protected_change_watch (connection, watch,
746 _dbus_watch_list_remove_watch,
751 * Toggles a watch and notifies app via connection's
752 * DBusWatchToggledFunction if available. It's an error to call this
753 * function on a watch that was not previously added.
754 * Connection lock should be held when calling this.
756 * @param connection the connection.
757 * @param watch the watch to toggle.
758 * @param enabled whether to enable or disable
761 _dbus_connection_toggle_watch_unlocked (DBusConnection *connection,
765 _dbus_assert (watch != NULL);
767 protected_change_watch (connection, watch,
769 _dbus_watch_list_toggle_watch,
773 /** Function to be called in protected_change_timeout() with refcount held */
774 typedef dbus_bool_t (* DBusTimeoutAddFunction) (DBusTimeoutList *list,
775 DBusTimeout *timeout);
776 /** Function to be called in protected_change_timeout() with refcount held */
777 typedef void (* DBusTimeoutRemoveFunction) (DBusTimeoutList *list,
778 DBusTimeout *timeout);
779 /** Function to be called in protected_change_timeout() with refcount held */
780 typedef void (* DBusTimeoutToggleFunction) (DBusTimeoutList *list,
781 DBusTimeout *timeout,
782 dbus_bool_t enabled);
785 protected_change_timeout (DBusConnection *connection,
786 DBusTimeout *timeout,
787 DBusTimeoutAddFunction add_function,
788 DBusTimeoutRemoveFunction remove_function,
789 DBusTimeoutToggleFunction toggle_function,
794 HAVE_LOCK_CHECK (connection);
796 /* The original purpose of protected_change_timeout() was to hold a
797 * ref on the connection while dropping the connection lock, then
798 * calling out to the app. This was a broken hack that did not
799 * work, since the connection was in a hosed state (no TimeoutList
800 * field) while calling out.
802 * So for now we'll just keep the lock while calling out. This means
803 * apps are not allowed to call DBusConnection methods inside a
804 * timeout function or they will deadlock.
806 * The "real fix" is to use the _and_unlock() pattern found
807 * elsewhere in the code, to defer calling out to the app until
808 * we're about to drop locks and return flow of control to the app
811 * See http://lists.freedesktop.org/archives/dbus/2007-July/thread.html#8144
814 if (connection->timeouts)
817 retval = (* add_function) (connection->timeouts, timeout);
818 else if (remove_function)
821 (* remove_function) (connection->timeouts, timeout);
826 (* toggle_function) (connection->timeouts, timeout, enabled);
835 * Adds a timeout using the connection's DBusAddTimeoutFunction if
836 * available. Otherwise records the timeout to be added when said
837 * function is available. Also re-adds the timeout if the
838 * DBusAddTimeoutFunction changes. May fail due to lack of memory.
839 * The timeout will fire repeatedly until removed.
840 * Connection lock should be held when calling this.
842 * @param connection the connection.
843 * @param timeout the timeout to add.
844 * @returns #TRUE on success.
847 _dbus_connection_add_timeout_unlocked (DBusConnection *connection,
848 DBusTimeout *timeout)
850 return protected_change_timeout (connection, timeout,
851 _dbus_timeout_list_add_timeout,
856 * Removes a timeout using the connection's DBusRemoveTimeoutFunction
857 * if available. It's an error to call this function on a timeout
858 * that was not previously added.
859 * Connection lock should be held when calling this.
861 * @param connection the connection.
862 * @param timeout the timeout to remove.
865 _dbus_connection_remove_timeout_unlocked (DBusConnection *connection,
866 DBusTimeout *timeout)
868 protected_change_timeout (connection, timeout,
870 _dbus_timeout_list_remove_timeout,
875 * Toggles a timeout and notifies app via connection's
876 * DBusTimeoutToggledFunction if available. It's an error to call this
877 * function on a timeout that was not previously added.
878 * Connection lock should be held when calling this.
880 * @param connection the connection.
881 * @param timeout the timeout to toggle.
882 * @param enabled whether to enable or disable
885 _dbus_connection_toggle_timeout_unlocked (DBusConnection *connection,
886 DBusTimeout *timeout,
889 protected_change_timeout (connection, timeout,
891 _dbus_timeout_list_toggle_timeout,
896 _dbus_connection_attach_pending_call_unlocked (DBusConnection *connection,
897 DBusPendingCall *pending)
899 dbus_uint32_t reply_serial;
900 DBusTimeout *timeout;
902 HAVE_LOCK_CHECK (connection);
904 reply_serial = _dbus_pending_call_get_reply_serial_unlocked (pending);
906 _dbus_assert (reply_serial != 0);
908 timeout = _dbus_pending_call_get_timeout_unlocked (pending);
912 if (!_dbus_connection_add_timeout_unlocked (connection, timeout))
915 if (!_dbus_hash_table_insert_int (connection->pending_replies,
919 _dbus_connection_remove_timeout_unlocked (connection, timeout);
921 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
922 HAVE_LOCK_CHECK (connection);
926 _dbus_pending_call_set_timeout_added_unlocked (pending, TRUE);
930 if (!_dbus_hash_table_insert_int (connection->pending_replies,
934 HAVE_LOCK_CHECK (connection);
939 _dbus_pending_call_ref_unlocked (pending);
941 HAVE_LOCK_CHECK (connection);
947 free_pending_call_on_hash_removal (void *data)
949 DBusPendingCall *pending;
950 DBusConnection *connection;
957 connection = _dbus_pending_call_get_connection_unlocked (pending);
959 HAVE_LOCK_CHECK (connection);
961 if (_dbus_pending_call_is_timeout_added_unlocked (pending))
963 _dbus_connection_remove_timeout_unlocked (connection,
964 _dbus_pending_call_get_timeout_unlocked (pending));
966 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
969 /* FIXME 1.0? this is sort of dangerous and undesirable to drop the lock
970 * here, but the pending call finalizer could in principle call out to
971 * application code so we pretty much have to... some larger code reorg
974 _dbus_connection_ref_unlocked (connection);
975 _dbus_pending_call_unref_and_unlock (pending);
976 CONNECTION_LOCK (connection);
977 _dbus_connection_unref_unlocked (connection);
981 _dbus_connection_detach_pending_call_unlocked (DBusConnection *connection,
982 DBusPendingCall *pending)
984 /* This ends up unlocking to call the pending call finalizer, which is unexpected to
987 _dbus_hash_table_remove_int (connection->pending_replies,
988 _dbus_pending_call_get_reply_serial_unlocked (pending));
992 _dbus_connection_detach_pending_call_and_unlock (DBusConnection *connection,
993 DBusPendingCall *pending)
995 /* The idea here is to avoid finalizing the pending call
996 * with the lock held, since there's a destroy notifier
997 * in pending call that goes out to application code.
999 * There's an extra unlock inside the hash table
1000 * "free pending call" function FIXME...
1002 _dbus_pending_call_ref_unlocked (pending);
1003 _dbus_hash_table_remove_int (connection->pending_replies,
1004 _dbus_pending_call_get_reply_serial_unlocked (pending));
1006 if (_dbus_pending_call_is_timeout_added_unlocked (pending))
1007 _dbus_connection_remove_timeout_unlocked (connection,
1008 _dbus_pending_call_get_timeout_unlocked (pending));
1010 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
1012 _dbus_pending_call_unref_and_unlock (pending);
1016 * Removes a pending call from the connection, such that
1017 * the pending reply will be ignored. May drop the last
1018 * reference to the pending call.
1020 * @param connection the connection
1021 * @param pending the pending call
1024 _dbus_connection_remove_pending_call (DBusConnection *connection,
1025 DBusPendingCall *pending)
1027 CONNECTION_LOCK (connection);
1028 _dbus_connection_detach_pending_call_and_unlock (connection, pending);
1032 * Acquire the transporter I/O path. This must be done before
1033 * doing any I/O in the transporter. May sleep and drop the
1034 * IO path mutex while waiting for the I/O path.
1036 * @param connection the connection.
1037 * @param timeout_milliseconds maximum blocking time, or -1 for no limit.
1038 * @returns TRUE if the I/O path was acquired.
1041 _dbus_connection_acquire_io_path (DBusConnection *connection,
1042 int timeout_milliseconds)
1044 dbus_bool_t we_acquired;
1046 HAVE_LOCK_CHECK (connection);
1048 /* We don't want the connection to vanish */
1049 _dbus_connection_ref_unlocked (connection);
1051 /* We will only touch io_path_acquired which is protected by our mutex */
1052 CONNECTION_UNLOCK (connection);
1054 _dbus_verbose ("locking io_path_mutex\n");
1055 _dbus_mutex_lock (connection->io_path_mutex);
1057 _dbus_verbose ("start connection->io_path_acquired = %d timeout = %d\n",
1058 connection->io_path_acquired, timeout_milliseconds);
1060 we_acquired = FALSE;
1062 if (connection->io_path_acquired)
1064 if (timeout_milliseconds != -1)
1066 _dbus_verbose ("waiting %d for IO path to be acquirable\n",
1067 timeout_milliseconds);
1069 if (!_dbus_condvar_wait_timeout (connection->io_path_cond,
1070 connection->io_path_mutex,
1071 timeout_milliseconds))
1073 /* We timed out before anyone signaled. */
1074 /* (writing the loop to handle the !timedout case by
1075 * waiting longer if needed is a pain since dbus
1076 * wraps pthread_cond_timedwait to take a relative
1077 * time instead of absolute, something kind of stupid
1078 * on our part. for now it doesn't matter, we will just
1079 * end up back here eventually.)
1085 while (connection->io_path_acquired)
1087 _dbus_verbose ("waiting for IO path to be acquirable\n");
1088 _dbus_condvar_wait (connection->io_path_cond,
1089 connection->io_path_mutex);
1094 if (!connection->io_path_acquired)
1097 connection->io_path_acquired = TRUE;
1100 _dbus_verbose ("end connection->io_path_acquired = %d we_acquired = %d\n",
1101 connection->io_path_acquired, we_acquired);
1103 _dbus_verbose ("unlocking io_path_mutex\n");
1104 _dbus_mutex_unlock (connection->io_path_mutex);
1106 CONNECTION_LOCK (connection);
1108 HAVE_LOCK_CHECK (connection);
1110 _dbus_connection_unref_unlocked (connection);
1116 * Release the I/O path when you're done with it. Only call
1117 * after you've acquired the I/O. Wakes up at most one thread
1118 * currently waiting to acquire the I/O path.
1120 * @param connection the connection.
1123 _dbus_connection_release_io_path (DBusConnection *connection)
1125 HAVE_LOCK_CHECK (connection);
1127 _dbus_verbose ("locking io_path_mutex\n");
1128 _dbus_mutex_lock (connection->io_path_mutex);
1130 _dbus_assert (connection->io_path_acquired);
1132 _dbus_verbose ("start connection->io_path_acquired = %d\n",
1133 connection->io_path_acquired);
1135 connection->io_path_acquired = FALSE;
1136 _dbus_condvar_wake_one (connection->io_path_cond);
1138 _dbus_verbose ("unlocking io_path_mutex\n");
1139 _dbus_mutex_unlock (connection->io_path_mutex);
1143 * Queues incoming messages and sends outgoing messages for this
1144 * connection, optionally blocking in the process. Each call to
1145 * _dbus_connection_do_iteration_unlocked() will call select() or poll() one
1146 * time and then read or write data if possible.
1148 * The purpose of this function is to be able to flush outgoing
1149 * messages or queue up incoming messages without returning
1150 * control to the application and causing reentrancy weirdness.
1152 * The flags parameter allows you to specify whether to
1153 * read incoming messages, write outgoing messages, or both,
1154 * and whether to block if no immediate action is possible.
1156 * The timeout_milliseconds parameter does nothing unless the
1157 * iteration is blocking.
1159 * If there are no outgoing messages and DBUS_ITERATION_DO_READING
1160 * wasn't specified, then it's impossible to block, even if
1161 * you specify DBUS_ITERATION_BLOCK; in that case the function
1162 * returns immediately.
1164 * If pending is not NULL then a check is made if the pending call
1165 * is completed after the io path has been required. If the call
1166 * has been completed nothing is done. This must be done since
1167 * the _dbus_connection_acquire_io_path releases the connection
1170 * Called with connection lock held.
1172 * @param connection the connection.
1173 * @param pending the pending call that should be checked or NULL
1174 * @param flags iteration flags.
1175 * @param timeout_milliseconds maximum blocking time, or -1 for no limit.
1178 _dbus_connection_do_iteration_unlocked (DBusConnection *connection,
1179 DBusPendingCall *pending,
1181 int timeout_milliseconds)
1183 _dbus_verbose ("start\n");
1185 HAVE_LOCK_CHECK (connection);
1187 if (connection->n_outgoing == 0)
1188 flags &= ~DBUS_ITERATION_DO_WRITING;
1190 if (_dbus_connection_acquire_io_path (connection,
1191 (flags & DBUS_ITERATION_BLOCK) ? timeout_milliseconds : 0))
1193 HAVE_LOCK_CHECK (connection);
1195 if ( (pending != NULL) && _dbus_pending_call_get_completed_unlocked(pending))
1197 _dbus_verbose ("pending call completed while acquiring I/O path");
1199 else if ( (pending != NULL) &&
1200 _dbus_connection_peek_for_reply_unlocked (connection,
1201 _dbus_pending_call_get_reply_serial_unlocked (pending)))
1203 _dbus_verbose ("pending call completed while acquiring I/O path (reply found in queue)");
1207 _dbus_transport_do_iteration (connection->transport,
1208 flags, timeout_milliseconds);
1211 _dbus_connection_release_io_path (connection);
1214 HAVE_LOCK_CHECK (connection);
1216 _dbus_verbose ("end\n");
1220 * Creates a new connection for the given transport. A transport
1221 * represents a message stream that uses some concrete mechanism, such
1222 * as UNIX domain sockets. May return #NULL if insufficient
1223 * memory exists to create the connection.
1225 * @param transport the transport.
1226 * @returns the new connection, or #NULL on failure.
1229 _dbus_connection_new_for_transport (DBusTransport *transport)
1231 DBusConnection *connection;
1232 DBusWatchList *watch_list;
1233 DBusTimeoutList *timeout_list;
1234 DBusHashTable *pending_replies;
1235 DBusList *disconnect_link;
1236 DBusMessage *disconnect_message;
1237 DBusCounter *outgoing_counter;
1238 DBusObjectTree *objects;
1242 pending_replies = NULL;
1243 timeout_list = NULL;
1244 disconnect_link = NULL;
1245 disconnect_message = NULL;
1246 outgoing_counter = NULL;
1249 watch_list = _dbus_watch_list_new ();
1250 if (watch_list == NULL)
1253 timeout_list = _dbus_timeout_list_new ();
1254 if (timeout_list == NULL)
1258 _dbus_hash_table_new (DBUS_HASH_INT,
1260 (DBusFreeFunction)free_pending_call_on_hash_removal);
1261 if (pending_replies == NULL)
1264 connection = dbus_new0 (DBusConnection, 1);
1265 if (connection == NULL)
1268 _dbus_mutex_new_at_location (&connection->mutex);
1269 if (connection->mutex == NULL)
1272 _dbus_mutex_new_at_location (&connection->io_path_mutex);
1273 if (connection->io_path_mutex == NULL)
1276 _dbus_mutex_new_at_location (&connection->dispatch_mutex);
1277 if (connection->dispatch_mutex == NULL)
1280 _dbus_condvar_new_at_location (&connection->dispatch_cond);
1281 if (connection->dispatch_cond == NULL)
1284 _dbus_condvar_new_at_location (&connection->io_path_cond);
1285 if (connection->io_path_cond == NULL)
1288 _dbus_mutex_new_at_location (&connection->slot_mutex);
1289 if (connection->slot_mutex == NULL)
1292 disconnect_message = dbus_message_new_signal (DBUS_PATH_LOCAL,
1293 DBUS_INTERFACE_LOCAL,
1296 if (disconnect_message == NULL)
1299 disconnect_link = _dbus_list_alloc_link (disconnect_message);
1300 if (disconnect_link == NULL)
1303 outgoing_counter = _dbus_counter_new ();
1304 if (outgoing_counter == NULL)
1307 objects = _dbus_object_tree_new (connection);
1308 if (objects == NULL)
1311 if (_dbus_modify_sigpipe)
1312 _dbus_disable_sigpipe ();
1314 connection->refcount.value = 1;
1315 connection->transport = transport;
1316 connection->watches = watch_list;
1317 connection->timeouts = timeout_list;
1318 connection->pending_replies = pending_replies;
1319 connection->outgoing_counter = outgoing_counter;
1320 connection->filter_list = NULL;
1321 connection->last_dispatch_status = DBUS_DISPATCH_COMPLETE; /* so we're notified first time there's data */
1322 connection->objects = objects;
1323 connection->exit_on_disconnect = FALSE;
1324 connection->shareable = FALSE;
1325 connection->route_peer_messages = FALSE;
1326 connection->disconnected_message_arrived = FALSE;
1327 connection->disconnected_message_processed = FALSE;
1329 #ifndef DBUS_DISABLE_CHECKS
1330 connection->generation = _dbus_current_generation;
1333 _dbus_data_slot_list_init (&connection->slot_list);
1335 connection->client_serial = 1;
1337 connection->disconnect_message_link = disconnect_link;
1339 CONNECTION_LOCK (connection);
1341 if (!_dbus_transport_set_connection (transport, connection))
1343 CONNECTION_UNLOCK (connection);
1348 _dbus_transport_ref (transport);
1350 CONNECTION_UNLOCK (connection);
1355 if (disconnect_message != NULL)
1356 dbus_message_unref (disconnect_message);
1358 if (disconnect_link != NULL)
1359 _dbus_list_free_link (disconnect_link);
1361 if (connection != NULL)
1363 _dbus_condvar_free_at_location (&connection->io_path_cond);
1364 _dbus_condvar_free_at_location (&connection->dispatch_cond);
1365 _dbus_mutex_free_at_location (&connection->mutex);
1366 _dbus_mutex_free_at_location (&connection->io_path_mutex);
1367 _dbus_mutex_free_at_location (&connection->dispatch_mutex);
1368 _dbus_mutex_free_at_location (&connection->slot_mutex);
1369 dbus_free (connection);
1371 if (pending_replies)
1372 _dbus_hash_table_unref (pending_replies);
1375 _dbus_watch_list_free (watch_list);
1378 _dbus_timeout_list_free (timeout_list);
1380 if (outgoing_counter)
1381 _dbus_counter_unref (outgoing_counter);
1384 _dbus_object_tree_unref (objects);
1390 * Increments the reference count of a DBusConnection.
1391 * Requires that the caller already holds the connection lock.
1393 * @param connection the connection.
1394 * @returns the connection.
1397 _dbus_connection_ref_unlocked (DBusConnection *connection)
1399 _dbus_assert (connection != NULL);
1400 _dbus_assert (connection->generation == _dbus_current_generation);
1402 HAVE_LOCK_CHECK (connection);
1404 _dbus_atomic_inc (&connection->refcount);
1410 * Decrements the reference count of a DBusConnection.
1411 * Requires that the caller already holds the connection lock.
1413 * @param connection the connection.
1416 _dbus_connection_unref_unlocked (DBusConnection *connection)
1418 dbus_bool_t last_unref;
1420 HAVE_LOCK_CHECK (connection);
1422 _dbus_assert (connection != NULL);
1424 last_unref = (_dbus_atomic_dec (&connection->refcount) == 1);
1427 _dbus_connection_last_unref (connection);
1430 static dbus_uint32_t
1431 _dbus_connection_get_next_client_serial (DBusConnection *connection)
1433 dbus_uint32_t serial;
1435 serial = connection->client_serial++;
1437 if (connection->client_serial == 0)
1438 connection->client_serial = 1;
1444 * A callback for use with dbus_watch_new() to create a DBusWatch.
1446 * @todo This is basically a hack - we could delete _dbus_transport_handle_watch()
1447 * and the virtual handle_watch in DBusTransport if we got rid of it.
1448 * The reason this is some work is threading, see the _dbus_connection_handle_watch()
1451 * @param watch the watch.
1452 * @param condition the current condition of the file descriptors being watched.
1453 * @param data must be a pointer to a #DBusConnection
1454 * @returns #FALSE if the IO condition may not have been fully handled due to lack of memory
1457 _dbus_connection_handle_watch (DBusWatch *watch,
1458 unsigned int condition,
1461 DBusConnection *connection;
1463 DBusDispatchStatus status;
1467 _dbus_verbose ("start\n");
1469 CONNECTION_LOCK (connection);
1471 if (!_dbus_connection_acquire_io_path (connection, 1))
1473 /* another thread is handling the message */
1474 CONNECTION_UNLOCK (connection);
1478 HAVE_LOCK_CHECK (connection);
1479 retval = _dbus_transport_handle_watch (connection->transport,
1482 _dbus_connection_release_io_path (connection);
1484 HAVE_LOCK_CHECK (connection);
1486 _dbus_verbose ("middle\n");
1488 status = _dbus_connection_get_dispatch_status_unlocked (connection);
1490 /* this calls out to user code */
1491 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
1493 _dbus_verbose ("end\n");
1498 _DBUS_DEFINE_GLOBAL_LOCK (shared_connections);
1499 static DBusHashTable *shared_connections = NULL;
1500 static DBusList *shared_connections_no_guid = NULL;
1503 close_connection_on_shutdown (DBusConnection *connection)
1505 DBusMessage *message;
1507 dbus_connection_ref (connection);
1508 _dbus_connection_close_possibly_shared (connection);
1510 /* Churn through to the Disconnected message */
1511 while ((message = dbus_connection_pop_message (connection)))
1513 dbus_message_unref (message);
1515 dbus_connection_unref (connection);
1519 shared_connections_shutdown (void *data)
1523 _DBUS_LOCK (shared_connections);
1525 /* This is a little bit unpleasant... better ideas? */
1526 while ((n_entries = _dbus_hash_table_get_n_entries (shared_connections)) > 0)
1528 DBusConnection *connection;
1531 _dbus_hash_iter_init (shared_connections, &iter);
1532 _dbus_hash_iter_next (&iter);
1534 connection = _dbus_hash_iter_get_value (&iter);
1536 _DBUS_UNLOCK (shared_connections);
1537 close_connection_on_shutdown (connection);
1538 _DBUS_LOCK (shared_connections);
1540 /* The connection should now be dead and not in our hash ... */
1541 _dbus_assert (_dbus_hash_table_get_n_entries (shared_connections) < n_entries);
1544 _dbus_assert (_dbus_hash_table_get_n_entries (shared_connections) == 0);
1546 _dbus_hash_table_unref (shared_connections);
1547 shared_connections = NULL;
1549 if (shared_connections_no_guid != NULL)
1551 DBusConnection *connection;
1552 connection = _dbus_list_pop_first (&shared_connections_no_guid);
1553 while (connection != NULL)
1555 _DBUS_UNLOCK (shared_connections);
1556 close_connection_on_shutdown (connection);
1557 _DBUS_LOCK (shared_connections);
1558 connection = _dbus_list_pop_first (&shared_connections_no_guid);
1562 shared_connections_no_guid = NULL;
1564 _DBUS_UNLOCK (shared_connections);
1568 connection_lookup_shared (DBusAddressEntry *entry,
1569 DBusConnection **result)
1571 _dbus_verbose ("checking for existing connection\n");
1575 _DBUS_LOCK (shared_connections);
1577 if (shared_connections == NULL)
1579 _dbus_verbose ("creating shared_connections hash table\n");
1581 shared_connections = _dbus_hash_table_new (DBUS_HASH_STRING,
1584 if (shared_connections == NULL)
1586 _DBUS_UNLOCK (shared_connections);
1590 if (!_dbus_register_shutdown_func (shared_connections_shutdown, NULL))
1592 _dbus_hash_table_unref (shared_connections);
1593 shared_connections = NULL;
1594 _DBUS_UNLOCK (shared_connections);
1598 _dbus_verbose (" successfully created shared_connections\n");
1600 _DBUS_UNLOCK (shared_connections);
1601 return TRUE; /* no point looking up in the hash we just made */
1607 guid = dbus_address_entry_get_value (entry, "guid");
1611 DBusConnection *connection;
1613 connection = _dbus_hash_table_lookup_string (shared_connections,
1618 /* The DBusConnection can't be finalized without taking
1619 * the shared_connections lock to remove it from the
1620 * hash. So it's safe to ref the connection here.
1621 * However, it may be disconnected if the Disconnected
1622 * message hasn't been processed yet, in which case we
1623 * want to pretend it isn't in the hash and avoid
1626 * The idea is to avoid ever returning a disconnected connection
1627 * from dbus_connection_open(). We could just synchronously
1628 * drop our shared ref to the connection on connection disconnect,
1629 * and then assert here that the connection is connected, but
1630 * that causes reentrancy headaches.
1632 CONNECTION_LOCK (connection);
1633 if (_dbus_connection_get_is_connected_unlocked (connection))
1635 _dbus_connection_ref_unlocked (connection);
1636 *result = connection;
1637 _dbus_verbose ("looked up existing connection to server guid %s\n",
1642 _dbus_verbose ("looked up existing connection to server guid %s but it was disconnected so ignoring it\n",
1645 CONNECTION_UNLOCK (connection);
1649 _DBUS_UNLOCK (shared_connections);
1655 connection_record_shared_unlocked (DBusConnection *connection,
1659 char *guid_in_connection;
1661 HAVE_LOCK_CHECK (connection);
1662 _dbus_assert (connection->server_guid == NULL);
1663 _dbus_assert (connection->shareable);
1665 /* get a hard ref on this connection, even if
1666 * we won't in fact store it in the hash, we still
1667 * need to hold a ref on it until it's disconnected.
1669 _dbus_connection_ref_unlocked (connection);
1673 _DBUS_LOCK (shared_connections);
1675 if (!_dbus_list_prepend (&shared_connections_no_guid, connection))
1677 _DBUS_UNLOCK (shared_connections);
1681 _DBUS_UNLOCK (shared_connections);
1682 return TRUE; /* don't store in the hash */
1685 /* A separate copy of the key is required in the hash table, because
1686 * we don't have a lock on the connection when we are doing a hash
1690 guid_key = _dbus_strdup (guid);
1691 if (guid_key == NULL)
1694 guid_in_connection = _dbus_strdup (guid);
1695 if (guid_in_connection == NULL)
1697 dbus_free (guid_key);
1701 _DBUS_LOCK (shared_connections);
1702 _dbus_assert (shared_connections != NULL);
1704 if (!_dbus_hash_table_insert_string (shared_connections,
1705 guid_key, connection))
1707 dbus_free (guid_key);
1708 dbus_free (guid_in_connection);
1709 _DBUS_UNLOCK (shared_connections);
1713 connection->server_guid = guid_in_connection;
1715 _dbus_verbose ("stored connection to %s to be shared\n",
1716 connection->server_guid);
1718 _DBUS_UNLOCK (shared_connections);
1720 _dbus_assert (connection->server_guid != NULL);
1726 connection_forget_shared_unlocked (DBusConnection *connection)
1728 HAVE_LOCK_CHECK (connection);
1730 if (!connection->shareable)
1733 _DBUS_LOCK (shared_connections);
1735 if (connection->server_guid != NULL)
1737 _dbus_verbose ("dropping connection to %s out of the shared table\n",
1738 connection->server_guid);
1740 if (!_dbus_hash_table_remove_string (shared_connections,
1741 connection->server_guid))
1742 _dbus_assert_not_reached ("connection was not in the shared table");
1744 dbus_free (connection->server_guid);
1745 connection->server_guid = NULL;
1749 _dbus_list_remove (&shared_connections_no_guid, connection);
1752 _DBUS_UNLOCK (shared_connections);
1754 /* remove our reference held on all shareable connections */
1755 _dbus_connection_unref_unlocked (connection);
1758 static DBusConnection*
1759 connection_try_from_address_entry (DBusAddressEntry *entry,
1762 DBusTransport *transport;
1763 DBusConnection *connection;
1765 transport = _dbus_transport_open (entry, error);
1767 if (transport == NULL)
1769 _DBUS_ASSERT_ERROR_IS_SET (error);
1773 connection = _dbus_connection_new_for_transport (transport);
1775 _dbus_transport_unref (transport);
1777 if (connection == NULL)
1779 _DBUS_SET_OOM (error);
1783 #ifndef DBUS_DISABLE_CHECKS
1784 _dbus_assert (!connection->have_connection_lock);
1790 * If the shared parameter is true, then any existing connection will
1791 * be used (and if a new connection is created, it will be available
1792 * for use by others). If the shared parameter is false, a new
1793 * connection will always be created, and the new connection will
1794 * never be returned to other callers.
1796 * @param address the address
1797 * @param shared whether the connection is shared or private
1798 * @param error error return
1799 * @returns the connection or #NULL on error
1801 static DBusConnection*
1802 _dbus_connection_open_internal (const char *address,
1806 DBusConnection *connection;
1807 DBusAddressEntry **entries;
1808 DBusError tmp_error = DBUS_ERROR_INIT;
1809 DBusError first_error = DBUS_ERROR_INIT;
1812 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1814 _dbus_verbose ("opening %s connection to: %s\n",
1815 shared ? "shared" : "private", address);
1817 if (!dbus_parse_address (address, &entries, &len, error))
1820 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1824 for (i = 0; i < len; i++)
1828 if (!connection_lookup_shared (entries[i], &connection))
1829 _DBUS_SET_OOM (&tmp_error);
1832 if (connection == NULL)
1834 connection = connection_try_from_address_entry (entries[i],
1837 if (connection != NULL && shared)
1841 connection->shareable = TRUE;
1843 /* guid may be NULL */
1844 guid = dbus_address_entry_get_value (entries[i], "guid");
1846 CONNECTION_LOCK (connection);
1848 if (!connection_record_shared_unlocked (connection, guid))
1850 _DBUS_SET_OOM (&tmp_error);
1851 _dbus_connection_close_possibly_shared_and_unlock (connection);
1852 dbus_connection_unref (connection);
1856 CONNECTION_UNLOCK (connection);
1863 _DBUS_ASSERT_ERROR_IS_SET (&tmp_error);
1866 dbus_move_error (&tmp_error, &first_error);
1868 dbus_error_free (&tmp_error);
1871 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1872 _DBUS_ASSERT_ERROR_IS_CLEAR (&tmp_error);
1874 if (connection == NULL)
1876 _DBUS_ASSERT_ERROR_IS_SET (&first_error);
1877 dbus_move_error (&first_error, error);
1880 dbus_error_free (&first_error);
1882 dbus_address_entries_free (entries);
1887 * Closes a shared OR private connection, while dbus_connection_close() can
1888 * only be used on private connections. Should only be called by the
1889 * dbus code that owns the connection - an owner must be known,
1890 * the open/close state is like malloc/free, not like ref/unref.
1892 * @param connection the connection
1895 _dbus_connection_close_possibly_shared (DBusConnection *connection)
1897 _dbus_assert (connection != NULL);
1898 _dbus_assert (connection->generation == _dbus_current_generation);
1900 CONNECTION_LOCK (connection);
1901 _dbus_connection_close_possibly_shared_and_unlock (connection);
1904 static DBusPreallocatedSend*
1905 _dbus_connection_preallocate_send_unlocked (DBusConnection *connection)
1907 DBusPreallocatedSend *preallocated;
1909 HAVE_LOCK_CHECK (connection);
1911 _dbus_assert (connection != NULL);
1913 preallocated = dbus_new (DBusPreallocatedSend, 1);
1914 if (preallocated == NULL)
1917 if (connection->link_cache != NULL)
1919 preallocated->queue_link =
1920 _dbus_list_pop_first_link (&connection->link_cache);
1921 preallocated->queue_link->data = NULL;
1925 preallocated->queue_link = _dbus_list_alloc_link (NULL);
1926 if (preallocated->queue_link == NULL)
1930 if (connection->link_cache != NULL)
1932 preallocated->counter_link =
1933 _dbus_list_pop_first_link (&connection->link_cache);
1934 preallocated->counter_link->data = connection->outgoing_counter;
1938 preallocated->counter_link = _dbus_list_alloc_link (connection->outgoing_counter);
1939 if (preallocated->counter_link == NULL)
1943 _dbus_counter_ref (preallocated->counter_link->data);
1945 preallocated->connection = connection;
1947 return preallocated;
1950 _dbus_list_free_link (preallocated->queue_link);
1952 dbus_free (preallocated);
1957 /* Called with lock held, does not update dispatch status */
1959 _dbus_connection_send_preallocated_unlocked_no_update (DBusConnection *connection,
1960 DBusPreallocatedSend *preallocated,
1961 DBusMessage *message,
1962 dbus_uint32_t *client_serial)
1964 dbus_uint32_t serial;
1966 preallocated->queue_link->data = message;
1967 _dbus_list_prepend_link (&connection->outgoing_messages,
1968 preallocated->queue_link);
1970 _dbus_message_add_counter_link (message,
1971 preallocated->counter_link);
1973 dbus_free (preallocated);
1974 preallocated = NULL;
1976 dbus_message_ref (message);
1978 connection->n_outgoing += 1;
1980 _dbus_verbose ("Message %p (%s %s %s %s '%s') for %s added to outgoing queue %p, %d pending to send\n",
1982 dbus_message_type_to_string (dbus_message_get_type (message)),
1983 dbus_message_get_path (message) ?
1984 dbus_message_get_path (message) :
1986 dbus_message_get_interface (message) ?
1987 dbus_message_get_interface (message) :
1989 dbus_message_get_member (message) ?
1990 dbus_message_get_member (message) :
1992 dbus_message_get_signature (message),
1993 dbus_message_get_destination (message) ?
1994 dbus_message_get_destination (message) :
1997 connection->n_outgoing);
1999 if (dbus_message_get_serial (message) == 0)
2001 serial = _dbus_connection_get_next_client_serial (connection);
2002 dbus_message_set_serial (message, serial);
2004 *client_serial = serial;
2009 *client_serial = dbus_message_get_serial (message);
2012 _dbus_verbose ("Message %p serial is %u\n",
2013 message, dbus_message_get_serial (message));
2015 dbus_message_lock (message);
2017 /* Now we need to run an iteration to hopefully just write the messages
2018 * out immediately, and otherwise get them queued up
2020 _dbus_connection_do_iteration_unlocked (connection,
2022 DBUS_ITERATION_DO_WRITING,
2025 /* If stuff is still queued up, be sure we wake up the main loop */
2026 if (connection->n_outgoing > 0)
2027 _dbus_connection_wakeup_mainloop (connection);
2031 _dbus_connection_send_preallocated_and_unlock (DBusConnection *connection,
2032 DBusPreallocatedSend *preallocated,
2033 DBusMessage *message,
2034 dbus_uint32_t *client_serial)
2036 DBusDispatchStatus status;
2038 HAVE_LOCK_CHECK (connection);
2040 _dbus_connection_send_preallocated_unlocked_no_update (connection,
2042 message, client_serial);
2044 _dbus_verbose ("middle\n");
2045 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2047 /* this calls out to user code */
2048 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2052 * Like dbus_connection_send(), but assumes the connection
2053 * is already locked on function entry, and unlocks before returning.
2055 * @param connection the connection
2056 * @param message the message to send
2057 * @param client_serial return location for client serial of sent message
2058 * @returns #FALSE on out-of-memory
2061 _dbus_connection_send_and_unlock (DBusConnection *connection,
2062 DBusMessage *message,
2063 dbus_uint32_t *client_serial)
2065 DBusPreallocatedSend *preallocated;
2067 _dbus_assert (connection != NULL);
2068 _dbus_assert (message != NULL);
2070 preallocated = _dbus_connection_preallocate_send_unlocked (connection);
2071 if (preallocated == NULL)
2073 CONNECTION_UNLOCK (connection);
2077 _dbus_connection_send_preallocated_and_unlock (connection,
2085 * Used internally to handle the semantics of dbus_server_set_new_connection_function().
2086 * If the new connection function does not ref the connection, we want to close it.
2088 * A bit of a hack, probably the new connection function should have returned a value
2089 * for whether to close, or should have had to close the connection itself if it
2092 * But, this works OK as long as the new connection function doesn't do anything
2093 * crazy like keep the connection around without ref'ing it.
2095 * We have to lock the connection across refcount check and close in case
2096 * the new connection function spawns a thread that closes and unrefs.
2097 * In that case, if the app thread
2098 * closes and unrefs first, we'll harmlessly close again; if the app thread
2099 * still has the ref, we'll close and then the app will close harmlessly.
2100 * If the app unrefs without closing, the app is broken since if the
2101 * app refs from the new connection function it is supposed to also close.
2103 * If we didn't atomically check the refcount and close with the lock held
2104 * though, we could screw this up.
2106 * @param connection the connection
2109 _dbus_connection_close_if_only_one_ref (DBusConnection *connection)
2111 dbus_int32_t tmp_refcount;
2113 CONNECTION_LOCK (connection);
2115 /* We increment and then decrement the refcount, because there is no
2116 * _dbus_atomic_get (mirroring the fact that there's no InterlockedGet
2118 _dbus_atomic_inc (&connection->refcount);
2119 tmp_refcount = _dbus_atomic_dec (&connection->refcount);
2121 /* The caller should have one ref, and this function temporarily took
2122 * one more, which is reflected in this count even though we already
2123 * released it (relying on the caller's ref) due to _dbus_atomic_dec
2125 _dbus_assert (tmp_refcount >= 2);
2127 if (tmp_refcount == 2)
2128 _dbus_connection_close_possibly_shared_and_unlock (connection);
2130 CONNECTION_UNLOCK (connection);
2135 * When a function that blocks has been called with a timeout, and we
2136 * run out of memory, the time to wait for memory is based on the
2137 * timeout. If the caller was willing to block a long time we wait a
2138 * relatively long time for memory, if they were only willing to block
2139 * briefly then we retry for memory at a rapid rate.
2141 * @timeout_milliseconds the timeout requested for blocking
2144 _dbus_memory_pause_based_on_timeout (int timeout_milliseconds)
2146 if (timeout_milliseconds == -1)
2147 _dbus_sleep_milliseconds (1000);
2148 else if (timeout_milliseconds < 100)
2149 ; /* just busy loop */
2150 else if (timeout_milliseconds <= 1000)
2151 _dbus_sleep_milliseconds (timeout_milliseconds / 3);
2153 _dbus_sleep_milliseconds (1000);
2156 static DBusMessage *
2157 generate_local_error_message (dbus_uint32_t serial,
2161 DBusMessage *message;
2162 message = dbus_message_new (DBUS_MESSAGE_TYPE_ERROR);
2166 if (!dbus_message_set_error_name (message, error_name))
2168 dbus_message_unref (message);
2173 dbus_message_set_no_reply (message, TRUE);
2175 if (!dbus_message_set_reply_serial (message,
2178 dbus_message_unref (message);
2183 if (error_msg != NULL)
2185 DBusMessageIter iter;
2187 dbus_message_iter_init_append (message, &iter);
2188 if (!dbus_message_iter_append_basic (&iter,
2192 dbus_message_unref (message);
2203 * Peek the incoming queue to see if we got reply for a specific serial
2206 _dbus_connection_peek_for_reply_unlocked (DBusConnection *connection,
2207 dbus_uint32_t client_serial)
2210 HAVE_LOCK_CHECK (connection);
2212 link = _dbus_list_get_first_link (&connection->incoming_messages);
2214 while (link != NULL)
2216 DBusMessage *reply = link->data;
2218 if (dbus_message_get_reply_serial (reply) == client_serial)
2220 _dbus_verbose ("%s reply to %d found in queue\n", _DBUS_FUNCTION_NAME, client_serial);
2223 link = _dbus_list_get_next_link (&connection->incoming_messages, link);
2229 /* This is slightly strange since we can pop a message here without
2230 * the dispatch lock.
2233 check_for_reply_unlocked (DBusConnection *connection,
2234 dbus_uint32_t client_serial)
2238 HAVE_LOCK_CHECK (connection);
2240 link = _dbus_list_get_first_link (&connection->incoming_messages);
2242 while (link != NULL)
2244 DBusMessage *reply = link->data;
2246 if (dbus_message_get_reply_serial (reply) == client_serial)
2248 _dbus_list_remove_link (&connection->incoming_messages, link);
2249 connection->n_incoming -= 1;
2252 link = _dbus_list_get_next_link (&connection->incoming_messages, link);
2259 connection_timeout_and_complete_all_pending_calls_unlocked (DBusConnection *connection)
2261 /* We can't iterate over the hash in the normal way since we'll be
2262 * dropping the lock for each item. So we restart the
2263 * iter each time as we drain the hash table.
2266 while (_dbus_hash_table_get_n_entries (connection->pending_replies) > 0)
2268 DBusPendingCall *pending;
2271 _dbus_hash_iter_init (connection->pending_replies, &iter);
2272 _dbus_hash_iter_next (&iter);
2274 pending = _dbus_hash_iter_get_value (&iter);
2275 _dbus_pending_call_ref_unlocked (pending);
2277 _dbus_pending_call_queue_timeout_error_unlocked (pending,
2280 if (_dbus_pending_call_is_timeout_added_unlocked (pending))
2281 _dbus_connection_remove_timeout_unlocked (connection,
2282 _dbus_pending_call_get_timeout_unlocked (pending));
2283 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
2284 _dbus_hash_iter_remove_entry (&iter);
2286 _dbus_pending_call_unref_and_unlock (pending);
2287 CONNECTION_LOCK (connection);
2289 HAVE_LOCK_CHECK (connection);
2293 complete_pending_call_and_unlock (DBusConnection *connection,
2294 DBusPendingCall *pending,
2295 DBusMessage *message)
2297 _dbus_pending_call_set_reply_unlocked (pending, message);
2298 _dbus_pending_call_ref_unlocked (pending); /* in case there's no app with a ref held */
2299 _dbus_connection_detach_pending_call_and_unlock (connection, pending);
2301 /* Must be called unlocked since it invokes app callback */
2302 _dbus_pending_call_complete (pending);
2303 dbus_pending_call_unref (pending);
2307 check_for_reply_and_update_dispatch_unlocked (DBusConnection *connection,
2308 DBusPendingCall *pending)
2311 DBusDispatchStatus status;
2313 reply = check_for_reply_unlocked (connection,
2314 _dbus_pending_call_get_reply_serial_unlocked (pending));
2317 _dbus_verbose ("checked for reply\n");
2319 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): got reply\n");
2321 complete_pending_call_and_unlock (connection, pending, reply);
2322 dbus_message_unref (reply);
2324 CONNECTION_LOCK (connection);
2325 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2326 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2327 dbus_pending_call_unref (pending);
2336 * Blocks until a pending call times out or gets a reply.
2338 * Does not re-enter the main loop or run filter/path-registered
2339 * callbacks. The reply to the message will not be seen by
2342 * Returns immediately if pending call already got a reply.
2344 * @todo could use performance improvements (it keeps scanning
2345 * the whole message queue for example)
2347 * @param pending the pending call we block for a reply on
2350 _dbus_connection_block_pending_call (DBusPendingCall *pending)
2352 long start_tv_sec, start_tv_usec;
2353 long tv_sec, tv_usec;
2354 DBusDispatchStatus status;
2355 DBusConnection *connection;
2356 dbus_uint32_t client_serial;
2357 DBusTimeout *timeout;
2358 int timeout_milliseconds, elapsed_milliseconds;
2360 _dbus_assert (pending != NULL);
2362 if (dbus_pending_call_get_completed (pending))
2365 dbus_pending_call_ref (pending); /* necessary because the call could be canceled */
2367 connection = _dbus_pending_call_get_connection_and_lock (pending);
2369 /* Flush message queue - note, can affect dispatch status */
2370 _dbus_connection_flush_unlocked (connection);
2372 client_serial = _dbus_pending_call_get_reply_serial_unlocked (pending);
2374 /* note that timeout_milliseconds is limited to a smallish value
2375 * in _dbus_pending_call_new() so overflows aren't possible
2378 timeout = _dbus_pending_call_get_timeout_unlocked (pending);
2379 _dbus_get_current_time (&start_tv_sec, &start_tv_usec);
2382 timeout_milliseconds = dbus_timeout_get_interval (timeout);
2384 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): will block %d milliseconds for reply serial %u from %ld sec %ld usec\n",
2385 timeout_milliseconds,
2387 start_tv_sec, start_tv_usec);
2391 timeout_milliseconds = -1;
2393 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): will block for reply serial %u\n", client_serial);
2396 /* check to see if we already got the data off the socket */
2397 /* from another blocked pending call */
2398 if (check_for_reply_and_update_dispatch_unlocked (connection, pending))
2401 /* Now we wait... */
2402 /* always block at least once as we know we don't have the reply yet */
2403 _dbus_connection_do_iteration_unlocked (connection,
2405 DBUS_ITERATION_DO_READING |
2406 DBUS_ITERATION_BLOCK,
2407 timeout_milliseconds);
2411 _dbus_verbose ("top of recheck\n");
2413 HAVE_LOCK_CHECK (connection);
2415 /* queue messages and get status */
2417 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2419 /* the get_completed() is in case a dispatch() while we were blocking
2420 * got the reply instead of us.
2422 if (_dbus_pending_call_get_completed_unlocked (pending))
2424 _dbus_verbose ("Pending call completed by dispatch\n");
2425 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2426 dbus_pending_call_unref (pending);
2430 if (status == DBUS_DISPATCH_DATA_REMAINS)
2432 if (check_for_reply_and_update_dispatch_unlocked (connection, pending))
2436 _dbus_get_current_time (&tv_sec, &tv_usec);
2437 elapsed_milliseconds = (tv_sec - start_tv_sec) * 1000 +
2438 (tv_usec - start_tv_usec) / 1000;
2440 if (!_dbus_connection_get_is_connected_unlocked (connection))
2442 DBusMessage *error_msg;
2444 error_msg = generate_local_error_message (client_serial,
2445 DBUS_ERROR_DISCONNECTED,
2446 "Connection was disconnected before a reply was received");
2448 /* on OOM error_msg is set to NULL */
2449 complete_pending_call_and_unlock (connection, pending, error_msg);
2450 dbus_pending_call_unref (pending);
2453 else if (connection->disconnect_message_link == NULL)
2454 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): disconnected\n");
2455 else if (timeout == NULL)
2457 if (status == DBUS_DISPATCH_NEED_MEMORY)
2459 /* Try sleeping a bit, as we aren't sure we need to block for reading,
2460 * we may already have a reply in the buffer and just can't process
2463 _dbus_verbose ("dbus_connection_send_with_reply_and_block() waiting for more memory\n");
2465 _dbus_memory_pause_based_on_timeout (timeout_milliseconds - elapsed_milliseconds);
2469 /* block again, we don't have the reply buffered yet. */
2470 _dbus_connection_do_iteration_unlocked (connection,
2472 DBUS_ITERATION_DO_READING |
2473 DBUS_ITERATION_BLOCK,
2474 timeout_milliseconds - elapsed_milliseconds);
2477 goto recheck_status;
2479 else if (tv_sec < start_tv_sec)
2480 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): clock set backward\n");
2481 else if (elapsed_milliseconds < timeout_milliseconds)
2483 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): %d milliseconds remain\n", timeout_milliseconds - elapsed_milliseconds);
2485 if (status == DBUS_DISPATCH_NEED_MEMORY)
2487 /* Try sleeping a bit, as we aren't sure we need to block for reading,
2488 * we may already have a reply in the buffer and just can't process
2491 _dbus_verbose ("dbus_connection_send_with_reply_and_block() waiting for more memory\n");
2493 _dbus_memory_pause_based_on_timeout (timeout_milliseconds - elapsed_milliseconds);
2497 /* block again, we don't have the reply buffered yet. */
2498 _dbus_connection_do_iteration_unlocked (connection,
2500 DBUS_ITERATION_DO_READING |
2501 DBUS_ITERATION_BLOCK,
2502 timeout_milliseconds - elapsed_milliseconds);
2505 goto recheck_status;
2508 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): Waited %d milliseconds and got no reply\n",
2509 elapsed_milliseconds);
2511 _dbus_assert (!_dbus_pending_call_get_completed_unlocked (pending));
2513 /* unlock and call user code */
2514 complete_pending_call_and_unlock (connection, pending, NULL);
2516 /* update user code on dispatch status */
2517 CONNECTION_LOCK (connection);
2518 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2519 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2520 dbus_pending_call_unref (pending);
2526 * @addtogroup DBusConnection
2532 * Gets a connection to a remote address. If a connection to the given
2533 * address already exists, returns the existing connection with its
2534 * reference count incremented. Otherwise, returns a new connection
2535 * and saves the new connection for possible re-use if a future call
2536 * to dbus_connection_open() asks to connect to the same server.
2538 * Use dbus_connection_open_private() to get a dedicated connection
2539 * not shared with other callers of dbus_connection_open().
2541 * If the open fails, the function returns #NULL, and provides a
2542 * reason for the failure in the error parameter. Pass #NULL for the
2543 * error parameter if you aren't interested in the reason for
2546 * Because this connection is shared, no user of the connection
2547 * may call dbus_connection_close(). However, when you are done with the
2548 * connection you should call dbus_connection_unref().
2550 * @note Prefer dbus_connection_open() to dbus_connection_open_private()
2551 * unless you have good reason; connections are expensive enough
2552 * that it's wasteful to create lots of connections to the same
2555 * @param address the address.
2556 * @param error address where an error can be returned.
2557 * @returns new connection, or #NULL on failure.
2560 dbus_connection_open (const char *address,
2563 DBusConnection *connection;
2565 _dbus_return_val_if_fail (address != NULL, NULL);
2566 _dbus_return_val_if_error_is_set (error, NULL);
2568 connection = _dbus_connection_open_internal (address,
2576 * Opens a new, dedicated connection to a remote address. Unlike
2577 * dbus_connection_open(), always creates a new connection.
2578 * This connection will not be saved or recycled by libdbus.
2580 * If the open fails, the function returns #NULL, and provides a
2581 * reason for the failure in the error parameter. Pass #NULL for the
2582 * error parameter if you aren't interested in the reason for
2585 * When you are done with this connection, you must
2586 * dbus_connection_close() to disconnect it,
2587 * and dbus_connection_unref() to free the connection object.
2589 * (The dbus_connection_close() can be skipped if the
2590 * connection is already known to be disconnected, for example
2591 * if you are inside a handler for the Disconnected signal.)
2593 * @note Prefer dbus_connection_open() to dbus_connection_open_private()
2594 * unless you have good reason; connections are expensive enough
2595 * that it's wasteful to create lots of connections to the same
2598 * @param address the address.
2599 * @param error address where an error can be returned.
2600 * @returns new connection, or #NULL on failure.
2603 dbus_connection_open_private (const char *address,
2606 DBusConnection *connection;
2608 _dbus_return_val_if_fail (address != NULL, NULL);
2609 _dbus_return_val_if_error_is_set (error, NULL);
2611 connection = _dbus_connection_open_internal (address,
2619 * Increments the reference count of a DBusConnection.
2621 * @param connection the connection.
2622 * @returns the connection.
2625 dbus_connection_ref (DBusConnection *connection)
2627 _dbus_return_val_if_fail (connection != NULL, NULL);
2628 _dbus_return_val_if_fail (connection->generation == _dbus_current_generation, NULL);
2630 _dbus_atomic_inc (&connection->refcount);
2636 free_outgoing_message (void *element,
2639 DBusMessage *message = element;
2640 DBusConnection *connection = data;
2642 _dbus_message_remove_counter (message,
2643 connection->outgoing_counter,
2645 dbus_message_unref (message);
2648 /* This is run without the mutex held, but after the last reference
2649 * to the connection has been dropped we should have no thread-related
2653 _dbus_connection_last_unref (DBusConnection *connection)
2657 _dbus_verbose ("Finalizing connection %p\n", connection);
2659 _dbus_assert (connection->refcount.value == 0);
2661 /* You have to disconnect the connection before unref:ing it. Otherwise
2662 * you won't get the disconnected message.
2664 _dbus_assert (!_dbus_transport_get_is_connected (connection->transport));
2665 _dbus_assert (connection->server_guid == NULL);
2667 /* ---- We're going to call various application callbacks here, hope it doesn't break anything... */
2668 _dbus_object_tree_free_all_unlocked (connection->objects);
2670 dbus_connection_set_dispatch_status_function (connection, NULL, NULL, NULL);
2671 dbus_connection_set_wakeup_main_function (connection, NULL, NULL, NULL);
2672 dbus_connection_set_unix_user_function (connection, NULL, NULL, NULL);
2674 _dbus_watch_list_free (connection->watches);
2675 connection->watches = NULL;
2677 _dbus_timeout_list_free (connection->timeouts);
2678 connection->timeouts = NULL;
2680 _dbus_data_slot_list_free (&connection->slot_list);
2682 link = _dbus_list_get_first_link (&connection->filter_list);
2683 while (link != NULL)
2685 DBusMessageFilter *filter = link->data;
2686 DBusList *next = _dbus_list_get_next_link (&connection->filter_list, link);
2688 filter->function = NULL;
2689 _dbus_message_filter_unref (filter); /* calls app callback */
2694 _dbus_list_clear (&connection->filter_list);
2696 /* ---- Done with stuff that invokes application callbacks */
2698 _dbus_object_tree_unref (connection->objects);
2700 _dbus_hash_table_unref (connection->pending_replies);
2701 connection->pending_replies = NULL;
2703 _dbus_list_clear (&connection->filter_list);
2705 _dbus_list_foreach (&connection->outgoing_messages,
2706 free_outgoing_message,
2708 _dbus_list_clear (&connection->outgoing_messages);
2710 _dbus_list_foreach (&connection->incoming_messages,
2711 (DBusForeachFunction) dbus_message_unref,
2713 _dbus_list_clear (&connection->incoming_messages);
2715 _dbus_counter_unref (connection->outgoing_counter);
2717 _dbus_transport_unref (connection->transport);
2719 if (connection->disconnect_message_link)
2721 DBusMessage *message = connection->disconnect_message_link->data;
2722 dbus_message_unref (message);
2723 _dbus_list_free_link (connection->disconnect_message_link);
2726 _dbus_list_clear (&connection->link_cache);
2728 _dbus_condvar_free_at_location (&connection->dispatch_cond);
2729 _dbus_condvar_free_at_location (&connection->io_path_cond);
2731 _dbus_mutex_free_at_location (&connection->io_path_mutex);
2732 _dbus_mutex_free_at_location (&connection->dispatch_mutex);
2734 _dbus_mutex_free_at_location (&connection->slot_mutex);
2736 _dbus_mutex_free_at_location (&connection->mutex);
2738 dbus_free (connection);
2742 * Decrements the reference count of a DBusConnection, and finalizes
2743 * it if the count reaches zero.
2745 * Note: it is a bug to drop the last reference to a connection that
2746 * is still connected.
2748 * For shared connections, libdbus will own a reference
2749 * as long as the connection is connected, so you can know that either
2750 * you don't have the last reference, or it's OK to drop the last reference.
2751 * Most connections are shared. dbus_connection_open() and dbus_bus_get()
2752 * return shared connections.
2754 * For private connections, the creator of the connection must arrange for
2755 * dbus_connection_close() to be called prior to dropping the last reference.
2756 * Private connections come from dbus_connection_open_private() or dbus_bus_get_private().
2758 * @param connection the connection.
2761 dbus_connection_unref (DBusConnection *connection)
2763 dbus_bool_t last_unref;
2765 _dbus_return_if_fail (connection != NULL);
2766 _dbus_return_if_fail (connection->generation == _dbus_current_generation);
2768 last_unref = (_dbus_atomic_dec (&connection->refcount) == 1);
2772 #ifndef DBUS_DISABLE_CHECKS
2773 if (_dbus_transport_get_is_connected (connection->transport))
2775 _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",
2776 connection->shareable ?
2777 "Most likely, the application called unref() too many times and removed a reference belonging to libdbus, since this is a shared connection.\n" :
2778 "Most likely, the application was supposed to call dbus_connection_close(), since this is a private connection.\n");
2782 _dbus_connection_last_unref (connection);
2787 * Note that the transport can disconnect itself (other end drops us)
2788 * and in that case this function never runs. So this function must
2789 * not do anything more than disconnect the transport and update the
2792 * If the transport self-disconnects, then we assume someone will
2793 * dispatch the connection to cause the dispatch status update.
2796 _dbus_connection_close_possibly_shared_and_unlock (DBusConnection *connection)
2798 DBusDispatchStatus status;
2800 HAVE_LOCK_CHECK (connection);
2802 _dbus_verbose ("Disconnecting %p\n", connection);
2804 /* We need to ref because update_dispatch_status_and_unlock will unref
2805 * the connection if it was shared and libdbus was the only remaining
2808 _dbus_connection_ref_unlocked (connection);
2810 _dbus_transport_disconnect (connection->transport);
2812 /* This has the side effect of queuing the disconnect message link
2813 * (unless we don't have enough memory, possibly, so don't assert it).
2814 * After the disconnect message link is queued, dbus_bus_get/dbus_connection_open
2815 * should never again return the newly-disconnected connection.
2817 * However, we only unref the shared connection and exit_on_disconnect when
2818 * the disconnect message reaches the head of the message queue,
2819 * NOT when it's first queued.
2821 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2823 /* This calls out to user code */
2824 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2826 /* Could also call out to user code */
2827 dbus_connection_unref (connection);
2831 * Closes a private connection, so no further data can be sent or received.
2832 * This disconnects the transport (such as a socket) underlying the
2835 * Attempts to send messages after closing a connection are safe, but will result in
2836 * error replies generated locally in libdbus.
2838 * This function does not affect the connection's reference count. It's
2839 * safe to close a connection more than once; all calls after the
2840 * first do nothing. It's impossible to "reopen" a connection, a
2841 * new connection must be created. This function may result in a call
2842 * to the DBusDispatchStatusFunction set with
2843 * dbus_connection_set_dispatch_status_function(), as the disconnect
2844 * message it generates needs to be dispatched.
2846 * If a connection is dropped by the remote application, it will
2849 * You must close a connection prior to releasing the last reference to
2850 * the connection. If you dbus_connection_unref() for the last time
2851 * without closing the connection, the results are undefined; it
2852 * is a bug in your program and libdbus will try to print a warning.
2854 * You may not close a shared connection. Connections created with
2855 * dbus_connection_open() or dbus_bus_get() are shared.
2856 * These connections are owned by libdbus, and applications should
2857 * only unref them, never close them. Applications can know it is
2858 * safe to unref these connections because libdbus will be holding a
2859 * reference as long as the connection is open. Thus, either the
2860 * connection is closed and it is OK to drop the last reference,
2861 * or the connection is open and the app knows it does not have the
2864 * Connections created with dbus_connection_open_private() or
2865 * dbus_bus_get_private() are not kept track of or referenced by
2866 * libdbus. The creator of these connections is responsible for
2867 * calling dbus_connection_close() prior to releasing the last
2868 * reference, if the connection is not already disconnected.
2870 * @param connection the private (unshared) connection to close
2873 dbus_connection_close (DBusConnection *connection)
2875 _dbus_return_if_fail (connection != NULL);
2876 _dbus_return_if_fail (connection->generation == _dbus_current_generation);
2878 CONNECTION_LOCK (connection);
2880 #ifndef DBUS_DISABLE_CHECKS
2881 if (connection->shareable)
2883 CONNECTION_UNLOCK (connection);
2885 _dbus_warn_check_failed ("Applications must not close shared connections - see dbus_connection_close() docs. This is a bug in the application.\n");
2890 _dbus_connection_close_possibly_shared_and_unlock (connection);
2894 _dbus_connection_get_is_connected_unlocked (DBusConnection *connection)
2896 HAVE_LOCK_CHECK (connection);
2897 return _dbus_transport_get_is_connected (connection->transport);
2901 * Gets whether the connection is currently open. A connection may
2902 * become disconnected when the remote application closes its end, or
2903 * exits; a connection may also be disconnected with
2904 * dbus_connection_close().
2906 * There are not separate states for "closed" and "disconnected," the two
2907 * terms are synonymous. This function should really be called
2908 * get_is_open() but for historical reasons is not.
2910 * @param connection the connection.
2911 * @returns #TRUE if the connection is still alive.
2914 dbus_connection_get_is_connected (DBusConnection *connection)
2918 _dbus_return_val_if_fail (connection != NULL, FALSE);
2920 CONNECTION_LOCK (connection);
2921 res = _dbus_connection_get_is_connected_unlocked (connection);
2922 CONNECTION_UNLOCK (connection);
2928 * Gets whether the connection was authenticated. (Note that
2929 * if the connection was authenticated then disconnected,
2930 * this function still returns #TRUE)
2932 * @param connection the connection
2933 * @returns #TRUE if the connection was ever authenticated
2936 dbus_connection_get_is_authenticated (DBusConnection *connection)
2940 _dbus_return_val_if_fail (connection != NULL, FALSE);
2942 CONNECTION_LOCK (connection);
2943 res = _dbus_transport_get_is_authenticated (connection->transport);
2944 CONNECTION_UNLOCK (connection);
2950 * Gets whether the connection is not authenticated as a specific
2951 * user. If the connection is not authenticated, this function
2952 * returns #TRUE, and if it is authenticated but as an anonymous user,
2953 * it returns #TRUE. If it is authenticated as a specific user, then
2954 * this returns #FALSE. (Note that if the connection was authenticated
2955 * as anonymous then disconnected, this function still returns #TRUE.)
2957 * If the connection is not anonymous, you can use
2958 * dbus_connection_get_unix_user() and
2959 * dbus_connection_get_windows_user() to see who it's authorized as.
2961 * If you want to prevent non-anonymous authorization, use
2962 * dbus_server_set_auth_mechanisms() to remove the mechanisms that
2963 * allow proving user identity (i.e. only allow the ANONYMOUS
2966 * @param connection the connection
2967 * @returns #TRUE if not authenticated or authenticated as anonymous
2970 dbus_connection_get_is_anonymous (DBusConnection *connection)
2974 _dbus_return_val_if_fail (connection != NULL, FALSE);
2976 CONNECTION_LOCK (connection);
2977 res = _dbus_transport_get_is_anonymous (connection->transport);
2978 CONNECTION_UNLOCK (connection);
2984 * Gets the ID of the server address we are authenticated to, if this
2985 * connection is on the client side. If the connection is on the
2986 * server side, this will always return #NULL - use dbus_server_get_id()
2987 * to get the ID of your own server, if you are the server side.
2989 * If a client-side connection is not authenticated yet, the ID may be
2990 * available if it was included in the server address, but may not be
2991 * available. The only way to be sure the server ID is available
2992 * is to wait for authentication to complete.
2994 * In general, each mode of connecting to a given server will have
2995 * its own ID. So for example, if the session bus daemon is listening
2996 * on UNIX domain sockets and on TCP, then each of those modalities
2997 * will have its own server ID.
2999 * If you want an ID that identifies an entire session bus, look at
3000 * dbus_bus_get_id() instead (which is just a convenience wrapper
3001 * around the org.freedesktop.DBus.GetId method invoked on the bus).
3003 * You can also get a machine ID; see dbus_get_local_machine_id() to
3004 * get the machine you are on. There isn't a convenience wrapper, but
3005 * you can invoke org.freedesktop.DBus.Peer.GetMachineId on any peer
3006 * to get the machine ID on the other end.
3008 * The D-Bus specification describes the server ID and other IDs in a
3011 * @param connection the connection
3012 * @returns the server ID or #NULL if no memory or the connection is server-side
3015 dbus_connection_get_server_id (DBusConnection *connection)
3019 _dbus_return_val_if_fail (connection != NULL, NULL);
3021 CONNECTION_LOCK (connection);
3022 id = _dbus_strdup (_dbus_transport_get_server_id (connection->transport));
3023 CONNECTION_UNLOCK (connection);
3029 * Tests whether a certain type can be send via the connection. This
3030 * will always return TRUE for all types, with the exception of
3031 * DBUS_TYPE_UNIX_FD. The function will return TRUE for
3032 * DBUS_TYPE_UNIX_FD only on systems that know Unix file descriptors
3033 * and can send them via the chosen transport and when the remote side
3036 * This function can be used to do runtime checking for types that
3037 * might be unknown to the specific D-Bus client implementation
3038 * version, i.e. it will return FALSE for all types this
3039 * implementation does not know, including invalid or reserved types.
3041 * @param connection the connection
3042 * @param type the type to check
3043 * @returns TRUE if the type may be send via the connection
3046 dbus_connection_can_send_type(DBusConnection *connection,
3049 _dbus_return_val_if_fail (connection != NULL, FALSE);
3051 if (!dbus_type_is_valid (type))
3054 if (type != DBUS_TYPE_UNIX_FD)
3057 #ifdef HAVE_UNIX_FD_PASSING
3061 CONNECTION_LOCK(connection);
3062 b = _dbus_transport_can_pass_unix_fd(connection->transport);
3063 CONNECTION_UNLOCK(connection);
3073 * Set whether _exit() should be called when the connection receives a
3074 * disconnect signal. The call to _exit() comes after any handlers for
3075 * the disconnect signal run; handlers can cancel the exit by calling
3078 * By default, exit_on_disconnect is #FALSE; but for message bus
3079 * connections returned from dbus_bus_get() it will be toggled on
3082 * @param connection the connection
3083 * @param exit_on_disconnect #TRUE if _exit() should be called after a disconnect signal
3086 dbus_connection_set_exit_on_disconnect (DBusConnection *connection,
3087 dbus_bool_t exit_on_disconnect)
3089 _dbus_return_if_fail (connection != NULL);
3091 CONNECTION_LOCK (connection);
3092 connection->exit_on_disconnect = exit_on_disconnect != FALSE;
3093 CONNECTION_UNLOCK (connection);
3097 * Preallocates resources needed to send a message, allowing the message
3098 * to be sent without the possibility of memory allocation failure.
3099 * Allows apps to create a future guarantee that they can send
3100 * a message regardless of memory shortages.
3102 * @param connection the connection we're preallocating for.
3103 * @returns the preallocated resources, or #NULL
3105 DBusPreallocatedSend*
3106 dbus_connection_preallocate_send (DBusConnection *connection)
3108 DBusPreallocatedSend *preallocated;
3110 _dbus_return_val_if_fail (connection != NULL, NULL);
3112 CONNECTION_LOCK (connection);
3115 _dbus_connection_preallocate_send_unlocked (connection);
3117 CONNECTION_UNLOCK (connection);
3119 return preallocated;
3123 * Frees preallocated message-sending resources from
3124 * dbus_connection_preallocate_send(). Should only
3125 * be called if the preallocated resources are not used
3126 * to send a message.
3128 * @param connection the connection
3129 * @param preallocated the resources
3132 dbus_connection_free_preallocated_send (DBusConnection *connection,
3133 DBusPreallocatedSend *preallocated)
3135 _dbus_return_if_fail (connection != NULL);
3136 _dbus_return_if_fail (preallocated != NULL);
3137 _dbus_return_if_fail (connection == preallocated->connection);
3139 _dbus_list_free_link (preallocated->queue_link);
3140 _dbus_counter_unref (preallocated->counter_link->data);
3141 _dbus_list_free_link (preallocated->counter_link);
3142 dbus_free (preallocated);
3146 * Sends a message using preallocated resources. This function cannot fail.
3147 * It works identically to dbus_connection_send() in other respects.
3148 * Preallocated resources comes from dbus_connection_preallocate_send().
3149 * This function "consumes" the preallocated resources, they need not
3150 * be freed separately.
3152 * @param connection the connection
3153 * @param preallocated the preallocated resources
3154 * @param message the message to send
3155 * @param client_serial return location for client serial assigned to the message
3158 dbus_connection_send_preallocated (DBusConnection *connection,
3159 DBusPreallocatedSend *preallocated,
3160 DBusMessage *message,
3161 dbus_uint32_t *client_serial)
3163 _dbus_return_if_fail (connection != NULL);
3164 _dbus_return_if_fail (preallocated != NULL);
3165 _dbus_return_if_fail (message != NULL);
3166 _dbus_return_if_fail (preallocated->connection == connection);
3167 _dbus_return_if_fail (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_METHOD_CALL ||
3168 dbus_message_get_member (message) != NULL);
3169 _dbus_return_if_fail (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL ||
3170 (dbus_message_get_interface (message) != NULL &&
3171 dbus_message_get_member (message) != NULL));
3173 CONNECTION_LOCK (connection);
3175 #ifdef HAVE_UNIX_FD_PASSING
3177 if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3178 message->n_unix_fds > 0)
3180 /* Refuse to send fds on a connection that cannot handle
3181 them. Unfortunately we cannot return a proper error here, so
3182 the best we can is just return. */
3183 CONNECTION_UNLOCK (connection);
3189 _dbus_connection_send_preallocated_and_unlock (connection,
3191 message, client_serial);
3195 _dbus_connection_send_unlocked_no_update (DBusConnection *connection,
3196 DBusMessage *message,
3197 dbus_uint32_t *client_serial)
3199 DBusPreallocatedSend *preallocated;
3201 _dbus_assert (connection != NULL);
3202 _dbus_assert (message != NULL);
3204 preallocated = _dbus_connection_preallocate_send_unlocked (connection);
3205 if (preallocated == NULL)
3208 _dbus_connection_send_preallocated_unlocked_no_update (connection,
3216 * Adds a message to the outgoing message queue. Does not block to
3217 * write the message to the network; that happens asynchronously. To
3218 * force the message to be written, call dbus_connection_flush() however
3219 * it is not necessary to call dbus_connection_flush() by hand; the
3220 * message will be sent the next time the main loop is run.
3221 * dbus_connection_flush() should only be used, for example, if
3222 * the application was expected to exit before running the main loop.
3224 * Because this only queues the message, the only reason it can
3225 * fail is lack of memory. Even if the connection is disconnected,
3226 * no error will be returned. If the function fails due to lack of memory,
3227 * it returns #FALSE. The function will never fail for other reasons; even
3228 * if the connection is disconnected, you can queue an outgoing message,
3229 * though obviously it won't be sent.
3231 * The message serial is used by the remote application to send a
3232 * reply; see dbus_message_get_serial() or the D-Bus specification.
3234 * dbus_message_unref() can be called as soon as this method returns
3235 * as the message queue will hold its own ref until the message is sent.
3237 * @param connection the connection.
3238 * @param message the message to write.
3239 * @param serial return location for message serial, or #NULL if you don't care
3240 * @returns #TRUE on success.
3243 dbus_connection_send (DBusConnection *connection,
3244 DBusMessage *message,
3245 dbus_uint32_t *serial)
3247 _dbus_return_val_if_fail (connection != NULL, FALSE);
3248 _dbus_return_val_if_fail (message != NULL, FALSE);
3250 CONNECTION_LOCK (connection);
3252 #ifdef HAVE_UNIX_FD_PASSING
3254 if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3255 message->n_unix_fds > 0)
3257 /* Refuse to send fds on a connection that cannot handle
3258 them. Unfortunately we cannot return a proper error here, so
3259 the best we can is just return. */
3260 CONNECTION_UNLOCK (connection);
3266 return _dbus_connection_send_and_unlock (connection,
3272 reply_handler_timeout (void *data)
3274 DBusConnection *connection;
3275 DBusDispatchStatus status;
3276 DBusPendingCall *pending = data;
3278 connection = _dbus_pending_call_get_connection_and_lock (pending);
3279 _dbus_connection_ref_unlocked (connection);
3281 _dbus_pending_call_queue_timeout_error_unlocked (pending,
3283 _dbus_connection_remove_timeout_unlocked (connection,
3284 _dbus_pending_call_get_timeout_unlocked (pending));
3285 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
3287 _dbus_verbose ("middle\n");
3288 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3290 /* Unlocks, and calls out to user code */
3291 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3292 dbus_connection_unref (connection);
3298 * Queues a message to send, as with dbus_connection_send(),
3299 * but also returns a #DBusPendingCall used to receive a reply to the
3300 * message. If no reply is received in the given timeout_milliseconds,
3301 * this function expires the pending reply and generates a synthetic
3302 * error reply (generated in-process, not by the remote application)
3303 * indicating that a timeout occurred.
3305 * A #DBusPendingCall will see a reply message before any filters or
3306 * registered object path handlers. See dbus_connection_dispatch() for
3307 * details on when handlers are run.
3309 * A #DBusPendingCall will always see exactly one reply message,
3310 * unless it's cancelled with dbus_pending_call_cancel().
3312 * If #NULL is passed for the pending_return, the #DBusPendingCall
3313 * will still be generated internally, and used to track
3314 * the message reply timeout. This means a timeout error will
3315 * occur if no reply arrives, unlike with dbus_connection_send().
3317 * If -1 is passed for the timeout, a sane default timeout is used. -1
3318 * is typically the best value for the timeout for this reason, unless
3319 * you want a very short or very long timeout. If #DBUS_TIMEOUT_INFINITE is
3320 * passed for the timeout, no timeout will be set and the call will block
3323 * @warning if the connection is disconnected or you try to send Unix
3324 * file descriptors on a connection that does not support them, the
3325 * #DBusPendingCall will be set to #NULL, so be careful with this.
3327 * @param connection the connection
3328 * @param message the message to send
3329 * @param pending_return return location for a #DBusPendingCall
3330 * object, or #NULL if connection is disconnected or when you try to
3331 * send Unix file descriptors on a connection that does not support
3333 * @param timeout_milliseconds timeout in milliseconds, -1 (or
3334 * #DBUS_TIMEOUT_USE_DEFAULT) for default or #DBUS_TIMEOUT_INFINITE for no
3336 * @returns #FALSE if no memory, #TRUE otherwise.
3340 dbus_connection_send_with_reply (DBusConnection *connection,
3341 DBusMessage *message,
3342 DBusPendingCall **pending_return,
3343 int timeout_milliseconds)
3345 DBusPendingCall *pending;
3346 dbus_int32_t serial = -1;
3347 DBusDispatchStatus status;
3349 _dbus_return_val_if_fail (connection != NULL, FALSE);
3350 _dbus_return_val_if_fail (message != NULL, FALSE);
3351 _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
3354 *pending_return = NULL;
3356 CONNECTION_LOCK (connection);
3358 #ifdef HAVE_UNIX_FD_PASSING
3360 if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3361 message->n_unix_fds > 0)
3363 /* Refuse to send fds on a connection that cannot handle
3364 them. Unfortunately we cannot return a proper error here, so
3365 the best we can do is return TRUE but leave *pending_return
3367 CONNECTION_UNLOCK (connection);
3373 if (!_dbus_connection_get_is_connected_unlocked (connection))
3375 CONNECTION_UNLOCK (connection);
3380 pending = _dbus_pending_call_new_unlocked (connection,
3381 timeout_milliseconds,
3382 reply_handler_timeout);
3384 if (pending == NULL)
3386 CONNECTION_UNLOCK (connection);
3390 /* Assign a serial to the message */
3391 serial = dbus_message_get_serial (message);
3394 serial = _dbus_connection_get_next_client_serial (connection);
3395 dbus_message_set_serial (message, serial);
3398 if (!_dbus_pending_call_set_timeout_error_unlocked (pending, message, serial))
3401 /* Insert the serial in the pending replies hash;
3402 * hash takes a refcount on DBusPendingCall.
3403 * Also, add the timeout.
3405 if (!_dbus_connection_attach_pending_call_unlocked (connection,
3409 if (!_dbus_connection_send_unlocked_no_update (connection, message, NULL))
3411 _dbus_connection_detach_pending_call_and_unlock (connection,
3413 goto error_unlocked;
3417 *pending_return = pending; /* hand off refcount */
3420 _dbus_connection_detach_pending_call_unlocked (connection, pending);
3421 /* we still have a ref to the pending call in this case, we unref
3422 * after unlocking, below
3426 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3428 /* this calls out to user code */
3429 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3431 if (pending_return == NULL)
3432 dbus_pending_call_unref (pending);
3437 CONNECTION_UNLOCK (connection);
3439 dbus_pending_call_unref (pending);
3444 * Sends a message and blocks a certain time period while waiting for
3445 * a reply. This function does not reenter the main loop,
3446 * i.e. messages other than the reply are queued up but not
3447 * processed. This function is used to invoke method calls on a
3450 * If a normal reply is received, it is returned, and removed from the
3451 * incoming message queue. If it is not received, #NULL is returned
3452 * and the error is set to #DBUS_ERROR_NO_REPLY. If an error reply is
3453 * received, it is converted to a #DBusError and returned as an error,
3454 * then the reply message is deleted and #NULL is returned. If
3455 * something else goes wrong, result is set to whatever is
3456 * appropriate, such as #DBUS_ERROR_NO_MEMORY or
3457 * #DBUS_ERROR_DISCONNECTED.
3459 * @warning While this function blocks the calling thread will not be
3460 * processing the incoming message queue. This means you can end up
3461 * deadlocked if the application you're talking to needs you to reply
3462 * to a method. To solve this, either avoid the situation, block in a
3463 * separate thread from the main connection-dispatching thread, or use
3464 * dbus_pending_call_set_notify() to avoid blocking.
3466 * @param connection the connection
3467 * @param message the message to send
3468 * @param timeout_milliseconds timeout in milliseconds, -1 (or
3469 * #DBUS_TIMEOUT_USE_DEFAULT) for default or #DBUS_TIMEOUT_INFINITE for no
3471 * @param error return location for error message
3472 * @returns the message that is the reply or #NULL with an error code if the
3476 dbus_connection_send_with_reply_and_block (DBusConnection *connection,
3477 DBusMessage *message,
3478 int timeout_milliseconds,
3482 DBusPendingCall *pending;
3484 _dbus_return_val_if_fail (connection != NULL, NULL);
3485 _dbus_return_val_if_fail (message != NULL, NULL);
3486 _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, NULL);
3487 _dbus_return_val_if_error_is_set (error, NULL);
3489 #ifdef HAVE_UNIX_FD_PASSING
3491 CONNECTION_LOCK (connection);
3492 if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3493 message->n_unix_fds > 0)
3495 CONNECTION_UNLOCK (connection);
3496 dbus_set_error(error, DBUS_ERROR_FAILED, "Cannot send file descriptors on this connection.");
3499 CONNECTION_UNLOCK (connection);
3503 if (!dbus_connection_send_with_reply (connection, message,
3504 &pending, timeout_milliseconds))
3506 _DBUS_SET_OOM (error);
3510 if (pending == NULL)
3512 dbus_set_error (error, DBUS_ERROR_DISCONNECTED, "Connection is closed");
3516 dbus_pending_call_block (pending);
3518 reply = dbus_pending_call_steal_reply (pending);
3519 dbus_pending_call_unref (pending);
3521 /* call_complete_and_unlock() called from pending_call_block() should
3522 * always fill this in.
3524 _dbus_assert (reply != NULL);
3526 if (dbus_set_error_from_message (error, reply))
3528 dbus_message_unref (reply);
3536 * Blocks until the outgoing message queue is empty.
3537 * Assumes connection lock already held.
3539 * If you call this, you MUST call update_dispatch_status afterword...
3541 * @param connection the connection.
3543 static DBusDispatchStatus
3544 _dbus_connection_flush_unlocked (DBusConnection *connection)
3546 /* We have to specify DBUS_ITERATION_DO_READING here because
3547 * otherwise we could have two apps deadlock if they are both doing
3548 * a flush(), and the kernel buffers fill up. This could change the
3551 DBusDispatchStatus status;
3553 HAVE_LOCK_CHECK (connection);
3555 while (connection->n_outgoing > 0 &&
3556 _dbus_connection_get_is_connected_unlocked (connection))
3558 _dbus_verbose ("doing iteration in\n");
3559 HAVE_LOCK_CHECK (connection);
3560 _dbus_connection_do_iteration_unlocked (connection,
3562 DBUS_ITERATION_DO_READING |
3563 DBUS_ITERATION_DO_WRITING |
3564 DBUS_ITERATION_BLOCK,
3568 HAVE_LOCK_CHECK (connection);
3569 _dbus_verbose ("middle\n");
3570 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3572 HAVE_LOCK_CHECK (connection);
3577 * Blocks until the outgoing message queue is empty.
3579 * @param connection the connection.
3582 dbus_connection_flush (DBusConnection *connection)
3584 /* We have to specify DBUS_ITERATION_DO_READING here because
3585 * otherwise we could have two apps deadlock if they are both doing
3586 * a flush(), and the kernel buffers fill up. This could change the
3589 DBusDispatchStatus status;
3591 _dbus_return_if_fail (connection != NULL);
3593 CONNECTION_LOCK (connection);
3595 status = _dbus_connection_flush_unlocked (connection);
3597 HAVE_LOCK_CHECK (connection);
3598 /* Unlocks and calls out to user code */
3599 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3601 _dbus_verbose ("end\n");
3605 * This function implements dbus_connection_read_write_dispatch() and
3606 * dbus_connection_read_write() (they pass a different value for the
3607 * dispatch parameter).
3609 * @param connection the connection
3610 * @param timeout_milliseconds max time to block or -1 for infinite
3611 * @param dispatch dispatch new messages or leave them on the incoming queue
3612 * @returns #TRUE if the disconnect message has not been processed
3615 _dbus_connection_read_write_dispatch (DBusConnection *connection,
3616 int timeout_milliseconds,
3617 dbus_bool_t dispatch)
3619 DBusDispatchStatus dstatus;
3620 dbus_bool_t progress_possible;
3622 /* Need to grab a ref here in case we're a private connection and
3623 * the user drops the last ref in a handler we call; see bug
3624 * https://bugs.freedesktop.org/show_bug.cgi?id=15635
3626 dbus_connection_ref (connection);
3627 dstatus = dbus_connection_get_dispatch_status (connection);
3629 if (dispatch && dstatus == DBUS_DISPATCH_DATA_REMAINS)
3631 _dbus_verbose ("doing dispatch\n");
3632 dbus_connection_dispatch (connection);
3633 CONNECTION_LOCK (connection);
3635 else if (dstatus == DBUS_DISPATCH_NEED_MEMORY)
3637 _dbus_verbose ("pausing for memory\n");
3638 _dbus_memory_pause_based_on_timeout (timeout_milliseconds);
3639 CONNECTION_LOCK (connection);
3643 CONNECTION_LOCK (connection);
3644 if (_dbus_connection_get_is_connected_unlocked (connection))
3646 _dbus_verbose ("doing iteration\n");
3647 _dbus_connection_do_iteration_unlocked (connection,
3649 DBUS_ITERATION_DO_READING |
3650 DBUS_ITERATION_DO_WRITING |
3651 DBUS_ITERATION_BLOCK,
3652 timeout_milliseconds);
3656 HAVE_LOCK_CHECK (connection);
3657 /* If we can dispatch, we can make progress until the Disconnected message
3658 * has been processed; if we can only read/write, we can make progress
3659 * as long as the transport is open.
3662 progress_possible = connection->n_incoming != 0 ||
3663 connection->disconnect_message_link != NULL;
3665 progress_possible = _dbus_connection_get_is_connected_unlocked (connection);
3667 CONNECTION_UNLOCK (connection);
3669 dbus_connection_unref (connection);
3671 return progress_possible; /* TRUE if we can make more progress */
3676 * This function is intended for use with applications that don't want
3677 * to write a main loop and deal with #DBusWatch and #DBusTimeout. An
3678 * example usage would be:
3681 * while (dbus_connection_read_write_dispatch (connection, -1))
3682 * ; // empty loop body
3685 * In this usage you would normally have set up a filter function to look
3686 * at each message as it is dispatched. The loop terminates when the last
3687 * message from the connection (the disconnected signal) is processed.
3689 * If there are messages to dispatch, this function will
3690 * dbus_connection_dispatch() once, and return. If there are no
3691 * messages to dispatch, this function will block until it can read or
3692 * write, then read or write, then return.
3694 * The way to think of this function is that it either makes some sort
3695 * of progress, or it blocks. Note that, while it is blocked on I/O, it
3696 * cannot be interrupted (even by other threads), which makes this function
3697 * unsuitable for applications that do more than just react to received
3700 * The return value indicates whether the disconnect message has been
3701 * processed, NOT whether the connection is connected. This is
3702 * important because even after disconnecting, you want to process any
3703 * messages you received prior to the disconnect.
3705 * @param connection the connection
3706 * @param timeout_milliseconds max time to block or -1 for infinite
3707 * @returns #TRUE if the disconnect message has not been processed
3710 dbus_connection_read_write_dispatch (DBusConnection *connection,
3711 int timeout_milliseconds)
3713 _dbus_return_val_if_fail (connection != NULL, FALSE);
3714 _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
3715 return _dbus_connection_read_write_dispatch(connection, timeout_milliseconds, TRUE);
3719 * This function is intended for use with applications that don't want to
3720 * write a main loop and deal with #DBusWatch and #DBusTimeout. See also
3721 * dbus_connection_read_write_dispatch().
3723 * As long as the connection is open, this function will block until it can
3724 * read or write, then read or write, then return #TRUE.
3726 * If the connection is closed, the function returns #FALSE.
3728 * The return value indicates whether reading or writing is still
3729 * possible, i.e. whether the connection is connected.
3731 * Note that even after disconnection, messages may remain in the
3732 * incoming queue that need to be
3733 * processed. dbus_connection_read_write_dispatch() dispatches
3734 * incoming messages for you; with dbus_connection_read_write() you
3735 * have to arrange to drain the incoming queue yourself.
3737 * @param connection the connection
3738 * @param timeout_milliseconds max time to block or -1 for infinite
3739 * @returns #TRUE if still connected
3742 dbus_connection_read_write (DBusConnection *connection,
3743 int timeout_milliseconds)
3745 _dbus_return_val_if_fail (connection != NULL, FALSE);
3746 _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
3747 return _dbus_connection_read_write_dispatch(connection, timeout_milliseconds, FALSE);
3750 /* We need to call this anytime we pop the head of the queue, and then
3751 * update_dispatch_status_and_unlock needs to be called afterward
3752 * which will "process" the disconnected message and set
3753 * disconnected_message_processed.
3756 check_disconnected_message_arrived_unlocked (DBusConnection *connection,
3757 DBusMessage *head_of_queue)
3759 HAVE_LOCK_CHECK (connection);
3761 /* checking that the link is NULL is an optimization to avoid the is_signal call */
3762 if (connection->disconnect_message_link == NULL &&
3763 dbus_message_is_signal (head_of_queue,
3764 DBUS_INTERFACE_LOCAL,
3767 connection->disconnected_message_arrived = TRUE;
3772 * Returns the first-received message from the incoming message queue,
3773 * leaving it in the queue. If the queue is empty, returns #NULL.
3775 * The caller does not own a reference to the returned message, and
3776 * must either return it using dbus_connection_return_message() or
3777 * keep it after calling dbus_connection_steal_borrowed_message(). No
3778 * one can get at the message while its borrowed, so return it as
3779 * quickly as possible and don't keep a reference to it after
3780 * returning it. If you need to keep the message, make a copy of it.
3782 * dbus_connection_dispatch() will block if called while a borrowed
3783 * message is outstanding; only one piece of code can be playing with
3784 * the incoming queue at a time. This function will block if called
3785 * during a dbus_connection_dispatch().
3787 * @param connection the connection.
3788 * @returns next message in the incoming queue.
3791 dbus_connection_borrow_message (DBusConnection *connection)
3793 DBusDispatchStatus status;
3794 DBusMessage *message;
3796 _dbus_return_val_if_fail (connection != NULL, NULL);
3798 _dbus_verbose ("start\n");
3800 /* this is called for the side effect that it queues
3801 * up any messages from the transport
3803 status = dbus_connection_get_dispatch_status (connection);
3804 if (status != DBUS_DISPATCH_DATA_REMAINS)
3807 CONNECTION_LOCK (connection);
3809 _dbus_connection_acquire_dispatch (connection);
3811 /* While a message is outstanding, the dispatch lock is held */
3812 _dbus_assert (connection->message_borrowed == NULL);
3814 connection->message_borrowed = _dbus_list_get_first (&connection->incoming_messages);
3816 message = connection->message_borrowed;
3818 check_disconnected_message_arrived_unlocked (connection, message);
3820 /* Note that we KEEP the dispatch lock until the message is returned */
3821 if (message == NULL)
3822 _dbus_connection_release_dispatch (connection);
3824 CONNECTION_UNLOCK (connection);
3826 /* We don't update dispatch status until it's returned or stolen */
3832 * Used to return a message after peeking at it using
3833 * dbus_connection_borrow_message(). Only called if
3834 * message from dbus_connection_borrow_message() was non-#NULL.
3836 * @param connection the connection
3837 * @param message the message from dbus_connection_borrow_message()
3840 dbus_connection_return_message (DBusConnection *connection,
3841 DBusMessage *message)
3843 DBusDispatchStatus status;
3845 _dbus_return_if_fail (connection != NULL);
3846 _dbus_return_if_fail (message != NULL);
3847 _dbus_return_if_fail (message == connection->message_borrowed);
3848 _dbus_return_if_fail (connection->dispatch_acquired);
3850 CONNECTION_LOCK (connection);
3852 _dbus_assert (message == connection->message_borrowed);
3854 connection->message_borrowed = NULL;
3856 _dbus_connection_release_dispatch (connection);
3858 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3859 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3863 * Used to keep a message after peeking at it using
3864 * dbus_connection_borrow_message(). Before using this function, see
3865 * the caveats/warnings in the documentation for
3866 * dbus_connection_pop_message().
3868 * @param connection the connection
3869 * @param message the message from dbus_connection_borrow_message()
3872 dbus_connection_steal_borrowed_message (DBusConnection *connection,
3873 DBusMessage *message)
3875 DBusMessage *pop_message;
3876 DBusDispatchStatus status;
3878 _dbus_return_if_fail (connection != NULL);
3879 _dbus_return_if_fail (message != NULL);
3880 _dbus_return_if_fail (message == connection->message_borrowed);
3881 _dbus_return_if_fail (connection->dispatch_acquired);
3883 CONNECTION_LOCK (connection);
3885 _dbus_assert (message == connection->message_borrowed);
3887 pop_message = _dbus_list_pop_first (&connection->incoming_messages);
3888 _dbus_assert (message == pop_message);
3890 connection->n_incoming -= 1;
3892 _dbus_verbose ("Incoming message %p stolen from queue, %d incoming\n",
3893 message, connection->n_incoming);
3895 connection->message_borrowed = NULL;
3897 _dbus_connection_release_dispatch (connection);
3899 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3900 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3903 /* See dbus_connection_pop_message, but requires the caller to own
3904 * the lock before calling. May drop the lock while running.
3907 _dbus_connection_pop_message_link_unlocked (DBusConnection *connection)
3909 HAVE_LOCK_CHECK (connection);
3911 _dbus_assert (connection->message_borrowed == NULL);
3913 if (connection->n_incoming > 0)
3917 link = _dbus_list_pop_first_link (&connection->incoming_messages);
3918 connection->n_incoming -= 1;
3920 _dbus_verbose ("Message %p (%s %s %s %s '%s') removed from incoming queue %p, %d incoming\n",
3922 dbus_message_type_to_string (dbus_message_get_type (link->data)),
3923 dbus_message_get_path (link->data) ?
3924 dbus_message_get_path (link->data) :
3926 dbus_message_get_interface (link->data) ?
3927 dbus_message_get_interface (link->data) :
3929 dbus_message_get_member (link->data) ?
3930 dbus_message_get_member (link->data) :
3932 dbus_message_get_signature (link->data),
3933 connection, connection->n_incoming);
3935 check_disconnected_message_arrived_unlocked (connection, link->data);
3943 /* See dbus_connection_pop_message, but requires the caller to own
3944 * the lock before calling. May drop the lock while running.
3947 _dbus_connection_pop_message_unlocked (DBusConnection *connection)
3951 HAVE_LOCK_CHECK (connection);
3953 link = _dbus_connection_pop_message_link_unlocked (connection);
3957 DBusMessage *message;
3959 message = link->data;
3961 _dbus_list_free_link (link);
3970 _dbus_connection_putback_message_link_unlocked (DBusConnection *connection,
3971 DBusList *message_link)
3973 HAVE_LOCK_CHECK (connection);
3975 _dbus_assert (message_link != NULL);
3976 /* You can't borrow a message while a link is outstanding */
3977 _dbus_assert (connection->message_borrowed == NULL);
3978 /* We had to have the dispatch lock across the pop/putback */
3979 _dbus_assert (connection->dispatch_acquired);
3981 _dbus_list_prepend_link (&connection->incoming_messages,
3983 connection->n_incoming += 1;
3985 _dbus_verbose ("Message %p (%s %s %s '%s') put back into queue %p, %d incoming\n",
3987 dbus_message_type_to_string (dbus_message_get_type (message_link->data)),
3988 dbus_message_get_interface (message_link->data) ?
3989 dbus_message_get_interface (message_link->data) :
3991 dbus_message_get_member (message_link->data) ?
3992 dbus_message_get_member (message_link->data) :
3994 dbus_message_get_signature (message_link->data),
3995 connection, connection->n_incoming);
3999 * Returns the first-received message from the incoming message queue,
4000 * removing it from the queue. The caller owns a reference to the
4001 * returned message. If the queue is empty, returns #NULL.
4003 * This function bypasses any message handlers that are registered,
4004 * and so using it is usually wrong. Instead, let the main loop invoke
4005 * dbus_connection_dispatch(). Popping messages manually is only
4006 * useful in very simple programs that don't share a #DBusConnection
4007 * with any libraries or other modules.
4009 * There is a lock that covers all ways of accessing the incoming message
4010 * queue, so dbus_connection_dispatch(), dbus_connection_pop_message(),
4011 * dbus_connection_borrow_message(), etc. will all block while one of the others
4012 * in the group is running.
4014 * @param connection the connection.
4015 * @returns next message in the incoming queue.
4018 dbus_connection_pop_message (DBusConnection *connection)
4020 DBusMessage *message;
4021 DBusDispatchStatus status;
4023 _dbus_verbose ("start\n");
4025 /* this is called for the side effect that it queues
4026 * up any messages from the transport
4028 status = dbus_connection_get_dispatch_status (connection);
4029 if (status != DBUS_DISPATCH_DATA_REMAINS)
4032 CONNECTION_LOCK (connection);
4033 _dbus_connection_acquire_dispatch (connection);
4034 HAVE_LOCK_CHECK (connection);
4036 message = _dbus_connection_pop_message_unlocked (connection);
4038 _dbus_verbose ("Returning popped message %p\n", message);
4040 _dbus_connection_release_dispatch (connection);
4042 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4043 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4049 * Acquire the dispatcher. This is a separate lock so the main
4050 * connection lock can be dropped to call out to application dispatch
4053 * @param connection the connection.
4056 _dbus_connection_acquire_dispatch (DBusConnection *connection)
4058 HAVE_LOCK_CHECK (connection);
4060 _dbus_connection_ref_unlocked (connection);
4061 CONNECTION_UNLOCK (connection);
4063 _dbus_verbose ("locking dispatch_mutex\n");
4064 _dbus_mutex_lock (connection->dispatch_mutex);
4066 while (connection->dispatch_acquired)
4068 _dbus_verbose ("waiting for dispatch to be acquirable\n");
4069 _dbus_condvar_wait (connection->dispatch_cond,
4070 connection->dispatch_mutex);
4073 _dbus_assert (!connection->dispatch_acquired);
4075 connection->dispatch_acquired = TRUE;
4077 _dbus_verbose ("unlocking dispatch_mutex\n");
4078 _dbus_mutex_unlock (connection->dispatch_mutex);
4080 CONNECTION_LOCK (connection);
4081 _dbus_connection_unref_unlocked (connection);
4085 * Release the dispatcher when you're done with it. Only call
4086 * after you've acquired the dispatcher. Wakes up at most one
4087 * thread currently waiting to acquire the dispatcher.
4089 * @param connection the connection.
4092 _dbus_connection_release_dispatch (DBusConnection *connection)
4094 HAVE_LOCK_CHECK (connection);
4096 _dbus_verbose ("locking dispatch_mutex\n");
4097 _dbus_mutex_lock (connection->dispatch_mutex);
4099 _dbus_assert (connection->dispatch_acquired);
4101 connection->dispatch_acquired = FALSE;
4102 _dbus_condvar_wake_one (connection->dispatch_cond);
4104 _dbus_verbose ("unlocking dispatch_mutex\n");
4105 _dbus_mutex_unlock (connection->dispatch_mutex);
4109 _dbus_connection_failed_pop (DBusConnection *connection,
4110 DBusList *message_link)
4112 _dbus_list_prepend_link (&connection->incoming_messages,
4114 connection->n_incoming += 1;
4117 /* Note this may be called multiple times since we don't track whether we already did it */
4119 notify_disconnected_unlocked (DBusConnection *connection)
4121 HAVE_LOCK_CHECK (connection);
4123 /* Set the weakref in dbus-bus.c to NULL, so nobody will get a disconnected
4124 * connection from dbus_bus_get(). We make the same guarantee for
4125 * dbus_connection_open() but in a different way since we don't want to
4126 * unref right here; we instead check for connectedness before returning
4127 * the connection from the hash.
4129 _dbus_bus_notify_shared_connection_disconnected_unlocked (connection);
4131 /* Dump the outgoing queue, we aren't going to be able to
4132 * send it now, and we'd like accessors like
4133 * dbus_connection_get_outgoing_size() to be accurate.
4135 if (connection->n_outgoing > 0)
4139 _dbus_verbose ("Dropping %d outgoing messages since we're disconnected\n",
4140 connection->n_outgoing);
4142 while ((link = _dbus_list_get_last_link (&connection->outgoing_messages)))
4144 _dbus_connection_message_sent (connection, link->data);
4149 /* Note this may be called multiple times since we don't track whether we already did it */
4150 static DBusDispatchStatus
4151 notify_disconnected_and_dispatch_complete_unlocked (DBusConnection *connection)
4153 HAVE_LOCK_CHECK (connection);
4155 if (connection->disconnect_message_link != NULL)
4157 _dbus_verbose ("Sending disconnect message\n");
4159 /* If we have pending calls, queue their timeouts - we want the Disconnected
4160 * to be the last message, after these timeouts.
4162 connection_timeout_and_complete_all_pending_calls_unlocked (connection);
4164 /* We haven't sent the disconnect message already,
4165 * and all real messages have been queued up.
4167 _dbus_connection_queue_synthesized_message_link (connection,
4168 connection->disconnect_message_link);
4169 connection->disconnect_message_link = NULL;
4171 return DBUS_DISPATCH_DATA_REMAINS;
4174 return DBUS_DISPATCH_COMPLETE;
4177 static DBusDispatchStatus
4178 _dbus_connection_get_dispatch_status_unlocked (DBusConnection *connection)
4180 HAVE_LOCK_CHECK (connection);
4182 if (connection->n_incoming > 0)
4183 return DBUS_DISPATCH_DATA_REMAINS;
4184 else if (!_dbus_transport_queue_messages (connection->transport))
4185 return DBUS_DISPATCH_NEED_MEMORY;
4188 DBusDispatchStatus status;
4189 dbus_bool_t is_connected;
4191 status = _dbus_transport_get_dispatch_status (connection->transport);
4192 is_connected = _dbus_transport_get_is_connected (connection->transport);
4194 _dbus_verbose ("dispatch status = %s is_connected = %d\n",
4195 DISPATCH_STATUS_NAME (status), is_connected);
4199 /* It's possible this would be better done by having an explicit
4200 * notification from _dbus_transport_disconnect() that would
4201 * synchronously do this, instead of waiting for the next dispatch
4202 * status check. However, probably not good to change until it causes
4205 notify_disconnected_unlocked (connection);
4207 /* I'm not sure this is needed; the idea is that we want to
4208 * queue the Disconnected only after we've read all the
4209 * messages, but if we're disconnected maybe we are guaranteed
4210 * to have read them all ?
4212 if (status == DBUS_DISPATCH_COMPLETE)
4213 status = notify_disconnected_and_dispatch_complete_unlocked (connection);
4216 if (status != DBUS_DISPATCH_COMPLETE)
4218 else if (connection->n_incoming > 0)
4219 return DBUS_DISPATCH_DATA_REMAINS;
4221 return DBUS_DISPATCH_COMPLETE;
4226 _dbus_connection_update_dispatch_status_and_unlock (DBusConnection *connection,
4227 DBusDispatchStatus new_status)
4229 dbus_bool_t changed;
4230 DBusDispatchStatusFunction function;
4233 HAVE_LOCK_CHECK (connection);
4235 _dbus_connection_ref_unlocked (connection);
4237 changed = new_status != connection->last_dispatch_status;
4239 connection->last_dispatch_status = new_status;
4241 function = connection->dispatch_status_function;
4242 data = connection->dispatch_status_data;
4244 if (connection->disconnected_message_arrived &&
4245 !connection->disconnected_message_processed)
4247 connection->disconnected_message_processed = TRUE;
4249 /* this does an unref, but we have a ref
4250 * so we should not run the finalizer here
4253 connection_forget_shared_unlocked (connection);
4255 if (connection->exit_on_disconnect)
4257 CONNECTION_UNLOCK (connection);
4259 _dbus_verbose ("Exiting on Disconnected signal\n");
4261 _dbus_assert_not_reached ("Call to exit() returned");
4265 /* We drop the lock */
4266 CONNECTION_UNLOCK (connection);
4268 if (changed && function)
4270 _dbus_verbose ("Notifying of change to dispatch status of %p now %d (%s)\n",
4271 connection, new_status,
4272 DISPATCH_STATUS_NAME (new_status));
4273 (* function) (connection, new_status, data);
4276 dbus_connection_unref (connection);
4280 * Gets the current state of the incoming message queue.
4281 * #DBUS_DISPATCH_DATA_REMAINS indicates that the message queue
4282 * may contain messages. #DBUS_DISPATCH_COMPLETE indicates that the
4283 * incoming queue is empty. #DBUS_DISPATCH_NEED_MEMORY indicates that
4284 * there could be data, but we can't know for sure without more
4287 * To process the incoming message queue, use dbus_connection_dispatch()
4288 * or (in rare cases) dbus_connection_pop_message().
4290 * Note, #DBUS_DISPATCH_DATA_REMAINS really means that either we
4291 * have messages in the queue, or we have raw bytes buffered up
4292 * that need to be parsed. When these bytes are parsed, they
4293 * may not add up to an entire message. Thus, it's possible
4294 * to see a status of #DBUS_DISPATCH_DATA_REMAINS but not
4295 * have a message yet.
4297 * In particular this happens on initial connection, because all sorts
4298 * of authentication protocol stuff has to be parsed before the
4299 * first message arrives.
4301 * @param connection the connection.
4302 * @returns current dispatch status
4305 dbus_connection_get_dispatch_status (DBusConnection *connection)
4307 DBusDispatchStatus status;
4309 _dbus_return_val_if_fail (connection != NULL, DBUS_DISPATCH_COMPLETE);
4311 _dbus_verbose ("start\n");
4313 CONNECTION_LOCK (connection);
4315 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4317 CONNECTION_UNLOCK (connection);
4323 * Filter funtion for handling the Peer standard interface.
4325 static DBusHandlerResult
4326 _dbus_connection_peer_filter_unlocked_no_update (DBusConnection *connection,
4327 DBusMessage *message)
4329 if (connection->route_peer_messages && dbus_message_get_destination (message) != NULL)
4331 /* This means we're letting the bus route this message */
4332 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
4334 else if (dbus_message_is_method_call (message,
4335 DBUS_INTERFACE_PEER,
4341 ret = dbus_message_new_method_return (message);
4343 return DBUS_HANDLER_RESULT_NEED_MEMORY;
4345 sent = _dbus_connection_send_unlocked_no_update (connection, ret, NULL);
4347 dbus_message_unref (ret);
4350 return DBUS_HANDLER_RESULT_NEED_MEMORY;
4352 return DBUS_HANDLER_RESULT_HANDLED;
4354 else if (dbus_message_is_method_call (message,
4355 DBUS_INTERFACE_PEER,
4362 ret = dbus_message_new_method_return (message);
4364 return DBUS_HANDLER_RESULT_NEED_MEMORY;
4367 _dbus_string_init (&uuid);
4368 if (_dbus_get_local_machine_uuid_encoded (&uuid))
4370 const char *v_STRING = _dbus_string_get_const_data (&uuid);
4371 if (dbus_message_append_args (ret,
4372 DBUS_TYPE_STRING, &v_STRING,
4375 sent = _dbus_connection_send_unlocked_no_update (connection, ret, NULL);
4378 _dbus_string_free (&uuid);
4380 dbus_message_unref (ret);
4383 return DBUS_HANDLER_RESULT_NEED_MEMORY;
4385 return DBUS_HANDLER_RESULT_HANDLED;
4387 else if (dbus_message_has_interface (message, DBUS_INTERFACE_PEER))
4389 /* We need to bounce anything else with this interface, otherwise apps
4390 * could start extending the interface and when we added extensions
4391 * here to DBusConnection we'd break those apps.
4397 ret = dbus_message_new_error (message,
4398 DBUS_ERROR_UNKNOWN_METHOD,
4399 "Unknown method invoked on org.freedesktop.DBus.Peer interface");
4401 return DBUS_HANDLER_RESULT_NEED_MEMORY;
4403 sent = _dbus_connection_send_unlocked_no_update (connection, ret, NULL);
4405 dbus_message_unref (ret);
4408 return DBUS_HANDLER_RESULT_NEED_MEMORY;
4410 return DBUS_HANDLER_RESULT_HANDLED;
4414 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
4419 * Processes all builtin filter functions
4421 * If the spec specifies a standard interface
4422 * they should be processed from this method
4424 static DBusHandlerResult
4425 _dbus_connection_run_builtin_filters_unlocked_no_update (DBusConnection *connection,
4426 DBusMessage *message)
4428 /* We just run one filter for now but have the option to run more
4429 if the spec calls for it in the future */
4431 return _dbus_connection_peer_filter_unlocked_no_update (connection, message);
4435 * Processes any incoming data.
4437 * If there's incoming raw data that has not yet been parsed, it is
4438 * parsed, which may or may not result in adding messages to the
4441 * The incoming data buffer is filled when the connection reads from
4442 * its underlying transport (such as a socket). Reading usually
4443 * happens in dbus_watch_handle() or dbus_connection_read_write().
4445 * If there are complete messages in the incoming queue,
4446 * dbus_connection_dispatch() removes one message from the queue and
4447 * processes it. Processing has three steps.
4449 * First, any method replies are passed to #DBusPendingCall or
4450 * dbus_connection_send_with_reply_and_block() in order to
4451 * complete the pending method call.
4453 * Second, any filters registered with dbus_connection_add_filter()
4454 * are run. If any filter returns #DBUS_HANDLER_RESULT_HANDLED
4455 * then processing stops after that filter.
4457 * Third, if the message is a method call it is forwarded to
4458 * any registered object path handlers added with
4459 * dbus_connection_register_object_path() or
4460 * dbus_connection_register_fallback().
4462 * A single call to dbus_connection_dispatch() will process at most
4463 * one message; it will not clear the entire message queue.
4465 * Be careful about calling dbus_connection_dispatch() from inside a
4466 * message handler, i.e. calling dbus_connection_dispatch()
4467 * recursively. If threads have been initialized with a recursive
4468 * mutex function, then this will not deadlock; however, it can
4469 * certainly confuse your application.
4471 * @todo some FIXME in here about handling DBUS_HANDLER_RESULT_NEED_MEMORY
4473 * @param connection the connection
4474 * @returns dispatch status, see dbus_connection_get_dispatch_status()
4477 dbus_connection_dispatch (DBusConnection *connection)
4479 DBusMessage *message;
4480 DBusList *link, *filter_list_copy, *message_link;
4481 DBusHandlerResult result;
4482 DBusPendingCall *pending;
4483 dbus_int32_t reply_serial;
4484 DBusDispatchStatus status;
4485 dbus_bool_t found_object;
4487 _dbus_return_val_if_fail (connection != NULL, DBUS_DISPATCH_COMPLETE);
4489 _dbus_verbose ("\n");
4491 CONNECTION_LOCK (connection);
4492 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4493 if (status != DBUS_DISPATCH_DATA_REMAINS)
4495 /* unlocks and calls out to user code */
4496 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4500 /* We need to ref the connection since the callback could potentially
4501 * drop the last ref to it
4503 _dbus_connection_ref_unlocked (connection);
4505 _dbus_connection_acquire_dispatch (connection);
4506 HAVE_LOCK_CHECK (connection);
4508 message_link = _dbus_connection_pop_message_link_unlocked (connection);
4509 if (message_link == NULL)
4511 /* another thread dispatched our stuff */
4513 _dbus_verbose ("another thread dispatched message (during acquire_dispatch above)\n");
4515 _dbus_connection_release_dispatch (connection);
4517 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4519 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4521 dbus_connection_unref (connection);
4526 message = message_link->data;
4528 _dbus_verbose (" dispatching message %p (%s %s %s '%s')\n",
4530 dbus_message_type_to_string (dbus_message_get_type (message)),
4531 dbus_message_get_interface (message) ?
4532 dbus_message_get_interface (message) :
4534 dbus_message_get_member (message) ?
4535 dbus_message_get_member (message) :
4537 dbus_message_get_signature (message));
4539 result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
4541 /* Pending call handling must be first, because if you do
4542 * dbus_connection_send_with_reply_and_block() or
4543 * dbus_pending_call_block() then no handlers/filters will be run on
4544 * the reply. We want consistent semantics in the case where we
4545 * dbus_connection_dispatch() the reply.
4548 reply_serial = dbus_message_get_reply_serial (message);
4549 pending = _dbus_hash_table_lookup_int (connection->pending_replies,
4553 _dbus_verbose ("Dispatching a pending reply\n");
4554 complete_pending_call_and_unlock (connection, pending, message);
4555 pending = NULL; /* it's probably unref'd */
4557 CONNECTION_LOCK (connection);
4558 _dbus_verbose ("pending call completed in dispatch\n");
4559 result = DBUS_HANDLER_RESULT_HANDLED;
4563 result = _dbus_connection_run_builtin_filters_unlocked_no_update (connection, message);
4564 if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
4567 if (!_dbus_list_copy (&connection->filter_list, &filter_list_copy))
4569 _dbus_connection_release_dispatch (connection);
4570 HAVE_LOCK_CHECK (connection);
4572 _dbus_connection_failed_pop (connection, message_link);
4574 /* unlocks and calls user code */
4575 _dbus_connection_update_dispatch_status_and_unlock (connection,
4576 DBUS_DISPATCH_NEED_MEMORY);
4577 dbus_connection_unref (connection);
4579 return DBUS_DISPATCH_NEED_MEMORY;
4582 _dbus_list_foreach (&filter_list_copy,
4583 (DBusForeachFunction)_dbus_message_filter_ref,
4586 /* We're still protected from dispatch() reentrancy here
4587 * since we acquired the dispatcher
4589 CONNECTION_UNLOCK (connection);
4591 link = _dbus_list_get_first_link (&filter_list_copy);
4592 while (link != NULL)
4594 DBusMessageFilter *filter = link->data;
4595 DBusList *next = _dbus_list_get_next_link (&filter_list_copy, link);
4597 if (filter->function == NULL)
4599 _dbus_verbose (" filter was removed in a callback function\n");
4604 _dbus_verbose (" running filter on message %p\n", message);
4605 result = (* filter->function) (connection, message, filter->user_data);
4607 if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
4613 _dbus_list_foreach (&filter_list_copy,
4614 (DBusForeachFunction)_dbus_message_filter_unref,
4616 _dbus_list_clear (&filter_list_copy);
4618 CONNECTION_LOCK (connection);
4620 if (result == DBUS_HANDLER_RESULT_NEED_MEMORY)
4622 _dbus_verbose ("No memory\n");
4625 else if (result == DBUS_HANDLER_RESULT_HANDLED)
4627 _dbus_verbose ("filter handled message in dispatch\n");
4631 /* We're still protected from dispatch() reentrancy here
4632 * since we acquired the dispatcher
4634 _dbus_verbose (" running object path dispatch on message %p (%s %s %s '%s')\n",
4636 dbus_message_type_to_string (dbus_message_get_type (message)),
4637 dbus_message_get_interface (message) ?
4638 dbus_message_get_interface (message) :
4640 dbus_message_get_member (message) ?
4641 dbus_message_get_member (message) :
4643 dbus_message_get_signature (message));
4645 HAVE_LOCK_CHECK (connection);
4646 result = _dbus_object_tree_dispatch_and_unlock (connection->objects,
4650 CONNECTION_LOCK (connection);
4652 if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
4654 _dbus_verbose ("object tree handled message in dispatch\n");
4658 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_CALL)
4662 DBusPreallocatedSend *preallocated;
4664 _dbus_verbose (" sending error %s\n",
4665 DBUS_ERROR_UNKNOWN_METHOD);
4667 if (!_dbus_string_init (&str))
4669 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4670 _dbus_verbose ("no memory for error string in dispatch\n");
4674 if (!_dbus_string_append_printf (&str,
4675 "Method \"%s\" with signature \"%s\" on interface \"%s\" doesn't exist\n",
4676 dbus_message_get_member (message),
4677 dbus_message_get_signature (message),
4678 dbus_message_get_interface (message)))
4680 _dbus_string_free (&str);
4681 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4682 _dbus_verbose ("no memory for error string in dispatch\n");
4686 reply = dbus_message_new_error (message,
4687 found_object ? DBUS_ERROR_UNKNOWN_METHOD : DBUS_ERROR_UNKNOWN_OBJECT,
4688 _dbus_string_get_const_data (&str));
4689 _dbus_string_free (&str);
4693 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4694 _dbus_verbose ("no memory for error reply in dispatch\n");
4698 preallocated = _dbus_connection_preallocate_send_unlocked (connection);
4700 if (preallocated == NULL)
4702 dbus_message_unref (reply);
4703 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4704 _dbus_verbose ("no memory for error send in dispatch\n");
4708 _dbus_connection_send_preallocated_unlocked_no_update (connection, preallocated,
4711 dbus_message_unref (reply);
4713 result = DBUS_HANDLER_RESULT_HANDLED;
4716 _dbus_verbose (" done dispatching %p (%s %s %s '%s') on connection %p\n", message,
4717 dbus_message_type_to_string (dbus_message_get_type (message)),
4718 dbus_message_get_interface (message) ?
4719 dbus_message_get_interface (message) :
4721 dbus_message_get_member (message) ?
4722 dbus_message_get_member (message) :
4724 dbus_message_get_signature (message),
4728 if (result == DBUS_HANDLER_RESULT_NEED_MEMORY)
4730 _dbus_verbose ("out of memory\n");
4732 /* Put message back, and we'll start over.
4733 * Yes this means handlers must be idempotent if they
4734 * don't return HANDLED; c'est la vie.
4736 _dbus_connection_putback_message_link_unlocked (connection,
4741 _dbus_verbose (" ... done dispatching\n");
4743 _dbus_list_free_link (message_link);
4744 dbus_message_unref (message); /* don't want the message to count in max message limits
4745 * in computing dispatch status below
4749 _dbus_connection_release_dispatch (connection);
4750 HAVE_LOCK_CHECK (connection);
4752 _dbus_verbose ("before final status update\n");
4753 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4755 /* unlocks and calls user code */
4756 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4758 dbus_connection_unref (connection);
4764 * Sets the watch functions for the connection. These functions are
4765 * responsible for making the application's main loop aware of file
4766 * descriptors that need to be monitored for events, using select() or
4767 * poll(). When using Qt, typically the DBusAddWatchFunction would
4768 * create a QSocketNotifier. When using GLib, the DBusAddWatchFunction
4769 * could call g_io_add_watch(), or could be used as part of a more
4770 * elaborate GSource. Note that when a watch is added, it may
4773 * The DBusWatchToggledFunction notifies the application that the
4774 * watch has been enabled or disabled. Call dbus_watch_get_enabled()
4775 * to check this. A disabled watch should have no effect, and enabled
4776 * watch should be added to the main loop. This feature is used
4777 * instead of simply adding/removing the watch because
4778 * enabling/disabling can be done without memory allocation. The
4779 * toggled function may be NULL if a main loop re-queries
4780 * dbus_watch_get_enabled() every time anyway.
4782 * The DBusWatch can be queried for the file descriptor to watch using
4783 * dbus_watch_get_unix_fd() or dbus_watch_get_socket(), and for the
4784 * events to watch for using dbus_watch_get_flags(). The flags
4785 * returned by dbus_watch_get_flags() will only contain
4786 * DBUS_WATCH_READABLE and DBUS_WATCH_WRITABLE, never
4787 * DBUS_WATCH_HANGUP or DBUS_WATCH_ERROR; all watches implicitly
4788 * include a watch for hangups, errors, and other exceptional
4791 * Once a file descriptor becomes readable or writable, or an exception
4792 * occurs, dbus_watch_handle() should be called to
4793 * notify the connection of the file descriptor's condition.
4795 * dbus_watch_handle() cannot be called during the
4796 * DBusAddWatchFunction, as the connection will not be ready to handle
4799 * It is not allowed to reference a DBusWatch after it has been passed
4800 * to remove_function.
4802 * If #FALSE is returned due to lack of memory, the failure may be due
4803 * to a #FALSE return from the new add_function. If so, the
4804 * add_function may have been called successfully one or more times,
4805 * but the remove_function will also have been called to remove any
4806 * successful adds. i.e. if #FALSE is returned the net result
4807 * should be that dbus_connection_set_watch_functions() has no effect,
4808 * but the add_function and remove_function may have been called.
4810 * @note The thread lock on DBusConnection is held while
4811 * watch functions are invoked, so inside these functions you
4812 * may not invoke any methods on DBusConnection or it will deadlock.
4813 * See the comments in the code or http://lists.freedesktop.org/archives/dbus/2007-July/tread.html#8144
4814 * if you encounter this issue and want to attempt writing a patch.
4816 * @param connection the connection.
4817 * @param add_function function to begin monitoring a new descriptor.
4818 * @param remove_function function to stop monitoring a descriptor.
4819 * @param toggled_function function to notify of enable/disable
4820 * @param data data to pass to add_function and remove_function.
4821 * @param free_data_function function to be called to free the data.
4822 * @returns #FALSE on failure (no memory)
4825 dbus_connection_set_watch_functions (DBusConnection *connection,
4826 DBusAddWatchFunction add_function,
4827 DBusRemoveWatchFunction remove_function,
4828 DBusWatchToggledFunction toggled_function,
4830 DBusFreeFunction free_data_function)
4834 _dbus_return_val_if_fail (connection != NULL, FALSE);
4836 CONNECTION_LOCK (connection);
4838 retval = _dbus_watch_list_set_functions (connection->watches,
4839 add_function, remove_function,
4841 data, free_data_function);
4843 CONNECTION_UNLOCK (connection);
4849 * Sets the timeout functions for the connection. These functions are
4850 * responsible for making the application's main loop aware of timeouts.
4851 * When using Qt, typically the DBusAddTimeoutFunction would create a
4852 * QTimer. When using GLib, the DBusAddTimeoutFunction would call
4855 * The DBusTimeoutToggledFunction notifies the application that the
4856 * timeout has been enabled or disabled. Call
4857 * dbus_timeout_get_enabled() to check this. A disabled timeout should
4858 * have no effect, and enabled timeout should be added to the main
4859 * loop. This feature is used instead of simply adding/removing the
4860 * timeout because enabling/disabling can be done without memory
4861 * allocation. With Qt, QTimer::start() and QTimer::stop() can be used
4862 * to enable and disable. The toggled function may be NULL if a main
4863 * loop re-queries dbus_timeout_get_enabled() every time anyway.
4864 * Whenever a timeout is toggled, its interval may change.
4866 * The DBusTimeout can be queried for the timer interval using
4867 * dbus_timeout_get_interval(). dbus_timeout_handle() should be called
4868 * repeatedly, each time the interval elapses, starting after it has
4869 * elapsed once. The timeout stops firing when it is removed with the
4870 * given remove_function. The timer interval may change whenever the
4871 * timeout is added, removed, or toggled.
4873 * @note The thread lock on DBusConnection is held while
4874 * timeout functions are invoked, so inside these functions you
4875 * may not invoke any methods on DBusConnection or it will deadlock.
4876 * See the comments in the code or http://lists.freedesktop.org/archives/dbus/2007-July/thread.html#8144
4877 * if you encounter this issue and want to attempt writing a patch.
4879 * @param connection the connection.
4880 * @param add_function function to add a timeout.
4881 * @param remove_function function to remove a timeout.
4882 * @param toggled_function function to notify of enable/disable
4883 * @param data data to pass to add_function and remove_function.
4884 * @param free_data_function function to be called to free the data.
4885 * @returns #FALSE on failure (no memory)
4888 dbus_connection_set_timeout_functions (DBusConnection *connection,
4889 DBusAddTimeoutFunction add_function,
4890 DBusRemoveTimeoutFunction remove_function,
4891 DBusTimeoutToggledFunction toggled_function,
4893 DBusFreeFunction free_data_function)
4897 _dbus_return_val_if_fail (connection != NULL, FALSE);
4899 CONNECTION_LOCK (connection);
4901 retval = _dbus_timeout_list_set_functions (connection->timeouts,
4902 add_function, remove_function,
4904 data, free_data_function);
4906 CONNECTION_UNLOCK (connection);
4912 * Sets the mainloop wakeup function for the connection. This function
4913 * is responsible for waking up the main loop (if its sleeping in
4914 * another thread) when some some change has happened to the
4915 * connection that the mainloop needs to reconsider (e.g. a message
4916 * has been queued for writing). When using Qt, this typically
4917 * results in a call to QEventLoop::wakeUp(). When using GLib, it
4918 * would call g_main_context_wakeup().
4920 * @param connection the connection.
4921 * @param wakeup_main_function function to wake up the mainloop
4922 * @param data data to pass wakeup_main_function
4923 * @param free_data_function function to be called to free the data.
4926 dbus_connection_set_wakeup_main_function (DBusConnection *connection,
4927 DBusWakeupMainFunction wakeup_main_function,
4929 DBusFreeFunction free_data_function)
4932 DBusFreeFunction old_free_data;
4934 _dbus_return_if_fail (connection != NULL);
4936 CONNECTION_LOCK (connection);
4937 old_data = connection->wakeup_main_data;
4938 old_free_data = connection->free_wakeup_main_data;
4940 connection->wakeup_main_function = wakeup_main_function;
4941 connection->wakeup_main_data = data;
4942 connection->free_wakeup_main_data = free_data_function;
4944 CONNECTION_UNLOCK (connection);
4946 /* Callback outside the lock */
4948 (*old_free_data) (old_data);
4952 * Set a function to be invoked when the dispatch status changes.
4953 * If the dispatch status is #DBUS_DISPATCH_DATA_REMAINS, then
4954 * dbus_connection_dispatch() needs to be called to process incoming
4955 * messages. However, dbus_connection_dispatch() MUST NOT BE CALLED
4956 * from inside the DBusDispatchStatusFunction. Indeed, almost
4957 * any reentrancy in this function is a bad idea. Instead,
4958 * the DBusDispatchStatusFunction should simply save an indication
4959 * that messages should be dispatched later, when the main loop
4962 * If you don't set a dispatch status function, you have to be sure to
4963 * dispatch on every iteration of your main loop, especially if
4964 * dbus_watch_handle() or dbus_timeout_handle() were called.
4966 * @param connection the connection
4967 * @param function function to call on dispatch status changes
4968 * @param data data for function
4969 * @param free_data_function free the function data
4972 dbus_connection_set_dispatch_status_function (DBusConnection *connection,
4973 DBusDispatchStatusFunction function,
4975 DBusFreeFunction free_data_function)
4978 DBusFreeFunction old_free_data;
4980 _dbus_return_if_fail (connection != NULL);
4982 CONNECTION_LOCK (connection);
4983 old_data = connection->dispatch_status_data;
4984 old_free_data = connection->free_dispatch_status_data;
4986 connection->dispatch_status_function = function;
4987 connection->dispatch_status_data = data;
4988 connection->free_dispatch_status_data = free_data_function;
4990 CONNECTION_UNLOCK (connection);
4992 /* Callback outside the lock */
4994 (*old_free_data) (old_data);
4998 * Get the UNIX file descriptor of the connection, if any. This can
4999 * be used for SELinux access control checks with getpeercon() for
5000 * example. DO NOT read or write to the file descriptor, or try to
5001 * select() on it; use DBusWatch for main loop integration. Not all
5002 * connections will have a file descriptor. So for adding descriptors
5003 * to the main loop, use dbus_watch_get_unix_fd() and so forth.
5005 * If the connection is socket-based, you can also use
5006 * dbus_connection_get_socket(), which will work on Windows too.
5007 * This function always fails on Windows.
5009 * Right now the returned descriptor is always a socket, but
5010 * that is not guaranteed.
5012 * @param connection the connection
5013 * @param fd return location for the file descriptor.
5014 * @returns #TRUE if fd is successfully obtained.
5017 dbus_connection_get_unix_fd (DBusConnection *connection,
5020 _dbus_return_val_if_fail (connection != NULL, FALSE);
5021 _dbus_return_val_if_fail (connection->transport != NULL, FALSE);
5024 /* FIXME do this on a lower level */
5028 return dbus_connection_get_socket(connection, fd);
5032 * Gets the underlying Windows or UNIX socket file descriptor
5033 * of the connection, if any. DO NOT read or write to the file descriptor, or try to
5034 * select() on it; use DBusWatch for main loop integration. Not all
5035 * connections will have a socket. So for adding descriptors
5036 * to the main loop, use dbus_watch_get_socket() and so forth.
5038 * If the connection is not socket-based, this function will return FALSE,
5039 * even if the connection does have a file descriptor of some kind.
5040 * i.e. this function always returns specifically a socket file descriptor.
5042 * @param connection the connection
5043 * @param fd return location for the file descriptor.
5044 * @returns #TRUE if fd is successfully obtained.
5047 dbus_connection_get_socket(DBusConnection *connection,
5052 _dbus_return_val_if_fail (connection != NULL, FALSE);
5053 _dbus_return_val_if_fail (connection->transport != NULL, FALSE);
5055 CONNECTION_LOCK (connection);
5057 retval = _dbus_transport_get_socket_fd (connection->transport,
5060 CONNECTION_UNLOCK (connection);
5067 * Gets the UNIX user ID of the connection if known. Returns #TRUE if
5068 * the uid is filled in. Always returns #FALSE on non-UNIX platforms
5069 * for now, though in theory someone could hook Windows to NIS or
5070 * something. Always returns #FALSE prior to authenticating the
5073 * The UID is only read by servers from clients; clients can't usually
5074 * get the UID of servers, because servers do not authenticate to
5075 * clients. The returned UID is the UID the connection authenticated
5078 * The message bus is a server and the apps connecting to the bus
5081 * You can ask the bus to tell you the UID of another connection though
5082 * if you like; this is done with dbus_bus_get_unix_user().
5084 * @param connection the connection
5085 * @param uid return location for the user ID
5086 * @returns #TRUE if uid is filled in with a valid user ID
5089 dbus_connection_get_unix_user (DBusConnection *connection,
5094 _dbus_return_val_if_fail (connection != NULL, FALSE);
5095 _dbus_return_val_if_fail (uid != NULL, FALSE);
5097 CONNECTION_LOCK (connection);
5099 if (!_dbus_transport_get_is_authenticated (connection->transport))
5102 result = _dbus_transport_get_unix_user (connection->transport,
5106 _dbus_assert (!result);
5109 CONNECTION_UNLOCK (connection);
5115 * Gets the process ID of the connection if any.
5116 * Returns #TRUE if the pid is filled in.
5117 * Always returns #FALSE prior to authenticating the
5120 * @param connection the connection
5121 * @param pid return location for the process ID
5122 * @returns #TRUE if uid is filled in with a valid process ID
5125 dbus_connection_get_unix_process_id (DBusConnection *connection,
5130 _dbus_return_val_if_fail (connection != NULL, FALSE);
5131 _dbus_return_val_if_fail (pid != NULL, FALSE);
5133 CONNECTION_LOCK (connection);
5135 if (!_dbus_transport_get_is_authenticated (connection->transport))
5138 result = _dbus_transport_get_unix_process_id (connection->transport,
5141 CONNECTION_UNLOCK (connection);
5147 * Gets the ADT audit data of the connection if any.
5148 * Returns #TRUE if the structure pointer is returned.
5149 * Always returns #FALSE prior to authenticating the
5152 * @param connection the connection
5153 * @param data return location for audit data
5154 * @returns #TRUE if audit data is filled in with a valid ucred pointer
5157 dbus_connection_get_adt_audit_session_data (DBusConnection *connection,
5159 dbus_int32_t *data_size)
5163 _dbus_return_val_if_fail (connection != NULL, FALSE);
5164 _dbus_return_val_if_fail (data != NULL, FALSE);
5165 _dbus_return_val_if_fail (data_size != NULL, FALSE);
5167 CONNECTION_LOCK (connection);
5169 if (!_dbus_transport_get_is_authenticated (connection->transport))
5172 result = _dbus_transport_get_adt_audit_session_data (connection->transport,
5175 CONNECTION_UNLOCK (connection);
5181 * Sets a predicate function used to determine whether a given user ID
5182 * is allowed to connect. When an incoming connection has
5183 * authenticated with a particular user ID, this function is called;
5184 * if it returns #TRUE, the connection is allowed to proceed,
5185 * otherwise the connection is disconnected.
5187 * If the function is set to #NULL (as it is by default), then
5188 * only the same UID as the server process will be allowed to
5189 * connect. Also, root is always allowed to connect.
5191 * On Windows, the function will be set and its free_data_function will
5192 * be invoked when the connection is freed or a new function is set.
5193 * However, the function will never be called, because there are
5194 * no UNIX user ids to pass to it, or at least none of the existing
5195 * auth protocols would allow authenticating as a UNIX user on Windows.
5197 * @param connection the connection
5198 * @param function the predicate
5199 * @param data data to pass to the predicate
5200 * @param free_data_function function to free the data
5203 dbus_connection_set_unix_user_function (DBusConnection *connection,
5204 DBusAllowUnixUserFunction function,
5206 DBusFreeFunction free_data_function)
5208 void *old_data = NULL;
5209 DBusFreeFunction old_free_function = NULL;
5211 _dbus_return_if_fail (connection != NULL);
5213 CONNECTION_LOCK (connection);
5214 _dbus_transport_set_unix_user_function (connection->transport,
5215 function, data, free_data_function,
5216 &old_data, &old_free_function);
5217 CONNECTION_UNLOCK (connection);
5219 if (old_free_function != NULL)
5220 (* old_free_function) (old_data);
5224 * Gets the Windows user SID of the connection if known. Returns
5225 * #TRUE if the ID is filled in. Always returns #FALSE on non-Windows
5226 * platforms for now, though in theory someone could hook UNIX to
5227 * Active Directory or something. Always returns #FALSE prior to
5228 * authenticating the connection.
5230 * The user is only read by servers from clients; clients can't usually
5231 * get the user of servers, because servers do not authenticate to
5232 * clients. The returned user is the user the connection authenticated
5235 * The message bus is a server and the apps connecting to the bus
5238 * The returned user string has to be freed with dbus_free().
5240 * The return value indicates whether the user SID is available;
5241 * if it's available but we don't have the memory to copy it,
5242 * then the return value is #TRUE and #NULL is given as the SID.
5244 * @todo We would like to be able to say "You can ask the bus to tell
5245 * you the user of another connection though if you like; this is done
5246 * with dbus_bus_get_windows_user()." But this has to be implemented
5247 * in bus/driver.c and dbus/dbus-bus.c, and is pointless anyway
5248 * since on Windows we only use the session bus for now.
5250 * @param connection the connection
5251 * @param windows_sid_p return location for an allocated copy of the user ID, or #NULL if no memory
5252 * @returns #TRUE if user is available (returned value may be #NULL anyway if no memory)
5255 dbus_connection_get_windows_user (DBusConnection *connection,
5256 char **windows_sid_p)
5260 _dbus_return_val_if_fail (connection != NULL, FALSE);
5261 _dbus_return_val_if_fail (windows_sid_p != NULL, FALSE);
5263 CONNECTION_LOCK (connection);
5265 if (!_dbus_transport_get_is_authenticated (connection->transport))
5268 result = _dbus_transport_get_windows_user (connection->transport,
5272 _dbus_assert (!result);
5275 CONNECTION_UNLOCK (connection);
5281 * Sets a predicate function used to determine whether a given user ID
5282 * is allowed to connect. When an incoming connection has
5283 * authenticated with a particular user ID, this function is called;
5284 * if it returns #TRUE, the connection is allowed to proceed,
5285 * otherwise the connection is disconnected.
5287 * If the function is set to #NULL (as it is by default), then
5288 * only the same user owning the server process will be allowed to
5291 * On UNIX, the function will be set and its free_data_function will
5292 * be invoked when the connection is freed or a new function is set.
5293 * However, the function will never be called, because there is no
5294 * way right now to authenticate as a Windows user on UNIX.
5296 * @param connection the connection
5297 * @param function the predicate
5298 * @param data data to pass to the predicate
5299 * @param free_data_function function to free the data
5302 dbus_connection_set_windows_user_function (DBusConnection *connection,
5303 DBusAllowWindowsUserFunction function,
5305 DBusFreeFunction free_data_function)
5307 void *old_data = NULL;
5308 DBusFreeFunction old_free_function = NULL;
5310 _dbus_return_if_fail (connection != NULL);
5312 CONNECTION_LOCK (connection);
5313 _dbus_transport_set_windows_user_function (connection->transport,
5314 function, data, free_data_function,
5315 &old_data, &old_free_function);
5316 CONNECTION_UNLOCK (connection);
5318 if (old_free_function != NULL)
5319 (* old_free_function) (old_data);
5323 * This function must be called on the server side of a connection when the
5324 * connection is first seen in the #DBusNewConnectionFunction. If set to
5325 * #TRUE (the default is #FALSE), then the connection can proceed even if
5326 * the client does not authenticate as some user identity, i.e. clients
5327 * can connect anonymously.
5329 * This setting interacts with the available authorization mechanisms
5330 * (see dbus_server_set_auth_mechanisms()). Namely, an auth mechanism
5331 * such as ANONYMOUS that supports anonymous auth must be included in
5332 * the list of available mechanisms for anonymous login to work.
5334 * This setting also changes the default rule for connections
5335 * authorized as a user; normally, if a connection authorizes as
5336 * a user identity, it is permitted if the user identity is
5337 * root or the user identity matches the user identity of the server
5338 * process. If anonymous connections are allowed, however,
5339 * then any user identity is allowed.
5341 * You can override the rules for connections authorized as a
5342 * user identity with dbus_connection_set_unix_user_function()
5343 * and dbus_connection_set_windows_user_function().
5345 * @param connection the connection
5346 * @param value whether to allow authentication as an anonymous user
5349 dbus_connection_set_allow_anonymous (DBusConnection *connection,
5352 _dbus_return_if_fail (connection != NULL);
5354 CONNECTION_LOCK (connection);
5355 _dbus_transport_set_allow_anonymous (connection->transport, value);
5356 CONNECTION_UNLOCK (connection);
5361 * Normally #DBusConnection automatically handles all messages to the
5362 * org.freedesktop.DBus.Peer interface. However, the message bus wants
5363 * to be able to route methods on that interface through the bus and
5364 * to other applications. If routing peer messages is enabled, then
5365 * messages with the org.freedesktop.DBus.Peer interface that also
5366 * have a bus destination name set will not be automatically
5367 * handled by the #DBusConnection and instead will be dispatched
5368 * normally to the application.
5370 * If a normal application sets this flag, it can break things badly.
5371 * So don't set this unless you are the message bus.
5373 * @param connection the connection
5374 * @param value #TRUE to pass through org.freedesktop.DBus.Peer messages with a bus name set
5377 dbus_connection_set_route_peer_messages (DBusConnection *connection,
5380 _dbus_return_if_fail (connection != NULL);
5382 CONNECTION_LOCK (connection);
5383 connection->route_peer_messages = TRUE;
5384 CONNECTION_UNLOCK (connection);
5388 * Adds a message filter. Filters are handlers that are run on all
5389 * incoming messages, prior to the objects registered with
5390 * dbus_connection_register_object_path(). Filters are run in the
5391 * order that they were added. The same handler can be added as a
5392 * filter more than once, in which case it will be run more than once.
5393 * Filters added during a filter callback won't be run on the message
5396 * @todo we don't run filters on messages while blocking without
5397 * entering the main loop, since filters are run as part of
5398 * dbus_connection_dispatch(). This is probably a feature, as filters
5399 * could create arbitrary reentrancy. But kind of sucks if you're
5400 * trying to filter METHOD_RETURN for some reason.
5402 * @param connection the connection
5403 * @param function function to handle messages
5404 * @param user_data user data to pass to the function
5405 * @param free_data_function function to use for freeing user data
5406 * @returns #TRUE on success, #FALSE if not enough memory.
5409 dbus_connection_add_filter (DBusConnection *connection,
5410 DBusHandleMessageFunction function,
5412 DBusFreeFunction free_data_function)
5414 DBusMessageFilter *filter;
5416 _dbus_return_val_if_fail (connection != NULL, FALSE);
5417 _dbus_return_val_if_fail (function != NULL, FALSE);
5419 filter = dbus_new0 (DBusMessageFilter, 1);
5423 filter->refcount.value = 1;
5425 CONNECTION_LOCK (connection);
5427 if (!_dbus_list_append (&connection->filter_list,
5430 _dbus_message_filter_unref (filter);
5431 CONNECTION_UNLOCK (connection);
5435 /* Fill in filter after all memory allocated,
5436 * so we don't run the free_user_data_function
5437 * if the add_filter() fails
5440 filter->function = function;
5441 filter->user_data = user_data;
5442 filter->free_user_data_function = free_data_function;
5444 CONNECTION_UNLOCK (connection);
5449 * Removes a previously-added message filter. It is a programming
5450 * error to call this function for a handler that has not been added
5451 * as a filter. If the given handler was added more than once, only
5452 * one instance of it will be removed (the most recently-added
5455 * @param connection the connection
5456 * @param function the handler to remove
5457 * @param user_data user data for the handler to remove
5461 dbus_connection_remove_filter (DBusConnection *connection,
5462 DBusHandleMessageFunction function,
5466 DBusMessageFilter *filter;
5468 _dbus_return_if_fail (connection != NULL);
5469 _dbus_return_if_fail (function != NULL);
5471 CONNECTION_LOCK (connection);
5475 link = _dbus_list_get_last_link (&connection->filter_list);
5476 while (link != NULL)
5478 filter = link->data;
5480 if (filter->function == function &&
5481 filter->user_data == user_data)
5483 _dbus_list_remove_link (&connection->filter_list, link);
5484 filter->function = NULL;
5489 link = _dbus_list_get_prev_link (&connection->filter_list, link);
5493 CONNECTION_UNLOCK (connection);
5495 #ifndef DBUS_DISABLE_CHECKS
5498 _dbus_warn_check_failed ("Attempt to remove filter function %p user data %p, but no such filter has been added\n",
5499 function, user_data);
5504 /* Call application code */
5505 if (filter->free_user_data_function)
5506 (* filter->free_user_data_function) (filter->user_data);
5508 filter->free_user_data_function = NULL;
5509 filter->user_data = NULL;
5511 _dbus_message_filter_unref (filter);
5515 * Registers a handler for a given path in the object hierarchy.
5516 * The given vtable handles messages sent to exactly the given path.
5518 * @param connection the connection
5519 * @param path a '/' delimited string of path elements
5520 * @param vtable the virtual table
5521 * @param user_data data to pass to functions in the vtable
5522 * @param error address where an error can be returned
5523 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5524 * #DBUS_ERROR_ADDRESS_IN_USE) is reported
5527 dbus_connection_try_register_object_path (DBusConnection *connection,
5529 const DBusObjectPathVTable *vtable,
5533 char **decomposed_path;
5536 _dbus_return_val_if_fail (connection != NULL, FALSE);
5537 _dbus_return_val_if_fail (path != NULL, FALSE);
5538 _dbus_return_val_if_fail (path[0] == '/', FALSE);
5539 _dbus_return_val_if_fail (vtable != NULL, FALSE);
5541 if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
5544 CONNECTION_LOCK (connection);
5546 retval = _dbus_object_tree_register (connection->objects,
5548 (const char **) decomposed_path, vtable,
5551 CONNECTION_UNLOCK (connection);
5553 dbus_free_string_array (decomposed_path);
5559 * Registers a handler for a given path in the object hierarchy.
5560 * The given vtable handles messages sent to exactly the given path.
5562 * It is a bug to call this function for object paths which already
5563 * have a handler. Use dbus_connection_try_register_object_path() if this
5564 * might be the case.
5566 * @param connection the connection
5567 * @param path a '/' delimited string of path elements
5568 * @param vtable the virtual table
5569 * @param user_data data to pass to functions in the vtable
5570 * @returns #FALSE if not enough memory
5573 dbus_connection_register_object_path (DBusConnection *connection,
5575 const DBusObjectPathVTable *vtable,
5578 char **decomposed_path;
5580 DBusError error = DBUS_ERROR_INIT;
5582 _dbus_return_val_if_fail (connection != NULL, FALSE);
5583 _dbus_return_val_if_fail (path != NULL, FALSE);
5584 _dbus_return_val_if_fail (path[0] == '/', FALSE);
5585 _dbus_return_val_if_fail (vtable != NULL, FALSE);
5587 if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
5590 CONNECTION_LOCK (connection);
5592 retval = _dbus_object_tree_register (connection->objects,
5594 (const char **) decomposed_path, vtable,
5597 CONNECTION_UNLOCK (connection);
5599 dbus_free_string_array (decomposed_path);
5601 if (dbus_error_has_name (&error, DBUS_ERROR_ADDRESS_IN_USE))
5603 _dbus_warn ("%s\n", error.message);
5604 dbus_error_free (&error);
5612 * Registers a fallback handler for a given subsection of the object
5613 * hierarchy. The given vtable handles messages at or below the given
5614 * path. You can use this to establish a default message handling
5615 * policy for a whole "subdirectory."
5617 * @param connection the connection
5618 * @param path a '/' delimited string of path elements
5619 * @param vtable the virtual table
5620 * @param user_data data to pass to functions in the vtable
5621 * @param error address where an error can be returned
5622 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5623 * #DBUS_ERROR_ADDRESS_IN_USE) is reported
5626 dbus_connection_try_register_fallback (DBusConnection *connection,
5628 const DBusObjectPathVTable *vtable,
5632 char **decomposed_path;
5635 _dbus_return_val_if_fail (connection != NULL, FALSE);
5636 _dbus_return_val_if_fail (path != NULL, FALSE);
5637 _dbus_return_val_if_fail (path[0] == '/', FALSE);
5638 _dbus_return_val_if_fail (vtable != NULL, FALSE);
5640 if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
5643 CONNECTION_LOCK (connection);
5645 retval = _dbus_object_tree_register (connection->objects,
5647 (const char **) decomposed_path, vtable,
5650 CONNECTION_UNLOCK (connection);
5652 dbus_free_string_array (decomposed_path);
5658 * Registers a fallback handler for a given subsection of the object
5659 * hierarchy. The given vtable handles messages at or below the given
5660 * path. You can use this to establish a default message handling
5661 * policy for a whole "subdirectory."
5663 * It is a bug to call this function for object paths which already
5664 * have a handler. Use dbus_connection_try_register_fallback() if this
5665 * might be the case.
5667 * @param connection the connection
5668 * @param path a '/' delimited string of path elements
5669 * @param vtable the virtual table
5670 * @param user_data data to pass to functions in the vtable
5671 * @returns #FALSE if not enough memory
5674 dbus_connection_register_fallback (DBusConnection *connection,
5676 const DBusObjectPathVTable *vtable,
5679 char **decomposed_path;
5681 DBusError error = DBUS_ERROR_INIT;
5683 _dbus_return_val_if_fail (connection != NULL, FALSE);
5684 _dbus_return_val_if_fail (path != NULL, FALSE);
5685 _dbus_return_val_if_fail (path[0] == '/', FALSE);
5686 _dbus_return_val_if_fail (vtable != NULL, FALSE);
5688 if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
5691 CONNECTION_LOCK (connection);
5693 retval = _dbus_object_tree_register (connection->objects,
5695 (const char **) decomposed_path, vtable,
5698 CONNECTION_UNLOCK (connection);
5700 dbus_free_string_array (decomposed_path);
5702 if (dbus_error_has_name (&error, DBUS_ERROR_ADDRESS_IN_USE))
5704 _dbus_warn ("%s\n", error.message);
5705 dbus_error_free (&error);
5713 * Unregisters the handler registered with exactly the given path.
5714 * It's a bug to call this function for a path that isn't registered.
5715 * Can unregister both fallback paths and object paths.
5717 * @param connection the connection
5718 * @param path a '/' delimited string of path elements
5719 * @returns #FALSE if not enough memory
5722 dbus_connection_unregister_object_path (DBusConnection *connection,
5725 char **decomposed_path;
5727 _dbus_return_val_if_fail (connection != NULL, FALSE);
5728 _dbus_return_val_if_fail (path != NULL, FALSE);
5729 _dbus_return_val_if_fail (path[0] == '/', FALSE);
5731 if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
5734 CONNECTION_LOCK (connection);
5736 _dbus_object_tree_unregister_and_unlock (connection->objects, (const char **) decomposed_path);
5738 dbus_free_string_array (decomposed_path);
5744 * Gets the user data passed to dbus_connection_register_object_path()
5745 * or dbus_connection_register_fallback(). If nothing was registered
5746 * at this path, the data is filled in with #NULL.
5748 * @param connection the connection
5749 * @param path the path you registered with
5750 * @param data_p location to store the user data, or #NULL
5751 * @returns #FALSE if not enough memory
5754 dbus_connection_get_object_path_data (DBusConnection *connection,
5758 char **decomposed_path;
5760 _dbus_return_val_if_fail (connection != NULL, FALSE);
5761 _dbus_return_val_if_fail (path != NULL, FALSE);
5762 _dbus_return_val_if_fail (data_p != NULL, FALSE);
5766 if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
5769 CONNECTION_LOCK (connection);
5771 *data_p = _dbus_object_tree_get_user_data_unlocked (connection->objects, (const char**) decomposed_path);
5773 CONNECTION_UNLOCK (connection);
5775 dbus_free_string_array (decomposed_path);
5781 * Lists the registered fallback handlers and object path handlers at
5782 * the given parent_path. The returned array should be freed with
5783 * dbus_free_string_array().
5785 * @param connection the connection
5786 * @param parent_path the path to list the child handlers of
5787 * @param child_entries returns #NULL-terminated array of children
5788 * @returns #FALSE if no memory to allocate the child entries
5791 dbus_connection_list_registered (DBusConnection *connection,
5792 const char *parent_path,
5793 char ***child_entries)
5795 char **decomposed_path;
5797 _dbus_return_val_if_fail (connection != NULL, FALSE);
5798 _dbus_return_val_if_fail (parent_path != NULL, FALSE);
5799 _dbus_return_val_if_fail (parent_path[0] == '/', FALSE);
5800 _dbus_return_val_if_fail (child_entries != NULL, FALSE);
5802 if (!_dbus_decompose_path (parent_path, strlen (parent_path), &decomposed_path, NULL))
5805 CONNECTION_LOCK (connection);
5807 retval = _dbus_object_tree_list_registered_and_unlock (connection->objects,
5808 (const char **) decomposed_path,
5810 dbus_free_string_array (decomposed_path);
5815 static DBusDataSlotAllocator slot_allocator;
5816 _DBUS_DEFINE_GLOBAL_LOCK (connection_slots);
5819 * Allocates an integer ID to be used for storing application-specific
5820 * data on any DBusConnection. The allocated ID may then be used
5821 * with dbus_connection_set_data() and dbus_connection_get_data().
5822 * The passed-in slot must be initialized to -1, and is filled in
5823 * with the slot ID. If the passed-in slot is not -1, it's assumed
5824 * to be already allocated, and its refcount is incremented.
5826 * The allocated slot is global, i.e. all DBusConnection objects will
5827 * have a slot with the given integer ID reserved.
5829 * @param slot_p address of a global variable storing the slot
5830 * @returns #FALSE on failure (no memory)
5833 dbus_connection_allocate_data_slot (dbus_int32_t *slot_p)
5835 return _dbus_data_slot_allocator_alloc (&slot_allocator,
5836 &_DBUS_LOCK_NAME (connection_slots),
5841 * Deallocates a global ID for connection data slots.
5842 * dbus_connection_get_data() and dbus_connection_set_data() may no
5843 * longer be used with this slot. Existing data stored on existing
5844 * DBusConnection objects will be freed when the connection is
5845 * finalized, but may not be retrieved (and may only be replaced if
5846 * someone else reallocates the slot). When the refcount on the
5847 * passed-in slot reaches 0, it is set to -1.
5849 * @param slot_p address storing the slot to deallocate
5852 dbus_connection_free_data_slot (dbus_int32_t *slot_p)
5854 _dbus_return_if_fail (*slot_p >= 0);
5856 _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
5860 * Stores a pointer on a DBusConnection, along
5861 * with an optional function to be used for freeing
5862 * the data when the data is set again, or when
5863 * the connection is finalized. The slot number
5864 * must have been allocated with dbus_connection_allocate_data_slot().
5866 * @note This function does not take the
5867 * main thread lock on DBusConnection, which allows it to be
5868 * used from inside watch and timeout functions. (See the
5869 * note in docs for dbus_connection_set_watch_functions().)
5870 * A side effect of this is that you need to know there's
5871 * a reference held on the connection while invoking
5872 * dbus_connection_set_data(), or the connection could be
5873 * finalized during dbus_connection_set_data().
5875 * @param connection the connection
5876 * @param slot the slot number
5877 * @param data the data to store
5878 * @param free_data_func finalizer function for the data
5879 * @returns #TRUE if there was enough memory to store the data
5882 dbus_connection_set_data (DBusConnection *connection,
5885 DBusFreeFunction free_data_func)
5887 DBusFreeFunction old_free_func;
5891 _dbus_return_val_if_fail (connection != NULL, FALSE);
5892 _dbus_return_val_if_fail (slot >= 0, FALSE);
5894 SLOTS_LOCK (connection);
5896 retval = _dbus_data_slot_list_set (&slot_allocator,
5897 &connection->slot_list,
5898 slot, data, free_data_func,
5899 &old_free_func, &old_data);
5901 SLOTS_UNLOCK (connection);
5905 /* Do the actual free outside the connection lock */
5907 (* old_free_func) (old_data);
5914 * Retrieves data previously set with dbus_connection_set_data().
5915 * The slot must still be allocated (must not have been freed).
5917 * @note This function does not take the
5918 * main thread lock on DBusConnection, which allows it to be
5919 * used from inside watch and timeout functions. (See the
5920 * note in docs for dbus_connection_set_watch_functions().)
5921 * A side effect of this is that you need to know there's
5922 * a reference held on the connection while invoking
5923 * dbus_connection_get_data(), or the connection could be
5924 * finalized during dbus_connection_get_data().
5926 * @param connection the connection
5927 * @param slot the slot to get data from
5928 * @returns the data, or #NULL if not found
5931 dbus_connection_get_data (DBusConnection *connection,
5936 _dbus_return_val_if_fail (connection != NULL, NULL);
5938 SLOTS_LOCK (connection);
5940 res = _dbus_data_slot_list_get (&slot_allocator,
5941 &connection->slot_list,
5944 SLOTS_UNLOCK (connection);
5950 * This function sets a global flag for whether dbus_connection_new()
5951 * will set SIGPIPE behavior to SIG_IGN.
5953 * @param will_modify_sigpipe #TRUE to allow sigpipe to be set to SIG_IGN
5956 dbus_connection_set_change_sigpipe (dbus_bool_t will_modify_sigpipe)
5958 _dbus_modify_sigpipe = will_modify_sigpipe != FALSE;
5962 * Specifies the maximum size message this connection is allowed to
5963 * receive. Larger messages will result in disconnecting the
5966 * @param connection a #DBusConnection
5967 * @param size maximum message size the connection can receive, in bytes
5970 dbus_connection_set_max_message_size (DBusConnection *connection,
5973 _dbus_return_if_fail (connection != NULL);
5975 CONNECTION_LOCK (connection);
5976 _dbus_transport_set_max_message_size (connection->transport,
5978 CONNECTION_UNLOCK (connection);
5982 * Gets the value set by dbus_connection_set_max_message_size().
5984 * @param connection the connection
5985 * @returns the max size of a single message
5988 dbus_connection_get_max_message_size (DBusConnection *connection)
5992 _dbus_return_val_if_fail (connection != NULL, 0);
5994 CONNECTION_LOCK (connection);
5995 res = _dbus_transport_get_max_message_size (connection->transport);
5996 CONNECTION_UNLOCK (connection);
6001 * Specifies the maximum number of unix fds a message on this
6002 * connection is allowed to receive. Messages with more unix fds will
6003 * result in disconnecting the connection.
6005 * @param connection a #DBusConnection
6006 * @param size maximum message unix fds the connection can receive
6009 dbus_connection_set_max_message_unix_fds (DBusConnection *connection,
6012 _dbus_return_if_fail (connection != NULL);
6014 CONNECTION_LOCK (connection);
6015 _dbus_transport_set_max_message_unix_fds (connection->transport,
6017 CONNECTION_UNLOCK (connection);
6021 * Gets the value set by dbus_connection_set_max_message_unix_fds().
6023 * @param connection the connection
6024 * @returns the max numer of unix fds of a single message
6027 dbus_connection_get_max_message_unix_fds (DBusConnection *connection)
6031 _dbus_return_val_if_fail (connection != NULL, 0);
6033 CONNECTION_LOCK (connection);
6034 res = _dbus_transport_get_max_message_unix_fds (connection->transport);
6035 CONNECTION_UNLOCK (connection);
6040 * Sets the maximum total number of bytes that can be used for all messages
6041 * received on this connection. Messages count toward the maximum until
6042 * they are finalized. When the maximum is reached, the connection will
6043 * not read more data until some messages are finalized.
6045 * The semantics of the maximum are: if outstanding messages are
6046 * already above the maximum, additional messages will not be read.
6047 * The semantics are not: if the next message would cause us to exceed
6048 * the maximum, we don't read it. The reason is that we don't know the
6049 * size of a message until after we read it.
6051 * Thus, the max live messages size can actually be exceeded
6052 * by up to the maximum size of a single message.
6054 * Also, if we read say 1024 bytes off the wire in a single read(),
6055 * and that contains a half-dozen small messages, we may exceed the
6056 * size max by that amount. But this should be inconsequential.
6058 * This does imply that we can't call read() with a buffer larger
6059 * than we're willing to exceed this limit by.
6061 * @param connection the connection
6062 * @param size the maximum size in bytes of all outstanding messages
6065 dbus_connection_set_max_received_size (DBusConnection *connection,
6068 _dbus_return_if_fail (connection != NULL);
6070 CONNECTION_LOCK (connection);
6071 _dbus_transport_set_max_received_size (connection->transport,
6073 CONNECTION_UNLOCK (connection);
6077 * Gets the value set by dbus_connection_set_max_received_size().
6079 * @param connection the connection
6080 * @returns the max size of all live messages
6083 dbus_connection_get_max_received_size (DBusConnection *connection)
6087 _dbus_return_val_if_fail (connection != NULL, 0);
6089 CONNECTION_LOCK (connection);
6090 res = _dbus_transport_get_max_received_size (connection->transport);
6091 CONNECTION_UNLOCK (connection);
6096 * Sets the maximum total number of unix fds that can be used for all messages
6097 * received on this connection. Messages count toward the maximum until
6098 * they are finalized. When the maximum is reached, the connection will
6099 * not read more data until some messages are finalized.
6101 * The semantics are analogous to those of dbus_connection_set_max_received_size().
6103 * @param connection the connection
6104 * @param size the maximum size in bytes of all outstanding messages
6107 dbus_connection_set_max_received_unix_fds (DBusConnection *connection,
6110 _dbus_return_if_fail (connection != NULL);
6112 CONNECTION_LOCK (connection);
6113 _dbus_transport_set_max_received_unix_fds (connection->transport,
6115 CONNECTION_UNLOCK (connection);
6119 * Gets the value set by dbus_connection_set_max_received_unix_fds().
6121 * @param connection the connection
6122 * @returns the max unix fds of all live messages
6125 dbus_connection_get_max_received_unix_fds (DBusConnection *connection)
6129 _dbus_return_val_if_fail (connection != NULL, 0);
6131 CONNECTION_LOCK (connection);
6132 res = _dbus_transport_get_max_received_unix_fds (connection->transport);
6133 CONNECTION_UNLOCK (connection);
6138 * Gets the approximate size in bytes of all messages in the outgoing
6139 * message queue. The size is approximate in that you shouldn't use
6140 * it to decide how many bytes to read off the network or anything
6141 * of that nature, as optimizations may choose to tell small white lies
6142 * to avoid performance overhead.
6144 * @param connection the connection
6145 * @returns the number of bytes that have been queued up but not sent
6148 dbus_connection_get_outgoing_size (DBusConnection *connection)
6152 _dbus_return_val_if_fail (connection != NULL, 0);
6154 CONNECTION_LOCK (connection);
6155 res = _dbus_counter_get_size_value (connection->outgoing_counter);
6156 CONNECTION_UNLOCK (connection);
6161 * Gets the approximate number of uni fds of all messages in the
6162 * outgoing message queue.
6164 * @param connection the connection
6165 * @returns the number of unix fds that have been queued up but not sent
6168 dbus_connection_get_outgoing_unix_fds (DBusConnection *connection)
6172 _dbus_return_val_if_fail (connection != NULL, 0);
6174 CONNECTION_LOCK (connection);
6175 res = _dbus_counter_get_unix_fd_value (connection->outgoing_counter);
6176 CONNECTION_UNLOCK (connection);