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