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