2005-02-26 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, 2004, 2005  Red Hat Inc.
5  *
6  * Licensed under the Academic Free License version 2.1
7  * 
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  * 
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  */
23
24 #include <config.h>
25 #include "dbus-shared.h"
26 #include "dbus-connection.h"
27 #include "dbus-list.h"
28 #include "dbus-timeout.h"
29 #include "dbus-transport.h"
30 #include "dbus-watch.h"
31 #include "dbus-connection-internal.h"
32 #include "dbus-list.h"
33 #include "dbus-hash.h"
34 #include "dbus-message-internal.h"
35 #include "dbus-threads.h"
36 #include "dbus-protocol.h"
37 #include "dbus-dataslot.h"
38 #include "dbus-string.h"
39 #include "dbus-pending-call.h"
40 #include "dbus-object-tree.h"
41 #include "dbus-threads-internal.h"
42
43 #ifdef DBUS_DISABLE_CHECKS
44 #define TOOK_LOCK_CHECK(connection)
45 #define RELEASING_LOCK_CHECK(connection)
46 #define HAVE_LOCK_CHECK(connection)
47 #else
48 #define TOOK_LOCK_CHECK(connection) do {                \
49     _dbus_assert (!(connection)->have_connection_lock); \
50     (connection)->have_connection_lock = TRUE;          \
51   } while (0)
52 #define RELEASING_LOCK_CHECK(connection) do {            \
53     _dbus_assert ((connection)->have_connection_lock);   \
54     (connection)->have_connection_lock = FALSE;          \
55   } while (0)
56 #define HAVE_LOCK_CHECK(connection)        _dbus_assert ((connection)->have_connection_lock)
57 /* A "DO_NOT_HAVE_LOCK_CHECK" is impossible since we need the lock to check the flag */
58 #endif
59
60 #define TRACE_LOCKS 1
61
62 #define CONNECTION_LOCK(connection)   do {                                      \
63     if (TRACE_LOCKS) { _dbus_verbose ("  LOCK: %s\n", _DBUS_FUNCTION_NAME); }   \
64     _dbus_mutex_lock ((connection)->mutex);                                      \
65     TOOK_LOCK_CHECK (connection);                                               \
66   } while (0)
67
68 #define CONNECTION_UNLOCK(connection) do {                                              \
69     if (TRACE_LOCKS) { _dbus_verbose ("  UNLOCK: %s\n", _DBUS_FUNCTION_NAME);  }        \
70     RELEASING_LOCK_CHECK (connection);                                                  \
71     _dbus_mutex_unlock ((connection)->mutex);                                            \
72   } while (0)
73
74 #define DISPATCH_STATUS_NAME(s)                                            \
75                      ((s) == DBUS_DISPATCH_COMPLETE ? "complete" :         \
76                       (s) == DBUS_DISPATCH_DATA_REMAINS ? "data remains" : \
77                       (s) == DBUS_DISPATCH_NEED_MEMORY ? "need memory" :   \
78                       "???")
79
80 /**
81  * @defgroup DBusConnection DBusConnection
82  * @ingroup  DBus
83  * @brief Connection to another application
84  *
85  * A DBusConnection represents a connection to another
86  * application. Messages can be sent and received via this connection.
87  * The other application may be a message bus; for convenience, the
88  * function dbus_bus_get() is provided to automatically open a
89  * connection to the well-known message buses.
90  * 
91  * In brief a DBusConnection is a message queue associated with some
92  * message transport mechanism such as a socket.  The connection
93  * maintains a queue of incoming messages and a queue of outgoing
94  * messages.
95  *
96  * Incoming messages are normally processed by calling
97  * dbus_connection_dispatch(). dbus_connection_dispatch() runs any
98  * handlers registered for the topmost message in the message queue,
99  * then discards the message, then returns.
100  * 
101  * dbus_connection_get_dispatch_status() indicates whether
102  * messages are currently in the queue that need dispatching.
103  * dbus_connection_set_dispatch_status_function() allows
104  * you to set a function to be used to monitor the dispatch status.
105  *
106  * If you're using GLib or Qt add-on libraries for D-BUS, there are
107  * special convenience APIs in those libraries that hide
108  * all the details of dispatch and watch/timeout monitoring.
109  * For example, dbus_connection_setup_with_g_main().
110  *
111  * If you aren't using these add-on libraries, you have to manually
112  * call dbus_connection_set_dispatch_status_function(),
113  * dbus_connection_set_watch_functions(),
114  * dbus_connection_set_timeout_functions() providing appropriate
115  * functions to integrate the connection with your application's main
116  * loop.
117  *
118  * When you use dbus_connection_send() or one of its variants to send
119  * a message, the message is added to the outgoing queue.  It's
120  * actually written to the network later; either in
121  * dbus_watch_handle() invoked by your main loop, or in
122  * dbus_connection_flush() which blocks until it can write out the
123  * entire outgoing queue. The GLib/Qt add-on libraries again
124  * handle the details here for you by setting up watch functions.
125  *
126  * When a connection is disconnected, you are guaranteed to get a
127  * signal "Disconnected" from the interface
128  * #DBUS_INTERFACE_LOCAL, path
129  * #DBUS_PATH_LOCAL.
130  *
131  * You may not drop the last reference to a #DBusConnection
132  * until that connection has been disconnected.
133  *
134  * You may dispatch the unprocessed incoming message queue even if the
135  * connection is disconnected. However, "Disconnected" will always be
136  * the last message in the queue (obviously no messages are received
137  * after disconnection).
138  *
139  * #DBusConnection has thread locks and drops them when invoking user
140  * callbacks, so in general is transparently threadsafe. However,
141  * #DBusMessage does NOT have thread locks; you must not send the same
142  * message to multiple #DBusConnection that will be used from
143  * different threads.
144  */
145
146 /**
147  * @defgroup DBusConnectionInternals DBusConnection implementation details
148  * @ingroup  DBusInternals
149  * @brief Implementation details of DBusConnection
150  *
151  * @{
152  */
153
154 /**
155  * Internal struct representing a message filter function 
156  */
157 typedef struct DBusMessageFilter DBusMessageFilter;
158
159 /**
160  * Internal struct representing a message filter function 
161  */
162 struct DBusMessageFilter
163 {
164   DBusAtomic refcount; /**< Reference count */
165   DBusHandleMessageFunction function; /**< Function to call to filter */
166   void *user_data; /**< User data for the function */
167   DBusFreeFunction free_user_data_function; /**< Function to free the user data */
168 };
169
170
171 /**
172  * Internals of DBusPreallocatedSend
173  */
174 struct DBusPreallocatedSend
175 {
176   DBusConnection *connection; /**< Connection we'd send the message to */
177   DBusList *queue_link;       /**< Preallocated link in the queue */
178   DBusList *counter_link;     /**< Preallocated link in the resource counter */
179 };
180
181 static dbus_bool_t _dbus_modify_sigpipe = TRUE;
182
183 /**
184  * Implementation details of DBusConnection. All fields are private.
185  */
186 struct DBusConnection
187 {
188   DBusAtomic refcount; /**< Reference count. */
189
190   DBusMutex *mutex; /**< Lock on the entire DBusConnection */
191
192   DBusMutex *dispatch_mutex;     /**< Protects dispatch_acquired */
193   DBusCondVar *dispatch_cond;    /**< Notify when dispatch_acquired is available */
194   DBusMutex *io_path_mutex;      /**< Protects io_path_acquired */
195   DBusCondVar *io_path_cond;     /**< Notify when io_path_acquired is available */
196   
197   DBusList *outgoing_messages; /**< Queue of messages we need to send, send the end of the list first. */
198   DBusList *incoming_messages; /**< Queue of messages we have received, end of the list received most recently. */
199
200   DBusMessage *message_borrowed; /**< Filled in if the first incoming message has been borrowed;
201                                   *   dispatch_acquired will be set by the borrower
202                                   */
203   
204   int n_outgoing;              /**< Length of outgoing queue. */
205   int n_incoming;              /**< Length of incoming queue. */
206
207   DBusCounter *outgoing_counter; /**< Counts size of outgoing messages. */
208   
209   DBusTransport *transport;    /**< Object that sends/receives messages over network. */
210   DBusWatchList *watches;      /**< Stores active watches. */
211   DBusTimeoutList *timeouts;   /**< Stores active timeouts. */
212   
213   DBusList *filter_list;        /**< List of filters. */
214
215   DBusDataSlotList slot_list;   /**< Data stored by allocated integer ID */
216
217   DBusHashTable *pending_replies;  /**< Hash of message serials to #DBusPendingCall. */  
218   
219   dbus_uint32_t client_serial;       /**< Client serial. Increments each time a message is sent  */
220   DBusList *disconnect_message_link; /**< Preallocated list node for queueing the disconnection message */
221
222   DBusWakeupMainFunction wakeup_main_function; /**< Function to wake up the mainloop  */
223   void *wakeup_main_data; /**< Application data for wakeup_main_function */
224   DBusFreeFunction free_wakeup_main_data; /**< free wakeup_main_data */
225
226   DBusDispatchStatusFunction dispatch_status_function; /**< Function on dispatch status changes  */
227   void *dispatch_status_data; /**< Application data for dispatch_status_function */
228   DBusFreeFunction free_dispatch_status_data; /**< free dispatch_status_data */
229
230   DBusDispatchStatus last_dispatch_status; /**< The last dispatch status we reported to the application. */
231
232   DBusList *link_cache; /**< A cache of linked list links to prevent contention
233                          *   for the global linked list mempool lock
234                          */
235   DBusObjectTree *objects; /**< Object path handlers registered with this connection */
236
237   char *server_guid; /**< GUID of server if we are in shared_connections, #NULL if server GUID is unknown or connection is private */
238
239   unsigned int shareable : 1; /**< #TRUE if connection can go in shared_connections once we know the GUID */
240   
241   unsigned int dispatch_acquired : 1; /**< Someone has dispatch path (can drain incoming queue) */
242   unsigned int io_path_acquired : 1;  /**< Someone has transport io path (can use the transport to read/write messages) */
243   
244   unsigned int exit_on_disconnect : 1; /**< If #TRUE, exit after handling disconnect signal */
245   
246 #ifndef DBUS_DISABLE_CHECKS
247   unsigned int have_connection_lock : 1; /**< Used to check locking */
248 #endif
249   
250 #ifndef DBUS_DISABLE_CHECKS
251   int generation; /**< _dbus_current_generation that should correspond to this connection */
252 #endif 
253 };
254
255 static DBusDispatchStatus _dbus_connection_get_dispatch_status_unlocked      (DBusConnection     *connection);
256 static void               _dbus_connection_update_dispatch_status_and_unlock (DBusConnection     *connection,
257                                                                               DBusDispatchStatus  new_status);
258 static void               _dbus_connection_last_unref                        (DBusConnection     *connection);
259 static void               _dbus_connection_acquire_dispatch                  (DBusConnection     *connection);
260 static void               _dbus_connection_release_dispatch                  (DBusConnection     *connection);
261
262 static DBusMessageFilter *
263 _dbus_message_filter_ref (DBusMessageFilter *filter)
264 {
265   _dbus_assert (filter->refcount.value > 0);
266   _dbus_atomic_inc (&filter->refcount);
267
268   return filter;
269 }
270
271 static void
272 _dbus_message_filter_unref (DBusMessageFilter *filter)
273 {
274   _dbus_assert (filter->refcount.value > 0);
275
276   if (_dbus_atomic_dec (&filter->refcount) == 1)
277     {
278       if (filter->free_user_data_function)
279         (* filter->free_user_data_function) (filter->user_data);
280       
281       dbus_free (filter);
282     }
283 }
284
285 /**
286  * Acquires the connection lock.
287  *
288  * @param connection the connection.
289  */
290 void
291 _dbus_connection_lock (DBusConnection *connection)
292 {
293   CONNECTION_LOCK (connection);
294 }
295
296 /**
297  * Releases the connection lock.
298  *
299  * @param connection the connection.
300  */
301 void
302 _dbus_connection_unlock (DBusConnection *connection)
303 {
304   CONNECTION_UNLOCK (connection);
305 }
306
307 /**
308  * Wakes up the main loop if it is sleeping
309  * Needed if we're e.g. queueing outgoing messages
310  * on a thread while the mainloop sleeps.
311  *
312  * @param connection the connection.
313  */
314 static void
315 _dbus_connection_wakeup_mainloop (DBusConnection *connection)
316 {
317   if (connection->wakeup_main_function)
318     (*connection->wakeup_main_function) (connection->wakeup_main_data);
319 }
320
321 #ifdef DBUS_BUILD_TESTS
322 /* For now this function isn't used */
323 /**
324  * Adds a message to the incoming message queue, returning #FALSE
325  * if there's insufficient memory to queue the message.
326  * Does not take over refcount of the message.
327  *
328  * @param connection the connection.
329  * @param message the message to queue.
330  * @returns #TRUE on success.
331  */
332 dbus_bool_t
333 _dbus_connection_queue_received_message (DBusConnection *connection,
334                                          DBusMessage    *message)
335 {
336   DBusList *link;
337
338   link = _dbus_list_alloc_link (message);
339   if (link == NULL)
340     return FALSE;
341
342   dbus_message_ref (message);
343   _dbus_connection_queue_received_message_link (connection, link);
344
345   return TRUE;
346 }
347 #endif
348
349 /**
350  * Adds a message-containing list link to the incoming message queue,
351  * taking ownership of the link and the message's current refcount.
352  * Cannot fail due to lack of memory.
353  *
354  * @param connection the connection.
355  * @param link the message link to queue.
356  */
357 void
358 _dbus_connection_queue_received_message_link (DBusConnection  *connection,
359                                               DBusList        *link)
360 {
361   DBusPendingCall *pending;
362   dbus_int32_t reply_serial;
363   DBusMessage *message;
364   
365   _dbus_assert (_dbus_transport_get_is_authenticated (connection->transport));
366   
367   _dbus_list_append_link (&connection->incoming_messages,
368                           link);
369   message = link->data;
370
371   /* If this is a reply we're waiting on, remove timeout for it */
372   reply_serial = dbus_message_get_reply_serial (message);
373   if (reply_serial != -1)
374     {
375       pending = _dbus_hash_table_lookup_int (connection->pending_replies,
376                                              reply_serial);
377       if (pending != NULL)
378         {
379           if (pending->timeout_added)
380             _dbus_connection_remove_timeout (connection,
381                                              pending->timeout);
382
383           pending->timeout_added = FALSE;
384         }
385     }
386   
387   connection->n_incoming += 1;
388
389   _dbus_connection_wakeup_mainloop (connection);
390   
391   _dbus_verbose ("Message %p (%d %s %s %s '%s' reply to %u) added to incoming queue %p, %d incoming\n",
392                  message,
393                  dbus_message_get_type (message),
394                  dbus_message_get_path (message),
395                  dbus_message_get_interface (message) ?
396                  dbus_message_get_interface (message) :
397                  "no interface",
398                  dbus_message_get_member (message) ?
399                  dbus_message_get_member (message) :
400                  "no member",
401                  dbus_message_get_signature (message),
402                  dbus_message_get_reply_serial (message),
403                  connection,
404                  connection->n_incoming);
405 }
406
407 /**
408  * Adds a link + message to the incoming message queue.
409  * Can't fail. Takes ownership of both link and message.
410  *
411  * @param connection the connection.
412  * @param link the list node and message to queue.
413  *
414  * @todo This needs to wake up the mainloop if it is in
415  * a poll/select and this is a multithreaded app.
416  */
417 static void
418 _dbus_connection_queue_synthesized_message_link (DBusConnection *connection,
419                                                  DBusList *link)
420 {
421   HAVE_LOCK_CHECK (connection);
422   
423   _dbus_list_append_link (&connection->incoming_messages, link);
424
425   connection->n_incoming += 1;
426
427   _dbus_connection_wakeup_mainloop (connection);
428   
429   _dbus_verbose ("Synthesized message %p added to incoming queue %p, %d incoming\n",
430                  link->data, connection, connection->n_incoming);
431 }
432
433
434 /**
435  * Checks whether there are messages in the outgoing message queue.
436  * Called with connection lock held.
437  *
438  * @param connection the connection.
439  * @returns #TRUE if the outgoing queue is non-empty.
440  */
441 dbus_bool_t
442 _dbus_connection_has_messages_to_send_unlocked (DBusConnection *connection)
443 {
444   HAVE_LOCK_CHECK (connection);
445   return connection->outgoing_messages != NULL;
446 }
447
448 /**
449  * Checks whether there are messages in the outgoing message queue.
450  *
451  * @param connection the connection.
452  * @returns #TRUE if the outgoing queue is non-empty.
453  */
454 dbus_bool_t
455 dbus_connection_has_messages_to_send (DBusConnection *connection)
456 {
457   dbus_bool_t v;
458   
459   _dbus_return_val_if_fail (connection != NULL, FALSE);
460
461   CONNECTION_LOCK (connection);
462   v = _dbus_connection_has_messages_to_send_unlocked (connection);
463   CONNECTION_UNLOCK (connection);
464
465   return v;
466 }
467
468 /**
469  * Gets the next outgoing message. The message remains in the
470  * queue, and the caller does not own a reference to it.
471  *
472  * @param connection the connection.
473  * @returns the message to be sent.
474  */ 
475 DBusMessage*
476 _dbus_connection_get_message_to_send (DBusConnection *connection)
477 {
478   HAVE_LOCK_CHECK (connection);
479   
480   return _dbus_list_get_last (&connection->outgoing_messages);
481 }
482
483 /**
484  * Notifies the connection that a message has been sent, so the
485  * message can be removed from the outgoing queue.
486  * Called with the connection lock held.
487  *
488  * @param connection the connection.
489  * @param message the message that was sent.
490  */
491 void
492 _dbus_connection_message_sent (DBusConnection *connection,
493                                DBusMessage    *message)
494 {
495   DBusList *link;
496
497   HAVE_LOCK_CHECK (connection);
498   
499   /* This can be called before we even complete authentication, since
500    * it's called on disconnect to clean up the outgoing queue.
501    * It's also called as we successfully send each message.
502    */
503   
504   link = _dbus_list_get_last_link (&connection->outgoing_messages);
505   _dbus_assert (link != NULL);
506   _dbus_assert (link->data == message);
507
508   /* Save this link in the link cache */
509   _dbus_list_unlink (&connection->outgoing_messages,
510                      link);
511   _dbus_list_prepend_link (&connection->link_cache, link);
512   
513   connection->n_outgoing -= 1;
514
515   _dbus_verbose ("Message %p (%d %s %s %s '%s') removed from outgoing queue %p, %d left to send\n",
516                  message,
517                  dbus_message_get_type (message),
518                  dbus_message_get_path (message),
519                  dbus_message_get_interface (message) ?
520                  dbus_message_get_interface (message) :
521                  "no interface",
522                  dbus_message_get_member (message) ?
523                  dbus_message_get_member (message) :
524                  "no member",
525                  dbus_message_get_signature (message),
526                  connection, connection->n_outgoing);
527
528   /* Save this link in the link cache also */
529   _dbus_message_remove_size_counter (message, connection->outgoing_counter,
530                                      &link);
531   _dbus_list_prepend_link (&connection->link_cache, link);
532   
533   dbus_message_unref (message);
534 }
535
536 typedef dbus_bool_t (* DBusWatchAddFunction)     (DBusWatchList *list,
537                                                   DBusWatch     *watch);
538 typedef void        (* DBusWatchRemoveFunction)  (DBusWatchList *list,
539                                                   DBusWatch     *watch);
540 typedef void        (* DBusWatchToggleFunction)  (DBusWatchList *list,
541                                                   DBusWatch     *watch,
542                                                   dbus_bool_t    enabled);
543
544 static dbus_bool_t
545 protected_change_watch (DBusConnection         *connection,
546                         DBusWatch              *watch,
547                         DBusWatchAddFunction    add_function,
548                         DBusWatchRemoveFunction remove_function,
549                         DBusWatchToggleFunction toggle_function,
550                         dbus_bool_t             enabled)
551 {
552   DBusWatchList *watches;
553   dbus_bool_t retval;
554   
555   HAVE_LOCK_CHECK (connection);
556
557   /* This isn't really safe or reasonable; a better pattern is the "do everything, then
558    * drop lock and call out" one; but it has to be propagated up through all callers
559    */
560   
561   watches = connection->watches;
562   if (watches)
563     {
564       connection->watches = NULL;
565       _dbus_connection_ref_unlocked (connection);
566       CONNECTION_UNLOCK (connection);
567
568       if (add_function)
569         retval = (* add_function) (watches, watch);
570       else if (remove_function)
571         {
572           retval = TRUE;
573           (* remove_function) (watches, watch);
574         }
575       else
576         {
577           retval = TRUE;
578           (* toggle_function) (watches, watch, enabled);
579         }
580       
581       CONNECTION_LOCK (connection);
582       connection->watches = watches;
583       _dbus_connection_unref_unlocked (connection);
584
585       return retval;
586     }
587   else
588     return FALSE;
589 }
590      
591
592 /**
593  * Adds a watch using the connection's DBusAddWatchFunction if
594  * available. Otherwise records the watch to be added when said
595  * function is available. Also re-adds the watch if the
596  * DBusAddWatchFunction changes. May fail due to lack of memory.
597  *
598  * @param connection the connection.
599  * @param watch the watch to add.
600  * @returns #TRUE on success.
601  */
602 dbus_bool_t
603 _dbus_connection_add_watch (DBusConnection *connection,
604                             DBusWatch      *watch)
605 {
606   return protected_change_watch (connection, watch,
607                                  _dbus_watch_list_add_watch,
608                                  NULL, NULL, FALSE);
609 }
610
611 /**
612  * Removes a watch using the connection's DBusRemoveWatchFunction
613  * if available. It's an error to call this function on a watch
614  * that was not previously added.
615  *
616  * @param connection the connection.
617  * @param watch the watch to remove.
618  */
619 void
620 _dbus_connection_remove_watch (DBusConnection *connection,
621                                DBusWatch      *watch)
622 {
623   protected_change_watch (connection, watch,
624                           NULL,
625                           _dbus_watch_list_remove_watch,
626                           NULL, FALSE);
627 }
628
629 /**
630  * Toggles a watch and notifies app via connection's
631  * DBusWatchToggledFunction if available. It's an error to call this
632  * function on a watch that was not previously added.
633  * Connection lock should be held when calling this.
634  *
635  * @param connection the connection.
636  * @param watch the watch to toggle.
637  * @param enabled whether to enable or disable
638  */
639 void
640 _dbus_connection_toggle_watch (DBusConnection *connection,
641                                DBusWatch      *watch,
642                                dbus_bool_t     enabled)
643 {
644   _dbus_assert (watch != NULL);
645
646   protected_change_watch (connection, watch,
647                           NULL, NULL,
648                           _dbus_watch_list_toggle_watch,
649                           enabled);
650 }
651
652 typedef dbus_bool_t (* DBusTimeoutAddFunction)    (DBusTimeoutList *list,
653                                                    DBusTimeout     *timeout);
654 typedef void        (* DBusTimeoutRemoveFunction) (DBusTimeoutList *list,
655                                                    DBusTimeout     *timeout);
656 typedef void        (* DBusTimeoutToggleFunction) (DBusTimeoutList *list,
657                                                    DBusTimeout     *timeout,
658                                                    dbus_bool_t      enabled);
659
660 static dbus_bool_t
661 protected_change_timeout (DBusConnection           *connection,
662                           DBusTimeout              *timeout,
663                           DBusTimeoutAddFunction    add_function,
664                           DBusTimeoutRemoveFunction remove_function,
665                           DBusTimeoutToggleFunction toggle_function,
666                           dbus_bool_t               enabled)
667 {
668   DBusTimeoutList *timeouts;
669   dbus_bool_t retval;
670   
671   HAVE_LOCK_CHECK (connection);
672
673   /* This isn't really safe or reasonable; a better pattern is the "do everything, then
674    * drop lock and call out" one; but it has to be propagated up through all callers
675    */
676   
677   timeouts = connection->timeouts;
678   if (timeouts)
679     {
680       connection->timeouts = NULL;
681       _dbus_connection_ref_unlocked (connection);
682       CONNECTION_UNLOCK (connection);
683
684       if (add_function)
685         retval = (* add_function) (timeouts, timeout);
686       else if (remove_function)
687         {
688           retval = TRUE;
689           (* remove_function) (timeouts, timeout);
690         }
691       else
692         {
693           retval = TRUE;
694           (* toggle_function) (timeouts, timeout, enabled);
695         }
696       
697       CONNECTION_LOCK (connection);
698       connection->timeouts = timeouts;
699       _dbus_connection_unref_unlocked (connection);
700
701       return retval;
702     }
703   else
704     return FALSE;
705 }
706
707 /**
708  * Adds a timeout using the connection's DBusAddTimeoutFunction if
709  * available. Otherwise records the timeout to be added when said
710  * function is available. Also re-adds the timeout if the
711  * DBusAddTimeoutFunction changes. May fail due to lack of memory.
712  * The timeout will fire repeatedly until removed.
713  *
714  * @param connection the connection.
715  * @param timeout the timeout to add.
716  * @returns #TRUE on success.
717  */
718 dbus_bool_t
719 _dbus_connection_add_timeout (DBusConnection *connection,
720                               DBusTimeout    *timeout)
721 {
722   return protected_change_timeout (connection, timeout,
723                                    _dbus_timeout_list_add_timeout,
724                                    NULL, NULL, FALSE);
725 }
726
727 /**
728  * Removes a timeout using the connection's DBusRemoveTimeoutFunction
729  * if available. It's an error to call this function on a timeout
730  * that was not previously added.
731  *
732  * @param connection the connection.
733  * @param timeout the timeout to remove.
734  */
735 void
736 _dbus_connection_remove_timeout (DBusConnection *connection,
737                                  DBusTimeout    *timeout)
738 {
739   protected_change_timeout (connection, timeout,
740                             NULL,
741                             _dbus_timeout_list_remove_timeout,
742                             NULL, FALSE);
743 }
744
745 /**
746  * Toggles a timeout and notifies app via connection's
747  * DBusTimeoutToggledFunction if available. It's an error to call this
748  * function on a timeout that was not previously added.
749  *
750  * @param connection the connection.
751  * @param timeout the timeout to toggle.
752  * @param enabled whether to enable or disable
753  */
754 void
755 _dbus_connection_toggle_timeout (DBusConnection   *connection,
756                                  DBusTimeout      *timeout,
757                                  dbus_bool_t       enabled)
758 {
759   protected_change_timeout (connection, timeout,
760                             NULL, NULL,
761                             _dbus_timeout_list_toggle_timeout,
762                             enabled);
763 }
764
765 static dbus_bool_t
766 _dbus_connection_attach_pending_call_unlocked (DBusConnection  *connection,
767                                                DBusPendingCall *pending)
768 {
769   HAVE_LOCK_CHECK (connection);
770   
771   _dbus_assert (pending->reply_serial != 0);
772
773   if (!_dbus_connection_add_timeout (connection, pending->timeout))
774     return FALSE;
775   
776   if (!_dbus_hash_table_insert_int (connection->pending_replies,
777                                     pending->reply_serial,
778                                     pending))
779     {
780       _dbus_connection_remove_timeout (connection, pending->timeout);
781
782       HAVE_LOCK_CHECK (connection);
783       return FALSE;
784     }
785   
786   pending->timeout_added = TRUE;
787   pending->connection = connection;
788
789   dbus_pending_call_ref (pending);
790
791   HAVE_LOCK_CHECK (connection);
792   
793   return TRUE;
794 }
795
796 static void
797 free_pending_call_on_hash_removal (void *data)
798 {
799   DBusPendingCall *pending;
800   
801   if (data == NULL)
802     return;
803
804   pending = data;
805
806   if (pending->connection)
807     {
808       if (pending->timeout_added)
809         {
810           _dbus_connection_remove_timeout (pending->connection,
811                                            pending->timeout);
812           pending->timeout_added = FALSE;
813         }
814
815       pending->connection = NULL;
816       
817       dbus_pending_call_unref (pending);
818     }
819 }
820
821 static void
822 _dbus_connection_detach_pending_call_unlocked (DBusConnection  *connection,
823                                                DBusPendingCall *pending)
824 {
825   /* Can't have a destroy notifier on the pending call if we're going to do this */
826
827   dbus_pending_call_ref (pending);
828   _dbus_hash_table_remove_int (connection->pending_replies,
829                                pending->reply_serial);
830   _dbus_assert (pending->connection == NULL);
831   dbus_pending_call_unref (pending);
832 }
833
834 static void
835 _dbus_connection_detach_pending_call_and_unlock (DBusConnection  *connection,
836                                                  DBusPendingCall *pending)
837 {
838   /* The idea here is to avoid finalizing the pending call
839    * with the lock held, since there's a destroy notifier
840    * in pending call that goes out to application code.
841    */
842   dbus_pending_call_ref (pending);
843   _dbus_hash_table_remove_int (connection->pending_replies,
844                                pending->reply_serial);
845   _dbus_assert (pending->connection == NULL);
846   CONNECTION_UNLOCK (connection);
847   dbus_pending_call_unref (pending);
848 }
849
850 /**
851  * Removes a pending call from the connection, such that
852  * the pending reply will be ignored. May drop the last
853  * reference to the pending call.
854  *
855  * @param connection the connection
856  * @param pending the pending call
857  */
858 void
859 _dbus_connection_remove_pending_call (DBusConnection  *connection,
860                                       DBusPendingCall *pending)
861 {
862   CONNECTION_LOCK (connection);
863   _dbus_connection_detach_pending_call_and_unlock (connection, pending);
864 }
865
866 /**
867  * Completes a pending call with the given message,
868  * or if the message is #NULL, by timing out the pending call.
869  * 
870  * @param pending the pending call
871  * @param message the message to complete the call with, or #NULL
872  *  to time out the call
873  */
874 void
875 _dbus_pending_call_complete_and_unlock (DBusPendingCall *pending,
876                                         DBusMessage     *message)
877 {
878   if (message == NULL)
879     {
880       message = pending->timeout_link->data;
881       _dbus_list_clear (&pending->timeout_link);
882     }
883   else
884     dbus_message_ref (message);
885
886   _dbus_verbose ("  handing message %p (%s) to pending call serial %u\n",
887                  message,
888                  dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_RETURN ?
889                  "method return" :
890                  dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR ?
891                  "error" : "other type",
892                  pending->reply_serial);
893   
894   _dbus_assert (pending->reply == NULL);
895   _dbus_assert (pending->reply_serial == dbus_message_get_reply_serial (message));
896   pending->reply = message;
897   
898   dbus_pending_call_ref (pending); /* in case there's no app with a ref held */
899   _dbus_connection_detach_pending_call_and_unlock (pending->connection, pending);
900   
901   /* Must be called unlocked since it invokes app callback */
902   _dbus_pending_call_notify (pending);
903   dbus_pending_call_unref (pending);
904 }
905
906 /**
907  * Acquire the transporter I/O path. This must be done before
908  * doing any I/O in the transporter. May sleep and drop the
909  * IO path mutex while waiting for the I/O path.
910  *
911  * @param connection the connection.
912  * @param timeout_milliseconds maximum blocking time, or -1 for no limit.
913  * @returns TRUE if the I/O path was acquired.
914  */
915 static dbus_bool_t
916 _dbus_connection_acquire_io_path (DBusConnection *connection,
917                                   int timeout_milliseconds)
918 {
919   dbus_bool_t we_acquired;
920   
921   HAVE_LOCK_CHECK (connection);
922
923   /* We don't want the connection to vanish */
924   _dbus_connection_ref_unlocked (connection);
925
926   /* We will only touch io_path_acquired which is protected by our mutex */
927   CONNECTION_UNLOCK (connection);
928   
929   _dbus_verbose ("%s locking io_path_mutex\n", _DBUS_FUNCTION_NAME);
930   _dbus_mutex_lock (connection->io_path_mutex);
931
932   _dbus_verbose ("%s start connection->io_path_acquired = %d timeout = %d\n",
933                  _DBUS_FUNCTION_NAME, connection->io_path_acquired, timeout_milliseconds);
934
935   we_acquired = FALSE;
936   
937   if (connection->io_path_acquired)
938     {
939       if (timeout_milliseconds != -1)
940         {
941           _dbus_verbose ("%s waiting %d for IO path to be acquirable\n",
942                          _DBUS_FUNCTION_NAME, timeout_milliseconds);
943           _dbus_condvar_wait_timeout (connection->io_path_cond,
944                                       connection->io_path_mutex,
945                                       timeout_milliseconds);
946         }
947       else
948         {
949           while (connection->io_path_acquired)
950             {
951               _dbus_verbose ("%s waiting for IO path to be acquirable\n", _DBUS_FUNCTION_NAME);
952               _dbus_condvar_wait (connection->io_path_cond, connection->io_path_mutex);
953             }
954         }
955     }
956   
957   if (!connection->io_path_acquired)
958     {
959       we_acquired = TRUE;
960       connection->io_path_acquired = TRUE;
961     }
962   
963   _dbus_verbose ("%s end connection->io_path_acquired = %d we_acquired = %d\n",
964                  _DBUS_FUNCTION_NAME, connection->io_path_acquired, we_acquired);
965
966   _dbus_verbose ("%s unlocking io_path_mutex\n", _DBUS_FUNCTION_NAME);
967   _dbus_mutex_unlock (connection->io_path_mutex);
968
969   CONNECTION_LOCK (connection);
970   
971   HAVE_LOCK_CHECK (connection);
972
973   _dbus_connection_unref_unlocked (connection);
974   
975   return we_acquired;
976 }
977
978 /**
979  * Release the I/O path when you're done with it. Only call
980  * after you've acquired the I/O. Wakes up at most one thread
981  * currently waiting to acquire the I/O path.
982  *
983  * @param connection the connection.
984  */
985 static void
986 _dbus_connection_release_io_path (DBusConnection *connection)
987 {
988   HAVE_LOCK_CHECK (connection);
989   
990   _dbus_verbose ("%s locking io_path_mutex\n", _DBUS_FUNCTION_NAME);
991   _dbus_mutex_lock (connection->io_path_mutex);
992   
993   _dbus_assert (connection->io_path_acquired);
994
995   _dbus_verbose ("%s start connection->io_path_acquired = %d\n",
996                  _DBUS_FUNCTION_NAME, connection->io_path_acquired);
997   
998   connection->io_path_acquired = FALSE;
999   _dbus_condvar_wake_one (connection->io_path_cond);
1000
1001   _dbus_verbose ("%s unlocking io_path_mutex\n", _DBUS_FUNCTION_NAME);
1002   _dbus_mutex_unlock (connection->io_path_mutex);
1003 }
1004
1005 /**
1006  * Queues incoming messages and sends outgoing messages for this
1007  * connection, optionally blocking in the process. Each call to
1008  * _dbus_connection_do_iteration_unlocked() will call select() or poll() one
1009  * time and then read or write data if possible.
1010  *
1011  * The purpose of this function is to be able to flush outgoing
1012  * messages or queue up incoming messages without returning
1013  * control to the application and causing reentrancy weirdness.
1014  *
1015  * The flags parameter allows you to specify whether to
1016  * read incoming messages, write outgoing messages, or both,
1017  * and whether to block if no immediate action is possible.
1018  *
1019  * The timeout_milliseconds parameter does nothing unless the
1020  * iteration is blocking.
1021  *
1022  * If there are no outgoing messages and DBUS_ITERATION_DO_READING
1023  * wasn't specified, then it's impossible to block, even if
1024  * you specify DBUS_ITERATION_BLOCK; in that case the function
1025  * returns immediately.
1026  *
1027  * Called with connection lock held.
1028  * 
1029  * @param connection the connection.
1030  * @param flags iteration flags.
1031  * @param timeout_milliseconds maximum blocking time, or -1 for no limit.
1032  */
1033 void
1034 _dbus_connection_do_iteration_unlocked (DBusConnection *connection,
1035                                         unsigned int    flags,
1036                                         int             timeout_milliseconds)
1037 {
1038   _dbus_verbose ("%s start\n", _DBUS_FUNCTION_NAME);
1039   
1040   HAVE_LOCK_CHECK (connection);
1041   
1042   if (connection->n_outgoing == 0)
1043     flags &= ~DBUS_ITERATION_DO_WRITING;
1044
1045   if (_dbus_connection_acquire_io_path (connection,
1046                                         (flags & DBUS_ITERATION_BLOCK) ? timeout_milliseconds : 0))
1047     {
1048       HAVE_LOCK_CHECK (connection);
1049       
1050       _dbus_transport_do_iteration (connection->transport,
1051                                     flags, timeout_milliseconds);
1052       _dbus_connection_release_io_path (connection);
1053     }
1054
1055   HAVE_LOCK_CHECK (connection);
1056
1057   _dbus_verbose ("%s end\n", _DBUS_FUNCTION_NAME);
1058 }
1059
1060 /**
1061  * Creates a new connection for the given transport.  A transport
1062  * represents a message stream that uses some concrete mechanism, such
1063  * as UNIX domain sockets. May return #NULL if insufficient
1064  * memory exists to create the connection.
1065  *
1066  * @param transport the transport.
1067  * @returns the new connection, or #NULL on failure.
1068  */
1069 DBusConnection*
1070 _dbus_connection_new_for_transport (DBusTransport *transport)
1071 {
1072   DBusConnection *connection;
1073   DBusWatchList *watch_list;
1074   DBusTimeoutList *timeout_list;
1075   DBusHashTable *pending_replies;
1076   DBusMutex *mutex;
1077   DBusMutex *io_path_mutex;
1078   DBusMutex *dispatch_mutex;
1079   DBusCondVar *message_returned_cond;
1080   DBusCondVar *dispatch_cond;
1081   DBusCondVar *io_path_cond;
1082   DBusList *disconnect_link;
1083   DBusMessage *disconnect_message;
1084   DBusCounter *outgoing_counter;
1085   DBusObjectTree *objects;
1086   
1087   watch_list = NULL;
1088   connection = NULL;
1089   pending_replies = NULL;
1090   timeout_list = NULL;
1091   mutex = NULL;
1092   io_path_mutex = NULL;
1093   dispatch_mutex = NULL;
1094   message_returned_cond = NULL;
1095   dispatch_cond = NULL;
1096   io_path_cond = NULL;
1097   disconnect_link = NULL;
1098   disconnect_message = NULL;
1099   outgoing_counter = NULL;
1100   objects = NULL;
1101   
1102   watch_list = _dbus_watch_list_new ();
1103   if (watch_list == NULL)
1104     goto error;
1105
1106   timeout_list = _dbus_timeout_list_new ();
1107   if (timeout_list == NULL)
1108     goto error;  
1109
1110   pending_replies =
1111     _dbus_hash_table_new (DBUS_HASH_INT,
1112                           NULL,
1113                           (DBusFreeFunction)free_pending_call_on_hash_removal);
1114   if (pending_replies == NULL)
1115     goto error;
1116   
1117   connection = dbus_new0 (DBusConnection, 1);
1118   if (connection == NULL)
1119     goto error;
1120
1121   mutex = _dbus_mutex_new ();
1122   if (mutex == NULL)
1123     goto error;
1124
1125   io_path_mutex = _dbus_mutex_new ();
1126   if (io_path_mutex == NULL)
1127     goto error;
1128
1129   dispatch_mutex = _dbus_mutex_new ();
1130   if (dispatch_mutex == NULL)
1131     goto error;
1132   
1133   message_returned_cond = _dbus_condvar_new ();
1134   if (message_returned_cond == NULL)
1135     goto error;
1136   
1137   dispatch_cond = _dbus_condvar_new ();
1138   if (dispatch_cond == NULL)
1139     goto error;
1140   
1141   io_path_cond = _dbus_condvar_new ();
1142   if (io_path_cond == NULL)
1143     goto error;
1144
1145   disconnect_message = dbus_message_new_signal (DBUS_PATH_LOCAL,
1146                                                 DBUS_INTERFACE_LOCAL,
1147                                                 "Disconnected");
1148   
1149   if (disconnect_message == NULL)
1150     goto error;
1151
1152   disconnect_link = _dbus_list_alloc_link (disconnect_message);
1153   if (disconnect_link == NULL)
1154     goto error;
1155
1156   outgoing_counter = _dbus_counter_new ();
1157   if (outgoing_counter == NULL)
1158     goto error;
1159
1160   objects = _dbus_object_tree_new (connection);
1161   if (objects == NULL)
1162     goto error;
1163   
1164   if (_dbus_modify_sigpipe)
1165     _dbus_disable_sigpipe ();
1166   
1167   connection->refcount.value = 1;
1168   connection->mutex = mutex;
1169   connection->dispatch_cond = dispatch_cond;
1170   connection->dispatch_mutex = dispatch_mutex;
1171   connection->io_path_cond = io_path_cond;
1172   connection->io_path_mutex = io_path_mutex;
1173   connection->transport = transport;
1174   connection->watches = watch_list;
1175   connection->timeouts = timeout_list;
1176   connection->pending_replies = pending_replies;
1177   connection->outgoing_counter = outgoing_counter;
1178   connection->filter_list = NULL;
1179   connection->last_dispatch_status = DBUS_DISPATCH_COMPLETE; /* so we're notified first time there's data */
1180   connection->objects = objects;
1181   connection->exit_on_disconnect = FALSE;
1182   connection->shareable = FALSE;
1183 #ifndef DBUS_DISABLE_CHECKS
1184   connection->generation = _dbus_current_generation;
1185 #endif
1186   
1187   _dbus_data_slot_list_init (&connection->slot_list);
1188
1189   connection->client_serial = 1;
1190
1191   connection->disconnect_message_link = disconnect_link;
1192
1193   CONNECTION_LOCK (connection);
1194   
1195   if (!_dbus_transport_set_connection (transport, connection))
1196     goto error;
1197
1198   _dbus_transport_ref (transport);
1199
1200   CONNECTION_UNLOCK (connection);
1201   
1202   return connection;
1203   
1204  error:
1205   if (disconnect_message != NULL)
1206     dbus_message_unref (disconnect_message);
1207   
1208   if (disconnect_link != NULL)
1209     _dbus_list_free_link (disconnect_link);
1210   
1211   if (io_path_cond != NULL)
1212     _dbus_condvar_free (io_path_cond);
1213   
1214   if (dispatch_cond != NULL)
1215     _dbus_condvar_free (dispatch_cond);
1216   
1217   if (message_returned_cond != NULL)
1218     _dbus_condvar_free (message_returned_cond);
1219   
1220   if (mutex != NULL)
1221     _dbus_mutex_free (mutex);
1222
1223   if (io_path_mutex != NULL)
1224     _dbus_mutex_free (io_path_mutex);
1225
1226   if (dispatch_mutex != NULL)
1227     _dbus_mutex_free (dispatch_mutex);
1228   
1229   if (connection != NULL)
1230     dbus_free (connection);
1231
1232   if (pending_replies)
1233     _dbus_hash_table_unref (pending_replies);
1234   
1235   if (watch_list)
1236     _dbus_watch_list_free (watch_list);
1237
1238   if (timeout_list)
1239     _dbus_timeout_list_free (timeout_list);
1240
1241   if (outgoing_counter)
1242     _dbus_counter_unref (outgoing_counter);
1243
1244   if (objects)
1245     _dbus_object_tree_unref (objects);
1246   
1247   return NULL;
1248 }
1249
1250 /**
1251  * Increments the reference count of a DBusConnection.
1252  * Requires that the caller already holds the connection lock.
1253  *
1254  * @param connection the connection.
1255  * @returns the connection.
1256  */
1257 DBusConnection *
1258 _dbus_connection_ref_unlocked (DBusConnection *connection)
1259 {  
1260   _dbus_assert (connection != NULL);
1261   _dbus_assert (connection->generation == _dbus_current_generation);
1262
1263   HAVE_LOCK_CHECK (connection);
1264   
1265 #ifdef DBUS_HAVE_ATOMIC_INT
1266   _dbus_atomic_inc (&connection->refcount);
1267 #else
1268   _dbus_assert (connection->refcount.value > 0);
1269   connection->refcount.value += 1;
1270 #endif
1271
1272   return connection;
1273 }
1274
1275 /**
1276  * Decrements the reference count of a DBusConnection.
1277  * Requires that the caller already holds the connection lock.
1278  *
1279  * @param connection the connection.
1280  */
1281 void
1282 _dbus_connection_unref_unlocked (DBusConnection *connection)
1283 {
1284   dbus_bool_t last_unref;
1285
1286   HAVE_LOCK_CHECK (connection);
1287   
1288   _dbus_assert (connection != NULL);
1289
1290   /* The connection lock is better than the global
1291    * lock in the atomic increment fallback
1292    */
1293   
1294 #ifdef DBUS_HAVE_ATOMIC_INT
1295   last_unref = (_dbus_atomic_dec (&connection->refcount) == 1);
1296 #else
1297   _dbus_assert (connection->refcount.value > 0);
1298
1299   connection->refcount.value -= 1;
1300   last_unref = (connection->refcount.value == 0);  
1301 #if 0
1302   printf ("unref_unlocked() connection %p count = %d\n", connection, connection->refcount.value);
1303 #endif
1304 #endif
1305   
1306   if (last_unref)
1307     _dbus_connection_last_unref (connection);
1308 }
1309
1310 static dbus_uint32_t
1311 _dbus_connection_get_next_client_serial (DBusConnection *connection)
1312 {
1313   int serial;
1314
1315   serial = connection->client_serial++;
1316
1317   if (connection->client_serial < 0)
1318     connection->client_serial = 1;
1319   
1320   return serial;
1321 }
1322
1323 /**
1324  * A callback for use with dbus_watch_new() to create a DBusWatch.
1325  * 
1326  * @todo This is basically a hack - we could delete _dbus_transport_handle_watch()
1327  * and the virtual handle_watch in DBusTransport if we got rid of it.
1328  * The reason this is some work is threading, see the _dbus_connection_handle_watch()
1329  * implementation.
1330  *
1331  * @param watch the watch.
1332  * @param condition the current condition of the file descriptors being watched.
1333  * @param data must be a pointer to a #DBusConnection
1334  * @returns #FALSE if the IO condition may not have been fully handled due to lack of memory
1335  */
1336 dbus_bool_t
1337 _dbus_connection_handle_watch (DBusWatch                   *watch,
1338                                unsigned int                 condition,
1339                                void                        *data)
1340 {
1341   DBusConnection *connection;
1342   dbus_bool_t retval;
1343   DBusDispatchStatus status;
1344
1345   connection = data;
1346
1347   _dbus_verbose ("%s start\n", _DBUS_FUNCTION_NAME);
1348   
1349   CONNECTION_LOCK (connection);
1350   _dbus_connection_acquire_io_path (connection, -1);
1351   HAVE_LOCK_CHECK (connection);
1352   retval = _dbus_transport_handle_watch (connection->transport,
1353                                          watch, condition);
1354
1355   _dbus_connection_release_io_path (connection);
1356
1357   HAVE_LOCK_CHECK (connection);
1358
1359   _dbus_verbose ("%s middle\n", _DBUS_FUNCTION_NAME);
1360   
1361   status = _dbus_connection_get_dispatch_status_unlocked (connection);
1362
1363   /* this calls out to user code */
1364   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
1365
1366   _dbus_verbose ("%s end\n", _DBUS_FUNCTION_NAME);
1367   
1368   return retval;
1369 }
1370
1371 _DBUS_DEFINE_GLOBAL_LOCK (shared_connections);
1372 static DBusHashTable *shared_connections = NULL;
1373
1374 static void
1375 shared_connections_shutdown (void *data)
1376 {
1377   _DBUS_LOCK (shared_connections);
1378
1379   _dbus_assert (_dbus_hash_table_get_n_entries (shared_connections) == 0);
1380   _dbus_hash_table_unref (shared_connections);
1381   shared_connections = NULL;
1382   
1383   _DBUS_UNLOCK (shared_connections);
1384 }
1385
1386 static dbus_bool_t
1387 connection_lookup_shared (DBusAddressEntry  *entry,
1388                           DBusConnection   **result)
1389 {
1390   _dbus_verbose ("checking for existing connection\n");
1391   
1392   *result = NULL;
1393   
1394   _DBUS_LOCK (shared_connections);
1395
1396   if (shared_connections == NULL)
1397     {
1398       _dbus_verbose ("creating shared_connections hash table\n");
1399       
1400       shared_connections = _dbus_hash_table_new (DBUS_HASH_STRING,
1401                                                  dbus_free,
1402                                                  NULL);
1403       if (shared_connections == NULL)
1404         {
1405           _DBUS_UNLOCK (shared_connections);
1406           return FALSE;
1407         }
1408
1409       if (!_dbus_register_shutdown_func (shared_connections_shutdown, NULL))
1410         {
1411           _dbus_hash_table_unref (shared_connections);
1412           shared_connections = NULL;
1413           _DBUS_UNLOCK (shared_connections);
1414           return FALSE;
1415         }
1416
1417       _dbus_verbose ("  successfully created shared_connections\n");
1418       
1419       _DBUS_UNLOCK (shared_connections);
1420       return TRUE; /* no point looking up in the hash we just made */
1421     }
1422   else
1423     {
1424       const char *guid;
1425
1426       guid = dbus_address_entry_get_value (entry, "guid");
1427       
1428       if (guid != NULL)
1429         {
1430           *result = _dbus_hash_table_lookup_string (shared_connections,
1431                                                     guid);
1432
1433           if (*result)
1434             {
1435               /* The DBusConnection can't have been disconnected
1436                * between the lookup and this code, because the
1437                * disconnection will take the shared_connections lock to
1438                * remove the connection. It can't have been finalized
1439                * since you have to disconnect prior to finalize.
1440                *
1441                * Thus it's safe to ref the connection.
1442                */
1443               dbus_connection_ref (*result);
1444
1445               _dbus_verbose ("looked up existing connection to server guid %s\n",
1446                              guid);
1447             }
1448         }
1449       
1450       _DBUS_UNLOCK (shared_connections);
1451       return TRUE;
1452     }
1453 }
1454
1455 static dbus_bool_t
1456 connection_record_shared_unlocked (DBusConnection *connection,
1457                                    const char     *guid)
1458 {
1459   char *guid_key;
1460   char *guid_in_connection;
1461
1462   /* A separate copy of the key is required in the hash table, because
1463    * we don't have a lock on the connection when we are doing a hash
1464    * lookup.
1465    */
1466   
1467   _dbus_assert (connection->server_guid == NULL);
1468   _dbus_assert (connection->shareable);
1469   
1470   guid_key = _dbus_strdup (guid);
1471   if (guid_key == NULL)
1472     return FALSE;
1473
1474   guid_in_connection = _dbus_strdup (guid);
1475   if (guid_in_connection == NULL)
1476     {
1477       dbus_free (guid_key);
1478       return FALSE;
1479     }
1480   
1481   _DBUS_LOCK (shared_connections);
1482   _dbus_assert (shared_connections != NULL);
1483   
1484   if (!_dbus_hash_table_insert_string (shared_connections,
1485                                        guid_key, connection))
1486     {
1487       dbus_free (guid_key);
1488       dbus_free (guid_in_connection);
1489       _DBUS_UNLOCK (shared_connections);
1490       return FALSE;
1491     }
1492
1493   connection->server_guid = guid_in_connection;
1494
1495   _dbus_verbose ("stored connection to %s to be shared\n",
1496                  connection->server_guid);
1497   
1498   _DBUS_UNLOCK (shared_connections);
1499
1500   _dbus_assert (connection->server_guid != NULL);
1501   
1502   return TRUE;
1503 }
1504
1505 static void
1506 connection_forget_shared_unlocked (DBusConnection *connection)
1507 {
1508   HAVE_LOCK_CHECK (connection);
1509   
1510   if (connection->server_guid == NULL)
1511     return;
1512
1513   _dbus_verbose ("dropping connection to %s out of the shared table\n",
1514                  connection->server_guid);
1515   
1516   _DBUS_LOCK (shared_connections);
1517
1518   if (!_dbus_hash_table_remove_string (shared_connections,
1519                                        connection->server_guid))
1520     _dbus_assert_not_reached ("connection was not in the shared table");
1521   
1522   dbus_free (connection->server_guid);
1523   connection->server_guid = NULL;
1524
1525   _DBUS_UNLOCK (shared_connections);
1526 }
1527
1528 static DBusConnection*
1529 connection_try_from_address_entry (DBusAddressEntry *entry,
1530                                    DBusError        *error)
1531 {
1532   DBusTransport *transport;
1533   DBusConnection *connection;
1534
1535   transport = _dbus_transport_open (entry, error);
1536
1537   if (transport == NULL)
1538     {
1539       _DBUS_ASSERT_ERROR_IS_SET (error);
1540       return NULL;
1541     }
1542
1543   connection = _dbus_connection_new_for_transport (transport);
1544
1545   _dbus_transport_unref (transport);
1546   
1547   if (connection == NULL)
1548     {
1549       _DBUS_SET_OOM (error);
1550       return NULL;
1551     }
1552
1553 #ifndef DBUS_DISABLE_CHECKS
1554   _dbus_assert (!connection->have_connection_lock);
1555 #endif
1556   return connection;
1557 }
1558
1559 /*
1560  * If the shared parameter is true, then any existing connection will
1561  * be used (and if a new connection is created, it will be available
1562  * for use by others). If the shared parameter is false, a new
1563  * connection will always be created, and the new connection will
1564  * never be returned to other callers.
1565  *
1566  * @param address the address
1567  * @param shared whether the connection is shared or private
1568  * @param error error return
1569  * @returns the connection or #NULL on error
1570  */
1571 static DBusConnection*
1572 _dbus_connection_open_internal (const char     *address,
1573                                 dbus_bool_t     shared,
1574                                 DBusError      *error)
1575 {
1576   DBusConnection *connection;
1577   DBusAddressEntry **entries;
1578   DBusError tmp_error;
1579   DBusError first_error;
1580   int len, i;
1581
1582   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1583
1584   _dbus_verbose ("opening %s connection to: %s\n",
1585                  shared ? "shared" : "private", address);
1586   
1587   if (!dbus_parse_address (address, &entries, &len, error))
1588     return NULL;
1589
1590   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1591   
1592   connection = NULL;
1593
1594   dbus_error_init (&tmp_error);
1595   dbus_error_init (&first_error);
1596   for (i = 0; i < len; i++)
1597     {
1598       if (shared)
1599         {
1600           if (!connection_lookup_shared (entries[i], &connection))
1601             _DBUS_SET_OOM (&tmp_error);
1602         }
1603
1604       if (connection == NULL)
1605         {
1606           connection = connection_try_from_address_entry (entries[i],
1607                                                           &tmp_error);
1608           
1609           if (connection != NULL && shared)
1610             {
1611               const char *guid;
1612
1613               connection->shareable = TRUE;
1614               
1615               guid = dbus_address_entry_get_value (entries[i], "guid");
1616
1617               /* we don't have a connection lock but we know nobody
1618                * else has a handle to the connection
1619                */
1620               
1621               if (guid &&
1622                   !connection_record_shared_unlocked (connection, guid))
1623                 {
1624                   _DBUS_SET_OOM (&tmp_error);
1625                   dbus_connection_disconnect (connection);
1626                   dbus_connection_unref (connection);
1627                   connection = NULL;
1628                 }
1629
1630               /* but as of now the connection is possibly shared
1631                * since another thread could have pulled it from the table
1632                */
1633             }
1634         }
1635       
1636       if (connection)
1637         break;
1638
1639       _DBUS_ASSERT_ERROR_IS_SET (&tmp_error);
1640       
1641       if (i == 0)
1642         dbus_move_error (&tmp_error, &first_error);
1643       else
1644         dbus_error_free (&tmp_error);
1645     }
1646
1647   /* NOTE we don't have a lock on a possibly-shared connection object */
1648   
1649   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1650   _DBUS_ASSERT_ERROR_IS_CLEAR (&tmp_error);
1651   
1652   if (connection == NULL)
1653     {
1654       _DBUS_ASSERT_ERROR_IS_SET (&first_error);
1655       dbus_move_error (&first_error, error);
1656     }
1657   else
1658     {
1659       dbus_error_free (&first_error);
1660     }
1661   
1662   dbus_address_entries_free (entries);
1663   return connection;
1664 }
1665
1666 /** @} */
1667
1668 /**
1669  * @addtogroup DBusConnection
1670  *
1671  * @{
1672  */
1673
1674 /**
1675  * Gets a connection to a remote address. If a connection to the given
1676  * address already exists, returns the existing connection with its
1677  * reference count incremented.  Otherwise, returns a new connection
1678  * and saves the new connection for possible re-use if a future call
1679  * to dbus_connection_open() asks to connect to the same server.
1680  *
1681  * Use dbus_connection_open_private() to get a dedicated connection
1682  * not shared with other callers of dbus_connection_open().
1683  *
1684  * If the open fails, the function returns #NULL, and provides a
1685  * reason for the failure in the error parameter. Pass #NULL for the
1686  * error parameter if you aren't interested in the reason for
1687  * failure.
1688  * 
1689  * @param address the address.
1690  * @param error address where an error can be returned.
1691  * @returns new connection, or #NULL on failure.
1692  */
1693 DBusConnection*
1694 dbus_connection_open (const char     *address,
1695                       DBusError      *error)
1696 {
1697   DBusConnection *connection;
1698
1699   _dbus_return_val_if_fail (address != NULL, NULL);
1700   _dbus_return_val_if_error_is_set (error, NULL);
1701
1702   connection = _dbus_connection_open_internal (address,
1703                                                TRUE,
1704                                                error);
1705
1706   return connection;
1707 }
1708
1709 /**
1710  * Opens a new, dedicated connection to a remote address. Unlike
1711  * dbus_connection_open(), always creates a new connection.
1712  * This connection will not be saved or recycled by libdbus.
1713  *
1714  * If the open fails, the function returns #NULL, and provides a
1715  * reason for the failure in the error parameter. Pass #NULL for the
1716  * error parameter if you aren't interested in the reason for
1717  * failure.
1718  * 
1719  * @param address the address.
1720  * @param error address where an error can be returned.
1721  * @returns new connection, or #NULL on failure.
1722  */
1723 DBusConnection*
1724 dbus_connection_open_private (const char     *address,
1725                               DBusError      *error)
1726 {
1727   DBusConnection *connection;
1728
1729   _dbus_return_val_if_fail (address != NULL, NULL);
1730   _dbus_return_val_if_error_is_set (error, NULL);
1731
1732   connection = _dbus_connection_open_internal (address,
1733                                                FALSE,
1734                                                error);
1735
1736   return connection;
1737 }
1738
1739 /**
1740  * Increments the reference count of a DBusConnection.
1741  *
1742  * @param connection the connection.
1743  * @returns the connection.
1744  */
1745 DBusConnection *
1746 dbus_connection_ref (DBusConnection *connection)
1747 {
1748   _dbus_return_val_if_fail (connection != NULL, NULL);
1749   _dbus_return_val_if_fail (connection->generation == _dbus_current_generation, NULL);
1750   
1751   /* The connection lock is better than the global
1752    * lock in the atomic increment fallback
1753    */
1754   
1755 #ifdef DBUS_HAVE_ATOMIC_INT
1756   _dbus_atomic_inc (&connection->refcount);
1757 #else
1758   CONNECTION_LOCK (connection);
1759   _dbus_assert (connection->refcount.value > 0);
1760
1761   connection->refcount.value += 1;
1762   CONNECTION_UNLOCK (connection);
1763 #endif
1764
1765   return connection;
1766 }
1767
1768 static void
1769 free_outgoing_message (void *element,
1770                        void *data)
1771 {
1772   DBusMessage *message = element;
1773   DBusConnection *connection = data;
1774
1775   _dbus_message_remove_size_counter (message,
1776                                      connection->outgoing_counter,
1777                                      NULL);
1778   dbus_message_unref (message);
1779 }
1780
1781 /* This is run without the mutex held, but after the last reference
1782  * to the connection has been dropped we should have no thread-related
1783  * problems
1784  */
1785 static void
1786 _dbus_connection_last_unref (DBusConnection *connection)
1787 {
1788   DBusList *link;
1789
1790   _dbus_verbose ("Finalizing connection %p\n", connection);
1791   
1792   _dbus_assert (connection->refcount.value == 0);
1793   
1794   /* You have to disconnect the connection before unref:ing it. Otherwise
1795    * you won't get the disconnected message.
1796    */
1797   _dbus_assert (!_dbus_transport_get_is_connected (connection->transport));
1798   _dbus_assert (connection->server_guid == NULL);
1799   
1800   /* ---- We're going to call various application callbacks here, hope it doesn't break anything... */
1801   _dbus_object_tree_free_all_unlocked (connection->objects);
1802   
1803   dbus_connection_set_dispatch_status_function (connection, NULL, NULL, NULL);
1804   dbus_connection_set_wakeup_main_function (connection, NULL, NULL, NULL);
1805   dbus_connection_set_unix_user_function (connection, NULL, NULL, NULL);
1806   
1807   _dbus_watch_list_free (connection->watches);
1808   connection->watches = NULL;
1809   
1810   _dbus_timeout_list_free (connection->timeouts);
1811   connection->timeouts = NULL;
1812
1813   _dbus_data_slot_list_free (&connection->slot_list);
1814   
1815   link = _dbus_list_get_first_link (&connection->filter_list);
1816   while (link != NULL)
1817     {
1818       DBusMessageFilter *filter = link->data;
1819       DBusList *next = _dbus_list_get_next_link (&connection->filter_list, link);
1820
1821       filter->function = NULL;
1822       _dbus_message_filter_unref (filter); /* calls app callback */
1823       link->data = NULL;
1824       
1825       link = next;
1826     }
1827   _dbus_list_clear (&connection->filter_list);
1828   
1829   /* ---- Done with stuff that invokes application callbacks */
1830
1831   _dbus_object_tree_unref (connection->objects);  
1832
1833   _dbus_hash_table_unref (connection->pending_replies);
1834   connection->pending_replies = NULL;
1835   
1836   _dbus_list_clear (&connection->filter_list);
1837   
1838   _dbus_list_foreach (&connection->outgoing_messages,
1839                       free_outgoing_message,
1840                       connection);
1841   _dbus_list_clear (&connection->outgoing_messages);
1842   
1843   _dbus_list_foreach (&connection->incoming_messages,
1844                       (DBusForeachFunction) dbus_message_unref,
1845                       NULL);
1846   _dbus_list_clear (&connection->incoming_messages);
1847
1848   _dbus_counter_unref (connection->outgoing_counter);
1849
1850   _dbus_transport_unref (connection->transport);
1851
1852   if (connection->disconnect_message_link)
1853     {
1854       DBusMessage *message = connection->disconnect_message_link->data;
1855       dbus_message_unref (message);
1856       _dbus_list_free_link (connection->disconnect_message_link);
1857     }
1858
1859   _dbus_list_clear (&connection->link_cache);
1860   
1861   _dbus_condvar_free (connection->dispatch_cond);
1862   _dbus_condvar_free (connection->io_path_cond);
1863
1864   _dbus_mutex_free (connection->io_path_mutex);
1865   _dbus_mutex_free (connection->dispatch_mutex);
1866
1867   _dbus_mutex_free (connection->mutex);
1868   
1869   dbus_free (connection);
1870 }
1871
1872 /**
1873  * Decrements the reference count of a DBusConnection, and finalizes
1874  * it if the count reaches zero.  It is a bug to drop the last reference
1875  * to a connection that has not been disconnected.
1876  *
1877  * @todo in practice it can be quite tricky to never unref a connection
1878  * that's still connected; maybe there's some way we could avoid
1879  * the requirement.
1880  *
1881  * @param connection the connection.
1882  */
1883 void
1884 dbus_connection_unref (DBusConnection *connection)
1885 {
1886   dbus_bool_t last_unref;
1887
1888   _dbus_return_if_fail (connection != NULL);
1889   _dbus_return_if_fail (connection->generation == _dbus_current_generation);
1890   
1891   /* The connection lock is better than the global
1892    * lock in the atomic increment fallback
1893    */
1894   
1895 #ifdef DBUS_HAVE_ATOMIC_INT
1896   last_unref = (_dbus_atomic_dec (&connection->refcount) == 1);
1897 #else
1898   CONNECTION_LOCK (connection);
1899   
1900   _dbus_assert (connection->refcount.value > 0);
1901
1902   connection->refcount.value -= 1;
1903   last_unref = (connection->refcount.value == 0);
1904
1905 #if 0
1906   printf ("unref() connection %p count = %d\n", connection, connection->refcount.value);
1907 #endif
1908   
1909   CONNECTION_UNLOCK (connection);
1910 #endif
1911   
1912   if (last_unref)
1913     _dbus_connection_last_unref (connection);
1914 }
1915
1916 /**
1917  * Closes the connection, so no further data can be sent or received.
1918  * Any further attempts to send data will result in errors.  This
1919  * function does not affect the connection's reference count.  It's
1920  * safe to disconnect a connection more than once; all calls after the
1921  * first do nothing. It's impossible to "reconnect" a connection, a
1922  * new connection must be created. This function may result in a call
1923  * to the DBusDispatchStatusFunction set with
1924  * dbus_connection_set_dispatch_status_function(), as the disconnect
1925  * message it generates needs to be dispatched.
1926  *
1927  * @param connection the connection.
1928  */
1929 void
1930 dbus_connection_disconnect (DBusConnection *connection)
1931 {
1932   DBusDispatchStatus status;
1933   
1934   _dbus_return_if_fail (connection != NULL);
1935   _dbus_return_if_fail (connection->generation == _dbus_current_generation);
1936
1937   _dbus_verbose ("Disconnecting %p\n", connection);
1938   
1939   CONNECTION_LOCK (connection);
1940   
1941   _dbus_transport_disconnect (connection->transport);
1942
1943   _dbus_verbose ("%s middle\n", _DBUS_FUNCTION_NAME);
1944   status = _dbus_connection_get_dispatch_status_unlocked (connection);
1945
1946   /* this calls out to user code */
1947   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
1948 }
1949
1950 static dbus_bool_t
1951 _dbus_connection_get_is_connected_unlocked (DBusConnection *connection)
1952 {
1953   HAVE_LOCK_CHECK (connection);
1954   return _dbus_transport_get_is_connected (connection->transport);
1955 }
1956
1957 /**
1958  * Gets whether the connection is currently connected.  All
1959  * connections are connected when they are opened.  A connection may
1960  * become disconnected when the remote application closes its end, or
1961  * exits; a connection may also be disconnected with
1962  * dbus_connection_disconnect().
1963  *
1964  * @param connection the connection.
1965  * @returns #TRUE if the connection is still alive.
1966  */
1967 dbus_bool_t
1968 dbus_connection_get_is_connected (DBusConnection *connection)
1969 {
1970   dbus_bool_t res;
1971
1972   _dbus_return_val_if_fail (connection != NULL, FALSE);
1973   
1974   CONNECTION_LOCK (connection);
1975   res = _dbus_connection_get_is_connected_unlocked (connection);
1976   CONNECTION_UNLOCK (connection);
1977   
1978   return res;
1979 }
1980
1981 /**
1982  * Gets whether the connection was authenticated. (Note that
1983  * if the connection was authenticated then disconnected,
1984  * this function still returns #TRUE)
1985  *
1986  * @param connection the connection
1987  * @returns #TRUE if the connection was ever authenticated
1988  */
1989 dbus_bool_t
1990 dbus_connection_get_is_authenticated (DBusConnection *connection)
1991 {
1992   dbus_bool_t res;
1993
1994   _dbus_return_val_if_fail (connection != NULL, FALSE);
1995   
1996   CONNECTION_LOCK (connection);
1997   res = _dbus_transport_get_is_authenticated (connection->transport);
1998   CONNECTION_UNLOCK (connection);
1999   
2000   return res;
2001 }
2002
2003 /**
2004  * Set whether _exit() should be called when the connection receives a
2005  * disconnect signal. The call to _exit() comes after any handlers for
2006  * the disconnect signal run; handlers can cancel the exit by calling
2007  * this function.
2008  *
2009  * By default, exit_on_disconnect is #FALSE; but for message bus
2010  * connections returned from dbus_bus_get() it will be toggled on
2011  * by default.
2012  *
2013  * @param connection the connection
2014  * @param exit_on_disconnect #TRUE if _exit() should be called after a disconnect signal
2015  */
2016 void
2017 dbus_connection_set_exit_on_disconnect (DBusConnection *connection,
2018                                         dbus_bool_t     exit_on_disconnect)
2019 {
2020   _dbus_return_if_fail (connection != NULL);
2021
2022   CONNECTION_LOCK (connection);
2023   connection->exit_on_disconnect = exit_on_disconnect != FALSE;
2024   CONNECTION_UNLOCK (connection);
2025 }
2026
2027 static DBusPreallocatedSend*
2028 _dbus_connection_preallocate_send_unlocked (DBusConnection *connection)
2029 {
2030   DBusPreallocatedSend *preallocated;
2031
2032   HAVE_LOCK_CHECK (connection);
2033   
2034   _dbus_assert (connection != NULL);
2035   
2036   preallocated = dbus_new (DBusPreallocatedSend, 1);
2037   if (preallocated == NULL)
2038     return NULL;
2039
2040   if (connection->link_cache != NULL)
2041     {
2042       preallocated->queue_link =
2043         _dbus_list_pop_first_link (&connection->link_cache);
2044       preallocated->queue_link->data = NULL;
2045     }
2046   else
2047     {
2048       preallocated->queue_link = _dbus_list_alloc_link (NULL);
2049       if (preallocated->queue_link == NULL)
2050         goto failed_0;
2051     }
2052   
2053   if (connection->link_cache != NULL)
2054     {
2055       preallocated->counter_link =
2056         _dbus_list_pop_first_link (&connection->link_cache);
2057       preallocated->counter_link->data = connection->outgoing_counter;
2058     }
2059   else
2060     {
2061       preallocated->counter_link = _dbus_list_alloc_link (connection->outgoing_counter);
2062       if (preallocated->counter_link == NULL)
2063         goto failed_1;
2064     }
2065
2066   _dbus_counter_ref (preallocated->counter_link->data);
2067
2068   preallocated->connection = connection;
2069   
2070   return preallocated;
2071   
2072  failed_1:
2073   _dbus_list_free_link (preallocated->queue_link);
2074  failed_0:
2075   dbus_free (preallocated);
2076   
2077   return NULL;
2078 }
2079
2080 /**
2081  * Preallocates resources needed to send a message, allowing the message 
2082  * to be sent without the possibility of memory allocation failure.
2083  * Allows apps to create a future guarantee that they can send
2084  * a message regardless of memory shortages.
2085  *
2086  * @param connection the connection we're preallocating for.
2087  * @returns the preallocated resources, or #NULL
2088  */
2089 DBusPreallocatedSend*
2090 dbus_connection_preallocate_send (DBusConnection *connection)
2091 {
2092   DBusPreallocatedSend *preallocated;
2093
2094   _dbus_return_val_if_fail (connection != NULL, NULL);
2095
2096   CONNECTION_LOCK (connection);
2097   
2098   preallocated =
2099     _dbus_connection_preallocate_send_unlocked (connection);
2100
2101   CONNECTION_UNLOCK (connection);
2102
2103   return preallocated;
2104 }
2105
2106 /**
2107  * Frees preallocated message-sending resources from
2108  * dbus_connection_preallocate_send(). Should only
2109  * be called if the preallocated resources are not used
2110  * to send a message.
2111  *
2112  * @param connection the connection
2113  * @param preallocated the resources
2114  */
2115 void
2116 dbus_connection_free_preallocated_send (DBusConnection       *connection,
2117                                         DBusPreallocatedSend *preallocated)
2118 {
2119   _dbus_return_if_fail (connection != NULL);
2120   _dbus_return_if_fail (preallocated != NULL);  
2121   _dbus_return_if_fail (connection == preallocated->connection);
2122
2123   _dbus_list_free_link (preallocated->queue_link);
2124   _dbus_counter_unref (preallocated->counter_link->data);
2125   _dbus_list_free_link (preallocated->counter_link);
2126   dbus_free (preallocated);
2127 }
2128
2129 /* Called with lock held, does not update dispatch status */
2130 static void
2131 _dbus_connection_send_preallocated_unlocked_no_update (DBusConnection       *connection,
2132                                                        DBusPreallocatedSend *preallocated,
2133                                                        DBusMessage          *message,
2134                                                        dbus_uint32_t        *client_serial)
2135 {
2136   dbus_uint32_t serial;
2137   const char *sig;
2138
2139   preallocated->queue_link->data = message;
2140   _dbus_list_prepend_link (&connection->outgoing_messages,
2141                            preallocated->queue_link);
2142
2143   _dbus_message_add_size_counter_link (message,
2144                                        preallocated->counter_link);
2145
2146   dbus_free (preallocated);
2147   preallocated = NULL;
2148   
2149   dbus_message_ref (message);
2150   
2151   connection->n_outgoing += 1;
2152
2153   sig = dbus_message_get_signature (message);
2154   
2155   _dbus_verbose ("Message %p (%d %s %s %s '%s') for %s added to outgoing queue %p, %d pending to send\n",
2156                  message,
2157                  dbus_message_get_type (message),
2158                  dbus_message_get_path (message),
2159                  dbus_message_get_interface (message) ?
2160                  dbus_message_get_interface (message) :
2161                  "no interface",
2162                  dbus_message_get_member (message) ?
2163                  dbus_message_get_member (message) :
2164                  "no member",
2165                  sig,
2166                  dbus_message_get_destination (message) ?
2167                  dbus_message_get_destination (message) :
2168                  "null",
2169                  connection,
2170                  connection->n_outgoing);
2171
2172   if (dbus_message_get_serial (message) == 0)
2173     {
2174       serial = _dbus_connection_get_next_client_serial (connection);
2175       _dbus_message_set_serial (message, serial);
2176       if (client_serial)
2177         *client_serial = serial;
2178     }
2179   else
2180     {
2181       if (client_serial)
2182         *client_serial = dbus_message_get_serial (message);
2183     }
2184
2185   _dbus_verbose ("Message %p serial is %u\n",
2186                  message, dbus_message_get_serial (message));
2187   
2188   _dbus_message_lock (message);
2189
2190   /* Now we need to run an iteration to hopefully just write the messages
2191    * out immediately, and otherwise get them queued up
2192    */
2193   _dbus_connection_do_iteration_unlocked (connection,
2194                                           DBUS_ITERATION_DO_WRITING,
2195                                           -1);
2196
2197   /* If stuff is still queued up, be sure we wake up the main loop */
2198   if (connection->n_outgoing > 0)
2199     _dbus_connection_wakeup_mainloop (connection);
2200 }
2201
2202 static void
2203 _dbus_connection_send_preallocated_and_unlock (DBusConnection       *connection,
2204                                                DBusPreallocatedSend *preallocated,
2205                                                DBusMessage          *message,
2206                                                dbus_uint32_t        *client_serial)
2207 {
2208   DBusDispatchStatus status;
2209
2210   HAVE_LOCK_CHECK (connection);
2211   
2212   _dbus_connection_send_preallocated_unlocked_no_update (connection,
2213                                                          preallocated,
2214                                                          message, client_serial);
2215
2216   _dbus_verbose ("%s middle\n", _DBUS_FUNCTION_NAME);
2217   status = _dbus_connection_get_dispatch_status_unlocked (connection);
2218
2219   /* this calls out to user code */
2220   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2221 }
2222
2223 /**
2224  * Sends a message using preallocated resources. This function cannot fail.
2225  * It works identically to dbus_connection_send() in other respects.
2226  * Preallocated resources comes from dbus_connection_preallocate_send().
2227  * This function "consumes" the preallocated resources, they need not
2228  * be freed separately.
2229  *
2230  * @param connection the connection
2231  * @param preallocated the preallocated resources
2232  * @param message the message to send
2233  * @param client_serial return location for client serial assigned to the message
2234  */
2235 void
2236 dbus_connection_send_preallocated (DBusConnection       *connection,
2237                                    DBusPreallocatedSend *preallocated,
2238                                    DBusMessage          *message,
2239                                    dbus_uint32_t        *client_serial)
2240 {
2241   _dbus_return_if_fail (connection != NULL);
2242   _dbus_return_if_fail (preallocated != NULL);
2243   _dbus_return_if_fail (message != NULL);
2244   _dbus_return_if_fail (preallocated->connection == connection);
2245   _dbus_return_if_fail (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_METHOD_CALL ||
2246                         (dbus_message_get_interface (message) != NULL &&
2247                          dbus_message_get_member (message) != NULL));
2248   _dbus_return_if_fail (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL ||
2249                         (dbus_message_get_interface (message) != NULL &&
2250                          dbus_message_get_member (message) != NULL));
2251   
2252   CONNECTION_LOCK (connection);
2253   _dbus_connection_send_preallocated_and_unlock (connection,
2254                                                  preallocated,
2255                                                  message, client_serial);
2256 }
2257
2258 static dbus_bool_t
2259 _dbus_connection_send_unlocked_no_update (DBusConnection *connection,
2260                                           DBusMessage    *message,
2261                                           dbus_uint32_t  *client_serial)
2262 {
2263   DBusPreallocatedSend *preallocated;
2264
2265   _dbus_assert (connection != NULL);
2266   _dbus_assert (message != NULL);
2267   
2268   preallocated = _dbus_connection_preallocate_send_unlocked (connection);
2269   if (preallocated == NULL)
2270     return FALSE;
2271
2272   _dbus_connection_send_preallocated_unlocked_no_update (connection,
2273                                                          preallocated,
2274                                                          message,
2275                                                          client_serial);
2276   return TRUE;
2277 }
2278
2279 dbus_bool_t
2280 _dbus_connection_send_and_unlock (DBusConnection *connection,
2281                                   DBusMessage    *message,
2282                                   dbus_uint32_t  *client_serial)
2283 {
2284   DBusPreallocatedSend *preallocated;
2285
2286   _dbus_assert (connection != NULL);
2287   _dbus_assert (message != NULL);
2288   
2289   preallocated = _dbus_connection_preallocate_send_unlocked (connection);
2290   if (preallocated == NULL)
2291     {
2292       CONNECTION_UNLOCK (connection);
2293       return FALSE;
2294     }
2295
2296   _dbus_connection_send_preallocated_and_unlock (connection,
2297                                                  preallocated,
2298                                                  message,
2299                                                  client_serial);
2300   return TRUE;
2301 }
2302
2303 /**
2304  * Adds a message to the outgoing message queue. Does not block to
2305  * write the message to the network; that happens asynchronously. To
2306  * force the message to be written, call dbus_connection_flush().
2307  * Because this only queues the message, the only reason it can
2308  * fail is lack of memory. Even if the connection is disconnected,
2309  * no error will be returned.
2310  *
2311  * If the function fails due to lack of memory, it returns #FALSE.
2312  * The function will never fail for other reasons; even if the
2313  * connection is disconnected, you can queue an outgoing message,
2314  * though obviously it won't be sent.
2315  * 
2316  * @param connection the connection.
2317  * @param message the message to write.
2318  * @param client_serial return location for client serial.
2319  * @returns #TRUE on success.
2320  */
2321 dbus_bool_t
2322 dbus_connection_send (DBusConnection *connection,
2323                       DBusMessage    *message,
2324                       dbus_uint32_t  *client_serial)
2325 {
2326   _dbus_return_val_if_fail (connection != NULL, FALSE);
2327   _dbus_return_val_if_fail (message != NULL, FALSE);
2328
2329   CONNECTION_LOCK (connection);
2330
2331   return _dbus_connection_send_and_unlock (connection,
2332                                            message,
2333                                            client_serial);
2334 }
2335
2336 static dbus_bool_t
2337 reply_handler_timeout (void *data)
2338 {
2339   DBusConnection *connection;
2340   DBusDispatchStatus status;
2341   DBusPendingCall *pending = data;
2342
2343   connection = pending->connection;
2344   
2345   CONNECTION_LOCK (connection);
2346   if (pending->timeout_link)
2347     {
2348       _dbus_connection_queue_synthesized_message_link (connection,
2349                                                        pending->timeout_link);
2350       pending->timeout_link = NULL;
2351     }
2352
2353   _dbus_connection_remove_timeout (connection,
2354                                    pending->timeout);
2355   pending->timeout_added = FALSE;
2356
2357   _dbus_verbose ("%s middle\n", _DBUS_FUNCTION_NAME);
2358   status = _dbus_connection_get_dispatch_status_unlocked (connection);
2359
2360   /* Unlocks, and calls out to user code */
2361   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2362   
2363   return TRUE;
2364 }
2365
2366 /**
2367  * Queues a message to send, as with dbus_connection_send_message(),
2368  * but also returns a #DBusPendingCall used to receive a reply to the
2369  * message. If no reply is received in the given timeout_milliseconds,
2370  * this function expires the pending reply and generates a synthetic
2371  * error reply (generated in-process, not by the remote application)
2372  * indicating that a timeout occurred.
2373  *
2374  * A #DBusPendingCall will see a reply message after any filters, but
2375  * before any object instances or other handlers. A #DBusPendingCall
2376  * will always see exactly one reply message, unless it's cancelled
2377  * with dbus_pending_call_cancel().
2378  * 
2379  * If a filter filters out the reply before the handler sees it, the
2380  * reply is immediately timed out and a timeout error reply is
2381  * generated. If a filter removes the timeout error reply then the
2382  * #DBusPendingCall will get confused. Filtering the timeout error
2383  * is thus considered a bug and will print a warning.
2384  * 
2385  * If #NULL is passed for the pending_return, the #DBusPendingCall
2386  * will still be generated internally, and used to track
2387  * the message reply timeout. This means a timeout error will
2388  * occur if no reply arrives, unlike with dbus_connection_send().
2389  *
2390  * If -1 is passed for the timeout, a sane default timeout is used. -1
2391  * is typically the best value for the timeout for this reason, unless
2392  * you want a very short or very long timeout.  There is no way to
2393  * avoid a timeout entirely, other than passing INT_MAX for the
2394  * timeout to postpone it indefinitely.
2395  * 
2396  * @param connection the connection
2397  * @param message the message to send
2398  * @param pending_return return location for a #DBusPendingCall object, or #NULL
2399  * @param timeout_milliseconds timeout in milliseconds or -1 for default
2400  * @returns #TRUE if the message is successfully queued, #FALSE if no memory.
2401  *
2402  */
2403 dbus_bool_t
2404 dbus_connection_send_with_reply (DBusConnection     *connection,
2405                                  DBusMessage        *message,
2406                                  DBusPendingCall   **pending_return,
2407                                  int                 timeout_milliseconds)
2408 {
2409   DBusPendingCall *pending;
2410   DBusMessage *reply;
2411   DBusList *reply_link;
2412   dbus_int32_t serial = -1;
2413   DBusDispatchStatus status;
2414
2415   _dbus_return_val_if_fail (connection != NULL, FALSE);
2416   _dbus_return_val_if_fail (message != NULL, FALSE);
2417   _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
2418
2419   if (pending_return)
2420     *pending_return = NULL;
2421   
2422   pending = _dbus_pending_call_new (connection,
2423                                     timeout_milliseconds,
2424                                     reply_handler_timeout);
2425
2426   if (pending == NULL)
2427     return FALSE;
2428
2429   CONNECTION_LOCK (connection);
2430   
2431   /* Assign a serial to the message */
2432   if (dbus_message_get_serial (message) == 0)
2433     {
2434       serial = _dbus_connection_get_next_client_serial (connection);
2435       _dbus_message_set_serial (message, serial);
2436     }
2437
2438   pending->reply_serial = serial;
2439
2440   reply = dbus_message_new_error (message, DBUS_ERROR_NO_REPLY,
2441                                   "No reply within specified time");
2442   if (reply == NULL)
2443     goto error;
2444
2445   reply_link = _dbus_list_alloc_link (reply);
2446   if (reply_link == NULL)
2447     {
2448       CONNECTION_UNLOCK (connection);
2449       dbus_message_unref (reply);
2450       goto error_unlocked;
2451     }
2452
2453   pending->timeout_link = reply_link;
2454
2455   /* Insert the serial in the pending replies hash;
2456    * hash takes a refcount on DBusPendingCall.
2457    * Also, add the timeout.
2458    */
2459   if (!_dbus_connection_attach_pending_call_unlocked (connection,
2460                                                       pending))
2461     goto error;
2462   
2463   if (!_dbus_connection_send_unlocked_no_update (connection, message, NULL))
2464     {
2465       _dbus_connection_detach_pending_call_and_unlock (connection,
2466                                                        pending);
2467       goto error_unlocked;
2468     }
2469
2470   if (pending_return)
2471     *pending_return = pending;
2472   else
2473     {
2474       _dbus_connection_detach_pending_call_unlocked (connection, pending);
2475       dbus_pending_call_unref (pending);
2476     }
2477
2478   _dbus_verbose ("%s middle\n", _DBUS_FUNCTION_NAME);
2479   status = _dbus_connection_get_dispatch_status_unlocked (connection);
2480
2481   /* this calls out to user code */
2482   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2483
2484   return TRUE;
2485
2486  error:
2487   CONNECTION_UNLOCK (connection);
2488  error_unlocked:
2489   dbus_pending_call_unref (pending);
2490   return FALSE;
2491 }
2492
2493 /* This is slightly strange since we can pop a message here without
2494  * the dispatch lock.
2495  */
2496 static DBusMessage*
2497 check_for_reply_unlocked (DBusConnection *connection,
2498                           dbus_uint32_t   client_serial)
2499 {
2500   DBusList *link;
2501
2502   HAVE_LOCK_CHECK (connection);
2503   
2504   link = _dbus_list_get_first_link (&connection->incoming_messages);
2505
2506   while (link != NULL)
2507     {
2508       DBusMessage *reply = link->data;
2509
2510       if (dbus_message_get_reply_serial (reply) == client_serial)
2511         {
2512           _dbus_list_remove_link (&connection->incoming_messages, link);
2513           connection->n_incoming  -= 1;
2514           return reply;
2515         }
2516       link = _dbus_list_get_next_link (&connection->incoming_messages, link);
2517     }
2518
2519   return NULL;
2520 }
2521
2522 /**
2523  * Blocks until a pending call times out or gets a reply.
2524  *
2525  * Does not re-enter the main loop or run filter/path-registered
2526  * callbacks. The reply to the message will not be seen by
2527  * filter callbacks.
2528  *
2529  * Returns immediately if pending call already got a reply.
2530  * 
2531  * @todo could use performance improvements (it keeps scanning
2532  * the whole message queue for example)
2533  *
2534  * @param pending the pending call we block for a reply on
2535  */
2536 void
2537 _dbus_connection_block_pending_call (DBusPendingCall *pending)
2538 {
2539   long start_tv_sec, start_tv_usec;
2540   long end_tv_sec, end_tv_usec;
2541   long tv_sec, tv_usec;
2542   DBusDispatchStatus status;
2543   DBusConnection *connection;
2544   dbus_uint32_t client_serial;
2545   int timeout_milliseconds;
2546
2547   _dbus_assert (pending != NULL);
2548
2549   if (dbus_pending_call_get_completed (pending))
2550     return;
2551
2552   if (pending->connection == NULL)
2553     return; /* call already detached */
2554
2555   dbus_pending_call_ref (pending); /* necessary because the call could be canceled */
2556   
2557   connection = pending->connection;
2558   client_serial = pending->reply_serial;
2559
2560   /* note that timeout_milliseconds is limited to a smallish value
2561    * in _dbus_pending_call_new() so overflows aren't possible
2562    * below
2563    */
2564   timeout_milliseconds = dbus_timeout_get_interval (pending->timeout);
2565
2566   /* Flush message queue */
2567   dbus_connection_flush (connection);
2568
2569   CONNECTION_LOCK (connection);
2570
2571   _dbus_get_current_time (&start_tv_sec, &start_tv_usec);
2572   end_tv_sec = start_tv_sec + timeout_milliseconds / 1000;
2573   end_tv_usec = start_tv_usec + (timeout_milliseconds % 1000) * 1000;
2574   end_tv_sec += end_tv_usec / _DBUS_USEC_PER_SECOND;
2575   end_tv_usec = end_tv_usec % _DBUS_USEC_PER_SECOND;
2576
2577   _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",
2578                  timeout_milliseconds,
2579                  client_serial,
2580                  start_tv_sec, start_tv_usec,
2581                  end_tv_sec, end_tv_usec);
2582
2583   /* Now we wait... */
2584   /* always block at least once as we know we don't have the reply yet */
2585   _dbus_connection_do_iteration_unlocked (connection,
2586                                           DBUS_ITERATION_DO_READING |
2587                                           DBUS_ITERATION_BLOCK,
2588                                           timeout_milliseconds);
2589
2590  recheck_status:
2591
2592   _dbus_verbose ("%s top of recheck\n", _DBUS_FUNCTION_NAME);
2593   
2594   HAVE_LOCK_CHECK (connection);
2595   
2596   /* queue messages and get status */
2597
2598   status = _dbus_connection_get_dispatch_status_unlocked (connection);
2599
2600   /* the get_completed() is in case a dispatch() while we were blocking
2601    * got the reply instead of us.
2602    */
2603   if (dbus_pending_call_get_completed (pending))
2604     {
2605       _dbus_verbose ("Pending call completed by dispatch in %s\n", _DBUS_FUNCTION_NAME);
2606       _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2607       return;
2608     }
2609   
2610   if (status == DBUS_DISPATCH_DATA_REMAINS)
2611     {
2612       DBusMessage *reply;
2613       
2614       reply = check_for_reply_unlocked (connection, client_serial);
2615       if (reply != NULL)
2616         {
2617           _dbus_verbose ("%s checked for reply\n", _DBUS_FUNCTION_NAME);
2618
2619           _dbus_verbose ("dbus_connection_send_with_reply_and_block(): got reply\n");
2620           
2621           _dbus_pending_call_complete_and_unlock (pending, reply);
2622           dbus_message_unref (reply);
2623
2624           CONNECTION_LOCK (connection);
2625           status = _dbus_connection_get_dispatch_status_unlocked (connection);
2626           _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2627           
2628           return;
2629         }
2630     }
2631   
2632   _dbus_get_current_time (&tv_sec, &tv_usec);
2633   
2634   if (!_dbus_connection_get_is_connected_unlocked (connection))
2635     {
2636       /* FIXME send a "DBUS_ERROR_DISCONNECTED" instead, just to help
2637        * programmers understand what went wrong since the timeout is
2638        * confusing
2639        */
2640       
2641       _dbus_pending_call_complete_and_unlock (pending, NULL);
2642       return;
2643     }
2644   else if (tv_sec < start_tv_sec)
2645     _dbus_verbose ("dbus_connection_send_with_reply_and_block(): clock set backward\n");
2646   else if (connection->disconnect_message_link == NULL)
2647     _dbus_verbose ("dbus_connection_send_with_reply_and_block(): disconnected\n");
2648   else if (tv_sec < end_tv_sec ||
2649            (tv_sec == end_tv_sec && tv_usec < end_tv_usec))
2650     {
2651       timeout_milliseconds = (end_tv_sec - tv_sec) * 1000 +
2652         (end_tv_usec - tv_usec) / 1000;
2653       _dbus_verbose ("dbus_connection_send_with_reply_and_block(): %d milliseconds remain\n", timeout_milliseconds);
2654       _dbus_assert (timeout_milliseconds >= 0);
2655       
2656       if (status == DBUS_DISPATCH_NEED_MEMORY)
2657         {
2658           /* Try sleeping a bit, as we aren't sure we need to block for reading,
2659            * we may already have a reply in the buffer and just can't process
2660            * it.
2661            */
2662           _dbus_verbose ("dbus_connection_send_with_reply_and_block() waiting for more memory\n");
2663           
2664           if (timeout_milliseconds < 100)
2665             ; /* just busy loop */
2666           else if (timeout_milliseconds <= 1000)
2667             _dbus_sleep_milliseconds (timeout_milliseconds / 3);
2668           else
2669             _dbus_sleep_milliseconds (1000);
2670         }
2671       else
2672         {          
2673           /* block again, we don't have the reply buffered yet. */
2674           _dbus_connection_do_iteration_unlocked (connection,
2675                                                   DBUS_ITERATION_DO_READING |
2676                                                   DBUS_ITERATION_BLOCK,
2677                                                   timeout_milliseconds);
2678         }
2679
2680       goto recheck_status;
2681     }
2682
2683   _dbus_verbose ("dbus_connection_send_with_reply_and_block(): Waited %ld milliseconds and got no reply\n",
2684                  (tv_sec - start_tv_sec) * 1000 + (tv_usec - start_tv_usec) / 1000);
2685
2686   _dbus_assert (!dbus_pending_call_get_completed (pending));
2687   
2688   /* unlock and call user code */
2689   _dbus_pending_call_complete_and_unlock (pending, NULL);
2690
2691   /* update user code on dispatch status */
2692   CONNECTION_LOCK (connection);
2693   status = _dbus_connection_get_dispatch_status_unlocked (connection);
2694   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2695 }
2696
2697 /**
2698  * Sends a message and blocks a certain time period while waiting for
2699  * a reply.  This function does not reenter the main loop,
2700  * i.e. messages other than the reply are queued up but not
2701  * processed. This function is used to do non-reentrant "method
2702  * calls."
2703  * 
2704  * If a normal reply is received, it is returned, and removed from the
2705  * incoming message queue. If it is not received, #NULL is returned
2706  * and the error is set to #DBUS_ERROR_NO_REPLY.  If an error reply is
2707  * received, it is converted to a #DBusError and returned as an error,
2708  * then the reply message is deleted. If something else goes wrong,
2709  * result is set to whatever is appropriate, such as
2710  * #DBUS_ERROR_NO_MEMORY or #DBUS_ERROR_DISCONNECTED.
2711  *
2712  * @param connection the connection
2713  * @param message the message to send
2714  * @param timeout_milliseconds timeout in milliseconds or -1 for default
2715  * @param error return location for error message
2716  * @returns the message that is the reply or #NULL with an error code if the
2717  * function fails.
2718  */
2719 DBusMessage*
2720 dbus_connection_send_with_reply_and_block (DBusConnection     *connection,
2721                                            DBusMessage        *message,
2722                                            int                 timeout_milliseconds,
2723                                            DBusError          *error)
2724 {
2725   DBusMessage *reply;
2726   DBusPendingCall *pending;
2727   
2728   _dbus_return_val_if_fail (connection != NULL, NULL);
2729   _dbus_return_val_if_fail (message != NULL, NULL);
2730   _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);  
2731   _dbus_return_val_if_error_is_set (error, NULL);
2732   
2733   if (!dbus_connection_send_with_reply (connection, message,
2734                                         &pending, timeout_milliseconds))
2735     {
2736       _DBUS_SET_OOM (error);
2737       return NULL;
2738     }
2739
2740   _dbus_assert (pending != NULL);
2741   
2742   dbus_pending_call_block (pending);
2743
2744   reply = dbus_pending_call_steal_reply (pending);
2745   dbus_pending_call_unref (pending);
2746
2747   /* call_complete_and_unlock() called from pending_call_block() should
2748    * always fill this in.
2749    */
2750   _dbus_assert (reply != NULL);
2751   
2752    if (dbus_set_error_from_message (error, reply))
2753     {
2754       dbus_message_unref (reply);
2755       return NULL;
2756     }
2757   else
2758     return reply;
2759 }
2760
2761 /**
2762  * Blocks until the outgoing message queue is empty.
2763  *
2764  * @param connection the connection.
2765  */
2766 void
2767 dbus_connection_flush (DBusConnection *connection)
2768 {
2769   /* We have to specify DBUS_ITERATION_DO_READING here because
2770    * otherwise we could have two apps deadlock if they are both doing
2771    * a flush(), and the kernel buffers fill up. This could change the
2772    * dispatch status.
2773    */
2774   DBusDispatchStatus status;
2775
2776   _dbus_return_if_fail (connection != NULL);
2777   
2778   CONNECTION_LOCK (connection);
2779   while (connection->n_outgoing > 0 &&
2780          _dbus_connection_get_is_connected_unlocked (connection))
2781     {
2782       _dbus_verbose ("doing iteration in %s\n", _DBUS_FUNCTION_NAME);
2783       HAVE_LOCK_CHECK (connection);
2784       _dbus_connection_do_iteration_unlocked (connection,
2785                                               DBUS_ITERATION_DO_READING |
2786                                               DBUS_ITERATION_DO_WRITING |
2787                                               DBUS_ITERATION_BLOCK,
2788                                               -1);
2789     }
2790
2791   HAVE_LOCK_CHECK (connection);
2792   _dbus_verbose ("%s middle\n", _DBUS_FUNCTION_NAME);
2793   status = _dbus_connection_get_dispatch_status_unlocked (connection);
2794
2795   HAVE_LOCK_CHECK (connection);
2796   /* Unlocks and calls out to user code */
2797   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
2798
2799   _dbus_verbose ("%s end\n", _DBUS_FUNCTION_NAME);
2800 }
2801
2802 /**
2803  * Returns the first-received message from the incoming message queue,
2804  * leaving it in the queue. If the queue is empty, returns #NULL.
2805  * 
2806  * The caller does not own a reference to the returned message, and
2807  * must either return it using dbus_connection_return_message() or
2808  * keep it after calling dbus_connection_steal_borrowed_message(). No
2809  * one can get at the message while its borrowed, so return it as
2810  * quickly as possible and don't keep a reference to it after
2811  * returning it. If you need to keep the message, make a copy of it.
2812  *
2813  * dbus_connection_dispatch() will block if called while a borrowed
2814  * message is outstanding; only one piece of code can be playing with
2815  * the incoming queue at a time. This function will block if called
2816  * during a dbus_connection_dispatch().
2817  *
2818  * @param connection the connection.
2819  * @returns next message in the incoming queue.
2820  */
2821 DBusMessage*
2822 dbus_connection_borrow_message (DBusConnection *connection)
2823 {
2824   DBusDispatchStatus status;
2825   DBusMessage *message;
2826
2827   _dbus_return_val_if_fail (connection != NULL, NULL);
2828
2829   _dbus_verbose ("%s start\n", _DBUS_FUNCTION_NAME);
2830   
2831   /* this is called for the side effect that it queues
2832    * up any messages from the transport
2833    */
2834   status = dbus_connection_get_dispatch_status (connection);
2835   if (status != DBUS_DISPATCH_DATA_REMAINS)
2836     return NULL;
2837   
2838   CONNECTION_LOCK (connection);
2839
2840   _dbus_connection_acquire_dispatch (connection);
2841
2842   /* While a message is outstanding, the dispatch lock is held */
2843   _dbus_assert (connection->message_borrowed == NULL);
2844
2845   connection->message_borrowed = _dbus_list_get_first (&connection->incoming_messages);
2846   
2847   message = connection->message_borrowed;
2848
2849   /* Note that we KEEP the dispatch lock until the message is returned */
2850   if (message == NULL)
2851     _dbus_connection_release_dispatch (connection);
2852
2853   CONNECTION_UNLOCK (connection);
2854   
2855   return message;
2856 }
2857
2858 /**
2859  * Used to return a message after peeking at it using
2860  * dbus_connection_borrow_message(). Only called if
2861  * message from dbus_connection_borrow_message() was non-#NULL.
2862  *
2863  * @param connection the connection
2864  * @param message the message from dbus_connection_borrow_message()
2865  */
2866 void
2867 dbus_connection_return_message (DBusConnection *connection,
2868                                 DBusMessage    *message)
2869 {
2870   _dbus_return_if_fail (connection != NULL);
2871   _dbus_return_if_fail (message != NULL);
2872   _dbus_return_if_fail (message == connection->message_borrowed);
2873   _dbus_return_if_fail (connection->dispatch_acquired);
2874   
2875   CONNECTION_LOCK (connection);
2876   
2877   _dbus_assert (message == connection->message_borrowed);
2878   
2879   connection->message_borrowed = NULL;
2880
2881   _dbus_connection_release_dispatch (connection);
2882   
2883   CONNECTION_UNLOCK (connection);
2884 }
2885
2886 /**
2887  * Used to keep a message after peeking at it using
2888  * dbus_connection_borrow_message(). Before using this function, see
2889  * the caveats/warnings in the documentation for
2890  * dbus_connection_pop_message().
2891  *
2892  * @param connection the connection
2893  * @param message the message from dbus_connection_borrow_message()
2894  */
2895 void
2896 dbus_connection_steal_borrowed_message (DBusConnection *connection,
2897                                         DBusMessage    *message)
2898 {
2899   DBusMessage *pop_message;
2900
2901   _dbus_return_if_fail (connection != NULL);
2902   _dbus_return_if_fail (message != NULL);
2903   _dbus_return_if_fail (message == connection->message_borrowed);
2904   _dbus_return_if_fail (connection->dispatch_acquired);
2905   
2906   CONNECTION_LOCK (connection);
2907  
2908   _dbus_assert (message == connection->message_borrowed);
2909
2910   pop_message = _dbus_list_pop_first (&connection->incoming_messages);
2911   _dbus_assert (message == pop_message);
2912   
2913   connection->n_incoming -= 1;
2914  
2915   _dbus_verbose ("Incoming message %p stolen from queue, %d incoming\n",
2916                  message, connection->n_incoming);
2917  
2918   connection->message_borrowed = NULL;
2919
2920   _dbus_connection_release_dispatch (connection);
2921   
2922   CONNECTION_UNLOCK (connection);
2923 }
2924
2925 /* See dbus_connection_pop_message, but requires the caller to own
2926  * the lock before calling. May drop the lock while running.
2927  */
2928 static DBusList*
2929 _dbus_connection_pop_message_link_unlocked (DBusConnection *connection)
2930 {
2931   HAVE_LOCK_CHECK (connection);
2932   
2933   _dbus_assert (connection->message_borrowed == NULL);
2934   
2935   if (connection->n_incoming > 0)
2936     {
2937       DBusList *link;
2938
2939       link = _dbus_list_pop_first_link (&connection->incoming_messages);
2940       connection->n_incoming -= 1;
2941
2942       _dbus_verbose ("Message %p (%d %s %s %s '%s') removed from incoming queue %p, %d incoming\n",
2943                      link->data,
2944                      dbus_message_get_type (link->data),
2945                      dbus_message_get_path (link->data), 
2946                      dbus_message_get_interface (link->data) ?
2947                      dbus_message_get_interface (link->data) :
2948                      "no interface",
2949                      dbus_message_get_member (link->data) ?
2950                      dbus_message_get_member (link->data) :
2951                      "no member",
2952                      dbus_message_get_signature (link->data),
2953                      connection, connection->n_incoming);
2954
2955       return link;
2956     }
2957   else
2958     return NULL;
2959 }
2960
2961 /* See dbus_connection_pop_message, but requires the caller to own
2962  * the lock before calling. May drop the lock while running.
2963  */
2964 static DBusMessage*
2965 _dbus_connection_pop_message_unlocked (DBusConnection *connection)
2966 {
2967   DBusList *link;
2968
2969   HAVE_LOCK_CHECK (connection);
2970   
2971   link = _dbus_connection_pop_message_link_unlocked (connection);
2972
2973   if (link != NULL)
2974     {
2975       DBusMessage *message;
2976       
2977       message = link->data;
2978       
2979       _dbus_list_free_link (link);
2980       
2981       return message;
2982     }
2983   else
2984     return NULL;
2985 }
2986
2987 static void
2988 _dbus_connection_putback_message_link_unlocked (DBusConnection *connection,
2989                                                 DBusList       *message_link)
2990 {
2991   HAVE_LOCK_CHECK (connection);
2992   
2993   _dbus_assert (message_link != NULL);
2994   /* You can't borrow a message while a link is outstanding */
2995   _dbus_assert (connection->message_borrowed == NULL);
2996   /* We had to have the dispatch lock across the pop/putback */
2997   _dbus_assert (connection->dispatch_acquired);
2998
2999   _dbus_list_prepend_link (&connection->incoming_messages,
3000                            message_link);
3001   connection->n_incoming += 1;
3002
3003   _dbus_verbose ("Message %p (%d %s %s '%s') put back into queue %p, %d incoming\n",
3004                  message_link->data,
3005                  dbus_message_get_type (message_link->data),
3006                  dbus_message_get_interface (message_link->data) ?
3007                  dbus_message_get_interface (message_link->data) :
3008                  "no interface",
3009                  dbus_message_get_member (message_link->data) ?
3010                  dbus_message_get_member (message_link->data) :
3011                  "no member",
3012                  dbus_message_get_signature (message_link->data),
3013                  connection, connection->n_incoming);
3014 }
3015
3016 /**
3017  * Returns the first-received message from the incoming message queue,
3018  * removing it from the queue. The caller owns a reference to the
3019  * returned message. If the queue is empty, returns #NULL.
3020  *
3021  * This function bypasses any message handlers that are registered,
3022  * and so using it is usually wrong. Instead, let the main loop invoke
3023  * dbus_connection_dispatch(). Popping messages manually is only
3024  * useful in very simple programs that don't share a #DBusConnection
3025  * with any libraries or other modules.
3026  *
3027  * There is a lock that covers all ways of accessing the incoming message
3028  * queue, so dbus_connection_dispatch(), dbus_connection_pop_message(),
3029  * dbus_connection_borrow_message(), etc. will all block while one of the others
3030  * in the group is running.
3031  * 
3032  * @param connection the connection.
3033  * @returns next message in the incoming queue.
3034  */
3035 DBusMessage*
3036 dbus_connection_pop_message (DBusConnection *connection)
3037 {
3038   DBusMessage *message;
3039   DBusDispatchStatus status;
3040
3041   _dbus_verbose ("%s start\n", _DBUS_FUNCTION_NAME);
3042   
3043   /* this is called for the side effect that it queues
3044    * up any messages from the transport
3045    */
3046   status = dbus_connection_get_dispatch_status (connection);
3047   if (status != DBUS_DISPATCH_DATA_REMAINS)
3048     return NULL;
3049   
3050   CONNECTION_LOCK (connection);
3051   _dbus_connection_acquire_dispatch (connection);
3052   HAVE_LOCK_CHECK (connection);
3053   
3054   message = _dbus_connection_pop_message_unlocked (connection);
3055
3056   _dbus_verbose ("Returning popped message %p\n", message);    
3057
3058   _dbus_connection_release_dispatch (connection);
3059   CONNECTION_UNLOCK (connection);
3060   
3061   return message;
3062 }
3063
3064 /**
3065  * Acquire the dispatcher. This is a separate lock so the main
3066  * connection lock can be dropped to call out to application dispatch
3067  * handlers.
3068  *
3069  * @param connection the connection.
3070  */
3071 static void
3072 _dbus_connection_acquire_dispatch (DBusConnection *connection)
3073 {
3074   HAVE_LOCK_CHECK (connection);
3075
3076   _dbus_connection_ref_unlocked (connection);
3077   CONNECTION_UNLOCK (connection);
3078   
3079   _dbus_verbose ("%s locking dispatch_mutex\n", _DBUS_FUNCTION_NAME);
3080   _dbus_mutex_lock (connection->dispatch_mutex);
3081
3082   while (connection->dispatch_acquired)
3083     {
3084       _dbus_verbose ("%s waiting for dispatch to be acquirable\n", _DBUS_FUNCTION_NAME);
3085       _dbus_condvar_wait (connection->dispatch_cond, connection->dispatch_mutex);
3086     }
3087   
3088   _dbus_assert (!connection->dispatch_acquired);
3089
3090   connection->dispatch_acquired = TRUE;
3091
3092   _dbus_verbose ("%s unlocking dispatch_mutex\n", _DBUS_FUNCTION_NAME);
3093   _dbus_mutex_unlock (connection->dispatch_mutex);
3094   
3095   CONNECTION_LOCK (connection);
3096   _dbus_connection_unref_unlocked (connection);
3097 }
3098
3099 /**
3100  * Release the dispatcher when you're done with it. Only call
3101  * after you've acquired the dispatcher. Wakes up at most one
3102  * thread currently waiting to acquire the dispatcher.
3103  *
3104  * @param connection the connection.
3105  */
3106 static void
3107 _dbus_connection_release_dispatch (DBusConnection *connection)
3108 {
3109   HAVE_LOCK_CHECK (connection);
3110   
3111   _dbus_verbose ("%s locking dispatch_mutex\n", _DBUS_FUNCTION_NAME);
3112   _dbus_mutex_lock (connection->dispatch_mutex);
3113   
3114   _dbus_assert (connection->dispatch_acquired);
3115
3116   connection->dispatch_acquired = FALSE;
3117   _dbus_condvar_wake_one (connection->dispatch_cond);
3118
3119   _dbus_verbose ("%s unlocking dispatch_mutex\n", _DBUS_FUNCTION_NAME);
3120   _dbus_mutex_unlock (connection->dispatch_mutex);
3121 }
3122
3123 static void
3124 _dbus_connection_failed_pop (DBusConnection *connection,
3125                              DBusList       *message_link)
3126 {
3127   _dbus_list_prepend_link (&connection->incoming_messages,
3128                            message_link);
3129   connection->n_incoming += 1;
3130 }
3131
3132 static DBusDispatchStatus
3133 _dbus_connection_get_dispatch_status_unlocked (DBusConnection *connection)
3134 {
3135   HAVE_LOCK_CHECK (connection);
3136   
3137   if (connection->n_incoming > 0)
3138     return DBUS_DISPATCH_DATA_REMAINS;
3139   else if (!_dbus_transport_queue_messages (connection->transport))
3140     return DBUS_DISPATCH_NEED_MEMORY;
3141   else
3142     {
3143       DBusDispatchStatus status;
3144       dbus_bool_t is_connected;
3145       
3146       status = _dbus_transport_get_dispatch_status (connection->transport);
3147       is_connected = _dbus_transport_get_is_connected (connection->transport);
3148
3149       _dbus_verbose ("dispatch status = %s is_connected = %d\n",
3150                      DISPATCH_STATUS_NAME (status), is_connected);
3151       
3152       if (!is_connected)
3153         {
3154           if (status == DBUS_DISPATCH_COMPLETE &&
3155               connection->disconnect_message_link)
3156             {
3157               _dbus_verbose ("Sending disconnect message from %s\n",
3158                              _DBUS_FUNCTION_NAME);
3159
3160               connection_forget_shared_unlocked (connection);
3161               
3162               /* We haven't sent the disconnect message already,
3163                * and all real messages have been queued up.
3164                */
3165               _dbus_connection_queue_synthesized_message_link (connection,
3166                                                                connection->disconnect_message_link);
3167               connection->disconnect_message_link = NULL;
3168             }
3169
3170           /* Dump the outgoing queue, we aren't going to be able to
3171            * send it now, and we'd like accessors like
3172            * dbus_connection_get_outgoing_size() to be accurate.
3173            */
3174           if (connection->n_outgoing > 0)
3175             {
3176               DBusList *link;
3177               
3178               _dbus_verbose ("Dropping %d outgoing messages since we're disconnected\n",
3179                              connection->n_outgoing);
3180               
3181               while ((link = _dbus_list_get_last_link (&connection->outgoing_messages)))
3182                 {
3183                   _dbus_connection_message_sent (connection, link->data);
3184                 }
3185             }
3186         }
3187       
3188       if (status != DBUS_DISPATCH_COMPLETE)
3189         return status;
3190       else if (connection->n_incoming > 0)
3191         return DBUS_DISPATCH_DATA_REMAINS;
3192       else
3193         return DBUS_DISPATCH_COMPLETE;
3194     }
3195 }
3196
3197 static void
3198 _dbus_connection_update_dispatch_status_and_unlock (DBusConnection    *connection,
3199                                                     DBusDispatchStatus new_status)
3200 {
3201   dbus_bool_t changed;
3202   DBusDispatchStatusFunction function;
3203   void *data;
3204
3205   HAVE_LOCK_CHECK (connection);
3206
3207   _dbus_connection_ref_unlocked (connection);
3208
3209   changed = new_status != connection->last_dispatch_status;
3210
3211   connection->last_dispatch_status = new_status;
3212
3213   function = connection->dispatch_status_function;
3214   data = connection->dispatch_status_data;
3215
3216   /* We drop the lock */
3217   CONNECTION_UNLOCK (connection);
3218   
3219   if (changed && function)
3220     {
3221       _dbus_verbose ("Notifying of change to dispatch status of %p now %d (%s)\n",
3222                      connection, new_status,
3223                      DISPATCH_STATUS_NAME (new_status));
3224       (* function) (connection, new_status, data);      
3225     }
3226   
3227   dbus_connection_unref (connection);
3228 }
3229
3230 /**
3231  * Gets the current state (what we would currently return
3232  * from dbus_connection_dispatch()) but doesn't actually
3233  * dispatch any messages.
3234  * 
3235  * @param connection the connection.
3236  * @returns current dispatch status
3237  */
3238 DBusDispatchStatus
3239 dbus_connection_get_dispatch_status (DBusConnection *connection)
3240 {
3241   DBusDispatchStatus status;
3242
3243   _dbus_return_val_if_fail (connection != NULL, DBUS_DISPATCH_COMPLETE);
3244
3245   _dbus_verbose ("%s start\n", _DBUS_FUNCTION_NAME);
3246   
3247   CONNECTION_LOCK (connection);
3248
3249   status = _dbus_connection_get_dispatch_status_unlocked (connection);
3250   
3251   CONNECTION_UNLOCK (connection);
3252
3253   return status;
3254 }
3255
3256 /**
3257  * Processes data buffered while handling watches, queueing zero or
3258  * more incoming messages. Then pops the first-received message from
3259  * the current incoming message queue, runs any handlers for it, and
3260  * unrefs the message. Returns a status indicating whether messages/data
3261  * remain, more memory is needed, or all data has been processed.
3262  * 
3263  * Even if the dispatch status is #DBUS_DISPATCH_DATA_REMAINS,
3264  * does not necessarily dispatch a message, as the data may
3265  * be part of authentication or the like.
3266  *
3267  * @todo some FIXME in here about handling DBUS_HANDLER_RESULT_NEED_MEMORY
3268  *
3269  * @todo FIXME what if we call out to application code to handle a
3270  * message, holding the dispatch lock, and the application code runs
3271  * the main loop and dispatches again? Probably deadlocks at the
3272  * moment. Maybe we want a dispatch status of DBUS_DISPATCH_IN_PROGRESS,
3273  * and then the GSource etc. could handle the situation? Right now
3274  * our GSource is NO_RECURSE
3275  * 
3276  * @param connection the connection
3277  * @returns dispatch status
3278  */
3279 DBusDispatchStatus
3280 dbus_connection_dispatch (DBusConnection *connection)
3281 {
3282   DBusMessage *message;
3283   DBusList *link, *filter_list_copy, *message_link;
3284   DBusHandlerResult result;
3285   DBusPendingCall *pending;
3286   dbus_int32_t reply_serial;
3287   DBusDispatchStatus status;
3288
3289   _dbus_return_val_if_fail (connection != NULL, DBUS_DISPATCH_COMPLETE);
3290
3291   _dbus_verbose ("%s\n", _DBUS_FUNCTION_NAME);
3292   
3293   CONNECTION_LOCK (connection);
3294   status = _dbus_connection_get_dispatch_status_unlocked (connection);
3295   if (status != DBUS_DISPATCH_DATA_REMAINS)
3296     {
3297       /* unlocks and calls out to user code */
3298       _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3299       return status;
3300     }
3301   
3302   /* We need to ref the connection since the callback could potentially
3303    * drop the last ref to it
3304    */
3305   _dbus_connection_ref_unlocked (connection);
3306
3307   _dbus_connection_acquire_dispatch (connection);
3308   HAVE_LOCK_CHECK (connection);
3309
3310   message_link = _dbus_connection_pop_message_link_unlocked (connection);
3311   if (message_link == NULL)
3312     {
3313       /* another thread dispatched our stuff */
3314
3315       _dbus_verbose ("another thread dispatched message (during acquire_dispatch above)\n");
3316       
3317       _dbus_connection_release_dispatch (connection);
3318
3319       status = _dbus_connection_get_dispatch_status_unlocked (connection);
3320
3321       _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3322       
3323       dbus_connection_unref (connection);
3324       
3325       return status;
3326     }
3327
3328   message = message_link->data;
3329
3330   _dbus_verbose (" dispatching message %p (%d %s %s '%s')\n",
3331                  message,
3332                  dbus_message_get_type (message),
3333                  dbus_message_get_interface (message) ?
3334                  dbus_message_get_interface (message) :
3335                  "no interface",
3336                  dbus_message_get_member (message) ?
3337                  dbus_message_get_member (message) :
3338                  "no member",
3339                  dbus_message_get_signature (message));
3340
3341   result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
3342   
3343   /* Pending call handling must be first, because if you do
3344    * dbus_connection_send_with_reply_and_block() or
3345    * dbus_pending_call_block() then no handlers/filters will be run on
3346    * the reply. We want consistent semantics in the case where we
3347    * dbus_connection_dispatch() the reply.
3348    */
3349   
3350   reply_serial = dbus_message_get_reply_serial (message);
3351   pending = _dbus_hash_table_lookup_int (connection->pending_replies,
3352                                          reply_serial);
3353   if (pending)
3354     {
3355       _dbus_verbose ("Dispatching a pending reply\n");
3356       _dbus_pending_call_complete_and_unlock (pending, message);
3357       pending = NULL; /* it's probably unref'd */
3358       
3359       CONNECTION_LOCK (connection);
3360       _dbus_verbose ("pending call completed in dispatch\n");
3361       result = DBUS_HANDLER_RESULT_HANDLED;
3362       goto out;
3363     }
3364   
3365   if (!_dbus_list_copy (&connection->filter_list, &filter_list_copy))
3366     {
3367       _dbus_connection_release_dispatch (connection);
3368       HAVE_LOCK_CHECK (connection);
3369       
3370       _dbus_connection_failed_pop (connection, message_link);
3371
3372       /* unlocks and calls user code */
3373       _dbus_connection_update_dispatch_status_and_unlock (connection,
3374                                                           DBUS_DISPATCH_NEED_MEMORY);
3375
3376       if (pending)
3377         dbus_pending_call_unref (pending);
3378       dbus_connection_unref (connection);
3379       
3380       return DBUS_DISPATCH_NEED_MEMORY;
3381     }
3382   
3383   _dbus_list_foreach (&filter_list_copy,
3384                       (DBusForeachFunction)_dbus_message_filter_ref,
3385                       NULL);
3386
3387   /* We're still protected from dispatch() reentrancy here
3388    * since we acquired the dispatcher
3389    */
3390   CONNECTION_UNLOCK (connection);
3391   
3392   link = _dbus_list_get_first_link (&filter_list_copy);
3393   while (link != NULL)
3394     {
3395       DBusMessageFilter *filter = link->data;
3396       DBusList *next = _dbus_list_get_next_link (&filter_list_copy, link);
3397
3398       _dbus_verbose ("  running filter on message %p\n", message);
3399       result = (* filter->function) (connection, message, filter->user_data);
3400
3401       if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
3402         break;
3403
3404       link = next;
3405     }
3406
3407   _dbus_list_foreach (&filter_list_copy,
3408                       (DBusForeachFunction)_dbus_message_filter_unref,
3409                       NULL);
3410   _dbus_list_clear (&filter_list_copy);
3411   
3412   CONNECTION_LOCK (connection);
3413
3414   if (result == DBUS_HANDLER_RESULT_NEED_MEMORY)
3415     {
3416       _dbus_verbose ("No memory in %s\n", _DBUS_FUNCTION_NAME);
3417       goto out;
3418     }
3419   else if (result == DBUS_HANDLER_RESULT_HANDLED)
3420     {
3421       _dbus_verbose ("filter handled message in dispatch\n");
3422       goto out;
3423     }
3424
3425   /* We're still protected from dispatch() reentrancy here
3426    * since we acquired the dispatcher
3427    */
3428   _dbus_verbose ("  running object path dispatch on message %p (%d %s %s '%s')\n",
3429                  message,
3430                  dbus_message_get_type (message),
3431                  dbus_message_get_interface (message) ?
3432                  dbus_message_get_interface (message) :
3433                  "no interface",
3434                  dbus_message_get_member (message) ?
3435                  dbus_message_get_member (message) :
3436                  "no member",
3437                  dbus_message_get_signature (message));
3438
3439   HAVE_LOCK_CHECK (connection);
3440   result = _dbus_object_tree_dispatch_and_unlock (connection->objects,
3441                                                   message);
3442   
3443   CONNECTION_LOCK (connection);
3444
3445   if (result != DBUS_HANDLER_RESULT_NOT_YET_HANDLED)
3446     {
3447       _dbus_verbose ("object tree handled message in dispatch\n");
3448       goto out;
3449     }
3450
3451   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_CALL)
3452     {
3453       DBusMessage *reply;
3454       DBusString str;
3455       DBusPreallocatedSend *preallocated;
3456
3457       _dbus_verbose ("  sending error %s\n",
3458                      DBUS_ERROR_UNKNOWN_METHOD);
3459       
3460       if (!_dbus_string_init (&str))
3461         {
3462           result = DBUS_HANDLER_RESULT_NEED_MEMORY;
3463           _dbus_verbose ("no memory for error string in dispatch\n");
3464           goto out;
3465         }
3466               
3467       if (!_dbus_string_append_printf (&str,
3468                                        "Method \"%s\" with signature \"%s\" on interface \"%s\" doesn't exist\n",
3469                                        dbus_message_get_member (message),
3470                                        dbus_message_get_signature (message),
3471                                        dbus_message_get_interface (message)))
3472         {
3473           _dbus_string_free (&str);
3474           result = DBUS_HANDLER_RESULT_NEED_MEMORY;
3475           _dbus_verbose ("no memory for error string in dispatch\n");
3476           goto out;
3477         }
3478       
3479       reply = dbus_message_new_error (message,
3480                                       DBUS_ERROR_UNKNOWN_METHOD,
3481                                       _dbus_string_get_const_data (&str));
3482       _dbus_string_free (&str);
3483
3484       if (reply == NULL)
3485         {
3486           result = DBUS_HANDLER_RESULT_NEED_MEMORY;
3487           _dbus_verbose ("no memory for error reply in dispatch\n");
3488           goto out;
3489         }
3490       
3491       preallocated = _dbus_connection_preallocate_send_unlocked (connection);
3492
3493       if (preallocated == NULL)
3494         {
3495           dbus_message_unref (reply);
3496           result = DBUS_HANDLER_RESULT_NEED_MEMORY;
3497           _dbus_verbose ("no memory for error send in dispatch\n");
3498           goto out;
3499         }
3500
3501       _dbus_connection_send_preallocated_unlocked_no_update (connection, preallocated,
3502                                                              reply, NULL);
3503
3504       dbus_message_unref (reply);
3505       
3506       result = DBUS_HANDLER_RESULT_HANDLED;
3507     }
3508   
3509   _dbus_verbose ("  done dispatching %p (%d %s %s '%s') on connection %p\n", message,
3510                  dbus_message_get_type (message),
3511                  dbus_message_get_interface (message) ?
3512                  dbus_message_get_interface (message) :
3513                  "no interface",
3514                  dbus_message_get_member (message) ?
3515                  dbus_message_get_member (message) :
3516                  "no member",
3517                  dbus_message_get_signature (message),
3518                  connection);
3519   
3520  out:
3521   if (result == DBUS_HANDLER_RESULT_NEED_MEMORY)
3522     {
3523       _dbus_verbose ("out of memory in %s\n", _DBUS_FUNCTION_NAME);
3524       
3525       /* Put message back, and we'll start over.
3526        * Yes this means handlers must be idempotent if they
3527        * don't return HANDLED; c'est la vie.
3528        */
3529       _dbus_connection_putback_message_link_unlocked (connection,
3530                                                       message_link);
3531     }
3532   else
3533     {
3534       _dbus_verbose (" ... done dispatching in %s\n", _DBUS_FUNCTION_NAME);
3535       
3536       if (connection->exit_on_disconnect &&
3537           dbus_message_is_signal (message,
3538                                   DBUS_INTERFACE_LOCAL,
3539                                   "Disconnected"))
3540         {
3541           _dbus_verbose ("Exiting on Disconnected signal\n");
3542           CONNECTION_UNLOCK (connection);
3543           _dbus_exit (1);
3544           _dbus_assert_not_reached ("Call to exit() returned");
3545         }
3546       
3547       _dbus_list_free_link (message_link);
3548       dbus_message_unref (message); /* don't want the message to count in max message limits
3549                                      * in computing dispatch status below
3550                                      */
3551     }
3552   
3553   _dbus_connection_release_dispatch (connection);
3554   HAVE_LOCK_CHECK (connection);
3555
3556   _dbus_verbose ("%s before final status update\n", _DBUS_FUNCTION_NAME);
3557   status = _dbus_connection_get_dispatch_status_unlocked (connection);
3558
3559   /* unlocks and calls user code */
3560   _dbus_connection_update_dispatch_status_and_unlock (connection, status);
3561   
3562   dbus_connection_unref (connection);
3563   
3564   return status;
3565 }
3566
3567 /**
3568  * Sets the watch functions for the connection. These functions are
3569  * responsible for making the application's main loop aware of file
3570  * descriptors that need to be monitored for events, using select() or
3571  * poll(). When using Qt, typically the DBusAddWatchFunction would
3572  * create a QSocketNotifier. When using GLib, the DBusAddWatchFunction
3573  * could call g_io_add_watch(), or could be used as part of a more
3574  * elaborate GSource. Note that when a watch is added, it may
3575  * not be enabled.
3576  *
3577  * The DBusWatchToggledFunction notifies the application that the
3578  * watch has been enabled or disabled. Call dbus_watch_get_enabled()
3579  * to check this. A disabled watch should have no effect, and enabled
3580  * watch should be added to the main loop. This feature is used
3581  * instead of simply adding/removing the watch because
3582  * enabling/disabling can be done without memory allocation.  The
3583  * toggled function may be NULL if a main loop re-queries
3584  * dbus_watch_get_enabled() every time anyway.
3585  * 
3586  * The DBusWatch can be queried for the file descriptor to watch using
3587  * dbus_watch_get_fd(), and for the events to watch for using
3588  * dbus_watch_get_flags(). The flags returned by
3589  * dbus_watch_get_flags() will only contain DBUS_WATCH_READABLE and
3590  * DBUS_WATCH_WRITABLE, never DBUS_WATCH_HANGUP or DBUS_WATCH_ERROR;
3591  * all watches implicitly include a watch for hangups, errors, and
3592  * other exceptional conditions.
3593  *
3594  * Once a file descriptor becomes readable or writable, or an exception
3595  * occurs, dbus_watch_handle() should be called to
3596  * notify the connection of the file descriptor's condition.
3597  *
3598  * dbus_watch_handle() cannot be called during the
3599  * DBusAddWatchFunction, as the connection will not be ready to handle
3600  * that watch yet.
3601  * 
3602  * It is not allowed to reference a DBusWatch after it has been passed
3603  * to remove_function.
3604  *
3605  * If #FALSE is returned due to lack of memory, the failure may be due
3606  * to a #FALSE return from the new add_function. If so, the
3607  * add_function may have been called successfully one or more times,
3608  * but the remove_function will also have been called to remove any
3609  * successful adds. i.e. if #FALSE is returned the net result
3610  * should be that dbus_connection_set_watch_functions() has no effect,
3611  * but the add_function and remove_function may have been called.
3612  *
3613  * @todo We need to drop the lock when we call the
3614  * add/remove/toggled functions which can be a side effect
3615  * of setting the watch functions.
3616  * 
3617  * @param connection the connection.
3618  * @param add_function function to begin monitoring a new descriptor.
3619  * @param remove_function function to stop monitoring a descriptor.
3620  * @param toggled_function function to notify of enable/disable
3621  * @param data data to pass to add_function and remove_function.
3622  * @param free_data_function function to be called to free the data.
3623  * @returns #FALSE on failure (no memory)
3624  */
3625 dbus_bool_t
3626 dbus_connection_set_watch_functions (DBusConnection              *connection,
3627                                      DBusAddWatchFunction         add_function,
3628                                      DBusRemoveWatchFunction      remove_function,
3629                                      DBusWatchToggledFunction     toggled_function,
3630                                      void                        *data,
3631                                      DBusFreeFunction             free_data_function)
3632 {
3633   dbus_bool_t retval;
3634   DBusWatchList *watches;
3635
3636   _dbus_return_val_if_fail (connection != NULL, FALSE);
3637   
3638   CONNECTION_LOCK (connection);
3639
3640 #ifndef DBUS_DISABLE_CHECKS
3641   if (connection->watches == NULL)
3642     {
3643       _dbus_warn ("Re-entrant call to %s is not allowed\n",
3644                   _DBUS_FUNCTION_NAME);
3645       return FALSE;
3646     }
3647 #endif
3648   
3649   /* ref connection for slightly better reentrancy */
3650   _dbus_connection_ref_unlocked (connection);
3651
3652   /* This can call back into user code, and we need to drop the
3653    * connection lock when it does. This is kind of a lame
3654    * way to do it.
3655    */
3656   watches = connection->watches;
3657   connection->watches = NULL;
3658   CONNECTION_UNLOCK (connection);
3659
3660   retval = _dbus_watch_list_set_functions (watches,
3661                                            add_function, remove_function,
3662                                            toggled_function,
3663                                            data, free_data_function);
3664   CONNECTION_LOCK (connection);
3665   connection->watches = watches;
3666   
3667   CONNECTION_UNLOCK (connection);
3668   /* drop our paranoid refcount */
3669   dbus_connection_unref (connection);
3670   
3671   return retval;
3672 }
3673
3674 /**
3675  * Sets the timeout functions for the connection. These functions are
3676  * responsible for making the application's main loop aware of timeouts.
3677  * When using Qt, typically the DBusAddTimeoutFunction would create a
3678  * QTimer. When using GLib, the DBusAddTimeoutFunction would call
3679  * g_timeout_add.
3680  * 
3681  * The DBusTimeoutToggledFunction notifies the application that the
3682  * timeout has been enabled or disabled. Call
3683  * dbus_timeout_get_enabled() to check this. A disabled timeout should
3684  * have no effect, and enabled timeout should be added to the main
3685  * loop. This feature is used instead of simply adding/removing the
3686  * timeout because enabling/disabling can be done without memory
3687  * allocation. With Qt, QTimer::start() and QTimer::stop() can be used
3688  * to enable and disable. The toggled function may be NULL if a main
3689  * loop re-queries dbus_timeout_get_enabled() every time anyway.
3690  * Whenever a timeout is toggled, its interval may change.
3691  *
3692  * The DBusTimeout can be queried for the timer interval using
3693  * dbus_timeout_get_interval(). dbus_timeout_handle() should be called
3694  * repeatedly, each time the interval elapses, starting after it has
3695  * elapsed once. The timeout stops firing when it is removed with the
3696  * given remove_function.  The timer interval may change whenever the
3697  * timeout is added, removed, or toggled.
3698  *
3699  * @param connection the connection.
3700  * @param add_function function to add a timeout.
3701  * @param remove_function function to remove a timeout.
3702  * @param toggled_function function to notify of enable/disable
3703  * @param data data to pass to add_function and remove_function.
3704  * @param free_data_function function to be called to free the data.
3705  * @returns #FALSE on failure (no memory)
3706  */
3707 dbus_bool_t
3708 dbus_connection_set_timeout_functions   (DBusConnection            *connection,
3709                                          DBusAddTimeoutFunction     add_function,
3710                                          DBusRemoveTimeoutFunction  remove_function,
3711                                          DBusTimeoutToggledFunction toggled_function,
3712                                          void                      *data,
3713                                          DBusFreeFunction           free_data_function)
3714 {
3715   dbus_bool_t retval;
3716   DBusTimeoutList *timeouts;
3717
3718   _dbus_return_val_if_fail (connection != NULL, FALSE);
3719   
3720   CONNECTION_LOCK (connection);
3721
3722 #ifndef DBUS_DISABLE_CHECKS
3723   if (connection->timeouts == NULL)
3724     {
3725       _dbus_warn ("Re-entrant call to %s is not allowed\n",
3726                   _DBUS_FUNCTION_NAME);
3727       return FALSE;
3728     }
3729 #endif
3730   
3731   /* ref connection for slightly better reentrancy */
3732   _dbus_connection_ref_unlocked (connection);
3733
3734   timeouts = connection->timeouts;
3735   connection->timeouts = NULL;
3736   CONNECTION_UNLOCK (connection);
3737   
3738   retval = _dbus_timeout_list_set_functions (timeouts,
3739                                              add_function, remove_function,
3740                                              toggled_function,
3741                                              data, free_data_function);
3742   CONNECTION_LOCK (connection);
3743   connection->timeouts = timeouts;
3744   
3745   CONNECTION_UNLOCK (connection);
3746   /* drop our paranoid refcount */
3747   dbus_connection_unref (connection);
3748
3749   return retval;
3750 }
3751
3752 /**
3753  * Sets the mainloop wakeup function for the connection. Thi function is
3754  * responsible for waking up the main loop (if its sleeping) when some some
3755  * change has happened to the connection that the mainloop needs to reconsiders
3756  * (e.g. a message has been queued for writing).
3757  * When using Qt, this typically results in a call to QEventLoop::wakeUp().
3758  * When using GLib, it would call g_main_context_wakeup().
3759  *
3760  *
3761  * @param connection the connection.
3762  * @param wakeup_main_function function to wake up the mainloop
3763  * @param data data to pass wakeup_main_function
3764  * @param free_data_function function to be called to free the data.
3765  */
3766 void
3767 dbus_connection_set_wakeup_main_function (DBusConnection            *connection,
3768                                           DBusWakeupMainFunction     wakeup_main_function,
3769                                           void                      *data,
3770                                           DBusFreeFunction           free_data_function)
3771 {
3772   void *old_data;
3773   DBusFreeFunction old_free_data;
3774
3775   _dbus_return_if_fail (connection != NULL);
3776   
3777   CONNECTION_LOCK (connection);
3778   old_data = connection->wakeup_main_data;
3779   old_free_data = connection->free_wakeup_main_data;
3780
3781   connection->wakeup_main_function = wakeup_main_function;
3782   connection->wakeup_main_data = data;
3783   connection->free_wakeup_main_data = free_data_function;
3784   
3785   CONNECTION_UNLOCK (connection);
3786
3787   /* Callback outside the lock */
3788   if (old_free_data)
3789     (*old_free_data) (old_data);
3790 }
3791
3792 /**
3793  * Set a function to be invoked when the dispatch status changes.
3794  * If the dispatch status is #DBUS_DISPATCH_DATA_REMAINS, then
3795  * dbus_connection_dispatch() needs to be called to process incoming
3796  * messages. However, dbus_connection_dispatch() MUST NOT BE CALLED
3797  * from inside the DBusDispatchStatusFunction. Indeed, almost
3798  * any reentrancy in this function is a bad idea. Instead,
3799  * the DBusDispatchStatusFunction should simply save an indication
3800  * that messages should be dispatched later, when the main loop
3801  * is re-entered.
3802  *
3803  * @param connection the connection
3804  * @param function function to call on dispatch status changes
3805  * @param data data for function
3806  * @param free_data_function free the function data
3807  */
3808 void
3809 dbus_connection_set_dispatch_status_function (DBusConnection             *connection,
3810                                               DBusDispatchStatusFunction  function,
3811                                               void                       *data,
3812                                               DBusFreeFunction            free_data_function)
3813 {
3814   void *old_data;
3815   DBusFreeFunction old_free_data;
3816
3817   _dbus_return_if_fail (connection != NULL);
3818   
3819   CONNECTION_LOCK (connection);
3820   old_data = connection->dispatch_status_data;
3821   old_free_data = connection->free_dispatch_status_data;
3822
3823   connection->dispatch_status_function = function;
3824   connection->dispatch_status_data = data;
3825   connection->free_dispatch_status_data = free_data_function;
3826   
3827   CONNECTION_UNLOCK (connection);
3828
3829   /* Callback outside the lock */
3830   if (old_free_data)
3831     (*old_free_data) (old_data);
3832 }
3833
3834 /**
3835  * Get the UNIX file descriptor of the connection, if any.  This can
3836  * be used for SELinux access control checks with getpeercon() for
3837  * example. DO NOT read or write to the file descriptor, or try to
3838  * select() on it; use DBusWatch for main loop integration. Not all
3839  * connections will have a file descriptor. So for adding descriptors
3840  * to the main loop, use dbus_watch_get_fd() and so forth.
3841  *
3842  * @param connection the connection
3843  * @param fd return location for the file descriptor.
3844  * @returns #TRUE if fd is successfully obtained.
3845  */
3846 dbus_bool_t
3847 dbus_connection_get_unix_fd (DBusConnection *connection,
3848                              int            *fd)
3849 {
3850   dbus_bool_t retval;
3851
3852   _dbus_return_val_if_fail (connection != NULL, FALSE);
3853   _dbus_return_val_if_fail (connection->transport != NULL, FALSE);
3854   
3855   CONNECTION_LOCK (connection);
3856   
3857   retval = _dbus_transport_get_unix_fd (connection->transport,
3858                                         fd);
3859
3860   CONNECTION_UNLOCK (connection);
3861
3862   return retval;
3863 }
3864
3865 /**
3866  * Gets the UNIX user ID of the connection if any.
3867  * Returns #TRUE if the uid is filled in.
3868  * Always returns #FALSE on non-UNIX platforms.
3869  * Always returns #FALSE prior to authenticating the
3870  * connection.
3871  *
3872  * @param connection the connection
3873  * @param uid return location for the user ID
3874  * @returns #TRUE if uid is filled in with a valid user ID
3875  */
3876 dbus_bool_t
3877 dbus_connection_get_unix_user (DBusConnection *connection,
3878                                unsigned long  *uid)
3879 {
3880   dbus_bool_t result;
3881
3882   _dbus_return_val_if_fail (connection != NULL, FALSE);
3883   _dbus_return_val_if_fail (uid != NULL, FALSE);
3884   
3885   CONNECTION_LOCK (connection);
3886
3887   if (!_dbus_transport_get_is_authenticated (connection->transport))
3888     result = FALSE;
3889   else
3890     result = _dbus_transport_get_unix_user (connection->transport,
3891                                             uid);
3892   CONNECTION_UNLOCK (connection);
3893
3894   return result;
3895 }
3896
3897 /**
3898  * Gets the process ID of the connection if any.
3899  * Returns #TRUE if the uid is filled in.
3900  * Always returns #FALSE prior to authenticating the
3901  * connection.
3902  *
3903  * @param connection the connection
3904  * @param pid return location for the process ID
3905  * @returns #TRUE if uid is filled in with a valid process ID
3906  */
3907 dbus_bool_t
3908 dbus_connection_get_unix_process_id (DBusConnection *connection,
3909                                      unsigned long  *pid)
3910 {
3911   dbus_bool_t result;
3912
3913   _dbus_return_val_if_fail (connection != NULL, FALSE);
3914   _dbus_return_val_if_fail (pid != NULL, FALSE);
3915   
3916   CONNECTION_LOCK (connection);
3917
3918   if (!_dbus_transport_get_is_authenticated (connection->transport))
3919     result = FALSE;
3920   else
3921     result = _dbus_transport_get_unix_process_id (connection->transport,
3922                                                   pid);
3923   CONNECTION_UNLOCK (connection);
3924
3925   return result;
3926 }
3927
3928 /**
3929  * Sets a predicate function used to determine whether a given user ID
3930  * is allowed to connect. When an incoming connection has
3931  * authenticated with a particular user ID, this function is called;
3932  * if it returns #TRUE, the connection is allowed to proceed,
3933  * otherwise the connection is disconnected.
3934  *
3935  * If the function is set to #NULL (as it is by default), then
3936  * only the same UID as the server process will be allowed to
3937  * connect.
3938  *
3939  * @param connection the connection
3940  * @param function the predicate
3941  * @param data data to pass to the predicate
3942  * @param free_data_function function to free the data
3943  */
3944 void
3945 dbus_connection_set_unix_user_function (DBusConnection             *connection,
3946                                         DBusAllowUnixUserFunction   function,
3947                                         void                       *data,
3948                                         DBusFreeFunction            free_data_function)
3949 {
3950   void *old_data = NULL;
3951   DBusFreeFunction old_free_function = NULL;
3952
3953   _dbus_return_if_fail (connection != NULL);
3954   
3955   CONNECTION_LOCK (connection);
3956   _dbus_transport_set_unix_user_function (connection->transport,
3957                                           function, data, free_data_function,
3958                                           &old_data, &old_free_function);
3959   CONNECTION_UNLOCK (connection);
3960
3961   if (old_free_function != NULL)
3962     (* old_free_function) (old_data);    
3963 }
3964
3965 /**
3966  * Adds a message filter. Filters are handlers that are run on all
3967  * incoming messages, prior to the objects registered with
3968  * dbus_connection_register_object_path().  Filters are run in the
3969  * order that they were added.  The same handler can be added as a
3970  * filter more than once, in which case it will be run more than once.
3971  * Filters added during a filter callback won't be run on the message
3972  * being processed.
3973  *
3974  * @todo we don't run filters on messages while blocking without
3975  * entering the main loop, since filters are run as part of
3976  * dbus_connection_dispatch(). This is probably a feature, as filters
3977  * could create arbitrary reentrancy. But kind of sucks if you're
3978  * trying to filter METHOD_RETURN for some reason.
3979  *
3980  * @param connection the connection
3981  * @param function function to handle messages
3982  * @param user_data user data to pass to the function
3983  * @param free_data_function function to use for freeing user data
3984  * @returns #TRUE on success, #FALSE if not enough memory.
3985  */
3986 dbus_bool_t
3987 dbus_connection_add_filter (DBusConnection            *connection,
3988                             DBusHandleMessageFunction  function,
3989                             void                      *user_data,
3990                             DBusFreeFunction           free_data_function)
3991 {
3992   DBusMessageFilter *filter;
3993   
3994   _dbus_return_val_if_fail (connection != NULL, FALSE);
3995   _dbus_return_val_if_fail (function != NULL, FALSE);
3996
3997   filter = dbus_new0 (DBusMessageFilter, 1);
3998   if (filter == NULL)
3999     return FALSE;
4000
4001   filter->refcount.value = 1;
4002   
4003   CONNECTION_LOCK (connection);
4004
4005   if (!_dbus_list_append (&connection->filter_list,
4006                           filter))
4007     {
4008       _dbus_message_filter_unref (filter);
4009       CONNECTION_UNLOCK (connection);
4010       return FALSE;
4011     }
4012
4013   /* Fill in filter after all memory allocated,
4014    * so we don't run the free_user_data_function
4015    * if the add_filter() fails
4016    */
4017   
4018   filter->function = function;
4019   filter->user_data = user_data;
4020   filter->free_user_data_function = free_data_function;
4021         
4022   CONNECTION_UNLOCK (connection);
4023   return TRUE;
4024 }
4025
4026 /**
4027  * Removes a previously-added message filter. It is a programming
4028  * error to call this function for a handler that has not been added
4029  * as a filter. If the given handler was added more than once, only
4030  * one instance of it will be removed (the most recently-added
4031  * instance).
4032  *
4033  * @param connection the connection
4034  * @param function the handler to remove
4035  * @param user_data user data for the handler to remove
4036  *
4037  */
4038 void
4039 dbus_connection_remove_filter (DBusConnection            *connection,
4040                                DBusHandleMessageFunction  function,
4041                                void                      *user_data)
4042 {
4043   DBusList *link;
4044   DBusMessageFilter *filter;
4045   
4046   _dbus_return_if_fail (connection != NULL);
4047   _dbus_return_if_fail (function != NULL);
4048   
4049   CONNECTION_LOCK (connection);
4050
4051   filter = NULL;
4052   
4053   link = _dbus_list_get_last_link (&connection->filter_list);
4054   while (link != NULL)
4055     {
4056       filter = link->data;
4057
4058       if (filter->function == function &&
4059           filter->user_data == user_data)
4060         {
4061           _dbus_list_remove_link (&connection->filter_list, link);
4062           filter->function = NULL;
4063           
4064           break;
4065         }
4066         
4067       link = _dbus_list_get_prev_link (&connection->filter_list, link);
4068     }
4069   
4070   CONNECTION_UNLOCK (connection);
4071
4072 #ifndef DBUS_DISABLE_CHECKS
4073   if (filter == NULL)
4074     {
4075       _dbus_warn ("Attempt to remove filter function %p user data %p, but no such filter has been added\n",
4076                   function, user_data);
4077       return;
4078     }
4079 #endif
4080   
4081   /* Call application code */
4082   if (filter->free_user_data_function)
4083     (* filter->free_user_data_function) (filter->user_data);
4084
4085   filter->free_user_data_function = NULL;
4086   filter->user_data = NULL;
4087   
4088   _dbus_message_filter_unref (filter);
4089 }
4090
4091 /**
4092  * Registers a handler for a given path in the object hierarchy.
4093  * The given vtable handles messages sent to exactly the given path.
4094  *
4095  *
4096  * @param connection the connection
4097  * @param path a '/' delimited string of path elements
4098  * @param vtable the virtual table
4099  * @param user_data data to pass to functions in the vtable
4100  * @returns #FALSE if not enough memory
4101  */
4102 dbus_bool_t
4103 dbus_connection_register_object_path (DBusConnection              *connection,
4104                                       const char                  *path,
4105                                       const DBusObjectPathVTable  *vtable,
4106                                       void                        *user_data)
4107 {
4108   char **decomposed_path;
4109   dbus_bool_t retval;
4110   
4111   _dbus_return_val_if_fail (connection != NULL, FALSE);
4112   _dbus_return_val_if_fail (path != NULL, FALSE);
4113   _dbus_return_val_if_fail (path[0] == '/', FALSE);
4114   _dbus_return_val_if_fail (vtable != NULL, FALSE);
4115
4116   if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
4117     return FALSE;
4118
4119   CONNECTION_LOCK (connection);
4120
4121   retval = _dbus_object_tree_register (connection->objects,
4122                                        FALSE,
4123                                        (const char **) decomposed_path, vtable,
4124                                        user_data);
4125
4126   CONNECTION_UNLOCK (connection);
4127
4128   dbus_free_string_array (decomposed_path);
4129
4130   return retval;
4131 }
4132
4133 /**
4134  * Registers a fallback handler for a given subsection of the object
4135  * hierarchy.  The given vtable handles messages at or below the given
4136  * path. You can use this to establish a default message handling
4137  * policy for a whole "subdirectory."
4138  *
4139  * @param connection the connection
4140  * @param path a '/' delimited string of path elements
4141  * @param vtable the virtual table
4142  * @param user_data data to pass to functions in the vtable
4143  * @returns #FALSE if not enough memory
4144  */
4145 dbus_bool_t
4146 dbus_connection_register_fallback (DBusConnection              *connection,
4147                                    const char                  *path,
4148                                    const DBusObjectPathVTable  *vtable,
4149                                    void                        *user_data)
4150 {
4151   char **decomposed_path;
4152   dbus_bool_t retval;
4153   
4154   _dbus_return_val_if_fail (connection != NULL, FALSE);
4155   _dbus_return_val_if_fail (path != NULL, FALSE);
4156   _dbus_return_val_if_fail (path[0] == '/', FALSE);
4157   _dbus_return_val_if_fail (vtable != NULL, FALSE);
4158
4159   if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
4160     return FALSE;
4161
4162   CONNECTION_LOCK (connection);
4163
4164   retval = _dbus_object_tree_register (connection->objects,
4165                                        TRUE,
4166                                        (const char **) decomposed_path, vtable,
4167                                        user_data);
4168
4169   CONNECTION_UNLOCK (connection);
4170
4171   dbus_free_string_array (decomposed_path);
4172
4173   return retval;
4174 }
4175
4176 /**
4177  * Unregisters the handler registered with exactly the given path.
4178  * It's a bug to call this function for a path that isn't registered.
4179  * Can unregister both fallback paths and object paths.
4180  *
4181  * @param connection the connection
4182  * @param path a '/' delimited string of path elements
4183  * @returns #FALSE if not enough memory
4184  */
4185 dbus_bool_t
4186 dbus_connection_unregister_object_path (DBusConnection              *connection,
4187                                         const char                  *path)
4188 {
4189   char **decomposed_path;
4190
4191   _dbus_return_val_if_fail (connection != NULL, FALSE);
4192   _dbus_return_val_if_fail (path != NULL, FALSE);
4193   _dbus_return_val_if_fail (path[0] == '/', FALSE);
4194
4195   if (!_dbus_decompose_path (path, strlen (path), &decomposed_path, NULL))
4196       return FALSE;
4197
4198   CONNECTION_LOCK (connection);
4199
4200   _dbus_object_tree_unregister_and_unlock (connection->objects, (const char **) decomposed_path);
4201
4202   dbus_free_string_array (decomposed_path);
4203
4204   return TRUE;
4205 }
4206
4207 /**
4208  * Lists the registered fallback handlers and object path handlers at
4209  * the given parent_path. The returned array should be freed with
4210  * dbus_free_string_array().
4211  *
4212  * @param connection the connection
4213  * @param parent_path the path to list the child handlers of
4214  * @param child_entries returns #NULL-terminated array of children
4215  * @returns #FALSE if no memory to allocate the child entries
4216  */
4217 dbus_bool_t
4218 dbus_connection_list_registered (DBusConnection              *connection,
4219                                  const char                  *parent_path,
4220                                  char                      ***child_entries)
4221 {
4222   char **decomposed_path;
4223   dbus_bool_t retval;
4224   _dbus_return_val_if_fail (connection != NULL, FALSE);
4225   _dbus_return_val_if_fail (parent_path != NULL, FALSE);
4226   _dbus_return_val_if_fail (parent_path[0] == '/', FALSE);
4227   _dbus_return_val_if_fail (child_entries != NULL, FALSE);
4228
4229   if (!_dbus_decompose_path (parent_path, strlen (parent_path), &decomposed_path, NULL))
4230     return FALSE;
4231
4232   CONNECTION_LOCK (connection);
4233
4234   retval = _dbus_object_tree_list_registered_and_unlock (connection->objects,
4235                                                          (const char **) decomposed_path,
4236                                                          child_entries);
4237   dbus_free_string_array (decomposed_path);
4238
4239   return retval;
4240 }
4241
4242 static DBusDataSlotAllocator slot_allocator;
4243 _DBUS_DEFINE_GLOBAL_LOCK (connection_slots);
4244
4245 /**
4246  * Allocates an integer ID to be used for storing application-specific
4247  * data on any DBusConnection. The allocated ID may then be used
4248  * with dbus_connection_set_data() and dbus_connection_get_data().
4249  * The passed-in slot must be initialized to -1, and is filled in
4250  * with the slot ID. If the passed-in slot is not -1, it's assumed
4251  * to be already allocated, and its refcount is incremented.
4252  * 
4253  * The allocated slot is global, i.e. all DBusConnection objects will
4254  * have a slot with the given integer ID reserved.
4255  *
4256  * @param slot_p address of a global variable storing the slot
4257  * @returns #FALSE on failure (no memory)
4258  */
4259 dbus_bool_t
4260 dbus_connection_allocate_data_slot (dbus_int32_t *slot_p)
4261 {
4262   return _dbus_data_slot_allocator_alloc (&slot_allocator,
4263                                           _DBUS_LOCK_NAME (connection_slots),
4264                                           slot_p);
4265 }
4266
4267 /**
4268  * Deallocates a global ID for connection data slots.
4269  * dbus_connection_get_data() and dbus_connection_set_data() may no
4270  * longer be used with this slot.  Existing data stored on existing
4271  * DBusConnection objects will be freed when the connection is
4272  * finalized, but may not be retrieved (and may only be replaced if
4273  * someone else reallocates the slot).  When the refcount on the
4274  * passed-in slot reaches 0, it is set to -1.
4275  *
4276  * @param slot_p address storing the slot to deallocate
4277  */
4278 void
4279 dbus_connection_free_data_slot (dbus_int32_t *slot_p)
4280 {
4281   _dbus_return_if_fail (*slot_p >= 0);
4282   
4283   _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
4284 }
4285
4286 /**
4287  * Stores a pointer on a DBusConnection, along
4288  * with an optional function to be used for freeing
4289  * the data when the data is set again, or when
4290  * the connection is finalized. The slot number
4291  * must have been allocated with dbus_connection_allocate_data_slot().
4292  *
4293  * @param connection the connection
4294  * @param slot the slot number
4295  * @param data the data to store
4296  * @param free_data_func finalizer function for the data
4297  * @returns #TRUE if there was enough memory to store the data
4298  */
4299 dbus_bool_t
4300 dbus_connection_set_data (DBusConnection   *connection,
4301                           dbus_int32_t      slot,
4302                           void             *data,
4303                           DBusFreeFunction  free_data_func)
4304 {
4305   DBusFreeFunction old_free_func;
4306   void *old_data;
4307   dbus_bool_t retval;
4308
4309   _dbus_return_val_if_fail (connection != NULL, FALSE);
4310   _dbus_return_val_if_fail (slot >= 0, FALSE);
4311   
4312   CONNECTION_LOCK (connection);
4313
4314   retval = _dbus_data_slot_list_set (&slot_allocator,
4315                                      &connection->slot_list,
4316                                      slot, data, free_data_func,
4317                                      &old_free_func, &old_data);
4318   
4319   CONNECTION_UNLOCK (connection);
4320
4321   if (retval)
4322     {
4323       /* Do the actual free outside the connection lock */
4324       if (old_free_func)
4325         (* old_free_func) (old_data);
4326     }
4327
4328   return retval;
4329 }
4330
4331 /**
4332  * Retrieves data previously set with dbus_connection_set_data().
4333  * The slot must still be allocated (must not have been freed).
4334  *
4335  * @param connection the connection
4336  * @param slot the slot to get data from
4337  * @returns the data, or #NULL if not found
4338  */
4339 void*
4340 dbus_connection_get_data (DBusConnection   *connection,
4341                           dbus_int32_t      slot)
4342 {
4343   void *res;
4344
4345   _dbus_return_val_if_fail (connection != NULL, NULL);
4346   
4347   CONNECTION_LOCK (connection);
4348
4349   res = _dbus_data_slot_list_get (&slot_allocator,
4350                                   &connection->slot_list,
4351                                   slot);
4352   
4353   CONNECTION_UNLOCK (connection);
4354
4355   return res;
4356 }
4357
4358 /**
4359  * This function sets a global flag for whether dbus_connection_new()
4360  * will set SIGPIPE behavior to SIG_IGN.
4361  *
4362  * @param will_modify_sigpipe #TRUE to allow sigpipe to be set to SIG_IGN
4363  */
4364 void
4365 dbus_connection_set_change_sigpipe (dbus_bool_t will_modify_sigpipe)
4366 {  
4367   _dbus_modify_sigpipe = will_modify_sigpipe != FALSE;
4368 }
4369
4370 /**
4371  * Specifies the maximum size message this connection is allowed to
4372  * receive. Larger messages will result in disconnecting the
4373  * connection.
4374  * 
4375  * @param connection a #DBusConnection
4376  * @param size maximum message size the connection can receive, in bytes
4377  */
4378 void
4379 dbus_connection_set_max_message_size (DBusConnection *connection,
4380                                       long            size)
4381 {
4382   _dbus_return_if_fail (connection != NULL);
4383   
4384   CONNECTION_LOCK (connection);
4385   _dbus_transport_set_max_message_size (connection->transport,
4386                                         size);
4387   CONNECTION_UNLOCK (connection);
4388 }
4389
4390 /**
4391  * Gets the value set by dbus_connection_set_max_message_size().
4392  *
4393  * @param connection the connection
4394  * @returns the max size of a single message
4395  */
4396 long
4397 dbus_connection_get_max_message_size (DBusConnection *connection)
4398 {
4399   long res;
4400
4401   _dbus_return_val_if_fail (connection != NULL, 0);
4402   
4403   CONNECTION_LOCK (connection);
4404   res = _dbus_transport_get_max_message_size (connection->transport);
4405   CONNECTION_UNLOCK (connection);
4406   return res;
4407 }
4408
4409 /**
4410  * Sets the maximum total number of bytes that can be used for all messages
4411  * received on this connection. Messages count toward the maximum until
4412  * they are finalized. When the maximum is reached, the connection will
4413  * not read more data until some messages are finalized.
4414  *
4415  * The semantics of the maximum are: if outstanding messages are
4416  * already above the maximum, additional messages will not be read.
4417  * The semantics are not: if the next message would cause us to exceed
4418  * the maximum, we don't read it. The reason is that we don't know the
4419  * size of a message until after we read it.
4420  *
4421  * Thus, the max live messages size can actually be exceeded
4422  * by up to the maximum size of a single message.
4423  * 
4424  * Also, if we read say 1024 bytes off the wire in a single read(),
4425  * and that contains a half-dozen small messages, we may exceed the
4426  * size max by that amount. But this should be inconsequential.
4427  *
4428  * This does imply that we can't call read() with a buffer larger
4429  * than we're willing to exceed this limit by.
4430  *
4431  * @param connection the connection
4432  * @param size the maximum size in bytes of all outstanding messages
4433  */
4434 void
4435 dbus_connection_set_max_received_size (DBusConnection *connection,
4436                                        long            size)
4437 {
4438   _dbus_return_if_fail (connection != NULL);
4439   
4440   CONNECTION_LOCK (connection);
4441   _dbus_transport_set_max_received_size (connection->transport,
4442                                          size);
4443   CONNECTION_UNLOCK (connection);
4444 }
4445
4446 /**
4447  * Gets the value set by dbus_connection_set_max_received_size().
4448  *
4449  * @param connection the connection
4450  * @returns the max size of all live messages
4451  */
4452 long
4453 dbus_connection_get_max_received_size (DBusConnection *connection)
4454 {
4455   long res;
4456
4457   _dbus_return_val_if_fail (connection != NULL, 0);
4458   
4459   CONNECTION_LOCK (connection);
4460   res = _dbus_transport_get_max_received_size (connection->transport);
4461   CONNECTION_UNLOCK (connection);
4462   return res;
4463 }
4464
4465 /**
4466  * Gets the approximate size in bytes of all messages in the outgoing
4467  * message queue. The size is approximate in that you shouldn't use
4468  * it to decide how many bytes to read off the network or anything
4469  * of that nature, as optimizations may choose to tell small white lies
4470  * to avoid performance overhead.
4471  *
4472  * @param connection the connection
4473  * @returns the number of bytes that have been queued up but not sent
4474  */
4475 long
4476 dbus_connection_get_outgoing_size (DBusConnection *connection)
4477 {
4478   long res;
4479
4480   _dbus_return_val_if_fail (connection != NULL, 0);
4481   
4482   CONNECTION_LOCK (connection);
4483   res = _dbus_counter_get_value (connection->outgoing_counter);
4484   CONNECTION_UNLOCK (connection);
4485   return res;
4486 }
4487
4488 /** @} */