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