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