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