e01057908a88e203e27dcb22670fba5f66e31845
[platform/upstream/dbus.git] / dbus / dbus-connection.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-connection.c DBusConnection object
3  *
4  * Copyright (C) 2002-2006  Red Hat Inc.
5  *
6  * Licensed under the Academic Free License version 2.1
7  * 
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.
12  *
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.
17  * 
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
21  *
22  */
23
24 #include <config.h>
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"
45 #include "dbus-bus.h"
46 #include "dbus-marshal-basic.h"
47
48 #ifdef DBUS_DISABLE_CHECKS
49 #define TOOK_LOCK_CHECK(connection)
50 #define RELEASING_LOCK_CHECK(connection)
51 #define HAVE_LOCK_CHECK(connection)
52 #else
53 #define TOOK_LOCK_CHECK(connection) do {                \
54     _dbus_assert (!(connection)->have_connection_lock); \
55     (connection)->have_connection_lock = TRUE;          \
56   } while (0)
57 #define RELEASING_LOCK_CHECK(connection) do {            \
58     _dbus_assert ((connection)->have_connection_lock);   \
59     (connection)->have_connection_lock = FALSE;          \
60   } while (0)
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 */
63 #endif
64
65 #define TRACE_LOCKS 1
66
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);                                               \
71   } while (0)
72
73 #define CONNECTION_UNLOCK(connection) _dbus_connection_unlock (connection)
74
75 #define SLOTS_LOCK(connection) do {                     \
76     _dbus_rmutex_lock ((connection)->slot_mutex);       \
77   } while (0)
78
79 #define SLOTS_UNLOCK(connection) do {                   \
80     _dbus_rmutex_unlock ((connection)->slot_mutex);     \
81   } while (0)
82
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" :   \
87                       "???")
88
89 /**
90  * @defgroup DBusConnection DBusConnection
91  * @ingroup  DBus
92  * @brief Connection to another application
93  *
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.
99  * 
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
103  * messages.
104  *
105  * Several functions use the following terms:
106  * <ul>
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>
110  * </ul>
111  *
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.
114  *
115  * In an application with a main loop, the read/write/dispatch
116  * operations are usually separate.
117  *
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.
121  * 
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.
126  * 
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.
131  * 
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().
136  *
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.
144  *
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.
148  *
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).
154  * 
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.
162  *
163  * When a connection is disconnected, you are guaranteed to get a
164  * signal "Disconnected" from the interface
165  * #DBUS_INTERFACE_LOCAL, path
166  * #DBUS_PATH_LOCAL.
167  *
168  * You may not drop the last reference to a #DBusConnection
169  * until that connection has been disconnected.
170  *
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).
175  *
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,
181  * for example.
182  *
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.
187  *
188  * It's recommended to dispatch from a single thread.
189  *
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.
193  *
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.
196  */
197
198 /**
199  * @defgroup DBusConnectionInternals DBusConnection implementation details
200  * @ingroup  DBusInternals
201  * @brief Implementation details of DBusConnection
202  *
203  * @{
204  */
205
206 static void
207 _dbus_connection_trace_ref (DBusConnection *connection,
208     int old_refcount,
209     int new_refcount,
210     const char *why)
211 {
212 #ifdef DBUS_ENABLE_VERBOSE_MODE
213   static int enabled = -1;
214
215   _dbus_trace_ref ("DBusConnection", connection, old_refcount, new_refcount,
216       why, "DBUS_CONNECTION_TRACE", &enabled);
217 #endif
218 }
219
220 /**
221  * Internal struct representing a message filter function 
222  */
223 typedef struct DBusMessageFilter DBusMessageFilter;
224
225 /**
226  * Internal struct representing a message filter function 
227  */
228 struct DBusMessageFilter
229 {
230   DBusAtomic refcount; /**< Reference count */
231   DBusHandleMessageFunction function; /**< Function to call to filter */
232   void *user_data; /**< User data for the function */
233   DBusFreeFunction free_user_data_function; /**< Function to free the user data */
234 };
235
236
237 /**
238  * Internals of DBusPreallocatedSend
239  */
240 struct DBusPreallocatedSend
241 {
242   DBusConnection *connection; /**< Connection we'd send the message to */
243   DBusList *queue_link;       /**< Preallocated link in the queue */
244   DBusList *counter_link;     /**< Preallocated link in the resource counter */
245 };
246
247 #if HAVE_DECL_MSG_NOSIGNAL
248 static dbus_bool_t _dbus_modify_sigpipe = FALSE;
249 #else
250 static dbus_bool_t _dbus_modify_sigpipe = TRUE;
251 #endif
252
253 /**
254  * Implementation details of DBusConnection. All fields are private.
255  */
256 struct DBusConnection
257 {
258   DBusAtomic refcount; /**< Reference count. */
259
260   DBusRMutex *mutex; /**< Lock on the entire DBusConnection */
261
262   DBusCMutex *dispatch_mutex;     /**< Protects dispatch_acquired */
263   DBusCondVar *dispatch_cond;    /**< Notify when dispatch_acquired is available */
264   DBusCMutex *io_path_mutex;      /**< Protects io_path_acquired */
265   DBusCondVar *io_path_cond;     /**< Notify when io_path_acquired is available */
266   
267   DBusList *outgoing_messages; /**< Queue of messages we need to send, send the end of the list first. */
268   DBusList *incoming_messages; /**< Queue of messages we have received, end of the list received most recently. */
269   DBusList *expired_messages;  /**< Messages that will be released when we next unlock. */
270
271   DBusMessage *message_borrowed; /**< Filled in if the first incoming message has been borrowed;
272                                   *   dispatch_acquired will be set by the borrower
273                                   */
274   
275   int n_outgoing;              /**< Length of outgoing queue. */
276   int n_incoming;              /**< Length of incoming queue. */
277
278   DBusCounter *outgoing_counter; /**< Counts size of outgoing messages. */
279   
280   DBusTransport *transport;    /**< Object that sends/receives messages over network. */
281   DBusWatchList *watches;      /**< Stores active watches. */
282   DBusTimeoutList *timeouts;   /**< Stores active timeouts. */
283   
284   DBusList *filter_list;        /**< List of filters. */
285
286   DBusRMutex *slot_mutex;        /**< Lock on slot_list so overall connection lock need not be taken */
287   DBusDataSlotList slot_list;   /**< Data stored by allocated integer ID */
288
289   DBusHashTable *pending_replies;  /**< Hash of message serials to #DBusPendingCall. */  
290   
291   dbus_uint32_t client_serial;       /**< Client serial. Increments each time a message is sent  */
292   DBusList *disconnect_message_link; /**< Preallocated list node for queueing the disconnection message */
293
294   DBusWakeupMainFunction wakeup_main_function; /**< Function to wake up the mainloop  */
295   void *wakeup_main_data; /**< Application data for wakeup_main_function */
296   DBusFreeFunction free_wakeup_main_data; /**< free wakeup_main_data */
297
298   DBusDispatchStatusFunction dispatch_status_function; /**< Function on dispatch status changes  */
299   void *dispatch_status_data; /**< Application data for dispatch_status_function */
300   DBusFreeFunction free_dispatch_status_data; /**< free dispatch_status_data */
301
302   DBusDispatchStatus last_dispatch_status; /**< The last dispatch status we reported to the application. */
303
304   DBusObjectTree *objects; /**< Object path handlers registered with this connection */
305
306   char *server_guid; /**< GUID of server if we are in shared_connections, #NULL if server GUID is unknown or connection is private */
307
308   /* These two MUST be bools and not bitfields, because they are protected by a separate lock
309    * from connection->mutex and all bitfields in a word have to be read/written together.
310    * So you can't have a different lock for different bitfields in the same word.
311    */
312   dbus_bool_t dispatch_acquired; /**< Someone has dispatch path (can drain incoming queue) */
313   dbus_bool_t io_path_acquired;  /**< Someone has transport io path (can use the transport to read/write messages) */
314
315   unsigned int dispatch_disabled : 1;  /**< if true, then dispatching incoming messages is stopped until enabled again */
316   unsigned int shareable : 1; /**< #TRUE if libdbus owns a reference to the connection and can return it from dbus_connection_open() more than once */
317   
318   unsigned int exit_on_disconnect : 1; /**< If #TRUE, exit after handling disconnect signal */
319
320   unsigned int route_peer_messages : 1; /**< If #TRUE, if org.freedesktop.DBus.Peer messages have a bus name, don't handle them automatically */
321
322   unsigned int disconnected_message_arrived : 1;   /**< We popped or are dispatching the disconnected message.
323                                                     * if the disconnect_message_link is NULL then we queued it, but
324                                                     * this flag is whether it got to the head of the queue.
325                                                     */
326   unsigned int disconnected_message_processed : 1; /**< We did our default handling of the disconnected message,
327                                                     * such as closing the connection.
328                                                     */
329   
330 #ifndef DBUS_DISABLE_CHECKS
331   unsigned int have_connection_lock : 1; /**< Used to check locking */
332 #endif
333
334 #if defined(DBUS_ENABLE_CHECKS) || defined(DBUS_ENABLE_ASSERT)
335   int generation; /**< _dbus_current_generation that should correspond to this connection */
336 #endif 
337 };
338
339 static DBusDispatchStatus _dbus_connection_get_dispatch_status_unlocked      (DBusConnection     *connection);
340 static void               _dbus_connection_update_dispatch_status_and_unlock (DBusConnection     *connection,
341                                                                               DBusDispatchStatus  new_status);
342 static void               _dbus_connection_last_unref                        (DBusConnection     *connection);
343 static void               _dbus_connection_acquire_dispatch                  (DBusConnection     *connection);
344 static void               _dbus_connection_release_dispatch                  (DBusConnection     *connection);
345 static DBusDispatchStatus _dbus_connection_flush_unlocked                    (DBusConnection     *connection);
346 static void               _dbus_connection_close_possibly_shared_and_unlock  (DBusConnection     *connection);
347 static dbus_bool_t        _dbus_connection_get_is_connected_unlocked         (DBusConnection     *connection);
348 static dbus_bool_t        _dbus_connection_peek_for_reply_unlocked           (DBusConnection     *connection,
349                                                                               dbus_uint32_t       client_serial);
350
351 static DBusMessageFilter *
352 _dbus_message_filter_ref (DBusMessageFilter *filter)
353 {
354 #ifdef DBUS_DISABLE_ASSERT
355   _dbus_atomic_inc (&filter->refcount);
356 #else
357   dbus_int32_t old_value;
358
359   old_value = _dbus_atomic_inc (&filter->refcount);
360   _dbus_assert (old_value > 0);
361 #endif
362
363   return filter;
364 }
365
366 static void
367 _dbus_message_filter_unref (DBusMessageFilter *filter)
368 {
369   dbus_int32_t old_value;
370
371   old_value = _dbus_atomic_dec (&filter->refcount);
372   _dbus_assert (old_value > 0);
373
374   if (old_value == 1)
375     {
376       if (filter->free_user_data_function)
377         (* filter->free_user_data_function) (filter->user_data);
378       
379       dbus_free (filter);
380     }
381 }
382
383 /**
384  * Acquires the connection lock.
385  *
386  * @param connection the connection.
387  */
388 void
389 _dbus_connection_lock (DBusConnection *connection)
390 {
391   CONNECTION_LOCK (connection);
392 }
393
394 /**
395  * Releases the connection lock.
396  *
397  * @param connection the connection.
398  */
399 void
400 _dbus_connection_unlock (DBusConnection *connection)
401 {
402   DBusList *expired_messages;
403   DBusList *iter;
404
405   if (TRACE_LOCKS)
406     {
407       _dbus_verbose ("UNLOCK\n");
408     }
409
410   /* If we had messages that expired (fell off the incoming or outgoing
411    * queues) while we were locked, actually release them now */
412   expired_messages = connection->expired_messages;
413   connection->expired_messages = NULL;
414
415   RELEASING_LOCK_CHECK (connection);
416   _dbus_rmutex_unlock (connection->mutex);
417
418   for (iter = _dbus_list_pop_first_link (&expired_messages);
419       iter != NULL;
420       iter = _dbus_list_pop_first_link (&expired_messages))
421     {
422       DBusMessage *message = iter->data;
423
424       dbus_message_unref (message);
425       _dbus_list_free_link (iter);
426     }
427 }
428
429 /**
430  * Wakes up the main loop if it is sleeping
431  * Needed if we're e.g. queueing outgoing messages
432  * on a thread while the mainloop sleeps.
433  *
434  * @param connection the connection.
435  */
436 static void
437 _dbus_connection_wakeup_mainloop (DBusConnection *connection)
438 {
439   if (connection->wakeup_main_function)
440     (*connection->wakeup_main_function) (connection->wakeup_main_data);
441 }
442
443 static void
444 _dbus_connection_set_dispatch(DBusConnection *connection,
445                               dbus_bool_t disabled)
446 {
447   CONNECTION_LOCK (connection);
448   if (connection->dispatch_disabled != disabled)
449     {
450       DBusDispatchStatus status;
451
452       connection->dispatch_disabled = disabled;
453       status = _dbus_connection_get_dispatch_status_unlocked (connection);
454       _dbus_connection_update_dispatch_status_and_unlock (connection, status);
455     }
456   else
457     {
458       CONNECTION_UNLOCK (connection);
459     }
460 }
461
462
463 void
464 _dbus_connection_enable_dispatch (DBusConnection *connection)
465 {
466   _dbus_connection_set_dispatch (connection, FALSE);
467 }
468
469 void
470  _dbus_connection_disable_dispatch (DBusConnection *connection)
471 {
472   _dbus_connection_set_dispatch (connection, TRUE);
473 }
474
475
476 #ifdef DBUS_ENABLE_EMBEDDED_TESTS
477 /**
478  * Gets the locks so we can examine them
479  *
480  * @param connection the connection.
481  * @param mutex_loc return for the location of the main mutex pointer
482  * @param dispatch_mutex_loc return location of the dispatch mutex pointer
483  * @param io_path_mutex_loc return location of the io_path mutex pointer
484  * @param dispatch_cond_loc return location of the dispatch conditional 
485  *        variable pointer
486  * @param io_path_cond_loc return location of the io_path conditional 
487  *        variable pointer
488  */ 
489 void 
490 _dbus_connection_test_get_locks (DBusConnection *connection,
491                                  DBusMutex     **mutex_loc,
492                                  DBusMutex     **dispatch_mutex_loc,
493                                  DBusMutex     **io_path_mutex_loc,
494                                  DBusCondVar   **dispatch_cond_loc,
495                                  DBusCondVar   **io_path_cond_loc)
496 {
497   *mutex_loc = (DBusMutex *) connection->mutex;
498   *dispatch_mutex_loc = (DBusMutex *) connection->dispatch_mutex;
499   *io_path_mutex_loc = (DBusMutex *) connection->io_path_mutex;
500   *dispatch_cond_loc = connection->dispatch_cond;
501   *io_path_cond_loc = connection->io_path_cond;
502 }
503 #endif
504
505 /**
506  * Adds a message-containing list link to the incoming message queue,
507  * taking ownership of the link and the message's current refcount.
508  * Cannot fail due to lack of memory.
509  *
510  * @param connection the connection.
511  * @param link the message link to queue.
512  */
513 void
514 _dbus_connection_queue_received_message_link (DBusConnection  *connection,
515                                               DBusList        *link)
516 {
517   DBusPendingCall *pending;
518   dbus_uint32_t reply_serial;
519   DBusMessage *message;
520
521   _dbus_assert (_dbus_transport_peek_is_authenticated (connection->transport));
522
523   _dbus_list_append_link (&connection->incoming_messages,
524                           link);
525   message = link->data;
526
527   /* If this is a reply we're waiting on, remove timeout for it */
528   reply_serial = dbus_message_get_reply_serial (message);
529   if (reply_serial != 0)
530     {
531       pending = _dbus_hash_table_lookup_int (connection->pending_replies,
532                                              reply_serial);
533       if (pending != NULL)
534         {
535           if (_dbus_pending_call_is_timeout_added_unlocked (pending))
536             _dbus_connection_remove_timeout_unlocked (connection,
537                                                       _dbus_pending_call_get_timeout_unlocked (pending));
538
539           _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
540         }
541     }
542   
543   
544
545   connection->n_incoming += 1;
546
547   _dbus_connection_wakeup_mainloop (connection);
548   
549   _dbus_verbose ("Message %p (%s %s %s %s '%s' reply to %u) added to incoming queue %p, %d incoming\n",
550                  message,
551                  dbus_message_type_to_string (dbus_message_get_type (message)),
552                  dbus_message_get_path (message) ?
553                  dbus_message_get_path (message) :
554                  "no path",
555                  dbus_message_get_interface (message) ?
556                  dbus_message_get_interface (message) :
557                  "no interface",
558                  dbus_message_get_member (message) ?
559                  dbus_message_get_member (message) :
560                  "no member",
561                  dbus_message_get_signature (message),
562                  dbus_message_get_reply_serial (message),
563                  connection,
564                  connection->n_incoming);
565
566   _dbus_message_trace_ref (message, -1, -1,
567       "_dbus_conection_queue_received_message_link");
568 }
569
570 /**
571  * Adds a link + message to the incoming message queue.
572  * Can't fail. Takes ownership of both link and message.
573  *
574  * @param connection the connection.
575  * @param link the list node and message to queue.
576  *
577  */
578 void
579 _dbus_connection_queue_synthesized_message_link (DBusConnection *connection,
580                                                  DBusList *link)
581 {
582   DBusMessage *msg, *rmsg;
583
584   HAVE_LOCK_CHECK (connection);
585
586   msg = (DBusMessage *)link->data;
587
588   rmsg = msg;
589   if (_dbus_transport_assure_protocol_version (connection->transport, &rmsg))
590     {
591       /* If the message is converted, then we don't need the old format anymore */
592       _dbus_list_free_link(link);
593       link = _dbus_list_alloc_link (rmsg);
594       dbus_message_unref (msg);
595     }
596
597   _dbus_list_append_link (&connection->incoming_messages, link);
598
599   connection->n_incoming += 1;
600
601   _dbus_connection_wakeup_mainloop (connection);
602
603   _dbus_message_trace_ref (link->data, -1, -1,
604       "_dbus_connection_queue_synthesized_message_link");
605
606   _dbus_verbose ("Synthesized message %p added to incoming queue %p, %d incoming\n",
607                  link->data, connection, connection->n_incoming);
608 }
609
610
611 /**
612  * Checks whether there are messages in the outgoing message queue.
613  * Called with connection lock held.
614  *
615  * @param connection the connection.
616  * @returns #TRUE if the outgoing queue is non-empty.
617  */
618 dbus_bool_t
619 _dbus_connection_has_messages_to_send_unlocked (DBusConnection *connection)
620 {
621   HAVE_LOCK_CHECK (connection);
622   return connection->outgoing_messages != NULL;
623 }
624
625 /**
626  * Checks whether there are messages in the outgoing message queue.
627  * Use dbus_connection_flush() to block until all outgoing
628  * messages have been written to the underlying transport
629  * (such as a socket).
630  * 
631  * @param connection the connection.
632  * @returns #TRUE if the outgoing queue is non-empty.
633  */
634 dbus_bool_t
635 dbus_connection_has_messages_to_send (DBusConnection *connection)
636 {
637   dbus_bool_t v;
638   
639   _dbus_return_val_if_fail (connection != NULL, FALSE);
640
641   CONNECTION_LOCK (connection);
642   v = _dbus_connection_has_messages_to_send_unlocked (connection);
643   CONNECTION_UNLOCK (connection);
644
645   return v;
646 }
647
648 /**
649  * Gets the next outgoing message. The message remains in the
650  * queue, and the caller does not own a reference to it.
651  *
652  * @param connection the connection.
653  * @returns the message to be sent.
654  */ 
655 DBusMessage*
656 _dbus_connection_get_message_to_send (DBusConnection *connection)
657 {
658   HAVE_LOCK_CHECK (connection);
659   
660   return _dbus_list_get_last (&connection->outgoing_messages);
661 }
662
663 /**
664  * Notifies the connection that a message has been sent, so the
665  * message can be removed from the outgoing queue.
666  * Called with the connection lock held.
667  *
668  * @param connection the connection.
669  * @param message the message that was sent.
670  */
671 void
672 _dbus_connection_message_sent_unlocked (DBusConnection *connection,
673                                         DBusMessage    *message)
674 {
675   DBusList *link;
676
677   HAVE_LOCK_CHECK (connection);
678   
679   /* This can be called before we even complete authentication, since
680    * it's called on disconnect to clean up the outgoing queue.
681    * It's also called as we successfully send each message.
682    */
683   
684   link = _dbus_list_get_last_link (&connection->outgoing_messages);
685   _dbus_assert (link != NULL);
686   _dbus_assert (link->data == message);
687
688   _dbus_list_unlink (&connection->outgoing_messages,
689                      link);
690   _dbus_list_prepend_link (&connection->expired_messages, link);
691
692   connection->n_outgoing -= 1;
693
694   _dbus_verbose ("Message %p (%s %s %s %s '%s') removed from outgoing queue %p, %d left to send\n",
695                  message,
696                  dbus_message_type_to_string (dbus_message_get_type (message)),
697                  dbus_message_get_path (message) ?
698                  dbus_message_get_path (message) :
699                  "no path",
700                  dbus_message_get_interface (message) ?
701                  dbus_message_get_interface (message) :
702                  "no interface",
703                  dbus_message_get_member (message) ?
704                  dbus_message_get_member (message) :
705                  "no member",
706                  dbus_message_get_signature (message),
707                  connection, connection->n_outgoing);
708
709   /* It's OK that in principle we call the notify function, because for the
710    * outgoing limit, there isn't one */
711   _dbus_message_remove_counter (message, connection->outgoing_counter);
712
713   /* The message will actually be unreffed when we unlock */
714 }
715
716 /** Function to be called in protected_change_watch() with refcount held */
717 typedef dbus_bool_t (* DBusWatchAddFunction)     (DBusWatchList *list,
718                                                   DBusWatch     *watch);
719 /** Function to be called in protected_change_watch() with refcount held */
720 typedef void        (* DBusWatchRemoveFunction)  (DBusWatchList *list,
721                                                   DBusWatch     *watch);
722 /** Function to be called in protected_change_watch() with refcount held */
723 typedef void        (* DBusWatchToggleFunction)  (DBusWatchList *list,
724                                                   DBusWatch     *watch,
725                                                   dbus_bool_t    enabled);
726
727 static dbus_bool_t
728 protected_change_watch (DBusConnection         *connection,
729                         DBusWatch              *watch,
730                         DBusWatchAddFunction    add_function,
731                         DBusWatchRemoveFunction remove_function,
732                         DBusWatchToggleFunction toggle_function,
733                         dbus_bool_t             enabled)
734 {
735   dbus_bool_t retval;
736
737   HAVE_LOCK_CHECK (connection);
738
739   /* The original purpose of protected_change_watch() was to hold a
740    * ref on the connection while dropping the connection lock, then
741    * calling out to the app.  This was a broken hack that did not
742    * work, since the connection was in a hosed state (no WatchList
743    * field) while calling out.
744    *
745    * So for now we'll just keep the lock while calling out. This means
746    * apps are not allowed to call DBusConnection methods inside a
747    * watch function or they will deadlock.
748    *
749    * The "real fix" is to use the _and_unlock() pattern found
750    * elsewhere in the code, to defer calling out to the app until
751    * we're about to drop locks and return flow of control to the app
752    * anyway.
753    *
754    * See http://lists.freedesktop.org/archives/dbus/2007-July/thread.html#8144
755    */
756
757   if (connection->watches)
758     {
759       if (add_function)
760         retval = (* add_function) (connection->watches, watch);
761       else if (remove_function)
762         {
763           retval = TRUE;
764           (* remove_function) (connection->watches, watch);
765         }
766       else
767         {
768           retval = TRUE;
769           (* toggle_function) (connection->watches, watch, enabled);
770         }
771       return retval;
772     }
773   else
774     return FALSE;
775 }
776      
777
778 /**
779  * Adds a watch using the connection's DBusAddWatchFunction if
780  * available. Otherwise records the watch to be added when said
781  * function is available. Also re-adds the watch if the
782  * DBusAddWatchFunction changes. May fail due to lack of memory.
783  * Connection lock should be held when calling this.
784  *
785  * @param connection the connection.
786  * @param watch the watch to add.
787  * @returns #TRUE on success.
788  */
789 dbus_bool_t
790 _dbus_connection_add_watch_unlocked (DBusConnection *connection,
791                                      DBusWatch      *watch)
792 {
793   return protected_change_watch (connection, watch,
794                                  _dbus_watch_list_add_watch,
795                                  NULL, NULL, FALSE);
796 }
797
798 /**
799  * Removes a watch using the connection's DBusRemoveWatchFunction
800  * if available. It's an error to call this function on a watch
801  * that was not previously added.
802  * Connection lock should be held when calling this.
803  *
804  * @param connection the connection.
805  * @param watch the watch to remove.
806  */
807 void
808 _dbus_connection_remove_watch_unlocked (DBusConnection *connection,
809                                         DBusWatch      *watch)
810 {
811   protected_change_watch (connection, watch,
812                           NULL,
813                           _dbus_watch_list_remove_watch,
814                           NULL, FALSE);
815 }
816
817 /**
818  * Toggles a watch and notifies app via connection's
819  * DBusWatchToggledFunction if available. It's an error to call this
820  * function on a watch that was not previously added.
821  * Connection lock should be held when calling this.
822  *
823  * @param connection the connection.
824  * @param watch the watch to toggle.
825  * @param enabled whether to enable or disable
826  */
827 void
828 _dbus_connection_toggle_watch_unlocked (DBusConnection *connection,
829                                         DBusWatch      *watch,
830                                         dbus_bool_t     enabled)
831 {
832   _dbus_assert (watch != NULL);
833
834   protected_change_watch (connection, watch,
835                           NULL, NULL,
836                           _dbus_watch_list_toggle_watch,
837                           enabled);
838 }
839
840 /** Function to be called in protected_change_timeout() with refcount held */
841 typedef dbus_bool_t (* DBusTimeoutAddFunction)    (DBusTimeoutList *list,
842                                                    DBusTimeout     *timeout);
843 /** Function to be called in protected_change_timeout() with refcount held */
844 typedef void        (* DBusTimeoutRemoveFunction) (DBusTimeoutList *list,
845                                                    DBusTimeout     *timeout);
846 /** Function to be called in protected_change_timeout() with refcount held */
847 typedef void        (* DBusTimeoutToggleFunction) (DBusTimeoutList *list,
848                                                    DBusTimeout     *timeout,
849                                                    dbus_bool_t      enabled);
850
851 static dbus_bool_t
852 protected_change_timeout (DBusConnection           *connection,
853                           DBusTimeout              *timeout,
854                           DBusTimeoutAddFunction    add_function,
855                           DBusTimeoutRemoveFunction remove_function,
856                           DBusTimeoutToggleFunction toggle_function,
857                           dbus_bool_t               enabled)
858 {
859   dbus_bool_t retval;
860
861   HAVE_LOCK_CHECK (connection);
862
863   /* The original purpose of protected_change_timeout() was to hold a
864    * ref on the connection while dropping the connection lock, then
865    * calling out to the app.  This was a broken hack that did not
866    * work, since the connection was in a hosed state (no TimeoutList
867    * field) while calling out.
868    *
869    * So for now we'll just keep the lock while calling out. This means
870    * apps are not allowed to call DBusConnection methods inside a
871    * timeout function or they will deadlock.
872    *
873    * The "real fix" is to use the _and_unlock() pattern found
874    * elsewhere in the code, to defer calling out to the app until
875    * we're about to drop locks and return flow of control to the app
876    * anyway.
877    *
878    * See http://lists.freedesktop.org/archives/dbus/2007-July/thread.html#8144
879    */
880
881   if (connection->timeouts)
882     {
883       if (add_function)
884         retval = (* add_function) (connection->timeouts, timeout);
885       else if (remove_function)
886         {
887           retval = TRUE;
888           (* remove_function) (connection->timeouts, timeout);
889         }
890       else
891         {
892           retval = TRUE;
893           (* toggle_function) (connection->timeouts, timeout, enabled);
894         }
895       return retval;
896     }
897   else
898     return FALSE;
899 }
900
901 /**
902  * Adds a timeout using the connection's DBusAddTimeoutFunction if
903  * available. Otherwise records the timeout to be added when said
904  * function is available. Also re-adds the timeout if the
905  * DBusAddTimeoutFunction changes. May fail due to lack of memory.
906  * The timeout will fire repeatedly until removed.
907  * Connection lock should be held when calling this.
908  *
909  * @param connection the connection.
910  * @param timeout the timeout to add.
911  * @returns #TRUE on success.
912  */
913 dbus_bool_t
914 _dbus_connection_add_timeout_unlocked (DBusConnection *connection,
915                                        DBusTimeout    *timeout)
916 {
917   return protected_change_timeout (connection, timeout,
918                                    _dbus_timeout_list_add_timeout,
919                                    NULL, NULL, FALSE);
920 }
921
922 /**
923  * Removes a timeout using the connection's DBusRemoveTimeoutFunction
924  * if available. It's an error to call this function on a timeout
925  * that was not previously added.
926  * Connection lock should be held when calling this.
927  *
928  * @param connection the connection.
929  * @param timeout the timeout to remove.
930  */
931 void
932 _dbus_connection_remove_timeout_unlocked (DBusConnection *connection,
933                                           DBusTimeout    *timeout)
934 {
935   protected_change_timeout (connection, timeout,
936                             NULL,
937                             _dbus_timeout_list_remove_timeout,
938                             NULL, FALSE);
939 }
940
941 /**
942  * Toggles a timeout and notifies app via connection's
943  * DBusTimeoutToggledFunction if available. It's an error to call this
944  * function on a timeout that was not previously added.
945  * Connection lock should be held when calling this.
946  *
947  * @param connection the connection.
948  * @param timeout the timeout to toggle.
949  * @param enabled whether to enable or disable
950  */
951 void
952 _dbus_connection_toggle_timeout_unlocked (DBusConnection   *connection,
953                                           DBusTimeout      *timeout,
954                                           dbus_bool_t       enabled)
955 {
956   protected_change_timeout (connection, timeout,
957                             NULL, NULL,
958                             _dbus_timeout_list_toggle_timeout,
959                             enabled);
960 }
961
962 static dbus_bool_t
963 _dbus_connection_attach_pending_call_unlocked (DBusConnection  *connection,
964                                                DBusPendingCall *pending)
965 {
966   dbus_uint32_t reply_serial;
967   DBusTimeout *timeout;
968
969   HAVE_LOCK_CHECK (connection);
970
971   reply_serial = _dbus_pending_call_get_reply_serial_unlocked (pending);
972
973   _dbus_assert (reply_serial != 0);
974
975   timeout = _dbus_pending_call_get_timeout_unlocked (pending);
976
977   if (timeout)
978     {
979       if (!_dbus_connection_add_timeout_unlocked (connection, timeout))
980         return FALSE;
981       
982       if (!_dbus_hash_table_insert_int (connection->pending_replies,
983                                         reply_serial,
984                                         pending))
985         {
986           _dbus_connection_remove_timeout_unlocked (connection, timeout);
987
988           _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
989           HAVE_LOCK_CHECK (connection);
990           return FALSE;
991         }
992       
993       _dbus_pending_call_set_timeout_added_unlocked (pending, TRUE);
994     }
995   else
996     {
997       if (!_dbus_hash_table_insert_int (connection->pending_replies,
998                                         reply_serial,
999                                         pending))
1000         {
1001           HAVE_LOCK_CHECK (connection);
1002           return FALSE;
1003         }
1004     }
1005
1006   _dbus_pending_call_ref_unlocked (pending);
1007
1008   HAVE_LOCK_CHECK (connection);
1009   
1010   return TRUE;
1011 }
1012
1013 static void
1014 free_pending_call_on_hash_removal (void *data)
1015 {
1016   DBusPendingCall *pending;
1017   DBusConnection  *connection;
1018   
1019   if (data == NULL)
1020     return;
1021
1022   pending = data;
1023
1024   connection = _dbus_pending_call_get_connection_unlocked (pending);
1025
1026   HAVE_LOCK_CHECK (connection);
1027   
1028   if (_dbus_pending_call_is_timeout_added_unlocked (pending))
1029     {
1030       _dbus_connection_remove_timeout_unlocked (connection,
1031                                                 _dbus_pending_call_get_timeout_unlocked (pending));
1032       
1033       _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
1034     }
1035
1036   /* FIXME 1.0? this is sort of dangerous and undesirable to drop the lock 
1037    * here, but the pending call finalizer could in principle call out to 
1038    * application code so we pretty much have to... some larger code reorg 
1039    * might be needed.
1040    */
1041   _dbus_connection_ref_unlocked (connection);
1042   _dbus_pending_call_unref_and_unlock (pending);
1043   CONNECTION_LOCK (connection);
1044   _dbus_connection_unref_unlocked (connection);
1045 }
1046
1047 static void
1048 _dbus_connection_detach_pending_call_unlocked (DBusConnection  *connection,
1049                                                DBusPendingCall *pending)
1050 {
1051   /* This ends up unlocking to call the pending call finalizer, which is unexpected to
1052    * say the least.
1053    */
1054   _dbus_hash_table_remove_int (connection->pending_replies,
1055                                _dbus_pending_call_get_reply_serial_unlocked (pending));
1056 }
1057
1058 static void
1059 _dbus_connection_detach_pending_call_and_unlock (DBusConnection  *connection,
1060                                                  DBusPendingCall *pending)
1061 {
1062   /* The idea here is to avoid finalizing the pending call
1063    * with the lock held, since there's a destroy notifier
1064    * in pending call that goes out to application code.
1065    *
1066    * There's an extra unlock inside the hash table
1067    * "free pending call" function FIXME...
1068    */
1069   _dbus_pending_call_ref_unlocked (pending);
1070   _dbus_hash_table_remove_int (connection->pending_replies,
1071                                _dbus_pending_call_get_reply_serial_unlocked (pending));
1072
1073   if (_dbus_pending_call_is_timeout_added_unlocked (pending))
1074       _dbus_connection_remove_timeout_unlocked (connection,
1075               _dbus_pending_call_get_timeout_unlocked (pending));
1076
1077   _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
1078
1079   _dbus_pending_call_unref_and_unlock (pending);
1080 }
1081
1082 /**
1083  * Removes a pending call from the connection, such that
1084  * the pending reply will be ignored. May drop the last
1085  * reference to the pending call.
1086  *
1087  * @param connection the connection
1088  * @param pending the pending call
1089  */
1090 void
1091 _dbus_connection_remove_pending_call (DBusConnection  *connection,
1092                                       DBusPendingCall *pending)
1093 {
1094   CONNECTION_LOCK (connection);
1095   _dbus_connection_detach_pending_call_and_unlock (connection, pending);
1096 }
1097
1098 /**
1099  * Acquire the transporter I/O path. This must be done before
1100  * doing any I/O in the transporter. May sleep and drop the
1101  * IO path mutex while waiting for the I/O path.
1102  *
1103  * @param connection the connection.
1104  * @param timeout_milliseconds maximum blocking time, or -1 for no limit.
1105  * @returns TRUE if the I/O path was acquired.
1106  */
1107 static dbus_bool_t
1108 _dbus_connection_acquire_io_path (DBusConnection *connection,
1109                                   int             timeout_milliseconds)
1110 {
1111   dbus_bool_t we_acquired;
1112   
1113   HAVE_LOCK_CHECK (connection);
1114
1115   /* We don't want the connection to vanish */
1116   _dbus_connection_ref_unlocked (connection);
1117
1118   /* We will only touch io_path_acquired which is protected by our mutex */
1119   CONNECTION_UNLOCK (connection);
1120   
1121   _dbus_verbose ("locking io_path_mutex\n");
1122   _dbus_cmutex_lock (connection->io_path_mutex);
1123
1124   _dbus_verbose ("start connection->io_path_acquired = %d timeout = %d\n",
1125                  connection->io_path_acquired, timeout_milliseconds);
1126
1127   we_acquired = FALSE;
1128   
1129   if (connection->io_path_acquired)
1130     {
1131       if (timeout_milliseconds != -1)
1132         {
1133           _dbus_verbose ("waiting %d for IO path to be acquirable\n",
1134                          timeout_milliseconds);
1135
1136           if (!_dbus_condvar_wait_timeout (connection->io_path_cond,
1137                                            connection->io_path_mutex,
1138                                            timeout_milliseconds))
1139             {
1140               /* We timed out before anyone signaled. */
1141               /* (writing the loop to handle the !timedout case by
1142                * waiting longer if needed is a pain since dbus
1143                * wraps pthread_cond_timedwait to take a relative
1144                * time instead of absolute, something kind of stupid
1145                * on our part. for now it doesn't matter, we will just
1146                * end up back here eventually.)
1147                */
1148             }
1149         }
1150       else
1151         {
1152           while (connection->io_path_acquired)
1153             {
1154               _dbus_verbose ("waiting for IO path to be acquirable\n");
1155               _dbus_condvar_wait (connection->io_path_cond, 
1156                                   connection->io_path_mutex);
1157             }
1158         }
1159     }
1160   
1161   if (!connection->io_path_acquired)
1162     {
1163       we_acquired = TRUE;
1164       connection->io_path_acquired = TRUE;
1165     }
1166   
1167   _dbus_verbose ("end connection->io_path_acquired = %d we_acquired = %d\n",
1168                  connection->io_path_acquired, we_acquired);
1169
1170   _dbus_verbose ("unlocking io_path_mutex\n");
1171   _dbus_cmutex_unlock (connection->io_path_mutex);
1172
1173   CONNECTION_LOCK (connection);
1174   
1175   HAVE_LOCK_CHECK (connection);
1176
1177   _dbus_connection_unref_unlocked (connection);
1178   
1179   return we_acquired;
1180 }
1181
1182 /**
1183  * Release the I/O path when you're done with it. Only call
1184  * after you've acquired the I/O. Wakes up at most one thread
1185  * currently waiting to acquire the I/O path.
1186  *
1187  * @param connection the connection.
1188  */
1189 static void
1190 _dbus_connection_release_io_path (DBusConnection *connection)
1191 {
1192   HAVE_LOCK_CHECK (connection);
1193   
1194   _dbus_verbose ("locking io_path_mutex\n");
1195   _dbus_cmutex_lock (connection->io_path_mutex);
1196   
1197   _dbus_assert (connection->io_path_acquired);
1198
1199   _dbus_verbose ("start connection->io_path_acquired = %d\n",
1200                  connection->io_path_acquired);
1201   
1202   connection->io_path_acquired = FALSE;
1203   _dbus_condvar_wake_one (connection->io_path_cond);
1204
1205   _dbus_verbose ("unlocking io_path_mutex\n");
1206   _dbus_cmutex_unlock (connection->io_path_mutex);
1207 }
1208
1209 /**
1210  * Queues incoming messages and sends outgoing messages for this
1211  * connection, optionally blocking in the process. Each call to
1212  * _dbus_connection_do_iteration_unlocked() will call select() or poll() one
1213  * time and then read or write data if possible.
1214  *
1215  * The purpose of this function is to be able to flush outgoing
1216  * messages or queue up incoming messages without returning
1217  * control to the application and causing reentrancy weirdness.
1218  *
1219  * The flags parameter allows you to specify whether to
1220  * read incoming messages, write outgoing messages, or both,
1221  * and whether to block if no immediate action is possible.
1222  *
1223  * The timeout_milliseconds parameter does nothing unless the
1224  * iteration is blocking.
1225  *
1226  * If there are no outgoing messages and DBUS_ITERATION_DO_READING
1227  * wasn't specified, then it's impossible to block, even if
1228  * you specify DBUS_ITERATION_BLOCK; in that case the function
1229  * returns immediately.
1230  *
1231  * If pending is not NULL then a check is made if the pending call
1232  * is completed after the io path has been required. If the call
1233  * has been completed nothing is done. This must be done since
1234  * the _dbus_connection_acquire_io_path releases the connection
1235  * lock for a while.
1236  *
1237  * Called with connection lock held.
1238  * 
1239  * @param connection the connection.
1240  * @param pending the pending call that should be checked or NULL
1241  * @param flags iteration flags.
1242  * @param timeout_milliseconds maximum blocking time, or -1 for no limit.
1243  */
1244 void
1245 _dbus_connection_do_iteration_unlocked (DBusConnection *connection,
1246                                         DBusPendingCall *pending,
1247                                         unsigned int    flags,
1248                                         int             timeout_milliseconds)
1249 {
1250   _dbus_verbose ("start\n");
1251   
1252   HAVE_LOCK_CHECK (connection);
1253   
1254   if (connection->n_outgoing == 0)
1255     flags &= ~DBUS_ITERATION_DO_WRITING;
1256
1257   if (_dbus_connection_acquire_io_path (connection,
1258                                         (flags & DBUS_ITERATION_BLOCK) ? timeout_milliseconds : 0))
1259     {
1260       HAVE_LOCK_CHECK (connection);
1261       
1262       if ( (pending != NULL) && _dbus_pending_call_get_completed_unlocked(pending))
1263         {
1264           _dbus_verbose ("pending call completed while acquiring I/O path");
1265         }
1266       else if ( (pending != NULL) &&
1267                 _dbus_connection_peek_for_reply_unlocked (connection,
1268                                                           _dbus_pending_call_get_reply_serial_unlocked (pending)))
1269         {
1270           _dbus_verbose ("pending call completed while acquiring I/O path (reply found in queue)");
1271         }
1272       else
1273         {
1274           _dbus_transport_do_iteration (connection->transport,
1275                                         flags, timeout_milliseconds);
1276         }
1277
1278       _dbus_connection_release_io_path (connection);
1279     }
1280
1281   HAVE_LOCK_CHECK (connection);
1282
1283   _dbus_verbose ("end\n");
1284 }
1285
1286 /**
1287  * Creates a new connection for the given transport.  A transport
1288  * represents a message stream that uses some concrete mechanism, such
1289  * as UNIX domain sockets. May return #NULL if insufficient
1290  * memory exists to create the connection.
1291  *
1292  * @param transport the transport.
1293  * @returns the new connection, or #NULL on failure.
1294  */
1295 DBusConnection*
1296 _dbus_connection_new_for_transport (DBusTransport *transport)
1297 {
1298   DBusConnection *connection;
1299   DBusWatchList *watch_list;
1300   DBusTimeoutList *timeout_list;
1301   DBusHashTable *pending_replies;
1302   DBusList *disconnect_link;
1303   DBusMessage *disconnect_message;
1304   DBusCounter *outgoing_counter;
1305   DBusObjectTree *objects;
1306   
1307   watch_list = NULL;
1308   connection = NULL;
1309   pending_replies = NULL;
1310   timeout_list = NULL;
1311   disconnect_link = NULL;
1312   disconnect_message = NULL;
1313   outgoing_counter = NULL;
1314   objects = NULL;
1315   
1316   watch_list = _dbus_watch_list_new ();
1317   if (watch_list == NULL)
1318     goto error;
1319
1320   timeout_list = _dbus_timeout_list_new ();
1321   if (timeout_list == NULL)
1322     goto error;  
1323
1324   pending_replies =
1325     _dbus_hash_table_new (DBUS_HASH_INT,
1326                           NULL,
1327                           (DBusFreeFunction)free_pending_call_on_hash_removal);
1328   if (pending_replies == NULL)
1329     goto error;
1330   
1331   connection = dbus_new0 (DBusConnection, 1);
1332   if (connection == NULL)
1333     goto error;
1334
1335   _dbus_rmutex_new_at_location (&connection->mutex);
1336   if (connection->mutex == NULL)
1337     goto error;
1338
1339   _dbus_cmutex_new_at_location (&connection->io_path_mutex);
1340   if (connection->io_path_mutex == NULL)
1341     goto error;
1342
1343   _dbus_cmutex_new_at_location (&connection->dispatch_mutex);
1344   if (connection->dispatch_mutex == NULL)
1345     goto error;
1346   
1347   _dbus_condvar_new_at_location (&connection->dispatch_cond);
1348   if (connection->dispatch_cond == NULL)
1349     goto error;
1350   
1351   _dbus_condvar_new_at_location (&connection->io_path_cond);
1352   if (connection->io_path_cond == NULL)
1353     goto error;
1354
1355   _dbus_rmutex_new_at_location (&connection->slot_mutex);
1356   if (connection->slot_mutex == NULL)
1357     goto error;
1358
1359   disconnect_message = dbus_message_new_signal (DBUS_PATH_LOCAL,
1360                                                 DBUS_INTERFACE_LOCAL,
1361                                                 "Disconnected");
1362   
1363   if (disconnect_message == NULL)
1364     goto error;
1365
1366   disconnect_link = _dbus_list_alloc_link (disconnect_message);
1367   if (disconnect_link == NULL)
1368     goto error;
1369
1370   outgoing_counter = _dbus_counter_new ();
1371   if (outgoing_counter == NULL)
1372     goto error;
1373
1374   objects = _dbus_object_tree_new (connection);
1375   if (objects == NULL)
1376     goto error;
1377   
1378   if (_dbus_modify_sigpipe)
1379     _dbus_disable_sigpipe ();
1380
1381   /* initialized to 0: use atomic op to avoid mixing atomic and non-atomic */
1382   _dbus_atomic_inc (&connection->refcount);
1383   connection->transport = transport;
1384   connection->watches = watch_list;
1385   connection->timeouts = timeout_list;
1386   connection->pending_replies = pending_replies;
1387   connection->outgoing_counter = outgoing_counter;
1388   connection->filter_list = NULL;
1389   connection->last_dispatch_status = DBUS_DISPATCH_COMPLETE; /* so we're notified first time there's data */
1390   connection->objects = objects;
1391   connection->exit_on_disconnect = FALSE;
1392   connection->shareable = FALSE;
1393   connection->route_peer_messages = FALSE;
1394   connection->disconnected_message_arrived = FALSE;
1395   connection->disconnected_message_processed = FALSE;
1396   
1397 #if defined(DBUS_ENABLE_CHECKS) || defined(DBUS_ENABLE_ASSERT)
1398   connection->generation = _dbus_current_generation;
1399 #endif
1400   
1401   _dbus_data_slot_list_init (&connection->slot_list);
1402
1403   connection->client_serial = 1;
1404
1405   connection->disconnect_message_link = disconnect_link;
1406
1407   CONNECTION_LOCK (connection);
1408   
1409   if (!_dbus_transport_set_connection (transport, connection))
1410     {
1411       CONNECTION_UNLOCK (connection);
1412
1413       goto error;
1414     }
1415
1416   _dbus_transport_ref (transport);
1417
1418   CONNECTION_UNLOCK (connection);
1419
1420   _dbus_connection_trace_ref (connection, 0, 1, "new_for_transport");
1421   return connection;
1422   
1423  error:
1424   if (disconnect_message != NULL)
1425     dbus_message_unref (disconnect_message);
1426   
1427   if (disconnect_link != NULL)
1428     _dbus_list_free_link (disconnect_link);
1429   
1430   if (connection != NULL)
1431     {
1432       _dbus_condvar_free_at_location (&connection->io_path_cond);
1433       _dbus_condvar_free_at_location (&connection->dispatch_cond);
1434       _dbus_rmutex_free_at_location (&connection->mutex);
1435       _dbus_cmutex_free_at_location (&connection->io_path_mutex);
1436       _dbus_cmutex_free_at_location (&connection->dispatch_mutex);
1437       _dbus_rmutex_free_at_location (&connection->slot_mutex);
1438       dbus_free (connection);
1439     }
1440   if (pending_replies)
1441     _dbus_hash_table_unref (pending_replies);
1442   
1443   if (watch_list)
1444     _dbus_watch_list_free (watch_list);
1445
1446   if (timeout_list)
1447     _dbus_timeout_list_free (timeout_list);
1448
1449   if (outgoing_counter)
1450     _dbus_counter_unref (outgoing_counter);
1451
1452   if (objects)
1453     _dbus_object_tree_unref (objects);
1454   
1455   return NULL;
1456 }
1457
1458 /**
1459  * Increments the reference count of a DBusConnection.
1460  * Requires that the caller already holds the connection lock.
1461  *
1462  * @param connection the connection.
1463  * @returns the connection.
1464  */
1465 DBusConnection *
1466 _dbus_connection_ref_unlocked (DBusConnection *connection)
1467 {
1468   dbus_int32_t old_refcount;
1469
1470   _dbus_assert (connection != NULL);
1471   _dbus_assert (connection->generation == _dbus_current_generation);
1472
1473   HAVE_LOCK_CHECK (connection);
1474
1475   old_refcount = _dbus_atomic_inc (&connection->refcount);
1476   _dbus_connection_trace_ref (connection, old_refcount, old_refcount + 1,
1477       "ref_unlocked");
1478
1479   return connection;
1480 }
1481
1482 /**
1483  * Decrements the reference count of a DBusConnection.
1484  * Requires that the caller already holds the connection lock.
1485  *
1486  * @param connection the connection.
1487  */
1488 void
1489 _dbus_connection_unref_unlocked (DBusConnection *connection)
1490 {
1491   dbus_int32_t old_refcount;
1492
1493   HAVE_LOCK_CHECK (connection);
1494
1495   _dbus_assert (connection != NULL);
1496
1497   old_refcount = _dbus_atomic_dec (&connection->refcount);
1498
1499   _dbus_connection_trace_ref (connection, old_refcount, old_refcount - 1,
1500       "unref_unlocked");
1501
1502   if (old_refcount == 1)
1503     _dbus_connection_last_unref (connection);
1504 }
1505
1506 static dbus_uint32_t
1507 _dbus_connection_get_next_client_serial (DBusConnection *connection)
1508 {
1509   dbus_uint32_t serial;
1510
1511   serial = connection->client_serial++;
1512
1513   if (connection->client_serial == 0)
1514     connection->client_serial = 1;
1515
1516   return serial;
1517 }
1518
1519 /**
1520  * A callback for use with dbus_watch_new() to create a DBusWatch.
1521  * 
1522  * @todo This is basically a hack - we could delete _dbus_transport_handle_watch()
1523  * and the virtual handle_watch in DBusTransport if we got rid of it.
1524  * The reason this is some work is threading, see the _dbus_connection_handle_watch()
1525  * implementation.
1526  *
1527  * @param watch the watch.
1528  * @param condition the current condition of the file descriptors being watched.
1529  * @param data must be a pointer to a #DBusConnection
1530  * @returns #FALSE if the IO condition may not have been fully handled due to lack of memory
1531  */
1532 dbus_bool_t
1533 _dbus_connection_handle_watch (DBusWatch                   *watch,
1534                                unsigned int                 condition,
1535                                void                        *data)
1536 {
1537   DBusConnection *connection;
1538   dbus_bool_t retval;
1539   DBusDispatchStatus status;
1540
1541   connection = data;
1542
1543   _dbus_verbose ("start\n");
1544   
1545   CONNECTION_LOCK (connection);
1546
1547   if (!_dbus_connection_acquire_io_path (connection, 1))
1548     {
1549       /* another thread is handling the message */
1550       CONNECTION_UNLOCK (connection);
1551       return TRUE;
1552     }
1553
1554   HAVE_LOCK_CHECK (connection);
1555   retval = _dbus_transport_handle_watch (connection->transport,
1556                                          watch, condition);
1557
1558   _dbus_connection_release_io_path (connection);
1559
1560   HAVE_LOCK_CHECK (connection);
1561
1562   _dbus_verbose ("middle\n");
1563   
1564   status = _dbus_connection_get_dispatch_status_unlocked (connection);
1565
1566   /* this calls out to user code */
1567   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
1568
1569   _dbus_verbose ("end\n");
1570   
1571   return retval;
1572 }
1573
1574 /* Protected by _DBUS_LOCK (shared_connections) */
1575 static DBusHashTable *shared_connections = NULL;
1576 static DBusList *shared_connections_no_guid = NULL;
1577
1578 static void
1579 close_connection_on_shutdown (DBusConnection *connection)
1580 {
1581   DBusMessage *message;
1582
1583   dbus_connection_ref (connection);
1584   _dbus_connection_close_possibly_shared (connection);
1585
1586   /* Churn through to the Disconnected message */
1587   while ((message = dbus_connection_pop_message (connection)))
1588     {
1589       dbus_message_unref (message);
1590     }
1591   dbus_connection_unref (connection);
1592 }
1593
1594 static void
1595 shared_connections_shutdown (void *data)
1596 {
1597   int n_entries;
1598
1599   if (!_DBUS_LOCK (shared_connections))
1600     {
1601       /* We'd have initialized locks before adding anything, so there
1602        * can't be anything there. */
1603       return;
1604     }
1605
1606   /* This is a little bit unpleasant... better ideas? */
1607   while ((n_entries = _dbus_hash_table_get_n_entries (shared_connections)) > 0)
1608     {
1609       DBusConnection *connection;
1610       DBusHashIter iter;
1611       
1612       _dbus_hash_iter_init (shared_connections, &iter);
1613       _dbus_hash_iter_next (&iter);
1614        
1615       connection = _dbus_hash_iter_get_value (&iter);
1616
1617       _DBUS_UNLOCK (shared_connections);
1618       close_connection_on_shutdown (connection);
1619       if (!_DBUS_LOCK (shared_connections))
1620         _dbus_assert_not_reached ("global locks were already initialized");
1621
1622       /* The connection should now be dead and not in our hash ... */
1623       _dbus_assert (_dbus_hash_table_get_n_entries (shared_connections) < n_entries);
1624     }
1625
1626   _dbus_assert (_dbus_hash_table_get_n_entries (shared_connections) == 0);
1627   
1628   _dbus_hash_table_unref (shared_connections);
1629   shared_connections = NULL;
1630
1631   if (shared_connections_no_guid != NULL)
1632     {
1633       DBusConnection *connection;
1634       connection = _dbus_list_pop_first (&shared_connections_no_guid);
1635       while (connection != NULL)
1636         {
1637           _DBUS_UNLOCK (shared_connections);
1638           close_connection_on_shutdown (connection);
1639           if (!_DBUS_LOCK (shared_connections))
1640             _dbus_assert_not_reached ("global locks were already initialized");
1641           connection = _dbus_list_pop_first (&shared_connections_no_guid);
1642         }
1643     }
1644
1645   shared_connections_no_guid = NULL;
1646   
1647   _DBUS_UNLOCK (shared_connections);
1648 }
1649
1650 static dbus_bool_t
1651 connection_lookup_shared (DBusAddressEntry  *entry,
1652                           DBusConnection   **result)
1653 {
1654   _dbus_verbose ("checking for existing connection\n");
1655   
1656   *result = NULL;
1657
1658   if (!_DBUS_LOCK (shared_connections))
1659     {
1660       /* If it was shared, we'd have initialized global locks when we put
1661        * it in shared_connections. */
1662       return FALSE;
1663     }
1664
1665   if (shared_connections == NULL)
1666     {
1667       _dbus_verbose ("creating shared_connections hash table\n");
1668       
1669       shared_connections = _dbus_hash_table_new (DBUS_HASH_STRING,
1670                                                  dbus_free,
1671                                                  NULL);
1672       if (shared_connections == NULL)
1673         {
1674           _DBUS_UNLOCK (shared_connections);
1675           return FALSE;
1676         }
1677
1678       if (!_dbus_register_shutdown_func (shared_connections_shutdown, NULL))
1679         {
1680           _dbus_hash_table_unref (shared_connections);
1681           shared_connections = NULL;
1682           _DBUS_UNLOCK (shared_connections);
1683           return FALSE;
1684         }
1685
1686       _dbus_verbose ("  successfully created shared_connections\n");
1687       
1688       _DBUS_UNLOCK (shared_connections);
1689       return TRUE; /* no point looking up in the hash we just made */
1690     }
1691   else
1692     {
1693       const char *guid;
1694
1695       guid = dbus_address_entry_get_value (entry, "guid");
1696       
1697       if (guid != NULL)
1698         {
1699           DBusConnection *connection;
1700           
1701           connection = _dbus_hash_table_lookup_string (shared_connections,
1702                                                        guid);
1703
1704           if (connection)
1705             {
1706               /* The DBusConnection can't be finalized without taking
1707                * the shared_connections lock to remove it from the
1708                * hash.  So it's safe to ref the connection here.
1709                * However, it may be disconnected if the Disconnected
1710                * message hasn't been processed yet, in which case we
1711                * want to pretend it isn't in the hash and avoid
1712                * returning it.
1713                *
1714                * The idea is to avoid ever returning a disconnected connection
1715                * from dbus_connection_open(). We could just synchronously
1716                * drop our shared ref to the connection on connection disconnect,
1717                * and then assert here that the connection is connected, but
1718                * that causes reentrancy headaches.
1719                */
1720               CONNECTION_LOCK (connection);
1721               if (_dbus_connection_get_is_connected_unlocked (connection))
1722                 {
1723                   _dbus_connection_ref_unlocked (connection);
1724                   *result = connection;
1725                   _dbus_verbose ("looked up existing connection to server guid %s\n",
1726                                  guid);
1727                 }
1728               else
1729                 {
1730                   _dbus_verbose ("looked up existing connection to server guid %s but it was disconnected so ignoring it\n",
1731                                  guid);
1732                 }
1733               CONNECTION_UNLOCK (connection);
1734             }
1735         }
1736       
1737       _DBUS_UNLOCK (shared_connections);
1738       return TRUE;
1739     }
1740 }
1741
1742 static dbus_bool_t
1743 connection_record_shared_unlocked (DBusConnection *connection,
1744                                    const char     *guid)
1745 {
1746   char *guid_key;
1747   char *guid_in_connection;
1748
1749   HAVE_LOCK_CHECK (connection);
1750   _dbus_assert (connection->server_guid == NULL);
1751   _dbus_assert (connection->shareable);
1752
1753   /* get a hard ref on this connection, even if
1754    * we won't in fact store it in the hash, we still
1755    * need to hold a ref on it until it's disconnected.
1756    */
1757   _dbus_connection_ref_unlocked (connection);
1758
1759   if (guid == NULL)
1760     {
1761       if (!_DBUS_LOCK (shared_connections))
1762         return FALSE;
1763
1764       if (!_dbus_list_prepend (&shared_connections_no_guid, connection))
1765         {
1766           _DBUS_UNLOCK (shared_connections);
1767           return FALSE;
1768         }
1769
1770       _DBUS_UNLOCK (shared_connections);
1771       return TRUE; /* don't store in the hash */
1772     }
1773   
1774   /* A separate copy of the key is required in the hash table, because
1775    * we don't have a lock on the connection when we are doing a hash
1776    * lookup.
1777    */
1778   
1779   guid_key = _dbus_strdup (guid);
1780   if (guid_key == NULL)
1781     return FALSE;
1782
1783   guid_in_connection = _dbus_strdup (guid);
1784   if (guid_in_connection == NULL)
1785     {
1786       dbus_free (guid_key);
1787       return FALSE;
1788     }
1789
1790   if (!_DBUS_LOCK (shared_connections))
1791     {
1792       dbus_free (guid_in_connection);
1793       dbus_free (guid_key);
1794       return FALSE;
1795     }
1796
1797   _dbus_assert (shared_connections != NULL);
1798   
1799   if (!_dbus_hash_table_insert_string (shared_connections,
1800                                        guid_key, connection))
1801     {
1802       dbus_free (guid_key);
1803       dbus_free (guid_in_connection);
1804       _DBUS_UNLOCK (shared_connections);
1805       return FALSE;
1806     }
1807
1808   connection->server_guid = guid_in_connection;
1809
1810   _dbus_verbose ("stored connection to %s to be shared\n",
1811                  connection->server_guid);
1812   
1813   _DBUS_UNLOCK (shared_connections);
1814
1815   _dbus_assert (connection->server_guid != NULL);
1816   
1817   return TRUE;
1818 }
1819
1820 static void
1821 connection_forget_shared_unlocked (DBusConnection *connection)
1822 {
1823   HAVE_LOCK_CHECK (connection);
1824
1825   if (!connection->shareable)
1826     return;
1827
1828   if (!_DBUS_LOCK (shared_connections))
1829     {
1830       /* If it was shared, we'd have initialized global locks when we put
1831        * it in the table; so it can't be there. */
1832       return;
1833     }
1834
1835   if (connection->server_guid != NULL)
1836     {
1837       _dbus_verbose ("dropping connection to %s out of the shared table\n",
1838                      connection->server_guid);
1839       
1840       if (!_dbus_hash_table_remove_string (shared_connections,
1841                                            connection->server_guid))
1842         _dbus_assert_not_reached ("connection was not in the shared table");
1843       
1844       dbus_free (connection->server_guid);
1845       connection->server_guid = NULL;
1846     }
1847   else
1848     {
1849       _dbus_list_remove (&shared_connections_no_guid, connection);
1850     }
1851
1852   _DBUS_UNLOCK (shared_connections);
1853   
1854   /* remove our reference held on all shareable connections */
1855   _dbus_connection_unref_unlocked (connection);
1856 }
1857
1858 static DBusConnection*
1859 connection_try_from_address_entry (DBusAddressEntry *entry,
1860                                    DBusError        *error)
1861 {
1862   DBusTransport *transport;
1863   DBusConnection *connection;
1864
1865   transport = _dbus_transport_open (entry, error);
1866
1867   if (transport == NULL)
1868     {
1869       _DBUS_ASSERT_ERROR_IS_SET (error);
1870       return NULL;
1871     }
1872
1873   connection = _dbus_connection_new_for_transport (transport);
1874
1875   _dbus_transport_unref (transport);
1876   
1877   if (connection == NULL)
1878     {
1879       _DBUS_SET_OOM (error);
1880       return NULL;
1881     }
1882
1883 #ifndef DBUS_DISABLE_CHECKS
1884   _dbus_assert (!connection->have_connection_lock);
1885 #endif
1886   return connection;
1887 }
1888
1889 /*
1890  * If the shared parameter is true, then any existing connection will
1891  * be used (and if a new connection is created, it will be available
1892  * for use by others). If the shared parameter is false, a new
1893  * connection will always be created, and the new connection will
1894  * never be returned to other callers.
1895  *
1896  * @param address the address
1897  * @param shared whether the connection is shared or private
1898  * @param error error return
1899  * @returns the connection or #NULL on error
1900  */
1901 static DBusConnection*
1902 _dbus_connection_open_internal (const char     *address,
1903                                 dbus_bool_t     shared,
1904                                 DBusError      *error)
1905 {
1906   DBusConnection *connection;
1907   DBusAddressEntry **entries;
1908   DBusError tmp_error = DBUS_ERROR_INIT;
1909   DBusError first_error = DBUS_ERROR_INIT;
1910   int len, i;
1911
1912   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1913
1914   _dbus_verbose ("opening %s connection to: %s\n",
1915                  shared ? "shared" : "private", address);
1916   
1917   if (!dbus_parse_address (address, &entries, &len, error))
1918     return NULL;
1919
1920   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1921   
1922   connection = NULL;
1923
1924   for (i = 0; i < len; i++)
1925     {
1926       if (shared)
1927         {
1928           if (!connection_lookup_shared (entries[i], &connection))
1929             _DBUS_SET_OOM (&tmp_error);
1930         }
1931
1932       if (connection == NULL)
1933         {
1934           connection = connection_try_from_address_entry (entries[i],
1935                                                           &tmp_error);
1936
1937           if (connection != NULL && shared)
1938             {
1939               const char *guid;
1940                   
1941               connection->shareable = TRUE;
1942                   
1943               /* guid may be NULL */
1944               guid = dbus_address_entry_get_value (entries[i], "guid");
1945                   
1946               CONNECTION_LOCK (connection);
1947           
1948               if (!connection_record_shared_unlocked (connection, guid))
1949                 {
1950                   _DBUS_SET_OOM (&tmp_error);
1951                   _dbus_connection_close_possibly_shared_and_unlock (connection);
1952                   dbus_connection_unref (connection);
1953                   connection = NULL;
1954                 }
1955               else
1956                 CONNECTION_UNLOCK (connection);
1957             }
1958         }
1959       
1960       if (connection)
1961         break;
1962
1963       _DBUS_ASSERT_ERROR_IS_SET (&tmp_error);
1964       
1965       if (i == 0)
1966         dbus_move_error (&tmp_error, &first_error);
1967       else
1968         dbus_error_free (&tmp_error);
1969     }
1970   
1971   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1972   _DBUS_ASSERT_ERROR_IS_CLEAR (&tmp_error);
1973   
1974   if (connection == NULL)
1975     {
1976       _DBUS_ASSERT_ERROR_IS_SET (&first_error);
1977       dbus_move_error (&first_error, error);
1978     }
1979   else
1980     dbus_error_free (&first_error);
1981   
1982   dbus_address_entries_free (entries);
1983   return connection;
1984 }
1985
1986 /**
1987  * Closes a shared OR private connection, while dbus_connection_close() can
1988  * only be used on private connections. Should only be called by the
1989  * dbus code that owns the connection - an owner must be known,
1990  * the open/close state is like malloc/free, not like ref/unref.
1991  * 
1992  * @param connection the connection
1993  */
1994 void
1995 _dbus_connection_close_possibly_shared (DBusConnection *connection)
1996 {
1997   _dbus_assert (connection != NULL);
1998   _dbus_assert (connection->generation == _dbus_current_generation);
1999
2000   CONNECTION_LOCK (connection);
2001   _dbus_connection_close_possibly_shared_and_unlock (connection);
2002 }
2003
2004 static DBusPreallocatedSend*
2005 _dbus_connection_preallocate_send_unlocked (DBusConnection *connection)
2006 {
2007   DBusPreallocatedSend *preallocated;
2008
2009   HAVE_LOCK_CHECK (connection);
2010   
2011   _dbus_assert (connection != NULL);
2012   
2013   preallocated = dbus_new (DBusPreallocatedSend, 1);
2014   if (preallocated == NULL)
2015     return NULL;
2016
2017   preallocated->queue_link = _dbus_list_alloc_link (NULL);
2018   if (preallocated->queue_link == NULL)
2019     goto failed_0;
2020
2021   preallocated->counter_link = _dbus_list_alloc_link (connection->outgoing_counter);
2022   if (preallocated->counter_link == NULL)
2023     goto failed_1;
2024
2025   _dbus_counter_ref (preallocated->counter_link->data);
2026
2027   preallocated->connection = connection;
2028   
2029   return preallocated;
2030   
2031  failed_1:
2032   _dbus_list_free_link (preallocated->queue_link);
2033  failed_0:
2034   dbus_free (preallocated);
2035   
2036   return NULL;
2037 }
2038
2039 /* Called with lock held, does not update dispatch status */
2040 static void
2041 _dbus_connection_send_preallocated_unlocked_no_update (DBusConnection       *connection,
2042                                                        DBusPreallocatedSend *preallocated,
2043                                                        DBusMessage          *message,
2044                                                        dbus_uint32_t        *client_serial)
2045 {
2046   dbus_uint32_t serial;
2047
2048   /* Finish preparing the message */
2049   if (dbus_message_get_serial (message) == 0)
2050     {
2051       serial = _dbus_connection_get_next_client_serial (connection);
2052       dbus_message_set_serial (message, serial);
2053       if (client_serial)
2054         *client_serial = serial;
2055     }
2056   else
2057     {
2058       if (client_serial)
2059         *client_serial = dbus_message_get_serial (message);
2060     }
2061
2062   _dbus_verbose ("Message %p serial is %u\n",
2063                  message, dbus_message_get_serial (message));
2064
2065   dbus_message_lock (message);
2066
2067   /* This converts message if neccessary */
2068   if (!_dbus_transport_assure_protocol_version (connection->transport, &message))
2069     {
2070       /* Only non-converted messages must be refed.
2071        * Converted messages are local anyway.
2072        */
2073       dbus_message_ref (message);
2074     }
2075
2076   preallocated->queue_link->data = message;
2077   _dbus_list_prepend_link (&connection->outgoing_messages,
2078                            preallocated->queue_link);
2079
2080   /* It's OK that we'll never call the notify function, because for the
2081    * outgoing limit, there isn't one */
2082   _dbus_message_add_counter_link (message,
2083                                   preallocated->counter_link);
2084
2085   dbus_free (preallocated);
2086   preallocated = NULL;
2087   
2088   connection->n_outgoing += 1;
2089
2090   _dbus_verbose ("Message %p (%s %s %s %s '%s') for %s added to outgoing queue %p, %d pending to send\n",
2091                  message,
2092                  dbus_message_type_to_string (dbus_message_get_type (message)),
2093                  dbus_message_get_path (message) ?
2094                  dbus_message_get_path (message) :
2095                  "no path",
2096                  dbus_message_get_interface (message) ?
2097                  dbus_message_get_interface (message) :
2098                  "no interface",
2099                  dbus_message_get_member (message) ?
2100                  dbus_message_get_member (message) :
2101                  "no member",
2102                  dbus_message_get_signature (message),
2103                  dbus_message_get_destination (message) ?
2104                  dbus_message_get_destination (message) :
2105                  "null",
2106                  connection,
2107                  connection->n_outgoing);
2108
2109   /* Now we need to run an iteration to hopefully just write the messages
2110    * out immediately, and otherwise get them queued up
2111    */
2112   _dbus_connection_do_iteration_unlocked (connection,
2113                                           NULL,
2114                                           DBUS_ITERATION_DO_WRITING,
2115                                           -1);
2116
2117   /* If stuff is still queued up, be sure we wake up the main loop */
2118   if (connection->n_outgoing > 0)
2119     _dbus_connection_wakeup_mainloop (connection);
2120 }
2121
2122 static void
2123 _dbus_connection_send_preallocated_and_unlock (DBusConnection       *connection,
2124                                                DBusPreallocatedSend *preallocated,
2125                                                DBusMessage          *message,
2126                                                dbus_uint32_t        *client_serial)
2127 {
2128   DBusDispatchStatus status;
2129
2130   HAVE_LOCK_CHECK (connection);
2131   
2132   _dbus_connection_send_preallocated_unlocked_no_update (connection,
2133                                                          preallocated,
2134                                                          message, client_serial);
2135
2136   _dbus_verbose ("middle\n");
2137   status = _dbus_connection_get_dispatch_status_unlocked (connection);
2138
2139   /* this calls out to user code */
2140   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2141 }
2142
2143 /**
2144  * Like dbus_connection_send(), but assumes the connection
2145  * is already locked on function entry, and unlocks before returning.
2146  *
2147  * @param connection the connection
2148  * @param message the message to send
2149  * @param client_serial return location for client serial of sent message
2150  * @returns #FALSE on out-of-memory
2151  */
2152 dbus_bool_t
2153 _dbus_connection_send_and_unlock (DBusConnection *connection,
2154                                   DBusMessage    *message,
2155                                   dbus_uint32_t  *client_serial)
2156 {
2157   DBusPreallocatedSend *preallocated;
2158
2159   _dbus_assert (connection != NULL);
2160   _dbus_assert (message != NULL);
2161   
2162   preallocated = _dbus_connection_preallocate_send_unlocked (connection);
2163   if (preallocated == NULL)
2164     {
2165       CONNECTION_UNLOCK (connection);
2166       return FALSE;
2167     }
2168
2169   _dbus_connection_send_preallocated_and_unlock (connection,
2170                                                  preallocated,
2171                                                  message,
2172                                                  client_serial);
2173   return TRUE;
2174 }
2175
2176 /**
2177  * Used internally to handle the semantics of dbus_server_set_new_connection_function().
2178  * If the new connection function does not ref the connection, we want to close it.
2179  *
2180  * A bit of a hack, probably the new connection function should have returned a value
2181  * for whether to close, or should have had to close the connection itself if it
2182  * didn't want it.
2183  *
2184  * But, this works OK as long as the new connection function doesn't do anything
2185  * crazy like keep the connection around without ref'ing it.
2186  *
2187  * We have to lock the connection across refcount check and close in case
2188  * the new connection function spawns a thread that closes and unrefs.
2189  * In that case, if the app thread
2190  * closes and unrefs first, we'll harmlessly close again; if the app thread
2191  * still has the ref, we'll close and then the app will close harmlessly.
2192  * If the app unrefs without closing, the app is broken since if the
2193  * app refs from the new connection function it is supposed to also close.
2194  *
2195  * If we didn't atomically check the refcount and close with the lock held
2196  * though, we could screw this up.
2197  * 
2198  * @param connection the connection
2199  */
2200 void
2201 _dbus_connection_close_if_only_one_ref (DBusConnection *connection)
2202 {
2203   dbus_int32_t refcount;
2204
2205   CONNECTION_LOCK (connection);
2206
2207   refcount = _dbus_atomic_get (&connection->refcount);
2208   /* The caller should have at least one ref */
2209   _dbus_assert (refcount >= 1);
2210
2211   if (refcount == 1)
2212     _dbus_connection_close_possibly_shared_and_unlock (connection);
2213   else
2214     CONNECTION_UNLOCK (connection);
2215 }
2216
2217
2218 /**
2219  * When a function that blocks has been called with a timeout, and we
2220  * run out of memory, the time to wait for memory is based on the
2221  * timeout. If the caller was willing to block a long time we wait a
2222  * relatively long time for memory, if they were only willing to block
2223  * briefly then we retry for memory at a rapid rate.
2224  *
2225  * @param timeout_milliseconds the timeout requested for blocking
2226  */
2227 static void
2228 _dbus_memory_pause_based_on_timeout (int timeout_milliseconds)
2229 {
2230   if (timeout_milliseconds == -1)
2231     _dbus_sleep_milliseconds (1000);
2232   else if (timeout_milliseconds < 100)
2233     ; /* just busy loop */
2234   else if (timeout_milliseconds <= 1000)
2235     _dbus_sleep_milliseconds (timeout_milliseconds / 3);
2236   else
2237     _dbus_sleep_milliseconds (1000);
2238 }
2239
2240 /*
2241  * Peek the incoming queue to see if we got reply for a specific serial
2242  */
2243 static dbus_bool_t
2244 _dbus_connection_peek_for_reply_unlocked (DBusConnection *connection,
2245                                           dbus_uint32_t   client_serial)
2246 {
2247   DBusList *link;
2248   HAVE_LOCK_CHECK (connection);
2249
2250   link = _dbus_list_get_first_link (&connection->incoming_messages);
2251
2252   while (link != NULL)
2253     {
2254       DBusMessage *reply = link->data;
2255
2256       if (dbus_message_get_reply_serial (reply) == client_serial)
2257         {
2258           _dbus_verbose ("%s reply to %d found in queue\n", _DBUS_FUNCTION_NAME, client_serial);
2259           return TRUE;
2260         }
2261       link = _dbus_list_get_next_link (&connection->incoming_messages, link);
2262     }
2263
2264   return FALSE;
2265 }
2266
2267 /* This is slightly strange since we can pop a message here without
2268  * the dispatch lock.
2269  */
2270 static DBusMessage*
2271 check_for_reply_unlocked (DBusConnection *connection,
2272                           dbus_uint32_t   client_serial)
2273 {
2274   DBusList *link;
2275
2276   HAVE_LOCK_CHECK (connection);
2277   
2278   link = _dbus_list_get_first_link (&connection->incoming_messages);
2279
2280   while (link != NULL)
2281     {
2282       DBusMessage *reply = link->data;
2283
2284       if (dbus_message_get_reply_serial (reply) == client_serial)
2285         {
2286           _dbus_list_remove_link (&connection->incoming_messages, link);
2287           connection->n_incoming  -= 1;
2288           return reply;
2289         }
2290       link = _dbus_list_get_next_link (&connection->incoming_messages, link);
2291     }
2292
2293   return NULL;
2294 }
2295
2296 static void
2297 connection_timeout_and_complete_all_pending_calls_unlocked (DBusConnection *connection)
2298 {
2299    /* We can't iterate over the hash in the normal way since we'll be
2300     * dropping the lock for each item. So we restart the
2301     * iter each time as we drain the hash table.
2302     */
2303    
2304    while (_dbus_hash_table_get_n_entries (connection->pending_replies) > 0)
2305     {
2306       DBusPendingCall *pending;
2307       DBusHashIter iter;
2308       
2309       _dbus_hash_iter_init (connection->pending_replies, &iter);
2310       _dbus_hash_iter_next (&iter);
2311        
2312       pending = _dbus_hash_iter_get_value (&iter);
2313       _dbus_pending_call_ref_unlocked (pending);
2314        
2315       _dbus_pending_call_queue_timeout_error_unlocked (pending, 
2316                                                        connection);
2317
2318       if (_dbus_pending_call_is_timeout_added_unlocked (pending))
2319           _dbus_connection_remove_timeout_unlocked (connection,
2320                                                     _dbus_pending_call_get_timeout_unlocked (pending));
2321       _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);       
2322       _dbus_hash_iter_remove_entry (&iter);
2323
2324       _dbus_pending_call_unref_and_unlock (pending);
2325       CONNECTION_LOCK (connection);
2326     }
2327   HAVE_LOCK_CHECK (connection);
2328 }
2329
2330 static void
2331 complete_pending_call_and_unlock (DBusConnection  *connection,
2332                                   DBusPendingCall *pending,
2333                                   DBusMessage     *message)
2334 {
2335   _dbus_pending_call_set_reply_unlocked (pending, message);
2336   _dbus_pending_call_ref_unlocked (pending); /* in case there's no app with a ref held */
2337   _dbus_pending_call_start_completion_unlocked(pending);
2338   _dbus_connection_detach_pending_call_and_unlock (connection, pending);
2339
2340   /* Must be called unlocked since it invokes app callback */
2341   _dbus_pending_call_finish_completion (pending);
2342   dbus_pending_call_unref (pending);
2343 }
2344
2345 static dbus_bool_t
2346 check_for_reply_and_update_dispatch_unlocked (DBusConnection  *connection,
2347                                               DBusPendingCall *pending)
2348 {
2349   DBusMessage *reply;
2350   DBusDispatchStatus status;
2351
2352   reply = check_for_reply_unlocked (connection, 
2353                                     _dbus_pending_call_get_reply_serial_unlocked (pending));
2354   if (reply != NULL)
2355     {
2356       _dbus_verbose ("checked for reply\n");
2357
2358       _dbus_verbose ("dbus_connection_send_with_reply_and_block(): got reply\n");
2359
2360       complete_pending_call_and_unlock (connection, pending, reply);
2361       dbus_message_unref (reply);
2362
2363       CONNECTION_LOCK (connection);
2364       status = _dbus_connection_get_dispatch_status_unlocked (connection);
2365       _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2366       dbus_pending_call_unref (pending);
2367
2368       return TRUE;
2369     }
2370
2371   return FALSE;
2372 }
2373
2374 /**
2375  * Blocks until a pending call times out or gets a reply.
2376  *
2377  * Does not re-enter the main loop or run filter/path-registered
2378  * callbacks. The reply to the message will not be seen by
2379  * filter callbacks.
2380  *
2381  * Returns immediately if pending call already got a reply.
2382  * 
2383  * @todo could use performance improvements (it keeps scanning
2384  * the whole message queue for example)
2385  *
2386  * @param pending the pending call we block for a reply on
2387  */
2388 void
2389 _dbus_connection_block_pending_call (DBusPendingCall *pending)
2390 {
2391   long start_tv_sec, start_tv_usec;
2392   long tv_sec, tv_usec;
2393   DBusDispatchStatus status;
2394   DBusConnection *connection;
2395   dbus_uint32_t client_serial;
2396   DBusTimeout *timeout;
2397   int timeout_milliseconds, elapsed_milliseconds;
2398
2399   _dbus_assert (pending != NULL);
2400
2401   if (dbus_pending_call_get_completed (pending))
2402     return;
2403
2404   dbus_pending_call_ref (pending); /* necessary because the call could be canceled */
2405
2406   connection = _dbus_pending_call_get_connection_and_lock (pending);
2407   
2408   /* Flush message queue - note, can affect dispatch status */
2409   _dbus_connection_flush_unlocked (connection);
2410
2411   client_serial = _dbus_pending_call_get_reply_serial_unlocked (pending);
2412
2413   /* note that timeout_milliseconds is limited to a smallish value
2414    * in _dbus_pending_call_new() so overflows aren't possible
2415    * below
2416    */
2417   timeout = _dbus_pending_call_get_timeout_unlocked (pending);
2418   _dbus_get_monotonic_time (&start_tv_sec, &start_tv_usec);
2419   if (timeout)
2420     {
2421       timeout_milliseconds = dbus_timeout_get_interval (timeout);
2422
2423       _dbus_verbose ("dbus_connection_send_with_reply_and_block(): will block %d milliseconds for reply serial %u from %ld sec %ld usec\n",
2424                      timeout_milliseconds,
2425                      client_serial,
2426                      start_tv_sec, start_tv_usec);
2427     }
2428   else
2429     {
2430       timeout_milliseconds = -1;
2431
2432       _dbus_verbose ("dbus_connection_send_with_reply_and_block(): will block for reply serial %u\n", client_serial);
2433     }
2434
2435   /* check to see if we already got the data off the socket */
2436   /* from another blocked pending call */
2437   if (check_for_reply_and_update_dispatch_unlocked (connection, pending))
2438     return;
2439
2440   /* Now we wait... */
2441   /* always block at least once as we know we don't have the reply yet */
2442   _dbus_connection_do_iteration_unlocked (connection,
2443                                           pending,
2444                                           DBUS_ITERATION_DO_READING |
2445                                           DBUS_ITERATION_BLOCK,
2446                                           timeout_milliseconds);
2447
2448  recheck_status:
2449
2450   _dbus_verbose ("top of recheck\n");
2451   
2452   HAVE_LOCK_CHECK (connection);
2453   
2454   /* queue messages and get status */
2455
2456   status = _dbus_connection_get_dispatch_status_unlocked (connection);
2457
2458   /* the get_completed() is in case a dispatch() while we were blocking
2459    * got the reply instead of us.
2460    */
2461   if (_dbus_pending_call_get_completed_unlocked (pending))
2462     {
2463       _dbus_verbose ("Pending call completed by dispatch\n");
2464       _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2465       dbus_pending_call_unref (pending);
2466       return;
2467     }
2468   
2469   if (status == DBUS_DISPATCH_DATA_REMAINS)
2470     {
2471       if (check_for_reply_and_update_dispatch_unlocked (connection, pending))
2472         return;
2473     }
2474   
2475   _dbus_get_monotonic_time (&tv_sec, &tv_usec);
2476   elapsed_milliseconds = (tv_sec - start_tv_sec) * 1000 +
2477           (tv_usec - start_tv_usec) / 1000;
2478   
2479   if (!_dbus_connection_get_is_connected_unlocked (connection))
2480     {
2481       DBusMessage *error_msg;
2482
2483       error_msg = _dbus_generate_local_error_message (client_serial,
2484                                                       DBUS_ERROR_DISCONNECTED,
2485                                                       "Connection was disconnected before a reply was received");
2486
2487       /* on OOM error_msg is set to NULL */
2488       complete_pending_call_and_unlock (connection, pending, error_msg);
2489       if (error_msg != NULL)
2490         dbus_message_unref (error_msg);
2491       dbus_pending_call_unref (pending);
2492       return;
2493     }
2494   else if (connection->disconnect_message_link == NULL)
2495     _dbus_verbose ("dbus_connection_send_with_reply_and_block(): disconnected\n");
2496   else if (timeout == NULL)
2497     {
2498        if (status == DBUS_DISPATCH_NEED_MEMORY)
2499         {
2500           /* Try sleeping a bit, as we aren't sure we need to block for reading,
2501            * we may already have a reply in the buffer and just can't process
2502            * it.
2503            */
2504           _dbus_verbose ("dbus_connection_send_with_reply_and_block() waiting for more memory\n");
2505
2506           _dbus_memory_pause_based_on_timeout (timeout_milliseconds - elapsed_milliseconds);
2507         }
2508       else
2509         {          
2510           /* block again, we don't have the reply buffered yet. */
2511           _dbus_connection_do_iteration_unlocked (connection,
2512                                                   pending,
2513                                                   DBUS_ITERATION_DO_READING |
2514                                                   DBUS_ITERATION_BLOCK,
2515                                                   timeout_milliseconds - elapsed_milliseconds);
2516         }
2517
2518       goto recheck_status;
2519     }
2520   else if (tv_sec < start_tv_sec)
2521     _dbus_verbose ("dbus_connection_send_with_reply_and_block(): clock set backward\n");
2522   else if (elapsed_milliseconds < timeout_milliseconds)
2523     {
2524       _dbus_verbose ("dbus_connection_send_with_reply_and_block(): %d milliseconds remain\n", timeout_milliseconds - elapsed_milliseconds);
2525       
2526       if (status == DBUS_DISPATCH_NEED_MEMORY)
2527         {
2528           /* Try sleeping a bit, as we aren't sure we need to block for reading,
2529            * we may already have a reply in the buffer and just can't process
2530            * it.
2531            */
2532           _dbus_verbose ("dbus_connection_send_with_reply_and_block() waiting for more memory\n");
2533
2534           _dbus_memory_pause_based_on_timeout (timeout_milliseconds - elapsed_milliseconds);
2535         }
2536       else
2537         {          
2538           /* block again, we don't have the reply buffered yet. */
2539           _dbus_connection_do_iteration_unlocked (connection,
2540                                                   pending,
2541                                                   DBUS_ITERATION_DO_READING |
2542                                                   DBUS_ITERATION_BLOCK,
2543                                                   timeout_milliseconds - elapsed_milliseconds);
2544         }
2545
2546       goto recheck_status;
2547     }
2548
2549   _dbus_verbose ("dbus_connection_send_with_reply_and_block(): Waited %d milliseconds and got no reply\n",
2550                  elapsed_milliseconds);
2551
2552   _dbus_assert (!_dbus_pending_call_get_completed_unlocked (pending));
2553   
2554   /* unlock and call user code */
2555   complete_pending_call_and_unlock (connection, pending, NULL);
2556
2557   /* update user code on dispatch status */
2558   CONNECTION_LOCK (connection);
2559   status = _dbus_connection_get_dispatch_status_unlocked (connection);
2560   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2561   dbus_pending_call_unref (pending);
2562 }
2563
2564 /**
2565  * Return how many file descriptors are pending in the loader
2566  *
2567  * @param connection the connection
2568  */
2569 int
2570 _dbus_connection_get_pending_fds_count (DBusConnection *connection)
2571 {
2572   return _dbus_transport_get_pending_fds_count (connection->transport);
2573 }
2574
2575 /**
2576  * Register a function to be called whenever the number of pending file
2577  * descriptors in the loader change.
2578  *
2579  * @param connection the connection
2580  * @param callback the callback
2581  */
2582 void
2583 _dbus_connection_set_pending_fds_function (DBusConnection *connection,
2584                                            DBusPendingFdsChangeFunction callback,
2585                                            void *data)
2586 {
2587   _dbus_transport_set_pending_fds_function (connection->transport,
2588                                             callback, data);
2589 }
2590
2591 /** @} */
2592
2593 /**
2594  * @addtogroup DBusConnection
2595  *
2596  * @{
2597  */
2598
2599 /**
2600  * Gets a connection to a remote address. If a connection to the given
2601  * address already exists, returns the existing connection with its
2602  * reference count incremented.  Otherwise, returns a new connection
2603  * and saves the new connection for possible re-use if a future call
2604  * to dbus_connection_open() asks to connect to the same server.
2605  *
2606  * Use dbus_connection_open_private() to get a dedicated connection
2607  * not shared with other callers of dbus_connection_open().
2608  *
2609  * If the open fails, the function returns #NULL, and provides a
2610  * reason for the failure in the error parameter. Pass #NULL for the
2611  * error parameter if you aren't interested in the reason for
2612  * failure.
2613  *
2614  * Because this connection is shared, no user of the connection
2615  * may call dbus_connection_close(). However, when you are done with the
2616  * connection you should call dbus_connection_unref().
2617  *
2618  * @note Prefer dbus_connection_open() to dbus_connection_open_private()
2619  * unless you have good reason; connections are expensive enough
2620  * that it's wasteful to create lots of connections to the same
2621  * server.
2622  * 
2623  * @param address the address.
2624  * @param error address where an error can be returned.
2625  * @returns new connection, or #NULL on failure.
2626  */
2627 DBusConnection*
2628 dbus_connection_open (const char     *address,
2629                       DBusError      *error)
2630 {
2631   DBusConnection *connection;
2632
2633   _dbus_return_val_if_fail (address != NULL, NULL);
2634   _dbus_return_val_if_error_is_set (error, NULL);
2635
2636   connection = _dbus_connection_open_internal (address,
2637                                                TRUE,
2638                                                error);
2639
2640   return connection;
2641 }
2642
2643 /**
2644  * Opens a new, dedicated connection to a remote address. Unlike
2645  * dbus_connection_open(), always creates a new connection.
2646  * This connection will not be saved or recycled by libdbus.
2647  *
2648  * If the open fails, the function returns #NULL, and provides a
2649  * reason for the failure in the error parameter. Pass #NULL for the
2650  * error parameter if you aren't interested in the reason for
2651  * failure.
2652  *
2653  * When you are done with this connection, you must
2654  * dbus_connection_close() to disconnect it,
2655  * and dbus_connection_unref() to free the connection object.
2656  * 
2657  * (The dbus_connection_close() can be skipped if the
2658  * connection is already known to be disconnected, for example
2659  * if you are inside a handler for the Disconnected signal.)
2660  *
2661  * @note Prefer dbus_connection_open() to dbus_connection_open_private()
2662  * unless you have good reason; connections are expensive enough
2663  * that it's wasteful to create lots of connections to the same
2664  * server.
2665  *
2666  * @param address the address.
2667  * @param error address where an error can be returned.
2668  * @returns new connection, or #NULL on failure.
2669  */
2670 DBusConnection*
2671 dbus_connection_open_private (const char     *address,
2672                               DBusError      *error)
2673 {
2674   DBusConnection *connection;
2675
2676   _dbus_return_val_if_fail (address != NULL, NULL);
2677   _dbus_return_val_if_error_is_set (error, NULL);
2678
2679   connection = _dbus_connection_open_internal (address,
2680                                                FALSE,
2681                                                error);
2682
2683   return connection;
2684 }
2685
2686 /**
2687  * Increments the reference count of a DBusConnection.
2688  *
2689  * @param connection the connection.
2690  * @returns the connection.
2691  */
2692 DBusConnection *
2693 dbus_connection_ref (DBusConnection *connection)
2694 {
2695   dbus_int32_t old_refcount;
2696
2697   _dbus_return_val_if_fail (connection != NULL, NULL);
2698   _dbus_return_val_if_fail (connection->generation == _dbus_current_generation, NULL);
2699   old_refcount = _dbus_atomic_inc (&connection->refcount);
2700   _dbus_connection_trace_ref (connection, old_refcount, old_refcount + 1,
2701       "ref");
2702
2703   return connection;
2704 }
2705
2706 static void
2707 free_outgoing_message (void *element,
2708                        void *data)
2709 {
2710   DBusMessage *message = element;
2711   DBusConnection *connection = data;
2712
2713   _dbus_message_remove_counter (message, connection->outgoing_counter);
2714   dbus_message_unref (message);
2715 }
2716
2717 /* This is run without the mutex held, but after the last reference
2718  * to the connection has been dropped we should have no thread-related
2719  * problems
2720  */
2721 static void
2722 _dbus_connection_last_unref (DBusConnection *connection)
2723 {
2724   DBusList *link;
2725
2726   _dbus_verbose ("Finalizing connection %p\n", connection);
2727
2728   _dbus_assert (_dbus_atomic_get (&connection->refcount) == 0);
2729
2730   /* You have to disconnect the connection before unref:ing it. Otherwise
2731    * you won't get the disconnected message.
2732    */
2733   _dbus_assert (!_dbus_transport_get_is_connected (connection->transport));
2734   _dbus_assert (connection->server_guid == NULL);
2735   
2736   /* ---- We're going to call various application callbacks here, hope it doesn't break anything... */
2737   _dbus_object_tree_free_all_unlocked (connection->objects);
2738   
2739   dbus_connection_set_dispatch_status_function (connection, NULL, NULL, NULL);
2740   dbus_connection_set_wakeup_main_function (connection, NULL, NULL, NULL);
2741   dbus_connection_set_unix_user_function (connection, NULL, NULL, NULL);
2742   dbus_connection_set_windows_user_function (connection, NULL, NULL, NULL);
2743   
2744   _dbus_watch_list_free (connection->watches);
2745   connection->watches = NULL;
2746   
2747   _dbus_timeout_list_free (connection->timeouts);
2748   connection->timeouts = NULL;
2749
2750   _dbus_data_slot_list_free (&connection->slot_list);
2751   
2752   link = _dbus_list_get_first_link (&connection->filter_list);
2753   while (link != NULL)
2754     {
2755       DBusMessageFilter *filter = link->data;
2756       DBusList *next = _dbus_list_get_next_link (&connection->filter_list, link);
2757
2758       filter->function = NULL;
2759       _dbus_message_filter_unref (filter); /* calls app callback */
2760       link->data = NULL;
2761       
2762       link = next;
2763     }
2764   _dbus_list_clear (&connection->filter_list);
2765   
2766   /* ---- Done with stuff that invokes application callbacks */
2767
2768   _dbus_object_tree_unref (connection->objects);  
2769
2770   _dbus_hash_table_unref (connection->pending_replies);
2771   connection->pending_replies = NULL;
2772   
2773   _dbus_list_foreach (&connection->outgoing_messages,
2774                       free_outgoing_message,
2775                       connection);
2776   _dbus_list_clear (&connection->outgoing_messages);
2777   
2778   _dbus_list_foreach (&connection->incoming_messages,
2779                       (DBusForeachFunction) dbus_message_unref,
2780                       NULL);
2781   _dbus_list_clear (&connection->incoming_messages);
2782
2783   _dbus_counter_unref (connection->outgoing_counter);
2784
2785   _dbus_transport_unref (connection->transport);
2786
2787   if (connection->disconnect_message_link)
2788     {
2789       DBusMessage *message = connection->disconnect_message_link->data;
2790       dbus_message_unref (message);
2791       _dbus_list_free_link (connection->disconnect_message_link);
2792     }
2793
2794   _dbus_condvar_free_at_location (&connection->dispatch_cond);
2795   _dbus_condvar_free_at_location (&connection->io_path_cond);
2796
2797   _dbus_cmutex_free_at_location (&connection->io_path_mutex);
2798   _dbus_cmutex_free_at_location (&connection->dispatch_mutex);
2799
2800   _dbus_rmutex_free_at_location (&connection->slot_mutex);
2801
2802   _dbus_rmutex_free_at_location (&connection->mutex);
2803
2804   dbus_free (connection);
2805 }
2806
2807 /**
2808  * Decrements the reference count of a DBusConnection, and finalizes
2809  * it if the count reaches zero.
2810  *
2811  * Note: it is a bug to drop the last reference to a connection that
2812  * is still connected.
2813  *
2814  * For shared connections, libdbus will own a reference
2815  * as long as the connection is connected, so you can know that either
2816  * you don't have the last reference, or it's OK to drop the last reference.
2817  * Most connections are shared. dbus_connection_open() and dbus_bus_get()
2818  * return shared connections.
2819  *
2820  * For private connections, the creator of the connection must arrange for
2821  * dbus_connection_close() to be called prior to dropping the last reference.
2822  * Private connections come from dbus_connection_open_private() or dbus_bus_get_private().
2823  *
2824  * @param connection the connection.
2825  */
2826 void
2827 dbus_connection_unref (DBusConnection *connection)
2828 {
2829   dbus_int32_t old_refcount;
2830
2831   _dbus_return_if_fail (connection != NULL);
2832   _dbus_return_if_fail (connection->generation == _dbus_current_generation);
2833
2834   old_refcount = _dbus_atomic_dec (&connection->refcount);
2835
2836   _dbus_connection_trace_ref (connection, old_refcount, old_refcount - 1,
2837       "unref");
2838
2839   if (old_refcount == 1)
2840     {
2841 #ifndef DBUS_DISABLE_CHECKS
2842       if (_dbus_transport_get_is_connected (connection->transport))
2843         {
2844           _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",
2845                                    connection->shareable ?
2846                                    "Most likely, the application called unref() too many times and removed a reference belonging to libdbus, since this is a shared connection." :
2847                                     "Most likely, the application was supposed to call dbus_connection_close(), since this is a private connection.");
2848           return;
2849         }
2850 #endif
2851       _dbus_connection_last_unref (connection);
2852     }
2853 }
2854
2855 /*
2856  * Note that the transport can disconnect itself (other end drops us)
2857  * and in that case this function never runs. So this function must
2858  * not do anything more than disconnect the transport and update the
2859  * dispatch status.
2860  * 
2861  * If the transport self-disconnects, then we assume someone will
2862  * dispatch the connection to cause the dispatch status update.
2863  */
2864 static void
2865 _dbus_connection_close_possibly_shared_and_unlock (DBusConnection *connection)
2866 {
2867   DBusDispatchStatus status;
2868
2869   HAVE_LOCK_CHECK (connection);
2870   
2871   _dbus_verbose ("Disconnecting %p\n", connection);
2872
2873   /* We need to ref because update_dispatch_status_and_unlock will unref
2874    * the connection if it was shared and libdbus was the only remaining
2875    * refcount holder.
2876    */
2877   _dbus_connection_ref_unlocked (connection);
2878   
2879   _dbus_transport_disconnect (connection->transport);
2880
2881   /* This has the side effect of queuing the disconnect message link
2882    * (unless we don't have enough memory, possibly, so don't assert it).
2883    * After the disconnect message link is queued, dbus_bus_get/dbus_connection_open
2884    * should never again return the newly-disconnected connection.
2885    *
2886    * However, we only unref the shared connection and exit_on_disconnect when
2887    * the disconnect message reaches the head of the message queue,
2888    * NOT when it's first queued.
2889    */
2890   status = _dbus_connection_get_dispatch_status_unlocked (connection);
2891
2892   /* This calls out to user code */
2893   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2894
2895   /* Could also call out to user code */
2896   dbus_connection_unref (connection);
2897 }
2898
2899 /**
2900  * Closes a private connection, so no further data can be sent or received.
2901  * This disconnects the transport (such as a socket) underlying the
2902  * connection.
2903  *
2904  * Attempts to send messages after closing a connection are safe, but will result in
2905  * error replies generated locally in libdbus.
2906  * 
2907  * This function does not affect the connection's reference count.  It's
2908  * safe to close a connection more than once; all calls after the
2909  * first do nothing. It's impossible to "reopen" a connection, a
2910  * new connection must be created. This function may result in a call
2911  * to the DBusDispatchStatusFunction set with
2912  * dbus_connection_set_dispatch_status_function(), as the disconnect
2913  * message it generates needs to be dispatched.
2914  *
2915  * If a connection is dropped by the remote application, it will
2916  * close itself. 
2917  * 
2918  * You must close a connection prior to releasing the last reference to
2919  * the connection. If you dbus_connection_unref() for the last time
2920  * without closing the connection, the results are undefined; it
2921  * is a bug in your program and libdbus will try to print a warning.
2922  *
2923  * You may not close a shared connection. Connections created with
2924  * dbus_connection_open() or dbus_bus_get() are shared.
2925  * These connections are owned by libdbus, and applications should
2926  * only unref them, never close them. Applications can know it is
2927  * safe to unref these connections because libdbus will be holding a
2928  * reference as long as the connection is open. Thus, either the
2929  * connection is closed and it is OK to drop the last reference,
2930  * or the connection is open and the app knows it does not have the
2931  * last reference.
2932  *
2933  * Connections created with dbus_connection_open_private() or
2934  * dbus_bus_get_private() are not kept track of or referenced by
2935  * libdbus. The creator of these connections is responsible for
2936  * calling dbus_connection_close() prior to releasing the last
2937  * reference, if the connection is not already disconnected.
2938  *
2939  * @param connection the private (unshared) connection to close
2940  */
2941 void
2942 dbus_connection_close (DBusConnection *connection)
2943 {
2944   _dbus_return_if_fail (connection != NULL);
2945   _dbus_return_if_fail (connection->generation == _dbus_current_generation);
2946
2947   CONNECTION_LOCK (connection);
2948
2949 #ifndef DBUS_DISABLE_CHECKS
2950   if (connection->shareable)
2951     {
2952       CONNECTION_UNLOCK (connection);
2953
2954       _dbus_warn_check_failed ("Applications must not close shared connections - see dbus_connection_close() docs. This is a bug in the application.");
2955       return;
2956     }
2957 #endif
2958   
2959   _dbus_connection_close_possibly_shared_and_unlock (connection);
2960 }
2961
2962 static dbus_bool_t
2963 _dbus_connection_get_is_connected_unlocked (DBusConnection *connection)
2964 {
2965   HAVE_LOCK_CHECK (connection);
2966   return _dbus_transport_get_is_connected (connection->transport);
2967 }
2968
2969 /**
2970  * Gets whether the connection is currently open.  A connection may
2971  * become disconnected when the remote application closes its end, or
2972  * exits; a connection may also be disconnected with
2973  * dbus_connection_close().
2974  * 
2975  * There are not separate states for "closed" and "disconnected," the two
2976  * terms are synonymous. This function should really be called
2977  * get_is_open() but for historical reasons is not.
2978  *
2979  * @param connection the connection.
2980  * @returns #TRUE if the connection is still alive.
2981  */
2982 dbus_bool_t
2983 dbus_connection_get_is_connected (DBusConnection *connection)
2984 {
2985   dbus_bool_t res;
2986
2987   _dbus_return_val_if_fail (connection != NULL, FALSE);
2988   
2989   CONNECTION_LOCK (connection);
2990   res = _dbus_connection_get_is_connected_unlocked (connection);
2991   CONNECTION_UNLOCK (connection);
2992   
2993   return res;
2994 }
2995
2996 /**
2997  * Gets whether the connection was authenticated. (Note that
2998  * if the connection was authenticated then disconnected,
2999  * this function still returns #TRUE)
3000  *
3001  * @param connection the connection
3002  * @returns #TRUE if the connection was ever authenticated
3003  */
3004 dbus_bool_t
3005 dbus_connection_get_is_authenticated (DBusConnection *connection)
3006 {
3007   dbus_bool_t res;
3008
3009   _dbus_return_val_if_fail (connection != NULL, FALSE);
3010
3011   CONNECTION_LOCK (connection);
3012   res = _dbus_transport_try_to_authenticate (connection->transport);
3013   CONNECTION_UNLOCK (connection);
3014   
3015   return res;
3016 }
3017
3018 /**
3019  * Gets whether the connection is not authenticated as a specific
3020  * user.  If the connection is not authenticated, this function
3021  * returns #TRUE, and if it is authenticated but as an anonymous user,
3022  * it returns #TRUE.  If it is authenticated as a specific user, then
3023  * this returns #FALSE. (Note that if the connection was authenticated
3024  * as anonymous then disconnected, this function still returns #TRUE.)
3025  *
3026  * If the connection is not anonymous, you can use
3027  * dbus_connection_get_unix_user() and
3028  * dbus_connection_get_windows_user() to see who it's authorized as.
3029  *
3030  * If you want to prevent non-anonymous authorization, use
3031  * dbus_server_set_auth_mechanisms() to remove the mechanisms that
3032  * allow proving user identity (i.e. only allow the ANONYMOUS
3033  * mechanism).
3034  * 
3035  * @param connection the connection
3036  * @returns #TRUE if not authenticated or authenticated as anonymous 
3037  */
3038 dbus_bool_t
3039 dbus_connection_get_is_anonymous (DBusConnection *connection)
3040 {
3041   dbus_bool_t res;
3042
3043   _dbus_return_val_if_fail (connection != NULL, FALSE);
3044   
3045   CONNECTION_LOCK (connection);
3046   res = _dbus_transport_get_is_anonymous (connection->transport);
3047   CONNECTION_UNLOCK (connection);
3048   
3049   return res;
3050 }
3051
3052 /**
3053  * Gets the ID of the server address we are authenticated to, if this
3054  * connection is on the client side. If the connection is on the
3055  * server side, this will always return #NULL - use dbus_server_get_id()
3056  * to get the ID of your own server, if you are the server side.
3057  * 
3058  * If a client-side connection is not authenticated yet, the ID may be
3059  * available if it was included in the server address, but may not be
3060  * available. The only way to be sure the server ID is available
3061  * is to wait for authentication to complete.
3062  *
3063  * In general, each mode of connecting to a given server will have
3064  * its own ID. So for example, if the session bus daemon is listening
3065  * on UNIX domain sockets and on TCP, then each of those modalities
3066  * will have its own server ID.
3067  *
3068  * If you want an ID that identifies an entire session bus, look at
3069  * dbus_bus_get_id() instead (which is just a convenience wrapper
3070  * around the org.freedesktop.DBus.GetId method invoked on the bus).
3071  *
3072  * You can also get a machine ID; see dbus_try_get_local_machine_id() to
3073  * get the machine you are on.  There isn't a convenience wrapper, but
3074  * you can invoke org.freedesktop.DBus.Peer.GetMachineId on any peer
3075  * to get the machine ID on the other end.
3076  * 
3077  * The D-Bus specification describes the server ID and other IDs in a
3078  * bit more detail.
3079  *
3080  * @param connection the connection
3081  * @returns the server ID or #NULL if no memory or the connection is server-side
3082  */
3083 char*
3084 dbus_connection_get_server_id (DBusConnection *connection)
3085 {
3086   char *id;
3087
3088   _dbus_return_val_if_fail (connection != NULL, NULL);
3089
3090   CONNECTION_LOCK (connection);
3091   id = _dbus_strdup (_dbus_transport_get_server_id (connection->transport));
3092   CONNECTION_UNLOCK (connection);
3093
3094   return id;
3095 }
3096
3097 /**
3098  * Tests whether a certain type can be send via the connection. This
3099  * will always return TRUE for all types, with the exception of
3100  * DBUS_TYPE_UNIX_FD. The function will return TRUE for
3101  * DBUS_TYPE_UNIX_FD only on systems that know Unix file descriptors
3102  * and can send them via the chosen transport and when the remote side
3103  * supports this.
3104  *
3105  * This function can be used to do runtime checking for types that
3106  * might be unknown to the specific D-Bus client implementation
3107  * version, i.e. it will return FALSE for all types this
3108  * implementation does not know, including invalid or reserved types.
3109  *
3110  * @param connection the connection
3111  * @param type the type to check
3112  * @returns TRUE if the type may be send via the connection
3113  */
3114 dbus_bool_t
3115 dbus_connection_can_send_type(DBusConnection *connection,
3116                                   int type)
3117 {
3118   _dbus_return_val_if_fail (connection != NULL, FALSE);
3119
3120   if (!dbus_type_is_valid (type))
3121     return FALSE;
3122
3123   if (type != DBUS_TYPE_UNIX_FD)
3124     return TRUE;
3125
3126 #ifdef HAVE_UNIX_FD_PASSING
3127   {
3128     dbus_bool_t b;
3129
3130     CONNECTION_LOCK(connection);
3131     b = _dbus_transport_can_pass_unix_fd(connection->transport);
3132     CONNECTION_UNLOCK(connection);
3133
3134     return b;
3135   }
3136 #endif
3137
3138   return FALSE;
3139 }
3140
3141 /**
3142  * Set whether _exit() should be called when the connection receives a
3143  * disconnect signal. The call to _exit() comes after any handlers for
3144  * the disconnect signal run; handlers can cancel the exit by calling
3145  * this function.
3146  *
3147  * By default, exit_on_disconnect is #FALSE; but for message bus
3148  * connections returned from dbus_bus_get() it will be toggled on
3149  * by default.
3150  *
3151  * @param connection the connection
3152  * @param exit_on_disconnect #TRUE if _exit() should be called after a disconnect signal
3153  */
3154 void
3155 dbus_connection_set_exit_on_disconnect (DBusConnection *connection,
3156                                         dbus_bool_t     exit_on_disconnect)
3157 {
3158   _dbus_return_if_fail (connection != NULL);
3159
3160   CONNECTION_LOCK (connection);
3161   connection->exit_on_disconnect = exit_on_disconnect != FALSE;
3162   CONNECTION_UNLOCK (connection);
3163 }
3164
3165 /**
3166  * Preallocates resources needed to send a message, allowing the message 
3167  * to be sent without the possibility of memory allocation failure.
3168  * Allows apps to create a future guarantee that they can send
3169  * a message regardless of memory shortages.
3170  *
3171  * @param connection the connection we're preallocating for.
3172  * @returns the preallocated resources, or #NULL
3173  */
3174 DBusPreallocatedSend*
3175 dbus_connection_preallocate_send (DBusConnection *connection)
3176 {
3177   DBusPreallocatedSend *preallocated;
3178
3179   _dbus_return_val_if_fail (connection != NULL, NULL);
3180
3181   CONNECTION_LOCK (connection);
3182   
3183   preallocated =
3184     _dbus_connection_preallocate_send_unlocked (connection);
3185
3186   CONNECTION_UNLOCK (connection);
3187
3188   return preallocated;
3189 }
3190
3191 /**
3192  * Frees preallocated message-sending resources from
3193  * dbus_connection_preallocate_send(). Should only
3194  * be called if the preallocated resources are not used
3195  * to send a message.
3196  *
3197  * @param connection the connection
3198  * @param preallocated the resources
3199  */
3200 void
3201 dbus_connection_free_preallocated_send (DBusConnection       *connection,
3202                                         DBusPreallocatedSend *preallocated)
3203 {
3204   _dbus_return_if_fail (connection != NULL);
3205   _dbus_return_if_fail (preallocated != NULL);  
3206   _dbus_return_if_fail (connection == preallocated->connection);
3207
3208   _dbus_list_free_link (preallocated->queue_link);
3209   _dbus_counter_unref (preallocated->counter_link->data);
3210   _dbus_list_free_link (preallocated->counter_link);
3211   dbus_free (preallocated);
3212 }
3213
3214 /**
3215  * Sends a message using preallocated resources. This function cannot fail.
3216  * It works identically to dbus_connection_send() in other respects.
3217  * Preallocated resources comes from dbus_connection_preallocate_send().
3218  * This function "consumes" the preallocated resources, they need not
3219  * be freed separately.
3220  *
3221  * @param connection the connection
3222  * @param preallocated the preallocated resources
3223  * @param message the message to send
3224  * @param client_serial return location for client serial assigned to the message
3225  */
3226 void
3227 dbus_connection_send_preallocated (DBusConnection       *connection,
3228                                    DBusPreallocatedSend *preallocated,
3229                                    DBusMessage          *message,
3230                                    dbus_uint32_t        *client_serial)
3231 {
3232   _dbus_return_if_fail (connection != NULL);
3233   _dbus_return_if_fail (preallocated != NULL);
3234   _dbus_return_if_fail (message != NULL);
3235   _dbus_return_if_fail (preallocated->connection == connection);
3236   _dbus_return_if_fail (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_METHOD_CALL ||
3237                         dbus_message_get_member (message) != NULL);
3238   _dbus_return_if_fail (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL ||
3239                         (dbus_message_get_interface (message) != NULL &&
3240                          dbus_message_get_member (message) != NULL));
3241
3242   CONNECTION_LOCK (connection);
3243
3244 #ifdef HAVE_UNIX_FD_PASSING
3245
3246   if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3247       message->n_unix_fds > 0)
3248     {
3249       /* Refuse to send fds on a connection that cannot handle
3250          them. Unfortunately we cannot return a proper error here, so
3251          the best we can is just return. */
3252       CONNECTION_UNLOCK (connection);
3253       return;
3254     }
3255
3256 #endif
3257
3258   _dbus_connection_send_preallocated_and_unlock (connection,
3259                                                  preallocated,
3260                                                  message, client_serial);
3261 }
3262
3263 static dbus_bool_t
3264 _dbus_connection_send_unlocked_no_update (DBusConnection *connection,
3265                                           DBusMessage    *message,
3266                                           dbus_uint32_t  *client_serial)
3267 {
3268   DBusPreallocatedSend *preallocated;
3269
3270   _dbus_assert (connection != NULL);
3271   _dbus_assert (message != NULL);
3272   
3273   preallocated = _dbus_connection_preallocate_send_unlocked (connection);
3274   if (preallocated == NULL)
3275     return FALSE;
3276
3277   _dbus_connection_send_preallocated_unlocked_no_update (connection,
3278                                                          preallocated,
3279                                                          message,
3280                                                          client_serial);
3281   return TRUE;
3282 }
3283
3284 /**
3285  * Adds a message to the outgoing message queue. Does not block to
3286  * write the message to the network; that happens asynchronously. To
3287  * force the message to be written, call dbus_connection_flush() however
3288  * it is not necessary to call dbus_connection_flush() by hand; the 
3289  * message will be sent the next time the main loop is run. 
3290  * dbus_connection_flush() should only be used, for example, if
3291  * the application was expected to exit before running the main loop.
3292  *
3293  * Because this only queues the message, the only reason it can
3294  * fail is lack of memory. Even if the connection is disconnected,
3295  * no error will be returned. If the function fails due to lack of memory, 
3296  * it returns #FALSE. The function will never fail for other reasons; even 
3297  * if the connection is disconnected, you can queue an outgoing message,
3298  * though obviously it won't be sent.
3299  *
3300  * The message serial is used by the remote application to send a
3301  * reply; see dbus_message_get_serial() or the D-Bus specification.
3302  *
3303  * dbus_message_unref() can be called as soon as this method returns
3304  * as the message queue will hold its own ref until the message is sent.
3305  * 
3306  * @param connection the connection.
3307  * @param message the message to write.
3308  * @param serial return location for message serial, or #NULL if you don't care
3309  * @returns #TRUE on success.
3310  */
3311 dbus_bool_t
3312 dbus_connection_send (DBusConnection *connection,
3313                       DBusMessage    *message,
3314                       dbus_uint32_t  *serial)
3315 {
3316   _dbus_return_val_if_fail (connection != NULL, FALSE);
3317   _dbus_return_val_if_fail (message != NULL, FALSE);
3318
3319   CONNECTION_LOCK (connection);
3320
3321 #ifdef HAVE_UNIX_FD_PASSING
3322
3323   if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3324       message->n_unix_fds > 0)
3325     {
3326       /* Refuse to send fds on a connection that cannot handle
3327          them. Unfortunately we cannot return a proper error here, so
3328          the best we can is just return. */
3329       CONNECTION_UNLOCK (connection);
3330       return FALSE;
3331     }
3332
3333 #endif
3334
3335   return _dbus_connection_send_and_unlock (connection,
3336                                            message,
3337                                            serial);
3338 }
3339
3340 static dbus_bool_t
3341 reply_handler_timeout (void *data)
3342 {
3343   DBusConnection *connection;
3344   DBusDispatchStatus status;
3345   DBusPendingCall *pending = data;
3346
3347   connection = _dbus_pending_call_get_connection_and_lock (pending);
3348   _dbus_connection_ref_unlocked (connection);
3349
3350   _dbus_pending_call_queue_timeout_error_unlocked (pending, 
3351                                                    connection);
3352   _dbus_connection_remove_timeout_unlocked (connection,
3353                                             _dbus_pending_call_get_timeout_unlocked (pending));
3354   _dbus_pending_call_set_timeout_added_unlocked (pending, FALSE);
3355
3356   _dbus_verbose ("middle\n");
3357   status = _dbus_connection_get_dispatch_status_unlocked (connection);
3358
3359   /* Unlocks, and calls out to user code */
3360   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3361   dbus_connection_unref (connection);
3362   
3363   return TRUE;
3364 }
3365
3366 /**
3367  * Queues a message to send, as with dbus_connection_send(),
3368  * but also returns a #DBusPendingCall used to receive a reply to the
3369  * message. If no reply is received in the given timeout_milliseconds,
3370  * this function expires the pending reply and generates a synthetic
3371  * error reply (generated in-process, not by the remote application)
3372  * indicating that a timeout occurred.
3373  *
3374  * A #DBusPendingCall will see a reply message before any filters or
3375  * registered object path handlers. See dbus_connection_dispatch() for
3376  * details on when handlers are run.
3377  *
3378  * A #DBusPendingCall will always see exactly one reply message,
3379  * unless it's cancelled with dbus_pending_call_cancel().
3380  * 
3381  * If #NULL is passed for the pending_return, the #DBusPendingCall
3382  * will still be generated internally, and used to track
3383  * the message reply timeout. This means a timeout error will
3384  * occur if no reply arrives, unlike with dbus_connection_send().
3385  *
3386  * If -1 is passed for the timeout, a sane default timeout is used. -1
3387  * is typically the best value for the timeout for this reason, unless
3388  * you want a very short or very long timeout.  If #DBUS_TIMEOUT_INFINITE is
3389  * passed for the timeout, no timeout will be set and the call will block
3390  * forever.
3391  *
3392  * @warning if the connection is disconnected or you try to send Unix
3393  * file descriptors on a connection that does not support them, the
3394  * #DBusPendingCall will be set to #NULL, so be careful with this.
3395  *
3396  * @param connection the connection
3397  * @param message the message to send
3398  * @param pending_return return location for a #DBusPendingCall
3399  * object, or #NULL if connection is disconnected or when you try to
3400  * send Unix file descriptors on a connection that does not support
3401  * them.
3402  * @param timeout_milliseconds timeout in milliseconds, -1 (or
3403  *  #DBUS_TIMEOUT_USE_DEFAULT) for default or #DBUS_TIMEOUT_INFINITE for no
3404  *  timeout
3405  * @returns #FALSE if no memory, #TRUE otherwise.
3406  *
3407  */
3408 dbus_bool_t
3409 dbus_connection_send_with_reply (DBusConnection     *connection,
3410                                  DBusMessage        *message,
3411                                  DBusPendingCall   **pending_return,
3412                                  int                 timeout_milliseconds)
3413 {
3414   DBusPendingCall *pending;
3415   dbus_int32_t serial = -1;
3416   DBusDispatchStatus status;
3417
3418   _dbus_return_val_if_fail (connection != NULL, FALSE);
3419   _dbus_return_val_if_fail (message != NULL, FALSE);
3420   _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
3421
3422   if (pending_return)
3423     *pending_return = NULL;
3424
3425   CONNECTION_LOCK (connection);
3426
3427 #ifdef HAVE_UNIX_FD_PASSING
3428
3429   if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3430       message->n_unix_fds > 0)
3431     {
3432       /* Refuse to send fds on a connection that cannot handle
3433          them. Unfortunately we cannot return a proper error here, so
3434          the best we can do is return TRUE but leave *pending_return
3435          as NULL. */
3436       CONNECTION_UNLOCK (connection);
3437       return TRUE;
3438     }
3439
3440 #endif
3441
3442    if (!_dbus_connection_get_is_connected_unlocked (connection))
3443     {
3444       CONNECTION_UNLOCK (connection);
3445
3446       return TRUE;
3447     }
3448
3449   _dbus_message_set_timeout_ms(message, timeout_milliseconds);
3450   pending = _dbus_pending_call_new_unlocked (connection,
3451                                              timeout_milliseconds,
3452                                              reply_handler_timeout);
3453
3454   if (pending == NULL)
3455     {
3456       CONNECTION_UNLOCK (connection);
3457       return FALSE;
3458     }
3459
3460   /* Assign a serial to the message */
3461   serial = dbus_message_get_serial (message);
3462   if (serial == 0)
3463     {
3464       serial = _dbus_connection_get_next_client_serial (connection);
3465       dbus_message_set_serial (message, serial);
3466     }
3467
3468   if (!_dbus_pending_call_set_timeout_error_unlocked (pending, message, serial))
3469     goto error;
3470     
3471   /* Insert the serial in the pending replies hash;
3472    * hash takes a refcount on DBusPendingCall.
3473    * Also, add the timeout.
3474    */
3475   if (!_dbus_connection_attach_pending_call_unlocked (connection,
3476                                                       pending))
3477     goto error;
3478  
3479   if (!_dbus_connection_send_unlocked_no_update (connection, message, NULL))
3480     {
3481       _dbus_connection_detach_pending_call_and_unlock (connection,
3482                                                        pending);
3483       goto error_unlocked;
3484     }
3485
3486   if (pending_return)
3487     *pending_return = pending; /* hand off refcount */
3488   else
3489     {
3490       _dbus_connection_detach_pending_call_unlocked (connection, pending);
3491       /* we still have a ref to the pending call in this case, we unref
3492        * after unlocking, below
3493        */
3494     }
3495
3496   status = _dbus_connection_get_dispatch_status_unlocked (connection);
3497
3498   /* this calls out to user code */
3499   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3500
3501   if (pending_return == NULL)
3502     dbus_pending_call_unref (pending);
3503   
3504   return TRUE;
3505
3506  error:
3507   CONNECTION_UNLOCK (connection);
3508  error_unlocked:
3509   dbus_pending_call_unref (pending);
3510   return FALSE;
3511 }
3512
3513 /**
3514  * Sends a message and blocks a certain time period while waiting for
3515  * a reply.  This function does not reenter the main loop,
3516  * i.e. messages other than the reply are queued up but not
3517  * processed. This function is used to invoke method calls on a
3518  * remote object.
3519  * 
3520  * If a normal reply is received, it is returned, and removed from the
3521  * incoming message queue. If it is not received, #NULL is returned
3522  * and the error is set to #DBUS_ERROR_NO_REPLY.  If an error reply is
3523  * received, it is converted to a #DBusError and returned as an error,
3524  * then the reply message is deleted and #NULL is returned. If
3525  * something else goes wrong, result is set to whatever is
3526  * appropriate, such as #DBUS_ERROR_NO_MEMORY or
3527  * #DBUS_ERROR_DISCONNECTED.
3528  *
3529  * @warning While this function blocks the calling thread will not be
3530  * processing the incoming message queue. This means you can end up
3531  * deadlocked if the application you're talking to needs you to reply
3532  * to a method. To solve this, either avoid the situation, block in a
3533  * separate thread from the main connection-dispatching thread, or use
3534  * dbus_pending_call_set_notify() to avoid blocking.
3535  *
3536  * @param connection the connection
3537  * @param message the message to send
3538  * @param timeout_milliseconds timeout in milliseconds, -1 (or
3539  *  #DBUS_TIMEOUT_USE_DEFAULT) for default or #DBUS_TIMEOUT_INFINITE for no
3540  *  timeout
3541  * @param error return location for error message
3542  * @returns the message that is the reply or #NULL with an error code if the
3543  * function fails.
3544  */
3545 DBusMessage*
3546 dbus_connection_send_with_reply_and_block (DBusConnection     *connection,
3547                                            DBusMessage        *message,
3548                                            int                 timeout_milliseconds,
3549                                            DBusError          *error)
3550 {
3551   DBusMessage *reply;
3552   DBusPendingCall *pending;
3553
3554   _dbus_return_val_if_fail (connection != NULL, NULL);
3555   _dbus_return_val_if_fail (message != NULL, NULL);
3556   _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, NULL);
3557   _dbus_return_val_if_error_is_set (error, NULL);
3558
3559   if (_dbus_transport_can_send_sync_call (connection->transport))
3560     {
3561       dbus_int32_t serial;
3562
3563       /* set serial */
3564       serial = dbus_message_get_serial (message);
3565       if (serial == 0)
3566         {
3567           serial = _dbus_connection_get_next_client_serial (connection);
3568           dbus_message_set_serial (message, serial);
3569         }
3570
3571       reply = _dbus_transport_send_sync_call (connection->transport, message);
3572       goto out;
3573     }
3574
3575 #ifdef HAVE_UNIX_FD_PASSING
3576
3577   CONNECTION_LOCK (connection);
3578   if (!_dbus_transport_can_pass_unix_fd(connection->transport) &&
3579       message->n_unix_fds > 0)
3580     {
3581       CONNECTION_UNLOCK (connection);
3582       dbus_set_error(error, DBUS_ERROR_FAILED, "Cannot send file descriptors on this connection.");
3583       return NULL;
3584     }
3585   CONNECTION_UNLOCK (connection);
3586
3587 #endif
3588
3589   if (!dbus_connection_send_with_reply (connection, message,
3590                                         &pending, timeout_milliseconds))
3591     {
3592       _DBUS_SET_OOM (error);
3593       return NULL;
3594     }
3595
3596   if (pending == NULL)
3597     {
3598       dbus_set_error (error, DBUS_ERROR_DISCONNECTED, "Connection is closed");
3599       return NULL;
3600     }
3601   
3602   dbus_pending_call_block (pending);
3603
3604   reply = dbus_pending_call_steal_reply (pending);
3605   dbus_pending_call_unref (pending);
3606
3607   /* call_complete_and_unlock() called from pending_call_block() should
3608    * always fill this in.
3609    */
3610
3611 out:
3612   _dbus_assert (reply != NULL);
3613   
3614   if (dbus_set_error_from_message (error, reply))
3615     {
3616       dbus_message_unref (reply);
3617       return NULL;
3618     }
3619   else
3620     return reply;
3621 }
3622
3623 /**
3624  * Blocks until the outgoing message queue is empty.
3625  * Assumes connection lock already held.
3626  *
3627  * If you call this, you MUST call update_dispatch_status afterword...
3628  * 
3629  * @param connection the connection.
3630  */
3631 static DBusDispatchStatus
3632 _dbus_connection_flush_unlocked (DBusConnection *connection)
3633 {
3634   /* We have to specify DBUS_ITERATION_DO_READING here because
3635    * otherwise we could have two apps deadlock if they are both doing
3636    * a flush(), and the kernel buffers fill up. This could change the
3637    * dispatch status.
3638    */
3639   DBusDispatchStatus status;
3640
3641   HAVE_LOCK_CHECK (connection);
3642   
3643   while (connection->n_outgoing > 0 &&
3644          _dbus_connection_get_is_connected_unlocked (connection))
3645     {
3646       _dbus_verbose ("doing iteration in\n");
3647       HAVE_LOCK_CHECK (connection);
3648       _dbus_connection_do_iteration_unlocked (connection,
3649                                               NULL,
3650                                               DBUS_ITERATION_DO_READING |
3651                                               DBUS_ITERATION_DO_WRITING |
3652                                               DBUS_ITERATION_BLOCK,
3653                                               -1);
3654     }
3655
3656   HAVE_LOCK_CHECK (connection);
3657   _dbus_verbose ("middle\n");
3658   status = _dbus_connection_get_dispatch_status_unlocked (connection);
3659
3660   HAVE_LOCK_CHECK (connection);
3661   return status;
3662 }
3663
3664 /**
3665  * Blocks until the outgoing message queue is empty.
3666  *
3667  * @param connection the connection.
3668  */
3669 void
3670 dbus_connection_flush (DBusConnection *connection)
3671 {
3672   /* We have to specify DBUS_ITERATION_DO_READING here because
3673    * otherwise we could have two apps deadlock if they are both doing
3674    * a flush(), and the kernel buffers fill up. This could change the
3675    * dispatch status.
3676    */
3677   DBusDispatchStatus status;
3678
3679   _dbus_return_if_fail (connection != NULL);
3680   
3681   CONNECTION_LOCK (connection);
3682
3683   status = _dbus_connection_flush_unlocked (connection);
3684   
3685   HAVE_LOCK_CHECK (connection);
3686   /* Unlocks and calls out to user code */
3687   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3688
3689   _dbus_verbose ("end\n");
3690 }
3691
3692 /**
3693  * This function implements dbus_connection_read_write_dispatch() and
3694  * dbus_connection_read_write() (they pass a different value for the
3695  * dispatch parameter).
3696  * 
3697  * @param connection the connection
3698  * @param timeout_milliseconds max time to block or -1 for infinite
3699  * @param dispatch dispatch new messages or leave them on the incoming queue
3700  * @returns #TRUE if the disconnect message has not been processed
3701  */
3702 static dbus_bool_t
3703 _dbus_connection_read_write_dispatch (DBusConnection *connection,
3704                                      int             timeout_milliseconds, 
3705                                      dbus_bool_t     dispatch)
3706 {
3707   DBusDispatchStatus dstatus;
3708   dbus_bool_t progress_possible;
3709
3710   /* Need to grab a ref here in case we're a private connection and
3711    * the user drops the last ref in a handler we call; see bug 
3712    * https://bugs.freedesktop.org/show_bug.cgi?id=15635
3713    */
3714   dbus_connection_ref (connection);
3715   dstatus = dbus_connection_get_dispatch_status (connection);
3716
3717   if (dispatch && dstatus == DBUS_DISPATCH_DATA_REMAINS)
3718     {
3719       _dbus_verbose ("doing dispatch\n");
3720       dbus_connection_dispatch (connection);
3721       CONNECTION_LOCK (connection);
3722     }
3723   else if (dstatus == DBUS_DISPATCH_NEED_MEMORY)
3724     {
3725       _dbus_verbose ("pausing for memory\n");
3726       _dbus_memory_pause_based_on_timeout (timeout_milliseconds);
3727       CONNECTION_LOCK (connection);
3728     }
3729   else
3730     {
3731       CONNECTION_LOCK (connection);
3732       if (_dbus_connection_get_is_connected_unlocked (connection))
3733         {
3734           _dbus_verbose ("doing iteration\n");
3735           _dbus_connection_do_iteration_unlocked (connection,
3736                                                   NULL,
3737                                                   DBUS_ITERATION_DO_READING |
3738                                                   DBUS_ITERATION_DO_WRITING |
3739                                                   DBUS_ITERATION_BLOCK,
3740                                                   timeout_milliseconds);
3741         }
3742     }
3743   
3744   HAVE_LOCK_CHECK (connection);
3745   /* If we can dispatch, we can make progress until the Disconnected message
3746    * has been processed; if we can only read/write, we can make progress
3747    * as long as the transport is open.
3748    */
3749   if (dispatch)
3750     progress_possible = connection->n_incoming != 0 ||
3751       connection->disconnect_message_link != NULL;
3752   else
3753     progress_possible = _dbus_connection_get_is_connected_unlocked (connection);
3754
3755   CONNECTION_UNLOCK (connection);
3756
3757   dbus_connection_unref (connection);
3758
3759   return progress_possible; /* TRUE if we can make more progress */
3760 }
3761
3762
3763 /**
3764  * This function is intended for use with applications that don't want
3765  * to write a main loop and deal with #DBusWatch and #DBusTimeout. An
3766  * example usage would be:
3767  * 
3768  * @code
3769  *   while (dbus_connection_read_write_dispatch (connection, -1))
3770  *     ; // empty loop body
3771  * @endcode
3772  * 
3773  * In this usage you would normally have set up a filter function to look
3774  * at each message as it is dispatched. The loop terminates when the last
3775  * message from the connection (the disconnected signal) is processed.
3776  * 
3777  * If there are messages to dispatch, this function will
3778  * dbus_connection_dispatch() once, and return. If there are no
3779  * messages to dispatch, this function will block until it can read or
3780  * write, then read or write, then return.
3781  *
3782  * The way to think of this function is that it either makes some sort
3783  * of progress, or it blocks. Note that, while it is blocked on I/O, it
3784  * cannot be interrupted (even by other threads), which makes this function
3785  * unsuitable for applications that do more than just react to received
3786  * messages.
3787  *
3788  * The return value indicates whether the disconnect message has been
3789  * processed, NOT whether the connection is connected. This is
3790  * important because even after disconnecting, you want to process any
3791  * messages you received prior to the disconnect.
3792  *
3793  * @param connection the connection
3794  * @param timeout_milliseconds max time to block or -1 for infinite
3795  * @returns #TRUE if the disconnect message has not been processed
3796  */
3797 dbus_bool_t
3798 dbus_connection_read_write_dispatch (DBusConnection *connection,
3799                                      int             timeout_milliseconds)
3800 {
3801   _dbus_return_val_if_fail (connection != NULL, FALSE);
3802   _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
3803    return _dbus_connection_read_write_dispatch(connection, timeout_milliseconds, TRUE);
3804 }
3805
3806 /** 
3807  * This function is intended for use with applications that don't want to
3808  * write a main loop and deal with #DBusWatch and #DBusTimeout. See also
3809  * dbus_connection_read_write_dispatch().
3810  * 
3811  * As long as the connection is open, this function will block until it can
3812  * read or write, then read or write, then return #TRUE.
3813  *
3814  * If the connection is closed, the function returns #FALSE.
3815  *
3816  * The return value indicates whether reading or writing is still
3817  * possible, i.e. whether the connection is connected.
3818  *
3819  * Note that even after disconnection, messages may remain in the
3820  * incoming queue that need to be
3821  * processed. dbus_connection_read_write_dispatch() dispatches
3822  * incoming messages for you; with dbus_connection_read_write() you
3823  * have to arrange to drain the incoming queue yourself.
3824  * 
3825  * @param connection the connection 
3826  * @param timeout_milliseconds max time to block or -1 for infinite 
3827  * @returns #TRUE if still connected
3828  */
3829 dbus_bool_t 
3830 dbus_connection_read_write (DBusConnection *connection, 
3831                             int             timeout_milliseconds) 
3832
3833   _dbus_return_val_if_fail (connection != NULL, FALSE);
3834   _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
3835    return _dbus_connection_read_write_dispatch(connection, timeout_milliseconds, FALSE);
3836 }
3837
3838 /* We need to call this anytime we pop the head of the queue, and then
3839  * update_dispatch_status_and_unlock needs to be called afterward
3840  * which will "process" the disconnected message and set
3841  * disconnected_message_processed.
3842  */
3843 static void
3844 check_disconnected_message_arrived_unlocked (DBusConnection *connection,
3845                                              DBusMessage    *head_of_queue)
3846 {
3847   HAVE_LOCK_CHECK (connection);
3848
3849   /* checking that the link is NULL is an optimization to avoid the is_signal call */
3850   if (connection->disconnect_message_link == NULL &&
3851       dbus_message_is_signal (head_of_queue,
3852                               DBUS_INTERFACE_LOCAL,
3853                               "Disconnected"))
3854     {
3855       connection->disconnected_message_arrived = TRUE;
3856     }
3857 }
3858
3859 /**
3860  * Returns the first-received message from the incoming message queue,
3861  * leaving it in the queue. If the queue is empty, returns #NULL.
3862  * 
3863  * The caller does not own a reference to the returned message, and
3864  * must either return it using dbus_connection_return_message() or
3865  * keep it after calling dbus_connection_steal_borrowed_message(). No
3866  * one can get at the message while its borrowed, so return it as
3867  * quickly as possible and don't keep a reference to it after
3868  * returning it. If you need to keep the message, make a copy of it.
3869  *
3870  * dbus_connection_dispatch() will block if called while a borrowed
3871  * message is outstanding; only one piece of code can be playing with
3872  * the incoming queue at a time. This function will block if called
3873  * during a dbus_connection_dispatch().
3874  *
3875  * @param connection the connection.
3876  * @returns next message in the incoming queue.
3877  */
3878 DBusMessage*
3879 dbus_connection_borrow_message (DBusConnection *connection)
3880 {
3881   DBusDispatchStatus status;
3882   DBusMessage *message;
3883
3884   _dbus_return_val_if_fail (connection != NULL, NULL);
3885
3886   _dbus_verbose ("start\n");
3887   
3888   /* this is called for the side effect that it queues
3889    * up any messages from the transport
3890    */
3891   status = dbus_connection_get_dispatch_status (connection);
3892   if (status != DBUS_DISPATCH_DATA_REMAINS)
3893     return NULL;
3894   
3895   CONNECTION_LOCK (connection);
3896
3897   _dbus_connection_acquire_dispatch (connection);
3898
3899   /* While a message is outstanding, the dispatch lock is held */
3900   _dbus_assert (connection->message_borrowed == NULL);
3901
3902   connection->message_borrowed = _dbus_list_get_first (&connection->incoming_messages);
3903   
3904   message = connection->message_borrowed;
3905
3906   check_disconnected_message_arrived_unlocked (connection, message);
3907   
3908   /* Note that we KEEP the dispatch lock until the message is returned */
3909   if (message == NULL)
3910     _dbus_connection_release_dispatch (connection);
3911
3912   CONNECTION_UNLOCK (connection);
3913
3914   _dbus_message_trace_ref (message, -1, -1, "dbus_connection_borrow_message");
3915
3916   /* We don't update dispatch status until it's returned or stolen */
3917   
3918   return message;
3919 }
3920
3921 /**
3922  * Used to return a message after peeking at it using
3923  * dbus_connection_borrow_message(). Only called if
3924  * message from dbus_connection_borrow_message() was non-#NULL.
3925  *
3926  * @param connection the connection
3927  * @param message the message from dbus_connection_borrow_message()
3928  */
3929 void
3930 dbus_connection_return_message (DBusConnection *connection,
3931                                 DBusMessage    *message)
3932 {
3933   DBusDispatchStatus status;
3934   
3935   _dbus_return_if_fail (connection != NULL);
3936   _dbus_return_if_fail (message != NULL);
3937   _dbus_return_if_fail (message == connection->message_borrowed);
3938   _dbus_return_if_fail (connection->dispatch_acquired);
3939   
3940   CONNECTION_LOCK (connection);
3941   
3942   _dbus_assert (message == connection->message_borrowed);
3943   
3944   connection->message_borrowed = NULL;
3945
3946   _dbus_connection_release_dispatch (connection); 
3947
3948   status = _dbus_connection_get_dispatch_status_unlocked (connection);
3949   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3950
3951   _dbus_message_trace_ref (message, -1, -1, "dbus_connection_return_message");
3952 }
3953
3954 /**
3955  * Used to keep a message after peeking at it using
3956  * dbus_connection_borrow_message(). Before using this function, see
3957  * the caveats/warnings in the documentation for
3958  * dbus_connection_pop_message().
3959  *
3960  * @param connection the connection
3961  * @param message the message from dbus_connection_borrow_message()
3962  */
3963 void
3964 dbus_connection_steal_borrowed_message (DBusConnection *connection,
3965                                         DBusMessage    *message)
3966 {
3967   DBusMessage *pop_message;
3968   DBusDispatchStatus status;
3969
3970   _dbus_return_if_fail (connection != NULL);
3971   _dbus_return_if_fail (message != NULL);
3972   _dbus_return_if_fail (message == connection->message_borrowed);
3973   _dbus_return_if_fail (connection->dispatch_acquired);
3974   
3975   CONNECTION_LOCK (connection);
3976  
3977   _dbus_assert (message == connection->message_borrowed);
3978
3979   pop_message = _dbus_list_pop_first (&connection->incoming_messages);
3980   _dbus_assert (message == pop_message);
3981   (void) pop_message; /* unused unless asserting */
3982
3983   connection->n_incoming -= 1;
3984  
3985   _dbus_verbose ("Incoming message %p stolen from queue, %d incoming\n",
3986                  message, connection->n_incoming);
3987  
3988   connection->message_borrowed = NULL;
3989
3990   _dbus_connection_release_dispatch (connection);
3991
3992   status = _dbus_connection_get_dispatch_status_unlocked (connection);
3993   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3994   _dbus_message_trace_ref (message, -1, -1,
3995       "dbus_connection_steal_borrowed_message");
3996 }
3997
3998 /* See dbus_connection_pop_message, but requires the caller to own
3999  * the lock before calling. May drop the lock while running.
4000  */
4001 static DBusList*
4002 _dbus_connection_pop_message_link_unlocked (DBusConnection *connection)
4003 {
4004   HAVE_LOCK_CHECK (connection);
4005   
4006   _dbus_assert (connection->message_borrowed == NULL);
4007   
4008   if (connection->n_incoming > 0)
4009     {
4010       DBusList *link;
4011
4012       link = _dbus_list_pop_first_link (&connection->incoming_messages);
4013       connection->n_incoming -= 1;
4014
4015       _dbus_verbose ("Message %p (%s %s %s %s sig:'%s' serial:%u) removed from incoming queue %p, %d incoming\n",
4016                      link->data,
4017                      dbus_message_type_to_string (dbus_message_get_type (link->data)),
4018                      dbus_message_get_path (link->data) ?
4019                      dbus_message_get_path (link->data) :
4020                      "no path",
4021                      dbus_message_get_interface (link->data) ?
4022                      dbus_message_get_interface (link->data) :
4023                      "no interface",
4024                      dbus_message_get_member (link->data) ?
4025                      dbus_message_get_member (link->data) :
4026                      "no member",
4027                      dbus_message_get_signature (link->data),
4028                      dbus_message_get_serial (link->data),
4029                      connection, connection->n_incoming);
4030
4031       _dbus_message_trace_ref (link->data, -1, -1,
4032           "_dbus_connection_pop_message_link_unlocked");
4033
4034       check_disconnected_message_arrived_unlocked (connection, link->data);
4035       
4036       return link;
4037     }
4038   else
4039     return NULL;
4040 }
4041
4042 /* See dbus_connection_pop_message, but requires the caller to own
4043  * the lock before calling. May drop the lock while running.
4044  */
4045 static DBusMessage*
4046 _dbus_connection_pop_message_unlocked (DBusConnection *connection)
4047 {
4048   DBusList *link;
4049
4050   HAVE_LOCK_CHECK (connection);
4051   
4052   link = _dbus_connection_pop_message_link_unlocked (connection);
4053
4054   if (link != NULL)
4055     {
4056       DBusMessage *message;
4057       
4058       message = link->data;
4059       
4060       _dbus_list_free_link (link);
4061       
4062       return message;
4063     }
4064   else
4065     return NULL;
4066 }
4067
4068 static void
4069 _dbus_connection_putback_message_link_unlocked (DBusConnection *connection,
4070                                                 DBusList       *message_link)
4071 {
4072   HAVE_LOCK_CHECK (connection);
4073   
4074   _dbus_assert (message_link != NULL);
4075   /* You can't borrow a message while a link is outstanding */
4076   _dbus_assert (connection->message_borrowed == NULL);
4077   /* We had to have the dispatch lock across the pop/putback */
4078   _dbus_assert (connection->dispatch_acquired);
4079
4080   _dbus_list_prepend_link (&connection->incoming_messages,
4081                            message_link);
4082   connection->n_incoming += 1;
4083
4084   _dbus_verbose ("Message %p (%s %s %s '%s') put back into queue %p, %d incoming\n",
4085                  message_link->data,
4086                  dbus_message_type_to_string (dbus_message_get_type (message_link->data)),
4087                  dbus_message_get_interface (message_link->data) ?
4088                  dbus_message_get_interface (message_link->data) :
4089                  "no interface",
4090                  dbus_message_get_member (message_link->data) ?
4091                  dbus_message_get_member (message_link->data) :
4092                  "no member",
4093                  dbus_message_get_signature (message_link->data),
4094                  connection, connection->n_incoming);
4095
4096   _dbus_message_trace_ref (message_link->data, -1, -1,
4097       "_dbus_connection_putback_message_link_unlocked");
4098 }
4099
4100 dbus_bool_t
4101 _dbus_connection_putback_message (DBusConnection *connection,
4102                                   DBusMessage    *after_message,
4103                                   DBusMessage    *message,
4104                                   DBusError      *error)
4105 {
4106   DBusDispatchStatus status;
4107   DBusList *message_link = _dbus_list_alloc_link (message);
4108   DBusList *after_link;
4109   if (message_link == NULL)
4110     {
4111       _DBUS_SET_OOM (error);
4112       return FALSE;
4113     }
4114   dbus_message_ref (message);
4115
4116   CONNECTION_LOCK (connection);
4117   _dbus_connection_acquire_dispatch (connection);
4118   HAVE_LOCK_CHECK (connection);
4119
4120   after_link = _dbus_list_find_first(&connection->incoming_messages, after_message);
4121   _dbus_list_insert_after_link (&connection->incoming_messages, after_link, message_link);
4122   connection->n_incoming += 1;
4123
4124   _dbus_verbose ("Message %p (%s %s %s '%s') put back into queue %p, %d incoming\n",
4125                  message_link->data,
4126                  dbus_message_type_to_string (dbus_message_get_type (message_link->data)),
4127                  dbus_message_get_interface (message_link->data) ?
4128                  dbus_message_get_interface (message_link->data) :
4129                  "no interface",
4130                  dbus_message_get_member (message_link->data) ?
4131                  dbus_message_get_member (message_link->data) :
4132                  "no member",
4133                  dbus_message_get_signature (message_link->data),
4134                  connection, connection->n_incoming);
4135
4136   _dbus_message_trace_ref (message_link->data, -1, -1,
4137       "_dbus_connection_putback_message");
4138
4139   _dbus_connection_release_dispatch (connection);
4140
4141   status = _dbus_connection_get_dispatch_status_unlocked (connection);
4142   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4143
4144   return TRUE;
4145 }
4146
4147 dbus_bool_t
4148 _dbus_connection_remove_message (DBusConnection *connection,
4149                                  DBusMessage *message)
4150 {
4151   DBusDispatchStatus status;
4152   dbus_bool_t removed;
4153
4154   CONNECTION_LOCK (connection);
4155   _dbus_connection_acquire_dispatch (connection);
4156   HAVE_LOCK_CHECK (connection);
4157
4158   removed = _dbus_list_remove(&connection->incoming_messages, message);
4159
4160   if (removed)
4161     {
4162       connection->n_incoming -= 1;
4163       dbus_message_unref(message);
4164       _dbus_verbose ("Message %p removed from incoming queue\n", message);
4165     }
4166   else
4167       _dbus_verbose ("Message %p not found in the incoming queue\n", message);
4168
4169   _dbus_connection_release_dispatch (connection);
4170
4171   status = _dbus_connection_get_dispatch_status_unlocked (connection);
4172   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4173   return removed;
4174 }
4175
4176 /**
4177  * Returns the first-received message from the incoming message queue,
4178  * removing it from the queue. The caller owns a reference to the
4179  * returned message. If the queue is empty, returns #NULL.
4180  *
4181  * This function bypasses any message handlers that are registered,
4182  * and so using it is usually wrong. Instead, let the main loop invoke
4183  * dbus_connection_dispatch(). Popping messages manually is only
4184  * useful in very simple programs that don't share a #DBusConnection
4185  * with any libraries or other modules.
4186  *
4187  * There is a lock that covers all ways of accessing the incoming message
4188  * queue, so dbus_connection_dispatch(), dbus_connection_pop_message(),
4189  * dbus_connection_borrow_message(), etc. will all block while one of the others
4190  * in the group is running.
4191  * 
4192  * @param connection the connection.
4193  * @returns next message in the incoming queue.
4194  */
4195 DBusMessage*
4196 dbus_connection_pop_message (DBusConnection *connection)
4197 {
4198   DBusMessage *message;
4199   DBusDispatchStatus status;
4200
4201   _dbus_verbose ("start\n");
4202   
4203   /* this is called for the side effect that it queues
4204    * up any messages from the transport
4205    */
4206   status = dbus_connection_get_dispatch_status (connection);
4207   if (status != DBUS_DISPATCH_DATA_REMAINS)
4208     return NULL;
4209   
4210   CONNECTION_LOCK (connection);
4211   _dbus_connection_acquire_dispatch (connection);
4212   HAVE_LOCK_CHECK (connection);
4213   
4214   message = _dbus_connection_pop_message_unlocked (connection);
4215
4216   _dbus_verbose ("Returning popped message %p\n", message);    
4217
4218   _dbus_connection_release_dispatch (connection);
4219
4220   status = _dbus_connection_get_dispatch_status_unlocked (connection);
4221   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4222   
4223   return message;
4224 }
4225
4226 /**
4227  * Acquire the dispatcher. This is a separate lock so the main
4228  * connection lock can be dropped to call out to application dispatch
4229  * handlers.
4230  *
4231  * @param connection the connection.
4232  */
4233 static void
4234 _dbus_connection_acquire_dispatch (DBusConnection *connection)
4235 {
4236   HAVE_LOCK_CHECK (connection);
4237
4238   _dbus_connection_ref_unlocked (connection);
4239   CONNECTION_UNLOCK (connection);
4240   
4241   _dbus_verbose ("locking dispatch_mutex\n");
4242   _dbus_cmutex_lock (connection->dispatch_mutex);
4243
4244   while (connection->dispatch_acquired)
4245     {
4246       _dbus_verbose ("waiting for dispatch to be acquirable\n");
4247       _dbus_condvar_wait (connection->dispatch_cond, 
4248                           connection->dispatch_mutex);
4249     }
4250   
4251   _dbus_assert (!connection->dispatch_acquired);
4252
4253   connection->dispatch_acquired = TRUE;
4254
4255   _dbus_verbose ("unlocking dispatch_mutex\n");
4256   _dbus_cmutex_unlock (connection->dispatch_mutex);
4257   
4258   CONNECTION_LOCK (connection);
4259   _dbus_connection_unref_unlocked (connection);
4260 }
4261
4262 /**
4263  * Release the dispatcher when you're done with it. Only call
4264  * after you've acquired the dispatcher. Wakes up at most one
4265  * thread currently waiting to acquire the dispatcher.
4266  *
4267  * @param connection the connection.
4268  */
4269 static void
4270 _dbus_connection_release_dispatch (DBusConnection *connection)
4271 {
4272   HAVE_LOCK_CHECK (connection);
4273   
4274   _dbus_verbose ("locking dispatch_mutex\n");
4275   _dbus_cmutex_lock (connection->dispatch_mutex);
4276   
4277   _dbus_assert (connection->dispatch_acquired);
4278
4279   connection->dispatch_acquired = FALSE;
4280   _dbus_condvar_wake_one (connection->dispatch_cond);
4281
4282   _dbus_verbose ("unlocking dispatch_mutex\n");
4283   _dbus_cmutex_unlock (connection->dispatch_mutex);
4284 }
4285
4286 static void
4287 _dbus_connection_failed_pop (DBusConnection *connection,
4288                              DBusList       *message_link)
4289 {
4290   _dbus_list_prepend_link (&connection->incoming_messages,
4291                            message_link);
4292   connection->n_incoming += 1;
4293 }
4294
4295 /* Note this may be called multiple times since we don't track whether we already did it */
4296 static void
4297 notify_disconnected_unlocked (DBusConnection *connection)
4298 {
4299   HAVE_LOCK_CHECK (connection);
4300
4301   /* Set the weakref in dbus-bus.c to NULL, so nobody will get a disconnected
4302    * connection from dbus_bus_get(). We make the same guarantee for
4303    * dbus_connection_open() but in a different way since we don't want to
4304    * unref right here; we instead check for connectedness before returning
4305    * the connection from the hash.
4306    */
4307   _dbus_bus_notify_shared_connection_disconnected_unlocked (connection);
4308
4309   /* Dump the outgoing queue, we aren't going to be able to
4310    * send it now, and we'd like accessors like
4311    * dbus_connection_get_outgoing_size() to be accurate.
4312    */
4313   if (connection->n_outgoing > 0)
4314     {
4315       DBusList *link;
4316       
4317       _dbus_verbose ("Dropping %d outgoing messages since we're disconnected\n",
4318                      connection->n_outgoing);
4319       
4320       while ((link = _dbus_list_get_last_link (&connection->outgoing_messages)))
4321         {
4322           _dbus_connection_message_sent_unlocked (connection, link->data);
4323         }
4324     } 
4325 }
4326
4327 /* Note this may be called multiple times since we don't track whether we already did it */
4328 static DBusDispatchStatus
4329 notify_disconnected_and_dispatch_complete_unlocked (DBusConnection *connection)
4330 {
4331   HAVE_LOCK_CHECK (connection);
4332   
4333   if (connection->disconnect_message_link != NULL)
4334     {
4335       _dbus_verbose ("Sending disconnect message\n");
4336       
4337       /* If we have pending calls, queue their timeouts - we want the Disconnected
4338        * to be the last message, after these timeouts.
4339        */
4340       connection_timeout_and_complete_all_pending_calls_unlocked (connection);
4341       
4342       /* We haven't sent the disconnect message already,
4343        * and all real messages have been queued up.
4344        */
4345       _dbus_connection_queue_synthesized_message_link (connection,
4346                                                        connection->disconnect_message_link);
4347       connection->disconnect_message_link = NULL;
4348
4349       return DBUS_DISPATCH_DATA_REMAINS;
4350     }
4351
4352   return DBUS_DISPATCH_COMPLETE;
4353 }
4354
4355 static DBusDispatchStatus
4356 _dbus_connection_get_dispatch_status_unlocked (DBusConnection *connection)
4357 {
4358   HAVE_LOCK_CHECK (connection);
4359   if (connection->dispatch_disabled)
4360     return DBUS_DISPATCH_COMPLETE;
4361   else if (connection->n_incoming > 0)
4362     return DBUS_DISPATCH_DATA_REMAINS;
4363   else if (!_dbus_transport_queue_messages (connection->transport))
4364     return DBUS_DISPATCH_NEED_MEMORY;
4365   else
4366     {
4367       DBusDispatchStatus status;
4368       dbus_bool_t is_connected;
4369       
4370       status = _dbus_transport_get_dispatch_status (connection->transport);
4371       is_connected = _dbus_transport_get_is_connected (connection->transport);
4372
4373       _dbus_verbose ("dispatch status = %s is_connected = %d\n",
4374                      DISPATCH_STATUS_NAME (status), is_connected);
4375       
4376       if (!is_connected)
4377         {
4378           /* It's possible this would be better done by having an explicit
4379            * notification from _dbus_transport_disconnect() that would
4380            * synchronously do this, instead of waiting for the next dispatch
4381            * status check. However, probably not good to change until it causes
4382            * a problem.
4383            */
4384           notify_disconnected_unlocked (connection);
4385
4386           /* I'm not sure this is needed; the idea is that we want to
4387            * queue the Disconnected only after we've read all the
4388            * messages, but if we're disconnected maybe we are guaranteed
4389            * to have read them all ?
4390            */
4391           if (status == DBUS_DISPATCH_COMPLETE)
4392             status = notify_disconnected_and_dispatch_complete_unlocked (connection);
4393         }
4394       
4395       if (status != DBUS_DISPATCH_COMPLETE)
4396         return status;
4397       else if (connection->n_incoming > 0)
4398         return DBUS_DISPATCH_DATA_REMAINS;
4399       else
4400         return DBUS_DISPATCH_COMPLETE;
4401     }
4402 }
4403
4404 static void
4405 _dbus_connection_update_dispatch_status_and_unlock (DBusConnection    *connection,
4406                                                     DBusDispatchStatus new_status)
4407 {
4408   dbus_bool_t changed;
4409   DBusDispatchStatusFunction function;
4410   void *data;
4411
4412   HAVE_LOCK_CHECK (connection);
4413
4414   _dbus_connection_ref_unlocked (connection);
4415
4416   changed = new_status != connection->last_dispatch_status;
4417
4418   connection->last_dispatch_status = new_status;
4419
4420   function = connection->dispatch_status_function;
4421   data = connection->dispatch_status_data;
4422
4423   if (connection->disconnected_message_arrived &&
4424       !connection->disconnected_message_processed)
4425     {
4426       connection->disconnected_message_processed = TRUE;
4427       
4428       /* this does an unref, but we have a ref
4429        * so we should not run the finalizer here
4430        * inside the lock.
4431        */
4432       connection_forget_shared_unlocked (connection);
4433
4434       if (connection->exit_on_disconnect)
4435         {
4436           CONNECTION_UNLOCK (connection);            
4437           
4438           _dbus_verbose ("Exiting on Disconnected signal\n");
4439           _dbus_exit (1);
4440           _dbus_assert_not_reached ("Call to exit() returned");
4441         }
4442     }
4443   
4444   /* We drop the lock */
4445   CONNECTION_UNLOCK (connection);
4446   
4447   if (changed && function)
4448     {
4449       _dbus_verbose ("Notifying of change to dispatch status of %p now %d (%s)\n",
4450                      connection, new_status,
4451                      DISPATCH_STATUS_NAME (new_status));
4452       (* function) (connection, new_status, data);      
4453     }
4454   
4455   dbus_connection_unref (connection);
4456 }
4457
4458 /**
4459  * Gets the current state of the incoming message queue.
4460  * #DBUS_DISPATCH_DATA_REMAINS indicates that the message queue
4461  * may contain messages. #DBUS_DISPATCH_COMPLETE indicates that the
4462  * incoming queue is empty. #DBUS_DISPATCH_NEED_MEMORY indicates that
4463  * there could be data, but we can't know for sure without more
4464  * memory.
4465  *
4466  * To process the incoming message queue, use dbus_connection_dispatch()
4467  * or (in rare cases) dbus_connection_pop_message().
4468  *
4469  * Note, #DBUS_DISPATCH_DATA_REMAINS really means that either we
4470  * have messages in the queue, or we have raw bytes buffered up
4471  * that need to be parsed. When these bytes are parsed, they
4472  * may not add up to an entire message. Thus, it's possible
4473  * to see a status of #DBUS_DISPATCH_DATA_REMAINS but not
4474  * have a message yet.
4475  *
4476  * In particular this happens on initial connection, because all sorts
4477  * of authentication protocol stuff has to be parsed before the
4478  * first message arrives.
4479  * 
4480  * @param connection the connection.
4481  * @returns current dispatch status
4482  */
4483 DBusDispatchStatus
4484 dbus_connection_get_dispatch_status (DBusConnection *connection)
4485 {
4486   DBusDispatchStatus status;
4487
4488   _dbus_return_val_if_fail (connection != NULL, DBUS_DISPATCH_COMPLETE);
4489
4490   _dbus_verbose ("start\n");
4491   
4492   CONNECTION_LOCK (connection);
4493
4494   status = _dbus_connection_get_dispatch_status_unlocked (connection);
4495   
4496   CONNECTION_UNLOCK (connection);
4497
4498   return status;
4499 }
4500
4501 /**
4502  * Filter funtion for handling the Peer standard interface.
4503  */
4504 static DBusHandlerResult
4505 _dbus_connection_peer_filter_unlocked_no_update (DBusConnection *connection,
4506                                                  DBusMessage    *message)
4507 {
4508   dbus_bool_t sent = FALSE;
4509   DBusMessage *ret = NULL;
4510   DBusList *expire_link;
4511
4512   if (connection->route_peer_messages && dbus_message_get_destination (message) != NULL)
4513     {
4514       /* This means we're letting the bus route this message */
4515       return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
4516     }
4517
4518   if (!dbus_message_has_interface (message, DBUS_INTERFACE_PEER))
4519     {
4520       return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
4521     }
4522
4523   /* Preallocate a linked-list link, so that if we need to dispose of a
4524    * message, we can attach it to the expired list */
4525   expire_link = _dbus_list_alloc_link (NULL);
4526
4527   if (!expire_link)
4528     return DBUS_HANDLER_RESULT_NEED_MEMORY;
4529
4530   if (dbus_message_is_method_call (message,
4531                                    DBUS_INTERFACE_PEER,
4532                                    "Ping"))
4533     {
4534       ret = dbus_message_new_method_return (message);
4535       if (ret == NULL)
4536         goto out;
4537
4538       sent = _dbus_connection_send_unlocked_no_update (connection, ret, NULL);
4539     }
4540   else if (dbus_message_is_method_call (message,
4541                                         DBUS_INTERFACE_PEER,
4542                                         "GetMachineId"))
4543     {
4544       DBusString uuid;
4545       DBusError error = DBUS_ERROR_INIT;
4546
4547       if (!_dbus_string_init (&uuid))
4548         goto out;
4549
4550       if (_dbus_get_local_machine_uuid_encoded (&uuid, &error))
4551         {
4552           const char *v_STRING;
4553
4554           ret = dbus_message_new_method_return (message);
4555
4556           if (ret == NULL)
4557             {
4558               _dbus_string_free (&uuid);
4559               goto out;
4560             }
4561
4562           v_STRING = _dbus_string_get_const_data (&uuid);
4563           if (dbus_message_append_args (ret,
4564                                         DBUS_TYPE_STRING, &v_STRING,
4565                                         DBUS_TYPE_INVALID))
4566             {
4567               sent = _dbus_connection_send_unlocked_no_update (connection, ret, NULL);
4568             }
4569         }
4570       else if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
4571         {
4572           dbus_error_free (&error);
4573           _dbus_string_free (&uuid);
4574           goto out;
4575         }
4576       else
4577         {
4578           ret = dbus_message_new_error (message, error.name, error.message);
4579           dbus_error_free (&error);
4580           _dbus_string_free (&uuid);
4581
4582           if (ret == NULL)
4583             goto out;
4584
4585           sent = _dbus_connection_send_unlocked_no_update (connection, ret,
4586                                                            NULL);
4587         }
4588
4589       _dbus_string_free (&uuid);
4590     }
4591   else
4592     {
4593       /* We need to bounce anything else with this interface, otherwise apps
4594        * could start extending the interface and when we added extensions
4595        * here to DBusConnection we'd break those apps.
4596        */
4597       ret = dbus_message_new_error (message,
4598                                     DBUS_ERROR_UNKNOWN_METHOD,
4599                                     "Unknown method invoked on org.freedesktop.DBus.Peer interface");
4600       if (ret == NULL)
4601         goto out;
4602
4603       sent = _dbus_connection_send_unlocked_no_update (connection, ret, NULL);
4604     }
4605
4606 out:
4607   if (ret == NULL)
4608     {
4609       _dbus_list_free_link (expire_link);
4610     }
4611   else
4612     {
4613       /* It'll be safe to unref the reply when we unlock */
4614       expire_link->data = ret;
4615       _dbus_list_prepend_link (&connection->expired_messages, expire_link);
4616     }
4617
4618   if (!sent)
4619     return DBUS_HANDLER_RESULT_NEED_MEMORY;
4620
4621   return DBUS_HANDLER_RESULT_HANDLED;
4622 }
4623
4624 /**
4625 * Processes all builtin filter functions
4626 *
4627 * If the spec specifies a standard interface
4628 * they should be processed from this method
4629 **/
4630 static DBusHandlerResult
4631 _dbus_connection_run_builtin_filters_unlocked_no_update (DBusConnection *connection,
4632                                                            DBusMessage    *message)
4633 {
4634   /* We just run one filter for now but have the option to run more
4635      if the spec calls for it in the future */
4636
4637   return _dbus_connection_peer_filter_unlocked_no_update (connection, message);
4638 }
4639
4640 /**
4641  * Processes any incoming data.
4642  *
4643  * If there's incoming raw data that has not yet been parsed, it is
4644  * parsed, which may or may not result in adding messages to the
4645  * incoming queue.
4646  *
4647  * The incoming data buffer is filled when the connection reads from
4648  * its underlying transport (such as a socket).  Reading usually
4649  * happens in dbus_watch_handle() or dbus_connection_read_write().
4650  * 
4651  * If there are complete messages in the incoming queue,
4652  * dbus_connection_dispatch() removes one message from the queue and
4653  * processes it. Processing has three steps.
4654  *
4655  * First, any method replies are passed to #DBusPendingCall or
4656  * dbus_connection_send_with_reply_and_block() in order to
4657  * complete the pending method call.
4658  * 
4659  * Second, any filters registered with dbus_connection_add_filter()
4660  * are run. If any filter returns #DBUS_HANDLER_RESULT_HANDLED
4661  * then processing stops after that filter.
4662  *
4663  * Third, if the message is a method call it is forwarded to
4664  * any registered object path handlers added with
4665  * dbus_connection_register_object_path() or
4666  * dbus_connection_register_fallback().
4667  *
4668  * A single call to dbus_connection_dispatch() will process at most
4669  * one message; it will not clear the entire message queue.
4670  *
4671  * Be careful about calling dbus_connection_dispatch() from inside a
4672  * message handler, i.e. calling dbus_connection_dispatch()
4673  * recursively.  If threads have been initialized with a recursive
4674  * mutex function, then this will not deadlock; however, it can
4675  * certainly confuse your application.
4676  * 
4677  * @todo some FIXME in here about handling DBUS_HANDLER_RESULT_NEED_MEMORY
4678  * 
4679  * @param connection the connection
4680  * @returns dispatch status, see dbus_connection_get_dispatch_status()
4681  */
4682 DBusDispatchStatus
4683 dbus_connection_dispatch (DBusConnection *connection)
4684 {
4685   DBusMessage *message;
4686   DBusList *link, *filter_list_copy, *message_link;
4687   DBusHandlerResult result;
4688   DBusPendingCall *pending;
4689   dbus_int32_t reply_serial;
4690   DBusDispatchStatus status;
4691   dbus_bool_t found_object;
4692
4693   _dbus_return_val_if_fail (connection != NULL, DBUS_DISPATCH_COMPLETE);
4694
4695   _dbus_verbose ("\n");
4696   
4697   CONNECTION_LOCK (connection);
4698   status = _dbus_connection_get_dispatch_status_unlocked (connection);
4699   if (status != DBUS_DISPATCH_DATA_REMAINS)
4700     {
4701       /* unlocks and calls out to user code */
4702       _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4703       return status;
4704     }
4705   
4706   /* We need to ref the connection since the callback could potentially
4707    * drop the last ref to it
4708    */
4709   _dbus_connection_ref_unlocked (connection);
4710
4711   _dbus_connection_acquire_dispatch (connection);
4712   HAVE_LOCK_CHECK (connection);
4713
4714   message_link = _dbus_connection_pop_message_link_unlocked (connection);
4715   if (message_link == NULL)
4716     {
4717       /* another thread dispatched our stuff */
4718
4719       _dbus_verbose ("another thread dispatched message (during acquire_dispatch above)\n");
4720       
4721       _dbus_connection_release_dispatch (connection);
4722
4723       status = _dbus_connection_get_dispatch_status_unlocked (connection);
4724
4725       _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4726       
4727       dbus_connection_unref (connection);
4728       
4729       return status;
4730     }
4731
4732   message = message_link->data;
4733
4734   _dbus_verbose (" dispatching message %p (%s %s %s '%s')\n",
4735                  message,
4736                  dbus_message_type_to_string (dbus_message_get_type (message)),
4737                  dbus_message_get_interface (message) ?
4738                  dbus_message_get_interface (message) :
4739                  "no interface",
4740                  dbus_message_get_member (message) ?
4741                  dbus_message_get_member (message) :
4742                  "no member",
4743                  dbus_message_get_signature (message));
4744
4745   result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
4746   
4747   /* Pending call handling must be first, because if you do
4748    * dbus_connection_send_with_reply_and_block() or
4749    * dbus_pending_call_block() then no handlers/filters will be run on
4750    * the reply. We want consistent semantics in the case where we
4751    * dbus_connection_dispatch() the reply.
4752    */
4753   
4754   reply_serial = dbus_message_get_reply_serial (message);
4755   pending = _dbus_hash_table_lookup_int (connection->pending_replies,
4756                                          reply_serial);
4757   if (pending)
4758     {
4759       _dbus_verbose ("Dispatching a pending reply\n");
4760       complete_pending_call_and_unlock (connection, pending, message);
4761       pending = NULL; /* it's probably unref'd */
4762       
4763       CONNECTION_LOCK (connection);
4764       _dbus_verbose ("pending call completed in dispatch\n");
4765       result = DBUS_HANDLER_RESULT_HANDLED;
4766       goto out;
4767     }
4768
4769   result = _dbus_connection_run_builtin_filters_unlocked_no_update (connection, message);
4770   if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
4771     goto out;
4772  
4773   if (!_dbus_list_copy (&connection->filter_list, &filter_list_copy))
4774     {
4775       _dbus_connection_release_dispatch (connection);
4776       HAVE_LOCK_CHECK (connection);
4777       
4778       _dbus_connection_failed_pop (connection, message_link);
4779
4780       /* unlocks and calls user code */
4781       _dbus_connection_update_dispatch_status_and_unlock (connection,
4782                                                           DBUS_DISPATCH_NEED_MEMORY);
4783       dbus_connection_unref (connection);
4784       
4785       return DBUS_DISPATCH_NEED_MEMORY;
4786     }
4787   
4788   _dbus_list_foreach (&filter_list_copy,
4789                       (DBusForeachFunction)_dbus_message_filter_ref,
4790                       NULL);
4791
4792   /* We're still protected from dispatch() reentrancy here
4793    * since we acquired the dispatcher
4794    */
4795   CONNECTION_UNLOCK (connection);
4796   
4797   link = _dbus_list_get_first_link (&filter_list_copy);
4798   while (link != NULL)
4799     {
4800       DBusMessageFilter *filter = link->data;
4801       DBusList *next = _dbus_list_get_next_link (&filter_list_copy, link);
4802
4803       if (filter->function == NULL)
4804         {
4805           _dbus_verbose ("  filter was removed in a callback function\n");
4806           link = next;
4807           continue;
4808         }
4809
4810       _dbus_verbose ("  running filter on message %p\n", message);
4811       result = (* filter->function) (connection, message, filter->user_data);
4812
4813       if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
4814         break;
4815
4816       link = next;
4817     }
4818
4819   _dbus_list_foreach (&filter_list_copy,
4820                       (DBusForeachFunction)_dbus_message_filter_unref,
4821                       NULL);
4822   _dbus_list_clear (&filter_list_copy);
4823   
4824   CONNECTION_LOCK (connection);
4825
4826   if (result == DBUS_HANDLER_RESULT_LATER)
4827       goto out;
4828   if (result == DBUS_HANDLER_RESULT_NEED_MEMORY)
4829     {
4830       _dbus_verbose ("No memory\n");
4831       goto out;
4832     }
4833   else if (result == DBUS_HANDLER_RESULT_HANDLED)
4834     {
4835       _dbus_verbose ("filter handled message in dispatch\n");
4836       goto out;
4837     }
4838
4839   /* We're still protected from dispatch() reentrancy here
4840    * since we acquired the dispatcher
4841    */
4842   _dbus_verbose ("  running object path dispatch on message %p (%s %s %s '%s')\n",
4843                  message,
4844                  dbus_message_type_to_string (dbus_message_get_type (message)),
4845                  dbus_message_get_interface (message) ?
4846                  dbus_message_get_interface (message) :
4847                  "no interface",
4848                  dbus_message_get_member (message) ?
4849                  dbus_message_get_member (message) :
4850                  "no member",
4851                  dbus_message_get_signature (message));
4852
4853   HAVE_LOCK_CHECK (connection);
4854   result = _dbus_object_tree_dispatch_and_unlock (connection->objects,
4855                                                   message,
4856                                                   &found_object);
4857   
4858   CONNECTION_LOCK (connection);
4859
4860   if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
4861     {
4862       _dbus_verbose ("object tree handled message in dispatch\n");
4863       goto out;
4864     }
4865
4866   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_CALL)
4867     {
4868       DBusMessage *reply;
4869       DBusString str;
4870       DBusPreallocatedSend *preallocated;
4871       DBusList *expire_link;
4872
4873       _dbus_verbose ("  sending error %s\n",
4874                      DBUS_ERROR_UNKNOWN_METHOD);
4875
4876       if (!_dbus_string_init (&str))
4877         {
4878           result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4879           _dbus_verbose ("no memory for error string in dispatch\n");
4880           goto out;
4881         }
4882               
4883       if (!_dbus_string_append_printf (&str,
4884                                        "Method \"%s\" with signature \"%s\" on interface \"%s\" doesn't exist\n",
4885                                        dbus_message_get_member (message),
4886                                        dbus_message_get_signature (message),
4887                                        dbus_message_get_interface (message)))
4888         {
4889           _dbus_string_free (&str);
4890           result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4891           _dbus_verbose ("no memory for error string in dispatch\n");
4892           goto out;
4893         }
4894       
4895       reply = dbus_message_new_error (message,
4896                                       found_object ? DBUS_ERROR_UNKNOWN_METHOD : DBUS_ERROR_UNKNOWN_OBJECT,
4897                                       _dbus_string_get_const_data (&str));
4898       _dbus_string_free (&str);
4899
4900       if (reply == NULL)
4901         {
4902           result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4903           _dbus_verbose ("no memory for error reply in dispatch\n");
4904           goto out;
4905         }
4906
4907       expire_link = _dbus_list_alloc_link (reply);
4908
4909       if (expire_link == NULL)
4910         {
4911           dbus_message_unref (reply);
4912           result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4913           _dbus_verbose ("no memory for error send in dispatch\n");
4914           goto out;
4915         }
4916
4917       preallocated = _dbus_connection_preallocate_send_unlocked (connection);
4918
4919       if (preallocated == NULL)
4920         {
4921           _dbus_list_free_link (expire_link);
4922           /* It's OK that this is finalized, because it hasn't been seen by
4923            * anything that could attach user callbacks */
4924           dbus_message_unref (reply);
4925           result = DBUS_HANDLER_RESULT_NEED_MEMORY;
4926           _dbus_verbose ("no memory for error send in dispatch\n");
4927           goto out;
4928         }
4929
4930       _dbus_connection_send_preallocated_unlocked_no_update (connection, preallocated,
4931                                                              reply, NULL);
4932       /* reply will be freed when we release the lock */
4933       _dbus_list_prepend_link (&connection->expired_messages, expire_link);
4934
4935       result = DBUS_HANDLER_RESULT_HANDLED;
4936     }
4937   
4938   _dbus_verbose ("  done dispatching %p (%s %s %s '%s') on connection %p\n", message,
4939                  dbus_message_type_to_string (dbus_message_get_type (message)),
4940                  dbus_message_get_interface (message) ?
4941                  dbus_message_get_interface (message) :
4942                  "no interface",
4943                  dbus_message_get_member (message) ?
4944                  dbus_message_get_member (message) :
4945                  "no member",
4946                  dbus_message_get_signature (message),
4947                  connection);
4948   
4949  out:
4950   if (result == DBUS_HANDLER_RESULT_LATER ||
4951       result == DBUS_HANDLER_RESULT_NEED_MEMORY)
4952     {
4953       if (result == DBUS_HANDLER_RESULT_NEED_MEMORY)
4954         _dbus_verbose ("out of memory\n");
4955       
4956       /* Put message back, and we'll start over.
4957        * Yes this means handlers must be idempotent if they
4958        * don't return HANDLED; c'est la vie.
4959        */
4960       _dbus_connection_putback_message_link_unlocked (connection,
4961                                                       message_link);
4962       /* now we don't want to free them */
4963       message_link = NULL;
4964       message = NULL;
4965     }
4966   else
4967     {
4968       _dbus_verbose (" ... done dispatching\n");
4969     }
4970
4971   _dbus_connection_release_dispatch (connection);
4972   HAVE_LOCK_CHECK (connection);
4973
4974   if (message != NULL)
4975     {
4976       /* We don't want this message to count in maximum message limits when
4977        * computing the dispatch status, below. We have to drop the lock
4978        * temporarily, because finalizing a message can trigger callbacks.
4979        *
4980        * We have a reference to the connection, and we don't use any cached
4981        * pointers to the connection's internals below this point, so it should
4982        * be safe to drop the lock and take it back. */
4983       CONNECTION_UNLOCK (connection);
4984       dbus_message_unref (message);
4985       CONNECTION_LOCK (connection);
4986     }
4987
4988   if (message_link != NULL)
4989     _dbus_list_free_link (message_link);
4990
4991   _dbus_verbose ("before final status update\n");
4992   status = _dbus_connection_get_dispatch_status_unlocked (connection);
4993
4994   /* unlocks and calls user code */
4995   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
4996   
4997   dbus_connection_unref (connection);
4998   
4999   return status;
5000 }
5001
5002 /**
5003  * Sets the watch functions for the connection. These functions are
5004  * responsible for making the application's main loop aware of file
5005  * descriptors that need to be monitored for events, using select() or
5006  * poll(). When using Qt, typically the DBusAddWatchFunction would
5007  * create a QSocketNotifier. When using GLib, the DBusAddWatchFunction
5008  * could call g_io_add_watch(), or could be used as part of a more
5009  * elaborate GSource. Note that when a watch is added, it may
5010  * not be enabled.
5011  *
5012  * The DBusWatchToggledFunction notifies the application that the
5013  * watch has been enabled or disabled. Call dbus_watch_get_enabled()
5014  * to check this. A disabled watch should have no effect, and enabled
5015  * watch should be added to the main loop. This feature is used
5016  * instead of simply adding/removing the watch because
5017  * enabling/disabling can be done without memory allocation.  The
5018  * toggled function may be NULL if a main loop re-queries
5019  * dbus_watch_get_enabled() every time anyway.
5020  * 
5021  * The DBusWatch can be queried for the file descriptor to watch using
5022  * dbus_watch_get_unix_fd() or dbus_watch_get_socket(), and for the
5023  * events to watch for using dbus_watch_get_flags(). The flags
5024  * returned by dbus_watch_get_flags() will only contain
5025  * DBUS_WATCH_READABLE and DBUS_WATCH_WRITABLE, never
5026  * DBUS_WATCH_HANGUP or DBUS_WATCH_ERROR; all watches implicitly
5027  * include a watch for hangups, errors, and other exceptional
5028  * conditions.
5029  *
5030  * Once a file descriptor becomes readable or writable, or an exception
5031  * occurs, dbus_watch_handle() should be called to
5032  * notify the connection of the file descriptor's condition.
5033  *
5034  * dbus_watch_handle() cannot be called during the
5035  * DBusAddWatchFunction, as the connection will not be ready to handle
5036  * that watch yet.
5037  * 
5038  * It is not allowed to reference a DBusWatch after it has been passed
5039  * to remove_function.
5040  *
5041  * If #FALSE is returned due to lack of memory, the failure may be due
5042  * to a #FALSE return from the new add_function. If so, the
5043  * add_function may have been called successfully one or more times,
5044  * but the remove_function will also have been called to remove any
5045  * successful adds. i.e. if #FALSE is returned the net result
5046  * should be that dbus_connection_set_watch_functions() has no effect,
5047  * but the add_function and remove_function may have been called.
5048  *
5049  * @note The thread lock on DBusConnection is held while
5050  * watch functions are invoked, so inside these functions you
5051  * may not invoke any methods on DBusConnection or it will deadlock.
5052  * See the comments in the code or http://lists.freedesktop.org/archives/dbus/2007-July/tread.html#8144
5053  * if you encounter this issue and want to attempt writing a patch.
5054  * 
5055  * @param connection the connection.
5056  * @param add_function function to begin monitoring a new descriptor.
5057  * @param remove_function function to stop monitoring a descriptor.
5058  * @param toggled_function function to notify of enable/disable
5059  * @param data data to pass to add_function and remove_function.
5060  * @param free_data_function function to be called to free the data.
5061  * @returns #FALSE on failure (no memory)
5062  */
5063 dbus_bool_t
5064 dbus_connection_set_watch_functions (DBusConnection              *connection,
5065                                      DBusAddWatchFunction         add_function,
5066                                      DBusRemoveWatchFunction      remove_function,
5067                                      DBusWatchToggledFunction     toggled_function,
5068                                      void                        *data,
5069                                      DBusFreeFunction             free_data_function)
5070 {
5071   dbus_bool_t retval;
5072
5073   _dbus_return_val_if_fail (connection != NULL, FALSE);
5074   
5075   CONNECTION_LOCK (connection);
5076
5077   retval = _dbus_watch_list_set_functions (connection->watches,
5078                                            add_function, remove_function,
5079                                            toggled_function,
5080                                            data, free_data_function);
5081
5082   CONNECTION_UNLOCK (connection);
5083
5084   return retval;
5085 }
5086
5087 /**
5088  * Sets the timeout functions for the connection. These functions are
5089  * responsible for making the application's main loop aware of timeouts.
5090  * When using Qt, typically the DBusAddTimeoutFunction would create a
5091  * QTimer. When using GLib, the DBusAddTimeoutFunction would call
5092  * g_timeout_add.
5093  * 
5094  * The DBusTimeoutToggledFunction notifies the application that the
5095  * timeout has been enabled or disabled. Call
5096  * dbus_timeout_get_enabled() to check this. A disabled timeout should
5097  * have no effect, and enabled timeout should be added to the main
5098  * loop. This feature is used instead of simply adding/removing the
5099  * timeout because enabling/disabling can be done without memory
5100  * allocation. With Qt, QTimer::start() and QTimer::stop() can be used
5101  * to enable and disable. The toggled function may be NULL if a main
5102  * loop re-queries dbus_timeout_get_enabled() every time anyway.
5103  * Whenever a timeout is toggled, its interval may change.
5104  *
5105  * The DBusTimeout can be queried for the timer interval using
5106  * dbus_timeout_get_interval(). dbus_timeout_handle() should be called
5107  * repeatedly, each time the interval elapses, starting after it has
5108  * elapsed once. The timeout stops firing when it is removed with the
5109  * given remove_function.  The timer interval may change whenever the
5110  * timeout is added, removed, or toggled.
5111  *
5112  * @note The thread lock on DBusConnection is held while
5113  * timeout functions are invoked, so inside these functions you
5114  * may not invoke any methods on DBusConnection or it will deadlock.
5115  * See the comments in the code or http://lists.freedesktop.org/archives/dbus/2007-July/thread.html#8144
5116  * if you encounter this issue and want to attempt writing a patch.
5117  *
5118  * @param connection the connection.
5119  * @param add_function function to add a timeout.
5120  * @param remove_function function to remove a timeout.
5121  * @param toggled_function function to notify of enable/disable
5122  * @param data data to pass to add_function and remove_function.
5123  * @param free_data_function function to be called to free the data.
5124  * @returns #FALSE on failure (no memory)
5125  */
5126 dbus_bool_t
5127 dbus_connection_set_timeout_functions   (DBusConnection            *connection,
5128                                          DBusAddTimeoutFunction     add_function,
5129                                          DBusRemoveTimeoutFunction  remove_function,
5130                                          DBusTimeoutToggledFunction toggled_function,
5131                                          void                      *data,
5132                                          DBusFreeFunction           free_data_function)
5133 {
5134   dbus_bool_t retval;
5135
5136   _dbus_return_val_if_fail (connection != NULL, FALSE);
5137   
5138   CONNECTION_LOCK (connection);
5139
5140   retval = _dbus_timeout_list_set_functions (connection->timeouts,
5141                                              add_function, remove_function,
5142                                              toggled_function,
5143                                              data, free_data_function);
5144
5145   CONNECTION_UNLOCK (connection);
5146
5147   return retval;
5148 }
5149
5150 /**
5151  * Sets the mainloop wakeup function for the connection. This function
5152  * is responsible for waking up the main loop (if its sleeping in
5153  * another thread) when some some change has happened to the
5154  * connection that the mainloop needs to reconsider (e.g. a message
5155  * has been queued for writing).  When using Qt, this typically
5156  * results in a call to QEventLoop::wakeUp().  When using GLib, it
5157  * would call g_main_context_wakeup().
5158  *
5159  * @param connection the connection.
5160  * @param wakeup_main_function function to wake up the mainloop
5161  * @param data data to pass wakeup_main_function
5162  * @param free_data_function function to be called to free the data.
5163  */
5164 void
5165 dbus_connection_set_wakeup_main_function (DBusConnection            *connection,
5166                                           DBusWakeupMainFunction     wakeup_main_function,
5167                                           void                      *data,
5168                                           DBusFreeFunction           free_data_function)
5169 {
5170   void *old_data;
5171   DBusFreeFunction old_free_data;
5172
5173   _dbus_return_if_fail (connection != NULL);
5174   
5175   CONNECTION_LOCK (connection);
5176   old_data = connection->wakeup_main_data;
5177   old_free_data = connection->free_wakeup_main_data;
5178
5179   connection->wakeup_main_function = wakeup_main_function;
5180   connection->wakeup_main_data = data;
5181   connection->free_wakeup_main_data = free_data_function;
5182   
5183   CONNECTION_UNLOCK (connection);
5184
5185   /* Callback outside the lock */
5186   if (old_free_data)
5187     (*old_free_data) (old_data);
5188 }
5189
5190 /**
5191  * Set a function to be invoked when the dispatch status changes.
5192  * If the dispatch status is #DBUS_DISPATCH_DATA_REMAINS, then
5193  * dbus_connection_dispatch() needs to be called to process incoming
5194  * messages. However, dbus_connection_dispatch() MUST NOT BE CALLED
5195  * from inside the DBusDispatchStatusFunction. Indeed, almost
5196  * any reentrancy in this function is a bad idea. Instead,
5197  * the DBusDispatchStatusFunction should simply save an indication
5198  * that messages should be dispatched later, when the main loop
5199  * is re-entered.
5200  *
5201  * If you don't set a dispatch status function, you have to be sure to
5202  * dispatch on every iteration of your main loop, especially if
5203  * dbus_watch_handle() or dbus_timeout_handle() were called.
5204  *
5205  * @param connection the connection
5206  * @param function function to call on dispatch status changes
5207  * @param data data for function
5208  * @param free_data_function free the function data
5209  */
5210 void
5211 dbus_connection_set_dispatch_status_function (DBusConnection             *connection,
5212                                               DBusDispatchStatusFunction  function,
5213                                               void                       *data,
5214                                               DBusFreeFunction            free_data_function)
5215 {
5216   void *old_data;
5217   DBusFreeFunction old_free_data;
5218
5219   _dbus_return_if_fail (connection != NULL);
5220   
5221   CONNECTION_LOCK (connection);
5222   old_data = connection->dispatch_status_data;
5223   old_free_data = connection->free_dispatch_status_data;
5224
5225   connection->dispatch_status_function = function;
5226   connection->dispatch_status_data = data;
5227   connection->free_dispatch_status_data = free_data_function;
5228   
5229   CONNECTION_UNLOCK (connection);
5230
5231   /* Callback outside the lock */
5232   if (old_free_data)
5233     (*old_free_data) (old_data);
5234 }
5235
5236 /**
5237  * Get the UNIX file descriptor of the connection, if any.  This can
5238  * be used for SELinux access control checks with getpeercon() for
5239  * example. DO NOT read or write to the file descriptor, or try to
5240  * select() on it; use DBusWatch for main loop integration. Not all
5241  * connections will have a file descriptor. So for adding descriptors
5242  * to the main loop, use dbus_watch_get_unix_fd() and so forth.
5243  *
5244  * If the connection is socket-based, you can also use
5245  * dbus_connection_get_socket(), which will work on Windows too.
5246  * This function always fails on Windows.
5247  *
5248  * Right now the returned descriptor is always a socket, but
5249  * that is not guaranteed.
5250  * 
5251  * @param connection the connection
5252  * @param fd return location for the file descriptor.
5253  * @returns #TRUE if fd is successfully obtained.
5254  */
5255 dbus_bool_t
5256 dbus_connection_get_unix_fd (DBusConnection *connection,
5257                              int            *fd)
5258 {
5259   _dbus_return_val_if_fail (connection != NULL, FALSE);
5260   _dbus_return_val_if_fail (connection->transport != NULL, FALSE);
5261
5262 #ifdef DBUS_WIN
5263   /* FIXME do this on a lower level */
5264   return FALSE;
5265 #endif
5266   
5267   return dbus_connection_get_socket(connection, fd);
5268 }
5269
5270 /**
5271  * Gets the underlying Windows or UNIX socket file descriptor
5272  * of the connection, if any. DO NOT read or write to the file descriptor, or try to
5273  * select() on it; use DBusWatch for main loop integration. Not all
5274  * connections will have a socket. So for adding descriptors
5275  * to the main loop, use dbus_watch_get_socket() and so forth.
5276  *
5277  * If the connection is not socket-based, this function will return FALSE,
5278  * even if the connection does have a file descriptor of some kind.
5279  * i.e. this function always returns specifically a socket file descriptor.
5280  * 
5281  * @param connection the connection
5282  * @param fd return location for the file descriptor.
5283  * @returns #TRUE if fd is successfully obtained.
5284  */
5285 dbus_bool_t
5286 dbus_connection_get_socket(DBusConnection              *connection,
5287                            int                         *fd)
5288 {
5289   dbus_bool_t retval;
5290   DBusSocket s = DBUS_SOCKET_INIT;
5291
5292   _dbus_return_val_if_fail (connection != NULL, FALSE);
5293   _dbus_return_val_if_fail (connection->transport != NULL, FALSE);
5294   
5295   CONNECTION_LOCK (connection);
5296   
5297   retval = _dbus_transport_get_socket_fd (connection->transport, &s);
5298
5299   if (retval)
5300     {
5301       *fd = _dbus_socket_get_int (s);
5302     }
5303
5304   CONNECTION_UNLOCK (connection);
5305
5306   return retval;
5307 }
5308
5309 /**
5310  *
5311  * Getter for number of messages in incoming queue.
5312  * Useful for sending reply to self (see kdbus_do_iteration)
5313  */
5314 int
5315 _dbus_connection_get_n_incoming (DBusConnection *connection)
5316 {
5317   return connection->n_incoming;
5318 }
5319
5320 dbus_bool_t
5321 _dbus_connection_is_overflowed (DBusConnection *connection)
5322 {
5323   return _dbus_transport_get_overflowed (connection->transport);
5324 }
5325
5326 /**
5327  * Gets the UNIX user ID of the connection if known.  Returns #TRUE if
5328  * the uid is filled in.  Always returns #FALSE on non-UNIX platforms
5329  * for now, though in theory someone could hook Windows to NIS or
5330  * something.  Always returns #FALSE prior to authenticating the
5331  * connection.
5332  *
5333  * The UID is only read by servers from clients; clients can't usually
5334  * get the UID of servers, because servers do not authenticate to
5335  * clients.  The returned UID is the UID the connection authenticated
5336  * as.
5337  *
5338  * The message bus is a server and the apps connecting to the bus
5339  * are clients.
5340  *
5341  * You can ask the bus to tell you the UID of another connection though
5342  * if you like; this is done with dbus_bus_get_unix_user().
5343  *
5344  * @param connection the connection
5345  * @param uid return location for the user ID
5346  * @returns #TRUE if uid is filled in with a valid user ID
5347  */
5348 dbus_bool_t
5349 dbus_connection_get_unix_user (DBusConnection *connection,
5350                                unsigned long  *uid)
5351 {
5352   dbus_bool_t result;
5353
5354   _dbus_return_val_if_fail (connection != NULL, FALSE);
5355   _dbus_return_val_if_fail (uid != NULL, FALSE);
5356
5357   CONNECTION_LOCK (connection);
5358
5359   if (!_dbus_transport_try_to_authenticate (connection->transport))
5360     result = FALSE;
5361   else
5362     result = _dbus_transport_get_unix_user (connection->transport,
5363                                             uid);
5364
5365 #ifdef DBUS_WIN
5366   _dbus_assert (!result);
5367 #endif
5368   
5369   CONNECTION_UNLOCK (connection);
5370
5371   return result;
5372 }
5373
5374 /**
5375  * Gets the process ID of the connection if any.
5376  * Returns #TRUE if the pid is filled in.
5377  * Always returns #FALSE prior to authenticating the
5378  * connection.
5379  *
5380  * @param connection the connection
5381  * @param pid return location for the process ID
5382  * @returns #TRUE if uid is filled in with a valid process ID
5383  */
5384 dbus_bool_t
5385 dbus_connection_get_unix_process_id (DBusConnection *connection,
5386                                      unsigned long  *pid)
5387 {
5388   dbus_bool_t result;
5389
5390   _dbus_return_val_if_fail (connection != NULL, FALSE);
5391   _dbus_return_val_if_fail (pid != NULL, FALSE);
5392
5393   CONNECTION_LOCK (connection);
5394
5395   if (!_dbus_transport_try_to_authenticate (connection->transport))
5396     result = FALSE;
5397   else
5398     result = _dbus_transport_get_unix_process_id (connection->transport,
5399                                                   pid);
5400
5401   CONNECTION_UNLOCK (connection);
5402
5403   return result;
5404 }
5405
5406 /**
5407  * Gets the ADT audit data of the connection if any.
5408  * Returns #TRUE if the structure pointer is returned.
5409  * Always returns #FALSE prior to authenticating the
5410  * connection.
5411  *
5412  * @param connection the connection
5413  * @param data return location for audit data
5414  * @param data_size return location for length of audit data
5415  * @returns #TRUE if audit data is filled in with a valid ucred pointer
5416  */
5417 dbus_bool_t
5418 dbus_connection_get_adt_audit_session_data (DBusConnection *connection,
5419                                             void          **data,
5420                                             dbus_int32_t   *data_size)
5421 {
5422   dbus_bool_t result;
5423
5424   _dbus_return_val_if_fail (connection != NULL, FALSE);
5425   _dbus_return_val_if_fail (data != NULL, FALSE);
5426   _dbus_return_val_if_fail (data_size != NULL, FALSE);
5427
5428   CONNECTION_LOCK (connection);
5429
5430   if (!_dbus_transport_try_to_authenticate (connection->transport))
5431     result = FALSE;
5432   else
5433     result = _dbus_transport_get_adt_audit_session_data (connection->transport,
5434                                                          data,
5435                                                          data_size);
5436   CONNECTION_UNLOCK (connection);
5437
5438   return result;
5439 }
5440
5441 /**
5442  * Sets a predicate function used to determine whether a given user ID
5443  * is allowed to connect. When an incoming connection has
5444  * authenticated with a particular user ID, this function is called;
5445  * if it returns #TRUE, the connection is allowed to proceed,
5446  * otherwise the connection is disconnected.
5447  *
5448  * If the function is set to #NULL (as it is by default), then
5449  * only the same UID as the server process will be allowed to
5450  * connect. Also, root is always allowed to connect.
5451  *
5452  * On Windows, the function will be set and its free_data_function will
5453  * be invoked when the connection is freed or a new function is set.
5454  * However, the function will never be called, because there are
5455  * no UNIX user ids to pass to it, or at least none of the existing
5456  * auth protocols would allow authenticating as a UNIX user on Windows.
5457  * 
5458  * @param connection the connection
5459  * @param function the predicate
5460  * @param data data to pass to the predicate
5461  * @param free_data_function function to free the data
5462  */
5463 void
5464 dbus_connection_set_unix_user_function (DBusConnection             *connection,
5465                                         DBusAllowUnixUserFunction   function,
5466                                         void                       *data,
5467                                         DBusFreeFunction            free_data_function)
5468 {
5469   void *old_data = NULL;
5470   DBusFreeFunction old_free_function = NULL;
5471
5472   _dbus_return_if_fail (connection != NULL);
5473   
5474   CONNECTION_LOCK (connection);
5475   _dbus_transport_set_unix_user_function (connection->transport,
5476                                           function, data, free_data_function,
5477                                           &old_data, &old_free_function);
5478   CONNECTION_UNLOCK (connection);
5479
5480   if (old_free_function != NULL)
5481     (* old_free_function) (old_data);
5482 }
5483
5484 /* Same calling convention as dbus_connection_get_windows_user */
5485 dbus_bool_t
5486 _dbus_connection_get_linux_security_label (DBusConnection  *connection,
5487                                            char           **label_p)
5488 {
5489   dbus_bool_t result;
5490
5491   _dbus_assert (connection != NULL);
5492   _dbus_assert (label_p != NULL);
5493
5494   CONNECTION_LOCK (connection);
5495
5496   if (!_dbus_transport_try_to_authenticate (connection->transport))
5497     result = FALSE;
5498   else
5499     result = _dbus_transport_get_linux_security_label (connection->transport,
5500                                                        label_p);
5501 #ifndef __linux__
5502   _dbus_assert (!result);
5503 #endif
5504
5505   CONNECTION_UNLOCK (connection);
5506
5507   return result;
5508 }
5509
5510 /**
5511  * Gets the Windows user SID of the connection if known.  Returns
5512  * #TRUE if the ID is filled in.  Always returns #FALSE on non-Windows
5513  * platforms for now, though in theory someone could hook UNIX to
5514  * Active Directory or something.  Always returns #FALSE prior to
5515  * authenticating the connection.
5516  *
5517  * The user is only read by servers from clients; clients can't usually
5518  * get the user of servers, because servers do not authenticate to
5519  * clients. The returned user is the user the connection authenticated
5520  * as.
5521  *
5522  * The message bus is a server and the apps connecting to the bus
5523  * are clients.
5524  *
5525  * The returned user string has to be freed with dbus_free().
5526  *
5527  * The return value indicates whether the user SID is available;
5528  * if it's available but we don't have the memory to copy it,
5529  * then the return value is #TRUE and #NULL is given as the SID.
5530  * 
5531  * @todo We would like to be able to say "You can ask the bus to tell
5532  * you the user of another connection though if you like; this is done
5533  * with dbus_bus_get_windows_user()." But this has to be implemented
5534  * in bus/driver.c and dbus/dbus-bus.c, and is pointless anyway
5535  * since on Windows we only use the session bus for now.
5536  *
5537  * @param connection the connection
5538  * @param windows_sid_p return location for an allocated copy of the user ID, or #NULL if no memory
5539  * @returns #TRUE if user is available (returned value may be #NULL anyway if no memory)
5540  */
5541 dbus_bool_t
5542 dbus_connection_get_windows_user (DBusConnection             *connection,
5543                                   char                      **windows_sid_p)
5544 {
5545   dbus_bool_t result;
5546
5547   _dbus_return_val_if_fail (connection != NULL, FALSE);
5548   _dbus_return_val_if_fail (windows_sid_p != NULL, FALSE);
5549
5550   CONNECTION_LOCK (connection);
5551
5552   if (!_dbus_transport_try_to_authenticate (connection->transport))
5553     result = FALSE;
5554   else
5555     result = _dbus_transport_get_windows_user (connection->transport,
5556                                                windows_sid_p);
5557
5558 #ifdef DBUS_UNIX
5559   _dbus_assert (!result);
5560 #endif
5561   
5562   CONNECTION_UNLOCK (connection);
5563
5564   return result;
5565 }
5566
5567 /**
5568  * Sets a predicate function used to determine whether a given user ID
5569  * is allowed to connect. When an incoming connection has
5570  * authenticated with a particular user ID, this function is called;
5571  * if it returns #TRUE, the connection is allowed to proceed,
5572  * otherwise the connection is disconnected.
5573  *
5574  * If the function is set to #NULL (as it is by default), then
5575  * only the same user owning the server process will be allowed to
5576  * connect.
5577  *
5578  * On UNIX, the function will be set and its free_data_function will
5579  * be invoked when the connection is freed or a new function is set.
5580  * However, the function will never be called, because there is no
5581  * way right now to authenticate as a Windows user on UNIX.
5582  * 
5583  * @param connection the connection
5584  * @param function the predicate
5585  * @param data data to pass to the predicate
5586  * @param free_data_function function to free the data
5587  */
5588 void
5589 dbus_connection_set_windows_user_function (DBusConnection              *connection,
5590                                            DBusAllowWindowsUserFunction function,
5591                                            void                        *data,
5592                                            DBusFreeFunction             free_data_function)
5593 {
5594   void *old_data = NULL;
5595   DBusFreeFunction old_free_function = NULL;
5596
5597   _dbus_return_if_fail (connection != NULL);
5598   
5599   CONNECTION_LOCK (connection);
5600   _dbus_transport_set_windows_user_function (connection->transport,
5601                                              function, data, free_data_function,
5602                                              &old_data, &old_free_function);
5603   CONNECTION_UNLOCK (connection);
5604
5605   if (old_free_function != NULL)
5606     (* old_free_function) (old_data);
5607 }
5608
5609 /**
5610  * This function must be called on the server side of a connection when the
5611  * connection is first seen in the #DBusNewConnectionFunction. If set to
5612  * #TRUE (the default is #FALSE), then the connection can proceed even if
5613  * the client does not authenticate as some user identity, i.e. clients
5614  * can connect anonymously.
5615  * 
5616  * This setting interacts with the available authorization mechanisms
5617  * (see dbus_server_set_auth_mechanisms()). Namely, an auth mechanism
5618  * such as ANONYMOUS that supports anonymous auth must be included in
5619  * the list of available mechanisms for anonymous login to work.
5620  *
5621  * This setting also changes the default rule for connections
5622  * authorized as a user; normally, if a connection authorizes as
5623  * a user identity, it is permitted if the user identity is
5624  * root or the user identity matches the user identity of the server
5625  * process. If anonymous connections are allowed, however,
5626  * then any user identity is allowed.
5627  *
5628  * You can override the rules for connections authorized as a
5629  * user identity with dbus_connection_set_unix_user_function()
5630  * and dbus_connection_set_windows_user_function().
5631  * 
5632  * @param connection the connection
5633  * @param value whether to allow authentication as an anonymous user
5634  */
5635 void
5636 dbus_connection_set_allow_anonymous (DBusConnection             *connection,
5637                                      dbus_bool_t                 value)
5638 {
5639   _dbus_return_if_fail (connection != NULL);
5640   
5641   CONNECTION_LOCK (connection);
5642   _dbus_transport_set_allow_anonymous (connection->transport, value);
5643   CONNECTION_UNLOCK (connection);
5644 }
5645
5646 /**
5647  *
5648  * Normally #DBusConnection automatically handles all messages to the
5649  * org.freedesktop.DBus.Peer interface. However, the message bus wants
5650  * to be able to route methods on that interface through the bus and
5651  * to other applications. If routing peer messages is enabled, then
5652  * messages with the org.freedesktop.DBus.Peer interface that also
5653  * have a bus destination name set will not be automatically
5654  * handled by the #DBusConnection and instead will be dispatched
5655  * normally to the application.
5656  *
5657  * If a normal application sets this flag, it can break things badly.
5658  * So don't set this unless you are the message bus.
5659  *
5660  * @param connection the connection
5661  * @param value #TRUE to pass through org.freedesktop.DBus.Peer messages with a bus name set
5662  */
5663 void
5664 dbus_connection_set_route_peer_messages (DBusConnection             *connection,
5665                                          dbus_bool_t                 value)
5666 {
5667   _dbus_return_if_fail (connection != NULL);
5668   
5669   CONNECTION_LOCK (connection);
5670   connection->route_peer_messages = value;
5671   CONNECTION_UNLOCK (connection);
5672 }
5673
5674 /**
5675  * Adds a message filter. Filters are handlers that are run on all
5676  * incoming messages, prior to the objects registered with
5677  * dbus_connection_register_object_path().  Filters are run in the
5678  * order that they were added.  The same handler can be added as a
5679  * filter more than once, in which case it will be run more than once.
5680  * Filters added during a filter callback won't be run on the message
5681  * being processed.
5682  *
5683  * @todo we don't run filters on messages while blocking without
5684  * entering the main loop, since filters are run as part of
5685  * dbus_connection_dispatch(). This is probably a feature, as filters
5686  * could create arbitrary reentrancy. But kind of sucks if you're
5687  * trying to filter METHOD_RETURN for some reason.
5688  *
5689  * @param connection the connection
5690  * @param function function to handle messages
5691  * @param user_data user data to pass to the function
5692  * @param free_data_function function to use for freeing user data
5693  * @returns #TRUE on success, #FALSE if not enough memory.
5694  */
5695 dbus_bool_t
5696 dbus_connection_add_filter (DBusConnection            *connection,
5697                             DBusHandleMessageFunction  function,
5698                             void                      *user_data,
5699                             DBusFreeFunction           free_data_function)
5700 {
5701   DBusMessageFilter *filter;
5702   
5703   _dbus_return_val_if_fail (connection != NULL, FALSE);
5704   _dbus_return_val_if_fail (function != NULL, FALSE);
5705
5706   filter = dbus_new0 (DBusMessageFilter, 1);
5707   if (filter == NULL)
5708     return FALSE;
5709
5710   _dbus_atomic_inc (&filter->refcount);
5711
5712   CONNECTION_LOCK (connection);
5713
5714   if (!_dbus_list_append (&connection->filter_list,
5715                           filter))
5716     {
5717       _dbus_message_filter_unref (filter);
5718       CONNECTION_UNLOCK (connection);
5719       return FALSE;
5720     }
5721
5722   /* Fill in filter after all memory allocated,
5723    * so we don't run the free_user_data_function
5724    * if the add_filter() fails
5725    */
5726   
5727   filter->function = function;
5728   filter->user_data = user_data;
5729   filter->free_user_data_function = free_data_function;
5730         
5731   CONNECTION_UNLOCK (connection);
5732   return TRUE;
5733 }
5734
5735 /**
5736  * Removes a previously-added message filter. It is a programming
5737  * error to call this function for a handler that has not been added
5738  * as a filter. If the given handler was added more than once, only
5739  * one instance of it will be removed (the most recently-added
5740  * instance).
5741  *
5742  * @param connection the connection
5743  * @param function the handler to remove
5744  * @param user_data user data for the handler to remove
5745  *
5746  */
5747 void
5748 dbus_connection_remove_filter (DBusConnection            *connection,
5749                                DBusHandleMessageFunction  function,
5750                                void                      *user_data)
5751 {
5752   DBusList *link;
5753   DBusMessageFilter *filter;
5754   
5755   _dbus_return_if_fail (connection != NULL);
5756   _dbus_return_if_fail (function != NULL);
5757   
5758   CONNECTION_LOCK (connection);
5759
5760   filter = NULL;
5761   
5762   link = _dbus_list_get_last_link (&connection->filter_list);
5763   while (link != NULL)
5764     {
5765       filter = link->data;
5766
5767       if (filter->function == function &&
5768           filter->user_data == user_data)
5769         {
5770           _dbus_list_remove_link (&connection->filter_list, link);
5771           filter->function = NULL;
5772           
5773           break;
5774         }
5775         
5776       link = _dbus_list_get_prev_link (&connection->filter_list, link);
5777       filter = NULL;
5778     }
5779   
5780   CONNECTION_UNLOCK (connection);
5781
5782 #ifndef DBUS_DISABLE_CHECKS
5783   if (filter == NULL)
5784     {
5785       _dbus_warn_check_failed ("Attempt to remove filter function %p user data %p, but no such filter has been added",
5786                                function, user_data);
5787       return;
5788     }
5789 #endif
5790   
5791   /* Call application code */
5792   if (filter->free_user_data_function)
5793     (* filter->free_user_data_function) (filter->user_data);
5794
5795   filter->free_user_data_function = NULL;
5796   filter->user_data = NULL;
5797   
5798   _dbus_message_filter_unref (filter);
5799 }
5800
5801 /**
5802  * Registers a handler for a given path or subsection in the object
5803  * hierarchy. The given vtable handles messages sent to exactly the
5804  * given path or also for paths bellow that, depending on fallback
5805  * parameter.
5806  *
5807  * @param connection the connection
5808  * @param fallback whether to handle messages also for "subdirectory"
5809  * @param path a '/' delimited string of path elements
5810  * @param vtable the virtual table
5811  * @param user_data data to pass to functions in the vtable
5812  * @param error address where an error can be returned
5813  * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5814  *    #DBUS_ERROR_OBJECT_PATH_IN_USE) is reported
5815  */
5816 static dbus_bool_t
5817 _dbus_connection_register_object_path (DBusConnection              *connection,
5818                                        dbus_bool_t                  fallback,
5819                                        const char                  *path,
5820                                        const DBusObjectPathVTable  *vtable,
5821                                        void                        *user_data,
5822                                        DBusError                   *error)
5823 {
5824   char **decomposed_path;
5825   dbus_bool_t retval;
5826
5827   if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
5828     return FALSE;
5829
5830   CONNECTION_LOCK (connection);
5831
5832   retval = _dbus_object_tree_register (connection->objects,
5833                                        fallback,
5834                                        (const char **) decomposed_path, vtable,
5835                                        user_data, error);
5836
5837   CONNECTION_UNLOCK (connection);
5838
5839   dbus_free_string_array (decomposed_path);
5840
5841   return retval;
5842 }
5843
5844 /**
5845  * Registers a handler for a given path in the object hierarchy.
5846  * The given vtable handles messages sent to exactly the given path.
5847  *
5848  * @param connection the connection
5849  * @param path a '/' delimited string of path elements
5850  * @param vtable the virtual table
5851  * @param user_data data to pass to functions in the vtable
5852  * @param error address where an error can be returned
5853  * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5854  *    #DBUS_ERROR_OBJECT_PATH_IN_USE) is reported
5855  */
5856 dbus_bool_t
5857 dbus_connection_try_register_object_path (DBusConnection              *connection,
5858                                           const char                  *path,
5859                                           const DBusObjectPathVTable  *vtable,
5860                                           void                        *user_data,
5861                                           DBusError                   *error)
5862 {
5863   _dbus_return_val_if_fail (connection != NULL, FALSE);
5864   _dbus_return_val_if_fail (path != NULL, FALSE);
5865   _dbus_return_val_if_fail (path[0] == '/', FALSE);
5866   _dbus_return_val_if_fail (vtable != NULL, FALSE);
5867
5868   return _dbus_connection_register_object_path (connection, FALSE, path, vtable, user_data, error);
5869 }
5870
5871 /**
5872  * Registers a handler for a given path in the object hierarchy.
5873  * The given vtable handles messages sent to exactly the given path.
5874  *
5875  * It is a bug to call this function for object paths which already
5876  * have a handler. Use dbus_connection_try_register_object_path() if this
5877  * might be the case.
5878  *
5879  * @param connection the connection
5880  * @param path a '/' delimited string of path elements
5881  * @param vtable the virtual table
5882  * @param user_data data to pass to functions in the vtable
5883  * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5884  *    #DBUS_ERROR_OBJECT_PATH_IN_USE) ocurred
5885  */
5886 dbus_bool_t
5887 dbus_connection_register_object_path (DBusConnection              *connection,
5888                                       const char                  *path,
5889                                       const DBusObjectPathVTable  *vtable,
5890                                       void                        *user_data)
5891 {
5892   dbus_bool_t retval;
5893   DBusError error = DBUS_ERROR_INIT;
5894
5895   _dbus_return_val_if_fail (connection != NULL, FALSE);
5896   _dbus_return_val_if_fail (path != NULL, FALSE);
5897   _dbus_return_val_if_fail (path[0] == '/', FALSE);
5898   _dbus_return_val_if_fail (vtable != NULL, FALSE);
5899
5900   retval = _dbus_connection_register_object_path (connection, FALSE, path, vtable, user_data, &error);
5901
5902   if (dbus_error_has_name (&error, DBUS_ERROR_OBJECT_PATH_IN_USE))
5903     {
5904       _dbus_warn ("%s", error.message);
5905       dbus_error_free (&error);
5906       return FALSE;
5907     }
5908
5909   return retval;
5910 }
5911
5912 /**
5913  * Registers a fallback handler for a given subsection of the object
5914  * hierarchy.  The given vtable handles messages at or below the given
5915  * path. You can use this to establish a default message handling
5916  * policy for a whole "subdirectory."
5917  *
5918  * @param connection the connection
5919  * @param path a '/' delimited string of path elements
5920  * @param vtable the virtual table
5921  * @param user_data data to pass to functions in the vtable
5922  * @param error address where an error can be returned
5923  * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5924  *    #DBUS_ERROR_OBJECT_PATH_IN_USE) is reported
5925  */
5926 dbus_bool_t
5927 dbus_connection_try_register_fallback (DBusConnection              *connection,
5928                                        const char                  *path,
5929                                        const DBusObjectPathVTable  *vtable,
5930                                        void                        *user_data,
5931                                        DBusError                   *error)
5932 {
5933   _dbus_return_val_if_fail (connection != NULL, FALSE);
5934   _dbus_return_val_if_fail (path != NULL, FALSE);
5935   _dbus_return_val_if_fail (path[0] == '/', FALSE);
5936   _dbus_return_val_if_fail (vtable != NULL, FALSE);
5937
5938   return _dbus_connection_register_object_path (connection, TRUE, path, vtable, user_data, error);
5939 }
5940
5941 /**
5942  * Registers a fallback handler for a given subsection of the object
5943  * hierarchy.  The given vtable handles messages at or below the given
5944  * path. You can use this to establish a default message handling
5945  * policy for a whole "subdirectory."
5946  *
5947  * It is a bug to call this function for object paths which already
5948  * have a handler. Use dbus_connection_try_register_fallback() if this
5949  * might be the case.
5950  *
5951  * @param connection the connection
5952  * @param path a '/' delimited string of path elements
5953  * @param vtable the virtual table
5954  * @param user_data data to pass to functions in the vtable
5955  * @returns #FALSE if an error (#DBUS_ERROR_NO_MEMORY or
5956  *    #DBUS_ERROR_OBJECT_PATH_IN_USE) occured
5957  */
5958 dbus_bool_t
5959 dbus_connection_register_fallback (DBusConnection              *connection,
5960                                    const char                  *path,
5961                                    const DBusObjectPathVTable  *vtable,
5962                                    void                        *user_data)
5963 {
5964   dbus_bool_t retval;
5965   DBusError error = DBUS_ERROR_INIT;
5966
5967   _dbus_return_val_if_fail (connection != NULL, FALSE);
5968   _dbus_return_val_if_fail (path != NULL, FALSE);
5969   _dbus_return_val_if_fail (path[0] == '/', FALSE);
5970   _dbus_return_val_if_fail (vtable != NULL, FALSE);
5971
5972   retval = _dbus_connection_register_object_path (connection, TRUE, path, vtable, user_data, &error);
5973
5974   if (dbus_error_has_name (&error, DBUS_ERROR_OBJECT_PATH_IN_USE))
5975     {
5976       _dbus_warn ("%s", error.message);
5977       dbus_error_free (&error);
5978       return FALSE;
5979     }
5980
5981   return retval;
5982 }
5983
5984 /**
5985  * Unregisters the handler registered with exactly the given path.
5986  * It's a bug to call this function for a path that isn't registered.
5987  * Can unregister both fallback paths and object paths.
5988  *
5989  * @param connection the connection
5990  * @param path a '/' delimited string of path elements
5991  * @returns #FALSE if not enough memory
5992  */
5993 dbus_bool_t
5994 dbus_connection_unregister_object_path (DBusConnection              *connection,
5995                                         const char                  *path)
5996 {
5997   char **decomposed_path;
5998
5999   _dbus_return_val_if_fail (connection != NULL, FALSE);
6000   _dbus_return_val_if_fail (path != NULL, FALSE);
6001   _dbus_return_val_if_fail (path[0] == '/', FALSE);
6002
6003   if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
6004       return FALSE;
6005
6006   CONNECTION_LOCK (connection);
6007
6008   _dbus_object_tree_unregister_and_unlock (connection->objects, (const char **) decomposed_path);
6009
6010   dbus_free_string_array (decomposed_path);
6011
6012   return TRUE;
6013 }
6014
6015 /**
6016  * Gets the user data passed to dbus_connection_register_object_path()
6017  * or dbus_connection_register_fallback(). If nothing was registered
6018  * at this path, the data is filled in with #NULL.
6019  *
6020  * @param connection the connection
6021  * @param path the path you registered with
6022  * @param data_p location to store the user data, or #NULL
6023  * @returns #FALSE if not enough memory
6024  */
6025 dbus_bool_t
6026 dbus_connection_get_object_path_data (DBusConnection *connection,
6027                                       const char     *path,
6028                                       void          **data_p)
6029 {
6030   char **decomposed_path;
6031
6032   _dbus_return_val_if_fail (connection != NULL, FALSE);
6033   _dbus_return_val_if_fail (path != NULL, FALSE);
6034   _dbus_return_val_if_fail (data_p != NULL, FALSE);
6035
6036   *data_p = NULL;
6037   
6038   if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
6039     return FALSE;
6040   
6041   CONNECTION_LOCK (connection);
6042
6043   *data_p = _dbus_object_tree_get_user_data_unlocked (connection->objects, (const char**) decomposed_path);
6044
6045   CONNECTION_UNLOCK (connection);
6046
6047   dbus_free_string_array (decomposed_path);
6048
6049   return TRUE;
6050 }
6051
6052 /**
6053  * Lists the registered fallback handlers and object path handlers at
6054  * the given parent_path. The returned array should be freed with
6055  * dbus_free_string_array().
6056  *
6057  * @param connection the connection
6058  * @param parent_path the path to list the child handlers of
6059  * @param child_entries returns #NULL-terminated array of children
6060  * @returns #FALSE if no memory to allocate the child entries
6061  */
6062 dbus_bool_t
6063 dbus_connection_list_registered (DBusConnection              *connection,
6064                                  const char                  *parent_path,
6065                                  char                      ***child_entries)
6066 {
6067   char **decomposed_path;
6068   dbus_bool_t retval;
6069   _dbus_return_val_if_fail (connection != NULL, FALSE);
6070   _dbus_return_val_if_fail (parent_path != NULL, FALSE);
6071   _dbus_return_val_if_fail (parent_path[0] == '/', FALSE);
6072   _dbus_return_val_if_fail (child_entries != NULL, FALSE);
6073
6074   if (!_dbus_decompose_path (parent_path, strlen (parent_path), &decomposed_path, NULL))
6075     return FALSE;
6076
6077   CONNECTION_LOCK (connection);
6078
6079   retval = _dbus_object_tree_list_registered_and_unlock (connection->objects,
6080                                                          (const char **) decomposed_path,
6081                                                          child_entries);
6082   dbus_free_string_array (decomposed_path);
6083
6084   return retval;
6085 }
6086
6087 static DBusDataSlotAllocator slot_allocator =
6088   _DBUS_DATA_SLOT_ALLOCATOR_INIT (_DBUS_LOCK_NAME (connection_slots));
6089
6090 /**
6091  * Allocates an integer ID to be used for storing application-specific
6092  * data on any DBusConnection. The allocated ID may then be used
6093  * with dbus_connection_set_data() and dbus_connection_get_data().
6094  * The passed-in slot must be initialized to -1, and is filled in
6095  * with the slot ID. If the passed-in slot is not -1, it's assumed
6096  * to be already allocated, and its refcount is incremented.
6097  * 
6098  * The allocated slot is global, i.e. all DBusConnection objects will
6099  * have a slot with the given integer ID reserved.
6100  *
6101  * @param slot_p address of a global variable storing the slot
6102  * @returns #FALSE on failure (no memory)
6103  */
6104 dbus_bool_t
6105 dbus_connection_allocate_data_slot (dbus_int32_t *slot_p)
6106 {
6107   return _dbus_data_slot_allocator_alloc (&slot_allocator,
6108                                           slot_p);
6109 }
6110
6111 /**
6112  * Deallocates a global ID for connection data slots.
6113  * dbus_connection_get_data() and dbus_connection_set_data() may no
6114  * longer be used with this slot.  Existing data stored on existing
6115  * DBusConnection objects will be freed when the connection is
6116  * finalized, but may not be retrieved (and may only be replaced if
6117  * someone else reallocates the slot).  When the refcount on the
6118  * passed-in slot reaches 0, it is set to -1.
6119  *
6120  * @param slot_p address storing the slot to deallocate
6121  */
6122 void
6123 dbus_connection_free_data_slot (dbus_int32_t *slot_p)
6124 {
6125   _dbus_return_if_fail (*slot_p >= 0);
6126   
6127   _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
6128 }
6129
6130 /**
6131  * Stores a pointer on a DBusConnection, along
6132  * with an optional function to be used for freeing
6133  * the data when the data is set again, or when
6134  * the connection is finalized. The slot number
6135  * must have been allocated with dbus_connection_allocate_data_slot().
6136  *
6137  * @note This function does not take the
6138  * main thread lock on DBusConnection, which allows it to be
6139  * used from inside watch and timeout functions. (See the
6140  * note in docs for dbus_connection_set_watch_functions().)
6141  * A side effect of this is that you need to know there's
6142  * a reference held on the connection while invoking
6143  * dbus_connection_set_data(), or the connection could be
6144  * finalized during dbus_connection_set_data().
6145  *
6146  * @param connection the connection
6147  * @param slot the slot number
6148  * @param data the data to store
6149  * @param free_data_func finalizer function for the data
6150  * @returns #TRUE if there was enough memory to store the data
6151  */
6152 dbus_bool_t
6153 dbus_connection_set_data (DBusConnection   *connection,
6154                           dbus_int32_t      slot,
6155                           void             *data,
6156                           DBusFreeFunction  free_data_func)
6157 {
6158   DBusFreeFunction old_free_func;
6159   void *old_data;
6160   dbus_bool_t retval;
6161
6162   _dbus_return_val_if_fail (connection != NULL, FALSE);
6163   _dbus_return_val_if_fail (slot >= 0, FALSE);
6164   
6165   SLOTS_LOCK (connection);
6166
6167   retval = _dbus_data_slot_list_set (&slot_allocator,
6168                                      &connection->slot_list,
6169                                      slot, data, free_data_func,
6170                                      &old_free_func, &old_data);
6171   
6172   SLOTS_UNLOCK (connection);
6173
6174   if (retval)
6175     {
6176       /* Do the actual free outside the connection lock */
6177       if (old_free_func)
6178         (* old_free_func) (old_data);
6179     }
6180
6181   return retval;
6182 }
6183
6184 /**
6185  * Retrieves data previously set with dbus_connection_set_data().
6186  * The slot must still be allocated (must not have been freed).
6187  *
6188  * @note This function does not take the
6189  * main thread lock on DBusConnection, which allows it to be
6190  * used from inside watch and timeout functions. (See the
6191  * note in docs for dbus_connection_set_watch_functions().)
6192  * A side effect of this is that you need to know there's
6193  * a reference held on the connection while invoking
6194  * dbus_connection_get_data(), or the connection could be
6195  * finalized during dbus_connection_get_data().
6196  *
6197  * @param connection the connection
6198  * @param slot the slot to get data from
6199  * @returns the data, or #NULL if not found
6200  */
6201 void*
6202 dbus_connection_get_data (DBusConnection   *connection,
6203                           dbus_int32_t      slot)
6204 {
6205   void *res;
6206
6207   _dbus_return_val_if_fail (connection != NULL, NULL);
6208   _dbus_return_val_if_fail (slot >= 0, NULL);
6209
6210   SLOTS_LOCK (connection);
6211
6212   res = _dbus_data_slot_list_get (&slot_allocator,
6213                                   &connection->slot_list,
6214                                   slot);
6215   
6216   SLOTS_UNLOCK (connection);
6217
6218   return res;
6219 }
6220
6221 /**
6222  * This function sets a global flag for whether dbus_connection_new()
6223  * will set SIGPIPE behavior to SIG_IGN.
6224  *
6225  * @param will_modify_sigpipe #TRUE to allow sigpipe to be set to SIG_IGN
6226  */
6227 void
6228 dbus_connection_set_change_sigpipe (dbus_bool_t will_modify_sigpipe)
6229 {  
6230   _dbus_modify_sigpipe = will_modify_sigpipe != FALSE;
6231 }
6232
6233 /**
6234  * Specifies the maximum size message this connection is allowed to
6235  * receive. Larger messages will result in disconnecting the
6236  * connection.
6237  * 
6238  * @param connection a #DBusConnection
6239  * @param size maximum message size the connection can receive, in bytes
6240  */
6241 void
6242 dbus_connection_set_max_message_size (DBusConnection *connection,
6243                                       long            size)
6244 {
6245   _dbus_return_if_fail (connection != NULL);
6246   
6247   CONNECTION_LOCK (connection);
6248   _dbus_transport_set_max_message_size (connection->transport,
6249                                         size);
6250   CONNECTION_UNLOCK (connection);
6251 }
6252
6253 /**
6254  * Gets the value set by dbus_connection_set_max_message_size().
6255  *
6256  * @param connection the connection
6257  * @returns the max size of a single message
6258  */
6259 long
6260 dbus_connection_get_max_message_size (DBusConnection *connection)
6261 {
6262   long res;
6263
6264   _dbus_return_val_if_fail (connection != NULL, 0);
6265   
6266   CONNECTION_LOCK (connection);
6267   res = _dbus_transport_get_max_message_size (connection->transport);
6268   CONNECTION_UNLOCK (connection);
6269   return res;
6270 }
6271
6272 /**
6273  * Specifies the maximum number of unix fds a message on this
6274  * connection is allowed to receive. Messages with more unix fds will
6275  * result in disconnecting the connection.
6276  *
6277  * @param connection a #DBusConnection
6278  * @param n maximum message unix fds the connection can receive
6279  */
6280 void
6281 dbus_connection_set_max_message_unix_fds (DBusConnection *connection,
6282                                           long            n)
6283 {
6284   _dbus_return_if_fail (connection != NULL);
6285
6286   CONNECTION_LOCK (connection);
6287   _dbus_transport_set_max_message_unix_fds (connection->transport,
6288                                             n);
6289   CONNECTION_UNLOCK (connection);
6290 }
6291
6292 /**
6293  * Gets the value set by dbus_connection_set_max_message_unix_fds().
6294  *
6295  * @param connection the connection
6296  * @returns the max numer of unix fds of a single message
6297  */
6298 long
6299 dbus_connection_get_max_message_unix_fds (DBusConnection *connection)
6300 {
6301   long res;
6302
6303   _dbus_return_val_if_fail (connection != NULL, 0);
6304
6305   CONNECTION_LOCK (connection);
6306   res = _dbus_transport_get_max_message_unix_fds (connection->transport);
6307   CONNECTION_UNLOCK (connection);
6308   return res;
6309 }
6310
6311 /**
6312  * Sets the maximum total number of bytes that can be used for all messages
6313  * received on this connection. Messages count toward the maximum until
6314  * they are finalized. When the maximum is reached, the connection will
6315  * not read more data until some messages are finalized.
6316  *
6317  * The semantics of the maximum are: if outstanding messages are
6318  * already above the maximum, additional messages will not be read.
6319  * The semantics are not: if the next message would cause us to exceed
6320  * the maximum, we don't read it. The reason is that we don't know the
6321  * size of a message until after we read it.
6322  *
6323  * Thus, the max live messages size can actually be exceeded
6324  * by up to the maximum size of a single message.
6325  * 
6326  * Also, if we read say 1024 bytes off the wire in a single read(),
6327  * and that contains a half-dozen small messages, we may exceed the
6328  * size max by that amount. But this should be inconsequential.
6329  *
6330  * This does imply that we can't call read() with a buffer larger
6331  * than we're willing to exceed this limit by.
6332  *
6333  * @param connection the connection
6334  * @param size the maximum size in bytes of all outstanding messages
6335  */
6336 void
6337 dbus_connection_set_max_received_size (DBusConnection *connection,
6338                                        long            size)
6339 {
6340   _dbus_return_if_fail (connection != NULL);
6341   
6342   CONNECTION_LOCK (connection);
6343   _dbus_transport_set_max_received_size (connection->transport,
6344                                          size);
6345   CONNECTION_UNLOCK (connection);
6346 }
6347
6348 /**
6349  * Gets the value set by dbus_connection_set_max_received_size().
6350  *
6351  * @param connection the connection
6352  * @returns the max size of all live messages
6353  */
6354 long
6355 dbus_connection_get_max_received_size (DBusConnection *connection)
6356 {
6357   long res;
6358
6359   _dbus_return_val_if_fail (connection != NULL, 0);
6360   
6361   CONNECTION_LOCK (connection);
6362   res = _dbus_transport_get_max_received_size (connection->transport);
6363   CONNECTION_UNLOCK (connection);
6364   return res;
6365 }
6366
6367 /**
6368  * Sets the maximum total number of unix fds that can be used for all messages
6369  * received on this connection. Messages count toward the maximum until
6370  * they are finalized. When the maximum is reached, the connection will
6371  * not read more data until some messages are finalized.
6372  *
6373  * The semantics are analogous to those of dbus_connection_set_max_received_size().
6374  *
6375  * @param connection the connection
6376  * @param n the maximum size in bytes of all outstanding messages
6377  */
6378 void
6379 dbus_connection_set_max_received_unix_fds (DBusConnection *connection,
6380                                            long            n)
6381 {
6382   _dbus_return_if_fail (connection != NULL);
6383
6384   CONNECTION_LOCK (connection);
6385   _dbus_transport_set_max_received_unix_fds (connection->transport,
6386                                              n);
6387   CONNECTION_UNLOCK (connection);
6388 }
6389
6390 /**
6391  * Gets the value set by dbus_connection_set_max_received_unix_fds().
6392  *
6393  * @param connection the connection
6394  * @returns the max unix fds of all live messages
6395  */
6396 long
6397 dbus_connection_get_max_received_unix_fds (DBusConnection *connection)
6398 {
6399   long res;
6400
6401   _dbus_return_val_if_fail (connection != NULL, 0);
6402
6403   CONNECTION_LOCK (connection);
6404   res = _dbus_transport_get_max_received_unix_fds (connection->transport);
6405   CONNECTION_UNLOCK (connection);
6406   return res;
6407 }
6408
6409 /**
6410  * Gets the approximate size in bytes of all messages in the outgoing
6411  * message queue. The size is approximate in that you shouldn't use
6412  * it to decide how many bytes to read off the network or anything
6413  * of that nature, as optimizations may choose to tell small white lies
6414  * to avoid performance overhead.
6415  *
6416  * @param connection the connection
6417  * @returns the number of bytes that have been queued up but not sent
6418  */
6419 long
6420 dbus_connection_get_outgoing_size (DBusConnection *connection)
6421 {
6422   long res;
6423
6424   _dbus_return_val_if_fail (connection != NULL, 0);
6425
6426   CONNECTION_LOCK (connection);
6427   res = _dbus_counter_get_size_value (connection->outgoing_counter);
6428   CONNECTION_UNLOCK (connection);
6429   return res;
6430 }
6431
6432 #ifdef DBUS_ENABLE_STATS
6433 void
6434 _dbus_connection_get_stats (DBusConnection *connection,
6435                             dbus_uint32_t  *in_messages,
6436                             dbus_uint32_t  *in_bytes,
6437                             dbus_uint32_t  *in_fds,
6438                             dbus_uint32_t  *in_peak_bytes,
6439                             dbus_uint32_t  *in_peak_fds,
6440                             dbus_uint32_t  *out_messages,
6441                             dbus_uint32_t  *out_bytes,
6442                             dbus_uint32_t  *out_fds,
6443                             dbus_uint32_t  *out_peak_bytes,
6444                             dbus_uint32_t  *out_peak_fds)
6445 {
6446   CONNECTION_LOCK (connection);
6447
6448   if (in_messages != NULL)
6449     *in_messages = connection->n_incoming;
6450
6451   _dbus_transport_get_stats (connection->transport,
6452                              in_bytes, in_fds, in_peak_bytes, in_peak_fds);
6453
6454   if (out_messages != NULL)
6455     *out_messages = connection->n_outgoing;
6456
6457   if (out_bytes != NULL)
6458     *out_bytes = _dbus_counter_get_size_value (connection->outgoing_counter);
6459
6460   if (out_fds != NULL)
6461     *out_fds = _dbus_counter_get_unix_fd_value (connection->outgoing_counter);
6462
6463   if (out_peak_bytes != NULL)
6464     *out_peak_bytes = _dbus_counter_get_peak_size_value (connection->outgoing_counter);
6465
6466   if (out_peak_fds != NULL)
6467     *out_peak_fds = _dbus_counter_get_peak_unix_fd_value (connection->outgoing_counter);
6468
6469   CONNECTION_UNLOCK (connection);
6470 }
6471 #endif /* DBUS_ENABLE_STATS */
6472
6473 /**
6474  * Gets the approximate number of uni fds of all messages in the
6475  * outgoing message queue.
6476  *
6477  * @param connection the connection
6478  * @returns the number of unix fds that have been queued up but not sent
6479  */
6480 long
6481 dbus_connection_get_outgoing_unix_fds (DBusConnection *connection)
6482 {
6483   long res;
6484
6485   _dbus_return_val_if_fail (connection != NULL, 0);
6486
6487   CONNECTION_LOCK (connection);
6488   res = _dbus_counter_get_unix_fd_value (connection->outgoing_counter);
6489   CONNECTION_UNLOCK (connection);
6490   return res;
6491 }
6492
6493 #ifdef DBUS_ENABLE_EMBEDDED_TESTS
6494 /**
6495  * Returns the address of the transport object of this connection
6496  *
6497  * @param connection the connection
6498  * @returns the address string
6499  */
6500 const char*
6501 _dbus_connection_get_address (DBusConnection *connection)
6502 {
6503   return _dbus_transport_get_address (connection->transport);
6504 }
6505 #endif
6506
6507 /** @} */