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