2003-10-20 Havoc Pennington <hp@redhat.com>
[platform/upstream/dbus.git] / dbus / dbus-connection.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-connection.c DBusConnection object
3  *
4  * Copyright (C) 2002, 2003  Red Hat Inc.
5  *
6  * Licensed under the Academic Free License version 1.2
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  */
23
24 #include <config.h>
25 #include "dbus-connection.h"
26 #include "dbus-list.h"
27 #include "dbus-timeout.h"
28 #include "dbus-transport.h"
29 #include "dbus-watch.h"
30 #include "dbus-connection-internal.h"
31 #include "dbus-list.h"
32 #include "dbus-hash.h"
33 #include "dbus-message-internal.h"
34 #include "dbus-threads.h"
35 #include "dbus-protocol.h"
36 #include "dbus-dataslot.h"
37 #include "dbus-string.h"
38 #include "dbus-pending-call.h"
39 #include "dbus-object-tree.h"
40
41 #if 0
42 #define CONNECTION_LOCK(connection)   do {                      \
43     _dbus_verbose ("  LOCK: %s\n", _DBUS_FUNCTION_NAME);        \
44     dbus_mutex_lock ((connection)->mutex);                      \
45   } while (0)
46 #define CONNECTION_UNLOCK(connection) do {                      \
47     _dbus_verbose ("  UNLOCK: %s\n", _DBUS_FUNCTION_NAME);      \
48     dbus_mutex_unlock ((connection)->mutex);                    \
49   } while (0)
50 #else
51 #define CONNECTION_LOCK(connection)    dbus_mutex_lock ((connection)->mutex)
52 #define CONNECTION_UNLOCK(connection)  dbus_mutex_unlock ((connection)->mutex)
53 #endif
54
55 /**
56  * @defgroup DBusConnection DBusConnection
57  * @ingroup  DBus
58  * @brief Connection to another application
59  *
60  * A DBusConnection represents a connection to another
61  * application. Messages can be sent and received via this connection.
62  * The other application may be a message bus; for convenience, the
63  * function dbus_bus_get() is provided to automatically open a
64  * connection to the well-known message buses.
65  * 
66  * In brief a DBusConnection is a message queue associated with some
67  * message transport mechanism such as a socket.  The connection
68  * maintains a queue of incoming messages and a queue of outgoing
69  * messages.
70  *
71  * Incoming messages are normally processed by calling
72  * dbus_connection_dispatch(). dbus_connection_dispatch() runs any
73  * handlers registered for the topmost message in the message queue,
74  * then discards the message, then returns.
75  * 
76  * dbus_connection_get_dispatch_status() indicates whether
77  * messages are currently in the queue that need dispatching.
78  * dbus_connection_set_dispatch_status_function() allows
79  * you to set a function to be used to monitor the dispatch status.
80  *
81  * If you're using GLib or Qt add-on libraries for D-BUS, there are
82  * special convenience APIs in those libraries that hide
83  * all the details of dispatch and watch/timeout monitoring.
84  * For example, dbus_connection_setup_with_g_main().
85  *
86  * If you aren't using these add-on libraries, you have to manually
87  * call dbus_connection_set_dispatch_status_function(),
88  * dbus_connection_set_watch_functions(),
89  * dbus_connection_set_timeout_functions() providing appropriate
90  * functions to integrate the connection with your application's main
91  * loop.
92  *
93  * When you use dbus_connection_send() or one of its variants to send
94  * a message, the message is added to the outgoing queue.  It's
95  * actually written to the network later; either in
96  * dbus_watch_handle() invoked by your main loop, or in
97  * dbus_connection_flush() which blocks until it can write out the
98  * entire outgoing queue. The GLib/Qt add-on libraries again
99  * handle the details here for you by setting up watch functions.
100  *
101  * When a connection is disconnected, you are guaranteed to get a
102  * message with the name #DBUS_MESSAGE_LOCAL_DISCONNECT.
103  *
104  * You may not drop the last reference to a #DBusConnection
105  * until that connection has been disconnected.
106  *
107  * You may dispatch the unprocessed incoming message queue even if the
108  * connection is disconnected. However, #DBUS_MESSAGE_LOCAL_DISCONNECT
109  * will always be the last message in the queue (obviously no messages
110  * are received after disconnection).
111  *
112  * #DBusConnection has thread locks and drops them when invoking user
113  * callbacks, so in general is transparently threadsafe. However,
114  * #DBusMessage does NOT have thread locks; you must not send the same
115  * message to multiple #DBusConnection that will be used from
116  * different threads.
117  */
118
119 /**
120  * @defgroup DBusConnectionInternals DBusConnection implementation details
121  * @ingroup  DBusInternals
122  * @brief Implementation details of DBusConnection
123  *
124  * @{
125  */
126
127 /**
128  * Internal struct representing a message filter function 
129  */
130 typedef struct DBusMessageFilter DBusMessageFilter;
131
132 /**
133  * Internal struct representing a message filter function 
134  */
135 struct DBusMessageFilter
136 {
137   DBusAtomic refcount; /**< Reference count */
138   DBusHandleMessageFunction function; /**< Function to call to filter */
139   void *user_data; /**< User data for the function */
140   DBusFreeFunction free_user_data_function; /**< Function to free the user data */
141 };
142
143
144 /**
145  * Internals of DBusPreallocatedSend
146  */
147 struct DBusPreallocatedSend
148 {
149   DBusConnection *connection; /**< Connection we'd send the message to */
150   DBusList *queue_link;       /**< Preallocated link in the queue */
151   DBusList *counter_link;     /**< Preallocated link in the resource counter */
152 };
153
154 static dbus_bool_t _dbus_modify_sigpipe = TRUE;
155
156 /**
157  * Implementation details of DBusConnection. All fields are private.
158  */
159 struct DBusConnection
160 {
161   DBusAtomic refcount; /**< Reference count. */
162
163   DBusMutex *mutex; /**< Lock on the entire DBusConnection */
164
165   dbus_bool_t dispatch_acquired; /**< Protects dispatch() */
166   DBusCondVar *dispatch_cond;    /**< Protects dispatch() */
167
168   dbus_bool_t io_path_acquired;  /**< Protects transport io path */
169   DBusCondVar *io_path_cond;     /**< Protects transport io path */
170   
171   DBusList *outgoing_messages; /**< Queue of messages we need to send, send the end of the list first. */
172   DBusList *incoming_messages; /**< Queue of messages we have received, end of the list received most recently. */
173
174   DBusMessage *message_borrowed; /**< True if the first incoming message has been borrowed */
175   DBusCondVar *message_returned_cond; /**< Used with dbus_connection_borrow_message() */
176   
177   int n_outgoing;              /**< Length of outgoing queue. */
178   int n_incoming;              /**< Length of incoming queue. */
179
180   DBusCounter *outgoing_counter; /**< Counts size of outgoing messages. */
181   
182   DBusTransport *transport;    /**< Object that sends/receives messages over network. */
183   DBusWatchList *watches;      /**< Stores active watches. */
184   DBusTimeoutList *timeouts;   /**< Stores active timeouts. */
185   
186   DBusList *filter_list;        /**< List of filters. */
187
188   DBusDataSlotList slot_list;   /**< Data stored by allocated integer ID */
189
190   DBusHashTable *pending_replies;  /**< Hash of message serials to #DBusPendingCall. */  
191   
192   dbus_uint32_t client_serial;       /**< Client serial. Increments each time a message is sent  */
193   DBusList *disconnect_message_link; /**< Preallocated list node for queueing the disconnection message */
194
195   DBusWakeupMainFunction wakeup_main_function; /**< Function to wake up the mainloop  */
196   void *wakeup_main_data; /**< Application data for wakeup_main_function */
197   DBusFreeFunction free_wakeup_main_data; /**< free wakeup_main_data */
198
199   DBusDispatchStatusFunction dispatch_status_function; /**< Function on dispatch status changes  */
200   void *dispatch_status_data; /**< Application data for dispatch_status_function */
201   DBusFreeFunction free_dispatch_status_data; /**< free dispatch_status_data */
202
203   DBusDispatchStatus last_dispatch_status; /**< The last dispatch status we reported to the application. */
204
205   DBusList *link_cache; /**< A cache of linked list links to prevent contention
206                          *   for the global linked list mempool lock
207                          */
208   DBusObjectTree *objects; /**< Object path handlers registered with this connection */
209
210   unsigned int exit_on_disconnect : 1; /**< If #TRUE, exit after handling disconnect signal */
211 };
212
213 static void               _dbus_connection_remove_timeout_locked             (DBusConnection     *connection,
214                                                                               DBusTimeout        *timeout);
215 static DBusDispatchStatus _dbus_connection_get_dispatch_status_unlocked      (DBusConnection     *connection);
216 static void               _dbus_connection_update_dispatch_status_and_unlock (DBusConnection     *connection,
217                                                                               DBusDispatchStatus  new_status);
218 static void               _dbus_connection_last_unref                        (DBusConnection     *connection);
219
220 static void
221 _dbus_message_filter_ref (DBusMessageFilter *filter)
222 {
223   _dbus_assert (filter->refcount.value > 0);
224   _dbus_atomic_inc (&filter->refcount);
225 }
226
227 static void
228 _dbus_message_filter_unref (DBusMessageFilter *filter)
229 {
230   _dbus_assert (filter->refcount.value > 0);
231
232   if (_dbus_atomic_dec (&filter->refcount) == 1)
233     {
234       if (filter->free_user_data_function)
235         (* filter->free_user_data_function) (filter->user_data);
236       
237       dbus_free (filter);
238     }
239 }
240
241 /**
242  * Acquires the connection lock.
243  *
244  * @param connection the connection.
245  */
246 void
247 _dbus_connection_lock (DBusConnection *connection)
248 {
249   CONNECTION_LOCK (connection);
250 }
251
252 /**
253  * Releases the connection lock.
254  *
255  * @param connection the connection.
256  */
257 void
258 _dbus_connection_unlock (DBusConnection *connection)
259 {
260   CONNECTION_UNLOCK (connection);
261 }
262
263 /**
264  * Wakes up the main loop if it is sleeping
265  * Needed if we're e.g. queueing outgoing messages
266  * on a thread while the mainloop sleeps.
267  *
268  * @param connection the connection.
269  */
270 static void
271 _dbus_connection_wakeup_mainloop (DBusConnection *connection)
272 {
273   if (connection->wakeup_main_function)
274     (*connection->wakeup_main_function) (connection->wakeup_main_data);
275 }
276
277 #ifdef DBUS_BUILD_TESTS
278 /* For now this function isn't used */
279 /**
280  * Adds a message to the incoming message queue, returning #FALSE
281  * if there's insufficient memory to queue the message.
282  * Does not take over refcount of the message.
283  *
284  * @param connection the connection.
285  * @param message the message to queue.
286  * @returns #TRUE on success.
287  */
288 dbus_bool_t
289 _dbus_connection_queue_received_message (DBusConnection *connection,
290                                          DBusMessage    *message)
291 {
292   DBusList *link;
293
294   link = _dbus_list_alloc_link (message);
295   if (link == NULL)
296     return FALSE;
297
298   dbus_message_ref (message);
299   _dbus_connection_queue_received_message_link (connection, link);
300
301   return TRUE;
302 }
303 #endif
304
305 /**
306  * Adds a message-containing list link to the incoming message queue,
307  * taking ownership of the link and the message's current refcount.
308  * Cannot fail due to lack of memory.
309  *
310  * @param connection the connection.
311  * @param link the message link to queue.
312  */
313 void
314 _dbus_connection_queue_received_message_link (DBusConnection  *connection,
315                                               DBusList        *link)
316 {
317   DBusPendingCall *pending;
318   dbus_int32_t reply_serial;
319   DBusMessage *message;
320   
321   _dbus_assert (_dbus_transport_get_is_authenticated (connection->transport));
322   
323   _dbus_list_append_link (&connection->incoming_messages,
324                           link);
325   message = link->data;
326
327   /* If this is a reply we're waiting on, remove timeout for it */
328   reply_serial = dbus_message_get_reply_serial (message);
329   if (reply_serial != -1)
330     {
331       pending = _dbus_hash_table_lookup_int (connection->pending_replies,
332                                              reply_serial);
333       if (pending != NULL)
334         {
335           if (pending->timeout_added)
336             _dbus_connection_remove_timeout_locked (connection,
337                                                     pending->timeout);
338
339           pending->timeout_added = FALSE;
340         }
341     }
342   
343   connection->n_incoming += 1;
344
345   _dbus_connection_wakeup_mainloop (connection);
346   
347   _dbus_verbose ("Message %p (%d %s '%s') added to incoming queue %p, %d incoming\n",
348                  message,
349                  dbus_message_get_type (message),
350                  dbus_message_get_interface (message) ?
351                  dbus_message_get_interface (message) :
352                  "no interface",
353                  dbus_message_get_signature (message),
354                  connection,
355                  connection->n_incoming);
356 }
357
358 /**
359  * Adds a link + message to the incoming message queue.
360  * Can't fail. Takes ownership of both link and message.
361  *
362  * @param connection the connection.
363  * @param link the list node and message to queue.
364  *
365  * @todo This needs to wake up the mainloop if it is in
366  * a poll/select and this is a multithreaded app.
367  */
368 static void
369 _dbus_connection_queue_synthesized_message_link (DBusConnection *connection,
370                                                  DBusList *link)
371 {
372   _dbus_list_append_link (&connection->incoming_messages, link);
373
374   connection->n_incoming += 1;
375
376   _dbus_connection_wakeup_mainloop (connection);
377   
378   _dbus_verbose ("Synthesized message %p added to incoming queue %p, %d incoming\n",
379                  link->data, connection, connection->n_incoming);
380 }
381
382
383 /**
384  * Checks whether there are messages in the outgoing message queue.
385  *
386  * @param connection the connection.
387  * @returns #TRUE if the outgoing queue is non-empty.
388  */
389 dbus_bool_t
390 _dbus_connection_have_messages_to_send (DBusConnection *connection)
391 {
392   return connection->outgoing_messages != NULL;
393 }
394
395 /**
396  * Gets the next outgoing message. The message remains in the
397  * queue, and the caller does not own a reference to it.
398  *
399  * @param connection the connection.
400  * @returns the message to be sent.
401  */ 
402 DBusMessage*
403 _dbus_connection_get_message_to_send (DBusConnection *connection)
404 {
405   return _dbus_list_get_last (&connection->outgoing_messages);
406 }
407
408 /**
409  * Notifies the connection that a message has been sent, so the
410  * message can be removed from the outgoing queue.
411  * Called with the connection lock held.
412  *
413  * @param connection the connection.
414  * @param message the message that was sent.
415  */
416 void
417 _dbus_connection_message_sent (DBusConnection *connection,
418                                DBusMessage    *message)
419 {
420   DBusList *link;
421   
422   _dbus_assert (_dbus_transport_get_is_authenticated (connection->transport));
423   
424   link = _dbus_list_get_last_link (&connection->outgoing_messages);
425   _dbus_assert (link != NULL);
426   _dbus_assert (link->data == message);
427
428   /* Save this link in the link cache */
429   _dbus_list_unlink (&connection->outgoing_messages,
430                      link);
431   _dbus_list_prepend_link (&connection->link_cache, link);
432   
433   connection->n_outgoing -= 1;
434
435   _dbus_verbose ("Message %p (%d %s '%s') removed from outgoing queue %p, %d left to send\n",
436                  message,
437                  dbus_message_get_type (message),
438                  dbus_message_get_interface (message) ?
439                  dbus_message_get_interface (message) :
440                  "no interface",
441                  dbus_message_get_signature (message),
442                  connection, connection->n_outgoing);
443
444   /* Save this link in the link cache also */
445   _dbus_message_remove_size_counter (message, connection->outgoing_counter,
446                                      &link);
447   _dbus_list_prepend_link (&connection->link_cache, link);
448   
449   dbus_message_unref (message);
450   
451   if (connection->n_outgoing == 0)
452     _dbus_transport_messages_pending (connection->transport,
453                                       connection->n_outgoing);  
454 }
455
456 /**
457  * Adds a watch using the connection's DBusAddWatchFunction if
458  * available. Otherwise records the watch to be added when said
459  * function is available. Also re-adds the watch if the
460  * DBusAddWatchFunction changes. May fail due to lack of memory.
461  *
462  * @param connection the connection.
463  * @param watch the watch to add.
464  * @returns #TRUE on success.
465  */
466 dbus_bool_t
467 _dbus_connection_add_watch (DBusConnection *connection,
468                             DBusWatch      *watch)
469 {
470   if (connection->watches) /* null during finalize */
471     return _dbus_watch_list_add_watch (connection->watches,
472                                        watch);
473   else
474     return FALSE;
475 }
476
477 /**
478  * Removes a watch using the connection's DBusRemoveWatchFunction
479  * if available. It's an error to call this function on a watch
480  * that was not previously added.
481  *
482  * @param connection the connection.
483  * @param watch the watch to remove.
484  */
485 void
486 _dbus_connection_remove_watch (DBusConnection *connection,
487                                DBusWatch      *watch)
488 {
489   if (connection->watches) /* null during finalize */
490     _dbus_watch_list_remove_watch (connection->watches,
491                                    watch);
492 }
493
494 /**
495  * Toggles a watch and notifies app via connection's
496  * DBusWatchToggledFunction if available. It's an error to call this
497  * function on a watch that was not previously added.
498  *
499  * @param connection the connection.
500  * @param watch the watch to toggle.
501  * @param enabled whether to enable or disable
502  */
503 void
504 _dbus_connection_toggle_watch (DBusConnection *connection,
505                                DBusWatch      *watch,
506                                dbus_bool_t     enabled)
507 {
508   if (connection->watches) /* null during finalize */
509     _dbus_watch_list_toggle_watch (connection->watches,
510                                    watch, enabled);
511 }
512
513 /**
514  * Adds a timeout using the connection's DBusAddTimeoutFunction if
515  * available. Otherwise records the timeout to be added when said
516  * function is available. Also re-adds the timeout if the
517  * DBusAddTimeoutFunction changes. May fail due to lack of memory.
518  * The timeout will fire repeatedly until removed.
519  *
520  * @param connection the connection.
521  * @param timeout the timeout to add.
522  * @returns #TRUE on success.
523  */
524 dbus_bool_t
525 _dbus_connection_add_timeout (DBusConnection *connection,
526                               DBusTimeout    *timeout)
527 {
528  if (connection->timeouts) /* null during finalize */
529     return _dbus_timeout_list_add_timeout (connection->timeouts,
530                                            timeout);
531   else
532     return FALSE;  
533 }
534
535 /**
536  * Removes a timeout using the connection's DBusRemoveTimeoutFunction
537  * if available. It's an error to call this function on a timeout
538  * that was not previously added.
539  *
540  * @param connection the connection.
541  * @param timeout the timeout to remove.
542  */
543 void
544 _dbus_connection_remove_timeout (DBusConnection *connection,
545                                  DBusTimeout    *timeout)
546 {
547   if (connection->timeouts) /* null during finalize */
548     _dbus_timeout_list_remove_timeout (connection->timeouts,
549                                        timeout);
550 }
551
552 static void
553 _dbus_connection_remove_timeout_locked (DBusConnection *connection,
554                                         DBusTimeout    *timeout)
555 {
556   CONNECTION_LOCK (connection);
557   _dbus_connection_remove_timeout (connection, timeout);
558   CONNECTION_UNLOCK (connection);
559 }
560
561 /**
562  * Toggles a timeout and notifies app via connection's
563  * DBusTimeoutToggledFunction if available. It's an error to call this
564  * function on a timeout that was not previously added.
565  *
566  * @param connection the connection.
567  * @param timeout the timeout to toggle.
568  * @param enabled whether to enable or disable
569  */
570 void
571 _dbus_connection_toggle_timeout (DBusConnection *connection,
572                                  DBusTimeout      *timeout,
573                                  dbus_bool_t     enabled)
574 {
575   if (connection->timeouts) /* null during finalize */
576     _dbus_timeout_list_toggle_timeout (connection->timeouts,
577                                        timeout, enabled);
578 }
579
580 /**
581  * Tells the connection that the transport has been disconnected.
582  * Results in posting a disconnect message on the incoming message
583  * queue.  Only has an effect the first time it's called.
584  *
585  * @param connection the connection
586  */
587 void
588 _dbus_connection_notify_disconnected (DBusConnection *connection)
589 {
590   if (connection->disconnect_message_link)
591     {
592       /* We haven't sent the disconnect message already */
593       _dbus_connection_queue_synthesized_message_link (connection,
594                                                        connection->disconnect_message_link);
595       connection->disconnect_message_link = NULL;
596     }
597 }
598
599 static dbus_bool_t
600 _dbus_connection_attach_pending_call_unlocked (DBusConnection  *connection,
601                                                DBusPendingCall *pending)
602 {
603   _dbus_assert (pending->reply_serial != 0);
604
605   if (!_dbus_connection_add_timeout (connection, pending->timeout))
606     return FALSE;
607   
608   if (!_dbus_hash_table_insert_int (connection->pending_replies,
609                                     pending->reply_serial,
610                                     pending))
611     {
612       _dbus_connection_remove_timeout (connection, pending->timeout);
613       return FALSE;
614     }
615   
616   pending->timeout_added = TRUE;
617   pending->connection = connection;
618
619   dbus_pending_call_ref (pending);
620   
621   return TRUE;
622 }
623
624 static void
625 free_pending_call_on_hash_removal (void *data)
626 {
627   DBusPendingCall *pending;
628   
629   if (data == NULL)
630     return;
631
632   pending = data;
633
634   if (pending->connection)
635     {
636       if (pending->timeout_added)
637         {
638           _dbus_connection_remove_timeout (pending->connection,
639                                            pending->timeout);
640           pending->timeout_added = FALSE;
641         }
642
643       pending->connection = NULL;
644       
645       dbus_pending_call_unref (pending);
646     }
647 }
648
649 static void
650 _dbus_connection_detach_pending_call_and_unlock (DBusConnection  *connection,
651                                                  DBusPendingCall *pending)
652 {
653   /* The idea here is to avoid finalizing the pending call
654    * with the lock held, since there's a destroy notifier
655    * in pending call that goes out to application code.
656    */
657   dbus_pending_call_ref (pending);
658   _dbus_hash_table_remove_int (connection->pending_replies,
659                                pending->reply_serial);
660   CONNECTION_UNLOCK (connection);
661   dbus_pending_call_unref (pending);
662 }
663
664 /**
665  * Removes a pending call from the connection, such that
666  * the pending reply will be ignored. May drop the last
667  * reference to the pending call.
668  *
669  * @param connection the connection
670  * @param pending the pending call
671  */
672 void
673 _dbus_connection_remove_pending_call (DBusConnection  *connection,
674                                       DBusPendingCall *pending)
675 {
676   CONNECTION_LOCK (connection);
677   _dbus_connection_detach_pending_call_and_unlock (connection, pending);
678 }
679
680 /**
681  * Completes a pending call with the given message,
682  * or if the message is #NULL, by timing out the pending call.
683  * 
684  * @param pending the pending call
685  * @param message the message to complete the call with, or #NULL
686  *  to time out the call
687  */
688 void
689 _dbus_pending_call_complete_and_unlock (DBusPendingCall *pending,
690                                         DBusMessage     *message)
691 {
692   if (message == NULL)
693     {
694       message = pending->timeout_link->data;
695       _dbus_list_clear (&pending->timeout_link);
696     }
697   else
698     dbus_message_ref (message);
699
700   _dbus_verbose ("  handing message %p (%s) to pending call serial %u\n",
701                  message,
702                  dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_RETURN ?
703                  "method return" :
704                  dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR ?
705                  "error" : "other type",
706                  pending->reply_serial);
707   
708   _dbus_assert (pending->reply == NULL);
709   _dbus_assert (pending->reply_serial == dbus_message_get_reply_serial (message));
710   pending->reply = message;
711   
712   dbus_pending_call_ref (pending); /* in case there's no app with a ref held */
713   _dbus_connection_detach_pending_call_and_unlock (pending->connection, pending);
714   
715   /* Must be called unlocked since it invokes app callback */
716   _dbus_pending_call_notify (pending);
717   dbus_pending_call_unref (pending);
718 }
719
720 /**
721  * Acquire the transporter I/O path. This must be done before
722  * doing any I/O in the transporter. May sleep and drop the
723  * connection mutex while waiting for the I/O path.
724  *
725  * @param connection the connection.
726  * @param timeout_milliseconds maximum blocking time, or -1 for no limit.
727  * @returns TRUE if the I/O path was acquired.
728  */
729 static dbus_bool_t
730 _dbus_connection_acquire_io_path (DBusConnection *connection,
731                                   int timeout_milliseconds)
732 {
733   dbus_bool_t res = TRUE;
734
735   if (connection->io_path_acquired)
736     {
737       if (timeout_milliseconds != -1) 
738         res = dbus_condvar_wait_timeout (connection->io_path_cond,
739                                          connection->mutex,
740                                          timeout_milliseconds);
741       else
742         dbus_condvar_wait (connection->io_path_cond, connection->mutex);
743     }
744   
745   if (res)
746     {
747       _dbus_assert (!connection->io_path_acquired);
748
749       connection->io_path_acquired = TRUE;
750     }
751   
752   return res;
753 }
754
755 /**
756  * Release the I/O path when you're done with it. Only call
757  * after you've acquired the I/O. Wakes up at most one thread
758  * currently waiting to acquire the I/O path.
759  *
760  * @param connection the connection.
761  */
762 static void
763 _dbus_connection_release_io_path (DBusConnection *connection)
764 {
765   _dbus_assert (connection->io_path_acquired);
766
767   connection->io_path_acquired = FALSE;
768   dbus_condvar_wake_one (connection->io_path_cond);
769 }
770
771
772 /**
773  * Queues incoming messages and sends outgoing messages for this
774  * connection, optionally blocking in the process. Each call to
775  * _dbus_connection_do_iteration() will call select() or poll() one
776  * time and then read or write data if possible.
777  *
778  * The purpose of this function is to be able to flush outgoing
779  * messages or queue up incoming messages without returning
780  * control to the application and causing reentrancy weirdness.
781  *
782  * The flags parameter allows you to specify whether to
783  * read incoming messages, write outgoing messages, or both,
784  * and whether to block if no immediate action is possible.
785  *
786  * The timeout_milliseconds parameter does nothing unless the
787  * iteration is blocking.
788  *
789  * If there are no outgoing messages and DBUS_ITERATION_DO_READING
790  * wasn't specified, then it's impossible to block, even if
791  * you specify DBUS_ITERATION_BLOCK; in that case the function
792  * returns immediately.
793  * 
794  * @param connection the connection.
795  * @param flags iteration flags.
796  * @param timeout_milliseconds maximum blocking time, or -1 for no limit.
797  */
798 void
799 _dbus_connection_do_iteration (DBusConnection *connection,
800                                unsigned int    flags,
801                                int             timeout_milliseconds)
802 {
803   if (connection->n_outgoing == 0)
804     flags &= ~DBUS_ITERATION_DO_WRITING;
805
806   if (_dbus_connection_acquire_io_path (connection,
807                                         (flags & DBUS_ITERATION_BLOCK) ? timeout_milliseconds : 0))
808     {
809       _dbus_transport_do_iteration (connection->transport,
810                                     flags, timeout_milliseconds);
811       _dbus_connection_release_io_path (connection);
812     }
813 }
814
815 /**
816  * Creates a new connection for the given transport.  A transport
817  * represents a message stream that uses some concrete mechanism, such
818  * as UNIX domain sockets. May return #NULL if insufficient
819  * memory exists to create the connection.
820  *
821  * @param transport the transport.
822  * @returns the new connection, or #NULL on failure.
823  */
824 DBusConnection*
825 _dbus_connection_new_for_transport (DBusTransport *transport)
826 {
827   DBusConnection *connection;
828   DBusWatchList *watch_list;
829   DBusTimeoutList *timeout_list;
830   DBusHashTable *pending_replies;
831   DBusMutex *mutex;
832   DBusCondVar *message_returned_cond;
833   DBusCondVar *dispatch_cond;
834   DBusCondVar *io_path_cond;
835   DBusList *disconnect_link;
836   DBusMessage *disconnect_message;
837   DBusCounter *outgoing_counter;
838   DBusObjectTree *objects;
839   
840   watch_list = NULL;
841   connection = NULL;
842   pending_replies = NULL;
843   timeout_list = NULL;
844   mutex = NULL;
845   message_returned_cond = NULL;
846   dispatch_cond = NULL;
847   io_path_cond = NULL;
848   disconnect_link = NULL;
849   disconnect_message = NULL;
850   outgoing_counter = NULL;
851   objects = NULL;
852   
853   watch_list = _dbus_watch_list_new ();
854   if (watch_list == NULL)
855     goto error;
856
857   timeout_list = _dbus_timeout_list_new ();
858   if (timeout_list == NULL)
859     goto error;  
860
861   pending_replies =
862     _dbus_hash_table_new (DBUS_HASH_INT,
863                           NULL,
864                           (DBusFreeFunction)free_pending_call_on_hash_removal);
865   if (pending_replies == NULL)
866     goto error;
867   
868   connection = dbus_new0 (DBusConnection, 1);
869   if (connection == NULL)
870     goto error;
871
872   mutex = dbus_mutex_new ();
873   if (mutex == NULL)
874     goto error;
875   
876   message_returned_cond = dbus_condvar_new ();
877   if (message_returned_cond == NULL)
878     goto error;
879   
880   dispatch_cond = dbus_condvar_new ();
881   if (dispatch_cond == NULL)
882     goto error;
883   
884   io_path_cond = dbus_condvar_new ();
885   if (io_path_cond == NULL)
886     goto error;
887
888   disconnect_message = dbus_message_new_signal (DBUS_PATH_ORG_FREEDESKTOP_LOCAL,
889                                                 DBUS_INTERFACE_ORG_FREEDESKTOP_LOCAL,
890                                                 "Disconnected");
891   
892   if (disconnect_message == NULL)
893     goto error;
894
895   disconnect_link = _dbus_list_alloc_link (disconnect_message);
896   if (disconnect_link == NULL)
897     goto error;
898
899   outgoing_counter = _dbus_counter_new ();
900   if (outgoing_counter == NULL)
901     goto error;
902
903   objects = _dbus_object_tree_new (connection);
904   if (objects == NULL)
905     goto error;
906   
907   if (_dbus_modify_sigpipe)
908     _dbus_disable_sigpipe ();
909   
910   connection->refcount.value = 1;
911   connection->mutex = mutex;
912   connection->dispatch_cond = dispatch_cond;
913   connection->io_path_cond = io_path_cond;
914   connection->message_returned_cond = message_returned_cond;
915   connection->transport = transport;
916   connection->watches = watch_list;
917   connection->timeouts = timeout_list;
918   connection->pending_replies = pending_replies;
919   connection->outgoing_counter = outgoing_counter;
920   connection->filter_list = NULL;
921   connection->last_dispatch_status = DBUS_DISPATCH_COMPLETE; /* so we're notified first time there's data */
922   connection->objects = objects;
923   connection->exit_on_disconnect = FALSE;
924   
925   _dbus_data_slot_list_init (&connection->slot_list);
926
927   connection->client_serial = 1;
928
929   connection->disconnect_message_link = disconnect_link;
930   
931   if (!_dbus_transport_set_connection (transport, connection))
932     goto error;
933
934   _dbus_transport_ref (transport);  
935   
936   return connection;
937   
938  error:
939   if (disconnect_message != NULL)
940     dbus_message_unref (disconnect_message);
941   
942   if (disconnect_link != NULL)
943     _dbus_list_free_link (disconnect_link);
944   
945   if (io_path_cond != NULL)
946     dbus_condvar_free (io_path_cond);
947   
948   if (dispatch_cond != NULL)
949     dbus_condvar_free (dispatch_cond);
950   
951   if (message_returned_cond != NULL)
952     dbus_condvar_free (message_returned_cond);
953   
954   if (mutex != NULL)
955     dbus_mutex_free (mutex);
956
957   if (connection != NULL)
958     dbus_free (connection);
959
960   if (pending_replies)
961     _dbus_hash_table_unref (pending_replies);
962   
963   if (watch_list)
964     _dbus_watch_list_free (watch_list);
965
966   if (timeout_list)
967     _dbus_timeout_list_free (timeout_list);
968
969   if (outgoing_counter)
970     _dbus_counter_unref (outgoing_counter);
971
972   if (objects)
973     _dbus_object_tree_unref (objects);
974   
975   return NULL;
976 }
977
978 /**
979  * Increments the reference count of a DBusConnection.
980  * Requires that the caller already holds the connection lock.
981  *
982  * @param connection the connection.
983  */
984 void
985 _dbus_connection_ref_unlocked (DBusConnection *connection)
986 {
987 #ifdef DBUS_HAVE_ATOMIC_INT
988   _dbus_atomic_inc (&connection->refcount);
989 #else
990   _dbus_assert (connection->refcount.value > 0);
991   connection->refcount.value += 1;
992 #endif
993 }
994
995 /**
996  * Decrements the reference count of a DBusConnection.
997  * Requires that the caller already holds the connection lock.
998  *
999  * @param connection the connection.
1000  */
1001 void
1002 _dbus_connection_unref_unlocked (DBusConnection *connection)
1003 {
1004   dbus_bool_t last_unref;
1005
1006   _dbus_return_if_fail (connection != NULL);
1007
1008   /* The connection lock is better than the global
1009    * lock in the atomic increment fallback
1010    */
1011   
1012 #ifdef DBUS_HAVE_ATOMIC_INT
1013   last_unref = (_dbus_atomic_dec (&connection->refcount) == 1);
1014 #else  
1015   _dbus_assert (connection->refcount.value > 0);
1016
1017   connection->refcount.value -= 1;
1018   last_unref = (connection->refcount.value == 0);
1019 #if 0
1020   printf ("unref_unlocked() connection %p count = %d\n", connection, connection->refcount.value);
1021 #endif
1022 #endif
1023   
1024   if (last_unref)
1025     _dbus_connection_last_unref (connection);
1026 }
1027
1028 static dbus_uint32_t
1029 _dbus_connection_get_next_client_serial (DBusConnection *connection)
1030 {
1031   int serial;
1032
1033   serial = connection->client_serial++;
1034
1035   if (connection->client_serial < 0)
1036     connection->client_serial = 1;
1037   
1038   return serial;
1039 }
1040
1041 /**
1042  * A callback for use with dbus_watch_new() to create a DBusWatch.
1043  * 
1044  * @todo This is basically a hack - we could delete _dbus_transport_handle_watch()
1045  * and the virtual handle_watch in DBusTransport if we got rid of it.
1046  * The reason this is some work is threading, see the _dbus_connection_handle_watch()
1047  * implementation.
1048  *
1049  * @param watch the watch.
1050  * @param condition the current condition of the file descriptors being watched.
1051  * @param data must be a pointer to a #DBusConnection
1052  * @returns #FALSE if the IO condition may not have been fully handled due to lack of memory
1053  */
1054 dbus_bool_t
1055 _dbus_connection_handle_watch (DBusWatch                   *watch,
1056                                unsigned int                 condition,
1057                                void                        *data)
1058 {
1059   DBusConnection *connection;
1060   dbus_bool_t retval;
1061   DBusDispatchStatus status;
1062
1063   connection = data;
1064   
1065   CONNECTION_LOCK (connection);
1066   _dbus_connection_acquire_io_path (connection, -1);
1067   retval = _dbus_transport_handle_watch (connection->transport,
1068                                          watch, condition);
1069   _dbus_connection_release_io_path (connection);
1070
1071   status = _dbus_connection_get_dispatch_status_unlocked (connection);
1072
1073   /* this calls out to user code */
1074   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
1075   
1076   return retval;
1077 }
1078
1079 /** @} */
1080
1081 /**
1082  * @addtogroup DBusConnection
1083  *
1084  * @{
1085  */
1086
1087 /**
1088  * Opens a new connection to a remote address.
1089  *
1090  * @todo specify what the address parameter is. Right now
1091  * it's just the name of a UNIX domain socket. It should be
1092  * something more complex that encodes which transport to use.
1093  *
1094  * If the open fails, the function returns #NULL, and provides
1095  * a reason for the failure in the result parameter. Pass
1096  * #NULL for the result parameter if you aren't interested
1097  * in the reason for failure.
1098  * 
1099  * @param address the address.
1100  * @param error address where an error can be returned.
1101  * @returns new connection, or #NULL on failure.
1102  */
1103 DBusConnection*
1104 dbus_connection_open (const char     *address,
1105                       DBusError      *error)
1106 {
1107   DBusConnection *connection;
1108   DBusTransport *transport;
1109
1110   _dbus_return_val_if_fail (address != NULL, NULL);
1111   _dbus_return_val_if_error_is_set (error, NULL);
1112   
1113   transport = _dbus_transport_open (address, error);
1114   if (transport == NULL)
1115     {
1116       _DBUS_ASSERT_ERROR_IS_SET (error);
1117       return NULL;
1118     }
1119   
1120   connection = _dbus_connection_new_for_transport (transport);
1121
1122   _dbus_transport_unref (transport);
1123   
1124   if (connection == NULL)
1125     {
1126       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1127       return NULL;
1128     }
1129   
1130   return connection;
1131 }
1132
1133 /**
1134  * Increments the reference count of a DBusConnection.
1135  *
1136  * @param connection the connection.
1137  */
1138 void
1139 dbus_connection_ref (DBusConnection *connection)
1140 {
1141   _dbus_return_if_fail (connection != NULL);
1142
1143   /* The connection lock is better than the global
1144    * lock in the atomic increment fallback
1145    */
1146   
1147 #ifdef DBUS_HAVE_ATOMIC_INT
1148   _dbus_atomic_inc (&connection->refcount);
1149 #else
1150   CONNECTION_LOCK (connection);
1151   _dbus_assert (connection->refcount.value > 0);
1152
1153   connection->refcount.value += 1;
1154   CONNECTION_UNLOCK (connection);
1155 #endif
1156 }
1157
1158 static void
1159 free_outgoing_message (void *element,
1160                        void *data)
1161 {
1162   DBusMessage *message = element;
1163   DBusConnection *connection = data;
1164
1165   _dbus_message_remove_size_counter (message,
1166                                      connection->outgoing_counter,
1167                                      NULL);
1168   dbus_message_unref (message);
1169 }
1170
1171 /* This is run without the mutex held, but after the last reference
1172  * to the connection has been dropped we should have no thread-related
1173  * problems
1174  */
1175 static void
1176 _dbus_connection_last_unref (DBusConnection *connection)
1177 {
1178   DBusList *link;
1179
1180   _dbus_verbose ("Finalizing connection %p\n", connection);
1181   
1182   _dbus_assert (connection->refcount.value == 0);
1183   
1184   /* You have to disconnect the connection before unref:ing it. Otherwise
1185    * you won't get the disconnected message.
1186    */
1187   _dbus_assert (!_dbus_transport_get_is_connected (connection->transport));
1188
1189   /* ---- We're going to call various application callbacks here, hope it doesn't break anything... */
1190   _dbus_object_tree_free_all_unlocked (connection->objects);
1191   
1192   dbus_connection_set_dispatch_status_function (connection, NULL, NULL, NULL);
1193   dbus_connection_set_wakeup_main_function (connection, NULL, NULL, NULL);
1194   dbus_connection_set_unix_user_function (connection, NULL, NULL, NULL);
1195   
1196   _dbus_watch_list_free (connection->watches);
1197   connection->watches = NULL;
1198   
1199   _dbus_timeout_list_free (connection->timeouts);
1200   connection->timeouts = NULL;
1201
1202   _dbus_data_slot_list_free (&connection->slot_list);
1203   
1204   link = _dbus_list_get_first_link (&connection->filter_list);
1205   while (link != NULL)
1206     {
1207       DBusMessageFilter *filter = link->data;
1208       DBusList *next = _dbus_list_get_next_link (&connection->filter_list, link);
1209
1210       filter->function = NULL;
1211       _dbus_message_filter_unref (filter); /* calls app callback */
1212       link->data = NULL;
1213       
1214       link = next;
1215     }
1216   _dbus_list_clear (&connection->filter_list);
1217   
1218   /* ---- Done with stuff that invokes application callbacks */
1219
1220   _dbus_object_tree_unref (connection->objects);  
1221
1222   _dbus_hash_table_unref (connection->pending_replies);
1223   connection->pending_replies = NULL;
1224   
1225   _dbus_list_clear (&connection->filter_list);
1226   
1227   _dbus_list_foreach (&connection->outgoing_messages,
1228                       free_outgoing_message,
1229                       connection);
1230   _dbus_list_clear (&connection->outgoing_messages);
1231   
1232   _dbus_list_foreach (&connection->incoming_messages,
1233                       (DBusForeachFunction) dbus_message_unref,
1234                       NULL);
1235   _dbus_list_clear (&connection->incoming_messages);
1236
1237   _dbus_counter_unref (connection->outgoing_counter);
1238   
1239   _dbus_transport_unref (connection->transport);
1240
1241   if (connection->disconnect_message_link)
1242     {
1243       DBusMessage *message = connection->disconnect_message_link->data;
1244       dbus_message_unref (message);
1245       _dbus_list_free_link (connection->disconnect_message_link);
1246     }
1247
1248   _dbus_list_clear (&connection->link_cache);
1249   
1250   dbus_condvar_free (connection->dispatch_cond);
1251   dbus_condvar_free (connection->io_path_cond);
1252   dbus_condvar_free (connection->message_returned_cond);  
1253   
1254   dbus_mutex_free (connection->mutex);
1255   
1256   dbus_free (connection);
1257 }
1258
1259 /**
1260  * Decrements the reference count of a DBusConnection, and finalizes
1261  * it if the count reaches zero.  It is a bug to drop the last reference
1262  * to a connection that has not been disconnected.
1263  *
1264  * @todo in practice it can be quite tricky to never unref a connection
1265  * that's still connected; maybe there's some way we could avoid
1266  * the requirement.
1267  *
1268  * @param connection the connection.
1269  */
1270 void
1271 dbus_connection_unref (DBusConnection *connection)
1272 {
1273   dbus_bool_t last_unref;
1274
1275   _dbus_return_if_fail (connection != NULL);
1276
1277   /* The connection lock is better than the global
1278    * lock in the atomic increment fallback
1279    */
1280   
1281 #ifdef DBUS_HAVE_ATOMIC_INT
1282   last_unref = (_dbus_atomic_dec (&connection->refcount) == 1);
1283 #else
1284   CONNECTION_LOCK (connection);
1285   
1286   _dbus_assert (connection->refcount.value > 0);
1287
1288   connection->refcount.value -= 1;
1289   last_unref = (connection->refcount.value == 0);
1290
1291 #if 0
1292   printf ("unref() connection %p count = %d\n", connection, connection->refcount.value);
1293 #endif
1294   
1295   CONNECTION_UNLOCK (connection);
1296 #endif
1297   
1298   if (last_unref)
1299     _dbus_connection_last_unref (connection);
1300 }
1301
1302 /**
1303  * Closes the connection, so no further data can be sent or received.
1304  * Any further attempts to send data will result in errors.  This
1305  * function does not affect the connection's reference count.  It's
1306  * safe to disconnect a connection more than once; all calls after the
1307  * first do nothing. It's impossible to "reconnect" a connection, a
1308  * new connection must be created.
1309  *
1310  * @param connection the connection.
1311  */
1312 void
1313 dbus_connection_disconnect (DBusConnection *connection)
1314 {
1315   _dbus_return_if_fail (connection != NULL);
1316   
1317   CONNECTION_LOCK (connection);
1318   _dbus_transport_disconnect (connection->transport);
1319   CONNECTION_UNLOCK (connection);
1320 }
1321
1322 static dbus_bool_t
1323 _dbus_connection_get_is_connected_unlocked (DBusConnection *connection)
1324 {
1325   return _dbus_transport_get_is_connected (connection->transport);
1326 }
1327
1328 /**
1329  * Gets whether the connection is currently connected.  All
1330  * connections are connected when they are opened.  A connection may
1331  * become disconnected when the remote application closes its end, or
1332  * exits; a connection may also be disconnected with
1333  * dbus_connection_disconnect().
1334  *
1335  * @param connection the connection.
1336  * @returns #TRUE if the connection is still alive.
1337  */
1338 dbus_bool_t
1339 dbus_connection_get_is_connected (DBusConnection *connection)
1340 {
1341   dbus_bool_t res;
1342
1343   _dbus_return_val_if_fail (connection != NULL, FALSE);
1344   
1345   CONNECTION_LOCK (connection);
1346   res = _dbus_connection_get_is_connected_unlocked (connection);
1347   CONNECTION_UNLOCK (connection);
1348   
1349   return res;
1350 }
1351
1352 /**
1353  * Gets whether the connection was authenticated. (Note that
1354  * if the connection was authenticated then disconnected,
1355  * this function still returns #TRUE)
1356  *
1357  * @param connection the connection
1358  * @returns #TRUE if the connection was ever authenticated
1359  */
1360 dbus_bool_t
1361 dbus_connection_get_is_authenticated (DBusConnection *connection)
1362 {
1363   dbus_bool_t res;
1364
1365   _dbus_return_val_if_fail (connection != NULL, FALSE);
1366   
1367   CONNECTION_LOCK (connection);
1368   res = _dbus_transport_get_is_authenticated (connection->transport);
1369   CONNECTION_UNLOCK (connection);
1370   
1371   return res;
1372 }
1373
1374 /**
1375  * Set whether _exit() should be called when the connection receives a
1376  * disconnect signal. The call to _exit() comes after any handlers for
1377  * the disconnect signal run; handlers can cancel the exit by calling
1378  * this function.
1379  *
1380  * By default, exit_on_disconnect is #FALSE; but for message bus
1381  * connections returned from dbus_bus_get() it will be toggled on
1382  * by default.
1383  *
1384  * @param connection the connection
1385  * @param exit_on_disconnect #TRUE if _exit() should be called after a disconnect signal
1386  */
1387 void
1388 dbus_connection_set_exit_on_disconnect (DBusConnection *connection,
1389                                         dbus_bool_t     exit_on_disconnect)
1390 {
1391   _dbus_return_if_fail (connection != NULL);
1392
1393   CONNECTION_LOCK (connection);
1394   connection->exit_on_disconnect = exit_on_disconnect != FALSE;
1395   CONNECTION_UNLOCK (connection);
1396 }
1397
1398 static DBusPreallocatedSend*
1399 _dbus_connection_preallocate_send_unlocked (DBusConnection *connection)
1400 {
1401   DBusPreallocatedSend *preallocated;
1402
1403   _dbus_return_val_if_fail (connection != NULL, NULL);
1404   
1405   preallocated = dbus_new (DBusPreallocatedSend, 1);
1406   if (preallocated == NULL)
1407     return NULL;
1408
1409   if (connection->link_cache != NULL)
1410     {
1411       preallocated->queue_link =
1412         _dbus_list_pop_first_link (&connection->link_cache);
1413       preallocated->queue_link->data = NULL;
1414     }
1415   else
1416     {
1417       preallocated->queue_link = _dbus_list_alloc_link (NULL);
1418       if (preallocated->queue_link == NULL)
1419         goto failed_0;
1420     }
1421   
1422   if (connection->link_cache != NULL)
1423     {
1424       preallocated->counter_link =
1425         _dbus_list_pop_first_link (&connection->link_cache);
1426       preallocated->counter_link->data = connection->outgoing_counter;
1427     }
1428   else
1429     {
1430       preallocated->counter_link = _dbus_list_alloc_link (connection->outgoing_counter);
1431       if (preallocated->counter_link == NULL)
1432         goto failed_1;
1433     }
1434
1435   _dbus_counter_ref (preallocated->counter_link->data);
1436
1437   preallocated->connection = connection;
1438   
1439   return preallocated;
1440   
1441  failed_1:
1442   _dbus_list_free_link (preallocated->queue_link);
1443  failed_0:
1444   dbus_free (preallocated);
1445   
1446   return NULL;
1447 }
1448
1449 /**
1450  * Preallocates resources needed to send a message, allowing the message 
1451  * to be sent without the possibility of memory allocation failure.
1452  * Allows apps to create a future guarantee that they can send
1453  * a message regardless of memory shortages.
1454  *
1455  * @param connection the connection we're preallocating for.
1456  * @returns the preallocated resources, or #NULL
1457  */
1458 DBusPreallocatedSend*
1459 dbus_connection_preallocate_send (DBusConnection *connection)
1460 {
1461   DBusPreallocatedSend *preallocated;
1462
1463   _dbus_return_val_if_fail (connection != NULL, NULL);
1464
1465   CONNECTION_LOCK (connection);
1466   
1467   preallocated =
1468     _dbus_connection_preallocate_send_unlocked (connection);
1469
1470   CONNECTION_UNLOCK (connection);
1471
1472   return preallocated;
1473 }
1474
1475 /**
1476  * Frees preallocated message-sending resources from
1477  * dbus_connection_preallocate_send(). Should only
1478  * be called if the preallocated resources are not used
1479  * to send a message.
1480  *
1481  * @param connection the connection
1482  * @param preallocated the resources
1483  */
1484 void
1485 dbus_connection_free_preallocated_send (DBusConnection       *connection,
1486                                         DBusPreallocatedSend *preallocated)
1487 {
1488   _dbus_return_if_fail (connection != NULL);
1489   _dbus_return_if_fail (preallocated != NULL);  
1490   _dbus_return_if_fail (connection == preallocated->connection);
1491
1492   _dbus_list_free_link (preallocated->queue_link);
1493   _dbus_counter_unref (preallocated->counter_link->data);
1494   _dbus_list_free_link (preallocated->counter_link);
1495   dbus_free (preallocated);
1496 }
1497
1498 static void
1499 _dbus_connection_send_preallocated_unlocked (DBusConnection       *connection,
1500                                              DBusPreallocatedSend *preallocated,
1501                                              DBusMessage          *message,
1502                                              dbus_uint32_t        *client_serial)
1503 {
1504   dbus_uint32_t serial;
1505
1506   preallocated->queue_link->data = message;
1507   _dbus_list_prepend_link (&connection->outgoing_messages,
1508                            preallocated->queue_link);
1509
1510   _dbus_message_add_size_counter_link (message,
1511                                        preallocated->counter_link);
1512
1513   dbus_free (preallocated);
1514   preallocated = NULL;
1515   
1516   dbus_message_ref (message);
1517   
1518   connection->n_outgoing += 1;
1519
1520   _dbus_verbose ("Message %p (%d %s '%s') added to outgoing queue %p, %d pending to send\n",
1521                  message,
1522                  dbus_message_get_type (message),
1523                  dbus_message_get_interface (message) ?
1524                  dbus_message_get_interface (message) :
1525                  "no interface",
1526                  dbus_message_get_signature (message),
1527                  connection,
1528                  connection->n_outgoing);
1529
1530   if (dbus_message_get_serial (message) == 0)
1531     {
1532       serial = _dbus_connection_get_next_client_serial (connection);
1533       _dbus_message_set_serial (message, serial);
1534       if (client_serial)
1535         *client_serial = serial;
1536     }
1537   else
1538     {
1539       if (client_serial)
1540         *client_serial = dbus_message_get_serial (message);
1541     }
1542   
1543   _dbus_message_lock (message);
1544
1545   if (connection->n_outgoing == 1)
1546     _dbus_transport_messages_pending (connection->transport,
1547                                       connection->n_outgoing);
1548   
1549   _dbus_connection_wakeup_mainloop (connection);
1550 }
1551
1552 /**
1553  * Sends a message using preallocated resources. This function cannot fail.
1554  * It works identically to dbus_connection_send() in other respects.
1555  * Preallocated resources comes from dbus_connection_preallocate_send().
1556  * This function "consumes" the preallocated resources, they need not
1557  * be freed separately.
1558  *
1559  * @param connection the connection
1560  * @param preallocated the preallocated resources
1561  * @param message the message to send
1562  * @param client_serial return location for client serial assigned to the message
1563  */
1564 void
1565 dbus_connection_send_preallocated (DBusConnection       *connection,
1566                                    DBusPreallocatedSend *preallocated,
1567                                    DBusMessage          *message,
1568                                    dbus_uint32_t        *client_serial)
1569 {
1570   _dbus_return_if_fail (connection != NULL);
1571   _dbus_return_if_fail (preallocated != NULL);
1572   _dbus_return_if_fail (message != NULL);
1573   _dbus_return_if_fail (preallocated->connection == connection);
1574   _dbus_return_if_fail (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_METHOD_CALL ||
1575                         (dbus_message_get_interface (message) != NULL &&
1576                          dbus_message_get_member (message) != NULL));
1577   _dbus_return_if_fail (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL ||
1578                         (dbus_message_get_interface (message) != NULL &&
1579                          dbus_message_get_member (message) != NULL));
1580   
1581   CONNECTION_LOCK (connection);
1582   _dbus_connection_send_preallocated_unlocked (connection,
1583                                                preallocated,
1584                                                message, client_serial);
1585   CONNECTION_UNLOCK (connection);  
1586 }
1587
1588 static dbus_bool_t
1589 _dbus_connection_send_unlocked (DBusConnection *connection,
1590                                 DBusMessage    *message,
1591                                 dbus_uint32_t  *client_serial)
1592 {
1593   DBusPreallocatedSend *preallocated;
1594
1595   _dbus_assert (connection != NULL);
1596   _dbus_assert (message != NULL);
1597   
1598   preallocated = _dbus_connection_preallocate_send_unlocked (connection);
1599   if (preallocated == NULL)
1600     return FALSE;
1601
1602
1603   _dbus_connection_send_preallocated_unlocked (connection,
1604                                                preallocated,
1605                                                message,
1606                                                client_serial);
1607   return TRUE;
1608 }
1609
1610 /**
1611  * Adds a message to the outgoing message queue. Does not block to
1612  * write the message to the network; that happens asynchronously. To
1613  * force the message to be written, call dbus_connection_flush().
1614  * Because this only queues the message, the only reason it can
1615  * fail is lack of memory. Even if the connection is disconnected,
1616  * no error will be returned.
1617  *
1618  * If the function fails due to lack of memory, it returns #FALSE.
1619  * The function will never fail for other reasons; even if the
1620  * connection is disconnected, you can queue an outgoing message,
1621  * though obviously it won't be sent.
1622  * 
1623  * @param connection the connection.
1624  * @param message the message to write.
1625  * @param client_serial return location for client serial.
1626  * @returns #TRUE on success.
1627  */
1628 dbus_bool_t
1629 dbus_connection_send (DBusConnection *connection,
1630                       DBusMessage    *message,
1631                       dbus_uint32_t  *client_serial)
1632 {
1633   _dbus_return_val_if_fail (connection != NULL, FALSE);
1634   _dbus_return_val_if_fail (message != NULL, FALSE);
1635
1636   CONNECTION_LOCK (connection);
1637
1638   if (!_dbus_connection_send_unlocked (connection, message, client_serial))
1639     {
1640       CONNECTION_UNLOCK (connection);
1641       return FALSE;
1642     }
1643
1644   CONNECTION_UNLOCK (connection);
1645   return TRUE;
1646 }
1647
1648 static dbus_bool_t
1649 reply_handler_timeout (void *data)
1650 {
1651   DBusConnection *connection;
1652   DBusDispatchStatus status;
1653   DBusPendingCall *pending = data;
1654
1655   connection = pending->connection;
1656   
1657   CONNECTION_LOCK (connection);
1658   if (pending->timeout_link)
1659     {
1660       _dbus_connection_queue_synthesized_message_link (connection,
1661                                                        pending->timeout_link);
1662       pending->timeout_link = NULL;
1663     }
1664
1665   _dbus_connection_remove_timeout (connection,
1666                                    pending->timeout);
1667   pending->timeout_added = FALSE;
1668
1669   status = _dbus_connection_get_dispatch_status_unlocked (connection);
1670
1671   /* Unlocks, and calls out to user code */
1672   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
1673   
1674   return TRUE;
1675 }
1676
1677 /**
1678  * Queues a message to send, as with dbus_connection_send_message(),
1679  * but also returns a #DBusPendingCall used to receive a reply to the
1680  * message. If no reply is received in the given timeout_milliseconds,
1681  * this function expires the pending reply and generates a synthetic
1682  * error reply (generated in-process, not by the remote application)
1683  * indicating that a timeout occurred.
1684  *
1685  * A #DBusPendingCall will see a reply message after any filters, but
1686  * before any object instances or other handlers. A #DBusPendingCall
1687  * will always see exactly one reply message, unless it's cancelled
1688  * with dbus_pending_call_cancel().
1689  * 
1690  * If a filter filters out the reply before the handler sees it, the
1691  * reply is immediately timed out and a timeout error reply is
1692  * generated. If a filter removes the timeout error reply then the
1693  * #DBusPendingCall will get confused. Filtering the timeout error
1694  * is thus considered a bug and will print a warning.
1695  * 
1696  * If #NULL is passed for the pending_return, the #DBusPendingCall
1697  * will still be generated internally, and used to track
1698  * the message reply timeout. This means a timeout error will
1699  * occur if no reply arrives, unlike with dbus_connection_send().
1700  *
1701  * If -1 is passed for the timeout, a sane default timeout is used. -1
1702  * is typically the best value for the timeout for this reason, unless
1703  * you want a very short or very long timeout.  There is no way to
1704  * avoid a timeout entirely, other than passing INT_MAX for the
1705  * timeout to postpone it indefinitely.
1706  * 
1707  * @param connection the connection
1708  * @param message the message to send
1709  * @param pending_return return location for a #DBusPendingCall object, or #NULL
1710  * @param timeout_milliseconds timeout in milliseconds or -1 for default
1711  * @returns #TRUE if the message is successfully queued, #FALSE if no memory.
1712  *
1713  */
1714 dbus_bool_t
1715 dbus_connection_send_with_reply (DBusConnection     *connection,
1716                                  DBusMessage        *message,
1717                                  DBusPendingCall   **pending_return,
1718                                  int                 timeout_milliseconds)
1719 {
1720   DBusPendingCall *pending;
1721   DBusMessage *reply;
1722   DBusList *reply_link;
1723   dbus_int32_t serial = -1;
1724
1725   _dbus_return_val_if_fail (connection != NULL, FALSE);
1726   _dbus_return_val_if_fail (message != NULL, FALSE);
1727   _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
1728
1729   if (pending_return)
1730     *pending_return = NULL;
1731   
1732   pending = _dbus_pending_call_new (connection,
1733                                     timeout_milliseconds,
1734                                     reply_handler_timeout);
1735
1736   if (pending == NULL)
1737     return FALSE;
1738
1739   CONNECTION_LOCK (connection);
1740   
1741   /* Assign a serial to the message */
1742   if (dbus_message_get_serial (message) == 0)
1743     {
1744       serial = _dbus_connection_get_next_client_serial (connection);
1745       _dbus_message_set_serial (message, serial);
1746     }
1747
1748   pending->reply_serial = serial;
1749
1750   reply = dbus_message_new_error (message, DBUS_ERROR_NO_REPLY,
1751                                   "No reply within specified time");
1752   if (!reply)
1753     {
1754       CONNECTION_UNLOCK (connection);
1755       dbus_pending_call_unref (pending);
1756       return FALSE;
1757     }
1758
1759   reply_link = _dbus_list_alloc_link (reply);
1760   if (!reply)
1761     {
1762       CONNECTION_UNLOCK (connection);
1763       dbus_message_unref (reply);
1764       dbus_pending_call_unref (pending);
1765       return FALSE;
1766     }
1767
1768   pending->timeout_link = reply_link;
1769
1770   /* Insert the serial in the pending replies hash;
1771    * hash takes a refcount on DBusPendingCall.
1772    * Also, add the timeout.
1773    */
1774   if (!_dbus_connection_attach_pending_call_unlocked (connection,
1775                                                       pending))
1776     {
1777       CONNECTION_UNLOCK (connection);
1778       dbus_pending_call_unref (pending);
1779       return FALSE;
1780     }
1781   
1782   if (!_dbus_connection_send_unlocked (connection, message, NULL))
1783     {
1784       _dbus_connection_detach_pending_call_and_unlock (connection,
1785                                                        pending);
1786       return FALSE;
1787     }
1788
1789   if (pending_return)
1790     {
1791       dbus_pending_call_ref (pending);
1792       *pending_return = pending;
1793     }
1794
1795   CONNECTION_UNLOCK (connection);
1796   
1797   return TRUE;
1798 }
1799
1800 static DBusMessage*
1801 check_for_reply_unlocked (DBusConnection *connection,
1802                           dbus_uint32_t   client_serial)
1803 {
1804   DBusList *link;
1805   
1806   link = _dbus_list_get_first_link (&connection->incoming_messages);
1807
1808   while (link != NULL)
1809     {
1810       DBusMessage *reply = link->data;
1811
1812       if (dbus_message_get_reply_serial (reply) == client_serial)
1813         {
1814           _dbus_list_remove_link (&connection->incoming_messages, link);
1815           connection->n_incoming  -= 1;
1816           dbus_message_ref (reply);
1817           return reply;
1818         }
1819       link = _dbus_list_get_next_link (&connection->incoming_messages, link);
1820     }
1821
1822   return NULL;
1823 }
1824
1825 /**
1826  * Blocks a certain time period while waiting for a reply.
1827  * If no reply arrives, returns #NULL.
1828  *
1829  * @todo could use performance improvements (it keeps scanning
1830  * the whole message queue for example) and has thread issues,
1831  * see comments in source
1832  *
1833  * Does not re-enter the main loop or run filter/path-registered
1834  * callbacks. The reply to the message will not be seen by
1835  * filter callbacks.
1836  *
1837  * @param connection the connection
1838  * @param client_serial the reply serial to wait for
1839  * @param timeout_milliseconds timeout in milliseconds or -1 for default
1840  * @returns the message that is the reply or #NULL if no reply
1841  */
1842 DBusMessage*
1843 _dbus_connection_block_for_reply (DBusConnection     *connection,
1844                                   dbus_uint32_t       client_serial,
1845                                   int                 timeout_milliseconds)
1846 {
1847   long start_tv_sec, start_tv_usec;
1848   long end_tv_sec, end_tv_usec;
1849   long tv_sec, tv_usec;
1850   DBusDispatchStatus status;
1851
1852   _dbus_return_val_if_fail (connection != NULL, NULL);
1853   _dbus_return_val_if_fail (client_serial != 0, NULL);
1854   _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
1855   
1856   if (timeout_milliseconds == -1)
1857     timeout_milliseconds = _DBUS_DEFAULT_TIMEOUT_VALUE;
1858
1859   /* it would probably seem logical to pass in _DBUS_INT_MAX
1860    * for infinite timeout, but then math below would get
1861    * all overflow-prone, so smack that down.
1862    */
1863   if (timeout_milliseconds > _DBUS_ONE_HOUR_IN_MILLISECONDS * 6)
1864     timeout_milliseconds = _DBUS_ONE_HOUR_IN_MILLISECONDS * 6;
1865   
1866   /* Flush message queue */
1867   dbus_connection_flush (connection);
1868
1869   CONNECTION_LOCK (connection);
1870
1871   _dbus_get_current_time (&start_tv_sec, &start_tv_usec);
1872   end_tv_sec = start_tv_sec + timeout_milliseconds / 1000;
1873   end_tv_usec = start_tv_usec + (timeout_milliseconds % 1000) * 1000;
1874   end_tv_sec += end_tv_usec / _DBUS_USEC_PER_SECOND;
1875   end_tv_usec = end_tv_usec % _DBUS_USEC_PER_SECOND;
1876
1877   _dbus_verbose ("dbus_connection_send_with_reply_and_block(): will block %d milliseconds for reply serial %u from %ld sec %ld usec to %ld sec %ld usec\n",
1878                  timeout_milliseconds,
1879                  client_serial,
1880                  start_tv_sec, start_tv_usec,
1881                  end_tv_sec, end_tv_usec);
1882   
1883   /* Now we wait... */
1884   /* THREAD TODO: This is busted. What if a dispatch() or pop_message
1885    * gets the message before we do?
1886    */
1887   /* always block at least once as we know we don't have the reply yet */
1888   _dbus_connection_do_iteration (connection,
1889                                  DBUS_ITERATION_DO_READING |
1890                                  DBUS_ITERATION_BLOCK,
1891                                  timeout_milliseconds);
1892
1893  recheck_status:
1894
1895   /* queue messages and get status */
1896   status = _dbus_connection_get_dispatch_status_unlocked (connection);
1897
1898   if (status == DBUS_DISPATCH_DATA_REMAINS)
1899     {
1900       DBusMessage *reply;
1901       
1902       reply = check_for_reply_unlocked (connection, client_serial);
1903       if (reply != NULL)
1904         {          
1905           status = _dbus_connection_get_dispatch_status_unlocked (connection);
1906
1907           _dbus_verbose ("dbus_connection_send_with_reply_and_block(): got reply\n");
1908
1909           /* Unlocks, and calls out to user code */
1910           _dbus_connection_update_dispatch_status_and_unlock (connection, status);
1911           
1912           return reply;
1913         }
1914     }
1915   
1916   _dbus_get_current_time (&tv_sec, &tv_usec);
1917   
1918   if (tv_sec < start_tv_sec)
1919     _dbus_verbose ("dbus_connection_send_with_reply_and_block(): clock set backward\n");
1920   else if (connection->disconnect_message_link == NULL)
1921     _dbus_verbose ("dbus_connection_send_with_reply_and_block(): disconnected\n");
1922   else if (tv_sec < end_tv_sec ||
1923            (tv_sec == end_tv_sec && tv_usec < end_tv_usec))
1924     {
1925       timeout_milliseconds = (end_tv_sec - tv_sec) * 1000 +
1926         (end_tv_usec - tv_usec) / 1000;
1927       _dbus_verbose ("dbus_connection_send_with_reply_and_block(): %d milliseconds remain\n", timeout_milliseconds);
1928       _dbus_assert (timeout_milliseconds >= 0);
1929       
1930       if (status == DBUS_DISPATCH_NEED_MEMORY)
1931         {
1932           /* Try sleeping a bit, as we aren't sure we need to block for reading,
1933            * we may already have a reply in the buffer and just can't process
1934            * it.
1935            */
1936           _dbus_verbose ("dbus_connection_send_with_reply_and_block() waiting for more memory\n");
1937           
1938           if (timeout_milliseconds < 100)
1939             ; /* just busy loop */
1940           else if (timeout_milliseconds <= 1000)
1941             _dbus_sleep_milliseconds (timeout_milliseconds / 3);
1942           else
1943             _dbus_sleep_milliseconds (1000);
1944         }
1945       else
1946         {          
1947           /* block again, we don't have the reply buffered yet. */
1948           _dbus_connection_do_iteration (connection,
1949                                          DBUS_ITERATION_DO_READING |
1950                                          DBUS_ITERATION_BLOCK,
1951                                          timeout_milliseconds);
1952         }
1953
1954       goto recheck_status;
1955     }
1956
1957   _dbus_verbose ("dbus_connection_send_with_reply_and_block(): Waited %ld milliseconds and got no reply\n",
1958                  (tv_sec - start_tv_sec) * 1000 + (tv_usec - start_tv_usec) / 1000);
1959
1960   /* unlocks and calls out to user code */
1961   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
1962
1963   return NULL;
1964 }
1965
1966 /**
1967  * Sends a message and blocks a certain time period while waiting for
1968  * a reply.  This function does not reenter the main loop,
1969  * i.e. messages other than the reply are queued up but not
1970  * processed. This function is used to do non-reentrant "method
1971  * calls."
1972  * 
1973  * If a normal reply is received, it is returned, and removed from the
1974  * incoming message queue. If it is not received, #NULL is returned
1975  * and the error is set to #DBUS_ERROR_NO_REPLY.  If an error reply is
1976  * received, it is converted to a #DBusError and returned as an error,
1977  * then the reply message is deleted. If something else goes wrong,
1978  * result is set to whatever is appropriate, such as
1979  * #DBUS_ERROR_NO_MEMORY or #DBUS_ERROR_DISCONNECTED.
1980  *
1981  * @param connection the connection
1982  * @param message the message to send
1983  * @param timeout_milliseconds timeout in milliseconds or -1 for default
1984  * @param error return location for error message
1985  * @returns the message that is the reply or #NULL with an error code if the
1986  * function fails.
1987  */
1988 DBusMessage *
1989 dbus_connection_send_with_reply_and_block (DBusConnection     *connection,
1990                                            DBusMessage        *message,
1991                                            int                 timeout_milliseconds,
1992                                            DBusError          *error)
1993 {
1994   dbus_uint32_t client_serial;
1995   DBusMessage *reply;
1996   
1997   _dbus_return_val_if_fail (connection != NULL, NULL);
1998   _dbus_return_val_if_fail (message != NULL, NULL);
1999   _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);  
2000   _dbus_return_val_if_error_is_set (error, NULL);
2001   
2002   if (!dbus_connection_send (connection, message, &client_serial))
2003     {
2004       _DBUS_SET_OOM (error);
2005       return NULL;
2006     }
2007
2008   reply = _dbus_connection_block_for_reply (connection,
2009                                             client_serial,
2010                                             timeout_milliseconds);
2011   
2012   if (reply == NULL)
2013     {
2014       if (dbus_connection_get_is_connected (connection))
2015         dbus_set_error (error, DBUS_ERROR_NO_REPLY, "Message did not receive a reply");
2016       else
2017         dbus_set_error (error, DBUS_ERROR_DISCONNECTED, "Disconnected prior to receiving a reply");
2018
2019       return NULL;
2020     }
2021   else if (dbus_set_error_from_message (error, reply))
2022     {
2023       dbus_message_unref (reply);
2024       return NULL;
2025     }
2026   else
2027     return reply;
2028 }
2029
2030 /**
2031  * Blocks until the outgoing message queue is empty.
2032  *
2033  * @param connection the connection.
2034  */
2035 void
2036 dbus_connection_flush (DBusConnection *connection)
2037 {
2038   /* We have to specify DBUS_ITERATION_DO_READING here because
2039    * otherwise we could have two apps deadlock if they are both doing
2040    * a flush(), and the kernel buffers fill up. This could change the
2041    * dispatch status.
2042    */
2043   DBusDispatchStatus status;
2044
2045   _dbus_return_if_fail (connection != NULL);
2046   
2047   CONNECTION_LOCK (connection);
2048   while (connection->n_outgoing > 0 &&
2049          _dbus_connection_get_is_connected_unlocked (connection))
2050     _dbus_connection_do_iteration (connection,
2051                                    DBUS_ITERATION_DO_READING |
2052                                    DBUS_ITERATION_DO_WRITING |
2053                                    DBUS_ITERATION_BLOCK,
2054                                    -1);
2055
2056   status = _dbus_connection_get_dispatch_status_unlocked (connection);
2057
2058   /* Unlocks and calls out to user code */
2059   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2060 }
2061
2062 /* Call with mutex held. Will drop it while waiting and re-acquire
2063  * before returning
2064  */
2065 static void
2066 _dbus_connection_wait_for_borrowed (DBusConnection *connection)
2067 {
2068   _dbus_assert (connection->message_borrowed != NULL);
2069
2070   while (connection->message_borrowed != NULL)
2071     dbus_condvar_wait (connection->message_returned_cond, connection->mutex);
2072 }
2073
2074 /**
2075  * Returns the first-received message from the incoming message queue,
2076  * leaving it in the queue. If the queue is empty, returns #NULL.
2077  * 
2078  * The caller does not own a reference to the returned message, and
2079  * must either return it using dbus_connection_return_message() or
2080  * keep it after calling dbus_connection_steal_borrowed_message(). No
2081  * one can get at the message while its borrowed, so return it as
2082  * quickly as possible and don't keep a reference to it after
2083  * returning it. If you need to keep the message, make a copy of it.
2084  *
2085  * @param connection the connection.
2086  * @returns next message in the incoming queue.
2087  */
2088 DBusMessage*
2089 dbus_connection_borrow_message  (DBusConnection *connection)
2090 {
2091   DBusMessage *message;
2092   DBusDispatchStatus status;
2093
2094   _dbus_return_val_if_fail (connection != NULL, NULL);
2095   /* can't borrow during dispatch */
2096   _dbus_return_val_if_fail (!connection->dispatch_acquired, NULL);
2097   
2098   /* this is called for the side effect that it queues
2099    * up any messages from the transport
2100    */
2101   status = dbus_connection_get_dispatch_status (connection);
2102   if (status != DBUS_DISPATCH_DATA_REMAINS)
2103     return NULL;
2104   
2105   CONNECTION_LOCK (connection);
2106
2107   if (connection->message_borrowed != NULL)
2108     _dbus_connection_wait_for_borrowed (connection);
2109   
2110   message = _dbus_list_get_first (&connection->incoming_messages);
2111
2112   if (message) 
2113     connection->message_borrowed = message;
2114   
2115   CONNECTION_UNLOCK (connection);
2116   return message;
2117 }
2118
2119 /**
2120  * Used to return a message after peeking at it using
2121  * dbus_connection_borrow_message().
2122  *
2123  * @param connection the connection
2124  * @param message the message from dbus_connection_borrow_message()
2125  */
2126 void
2127 dbus_connection_return_message (DBusConnection *connection,
2128                                 DBusMessage    *message)
2129 {
2130   _dbus_return_if_fail (connection != NULL);
2131   _dbus_return_if_fail (message != NULL);
2132   /* can't borrow during dispatch */
2133   _dbus_return_if_fail (!connection->dispatch_acquired);
2134   
2135   CONNECTION_LOCK (connection);
2136   
2137   _dbus_assert (message == connection->message_borrowed);
2138   
2139   connection->message_borrowed = NULL;
2140   dbus_condvar_wake_all (connection->message_returned_cond);
2141   
2142   CONNECTION_UNLOCK (connection);
2143 }
2144
2145 /**
2146  * Used to keep a message after peeking at it using
2147  * dbus_connection_borrow_message(). Before using this function, see
2148  * the caveats/warnings in the documentation for
2149  * dbus_connection_pop_message().
2150  *
2151  * @param connection the connection
2152  * @param message the message from dbus_connection_borrow_message()
2153  */
2154 void
2155 dbus_connection_steal_borrowed_message (DBusConnection *connection,
2156                                         DBusMessage    *message)
2157 {
2158   DBusMessage *pop_message;
2159
2160   _dbus_return_if_fail (connection != NULL);
2161   _dbus_return_if_fail (message != NULL);
2162   /* can't borrow during dispatch */
2163   _dbus_return_if_fail (!connection->dispatch_acquired);
2164   
2165   CONNECTION_LOCK (connection);
2166  
2167   _dbus_assert (message == connection->message_borrowed);
2168
2169   pop_message = _dbus_list_pop_first (&connection->incoming_messages);
2170   _dbus_assert (message == pop_message);
2171   
2172   connection->n_incoming -= 1;
2173  
2174   _dbus_verbose ("Incoming message %p stolen from queue, %d incoming\n",
2175                  message, connection->n_incoming);
2176  
2177   connection->message_borrowed = NULL;
2178   dbus_condvar_wake_all (connection->message_returned_cond);
2179   
2180   CONNECTION_UNLOCK (connection);
2181 }
2182
2183 /* See dbus_connection_pop_message, but requires the caller to own
2184  * the lock before calling. May drop the lock while running.
2185  */
2186 static DBusList*
2187 _dbus_connection_pop_message_link_unlocked (DBusConnection *connection)
2188 {
2189   if (connection->message_borrowed != NULL)
2190     _dbus_connection_wait_for_borrowed (connection);
2191   
2192   if (connection->n_incoming > 0)
2193     {
2194       DBusList *link;
2195
2196       link = _dbus_list_pop_first_link (&connection->incoming_messages);
2197       connection->n_incoming -= 1;
2198
2199       _dbus_verbose ("Message %p (%d %s '%s') removed from incoming queue %p, %d incoming\n",
2200                      link->data,
2201                      dbus_message_get_type (link->data),
2202                      dbus_message_get_interface (link->data) ?
2203                      dbus_message_get_interface (link->data) :
2204                      "no interface",
2205                      dbus_message_get_signature (link->data),
2206                      connection, connection->n_incoming);
2207
2208       return link;
2209     }
2210   else
2211     return NULL;
2212 }
2213
2214 /* See dbus_connection_pop_message, but requires the caller to own
2215  * the lock before calling. May drop the lock while running.
2216  */
2217 static DBusMessage*
2218 _dbus_connection_pop_message_unlocked (DBusConnection *connection)
2219 {
2220   DBusList *link;
2221   
2222   link = _dbus_connection_pop_message_link_unlocked (connection);
2223
2224   if (link != NULL)
2225     {
2226       DBusMessage *message;
2227       
2228       message = link->data;
2229       
2230       _dbus_list_free_link (link);
2231       
2232       return message;
2233     }
2234   else
2235     return NULL;
2236 }
2237
2238 static void
2239 _dbus_connection_putback_message_link_unlocked (DBusConnection *connection,
2240                                                 DBusList       *message_link)
2241 {
2242   _dbus_assert (message_link != NULL);
2243   /* You can't borrow a message while a link is outstanding */
2244   _dbus_assert (connection->message_borrowed == NULL);
2245
2246   _dbus_list_prepend_link (&connection->incoming_messages,
2247                            message_link);
2248   connection->n_incoming += 1;
2249
2250   _dbus_verbose ("Message %p (%d %s '%s') put back into queue %p, %d incoming\n",
2251                  message_link->data,
2252                  dbus_message_get_type (message_link->data),
2253                  dbus_message_get_interface (message_link->data) ?
2254                  dbus_message_get_interface (message_link->data) :
2255                  "no interface",
2256                  dbus_message_get_signature (message_link->data),
2257                  connection, connection->n_incoming);
2258 }
2259
2260 /**
2261  * Returns the first-received message from the incoming message queue,
2262  * removing it from the queue. The caller owns a reference to the
2263  * returned message. If the queue is empty, returns #NULL.
2264  *
2265  * This function bypasses any message handlers that are registered,
2266  * and so using it is usually wrong. Instead, let the main loop invoke
2267  * dbus_connection_dispatch(). Popping messages manually is only
2268  * useful in very simple programs that don't share a #DBusConnection
2269  * with any libraries or other modules.
2270  *
2271  * @param connection the connection.
2272  * @returns next message in the incoming queue.
2273  */
2274 DBusMessage*
2275 dbus_connection_pop_message (DBusConnection *connection)
2276 {
2277   DBusMessage *message;
2278   DBusDispatchStatus status;
2279
2280   /* this is called for the side effect that it queues
2281    * up any messages from the transport
2282    */
2283   status = dbus_connection_get_dispatch_status (connection);
2284   if (status != DBUS_DISPATCH_DATA_REMAINS)
2285     return NULL;
2286   
2287   CONNECTION_LOCK (connection);
2288
2289   message = _dbus_connection_pop_message_unlocked (connection);
2290
2291   _dbus_verbose ("Returning popped message %p\n", message);    
2292   
2293   CONNECTION_UNLOCK (connection);
2294   
2295   return message;
2296 }
2297
2298 /**
2299  * Acquire the dispatcher. This must be done before dispatching
2300  * messages in order to guarantee the right order of
2301  * message delivery. May sleep and drop the connection mutex
2302  * while waiting for the dispatcher.
2303  *
2304  * @param connection the connection.
2305  */
2306 static void
2307 _dbus_connection_acquire_dispatch (DBusConnection *connection)
2308 {
2309   if (connection->dispatch_acquired)
2310     dbus_condvar_wait (connection->dispatch_cond, connection->mutex);
2311   _dbus_assert (!connection->dispatch_acquired);
2312
2313   connection->dispatch_acquired = TRUE;
2314 }
2315
2316 /**
2317  * Release the dispatcher when you're done with it. Only call
2318  * after you've acquired the dispatcher. Wakes up at most one
2319  * thread currently waiting to acquire the dispatcher.
2320  *
2321  * @param connection the connection.
2322  */
2323 static void
2324 _dbus_connection_release_dispatch (DBusConnection *connection)
2325 {
2326   _dbus_assert (connection->dispatch_acquired);
2327
2328   connection->dispatch_acquired = FALSE;
2329   dbus_condvar_wake_one (connection->dispatch_cond);
2330 }
2331
2332 static void
2333 _dbus_connection_failed_pop (DBusConnection *connection,
2334                              DBusList       *message_link)
2335 {
2336   _dbus_list_prepend_link (&connection->incoming_messages,
2337                            message_link);
2338   connection->n_incoming += 1;
2339 }
2340
2341 static DBusDispatchStatus
2342 _dbus_connection_get_dispatch_status_unlocked (DBusConnection *connection)
2343 {
2344   if (connection->n_incoming > 0)
2345     return DBUS_DISPATCH_DATA_REMAINS;
2346   else if (!_dbus_transport_queue_messages (connection->transport))
2347     return DBUS_DISPATCH_NEED_MEMORY;
2348   else
2349     {
2350       DBusDispatchStatus status;
2351       
2352       status = _dbus_transport_get_dispatch_status (connection->transport);
2353
2354       if (status != DBUS_DISPATCH_COMPLETE)
2355         return status;
2356       else if (connection->n_incoming > 0)
2357         return DBUS_DISPATCH_DATA_REMAINS;
2358       else
2359         return DBUS_DISPATCH_COMPLETE;
2360     }
2361 }
2362
2363 static void
2364 _dbus_connection_update_dispatch_status_and_unlock (DBusConnection    *connection,
2365                                                     DBusDispatchStatus new_status)
2366 {
2367   dbus_bool_t changed;
2368   DBusDispatchStatusFunction function;
2369   void *data;
2370
2371   /* We have the lock */
2372
2373   _dbus_connection_ref_unlocked (connection);
2374
2375   changed = new_status != connection->last_dispatch_status;
2376
2377   connection->last_dispatch_status = new_status;
2378
2379   function = connection->dispatch_status_function;
2380   data = connection->dispatch_status_data;
2381
2382   /* We drop the lock */
2383   CONNECTION_UNLOCK (connection);
2384   
2385   if (changed && function)
2386     {
2387       _dbus_verbose ("Notifying of change to dispatch status of %p now %d (%s)\n",
2388                      connection, new_status,
2389                      new_status == DBUS_DISPATCH_COMPLETE ? "complete" :
2390                      new_status == DBUS_DISPATCH_DATA_REMAINS ? "data remains" :
2391                      new_status == DBUS_DISPATCH_NEED_MEMORY ? "need memory" :
2392                      "???");
2393       (* function) (connection, new_status, data);      
2394     }
2395   
2396   dbus_connection_unref (connection);
2397 }
2398
2399 /**
2400  * Gets the current state (what we would currently return
2401  * from dbus_connection_dispatch()) but doesn't actually
2402  * dispatch any messages.
2403  * 
2404  * @param connection the connection.
2405  * @returns current dispatch status
2406  */
2407 DBusDispatchStatus
2408 dbus_connection_get_dispatch_status (DBusConnection *connection)
2409 {
2410   DBusDispatchStatus status;
2411
2412   _dbus_return_val_if_fail (connection != NULL, DBUS_DISPATCH_COMPLETE);
2413   
2414   CONNECTION_LOCK (connection);
2415
2416   status = _dbus_connection_get_dispatch_status_unlocked (connection);
2417   
2418   CONNECTION_UNLOCK (connection);
2419
2420   return status;
2421 }
2422
2423 /**
2424  * Processes data buffered while handling watches, queueing zero or
2425  * more incoming messages. Then pops the first-received message from
2426  * the current incoming message queue, runs any handlers for it, and
2427  * unrefs the message. Returns a status indicating whether messages/data
2428  * remain, more memory is needed, or all data has been processed.
2429  * 
2430  * Even if the dispatch status is #DBUS_DISPATCH_DATA_REMAINS,
2431  * does not necessarily dispatch a message, as the data may
2432  * be part of authentication or the like.
2433  *
2434  * @todo some FIXME in here about handling DBUS_HANDLER_RESULT_NEED_MEMORY
2435  *
2436  * @todo right now a message filter gets run on replies to a pending
2437  * call in here, but not in the case where we block without entering
2438  * the main loop. Simple solution might be to just have the pending
2439  * call stuff run before the filters.
2440  *
2441  * @todo FIXME what if we call out to application code to handle a
2442  * message, holding the dispatch lock, and the application code runs
2443  * the main loop and dispatches again? Probably deadlocks at the
2444  * moment. Maybe we want a dispatch status of DBUS_DISPATCH_IN_PROGRESS,
2445  * and then the GSource etc. could handle the situation?
2446  * 
2447  * @param connection the connection
2448  * @returns dispatch status
2449  */
2450 DBusDispatchStatus
2451 dbus_connection_dispatch (DBusConnection *connection)
2452 {
2453   DBusMessage *message;
2454   DBusList *link, *filter_list_copy, *message_link;
2455   DBusHandlerResult result;
2456   DBusPendingCall *pending;
2457   dbus_int32_t reply_serial;
2458   DBusDispatchStatus status;
2459
2460   _dbus_return_val_if_fail (connection != NULL, DBUS_DISPATCH_COMPLETE);
2461
2462   CONNECTION_LOCK (connection);
2463   status = _dbus_connection_get_dispatch_status_unlocked (connection);
2464   if (status != DBUS_DISPATCH_DATA_REMAINS)
2465     {
2466       /* unlocks and calls out to user code */
2467       _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2468       return status;
2469     }
2470   
2471   /* We need to ref the connection since the callback could potentially
2472    * drop the last ref to it
2473    */
2474   _dbus_connection_ref_unlocked (connection);
2475
2476   _dbus_connection_acquire_dispatch (connection);
2477   
2478   /* This call may drop the lock during the execution (if waiting for
2479    * borrowed messages to be returned) but the order of message
2480    * dispatch if several threads call dispatch() is still
2481    * protected by the lock, since only one will get the lock, and that
2482    * one will finish the message dispatching
2483    */
2484   message_link = _dbus_connection_pop_message_link_unlocked (connection);
2485   if (message_link == NULL)
2486     {
2487       /* another thread dispatched our stuff */
2488
2489       _dbus_connection_release_dispatch (connection);
2490
2491       status = _dbus_connection_get_dispatch_status_unlocked (connection);
2492
2493       _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2494       
2495       dbus_connection_unref (connection);
2496       
2497       return status;
2498     }
2499
2500   message = message_link->data;
2501   
2502   result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
2503
2504   reply_serial = dbus_message_get_reply_serial (message);
2505   pending = _dbus_hash_table_lookup_int (connection->pending_replies,
2506                                          reply_serial);
2507   
2508   if (!_dbus_list_copy (&connection->filter_list, &filter_list_copy))
2509     {
2510       _dbus_connection_release_dispatch (connection);
2511
2512       _dbus_connection_failed_pop (connection, message_link);
2513
2514       /* unlocks and calls user code */
2515       _dbus_connection_update_dispatch_status_and_unlock (connection,
2516                                                           DBUS_DISPATCH_NEED_MEMORY);
2517
2518       dbus_connection_unref (connection);
2519       
2520       return DBUS_DISPATCH_NEED_MEMORY;
2521     }
2522   
2523   _dbus_list_foreach (&filter_list_copy,
2524                       (DBusForeachFunction)_dbus_message_filter_ref,
2525                       NULL);
2526
2527   /* We're still protected from dispatch() reentrancy here
2528    * since we acquired the dispatcher
2529    */
2530   CONNECTION_UNLOCK (connection);
2531   
2532   link = _dbus_list_get_first_link (&filter_list_copy);
2533   while (link != NULL)
2534     {
2535       DBusMessageFilter *filter = link->data;
2536       DBusList *next = _dbus_list_get_next_link (&filter_list_copy, link);
2537
2538       _dbus_verbose ("  running filter on message %p\n", message);
2539       result = (* filter->function) (connection, message, filter->user_data);
2540
2541       if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
2542         break;
2543
2544       link = next;
2545     }
2546
2547   _dbus_list_foreach (&filter_list_copy,
2548                       (DBusForeachFunction)_dbus_message_filter_unref,
2549                       NULL);
2550   _dbus_list_clear (&filter_list_copy);
2551   
2552   CONNECTION_LOCK (connection);
2553
2554   if (result == DBUS_HANDLER_RESULT_NEED_MEMORY)
2555     goto out;
2556   
2557   /* Did a reply we were waiting on get filtered? */
2558   if (pending && result == DBUS_HANDLER_RESULT_HANDLED)
2559     {
2560       /* Queue the timeout immediately! */
2561       if (pending->timeout_link)
2562         {
2563           _dbus_connection_queue_synthesized_message_link (connection,
2564                                                            pending->timeout_link);
2565           pending->timeout_link = NULL;
2566         }
2567       else
2568         {
2569           /* We already queued the timeout? Then it was filtered! */
2570           _dbus_warn ("The timeout error with reply serial %d was filtered, so the DBusPendingCall will never stop pending.\n", reply_serial);
2571         }
2572     }
2573   
2574   if (result == DBUS_HANDLER_RESULT_HANDLED)
2575     goto out;
2576   
2577   if (pending)
2578     {
2579       _dbus_pending_call_complete_and_unlock (pending, message);
2580
2581       pending = NULL;
2582       
2583       CONNECTION_LOCK (connection);
2584       goto out;
2585     }
2586
2587   /* We're still protected from dispatch() reentrancy here
2588    * since we acquired the dispatcher
2589    */
2590   _dbus_verbose ("  running object path dispatch on message %p (%d %s '%s')\n",
2591                  message,
2592                  dbus_message_get_type (message),
2593                  dbus_message_get_interface (message) ?
2594                  dbus_message_get_interface (message) :
2595                  "no interface",
2596                  dbus_message_get_signature (message));
2597   
2598   result = _dbus_object_tree_dispatch_and_unlock (connection->objects,
2599                                                   message);
2600   
2601   CONNECTION_LOCK (connection);
2602
2603   if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
2604     goto out;
2605
2606   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_CALL)
2607     {
2608       DBusMessage *reply;
2609       DBusString str;
2610       DBusPreallocatedSend *preallocated;
2611
2612       _dbus_verbose ("  sending error %s\n",
2613                      DBUS_ERROR_UNKNOWN_METHOD);
2614       
2615       if (!_dbus_string_init (&str))
2616         {
2617           result = DBUS_HANDLER_RESULT_NEED_MEMORY;
2618           goto out;
2619         }
2620               
2621       if (!_dbus_string_append_printf (&str,
2622                                        "Method \"%s\" on interface \"%s\" doesn't exist\n",
2623                                        dbus_message_get_member (message),
2624                                        dbus_message_get_interface (message)))
2625         {
2626           _dbus_string_free (&str);
2627           result = DBUS_HANDLER_RESULT_NEED_MEMORY;
2628           goto out;
2629         }
2630       
2631       reply = dbus_message_new_error (message,
2632                                       DBUS_ERROR_UNKNOWN_METHOD,
2633                                       _dbus_string_get_const_data (&str));
2634       _dbus_string_free (&str);
2635
2636       if (reply == NULL)
2637         {
2638           result = DBUS_HANDLER_RESULT_NEED_MEMORY;
2639           goto out;
2640         }
2641       
2642       preallocated = _dbus_connection_preallocate_send_unlocked (connection);
2643
2644       if (preallocated == NULL)
2645         {
2646           dbus_message_unref (reply);
2647           result = DBUS_HANDLER_RESULT_NEED_MEMORY;
2648           goto out;
2649         }
2650
2651       _dbus_connection_send_preallocated_unlocked (connection, preallocated,
2652                                                    reply, NULL);
2653
2654       dbus_message_unref (reply);
2655       
2656       result = DBUS_HANDLER_RESULT_HANDLED;
2657     }
2658   
2659   _dbus_verbose ("  done dispatching %p (%d %s '%s') on connection %p\n", message,
2660                  dbus_message_get_type (message),
2661                  dbus_message_get_interface (message) ?
2662                  dbus_message_get_interface (message) :
2663                  "no interface",
2664                  dbus_message_get_signature (message),
2665                  connection);
2666   
2667  out:
2668   if (result == DBUS_HANDLER_RESULT_NEED_MEMORY)
2669     {
2670       _dbus_verbose ("out of memory in %s\n", _DBUS_FUNCTION_NAME);
2671       
2672       /* Put message back, and we'll start over.
2673        * Yes this means handlers must be idempotent if they
2674        * don't return HANDLED; c'est la vie.
2675        */
2676       _dbus_connection_putback_message_link_unlocked (connection,
2677                                                       message_link);
2678     }
2679   else
2680     {
2681       _dbus_verbose ("Done with message in %s\n", _DBUS_FUNCTION_NAME);
2682       
2683       if (connection->exit_on_disconnect &&
2684           dbus_message_is_signal (message,
2685                                   DBUS_INTERFACE_ORG_FREEDESKTOP_LOCAL,
2686                                   "Disconnected"))
2687         {
2688           _dbus_verbose ("Exiting on Disconnected signal\n");
2689           CONNECTION_UNLOCK (connection);
2690           _dbus_exit (1);
2691           _dbus_assert_not_reached ("Call to exit() returned");
2692         }
2693       
2694       _dbus_list_free_link (message_link);
2695       dbus_message_unref (message); /* don't want the message to count in max message limits
2696                                      * in computing dispatch status below
2697                                      */
2698     }
2699   
2700   _dbus_connection_release_dispatch (connection);
2701   
2702   status = _dbus_connection_get_dispatch_status_unlocked (connection);
2703
2704   /* unlocks and calls user code */
2705   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2706   
2707   dbus_connection_unref (connection);
2708   
2709   return status;
2710 }
2711
2712 /**
2713  * Sets the watch functions for the connection. These functions are
2714  * responsible for making the application's main loop aware of file
2715  * descriptors that need to be monitored for events, using select() or
2716  * poll(). When using Qt, typically the DBusAddWatchFunction would
2717  * create a QSocketNotifier. When using GLib, the DBusAddWatchFunction
2718  * could call g_io_add_watch(), or could be used as part of a more
2719  * elaborate GSource. Note that when a watch is added, it may
2720  * not be enabled.
2721  *
2722  * The DBusWatchToggledFunction notifies the application that the
2723  * watch has been enabled or disabled. Call dbus_watch_get_enabled()
2724  * to check this. A disabled watch should have no effect, and enabled
2725  * watch should be added to the main loop. This feature is used
2726  * instead of simply adding/removing the watch because
2727  * enabling/disabling can be done without memory allocation.  The
2728  * toggled function may be NULL if a main loop re-queries
2729  * dbus_watch_get_enabled() every time anyway.
2730  * 
2731  * The DBusWatch can be queried for the file descriptor to watch using
2732  * dbus_watch_get_fd(), and for the events to watch for using
2733  * dbus_watch_get_flags(). The flags returned by
2734  * dbus_watch_get_flags() will only contain DBUS_WATCH_READABLE and
2735  * DBUS_WATCH_WRITABLE, never DBUS_WATCH_HANGUP or DBUS_WATCH_ERROR;
2736  * all watches implicitly include a watch for hangups, errors, and
2737  * other exceptional conditions.
2738  *
2739  * Once a file descriptor becomes readable or writable, or an exception
2740  * occurs, dbus_watch_handle() should be called to
2741  * notify the connection of the file descriptor's condition.
2742  *
2743  * dbus_watch_handle() cannot be called during the
2744  * DBusAddWatchFunction, as the connection will not be ready to handle
2745  * that watch yet.
2746  * 
2747  * It is not allowed to reference a DBusWatch after it has been passed
2748  * to remove_function.
2749  *
2750  * If #FALSE is returned due to lack of memory, the failure may be due
2751  * to a #FALSE return from the new add_function. If so, the
2752  * add_function may have been called successfully one or more times,
2753  * but the remove_function will also have been called to remove any
2754  * successful adds. i.e. if #FALSE is returned the net result
2755  * should be that dbus_connection_set_watch_functions() has no effect,
2756  * but the add_function and remove_function may have been called.
2757  *
2758  * @todo We need to drop the lock when we call the
2759  * add/remove/toggled functions which can be a side effect
2760  * of setting the watch functions.
2761  * 
2762  * @param connection the connection.
2763  * @param add_function function to begin monitoring a new descriptor.
2764  * @param remove_function function to stop monitoring a descriptor.
2765  * @param toggled_function function to notify of enable/disable
2766  * @param data data to pass to add_function and remove_function.
2767  * @param free_data_function function to be called to free the data.
2768  * @returns #FALSE on failure (no memory)
2769  */
2770 dbus_bool_t
2771 dbus_connection_set_watch_functions (DBusConnection              *connection,
2772                                      DBusAddWatchFunction         add_function,
2773                                      DBusRemoveWatchFunction      remove_function,
2774                                      DBusWatchToggledFunction     toggled_function,
2775                                      void                        *data,
2776                                      DBusFreeFunction             free_data_function)
2777 {
2778   dbus_bool_t retval;
2779
2780   _dbus_return_val_if_fail (connection != NULL, FALSE);
2781   
2782   CONNECTION_LOCK (connection);
2783   /* ref connection for slightly better reentrancy */
2784   _dbus_connection_ref_unlocked (connection);
2785
2786   /* FIXME this can call back into user code, and we need to drop the
2787    * connection lock when it does.
2788    */
2789   retval = _dbus_watch_list_set_functions (connection->watches,
2790                                            add_function, remove_function,
2791                                            toggled_function,
2792                                            data, free_data_function);
2793   
2794   CONNECTION_UNLOCK (connection);
2795   /* drop our paranoid refcount */
2796   dbus_connection_unref (connection);
2797
2798   return retval;
2799 }
2800
2801 /**
2802  * Sets the timeout functions for the connection. These functions are
2803  * responsible for making the application's main loop aware of timeouts.
2804  * When using Qt, typically the DBusAddTimeoutFunction would create a
2805  * QTimer. When using GLib, the DBusAddTimeoutFunction would call
2806  * g_timeout_add.
2807  * 
2808  * The DBusTimeoutToggledFunction notifies the application that the
2809  * timeout has been enabled or disabled. Call
2810  * dbus_timeout_get_enabled() to check this. A disabled timeout should
2811  * have no effect, and enabled timeout should be added to the main
2812  * loop. This feature is used instead of simply adding/removing the
2813  * timeout because enabling/disabling can be done without memory
2814  * allocation. With Qt, QTimer::start() and QTimer::stop() can be used
2815  * to enable and disable. The toggled function may be NULL if a main
2816  * loop re-queries dbus_timeout_get_enabled() every time anyway.
2817  * Whenever a timeout is toggled, its interval may change.
2818  *
2819  * The DBusTimeout can be queried for the timer interval using
2820  * dbus_timeout_get_interval(). dbus_timeout_handle() should be called
2821  * repeatedly, each time the interval elapses, starting after it has
2822  * elapsed once. The timeout stops firing when it is removed with the
2823  * given remove_function.  The timer interval may change whenever the
2824  * timeout is added, removed, or toggled.
2825  *
2826  * @param connection the connection.
2827  * @param add_function function to add a timeout.
2828  * @param remove_function function to remove a timeout.
2829  * @param toggled_function function to notify of enable/disable
2830  * @param data data to pass to add_function and remove_function.
2831  * @param free_data_function function to be called to free the data.
2832  * @returns #FALSE on failure (no memory)
2833  */
2834 dbus_bool_t
2835 dbus_connection_set_timeout_functions   (DBusConnection            *connection,
2836                                          DBusAddTimeoutFunction     add_function,
2837                                          DBusRemoveTimeoutFunction  remove_function,
2838                                          DBusTimeoutToggledFunction toggled_function,
2839                                          void                      *data,
2840                                          DBusFreeFunction           free_data_function)
2841 {
2842   dbus_bool_t retval;
2843
2844   _dbus_return_val_if_fail (connection != NULL, FALSE);
2845   
2846   CONNECTION_LOCK (connection);
2847   /* ref connection for slightly better reentrancy */
2848   _dbus_connection_ref_unlocked (connection);
2849   
2850   retval = _dbus_timeout_list_set_functions (connection->timeouts,
2851                                              add_function, remove_function,
2852                                              toggled_function,
2853                                              data, free_data_function);
2854   
2855   CONNECTION_UNLOCK (connection);
2856   /* drop our paranoid refcount */
2857   dbus_connection_unref (connection);
2858
2859   return retval;
2860 }
2861
2862 /**
2863  * Sets the mainloop wakeup function for the connection. Thi function is
2864  * responsible for waking up the main loop (if its sleeping) when some some
2865  * change has happened to the connection that the mainloop needs to reconsiders
2866  * (e.g. a message has been queued for writing).
2867  * When using Qt, this typically results in a call to QEventLoop::wakeUp().
2868  * When using GLib, it would call g_main_context_wakeup().
2869  *
2870  *
2871  * @param connection the connection.
2872  * @param wakeup_main_function function to wake up the mainloop
2873  * @param data data to pass wakeup_main_function
2874  * @param free_data_function function to be called to free the data.
2875  */
2876 void
2877 dbus_connection_set_wakeup_main_function (DBusConnection            *connection,
2878                                           DBusWakeupMainFunction     wakeup_main_function,
2879                                           void                      *data,
2880                                           DBusFreeFunction           free_data_function)
2881 {
2882   void *old_data;
2883   DBusFreeFunction old_free_data;
2884
2885   _dbus_return_if_fail (connection != NULL);
2886   
2887   CONNECTION_LOCK (connection);
2888   old_data = connection->wakeup_main_data;
2889   old_free_data = connection->free_wakeup_main_data;
2890
2891   connection->wakeup_main_function = wakeup_main_function;
2892   connection->wakeup_main_data = data;
2893   connection->free_wakeup_main_data = free_data_function;
2894   
2895   CONNECTION_UNLOCK (connection);
2896
2897   /* Callback outside the lock */
2898   if (old_free_data)
2899     (*old_free_data) (old_data);
2900 }
2901
2902 /**
2903  * Set a function to be invoked when the dispatch status changes.
2904  * If the dispatch status is #DBUS_DISPATCH_DATA_REMAINS, then
2905  * dbus_connection_dispatch() needs to be called to process incoming
2906  * messages. However, dbus_connection_dispatch() MUST NOT BE CALLED
2907  * from inside the DBusDispatchStatusFunction. Indeed, almost
2908  * any reentrancy in this function is a bad idea. Instead,
2909  * the DBusDispatchStatusFunction should simply save an indication
2910  * that messages should be dispatched later, when the main loop
2911  * is re-entered.
2912  *
2913  * @param connection the connection
2914  * @param function function to call on dispatch status changes
2915  * @param data data for function
2916  * @param free_data_function free the function data
2917  */
2918 void
2919 dbus_connection_set_dispatch_status_function (DBusConnection             *connection,
2920                                               DBusDispatchStatusFunction  function,
2921                                               void                       *data,
2922                                               DBusFreeFunction            free_data_function)
2923 {
2924   void *old_data;
2925   DBusFreeFunction old_free_data;
2926
2927   _dbus_return_if_fail (connection != NULL);
2928   
2929   CONNECTION_LOCK (connection);
2930   old_data = connection->dispatch_status_data;
2931   old_free_data = connection->free_dispatch_status_data;
2932
2933   connection->dispatch_status_function = function;
2934   connection->dispatch_status_data = data;
2935   connection->free_dispatch_status_data = free_data_function;
2936   
2937   CONNECTION_UNLOCK (connection);
2938
2939   /* Callback outside the lock */
2940   if (old_free_data)
2941     (*old_free_data) (old_data);
2942 }
2943
2944 /**
2945  * Gets the UNIX user ID of the connection if any.
2946  * Returns #TRUE if the uid is filled in.
2947  * Always returns #FALSE on non-UNIX platforms.
2948  * Always returns #FALSE prior to authenticating the
2949  * connection.
2950  *
2951  * @param connection the connection
2952  * @param uid return location for the user ID
2953  * @returns #TRUE if uid is filled in with a valid user ID
2954  */
2955 dbus_bool_t
2956 dbus_connection_get_unix_user (DBusConnection *connection,
2957                                unsigned long  *uid)
2958 {
2959   dbus_bool_t result;
2960
2961   _dbus_return_val_if_fail (connection != NULL, FALSE);
2962   _dbus_return_val_if_fail (uid != NULL, FALSE);
2963   
2964   CONNECTION_LOCK (connection);
2965
2966   if (!_dbus_transport_get_is_authenticated (connection->transport))
2967     result = FALSE;
2968   else
2969     result = _dbus_transport_get_unix_user (connection->transport,
2970                                             uid);
2971   CONNECTION_UNLOCK (connection);
2972
2973   return result;
2974 }
2975
2976 /**
2977  * Sets a predicate function used to determine whether a given user ID
2978  * is allowed to connect. When an incoming connection has
2979  * authenticated with a particular user ID, this function is called;
2980  * if it returns #TRUE, the connection is allowed to proceed,
2981  * otherwise the connection is disconnected.
2982  *
2983  * If the function is set to #NULL (as it is by default), then
2984  * only the same UID as the server process will be allowed to
2985  * connect.
2986  *
2987  * @param connection the connection
2988  * @param function the predicate
2989  * @param data data to pass to the predicate
2990  * @param free_data_function function to free the data
2991  */
2992 void
2993 dbus_connection_set_unix_user_function (DBusConnection             *connection,
2994                                         DBusAllowUnixUserFunction   function,
2995                                         void                       *data,
2996                                         DBusFreeFunction            free_data_function)
2997 {
2998   void *old_data = NULL;
2999   DBusFreeFunction old_free_function = NULL;
3000
3001   _dbus_return_if_fail (connection != NULL);
3002   
3003   CONNECTION_LOCK (connection);
3004   _dbus_transport_set_unix_user_function (connection->transport,
3005                                           function, data, free_data_function,
3006                                           &old_data, &old_free_function);
3007   CONNECTION_UNLOCK (connection);
3008
3009   if (old_free_function != NULL)
3010     (* old_free_function) (old_data);    
3011 }
3012
3013 /**
3014  * Adds a message filter. Filters are handlers that are run on all
3015  * incoming messages, prior to the objects registered with
3016  * dbus_connection_register_object_path().  Filters are run in the
3017  * order that they were added.  The same handler can be added as a
3018  * filter more than once, in which case it will be run more than once.
3019  * Filters added during a filter callback won't be run on the message
3020  * being processed.
3021  *
3022  * @todo we don't run filters on messages while blocking without
3023  * entering the main loop, since filters are run as part of
3024  * dbus_connection_dispatch(). This is probably a feature, as filters
3025  * could create arbitrary reentrancy. But kind of sucks if you're
3026  * trying to filter METHOD_RETURN for some reason.
3027  *
3028  * @param connection the connection
3029  * @param function function to handle messages
3030  * @param user_data user data to pass to the function
3031  * @param free_data_function function to use for freeing user data
3032  * @returns #TRUE on success, #FALSE if not enough memory.
3033  */
3034 dbus_bool_t
3035 dbus_connection_add_filter (DBusConnection            *connection,
3036                             DBusHandleMessageFunction  function,
3037                             void                      *user_data,
3038                             DBusFreeFunction           free_data_function)
3039 {
3040   DBusMessageFilter *filter;
3041   
3042   _dbus_return_val_if_fail (connection != NULL, FALSE);
3043   _dbus_return_val_if_fail (function != NULL, FALSE);
3044
3045   filter = dbus_new0 (DBusMessageFilter, 1);
3046   if (filter == NULL)
3047     return FALSE;
3048
3049   filter->refcount.value = 1;
3050   
3051   CONNECTION_LOCK (connection);
3052
3053   if (!_dbus_list_append (&connection->filter_list,
3054                           filter))
3055     {
3056       _dbus_message_filter_unref (filter);
3057       CONNECTION_UNLOCK (connection);
3058       return FALSE;
3059     }
3060
3061   /* Fill in filter after all memory allocated,
3062    * so we don't run the free_user_data_function
3063    * if the add_filter() fails
3064    */
3065   
3066   filter->function = function;
3067   filter->user_data = user_data;
3068   filter->free_user_data_function = free_data_function;
3069         
3070   CONNECTION_UNLOCK (connection);
3071   return TRUE;
3072 }
3073
3074 /**
3075  * Removes a previously-added message filter. It is a programming
3076  * error to call this function for a handler that has not been added
3077  * as a filter. If the given handler was added more than once, only
3078  * one instance of it will be removed (the most recently-added
3079  * instance).
3080  *
3081  * @param connection the connection
3082  * @param function the handler to remove
3083  * @param user_data user data for the handler to remove
3084  *
3085  */
3086 void
3087 dbus_connection_remove_filter (DBusConnection            *connection,
3088                                DBusHandleMessageFunction  function,
3089                                void                      *user_data)
3090 {
3091   DBusList *link;
3092   DBusMessageFilter *filter;
3093   
3094   _dbus_return_if_fail (connection != NULL);
3095   _dbus_return_if_fail (function != NULL);
3096   
3097   CONNECTION_LOCK (connection);
3098
3099   filter = NULL;
3100   
3101   link = _dbus_list_get_last_link (&connection->filter_list);
3102   while (link != NULL)
3103     {
3104       filter = link->data;
3105
3106       if (filter->function == function &&
3107           filter->user_data == user_data)
3108         {
3109           _dbus_list_remove_link (&connection->filter_list, link);
3110           filter->function = NULL;
3111           
3112           break;
3113         }
3114         
3115       link = _dbus_list_get_prev_link (&connection->filter_list, link);
3116     }
3117   
3118   CONNECTION_UNLOCK (connection);
3119
3120 #ifndef DBUS_DISABLE_CHECKS
3121   if (filter == NULL)
3122     {
3123       _dbus_warn ("Attempt to remove filter function %p user data %p, but no such filter has been added\n",
3124                   function, user_data);
3125       return;
3126     }
3127 #endif
3128   
3129   /* Call application code */
3130   if (filter->free_user_data_function)
3131     (* filter->free_user_data_function) (filter->user_data);
3132
3133   filter->free_user_data_function = NULL;
3134   filter->user_data = NULL;
3135   
3136   _dbus_message_filter_unref (filter);
3137 }
3138
3139 /**
3140  * Registers a handler for a given path in the object hierarchy.
3141  * The given vtable handles messages sent to exactly the given path.
3142  *
3143  *
3144  * @param connection the connection
3145  * @param path #NULL-terminated array of path elements
3146  * @param vtable the virtual table
3147  * @param user_data data to pass to functions in the vtable
3148  * @returns #FALSE if not enough memory
3149  */
3150 dbus_bool_t
3151 dbus_connection_register_object_path (DBusConnection              *connection,
3152                                       const char                 **path,
3153                                       const DBusObjectPathVTable  *vtable,
3154                                       void                        *user_data)
3155 {
3156   dbus_bool_t retval;
3157   
3158   _dbus_return_val_if_fail (connection != NULL, FALSE);
3159   _dbus_return_val_if_fail (path != NULL, FALSE);
3160   _dbus_return_val_if_fail (path[0] != NULL, FALSE);
3161   _dbus_return_val_if_fail (vtable != NULL, FALSE);
3162
3163   CONNECTION_LOCK (connection);
3164
3165   retval = _dbus_object_tree_register (connection->objects,
3166                                        FALSE,
3167                                        path, vtable,
3168                                        user_data);
3169
3170   CONNECTION_UNLOCK (connection);
3171
3172   return retval;
3173 }
3174
3175 /**
3176  * Registers a fallback handler for a given subsection of the object
3177  * hierarchy.  The given vtable handles messages at or below the given
3178  * path. You can use this to establish a default message handling
3179  * policy for a whole "subdirectory."
3180  *
3181  * @param connection the connection
3182  * @param path #NULL-terminated array of path elements
3183  * @param vtable the virtual table
3184  * @param user_data data to pass to functions in the vtable
3185  * @returns #FALSE if not enough memory
3186  */
3187 dbus_bool_t
3188 dbus_connection_register_fallback (DBusConnection              *connection,
3189                                    const char                 **path,
3190                                    const DBusObjectPathVTable  *vtable,
3191                                    void                        *user_data)
3192 {
3193   dbus_bool_t retval;
3194   
3195   _dbus_return_val_if_fail (connection != NULL, FALSE);
3196   _dbus_return_val_if_fail (path != NULL, FALSE);
3197   _dbus_return_val_if_fail (path[0] != NULL, FALSE);
3198   _dbus_return_val_if_fail (vtable != NULL, FALSE);
3199
3200   CONNECTION_LOCK (connection);
3201
3202   retval = _dbus_object_tree_register (connection->objects,
3203                                        TRUE,
3204                                        path, vtable,
3205                                        user_data);
3206
3207   CONNECTION_UNLOCK (connection);
3208
3209   return retval;
3210 }
3211
3212 /**
3213  * Unregisters the handler registered with exactly the given path.
3214  * It's a bug to call this function for a path that isn't registered.
3215  * Can unregister both fallback paths and object paths.
3216  *
3217  * @param connection the connection
3218  * @param path the #NULL-terminated array of path elements
3219  */
3220 void
3221 dbus_connection_unregister_object_path (DBusConnection              *connection,
3222                                         const char                 **path)
3223 {
3224   _dbus_return_if_fail (connection != NULL);
3225   _dbus_return_if_fail (path != NULL);
3226   _dbus_return_if_fail (path[0] != NULL);
3227
3228   CONNECTION_LOCK (connection);
3229
3230   return _dbus_object_tree_unregister_and_unlock (connection->objects,
3231                                                   path);
3232 }
3233
3234 /**
3235  * Lists the registered fallback handlers and object path handlers at
3236  * the given parent_path. The returned array should be freed with
3237  * dbus_free_string_array().
3238  *
3239  * @param connection the connection
3240  * @param parent_path the path to list the child handlers of
3241  * @param child_entries returns #NULL-terminated array of children
3242  * @returns #FALSE if no memory to allocate the child entries
3243  */
3244 dbus_bool_t
3245 dbus_connection_list_registered (DBusConnection              *connection,
3246                                  const char                 **parent_path,
3247                                  char                      ***child_entries)
3248 {
3249   _dbus_return_val_if_fail (connection != NULL, FALSE);
3250   _dbus_return_val_if_fail (parent_path != NULL, FALSE);
3251   _dbus_return_val_if_fail (child_entries != NULL, FALSE);
3252
3253   CONNECTION_LOCK (connection);
3254
3255   return _dbus_object_tree_list_registered_and_unlock (connection->objects,
3256                                                        parent_path,
3257                                                        child_entries);
3258 }
3259
3260 static DBusDataSlotAllocator slot_allocator;
3261 _DBUS_DEFINE_GLOBAL_LOCK (connection_slots);
3262
3263 /**
3264  * Allocates an integer ID to be used for storing application-specific
3265  * data on any DBusConnection. The allocated ID may then be used
3266  * with dbus_connection_set_data() and dbus_connection_get_data().
3267  * The passed-in slot must be initialized to -1, and is filled in
3268  * with the slot ID. If the passed-in slot is not -1, it's assumed
3269  * to be already allocated, and its refcount is incremented.
3270  * 
3271  * The allocated slot is global, i.e. all DBusConnection objects will
3272  * have a slot with the given integer ID reserved.
3273  *
3274  * @param slot_p address of a global variable storing the slot
3275  * @returns #FALSE on failure (no memory)
3276  */
3277 dbus_bool_t
3278 dbus_connection_allocate_data_slot (dbus_int32_t *slot_p)
3279 {
3280   return _dbus_data_slot_allocator_alloc (&slot_allocator,
3281                                           _DBUS_LOCK_NAME (connection_slots),
3282                                           slot_p);
3283 }
3284
3285 /**
3286  * Deallocates a global ID for connection data slots.
3287  * dbus_connection_get_data() and dbus_connection_set_data() may no
3288  * longer be used with this slot.  Existing data stored on existing
3289  * DBusConnection objects will be freed when the connection is
3290  * finalized, but may not be retrieved (and may only be replaced if
3291  * someone else reallocates the slot).  When the refcount on the
3292  * passed-in slot reaches 0, it is set to -1.
3293  *
3294  * @param slot_p address storing the slot to deallocate
3295  */
3296 void
3297 dbus_connection_free_data_slot (dbus_int32_t *slot_p)
3298 {
3299   _dbus_return_if_fail (*slot_p >= 0);
3300   
3301   _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
3302 }
3303
3304 /**
3305  * Stores a pointer on a DBusConnection, along
3306  * with an optional function to be used for freeing
3307  * the data when the data is set again, or when
3308  * the connection is finalized. The slot number
3309  * must have been allocated with dbus_connection_allocate_data_slot().
3310  *
3311  * @param connection the connection
3312  * @param slot the slot number
3313  * @param data the data to store
3314  * @param free_data_func finalizer function for the data
3315  * @returns #TRUE if there was enough memory to store the data
3316  */
3317 dbus_bool_t
3318 dbus_connection_set_data (DBusConnection   *connection,
3319                           dbus_int32_t      slot,
3320                           void             *data,
3321                           DBusFreeFunction  free_data_func)
3322 {
3323   DBusFreeFunction old_free_func;
3324   void *old_data;
3325   dbus_bool_t retval;
3326
3327   _dbus_return_val_if_fail (connection != NULL, FALSE);
3328   _dbus_return_val_if_fail (slot >= 0, FALSE);
3329   
3330   CONNECTION_LOCK (connection);
3331
3332   retval = _dbus_data_slot_list_set (&slot_allocator,
3333                                      &connection->slot_list,
3334                                      slot, data, free_data_func,
3335                                      &old_free_func, &old_data);
3336   
3337   CONNECTION_UNLOCK (connection);
3338
3339   if (retval)
3340     {
3341       /* Do the actual free outside the connection lock */
3342       if (old_free_func)
3343         (* old_free_func) (old_data);
3344     }
3345
3346   return retval;
3347 }
3348
3349 /**
3350  * Retrieves data previously set with dbus_connection_set_data().
3351  * The slot must still be allocated (must not have been freed).
3352  *
3353  * @param connection the connection
3354  * @param slot the slot to get data from
3355  * @returns the data, or #NULL if not found
3356  */
3357 void*
3358 dbus_connection_get_data (DBusConnection   *connection,
3359                           dbus_int32_t      slot)
3360 {
3361   void *res;
3362
3363   _dbus_return_val_if_fail (connection != NULL, NULL);
3364   
3365   CONNECTION_LOCK (connection);
3366
3367   res = _dbus_data_slot_list_get (&slot_allocator,
3368                                   &connection->slot_list,
3369                                   slot);
3370   
3371   CONNECTION_UNLOCK (connection);
3372
3373   return res;
3374 }
3375
3376 /**
3377  * This function sets a global flag for whether dbus_connection_new()
3378  * will set SIGPIPE behavior to SIG_IGN.
3379  *
3380  * @param will_modify_sigpipe #TRUE to allow sigpipe to be set to SIG_IGN
3381  */
3382 void
3383 dbus_connection_set_change_sigpipe (dbus_bool_t will_modify_sigpipe)
3384 {  
3385   _dbus_modify_sigpipe = will_modify_sigpipe != FALSE;
3386 }
3387
3388 /**
3389  * Specifies the maximum size message this connection is allowed to
3390  * receive. Larger messages will result in disconnecting the
3391  * connection.
3392  * 
3393  * @param connection a #DBusConnection
3394  * @param size maximum message size the connection can receive, in bytes
3395  */
3396 void
3397 dbus_connection_set_max_message_size (DBusConnection *connection,
3398                                       long            size)
3399 {
3400   _dbus_return_if_fail (connection != NULL);
3401   
3402   CONNECTION_LOCK (connection);
3403   _dbus_transport_set_max_message_size (connection->transport,
3404                                         size);
3405   CONNECTION_UNLOCK (connection);
3406 }
3407
3408 /**
3409  * Gets the value set by dbus_connection_set_max_message_size().
3410  *
3411  * @param connection the connection
3412  * @returns the max size of a single message
3413  */
3414 long
3415 dbus_connection_get_max_message_size (DBusConnection *connection)
3416 {
3417   long res;
3418
3419   _dbus_return_val_if_fail (connection != NULL, 0);
3420   
3421   CONNECTION_LOCK (connection);
3422   res = _dbus_transport_get_max_message_size (connection->transport);
3423   CONNECTION_UNLOCK (connection);
3424   return res;
3425 }
3426
3427 /**
3428  * Sets the maximum total number of bytes that can be used for all messages
3429  * received on this connection. Messages count toward the maximum until
3430  * they are finalized. When the maximum is reached, the connection will
3431  * not read more data until some messages are finalized.
3432  *
3433  * The semantics of the maximum are: if outstanding messages are
3434  * already above the maximum, additional messages will not be read.
3435  * The semantics are not: if the next message would cause us to exceed
3436  * the maximum, we don't read it. The reason is that we don't know the
3437  * size of a message until after we read it.
3438  *
3439  * Thus, the max live messages size can actually be exceeded
3440  * by up to the maximum size of a single message.
3441  * 
3442  * Also, if we read say 1024 bytes off the wire in a single read(),
3443  * and that contains a half-dozen small messages, we may exceed the
3444  * size max by that amount. But this should be inconsequential.
3445  *
3446  * This does imply that we can't call read() with a buffer larger
3447  * than we're willing to exceed this limit by.
3448  *
3449  * @param connection the connection
3450  * @param size the maximum size in bytes of all outstanding messages
3451  */
3452 void
3453 dbus_connection_set_max_received_size (DBusConnection *connection,
3454                                        long            size)
3455 {
3456   _dbus_return_if_fail (connection != NULL);
3457   
3458   CONNECTION_LOCK (connection);
3459   _dbus_transport_set_max_received_size (connection->transport,
3460                                          size);
3461   CONNECTION_UNLOCK (connection);
3462 }
3463
3464 /**
3465  * Gets the value set by dbus_connection_set_max_received_size().
3466  *
3467  * @param connection the connection
3468  * @returns the max size of all live messages
3469  */
3470 long
3471 dbus_connection_get_max_received_size (DBusConnection *connection)
3472 {
3473   long res;
3474
3475   _dbus_return_val_if_fail (connection != NULL, 0);
3476   
3477   CONNECTION_LOCK (connection);
3478   res = _dbus_transport_get_max_received_size (connection->transport);
3479   CONNECTION_UNLOCK (connection);
3480   return res;
3481 }
3482
3483 /**
3484  * Gets the approximate size in bytes of all messages in the outgoing
3485  * message queue. The size is approximate in that you shouldn't use
3486  * it to decide how many bytes to read off the network or anything
3487  * of that nature, as optimizations may choose to tell small white lies
3488  * to avoid performance overhead.
3489  *
3490  * @param connection the connection
3491  * @returns the number of bytes that have been queued up but not sent
3492  */
3493 long
3494 dbus_connection_get_outgoing_size (DBusConnection *connection)
3495 {
3496   long res;
3497
3498   _dbus_return_val_if_fail (connection != NULL, 0);
3499   
3500   CONNECTION_LOCK (connection);
3501   res = _dbus_counter_get_value (connection->outgoing_counter);
3502   CONNECTION_UNLOCK (connection);
3503   return res;
3504 }
3505
3506 /** @} */