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_rmutex_lock ((connection)->mutex); \
70 TOOK_LOCK_CHECK (connection); \
73 #define CONNECTION_UNLOCK(connection) _dbus_connection_unlock (connection)
75 #define SLOTS_LOCK(connection) do { \
76 _dbus_rmutex_lock ((connection)->slot_mutex); \
79 #define SLOTS_UNLOCK(connection) do { \
80 _dbus_rmutex_unlock ((connection)->slot_mutex); \
83 #define DISPATCH_STATUS_NAME(s) \
84 ((s) == DBUS_DISPATCH_COMPLETE ? "complete" : \
85 (s) == DBUS_DISPATCH_DATA_REMAINS ? "data remains" : \
86 (s) == DBUS_DISPATCH_NEED_MEMORY ? "need memory" : \
90 * @defgroup DBusConnection DBusConnection
92 * @brief Connection to another application
94 * A DBusConnection represents a connection to another
95 * application. Messages can be sent and received via this connection.
96 * The other application may be a message bus; for convenience, the
97 * function dbus_bus_get() is provided to automatically open a
98 * connection to the well-known message buses.
100 * In brief a DBusConnection is a message queue associated with some
101 * message transport mechanism such as a socket. The connection
102 * maintains a queue of incoming messages and a queue of outgoing
105 * Several functions use the following terms:
107 * <li><b>read</b> means to fill the incoming message queue by reading from the socket</li>
108 * <li><b>write</b> means to drain the outgoing queue by writing to the socket</li>
109 * <li><b>dispatch</b> means to drain the incoming queue by invoking application-provided message handlers</li>
112 * The function dbus_connection_read_write_dispatch() for example does all
113 * three of these things, offering a simple alternative to a main loop.
115 * In an application with a main loop, the read/write/dispatch
116 * operations are usually separate.
118 * The connection provides #DBusWatch and #DBusTimeout objects to
119 * the main loop. These are used to know when reading, writing, or
120 * dispatching should be performed.
122 * Incoming messages are processed
123 * by calling dbus_connection_dispatch(). dbus_connection_dispatch()
124 * runs any handlers registered for the topmost message in the message
125 * queue, then discards the message, then returns.
127 * dbus_connection_get_dispatch_status() indicates whether
128 * messages are currently in the queue that need dispatching.
129 * dbus_connection_set_dispatch_status_function() allows
130 * you to set a function to be used to monitor the dispatch status.
132 * If you're using GLib or Qt add-on libraries for D-Bus, there are
133 * special convenience APIs in those libraries that hide
134 * all the details of dispatch and watch/timeout monitoring.
135 * For example, dbus_connection_setup_with_g_main().
137 * If you aren't using these add-on libraries, but want to process
138 * messages asynchronously, you must manually call
139 * dbus_connection_set_dispatch_status_function(),
140 * dbus_connection_set_watch_functions(),
141 * dbus_connection_set_timeout_functions() providing appropriate
142 * functions to integrate the connection with your application's main
143 * loop. This can be tricky to get right; main loops are not simple.
145 * If you don't need to be asynchronous, you can ignore #DBusWatch,
146 * #DBusTimeout, and dbus_connection_dispatch(). Instead,
147 * dbus_connection_read_write_dispatch() can be used.
149 * Or, in <em>very</em> simple applications,
150 * dbus_connection_pop_message() may be all you need, allowing you to
151 * avoid setting up any handler functions (see
152 * dbus_connection_add_filter(),
153 * dbus_connection_register_object_path() for more on handlers).
155 * When you use dbus_connection_send() or one of its variants to send
156 * a message, the message is added to the outgoing queue. It's
157 * actually written to the network later; either in
158 * dbus_watch_handle() invoked by your main loop, or in
159 * dbus_connection_flush() which blocks until it can write out the
160 * entire outgoing queue. The GLib/Qt add-on libraries again
161 * handle the details here for you by setting up watch functions.
163 * When a connection is disconnected, you are guaranteed to get a
164 * signal "Disconnected" from the interface
165 * #DBUS_INTERFACE_LOCAL, path
168 * You may not drop the last reference to a #DBusConnection
169 * until that connection has been disconnected.
171 * You may dispatch the unprocessed incoming message queue even if the
172 * connection is disconnected. However, "Disconnected" will always be
173 * the last message in the queue (obviously no messages are received
174 * after disconnection).
176 * After calling dbus_threads_init(), #DBusConnection has thread
177 * locks and drops them when invoking user callbacks, so in general is
178 * transparently threadsafe. However, #DBusMessage does NOT have
179 * thread locks; you must not send the same message to multiple
180 * #DBusConnection if those connections will be used from different threads,
183 * Also, if you dispatch or pop messages from multiple threads, it
184 * may work in the sense that it won't crash, but it's tough to imagine
185 * sane results; it will be completely unpredictable which messages
186 * go to which threads.
188 * It's recommended to dispatch from a single thread.
190 * The most useful function to call from multiple threads at once
191 * is dbus_connection_send_with_reply_and_block(). That is,
192 * multiple threads can make method calls at the same time.
194 * If you aren't using threads, you can use a main loop and
195 * dbus_pending_call_set_notify() to achieve a similar result.
199 * @defgroup DBusConnectionInternals DBusConnection implementation details
200 * @ingroup DBusInternals
201 * @brief Implementation details of DBusConnection
207 _dbus_connection_trace_ref (DBusConnection *connection,
212 #ifdef DBUS_ENABLE_VERBOSE_MODE
213 static int enabled = -1;
215 _dbus_trace_ref ("DBusConnection", connection, old_refcount, new_refcount,
216 why, "DBUS_CONNECTION_TRACE", &enabled);
221 * Internal struct representing a message filter function
223 typedef struct DBusMessageFilter DBusMessageFilter;
226 * Internal struct representing a message filter function
228 struct DBusMessageFilter
230 DBusAtomic refcount; /**< Reference count */
231 DBusHandleMessageFunction function; /**< Function to call to filter */
232 void *user_data; /**< User data for the function */
233 DBusFreeFunction free_user_data_function; /**< Function to free the user data */
238 * Internals of DBusPreallocatedSend
240 struct DBusPreallocatedSend
242 DBusConnection *connection; /**< Connection we'd send the message to */
243 DBusList *queue_link; /**< Preallocated link in the queue */
244 DBusList *counter_link; /**< Preallocated link in the resource counter */
247 #if HAVE_DECL_MSG_NOSIGNAL
248 static dbus_bool_t _dbus_modify_sigpipe = FALSE;
250 static dbus_bool_t _dbus_modify_sigpipe = TRUE;
254 * Implementation details of DBusConnection. All fields are private.
256 struct DBusConnection
258 DBusAtomic refcount; /**< Reference count. */
260 DBusRMutex *mutex; /**< Lock on the entire DBusConnection */
262 DBusCMutex *dispatch_mutex; /**< Protects dispatch_acquired */
263 DBusCondVar *dispatch_cond; /**< Notify when dispatch_acquired is available */
264 DBusCMutex *io_path_mutex; /**< Protects io_path_acquired */
265 DBusCondVar *io_path_cond; /**< Notify when io_path_acquired is available */
267 DBusList *outgoing_messages; /**< Queue of messages we need to send, send the end of the list first. */
268 DBusList *incoming_messages; /**< Queue of messages we have received, end of the list received most recently. */
269 DBusList *expired_messages; /**< Messages that will be released when we next unlock. */
271 DBusMessage *message_borrowed; /**< Filled in if the first incoming message has been borrowed;
272 * dispatch_acquired will be set by the borrower
275 int n_outgoing; /**< Length of outgoing queue. */
276 int n_incoming; /**< Length of incoming queue. */
278 DBusCounter *outgoing_counter; /**< Counts size of outgoing messages. */
280 DBusTransport *transport; /**< Object that sends/receives messages over network. */
281 DBusWatchList *watches; /**< Stores active watches. */
282 DBusTimeoutList *timeouts; /**< Stores active timeouts. */
284 DBusList *filter_list; /**< List of filters. */
286 DBusRMutex *slot_mutex; /**< Lock on slot_list so overall connection lock need not be taken */
287 DBusDataSlotList slot_list; /**< Data stored by allocated integer ID */
289 DBusHashTable *pending_replies; /**< Hash of message serials to #DBusPendingCall. */
291 dbus_uint32_t client_serial; /**< Client serial. Increments each time a message is sent */
292 DBusList *disconnect_message_link; /**< Preallocated list node for queueing the disconnection message */
294 DBusWakeupMainFunction wakeup_main_function; /**< Function to wake up the mainloop */
295 void *wakeup_main_data; /**< Application data for wakeup_main_function */
296 DBusFreeFunction free_wakeup_main_data; /**< free wakeup_main_data */
298 DBusDispatchStatusFunction dispatch_status_function; /**< Function on dispatch status changes */
299 void *dispatch_status_data; /**< Application data for dispatch_status_function */
300 DBusFreeFunction free_dispatch_status_data; /**< free dispatch_status_data */
302 DBusDispatchStatus last_dispatch_status; /**< The last dispatch status we reported to the application. */
304 DBusObjectTree *objects; /**< Object path handlers registered with this connection */
306 char *server_guid; /**< GUID of server if we are in shared_connections, #NULL if server GUID is unknown or connection is private */
308 /* These two MUST be bools and not bitfields, because they are protected by a separate lock
309 * from connection->mutex and all bitfields in a word have to be read/written together.
310 * So you can't have a different lock for different bitfields in the same word.
312 dbus_bool_t dispatch_acquired; /**< Someone has dispatch path (can drain incoming queue) */
313 dbus_bool_t io_path_acquired; /**< Someone has transport io path (can use the transport to read/write messages) */
315 unsigned int shareable : 1; /**< #TRUE if libdbus owns a reference to the connection and can return it from dbus_connection_open() more than once */
317 unsigned int exit_on_disconnect : 1; /**< If #TRUE, exit after handling disconnect signal */
319 unsigned int route_peer_messages : 1; /**< If #TRUE, if org.freedesktop.DBus.Peer messages have a bus name, don't handle them automatically */
321 unsigned int disconnected_message_arrived : 1; /**< We popped or are dispatching the disconnected message.
322 * if the disconnect_message_link is NULL then we queued it, but
323 * this flag is whether it got to the head of the queue.
325 unsigned int disconnected_message_processed : 1; /**< We did our default handling of the disconnected message,
326 * such as closing the connection.
329 #ifndef DBUS_DISABLE_CHECKS
330 unsigned int have_connection_lock : 1; /**< Used to check locking */
333 #if defined(DBUS_ENABLE_CHECKS) || defined(DBUS_ENABLE_ASSERT)
334 int generation; /**< _dbus_current_generation that should correspond to this connection */
338 static DBusDispatchStatus _dbus_connection_get_dispatch_status_unlocked (DBusConnection *connection);
339 static void _dbus_connection_update_dispatch_status_and_unlock (DBusConnection *connection,
340 DBusDispatchStatus new_status);
341 static void _dbus_connection_last_unref (DBusConnection *connection);
342 static void _dbus_connection_acquire_dispatch (DBusConnection *connection);
343 static void _dbus_connection_release_dispatch (DBusConnection *connection);
344 static DBusDispatchStatus _dbus_connection_flush_unlocked (DBusConnection *connection);
345 static void _dbus_connection_close_possibly_shared_and_unlock (DBusConnection *connection);
346 static dbus_bool_t _dbus_connection_get_is_connected_unlocked (DBusConnection *connection);
347 static dbus_bool_t _dbus_connection_peek_for_reply_unlocked (DBusConnection *connection,
348 dbus_uint32_t client_serial);
350 static DBusMessageFilter *
351 _dbus_message_filter_ref (DBusMessageFilter *filter)
353 #ifdef DBUS_DISABLE_ASSERT
354 _dbus_atomic_inc (&filter->refcount);
356 dbus_int32_t old_value;
358 old_value = _dbus_atomic_inc (&filter->refcount);
359 _dbus_assert (old_value > 0);
366 _dbus_message_filter_unref (DBusMessageFilter *filter)
368 dbus_int32_t old_value;
370 old_value = _dbus_atomic_dec (&filter->refcount);
371 _dbus_assert (old_value > 0);
375 if (filter->free_user_data_function)
376 (* filter->free_user_data_function) (filter->user_data);
383 * Acquires the connection lock.
385 * @param connection the connection.
388 _dbus_connection_lock (DBusConnection *connection)
390 CONNECTION_LOCK (connection);
394 * Releases the connection lock.
396 * @param connection the connection.
399 _dbus_connection_unlock (DBusConnection *connection)
401 DBusList *expired_messages;
406 _dbus_verbose ("UNLOCK\n");
409 /* If we had messages that expired (fell off the incoming or outgoing
410 * queues) while we were locked, actually release them now */
411 expired_messages = connection->expired_messages;
412 connection->expired_messages = NULL;
414 RELEASING_LOCK_CHECK (connection);
415 _dbus_rmutex_unlock (connection->mutex);
417 for (iter = _dbus_list_pop_first_link (&expired_messages);
419 iter = _dbus_list_pop_first_link (&expired_messages))
421 DBusMessage *message = iter->data;
423 dbus_message_unref (message);
424 _dbus_list_free_link (iter);
429 * Wakes up the main loop if it is sleeping
430 * Needed if we're e.g. queueing outgoing messages
431 * on a thread while the mainloop sleeps.
433 * @param connection the connection.
436 _dbus_connection_wakeup_mainloop (DBusConnection *connection)
438 if (connection->wakeup_main_function)
439 (*connection->wakeup_main_function) (connection->wakeup_main_data);
442 #ifdef DBUS_ENABLE_EMBEDDED_TESTS
444 * Gets the locks so we can examine them
446 * @param connection the connection.
447 * @param mutex_loc return for the location of the main mutex pointer
448 * @param dispatch_mutex_loc return location of the dispatch mutex pointer
449 * @param io_path_mutex_loc return location of the io_path mutex pointer
450 * @param dispatch_cond_loc return location of the dispatch conditional
452 * @param io_path_cond_loc return location of the io_path conditional
456 _dbus_connection_test_get_locks (DBusConnection *connection,
457 DBusMutex **mutex_loc,
458 DBusMutex **dispatch_mutex_loc,
459 DBusMutex **io_path_mutex_loc,
460 DBusCondVar **dispatch_cond_loc,
461 DBusCondVar **io_path_cond_loc)
463 *mutex_loc = (DBusMutex *) connection->mutex;
464 *dispatch_mutex_loc = (DBusMutex *) connection->dispatch_mutex;
465 *io_path_mutex_loc = (DBusMutex *) connection->io_path_mutex;
466 *dispatch_cond_loc = connection->dispatch_cond;
467 *io_path_cond_loc = connection->io_path_cond;
472 * Adds a message-containing list link to the incoming message queue,
473 * taking ownership of the link and the message's current refcount.
474 * Cannot fail due to lack of memory.
476 * @param connection the connection.
477 * @param link the message link to queue.
480 _dbus_connection_queue_received_message_link (DBusConnection *connection,
483 DBusPendingCall *pending;
484 dbus_uint32_t reply_serial;
485 DBusMessage *message;
487 _dbus_assert (_dbus_transport_peek_is_authenticated (connection->transport));
489 _dbus_list_append_link (&connection->incoming_messages,
491 message = link->data;
493 /* If this is a reply we're waiting on, remove timeout for it */
494 reply_serial = dbus_message_get_reply_serial (message);
495 if (reply_serial != 0)
497 pending = _dbus_hash_table_lookup_int (connection->pending_replies,
501 if (_dbus_pending_call_is_timeout_added_unlocked (pending))
502 _dbus_connection_remove_timeout_unlocked (connection,
503 _dbus_pending_call_get_timeout_unlocked (pending));
505 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
511 connection->n_incoming += 1;
513 _dbus_connection_wakeup_mainloop (connection);
515 _dbus_verbose ("Message %p (%s %s %s %s '%s' reply to %u) added to incoming queue %p, %d incoming\n",
517 dbus_message_type_to_string (dbus_message_get_type (message)),
518 dbus_message_get_path (message) ?
519 dbus_message_get_path (message) :
521 dbus_message_get_interface (message) ?
522 dbus_message_get_interface (message) :
524 dbus_message_get_member (message) ?
525 dbus_message_get_member (message) :
527 dbus_message_get_signature (message),
528 dbus_message_get_reply_serial (message),
530 connection->n_incoming);
532 _dbus_message_trace_ref (message, -1, -1,
533 "_dbus_conection_queue_received_message_link");
537 * Adds a link + message to the incoming message queue.
538 * Can't fail. Takes ownership of both link and message.
540 * @param connection the connection.
541 * @param link the list node and message to queue.
545 _dbus_connection_queue_synthesized_message_link (DBusConnection *connection,
548 HAVE_LOCK_CHECK (connection);
550 _dbus_list_append_link (&connection->incoming_messages, link);
552 connection->n_incoming += 1;
554 _dbus_connection_wakeup_mainloop (connection);
556 _dbus_message_trace_ref (link->data, -1, -1,
557 "_dbus_connection_queue_synthesized_message_link");
559 _dbus_verbose ("Synthesized message %p added to incoming queue %p, %d incoming\n",
560 link->data, connection, connection->n_incoming);
565 * Checks whether there are messages in the outgoing message queue.
566 * Called with connection lock held.
568 * @param connection the connection.
569 * @returns #TRUE if the outgoing queue is non-empty.
572 _dbus_connection_has_messages_to_send_unlocked (DBusConnection *connection)
574 HAVE_LOCK_CHECK (connection);
575 return connection->outgoing_messages != NULL;
579 * Checks whether there are messages in the outgoing message queue.
580 * Use dbus_connection_flush() to block until all outgoing
581 * messages have been written to the underlying transport
582 * (such as a socket).
584 * @param connection the connection.
585 * @returns #TRUE if the outgoing queue is non-empty.
588 dbus_connection_has_messages_to_send (DBusConnection *connection)
592 _dbus_return_val_if_fail (connection != NULL, FALSE);
594 CONNECTION_LOCK (connection);
595 v = _dbus_connection_has_messages_to_send_unlocked (connection);
596 CONNECTION_UNLOCK (connection);
602 * Gets the next outgoing message. The message remains in the
603 * queue, and the caller does not own a reference to it.
605 * @param connection the connection.
606 * @returns the message to be sent.
609 _dbus_connection_get_message_to_send (DBusConnection *connection)
611 HAVE_LOCK_CHECK (connection);
613 return _dbus_list_get_last (&connection->outgoing_messages);
617 * Notifies the connection that a message has been sent, so the
618 * message can be removed from the outgoing queue.
619 * Called with the connection lock held.
621 * @param connection the connection.
622 * @param message the message that was sent.
625 _dbus_connection_message_sent_unlocked (DBusConnection *connection,
626 DBusMessage *message)
630 HAVE_LOCK_CHECK (connection);
632 /* This can be called before we even complete authentication, since
633 * it's called on disconnect to clean up the outgoing queue.
634 * It's also called as we successfully send each message.
637 link = _dbus_list_get_last_link (&connection->outgoing_messages);
638 _dbus_assert (link != NULL);
639 _dbus_assert (link->data == message);
641 _dbus_list_unlink (&connection->outgoing_messages,
643 _dbus_list_prepend_link (&connection->expired_messages, link);
645 connection->n_outgoing -= 1;
647 _dbus_verbose ("Message %p (%s %s %s %s '%s') removed from outgoing queue %p, %d left to send\n",
649 dbus_message_type_to_string (dbus_message_get_type (message)),
650 dbus_message_get_path (message) ?
651 dbus_message_get_path (message) :
653 dbus_message_get_interface (message) ?
654 dbus_message_get_interface (message) :
656 dbus_message_get_member (message) ?
657 dbus_message_get_member (message) :
659 dbus_message_get_signature (message),
660 connection, connection->n_outgoing);
662 /* It's OK that in principle we call the notify function, because for the
663 * outgoing limit, there isn't one */
664 _dbus_message_remove_counter (message, connection->outgoing_counter);
666 /* The message will actually be unreffed when we unlock */
669 /** Function to be called in protected_change_watch() with refcount held */
670 typedef dbus_bool_t (* DBusWatchAddFunction) (DBusWatchList *list,
672 /** Function to be called in protected_change_watch() with refcount held */
673 typedef void (* DBusWatchRemoveFunction) (DBusWatchList *list,
675 /** Function to be called in protected_change_watch() with refcount held */
676 typedef void (* DBusWatchToggleFunction) (DBusWatchList *list,
678 dbus_bool_t enabled);
681 protected_change_watch (DBusConnection *connection,
683 DBusWatchAddFunction add_function,
684 DBusWatchRemoveFunction remove_function,
685 DBusWatchToggleFunction toggle_function,
690 HAVE_LOCK_CHECK (connection);
692 /* The original purpose of protected_change_watch() was to hold a
693 * ref on the connection while dropping the connection lock, then
694 * calling out to the app. This was a broken hack that did not
695 * work, since the connection was in a hosed state (no WatchList
696 * field) while calling out.
698 * So for now we'll just keep the lock while calling out. This means
699 * apps are not allowed to call DBusConnection methods inside a
700 * watch function or they will deadlock.
702 * The "real fix" is to use the _and_unlock() pattern found
703 * elsewhere in the code, to defer calling out to the app until
704 * we're about to drop locks and return flow of control to the app
707 * See http://lists.freedesktop.org/archives/dbus/2007-July/thread.html#8144
710 if (connection->watches)
713 retval = (* add_function) (connection->watches, watch);
714 else if (remove_function)
717 (* remove_function) (connection->watches, watch);
722 (* toggle_function) (connection->watches, watch, enabled);
732 * Adds a watch using the connection's DBusAddWatchFunction if
733 * available. Otherwise records the watch to be added when said
734 * function is available. Also re-adds the watch if the
735 * DBusAddWatchFunction changes. May fail due to lack of memory.
736 * Connection lock should be held when calling this.
738 * @param connection the connection.
739 * @param watch the watch to add.
740 * @returns #TRUE on success.
743 _dbus_connection_add_watch_unlocked (DBusConnection *connection,
746 return protected_change_watch (connection, watch,
747 _dbus_watch_list_add_watch,
752 * Removes a watch using the connection's DBusRemoveWatchFunction
753 * if available. It's an error to call this function on a watch
754 * that was not previously added.
755 * Connection lock should be held when calling this.
757 * @param connection the connection.
758 * @param watch the watch to remove.
761 _dbus_connection_remove_watch_unlocked (DBusConnection *connection,
764 protected_change_watch (connection, watch,
766 _dbus_watch_list_remove_watch,
771 * Toggles a watch and notifies app via connection's
772 * DBusWatchToggledFunction if available. It's an error to call this
773 * function on a watch that was not previously added.
774 * Connection lock should be held when calling this.
776 * @param connection the connection.
777 * @param watch the watch to toggle.
778 * @param enabled whether to enable or disable
781 _dbus_connection_toggle_watch_unlocked (DBusConnection *connection,
785 _dbus_assert (watch != NULL);
787 protected_change_watch (connection, watch,
789 _dbus_watch_list_toggle_watch,
793 /** Function to be called in protected_change_timeout() with refcount held */
794 typedef dbus_bool_t (* DBusTimeoutAddFunction) (DBusTimeoutList *list,
795 DBusTimeout *timeout);
796 /** Function to be called in protected_change_timeout() with refcount held */
797 typedef void (* DBusTimeoutRemoveFunction) (DBusTimeoutList *list,
798 DBusTimeout *timeout);
799 /** Function to be called in protected_change_timeout() with refcount held */
800 typedef void (* DBusTimeoutToggleFunction) (DBusTimeoutList *list,
801 DBusTimeout *timeout,
802 dbus_bool_t enabled);
805 protected_change_timeout (DBusConnection *connection,
806 DBusTimeout *timeout,
807 DBusTimeoutAddFunction add_function,
808 DBusTimeoutRemoveFunction remove_function,
809 DBusTimeoutToggleFunction toggle_function,
814 HAVE_LOCK_CHECK (connection);
816 /* The original purpose of protected_change_timeout() was to hold a
817 * ref on the connection while dropping the connection lock, then
818 * calling out to the app. This was a broken hack that did not
819 * work, since the connection was in a hosed state (no TimeoutList
820 * field) while calling out.
822 * So for now we'll just keep the lock while calling out. This means
823 * apps are not allowed to call DBusConnection methods inside a
824 * timeout function or they will deadlock.
826 * The "real fix" is to use the _and_unlock() pattern found
827 * elsewhere in the code, to defer calling out to the app until
828 * we're about to drop locks and return flow of control to the app
831 * See http://lists.freedesktop.org/archives/dbus/2007-July/thread.html#8144
834 if (connection->timeouts)
837 retval = (* add_function) (connection->timeouts, timeout);
838 else if (remove_function)
841 (* remove_function) (connection->timeouts, timeout);
846 (* toggle_function) (connection->timeouts, timeout, enabled);
855 * Adds a timeout using the connection's DBusAddTimeoutFunction if
856 * available. Otherwise records the timeout to be added when said
857 * function is available. Also re-adds the timeout if the
858 * DBusAddTimeoutFunction changes. May fail due to lack of memory.
859 * The timeout will fire repeatedly until removed.
860 * Connection lock should be held when calling this.
862 * @param connection the connection.
863 * @param timeout the timeout to add.
864 * @returns #TRUE on success.
867 _dbus_connection_add_timeout_unlocked (DBusConnection *connection,
868 DBusTimeout *timeout)
870 return protected_change_timeout (connection, timeout,
871 _dbus_timeout_list_add_timeout,
876 * Removes a timeout using the connection's DBusRemoveTimeoutFunction
877 * if available. It's an error to call this function on a timeout
878 * that was not previously added.
879 * Connection lock should be held when calling this.
881 * @param connection the connection.
882 * @param timeout the timeout to remove.
885 _dbus_connection_remove_timeout_unlocked (DBusConnection *connection,
886 DBusTimeout *timeout)
888 protected_change_timeout (connection, timeout,
890 _dbus_timeout_list_remove_timeout,
895 * Toggles a timeout and notifies app via connection's
896 * DBusTimeoutToggledFunction if available. It's an error to call this
897 * function on a timeout that was not previously added.
898 * Connection lock should be held when calling this.
900 * @param connection the connection.
901 * @param timeout the timeout to toggle.
902 * @param enabled whether to enable or disable
905 _dbus_connection_toggle_timeout_unlocked (DBusConnection *connection,
906 DBusTimeout *timeout,
909 protected_change_timeout (connection, timeout,
911 _dbus_timeout_list_toggle_timeout,
916 _dbus_connection_attach_pending_call_unlocked (DBusConnection *connection,
917 DBusPendingCall *pending)
919 dbus_uint32_t reply_serial;
920 DBusTimeout *timeout;
922 HAVE_LOCK_CHECK (connection);
924 reply_serial = _dbus_pending_call_get_reply_serial_unlocked (pending);
926 _dbus_assert (reply_serial != 0);
928 timeout = _dbus_pending_call_get_timeout_unlocked (pending);
932 if (!_dbus_connection_add_timeout_unlocked (connection, timeout))
935 if (!_dbus_hash_table_insert_int (connection->pending_replies,
939 _dbus_connection_remove_timeout_unlocked (connection, timeout);
941 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
942 HAVE_LOCK_CHECK (connection);
946 _dbus_pending_call_set_timeout_added_unlocked (pending, TRUE);
950 if (!_dbus_hash_table_insert_int (connection->pending_replies,
954 HAVE_LOCK_CHECK (connection);
959 _dbus_pending_call_ref_unlocked (pending);
961 HAVE_LOCK_CHECK (connection);
967 free_pending_call_on_hash_removal (void *data)
969 DBusPendingCall *pending;
970 DBusConnection *connection;
977 connection = _dbus_pending_call_get_connection_unlocked (pending);
979 HAVE_LOCK_CHECK (connection);
981 if (_dbus_pending_call_is_timeout_added_unlocked (pending))
983 _dbus_connection_remove_timeout_unlocked (connection,
984 _dbus_pending_call_get_timeout_unlocked (pending));
986 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
989 /* FIXME 1.0? this is sort of dangerous and undesirable to drop the lock
990 * here, but the pending call finalizer could in principle call out to
991 * application code so we pretty much have to... some larger code reorg
994 _dbus_connection_ref_unlocked (connection);
995 _dbus_pending_call_unref_and_unlock (pending);
996 CONNECTION_LOCK (connection);
997 _dbus_connection_unref_unlocked (connection);
1001 _dbus_connection_detach_pending_call_unlocked (DBusConnection *connection,
1002 DBusPendingCall *pending)
1004 /* This ends up unlocking to call the pending call finalizer, which is unexpected to
1007 _dbus_hash_table_remove_int (connection->pending_replies,
1008 _dbus_pending_call_get_reply_serial_unlocked (pending));
1012 _dbus_connection_detach_pending_call_and_unlock (DBusConnection *connection,
1013 DBusPendingCall *pending)
1015 /* The idea here is to avoid finalizing the pending call
1016 * with the lock held, since there's a destroy notifier
1017 * in pending call that goes out to application code.
1019 * There's an extra unlock inside the hash table
1020 * "free pending call" function FIXME...
1022 _dbus_pending_call_ref_unlocked (pending);
1023 _dbus_hash_table_remove_int (connection->pending_replies,
1024 _dbus_pending_call_get_reply_serial_unlocked (pending));
1026 if (_dbus_pending_call_is_timeout_added_unlocked (pending))
1027 _dbus_connection_remove_timeout_unlocked (connection,
1028 _dbus_pending_call_get_timeout_unlocked (pending));
1030 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
1032 _dbus_pending_call_unref_and_unlock (pending);
1036 * Removes a pending call from the connection, such that
1037 * the pending reply will be ignored. May drop the last
1038 * reference to the pending call.
1040 * @param connection the connection
1041 * @param pending the pending call
1044 _dbus_connection_remove_pending_call (DBusConnection *connection,
1045 DBusPendingCall *pending)
1047 CONNECTION_LOCK (connection);
1048 _dbus_connection_detach_pending_call_and_unlock (connection, pending);
1052 * Acquire the transporter I/O path. This must be done before
1053 * doing any I/O in the transporter. May sleep and drop the
1054 * IO path mutex while waiting for the I/O path.
1056 * @param connection the connection.
1057 * @param timeout_milliseconds maximum blocking time, or -1 for no limit.
1058 * @returns TRUE if the I/O path was acquired.
1061 _dbus_connection_acquire_io_path (DBusConnection *connection,
1062 int timeout_milliseconds)
1064 dbus_bool_t we_acquired;
1066 HAVE_LOCK_CHECK (connection);
1068 /* We don't want the connection to vanish */
1069 _dbus_connection_ref_unlocked (connection);
1071 /* We will only touch io_path_acquired which is protected by our mutex */
1072 CONNECTION_UNLOCK (connection);
1074 _dbus_verbose ("locking io_path_mutex\n");
1075 _dbus_cmutex_lock (connection->io_path_mutex);
1077 _dbus_verbose ("start connection->io_path_acquired = %d timeout = %d\n",
1078 connection->io_path_acquired, timeout_milliseconds);
1080 we_acquired = FALSE;
1082 if (connection->io_path_acquired)
1084 if (timeout_milliseconds != -1)
1086 _dbus_verbose ("waiting %d for IO path to be acquirable\n",
1087 timeout_milliseconds);
1089 if (!_dbus_condvar_wait_timeout (connection->io_path_cond,
1090 connection->io_path_mutex,
1091 timeout_milliseconds))
1093 /* We timed out before anyone signaled. */
1094 /* (writing the loop to handle the !timedout case by
1095 * waiting longer if needed is a pain since dbus
1096 * wraps pthread_cond_timedwait to take a relative
1097 * time instead of absolute, something kind of stupid
1098 * on our part. for now it doesn't matter, we will just
1099 * end up back here eventually.)
1105 while (connection->io_path_acquired)
1107 _dbus_verbose ("waiting for IO path to be acquirable\n");
1108 _dbus_condvar_wait (connection->io_path_cond,
1109 connection->io_path_mutex);
1114 if (!connection->io_path_acquired)
1117 connection->io_path_acquired = TRUE;
1120 _dbus_verbose ("end connection->io_path_acquired = %d we_acquired = %d\n",
1121 connection->io_path_acquired, we_acquired);
1123 _dbus_verbose ("unlocking io_path_mutex\n");
1124 _dbus_cmutex_unlock (connection->io_path_mutex);
1126 CONNECTION_LOCK (connection);
1128 HAVE_LOCK_CHECK (connection);
1130 _dbus_connection_unref_unlocked (connection);
1136 * Release the I/O path when you're done with it. Only call
1137 * after you've acquired the I/O. Wakes up at most one thread
1138 * currently waiting to acquire the I/O path.
1140 * @param connection the connection.
1143 _dbus_connection_release_io_path (DBusConnection *connection)
1145 HAVE_LOCK_CHECK (connection);
1147 _dbus_verbose ("locking io_path_mutex\n");
1148 _dbus_cmutex_lock (connection->io_path_mutex);
1150 _dbus_assert (connection->io_path_acquired);
1152 _dbus_verbose ("start connection->io_path_acquired = %d\n",
1153 connection->io_path_acquired);
1155 connection->io_path_acquired = FALSE;
1156 _dbus_condvar_wake_one (connection->io_path_cond);
1158 _dbus_verbose ("unlocking io_path_mutex\n");
1159 _dbus_cmutex_unlock (connection->io_path_mutex);
1163 * Queues incoming messages and sends outgoing messages for this
1164 * connection, optionally blocking in the process. Each call to
1165 * _dbus_connection_do_iteration_unlocked() will call select() or poll() one
1166 * time and then read or write data if possible.
1168 * The purpose of this function is to be able to flush outgoing
1169 * messages or queue up incoming messages without returning
1170 * control to the application and causing reentrancy weirdness.
1172 * The flags parameter allows you to specify whether to
1173 * read incoming messages, write outgoing messages, or both,
1174 * and whether to block if no immediate action is possible.
1176 * The timeout_milliseconds parameter does nothing unless the
1177 * iteration is blocking.
1179 * If there are no outgoing messages and DBUS_ITERATION_DO_READING
1180 * wasn't specified, then it's impossible to block, even if
1181 * you specify DBUS_ITERATION_BLOCK; in that case the function
1182 * returns immediately.
1184 * If pending is not NULL then a check is made if the pending call
1185 * is completed after the io path has been required. If the call
1186 * has been completed nothing is done. This must be done since
1187 * the _dbus_connection_acquire_io_path releases the connection
1190 * Called with connection lock held.
1192 * @param connection the connection.
1193 * @param pending the pending call that should be checked or NULL
1194 * @param flags iteration flags.
1195 * @param timeout_milliseconds maximum blocking time, or -1 for no limit.
1198 _dbus_connection_do_iteration_unlocked (DBusConnection *connection,
1199 DBusPendingCall *pending,
1201 int timeout_milliseconds)
1203 _dbus_verbose ("start\n");
1205 HAVE_LOCK_CHECK (connection);
1207 if (connection->n_outgoing == 0)
1208 flags &= ~DBUS_ITERATION_DO_WRITING;
1210 if (_dbus_connection_acquire_io_path (connection,
1211 (flags & DBUS_ITERATION_BLOCK) ? timeout_milliseconds : 0))
1213 HAVE_LOCK_CHECK (connection);
1215 if ( (pending != NULL) && _dbus_pending_call_get_completed_unlocked(pending))
1217 _dbus_verbose ("pending call completed while acquiring I/O path");
1219 else if ( (pending != NULL) &&
1220 _dbus_connection_peek_for_reply_unlocked (connection,
1221 _dbus_pending_call_get_reply_serial_unlocked (pending)))
1223 _dbus_verbose ("pending call completed while acquiring I/O path (reply found in queue)");
1227 _dbus_transport_do_iteration (connection->transport,
1228 flags, timeout_milliseconds);
1231 _dbus_connection_release_io_path (connection);
1234 HAVE_LOCK_CHECK (connection);
1236 _dbus_verbose ("end\n");
1240 * Creates a new connection for the given transport. A transport
1241 * represents a message stream that uses some concrete mechanism, such
1242 * as UNIX domain sockets. May return #NULL if insufficient
1243 * memory exists to create the connection.
1245 * @param transport the transport.
1246 * @returns the new connection, or #NULL on failure.
1249 _dbus_connection_new_for_transport (DBusTransport *transport)
1251 DBusConnection *connection;
1252 DBusWatchList *watch_list;
1253 DBusTimeoutList *timeout_list;
1254 DBusHashTable *pending_replies;
1255 DBusList *disconnect_link;
1256 DBusMessage *disconnect_message;
1257 DBusCounter *outgoing_counter;
1258 DBusObjectTree *objects;
1262 pending_replies = NULL;
1263 timeout_list = NULL;
1264 disconnect_link = NULL;
1265 disconnect_message = NULL;
1266 outgoing_counter = NULL;
1269 watch_list = _dbus_watch_list_new ();
1270 if (watch_list == NULL)
1273 timeout_list = _dbus_timeout_list_new ();
1274 if (timeout_list == NULL)
1278 _dbus_hash_table_new (DBUS_HASH_INT,
1280 (DBusFreeFunction)free_pending_call_on_hash_removal);
1281 if (pending_replies == NULL)
1284 connection = dbus_new0 (DBusConnection, 1);
1285 if (connection == NULL)
1288 _dbus_rmutex_new_at_location (&connection->mutex);
1289 if (connection->mutex == NULL)
1292 _dbus_cmutex_new_at_location (&connection->io_path_mutex);
1293 if (connection->io_path_mutex == NULL)
1296 _dbus_cmutex_new_at_location (&connection->dispatch_mutex);
1297 if (connection->dispatch_mutex == NULL)
1300 _dbus_condvar_new_at_location (&connection->dispatch_cond);
1301 if (connection->dispatch_cond == NULL)
1304 _dbus_condvar_new_at_location (&connection->io_path_cond);
1305 if (connection->io_path_cond == NULL)
1308 _dbus_rmutex_new_at_location (&connection->slot_mutex);
1309 if (connection->slot_mutex == NULL)
1312 disconnect_message = dbus_message_new_signal (DBUS_PATH_LOCAL,
1313 DBUS_INTERFACE_LOCAL,
1316 if (disconnect_message == NULL)
1319 disconnect_link = _dbus_list_alloc_link (disconnect_message);
1320 if (disconnect_link == NULL)
1323 outgoing_counter = _dbus_counter_new ();
1324 if (outgoing_counter == NULL)
1327 objects = _dbus_object_tree_new (connection);
1328 if (objects == NULL)
1331 if (_dbus_modify_sigpipe)
1332 _dbus_disable_sigpipe ();
1334 /* initialized to 0: use atomic op to avoid mixing atomic and non-atomic */
1335 _dbus_atomic_inc (&connection->refcount);
1336 connection->transport = transport;
1337 connection->watches = watch_list;
1338 connection->timeouts = timeout_list;
1339 connection->pending_replies = pending_replies;
1340 connection->outgoing_counter = outgoing_counter;
1341 connection->filter_list = NULL;
1342 connection->last_dispatch_status = DBUS_DISPATCH_COMPLETE; /* so we're notified first time there's data */
1343 connection->objects = objects;
1344 connection->exit_on_disconnect = FALSE;
1345 connection->shareable = FALSE;
1346 connection->route_peer_messages = FALSE;
1347 connection->disconnected_message_arrived = FALSE;
1348 connection->disconnected_message_processed = FALSE;
1350 #if defined(DBUS_ENABLE_CHECKS) || defined(DBUS_ENABLE_ASSERT)
1351 connection->generation = _dbus_current_generation;
1354 _dbus_data_slot_list_init (&connection->slot_list);
1356 connection->client_serial = 1;
1358 connection->disconnect_message_link = disconnect_link;
1360 CONNECTION_LOCK (connection);
1362 if (!_dbus_transport_set_connection (transport, connection))
1364 CONNECTION_UNLOCK (connection);
1369 _dbus_transport_ref (transport);
1371 CONNECTION_UNLOCK (connection);
1373 _dbus_connection_trace_ref (connection, 0, 1, "new_for_transport");
1377 if (disconnect_message != NULL)
1378 dbus_message_unref (disconnect_message);
1380 if (disconnect_link != NULL)
1381 _dbus_list_free_link (disconnect_link);
1383 if (connection != NULL)
1385 _dbus_condvar_free_at_location (&connection->io_path_cond);
1386 _dbus_condvar_free_at_location (&connection->dispatch_cond);
1387 _dbus_rmutex_free_at_location (&connection->mutex);
1388 _dbus_cmutex_free_at_location (&connection->io_path_mutex);
1389 _dbus_cmutex_free_at_location (&connection->dispatch_mutex);
1390 _dbus_rmutex_free_at_location (&connection->slot_mutex);
1391 dbus_free (connection);
1393 if (pending_replies)
1394 _dbus_hash_table_unref (pending_replies);
1397 _dbus_watch_list_free (watch_list);
1400 _dbus_timeout_list_free (timeout_list);
1402 if (outgoing_counter)
1403 _dbus_counter_unref (outgoing_counter);
1406 _dbus_object_tree_unref (objects);
1412 * Increments the reference count of a DBusConnection.
1413 * Requires that the caller already holds the connection lock.
1415 * @param connection the connection.
1416 * @returns the connection.
1419 _dbus_connection_ref_unlocked (DBusConnection *connection)
1421 dbus_int32_t old_refcount;
1423 _dbus_assert (connection != NULL);
1424 _dbus_assert (connection->generation == _dbus_current_generation);
1426 HAVE_LOCK_CHECK (connection);
1428 old_refcount = _dbus_atomic_inc (&connection->refcount);
1429 _dbus_connection_trace_ref (connection, old_refcount, old_refcount + 1,
1436 * Decrements the reference count of a DBusConnection.
1437 * Requires that the caller already holds the connection lock.
1439 * @param connection the connection.
1442 _dbus_connection_unref_unlocked (DBusConnection *connection)
1444 dbus_int32_t old_refcount;
1446 HAVE_LOCK_CHECK (connection);
1448 _dbus_assert (connection != NULL);
1450 old_refcount = _dbus_atomic_dec (&connection->refcount);
1452 _dbus_connection_trace_ref (connection, old_refcount, old_refcount - 1,
1455 if (old_refcount == 1)
1456 _dbus_connection_last_unref (connection);
1459 static dbus_uint32_t
1460 _dbus_connection_get_next_client_serial (DBusConnection *connection)
1462 dbus_uint32_t serial;
1464 serial = connection->client_serial++;
1466 if (connection->client_serial == 0)
1467 connection->client_serial = 1;
1473 * A callback for use with dbus_watch_new() to create a DBusWatch.
1475 * @todo This is basically a hack - we could delete _dbus_transport_handle_watch()
1476 * and the virtual handle_watch in DBusTransport if we got rid of it.
1477 * The reason this is some work is threading, see the _dbus_connection_handle_watch()
1480 * @param watch the watch.
1481 * @param condition the current condition of the file descriptors being watched.
1482 * @param data must be a pointer to a #DBusConnection
1483 * @returns #FALSE if the IO condition may not have been fully handled due to lack of memory
1486 _dbus_connection_handle_watch (DBusWatch *watch,
1487 unsigned int condition,
1490 DBusConnection *connection;
1492 DBusDispatchStatus status;
1496 _dbus_verbose ("start\n");
1498 CONNECTION_LOCK (connection);
1500 if (!_dbus_connection_acquire_io_path (connection, 1))
1502 /* another thread is handling the message */
1503 CONNECTION_UNLOCK (connection);
1507 HAVE_LOCK_CHECK (connection);
1508 retval = _dbus_transport_handle_watch (connection->transport,
1511 _dbus_connection_release_io_path (connection);
1513 HAVE_LOCK_CHECK (connection);
1515 _dbus_verbose ("middle\n");
1517 status = _dbus_connection_get_dispatch_status_unlocked (connection);
1519 /* this calls out to user code */
1520 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
1522 _dbus_verbose ("end\n");
1527 /* Protected by _DBUS_LOCK (shared_connections) */
1528 static DBusHashTable *shared_connections = NULL;
1529 static DBusList *shared_connections_no_guid = NULL;
1532 close_connection_on_shutdown (DBusConnection *connection)
1534 DBusMessage *message;
1536 dbus_connection_ref (connection);
1537 _dbus_connection_close_possibly_shared (connection);
1539 /* Churn through to the Disconnected message */
1540 while ((message = dbus_connection_pop_message (connection)))
1542 dbus_message_unref (message);
1544 dbus_connection_unref (connection);
1548 shared_connections_shutdown (void *data)
1552 if (!_DBUS_LOCK (shared_connections))
1554 /* We'd have initialized locks before adding anything, so there
1555 * can't be anything there. */
1559 /* This is a little bit unpleasant... better ideas? */
1560 while ((n_entries = _dbus_hash_table_get_n_entries (shared_connections)) > 0)
1562 DBusConnection *connection;
1565 _dbus_hash_iter_init (shared_connections, &iter);
1566 _dbus_hash_iter_next (&iter);
1568 connection = _dbus_hash_iter_get_value (&iter);
1570 _DBUS_UNLOCK (shared_connections);
1571 close_connection_on_shutdown (connection);
1572 if (!_DBUS_LOCK (shared_connections))
1573 _dbus_assert_not_reached ("global locks were already initialized");
1575 /* The connection should now be dead and not in our hash ... */
1576 _dbus_assert (_dbus_hash_table_get_n_entries (shared_connections) < n_entries);
1579 _dbus_assert (_dbus_hash_table_get_n_entries (shared_connections) == 0);
1581 _dbus_hash_table_unref (shared_connections);
1582 shared_connections = NULL;
1584 if (shared_connections_no_guid != NULL)
1586 DBusConnection *connection;
1587 connection = _dbus_list_pop_first (&shared_connections_no_guid);
1588 while (connection != NULL)
1590 _DBUS_UNLOCK (shared_connections);
1591 close_connection_on_shutdown (connection);
1592 if (!_DBUS_LOCK (shared_connections))
1593 _dbus_assert_not_reached ("global locks were already initialized");
1594 connection = _dbus_list_pop_first (&shared_connections_no_guid);
1598 shared_connections_no_guid = NULL;
1600 _DBUS_UNLOCK (shared_connections);
1604 connection_lookup_shared (DBusAddressEntry *entry,
1605 DBusConnection **result)
1607 _dbus_verbose ("checking for existing connection\n");
1611 if (!_DBUS_LOCK (shared_connections))
1613 /* If it was shared, we'd have initialized global locks when we put
1614 * it in shared_connections. */
1618 if (shared_connections == NULL)
1620 _dbus_verbose ("creating shared_connections hash table\n");
1622 shared_connections = _dbus_hash_table_new (DBUS_HASH_STRING,
1625 if (shared_connections == NULL)
1627 _DBUS_UNLOCK (shared_connections);
1631 if (!_dbus_register_shutdown_func (shared_connections_shutdown, NULL))
1633 _dbus_hash_table_unref (shared_connections);
1634 shared_connections = NULL;
1635 _DBUS_UNLOCK (shared_connections);
1639 _dbus_verbose (" successfully created shared_connections\n");
1641 _DBUS_UNLOCK (shared_connections);
1642 return TRUE; /* no point looking up in the hash we just made */
1648 guid = dbus_address_entry_get_value (entry, "guid");
1652 DBusConnection *connection;
1654 connection = _dbus_hash_table_lookup_string (shared_connections,
1659 /* The DBusConnection can't be finalized without taking
1660 * the shared_connections lock to remove it from the
1661 * hash. So it's safe to ref the connection here.
1662 * However, it may be disconnected if the Disconnected
1663 * message hasn't been processed yet, in which case we
1664 * want to pretend it isn't in the hash and avoid
1667 * The idea is to avoid ever returning a disconnected connection
1668 * from dbus_connection_open(). We could just synchronously
1669 * drop our shared ref to the connection on connection disconnect,
1670 * and then assert here that the connection is connected, but
1671 * that causes reentrancy headaches.
1673 CONNECTION_LOCK (connection);
1674 if (_dbus_connection_get_is_connected_unlocked (connection))
1676 _dbus_connection_ref_unlocked (connection);
1677 *result = connection;
1678 _dbus_verbose ("looked up existing connection to server guid %s\n",
1683 _dbus_verbose ("looked up existing connection to server guid %s but it was disconnected so ignoring it\n",
1686 CONNECTION_UNLOCK (connection);
1690 _DBUS_UNLOCK (shared_connections);
1696 connection_record_shared_unlocked (DBusConnection *connection,
1700 char *guid_in_connection;
1702 HAVE_LOCK_CHECK (connection);
1703 _dbus_assert (connection->server_guid == NULL);
1704 _dbus_assert (connection->shareable);
1706 /* get a hard ref on this connection, even if
1707 * we won't in fact store it in the hash, we still
1708 * need to hold a ref on it until it's disconnected.
1710 _dbus_connection_ref_unlocked (connection);
1714 if (!_DBUS_LOCK (shared_connections))
1717 if (!_dbus_list_prepend (&shared_connections_no_guid, connection))
1719 _DBUS_UNLOCK (shared_connections);
1723 _DBUS_UNLOCK (shared_connections);
1724 return TRUE; /* don't store in the hash */
1727 /* A separate copy of the key is required in the hash table, because
1728 * we don't have a lock on the connection when we are doing a hash
1732 guid_key = _dbus_strdup (guid);
1733 if (guid_key == NULL)
1736 guid_in_connection = _dbus_strdup (guid);
1737 if (guid_in_connection == NULL)
1739 dbus_free (guid_key);
1743 if (!_DBUS_LOCK (shared_connections))
1745 dbus_free (guid_in_connection);
1746 dbus_free (guid_key);
1750 _dbus_assert (shared_connections != NULL);
1752 if (!_dbus_hash_table_insert_string (shared_connections,
1753 guid_key, connection))
1755 dbus_free (guid_key);
1756 dbus_free (guid_in_connection);
1757 _DBUS_UNLOCK (shared_connections);
1761 connection->server_guid = guid_in_connection;
1763 _dbus_verbose ("stored connection to %s to be shared\n",
1764 connection->server_guid);
1766 _DBUS_UNLOCK (shared_connections);
1768 _dbus_assert (connection->server_guid != NULL);
1774 connection_forget_shared_unlocked (DBusConnection *connection)
1776 HAVE_LOCK_CHECK (connection);
1778 if (!connection->shareable)
1781 if (!_DBUS_LOCK (shared_connections))
1783 /* If it was shared, we'd have initialized global locks when we put
1784 * it in the table; so it can't be there. */
1788 if (connection->server_guid != NULL)
1790 _dbus_verbose ("dropping connection to %s out of the shared table\n",
1791 connection->server_guid);
1793 if (!_dbus_hash_table_remove_string (shared_connections,
1794 connection->server_guid))
1795 _dbus_assert_not_reached ("connection was not in the shared table");
1797 dbus_free (connection->server_guid);
1798 connection->server_guid = NULL;
1802 _dbus_list_remove (&shared_connections_no_guid, connection);
1805 _DBUS_UNLOCK (shared_connections);
1807 /* remove our reference held on all shareable connections */
1808 _dbus_connection_unref_unlocked (connection);
1811 static DBusConnection*
1812 connection_try_from_address_entry (DBusAddressEntry *entry,
1815 DBusTransport *transport;
1816 DBusConnection *connection;
1818 transport = _dbus_transport_open (entry, error);
1820 if (transport == NULL)
1822 _DBUS_ASSERT_ERROR_IS_SET (error);
1826 connection = _dbus_connection_new_for_transport (transport);
1828 _dbus_transport_unref (transport);
1830 if (connection == NULL)
1832 _DBUS_SET_OOM (error);
1836 #ifndef DBUS_DISABLE_CHECKS
1837 _dbus_assert (!connection->have_connection_lock);
1843 * If the shared parameter is true, then any existing connection will
1844 * be used (and if a new connection is created, it will be available
1845 * for use by others). If the shared parameter is false, a new
1846 * connection will always be created, and the new connection will
1847 * never be returned to other callers.
1849 * @param address the address
1850 * @param shared whether the connection is shared or private
1851 * @param error error return
1852 * @returns the connection or #NULL on error
1854 static DBusConnection*
1855 _dbus_connection_open_internal (const char *address,
1859 DBusConnection *connection;
1860 DBusAddressEntry **entries;
1861 DBusError tmp_error = DBUS_ERROR_INIT;
1862 DBusError first_error = DBUS_ERROR_INIT;
1865 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1867 _dbus_verbose ("opening %s connection to: %s\n",
1868 shared ? "shared" : "private", address);
1870 if (!dbus_parse_address (address, &entries, &len, error))
1873 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1877 for (i = 0; i < len; i++)
1881 if (!connection_lookup_shared (entries[i], &connection))
1882 _DBUS_SET_OOM (&tmp_error);
1885 if (connection == NULL)
1887 connection = connection_try_from_address_entry (entries[i],
1890 if (connection != NULL && shared)
1894 connection->shareable = TRUE;
1896 /* guid may be NULL */
1897 guid = dbus_address_entry_get_value (entries[i], "guid");
1899 CONNECTION_LOCK (connection);
1901 if (!connection_record_shared_unlocked (connection, guid))
1903 _DBUS_SET_OOM (&tmp_error);
1904 _dbus_connection_close_possibly_shared_and_unlock (connection);
1905 dbus_connection_unref (connection);
1909 CONNECTION_UNLOCK (connection);
1916 _DBUS_ASSERT_ERROR_IS_SET (&tmp_error);
1919 dbus_move_error (&tmp_error, &first_error);
1921 dbus_error_free (&tmp_error);
1924 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1925 _DBUS_ASSERT_ERROR_IS_CLEAR (&tmp_error);
1927 if (connection == NULL)
1929 _DBUS_ASSERT_ERROR_IS_SET (&first_error);
1930 dbus_move_error (&first_error, error);
1933 dbus_error_free (&first_error);
1935 dbus_address_entries_free (entries);
1940 * Closes a shared OR private connection, while dbus_connection_close() can
1941 * only be used on private connections. Should only be called by the
1942 * dbus code that owns the connection - an owner must be known,
1943 * the open/close state is like malloc/free, not like ref/unref.
1945 * @param connection the connection
1948 _dbus_connection_close_possibly_shared (DBusConnection *connection)
1950 _dbus_assert (connection != NULL);
1951 _dbus_assert (connection->generation == _dbus_current_generation);
1953 CONNECTION_LOCK (connection);
1954 _dbus_connection_close_possibly_shared_and_unlock (connection);
1957 static DBusPreallocatedSend*
1958 _dbus_connection_preallocate_send_unlocked (DBusConnection *connection)
1960 DBusPreallocatedSend *preallocated;
1962 HAVE_LOCK_CHECK (connection);
1964 _dbus_assert (connection != NULL);
1966 preallocated = dbus_new (DBusPreallocatedSend, 1);
1967 if (preallocated == NULL)
1970 preallocated->queue_link = _dbus_list_alloc_link (NULL);
1971 if (preallocated->queue_link == NULL)
1974 preallocated->counter_link = _dbus_list_alloc_link (connection->outgoing_counter);
1975 if (preallocated->counter_link == NULL)
1978 _dbus_counter_ref (preallocated->counter_link->data);
1980 preallocated->connection = connection;
1982 return preallocated;
1985 _dbus_list_free_link (preallocated->queue_link);
1987 dbus_free (preallocated);
1992 /* Called with lock held, does not update dispatch status */
1994 _dbus_connection_send_preallocated_unlocked_no_update (DBusConnection *connection,
1995 DBusPreallocatedSend *preallocated,
1996 DBusMessage *message,
1997 dbus_uint32_t *client_serial)
1999 dbus_uint32_t serial;
2001 preallocated->queue_link->data = message;
2002 _dbus_list_prepend_link (&connection->outgoing_messages,
2003 preallocated->queue_link);
2005 /* It's OK that we'll never call the notify function, because for the
2006 * outgoing limit, there isn't one */
2007 _dbus_message_add_counter_link (message,
2008 preallocated->counter_link);
2010 dbus_free (preallocated);
2011 preallocated = NULL;
2013 dbus_message_ref (message);
2015 connection->n_outgoing += 1;
2017 _dbus_verbose ("Message %p (%s %s %s %s '%s') for %s added to outgoing queue %p, %d pending to send\n",
2019 dbus_message_type_to_string (dbus_message_get_type (message)),
2020 dbus_message_get_path (message) ?
2021 dbus_message_get_path (message) :
2023 dbus_message_get_interface (message) ?
2024 dbus_message_get_interface (message) :
2026 dbus_message_get_member (message) ?
2027 dbus_message_get_member (message) :
2029 dbus_message_get_signature (message),
2030 dbus_message_get_destination (message) ?
2031 dbus_message_get_destination (message) :
2034 connection->n_outgoing);
2036 if (dbus_message_get_serial (message) == 0)
2038 serial = _dbus_connection_get_next_client_serial (connection);
2039 dbus_message_set_serial (message, serial);
2041 *client_serial = serial;
2046 *client_serial = dbus_message_get_serial (message);
2049 _dbus_verbose ("Message %p serial is %u\n",
2050 message, dbus_message_get_serial (message));
2052 dbus_message_lock (message);
2054 /* Now we need to run an iteration to hopefully just write the messages
2055 * out immediately, and otherwise get them queued up
2057 _dbus_connection_do_iteration_unlocked (connection,
2059 DBUS_ITERATION_DO_WRITING,
2062 /* If stuff is still queued up, be sure we wake up the main loop */
2063 if (connection->n_outgoing > 0)
2064 _dbus_connection_wakeup_mainloop (connection);
2068 _dbus_connection_send_preallocated_and_unlock (DBusConnection *connection,
2069 DBusPreallocatedSend *preallocated,
2070 DBusMessage *message,
2071 dbus_uint32_t *client_serial)
2073 DBusDispatchStatus status;
2075 HAVE_LOCK_CHECK (connection);
2077 _dbus_connection_send_preallocated_unlocked_no_update (connection,
2079 message, client_serial);
2081 _dbus_verbose ("middle\n");
2082 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2084 /* this calls out to user code */
2085 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2089 * Like dbus_connection_send(), but assumes the connection
2090 * is already locked on function entry, and unlocks before returning.
2092 * @param connection the connection
2093 * @param message the message to send
2094 * @param client_serial return location for client serial of sent message
2095 * @returns #FALSE on out-of-memory
2098 _dbus_connection_send_and_unlock (DBusConnection *connection,
2099 DBusMessage *message,
2100 dbus_uint32_t *client_serial)
2102 DBusPreallocatedSend *preallocated;
2104 _dbus_assert (connection != NULL);
2105 _dbus_assert (message != NULL);
2107 preallocated = _dbus_connection_preallocate_send_unlocked (connection);
2108 if (preallocated == NULL)
2110 CONNECTION_UNLOCK (connection);
2114 _dbus_connection_send_preallocated_and_unlock (connection,
2122 * Used internally to handle the semantics of dbus_server_set_new_connection_function().
2123 * If the new connection function does not ref the connection, we want to close it.
2125 * A bit of a hack, probably the new connection function should have returned a value
2126 * for whether to close, or should have had to close the connection itself if it
2129 * But, this works OK as long as the new connection function doesn't do anything
2130 * crazy like keep the connection around without ref'ing it.
2132 * We have to lock the connection across refcount check and close in case
2133 * the new connection function spawns a thread that closes and unrefs.
2134 * In that case, if the app thread
2135 * closes and unrefs first, we'll harmlessly close again; if the app thread
2136 * still has the ref, we'll close and then the app will close harmlessly.
2137 * If the app unrefs without closing, the app is broken since if the
2138 * app refs from the new connection function it is supposed to also close.
2140 * If we didn't atomically check the refcount and close with the lock held
2141 * though, we could screw this up.
2143 * @param connection the connection
2146 _dbus_connection_close_if_only_one_ref (DBusConnection *connection)
2148 dbus_int32_t refcount;
2150 CONNECTION_LOCK (connection);
2152 refcount = _dbus_atomic_get (&connection->refcount);
2153 /* The caller should have at least one ref */
2154 _dbus_assert (refcount >= 1);
2157 _dbus_connection_close_possibly_shared_and_unlock (connection);
2159 CONNECTION_UNLOCK (connection);
2164 * When a function that blocks has been called with a timeout, and we
2165 * run out of memory, the time to wait for memory is based on the
2166 * timeout. If the caller was willing to block a long time we wait a
2167 * relatively long time for memory, if they were only willing to block
2168 * briefly then we retry for memory at a rapid rate.
2170 * @param timeout_milliseconds the timeout requested for blocking
2173 _dbus_memory_pause_based_on_timeout (int timeout_milliseconds)
2175 if (timeout_milliseconds == -1)
2176 _dbus_sleep_milliseconds (1000);
2177 else if (timeout_milliseconds < 100)
2178 ; /* just busy loop */
2179 else if (timeout_milliseconds <= 1000)
2180 _dbus_sleep_milliseconds (timeout_milliseconds / 3);
2182 _dbus_sleep_milliseconds (1000);
2185 static DBusMessage *
2186 generate_local_error_message (dbus_uint32_t serial,
2190 DBusMessage *message;
2191 message = dbus_message_new (DBUS_MESSAGE_TYPE_ERROR);
2195 if (!dbus_message_set_error_name (message, error_name))
2197 dbus_message_unref (message);
2202 dbus_message_set_no_reply (message, TRUE);
2204 if (!dbus_message_set_reply_serial (message,
2207 dbus_message_unref (message);
2212 if (error_msg != NULL)
2214 DBusMessageIter iter;
2216 dbus_message_iter_init_append (message, &iter);
2217 if (!dbus_message_iter_append_basic (&iter,
2221 dbus_message_unref (message);
2232 * Peek the incoming queue to see if we got reply for a specific serial
2235 _dbus_connection_peek_for_reply_unlocked (DBusConnection *connection,
2236 dbus_uint32_t client_serial)
2239 HAVE_LOCK_CHECK (connection);
2241 link = _dbus_list_get_first_link (&connection->incoming_messages);
2243 while (link != NULL)
2245 DBusMessage *reply = link->data;
2247 if (dbus_message_get_reply_serial (reply) == client_serial)
2249 _dbus_verbose ("%s reply to %d found in queue\n", _DBUS_FUNCTION_NAME, client_serial);
2252 link = _dbus_list_get_next_link (&connection->incoming_messages, link);
2258 /* This is slightly strange since we can pop a message here without
2259 * the dispatch lock.
2262 check_for_reply_unlocked (DBusConnection *connection,
2263 dbus_uint32_t client_serial)
2267 HAVE_LOCK_CHECK (connection);
2269 link = _dbus_list_get_first_link (&connection->incoming_messages);
2271 while (link != NULL)
2273 DBusMessage *reply = link->data;
2275 if (dbus_message_get_reply_serial (reply) == client_serial)
2277 _dbus_list_remove_link (&connection->incoming_messages, link);
2278 connection->n_incoming -= 1;
2281 link = _dbus_list_get_next_link (&connection->incoming_messages, link);
2288 connection_timeout_and_complete_all_pending_calls_unlocked (DBusConnection *connection)
2290 /* We can't iterate over the hash in the normal way since we'll be
2291 * dropping the lock for each item. So we restart the
2292 * iter each time as we drain the hash table.
2295 while (_dbus_hash_table_get_n_entries (connection->pending_replies) > 0)
2297 DBusPendingCall *pending;
2300 _dbus_hash_iter_init (connection->pending_replies, &iter);
2301 _dbus_hash_iter_next (&iter);
2303 pending = _dbus_hash_iter_get_value (&iter);
2304 _dbus_pending_call_ref_unlocked (pending);
2306 _dbus_pending_call_queue_timeout_error_unlocked (pending,
2309 if (_dbus_pending_call_is_timeout_added_unlocked (pending))
2310 _dbus_connection_remove_timeout_unlocked (connection,
2311 _dbus_pending_call_get_timeout_unlocked (pending));
2312 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
2313 _dbus_hash_iter_remove_entry (&iter);
2315 _dbus_pending_call_unref_and_unlock (pending);
2316 CONNECTION_LOCK (connection);
2318 HAVE_LOCK_CHECK (connection);
2322 complete_pending_call_and_unlock (DBusConnection *connection,
2323 DBusPendingCall *pending,
2324 DBusMessage *message)
2326 _dbus_pending_call_set_reply_unlocked (pending, message);
2327 _dbus_pending_call_ref_unlocked (pending); /* in case there's no app with a ref held */
2328 _dbus_connection_detach_pending_call_and_unlock (connection, pending);
2330 /* Must be called unlocked since it invokes app callback */
2331 _dbus_pending_call_complete (pending);
2332 dbus_pending_call_unref (pending);
2336 check_for_reply_and_update_dispatch_unlocked (DBusConnection *connection,
2337 DBusPendingCall *pending)
2340 DBusDispatchStatus status;
2342 reply = check_for_reply_unlocked (connection,
2343 _dbus_pending_call_get_reply_serial_unlocked (pending));
2346 _dbus_verbose ("checked for reply\n");
2348 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): got reply\n");
2350 complete_pending_call_and_unlock (connection, pending, reply);
2351 dbus_message_unref (reply);
2353 CONNECTION_LOCK (connection);
2354 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2355 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2356 dbus_pending_call_unref (pending);
2365 * Blocks until a pending call times out or gets a reply.
2367 * Does not re-enter the main loop or run filter/path-registered
2368 * callbacks. The reply to the message will not be seen by
2371 * Returns immediately if pending call already got a reply.
2373 * @todo could use performance improvements (it keeps scanning
2374 * the whole message queue for example)
2376 * @param pending the pending call we block for a reply on
2379 _dbus_connection_block_pending_call (DBusPendingCall *pending)
2381 long start_tv_sec, start_tv_usec;
2382 long tv_sec, tv_usec;
2383 DBusDispatchStatus status;
2384 DBusConnection *connection;
2385 dbus_uint32_t client_serial;
2386 DBusTimeout *timeout;
2387 int timeout_milliseconds, elapsed_milliseconds;
2389 _dbus_assert (pending != NULL);
2391 if (dbus_pending_call_get_completed (pending))
2394 dbus_pending_call_ref (pending); /* necessary because the call could be canceled */
2396 connection = _dbus_pending_call_get_connection_and_lock (pending);
2398 /* Flush message queue - note, can affect dispatch status */
2399 _dbus_connection_flush_unlocked (connection);
2401 client_serial = _dbus_pending_call_get_reply_serial_unlocked (pending);
2403 /* note that timeout_milliseconds is limited to a smallish value
2404 * in _dbus_pending_call_new() so overflows aren't possible
2407 timeout = _dbus_pending_call_get_timeout_unlocked (pending);
2408 _dbus_get_monotonic_time (&start_tv_sec, &start_tv_usec);
2411 timeout_milliseconds = dbus_timeout_get_interval (timeout);
2413 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): will block %d milliseconds for reply serial %u from %ld sec %ld usec\n",
2414 timeout_milliseconds,
2416 start_tv_sec, start_tv_usec);
2420 timeout_milliseconds = -1;
2422 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): will block for reply serial %u\n", client_serial);
2425 /* check to see if we already got the data off the socket */
2426 /* from another blocked pending call */
2427 if (check_for_reply_and_update_dispatch_unlocked (connection, pending))
2430 /* Now we wait... */
2431 /* always block at least once as we know we don't have the reply yet */
2432 _dbus_connection_do_iteration_unlocked (connection,
2434 DBUS_ITERATION_DO_READING |
2435 DBUS_ITERATION_BLOCK,
2436 timeout_milliseconds);
2440 _dbus_verbose ("top of recheck\n");
2442 HAVE_LOCK_CHECK (connection);
2444 /* queue messages and get status */
2446 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2448 /* the get_completed() is in case a dispatch() while we were blocking
2449 * got the reply instead of us.
2451 if (_dbus_pending_call_get_completed_unlocked (pending))
2453 _dbus_verbose ("Pending call completed by dispatch\n");
2454 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2455 dbus_pending_call_unref (pending);
2459 if (status == DBUS_DISPATCH_DATA_REMAINS)
2461 if (check_for_reply_and_update_dispatch_unlocked (connection, pending))
2465 _dbus_get_monotonic_time (&tv_sec, &tv_usec);
2466 elapsed_milliseconds = (tv_sec - start_tv_sec) * 1000 +
2467 (tv_usec - start_tv_usec) / 1000;
2469 if (!_dbus_connection_get_is_connected_unlocked (connection))
2471 DBusMessage *error_msg;
2473 error_msg = generate_local_error_message (client_serial,
2474 DBUS_ERROR_DISCONNECTED,
2475 "Connection was disconnected before a reply was received");
2477 /* on OOM error_msg is set to NULL */
2478 complete_pending_call_and_unlock (connection, pending, error_msg);
2479 dbus_pending_call_unref (pending);
2482 else if (connection->disconnect_message_link == NULL)
2483 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): disconnected\n");
2484 else if (timeout == NULL)
2486 if (status == DBUS_DISPATCH_NEED_MEMORY)
2488 /* Try sleeping a bit, as we aren't sure we need to block for reading,
2489 * we may already have a reply in the buffer and just can't process
2492 _dbus_verbose ("dbus_connection_send_with_reply_and_block() waiting for more memory\n");
2494 _dbus_memory_pause_based_on_timeout (timeout_milliseconds - elapsed_milliseconds);
2498 /* block again, we don't have the reply buffered yet. */
2499 _dbus_connection_do_iteration_unlocked (connection,
2501 DBUS_ITERATION_DO_READING |
2502 DBUS_ITERATION_BLOCK,
2503 timeout_milliseconds - elapsed_milliseconds);
2506 goto recheck_status;
2508 else if (tv_sec < start_tv_sec)
2509 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): clock set backward\n");
2510 else if (elapsed_milliseconds < timeout_milliseconds)
2512 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): %d milliseconds remain\n", timeout_milliseconds - elapsed_milliseconds);
2514 if (status == DBUS_DISPATCH_NEED_MEMORY)
2516 /* Try sleeping a bit, as we aren't sure we need to block for reading,
2517 * we may already have a reply in the buffer and just can't process
2520 _dbus_verbose ("dbus_connection_send_with_reply_and_block() waiting for more memory\n");
2522 _dbus_memory_pause_based_on_timeout (timeout_milliseconds - elapsed_milliseconds);
2526 /* block again, we don't have the reply buffered yet. */
2527 _dbus_connection_do_iteration_unlocked (connection,
2529 DBUS_ITERATION_DO_READING |
2530 DBUS_ITERATION_BLOCK,
2531 timeout_milliseconds - elapsed_milliseconds);
2534 goto recheck_status;
2537 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): Waited %d milliseconds and got no reply\n",
2538 elapsed_milliseconds);
2540 _dbus_assert (!_dbus_pending_call_get_completed_unlocked (pending));
2542 /* unlock and call user code */
2543 complete_pending_call_and_unlock (connection, pending, NULL);
2545 /* update user code on dispatch status */
2546 CONNECTION_LOCK (connection);
2547 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2548 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2549 dbus_pending_call_unref (pending);
2553 * Return how many file descriptors are pending in the loader
2555 * @param connection the connection
2558 _dbus_connection_get_pending_fds_count (DBusConnection *connection)
2560 return _dbus_transport_get_pending_fds_count (connection->transport);
2564 * Register a function to be called whenever the number of pending file
2565 * descriptors in the loader change.
2567 * @param connection the connection
2568 * @param callback the callback
2571 _dbus_connection_set_pending_fds_function (DBusConnection *connection,
2572 DBusPendingFdsChangeFunction callback,
2575 _dbus_transport_set_pending_fds_function (connection->transport,
2582 * @addtogroup DBusConnection
2588 * Gets a connection to a remote address. If a connection to the given
2589 * address already exists, returns the existing connection with its
2590 * reference count incremented. Otherwise, returns a new connection
2591 * and saves the new connection for possible re-use if a future call
2592 * to dbus_connection_open() asks to connect to the same server.
2594 * Use dbus_connection_open_private() to get a dedicated connection
2595 * not shared with other callers of dbus_connection_open().
2597 * If the open fails, the function returns #NULL, and provides a
2598 * reason for the failure in the error parameter. Pass #NULL for the
2599 * error parameter if you aren't interested in the reason for
2602 * Because this connection is shared, no user of the connection
2603 * may call dbus_connection_close(). However, when you are done with the
2604 * connection you should call dbus_connection_unref().
2606 * @note Prefer dbus_connection_open() to dbus_connection_open_private()
2607 * unless you have good reason; connections are expensive enough
2608 * that it's wasteful to create lots of connections to the same
2611 * @param address the address.
2612 * @param error address where an error can be returned.
2613 * @returns new connection, or #NULL on failure.
2616 dbus_connection_open (const char *address,
2619 DBusConnection *connection;
2621 _dbus_return_val_if_fail (address != NULL, NULL);
2622 _dbus_return_val_if_error_is_set (error, NULL);
2624 connection = _dbus_connection_open_internal (address,
2632 * Opens a new, dedicated connection to a remote address. Unlike
2633 * dbus_connection_open(), always creates a new connection.
2634 * This connection will not be saved or recycled by libdbus.
2636 * If the open fails, the function returns #NULL, and provides a
2637 * reason for the failure in the error parameter. Pass #NULL for the
2638 * error parameter if you aren't interested in the reason for
2641 * When you are done with this connection, you must
2642 * dbus_connection_close() to disconnect it,
2643 * and dbus_connection_unref() to free the connection object.
2645 * (The dbus_connection_close() can be skipped if the
2646 * connection is already known to be disconnected, for example
2647 * if you are inside a handler for the Disconnected signal.)
2649 * @note Prefer dbus_connection_open() to dbus_connection_open_private()
2650 * unless you have good reason; connections are expensive enough
2651 * that it's wasteful to create lots of connections to the same
2654 * @param address the address.
2655 * @param error address where an error can be returned.
2656 * @returns new connection, or #NULL on failure.
2659 dbus_connection_open_private (const char *address,
2662 DBusConnection *connection;
2664 _dbus_return_val_if_fail (address != NULL, NULL);
2665 _dbus_return_val_if_error_is_set (error, NULL);
2667 connection = _dbus_connection_open_internal (address,
2675 * Increments the reference count of a DBusConnection.
2677 * @param connection the connection.
2678 * @returns the connection.
2681 dbus_connection_ref (DBusConnection *connection)
2683 dbus_int32_t old_refcount;
2685 _dbus_return_val_if_fail (connection != NULL, NULL);
2686 _dbus_return_val_if_fail (connection->generation == _dbus_current_generation, NULL);
2687 old_refcount = _dbus_atomic_inc (&connection->refcount);
2688 _dbus_connection_trace_ref (connection, old_refcount, old_refcount + 1,
2695 free_outgoing_message (void *element,
2698 DBusMessage *message = element;
2699 DBusConnection *connection = data;
2701 _dbus_message_remove_counter (message, connection->outgoing_counter);
2702 dbus_message_unref (message);
2705 /* This is run without the mutex held, but after the last reference
2706 * to the connection has been dropped we should have no thread-related
2710 _dbus_connection_last_unref (DBusConnection *connection)
2714 _dbus_verbose ("Finalizing connection %p\n", connection);
2716 _dbus_assert (_dbus_atomic_get (&connection->refcount) == 0);
2718 /* You have to disconnect the connection before unref:ing it. Otherwise
2719 * you won't get the disconnected message.
2721 _dbus_assert (!_dbus_transport_get_is_connected (connection->transport));
2722 _dbus_assert (connection->server_guid == NULL);
2724 /* ---- We're going to call various application callbacks here, hope it doesn't break anything... */
2725 _dbus_object_tree_free_all_unlocked (connection->objects);
2727 dbus_connection_set_dispatch_status_function (connection, NULL, NULL, NULL);
2728 dbus_connection_set_wakeup_main_function (connection, NULL, NULL, NULL);
2729 dbus_connection_set_unix_user_function (connection, NULL, NULL, NULL);
2730 dbus_connection_set_windows_user_function (connection, NULL, NULL, NULL);
2732 _dbus_watch_list_free (connection->watches);
2733 connection->watches = NULL;
2735 _dbus_timeout_list_free (connection->timeouts);
2736 connection->timeouts = NULL;
2738 _dbus_data_slot_list_free (&connection->slot_list);
2740 link = _dbus_list_get_first_link (&connection->filter_list);
2741 while (link != NULL)
2743 DBusMessageFilter *filter = link->data;
2744 DBusList *next = _dbus_list_get_next_link (&connection->filter_list, link);
2746 filter->function = NULL;
2747 _dbus_message_filter_unref (filter); /* calls app callback */
2752 _dbus_list_clear (&connection->filter_list);
2754 /* ---- Done with stuff that invokes application callbacks */
2756 _dbus_object_tree_unref (connection->objects);
2758 _dbus_hash_table_unref (connection->pending_replies);
2759 connection->pending_replies = NULL;
2761 _dbus_list_clear (&connection->filter_list);
2763 _dbus_list_foreach (&connection->outgoing_messages,
2764 free_outgoing_message,
2766 _dbus_list_clear (&connection->outgoing_messages);
2768 _dbus_list_foreach (&connection->incoming_messages,
2769 (DBusForeachFunction) dbus_message_unref,
2771 _dbus_list_clear (&connection->incoming_messages);
2773 _dbus_counter_unref (connection->outgoing_counter);
2775 _dbus_transport_unref (connection->transport);
2777 if (connection->disconnect_message_link)
2779 DBusMessage *message = connection->disconnect_message_link->data;
2780 dbus_message_unref (message);
2781 _dbus_list_free_link (connection->disconnect_message_link);
2784 _dbus_condvar_free_at_location (&connection->dispatch_cond);
2785 _dbus_condvar_free_at_location (&connection->io_path_cond);
2787 _dbus_cmutex_free_at_location (&connection->io_path_mutex);
2788 _dbus_cmutex_free_at_location (&connection->dispatch_mutex);
2790 _dbus_rmutex_free_at_location (&connection->slot_mutex);
2792 _dbus_rmutex_free_at_location (&connection->mutex);
2794 dbus_free (connection);
2798 * Decrements the reference count of a DBusConnection, and finalizes
2799 * it if the count reaches zero.
2801 * Note: it is a bug to drop the last reference to a connection that
2802 * is still connected.
2804 * For shared connections, libdbus will own a reference
2805 * as long as the connection is connected, so you can know that either
2806 * you don't have the last reference, or it's OK to drop the last reference.
2807 * Most connections are shared. dbus_connection_open() and dbus_bus_get()
2808 * return shared connections.
2810 * For private connections, the creator of the connection must arrange for
2811 * dbus_connection_close() to be called prior to dropping the last reference.
2812 * Private connections come from dbus_connection_open_private() or dbus_bus_get_private().
2814 * @param connection the connection.
2817 dbus_connection_unref (DBusConnection *connection)
2819 dbus_int32_t old_refcount;
2821 _dbus_return_if_fail (connection != NULL);
2822 _dbus_return_if_fail (connection->generation == _dbus_current_generation);
2824 old_refcount = _dbus_atomic_dec (&connection->refcount);
2826 _dbus_connection_trace_ref (connection, old_refcount, old_refcount - 1,
2829 if (old_refcount == 1)
2831 #ifndef DBUS_DISABLE_CHECKS
2832 if (_dbus_transport_get_is_connected (connection->transport))
2834 _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",
2835 connection->shareable ?
2836 "Most likely, the application called unref() too many times and removed a reference belonging to libdbus, since this is a shared connection.\n" :
2837 "Most likely, the application was supposed to call dbus_connection_close(), since this is a private connection.\n");
2841 _dbus_connection_last_unref (connection);
2846 * Note that the transport can disconnect itself (other end drops us)
2847 * and in that case this function never runs. So this function must
2848 * not do anything more than disconnect the transport and update the
2851 * If the transport self-disconnects, then we assume someone will
2852 * dispatch the connection to cause the dispatch status update.
2855 _dbus_connection_close_possibly_shared_and_unlock (DBusConnection *connection)
2857 DBusDispatchStatus status;
2859 HAVE_LOCK_CHECK (connection);
2861 _dbus_verbose ("Disconnecting %p\n", connection);
2863 /* We need to ref because update_dispatch_status_and_unlock will unref
2864 * the connection if it was shared and libdbus was the only remaining
2867 _dbus_connection_ref_unlocked (connection);
2869 _dbus_transport_disconnect (connection->transport);
2871 /* This has the side effect of queuing the disconnect message link
2872 * (unless we don't have enough memory, possibly, so don't assert it).
2873 * After the disconnect message link is queued, dbus_bus_get/dbus_connection_open
2874 * should never again return the newly-disconnected connection.
2876 * However, we only unref the shared connection and exit_on_disconnect when
2877 * the disconnect message reaches the head of the message queue,
2878 * NOT when it's first queued.
2880 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2882 /* This calls out to user code */
2883 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2885 /* Could also call out to user code */
2886 dbus_connection_unref (connection);
2890 * Closes a private connection, so no further data can be sent or received.
2891 * This disconnects the transport (such as a socket) underlying the
2894 * Attempts to send messages after closing a connection are safe, but will result in
2895 * error replies generated locally in libdbus.
2897 * This function does not affect the connection's reference count. It's
2898 * safe to close a connection more than once; all calls after the
2899 * first do nothing. It's impossible to "reopen" a connection, a
2900 * new connection must be created. This function may result in a call
2901 * to the DBusDispatchStatusFunction set with
2902 * dbus_connection_set_dispatch_status_function(), as the disconnect
2903 * message it generates needs to be dispatched.
2905 * If a connection is dropped by the remote application, it will
2908 * You must close a connection prior to releasing the last reference to
2909 * the connection. If you dbus_connection_unref() for the last time
2910 * without closing the connection, the results are undefined; it
2911 * is a bug in your program and libdbus will try to print a warning.
2913 * You may not close a shared connection. Connections created with
2914 * dbus_connection_open() or dbus_bus_get() are shared.
2915 * These connections are owned by libdbus, and applications should
2916 * only unref them, never close them. Applications can know it is
2917 * safe to unref these connections because libdbus will be holding a
2918 * reference as long as the connection is open. Thus, either the
2919 * connection is closed and it is OK to drop the last reference,
2920 * or the connection is open and the app knows it does not have the
2923 * Connections created with dbus_connection_open_private() or
2924 * dbus_bus_get_private() are not kept track of or referenced by
2925 * libdbus. The creator of these connections is responsible for
2926 * calling dbus_connection_close() prior to releasing the last
2927 * reference, if the connection is not already disconnected.
2929 * @param connection the private (unshared) connection to close
2932 dbus_connection_close (DBusConnection *connection)
2934 _dbus_return_if_fail (connection != NULL);
2935 _dbus_return_if_fail (connection->generation == _dbus_current_generation);
2937 CONNECTION_LOCK (connection);
2939 #ifndef DBUS_DISABLE_CHECKS
2940 if (connection->shareable)
2942 CONNECTION_UNLOCK (connection);
2944 _dbus_warn_check_failed ("Applications must not close shared connections - see dbus_connection_close() docs. This is a bug in the application.\n");
2949 _dbus_connection_close_possibly_shared_and_unlock (connection);
2953 _dbus_connection_get_is_connected_unlocked (DBusConnection *connection)
2955 HAVE_LOCK_CHECK (connection);
2956 return _dbus_transport_get_is_connected (connection->transport);
2960 * Gets whether the connection is currently open. A connection may
2961 * become disconnected when the remote application closes its end, or
2962 * exits; a connection may also be disconnected with
2963 * dbus_connection_close().
2965 * There are not separate states for "closed" and "disconnected," the two
2966 * terms are synonymous. This function should really be called
2967 * get_is_open() but for historical reasons is not.
2969 * @param connection the connection.
2970 * @returns #TRUE if the connection is still alive.
2973 dbus_connection_get_is_connected (DBusConnection *connection)
2977 _dbus_return_val_if_fail (connection != NULL, FALSE);
2979 CONNECTION_LOCK (connection);
2980 res = _dbus_connection_get_is_connected_unlocked (connection);
2981 CONNECTION_UNLOCK (connection);
2987 * Gets whether the connection was authenticated. (Note that
2988 * if the connection was authenticated then disconnected,
2989 * this function still returns #TRUE)
2991 * @param connection the connection
2992 * @returns #TRUE if the connection was ever authenticated
2995 dbus_connection_get_is_authenticated (DBusConnection *connection)
2999 _dbus_return_val_if_fail (connection != NULL, FALSE);
3001 CONNECTION_LOCK (connection);
3002 res = _dbus_transport_try_to_authenticate (connection->transport);
3003 CONNECTION_UNLOCK (connection);
3009 * Gets whether the connection is not authenticated as a specific
3010 * user. If the connection is not authenticated, this function
3011 * returns #TRUE, and if it is authenticated but as an anonymous user,
3012 * it returns #TRUE. If it is authenticated as a specific user, then
3013 * this returns #FALSE. (Note that if the connection was authenticated
3014 * as anonymous then disconnected, this function still returns #TRUE.)
3016 * If the connection is not anonymous, you can use
3017 * dbus_connection_get_unix_user() and
3018 * dbus_connection_get_windows_user() to see who it's authorized as.
3020 * If you want to prevent non-anonymous authorization, use
3021 * dbus_server_set_auth_mechanisms() to remove the mechanisms that
3022 * allow proving user identity (i.e. only allow the ANONYMOUS
3025 * @param connection the connection
3026 * @returns #TRUE if not authenticated or authenticated as anonymous
3029 dbus_connection_get_is_anonymous (DBusConnection *connection)
3033 _dbus_return_val_if_fail (connection != NULL, FALSE);
3035 CONNECTION_LOCK (connection);
3036 res = _dbus_transport_get_is_anonymous (connection->transport);
3037 CONNECTION_UNLOCK (connection);
3043 * Gets the ID of the server address we are authenticated to, if this
3044 * connection is on the client side. If the connection is on the
3045 * server side, this will always return #NULL - use dbus_server_get_id()
3046 * to get the ID of your own server, if you are the server side.
3048 * If a client-side connection is not authenticated yet, the ID may be
3049 * available if it was included in the server address, but may not be
3050 * available. The only way to be sure the server ID is available
3051 * is to wait for authentication to complete.
3053 * In general, each mode of connecting to a given server will have
3054 * its own ID. So for example, if the session bus daemon is listening
3055 * on UNIX domain sockets and on TCP, then each of those modalities
3056 * will have its own server ID.
3058 * If you want an ID that identifies an entire session bus, look at
3059 * dbus_bus_get_id() instead (which is just a convenience wrapper
3060 * around the org.freedesktop.DBus.GetId method invoked on the bus).
3062 * You can also get a machine ID; see dbus_get_local_machine_id() to
3063 * get the machine you are on. There isn't a convenience wrapper, but
3064 * you can invoke org.freedesktop.DBus.Peer.GetMachineId on any peer
3065 * to get the machine ID on the other end.
3067 * The D-Bus specification describes the server ID and other IDs in a
3070 * @param connection the connection
3071 * @returns the server ID or #NULL if no memory or the connection is server-side
3074 dbus_connection_get_server_id (DBusConnection *connection)
3078 _dbus_return_val_if_fail (connection != NULL, NULL);
3080 CONNECTION_LOCK (connection);
3081 id = _dbus_strdup (_dbus_transport_get_server_id (connection->transport));
3082 CONNECTION_UNLOCK (connection);
3088 * Tests whether a certain type can be send via the connection. This
3089 * will always return TRUE for all types, with the exception of
3090 * DBUS_TYPE_UNIX_FD. The function will return TRUE for
3091 * DBUS_TYPE_UNIX_FD only on systems that know Unix file descriptors
3092 * and can send them via the chosen transport and when the remote side
3095 * This function can be used to do runtime checking for types that
3096 * might be unknown to the specific D-Bus client implementation
3097 * version, i.e. it will return FALSE for all types this
3098 * implementation does not know, including invalid or reserved types.
3100 * @param connection the connection
3101 * @param type the type to check
3102 * @returns TRUE if the type may be send via the connection
3105 dbus_connection_can_send_type(DBusConnection *connection,
3108 _dbus_return_val_if_fail (connection != NULL, FALSE);
3110 if (!dbus_type_is_valid (type))
3113 if (type != DBUS_TYPE_UNIX_FD)
3116 #ifdef HAVE_UNIX_FD_PASSING
3120 CONNECTION_LOCK(connection);
3121 b = _dbus_transport_can_pass_unix_fd(connection->transport);
3122 CONNECTION_UNLOCK(connection);
3132 * Set whether _exit() should be called when the connection receives a
3133 * disconnect signal. The call to _exit() comes after any handlers for
3134 * the disconnect signal run; handlers can cancel the exit by calling
3137 * By default, exit_on_disconnect is #FALSE; but for message bus
3138 * connections returned from dbus_bus_get() it will be toggled on
3141 * @param connection the connection
3142 * @param exit_on_disconnect #TRUE if _exit() should be called after a disconnect signal
3145 dbus_connection_set_exit_on_disconnect (DBusConnection *connection,
3146 dbus_bool_t exit_on_disconnect)
3148 _dbus_return_if_fail (connection != NULL);
3150 CONNECTION_LOCK (connection);
3151 connection->exit_on_disconnect = exit_on_disconnect != FALSE;
3152 CONNECTION_UNLOCK (connection);
3156 * Preallocates resources needed to send a message, allowing the message
3157 * to be sent without the possibility of memory allocation failure.
3158 * Allows apps to create a future guarantee that they can send
3159 * a message regardless of memory shortages.
3161 * @param connection the connection we're preallocating for.
3162 * @returns the preallocated resources, or #NULL
3164 DBusPreallocatedSend*
3165 dbus_connection_preallocate_send (DBusConnection *connection)
3167 DBusPreallocatedSend *preallocated;
3169 _dbus_return_val_if_fail (connection != NULL, NULL);
3171 CONNECTION_LOCK (connection);
3174 _dbus_connection_preallocate_send_unlocked (connection);
3176 CONNECTION_UNLOCK (connection);
3178 return preallocated;
3182 * Frees preallocated message-sending resources from
3183 * dbus_connection_preallocate_send(). Should only
3184 * be called if the preallocated resources are not used
3185 * to send a message.
3187 * @param connection the connection
3188 * @param preallocated the resources
3191 dbus_connection_free_preallocated_send (DBusConnection *connection,
3192 DBusPreallocatedSend *preallocated)
3194 _dbus_return_if_fail (connection != NULL);
3195 _dbus_return_if_fail (preallocated != NULL);
3196 _dbus_return_if_fail (connection == preallocated->connection);
3198 _dbus_list_free_link (preallocated->queue_link);
3199 _dbus_counter_unref (preallocated->counter_link->data);
3200 _dbus_list_free_link (preallocated->counter_link);
3201 dbus_free (preallocated);
3205 * Sends a message using preallocated resources. This function cannot fail.
3206 * It works identically to dbus_connection_send() in other respects.
3207 * Preallocated resources comes from dbus_connection_preallocate_send().
3208 * This function "consumes" the preallocated resources, they need not
3209 * be freed separately.
3211 * @param connection the connection
3212 * @param preallocated the preallocated resources
3213 * @param message the message to send
3214 * @param client_serial return location for client serial assigned to the message
3217 dbus_connection_send_preallocated (DBusConnection *connection,
3218 DBusPreallocatedSend *preallocated,
3219 DBusMessage *message,
3220 dbus_uint32_t *client_serial)
3222 _dbus_return_if_fail (connection != NULL);
3223 _dbus_return_if_fail (preallocated != NULL);
3224 _dbus_return_if_fail (message != NULL);
3225 _dbus_return_if_fail (preallocated->connection == connection);
3226 _dbus_return_if_fail (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_METHOD_CALL ||
3227 dbus_message_get_member (message) != NULL);
3228 _dbus_return_if_fail (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL ||
3229 (dbus_message_get_interface (message) != NULL &&
3230 dbus_message_get_member (message) != NULL));
3232 CONNECTION_LOCK (connection);
3234 #ifdef HAVE_UNIX_FD_PASSING
3236 if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3237 message->n_unix_fds > 0)
3239 /* Refuse to send fds on a connection that cannot handle
3240 them. Unfortunately we cannot return a proper error here, so
3241 the best we can is just return. */
3242 CONNECTION_UNLOCK (connection);
3248 _dbus_connection_send_preallocated_and_unlock (connection,
3250 message, client_serial);
3254 _dbus_connection_send_unlocked_no_update (DBusConnection *connection,
3255 DBusMessage *message,
3256 dbus_uint32_t *client_serial)
3258 DBusPreallocatedSend *preallocated;
3260 _dbus_assert (connection != NULL);
3261 _dbus_assert (message != NULL);
3263 preallocated = _dbus_connection_preallocate_send_unlocked (connection);
3264 if (preallocated == NULL)
3267 _dbus_connection_send_preallocated_unlocked_no_update (connection,
3275 * Adds a message to the outgoing message queue. Does not block to
3276 * write the message to the network; that happens asynchronously. To
3277 * force the message to be written, call dbus_connection_flush() however
3278 * it is not necessary to call dbus_connection_flush() by hand; the
3279 * message will be sent the next time the main loop is run.
3280 * dbus_connection_flush() should only be used, for example, if
3281 * the application was expected to exit before running the main loop.
3283 * Because this only queues the message, the only reason it can
3284 * fail is lack of memory. Even if the connection is disconnected,
3285 * no error will be returned. If the function fails due to lack of memory,
3286 * it returns #FALSE. The function will never fail for other reasons; even
3287 * if the connection is disconnected, you can queue an outgoing message,
3288 * though obviously it won't be sent.
3290 * The message serial is used by the remote application to send a
3291 * reply; see dbus_message_get_serial() or the D-Bus specification.
3293 * dbus_message_unref() can be called as soon as this method returns
3294 * as the message queue will hold its own ref until the message is sent.
3296 * @param connection the connection.
3297 * @param message the message to write.
3298 * @param serial return location for message serial, or #NULL if you don't care
3299 * @returns #TRUE on success.
3302 dbus_connection_send (DBusConnection *connection,
3303 DBusMessage *message,
3304 dbus_uint32_t *serial)
3306 _dbus_return_val_if_fail (connection != NULL, FALSE);
3307 _dbus_return_val_if_fail (message != NULL, FALSE);
3309 CONNECTION_LOCK (connection);
3311 #ifdef HAVE_UNIX_FD_PASSING
3313 if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3314 message->n_unix_fds > 0)
3316 /* Refuse to send fds on a connection that cannot handle
3317 them. Unfortunately we cannot return a proper error here, so
3318 the best we can is just return. */
3319 CONNECTION_UNLOCK (connection);
3325 return _dbus_connection_send_and_unlock (connection,
3331 reply_handler_timeout (void *data)
3333 DBusConnection *connection;
3334 DBusDispatchStatus status;
3335 DBusPendingCall *pending = data;
3337 connection = _dbus_pending_call_get_connection_and_lock (pending);
3338 _dbus_connection_ref_unlocked (connection);
3340 _dbus_pending_call_queue_timeout_error_unlocked (pending,
3342 _dbus_connection_remove_timeout_unlocked (connection,
3343 _dbus_pending_call_get_timeout_unlocked (pending));
3344 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
3346 _dbus_verbose ("middle\n");
3347 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3349 /* Unlocks, and calls out to user code */
3350 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3351 dbus_connection_unref (connection);
3357 * Queues a message to send, as with dbus_connection_send(),
3358 * but also returns a #DBusPendingCall used to receive a reply to the
3359 * message. If no reply is received in the given timeout_milliseconds,
3360 * this function expires the pending reply and generates a synthetic
3361 * error reply (generated in-process, not by the remote application)
3362 * indicating that a timeout occurred.
3364 * A #DBusPendingCall will see a reply message before any filters or
3365 * registered object path handlers. See dbus_connection_dispatch() for
3366 * details on when handlers are run.
3368 * A #DBusPendingCall will always see exactly one reply message,
3369 * unless it's cancelled with dbus_pending_call_cancel().
3371 * If #NULL is passed for the pending_return, the #DBusPendingCall
3372 * will still be generated internally, and used to track
3373 * the message reply timeout. This means a timeout error will
3374 * occur if no reply arrives, unlike with dbus_connection_send().
3376 * If -1 is passed for the timeout, a sane default timeout is used. -1
3377 * is typically the best value for the timeout for this reason, unless
3378 * you want a very short or very long timeout. If #DBUS_TIMEOUT_INFINITE is
3379 * passed for the timeout, no timeout will be set and the call will block
3382 * @warning if the connection is disconnected or you try to send Unix
3383 * file descriptors on a connection that does not support them, the
3384 * #DBusPendingCall will be set to #NULL, so be careful with this.
3386 * @param connection the connection
3387 * @param message the message to send
3388 * @param pending_return return location for a #DBusPendingCall
3389 * object, or #NULL if connection is disconnected or when you try to
3390 * send Unix file descriptors on a connection that does not support
3392 * @param timeout_milliseconds timeout in milliseconds, -1 (or
3393 * #DBUS_TIMEOUT_USE_DEFAULT) for default or #DBUS_TIMEOUT_INFINITE for no
3395 * @returns #FALSE if no memory, #TRUE otherwise.
3399 dbus_connection_send_with_reply (DBusConnection *connection,
3400 DBusMessage *message,
3401 DBusPendingCall **pending_return,
3402 int timeout_milliseconds)
3404 DBusPendingCall *pending;
3405 dbus_int32_t serial = -1;
3406 DBusDispatchStatus status;
3408 _dbus_return_val_if_fail (connection != NULL, FALSE);
3409 _dbus_return_val_if_fail (message != NULL, FALSE);
3410 _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
3413 *pending_return = NULL;
3415 CONNECTION_LOCK (connection);
3417 #ifdef HAVE_UNIX_FD_PASSING
3419 if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3420 message->n_unix_fds > 0)
3422 /* Refuse to send fds on a connection that cannot handle
3423 them. Unfortunately we cannot return a proper error here, so
3424 the best we can do is return TRUE but leave *pending_return
3426 CONNECTION_UNLOCK (connection);
3432 if (!_dbus_connection_get_is_connected_unlocked (connection))
3434 CONNECTION_UNLOCK (connection);
3439 pending = _dbus_pending_call_new_unlocked (connection,
3440 timeout_milliseconds,
3441 reply_handler_timeout);
3443 if (pending == NULL)
3445 CONNECTION_UNLOCK (connection);
3449 /* Assign a serial to the message */
3450 serial = dbus_message_get_serial (message);
3453 serial = _dbus_connection_get_next_client_serial (connection);
3454 dbus_message_set_serial (message, serial);
3457 if (!_dbus_pending_call_set_timeout_error_unlocked (pending, message, serial))
3460 /* Insert the serial in the pending replies hash;
3461 * hash takes a refcount on DBusPendingCall.
3462 * Also, add the timeout.
3464 if (!_dbus_connection_attach_pending_call_unlocked (connection,
3468 if (!_dbus_connection_send_unlocked_no_update (connection, message, NULL))
3470 _dbus_connection_detach_pending_call_and_unlock (connection,
3472 goto error_unlocked;
3476 *pending_return = pending; /* hand off refcount */
3479 _dbus_connection_detach_pending_call_unlocked (connection, pending);
3480 /* we still have a ref to the pending call in this case, we unref
3481 * after unlocking, below
3485 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3487 /* this calls out to user code */
3488 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3490 if (pending_return == NULL)
3491 dbus_pending_call_unref (pending);
3496 CONNECTION_UNLOCK (connection);
3498 dbus_pending_call_unref (pending);
3503 * Sends a message and blocks a certain time period while waiting for
3504 * a reply. This function does not reenter the main loop,
3505 * i.e. messages other than the reply are queued up but not
3506 * processed. This function is used to invoke method calls on a
3509 * If a normal reply is received, it is returned, and removed from the
3510 * incoming message queue. If it is not received, #NULL is returned
3511 * and the error is set to #DBUS_ERROR_NO_REPLY. If an error reply is
3512 * received, it is converted to a #DBusError and returned as an error,
3513 * then the reply message is deleted and #NULL is returned. If
3514 * something else goes wrong, result is set to whatever is
3515 * appropriate, such as #DBUS_ERROR_NO_MEMORY or
3516 * #DBUS_ERROR_DISCONNECTED.
3518 * @warning While this function blocks the calling thread will not be
3519 * processing the incoming message queue. This means you can end up
3520 * deadlocked if the application you're talking to needs you to reply
3521 * to a method. To solve this, either avoid the situation, block in a
3522 * separate thread from the main connection-dispatching thread, or use
3523 * dbus_pending_call_set_notify() to avoid blocking.
3525 * @param connection the connection
3526 * @param message the message to send
3527 * @param timeout_milliseconds timeout in milliseconds, -1 (or
3528 * #DBUS_TIMEOUT_USE_DEFAULT) for default or #DBUS_TIMEOUT_INFINITE for no
3530 * @param error return location for error message
3531 * @returns the message that is the reply or #NULL with an error code if the
3535 dbus_connection_send_with_reply_and_block (DBusConnection *connection,
3536 DBusMessage *message,
3537 int timeout_milliseconds,
3541 DBusPendingCall *pending;
3543 _dbus_return_val_if_fail (connection != NULL, NULL);
3544 _dbus_return_val_if_fail (message != NULL, NULL);
3545 _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, NULL);
3546 _dbus_return_val_if_error_is_set (error, NULL);
3548 #ifdef HAVE_UNIX_FD_PASSING
3550 CONNECTION_LOCK (connection);
3551 if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3552 message->n_unix_fds > 0)
3554 CONNECTION_UNLOCK (connection);
3555 dbus_set_error(error, DBUS_ERROR_FAILED, "Cannot send file descriptors on this connection.");
3558 CONNECTION_UNLOCK (connection);
3562 if (!dbus_connection_send_with_reply (connection, message,
3563 &pending, timeout_milliseconds))
3565 _DBUS_SET_OOM (error);
3569 if (pending == NULL)
3571 dbus_set_error (error, DBUS_ERROR_DISCONNECTED, "Connection is closed");
3575 dbus_pending_call_block (pending);
3577 reply = dbus_pending_call_steal_reply (pending);
3578 dbus_pending_call_unref (pending);
3580 /* call_complete_and_unlock() called from pending_call_block() should
3581 * always fill this in.
3583 _dbus_assert (reply != NULL);
3585 if (dbus_set_error_from_message (error, reply))
3587 dbus_message_unref (reply);
3595 * Blocks until the outgoing message queue is empty.
3596 * Assumes connection lock already held.
3598 * If you call this, you MUST call update_dispatch_status afterword...
3600 * @param connection the connection.
3602 static DBusDispatchStatus
3603 _dbus_connection_flush_unlocked (DBusConnection *connection)
3605 /* We have to specify DBUS_ITERATION_DO_READING here because
3606 * otherwise we could have two apps deadlock if they are both doing
3607 * a flush(), and the kernel buffers fill up. This could change the
3610 DBusDispatchStatus status;
3612 HAVE_LOCK_CHECK (connection);
3614 while (connection->n_outgoing > 0 &&
3615 _dbus_connection_get_is_connected_unlocked (connection))
3617 _dbus_verbose ("doing iteration in\n");
3618 HAVE_LOCK_CHECK (connection);
3619 _dbus_connection_do_iteration_unlocked (connection,
3621 DBUS_ITERATION_DO_READING |
3622 DBUS_ITERATION_DO_WRITING |
3623 DBUS_ITERATION_BLOCK,
3627 HAVE_LOCK_CHECK (connection);
3628 _dbus_verbose ("middle\n");
3629 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3631 HAVE_LOCK_CHECK (connection);
3636 * Blocks until the outgoing message queue is empty.
3638 * @param connection the connection.
3641 dbus_connection_flush (DBusConnection *connection)
3643 /* We have to specify DBUS_ITERATION_DO_READING here because
3644 * otherwise we could have two apps deadlock if they are both doing
3645 * a flush(), and the kernel buffers fill up. This could change the
3648 DBusDispatchStatus status;
3650 _dbus_return_if_fail (connection != NULL);
3652 CONNECTION_LOCK (connection);
3654 status = _dbus_connection_flush_unlocked (connection);
3656 HAVE_LOCK_CHECK (connection);
3657 /* Unlocks and calls out to user code */
3658 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3660 _dbus_verbose ("end\n");
3664 * This function implements dbus_connection_read_write_dispatch() and
3665 * dbus_connection_read_write() (they pass a different value for the
3666 * dispatch parameter).
3668 * @param connection the connection
3669 * @param timeout_milliseconds max time to block or -1 for infinite
3670 * @param dispatch dispatch new messages or leave them on the incoming queue
3671 * @returns #TRUE if the disconnect message has not been processed
3674 _dbus_connection_read_write_dispatch (DBusConnection *connection,
3675 int timeout_milliseconds,
3676 dbus_bool_t dispatch)
3678 DBusDispatchStatus dstatus;
3679 dbus_bool_t progress_possible;
3681 /* Need to grab a ref here in case we're a private connection and
3682 * the user drops the last ref in a handler we call; see bug
3683 * https://bugs.freedesktop.org/show_bug.cgi?id=15635
3685 dbus_connection_ref (connection);
3686 dstatus = dbus_connection_get_dispatch_status (connection);
3688 if (dispatch && dstatus == DBUS_DISPATCH_DATA_REMAINS)
3690 _dbus_verbose ("doing dispatch\n");
3691 dbus_connection_dispatch (connection);
3692 CONNECTION_LOCK (connection);
3694 else if (dstatus == DBUS_DISPATCH_NEED_MEMORY)
3696 _dbus_verbose ("pausing for memory\n");
3697 _dbus_memory_pause_based_on_timeout (timeout_milliseconds);
3698 CONNECTION_LOCK (connection);
3702 CONNECTION_LOCK (connection);
3703 if (_dbus_connection_get_is_connected_unlocked (connection))
3705 _dbus_verbose ("doing iteration\n");
3706 _dbus_connection_do_iteration_unlocked (connection,
3708 DBUS_ITERATION_DO_READING |
3709 DBUS_ITERATION_DO_WRITING |
3710 DBUS_ITERATION_BLOCK,
3711 timeout_milliseconds);
3715 HAVE_LOCK_CHECK (connection);
3716 /* If we can dispatch, we can make progress until the Disconnected message
3717 * has been processed; if we can only read/write, we can make progress
3718 * as long as the transport is open.
3721 progress_possible = connection->n_incoming != 0 ||
3722 connection->disconnect_message_link != NULL;
3724 progress_possible = _dbus_connection_get_is_connected_unlocked (connection);
3726 CONNECTION_UNLOCK (connection);
3728 dbus_connection_unref (connection);
3730 return progress_possible; /* TRUE if we can make more progress */
3735 * This function is intended for use with applications that don't want
3736 * to write a main loop and deal with #DBusWatch and #DBusTimeout. An
3737 * example usage would be:
3740 * while (dbus_connection_read_write_dispatch (connection, -1))
3741 * ; // empty loop body
3744 * In this usage you would normally have set up a filter function to look
3745 * at each message as it is dispatched. The loop terminates when the last
3746 * message from the connection (the disconnected signal) is processed.
3748 * If there are messages to dispatch, this function will
3749 * dbus_connection_dispatch() once, and return. If there are no
3750 * messages to dispatch, this function will block until it can read or
3751 * write, then read or write, then return.
3753 * The way to think of this function is that it either makes some sort
3754 * of progress, or it blocks. Note that, while it is blocked on I/O, it
3755 * cannot be interrupted (even by other threads), which makes this function
3756 * unsuitable for applications that do more than just react to received
3759 * The return value indicates whether the disconnect message has been
3760 * processed, NOT whether the connection is connected. This is
3761 * important because even after disconnecting, you want to process any
3762 * messages you received prior to the disconnect.
3764 * @param connection the connection
3765 * @param timeout_milliseconds max time to block or -1 for infinite
3766 * @returns #TRUE if the disconnect message has not been processed
3769 dbus_connection_read_write_dispatch (DBusConnection *connection,
3770 int timeout_milliseconds)
3772 _dbus_return_val_if_fail (connection != NULL, FALSE);
3773 _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
3774 return _dbus_connection_read_write_dispatch(connection, timeout_milliseconds, TRUE);
3778 * This function is intended for use with applications that don't want to
3779 * write a main loop and deal with #DBusWatch and #DBusTimeout. See also
3780 * dbus_connection_read_write_dispatch().
3782 * As long as the connection is open, this function will block until it can
3783 * read or write, then read or write, then return #TRUE.
3785 * If the connection is closed, the function returns #FALSE.
3787 * The return value indicates whether reading or writing is still
3788 * possible, i.e. whether the connection is connected.
3790 * Note that even after disconnection, messages may remain in the
3791 * incoming queue that need to be
3792 * processed. dbus_connection_read_write_dispatch() dispatches
3793 * incoming messages for you; with dbus_connection_read_write() you
3794 * have to arrange to drain the incoming queue yourself.
3796 * @param connection the connection
3797 * @param timeout_milliseconds max time to block or -1 for infinite
3798 * @returns #TRUE if still connected
3801 dbus_connection_read_write (DBusConnection *connection,
3802 int timeout_milliseconds)
3804 _dbus_return_val_if_fail (connection != NULL, FALSE);
3805 _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
3806 return _dbus_connection_read_write_dispatch(connection, timeout_milliseconds, FALSE);
3809 /* We need to call this anytime we pop the head of the queue, and then
3810 * update_dispatch_status_and_unlock needs to be called afterward
3811 * which will "process" the disconnected message and set
3812 * disconnected_message_processed.
3815 check_disconnected_message_arrived_unlocked (DBusConnection *connection,
3816 DBusMessage *head_of_queue)
3818 HAVE_LOCK_CHECK (connection);
3820 /* checking that the link is NULL is an optimization to avoid the is_signal call */
3821 if (connection->disconnect_message_link == NULL &&
3822 dbus_message_is_signal (head_of_queue,
3823 DBUS_INTERFACE_LOCAL,
3826 connection->disconnected_message_arrived = TRUE;
3831 * Returns the first-received message from the incoming message queue,
3832 * leaving it in the queue. If the queue is empty, returns #NULL.
3834 * The caller does not own a reference to the returned message, and
3835 * must either return it using dbus_connection_return_message() or
3836 * keep it after calling dbus_connection_steal_borrowed_message(). No
3837 * one can get at the message while its borrowed, so return it as
3838 * quickly as possible and don't keep a reference to it after
3839 * returning it. If you need to keep the message, make a copy of it.
3841 * dbus_connection_dispatch() will block if called while a borrowed
3842 * message is outstanding; only one piece of code can be playing with
3843 * the incoming queue at a time. This function will block if called
3844 * during a dbus_connection_dispatch().
3846 * @param connection the connection.
3847 * @returns next message in the incoming queue.
3850 dbus_connection_borrow_message (DBusConnection *connection)
3852 DBusDispatchStatus status;
3853 DBusMessage *message;
3855 _dbus_return_val_if_fail (connection != NULL, NULL);
3857 _dbus_verbose ("start\n");
3859 /* this is called for the side effect that it queues
3860 * up any messages from the transport
3862 status = dbus_connection_get_dispatch_status (connection);
3863 if (status != DBUS_DISPATCH_DATA_REMAINS)
3866 CONNECTION_LOCK (connection);
3868 _dbus_connection_acquire_dispatch (connection);
3870 /* While a message is outstanding, the dispatch lock is held */
3871 _dbus_assert (connection->message_borrowed == NULL);
3873 connection->message_borrowed = _dbus_list_get_first (&connection->incoming_messages);
3875 message = connection->message_borrowed;
3877 check_disconnected_message_arrived_unlocked (connection, message);
3879 /* Note that we KEEP the dispatch lock until the message is returned */
3880 if (message == NULL)
3881 _dbus_connection_release_dispatch (connection);
3883 CONNECTION_UNLOCK (connection);
3885 _dbus_message_trace_ref (message, -1, -1, "dbus_connection_borrow_message");
3887 /* We don't update dispatch status until it's returned or stolen */
3893 * Used to return a message after peeking at it using
3894 * dbus_connection_borrow_message(). Only called if
3895 * message from dbus_connection_borrow_message() was non-#NULL.
3897 * @param connection the connection
3898 * @param message the message from dbus_connection_borrow_message()
3901 dbus_connection_return_message (DBusConnection *connection,
3902 DBusMessage *message)
3904 DBusDispatchStatus status;
3906 _dbus_return_if_fail (connection != NULL);
3907 _dbus_return_if_fail (message != NULL);
3908 _dbus_return_if_fail (message == connection->message_borrowed);
3909 _dbus_return_if_fail (connection->dispatch_acquired);
3911 CONNECTION_LOCK (connection);
3913 _dbus_assert (message == connection->message_borrowed);
3915 connection->message_borrowed = NULL;
3917 _dbus_connection_release_dispatch (connection);
3919 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3920 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3922 _dbus_message_trace_ref (message, -1, -1, "dbus_connection_return_message");
3926 * Used to keep a message after peeking at it using
3927 * dbus_connection_borrow_message(). Before using this function, see
3928 * the caveats/warnings in the documentation for
3929 * dbus_connection_pop_message().
3931 * @param connection the connection
3932 * @param message the message from dbus_connection_borrow_message()
3935 dbus_connection_steal_borrowed_message (DBusConnection *connection,
3936 DBusMessage *message)
3938 DBusMessage *pop_message;
3939 DBusDispatchStatus status;
3941 _dbus_return_if_fail (connection != NULL);
3942 _dbus_return_if_fail (message != NULL);
3943 _dbus_return_if_fail (message == connection->message_borrowed);
3944 _dbus_return_if_fail (connection->dispatch_acquired);
3946 CONNECTION_LOCK (connection);
3948 _dbus_assert (message == connection->message_borrowed);
3950 pop_message = _dbus_list_pop_first (&connection->incoming_messages);
3951 _dbus_assert (message == pop_message);
3952 (void) pop_message; /* unused unless asserting */
3954 connection->n_incoming -= 1;
3956 _dbus_verbose ("Incoming message %p stolen from queue, %d incoming\n",
3957 message, connection->n_incoming);
3959 connection->message_borrowed = NULL;
3961 _dbus_connection_release_dispatch (connection);
3963 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3964 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3965 _dbus_message_trace_ref (message, -1, -1,
3966 "dbus_connection_steal_borrowed_message");
3969 /* See dbus_connection_pop_message, but requires the caller to own
3970 * the lock before calling. May drop the lock while running.
3973 _dbus_connection_pop_message_link_unlocked (DBusConnection *connection)
3975 HAVE_LOCK_CHECK (connection);
3977 _dbus_assert (connection->message_borrowed == NULL);
3979 if (connection->n_incoming > 0)
3983 link = _dbus_list_pop_first_link (&connection->incoming_messages);
3984 connection->n_incoming -= 1;
3986 _dbus_verbose ("Message %p (%s %s %s %s sig:'%s' serial:%u) removed from incoming queue %p, %d incoming\n",
3988 dbus_message_type_to_string (dbus_message_get_type (link->data)),
3989 dbus_message_get_path (link->data) ?
3990 dbus_message_get_path (link->data) :
3992 dbus_message_get_interface (link->data) ?
3993 dbus_message_get_interface (link->data) :
3995 dbus_message_get_member (link->data) ?
3996 dbus_message_get_member (link->data) :
3998 dbus_message_get_signature (link->data),
3999 dbus_message_get_serial (link->data),
4000 connection, connection->n_incoming);
4002 _dbus_message_trace_ref (link->data, -1, -1,
4003 "_dbus_connection_pop_message_link_unlocked");
4005 check_disconnected_message_arrived_unlocked (connection, link->data);
4013 /* See dbus_connection_pop_message, but requires the caller to own
4014 * the lock before calling. May drop the lock while running.
4017 _dbus_connection_pop_message_unlocked (DBusConnection *connection)
4021 HAVE_LOCK_CHECK (connection);
4023 link = _dbus_connection_pop_message_link_unlocked (connection);
4027 DBusMessage *message;
4029 message = link->data;
4031 _dbus_list_free_link (link);
4040 _dbus_connection_putback_message_link_unlocked (DBusConnection *connection,
4041 DBusList *message_link)
4043 HAVE_LOCK_CHECK (connection);
4045 _dbus_assert (message_link != NULL);
4046 /* You can't borrow a message while a link is outstanding */
4047 _dbus_assert (connection->message_borrowed == NULL);
4048 /* We had to have the dispatch lock across the pop/putback */
4049 _dbus_assert (connection->dispatch_acquired);
4051 _dbus_list_prepend_link (&connection->incoming_messages,
4053 connection->n_incoming += 1;
4055 _dbus_verbose ("Message %p (%s %s %s '%s') put back into queue %p, %d incoming\n",
4057 dbus_message_type_to_string (dbus_message_get_type (message_link->data)),
4058 dbus_message_get_interface (message_link->data) ?
4059 dbus_message_get_interface (message_link->data) :
4061 dbus_message_get_member (message_link->data) ?
4062 dbus_message_get_member (message_link->data) :
4064 dbus_message_get_signature (message_link->data),
4065 connection, connection->n_incoming);
4067 _dbus_message_trace_ref (message_link->data, -1, -1,
4068 "_dbus_connection_putback_message_link_unlocked");
4072 * Returns the first-received message from the incoming message queue,
4073 * removing it from the queue. The caller owns a reference to the
4074 * returned message. If the queue is empty, returns #NULL.
4076 * This function bypasses any message handlers that are registered,
4077 * and so using it is usually wrong. Instead, let the main loop invoke
4078 * dbus_connection_dispatch(). Popping messages manually is only
4079 * useful in very simple programs that don't share a #DBusConnection
4080 * with any libraries or other modules.
4082 * There is a lock that covers all ways of accessing the incoming message
4083 * queue, so dbus_connection_dispatch(), dbus_connection_pop_message(),
4084 * dbus_connection_borrow_message(), etc. will all block while one of the others
4085 * in the group is running.
4087 * @param connection the connection.
4088 * @returns next message in the incoming queue.
4091 dbus_connection_pop_message (DBusConnection *connection)
4093 DBusMessage *message;
4094 DBusDispatchStatus status;
4096 _dbus_verbose ("start\n");
4098 /* this is called for the side effect that it queues
4099 * up any messages from the transport
4101 status = dbus_connection_get_dispatch_status (connection);
4102 if (status != DBUS_DISPATCH_DATA_REMAINS)
4105 CONNECTION_LOCK (connection);
4106 _dbus_connection_acquire_dispatch (connection);
4107 HAVE_LOCK_CHECK (connection);
4109 message = _dbus_connection_pop_message_unlocked (connection);
4111 _dbus_verbose ("Returning popped message %p\n", message);
4113 _dbus_connection_release_dispatch (connection);
4115 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4116 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4122 * Acquire the dispatcher. This is a separate lock so the main
4123 * connection lock can be dropped to call out to application dispatch
4126 * @param connection the connection.
4129 _dbus_connection_acquire_dispatch (DBusConnection *connection)
4131 HAVE_LOCK_CHECK (connection);
4133 _dbus_connection_ref_unlocked (connection);
4134 CONNECTION_UNLOCK (connection);
4136 _dbus_verbose ("locking dispatch_mutex\n");
4137 _dbus_cmutex_lock (connection->dispatch_mutex);
4139 while (connection->dispatch_acquired)
4141 _dbus_verbose ("waiting for dispatch to be acquirable\n");
4142 _dbus_condvar_wait (connection->dispatch_cond,
4143 connection->dispatch_mutex);
4146 _dbus_assert (!connection->dispatch_acquired);
4148 connection->dispatch_acquired = TRUE;
4150 _dbus_verbose ("unlocking dispatch_mutex\n");
4151 _dbus_cmutex_unlock (connection->dispatch_mutex);
4153 CONNECTION_LOCK (connection);
4154 _dbus_connection_unref_unlocked (connection);
4158 * Release the dispatcher when you're done with it. Only call
4159 * after you've acquired the dispatcher. Wakes up at most one
4160 * thread currently waiting to acquire the dispatcher.
4162 * @param connection the connection.
4165 _dbus_connection_release_dispatch (DBusConnection *connection)
4167 HAVE_LOCK_CHECK (connection);
4169 _dbus_verbose ("locking dispatch_mutex\n");
4170 _dbus_cmutex_lock (connection->dispatch_mutex);
4172 _dbus_assert (connection->dispatch_acquired);
4174 connection->dispatch_acquired = FALSE;
4175 _dbus_condvar_wake_one (connection->dispatch_cond);
4177 _dbus_verbose ("unlocking dispatch_mutex\n");
4178 _dbus_cmutex_unlock (connection->dispatch_mutex);
4182 _dbus_connection_failed_pop (DBusConnection *connection,
4183 DBusList *message_link)
4185 _dbus_list_prepend_link (&connection->incoming_messages,
4187 connection->n_incoming += 1;
4190 /* Note this may be called multiple times since we don't track whether we already did it */
4192 notify_disconnected_unlocked (DBusConnection *connection)
4194 HAVE_LOCK_CHECK (connection);
4196 /* Set the weakref in dbus-bus.c to NULL, so nobody will get a disconnected
4197 * connection from dbus_bus_get(). We make the same guarantee for
4198 * dbus_connection_open() but in a different way since we don't want to
4199 * unref right here; we instead check for connectedness before returning
4200 * the connection from the hash.
4202 _dbus_bus_notify_shared_connection_disconnected_unlocked (connection);
4204 /* Dump the outgoing queue, we aren't going to be able to
4205 * send it now, and we'd like accessors like
4206 * dbus_connection_get_outgoing_size() to be accurate.
4208 if (connection->n_outgoing > 0)
4212 _dbus_verbose ("Dropping %d outgoing messages since we're disconnected\n",
4213 connection->n_outgoing);
4215 while ((link = _dbus_list_get_last_link (&connection->outgoing_messages)))
4217 _dbus_connection_message_sent_unlocked (connection, link->data);
4222 /* Note this may be called multiple times since we don't track whether we already did it */
4223 static DBusDispatchStatus
4224 notify_disconnected_and_dispatch_complete_unlocked (DBusConnection *connection)
4226 HAVE_LOCK_CHECK (connection);
4228 if (connection->disconnect_message_link != NULL)
4230 _dbus_verbose ("Sending disconnect message\n");
4232 /* If we have pending calls, queue their timeouts - we want the Disconnected
4233 * to be the last message, after these timeouts.
4235 connection_timeout_and_complete_all_pending_calls_unlocked (connection);
4237 /* We haven't sent the disconnect message already,
4238 * and all real messages have been queued up.
4240 _dbus_connection_queue_synthesized_message_link (connection,
4241 connection->disconnect_message_link);
4242 connection->disconnect_message_link = NULL;
4244 return DBUS_DISPATCH_DATA_REMAINS;
4247 return DBUS_DISPATCH_COMPLETE;
4250 static DBusDispatchStatus
4251 _dbus_connection_get_dispatch_status_unlocked (DBusConnection *connection)
4253 HAVE_LOCK_CHECK (connection);
4255 if (connection->n_incoming > 0)
4256 return DBUS_DISPATCH_DATA_REMAINS;
4257 else if (!_dbus_transport_queue_messages (connection->transport))
4258 return DBUS_DISPATCH_NEED_MEMORY;
4261 DBusDispatchStatus status;
4262 dbus_bool_t is_connected;
4264 status = _dbus_transport_get_dispatch_status (connection->transport);
4265 is_connected = _dbus_transport_get_is_connected (connection->transport);
4267 _dbus_verbose ("dispatch status = %s is_connected = %d\n",
4268 DISPATCH_STATUS_NAME (status), is_connected);
4272 /* It's possible this would be better done by having an explicit
4273 * notification from _dbus_transport_disconnect() that would
4274 * synchronously do this, instead of waiting for the next dispatch
4275 * status check. However, probably not good to change until it causes
4278 notify_disconnected_unlocked (connection);
4280 /* I'm not sure this is needed; the idea is that we want to
4281 * queue the Disconnected only after we've read all the
4282 * messages, but if we're disconnected maybe we are guaranteed
4283 * to have read them all ?
4285 if (status == DBUS_DISPATCH_COMPLETE)
4286 status = notify_disconnected_and_dispatch_complete_unlocked (connection);
4289 if (status != DBUS_DISPATCH_COMPLETE)
4291 else if (connection->n_incoming > 0)
4292 return DBUS_DISPATCH_DATA_REMAINS;
4294 return DBUS_DISPATCH_COMPLETE;
4299 _dbus_connection_update_dispatch_status_and_unlock (DBusConnection *connection,
4300 DBusDispatchStatus new_status)
4302 dbus_bool_t changed;
4303 DBusDispatchStatusFunction function;
4306 HAVE_LOCK_CHECK (connection);
4308 _dbus_connection_ref_unlocked (connection);
4310 changed = new_status != connection->last_dispatch_status;
4312 connection->last_dispatch_status = new_status;
4314 function = connection->dispatch_status_function;
4315 data = connection->dispatch_status_data;
4317 if (connection->disconnected_message_arrived &&
4318 !connection->disconnected_message_processed)
4320 connection->disconnected_message_processed = TRUE;
4322 /* this does an unref, but we have a ref
4323 * so we should not run the finalizer here
4326 connection_forget_shared_unlocked (connection);
4328 if (connection->exit_on_disconnect)
4330 CONNECTION_UNLOCK (connection);
4332 _dbus_verbose ("Exiting on Disconnected signal\n");
4334 _dbus_assert_not_reached ("Call to exit() returned");
4338 /* We drop the lock */
4339 CONNECTION_UNLOCK (connection);
4341 if (changed && function)
4343 _dbus_verbose ("Notifying of change to dispatch status of %p now %d (%s)\n",
4344 connection, new_status,
4345 DISPATCH_STATUS_NAME (new_status));
4346 (* function) (connection, new_status, data);
4349 dbus_connection_unref (connection);
4353 * Gets the current state of the incoming message queue.
4354 * #DBUS_DISPATCH_DATA_REMAINS indicates that the message queue
4355 * may contain messages. #DBUS_DISPATCH_COMPLETE indicates that the
4356 * incoming queue is empty. #DBUS_DISPATCH_NEED_MEMORY indicates that
4357 * there could be data, but we can't know for sure without more
4360 * To process the incoming message queue, use dbus_connection_dispatch()
4361 * or (in rare cases) dbus_connection_pop_message().
4363 * Note, #DBUS_DISPATCH_DATA_REMAINS really means that either we
4364 * have messages in the queue, or we have raw bytes buffered up
4365 * that need to be parsed. When these bytes are parsed, they
4366 * may not add up to an entire message. Thus, it's possible
4367 * to see a status of #DBUS_DISPATCH_DATA_REMAINS but not
4368 * have a message yet.
4370 * In particular this happens on initial connection, because all sorts
4371 * of authentication protocol stuff has to be parsed before the
4372 * first message arrives.
4374 * @param connection the connection.
4375 * @returns current dispatch status
4378 dbus_connection_get_dispatch_status (DBusConnection *connection)
4380 DBusDispatchStatus status;
4382 _dbus_return_val_if_fail (connection != NULL, DBUS_DISPATCH_COMPLETE);
4384 _dbus_verbose ("start\n");
4386 CONNECTION_LOCK (connection);
4388 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4390 CONNECTION_UNLOCK (connection);
4396 * Filter funtion for handling the Peer standard interface.
4398 static DBusHandlerResult
4399 _dbus_connection_peer_filter_unlocked_no_update (DBusConnection *connection,
4400 DBusMessage *message)
4402 dbus_bool_t sent = FALSE;
4403 DBusMessage *ret = NULL;
4404 DBusList *expire_link;
4406 if (connection->route_peer_messages && dbus_message_get_destination (message) != NULL)
4408 /* This means we're letting the bus route this message */
4409 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
4412 if (!dbus_message_has_interface (message, DBUS_INTERFACE_PEER))
4414 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
4417 /* Preallocate a linked-list link, so that if we need to dispose of a
4418 * message, we can attach it to the expired list */
4419 expire_link = _dbus_list_alloc_link (NULL);
4422 return DBUS_HANDLER_RESULT_NEED_MEMORY;
4424 if (dbus_message_is_method_call (message,
4425 DBUS_INTERFACE_PEER,
4428 ret = dbus_message_new_method_return (message);
4432 sent = _dbus_connection_send_unlocked_no_update (connection, ret, NULL);
4434 else if (dbus_message_is_method_call (message,
4435 DBUS_INTERFACE_PEER,
4439 DBusError error = DBUS_ERROR_INIT;
4441 if (!_dbus_string_init (&uuid))
4444 if (_dbus_get_local_machine_uuid_encoded (&uuid, &error))
4446 const char *v_STRING;
4448 ret = dbus_message_new_method_return (message);
4452 _dbus_string_free (&uuid);
4456 v_STRING = _dbus_string_get_const_data (&uuid);
4457 if (dbus_message_append_args (ret,
4458 DBUS_TYPE_STRING, &v_STRING,
4461 sent = _dbus_connection_send_unlocked_no_update (connection, ret, NULL);
4464 else if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
4466 dbus_error_free (&error);
4471 ret = dbus_message_new_error (message, error.name, error.message);
4472 dbus_error_free (&error);
4477 sent = _dbus_connection_send_unlocked_no_update (connection, ret,
4481 _dbus_string_free (&uuid);
4485 /* We need to bounce anything else with this interface, otherwise apps
4486 * could start extending the interface and when we added extensions
4487 * here to DBusConnection we'd break those apps.
4489 ret = dbus_message_new_error (message,
4490 DBUS_ERROR_UNKNOWN_METHOD,
4491 "Unknown method invoked on org.freedesktop.DBus.Peer interface");
4495 sent = _dbus_connection_send_unlocked_no_update (connection, ret, NULL);
4501 _dbus_list_free_link (expire_link);
4505 /* It'll be safe to unref the reply when we unlock */
4506 expire_link->data = ret;
4507 _dbus_list_prepend_link (&connection->expired_messages, expire_link);
4511 return DBUS_HANDLER_RESULT_NEED_MEMORY;
4513 return DBUS_HANDLER_RESULT_HANDLED;
4517 * Processes all builtin filter functions
4519 * If the spec specifies a standard interface
4520 * they should be processed from this method
4522 static DBusHandlerResult
4523 _dbus_connection_run_builtin_filters_unlocked_no_update (DBusConnection *connection,
4524 DBusMessage *message)
4526 /* We just run one filter for now but have the option to run more
4527 if the spec calls for it in the future */
4529 return _dbus_connection_peer_filter_unlocked_no_update (connection, message);
4533 * Processes any incoming data.
4535 * If there's incoming raw data that has not yet been parsed, it is
4536 * parsed, which may or may not result in adding messages to the
4539 * The incoming data buffer is filled when the connection reads from
4540 * its underlying transport (such as a socket). Reading usually
4541 * happens in dbus_watch_handle() or dbus_connection_read_write().
4543 * If there are complete messages in the incoming queue,
4544 * dbus_connection_dispatch() removes one message from the queue and
4545 * processes it. Processing has three steps.
4547 * First, any method replies are passed to #DBusPendingCall or
4548 * dbus_connection_send_with_reply_and_block() in order to
4549 * complete the pending method call.
4551 * Second, any filters registered with dbus_connection_add_filter()
4552 * are run. If any filter returns #DBUS_HANDLER_RESULT_HANDLED
4553 * then processing stops after that filter.
4555 * Third, if the message is a method call it is forwarded to
4556 * any registered object path handlers added with
4557 * dbus_connection_register_object_path() or
4558 * dbus_connection_register_fallback().
4560 * A single call to dbus_connection_dispatch() will process at most
4561 * one message; it will not clear the entire message queue.
4563 * Be careful about calling dbus_connection_dispatch() from inside a
4564 * message handler, i.e. calling dbus_connection_dispatch()
4565 * recursively. If threads have been initialized with a recursive
4566 * mutex function, then this will not deadlock; however, it can
4567 * certainly confuse your application.
4569 * @todo some FIXME in here about handling DBUS_HANDLER_RESULT_NEED_MEMORY
4571 * @param connection the connection
4572 * @returns dispatch status, see dbus_connection_get_dispatch_status()
4575 dbus_connection_dispatch (DBusConnection *connection)
4577 DBusMessage *message;
4578 DBusList *link, *filter_list_copy, *message_link;
4579 DBusHandlerResult result;
4580 DBusPendingCall *pending;
4581 dbus_int32_t reply_serial;
4582 DBusDispatchStatus status;
4583 dbus_bool_t found_object;
4585 _dbus_return_val_if_fail (connection != NULL, DBUS_DISPATCH_COMPLETE);
4587 _dbus_verbose ("\n");
4589 CONNECTION_LOCK (connection);
4590 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4591 if (status != DBUS_DISPATCH_DATA_REMAINS)
4593 /* unlocks and calls out to user code */
4594 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4598 /* We need to ref the connection since the callback could potentially
4599 * drop the last ref to it
4601 _dbus_connection_ref_unlocked (connection);
4603 _dbus_connection_acquire_dispatch (connection);
4604 HAVE_LOCK_CHECK (connection);
4606 message_link = _dbus_connection_pop_message_link_unlocked (connection);
4607 if (message_link == NULL)
4609 /* another thread dispatched our stuff */
4611 _dbus_verbose ("another thread dispatched message (during acquire_dispatch above)\n");
4613 _dbus_connection_release_dispatch (connection);
4615 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4617 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4619 dbus_connection_unref (connection);
4624 message = message_link->data;
4626 _dbus_verbose (" dispatching message %p (%s %s %s '%s')\n",
4628 dbus_message_type_to_string (dbus_message_get_type (message)),
4629 dbus_message_get_interface (message) ?
4630 dbus_message_get_interface (message) :
4632 dbus_message_get_member (message) ?
4633 dbus_message_get_member (message) :
4635 dbus_message_get_signature (message));
4637 result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
4639 /* Pending call handling must be first, because if you do
4640 * dbus_connection_send_with_reply_and_block() or
4641 * dbus_pending_call_block() then no handlers/filters will be run on
4642 * the reply. We want consistent semantics in the case where we
4643 * dbus_connection_dispatch() the reply.
4646 reply_serial = dbus_message_get_reply_serial (message);
4647 pending = _dbus_hash_table_lookup_int (connection->pending_replies,
4651 _dbus_verbose ("Dispatching a pending reply\n");
4652 complete_pending_call_and_unlock (connection, pending, message);
4653 pending = NULL; /* it's probably unref'd */
4655 CONNECTION_LOCK (connection);
4656 _dbus_verbose ("pending call completed in dispatch\n");
4657 result = DBUS_HANDLER_RESULT_HANDLED;
4661 result = _dbus_connection_run_builtin_filters_unlocked_no_update (connection, message);
4662 if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
4665 if (!_dbus_list_copy (&connection->filter_list, &filter_list_copy))
4667 _dbus_connection_release_dispatch (connection);
4668 HAVE_LOCK_CHECK (connection);
4670 _dbus_connection_failed_pop (connection, message_link);
4672 /* unlocks and calls user code */
4673 _dbus_connection_update_dispatch_status_and_unlock (connection,
4674 DBUS_DISPATCH_NEED_MEMORY);
4675 dbus_connection_unref (connection);
4677 return DBUS_DISPATCH_NEED_MEMORY;
4680 _dbus_list_foreach (&filter_list_copy,
4681 (DBusForeachFunction)_dbus_message_filter_ref,
4684 /* We're still protected from dispatch() reentrancy here
4685 * since we acquired the dispatcher
4687 CONNECTION_UNLOCK (connection);
4689 link = _dbus_list_get_first_link (&filter_list_copy);
4690 while (link != NULL)
4692 DBusMessageFilter *filter = link->data;
4693 DBusList *next = _dbus_list_get_next_link (&filter_list_copy, link);
4695 if (filter->function == NULL)
4697 _dbus_verbose (" filter was removed in a callback function\n");
4702 _dbus_verbose (" running filter on message %p\n", message);
4703 result = (* filter->function) (connection, message, filter->user_data);
4705 if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
4711 _dbus_list_foreach (&filter_list_copy,
4712 (DBusForeachFunction)_dbus_message_filter_unref,
4714 _dbus_list_clear (&filter_list_copy);
4716 CONNECTION_LOCK (connection);
4718 if (result == DBUS_HANDLER_RESULT_NEED_MEMORY)
4720 _dbus_verbose ("No memory\n");
4723 else if (result == DBUS_HANDLER_RESULT_HANDLED)
4725 _dbus_verbose ("filter handled message in dispatch\n");
4729 /* We're still protected from dispatch() reentrancy here
4730 * since we acquired the dispatcher
4732 _dbus_verbose (" running object path dispatch on message %p (%s %s %s '%s')\n",
4734 dbus_message_type_to_string (dbus_message_get_type (message)),
4735 dbus_message_get_interface (message) ?
4736 dbus_message_get_interface (message) :
4738 dbus_message_get_member (message) ?
4739 dbus_message_get_member (message) :
4741 dbus_message_get_signature (message));
4743 HAVE_LOCK_CHECK (connection);
4744 result = _dbus_object_tree_dispatch_and_unlock (connection->objects,
4748 CONNECTION_LOCK (connection);
4750 if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
4752 _dbus_verbose ("object tree handled message in dispatch\n");
4756 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_CALL)
4760 DBusPreallocatedSend *preallocated;
4761 DBusList *expire_link;
4763 _dbus_verbose (" sending error %s\n",
4764 DBUS_ERROR_UNKNOWN_METHOD);
4766 if (!_dbus_string_init (&str))
4768 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4769 _dbus_verbose ("no memory for error string in dispatch\n");
4773 if (!_dbus_string_append_printf (&str,
4774 "Method \"%s\" with signature \"%s\" on interface \"%s\" doesn't exist\n",
4775 dbus_message_get_member (message),
4776 dbus_message_get_signature (message),
4777 dbus_message_get_interface (message)))
4779 _dbus_string_free (&str);
4780 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4781 _dbus_verbose ("no memory for error string in dispatch\n");
4785 reply = dbus_message_new_error (message,
4786 found_object ? DBUS_ERROR_UNKNOWN_METHOD : DBUS_ERROR_UNKNOWN_OBJECT,
4787 _dbus_string_get_const_data (&str));
4788 _dbus_string_free (&str);
4792 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4793 _dbus_verbose ("no memory for error reply in dispatch\n");
4797 expire_link = _dbus_list_alloc_link (reply);
4799 if (expire_link == NULL)
4801 dbus_message_unref (reply);
4802 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4803 _dbus_verbose ("no memory for error send in dispatch\n");
4807 preallocated = _dbus_connection_preallocate_send_unlocked (connection);
4809 if (preallocated == NULL)
4811 _dbus_list_free_link (expire_link);
4812 /* It's OK that this is finalized, because it hasn't been seen by
4813 * anything that could attach user callbacks */
4814 dbus_message_unref (reply);
4815 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4816 _dbus_verbose ("no memory for error send in dispatch\n");
4820 _dbus_connection_send_preallocated_unlocked_no_update (connection, preallocated,
4822 /* reply will be freed when we release the lock */
4823 _dbus_list_prepend_link (&connection->expired_messages, expire_link);
4825 result = DBUS_HANDLER_RESULT_HANDLED;
4828 _dbus_verbose (" done dispatching %p (%s %s %s '%s') on connection %p\n", message,
4829 dbus_message_type_to_string (dbus_message_get_type (message)),
4830 dbus_message_get_interface (message) ?
4831 dbus_message_get_interface (message) :
4833 dbus_message_get_member (message) ?
4834 dbus_message_get_member (message) :
4836 dbus_message_get_signature (message),
4840 if (result == DBUS_HANDLER_RESULT_NEED_MEMORY)
4842 _dbus_verbose ("out of memory\n");
4844 /* Put message back, and we'll start over.
4845 * Yes this means handlers must be idempotent if they
4846 * don't return HANDLED; c'est la vie.
4848 _dbus_connection_putback_message_link_unlocked (connection,
4850 /* now we don't want to free them */
4851 message_link = NULL;
4856 _dbus_verbose (" ... done dispatching\n");
4859 _dbus_connection_release_dispatch (connection);
4860 HAVE_LOCK_CHECK (connection);
4862 if (message != NULL)
4864 /* We don't want this message to count in maximum message limits when
4865 * computing the dispatch status, below. We have to drop the lock
4866 * temporarily, because finalizing a message can trigger callbacks.
4868 * We have a reference to the connection, and we don't use any cached
4869 * pointers to the connection's internals below this point, so it should
4870 * be safe to drop the lock and take it back. */
4871 CONNECTION_UNLOCK (connection);
4872 dbus_message_unref (message);
4873 CONNECTION_LOCK (connection);
4876 if (message_link != NULL)
4877 _dbus_list_free_link (message_link);
4879 _dbus_verbose ("before final status update\n");
4880 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4882 /* unlocks and calls user code */
4883 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4885 dbus_connection_unref (connection);
4891 * Sets the watch functions for the connection. These functions are
4892 * responsible for making the application's main loop aware of file
4893 * descriptors that need to be monitored for events, using select() or
4894 * poll(). When using Qt, typically the DBusAddWatchFunction would
4895 * create a QSocketNotifier. When using GLib, the DBusAddWatchFunction
4896 * could call g_io_add_watch(), or could be used as part of a more
4897 * elaborate GSource. Note that when a watch is added, it may
4900 * The DBusWatchToggledFunction notifies the application that the
4901 * watch has been enabled or disabled. Call dbus_watch_get_enabled()
4902 * to check this. A disabled watch should have no effect, and enabled
4903 * watch should be added to the main loop. This feature is used
4904 * instead of simply adding/removing the watch because
4905 * enabling/disabling can be done without memory allocation. The
4906 * toggled function may be NULL if a main loop re-queries
4907 * dbus_watch_get_enabled() every time anyway.
4909 * The DBusWatch can be queried for the file descriptor to watch using
4910 * dbus_watch_get_unix_fd() or dbus_watch_get_socket(), and for the
4911 * events to watch for using dbus_watch_get_flags(). The flags
4912 * returned by dbus_watch_get_flags() will only contain
4913 * DBUS_WATCH_READABLE and DBUS_WATCH_WRITABLE, never
4914 * DBUS_WATCH_HANGUP or DBUS_WATCH_ERROR; all watches implicitly
4915 * include a watch for hangups, errors, and other exceptional
4918 * Once a file descriptor becomes readable or writable, or an exception
4919 * occurs, dbus_watch_handle() should be called to
4920 * notify the connection of the file descriptor's condition.
4922 * dbus_watch_handle() cannot be called during the
4923 * DBusAddWatchFunction, as the connection will not be ready to handle
4926 * It is not allowed to reference a DBusWatch after it has been passed
4927 * to remove_function.
4929 * If #FALSE is returned due to lack of memory, the failure may be due
4930 * to a #FALSE return from the new add_function. If so, the
4931 * add_function may have been called successfully one or more times,
4932 * but the remove_function will also have been called to remove any
4933 * successful adds. i.e. if #FALSE is returned the net result
4934 * should be that dbus_connection_set_watch_functions() has no effect,
4935 * but the add_function and remove_function may have been called.
4937 * @note The thread lock on DBusConnection is held while
4938 * watch functions are invoked, so inside these functions you
4939 * may not invoke any methods on DBusConnection or it will deadlock.
4940 * See the comments in the code or http://lists.freedesktop.org/archives/dbus/2007-July/tread.html#8144
4941 * if you encounter this issue and want to attempt writing a patch.
4943 * @param connection the connection.
4944 * @param add_function function to begin monitoring a new descriptor.
4945 * @param remove_function function to stop monitoring a descriptor.
4946 * @param toggled_function function to notify of enable/disable
4947 * @param data data to pass to add_function and remove_function.
4948 * @param free_data_function function to be called to free the data.
4949 * @returns #FALSE on failure (no memory)
4952 dbus_connection_set_watch_functions (DBusConnection *connection,
4953 DBusAddWatchFunction add_function,
4954 DBusRemoveWatchFunction remove_function,
4955 DBusWatchToggledFunction toggled_function,
4957 DBusFreeFunction free_data_function)
4961 _dbus_return_val_if_fail (connection != NULL, FALSE);
4963 CONNECTION_LOCK (connection);
4965 retval = _dbus_watch_list_set_functions (connection->watches,
4966 add_function, remove_function,
4968 data, free_data_function);
4970 CONNECTION_UNLOCK (connection);
4976 * Sets the timeout functions for the connection. These functions are
4977 * responsible for making the application's main loop aware of timeouts.
4978 * When using Qt, typically the DBusAddTimeoutFunction would create a
4979 * QTimer. When using GLib, the DBusAddTimeoutFunction would call
4982 * The DBusTimeoutToggledFunction notifies the application that the
4983 * timeout has been enabled or disabled. Call
4984 * dbus_timeout_get_enabled() to check this. A disabled timeout should
4985 * have no effect, and enabled timeout should be added to the main
4986 * loop. This feature is used instead of simply adding/removing the
4987 * timeout because enabling/disabling can be done without memory
4988 * allocation. With Qt, QTimer::start() and QTimer::stop() can be used
4989 * to enable and disable. The toggled function may be NULL if a main
4990 * loop re-queries dbus_timeout_get_enabled() every time anyway.
4991 * Whenever a timeout is toggled, its interval may change.
4993 * The DBusTimeout can be queried for the timer interval using
4994 * dbus_timeout_get_interval(). dbus_timeout_handle() should be called
4995 * repeatedly, each time the interval elapses, starting after it has
4996 * elapsed once. The timeout stops firing when it is removed with the
4997 * given remove_function. The timer interval may change whenever the
4998 * timeout is added, removed, or toggled.
5000 * @note The thread lock on DBusConnection is held while
5001 * timeout functions are invoked, so inside these functions you
5002 * may not invoke any methods on DBusConnection or it will deadlock.
5003 * See the comments in the code or http://lists.freedesktop.org/archives/dbus/2007-July/thread.html#8144
5004 * if you encounter this issue and want to attempt writing a patch.
5006 * @param connection the connection.
5007 * @param add_function function to add a timeout.
5008 * @param remove_function function to remove a timeout.
5009 * @param toggled_function function to notify of enable/disable
5010 * @param data data to pass to add_function and remove_function.
5011 * @param free_data_function function to be called to free the data.
5012 * @returns #FALSE on failure (no memory)
5015 dbus_connection_set_timeout_functions (DBusConnection *connection,
5016 DBusAddTimeoutFunction add_function,
5017 DBusRemoveTimeoutFunction remove_function,
5018 DBusTimeoutToggledFunction toggled_function,
5020 DBusFreeFunction free_data_function)
5024 _dbus_return_val_if_fail (connection != NULL, FALSE);
5026 CONNECTION_LOCK (connection);
5028 retval = _dbus_timeout_list_set_functions (connection->timeouts,
5029 add_function, remove_function,
5031 data, free_data_function);
5033 CONNECTION_UNLOCK (connection);
5039 * Sets the mainloop wakeup function for the connection. This function
5040 * is responsible for waking up the main loop (if its sleeping in
5041 * another thread) when some some change has happened to the
5042 * connection that the mainloop needs to reconsider (e.g. a message
5043 * has been queued for writing). When using Qt, this typically
5044 * results in a call to QEventLoop::wakeUp(). When using GLib, it
5045 * would call g_main_context_wakeup().
5047 * @param connection the connection.
5048 * @param wakeup_main_function function to wake up the mainloop
5049 * @param data data to pass wakeup_main_function
5050 * @param free_data_function function to be called to free the data.
5053 dbus_connection_set_wakeup_main_function (DBusConnection *connection,
5054 DBusWakeupMainFunction wakeup_main_function,
5056 DBusFreeFunction free_data_function)
5059 DBusFreeFunction old_free_data;
5061 _dbus_return_if_fail (connection != NULL);
5063 CONNECTION_LOCK (connection);
5064 old_data = connection->wakeup_main_data;
5065 old_free_data = connection->free_wakeup_main_data;
5067 connection->wakeup_main_function = wakeup_main_function;
5068 connection->wakeup_main_data = data;
5069 connection->free_wakeup_main_data = free_data_function;
5071 CONNECTION_UNLOCK (connection);
5073 /* Callback outside the lock */
5075 (*old_free_data) (old_data);
5079 * Set a function to be invoked when the dispatch status changes.
5080 * If the dispatch status is #DBUS_DISPATCH_DATA_REMAINS, then
5081 * dbus_connection_dispatch() needs to be called to process incoming
5082 * messages. However, dbus_connection_dispatch() MUST NOT BE CALLED
5083 * from inside the DBusDispatchStatusFunction. Indeed, almost
5084 * any reentrancy in this function is a bad idea. Instead,
5085 * the DBusDispatchStatusFunction should simply save an indication
5086 * that messages should be dispatched later, when the main loop
5089 * If you don't set a dispatch status function, you have to be sure to
5090 * dispatch on every iteration of your main loop, especially if
5091 * dbus_watch_handle() or dbus_timeout_handle() were called.
5093 * @param connection the connection
5094 * @param function function to call on dispatch status changes
5095 * @param data data for function
5096 * @param free_data_function free the function data
5099 dbus_connection_set_dispatch_status_function (DBusConnection *connection,
5100 DBusDispatchStatusFunction function,
5102 DBusFreeFunction free_data_function)
5105 DBusFreeFunction old_free_data;
5107 _dbus_return_if_fail (connection != NULL);
5109 CONNECTION_LOCK (connection);
5110 old_data = connection->dispatch_status_data;
5111 old_free_data = connection->free_dispatch_status_data;
5113 connection->dispatch_status_function = function;
5114 connection->dispatch_status_data = data;
5115 connection->free_dispatch_status_data = free_data_function;
5117 CONNECTION_UNLOCK (connection);
5119 /* Callback outside the lock */
5121 (*old_free_data) (old_data);
5125 * Get the UNIX file descriptor of the connection, if any. This can
5126 * be used for SELinux access control checks with getpeercon() for
5127 * example. DO NOT read or write to the file descriptor, or try to
5128 * select() on it; use DBusWatch for main loop integration. Not all
5129 * connections will have a file descriptor. So for adding descriptors
5130 * to the main loop, use dbus_watch_get_unix_fd() and so forth.
5132 * If the connection is socket-based, you can also use
5133 * dbus_connection_get_socket(), which will work on Windows too.
5134 * This function always fails on Windows.
5136 * Right now the returned descriptor is always a socket, but
5137 * that is not guaranteed.
5139 * @param connection the connection
5140 * @param fd return location for the file descriptor.
5141 * @returns #TRUE if fd is successfully obtained.
5144 dbus_connection_get_unix_fd (DBusConnection *connection,
5147 _dbus_return_val_if_fail (connection != NULL, FALSE);
5148 _dbus_return_val_if_fail (connection->transport != NULL, FALSE);
5151 /* FIXME do this on a lower level */
5155 return dbus_connection_get_socket(connection, fd);
5159 * Gets the underlying Windows or UNIX socket file descriptor
5160 * of the connection, if any. DO NOT read or write to the file descriptor, or try to
5161 * select() on it; use DBusWatch for main loop integration. Not all
5162 * connections will have a socket. So for adding descriptors
5163 * to the main loop, use dbus_watch_get_socket() and so forth.
5165 * If the connection is not socket-based, this function will return FALSE,
5166 * even if the connection does have a file descriptor of some kind.
5167 * i.e. this function always returns specifically a socket file descriptor.
5169 * @param connection the connection
5170 * @param fd return location for the file descriptor.
5171 * @returns #TRUE if fd is successfully obtained.
5174 dbus_connection_get_socket(DBusConnection *connection,
5178 DBusSocket s = DBUS_SOCKET_INIT;
5180 _dbus_return_val_if_fail (connection != NULL, FALSE);
5181 _dbus_return_val_if_fail (connection->transport != NULL, FALSE);
5183 CONNECTION_LOCK (connection);
5185 retval = _dbus_transport_get_socket_fd (connection->transport, &s);
5189 *fd = _dbus_socket_get_int (s);
5192 CONNECTION_UNLOCK (connection);
5199 * Gets the UNIX user ID of the connection if known. Returns #TRUE if
5200 * the uid is filled in. Always returns #FALSE on non-UNIX platforms
5201 * for now, though in theory someone could hook Windows to NIS or
5202 * something. Always returns #FALSE prior to authenticating the
5205 * The UID is only read by servers from clients; clients can't usually
5206 * get the UID of servers, because servers do not authenticate to
5207 * clients. The returned UID is the UID the connection authenticated
5210 * The message bus is a server and the apps connecting to the bus
5213 * You can ask the bus to tell you the UID of another connection though
5214 * if you like; this is done with dbus_bus_get_unix_user().
5216 * @param connection the connection
5217 * @param uid return location for the user ID
5218 * @returns #TRUE if uid is filled in with a valid user ID
5221 dbus_connection_get_unix_user (DBusConnection *connection,
5226 _dbus_return_val_if_fail (connection != NULL, FALSE);
5227 _dbus_return_val_if_fail (uid != NULL, FALSE);
5229 CONNECTION_LOCK (connection);
5231 if (!_dbus_transport_try_to_authenticate (connection->transport))
5234 result = _dbus_transport_get_unix_user (connection->transport,
5238 _dbus_assert (!result);
5241 CONNECTION_UNLOCK (connection);
5247 * Gets the process ID of the connection if any.
5248 * Returns #TRUE if the pid is filled in.
5249 * Always returns #FALSE prior to authenticating the
5252 * @param connection the connection
5253 * @param pid return location for the process ID
5254 * @returns #TRUE if uid is filled in with a valid process ID
5257 dbus_connection_get_unix_process_id (DBusConnection *connection,
5262 _dbus_return_val_if_fail (connection != NULL, FALSE);
5263 _dbus_return_val_if_fail (pid != NULL, FALSE);
5265 CONNECTION_LOCK (connection);
5267 if (!_dbus_transport_try_to_authenticate (connection->transport))
5270 result = _dbus_transport_get_unix_process_id (connection->transport,
5273 CONNECTION_UNLOCK (connection);
5279 * Gets the ADT audit data of the connection if any.
5280 * Returns #TRUE if the structure pointer is returned.
5281 * Always returns #FALSE prior to authenticating the
5284 * @param connection the connection
5285 * @param data return location for audit data
5286 * @param data_size return location for length of audit data
5287 * @returns #TRUE if audit data is filled in with a valid ucred pointer
5290 dbus_connection_get_adt_audit_session_data (DBusConnection *connection,
5292 dbus_int32_t *data_size)
5296 _dbus_return_val_if_fail (connection != NULL, FALSE);
5297 _dbus_return_val_if_fail (data != NULL, FALSE);
5298 _dbus_return_val_if_fail (data_size != NULL, FALSE);
5300 CONNECTION_LOCK (connection);
5302 if (!_dbus_transport_try_to_authenticate (connection->transport))
5305 result = _dbus_transport_get_adt_audit_session_data (connection->transport,
5308 CONNECTION_UNLOCK (connection);
5314 * Sets a predicate function used to determine whether a given user ID
5315 * is allowed to connect. When an incoming connection has
5316 * authenticated with a particular user ID, this function is called;
5317 * if it returns #TRUE, the connection is allowed to proceed,
5318 * otherwise the connection is disconnected.
5320 * If the function is set to #NULL (as it is by default), then
5321 * only the same UID as the server process will be allowed to
5322 * connect. Also, root is always allowed to connect.
5324 * On Windows, the function will be set and its free_data_function will
5325 * be invoked when the connection is freed or a new function is set.
5326 * However, the function will never be called, because there are
5327 * no UNIX user ids to pass to it, or at least none of the existing
5328 * auth protocols would allow authenticating as a UNIX user on Windows.
5330 * @param connection the connection
5331 * @param function the predicate
5332 * @param data data to pass to the predicate
5333 * @param free_data_function function to free the data
5336 dbus_connection_set_unix_user_function (DBusConnection *connection,
5337 DBusAllowUnixUserFunction function,
5339 DBusFreeFunction free_data_function)
5341 void *old_data = NULL;
5342 DBusFreeFunction old_free_function = NULL;
5344 _dbus_return_if_fail (connection != NULL);
5346 CONNECTION_LOCK (connection);
5347 _dbus_transport_set_unix_user_function (connection->transport,
5348 function, data, free_data_function,
5349 &old_data, &old_free_function);
5350 CONNECTION_UNLOCK (connection);
5352 if (old_free_function != NULL)
5353 (* old_free_function) (old_data);
5356 /* Same calling convention as dbus_connection_get_windows_user */
5358 _dbus_connection_get_linux_security_label (DBusConnection *connection,
5363 _dbus_assert (connection != NULL);
5364 _dbus_assert (label_p != NULL);
5366 CONNECTION_LOCK (connection);
5368 if (!_dbus_transport_try_to_authenticate (connection->transport))
5371 result = _dbus_transport_get_linux_security_label (connection->transport,
5374 _dbus_assert (!result);
5377 CONNECTION_UNLOCK (connection);
5383 * Gets the Windows user SID of the connection if known. Returns
5384 * #TRUE if the ID is filled in. Always returns #FALSE on non-Windows
5385 * platforms for now, though in theory someone could hook UNIX to
5386 * Active Directory or something. Always returns #FALSE prior to
5387 * authenticating the connection.
5389 * The user is only read by servers from clients; clients can't usually
5390 * get the user of servers, because servers do not authenticate to
5391 * clients. The returned user is the user the connection authenticated
5394 * The message bus is a server and the apps connecting to the bus
5397 * The returned user string has to be freed with dbus_free().
5399 * The return value indicates whether the user SID is available;
5400 * if it's available but we don't have the memory to copy it,
5401 * then the return value is #TRUE and #NULL is given as the SID.
5403 * @todo We would like to be able to say "You can ask the bus to tell
5404 * you the user of another connection though if you like; this is done
5405 * with dbus_bus_get_windows_user()." But this has to be implemented
5406 * in bus/driver.c and dbus/dbus-bus.c, and is pointless anyway
5407 * since on Windows we only use the session bus for now.
5409 * @param connection the connection
5410 * @param windows_sid_p return location for an allocated copy of the user ID, or #NULL if no memory
5411 * @returns #TRUE if user is available (returned value may be #NULL anyway if no memory)
5414 dbus_connection_get_windows_user (DBusConnection *connection,
5415 char **windows_sid_p)
5419 _dbus_return_val_if_fail (connection != NULL, FALSE);
5420 _dbus_return_val_if_fail (windows_sid_p != NULL, FALSE);
5422 CONNECTION_LOCK (connection);
5424 if (!_dbus_transport_try_to_authenticate (connection->transport))
5427 result = _dbus_transport_get_windows_user (connection->transport,
5431 _dbus_assert (!result);
5434 CONNECTION_UNLOCK (connection);
5440 * Sets a predicate function used to determine whether a given user ID
5441 * is allowed to connect. When an incoming connection has
5442 * authenticated with a particular user ID, this function is called;
5443 * if it returns #TRUE, the connection is allowed to proceed,
5444 * otherwise the connection is disconnected.
5446 * If the function is set to #NULL (as it is by default), then
5447 * only the same user owning the server process will be allowed to
5450 * On UNIX, the function will be set and its free_data_function will
5451 * be invoked when the connection is freed or a new function is set.
5452 * However, the function will never be called, because there is no
5453 * way right now to authenticate as a Windows user on UNIX.
5455 * @param connection the connection
5456 * @param function the predicate
5457 * @param data data to pass to the predicate
5458 * @param free_data_function function to free the data
5461 dbus_connection_set_windows_user_function (DBusConnection *connection,
5462 DBusAllowWindowsUserFunction function,
5464 DBusFreeFunction free_data_function)
5466 void *old_data = NULL;
5467 DBusFreeFunction old_free_function = NULL;
5469 _dbus_return_if_fail (connection != NULL);
5471 CONNECTION_LOCK (connection);
5472 _dbus_transport_set_windows_user_function (connection->transport,
5473 function, data, free_data_function,
5474 &old_data, &old_free_function);
5475 CONNECTION_UNLOCK (connection);
5477 if (old_free_function != NULL)
5478 (* old_free_function) (old_data);
5482 * This function must be called on the server side of a connection when the
5483 * connection is first seen in the #DBusNewConnectionFunction. If set to
5484 * #TRUE (the default is #FALSE), then the connection can proceed even if
5485 * the client does not authenticate as some user identity, i.e. clients
5486 * can connect anonymously.
5488 * This setting interacts with the available authorization mechanisms
5489 * (see dbus_server_set_auth_mechanisms()). Namely, an auth mechanism
5490 * such as ANONYMOUS that supports anonymous auth must be included in
5491 * the list of available mechanisms for anonymous login to work.
5493 * This setting also changes the default rule for connections
5494 * authorized as a user; normally, if a connection authorizes as
5495 * a user identity, it is permitted if the user identity is
5496 * root or the user identity matches the user identity of the server
5497 * process. If anonymous connections are allowed, however,
5498 * then any user identity is allowed.
5500 * You can override the rules for connections authorized as a
5501 * user identity with dbus_connection_set_unix_user_function()
5502 * and dbus_connection_set_windows_user_function().
5504 * @param connection the connection
5505 * @param value whether to allow authentication as an anonymous user
5508 dbus_connection_set_allow_anonymous (DBusConnection *connection,
5511 _dbus_return_if_fail (connection != NULL);
5513 CONNECTION_LOCK (connection);
5514 _dbus_transport_set_allow_anonymous (connection->transport, value);
5515 CONNECTION_UNLOCK (connection);
5520 * Normally #DBusConnection automatically handles all messages to the
5521 * org.freedesktop.DBus.Peer interface. However, the message bus wants
5522 * to be able to route methods on that interface through the bus and
5523 * to other applications. If routing peer messages is enabled, then
5524 * messages with the org.freedesktop.DBus.Peer interface that also
5525 * have a bus destination name set will not be automatically
5526 * handled by the #DBusConnection and instead will be dispatched
5527 * normally to the application.
5529 * If a normal application sets this flag, it can break things badly.
5530 * So don't set this unless you are the message bus.
5532 * @param connection the connection
5533 * @param value #TRUE to pass through org.freedesktop.DBus.Peer messages with a bus name set
5536 dbus_connection_set_route_peer_messages (DBusConnection *connection,
5539 _dbus_return_if_fail (connection != NULL);
5541 CONNECTION_LOCK (connection);
5542 connection->route_peer_messages = value;
5543 CONNECTION_UNLOCK (connection);
5547 * Adds a message filter. Filters are handlers that are run on all
5548 * incoming messages, prior to the objects registered with
5549 * dbus_connection_register_object_path(). Filters are run in the
5550 * order that they were added. The same handler can be added as a
5551 * filter more than once, in which case it will be run more than once.
5552 * Filters added during a filter callback won't be run on the message
5555 * @todo we don't run filters on messages while blocking without
5556 * entering the main loop, since filters are run as part of
5557 * dbus_connection_dispatch(). This is probably a feature, as filters
5558 * could create arbitrary reentrancy. But kind of sucks if you're
5559 * trying to filter METHOD_RETURN for some reason.
5561 * @param connection the connection
5562 * @param function function to handle messages
5563 * @param user_data user data to pass to the function
5564 * @param free_data_function function to use for freeing user data
5565 * @returns #TRUE on success, #FALSE if not enough memory.
5568 dbus_connection_add_filter (DBusConnection *connection,
5569 DBusHandleMessageFunction function,
5571 DBusFreeFunction free_data_function)
5573 DBusMessageFilter *filter;
5575 _dbus_return_val_if_fail (connection != NULL, FALSE);
5576 _dbus_return_val_if_fail (function != NULL, FALSE);
5578 filter = dbus_new0 (DBusMessageFilter, 1);
5582 _dbus_atomic_inc (&filter->refcount);
5584 CONNECTION_LOCK (connection);
5586 if (!_dbus_list_append (&connection->filter_list,
5589 _dbus_message_filter_unref (filter);
5590 CONNECTION_UNLOCK (connection);
5594 /* Fill in filter after all memory allocated,
5595 * so we don't run the free_user_data_function
5596 * if the add_filter() fails
5599 filter->function = function;
5600 filter->user_data = user_data;
5601 filter->free_user_data_function = free_data_function;
5603 CONNECTION_UNLOCK (connection);
5608 * Removes a previously-added message filter. It is a programming
5609 * error to call this function for a handler that has not been added
5610 * as a filter. If the given handler was added more than once, only
5611 * one instance of it will be removed (the most recently-added
5614 * @param connection the connection
5615 * @param function the handler to remove
5616 * @param user_data user data for the handler to remove
5620 dbus_connection_remove_filter (DBusConnection *connection,
5621 DBusHandleMessageFunction function,
5625 DBusMessageFilter *filter;
5627 _dbus_return_if_fail (connection != NULL);
5628 _dbus_return_if_fail (function != NULL);
5630 CONNECTION_LOCK (connection);
5634 link = _dbus_list_get_last_link (&connection->filter_list);
5635 while (link != NULL)
5637 filter = link->data;
5639 if (filter->function == function &&
5640 filter->user_data == user_data)
5642 _dbus_list_remove_link (&connection->filter_list, link);
5643 filter->function = NULL;
5648 link = _dbus_list_get_prev_link (&connection->filter_list, link);
5652 CONNECTION_UNLOCK (connection);
5654 #ifndef DBUS_DISABLE_CHECKS
5657 _dbus_warn_check_failed ("Attempt to remove filter function %p user data %p, but no such filter has been added\n",
5658 function, user_data);
5663 /* Call application code */
5664 if (filter->free_user_data_function)
5665 (* filter->free_user_data_function) (filter->user_data);
5667 filter->free_user_data_function = NULL;
5668 filter->user_data = NULL;
5670 _dbus_message_filter_unref (filter);
5674 * Registers a handler for a given path or subsection in the object
5675 * hierarchy. The given vtable handles messages sent to exactly the
5676 * given path or also for paths bellow that, depending on fallback
5679 * @param connection the connection
5680 * @param fallback whether to handle messages also for "subdirectory"
5681 * @param path a '/' delimited string of path elements
5682 * @param vtable the virtual table
5683 * @param user_data data to pass to functions in the vtable
5684 * @param error address where an error can be returned
5685 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5686 * #DBUS_ERROR_OBJECT_PATH_IN_USE) is reported
5689 _dbus_connection_register_object_path (DBusConnection *connection,
5690 dbus_bool_t fallback,
5692 const DBusObjectPathVTable *vtable,
5696 char **decomposed_path;
5699 if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
5702 CONNECTION_LOCK (connection);
5704 retval = _dbus_object_tree_register (connection->objects,
5706 (const char **) decomposed_path, vtable,
5709 CONNECTION_UNLOCK (connection);
5711 dbus_free_string_array (decomposed_path);
5717 * Registers a handler for a given path in the object hierarchy.
5718 * The given vtable handles messages sent to exactly the given path.
5720 * @param connection the connection
5721 * @param path a '/' delimited string of path elements
5722 * @param vtable the virtual table
5723 * @param user_data data to pass to functions in the vtable
5724 * @param error address where an error can be returned
5725 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5726 * #DBUS_ERROR_OBJECT_PATH_IN_USE) is reported
5729 dbus_connection_try_register_object_path (DBusConnection *connection,
5731 const DBusObjectPathVTable *vtable,
5735 _dbus_return_val_if_fail (connection != NULL, FALSE);
5736 _dbus_return_val_if_fail (path != NULL, FALSE);
5737 _dbus_return_val_if_fail (path[0] == '/', FALSE);
5738 _dbus_return_val_if_fail (vtable != NULL, FALSE);
5740 return _dbus_connection_register_object_path (connection, FALSE, path, vtable, user_data, error);
5744 * Registers a handler for a given path in the object hierarchy.
5745 * The given vtable handles messages sent to exactly the given path.
5747 * It is a bug to call this function for object paths which already
5748 * have a handler. Use dbus_connection_try_register_object_path() if this
5749 * might be the case.
5751 * @param connection the connection
5752 * @param path a '/' delimited string of path elements
5753 * @param vtable the virtual table
5754 * @param user_data data to pass to functions in the vtable
5755 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5756 * #DBUS_ERROR_OBJECT_PATH_IN_USE) ocurred
5759 dbus_connection_register_object_path (DBusConnection *connection,
5761 const DBusObjectPathVTable *vtable,
5765 DBusError error = DBUS_ERROR_INIT;
5767 _dbus_return_val_if_fail (connection != NULL, FALSE);
5768 _dbus_return_val_if_fail (path != NULL, FALSE);
5769 _dbus_return_val_if_fail (path[0] == '/', FALSE);
5770 _dbus_return_val_if_fail (vtable != NULL, FALSE);
5772 retval = _dbus_connection_register_object_path (connection, FALSE, path, vtable, user_data, &error);
5774 if (dbus_error_has_name (&error, DBUS_ERROR_OBJECT_PATH_IN_USE))
5776 _dbus_warn ("%s\n", error.message);
5777 dbus_error_free (&error);
5785 * Registers a fallback handler for a given subsection of the object
5786 * hierarchy. The given vtable handles messages at or below the given
5787 * path. You can use this to establish a default message handling
5788 * policy for a whole "subdirectory."
5790 * @param connection the connection
5791 * @param path a '/' delimited string of path elements
5792 * @param vtable the virtual table
5793 * @param user_data data to pass to functions in the vtable
5794 * @param error address where an error can be returned
5795 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5796 * #DBUS_ERROR_OBJECT_PATH_IN_USE) is reported
5799 dbus_connection_try_register_fallback (DBusConnection *connection,
5801 const DBusObjectPathVTable *vtable,
5805 _dbus_return_val_if_fail (connection != NULL, FALSE);
5806 _dbus_return_val_if_fail (path != NULL, FALSE);
5807 _dbus_return_val_if_fail (path[0] == '/', FALSE);
5808 _dbus_return_val_if_fail (vtable != NULL, FALSE);
5810 return _dbus_connection_register_object_path (connection, TRUE, path, vtable, user_data, error);
5814 * Registers a fallback handler for a given subsection of the object
5815 * hierarchy. The given vtable handles messages at or below the given
5816 * path. You can use this to establish a default message handling
5817 * policy for a whole "subdirectory."
5819 * It is a bug to call this function for object paths which already
5820 * have a handler. Use dbus_connection_try_register_fallback() if this
5821 * might be the case.
5823 * @param connection the connection
5824 * @param path a '/' delimited string of path elements
5825 * @param vtable the virtual table
5826 * @param user_data data to pass to functions in the vtable
5827 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5828 * #DBUS_ERROR_OBJECT_PATH_IN_USE) occured
5831 dbus_connection_register_fallback (DBusConnection *connection,
5833 const DBusObjectPathVTable *vtable,
5837 DBusError error = DBUS_ERROR_INIT;
5839 _dbus_return_val_if_fail (connection != NULL, FALSE);
5840 _dbus_return_val_if_fail (path != NULL, FALSE);
5841 _dbus_return_val_if_fail (path[0] == '/', FALSE);
5842 _dbus_return_val_if_fail (vtable != NULL, FALSE);
5844 retval = _dbus_connection_register_object_path (connection, TRUE, path, vtable, user_data, &error);
5846 if (dbus_error_has_name (&error, DBUS_ERROR_OBJECT_PATH_IN_USE))
5848 _dbus_warn ("%s\n", error.message);
5849 dbus_error_free (&error);
5857 * Unregisters the handler registered with exactly the given path.
5858 * It's a bug to call this function for a path that isn't registered.
5859 * Can unregister both fallback paths and object paths.
5861 * @param connection the connection
5862 * @param path a '/' delimited string of path elements
5863 * @returns #FALSE if not enough memory
5866 dbus_connection_unregister_object_path (DBusConnection *connection,
5869 char **decomposed_path;
5871 _dbus_return_val_if_fail (connection != NULL, FALSE);
5872 _dbus_return_val_if_fail (path != NULL, FALSE);
5873 _dbus_return_val_if_fail (path[0] == '/', FALSE);
5875 if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
5878 CONNECTION_LOCK (connection);
5880 _dbus_object_tree_unregister_and_unlock (connection->objects, (const char **) decomposed_path);
5882 dbus_free_string_array (decomposed_path);
5888 * Gets the user data passed to dbus_connection_register_object_path()
5889 * or dbus_connection_register_fallback(). If nothing was registered
5890 * at this path, the data is filled in with #NULL.
5892 * @param connection the connection
5893 * @param path the path you registered with
5894 * @param data_p location to store the user data, or #NULL
5895 * @returns #FALSE if not enough memory
5898 dbus_connection_get_object_path_data (DBusConnection *connection,
5902 char **decomposed_path;
5904 _dbus_return_val_if_fail (connection != NULL, FALSE);
5905 _dbus_return_val_if_fail (path != NULL, FALSE);
5906 _dbus_return_val_if_fail (data_p != NULL, FALSE);
5910 if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
5913 CONNECTION_LOCK (connection);
5915 *data_p = _dbus_object_tree_get_user_data_unlocked (connection->objects, (const char**) decomposed_path);
5917 CONNECTION_UNLOCK (connection);
5919 dbus_free_string_array (decomposed_path);
5925 * Lists the registered fallback handlers and object path handlers at
5926 * the given parent_path. The returned array should be freed with
5927 * dbus_free_string_array().
5929 * @param connection the connection
5930 * @param parent_path the path to list the child handlers of
5931 * @param child_entries returns #NULL-terminated array of children
5932 * @returns #FALSE if no memory to allocate the child entries
5935 dbus_connection_list_registered (DBusConnection *connection,
5936 const char *parent_path,
5937 char ***child_entries)
5939 char **decomposed_path;
5941 _dbus_return_val_if_fail (connection != NULL, FALSE);
5942 _dbus_return_val_if_fail (parent_path != NULL, FALSE);
5943 _dbus_return_val_if_fail (parent_path[0] == '/', FALSE);
5944 _dbus_return_val_if_fail (child_entries != NULL, FALSE);
5946 if (!_dbus_decompose_path (parent_path, strlen (parent_path), &decomposed_path, NULL))
5949 CONNECTION_LOCK (connection);
5951 retval = _dbus_object_tree_list_registered_and_unlock (connection->objects,
5952 (const char **) decomposed_path,
5954 dbus_free_string_array (decomposed_path);
5959 static DBusDataSlotAllocator slot_allocator =
5960 _DBUS_DATA_SLOT_ALLOCATOR_INIT (_DBUS_LOCK_NAME (connection_slots));
5963 * Allocates an integer ID to be used for storing application-specific
5964 * data on any DBusConnection. The allocated ID may then be used
5965 * with dbus_connection_set_data() and dbus_connection_get_data().
5966 * The passed-in slot must be initialized to -1, and is filled in
5967 * with the slot ID. If the passed-in slot is not -1, it's assumed
5968 * to be already allocated, and its refcount is incremented.
5970 * The allocated slot is global, i.e. all DBusConnection objects will
5971 * have a slot with the given integer ID reserved.
5973 * @param slot_p address of a global variable storing the slot
5974 * @returns #FALSE on failure (no memory)
5977 dbus_connection_allocate_data_slot (dbus_int32_t *slot_p)
5979 return _dbus_data_slot_allocator_alloc (&slot_allocator,
5984 * Deallocates a global ID for connection data slots.
5985 * dbus_connection_get_data() and dbus_connection_set_data() may no
5986 * longer be used with this slot. Existing data stored on existing
5987 * DBusConnection objects will be freed when the connection is
5988 * finalized, but may not be retrieved (and may only be replaced if
5989 * someone else reallocates the slot). When the refcount on the
5990 * passed-in slot reaches 0, it is set to -1.
5992 * @param slot_p address storing the slot to deallocate
5995 dbus_connection_free_data_slot (dbus_int32_t *slot_p)
5997 _dbus_return_if_fail (*slot_p >= 0);
5999 _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
6003 * Stores a pointer on a DBusConnection, along
6004 * with an optional function to be used for freeing
6005 * the data when the data is set again, or when
6006 * the connection is finalized. The slot number
6007 * must have been allocated with dbus_connection_allocate_data_slot().
6009 * @note This function does not take the
6010 * main thread lock on DBusConnection, which allows it to be
6011 * used from inside watch and timeout functions. (See the
6012 * note in docs for dbus_connection_set_watch_functions().)
6013 * A side effect of this is that you need to know there's
6014 * a reference held on the connection while invoking
6015 * dbus_connection_set_data(), or the connection could be
6016 * finalized during dbus_connection_set_data().
6018 * @param connection the connection
6019 * @param slot the slot number
6020 * @param data the data to store
6021 * @param free_data_func finalizer function for the data
6022 * @returns #TRUE if there was enough memory to store the data
6025 dbus_connection_set_data (DBusConnection *connection,
6028 DBusFreeFunction free_data_func)
6030 DBusFreeFunction old_free_func;
6034 _dbus_return_val_if_fail (connection != NULL, FALSE);
6035 _dbus_return_val_if_fail (slot >= 0, FALSE);
6037 SLOTS_LOCK (connection);
6039 retval = _dbus_data_slot_list_set (&slot_allocator,
6040 &connection->slot_list,
6041 slot, data, free_data_func,
6042 &old_free_func, &old_data);
6044 SLOTS_UNLOCK (connection);
6048 /* Do the actual free outside the connection lock */
6050 (* old_free_func) (old_data);
6057 * Retrieves data previously set with dbus_connection_set_data().
6058 * The slot must still be allocated (must not have been freed).
6060 * @note This function does not take the
6061 * main thread lock on DBusConnection, which allows it to be
6062 * used from inside watch and timeout functions. (See the
6063 * note in docs for dbus_connection_set_watch_functions().)
6064 * A side effect of this is that you need to know there's
6065 * a reference held on the connection while invoking
6066 * dbus_connection_get_data(), or the connection could be
6067 * finalized during dbus_connection_get_data().
6069 * @param connection the connection
6070 * @param slot the slot to get data from
6071 * @returns the data, or #NULL if not found
6074 dbus_connection_get_data (DBusConnection *connection,
6079 _dbus_return_val_if_fail (connection != NULL, NULL);
6080 _dbus_return_val_if_fail (slot >= 0, NULL);
6082 SLOTS_LOCK (connection);
6084 res = _dbus_data_slot_list_get (&slot_allocator,
6085 &connection->slot_list,
6088 SLOTS_UNLOCK (connection);
6094 * This function sets a global flag for whether dbus_connection_new()
6095 * will set SIGPIPE behavior to SIG_IGN.
6097 * @param will_modify_sigpipe #TRUE to allow sigpipe to be set to SIG_IGN
6100 dbus_connection_set_change_sigpipe (dbus_bool_t will_modify_sigpipe)
6102 _dbus_modify_sigpipe = will_modify_sigpipe != FALSE;
6106 * Specifies the maximum size message this connection is allowed to
6107 * receive. Larger messages will result in disconnecting the
6110 * @param connection a #DBusConnection
6111 * @param size maximum message size the connection can receive, in bytes
6114 dbus_connection_set_max_message_size (DBusConnection *connection,
6117 _dbus_return_if_fail (connection != NULL);
6119 CONNECTION_LOCK (connection);
6120 _dbus_transport_set_max_message_size (connection->transport,
6122 CONNECTION_UNLOCK (connection);
6126 * Gets the value set by dbus_connection_set_max_message_size().
6128 * @param connection the connection
6129 * @returns the max size of a single message
6132 dbus_connection_get_max_message_size (DBusConnection *connection)
6136 _dbus_return_val_if_fail (connection != NULL, 0);
6138 CONNECTION_LOCK (connection);
6139 res = _dbus_transport_get_max_message_size (connection->transport);
6140 CONNECTION_UNLOCK (connection);
6145 * Specifies the maximum number of unix fds a message on this
6146 * connection is allowed to receive. Messages with more unix fds will
6147 * result in disconnecting the connection.
6149 * @param connection a #DBusConnection
6150 * @param n maximum message unix fds the connection can receive
6153 dbus_connection_set_max_message_unix_fds (DBusConnection *connection,
6156 _dbus_return_if_fail (connection != NULL);
6158 CONNECTION_LOCK (connection);
6159 _dbus_transport_set_max_message_unix_fds (connection->transport,
6161 CONNECTION_UNLOCK (connection);
6165 * Gets the value set by dbus_connection_set_max_message_unix_fds().
6167 * @param connection the connection
6168 * @returns the max numer of unix fds of a single message
6171 dbus_connection_get_max_message_unix_fds (DBusConnection *connection)
6175 _dbus_return_val_if_fail (connection != NULL, 0);
6177 CONNECTION_LOCK (connection);
6178 res = _dbus_transport_get_max_message_unix_fds (connection->transport);
6179 CONNECTION_UNLOCK (connection);
6184 * Sets the maximum total number of bytes that can be used for all messages
6185 * received on this connection. Messages count toward the maximum until
6186 * they are finalized. When the maximum is reached, the connection will
6187 * not read more data until some messages are finalized.
6189 * The semantics of the maximum are: if outstanding messages are
6190 * already above the maximum, additional messages will not be read.
6191 * The semantics are not: if the next message would cause us to exceed
6192 * the maximum, we don't read it. The reason is that we don't know the
6193 * size of a message until after we read it.
6195 * Thus, the max live messages size can actually be exceeded
6196 * by up to the maximum size of a single message.
6198 * Also, if we read say 1024 bytes off the wire in a single read(),
6199 * and that contains a half-dozen small messages, we may exceed the
6200 * size max by that amount. But this should be inconsequential.
6202 * This does imply that we can't call read() with a buffer larger
6203 * than we're willing to exceed this limit by.
6205 * @param connection the connection
6206 * @param size the maximum size in bytes of all outstanding messages
6209 dbus_connection_set_max_received_size (DBusConnection *connection,
6212 _dbus_return_if_fail (connection != NULL);
6214 CONNECTION_LOCK (connection);
6215 _dbus_transport_set_max_received_size (connection->transport,
6217 CONNECTION_UNLOCK (connection);
6221 * Gets the value set by dbus_connection_set_max_received_size().
6223 * @param connection the connection
6224 * @returns the max size of all live messages
6227 dbus_connection_get_max_received_size (DBusConnection *connection)
6231 _dbus_return_val_if_fail (connection != NULL, 0);
6233 CONNECTION_LOCK (connection);
6234 res = _dbus_transport_get_max_received_size (connection->transport);
6235 CONNECTION_UNLOCK (connection);
6240 * Sets the maximum total number of unix fds that can be used for all messages
6241 * received on this connection. Messages count toward the maximum until
6242 * they are finalized. When the maximum is reached, the connection will
6243 * not read more data until some messages are finalized.
6245 * The semantics are analogous to those of dbus_connection_set_max_received_size().
6247 * @param connection the connection
6248 * @param n the maximum size in bytes of all outstanding messages
6251 dbus_connection_set_max_received_unix_fds (DBusConnection *connection,
6254 _dbus_return_if_fail (connection != NULL);
6256 CONNECTION_LOCK (connection);
6257 _dbus_transport_set_max_received_unix_fds (connection->transport,
6259 CONNECTION_UNLOCK (connection);
6263 * Gets the value set by dbus_connection_set_max_received_unix_fds().
6265 * @param connection the connection
6266 * @returns the max unix fds of all live messages
6269 dbus_connection_get_max_received_unix_fds (DBusConnection *connection)
6273 _dbus_return_val_if_fail (connection != NULL, 0);
6275 CONNECTION_LOCK (connection);
6276 res = _dbus_transport_get_max_received_unix_fds (connection->transport);
6277 CONNECTION_UNLOCK (connection);
6282 * Gets the approximate size in bytes of all messages in the outgoing
6283 * message queue. The size is approximate in that you shouldn't use
6284 * it to decide how many bytes to read off the network or anything
6285 * of that nature, as optimizations may choose to tell small white lies
6286 * to avoid performance overhead.
6288 * @param connection the connection
6289 * @returns the number of bytes that have been queued up but not sent
6292 dbus_connection_get_outgoing_size (DBusConnection *connection)
6296 _dbus_return_val_if_fail (connection != NULL, 0);
6298 CONNECTION_LOCK (connection);
6299 res = _dbus_counter_get_size_value (connection->outgoing_counter);
6300 CONNECTION_UNLOCK (connection);
6304 #ifdef DBUS_ENABLE_STATS
6306 _dbus_connection_get_stats (DBusConnection *connection,
6307 dbus_uint32_t *in_messages,
6308 dbus_uint32_t *in_bytes,
6309 dbus_uint32_t *in_fds,
6310 dbus_uint32_t *in_peak_bytes,
6311 dbus_uint32_t *in_peak_fds,
6312 dbus_uint32_t *out_messages,
6313 dbus_uint32_t *out_bytes,
6314 dbus_uint32_t *out_fds,
6315 dbus_uint32_t *out_peak_bytes,
6316 dbus_uint32_t *out_peak_fds)
6318 CONNECTION_LOCK (connection);
6320 if (in_messages != NULL)
6321 *in_messages = connection->n_incoming;
6323 _dbus_transport_get_stats (connection->transport,
6324 in_bytes, in_fds, in_peak_bytes, in_peak_fds);
6326 if (out_messages != NULL)
6327 *out_messages = connection->n_outgoing;
6329 if (out_bytes != NULL)
6330 *out_bytes = _dbus_counter_get_size_value (connection->outgoing_counter);
6332 if (out_fds != NULL)
6333 *out_fds = _dbus_counter_get_unix_fd_value (connection->outgoing_counter);
6335 if (out_peak_bytes != NULL)
6336 *out_peak_bytes = _dbus_counter_get_peak_size_value (connection->outgoing_counter);
6338 if (out_peak_fds != NULL)
6339 *out_peak_fds = _dbus_counter_get_peak_unix_fd_value (connection->outgoing_counter);
6341 CONNECTION_UNLOCK (connection);
6343 #endif /* DBUS_ENABLE_STATS */
6346 * Gets the approximate number of uni fds of all messages in the
6347 * outgoing message queue.
6349 * @param connection the connection
6350 * @returns the number of unix fds that have been queued up but not sent
6353 dbus_connection_get_outgoing_unix_fds (DBusConnection *connection)
6357 _dbus_return_val_if_fail (connection != NULL, 0);
6359 CONNECTION_LOCK (connection);
6360 res = _dbus_counter_get_unix_fd_value (connection->outgoing_counter);
6361 CONNECTION_UNLOCK (connection);
6365 #ifdef DBUS_ENABLE_EMBEDDED_TESTS
6367 * Returns the address of the transport object of this connection
6369 * @param connection the connection
6370 * @returns the address string
6373 _dbus_connection_get_address (DBusConnection *connection)
6375 return _dbus_transport_get_address (connection->transport);