1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dispatch.c Message dispatcher
4 * Copyright (C) 2003 CodeFactory AB
5 * Copyright (C) 2003 Red Hat, Inc.
7 * Licensed under the Academic Free License version 1.2
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include "connection.h"
33 #include <dbus/dbus-internals.h>
36 static int message_handler_slot;
37 static int message_handler_slot_refcount;
42 BusTransaction *transaction;
47 send_one_message (DBusConnection *connection, void *data)
49 SendMessageData *d = data;
51 if (!bus_connection_is_active (connection))
54 if (!bus_transaction_send_message (d->transaction,
58 BUS_SET_OOM (d->error);
66 bus_dispatch_broadcast_message (BusTransaction *transaction,
72 BusConnections *connections;
74 _dbus_assert (dbus_message_get_sender (message) != NULL);
76 connections = bus_transaction_get_connections (transaction);
78 dbus_error_init (&tmp_error);
80 d.transaction = transaction;
83 bus_connections_foreach (connections, send_one_message, &d);
85 if (dbus_error_is_set (&tmp_error))
87 dbus_move_error (&tmp_error, error);
95 send_service_nonexistent_error (BusTransaction *transaction,
96 DBusConnection *connection,
97 const char *service_name,
98 DBusMessage *in_reply_to,
101 DBusMessage *error_reply;
102 DBusString error_message;
103 const char *error_str;
105 /* Trying to send a message to a non-existant service,
106 * bounce back an error message.
109 if (!_dbus_string_init (&error_message, _DBUS_INT_MAX))
115 if (!_dbus_string_append (&error_message, "Service \"") ||
116 !_dbus_string_append (&error_message, service_name) ||
117 !_dbus_string_append (&error_message, "\" does not exist"))
119 _dbus_string_free (&error_message);
124 _dbus_string_get_const_data (&error_message, &error_str);
125 error_reply = dbus_message_new_error_reply (in_reply_to,
126 DBUS_ERROR_SERVICE_DOES_NOT_EXIST,
129 _dbus_string_free (&error_message);
131 if (error_reply == NULL)
137 if (!bus_transaction_send_message (transaction, connection, error_reply))
139 dbus_message_unref (error_reply);
144 dbus_message_unref (error_reply);
150 bus_dispatch (DBusConnection *connection,
151 DBusMessage *message)
153 const char *sender, *service_name, *message_name;
155 BusTransaction *transaction;
159 dbus_error_init (&error);
161 context = bus_connection_get_context (connection);
162 _dbus_assert (context != NULL);
164 /* If we can't even allocate an OOM error, we just go to sleep
167 while (!bus_connection_preallocate_oom_error (connection))
168 bus_wait_for_memory ();
170 /* Ref connection in case we disconnect it at some point in here */
171 dbus_connection_ref (connection);
173 service_name = dbus_message_get_service (message);
174 message_name = dbus_message_get_name (message);
176 _dbus_assert (message_name != NULL); /* DBusMessageLoader is supposed to check this */
178 _dbus_verbose ("DISPATCH: %s to %s\n",
179 message_name, service_name ? service_name : "peer");
181 /* If service_name is NULL, this is a message to the bus daemon, not intended
182 * to actually go "on the bus"; e.g. a peer-to-peer ping. Handle these
183 * immediately, especially disconnection messages.
185 if (service_name == NULL)
187 if (strcmp (message_name, DBUS_MESSAGE_LOCAL_DISCONNECT) == 0)
188 bus_connection_disconnected (connection);
190 /* DBusConnection also handles some of these automatically, we leave
196 _dbus_assert (service_name != NULL); /* this message is intended for bus routing */
198 /* Create our transaction */
199 transaction = bus_transaction_new (context);
200 if (transaction == NULL)
202 BUS_SET_OOM (&error);
206 /* Assign a sender to the message */
207 if (bus_connection_is_active (connection))
209 sender = bus_connection_get_name (connection);
210 _dbus_assert (sender != NULL);
212 if (!dbus_message_set_sender (message, sender))
214 BUS_SET_OOM (&error);
219 if (strcmp (service_name, DBUS_SERVICE_DBUS) == 0) /* to bus driver */
221 if (!bus_driver_handle_message (connection, transaction, message, &error))
224 else if (!bus_connection_is_active (connection)) /* clients must talk to bus driver first */
226 _dbus_verbose ("Received message from non-registered client. Disconnecting.\n");
227 dbus_connection_disconnect (connection);
229 /* FIXME what if we un-special-case this service and just have a flag
230 * on services that all service owners will get messages to it, not just
233 else if (strcmp (service_name, DBUS_SERVICE_BROADCAST) == 0) /* spam! */
235 if (!bus_dispatch_broadcast_message (transaction, message, &error))
238 else /* route to named service */
240 DBusString service_string;
242 BusRegistry *registry;
244 registry = bus_connection_get_registry (connection);
246 _dbus_string_init_const (&service_string, service_name);
247 service = bus_registry_lookup (registry, &service_string);
251 if (!send_service_nonexistent_error (transaction, connection,
258 _dbus_assert (bus_service_get_primary_owner (service) != NULL);
260 /* Dispatch the message */
261 if (!bus_transaction_send_message (transaction,
262 bus_service_get_primary_owner (service),
265 BUS_SET_OOM (&error);
272 if (dbus_error_is_set (&error))
274 if (!dbus_connection_get_is_connected (connection))
276 /* If we disconnected it, we won't bother to send it any error
280 else if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
282 bus_connection_send_oom_error (connection, message);
284 /* cancel transaction due to OOM */
285 if (transaction != NULL)
287 bus_transaction_cancel_and_free (transaction);
293 /* Try to send the real error, if no mem to do that, send
296 _dbus_assert (transaction != NULL);
298 if (!bus_transaction_send_error_reply (transaction, connection,
301 bus_connection_send_oom_error (connection, message);
303 /* cancel transaction due to OOM */
304 if (transaction != NULL)
306 bus_transaction_cancel_and_free (transaction);
312 dbus_error_free (&error);
315 if (transaction != NULL)
317 bus_transaction_execute_and_free (transaction);
320 dbus_connection_unref (connection);
323 static DBusHandlerResult
324 bus_dispatch_message_handler (DBusMessageHandler *handler,
325 DBusConnection *connection,
326 DBusMessage *message,
329 bus_dispatch (connection, message);
331 return DBUS_HANDLER_RESULT_ALLOW_MORE_HANDLERS;
335 message_handler_slot_ref (void)
337 message_handler_slot = dbus_connection_allocate_data_slot ();
339 if (message_handler_slot < 0)
342 message_handler_slot_refcount += 1;
348 message_handler_slot_unref (void)
350 _dbus_assert (message_handler_slot_refcount > 0);
351 message_handler_slot_refcount -= 1;
352 if (message_handler_slot_refcount == 0)
354 dbus_connection_free_data_slot (message_handler_slot);
355 message_handler_slot = -1;
360 bus_dispatch_add_connection (DBusConnection *connection)
362 DBusMessageHandler *handler;
364 if (!message_handler_slot_ref ())
367 handler = dbus_message_handler_new (bus_dispatch_message_handler, NULL, NULL);
370 message_handler_slot_unref ();
374 if (!dbus_connection_add_filter (connection, handler))
376 dbus_message_handler_unref (handler);
377 message_handler_slot_unref ();
382 if (!dbus_connection_set_data (connection,
383 message_handler_slot,
385 (DBusFreeFunction)dbus_message_handler_unref))
387 dbus_connection_remove_filter (connection, handler);
388 dbus_message_handler_unref (handler);
389 message_handler_slot_unref ();
398 bus_dispatch_remove_connection (DBusConnection *connection)
400 /* Here we tell the bus driver that we want to get off. */
401 bus_driver_remove_connection (connection);
403 dbus_connection_set_data (connection,
404 message_handler_slot,
407 message_handler_slot_unref ();
410 #ifdef DBUS_BUILD_TESTS
412 typedef dbus_bool_t (* Check1Func) (BusContext *context);
413 typedef dbus_bool_t (* Check2Func) (BusContext *context,
414 DBusConnection *connection);
416 static dbus_bool_t check_no_leftovers (BusContext *context);
419 flush_bus (BusContext *context)
421 /* This is race condition city, obviously. since we're all in one
422 * process we can't block, we just have to wait for data we put in
423 * one end of the debug pipe to come out the other end...
424 * a more robust setup would be good.
427 while (bus_loop_iterate (FALSE))
429 _dbus_sleep_milliseconds (15);
430 while (bus_loop_iterate (FALSE))
436 const char *expected_service_name;
438 } CheckServiceDeletedData;
441 check_service_deleted_foreach (DBusConnection *connection,
444 CheckServiceDeletedData *d = data;
445 DBusMessage *message;
449 dbus_error_init (&error);
453 message = dbus_connection_pop_message (connection);
456 _dbus_warn ("Did not receive a message on %p, expecting %s\n",
457 connection, DBUS_MESSAGE_SERVICE_DELETED);
460 else if (!dbus_message_name_is (message, DBUS_MESSAGE_SERVICE_DELETED))
462 _dbus_warn ("Received message %s on %p, expecting %s\n",
463 dbus_message_get_name (message),
464 connection, DBUS_MESSAGE_SERVICE_DELETED);
469 if (!dbus_message_get_args (message, &error,
470 DBUS_TYPE_STRING, &service_name,
473 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
475 _dbus_verbose ("no memory to get service name arg\n");
479 _dbus_assert (dbus_error_is_set (&error));
480 _dbus_warn ("Did not get the expected single string argument\n");
484 else if (strcmp (service_name, d->expected_service_name) != 0)
486 _dbus_warn ("expected deletion of service %s, got deletion of %s\n",
487 d->expected_service_name,
496 dbus_free (service_name);
497 dbus_error_free (&error);
500 dbus_message_unref (message);
506 kill_client_connection (BusContext *context,
507 DBusConnection *connection)
511 CheckServiceDeletedData csdd;
513 _dbus_verbose ("killing connection %p\n", connection);
515 s = dbus_bus_get_base_service (connection);
516 _dbus_assert (s != NULL);
518 while ((base_service = _dbus_strdup (s)) == NULL)
519 bus_wait_for_memory ();
521 dbus_connection_ref (connection);
523 /* kick in the disconnect handler that unrefs the connection */
524 dbus_connection_disconnect (connection);
528 _dbus_assert (bus_test_client_listed (connection));
530 /* Run disconnect handler in test.c */
531 if (bus_connection_dispatch_one_message (connection))
532 _dbus_assert_not_reached ("something received on connection being killed other than the disconnect");
534 _dbus_assert (!dbus_connection_get_is_connected (connection));
535 dbus_connection_unref (connection);
537 _dbus_assert (!bus_test_client_listed (connection));
539 csdd.expected_service_name = base_service;
542 bus_test_clients_foreach (check_service_deleted_foreach,
545 dbus_free (base_service);
548 _dbus_assert_not_reached ("didn't get the expected ServiceDeleted messages");
550 if (!check_no_leftovers (context))
551 _dbus_assert_not_reached ("stuff left in message queues after disconnecting a client");
557 } CheckNoMessagesData;
560 check_no_messages_foreach (DBusConnection *connection,
563 CheckNoMessagesData *d = data;
564 DBusMessage *message;
566 message = dbus_connection_pop_message (connection);
569 _dbus_warn ("Received message %s on %p, expecting no messages\n",
570 dbus_message_get_name (message), connection);
575 dbus_message_unref (message);
581 DBusConnection *skip_connection;
582 const char *expected_service_name;
584 } CheckServiceCreatedData;
587 check_service_created_foreach (DBusConnection *connection,
590 CheckServiceCreatedData *d = data;
591 DBusMessage *message;
595 if (connection == d->skip_connection)
598 dbus_error_init (&error);
602 message = dbus_connection_pop_message (connection);
605 _dbus_warn ("Did not receive a message on %p, expecting %s\n",
606 connection, DBUS_MESSAGE_SERVICE_CREATED);
609 else if (!dbus_message_name_is (message, DBUS_MESSAGE_SERVICE_CREATED))
611 _dbus_warn ("Received message %s on %p, expecting %s\n",
612 dbus_message_get_name (message),
613 connection, DBUS_MESSAGE_SERVICE_CREATED);
618 if (!dbus_message_get_args (message, &error,
619 DBUS_TYPE_STRING, &service_name,
622 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
624 _dbus_verbose ("no memory to get service name arg\n");
628 _dbus_assert (dbus_error_is_set (&error));
629 _dbus_warn ("Did not get the expected single string argument\n");
633 else if (strcmp (service_name, d->expected_service_name) != 0)
635 _dbus_warn ("expected creation of service %s, got creation of %s\n",
636 d->expected_service_name,
645 dbus_free (service_name);
646 dbus_error_free (&error);
649 dbus_message_unref (message);
655 check_no_leftovers (BusContext *context)
657 CheckNoMessagesData nmd;
660 bus_test_clients_foreach (check_no_messages_foreach,
669 /* returns TRUE if the correct thing happens,
670 * but the correct thing may include OOM errors.
673 check_hello_message (BusContext *context,
674 DBusConnection *connection)
676 DBusMessage *message;
683 dbus_error_init (&error);
687 message = dbus_message_new (DBUS_SERVICE_DBUS,
693 if (!dbus_connection_send (connection, message, &serial))
696 dbus_message_unref (message);
701 if (!dbus_connection_get_is_connected (connection))
703 _dbus_verbose ("connection was disconnected\n");
709 message = dbus_connection_pop_message (connection);
712 _dbus_warn ("Did not receive a reply to %s %d on %p\n",
713 DBUS_MESSAGE_HELLO, serial, connection);
717 _dbus_verbose ("Received %s on %p\n",
718 dbus_message_get_name (message), connection);
720 if (dbus_message_get_is_error (message))
722 if (dbus_message_name_is (message,
723 DBUS_ERROR_NO_MEMORY))
725 ; /* good, this is a valid response */
729 _dbus_warn ("Did not expect error %s\n",
730 dbus_message_get_name (message));
736 CheckServiceCreatedData scd;
738 if (dbus_message_name_is (message,
741 ; /* good, expected */
745 _dbus_warn ("Did not expect reply %s\n",
746 dbus_message_get_name (message));
750 retry_get_hello_name:
751 if (!dbus_message_get_args (message, &error,
752 DBUS_TYPE_STRING, &name,
755 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
757 _dbus_verbose ("no memory to get service name arg from hello\n");
758 dbus_error_free (&error);
759 bus_wait_for_memory ();
760 goto retry_get_hello_name;
764 _dbus_assert (dbus_error_is_set (&error));
765 _dbus_warn ("Did not get the expected single string argument to hello\n");
770 _dbus_verbose ("Got hello name: %s\n", name);
772 while (!dbus_bus_set_base_service (connection, name))
773 bus_wait_for_memory ();
775 scd.skip_connection = NULL;
777 scd.expected_service_name = name;
778 bus_test_clients_foreach (check_service_created_foreach,
784 /* Client should also have gotten ServiceAcquired */
785 dbus_message_unref (message);
786 message = dbus_connection_pop_message (connection);
789 _dbus_warn ("Expecting %s, got nothing\n",
790 DBUS_MESSAGE_SERVICE_ACQUIRED);
794 retry_get_acquired_name:
795 if (!dbus_message_get_args (message, &error,
796 DBUS_TYPE_STRING, &acquired,
799 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
801 _dbus_verbose ("no memory to get service name arg from acquired\n");
802 dbus_error_free (&error);
803 bus_wait_for_memory ();
804 goto retry_get_acquired_name;
808 _dbus_assert (dbus_error_is_set (&error));
809 _dbus_warn ("Did not get the expected single string argument to ServiceAcquired\n");
814 _dbus_verbose ("Got acquired name: %s\n", acquired);
816 if (strcmp (acquired, name) != 0)
818 _dbus_warn ("Acquired name is %s but expected %s\n",
824 if (!check_no_leftovers (context))
830 dbus_error_free (&error);
833 dbus_free (acquired);
836 dbus_message_unref (message);
841 /* returns TRUE if the correct thing happens,
842 * but the correct thing may include OOM errors.
845 check_hello_connection (BusContext *context)
847 DBusConnection *connection;
848 DBusResultCode result;
850 result = DBUS_RESULT_SUCCESS;
851 connection = dbus_connection_open ("debug-pipe:name=test-server", &result);
852 if (connection == NULL)
854 _dbus_assert (result != DBUS_RESULT_SUCCESS);
858 if (!bus_setup_debug_client (connection))
860 dbus_connection_disconnect (connection);
861 dbus_connection_unref (connection);
865 if (!check_hello_message (context, connection))
868 if (dbus_bus_get_base_service (connection) == NULL)
870 /* We didn't successfully register, so we can't
871 * do the usual kill_client_connection() checks
873 dbus_connection_ref (connection);
874 dbus_connection_disconnect (connection);
875 /* dispatching disconnect handler will unref once */
876 if (bus_connection_dispatch_one_message (connection))
877 _dbus_assert_not_reached ("message other than disconnect dispatched after failure to register");
878 dbus_connection_unref (connection);
879 _dbus_assert (!bus_test_client_listed (connection));
885 kill_client_connection (context, connection);
892 check1_try_iterations (BusContext *context,
893 const char *description,
898 /* Run once to see about how many mallocs are involved */
900 _dbus_set_fail_alloc_counter (_DBUS_INT_MAX);
902 if (! (*func) (context))
903 _dbus_assert_not_reached ("test failed");
905 approx_mallocs = _DBUS_INT_MAX - _dbus_get_fail_alloc_counter ();
907 _dbus_verbose ("=================\n%s: about %d mallocs total\n=================\n",
908 description, approx_mallocs);
910 approx_mallocs += 10; /* fudge factor */
912 /* Now run failing each malloc */
914 while (approx_mallocs >= 0)
916 _dbus_set_fail_alloc_counter (approx_mallocs);
918 _dbus_verbose ("\n===\n %s: (will fail malloc %d)\n===\n",
919 description, approx_mallocs);
921 if (! (*func) (context))
922 _dbus_assert_not_reached ("test failed");
924 if (!check_no_leftovers (context))
925 _dbus_assert_not_reached ("Messages were left over, should be covered by test suite");
930 _dbus_set_fail_alloc_counter (_DBUS_INT_MAX);
934 bus_dispatch_test (const DBusString *test_data_dir)
938 const char *activation_dirs[] = { NULL, NULL };
942 DBusResultCode result;
944 dbus_error_init (&error);
945 context = bus_context_new ("debug-pipe:name=test-server",
949 _dbus_assert_not_reached ("could not alloc context");
951 foo = dbus_connection_open ("debug-pipe:name=test-server", &result);
953 _dbus_assert_not_reached ("could not alloc connection");
955 if (!bus_setup_debug_client (foo))
956 _dbus_assert_not_reached ("could not set up connection");
958 if (!check_hello_message (context, foo))
959 _dbus_assert_not_reached ("hello message failed");
961 bar = dbus_connection_open ("debug-pipe:name=test-server", &result);
963 _dbus_assert_not_reached ("could not alloc connection");
965 if (!bus_setup_debug_client (bar))
966 _dbus_assert_not_reached ("could not set up connection");
968 if (!check_hello_message (context, bar))
969 _dbus_assert_not_reached ("hello message failed");
971 baz = dbus_connection_open ("debug-pipe:name=test-server", &result);
973 _dbus_assert_not_reached ("could not alloc connection");
975 if (!bus_setup_debug_client (baz))
976 _dbus_assert_not_reached ("could not set up connection");
978 if (!check_hello_message (context, baz))
979 _dbus_assert_not_reached ("hello message failed");
981 check1_try_iterations (context, "create_and_hello",
982 check_hello_connection);
984 dbus_connection_disconnect (foo);
985 if (bus_connection_dispatch_one_message (foo))
986 _dbus_assert_not_reached ("extra message in queue");
987 dbus_connection_unref (foo);
988 _dbus_assert (!bus_test_client_listed (foo));
990 dbus_connection_disconnect (bar);
991 if (bus_connection_dispatch_one_message (bar))
992 _dbus_assert_not_reached ("extra message in queue");
993 dbus_connection_unref (bar);
994 _dbus_assert (!bus_test_client_listed (bar));
996 dbus_connection_disconnect (baz);
997 if (bus_connection_dispatch_one_message (baz))
998 _dbus_assert_not_reached ("extra message in queue");
999 dbus_connection_unref (baz);
1000 _dbus_assert (!bus_test_client_listed (baz));
1002 bus_context_unref (context);
1006 #endif /* DBUS_BUILD_TESTS */