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
206 #ifdef DBUS_ENABLE_VERBOSE_MODE
208 _dbus_connection_trace_ref (DBusConnection *connection,
213 static int enabled = -1;
215 _dbus_trace_ref ("DBusConnection", connection, old_refcount, new_refcount,
216 why, "DBUS_CONNECTION_TRACE", &enabled);
219 #define _dbus_connection_trace_ref(c,o,n,w) \
228 * Internal struct representing a message filter function
230 typedef struct DBusMessageFilter DBusMessageFilter;
233 * Internal struct representing a message filter function
235 struct DBusMessageFilter
237 DBusAtomic refcount; /**< Reference count */
238 DBusHandleMessageFunction function; /**< Function to call to filter */
239 void *user_data; /**< User data for the function */
240 DBusFreeFunction free_user_data_function; /**< Function to free the user data */
245 * Internals of DBusPreallocatedSend
247 struct DBusPreallocatedSend
249 DBusConnection *connection; /**< Connection we'd send the message to */
250 DBusList *queue_link; /**< Preallocated link in the queue */
251 DBusList *counter_link; /**< Preallocated link in the resource counter */
254 #if HAVE_DECL_MSG_NOSIGNAL
255 static dbus_bool_t _dbus_modify_sigpipe = FALSE;
257 static dbus_bool_t _dbus_modify_sigpipe = TRUE;
261 * Implementation details of DBusConnection. All fields are private.
263 struct DBusConnection
265 DBusAtomic refcount; /**< Reference count. */
267 DBusRMutex *mutex; /**< Lock on the entire DBusConnection */
269 DBusCMutex *dispatch_mutex; /**< Protects dispatch_acquired */
270 DBusCondVar *dispatch_cond; /**< Notify when dispatch_acquired is available */
271 DBusCMutex *io_path_mutex; /**< Protects io_path_acquired */
272 DBusCondVar *io_path_cond; /**< Notify when io_path_acquired is available */
274 DBusList *outgoing_messages; /**< Queue of messages we need to send, send the end of the list first. */
275 DBusList *incoming_messages; /**< Queue of messages we have received, end of the list received most recently. */
276 DBusList *expired_messages; /**< Messages that will be released when we next unlock. */
278 DBusMessage *message_borrowed; /**< Filled in if the first incoming message has been borrowed;
279 * dispatch_acquired will be set by the borrower
282 int n_outgoing; /**< Length of outgoing queue. */
283 int n_incoming; /**< Length of incoming queue. */
285 DBusCounter *outgoing_counter; /**< Counts size of outgoing messages. */
287 DBusTransport *transport; /**< Object that sends/receives messages over network. */
288 DBusWatchList *watches; /**< Stores active watches. */
289 DBusTimeoutList *timeouts; /**< Stores active timeouts. */
291 DBusList *filter_list; /**< List of filters. */
293 DBusRMutex *slot_mutex; /**< Lock on slot_list so overall connection lock need not be taken */
294 DBusDataSlotList slot_list; /**< Data stored by allocated integer ID */
296 DBusHashTable *pending_replies; /**< Hash of message serials to #DBusPendingCall. */
298 dbus_uint32_t client_serial; /**< Client serial. Increments each time a message is sent */
299 DBusList *disconnect_message_link; /**< Preallocated list node for queueing the disconnection message */
301 DBusWakeupMainFunction wakeup_main_function; /**< Function to wake up the mainloop */
302 void *wakeup_main_data; /**< Application data for wakeup_main_function */
303 DBusFreeFunction free_wakeup_main_data; /**< free wakeup_main_data */
305 DBusDispatchStatusFunction dispatch_status_function; /**< Function on dispatch status changes */
306 void *dispatch_status_data; /**< Application data for dispatch_status_function */
307 DBusFreeFunction free_dispatch_status_data; /**< free dispatch_status_data */
309 DBusDispatchStatus last_dispatch_status; /**< The last dispatch status we reported to the application. */
311 DBusObjectTree *objects; /**< Object path handlers registered with this connection */
313 char *server_guid; /**< GUID of server if we are in shared_connections, #NULL if server GUID is unknown or connection is private */
315 /* These two MUST be bools and not bitfields, because they are protected by a separate lock
316 * from connection->mutex and all bitfields in a word have to be read/written together.
317 * So you can't have a different lock for different bitfields in the same word.
319 dbus_bool_t dispatch_acquired; /**< Someone has dispatch path (can drain incoming queue) */
320 dbus_bool_t io_path_acquired; /**< Someone has transport io path (can use the transport to read/write messages) */
322 unsigned int shareable : 1; /**< #TRUE if libdbus owns a reference to the connection and can return it from dbus_connection_open() more than once */
324 unsigned int exit_on_disconnect : 1; /**< If #TRUE, exit after handling disconnect signal */
326 unsigned int route_peer_messages : 1; /**< If #TRUE, if org.freedesktop.DBus.Peer messages have a bus name, don't handle them automatically */
328 unsigned int disconnected_message_arrived : 1; /**< We popped or are dispatching the disconnected message.
329 * if the disconnect_message_link is NULL then we queued it, but
330 * this flag is whether it got to the head of the queue.
332 unsigned int disconnected_message_processed : 1; /**< We did our default handling of the disconnected message,
333 * such as closing the connection.
336 #ifndef DBUS_DISABLE_CHECKS
337 unsigned int have_connection_lock : 1; /**< Used to check locking */
340 #ifndef DBUS_DISABLE_CHECKS
341 int generation; /**< _dbus_current_generation that should correspond to this connection */
345 static DBusDispatchStatus _dbus_connection_get_dispatch_status_unlocked (DBusConnection *connection);
346 static void _dbus_connection_update_dispatch_status_and_unlock (DBusConnection *connection,
347 DBusDispatchStatus new_status);
348 static void _dbus_connection_last_unref (DBusConnection *connection);
349 static void _dbus_connection_acquire_dispatch (DBusConnection *connection);
350 static void _dbus_connection_release_dispatch (DBusConnection *connection);
351 static DBusDispatchStatus _dbus_connection_flush_unlocked (DBusConnection *connection);
352 static void _dbus_connection_close_possibly_shared_and_unlock (DBusConnection *connection);
353 static dbus_bool_t _dbus_connection_get_is_connected_unlocked (DBusConnection *connection);
354 static dbus_bool_t _dbus_connection_peek_for_reply_unlocked (DBusConnection *connection,
355 dbus_uint32_t client_serial);
357 static DBusMessageFilter *
358 _dbus_message_filter_ref (DBusMessageFilter *filter)
360 #ifdef DBUS_DISABLE_ASSERT
361 _dbus_atomic_inc (&filter->refcount);
363 dbus_int32_t old_value;
365 old_value = _dbus_atomic_inc (&filter->refcount);
366 _dbus_assert (old_value > 0);
373 _dbus_message_filter_unref (DBusMessageFilter *filter)
375 dbus_int32_t old_value;
377 old_value = _dbus_atomic_dec (&filter->refcount);
378 _dbus_assert (old_value > 0);
382 if (filter->free_user_data_function)
383 (* filter->free_user_data_function) (filter->user_data);
390 * Acquires the connection lock.
392 * @param connection the connection.
395 _dbus_connection_lock (DBusConnection *connection)
397 CONNECTION_LOCK (connection);
401 * Releases the connection lock.
403 * @param connection the connection.
406 _dbus_connection_unlock (DBusConnection *connection)
408 DBusList *expired_messages;
413 _dbus_verbose ("UNLOCK\n");
416 /* If we had messages that expired (fell off the incoming or outgoing
417 * queues) while we were locked, actually release them now */
418 expired_messages = connection->expired_messages;
419 connection->expired_messages = NULL;
421 RELEASING_LOCK_CHECK (connection);
422 _dbus_rmutex_unlock (connection->mutex);
424 for (iter = _dbus_list_pop_first_link (&expired_messages);
426 iter = _dbus_list_pop_first_link (&expired_messages))
428 DBusMessage *message = iter->data;
430 dbus_message_unref (message);
431 _dbus_list_free_link (iter);
436 * Wakes up the main loop if it is sleeping
437 * Needed if we're e.g. queueing outgoing messages
438 * on a thread while the mainloop sleeps.
440 * @param connection the connection.
443 _dbus_connection_wakeup_mainloop (DBusConnection *connection)
445 if (connection->wakeup_main_function)
446 (*connection->wakeup_main_function) (connection->wakeup_main_data);
449 #ifdef DBUS_BUILD_TESTS
451 * Gets the locks so we can examine them
453 * @param connection the connection.
454 * @param mutex_loc return for the location of the main mutex pointer
455 * @param dispatch_mutex_loc return location of the dispatch mutex pointer
456 * @param io_path_mutex_loc return location of the io_path mutex pointer
457 * @param dispatch_cond_loc return location of the dispatch conditional
459 * @param io_path_cond_loc return location of the io_path conditional
463 _dbus_connection_test_get_locks (DBusConnection *connection,
464 DBusMutex **mutex_loc,
465 DBusMutex **dispatch_mutex_loc,
466 DBusMutex **io_path_mutex_loc,
467 DBusCondVar **dispatch_cond_loc,
468 DBusCondVar **io_path_cond_loc)
470 *mutex_loc = (DBusMutex *) connection->mutex;
471 *dispatch_mutex_loc = (DBusMutex *) connection->dispatch_mutex;
472 *io_path_mutex_loc = (DBusMutex *) connection->io_path_mutex;
473 *dispatch_cond_loc = connection->dispatch_cond;
474 *io_path_cond_loc = connection->io_path_cond;
479 * Adds a message-containing list link to the incoming message queue,
480 * taking ownership of the link and the message's current refcount.
481 * Cannot fail due to lack of memory.
483 * @param connection the connection.
484 * @param link the message link to queue.
487 _dbus_connection_queue_received_message_link (DBusConnection *connection,
490 DBusPendingCall *pending;
491 dbus_uint32_t reply_serial;
492 DBusMessage *message;
494 _dbus_assert (_dbus_transport_get_is_authenticated (connection->transport));
496 _dbus_list_append_link (&connection->incoming_messages,
498 message = link->data;
500 /* If this is a reply we're waiting on, remove timeout for it */
501 reply_serial = dbus_message_get_reply_serial (message);
502 if (reply_serial != 0)
504 pending = _dbus_hash_table_lookup_int (connection->pending_replies,
508 if (_dbus_pending_call_is_timeout_added_unlocked (pending))
509 _dbus_connection_remove_timeout_unlocked (connection,
510 _dbus_pending_call_get_timeout_unlocked (pending));
512 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
518 connection->n_incoming += 1;
520 _dbus_connection_wakeup_mainloop (connection);
522 _dbus_verbose ("Message %p (%s %s %s %s '%s' reply to %u) added to incoming queue %p, %d incoming\n",
524 dbus_message_type_to_string (dbus_message_get_type (message)),
525 dbus_message_get_path (message) ?
526 dbus_message_get_path (message) :
528 dbus_message_get_interface (message) ?
529 dbus_message_get_interface (message) :
531 dbus_message_get_member (message) ?
532 dbus_message_get_member (message) :
534 dbus_message_get_signature (message),
535 dbus_message_get_reply_serial (message),
537 connection->n_incoming);
539 _dbus_message_trace_ref (message, -1, -1,
540 "_dbus_conection_queue_received_message_link");
544 * Adds a link + message to the incoming message queue.
545 * Can't fail. Takes ownership of both link and message.
547 * @param connection the connection.
548 * @param link the list node and message to queue.
552 _dbus_connection_queue_synthesized_message_link (DBusConnection *connection,
555 HAVE_LOCK_CHECK (connection);
557 _dbus_list_append_link (&connection->incoming_messages, link);
559 connection->n_incoming += 1;
561 _dbus_connection_wakeup_mainloop (connection);
563 _dbus_message_trace_ref (link->data, -1, -1,
564 "_dbus_connection_queue_synthesized_message_link");
566 _dbus_verbose ("Synthesized message %p added to incoming queue %p, %d incoming\n",
567 link->data, connection, connection->n_incoming);
572 * Checks whether there are messages in the outgoing message queue.
573 * Called with connection lock held.
575 * @param connection the connection.
576 * @returns #TRUE if the outgoing queue is non-empty.
579 _dbus_connection_has_messages_to_send_unlocked (DBusConnection *connection)
581 HAVE_LOCK_CHECK (connection);
582 return connection->outgoing_messages != NULL;
586 * Checks whether there are messages in the outgoing message queue.
587 * Use dbus_connection_flush() to block until all outgoing
588 * messages have been written to the underlying transport
589 * (such as a socket).
591 * @param connection the connection.
592 * @returns #TRUE if the outgoing queue is non-empty.
595 dbus_connection_has_messages_to_send (DBusConnection *connection)
599 _dbus_return_val_if_fail (connection != NULL, FALSE);
601 CONNECTION_LOCK (connection);
602 v = _dbus_connection_has_messages_to_send_unlocked (connection);
603 CONNECTION_UNLOCK (connection);
609 * Gets the next outgoing message. The message remains in the
610 * queue, and the caller does not own a reference to it.
612 * @param connection the connection.
613 * @returns the message to be sent.
616 _dbus_connection_get_message_to_send (DBusConnection *connection)
618 HAVE_LOCK_CHECK (connection);
620 return _dbus_list_get_last (&connection->outgoing_messages);
624 * Notifies the connection that a message has been sent, so the
625 * message can be removed from the outgoing queue.
626 * Called with the connection lock held.
628 * @param connection the connection.
629 * @param message the message that was sent.
632 _dbus_connection_message_sent_unlocked (DBusConnection *connection,
633 DBusMessage *message)
637 HAVE_LOCK_CHECK (connection);
639 /* This can be called before we even complete authentication, since
640 * it's called on disconnect to clean up the outgoing queue.
641 * It's also called as we successfully send each message.
644 link = _dbus_list_get_last_link (&connection->outgoing_messages);
645 _dbus_assert (link != NULL);
646 _dbus_assert (link->data == message);
648 _dbus_list_unlink (&connection->outgoing_messages,
650 _dbus_list_prepend_link (&connection->expired_messages, link);
652 connection->n_outgoing -= 1;
654 _dbus_verbose ("Message %p (%s %s %s %s '%s') removed from outgoing queue %p, %d left to send\n",
656 dbus_message_type_to_string (dbus_message_get_type (message)),
657 dbus_message_get_path (message) ?
658 dbus_message_get_path (message) :
660 dbus_message_get_interface (message) ?
661 dbus_message_get_interface (message) :
663 dbus_message_get_member (message) ?
664 dbus_message_get_member (message) :
666 dbus_message_get_signature (message),
667 connection, connection->n_outgoing);
669 /* It's OK that in principle we call the notify function, because for the
670 * outgoing limit, there isn't one */
671 _dbus_message_remove_counter (message, connection->outgoing_counter);
673 /* The message will actually be unreffed when we unlock */
676 /** Function to be called in protected_change_watch() with refcount held */
677 typedef dbus_bool_t (* DBusWatchAddFunction) (DBusWatchList *list,
679 /** Function to be called in protected_change_watch() with refcount held */
680 typedef void (* DBusWatchRemoveFunction) (DBusWatchList *list,
682 /** Function to be called in protected_change_watch() with refcount held */
683 typedef void (* DBusWatchToggleFunction) (DBusWatchList *list,
685 dbus_bool_t enabled);
688 protected_change_watch (DBusConnection *connection,
690 DBusWatchAddFunction add_function,
691 DBusWatchRemoveFunction remove_function,
692 DBusWatchToggleFunction toggle_function,
697 HAVE_LOCK_CHECK (connection);
699 /* The original purpose of protected_change_watch() was to hold a
700 * ref on the connection while dropping the connection lock, then
701 * calling out to the app. This was a broken hack that did not
702 * work, since the connection was in a hosed state (no WatchList
703 * field) while calling out.
705 * So for now we'll just keep the lock while calling out. This means
706 * apps are not allowed to call DBusConnection methods inside a
707 * watch function or they will deadlock.
709 * The "real fix" is to use the _and_unlock() pattern found
710 * elsewhere in the code, to defer calling out to the app until
711 * we're about to drop locks and return flow of control to the app
714 * See http://lists.freedesktop.org/archives/dbus/2007-July/thread.html#8144
717 if (connection->watches)
720 retval = (* add_function) (connection->watches, watch);
721 else if (remove_function)
724 (* remove_function) (connection->watches, watch);
729 (* toggle_function) (connection->watches, watch, enabled);
739 * Adds a watch using the connection's DBusAddWatchFunction if
740 * available. Otherwise records the watch to be added when said
741 * function is available. Also re-adds the watch if the
742 * DBusAddWatchFunction changes. May fail due to lack of memory.
743 * Connection lock should be held when calling this.
745 * @param connection the connection.
746 * @param watch the watch to add.
747 * @returns #TRUE on success.
750 _dbus_connection_add_watch_unlocked (DBusConnection *connection,
753 return protected_change_watch (connection, watch,
754 _dbus_watch_list_add_watch,
759 * Removes a watch using the connection's DBusRemoveWatchFunction
760 * if available. It's an error to call this function on a watch
761 * that was not previously added.
762 * Connection lock should be held when calling this.
764 * @param connection the connection.
765 * @param watch the watch to remove.
768 _dbus_connection_remove_watch_unlocked (DBusConnection *connection,
771 protected_change_watch (connection, watch,
773 _dbus_watch_list_remove_watch,
778 * Toggles a watch and notifies app via connection's
779 * DBusWatchToggledFunction if available. It's an error to call this
780 * function on a watch that was not previously added.
781 * Connection lock should be held when calling this.
783 * @param connection the connection.
784 * @param watch the watch to toggle.
785 * @param enabled whether to enable or disable
788 _dbus_connection_toggle_watch_unlocked (DBusConnection *connection,
792 _dbus_assert (watch != NULL);
794 protected_change_watch (connection, watch,
796 _dbus_watch_list_toggle_watch,
800 /** Function to be called in protected_change_timeout() with refcount held */
801 typedef dbus_bool_t (* DBusTimeoutAddFunction) (DBusTimeoutList *list,
802 DBusTimeout *timeout);
803 /** Function to be called in protected_change_timeout() with refcount held */
804 typedef void (* DBusTimeoutRemoveFunction) (DBusTimeoutList *list,
805 DBusTimeout *timeout);
806 /** Function to be called in protected_change_timeout() with refcount held */
807 typedef void (* DBusTimeoutToggleFunction) (DBusTimeoutList *list,
808 DBusTimeout *timeout,
809 dbus_bool_t enabled);
812 protected_change_timeout (DBusConnection *connection,
813 DBusTimeout *timeout,
814 DBusTimeoutAddFunction add_function,
815 DBusTimeoutRemoveFunction remove_function,
816 DBusTimeoutToggleFunction toggle_function,
821 HAVE_LOCK_CHECK (connection);
823 /* The original purpose of protected_change_timeout() was to hold a
824 * ref on the connection while dropping the connection lock, then
825 * calling out to the app. This was a broken hack that did not
826 * work, since the connection was in a hosed state (no TimeoutList
827 * field) while calling out.
829 * So for now we'll just keep the lock while calling out. This means
830 * apps are not allowed to call DBusConnection methods inside a
831 * timeout function or they will deadlock.
833 * The "real fix" is to use the _and_unlock() pattern found
834 * elsewhere in the code, to defer calling out to the app until
835 * we're about to drop locks and return flow of control to the app
838 * See http://lists.freedesktop.org/archives/dbus/2007-July/thread.html#8144
841 if (connection->timeouts)
844 retval = (* add_function) (connection->timeouts, timeout);
845 else if (remove_function)
848 (* remove_function) (connection->timeouts, timeout);
853 (* toggle_function) (connection->timeouts, timeout, enabled);
862 * Adds a timeout using the connection's DBusAddTimeoutFunction if
863 * available. Otherwise records the timeout to be added when said
864 * function is available. Also re-adds the timeout if the
865 * DBusAddTimeoutFunction changes. May fail due to lack of memory.
866 * The timeout will fire repeatedly until removed.
867 * Connection lock should be held when calling this.
869 * @param connection the connection.
870 * @param timeout the timeout to add.
871 * @returns #TRUE on success.
874 _dbus_connection_add_timeout_unlocked (DBusConnection *connection,
875 DBusTimeout *timeout)
877 return protected_change_timeout (connection, timeout,
878 _dbus_timeout_list_add_timeout,
883 * Removes a timeout using the connection's DBusRemoveTimeoutFunction
884 * if available. It's an error to call this function on a timeout
885 * that was not previously added.
886 * Connection lock should be held when calling this.
888 * @param connection the connection.
889 * @param timeout the timeout to remove.
892 _dbus_connection_remove_timeout_unlocked (DBusConnection *connection,
893 DBusTimeout *timeout)
895 protected_change_timeout (connection, timeout,
897 _dbus_timeout_list_remove_timeout,
902 * Toggles a timeout and notifies app via connection's
903 * DBusTimeoutToggledFunction if available. It's an error to call this
904 * function on a timeout that was not previously added.
905 * Connection lock should be held when calling this.
907 * @param connection the connection.
908 * @param timeout the timeout to toggle.
909 * @param enabled whether to enable or disable
912 _dbus_connection_toggle_timeout_unlocked (DBusConnection *connection,
913 DBusTimeout *timeout,
916 protected_change_timeout (connection, timeout,
918 _dbus_timeout_list_toggle_timeout,
923 _dbus_connection_attach_pending_call_unlocked (DBusConnection *connection,
924 DBusPendingCall *pending)
926 dbus_uint32_t reply_serial;
927 DBusTimeout *timeout;
929 HAVE_LOCK_CHECK (connection);
931 reply_serial = _dbus_pending_call_get_reply_serial_unlocked (pending);
933 _dbus_assert (reply_serial != 0);
935 timeout = _dbus_pending_call_get_timeout_unlocked (pending);
939 if (!_dbus_connection_add_timeout_unlocked (connection, timeout))
942 if (!_dbus_hash_table_insert_int (connection->pending_replies,
946 _dbus_connection_remove_timeout_unlocked (connection, timeout);
948 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
949 HAVE_LOCK_CHECK (connection);
953 _dbus_pending_call_set_timeout_added_unlocked (pending, TRUE);
957 if (!_dbus_hash_table_insert_int (connection->pending_replies,
961 HAVE_LOCK_CHECK (connection);
966 _dbus_pending_call_ref_unlocked (pending);
968 HAVE_LOCK_CHECK (connection);
974 free_pending_call_on_hash_removal (void *data)
976 DBusPendingCall *pending;
977 DBusConnection *connection;
984 connection = _dbus_pending_call_get_connection_unlocked (pending);
986 HAVE_LOCK_CHECK (connection);
988 if (_dbus_pending_call_is_timeout_added_unlocked (pending))
990 _dbus_connection_remove_timeout_unlocked (connection,
991 _dbus_pending_call_get_timeout_unlocked (pending));
993 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
996 /* FIXME 1.0? this is sort of dangerous and undesirable to drop the lock
997 * here, but the pending call finalizer could in principle call out to
998 * application code so we pretty much have to... some larger code reorg
1001 _dbus_connection_ref_unlocked (connection);
1002 _dbus_pending_call_unref_and_unlock (pending);
1003 CONNECTION_LOCK (connection);
1004 _dbus_connection_unref_unlocked (connection);
1008 _dbus_connection_detach_pending_call_unlocked (DBusConnection *connection,
1009 DBusPendingCall *pending)
1011 /* This ends up unlocking to call the pending call finalizer, which is unexpected to
1014 _dbus_hash_table_remove_int (connection->pending_replies,
1015 _dbus_pending_call_get_reply_serial_unlocked (pending));
1019 _dbus_connection_detach_pending_call_and_unlock (DBusConnection *connection,
1020 DBusPendingCall *pending)
1022 /* The idea here is to avoid finalizing the pending call
1023 * with the lock held, since there's a destroy notifier
1024 * in pending call that goes out to application code.
1026 * There's an extra unlock inside the hash table
1027 * "free pending call" function FIXME...
1029 _dbus_pending_call_ref_unlocked (pending);
1030 _dbus_hash_table_remove_int (connection->pending_replies,
1031 _dbus_pending_call_get_reply_serial_unlocked (pending));
1033 if (_dbus_pending_call_is_timeout_added_unlocked (pending))
1034 _dbus_connection_remove_timeout_unlocked (connection,
1035 _dbus_pending_call_get_timeout_unlocked (pending));
1037 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
1039 _dbus_pending_call_unref_and_unlock (pending);
1043 * Removes a pending call from the connection, such that
1044 * the pending reply will be ignored. May drop the last
1045 * reference to the pending call.
1047 * @param connection the connection
1048 * @param pending the pending call
1051 _dbus_connection_remove_pending_call (DBusConnection *connection,
1052 DBusPendingCall *pending)
1054 CONNECTION_LOCK (connection);
1055 _dbus_connection_detach_pending_call_and_unlock (connection, pending);
1059 * Acquire the transporter I/O path. This must be done before
1060 * doing any I/O in the transporter. May sleep and drop the
1061 * IO path mutex while waiting for the I/O path.
1063 * @param connection the connection.
1064 * @param timeout_milliseconds maximum blocking time, or -1 for no limit.
1065 * @returns TRUE if the I/O path was acquired.
1068 _dbus_connection_acquire_io_path (DBusConnection *connection,
1069 int timeout_milliseconds)
1071 dbus_bool_t we_acquired;
1073 HAVE_LOCK_CHECK (connection);
1075 /* We don't want the connection to vanish */
1076 _dbus_connection_ref_unlocked (connection);
1078 /* We will only touch io_path_acquired which is protected by our mutex */
1079 CONNECTION_UNLOCK (connection);
1081 _dbus_verbose ("locking io_path_mutex\n");
1082 _dbus_cmutex_lock (connection->io_path_mutex);
1084 _dbus_verbose ("start connection->io_path_acquired = %d timeout = %d\n",
1085 connection->io_path_acquired, timeout_milliseconds);
1087 we_acquired = FALSE;
1089 if (connection->io_path_acquired)
1091 if (timeout_milliseconds != -1)
1093 _dbus_verbose ("waiting %d for IO path to be acquirable\n",
1094 timeout_milliseconds);
1096 if (!_dbus_condvar_wait_timeout (connection->io_path_cond,
1097 connection->io_path_mutex,
1098 timeout_milliseconds))
1100 /* We timed out before anyone signaled. */
1101 /* (writing the loop to handle the !timedout case by
1102 * waiting longer if needed is a pain since dbus
1103 * wraps pthread_cond_timedwait to take a relative
1104 * time instead of absolute, something kind of stupid
1105 * on our part. for now it doesn't matter, we will just
1106 * end up back here eventually.)
1112 while (connection->io_path_acquired)
1114 _dbus_verbose ("waiting for IO path to be acquirable\n");
1115 _dbus_condvar_wait (connection->io_path_cond,
1116 connection->io_path_mutex);
1121 if (!connection->io_path_acquired)
1124 connection->io_path_acquired = TRUE;
1127 _dbus_verbose ("end connection->io_path_acquired = %d we_acquired = %d\n",
1128 connection->io_path_acquired, we_acquired);
1130 _dbus_verbose ("unlocking io_path_mutex\n");
1131 _dbus_cmutex_unlock (connection->io_path_mutex);
1133 CONNECTION_LOCK (connection);
1135 HAVE_LOCK_CHECK (connection);
1137 _dbus_connection_unref_unlocked (connection);
1143 * Release the I/O path when you're done with it. Only call
1144 * after you've acquired the I/O. Wakes up at most one thread
1145 * currently waiting to acquire the I/O path.
1147 * @param connection the connection.
1150 _dbus_connection_release_io_path (DBusConnection *connection)
1152 HAVE_LOCK_CHECK (connection);
1154 _dbus_verbose ("locking io_path_mutex\n");
1155 _dbus_cmutex_lock (connection->io_path_mutex);
1157 _dbus_assert (connection->io_path_acquired);
1159 _dbus_verbose ("start connection->io_path_acquired = %d\n",
1160 connection->io_path_acquired);
1162 connection->io_path_acquired = FALSE;
1163 _dbus_condvar_wake_one (connection->io_path_cond);
1165 _dbus_verbose ("unlocking io_path_mutex\n");
1166 _dbus_cmutex_unlock (connection->io_path_mutex);
1170 * Queues incoming messages and sends outgoing messages for this
1171 * connection, optionally blocking in the process. Each call to
1172 * _dbus_connection_do_iteration_unlocked() will call select() or poll() one
1173 * time and then read or write data if possible.
1175 * The purpose of this function is to be able to flush outgoing
1176 * messages or queue up incoming messages without returning
1177 * control to the application and causing reentrancy weirdness.
1179 * The flags parameter allows you to specify whether to
1180 * read incoming messages, write outgoing messages, or both,
1181 * and whether to block if no immediate action is possible.
1183 * The timeout_milliseconds parameter does nothing unless the
1184 * iteration is blocking.
1186 * If there are no outgoing messages and DBUS_ITERATION_DO_READING
1187 * wasn't specified, then it's impossible to block, even if
1188 * you specify DBUS_ITERATION_BLOCK; in that case the function
1189 * returns immediately.
1191 * If pending is not NULL then a check is made if the pending call
1192 * is completed after the io path has been required. If the call
1193 * has been completed nothing is done. This must be done since
1194 * the _dbus_connection_acquire_io_path releases the connection
1197 * Called with connection lock held.
1199 * @param connection the connection.
1200 * @param pending the pending call that should be checked or NULL
1201 * @param flags iteration flags.
1202 * @param timeout_milliseconds maximum blocking time, or -1 for no limit.
1205 _dbus_connection_do_iteration_unlocked (DBusConnection *connection,
1206 DBusPendingCall *pending,
1208 int timeout_milliseconds)
1210 _dbus_verbose ("start\n");
1212 HAVE_LOCK_CHECK (connection);
1214 if (connection->n_outgoing == 0)
1215 flags &= ~DBUS_ITERATION_DO_WRITING;
1217 if (_dbus_connection_acquire_io_path (connection,
1218 (flags & DBUS_ITERATION_BLOCK) ? timeout_milliseconds : 0))
1220 HAVE_LOCK_CHECK (connection);
1222 if ( (pending != NULL) && _dbus_pending_call_get_completed_unlocked(pending))
1224 _dbus_verbose ("pending call completed while acquiring I/O path");
1226 else if ( (pending != NULL) &&
1227 _dbus_connection_peek_for_reply_unlocked (connection,
1228 _dbus_pending_call_get_reply_serial_unlocked (pending)))
1230 _dbus_verbose ("pending call completed while acquiring I/O path (reply found in queue)");
1234 _dbus_transport_do_iteration (connection->transport,
1235 flags, timeout_milliseconds);
1238 _dbus_connection_release_io_path (connection);
1241 HAVE_LOCK_CHECK (connection);
1243 _dbus_verbose ("end\n");
1247 * Creates a new connection for the given transport. A transport
1248 * represents a message stream that uses some concrete mechanism, such
1249 * as UNIX domain sockets. May return #NULL if insufficient
1250 * memory exists to create the connection.
1252 * @param transport the transport.
1253 * @returns the new connection, or #NULL on failure.
1256 _dbus_connection_new_for_transport (DBusTransport *transport)
1258 DBusConnection *connection;
1259 DBusWatchList *watch_list;
1260 DBusTimeoutList *timeout_list;
1261 DBusHashTable *pending_replies;
1262 DBusList *disconnect_link;
1263 DBusMessage *disconnect_message;
1264 DBusCounter *outgoing_counter;
1265 DBusObjectTree *objects;
1269 pending_replies = NULL;
1270 timeout_list = NULL;
1271 disconnect_link = NULL;
1272 disconnect_message = NULL;
1273 outgoing_counter = NULL;
1276 watch_list = _dbus_watch_list_new ();
1277 if (watch_list == NULL)
1280 timeout_list = _dbus_timeout_list_new ();
1281 if (timeout_list == NULL)
1285 _dbus_hash_table_new (DBUS_HASH_INT,
1287 (DBusFreeFunction)free_pending_call_on_hash_removal);
1288 if (pending_replies == NULL)
1291 connection = dbus_new0 (DBusConnection, 1);
1292 if (connection == NULL)
1295 _dbus_rmutex_new_at_location (&connection->mutex);
1296 if (connection->mutex == NULL)
1299 _dbus_cmutex_new_at_location (&connection->io_path_mutex);
1300 if (connection->io_path_mutex == NULL)
1303 _dbus_cmutex_new_at_location (&connection->dispatch_mutex);
1304 if (connection->dispatch_mutex == NULL)
1307 _dbus_condvar_new_at_location (&connection->dispatch_cond);
1308 if (connection->dispatch_cond == NULL)
1311 _dbus_condvar_new_at_location (&connection->io_path_cond);
1312 if (connection->io_path_cond == NULL)
1315 _dbus_rmutex_new_at_location (&connection->slot_mutex);
1316 if (connection->slot_mutex == NULL)
1319 disconnect_message = dbus_message_new_signal (DBUS_PATH_LOCAL,
1320 DBUS_INTERFACE_LOCAL,
1323 if (disconnect_message == NULL)
1326 disconnect_link = _dbus_list_alloc_link (disconnect_message);
1327 if (disconnect_link == NULL)
1330 outgoing_counter = _dbus_counter_new ();
1331 if (outgoing_counter == NULL)
1334 objects = _dbus_object_tree_new (connection);
1335 if (objects == NULL)
1338 if (_dbus_modify_sigpipe)
1339 _dbus_disable_sigpipe ();
1341 /* initialized to 0: use atomic op to avoid mixing atomic and non-atomic */
1342 _dbus_atomic_inc (&connection->refcount);
1343 connection->transport = transport;
1344 connection->watches = watch_list;
1345 connection->timeouts = timeout_list;
1346 connection->pending_replies = pending_replies;
1347 connection->outgoing_counter = outgoing_counter;
1348 connection->filter_list = NULL;
1349 connection->last_dispatch_status = DBUS_DISPATCH_COMPLETE; /* so we're notified first time there's data */
1350 connection->objects = objects;
1351 connection->exit_on_disconnect = FALSE;
1352 connection->shareable = FALSE;
1353 connection->route_peer_messages = FALSE;
1354 connection->disconnected_message_arrived = FALSE;
1355 connection->disconnected_message_processed = FALSE;
1357 #ifndef DBUS_DISABLE_CHECKS
1358 connection->generation = _dbus_current_generation;
1361 _dbus_data_slot_list_init (&connection->slot_list);
1363 connection->client_serial = 1;
1365 connection->disconnect_message_link = disconnect_link;
1367 CONNECTION_LOCK (connection);
1369 if (!_dbus_transport_set_connection (transport, connection))
1371 CONNECTION_UNLOCK (connection);
1376 _dbus_transport_ref (transport);
1378 CONNECTION_UNLOCK (connection);
1380 _dbus_connection_trace_ref (connection, 0, 1, "new_for_transport");
1384 if (disconnect_message != NULL)
1385 dbus_message_unref (disconnect_message);
1387 if (disconnect_link != NULL)
1388 _dbus_list_free_link (disconnect_link);
1390 if (connection != NULL)
1392 _dbus_condvar_free_at_location (&connection->io_path_cond);
1393 _dbus_condvar_free_at_location (&connection->dispatch_cond);
1394 _dbus_rmutex_free_at_location (&connection->mutex);
1395 _dbus_cmutex_free_at_location (&connection->io_path_mutex);
1396 _dbus_cmutex_free_at_location (&connection->dispatch_mutex);
1397 _dbus_rmutex_free_at_location (&connection->slot_mutex);
1398 dbus_free (connection);
1400 if (pending_replies)
1401 _dbus_hash_table_unref (pending_replies);
1404 _dbus_watch_list_free (watch_list);
1407 _dbus_timeout_list_free (timeout_list);
1409 if (outgoing_counter)
1410 _dbus_counter_unref (outgoing_counter);
1413 _dbus_object_tree_unref (objects);
1419 * Increments the reference count of a DBusConnection.
1420 * Requires that the caller already holds the connection lock.
1422 * @param connection the connection.
1423 * @returns the connection.
1426 _dbus_connection_ref_unlocked (DBusConnection *connection)
1428 dbus_int32_t old_refcount;
1430 _dbus_assert (connection != NULL);
1431 _dbus_assert (connection->generation == _dbus_current_generation);
1433 HAVE_LOCK_CHECK (connection);
1435 old_refcount = _dbus_atomic_inc (&connection->refcount);
1436 _dbus_connection_trace_ref (connection, old_refcount, old_refcount + 1,
1443 * Decrements the reference count of a DBusConnection.
1444 * Requires that the caller already holds the connection lock.
1446 * @param connection the connection.
1449 _dbus_connection_unref_unlocked (DBusConnection *connection)
1451 dbus_int32_t old_refcount;
1453 HAVE_LOCK_CHECK (connection);
1455 _dbus_assert (connection != NULL);
1457 old_refcount = _dbus_atomic_dec (&connection->refcount);
1459 _dbus_connection_trace_ref (connection, old_refcount, old_refcount - 1,
1462 if (old_refcount == 1)
1463 _dbus_connection_last_unref (connection);
1466 static dbus_uint32_t
1467 _dbus_connection_get_next_client_serial (DBusConnection *connection)
1469 dbus_uint32_t serial;
1471 serial = connection->client_serial++;
1473 if (connection->client_serial == 0)
1474 connection->client_serial = 1;
1480 * A callback for use with dbus_watch_new() to create a DBusWatch.
1482 * @todo This is basically a hack - we could delete _dbus_transport_handle_watch()
1483 * and the virtual handle_watch in DBusTransport if we got rid of it.
1484 * The reason this is some work is threading, see the _dbus_connection_handle_watch()
1487 * @param watch the watch.
1488 * @param condition the current condition of the file descriptors being watched.
1489 * @param data must be a pointer to a #DBusConnection
1490 * @returns #FALSE if the IO condition may not have been fully handled due to lack of memory
1493 _dbus_connection_handle_watch (DBusWatch *watch,
1494 unsigned int condition,
1497 DBusConnection *connection;
1499 DBusDispatchStatus status;
1503 _dbus_verbose ("start\n");
1505 CONNECTION_LOCK (connection);
1507 if (!_dbus_connection_acquire_io_path (connection, 1))
1509 /* another thread is handling the message */
1510 CONNECTION_UNLOCK (connection);
1514 HAVE_LOCK_CHECK (connection);
1515 retval = _dbus_transport_handle_watch (connection->transport,
1518 _dbus_connection_release_io_path (connection);
1520 HAVE_LOCK_CHECK (connection);
1522 _dbus_verbose ("middle\n");
1524 status = _dbus_connection_get_dispatch_status_unlocked (connection);
1526 /* this calls out to user code */
1527 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
1529 _dbus_verbose ("end\n");
1534 _DBUS_DEFINE_GLOBAL_LOCK (shared_connections);
1535 static DBusHashTable *shared_connections = NULL;
1536 static DBusList *shared_connections_no_guid = NULL;
1539 close_connection_on_shutdown (DBusConnection *connection)
1541 DBusMessage *message;
1543 dbus_connection_ref (connection);
1544 _dbus_connection_close_possibly_shared (connection);
1546 /* Churn through to the Disconnected message */
1547 while ((message = dbus_connection_pop_message (connection)))
1549 dbus_message_unref (message);
1551 dbus_connection_unref (connection);
1555 shared_connections_shutdown (void *data)
1559 _DBUS_LOCK (shared_connections);
1561 /* This is a little bit unpleasant... better ideas? */
1562 while ((n_entries = _dbus_hash_table_get_n_entries (shared_connections)) > 0)
1564 DBusConnection *connection;
1567 _dbus_hash_iter_init (shared_connections, &iter);
1568 _dbus_hash_iter_next (&iter);
1570 connection = _dbus_hash_iter_get_value (&iter);
1572 _DBUS_UNLOCK (shared_connections);
1573 close_connection_on_shutdown (connection);
1574 _DBUS_LOCK (shared_connections);
1576 /* The connection should now be dead and not in our hash ... */
1577 _dbus_assert (_dbus_hash_table_get_n_entries (shared_connections) < n_entries);
1580 _dbus_assert (_dbus_hash_table_get_n_entries (shared_connections) == 0);
1582 _dbus_hash_table_unref (shared_connections);
1583 shared_connections = NULL;
1585 if (shared_connections_no_guid != NULL)
1587 DBusConnection *connection;
1588 connection = _dbus_list_pop_first (&shared_connections_no_guid);
1589 while (connection != NULL)
1591 _DBUS_UNLOCK (shared_connections);
1592 close_connection_on_shutdown (connection);
1593 _DBUS_LOCK (shared_connections);
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 _DBUS_LOCK (shared_connections);
1613 if (shared_connections == NULL)
1615 _dbus_verbose ("creating shared_connections hash table\n");
1617 shared_connections = _dbus_hash_table_new (DBUS_HASH_STRING,
1620 if (shared_connections == NULL)
1622 _DBUS_UNLOCK (shared_connections);
1626 if (!_dbus_register_shutdown_func (shared_connections_shutdown, NULL))
1628 _dbus_hash_table_unref (shared_connections);
1629 shared_connections = NULL;
1630 _DBUS_UNLOCK (shared_connections);
1634 _dbus_verbose (" successfully created shared_connections\n");
1636 _DBUS_UNLOCK (shared_connections);
1637 return TRUE; /* no point looking up in the hash we just made */
1643 guid = dbus_address_entry_get_value (entry, "guid");
1647 DBusConnection *connection;
1649 connection = _dbus_hash_table_lookup_string (shared_connections,
1654 /* The DBusConnection can't be finalized without taking
1655 * the shared_connections lock to remove it from the
1656 * hash. So it's safe to ref the connection here.
1657 * However, it may be disconnected if the Disconnected
1658 * message hasn't been processed yet, in which case we
1659 * want to pretend it isn't in the hash and avoid
1662 * The idea is to avoid ever returning a disconnected connection
1663 * from dbus_connection_open(). We could just synchronously
1664 * drop our shared ref to the connection on connection disconnect,
1665 * and then assert here that the connection is connected, but
1666 * that causes reentrancy headaches.
1668 CONNECTION_LOCK (connection);
1669 if (_dbus_connection_get_is_connected_unlocked (connection))
1671 _dbus_connection_ref_unlocked (connection);
1672 *result = connection;
1673 _dbus_verbose ("looked up existing connection to server guid %s\n",
1678 _dbus_verbose ("looked up existing connection to server guid %s but it was disconnected so ignoring it\n",
1681 CONNECTION_UNLOCK (connection);
1685 _DBUS_UNLOCK (shared_connections);
1691 connection_record_shared_unlocked (DBusConnection *connection,
1695 char *guid_in_connection;
1697 HAVE_LOCK_CHECK (connection);
1698 _dbus_assert (connection->server_guid == NULL);
1699 _dbus_assert (connection->shareable);
1701 /* get a hard ref on this connection, even if
1702 * we won't in fact store it in the hash, we still
1703 * need to hold a ref on it until it's disconnected.
1705 _dbus_connection_ref_unlocked (connection);
1709 _DBUS_LOCK (shared_connections);
1711 if (!_dbus_list_prepend (&shared_connections_no_guid, connection))
1713 _DBUS_UNLOCK (shared_connections);
1717 _DBUS_UNLOCK (shared_connections);
1718 return TRUE; /* don't store in the hash */
1721 /* A separate copy of the key is required in the hash table, because
1722 * we don't have a lock on the connection when we are doing a hash
1726 guid_key = _dbus_strdup (guid);
1727 if (guid_key == NULL)
1730 guid_in_connection = _dbus_strdup (guid);
1731 if (guid_in_connection == NULL)
1733 dbus_free (guid_key);
1737 _DBUS_LOCK (shared_connections);
1738 _dbus_assert (shared_connections != NULL);
1740 if (!_dbus_hash_table_insert_string (shared_connections,
1741 guid_key, connection))
1743 dbus_free (guid_key);
1744 dbus_free (guid_in_connection);
1745 _DBUS_UNLOCK (shared_connections);
1749 connection->server_guid = guid_in_connection;
1751 _dbus_verbose ("stored connection to %s to be shared\n",
1752 connection->server_guid);
1754 _DBUS_UNLOCK (shared_connections);
1756 _dbus_assert (connection->server_guid != NULL);
1762 connection_forget_shared_unlocked (DBusConnection *connection)
1764 HAVE_LOCK_CHECK (connection);
1766 if (!connection->shareable)
1769 _DBUS_LOCK (shared_connections);
1771 if (connection->server_guid != NULL)
1773 _dbus_verbose ("dropping connection to %s out of the shared table\n",
1774 connection->server_guid);
1776 if (!_dbus_hash_table_remove_string (shared_connections,
1777 connection->server_guid))
1778 _dbus_assert_not_reached ("connection was not in the shared table");
1780 dbus_free (connection->server_guid);
1781 connection->server_guid = NULL;
1785 _dbus_list_remove (&shared_connections_no_guid, connection);
1788 _DBUS_UNLOCK (shared_connections);
1790 /* remove our reference held on all shareable connections */
1791 _dbus_connection_unref_unlocked (connection);
1794 static DBusConnection*
1795 connection_try_from_address_entry (DBusAddressEntry *entry,
1798 DBusTransport *transport;
1799 DBusConnection *connection;
1801 transport = _dbus_transport_open (entry, error);
1803 if (transport == NULL)
1805 _DBUS_ASSERT_ERROR_IS_SET (error);
1809 connection = _dbus_connection_new_for_transport (transport);
1811 _dbus_transport_unref (transport);
1813 if (connection == NULL)
1815 _DBUS_SET_OOM (error);
1819 #ifndef DBUS_DISABLE_CHECKS
1820 _dbus_assert (!connection->have_connection_lock);
1826 * If the shared parameter is true, then any existing connection will
1827 * be used (and if a new connection is created, it will be available
1828 * for use by others). If the shared parameter is false, a new
1829 * connection will always be created, and the new connection will
1830 * never be returned to other callers.
1832 * @param address the address
1833 * @param shared whether the connection is shared or private
1834 * @param error error return
1835 * @returns the connection or #NULL on error
1837 static DBusConnection*
1838 _dbus_connection_open_internal (const char *address,
1842 DBusConnection *connection;
1843 DBusAddressEntry **entries;
1844 DBusError tmp_error = DBUS_ERROR_INIT;
1845 DBusError first_error = DBUS_ERROR_INIT;
1848 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1850 _dbus_verbose ("opening %s connection to: %s\n",
1851 shared ? "shared" : "private", address);
1853 if (!dbus_parse_address (address, &entries, &len, error))
1856 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1860 for (i = 0; i < len; i++)
1864 if (!connection_lookup_shared (entries[i], &connection))
1865 _DBUS_SET_OOM (&tmp_error);
1868 if (connection == NULL)
1870 connection = connection_try_from_address_entry (entries[i],
1873 if (connection != NULL && shared)
1877 connection->shareable = TRUE;
1879 /* guid may be NULL */
1880 guid = dbus_address_entry_get_value (entries[i], "guid");
1882 CONNECTION_LOCK (connection);
1884 if (!connection_record_shared_unlocked (connection, guid))
1886 _DBUS_SET_OOM (&tmp_error);
1887 _dbus_connection_close_possibly_shared_and_unlock (connection);
1888 dbus_connection_unref (connection);
1892 CONNECTION_UNLOCK (connection);
1899 _DBUS_ASSERT_ERROR_IS_SET (&tmp_error);
1902 dbus_move_error (&tmp_error, &first_error);
1904 dbus_error_free (&tmp_error);
1907 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1908 _DBUS_ASSERT_ERROR_IS_CLEAR (&tmp_error);
1910 if (connection == NULL)
1912 _DBUS_ASSERT_ERROR_IS_SET (&first_error);
1913 dbus_move_error (&first_error, error);
1916 dbus_error_free (&first_error);
1918 dbus_address_entries_free (entries);
1923 * Closes a shared OR private connection, while dbus_connection_close() can
1924 * only be used on private connections. Should only be called by the
1925 * dbus code that owns the connection - an owner must be known,
1926 * the open/close state is like malloc/free, not like ref/unref.
1928 * @param connection the connection
1931 _dbus_connection_close_possibly_shared (DBusConnection *connection)
1933 _dbus_assert (connection != NULL);
1934 _dbus_assert (connection->generation == _dbus_current_generation);
1936 CONNECTION_LOCK (connection);
1937 _dbus_connection_close_possibly_shared_and_unlock (connection);
1940 static DBusPreallocatedSend*
1941 _dbus_connection_preallocate_send_unlocked (DBusConnection *connection)
1943 DBusPreallocatedSend *preallocated;
1945 HAVE_LOCK_CHECK (connection);
1947 _dbus_assert (connection != NULL);
1949 preallocated = dbus_new (DBusPreallocatedSend, 1);
1950 if (preallocated == NULL)
1953 preallocated->queue_link = _dbus_list_alloc_link (NULL);
1954 if (preallocated->queue_link == NULL)
1957 preallocated->counter_link = _dbus_list_alloc_link (connection->outgoing_counter);
1958 if (preallocated->counter_link == NULL)
1961 _dbus_counter_ref (preallocated->counter_link->data);
1963 preallocated->connection = connection;
1965 return preallocated;
1968 _dbus_list_free_link (preallocated->queue_link);
1970 dbus_free (preallocated);
1975 /* Called with lock held, does not update dispatch status */
1977 _dbus_connection_send_preallocated_unlocked_no_update (DBusConnection *connection,
1978 DBusPreallocatedSend *preallocated,
1979 DBusMessage *message,
1980 dbus_uint32_t *client_serial)
1982 dbus_uint32_t serial;
1984 preallocated->queue_link->data = message;
1985 _dbus_list_prepend_link (&connection->outgoing_messages,
1986 preallocated->queue_link);
1988 /* It's OK that we'll never call the notify function, because for the
1989 * outgoing limit, there isn't one */
1990 _dbus_message_add_counter_link (message,
1991 preallocated->counter_link);
1993 dbus_free (preallocated);
1994 preallocated = NULL;
1996 dbus_message_ref (message);
1998 connection->n_outgoing += 1;
2000 _dbus_verbose ("Message %p (%s %s %s %s '%s') for %s added to outgoing queue %p, %d pending to send\n",
2002 dbus_message_type_to_string (dbus_message_get_type (message)),
2003 dbus_message_get_path (message) ?
2004 dbus_message_get_path (message) :
2006 dbus_message_get_interface (message) ?
2007 dbus_message_get_interface (message) :
2009 dbus_message_get_member (message) ?
2010 dbus_message_get_member (message) :
2012 dbus_message_get_signature (message),
2013 dbus_message_get_destination (message) ?
2014 dbus_message_get_destination (message) :
2017 connection->n_outgoing);
2019 if (dbus_message_get_serial (message) == 0)
2021 serial = _dbus_connection_get_next_client_serial (connection);
2022 dbus_message_set_serial (message, serial);
2024 *client_serial = serial;
2029 *client_serial = dbus_message_get_serial (message);
2032 _dbus_verbose ("Message %p serial is %u\n",
2033 message, dbus_message_get_serial (message));
2035 dbus_message_lock (message);
2037 /* Now we need to run an iteration to hopefully just write the messages
2038 * out immediately, and otherwise get them queued up
2040 _dbus_connection_do_iteration_unlocked (connection,
2042 DBUS_ITERATION_DO_WRITING,
2045 /* If stuff is still queued up, be sure we wake up the main loop */
2046 if (connection->n_outgoing > 0)
2047 _dbus_connection_wakeup_mainloop (connection);
2051 _dbus_connection_send_preallocated_and_unlock (DBusConnection *connection,
2052 DBusPreallocatedSend *preallocated,
2053 DBusMessage *message,
2054 dbus_uint32_t *client_serial)
2056 DBusDispatchStatus status;
2058 HAVE_LOCK_CHECK (connection);
2060 _dbus_connection_send_preallocated_unlocked_no_update (connection,
2062 message, client_serial);
2064 _dbus_verbose ("middle\n");
2065 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2067 /* this calls out to user code */
2068 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2072 * Like dbus_connection_send(), but assumes the connection
2073 * is already locked on function entry, and unlocks before returning.
2075 * @param connection the connection
2076 * @param message the message to send
2077 * @param client_serial return location for client serial of sent message
2078 * @returns #FALSE on out-of-memory
2081 _dbus_connection_send_and_unlock (DBusConnection *connection,
2082 DBusMessage *message,
2083 dbus_uint32_t *client_serial)
2085 DBusPreallocatedSend *preallocated;
2087 _dbus_assert (connection != NULL);
2088 _dbus_assert (message != NULL);
2090 preallocated = _dbus_connection_preallocate_send_unlocked (connection);
2091 if (preallocated == NULL)
2093 CONNECTION_UNLOCK (connection);
2097 _dbus_connection_send_preallocated_and_unlock (connection,
2105 * Used internally to handle the semantics of dbus_server_set_new_connection_function().
2106 * If the new connection function does not ref the connection, we want to close it.
2108 * A bit of a hack, probably the new connection function should have returned a value
2109 * for whether to close, or should have had to close the connection itself if it
2112 * But, this works OK as long as the new connection function doesn't do anything
2113 * crazy like keep the connection around without ref'ing it.
2115 * We have to lock the connection across refcount check and close in case
2116 * the new connection function spawns a thread that closes and unrefs.
2117 * In that case, if the app thread
2118 * closes and unrefs first, we'll harmlessly close again; if the app thread
2119 * still has the ref, we'll close and then the app will close harmlessly.
2120 * If the app unrefs without closing, the app is broken since if the
2121 * app refs from the new connection function it is supposed to also close.
2123 * If we didn't atomically check the refcount and close with the lock held
2124 * though, we could screw this up.
2126 * @param connection the connection
2129 _dbus_connection_close_if_only_one_ref (DBusConnection *connection)
2131 dbus_int32_t refcount;
2133 CONNECTION_LOCK (connection);
2135 refcount = _dbus_atomic_get (&connection->refcount);
2136 /* The caller should have at least one ref */
2137 _dbus_assert (refcount >= 1);
2140 _dbus_connection_close_possibly_shared_and_unlock (connection);
2142 CONNECTION_UNLOCK (connection);
2147 * When a function that blocks has been called with a timeout, and we
2148 * run out of memory, the time to wait for memory is based on the
2149 * timeout. If the caller was willing to block a long time we wait a
2150 * relatively long time for memory, if they were only willing to block
2151 * briefly then we retry for memory at a rapid rate.
2153 * @timeout_milliseconds the timeout requested for blocking
2156 _dbus_memory_pause_based_on_timeout (int timeout_milliseconds)
2158 if (timeout_milliseconds == -1)
2159 _dbus_sleep_milliseconds (1000);
2160 else if (timeout_milliseconds < 100)
2161 ; /* just busy loop */
2162 else if (timeout_milliseconds <= 1000)
2163 _dbus_sleep_milliseconds (timeout_milliseconds / 3);
2165 _dbus_sleep_milliseconds (1000);
2168 static DBusMessage *
2169 generate_local_error_message (dbus_uint32_t serial,
2173 DBusMessage *message;
2174 message = dbus_message_new (DBUS_MESSAGE_TYPE_ERROR);
2178 if (!dbus_message_set_error_name (message, error_name))
2180 dbus_message_unref (message);
2185 dbus_message_set_no_reply (message, TRUE);
2187 if (!dbus_message_set_reply_serial (message,
2190 dbus_message_unref (message);
2195 if (error_msg != NULL)
2197 DBusMessageIter iter;
2199 dbus_message_iter_init_append (message, &iter);
2200 if (!dbus_message_iter_append_basic (&iter,
2204 dbus_message_unref (message);
2215 * Peek the incoming queue to see if we got reply for a specific serial
2218 _dbus_connection_peek_for_reply_unlocked (DBusConnection *connection,
2219 dbus_uint32_t client_serial)
2222 HAVE_LOCK_CHECK (connection);
2224 link = _dbus_list_get_first_link (&connection->incoming_messages);
2226 while (link != NULL)
2228 DBusMessage *reply = link->data;
2230 if (dbus_message_get_reply_serial (reply) == client_serial)
2232 _dbus_verbose ("%s reply to %d found in queue\n", _DBUS_FUNCTION_NAME, client_serial);
2235 link = _dbus_list_get_next_link (&connection->incoming_messages, link);
2241 /* This is slightly strange since we can pop a message here without
2242 * the dispatch lock.
2245 check_for_reply_unlocked (DBusConnection *connection,
2246 dbus_uint32_t client_serial)
2250 HAVE_LOCK_CHECK (connection);
2252 link = _dbus_list_get_first_link (&connection->incoming_messages);
2254 while (link != NULL)
2256 DBusMessage *reply = link->data;
2258 if (dbus_message_get_reply_serial (reply) == client_serial)
2260 _dbus_list_remove_link (&connection->incoming_messages, link);
2261 connection->n_incoming -= 1;
2264 link = _dbus_list_get_next_link (&connection->incoming_messages, link);
2271 connection_timeout_and_complete_all_pending_calls_unlocked (DBusConnection *connection)
2273 /* We can't iterate over the hash in the normal way since we'll be
2274 * dropping the lock for each item. So we restart the
2275 * iter each time as we drain the hash table.
2278 while (_dbus_hash_table_get_n_entries (connection->pending_replies) > 0)
2280 DBusPendingCall *pending;
2283 _dbus_hash_iter_init (connection->pending_replies, &iter);
2284 _dbus_hash_iter_next (&iter);
2286 pending = _dbus_hash_iter_get_value (&iter);
2287 _dbus_pending_call_ref_unlocked (pending);
2289 _dbus_pending_call_queue_timeout_error_unlocked (pending,
2292 if (_dbus_pending_call_is_timeout_added_unlocked (pending))
2293 _dbus_connection_remove_timeout_unlocked (connection,
2294 _dbus_pending_call_get_timeout_unlocked (pending));
2295 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
2296 _dbus_hash_iter_remove_entry (&iter);
2298 _dbus_pending_call_unref_and_unlock (pending);
2299 CONNECTION_LOCK (connection);
2301 HAVE_LOCK_CHECK (connection);
2305 complete_pending_call_and_unlock (DBusConnection *connection,
2306 DBusPendingCall *pending,
2307 DBusMessage *message)
2309 _dbus_pending_call_set_reply_unlocked (pending, message);
2310 _dbus_pending_call_ref_unlocked (pending); /* in case there's no app with a ref held */
2311 _dbus_connection_detach_pending_call_and_unlock (connection, pending);
2313 /* Must be called unlocked since it invokes app callback */
2314 _dbus_pending_call_complete (pending);
2315 dbus_pending_call_unref (pending);
2319 check_for_reply_and_update_dispatch_unlocked (DBusConnection *connection,
2320 DBusPendingCall *pending)
2323 DBusDispatchStatus status;
2325 reply = check_for_reply_unlocked (connection,
2326 _dbus_pending_call_get_reply_serial_unlocked (pending));
2329 _dbus_verbose ("checked for reply\n");
2331 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): got reply\n");
2333 complete_pending_call_and_unlock (connection, pending, reply);
2334 dbus_message_unref (reply);
2336 CONNECTION_LOCK (connection);
2337 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2338 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2339 dbus_pending_call_unref (pending);
2348 * Blocks until a pending call times out or gets a reply.
2350 * Does not re-enter the main loop or run filter/path-registered
2351 * callbacks. The reply to the message will not be seen by
2354 * Returns immediately if pending call already got a reply.
2356 * @todo could use performance improvements (it keeps scanning
2357 * the whole message queue for example)
2359 * @param pending the pending call we block for a reply on
2362 _dbus_connection_block_pending_call (DBusPendingCall *pending)
2364 long start_tv_sec, start_tv_usec;
2365 long tv_sec, tv_usec;
2366 DBusDispatchStatus status;
2367 DBusConnection *connection;
2368 dbus_uint32_t client_serial;
2369 DBusTimeout *timeout;
2370 int timeout_milliseconds, elapsed_milliseconds;
2372 _dbus_assert (pending != NULL);
2374 if (dbus_pending_call_get_completed (pending))
2377 dbus_pending_call_ref (pending); /* necessary because the call could be canceled */
2379 connection = _dbus_pending_call_get_connection_and_lock (pending);
2381 /* Flush message queue - note, can affect dispatch status */
2382 _dbus_connection_flush_unlocked (connection);
2384 client_serial = _dbus_pending_call_get_reply_serial_unlocked (pending);
2386 /* note that timeout_milliseconds is limited to a smallish value
2387 * in _dbus_pending_call_new() so overflows aren't possible
2390 timeout = _dbus_pending_call_get_timeout_unlocked (pending);
2391 _dbus_get_current_time (&start_tv_sec, &start_tv_usec);
2394 timeout_milliseconds = dbus_timeout_get_interval (timeout);
2396 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): will block %d milliseconds for reply serial %u from %ld sec %ld usec\n",
2397 timeout_milliseconds,
2399 start_tv_sec, start_tv_usec);
2403 timeout_milliseconds = -1;
2405 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): will block for reply serial %u\n", client_serial);
2408 /* check to see if we already got the data off the socket */
2409 /* from another blocked pending call */
2410 if (check_for_reply_and_update_dispatch_unlocked (connection, pending))
2413 /* Now we wait... */
2414 /* always block at least once as we know we don't have the reply yet */
2415 _dbus_connection_do_iteration_unlocked (connection,
2417 DBUS_ITERATION_DO_READING |
2418 DBUS_ITERATION_BLOCK,
2419 timeout_milliseconds);
2423 _dbus_verbose ("top of recheck\n");
2425 HAVE_LOCK_CHECK (connection);
2427 /* queue messages and get status */
2429 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2431 /* the get_completed() is in case a dispatch() while we were blocking
2432 * got the reply instead of us.
2434 if (_dbus_pending_call_get_completed_unlocked (pending))
2436 _dbus_verbose ("Pending call completed by dispatch\n");
2437 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2438 dbus_pending_call_unref (pending);
2442 if (status == DBUS_DISPATCH_DATA_REMAINS)
2444 if (check_for_reply_and_update_dispatch_unlocked (connection, pending))
2448 _dbus_get_current_time (&tv_sec, &tv_usec);
2449 elapsed_milliseconds = (tv_sec - start_tv_sec) * 1000 +
2450 (tv_usec - start_tv_usec) / 1000;
2452 if (!_dbus_connection_get_is_connected_unlocked (connection))
2454 DBusMessage *error_msg;
2456 error_msg = generate_local_error_message (client_serial,
2457 DBUS_ERROR_DISCONNECTED,
2458 "Connection was disconnected before a reply was received");
2460 /* on OOM error_msg is set to NULL */
2461 complete_pending_call_and_unlock (connection, pending, error_msg);
2462 dbus_pending_call_unref (pending);
2465 else if (connection->disconnect_message_link == NULL)
2466 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): disconnected\n");
2467 else if (timeout == NULL)
2469 if (status == DBUS_DISPATCH_NEED_MEMORY)
2471 /* Try sleeping a bit, as we aren't sure we need to block for reading,
2472 * we may already have a reply in the buffer and just can't process
2475 _dbus_verbose ("dbus_connection_send_with_reply_and_block() waiting for more memory\n");
2477 _dbus_memory_pause_based_on_timeout (timeout_milliseconds - elapsed_milliseconds);
2481 /* block again, we don't have the reply buffered yet. */
2482 _dbus_connection_do_iteration_unlocked (connection,
2484 DBUS_ITERATION_DO_READING |
2485 DBUS_ITERATION_BLOCK,
2486 timeout_milliseconds - elapsed_milliseconds);
2489 goto recheck_status;
2491 else if (tv_sec < start_tv_sec)
2492 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): clock set backward\n");
2493 else if (elapsed_milliseconds < timeout_milliseconds)
2495 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): %d milliseconds remain\n", timeout_milliseconds - elapsed_milliseconds);
2497 if (status == DBUS_DISPATCH_NEED_MEMORY)
2499 /* Try sleeping a bit, as we aren't sure we need to block for reading,
2500 * we may already have a reply in the buffer and just can't process
2503 _dbus_verbose ("dbus_connection_send_with_reply_and_block() waiting for more memory\n");
2505 _dbus_memory_pause_based_on_timeout (timeout_milliseconds - elapsed_milliseconds);
2509 /* block again, we don't have the reply buffered yet. */
2510 _dbus_connection_do_iteration_unlocked (connection,
2512 DBUS_ITERATION_DO_READING |
2513 DBUS_ITERATION_BLOCK,
2514 timeout_milliseconds - elapsed_milliseconds);
2517 goto recheck_status;
2520 _dbus_verbose ("dbus_connection_send_with_reply_and_block(): Waited %d milliseconds and got no reply\n",
2521 elapsed_milliseconds);
2523 _dbus_assert (!_dbus_pending_call_get_completed_unlocked (pending));
2525 /* unlock and call user code */
2526 complete_pending_call_and_unlock (connection, pending, NULL);
2528 /* update user code on dispatch status */
2529 CONNECTION_LOCK (connection);
2530 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2531 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2532 dbus_pending_call_unref (pending);
2538 * @addtogroup DBusConnection
2544 * Gets a connection to a remote address. If a connection to the given
2545 * address already exists, returns the existing connection with its
2546 * reference count incremented. Otherwise, returns a new connection
2547 * and saves the new connection for possible re-use if a future call
2548 * to dbus_connection_open() asks to connect to the same server.
2550 * Use dbus_connection_open_private() to get a dedicated connection
2551 * not shared with other callers of dbus_connection_open().
2553 * If the open fails, the function returns #NULL, and provides a
2554 * reason for the failure in the error parameter. Pass #NULL for the
2555 * error parameter if you aren't interested in the reason for
2558 * Because this connection is shared, no user of the connection
2559 * may call dbus_connection_close(). However, when you are done with the
2560 * connection you should call dbus_connection_unref().
2562 * @note Prefer dbus_connection_open() to dbus_connection_open_private()
2563 * unless you have good reason; connections are expensive enough
2564 * that it's wasteful to create lots of connections to the same
2567 * @param address the address.
2568 * @param error address where an error can be returned.
2569 * @returns new connection, or #NULL on failure.
2572 dbus_connection_open (const char *address,
2575 DBusConnection *connection;
2577 _dbus_return_val_if_fail (address != NULL, NULL);
2578 _dbus_return_val_if_error_is_set (error, NULL);
2580 connection = _dbus_connection_open_internal (address,
2588 * Opens a new, dedicated connection to a remote address. Unlike
2589 * dbus_connection_open(), always creates a new connection.
2590 * This connection will not be saved or recycled by libdbus.
2592 * If the open fails, the function returns #NULL, and provides a
2593 * reason for the failure in the error parameter. Pass #NULL for the
2594 * error parameter if you aren't interested in the reason for
2597 * When you are done with this connection, you must
2598 * dbus_connection_close() to disconnect it,
2599 * and dbus_connection_unref() to free the connection object.
2601 * (The dbus_connection_close() can be skipped if the
2602 * connection is already known to be disconnected, for example
2603 * if you are inside a handler for the Disconnected signal.)
2605 * @note Prefer dbus_connection_open() to dbus_connection_open_private()
2606 * unless you have good reason; connections are expensive enough
2607 * that it's wasteful to create lots of connections to the same
2610 * @param address the address.
2611 * @param error address where an error can be returned.
2612 * @returns new connection, or #NULL on failure.
2615 dbus_connection_open_private (const char *address,
2618 DBusConnection *connection;
2620 _dbus_return_val_if_fail (address != NULL, NULL);
2621 _dbus_return_val_if_error_is_set (error, NULL);
2623 connection = _dbus_connection_open_internal (address,
2631 * Increments the reference count of a DBusConnection.
2633 * @param connection the connection.
2634 * @returns the connection.
2637 dbus_connection_ref (DBusConnection *connection)
2639 dbus_int32_t old_refcount;
2641 _dbus_return_val_if_fail (connection != NULL, NULL);
2642 _dbus_return_val_if_fail (connection->generation == _dbus_current_generation, NULL);
2643 old_refcount = _dbus_atomic_inc (&connection->refcount);
2644 _dbus_connection_trace_ref (connection, old_refcount, old_refcount + 1,
2651 free_outgoing_message (void *element,
2654 DBusMessage *message = element;
2655 DBusConnection *connection = data;
2657 _dbus_message_remove_counter (message, connection->outgoing_counter);
2658 dbus_message_unref (message);
2661 /* This is run without the mutex held, but after the last reference
2662 * to the connection has been dropped we should have no thread-related
2666 _dbus_connection_last_unref (DBusConnection *connection)
2670 _dbus_verbose ("Finalizing connection %p\n", connection);
2672 _dbus_assert (_dbus_atomic_get (&connection->refcount) == 0);
2674 /* You have to disconnect the connection before unref:ing it. Otherwise
2675 * you won't get the disconnected message.
2677 _dbus_assert (!_dbus_transport_get_is_connected (connection->transport));
2678 _dbus_assert (connection->server_guid == NULL);
2680 /* ---- We're going to call various application callbacks here, hope it doesn't break anything... */
2681 _dbus_object_tree_free_all_unlocked (connection->objects);
2683 dbus_connection_set_dispatch_status_function (connection, NULL, NULL, NULL);
2684 dbus_connection_set_wakeup_main_function (connection, NULL, NULL, NULL);
2685 dbus_connection_set_unix_user_function (connection, NULL, NULL, NULL);
2687 _dbus_watch_list_free (connection->watches);
2688 connection->watches = NULL;
2690 _dbus_timeout_list_free (connection->timeouts);
2691 connection->timeouts = NULL;
2693 _dbus_data_slot_list_free (&connection->slot_list);
2695 link = _dbus_list_get_first_link (&connection->filter_list);
2696 while (link != NULL)
2698 DBusMessageFilter *filter = link->data;
2699 DBusList *next = _dbus_list_get_next_link (&connection->filter_list, link);
2701 filter->function = NULL;
2702 _dbus_message_filter_unref (filter); /* calls app callback */
2707 _dbus_list_clear (&connection->filter_list);
2709 /* ---- Done with stuff that invokes application callbacks */
2711 _dbus_object_tree_unref (connection->objects);
2713 _dbus_hash_table_unref (connection->pending_replies);
2714 connection->pending_replies = NULL;
2716 _dbus_list_clear (&connection->filter_list);
2718 _dbus_list_foreach (&connection->outgoing_messages,
2719 free_outgoing_message,
2721 _dbus_list_clear (&connection->outgoing_messages);
2723 _dbus_list_foreach (&connection->incoming_messages,
2724 (DBusForeachFunction) dbus_message_unref,
2726 _dbus_list_clear (&connection->incoming_messages);
2728 _dbus_counter_unref (connection->outgoing_counter);
2730 _dbus_transport_unref (connection->transport);
2732 if (connection->disconnect_message_link)
2734 DBusMessage *message = connection->disconnect_message_link->data;
2735 dbus_message_unref (message);
2736 _dbus_list_free_link (connection->disconnect_message_link);
2739 _dbus_condvar_free_at_location (&connection->dispatch_cond);
2740 _dbus_condvar_free_at_location (&connection->io_path_cond);
2742 _dbus_cmutex_free_at_location (&connection->io_path_mutex);
2743 _dbus_cmutex_free_at_location (&connection->dispatch_mutex);
2745 _dbus_rmutex_free_at_location (&connection->slot_mutex);
2747 _dbus_rmutex_free_at_location (&connection->mutex);
2749 dbus_free (connection);
2753 * Decrements the reference count of a DBusConnection, and finalizes
2754 * it if the count reaches zero.
2756 * Note: it is a bug to drop the last reference to a connection that
2757 * is still connected.
2759 * For shared connections, libdbus will own a reference
2760 * as long as the connection is connected, so you can know that either
2761 * you don't have the last reference, or it's OK to drop the last reference.
2762 * Most connections are shared. dbus_connection_open() and dbus_bus_get()
2763 * return shared connections.
2765 * For private connections, the creator of the connection must arrange for
2766 * dbus_connection_close() to be called prior to dropping the last reference.
2767 * Private connections come from dbus_connection_open_private() or dbus_bus_get_private().
2769 * @param connection the connection.
2772 dbus_connection_unref (DBusConnection *connection)
2774 dbus_int32_t old_refcount;
2776 _dbus_return_if_fail (connection != NULL);
2777 _dbus_return_if_fail (connection->generation == _dbus_current_generation);
2779 old_refcount = _dbus_atomic_dec (&connection->refcount);
2781 _dbus_connection_trace_ref (connection, old_refcount, old_refcount - 1,
2784 if (old_refcount == 1)
2786 #ifndef DBUS_DISABLE_CHECKS
2787 if (_dbus_transport_get_is_connected (connection->transport))
2789 _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",
2790 connection->shareable ?
2791 "Most likely, the application called unref() too many times and removed a reference belonging to libdbus, since this is a shared connection.\n" :
2792 "Most likely, the application was supposed to call dbus_connection_close(), since this is a private connection.\n");
2796 _dbus_connection_last_unref (connection);
2801 * Note that the transport can disconnect itself (other end drops us)
2802 * and in that case this function never runs. So this function must
2803 * not do anything more than disconnect the transport and update the
2806 * If the transport self-disconnects, then we assume someone will
2807 * dispatch the connection to cause the dispatch status update.
2810 _dbus_connection_close_possibly_shared_and_unlock (DBusConnection *connection)
2812 DBusDispatchStatus status;
2814 HAVE_LOCK_CHECK (connection);
2816 _dbus_verbose ("Disconnecting %p\n", connection);
2818 /* We need to ref because update_dispatch_status_and_unlock will unref
2819 * the connection if it was shared and libdbus was the only remaining
2822 _dbus_connection_ref_unlocked (connection);
2824 _dbus_transport_disconnect (connection->transport);
2826 /* This has the side effect of queuing the disconnect message link
2827 * (unless we don't have enough memory, possibly, so don't assert it).
2828 * After the disconnect message link is queued, dbus_bus_get/dbus_connection_open
2829 * should never again return the newly-disconnected connection.
2831 * However, we only unref the shared connection and exit_on_disconnect when
2832 * the disconnect message reaches the head of the message queue,
2833 * NOT when it's first queued.
2835 status = _dbus_connection_get_dispatch_status_unlocked (connection);
2837 /* This calls out to user code */
2838 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2840 /* Could also call out to user code */
2841 dbus_connection_unref (connection);
2845 * Closes a private connection, so no further data can be sent or received.
2846 * This disconnects the transport (such as a socket) underlying the
2849 * Attempts to send messages after closing a connection are safe, but will result in
2850 * error replies generated locally in libdbus.
2852 * This function does not affect the connection's reference count. It's
2853 * safe to close a connection more than once; all calls after the
2854 * first do nothing. It's impossible to "reopen" a connection, a
2855 * new connection must be created. This function may result in a call
2856 * to the DBusDispatchStatusFunction set with
2857 * dbus_connection_set_dispatch_status_function(), as the disconnect
2858 * message it generates needs to be dispatched.
2860 * If a connection is dropped by the remote application, it will
2863 * You must close a connection prior to releasing the last reference to
2864 * the connection. If you dbus_connection_unref() for the last time
2865 * without closing the connection, the results are undefined; it
2866 * is a bug in your program and libdbus will try to print a warning.
2868 * You may not close a shared connection. Connections created with
2869 * dbus_connection_open() or dbus_bus_get() are shared.
2870 * These connections are owned by libdbus, and applications should
2871 * only unref them, never close them. Applications can know it is
2872 * safe to unref these connections because libdbus will be holding a
2873 * reference as long as the connection is open. Thus, either the
2874 * connection is closed and it is OK to drop the last reference,
2875 * or the connection is open and the app knows it does not have the
2878 * Connections created with dbus_connection_open_private() or
2879 * dbus_bus_get_private() are not kept track of or referenced by
2880 * libdbus. The creator of these connections is responsible for
2881 * calling dbus_connection_close() prior to releasing the last
2882 * reference, if the connection is not already disconnected.
2884 * @param connection the private (unshared) connection to close
2887 dbus_connection_close (DBusConnection *connection)
2889 _dbus_return_if_fail (connection != NULL);
2890 _dbus_return_if_fail (connection->generation == _dbus_current_generation);
2892 CONNECTION_LOCK (connection);
2894 #ifndef DBUS_DISABLE_CHECKS
2895 if (connection->shareable)
2897 CONNECTION_UNLOCK (connection);
2899 _dbus_warn_check_failed ("Applications must not close shared connections - see dbus_connection_close() docs. This is a bug in the application.\n");
2904 _dbus_connection_close_possibly_shared_and_unlock (connection);
2908 _dbus_connection_get_is_connected_unlocked (DBusConnection *connection)
2910 HAVE_LOCK_CHECK (connection);
2911 return _dbus_transport_get_is_connected (connection->transport);
2915 * Gets whether the connection is currently open. A connection may
2916 * become disconnected when the remote application closes its end, or
2917 * exits; a connection may also be disconnected with
2918 * dbus_connection_close().
2920 * There are not separate states for "closed" and "disconnected," the two
2921 * terms are synonymous. This function should really be called
2922 * get_is_open() but for historical reasons is not.
2924 * @param connection the connection.
2925 * @returns #TRUE if the connection is still alive.
2928 dbus_connection_get_is_connected (DBusConnection *connection)
2932 _dbus_return_val_if_fail (connection != NULL, FALSE);
2934 CONNECTION_LOCK (connection);
2935 res = _dbus_connection_get_is_connected_unlocked (connection);
2936 CONNECTION_UNLOCK (connection);
2942 * Gets whether the connection was authenticated. (Note that
2943 * if the connection was authenticated then disconnected,
2944 * this function still returns #TRUE)
2946 * @param connection the connection
2947 * @returns #TRUE if the connection was ever authenticated
2950 dbus_connection_get_is_authenticated (DBusConnection *connection)
2954 _dbus_return_val_if_fail (connection != NULL, FALSE);
2956 CONNECTION_LOCK (connection);
2957 res = _dbus_transport_get_is_authenticated (connection->transport);
2958 CONNECTION_UNLOCK (connection);
2964 * Gets whether the connection is not authenticated as a specific
2965 * user. If the connection is not authenticated, this function
2966 * returns #TRUE, and if it is authenticated but as an anonymous user,
2967 * it returns #TRUE. If it is authenticated as a specific user, then
2968 * this returns #FALSE. (Note that if the connection was authenticated
2969 * as anonymous then disconnected, this function still returns #TRUE.)
2971 * If the connection is not anonymous, you can use
2972 * dbus_connection_get_unix_user() and
2973 * dbus_connection_get_windows_user() to see who it's authorized as.
2975 * If you want to prevent non-anonymous authorization, use
2976 * dbus_server_set_auth_mechanisms() to remove the mechanisms that
2977 * allow proving user identity (i.e. only allow the ANONYMOUS
2980 * @param connection the connection
2981 * @returns #TRUE if not authenticated or authenticated as anonymous
2984 dbus_connection_get_is_anonymous (DBusConnection *connection)
2988 _dbus_return_val_if_fail (connection != NULL, FALSE);
2990 CONNECTION_LOCK (connection);
2991 res = _dbus_transport_get_is_anonymous (connection->transport);
2992 CONNECTION_UNLOCK (connection);
2998 * Gets the ID of the server address we are authenticated to, if this
2999 * connection is on the client side. If the connection is on the
3000 * server side, this will always return #NULL - use dbus_server_get_id()
3001 * to get the ID of your own server, if you are the server side.
3003 * If a client-side connection is not authenticated yet, the ID may be
3004 * available if it was included in the server address, but may not be
3005 * available. The only way to be sure the server ID is available
3006 * is to wait for authentication to complete.
3008 * In general, each mode of connecting to a given server will have
3009 * its own ID. So for example, if the session bus daemon is listening
3010 * on UNIX domain sockets and on TCP, then each of those modalities
3011 * will have its own server ID.
3013 * If you want an ID that identifies an entire session bus, look at
3014 * dbus_bus_get_id() instead (which is just a convenience wrapper
3015 * around the org.freedesktop.DBus.GetId method invoked on the bus).
3017 * You can also get a machine ID; see dbus_get_local_machine_id() to
3018 * get the machine you are on. There isn't a convenience wrapper, but
3019 * you can invoke org.freedesktop.DBus.Peer.GetMachineId on any peer
3020 * to get the machine ID on the other end.
3022 * The D-Bus specification describes the server ID and other IDs in a
3025 * @param connection the connection
3026 * @returns the server ID or #NULL if no memory or the connection is server-side
3029 dbus_connection_get_server_id (DBusConnection *connection)
3033 _dbus_return_val_if_fail (connection != NULL, NULL);
3035 CONNECTION_LOCK (connection);
3036 id = _dbus_strdup (_dbus_transport_get_server_id (connection->transport));
3037 CONNECTION_UNLOCK (connection);
3043 * Tests whether a certain type can be send via the connection. This
3044 * will always return TRUE for all types, with the exception of
3045 * DBUS_TYPE_UNIX_FD. The function will return TRUE for
3046 * DBUS_TYPE_UNIX_FD only on systems that know Unix file descriptors
3047 * and can send them via the chosen transport and when the remote side
3050 * This function can be used to do runtime checking for types that
3051 * might be unknown to the specific D-Bus client implementation
3052 * version, i.e. it will return FALSE for all types this
3053 * implementation does not know, including invalid or reserved types.
3055 * @param connection the connection
3056 * @param type the type to check
3057 * @returns TRUE if the type may be send via the connection
3060 dbus_connection_can_send_type(DBusConnection *connection,
3063 _dbus_return_val_if_fail (connection != NULL, FALSE);
3065 if (!dbus_type_is_valid (type))
3068 if (type != DBUS_TYPE_UNIX_FD)
3071 #ifdef HAVE_UNIX_FD_PASSING
3075 CONNECTION_LOCK(connection);
3076 b = _dbus_transport_can_pass_unix_fd(connection->transport);
3077 CONNECTION_UNLOCK(connection);
3087 * Set whether _exit() should be called when the connection receives a
3088 * disconnect signal. The call to _exit() comes after any handlers for
3089 * the disconnect signal run; handlers can cancel the exit by calling
3092 * By default, exit_on_disconnect is #FALSE; but for message bus
3093 * connections returned from dbus_bus_get() it will be toggled on
3096 * @param connection the connection
3097 * @param exit_on_disconnect #TRUE if _exit() should be called after a disconnect signal
3100 dbus_connection_set_exit_on_disconnect (DBusConnection *connection,
3101 dbus_bool_t exit_on_disconnect)
3103 _dbus_return_if_fail (connection != NULL);
3105 CONNECTION_LOCK (connection);
3106 connection->exit_on_disconnect = exit_on_disconnect != FALSE;
3107 CONNECTION_UNLOCK (connection);
3111 * Preallocates resources needed to send a message, allowing the message
3112 * to be sent without the possibility of memory allocation failure.
3113 * Allows apps to create a future guarantee that they can send
3114 * a message regardless of memory shortages.
3116 * @param connection the connection we're preallocating for.
3117 * @returns the preallocated resources, or #NULL
3119 DBusPreallocatedSend*
3120 dbus_connection_preallocate_send (DBusConnection *connection)
3122 DBusPreallocatedSend *preallocated;
3124 _dbus_return_val_if_fail (connection != NULL, NULL);
3126 CONNECTION_LOCK (connection);
3129 _dbus_connection_preallocate_send_unlocked (connection);
3131 CONNECTION_UNLOCK (connection);
3133 return preallocated;
3137 * Frees preallocated message-sending resources from
3138 * dbus_connection_preallocate_send(). Should only
3139 * be called if the preallocated resources are not used
3140 * to send a message.
3142 * @param connection the connection
3143 * @param preallocated the resources
3146 dbus_connection_free_preallocated_send (DBusConnection *connection,
3147 DBusPreallocatedSend *preallocated)
3149 _dbus_return_if_fail (connection != NULL);
3150 _dbus_return_if_fail (preallocated != NULL);
3151 _dbus_return_if_fail (connection == preallocated->connection);
3153 _dbus_list_free_link (preallocated->queue_link);
3154 _dbus_counter_unref (preallocated->counter_link->data);
3155 _dbus_list_free_link (preallocated->counter_link);
3156 dbus_free (preallocated);
3160 * Sends a message using preallocated resources. This function cannot fail.
3161 * It works identically to dbus_connection_send() in other respects.
3162 * Preallocated resources comes from dbus_connection_preallocate_send().
3163 * This function "consumes" the preallocated resources, they need not
3164 * be freed separately.
3166 * @param connection the connection
3167 * @param preallocated the preallocated resources
3168 * @param message the message to send
3169 * @param client_serial return location for client serial assigned to the message
3172 dbus_connection_send_preallocated (DBusConnection *connection,
3173 DBusPreallocatedSend *preallocated,
3174 DBusMessage *message,
3175 dbus_uint32_t *client_serial)
3177 _dbus_return_if_fail (connection != NULL);
3178 _dbus_return_if_fail (preallocated != NULL);
3179 _dbus_return_if_fail (message != NULL);
3180 _dbus_return_if_fail (preallocated->connection == connection);
3181 _dbus_return_if_fail (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_METHOD_CALL ||
3182 dbus_message_get_member (message) != NULL);
3183 _dbus_return_if_fail (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL ||
3184 (dbus_message_get_interface (message) != NULL &&
3185 dbus_message_get_member (message) != NULL));
3187 CONNECTION_LOCK (connection);
3189 #ifdef HAVE_UNIX_FD_PASSING
3191 if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3192 message->n_unix_fds > 0)
3194 /* Refuse to send fds on a connection that cannot handle
3195 them. Unfortunately we cannot return a proper error here, so
3196 the best we can is just return. */
3197 CONNECTION_UNLOCK (connection);
3203 _dbus_connection_send_preallocated_and_unlock (connection,
3205 message, client_serial);
3209 _dbus_connection_send_unlocked_no_update (DBusConnection *connection,
3210 DBusMessage *message,
3211 dbus_uint32_t *client_serial)
3213 DBusPreallocatedSend *preallocated;
3215 _dbus_assert (connection != NULL);
3216 _dbus_assert (message != NULL);
3218 preallocated = _dbus_connection_preallocate_send_unlocked (connection);
3219 if (preallocated == NULL)
3222 _dbus_connection_send_preallocated_unlocked_no_update (connection,
3230 * Adds a message to the outgoing message queue. Does not block to
3231 * write the message to the network; that happens asynchronously. To
3232 * force the message to be written, call dbus_connection_flush() however
3233 * it is not necessary to call dbus_connection_flush() by hand; the
3234 * message will be sent the next time the main loop is run.
3235 * dbus_connection_flush() should only be used, for example, if
3236 * the application was expected to exit before running the main loop.
3238 * Because this only queues the message, the only reason it can
3239 * fail is lack of memory. Even if the connection is disconnected,
3240 * no error will be returned. If the function fails due to lack of memory,
3241 * it returns #FALSE. The function will never fail for other reasons; even
3242 * if the connection is disconnected, you can queue an outgoing message,
3243 * though obviously it won't be sent.
3245 * The message serial is used by the remote application to send a
3246 * reply; see dbus_message_get_serial() or the D-Bus specification.
3248 * dbus_message_unref() can be called as soon as this method returns
3249 * as the message queue will hold its own ref until the message is sent.
3251 * @param connection the connection.
3252 * @param message the message to write.
3253 * @param serial return location for message serial, or #NULL if you don't care
3254 * @returns #TRUE on success.
3257 dbus_connection_send (DBusConnection *connection,
3258 DBusMessage *message,
3259 dbus_uint32_t *serial)
3261 _dbus_return_val_if_fail (connection != NULL, FALSE);
3262 _dbus_return_val_if_fail (message != NULL, FALSE);
3264 CONNECTION_LOCK (connection);
3266 #ifdef HAVE_UNIX_FD_PASSING
3268 if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3269 message->n_unix_fds > 0)
3271 /* Refuse to send fds on a connection that cannot handle
3272 them. Unfortunately we cannot return a proper error here, so
3273 the best we can is just return. */
3274 CONNECTION_UNLOCK (connection);
3280 return _dbus_connection_send_and_unlock (connection,
3286 reply_handler_timeout (void *data)
3288 DBusConnection *connection;
3289 DBusDispatchStatus status;
3290 DBusPendingCall *pending = data;
3292 connection = _dbus_pending_call_get_connection_and_lock (pending);
3293 _dbus_connection_ref_unlocked (connection);
3295 _dbus_pending_call_queue_timeout_error_unlocked (pending,
3297 _dbus_connection_remove_timeout_unlocked (connection,
3298 _dbus_pending_call_get_timeout_unlocked (pending));
3299 _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
3301 _dbus_verbose ("middle\n");
3302 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3304 /* Unlocks, and calls out to user code */
3305 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3306 dbus_connection_unref (connection);
3312 * Queues a message to send, as with dbus_connection_send(),
3313 * but also returns a #DBusPendingCall used to receive a reply to the
3314 * message. If no reply is received in the given timeout_milliseconds,
3315 * this function expires the pending reply and generates a synthetic
3316 * error reply (generated in-process, not by the remote application)
3317 * indicating that a timeout occurred.
3319 * A #DBusPendingCall will see a reply message before any filters or
3320 * registered object path handlers. See dbus_connection_dispatch() for
3321 * details on when handlers are run.
3323 * A #DBusPendingCall will always see exactly one reply message,
3324 * unless it's cancelled with dbus_pending_call_cancel().
3326 * If #NULL is passed for the pending_return, the #DBusPendingCall
3327 * will still be generated internally, and used to track
3328 * the message reply timeout. This means a timeout error will
3329 * occur if no reply arrives, unlike with dbus_connection_send().
3331 * If -1 is passed for the timeout, a sane default timeout is used. -1
3332 * is typically the best value for the timeout for this reason, unless
3333 * you want a very short or very long timeout. If #DBUS_TIMEOUT_INFINITE is
3334 * passed for the timeout, no timeout will be set and the call will block
3337 * @warning if the connection is disconnected or you try to send Unix
3338 * file descriptors on a connection that does not support them, the
3339 * #DBusPendingCall will be set to #NULL, so be careful with this.
3341 * @param connection the connection
3342 * @param message the message to send
3343 * @param pending_return return location for a #DBusPendingCall
3344 * object, or #NULL if connection is disconnected or when you try to
3345 * send Unix file descriptors on a connection that does not support
3347 * @param timeout_milliseconds timeout in milliseconds, -1 (or
3348 * #DBUS_TIMEOUT_USE_DEFAULT) for default or #DBUS_TIMEOUT_INFINITE for no
3350 * @returns #FALSE if no memory, #TRUE otherwise.
3354 dbus_connection_send_with_reply (DBusConnection *connection,
3355 DBusMessage *message,
3356 DBusPendingCall **pending_return,
3357 int timeout_milliseconds)
3359 DBusPendingCall *pending;
3360 dbus_int32_t serial = -1;
3361 DBusDispatchStatus status;
3363 _dbus_return_val_if_fail (connection != NULL, FALSE);
3364 _dbus_return_val_if_fail (message != NULL, FALSE);
3365 _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
3368 *pending_return = NULL;
3370 CONNECTION_LOCK (connection);
3372 #ifdef HAVE_UNIX_FD_PASSING
3374 if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3375 message->n_unix_fds > 0)
3377 /* Refuse to send fds on a connection that cannot handle
3378 them. Unfortunately we cannot return a proper error here, so
3379 the best we can do is return TRUE but leave *pending_return
3381 CONNECTION_UNLOCK (connection);
3387 if (!_dbus_connection_get_is_connected_unlocked (connection))
3389 CONNECTION_UNLOCK (connection);
3394 pending = _dbus_pending_call_new_unlocked (connection,
3395 timeout_milliseconds,
3396 reply_handler_timeout);
3398 if (pending == NULL)
3400 CONNECTION_UNLOCK (connection);
3404 /* Assign a serial to the message */
3405 serial = dbus_message_get_serial (message);
3408 serial = _dbus_connection_get_next_client_serial (connection);
3409 dbus_message_set_serial (message, serial);
3412 if (!_dbus_pending_call_set_timeout_error_unlocked (pending, message, serial))
3415 /* Insert the serial in the pending replies hash;
3416 * hash takes a refcount on DBusPendingCall.
3417 * Also, add the timeout.
3419 if (!_dbus_connection_attach_pending_call_unlocked (connection,
3423 if (!_dbus_connection_send_unlocked_no_update (connection, message, NULL))
3425 _dbus_connection_detach_pending_call_and_unlock (connection,
3427 goto error_unlocked;
3431 *pending_return = pending; /* hand off refcount */
3434 _dbus_connection_detach_pending_call_unlocked (connection, pending);
3435 /* we still have a ref to the pending call in this case, we unref
3436 * after unlocking, below
3440 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3442 /* this calls out to user code */
3443 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3445 if (pending_return == NULL)
3446 dbus_pending_call_unref (pending);
3451 CONNECTION_UNLOCK (connection);
3453 dbus_pending_call_unref (pending);
3458 * Sends a message and blocks a certain time period while waiting for
3459 * a reply. This function does not reenter the main loop,
3460 * i.e. messages other than the reply are queued up but not
3461 * processed. This function is used to invoke method calls on a
3464 * If a normal reply is received, it is returned, and removed from the
3465 * incoming message queue. If it is not received, #NULL is returned
3466 * and the error is set to #DBUS_ERROR_NO_REPLY. If an error reply is
3467 * received, it is converted to a #DBusError and returned as an error,
3468 * then the reply message is deleted and #NULL is returned. If
3469 * something else goes wrong, result is set to whatever is
3470 * appropriate, such as #DBUS_ERROR_NO_MEMORY or
3471 * #DBUS_ERROR_DISCONNECTED.
3473 * @warning While this function blocks the calling thread will not be
3474 * processing the incoming message queue. This means you can end up
3475 * deadlocked if the application you're talking to needs you to reply
3476 * to a method. To solve this, either avoid the situation, block in a
3477 * separate thread from the main connection-dispatching thread, or use
3478 * dbus_pending_call_set_notify() to avoid blocking.
3480 * @param connection the connection
3481 * @param message the message to send
3482 * @param timeout_milliseconds timeout in milliseconds, -1 (or
3483 * #DBUS_TIMEOUT_USE_DEFAULT) for default or #DBUS_TIMEOUT_INFINITE for no
3485 * @param error return location for error message
3486 * @returns the message that is the reply or #NULL with an error code if the
3490 dbus_connection_send_with_reply_and_block (DBusConnection *connection,
3491 DBusMessage *message,
3492 int timeout_milliseconds,
3496 DBusPendingCall *pending;
3498 _dbus_return_val_if_fail (connection != NULL, NULL);
3499 _dbus_return_val_if_fail (message != NULL, NULL);
3500 _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, NULL);
3501 _dbus_return_val_if_error_is_set (error, NULL);
3503 #ifdef HAVE_UNIX_FD_PASSING
3505 CONNECTION_LOCK (connection);
3506 if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3507 message->n_unix_fds > 0)
3509 CONNECTION_UNLOCK (connection);
3510 dbus_set_error(error, DBUS_ERROR_FAILED, "Cannot send file descriptors on this connection.");
3513 CONNECTION_UNLOCK (connection);
3517 if (!dbus_connection_send_with_reply (connection, message,
3518 &pending, timeout_milliseconds))
3520 _DBUS_SET_OOM (error);
3524 if (pending == NULL)
3526 dbus_set_error (error, DBUS_ERROR_DISCONNECTED, "Connection is closed");
3530 dbus_pending_call_block (pending);
3532 reply = dbus_pending_call_steal_reply (pending);
3533 dbus_pending_call_unref (pending);
3535 /* call_complete_and_unlock() called from pending_call_block() should
3536 * always fill this in.
3538 _dbus_assert (reply != NULL);
3540 if (dbus_set_error_from_message (error, reply))
3542 dbus_message_unref (reply);
3550 * Blocks until the outgoing message queue is empty.
3551 * Assumes connection lock already held.
3553 * If you call this, you MUST call update_dispatch_status afterword...
3555 * @param connection the connection.
3557 static DBusDispatchStatus
3558 _dbus_connection_flush_unlocked (DBusConnection *connection)
3560 /* We have to specify DBUS_ITERATION_DO_READING here because
3561 * otherwise we could have two apps deadlock if they are both doing
3562 * a flush(), and the kernel buffers fill up. This could change the
3565 DBusDispatchStatus status;
3567 HAVE_LOCK_CHECK (connection);
3569 while (connection->n_outgoing > 0 &&
3570 _dbus_connection_get_is_connected_unlocked (connection))
3572 _dbus_verbose ("doing iteration in\n");
3573 HAVE_LOCK_CHECK (connection);
3574 _dbus_connection_do_iteration_unlocked (connection,
3576 DBUS_ITERATION_DO_READING |
3577 DBUS_ITERATION_DO_WRITING |
3578 DBUS_ITERATION_BLOCK,
3582 HAVE_LOCK_CHECK (connection);
3583 _dbus_verbose ("middle\n");
3584 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3586 HAVE_LOCK_CHECK (connection);
3591 * Blocks until the outgoing message queue is empty.
3593 * @param connection the connection.
3596 dbus_connection_flush (DBusConnection *connection)
3598 /* We have to specify DBUS_ITERATION_DO_READING here because
3599 * otherwise we could have two apps deadlock if they are both doing
3600 * a flush(), and the kernel buffers fill up. This could change the
3603 DBusDispatchStatus status;
3605 _dbus_return_if_fail (connection != NULL);
3607 CONNECTION_LOCK (connection);
3609 status = _dbus_connection_flush_unlocked (connection);
3611 HAVE_LOCK_CHECK (connection);
3612 /* Unlocks and calls out to user code */
3613 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3615 _dbus_verbose ("end\n");
3619 * This function implements dbus_connection_read_write_dispatch() and
3620 * dbus_connection_read_write() (they pass a different value for the
3621 * dispatch parameter).
3623 * @param connection the connection
3624 * @param timeout_milliseconds max time to block or -1 for infinite
3625 * @param dispatch dispatch new messages or leave them on the incoming queue
3626 * @returns #TRUE if the disconnect message has not been processed
3629 _dbus_connection_read_write_dispatch (DBusConnection *connection,
3630 int timeout_milliseconds,
3631 dbus_bool_t dispatch)
3633 DBusDispatchStatus dstatus;
3634 dbus_bool_t progress_possible;
3636 /* Need to grab a ref here in case we're a private connection and
3637 * the user drops the last ref in a handler we call; see bug
3638 * https://bugs.freedesktop.org/show_bug.cgi?id=15635
3640 dbus_connection_ref (connection);
3641 dstatus = dbus_connection_get_dispatch_status (connection);
3643 if (dispatch && dstatus == DBUS_DISPATCH_DATA_REMAINS)
3645 _dbus_verbose ("doing dispatch\n");
3646 dbus_connection_dispatch (connection);
3647 CONNECTION_LOCK (connection);
3649 else if (dstatus == DBUS_DISPATCH_NEED_MEMORY)
3651 _dbus_verbose ("pausing for memory\n");
3652 _dbus_memory_pause_based_on_timeout (timeout_milliseconds);
3653 CONNECTION_LOCK (connection);
3657 CONNECTION_LOCK (connection);
3658 if (_dbus_connection_get_is_connected_unlocked (connection))
3660 _dbus_verbose ("doing iteration\n");
3661 _dbus_connection_do_iteration_unlocked (connection,
3663 DBUS_ITERATION_DO_READING |
3664 DBUS_ITERATION_DO_WRITING |
3665 DBUS_ITERATION_BLOCK,
3666 timeout_milliseconds);
3670 HAVE_LOCK_CHECK (connection);
3671 /* If we can dispatch, we can make progress until the Disconnected message
3672 * has been processed; if we can only read/write, we can make progress
3673 * as long as the transport is open.
3676 progress_possible = connection->n_incoming != 0 ||
3677 connection->disconnect_message_link != NULL;
3679 progress_possible = _dbus_connection_get_is_connected_unlocked (connection);
3681 CONNECTION_UNLOCK (connection);
3683 dbus_connection_unref (connection);
3685 return progress_possible; /* TRUE if we can make more progress */
3690 * This function is intended for use with applications that don't want
3691 * to write a main loop and deal with #DBusWatch and #DBusTimeout. An
3692 * example usage would be:
3695 * while (dbus_connection_read_write_dispatch (connection, -1))
3696 * ; // empty loop body
3699 * In this usage you would normally have set up a filter function to look
3700 * at each message as it is dispatched. The loop terminates when the last
3701 * message from the connection (the disconnected signal) is processed.
3703 * If there are messages to dispatch, this function will
3704 * dbus_connection_dispatch() once, and return. If there are no
3705 * messages to dispatch, this function will block until it can read or
3706 * write, then read or write, then return.
3708 * The way to think of this function is that it either makes some sort
3709 * of progress, or it blocks. Note that, while it is blocked on I/O, it
3710 * cannot be interrupted (even by other threads), which makes this function
3711 * unsuitable for applications that do more than just react to received
3714 * The return value indicates whether the disconnect message has been
3715 * processed, NOT whether the connection is connected. This is
3716 * important because even after disconnecting, you want to process any
3717 * messages you received prior to the disconnect.
3719 * @param connection the connection
3720 * @param timeout_milliseconds max time to block or -1 for infinite
3721 * @returns #TRUE if the disconnect message has not been processed
3724 dbus_connection_read_write_dispatch (DBusConnection *connection,
3725 int timeout_milliseconds)
3727 _dbus_return_val_if_fail (connection != NULL, FALSE);
3728 _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
3729 return _dbus_connection_read_write_dispatch(connection, timeout_milliseconds, TRUE);
3733 * This function is intended for use with applications that don't want to
3734 * write a main loop and deal with #DBusWatch and #DBusTimeout. See also
3735 * dbus_connection_read_write_dispatch().
3737 * As long as the connection is open, this function will block until it can
3738 * read or write, then read or write, then return #TRUE.
3740 * If the connection is closed, the function returns #FALSE.
3742 * The return value indicates whether reading or writing is still
3743 * possible, i.e. whether the connection is connected.
3745 * Note that even after disconnection, messages may remain in the
3746 * incoming queue that need to be
3747 * processed. dbus_connection_read_write_dispatch() dispatches
3748 * incoming messages for you; with dbus_connection_read_write() you
3749 * have to arrange to drain the incoming queue yourself.
3751 * @param connection the connection
3752 * @param timeout_milliseconds max time to block or -1 for infinite
3753 * @returns #TRUE if still connected
3756 dbus_connection_read_write (DBusConnection *connection,
3757 int timeout_milliseconds)
3759 _dbus_return_val_if_fail (connection != NULL, FALSE);
3760 _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
3761 return _dbus_connection_read_write_dispatch(connection, timeout_milliseconds, FALSE);
3764 /* We need to call this anytime we pop the head of the queue, and then
3765 * update_dispatch_status_and_unlock needs to be called afterward
3766 * which will "process" the disconnected message and set
3767 * disconnected_message_processed.
3770 check_disconnected_message_arrived_unlocked (DBusConnection *connection,
3771 DBusMessage *head_of_queue)
3773 HAVE_LOCK_CHECK (connection);
3775 /* checking that the link is NULL is an optimization to avoid the is_signal call */
3776 if (connection->disconnect_message_link == NULL &&
3777 dbus_message_is_signal (head_of_queue,
3778 DBUS_INTERFACE_LOCAL,
3781 connection->disconnected_message_arrived = TRUE;
3786 * Returns the first-received message from the incoming message queue,
3787 * leaving it in the queue. If the queue is empty, returns #NULL.
3789 * The caller does not own a reference to the returned message, and
3790 * must either return it using dbus_connection_return_message() or
3791 * keep it after calling dbus_connection_steal_borrowed_message(). No
3792 * one can get at the message while its borrowed, so return it as
3793 * quickly as possible and don't keep a reference to it after
3794 * returning it. If you need to keep the message, make a copy of it.
3796 * dbus_connection_dispatch() will block if called while a borrowed
3797 * message is outstanding; only one piece of code can be playing with
3798 * the incoming queue at a time. This function will block if called
3799 * during a dbus_connection_dispatch().
3801 * @param connection the connection.
3802 * @returns next message in the incoming queue.
3805 dbus_connection_borrow_message (DBusConnection *connection)
3807 DBusDispatchStatus status;
3808 DBusMessage *message;
3810 _dbus_return_val_if_fail (connection != NULL, NULL);
3812 _dbus_verbose ("start\n");
3814 /* this is called for the side effect that it queues
3815 * up any messages from the transport
3817 status = dbus_connection_get_dispatch_status (connection);
3818 if (status != DBUS_DISPATCH_DATA_REMAINS)
3821 CONNECTION_LOCK (connection);
3823 _dbus_connection_acquire_dispatch (connection);
3825 /* While a message is outstanding, the dispatch lock is held */
3826 _dbus_assert (connection->message_borrowed == NULL);
3828 connection->message_borrowed = _dbus_list_get_first (&connection->incoming_messages);
3830 message = connection->message_borrowed;
3832 check_disconnected_message_arrived_unlocked (connection, message);
3834 /* Note that we KEEP the dispatch lock until the message is returned */
3835 if (message == NULL)
3836 _dbus_connection_release_dispatch (connection);
3838 CONNECTION_UNLOCK (connection);
3840 _dbus_message_trace_ref (message, -1, -1, "dbus_connection_borrow_message");
3842 /* We don't update dispatch status until it's returned or stolen */
3848 * Used to return a message after peeking at it using
3849 * dbus_connection_borrow_message(). Only called if
3850 * message from dbus_connection_borrow_message() was non-#NULL.
3852 * @param connection the connection
3853 * @param message the message from dbus_connection_borrow_message()
3856 dbus_connection_return_message (DBusConnection *connection,
3857 DBusMessage *message)
3859 DBusDispatchStatus status;
3861 _dbus_return_if_fail (connection != NULL);
3862 _dbus_return_if_fail (message != NULL);
3863 _dbus_return_if_fail (message == connection->message_borrowed);
3864 _dbus_return_if_fail (connection->dispatch_acquired);
3866 CONNECTION_LOCK (connection);
3868 _dbus_assert (message == connection->message_borrowed);
3870 connection->message_borrowed = NULL;
3872 _dbus_connection_release_dispatch (connection);
3874 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3875 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3877 _dbus_message_trace_ref (message, -1, -1, "dbus_connection_return_message");
3881 * Used to keep a message after peeking at it using
3882 * dbus_connection_borrow_message(). Before using this function, see
3883 * the caveats/warnings in the documentation for
3884 * dbus_connection_pop_message().
3886 * @param connection the connection
3887 * @param message the message from dbus_connection_borrow_message()
3890 dbus_connection_steal_borrowed_message (DBusConnection *connection,
3891 DBusMessage *message)
3893 DBusMessage *pop_message;
3894 DBusDispatchStatus status;
3896 _dbus_return_if_fail (connection != NULL);
3897 _dbus_return_if_fail (message != NULL);
3898 _dbus_return_if_fail (message == connection->message_borrowed);
3899 _dbus_return_if_fail (connection->dispatch_acquired);
3901 CONNECTION_LOCK (connection);
3903 _dbus_assert (message == connection->message_borrowed);
3905 pop_message = _dbus_list_pop_first (&connection->incoming_messages);
3906 _dbus_assert (message == pop_message);
3907 (void) pop_message; /* unused unless asserting */
3909 connection->n_incoming -= 1;
3911 _dbus_verbose ("Incoming message %p stolen from queue, %d incoming\n",
3912 message, connection->n_incoming);
3914 connection->message_borrowed = NULL;
3916 _dbus_connection_release_dispatch (connection);
3918 status = _dbus_connection_get_dispatch_status_unlocked (connection);
3919 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3920 _dbus_message_trace_ref (message, -1, -1,
3921 "dbus_connection_steal_borrowed_message");
3924 /* See dbus_connection_pop_message, but requires the caller to own
3925 * the lock before calling. May drop the lock while running.
3928 _dbus_connection_pop_message_link_unlocked (DBusConnection *connection)
3930 HAVE_LOCK_CHECK (connection);
3932 _dbus_assert (connection->message_borrowed == NULL);
3934 if (connection->n_incoming > 0)
3938 link = _dbus_list_pop_first_link (&connection->incoming_messages);
3939 connection->n_incoming -= 1;
3941 _dbus_verbose ("Message %p (%s %s %s %s '%s') removed from incoming queue %p, %d incoming\n",
3943 dbus_message_type_to_string (dbus_message_get_type (link->data)),
3944 dbus_message_get_path (link->data) ?
3945 dbus_message_get_path (link->data) :
3947 dbus_message_get_interface (link->data) ?
3948 dbus_message_get_interface (link->data) :
3950 dbus_message_get_member (link->data) ?
3951 dbus_message_get_member (link->data) :
3953 dbus_message_get_signature (link->data),
3954 connection, connection->n_incoming);
3956 _dbus_message_trace_ref (link->data, -1, -1,
3957 "_dbus_connection_pop_message_link_unlocked");
3959 check_disconnected_message_arrived_unlocked (connection, link->data);
3967 /* See dbus_connection_pop_message, but requires the caller to own
3968 * the lock before calling. May drop the lock while running.
3971 _dbus_connection_pop_message_unlocked (DBusConnection *connection)
3975 HAVE_LOCK_CHECK (connection);
3977 link = _dbus_connection_pop_message_link_unlocked (connection);
3981 DBusMessage *message;
3983 message = link->data;
3985 _dbus_list_free_link (link);
3994 _dbus_connection_putback_message_link_unlocked (DBusConnection *connection,
3995 DBusList *message_link)
3997 HAVE_LOCK_CHECK (connection);
3999 _dbus_assert (message_link != NULL);
4000 /* You can't borrow a message while a link is outstanding */
4001 _dbus_assert (connection->message_borrowed == NULL);
4002 /* We had to have the dispatch lock across the pop/putback */
4003 _dbus_assert (connection->dispatch_acquired);
4005 _dbus_list_prepend_link (&connection->incoming_messages,
4007 connection->n_incoming += 1;
4009 _dbus_verbose ("Message %p (%s %s %s '%s') put back into queue %p, %d incoming\n",
4011 dbus_message_type_to_string (dbus_message_get_type (message_link->data)),
4012 dbus_message_get_interface (message_link->data) ?
4013 dbus_message_get_interface (message_link->data) :
4015 dbus_message_get_member (message_link->data) ?
4016 dbus_message_get_member (message_link->data) :
4018 dbus_message_get_signature (message_link->data),
4019 connection, connection->n_incoming);
4021 _dbus_message_trace_ref (message_link->data, -1, -1,
4022 "_dbus_connection_putback_message_link_unlocked");
4026 * Returns the first-received message from the incoming message queue,
4027 * removing it from the queue. The caller owns a reference to the
4028 * returned message. If the queue is empty, returns #NULL.
4030 * This function bypasses any message handlers that are registered,
4031 * and so using it is usually wrong. Instead, let the main loop invoke
4032 * dbus_connection_dispatch(). Popping messages manually is only
4033 * useful in very simple programs that don't share a #DBusConnection
4034 * with any libraries or other modules.
4036 * There is a lock that covers all ways of accessing the incoming message
4037 * queue, so dbus_connection_dispatch(), dbus_connection_pop_message(),
4038 * dbus_connection_borrow_message(), etc. will all block while one of the others
4039 * in the group is running.
4041 * @param connection the connection.
4042 * @returns next message in the incoming queue.
4045 dbus_connection_pop_message (DBusConnection *connection)
4047 DBusMessage *message;
4048 DBusDispatchStatus status;
4050 _dbus_verbose ("start\n");
4052 /* this is called for the side effect that it queues
4053 * up any messages from the transport
4055 status = dbus_connection_get_dispatch_status (connection);
4056 if (status != DBUS_DISPATCH_DATA_REMAINS)
4059 CONNECTION_LOCK (connection);
4060 _dbus_connection_acquire_dispatch (connection);
4061 HAVE_LOCK_CHECK (connection);
4063 message = _dbus_connection_pop_message_unlocked (connection);
4065 _dbus_verbose ("Returning popped message %p\n", message);
4067 _dbus_connection_release_dispatch (connection);
4069 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4070 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4076 * Acquire the dispatcher. This is a separate lock so the main
4077 * connection lock can be dropped to call out to application dispatch
4080 * @param connection the connection.
4083 _dbus_connection_acquire_dispatch (DBusConnection *connection)
4085 HAVE_LOCK_CHECK (connection);
4087 _dbus_connection_ref_unlocked (connection);
4088 CONNECTION_UNLOCK (connection);
4090 _dbus_verbose ("locking dispatch_mutex\n");
4091 _dbus_cmutex_lock (connection->dispatch_mutex);
4093 while (connection->dispatch_acquired)
4095 _dbus_verbose ("waiting for dispatch to be acquirable\n");
4096 _dbus_condvar_wait (connection->dispatch_cond,
4097 connection->dispatch_mutex);
4100 _dbus_assert (!connection->dispatch_acquired);
4102 connection->dispatch_acquired = TRUE;
4104 _dbus_verbose ("unlocking dispatch_mutex\n");
4105 _dbus_cmutex_unlock (connection->dispatch_mutex);
4107 CONNECTION_LOCK (connection);
4108 _dbus_connection_unref_unlocked (connection);
4112 * Release the dispatcher when you're done with it. Only call
4113 * after you've acquired the dispatcher. Wakes up at most one
4114 * thread currently waiting to acquire the dispatcher.
4116 * @param connection the connection.
4119 _dbus_connection_release_dispatch (DBusConnection *connection)
4121 HAVE_LOCK_CHECK (connection);
4123 _dbus_verbose ("locking dispatch_mutex\n");
4124 _dbus_cmutex_lock (connection->dispatch_mutex);
4126 _dbus_assert (connection->dispatch_acquired);
4128 connection->dispatch_acquired = FALSE;
4129 _dbus_condvar_wake_one (connection->dispatch_cond);
4131 _dbus_verbose ("unlocking dispatch_mutex\n");
4132 _dbus_cmutex_unlock (connection->dispatch_mutex);
4136 _dbus_connection_failed_pop (DBusConnection *connection,
4137 DBusList *message_link)
4139 _dbus_list_prepend_link (&connection->incoming_messages,
4141 connection->n_incoming += 1;
4144 /* Note this may be called multiple times since we don't track whether we already did it */
4146 notify_disconnected_unlocked (DBusConnection *connection)
4148 HAVE_LOCK_CHECK (connection);
4150 /* Set the weakref in dbus-bus.c to NULL, so nobody will get a disconnected
4151 * connection from dbus_bus_get(). We make the same guarantee for
4152 * dbus_connection_open() but in a different way since we don't want to
4153 * unref right here; we instead check for connectedness before returning
4154 * the connection from the hash.
4156 _dbus_bus_notify_shared_connection_disconnected_unlocked (connection);
4158 /* Dump the outgoing queue, we aren't going to be able to
4159 * send it now, and we'd like accessors like
4160 * dbus_connection_get_outgoing_size() to be accurate.
4162 if (connection->n_outgoing > 0)
4166 _dbus_verbose ("Dropping %d outgoing messages since we're disconnected\n",
4167 connection->n_outgoing);
4169 while ((link = _dbus_list_get_last_link (&connection->outgoing_messages)))
4171 _dbus_connection_message_sent_unlocked (connection, link->data);
4176 /* Note this may be called multiple times since we don't track whether we already did it */
4177 static DBusDispatchStatus
4178 notify_disconnected_and_dispatch_complete_unlocked (DBusConnection *connection)
4180 HAVE_LOCK_CHECK (connection);
4182 if (connection->disconnect_message_link != NULL)
4184 _dbus_verbose ("Sending disconnect message\n");
4186 /* If we have pending calls, queue their timeouts - we want the Disconnected
4187 * to be the last message, after these timeouts.
4189 connection_timeout_and_complete_all_pending_calls_unlocked (connection);
4191 /* We haven't sent the disconnect message already,
4192 * and all real messages have been queued up.
4194 _dbus_connection_queue_synthesized_message_link (connection,
4195 connection->disconnect_message_link);
4196 connection->disconnect_message_link = NULL;
4198 return DBUS_DISPATCH_DATA_REMAINS;
4201 return DBUS_DISPATCH_COMPLETE;
4204 static DBusDispatchStatus
4205 _dbus_connection_get_dispatch_status_unlocked (DBusConnection *connection)
4207 HAVE_LOCK_CHECK (connection);
4209 if (connection->n_incoming > 0)
4210 return DBUS_DISPATCH_DATA_REMAINS;
4211 else if (!_dbus_transport_queue_messages (connection->transport))
4212 return DBUS_DISPATCH_NEED_MEMORY;
4215 DBusDispatchStatus status;
4216 dbus_bool_t is_connected;
4218 status = _dbus_transport_get_dispatch_status (connection->transport);
4219 is_connected = _dbus_transport_get_is_connected (connection->transport);
4221 _dbus_verbose ("dispatch status = %s is_connected = %d\n",
4222 DISPATCH_STATUS_NAME (status), is_connected);
4226 /* It's possible this would be better done by having an explicit
4227 * notification from _dbus_transport_disconnect() that would
4228 * synchronously do this, instead of waiting for the next dispatch
4229 * status check. However, probably not good to change until it causes
4232 notify_disconnected_unlocked (connection);
4234 /* I'm not sure this is needed; the idea is that we want to
4235 * queue the Disconnected only after we've read all the
4236 * messages, but if we're disconnected maybe we are guaranteed
4237 * to have read them all ?
4239 if (status == DBUS_DISPATCH_COMPLETE)
4240 status = notify_disconnected_and_dispatch_complete_unlocked (connection);
4243 if (status != DBUS_DISPATCH_COMPLETE)
4245 else if (connection->n_incoming > 0)
4246 return DBUS_DISPATCH_DATA_REMAINS;
4248 return DBUS_DISPATCH_COMPLETE;
4253 _dbus_connection_update_dispatch_status_and_unlock (DBusConnection *connection,
4254 DBusDispatchStatus new_status)
4256 dbus_bool_t changed;
4257 DBusDispatchStatusFunction function;
4260 HAVE_LOCK_CHECK (connection);
4262 _dbus_connection_ref_unlocked (connection);
4264 changed = new_status != connection->last_dispatch_status;
4266 connection->last_dispatch_status = new_status;
4268 function = connection->dispatch_status_function;
4269 data = connection->dispatch_status_data;
4271 if (connection->disconnected_message_arrived &&
4272 !connection->disconnected_message_processed)
4274 connection->disconnected_message_processed = TRUE;
4276 /* this does an unref, but we have a ref
4277 * so we should not run the finalizer here
4280 connection_forget_shared_unlocked (connection);
4282 if (connection->exit_on_disconnect)
4284 CONNECTION_UNLOCK (connection);
4286 _dbus_verbose ("Exiting on Disconnected signal\n");
4288 _dbus_assert_not_reached ("Call to exit() returned");
4292 /* We drop the lock */
4293 CONNECTION_UNLOCK (connection);
4295 if (changed && function)
4297 _dbus_verbose ("Notifying of change to dispatch status of %p now %d (%s)\n",
4298 connection, new_status,
4299 DISPATCH_STATUS_NAME (new_status));
4300 (* function) (connection, new_status, data);
4303 dbus_connection_unref (connection);
4307 * Gets the current state of the incoming message queue.
4308 * #DBUS_DISPATCH_DATA_REMAINS indicates that the message queue
4309 * may contain messages. #DBUS_DISPATCH_COMPLETE indicates that the
4310 * incoming queue is empty. #DBUS_DISPATCH_NEED_MEMORY indicates that
4311 * there could be data, but we can't know for sure without more
4314 * To process the incoming message queue, use dbus_connection_dispatch()
4315 * or (in rare cases) dbus_connection_pop_message().
4317 * Note, #DBUS_DISPATCH_DATA_REMAINS really means that either we
4318 * have messages in the queue, or we have raw bytes buffered up
4319 * that need to be parsed. When these bytes are parsed, they
4320 * may not add up to an entire message. Thus, it's possible
4321 * to see a status of #DBUS_DISPATCH_DATA_REMAINS but not
4322 * have a message yet.
4324 * In particular this happens on initial connection, because all sorts
4325 * of authentication protocol stuff has to be parsed before the
4326 * first message arrives.
4328 * @param connection the connection.
4329 * @returns current dispatch status
4332 dbus_connection_get_dispatch_status (DBusConnection *connection)
4334 DBusDispatchStatus status;
4336 _dbus_return_val_if_fail (connection != NULL, DBUS_DISPATCH_COMPLETE);
4338 _dbus_verbose ("start\n");
4340 CONNECTION_LOCK (connection);
4342 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4344 CONNECTION_UNLOCK (connection);
4350 * Filter funtion for handling the Peer standard interface.
4352 static DBusHandlerResult
4353 _dbus_connection_peer_filter_unlocked_no_update (DBusConnection *connection,
4354 DBusMessage *message)
4356 dbus_bool_t sent = FALSE;
4357 DBusMessage *ret = NULL;
4358 DBusList *expire_link;
4360 if (connection->route_peer_messages && dbus_message_get_destination (message) != NULL)
4362 /* This means we're letting the bus route this message */
4363 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
4366 if (!dbus_message_has_interface (message, DBUS_INTERFACE_PEER))
4368 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
4371 /* Preallocate a linked-list link, so that if we need to dispose of a
4372 * message, we can attach it to the expired list */
4373 expire_link = _dbus_list_alloc_link (NULL);
4376 return DBUS_HANDLER_RESULT_NEED_MEMORY;
4378 if (dbus_message_is_method_call (message,
4379 DBUS_INTERFACE_PEER,
4382 ret = dbus_message_new_method_return (message);
4386 sent = _dbus_connection_send_unlocked_no_update (connection, ret, NULL);
4388 else if (dbus_message_is_method_call (message,
4389 DBUS_INTERFACE_PEER,
4394 ret = dbus_message_new_method_return (message);
4398 _dbus_string_init (&uuid);
4399 if (_dbus_get_local_machine_uuid_encoded (&uuid))
4401 const char *v_STRING = _dbus_string_get_const_data (&uuid);
4402 if (dbus_message_append_args (ret,
4403 DBUS_TYPE_STRING, &v_STRING,
4406 sent = _dbus_connection_send_unlocked_no_update (connection, ret, NULL);
4409 _dbus_string_free (&uuid);
4413 /* We need to bounce anything else with this interface, otherwise apps
4414 * could start extending the interface and when we added extensions
4415 * here to DBusConnection we'd break those apps.
4417 ret = dbus_message_new_error (message,
4418 DBUS_ERROR_UNKNOWN_METHOD,
4419 "Unknown method invoked on org.freedesktop.DBus.Peer interface");
4423 sent = _dbus_connection_send_unlocked_no_update (connection, ret, NULL);
4429 _dbus_list_free_link (expire_link);
4433 /* It'll be safe to unref the reply when we unlock */
4434 expire_link->data = ret;
4435 _dbus_list_prepend_link (&connection->expired_messages, expire_link);
4439 return DBUS_HANDLER_RESULT_NEED_MEMORY;
4441 return DBUS_HANDLER_RESULT_HANDLED;
4445 * Processes all builtin filter functions
4447 * If the spec specifies a standard interface
4448 * they should be processed from this method
4450 static DBusHandlerResult
4451 _dbus_connection_run_builtin_filters_unlocked_no_update (DBusConnection *connection,
4452 DBusMessage *message)
4454 /* We just run one filter for now but have the option to run more
4455 if the spec calls for it in the future */
4457 return _dbus_connection_peer_filter_unlocked_no_update (connection, message);
4461 * Processes any incoming data.
4463 * If there's incoming raw data that has not yet been parsed, it is
4464 * parsed, which may or may not result in adding messages to the
4467 * The incoming data buffer is filled when the connection reads from
4468 * its underlying transport (such as a socket). Reading usually
4469 * happens in dbus_watch_handle() or dbus_connection_read_write().
4471 * If there are complete messages in the incoming queue,
4472 * dbus_connection_dispatch() removes one message from the queue and
4473 * processes it. Processing has three steps.
4475 * First, any method replies are passed to #DBusPendingCall or
4476 * dbus_connection_send_with_reply_and_block() in order to
4477 * complete the pending method call.
4479 * Second, any filters registered with dbus_connection_add_filter()
4480 * are run. If any filter returns #DBUS_HANDLER_RESULT_HANDLED
4481 * then processing stops after that filter.
4483 * Third, if the message is a method call it is forwarded to
4484 * any registered object path handlers added with
4485 * dbus_connection_register_object_path() or
4486 * dbus_connection_register_fallback().
4488 * A single call to dbus_connection_dispatch() will process at most
4489 * one message; it will not clear the entire message queue.
4491 * Be careful about calling dbus_connection_dispatch() from inside a
4492 * message handler, i.e. calling dbus_connection_dispatch()
4493 * recursively. If threads have been initialized with a recursive
4494 * mutex function, then this will not deadlock; however, it can
4495 * certainly confuse your application.
4497 * @todo some FIXME in here about handling DBUS_HANDLER_RESULT_NEED_MEMORY
4499 * @param connection the connection
4500 * @returns dispatch status, see dbus_connection_get_dispatch_status()
4503 dbus_connection_dispatch (DBusConnection *connection)
4505 DBusMessage *message;
4506 DBusList *link, *filter_list_copy, *message_link;
4507 DBusHandlerResult result;
4508 DBusPendingCall *pending;
4509 dbus_int32_t reply_serial;
4510 DBusDispatchStatus status;
4511 dbus_bool_t found_object;
4513 _dbus_return_val_if_fail (connection != NULL, DBUS_DISPATCH_COMPLETE);
4515 _dbus_verbose ("\n");
4517 CONNECTION_LOCK (connection);
4518 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4519 if (status != DBUS_DISPATCH_DATA_REMAINS)
4521 /* unlocks and calls out to user code */
4522 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4526 /* We need to ref the connection since the callback could potentially
4527 * drop the last ref to it
4529 _dbus_connection_ref_unlocked (connection);
4531 _dbus_connection_acquire_dispatch (connection);
4532 HAVE_LOCK_CHECK (connection);
4534 message_link = _dbus_connection_pop_message_link_unlocked (connection);
4535 if (message_link == NULL)
4537 /* another thread dispatched our stuff */
4539 _dbus_verbose ("another thread dispatched message (during acquire_dispatch above)\n");
4541 _dbus_connection_release_dispatch (connection);
4543 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4545 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4547 dbus_connection_unref (connection);
4552 message = message_link->data;
4554 _dbus_verbose (" dispatching message %p (%s %s %s '%s')\n",
4556 dbus_message_type_to_string (dbus_message_get_type (message)),
4557 dbus_message_get_interface (message) ?
4558 dbus_message_get_interface (message) :
4560 dbus_message_get_member (message) ?
4561 dbus_message_get_member (message) :
4563 dbus_message_get_signature (message));
4565 result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
4567 /* Pending call handling must be first, because if you do
4568 * dbus_connection_send_with_reply_and_block() or
4569 * dbus_pending_call_block() then no handlers/filters will be run on
4570 * the reply. We want consistent semantics in the case where we
4571 * dbus_connection_dispatch() the reply.
4574 reply_serial = dbus_message_get_reply_serial (message);
4575 pending = _dbus_hash_table_lookup_int (connection->pending_replies,
4579 _dbus_verbose ("Dispatching a pending reply\n");
4580 complete_pending_call_and_unlock (connection, pending, message);
4581 pending = NULL; /* it's probably unref'd */
4583 CONNECTION_LOCK (connection);
4584 _dbus_verbose ("pending call completed in dispatch\n");
4585 result = DBUS_HANDLER_RESULT_HANDLED;
4589 result = _dbus_connection_run_builtin_filters_unlocked_no_update (connection, message);
4590 if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
4593 if (!_dbus_list_copy (&connection->filter_list, &filter_list_copy))
4595 _dbus_connection_release_dispatch (connection);
4596 HAVE_LOCK_CHECK (connection);
4598 _dbus_connection_failed_pop (connection, message_link);
4600 /* unlocks and calls user code */
4601 _dbus_connection_update_dispatch_status_and_unlock (connection,
4602 DBUS_DISPATCH_NEED_MEMORY);
4603 dbus_connection_unref (connection);
4605 return DBUS_DISPATCH_NEED_MEMORY;
4608 _dbus_list_foreach (&filter_list_copy,
4609 (DBusForeachFunction)_dbus_message_filter_ref,
4612 /* We're still protected from dispatch() reentrancy here
4613 * since we acquired the dispatcher
4615 CONNECTION_UNLOCK (connection);
4617 link = _dbus_list_get_first_link (&filter_list_copy);
4618 while (link != NULL)
4620 DBusMessageFilter *filter = link->data;
4621 DBusList *next = _dbus_list_get_next_link (&filter_list_copy, link);
4623 if (filter->function == NULL)
4625 _dbus_verbose (" filter was removed in a callback function\n");
4630 _dbus_verbose (" running filter on message %p\n", message);
4631 result = (* filter->function) (connection, message, filter->user_data);
4633 if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
4639 _dbus_list_foreach (&filter_list_copy,
4640 (DBusForeachFunction)_dbus_message_filter_unref,
4642 _dbus_list_clear (&filter_list_copy);
4644 CONNECTION_LOCK (connection);
4646 if (result == DBUS_HANDLER_RESULT_NEED_MEMORY)
4648 _dbus_verbose ("No memory\n");
4651 else if (result == DBUS_HANDLER_RESULT_HANDLED)
4653 _dbus_verbose ("filter handled message in dispatch\n");
4657 /* We're still protected from dispatch() reentrancy here
4658 * since we acquired the dispatcher
4660 _dbus_verbose (" running object path dispatch on message %p (%s %s %s '%s')\n",
4662 dbus_message_type_to_string (dbus_message_get_type (message)),
4663 dbus_message_get_interface (message) ?
4664 dbus_message_get_interface (message) :
4666 dbus_message_get_member (message) ?
4667 dbus_message_get_member (message) :
4669 dbus_message_get_signature (message));
4671 HAVE_LOCK_CHECK (connection);
4672 result = _dbus_object_tree_dispatch_and_unlock (connection->objects,
4676 CONNECTION_LOCK (connection);
4678 if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
4680 _dbus_verbose ("object tree handled message in dispatch\n");
4684 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_CALL)
4688 DBusPreallocatedSend *preallocated;
4689 DBusList *expire_link;
4691 _dbus_verbose (" sending error %s\n",
4692 DBUS_ERROR_UNKNOWN_METHOD);
4694 if (!_dbus_string_init (&str))
4696 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4697 _dbus_verbose ("no memory for error string in dispatch\n");
4701 if (!_dbus_string_append_printf (&str,
4702 "Method \"%s\" with signature \"%s\" on interface \"%s\" doesn't exist\n",
4703 dbus_message_get_member (message),
4704 dbus_message_get_signature (message),
4705 dbus_message_get_interface (message)))
4707 _dbus_string_free (&str);
4708 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4709 _dbus_verbose ("no memory for error string in dispatch\n");
4713 reply = dbus_message_new_error (message,
4714 found_object ? DBUS_ERROR_UNKNOWN_METHOD : DBUS_ERROR_UNKNOWN_OBJECT,
4715 _dbus_string_get_const_data (&str));
4716 _dbus_string_free (&str);
4720 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4721 _dbus_verbose ("no memory for error reply in dispatch\n");
4725 expire_link = _dbus_list_alloc_link (reply);
4727 if (expire_link == NULL)
4729 dbus_message_unref (reply);
4730 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4731 _dbus_verbose ("no memory for error send in dispatch\n");
4735 preallocated = _dbus_connection_preallocate_send_unlocked (connection);
4737 if (preallocated == NULL)
4739 _dbus_list_free_link (expire_link);
4740 /* It's OK that this is finalized, because it hasn't been seen by
4741 * anything that could attach user callbacks */
4742 dbus_message_unref (reply);
4743 result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4744 _dbus_verbose ("no memory for error send in dispatch\n");
4748 _dbus_connection_send_preallocated_unlocked_no_update (connection, preallocated,
4750 /* reply will be freed when we release the lock */
4751 _dbus_list_prepend_link (&connection->expired_messages, expire_link);
4753 result = DBUS_HANDLER_RESULT_HANDLED;
4756 _dbus_verbose (" done dispatching %p (%s %s %s '%s') on connection %p\n", message,
4757 dbus_message_type_to_string (dbus_message_get_type (message)),
4758 dbus_message_get_interface (message) ?
4759 dbus_message_get_interface (message) :
4761 dbus_message_get_member (message) ?
4762 dbus_message_get_member (message) :
4764 dbus_message_get_signature (message),
4768 if (result == DBUS_HANDLER_RESULT_NEED_MEMORY)
4770 _dbus_verbose ("out of memory\n");
4772 /* Put message back, and we'll start over.
4773 * Yes this means handlers must be idempotent if they
4774 * don't return HANDLED; c'est la vie.
4776 _dbus_connection_putback_message_link_unlocked (connection,
4778 /* now we don't want to free them */
4779 message_link = NULL;
4784 _dbus_verbose (" ... done dispatching\n");
4787 _dbus_connection_release_dispatch (connection);
4788 HAVE_LOCK_CHECK (connection);
4790 if (message != NULL)
4792 /* We don't want this message to count in maximum message limits when
4793 * computing the dispatch status, below. We have to drop the lock
4794 * temporarily, because finalizing a message can trigger callbacks.
4796 * We have a reference to the connection, and we don't use any cached
4797 * pointers to the connection's internals below this point, so it should
4798 * be safe to drop the lock and take it back. */
4799 CONNECTION_UNLOCK (connection);
4800 dbus_message_unref (message);
4801 CONNECTION_LOCK (connection);
4804 if (message_link != NULL)
4805 _dbus_list_free_link (message_link);
4807 _dbus_verbose ("before final status update\n");
4808 status = _dbus_connection_get_dispatch_status_unlocked (connection);
4810 /* unlocks and calls user code */
4811 _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4813 dbus_connection_unref (connection);
4819 * Sets the watch functions for the connection. These functions are
4820 * responsible for making the application's main loop aware of file
4821 * descriptors that need to be monitored for events, using select() or
4822 * poll(). When using Qt, typically the DBusAddWatchFunction would
4823 * create a QSocketNotifier. When using GLib, the DBusAddWatchFunction
4824 * could call g_io_add_watch(), or could be used as part of a more
4825 * elaborate GSource. Note that when a watch is added, it may
4828 * The DBusWatchToggledFunction notifies the application that the
4829 * watch has been enabled or disabled. Call dbus_watch_get_enabled()
4830 * to check this. A disabled watch should have no effect, and enabled
4831 * watch should be added to the main loop. This feature is used
4832 * instead of simply adding/removing the watch because
4833 * enabling/disabling can be done without memory allocation. The
4834 * toggled function may be NULL if a main loop re-queries
4835 * dbus_watch_get_enabled() every time anyway.
4837 * The DBusWatch can be queried for the file descriptor to watch using
4838 * dbus_watch_get_unix_fd() or dbus_watch_get_socket(), and for the
4839 * events to watch for using dbus_watch_get_flags(). The flags
4840 * returned by dbus_watch_get_flags() will only contain
4841 * DBUS_WATCH_READABLE and DBUS_WATCH_WRITABLE, never
4842 * DBUS_WATCH_HANGUP or DBUS_WATCH_ERROR; all watches implicitly
4843 * include a watch for hangups, errors, and other exceptional
4846 * Once a file descriptor becomes readable or writable, or an exception
4847 * occurs, dbus_watch_handle() should be called to
4848 * notify the connection of the file descriptor's condition.
4850 * dbus_watch_handle() cannot be called during the
4851 * DBusAddWatchFunction, as the connection will not be ready to handle
4854 * It is not allowed to reference a DBusWatch after it has been passed
4855 * to remove_function.
4857 * If #FALSE is returned due to lack of memory, the failure may be due
4858 * to a #FALSE return from the new add_function. If so, the
4859 * add_function may have been called successfully one or more times,
4860 * but the remove_function will also have been called to remove any
4861 * successful adds. i.e. if #FALSE is returned the net result
4862 * should be that dbus_connection_set_watch_functions() has no effect,
4863 * but the add_function and remove_function may have been called.
4865 * @note The thread lock on DBusConnection is held while
4866 * watch functions are invoked, so inside these functions you
4867 * may not invoke any methods on DBusConnection or it will deadlock.
4868 * See the comments in the code or http://lists.freedesktop.org/archives/dbus/2007-July/tread.html#8144
4869 * if you encounter this issue and want to attempt writing a patch.
4871 * @param connection the connection.
4872 * @param add_function function to begin monitoring a new descriptor.
4873 * @param remove_function function to stop monitoring a descriptor.
4874 * @param toggled_function function to notify of enable/disable
4875 * @param data data to pass to add_function and remove_function.
4876 * @param free_data_function function to be called to free the data.
4877 * @returns #FALSE on failure (no memory)
4880 dbus_connection_set_watch_functions (DBusConnection *connection,
4881 DBusAddWatchFunction add_function,
4882 DBusRemoveWatchFunction remove_function,
4883 DBusWatchToggledFunction toggled_function,
4885 DBusFreeFunction free_data_function)
4889 _dbus_return_val_if_fail (connection != NULL, FALSE);
4891 CONNECTION_LOCK (connection);
4893 retval = _dbus_watch_list_set_functions (connection->watches,
4894 add_function, remove_function,
4896 data, free_data_function);
4898 CONNECTION_UNLOCK (connection);
4904 * Sets the timeout functions for the connection. These functions are
4905 * responsible for making the application's main loop aware of timeouts.
4906 * When using Qt, typically the DBusAddTimeoutFunction would create a
4907 * QTimer. When using GLib, the DBusAddTimeoutFunction would call
4910 * The DBusTimeoutToggledFunction notifies the application that the
4911 * timeout has been enabled or disabled. Call
4912 * dbus_timeout_get_enabled() to check this. A disabled timeout should
4913 * have no effect, and enabled timeout should be added to the main
4914 * loop. This feature is used instead of simply adding/removing the
4915 * timeout because enabling/disabling can be done without memory
4916 * allocation. With Qt, QTimer::start() and QTimer::stop() can be used
4917 * to enable and disable. The toggled function may be NULL if a main
4918 * loop re-queries dbus_timeout_get_enabled() every time anyway.
4919 * Whenever a timeout is toggled, its interval may change.
4921 * The DBusTimeout can be queried for the timer interval using
4922 * dbus_timeout_get_interval(). dbus_timeout_handle() should be called
4923 * repeatedly, each time the interval elapses, starting after it has
4924 * elapsed once. The timeout stops firing when it is removed with the
4925 * given remove_function. The timer interval may change whenever the
4926 * timeout is added, removed, or toggled.
4928 * @note The thread lock on DBusConnection is held while
4929 * timeout functions are invoked, so inside these functions you
4930 * may not invoke any methods on DBusConnection or it will deadlock.
4931 * See the comments in the code or http://lists.freedesktop.org/archives/dbus/2007-July/thread.html#8144
4932 * if you encounter this issue and want to attempt writing a patch.
4934 * @param connection the connection.
4935 * @param add_function function to add a timeout.
4936 * @param remove_function function to remove a timeout.
4937 * @param toggled_function function to notify of enable/disable
4938 * @param data data to pass to add_function and remove_function.
4939 * @param free_data_function function to be called to free the data.
4940 * @returns #FALSE on failure (no memory)
4943 dbus_connection_set_timeout_functions (DBusConnection *connection,
4944 DBusAddTimeoutFunction add_function,
4945 DBusRemoveTimeoutFunction remove_function,
4946 DBusTimeoutToggledFunction toggled_function,
4948 DBusFreeFunction free_data_function)
4952 _dbus_return_val_if_fail (connection != NULL, FALSE);
4954 CONNECTION_LOCK (connection);
4956 retval = _dbus_timeout_list_set_functions (connection->timeouts,
4957 add_function, remove_function,
4959 data, free_data_function);
4961 CONNECTION_UNLOCK (connection);
4967 * Sets the mainloop wakeup function for the connection. This function
4968 * is responsible for waking up the main loop (if its sleeping in
4969 * another thread) when some some change has happened to the
4970 * connection that the mainloop needs to reconsider (e.g. a message
4971 * has been queued for writing). When using Qt, this typically
4972 * results in a call to QEventLoop::wakeUp(). When using GLib, it
4973 * would call g_main_context_wakeup().
4975 * @param connection the connection.
4976 * @param wakeup_main_function function to wake up the mainloop
4977 * @param data data to pass wakeup_main_function
4978 * @param free_data_function function to be called to free the data.
4981 dbus_connection_set_wakeup_main_function (DBusConnection *connection,
4982 DBusWakeupMainFunction wakeup_main_function,
4984 DBusFreeFunction free_data_function)
4987 DBusFreeFunction old_free_data;
4989 _dbus_return_if_fail (connection != NULL);
4991 CONNECTION_LOCK (connection);
4992 old_data = connection->wakeup_main_data;
4993 old_free_data = connection->free_wakeup_main_data;
4995 connection->wakeup_main_function = wakeup_main_function;
4996 connection->wakeup_main_data = data;
4997 connection->free_wakeup_main_data = free_data_function;
4999 CONNECTION_UNLOCK (connection);
5001 /* Callback outside the lock */
5003 (*old_free_data) (old_data);
5007 * Set a function to be invoked when the dispatch status changes.
5008 * If the dispatch status is #DBUS_DISPATCH_DATA_REMAINS, then
5009 * dbus_connection_dispatch() needs to be called to process incoming
5010 * messages. However, dbus_connection_dispatch() MUST NOT BE CALLED
5011 * from inside the DBusDispatchStatusFunction. Indeed, almost
5012 * any reentrancy in this function is a bad idea. Instead,
5013 * the DBusDispatchStatusFunction should simply save an indication
5014 * that messages should be dispatched later, when the main loop
5017 * If you don't set a dispatch status function, you have to be sure to
5018 * dispatch on every iteration of your main loop, especially if
5019 * dbus_watch_handle() or dbus_timeout_handle() were called.
5021 * @param connection the connection
5022 * @param function function to call on dispatch status changes
5023 * @param data data for function
5024 * @param free_data_function free the function data
5027 dbus_connection_set_dispatch_status_function (DBusConnection *connection,
5028 DBusDispatchStatusFunction function,
5030 DBusFreeFunction free_data_function)
5033 DBusFreeFunction old_free_data;
5035 _dbus_return_if_fail (connection != NULL);
5037 CONNECTION_LOCK (connection);
5038 old_data = connection->dispatch_status_data;
5039 old_free_data = connection->free_dispatch_status_data;
5041 connection->dispatch_status_function = function;
5042 connection->dispatch_status_data = data;
5043 connection->free_dispatch_status_data = free_data_function;
5045 CONNECTION_UNLOCK (connection);
5047 /* Callback outside the lock */
5049 (*old_free_data) (old_data);
5053 * Get the UNIX file descriptor of the connection, if any. This can
5054 * be used for SELinux access control checks with getpeercon() for
5055 * example. DO NOT read or write to the file descriptor, or try to
5056 * select() on it; use DBusWatch for main loop integration. Not all
5057 * connections will have a file descriptor. So for adding descriptors
5058 * to the main loop, use dbus_watch_get_unix_fd() and so forth.
5060 * If the connection is socket-based, you can also use
5061 * dbus_connection_get_socket(), which will work on Windows too.
5062 * This function always fails on Windows.
5064 * Right now the returned descriptor is always a socket, but
5065 * that is not guaranteed.
5067 * @param connection the connection
5068 * @param fd return location for the file descriptor.
5069 * @returns #TRUE if fd is successfully obtained.
5072 dbus_connection_get_unix_fd (DBusConnection *connection,
5075 _dbus_return_val_if_fail (connection != NULL, FALSE);
5076 _dbus_return_val_if_fail (connection->transport != NULL, FALSE);
5079 /* FIXME do this on a lower level */
5083 return dbus_connection_get_socket(connection, fd);
5087 * Gets the underlying Windows or UNIX socket file descriptor
5088 * of the connection, if any. DO NOT read or write to the file descriptor, or try to
5089 * select() on it; use DBusWatch for main loop integration. Not all
5090 * connections will have a socket. So for adding descriptors
5091 * to the main loop, use dbus_watch_get_socket() and so forth.
5093 * If the connection is not socket-based, this function will return FALSE,
5094 * even if the connection does have a file descriptor of some kind.
5095 * i.e. this function always returns specifically a socket file descriptor.
5097 * @param connection the connection
5098 * @param fd return location for the file descriptor.
5099 * @returns #TRUE if fd is successfully obtained.
5102 dbus_connection_get_socket(DBusConnection *connection,
5107 _dbus_return_val_if_fail (connection != NULL, FALSE);
5108 _dbus_return_val_if_fail (connection->transport != NULL, FALSE);
5110 CONNECTION_LOCK (connection);
5112 retval = _dbus_transport_get_socket_fd (connection->transport,
5115 CONNECTION_UNLOCK (connection);
5122 * Gets the UNIX user ID of the connection if known. Returns #TRUE if
5123 * the uid is filled in. Always returns #FALSE on non-UNIX platforms
5124 * for now, though in theory someone could hook Windows to NIS or
5125 * something. Always returns #FALSE prior to authenticating the
5128 * The UID is only read by servers from clients; clients can't usually
5129 * get the UID of servers, because servers do not authenticate to
5130 * clients. The returned UID is the UID the connection authenticated
5133 * The message bus is a server and the apps connecting to the bus
5136 * You can ask the bus to tell you the UID of another connection though
5137 * if you like; this is done with dbus_bus_get_unix_user().
5139 * @param connection the connection
5140 * @param uid return location for the user ID
5141 * @returns #TRUE if uid is filled in with a valid user ID
5144 dbus_connection_get_unix_user (DBusConnection *connection,
5149 _dbus_return_val_if_fail (connection != NULL, FALSE);
5150 _dbus_return_val_if_fail (uid != NULL, FALSE);
5152 CONNECTION_LOCK (connection);
5154 if (!_dbus_transport_get_is_authenticated (connection->transport))
5157 result = _dbus_transport_get_unix_user (connection->transport,
5161 _dbus_assert (!result);
5164 CONNECTION_UNLOCK (connection);
5170 * Gets the process ID of the connection if any.
5171 * Returns #TRUE if the pid is filled in.
5172 * Always returns #FALSE prior to authenticating the
5175 * @param connection the connection
5176 * @param pid return location for the process ID
5177 * @returns #TRUE if uid is filled in with a valid process ID
5180 dbus_connection_get_unix_process_id (DBusConnection *connection,
5185 _dbus_return_val_if_fail (connection != NULL, FALSE);
5186 _dbus_return_val_if_fail (pid != NULL, FALSE);
5188 CONNECTION_LOCK (connection);
5190 if (!_dbus_transport_get_is_authenticated (connection->transport))
5193 result = _dbus_transport_get_unix_process_id (connection->transport,
5196 CONNECTION_UNLOCK (connection);
5202 * Gets the ADT audit data of the connection if any.
5203 * Returns #TRUE if the structure pointer is returned.
5204 * Always returns #FALSE prior to authenticating the
5207 * @param connection the connection
5208 * @param data return location for audit data
5209 * @returns #TRUE if audit data is filled in with a valid ucred pointer
5212 dbus_connection_get_adt_audit_session_data (DBusConnection *connection,
5214 dbus_int32_t *data_size)
5218 _dbus_return_val_if_fail (connection != NULL, FALSE);
5219 _dbus_return_val_if_fail (data != NULL, FALSE);
5220 _dbus_return_val_if_fail (data_size != NULL, FALSE);
5222 CONNECTION_LOCK (connection);
5224 if (!_dbus_transport_get_is_authenticated (connection->transport))
5227 result = _dbus_transport_get_adt_audit_session_data (connection->transport,
5230 CONNECTION_UNLOCK (connection);
5236 * Sets a predicate function used to determine whether a given user ID
5237 * is allowed to connect. When an incoming connection has
5238 * authenticated with a particular user ID, this function is called;
5239 * if it returns #TRUE, the connection is allowed to proceed,
5240 * otherwise the connection is disconnected.
5242 * If the function is set to #NULL (as it is by default), then
5243 * only the same UID as the server process will be allowed to
5244 * connect. Also, root is always allowed to connect.
5246 * On Windows, the function will be set and its free_data_function will
5247 * be invoked when the connection is freed or a new function is set.
5248 * However, the function will never be called, because there are
5249 * no UNIX user ids to pass to it, or at least none of the existing
5250 * auth protocols would allow authenticating as a UNIX user on Windows.
5252 * @param connection the connection
5253 * @param function the predicate
5254 * @param data data to pass to the predicate
5255 * @param free_data_function function to free the data
5258 dbus_connection_set_unix_user_function (DBusConnection *connection,
5259 DBusAllowUnixUserFunction function,
5261 DBusFreeFunction free_data_function)
5263 void *old_data = NULL;
5264 DBusFreeFunction old_free_function = NULL;
5266 _dbus_return_if_fail (connection != NULL);
5268 CONNECTION_LOCK (connection);
5269 _dbus_transport_set_unix_user_function (connection->transport,
5270 function, data, free_data_function,
5271 &old_data, &old_free_function);
5272 CONNECTION_UNLOCK (connection);
5274 if (old_free_function != NULL)
5275 (* old_free_function) (old_data);
5279 * Gets the Windows user SID of the connection if known. Returns
5280 * #TRUE if the ID is filled in. Always returns #FALSE on non-Windows
5281 * platforms for now, though in theory someone could hook UNIX to
5282 * Active Directory or something. Always returns #FALSE prior to
5283 * authenticating the connection.
5285 * The user is only read by servers from clients; clients can't usually
5286 * get the user of servers, because servers do not authenticate to
5287 * clients. The returned user is the user the connection authenticated
5290 * The message bus is a server and the apps connecting to the bus
5293 * The returned user string has to be freed with dbus_free().
5295 * The return value indicates whether the user SID is available;
5296 * if it's available but we don't have the memory to copy it,
5297 * then the return value is #TRUE and #NULL is given as the SID.
5299 * @todo We would like to be able to say "You can ask the bus to tell
5300 * you the user of another connection though if you like; this is done
5301 * with dbus_bus_get_windows_user()." But this has to be implemented
5302 * in bus/driver.c and dbus/dbus-bus.c, and is pointless anyway
5303 * since on Windows we only use the session bus for now.
5305 * @param connection the connection
5306 * @param windows_sid_p return location for an allocated copy of the user ID, or #NULL if no memory
5307 * @returns #TRUE if user is available (returned value may be #NULL anyway if no memory)
5310 dbus_connection_get_windows_user (DBusConnection *connection,
5311 char **windows_sid_p)
5315 _dbus_return_val_if_fail (connection != NULL, FALSE);
5316 _dbus_return_val_if_fail (windows_sid_p != NULL, FALSE);
5318 CONNECTION_LOCK (connection);
5320 if (!_dbus_transport_get_is_authenticated (connection->transport))
5323 result = _dbus_transport_get_windows_user (connection->transport,
5327 _dbus_assert (!result);
5330 CONNECTION_UNLOCK (connection);
5336 * Sets a predicate function used to determine whether a given user ID
5337 * is allowed to connect. When an incoming connection has
5338 * authenticated with a particular user ID, this function is called;
5339 * if it returns #TRUE, the connection is allowed to proceed,
5340 * otherwise the connection is disconnected.
5342 * If the function is set to #NULL (as it is by default), then
5343 * only the same user owning the server process will be allowed to
5346 * On UNIX, the function will be set and its free_data_function will
5347 * be invoked when the connection is freed or a new function is set.
5348 * However, the function will never be called, because there is no
5349 * way right now to authenticate as a Windows user on UNIX.
5351 * @param connection the connection
5352 * @param function the predicate
5353 * @param data data to pass to the predicate
5354 * @param free_data_function function to free the data
5357 dbus_connection_set_windows_user_function (DBusConnection *connection,
5358 DBusAllowWindowsUserFunction function,
5360 DBusFreeFunction free_data_function)
5362 void *old_data = NULL;
5363 DBusFreeFunction old_free_function = NULL;
5365 _dbus_return_if_fail (connection != NULL);
5367 CONNECTION_LOCK (connection);
5368 _dbus_transport_set_windows_user_function (connection->transport,
5369 function, data, free_data_function,
5370 &old_data, &old_free_function);
5371 CONNECTION_UNLOCK (connection);
5373 if (old_free_function != NULL)
5374 (* old_free_function) (old_data);
5378 * This function must be called on the server side of a connection when the
5379 * connection is first seen in the #DBusNewConnectionFunction. If set to
5380 * #TRUE (the default is #FALSE), then the connection can proceed even if
5381 * the client does not authenticate as some user identity, i.e. clients
5382 * can connect anonymously.
5384 * This setting interacts with the available authorization mechanisms
5385 * (see dbus_server_set_auth_mechanisms()). Namely, an auth mechanism
5386 * such as ANONYMOUS that supports anonymous auth must be included in
5387 * the list of available mechanisms for anonymous login to work.
5389 * This setting also changes the default rule for connections
5390 * authorized as a user; normally, if a connection authorizes as
5391 * a user identity, it is permitted if the user identity is
5392 * root or the user identity matches the user identity of the server
5393 * process. If anonymous connections are allowed, however,
5394 * then any user identity is allowed.
5396 * You can override the rules for connections authorized as a
5397 * user identity with dbus_connection_set_unix_user_function()
5398 * and dbus_connection_set_windows_user_function().
5400 * @param connection the connection
5401 * @param value whether to allow authentication as an anonymous user
5404 dbus_connection_set_allow_anonymous (DBusConnection *connection,
5407 _dbus_return_if_fail (connection != NULL);
5409 CONNECTION_LOCK (connection);
5410 _dbus_transport_set_allow_anonymous (connection->transport, value);
5411 CONNECTION_UNLOCK (connection);
5416 * Normally #DBusConnection automatically handles all messages to the
5417 * org.freedesktop.DBus.Peer interface. However, the message bus wants
5418 * to be able to route methods on that interface through the bus and
5419 * to other applications. If routing peer messages is enabled, then
5420 * messages with the org.freedesktop.DBus.Peer interface that also
5421 * have a bus destination name set will not be automatically
5422 * handled by the #DBusConnection and instead will be dispatched
5423 * normally to the application.
5425 * If a normal application sets this flag, it can break things badly.
5426 * So don't set this unless you are the message bus.
5428 * @param connection the connection
5429 * @param value #TRUE to pass through org.freedesktop.DBus.Peer messages with a bus name set
5432 dbus_connection_set_route_peer_messages (DBusConnection *connection,
5435 _dbus_return_if_fail (connection != NULL);
5437 CONNECTION_LOCK (connection);
5438 connection->route_peer_messages = TRUE;
5439 CONNECTION_UNLOCK (connection);
5443 * Adds a message filter. Filters are handlers that are run on all
5444 * incoming messages, prior to the objects registered with
5445 * dbus_connection_register_object_path(). Filters are run in the
5446 * order that they were added. The same handler can be added as a
5447 * filter more than once, in which case it will be run more than once.
5448 * Filters added during a filter callback won't be run on the message
5451 * @todo we don't run filters on messages while blocking without
5452 * entering the main loop, since filters are run as part of
5453 * dbus_connection_dispatch(). This is probably a feature, as filters
5454 * could create arbitrary reentrancy. But kind of sucks if you're
5455 * trying to filter METHOD_RETURN for some reason.
5457 * @param connection the connection
5458 * @param function function to handle messages
5459 * @param user_data user data to pass to the function
5460 * @param free_data_function function to use for freeing user data
5461 * @returns #TRUE on success, #FALSE if not enough memory.
5464 dbus_connection_add_filter (DBusConnection *connection,
5465 DBusHandleMessageFunction function,
5467 DBusFreeFunction free_data_function)
5469 DBusMessageFilter *filter;
5471 _dbus_return_val_if_fail (connection != NULL, FALSE);
5472 _dbus_return_val_if_fail (function != NULL, FALSE);
5474 filter = dbus_new0 (DBusMessageFilter, 1);
5478 _dbus_atomic_inc (&filter->refcount);
5480 CONNECTION_LOCK (connection);
5482 if (!_dbus_list_append (&connection->filter_list,
5485 _dbus_message_filter_unref (filter);
5486 CONNECTION_UNLOCK (connection);
5490 /* Fill in filter after all memory allocated,
5491 * so we don't run the free_user_data_function
5492 * if the add_filter() fails
5495 filter->function = function;
5496 filter->user_data = user_data;
5497 filter->free_user_data_function = free_data_function;
5499 CONNECTION_UNLOCK (connection);
5504 * Removes a previously-added message filter. It is a programming
5505 * error to call this function for a handler that has not been added
5506 * as a filter. If the given handler was added more than once, only
5507 * one instance of it will be removed (the most recently-added
5510 * @param connection the connection
5511 * @param function the handler to remove
5512 * @param user_data user data for the handler to remove
5516 dbus_connection_remove_filter (DBusConnection *connection,
5517 DBusHandleMessageFunction function,
5521 DBusMessageFilter *filter;
5523 _dbus_return_if_fail (connection != NULL);
5524 _dbus_return_if_fail (function != NULL);
5526 CONNECTION_LOCK (connection);
5530 link = _dbus_list_get_last_link (&connection->filter_list);
5531 while (link != NULL)
5533 filter = link->data;
5535 if (filter->function == function &&
5536 filter->user_data == user_data)
5538 _dbus_list_remove_link (&connection->filter_list, link);
5539 filter->function = NULL;
5544 link = _dbus_list_get_prev_link (&connection->filter_list, link);
5548 CONNECTION_UNLOCK (connection);
5550 #ifndef DBUS_DISABLE_CHECKS
5553 _dbus_warn_check_failed ("Attempt to remove filter function %p user data %p, but no such filter has been added\n",
5554 function, user_data);
5559 /* Call application code */
5560 if (filter->free_user_data_function)
5561 (* filter->free_user_data_function) (filter->user_data);
5563 filter->free_user_data_function = NULL;
5564 filter->user_data = NULL;
5566 _dbus_message_filter_unref (filter);
5570 * Registers a handler for a given path or subsection in the object
5571 * hierarchy. The given vtable handles messages sent to exactly the
5572 * given path or also for paths bellow that, depending on fallback
5575 * @param connection the connection
5576 * @param fallback whether to handle messages also for "subdirectory"
5577 * @param path a '/' delimited string of path elements
5578 * @param vtable the virtual table
5579 * @param user_data data to pass to functions in the vtable
5580 * @param error address where an error can be returned
5581 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5582 * #DBUS_ERROR_OBJECT_PATH_IN_USE) is reported
5585 _dbus_connection_register_object_path (DBusConnection *connection,
5586 dbus_bool_t fallback,
5588 const DBusObjectPathVTable *vtable,
5592 char **decomposed_path;
5595 if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
5598 CONNECTION_LOCK (connection);
5600 retval = _dbus_object_tree_register (connection->objects,
5602 (const char **) decomposed_path, vtable,
5605 CONNECTION_UNLOCK (connection);
5607 dbus_free_string_array (decomposed_path);
5613 * Registers a handler for a given path in the object hierarchy.
5614 * The given vtable handles messages sent to exactly the given path.
5616 * @param connection the connection
5617 * @param path a '/' delimited string of path elements
5618 * @param vtable the virtual table
5619 * @param user_data data to pass to functions in the vtable
5620 * @param error address where an error can be returned
5621 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5622 * #DBUS_ERROR_OBJECT_PATH_IN_USE) is reported
5625 dbus_connection_try_register_object_path (DBusConnection *connection,
5627 const DBusObjectPathVTable *vtable,
5631 _dbus_return_val_if_fail (connection != NULL, FALSE);
5632 _dbus_return_val_if_fail (path != NULL, FALSE);
5633 _dbus_return_val_if_fail (path[0] == '/', FALSE);
5634 _dbus_return_val_if_fail (vtable != NULL, FALSE);
5636 return _dbus_connection_register_object_path (connection, FALSE, path, vtable, user_data, error);
5640 * Registers a handler for a given path in the object hierarchy.
5641 * The given vtable handles messages sent to exactly the given path.
5643 * It is a bug to call this function for object paths which already
5644 * have a handler. Use dbus_connection_try_register_object_path() if this
5645 * might be the case.
5647 * @param connection the connection
5648 * @param path a '/' delimited string of path elements
5649 * @param vtable the virtual table
5650 * @param user_data data to pass to functions in the vtable
5651 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5652 * #DBUS_ERROR_OBJECT_PATH_IN_USE) ocurred
5655 dbus_connection_register_object_path (DBusConnection *connection,
5657 const DBusObjectPathVTable *vtable,
5661 DBusError error = DBUS_ERROR_INIT;
5663 _dbus_return_val_if_fail (connection != NULL, FALSE);
5664 _dbus_return_val_if_fail (path != NULL, FALSE);
5665 _dbus_return_val_if_fail (path[0] == '/', FALSE);
5666 _dbus_return_val_if_fail (vtable != NULL, FALSE);
5668 retval = _dbus_connection_register_object_path (connection, FALSE, path, vtable, user_data, &error);
5670 if (dbus_error_has_name (&error, DBUS_ERROR_OBJECT_PATH_IN_USE))
5672 _dbus_warn ("%s\n", error.message);
5673 dbus_error_free (&error);
5681 * Registers a fallback handler for a given subsection of the object
5682 * hierarchy. The given vtable handles messages at or below the given
5683 * path. You can use this to establish a default message handling
5684 * policy for a whole "subdirectory."
5686 * @param connection the connection
5687 * @param path a '/' delimited string of path elements
5688 * @param vtable the virtual table
5689 * @param user_data data to pass to functions in the vtable
5690 * @param error address where an error can be returned
5691 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5692 * #DBUS_ERROR_OBJECT_PATH_IN_USE) is reported
5695 dbus_connection_try_register_fallback (DBusConnection *connection,
5697 const DBusObjectPathVTable *vtable,
5701 _dbus_return_val_if_fail (connection != NULL, FALSE);
5702 _dbus_return_val_if_fail (path != NULL, FALSE);
5703 _dbus_return_val_if_fail (path[0] == '/', FALSE);
5704 _dbus_return_val_if_fail (vtable != NULL, FALSE);
5706 return _dbus_connection_register_object_path (connection, TRUE, path, vtable, user_data, error);
5710 * Registers a fallback handler for a given subsection of the object
5711 * hierarchy. The given vtable handles messages at or below the given
5712 * path. You can use this to establish a default message handling
5713 * policy for a whole "subdirectory."
5715 * It is a bug to call this function for object paths which already
5716 * have a handler. Use dbus_connection_try_register_fallback() if this
5717 * might be the case.
5719 * @param connection the connection
5720 * @param path a '/' delimited string of path elements
5721 * @param vtable the virtual table
5722 * @param user_data data to pass to functions in the vtable
5723 * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5724 * #DBUS_ERROR_OBJECT_PATH_IN_USE) occured
5727 dbus_connection_register_fallback (DBusConnection *connection,
5729 const DBusObjectPathVTable *vtable,
5733 DBusError error = DBUS_ERROR_INIT;
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 retval = _dbus_connection_register_object_path (connection, TRUE, path, vtable, user_data, &error);
5742 if (dbus_error_has_name (&error, DBUS_ERROR_OBJECT_PATH_IN_USE))
5744 _dbus_warn ("%s\n", error.message);
5745 dbus_error_free (&error);
5753 * Unregisters the handler registered with exactly the given path.
5754 * It's a bug to call this function for a path that isn't registered.
5755 * Can unregister both fallback paths and object paths.
5757 * @param connection the connection
5758 * @param path a '/' delimited string of path elements
5759 * @returns #FALSE if not enough memory
5762 dbus_connection_unregister_object_path (DBusConnection *connection,
5765 char **decomposed_path;
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);
5771 if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
5774 CONNECTION_LOCK (connection);
5776 _dbus_object_tree_unregister_and_unlock (connection->objects, (const char **) decomposed_path);
5778 dbus_free_string_array (decomposed_path);
5784 * Gets the user data passed to dbus_connection_register_object_path()
5785 * or dbus_connection_register_fallback(). If nothing was registered
5786 * at this path, the data is filled in with #NULL.
5788 * @param connection the connection
5789 * @param path the path you registered with
5790 * @param data_p location to store the user data, or #NULL
5791 * @returns #FALSE if not enough memory
5794 dbus_connection_get_object_path_data (DBusConnection *connection,
5798 char **decomposed_path;
5800 _dbus_return_val_if_fail (connection != NULL, FALSE);
5801 _dbus_return_val_if_fail (path != NULL, FALSE);
5802 _dbus_return_val_if_fail (data_p != NULL, FALSE);
5806 if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
5809 CONNECTION_LOCK (connection);
5811 *data_p = _dbus_object_tree_get_user_data_unlocked (connection->objects, (const char**) decomposed_path);
5813 CONNECTION_UNLOCK (connection);
5815 dbus_free_string_array (decomposed_path);
5821 * Lists the registered fallback handlers and object path handlers at
5822 * the given parent_path. The returned array should be freed with
5823 * dbus_free_string_array().
5825 * @param connection the connection
5826 * @param parent_path the path to list the child handlers of
5827 * @param child_entries returns #NULL-terminated array of children
5828 * @returns #FALSE if no memory to allocate the child entries
5831 dbus_connection_list_registered (DBusConnection *connection,
5832 const char *parent_path,
5833 char ***child_entries)
5835 char **decomposed_path;
5837 _dbus_return_val_if_fail (connection != NULL, FALSE);
5838 _dbus_return_val_if_fail (parent_path != NULL, FALSE);
5839 _dbus_return_val_if_fail (parent_path[0] == '/', FALSE);
5840 _dbus_return_val_if_fail (child_entries != NULL, FALSE);
5842 if (!_dbus_decompose_path (parent_path, strlen (parent_path), &decomposed_path, NULL))
5845 CONNECTION_LOCK (connection);
5847 retval = _dbus_object_tree_list_registered_and_unlock (connection->objects,
5848 (const char **) decomposed_path,
5850 dbus_free_string_array (decomposed_path);
5855 static DBusDataSlotAllocator slot_allocator;
5856 _DBUS_DEFINE_GLOBAL_LOCK (connection_slots);
5859 * Allocates an integer ID to be used for storing application-specific
5860 * data on any DBusConnection. The allocated ID may then be used
5861 * with dbus_connection_set_data() and dbus_connection_get_data().
5862 * The passed-in slot must be initialized to -1, and is filled in
5863 * with the slot ID. If the passed-in slot is not -1, it's assumed
5864 * to be already allocated, and its refcount is incremented.
5866 * The allocated slot is global, i.e. all DBusConnection objects will
5867 * have a slot with the given integer ID reserved.
5869 * @param slot_p address of a global variable storing the slot
5870 * @returns #FALSE on failure (no memory)
5873 dbus_connection_allocate_data_slot (dbus_int32_t *slot_p)
5875 return _dbus_data_slot_allocator_alloc (&slot_allocator,
5876 &_DBUS_LOCK_NAME (connection_slots),
5881 * Deallocates a global ID for connection data slots.
5882 * dbus_connection_get_data() and dbus_connection_set_data() may no
5883 * longer be used with this slot. Existing data stored on existing
5884 * DBusConnection objects will be freed when the connection is
5885 * finalized, but may not be retrieved (and may only be replaced if
5886 * someone else reallocates the slot). When the refcount on the
5887 * passed-in slot reaches 0, it is set to -1.
5889 * @param slot_p address storing the slot to deallocate
5892 dbus_connection_free_data_slot (dbus_int32_t *slot_p)
5894 _dbus_return_if_fail (*slot_p >= 0);
5896 _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
5900 * Stores a pointer on a DBusConnection, along
5901 * with an optional function to be used for freeing
5902 * the data when the data is set again, or when
5903 * the connection is finalized. The slot number
5904 * must have been allocated with dbus_connection_allocate_data_slot().
5906 * @note This function does not take the
5907 * main thread lock on DBusConnection, which allows it to be
5908 * used from inside watch and timeout functions. (See the
5909 * note in docs for dbus_connection_set_watch_functions().)
5910 * A side effect of this is that you need to know there's
5911 * a reference held on the connection while invoking
5912 * dbus_connection_set_data(), or the connection could be
5913 * finalized during dbus_connection_set_data().
5915 * @param connection the connection
5916 * @param slot the slot number
5917 * @param data the data to store
5918 * @param free_data_func finalizer function for the data
5919 * @returns #TRUE if there was enough memory to store the data
5922 dbus_connection_set_data (DBusConnection *connection,
5925 DBusFreeFunction free_data_func)
5927 DBusFreeFunction old_free_func;
5931 _dbus_return_val_if_fail (connection != NULL, FALSE);
5932 _dbus_return_val_if_fail (slot >= 0, FALSE);
5934 SLOTS_LOCK (connection);
5936 retval = _dbus_data_slot_list_set (&slot_allocator,
5937 &connection->slot_list,
5938 slot, data, free_data_func,
5939 &old_free_func, &old_data);
5941 SLOTS_UNLOCK (connection);
5945 /* Do the actual free outside the connection lock */
5947 (* old_free_func) (old_data);
5954 * Retrieves data previously set with dbus_connection_set_data().
5955 * The slot must still be allocated (must not have been freed).
5957 * @note This function does not take the
5958 * main thread lock on DBusConnection, which allows it to be
5959 * used from inside watch and timeout functions. (See the
5960 * note in docs for dbus_connection_set_watch_functions().)
5961 * A side effect of this is that you need to know there's
5962 * a reference held on the connection while invoking
5963 * dbus_connection_get_data(), or the connection could be
5964 * finalized during dbus_connection_get_data().
5966 * @param connection the connection
5967 * @param slot the slot to get data from
5968 * @returns the data, or #NULL if not found
5971 dbus_connection_get_data (DBusConnection *connection,
5976 _dbus_return_val_if_fail (connection != NULL, NULL);
5978 SLOTS_LOCK (connection);
5980 res = _dbus_data_slot_list_get (&slot_allocator,
5981 &connection->slot_list,
5984 SLOTS_UNLOCK (connection);
5990 * This function sets a global flag for whether dbus_connection_new()
5991 * will set SIGPIPE behavior to SIG_IGN.
5993 * @param will_modify_sigpipe #TRUE to allow sigpipe to be set to SIG_IGN
5996 dbus_connection_set_change_sigpipe (dbus_bool_t will_modify_sigpipe)
5998 _dbus_modify_sigpipe = will_modify_sigpipe != FALSE;
6002 * Specifies the maximum size message this connection is allowed to
6003 * receive. Larger messages will result in disconnecting the
6006 * @param connection a #DBusConnection
6007 * @param size maximum message size the connection can receive, in bytes
6010 dbus_connection_set_max_message_size (DBusConnection *connection,
6013 _dbus_return_if_fail (connection != NULL);
6015 CONNECTION_LOCK (connection);
6016 _dbus_transport_set_max_message_size (connection->transport,
6018 CONNECTION_UNLOCK (connection);
6022 * Gets the value set by dbus_connection_set_max_message_size().
6024 * @param connection the connection
6025 * @returns the max size of a single message
6028 dbus_connection_get_max_message_size (DBusConnection *connection)
6032 _dbus_return_val_if_fail (connection != NULL, 0);
6034 CONNECTION_LOCK (connection);
6035 res = _dbus_transport_get_max_message_size (connection->transport);
6036 CONNECTION_UNLOCK (connection);
6041 * Specifies the maximum number of unix fds a message on this
6042 * connection is allowed to receive. Messages with more unix fds will
6043 * result in disconnecting the connection.
6045 * @param connection a #DBusConnection
6046 * @param size maximum message unix fds the connection can receive
6049 dbus_connection_set_max_message_unix_fds (DBusConnection *connection,
6052 _dbus_return_if_fail (connection != NULL);
6054 CONNECTION_LOCK (connection);
6055 _dbus_transport_set_max_message_unix_fds (connection->transport,
6057 CONNECTION_UNLOCK (connection);
6061 * Gets the value set by dbus_connection_set_max_message_unix_fds().
6063 * @param connection the connection
6064 * @returns the max numer of unix fds of a single message
6067 dbus_connection_get_max_message_unix_fds (DBusConnection *connection)
6071 _dbus_return_val_if_fail (connection != NULL, 0);
6073 CONNECTION_LOCK (connection);
6074 res = _dbus_transport_get_max_message_unix_fds (connection->transport);
6075 CONNECTION_UNLOCK (connection);
6080 * Sets the maximum total number of bytes that can be used for all messages
6081 * received on this connection. Messages count toward the maximum until
6082 * they are finalized. When the maximum is reached, the connection will
6083 * not read more data until some messages are finalized.
6085 * The semantics of the maximum are: if outstanding messages are
6086 * already above the maximum, additional messages will not be read.
6087 * The semantics are not: if the next message would cause us to exceed
6088 * the maximum, we don't read it. The reason is that we don't know the
6089 * size of a message until after we read it.
6091 * Thus, the max live messages size can actually be exceeded
6092 * by up to the maximum size of a single message.
6094 * Also, if we read say 1024 bytes off the wire in a single read(),
6095 * and that contains a half-dozen small messages, we may exceed the
6096 * size max by that amount. But this should be inconsequential.
6098 * This does imply that we can't call read() with a buffer larger
6099 * than we're willing to exceed this limit by.
6101 * @param connection the connection
6102 * @param size the maximum size in bytes of all outstanding messages
6105 dbus_connection_set_max_received_size (DBusConnection *connection,
6108 _dbus_return_if_fail (connection != NULL);
6110 CONNECTION_LOCK (connection);
6111 _dbus_transport_set_max_received_size (connection->transport,
6113 CONNECTION_UNLOCK (connection);
6117 * Gets the value set by dbus_connection_set_max_received_size().
6119 * @param connection the connection
6120 * @returns the max size of all live messages
6123 dbus_connection_get_max_received_size (DBusConnection *connection)
6127 _dbus_return_val_if_fail (connection != NULL, 0);
6129 CONNECTION_LOCK (connection);
6130 res = _dbus_transport_get_max_received_size (connection->transport);
6131 CONNECTION_UNLOCK (connection);
6136 * Sets the maximum total number of unix fds that can be used for all messages
6137 * received on this connection. Messages count toward the maximum until
6138 * they are finalized. When the maximum is reached, the connection will
6139 * not read more data until some messages are finalized.
6141 * The semantics are analogous to those of dbus_connection_set_max_received_size().
6143 * @param connection the connection
6144 * @param size the maximum size in bytes of all outstanding messages
6147 dbus_connection_set_max_received_unix_fds (DBusConnection *connection,
6150 _dbus_return_if_fail (connection != NULL);
6152 CONNECTION_LOCK (connection);
6153 _dbus_transport_set_max_received_unix_fds (connection->transport,
6155 CONNECTION_UNLOCK (connection);
6159 * Gets the value set by dbus_connection_set_max_received_unix_fds().
6161 * @param connection the connection
6162 * @returns the max unix fds of all live messages
6165 dbus_connection_get_max_received_unix_fds (DBusConnection *connection)
6169 _dbus_return_val_if_fail (connection != NULL, 0);
6171 CONNECTION_LOCK (connection);
6172 res = _dbus_transport_get_max_received_unix_fds (connection->transport);
6173 CONNECTION_UNLOCK (connection);
6178 * Gets the approximate size in bytes of all messages in the outgoing
6179 * message queue. The size is approximate in that you shouldn't use
6180 * it to decide how many bytes to read off the network or anything
6181 * of that nature, as optimizations may choose to tell small white lies
6182 * to avoid performance overhead.
6184 * @param connection the connection
6185 * @returns the number of bytes that have been queued up but not sent
6188 dbus_connection_get_outgoing_size (DBusConnection *connection)
6192 _dbus_return_val_if_fail (connection != NULL, 0);
6194 CONNECTION_LOCK (connection);
6195 res = _dbus_counter_get_size_value (connection->outgoing_counter);
6196 CONNECTION_UNLOCK (connection);
6200 #ifdef DBUS_ENABLE_STATS
6202 _dbus_connection_get_stats (DBusConnection *connection,
6203 dbus_uint32_t *in_messages,
6204 dbus_uint32_t *in_bytes,
6205 dbus_uint32_t *in_fds,
6206 dbus_uint32_t *in_peak_bytes,
6207 dbus_uint32_t *in_peak_fds,
6208 dbus_uint32_t *out_messages,
6209 dbus_uint32_t *out_bytes,
6210 dbus_uint32_t *out_fds,
6211 dbus_uint32_t *out_peak_bytes,
6212 dbus_uint32_t *out_peak_fds)
6214 CONNECTION_LOCK (connection);
6216 if (in_messages != NULL)
6217 *in_messages = connection->n_incoming;
6219 _dbus_transport_get_stats (connection->transport,
6220 in_bytes, in_fds, in_peak_bytes, in_peak_fds);
6222 if (out_messages != NULL)
6223 *out_messages = connection->n_outgoing;
6225 if (out_bytes != NULL)
6226 *out_bytes = _dbus_counter_get_size_value (connection->outgoing_counter);
6228 if (out_fds != NULL)
6229 *out_fds = _dbus_counter_get_unix_fd_value (connection->outgoing_counter);
6231 if (out_peak_bytes != NULL)
6232 *out_peak_bytes = _dbus_counter_get_peak_size_value (connection->outgoing_counter);
6234 if (out_peak_fds != NULL)
6235 *out_peak_fds = _dbus_counter_get_peak_unix_fd_value (connection->outgoing_counter);
6237 CONNECTION_UNLOCK (connection);
6239 #endif /* DBUS_ENABLE_STATS */
6242 * Gets the approximate number of uni fds of all messages in the
6243 * outgoing message queue.
6245 * @param connection the connection
6246 * @returns the number of unix fds that have been queued up but not sent
6249 dbus_connection_get_outgoing_unix_fds (DBusConnection *connection)
6253 _dbus_return_val_if_fail (connection != NULL, 0);
6255 CONNECTION_LOCK (connection);
6256 res = _dbus_counter_get_unix_fd_value (connection->outgoing_counter);
6257 CONNECTION_UNLOCK (connection);
6261 #ifdef DBUS_BUILD_TESTS
6263 * Returns the address of the transport object of this connection
6265 * @param connection the connection
6266 * @returns the address string
6269 _dbus_connection_get_address (DBusConnection *connection)
6271 return _dbus_transport_get_address (connection->transport);