First public contribution.
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dispatch.c Message dispatcher
4 * Copyright (C) 2003 CodeFactory AB
5 * Copyright (C) 2003, 2004, 2005 Red Hat, Inc.
6 * Copyright (C) 2004 Imendio HB
7 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
8 * Licensed under the Academic Free License version 2.1
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include "connection.h"
30 #include "activation.h"
36 #include <dbus/dbus-internals.h>
38 #include "dbus-internals.h"
39 #endif //__SYMBIAN32__
44 #endif //__SYMBIAN32__
47 send_one_message (DBusConnection *connection,
49 DBusConnection *sender,
50 DBusConnection *addressed_recipient,
52 BusTransaction *transaction,
55 if (!bus_context_check_security_policy (context, transaction,
61 return TRUE; /* silently don't send it */
63 if (!bus_transaction_send (transaction,
75 bus_dispatch_matches (BusTransaction *transaction,
76 DBusConnection *sender,
77 DBusConnection *addressed_recipient,
82 BusConnections *connections;
84 BusMatchmaker *matchmaker;
88 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
90 /* sender and recipient can both be NULL for the bus driver,
91 * or for signals with no particular recipient
94 _dbus_assert (sender == NULL || bus_connection_is_active (sender));
95 _dbus_assert (dbus_message_get_sender (message) != NULL);
97 connections = bus_transaction_get_connections (transaction);
99 dbus_error_init (&tmp_error);
100 context = bus_transaction_get_context (transaction);
101 matchmaker = bus_context_get_matchmaker (context);
104 if (!bus_matchmaker_get_recipients (matchmaker, connections,
105 sender, addressed_recipient, message,
112 link = _dbus_list_get_first_link (&recipients);
115 DBusConnection *dest;
119 if (!send_one_message (dest, context, sender, addressed_recipient,
120 message, transaction, &tmp_error))
123 link = _dbus_list_get_next_link (&recipients, link);
126 _dbus_list_clear (&recipients);
128 if (dbus_error_is_set (&tmp_error))
130 dbus_move_error (&tmp_error, error);
137 static DBusHandlerResult
138 bus_dispatch (DBusConnection *connection,
139 DBusMessage *message)
141 const char *sender, *service_name;
143 BusTransaction *transaction;
145 DBusHandlerResult result;
146 DBusConnection *addressed_recipient;
148 result = DBUS_HANDLER_RESULT_HANDLED;
151 addressed_recipient = NULL;
152 dbus_error_init (&error);
154 context = bus_connection_get_context (connection);
155 _dbus_assert (context != NULL);
157 /* If we can't even allocate an OOM error, we just go to sleep
160 while (!bus_connection_preallocate_oom_error (connection))
161 _dbus_wait_for_memory ();
163 /* Ref connection in case we disconnect it at some point in here */
164 dbus_connection_ref (connection);
166 service_name = dbus_message_get_destination (message);
168 #ifdef DBUS_ENABLE_VERBOSE_MODE
170 const char *interface_name, *member_name, *error_name;
172 interface_name = dbus_message_get_interface (message);
173 member_name = dbus_message_get_member (message);
174 error_name = dbus_message_get_error_name (message);
176 _dbus_verbose ("DISPATCH: %s %s %s to %s\n",
177 interface_name ? interface_name : "(no interface)",
178 member_name ? member_name : "(no member)",
179 error_name ? error_name : "(no error name)",
180 service_name ? service_name : "peer");
182 #endif /* DBUS_ENABLE_VERBOSE_MODE */
184 /* If service_name is NULL, if it's a signal we send it to all
185 * connections with a match rule. If it's not a signal, there
186 * are some special cases here but mostly we just bail out.
188 if (service_name == NULL)
190 if (dbus_message_is_signal (message,
191 DBUS_INTERFACE_LOCAL,
194 bus_connection_disconnected (connection);
198 if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL)
200 /* DBusConnection also handles some of these automatically, we leave
203 result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
208 /* Create our transaction */
209 transaction = bus_transaction_new (context);
210 if (transaction == NULL)
212 BUS_SET_OOM (&error);
216 /* Assign a sender to the message */
217 if (bus_connection_is_active (connection))
219 sender = bus_connection_get_name (connection);
220 _dbus_assert (sender != NULL);
222 if (!dbus_message_set_sender (message, sender))
224 BUS_SET_OOM (&error);
228 /* We need to refetch the service name here, because
229 * dbus_message_set_sender can cause the header to be
230 * reallocated, and thus the service_name pointer will become
233 service_name = dbus_message_get_destination (message);
237 strcmp (service_name, DBUS_SERVICE_DBUS) == 0) /* to bus driver */
239 if (!bus_context_check_security_policy (context, transaction,
240 connection, NULL, NULL, message, &error))
242 _dbus_verbose ("Security policy rejected message\n");
246 _dbus_verbose ("Giving message to %s\n", DBUS_SERVICE_DBUS);
247 if (!bus_driver_handle_message (connection, transaction, message, &error))
250 else if (!bus_connection_is_active (connection)) /* clients must talk to bus driver first */
252 _dbus_verbose ("Received message from non-registered client. Disconnecting.\n");
253 dbus_connection_close (connection);
256 else if (service_name != NULL) /* route to named service */
258 DBusString service_string;
260 BusRegistry *registry;
262 _dbus_assert (service_name != NULL);
264 registry = bus_connection_get_registry (connection);
266 _dbus_string_init_const (&service_string, service_name);
267 service = bus_registry_lookup (registry, &service_string);
269 if (service == NULL && dbus_message_get_auto_start (message))
271 BusActivation *activation;
272 /* We can't do the security policy check here, since the addressed
273 * recipient service doesn't exist yet. We do it before sending the
274 * message after the service has been created.
276 activation = bus_connection_get_activation (connection);
278 if (!bus_activation_activate_service (activation, connection, transaction, TRUE,
279 message, service_name, &error))
281 _DBUS_ASSERT_ERROR_IS_SET (&error);
282 _dbus_verbose ("bus_activation_activate_service() failed: %s\n", error.name);
288 else if (service == NULL)
290 dbus_set_error (&error,
291 DBUS_ERROR_NAME_HAS_NO_OWNER,
292 "Name \"%s\" does not exist",
298 addressed_recipient = bus_service_get_primary_owners_connection (service);
299 _dbus_assert (addressed_recipient != NULL);
301 if (!bus_context_check_security_policy (context, transaction,
302 connection, addressed_recipient,
307 /* Dispatch the message */
308 if (!bus_transaction_send (transaction, addressed_recipient, message))
310 BUS_SET_OOM (&error);
316 /* Now match the messages against any match rules, which will send
317 * out signals and such. addressed_recipient may == NULL.
319 if (!bus_dispatch_matches (transaction, connection, addressed_recipient, message, &error))
323 if (dbus_error_is_set (&error))
325 if (!dbus_connection_get_is_connected (connection))
327 /* If we disconnected it, we won't bother to send it any error
330 _dbus_verbose ("Not sending error to connection we disconnected\n");
332 else if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
334 bus_connection_send_oom_error (connection, message);
336 /* cancel transaction due to OOM */
337 if (transaction != NULL)
339 bus_transaction_cancel_and_free (transaction);
345 /* Try to send the real error, if no mem to do that, send
348 _dbus_assert (transaction != NULL);
349 if (!bus_transaction_send_error_reply (transaction, connection,
352 bus_connection_send_oom_error (connection, message);
354 /* cancel transaction due to OOM */
355 if (transaction != NULL)
357 bus_transaction_cancel_and_free (transaction);
364 dbus_error_free (&error);
367 if (transaction != NULL)
369 bus_transaction_execute_and_free (transaction);
372 dbus_connection_unref (connection);
377 static DBusHandlerResult
378 bus_dispatch_message_filter (DBusConnection *connection,
379 DBusMessage *message,
382 return bus_dispatch (connection, message);
386 bus_dispatch_add_connection (DBusConnection *connection)
388 if (!dbus_connection_add_filter (connection,
389 bus_dispatch_message_filter,
397 bus_dispatch_remove_connection (DBusConnection *connection)
399 /* Here we tell the bus driver that we want to get off. */
400 bus_driver_remove_connection (connection);
402 dbus_connection_remove_filter (connection,
403 bus_dispatch_message_filter,
407 #ifdef DBUS_BUILD_TESTS
411 /* This is used to know whether we need to block in order to finish
412 * sending a message, or whether the initial dbus_connection_send()
413 * already flushed the queue.
415 #define SEND_PENDING(connection) (dbus_connection_has_messages_to_send (connection))
417 typedef dbus_bool_t (* Check1Func) (BusContext *context);
418 typedef dbus_bool_t (* Check2Func) (BusContext *context,
419 DBusConnection *connection);
421 static dbus_bool_t check_no_leftovers (BusContext *context);
424 block_connection_until_message_from_bus (BusContext *context,
425 DBusConnection *connection,
426 const char *what_is_expected)
428 _dbus_verbose ("expecting: %s\n", what_is_expected);
430 while (dbus_connection_get_dispatch_status (connection) ==
431 DBUS_DISPATCH_COMPLETE &&
432 dbus_connection_get_is_connected (connection))
434 #ifndef __SYMBIAN32__
435 bus_test_run_bus_loop (context, TRUE);
436 #else //_dbus_loop_iterate() blocks indefinitly on setting argument to TRUE on Symbian,it must be investigated
437 bus_test_run_bus_loop (context, FALSE);
439 bus_test_run_clients_loop (FALSE);
444 spin_connection_until_authenticated (BusContext *context,
445 DBusConnection *connection)
447 _dbus_verbose ("Spinning to auth connection %p\n", connection);
448 while (!dbus_connection_get_is_authenticated (connection) &&
449 dbus_connection_get_is_connected (connection))
451 bus_test_run_bus_loop (context, FALSE);
452 bus_test_run_clients_loop (FALSE);
454 _dbus_verbose (" ... done spinning to auth connection %p\n", connection);
457 /* compensate for fact that pop_message() can return #NULL due to OOM */
459 pop_message_waiting_for_memory (DBusConnection *connection)
461 while (dbus_connection_get_dispatch_status (connection) ==
462 DBUS_DISPATCH_NEED_MEMORY)
463 _dbus_wait_for_memory ();
465 return dbus_connection_pop_message (connection);
469 borrow_message_waiting_for_memory (DBusConnection *connection)
471 while (dbus_connection_get_dispatch_status (connection) ==
472 DBUS_DISPATCH_NEED_MEMORY)
473 _dbus_wait_for_memory ();
475 return dbus_connection_borrow_message (connection);
479 warn_unexpected_real (DBusConnection *connection,
480 DBusMessage *message,
481 const char *expected,
482 const char *function,
486 _dbus_warn ("%s:%d received message interface \"%s\" member \"%s\" error name \"%s\" on %p, expecting %s\n",
488 dbus_message_get_interface (message) ?
489 dbus_message_get_interface (message) : "(unset)",
490 dbus_message_get_member (message) ?
491 dbus_message_get_member (message) : "(unset)",
492 dbus_message_get_error_name (message) ?
493 dbus_message_get_error_name (message) : "(unset)",
497 _dbus_warn ("%s:%d received no message on %p, expecting %s\n",
498 function, line, connection, expected);
501 #define warn_unexpected(connection, message, expected) \
502 warn_unexpected_real (connection, message, expected, _DBUS_FUNCTION_NAME, __LINE__)
505 verbose_message_received (DBusConnection *connection,
506 DBusMessage *message)
508 _dbus_verbose ("Received message interface \"%s\" member \"%s\" error name \"%s\" on %p\n",
509 dbus_message_get_interface (message) ?
510 dbus_message_get_interface (message) : "(unset)",
511 dbus_message_get_member (message) ?
512 dbus_message_get_member (message) : "(unset)",
513 dbus_message_get_error_name (message) ?
514 dbus_message_get_error_name (message) : "(unset)",
527 ServiceInfoKind expected_kind;
528 const char *expected_service_name;
530 DBusConnection *skip_connection;
531 } CheckServiceOwnerChangedData;
534 check_service_owner_changed_foreach (DBusConnection *connection,
537 CheckServiceOwnerChangedData *d = data;
538 DBusMessage *message;
540 const char *service_name, *old_owner, *new_owner;
542 if (d->expected_kind == SERVICE_CREATED
543 && connection == d->skip_connection)
546 dbus_error_init (&error);
549 message = pop_message_waiting_for_memory (connection);
552 _dbus_warn ("Did not receive a message on %p, expecting %s\n",
553 connection, "NameOwnerChanged");
556 else if (!dbus_message_is_signal (message,
560 warn_unexpected (connection, message, "NameOwnerChanged");
566 reget_service_info_data:
571 dbus_message_get_args (message, &error,
572 DBUS_TYPE_STRING, &service_name,
573 DBUS_TYPE_STRING, &old_owner,
574 DBUS_TYPE_STRING, &new_owner,
577 if (dbus_error_is_set (&error))
579 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
581 dbus_error_free (&error);
582 _dbus_wait_for_memory ();
583 goto reget_service_info_data;
587 _dbus_warn ("Did not get the expected arguments\n");
592 if ((d->expected_kind == SERVICE_CREATED && ( old_owner[0] || !new_owner[0]))
593 || (d->expected_kind == OWNER_CHANGED && (!old_owner[0] || !new_owner[0]))
594 || (d->expected_kind == SERVICE_DELETED && (!old_owner[0] || new_owner[0])))
596 _dbus_warn ("inconsistent NameOwnerChanged arguments\n");
600 if (strcmp (service_name, d->expected_service_name) != 0)
602 _dbus_warn ("expected info on service %s, got info on %s\n",
603 d->expected_service_name,
608 if (*service_name == ':' && new_owner[0]
609 && strcmp (service_name, new_owner) != 0)
611 _dbus_warn ("inconsistent ServiceOwnedChanged message (\"%s\" [ %s -> %s ])\n",
612 service_name, old_owner, new_owner);
620 dbus_error_free (&error);
623 dbus_message_unref (message);
630 kill_client_connection (BusContext *context,
631 DBusConnection *connection)
635 CheckServiceOwnerChangedData socd;
637 _dbus_verbose ("killing connection %p\n", connection);
639 s = dbus_bus_get_unique_name (connection);
640 _dbus_assert (s != NULL);
642 while ((base_service = _dbus_strdup (s)) == NULL)
643 _dbus_wait_for_memory ();
645 dbus_connection_ref (connection);
647 /* kick in the disconnect handler that unrefs the connection */
648 dbus_connection_close (connection);
650 bus_test_run_everything (context);
652 _dbus_assert (bus_test_client_listed (connection));
654 /* Run disconnect handler in test.c */
655 if (bus_connection_dispatch_one_message (connection))
656 _dbus_assert_not_reached ("something received on connection being killed other than the disconnect");
658 _dbus_assert (!dbus_connection_get_is_connected (connection));
659 dbus_connection_unref (connection);
661 _dbus_assert (!bus_test_client_listed (connection));
663 socd.expected_kind = SERVICE_DELETED;
664 socd.expected_service_name = base_service;
666 socd.skip_connection = NULL;
668 bus_test_clients_foreach (check_service_owner_changed_foreach,
671 dbus_free (base_service);
674 _dbus_assert_not_reached ("didn't get the expected NameOwnerChanged (deletion) messages");
676 if (!check_no_leftovers (context))
677 _dbus_assert_not_reached ("stuff left in message queues after disconnecting a client");
681 kill_client_connection_unchecked (DBusConnection *connection)
683 /* This kills the connection without expecting it to affect
684 * the rest of the bus.
686 _dbus_verbose ("Unchecked kill of connection %p\n", connection);
688 dbus_connection_ref (connection);
689 dbus_connection_close (connection);
690 /* dispatching disconnect handler will unref once */
691 if (bus_connection_dispatch_one_message (connection))
692 _dbus_assert_not_reached ("message other than disconnect dispatched after failure to register");
694 _dbus_assert (!bus_test_client_listed (connection));
695 dbus_connection_unref (connection);
701 } CheckNoMessagesData;
704 check_no_messages_foreach (DBusConnection *connection,
707 CheckNoMessagesData *d = data;
708 DBusMessage *message;
710 message = pop_message_waiting_for_memory (connection);
713 warn_unexpected (connection, message, "no messages");
719 dbus_message_unref (message);
724 check_no_leftovers (BusContext *context)
726 CheckNoMessagesData nmd;
729 bus_test_clients_foreach (check_no_messages_foreach,
734 _dbus_verbose ("%s: leftover message found\n",
735 _DBUS_FUNCTION_NAME);
742 /* returns TRUE if the correct thing happens,
743 * but the correct thing may include OOM errors.
746 check_hello_message (BusContext *context,
747 DBusConnection *connection)
749 DBusMessage *message;
750 DBusMessage *name_message;
751 dbus_uint32_t serial;
755 const char *acquired;
758 dbus_error_init (&error);
764 _dbus_verbose ("check_hello_message for %p\n", connection);
766 message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
774 dbus_connection_ref (connection); /* because we may get disconnected */
776 if (!dbus_connection_send (connection, message, &serial))
778 dbus_message_unref (message);
779 dbus_connection_unref (connection);
783 _dbus_assert (dbus_message_has_signature (message, ""));
785 dbus_message_unref (message);
788 if (!dbus_connection_get_is_connected (connection))
790 _dbus_verbose ("connection was disconnected (presumably auth failed)\n");
792 dbus_connection_unref (connection);
797 /* send our message */
798 bus_test_run_clients_loop (SEND_PENDING (connection));
800 if (!dbus_connection_get_is_connected (connection))
802 _dbus_verbose ("connection was disconnected (presumably auth failed)\n");
804 dbus_connection_unref (connection);
809 block_connection_until_message_from_bus (context, connection, "reply to Hello");
811 if (!dbus_connection_get_is_connected (connection))
813 _dbus_verbose ("connection was disconnected (presumably auth failed)\n");
815 dbus_connection_unref (connection);
820 dbus_connection_unref (connection);
822 message = pop_message_waiting_for_memory (connection);
825 _dbus_warn ("Did not receive a reply to %s %d on %p\n",
826 "Hello", serial, connection);
830 verbose_message_received (connection, message);
832 if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
834 _dbus_warn ("Message has wrong sender %s\n",
835 dbus_message_get_sender (message) ?
836 dbus_message_get_sender (message) : "(none)");
840 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
842 if (dbus_message_is_error (message,
843 DBUS_ERROR_NO_MEMORY))
845 ; /* good, this is a valid response */
849 warn_unexpected (connection, message, "not this error");
856 CheckServiceOwnerChangedData socd;
858 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_RETURN)
860 ; /* good, expected */
864 warn_unexpected (connection, message, "method return for Hello");
869 retry_get_hello_name:
870 if (!dbus_message_get_args (message, &error,
871 DBUS_TYPE_STRING, &name,
874 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
876 _dbus_verbose ("no memory to get service name arg from hello\n");
877 dbus_error_free (&error);
878 _dbus_wait_for_memory ();
879 goto retry_get_hello_name;
883 _dbus_assert (dbus_error_is_set (&error));
884 _dbus_warn ("Did not get the expected single string argument to hello\n");
889 _dbus_verbose ("Got hello name: %s\n", name);
891 while (!dbus_bus_set_unique_name (connection, name))
892 _dbus_wait_for_memory ();
894 socd.expected_kind = SERVICE_CREATED;
895 socd.expected_service_name = name;
897 socd.skip_connection = connection; /* we haven't done AddMatch so won't get it ourselves */
898 bus_test_clients_foreach (check_service_owner_changed_foreach,
904 name_message = message;
905 /* Client should also have gotten ServiceAcquired */
907 message = pop_message_waiting_for_memory (connection);
910 _dbus_warn ("Expecting %s, got nothing\n",
914 if (! dbus_message_is_signal (message, DBUS_INTERFACE_DBUS,
917 _dbus_warn ("Expecting %s, got smthg else\n",
922 retry_get_acquired_name:
923 if (!dbus_message_get_args (message, &error,
924 DBUS_TYPE_STRING, &acquired,
927 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
929 _dbus_verbose ("no memory to get service name arg from acquired\n");
930 dbus_error_free (&error);
931 _dbus_wait_for_memory ();
932 goto retry_get_acquired_name;
936 _dbus_assert (dbus_error_is_set (&error));
937 _dbus_warn ("Did not get the expected single string argument to ServiceAcquired\n");
942 _dbus_verbose ("Got acquired name: %s\n", acquired);
944 if (strcmp (acquired, name) != 0)
946 _dbus_warn ("Acquired name is %s but expected %s\n",
953 if (!check_no_leftovers (context))
959 _dbus_verbose ("ending %s retval = %d\n", _DBUS_FUNCTION_NAME, retval);
961 dbus_error_free (&error);
964 dbus_message_unref (message);
967 dbus_message_unref (name_message);
972 /* returns TRUE if the correct thing happens,
973 * but the correct thing may include OOM errors.
976 check_double_hello_message (BusContext *context,
977 DBusConnection *connection)
979 DBusMessage *message;
980 dbus_uint32_t serial;
985 dbus_error_init (&error);
988 _dbus_verbose ("check_double_hello_message for %p\n", connection);
990 message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
998 if (!dbus_connection_send (connection, message, &serial))
1000 dbus_message_unref (message);
1004 dbus_message_unref (message);
1007 /* send our message */
1008 bus_test_run_clients_loop (SEND_PENDING (connection));
1010 dbus_connection_ref (connection); /* because we may get disconnected */
1011 block_connection_until_message_from_bus (context, connection, "reply to Hello");
1013 if (!dbus_connection_get_is_connected (connection))
1015 _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
1017 dbus_connection_unref (connection);
1022 dbus_connection_unref (connection);
1024 message = pop_message_waiting_for_memory (connection);
1025 if (message == NULL)
1027 _dbus_warn ("Did not receive a reply to %s %d on %p\n",
1028 "Hello", serial, connection);
1032 verbose_message_received (connection, message);
1034 if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
1036 _dbus_warn ("Message has wrong sender %s\n",
1037 dbus_message_get_sender (message) ?
1038 dbus_message_get_sender (message) : "(none)");
1042 if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_ERROR)
1044 warn_unexpected (connection, message, "method return for Hello");
1048 if (!check_no_leftovers (context))
1054 dbus_error_free (&error);
1057 dbus_message_unref (message);
1062 /* returns TRUE if the correct thing happens,
1063 * but the correct thing may include OOM errors.
1066 check_get_connection_unix_user (BusContext *context,
1067 DBusConnection *connection)
1069 DBusMessage *message;
1070 dbus_uint32_t serial;
1073 const char *base_service_name;
1077 dbus_error_init (&error);
1080 _dbus_verbose ("check_get_connection_unix_user for %p\n", connection);
1082 message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
1084 DBUS_INTERFACE_DBUS,
1085 "GetConnectionUnixUser");
1087 if (message == NULL)
1090 base_service_name = dbus_bus_get_unique_name (connection);
1092 if (!dbus_message_append_args (message,
1093 DBUS_TYPE_STRING, &base_service_name,
1096 dbus_message_unref (message);
1100 if (!dbus_connection_send (connection, message, &serial))
1102 dbus_message_unref (message);
1106 /* send our message */
1107 bus_test_run_clients_loop (SEND_PENDING (connection));
1109 dbus_message_unref (message);
1112 dbus_connection_ref (connection); /* because we may get disconnected */
1113 block_connection_until_message_from_bus (context, connection, "reply to GetConnectionUnixUser");
1115 if (!dbus_connection_get_is_connected (connection))
1117 _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
1119 dbus_connection_unref (connection);
1124 dbus_connection_unref (connection);
1126 message = pop_message_waiting_for_memory (connection);
1127 if (message == NULL)
1129 _dbus_warn ("Did not receive a reply to %s %d on %p\n",
1130 "GetConnectionUnixUser", serial, connection);
1134 verbose_message_received (connection, message);
1136 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
1138 if (dbus_message_is_error (message, DBUS_ERROR_NO_MEMORY))
1140 ; /* good, this is a valid response */
1144 warn_unexpected (connection, message, "not this error");
1151 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_RETURN)
1153 ; /* good, expected */
1157 warn_unexpected (connection, message,
1158 "method_return for GetConnectionUnixUser");
1165 if (!dbus_message_get_args (message, &error,
1166 DBUS_TYPE_UINT32, &uid,
1169 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
1171 _dbus_verbose ("no memory to get uid by GetConnectionUnixUser\n");
1172 dbus_error_free (&error);
1173 _dbus_wait_for_memory ();
1174 goto retry_get_property;
1178 _dbus_assert (dbus_error_is_set (&error));
1179 _dbus_warn ("Did not get the expected DBUS_TYPE_UINT32 from GetConnectionUnixUser\n");
1185 if (!check_no_leftovers (context))
1191 dbus_error_free (&error);
1194 dbus_message_unref (message);
1199 /* returns TRUE if the correct thing happens,
1200 * but the correct thing may include OOM errors.
1203 check_get_connection_unix_process_id (BusContext *context,
1204 DBusConnection *connection)
1206 DBusMessage *message;
1207 dbus_uint32_t serial;
1210 const char *base_service_name;
1214 dbus_error_init (&error);
1217 _dbus_verbose ("check_get_connection_unix_process_id for %p\n", connection);
1219 message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
1221 DBUS_INTERFACE_DBUS,
1222 "GetConnectionUnixProcessID");
1224 if (message == NULL)
1227 base_service_name = dbus_bus_get_unique_name (connection);
1229 if (!dbus_message_append_args (message,
1230 DBUS_TYPE_STRING, &base_service_name,
1233 dbus_message_unref (message);
1237 if (!dbus_connection_send (connection, message, &serial))
1239 dbus_message_unref (message);
1243 /* send our message */
1244 bus_test_run_clients_loop (SEND_PENDING (connection));
1246 dbus_message_unref (message);
1249 dbus_connection_ref (connection); /* because we may get disconnected */
1250 block_connection_until_message_from_bus (context, connection, "reply to GetConnectionUnixProcessID");
1252 if (!dbus_connection_get_is_connected (connection))
1254 _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
1256 dbus_connection_unref (connection);
1261 dbus_connection_unref (connection);
1263 message = pop_message_waiting_for_memory (connection);
1264 if (message == NULL)
1266 _dbus_warn ("Did not receive a reply to %s %d on %p\n",
1267 "GetConnectionUnixProcessID", serial, connection);
1271 verbose_message_received (connection, message);
1273 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
1275 if (dbus_message_is_error (message, DBUS_ERROR_NO_MEMORY))
1277 ; /* good, this is a valid response */
1281 warn_unexpected (connection, message, "not this error");
1288 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_RETURN)
1290 ; /* good, expected */
1294 warn_unexpected (connection, message,
1295 "method_return for GetConnectionUnixProcessID");
1302 if (!dbus_message_get_args (message, &error,
1303 DBUS_TYPE_UINT32, &pid,
1306 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
1308 _dbus_verbose ("no memory to get pid by GetConnectionUnixProcessID\n");
1309 dbus_error_free (&error);
1310 _dbus_wait_for_memory ();
1311 goto retry_get_property;
1315 _dbus_assert (dbus_error_is_set (&error));
1316 _dbus_warn ("Did not get the expected DBUS_TYPE_UINT32 from GetConnectionUnixProcessID\n");
1321 /* test if returned pid is the same as our own pid
1323 * @todo It would probably be good to restructure the tests
1324 * in a way so our parent is the bus that we're testing
1325 * cause then we can test that the pid returned matches
1328 if (pid != (dbus_uint32_t) _dbus_getpid ())
1330 _dbus_assert (dbus_error_is_set (&error));
1331 _dbus_warn ("Result from GetConnectionUnixProcessID is not our own pid\n");
1337 if (!check_no_leftovers (context))
1343 dbus_error_free (&error);
1346 dbus_message_unref (message);
1351 /* returns TRUE if the correct thing happens,
1352 * but the correct thing may include OOM errors.
1355 check_add_match_all (BusContext *context,
1356 DBusConnection *connection)
1358 DBusMessage *message;
1360 dbus_uint32_t serial;
1362 const char *empty = "";
1365 dbus_error_init (&error);
1368 _dbus_verbose ("check_add_match_all for %p\n", connection);
1370 message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
1372 DBUS_INTERFACE_DBUS,
1375 if (message == NULL)
1378 /* empty string match rule matches everything */
1379 if (!dbus_message_append_args (message, DBUS_TYPE_STRING, &empty,
1382 dbus_message_unref (message);
1386 if (!dbus_connection_send (connection, message, &serial))
1388 dbus_message_unref (message);
1392 dbus_message_unref (message);
1395 dbus_connection_ref (connection); /* because we may get disconnected */
1397 /* send our message */
1398 bus_test_run_clients_loop (SEND_PENDING (connection));
1400 if (!dbus_connection_get_is_connected (connection))
1402 _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
1404 dbus_connection_unref (connection);
1409 block_connection_until_message_from_bus (context, connection, "reply to AddMatch");
1411 if (!dbus_connection_get_is_connected (connection))
1413 _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
1415 dbus_connection_unref (connection);
1420 dbus_connection_unref (connection);
1422 message = pop_message_waiting_for_memory (connection);
1423 if (message == NULL)
1425 _dbus_warn ("Did not receive a reply to %s %d on %p\n",
1426 "AddMatch", serial, connection);
1430 verbose_message_received (connection, message);
1432 if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
1434 _dbus_warn ("Message has wrong sender %s\n",
1435 dbus_message_get_sender (message) ?
1436 dbus_message_get_sender (message) : "(none)");
1440 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
1442 if (dbus_message_is_error (message,
1443 DBUS_ERROR_NO_MEMORY))
1445 ; /* good, this is a valid response */
1449 warn_unexpected (connection, message, "not this error");
1456 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_RETURN)
1458 ; /* good, expected */
1459 _dbus_assert (dbus_message_get_reply_serial (message) == serial);
1463 warn_unexpected (connection, message, "method return for AddMatch");
1469 if (!check_no_leftovers (context))
1475 dbus_error_free (&error);
1478 dbus_message_unref (message);
1483 /* returns TRUE if the correct thing happens,
1484 * but the correct thing may include OOM errors.
1487 check_hello_connection (BusContext *context)
1489 DBusConnection *connection;
1492 dbus_error_init (&error);
1494 connection = dbus_connection_open_private ("debug-pipe:name=test-server", &error);
1495 if (connection == NULL)
1497 _DBUS_ASSERT_ERROR_IS_SET (&error);
1498 dbus_error_free (&error);
1502 if (!bus_setup_debug_client (connection))
1504 dbus_connection_close (connection);
1505 dbus_connection_unref (connection);
1509 spin_connection_until_authenticated (context, connection);
1511 if (!check_hello_message (context, connection))
1514 if (dbus_bus_get_unique_name (connection) == NULL)
1516 /* We didn't successfully register, so we can't
1517 * do the usual kill_client_connection() checks
1519 kill_client_connection_unchecked (connection);
1523 if (!check_add_match_all (context, connection))
1526 kill_client_connection (context, connection);
1532 #define NONEXISTENT_SERVICE_NAME "test.this.service.does.not.exist.ewuoiurjdfxcvn"
1534 /* returns TRUE if the correct thing happens,
1535 * but the correct thing may include OOM errors.
1538 check_nonexistent_service_no_auto_start (BusContext *context,
1539 DBusConnection *connection)
1541 DBusMessage *message;
1542 dbus_uint32_t serial;
1544 const char *nonexistent = NONEXISTENT_SERVICE_NAME;
1545 dbus_uint32_t flags;
1547 message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
1549 DBUS_INTERFACE_DBUS,
1550 "StartServiceByName");
1552 if (message == NULL)
1555 dbus_message_set_auto_start (message, FALSE);
1558 if (!dbus_message_append_args (message,
1559 DBUS_TYPE_STRING, &nonexistent,
1560 DBUS_TYPE_UINT32, &flags,
1563 dbus_message_unref (message);
1567 if (!dbus_connection_send (connection, message, &serial))
1569 dbus_message_unref (message);
1573 dbus_message_unref (message);
1576 bus_test_run_everything (context);
1577 block_connection_until_message_from_bus (context, connection, "reply to ActivateService on nonexistent");
1578 bus_test_run_everything (context);
1580 if (!dbus_connection_get_is_connected (connection))
1582 _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
1588 message = pop_message_waiting_for_memory (connection);
1589 if (message == NULL)
1591 _dbus_warn ("Did not receive a reply to %s %d on %p\n",
1592 "StartServiceByName", serial, connection);
1596 verbose_message_received (connection, message);
1598 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
1600 if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
1602 _dbus_warn ("Message has wrong sender %s\n",
1603 dbus_message_get_sender (message) ?
1604 dbus_message_get_sender (message) : "(none)");
1608 if (dbus_message_is_error (message,
1609 DBUS_ERROR_NO_MEMORY))
1611 ; /* good, this is a valid response */
1613 else if (dbus_message_is_error (message,
1614 DBUS_ERROR_SERVICE_UNKNOWN))
1616 ; /* good, this is expected also */
1620 warn_unexpected (connection, message, "not this error");
1626 _dbus_warn ("Did not expect to successfully activate %s\n",
1627 NONEXISTENT_SERVICE_NAME);
1635 dbus_message_unref (message);
1640 /* returns TRUE if the correct thing happens,
1641 * but the correct thing may include OOM errors.
1644 check_nonexistent_service_auto_start (BusContext *context,
1645 DBusConnection *connection)
1647 DBusMessage *message;
1648 dbus_uint32_t serial;
1651 message = dbus_message_new_method_call (NONEXISTENT_SERVICE_NAME,
1652 "/org/freedesktop/TestSuite",
1653 "org.freedesktop.TestSuite",
1656 if (message == NULL)
1659 if (!dbus_connection_send (connection, message, &serial))
1661 dbus_message_unref (message);
1665 dbus_message_unref (message);
1668 bus_test_run_everything (context);
1669 block_connection_until_message_from_bus (context, connection, "reply to Echo");
1670 bus_test_run_everything (context);
1672 if (!dbus_connection_get_is_connected (connection))
1674 _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
1680 message = pop_message_waiting_for_memory (connection);
1682 if (message == NULL)
1684 _dbus_warn ("Did not receive a reply to %s %d on %p\n",
1685 "Echo message (auto activation)", serial, connection);
1689 verbose_message_received (connection, message);
1691 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
1693 if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
1695 _dbus_warn ("Message has wrong sender %s\n",
1696 dbus_message_get_sender (message) ?
1697 dbus_message_get_sender (message) : "(none)");
1701 if (dbus_message_is_error (message,
1702 DBUS_ERROR_NO_MEMORY))
1704 ; /* good, this is a valid response */
1706 else if (dbus_message_is_error (message,
1707 DBUS_ERROR_SERVICE_UNKNOWN))
1709 ; /* good, this is expected also */
1713 warn_unexpected (connection, message, "not this error");
1719 _dbus_warn ("Did not expect to successfully activate %s\n",
1720 NONEXISTENT_SERVICE_NAME);
1728 dbus_message_unref (message);
1734 check_base_service_activated (BusContext *context,
1735 DBusConnection *connection,
1736 DBusMessage *initial_message,
1737 const char **base_service_p)
1739 DBusMessage *message;
1742 const char *base_service, *base_service_from_bus, *old_owner;
1746 dbus_error_init (&error);
1747 base_service = NULL;
1749 base_service_from_bus = NULL;
1751 message = initial_message;
1752 dbus_message_ref (message);
1754 if (dbus_message_is_signal (message,
1755 DBUS_INTERFACE_DBUS,
1756 "NameOwnerChanged"))
1758 CheckServiceOwnerChangedData socd;
1760 reget_service_name_arg:
1761 base_service = NULL;
1763 base_service_from_bus = NULL;
1765 if (!dbus_message_get_args (message, &error,
1766 DBUS_TYPE_STRING, &base_service,
1767 DBUS_TYPE_STRING, &old_owner,
1768 DBUS_TYPE_STRING, &base_service_from_bus,
1771 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
1773 dbus_error_free (&error);
1774 _dbus_wait_for_memory ();
1775 goto reget_service_name_arg;
1779 _dbus_warn ("Message %s doesn't have a service name: %s\n",
1780 "NameOwnerChanged (creation)",
1786 if (*base_service != ':')
1788 _dbus_warn ("Expected base service activation, got \"%s\" instead\n",
1793 if (strcmp (base_service, base_service_from_bus) != 0)
1795 _dbus_warn ("Expected base service activation, got \"%s\" instead with owner \"%s\"\n",
1796 base_service, base_service_from_bus);
1802 _dbus_warn ("Received an old_owner argument during base service activation, \"%s\"\n",
1807 socd.expected_kind = SERVICE_CREATED;
1808 socd.expected_service_name = base_service;
1809 socd.failed = FALSE;
1810 socd.skip_connection = connection;
1811 bus_test_clients_foreach (check_service_owner_changed_foreach,
1819 warn_unexpected (connection, message, "NameOwnerChanged (creation) for base service");
1825 *base_service_p = base_service;
1831 dbus_message_unref (message);
1832 dbus_error_free (&error);
1838 check_service_activated (BusContext *context,
1839 DBusConnection *connection,
1840 const char *activated_name,
1841 const char *base_service_name,
1842 DBusMessage *initial_message)
1844 DBusMessage *message;
1847 dbus_uint32_t activation_result;
1851 dbus_error_init (&error);
1853 message = initial_message;
1854 dbus_message_ref (message);
1856 if (dbus_message_is_signal (message,
1857 DBUS_INTERFACE_DBUS,
1858 "NameOwnerChanged"))
1860 CheckServiceOwnerChangedData socd;
1861 const char *service_name, *base_service_from_bus, *old_owner;
1863 reget_service_name_arg:
1864 service_name = NULL;
1866 base_service_from_bus = NULL;
1868 if (!dbus_message_get_args (message, &error,
1869 DBUS_TYPE_STRING, &service_name,
1870 DBUS_TYPE_STRING, &old_owner,
1871 DBUS_TYPE_STRING, &base_service_from_bus,
1874 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
1876 dbus_error_free (&error);
1877 _dbus_wait_for_memory ();
1878 goto reget_service_name_arg;
1882 _dbus_warn ("Message %s doesn't have a service name: %s\n",
1883 "NameOwnerChanged (creation)",
1889 if (strcmp (service_name, activated_name) != 0)
1891 _dbus_warn ("Expected to see service %s created, saw %s instead\n",
1892 activated_name, service_name);
1896 if (strcmp (base_service_name, base_service_from_bus) != 0)
1898 _dbus_warn ("NameOwnerChanged reports wrong base service: %s owner, expected %s instead\n",
1899 base_service_from_bus, base_service_name);
1905 _dbus_warn ("expected a %s, got a %s\n",
1906 "NameOwnerChanged (creation)",
1907 "NameOwnerChanged (change)");
1911 socd.expected_kind = SERVICE_CREATED;
1912 socd.skip_connection = connection;
1913 socd.failed = FALSE;
1914 socd.expected_service_name = service_name;
1915 bus_test_clients_foreach (check_service_owner_changed_foreach,
1921 dbus_message_unref (message);
1922 service_name = NULL;
1924 base_service_from_bus = NULL;
1926 message = pop_message_waiting_for_memory (connection);
1927 if (message == NULL)
1929 _dbus_warn ("Expected a reply to %s, got nothing\n",
1930 "StartServiceByName");
1936 warn_unexpected (connection, message, "NameOwnerChanged for the activated name");
1941 if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_METHOD_RETURN)
1943 warn_unexpected (connection, message, "reply to StartServiceByName");
1948 activation_result = 0;
1949 if (!dbus_message_get_args (message, &error,
1950 DBUS_TYPE_UINT32, &activation_result,
1953 if (!dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
1955 _dbus_warn ("Did not have activation result first argument to %s: %s\n",
1956 "StartServiceByName", error.message);
1960 dbus_error_free (&error);
1964 if (activation_result == DBUS_START_REPLY_SUCCESS)
1966 else if (activation_result == DBUS_START_REPLY_ALREADY_RUNNING)
1970 _dbus_warn ("Activation result was %u, no good.\n",
1976 dbus_message_unref (message);
1979 if (!check_no_leftovers (context))
1981 _dbus_warn ("Messages were left over after verifying existent activation results\n");
1989 dbus_message_unref (message);
1990 dbus_error_free (&error);
1996 check_service_auto_activated (BusContext *context,
1997 DBusConnection *connection,
1998 const char *activated_name,
1999 const char *base_service_name,
2000 DBusMessage *initial_message)
2002 DBusMessage *message;
2008 dbus_error_init (&error);
2010 message = initial_message;
2011 dbus_message_ref (message);
2013 if (dbus_message_is_signal (message,
2014 DBUS_INTERFACE_DBUS,
2015 "NameOwnerChanged"))
2017 const char *service_name;
2018 CheckServiceOwnerChangedData socd;
2020 reget_service_name_arg:
2021 if (!dbus_message_get_args (message, &error,
2022 DBUS_TYPE_STRING, &service_name,
2025 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
2027 dbus_error_free (&error);
2028 _dbus_wait_for_memory ();
2029 goto reget_service_name_arg;
2033 _dbus_warn ("Message %s doesn't have a service name: %s\n",
2036 dbus_error_free (&error);
2041 if (strcmp (service_name, activated_name) != 0)
2043 _dbus_warn ("Expected to see service %s created, saw %s instead\n",
2044 activated_name, service_name);
2048 socd.expected_kind = SERVICE_CREATED;
2049 socd.expected_service_name = service_name;
2050 socd.failed = FALSE;
2051 socd.skip_connection = connection;
2052 bus_test_clients_foreach (check_service_owner_changed_foreach,
2058 /* Note that this differs from regular activation in that we don't get a
2059 * reply to ActivateService here.
2062 dbus_message_unref (message);
2064 service_name = NULL;
2068 warn_unexpected (connection, message, "NameOwnerChanged for the activated name");
2077 dbus_message_unref (message);
2083 check_service_deactivated (BusContext *context,
2084 DBusConnection *connection,
2085 const char *activated_name,
2086 const char *base_service)
2089 CheckServiceOwnerChangedData socd;
2093 /* Now we are expecting ServiceOwnerChanged (deletion) messages for the base
2094 * service and the activated_name. The base service
2095 * notification is required to come last.
2097 socd.expected_kind = SERVICE_DELETED;
2098 socd.expected_service_name = activated_name;
2099 socd.failed = FALSE;
2100 socd.skip_connection = NULL;
2101 bus_test_clients_foreach (check_service_owner_changed_foreach,
2107 socd.expected_kind = SERVICE_DELETED;
2108 socd.expected_service_name = base_service;
2109 socd.failed = FALSE;
2110 socd.skip_connection = NULL;
2111 bus_test_clients_foreach (check_service_owner_changed_foreach,
2124 check_send_exit_to_service (BusContext *context,
2125 DBusConnection *connection,
2126 const char *service_name,
2127 const char *base_service)
2129 dbus_bool_t got_error;
2130 DBusMessage *message;
2131 dbus_uint32_t serial;
2134 _dbus_verbose ("Sending exit message to the test service\n");
2138 /* Kill off the test service by sending it a quit message */
2139 message = dbus_message_new_method_call (service_name,
2140 "/org/freedesktop/TestSuite",
2141 "org.freedesktop.TestSuite",
2144 if (message == NULL)
2146 /* Do this again; we still need the service to exit... */
2147 if (!check_send_exit_to_service (context, connection,
2148 service_name, base_service))
2154 if (!dbus_connection_send (connection, message, &serial))
2156 dbus_message_unref (message);
2158 /* Do this again; we still need the service to exit... */
2159 if (!check_send_exit_to_service (context, connection,
2160 service_name, base_service))
2166 dbus_message_unref (message);
2170 bus_test_run_clients_loop (SEND_PENDING (connection));
2172 /* read it in and write it out to test service */
2173 bus_test_run_bus_loop (context, FALSE);
2175 /* see if we got an error during message bus dispatching */
2176 bus_test_run_clients_loop (FALSE);
2177 message = borrow_message_waiting_for_memory (connection);
2178 got_error = message != NULL && dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR;
2181 dbus_connection_return_message (connection, message);
2187 /* If no error, wait for the test service to exit */
2188 block_connection_until_message_from_bus (context, connection, "test service to exit");
2190 bus_test_run_everything (context);
2195 message = pop_message_waiting_for_memory (connection);
2196 _dbus_assert (message != NULL);
2198 if (dbus_message_get_reply_serial (message) != serial)
2200 warn_unexpected (connection, message,
2201 "error with the correct reply serial");
2205 if (!dbus_message_is_error (message,
2206 DBUS_ERROR_NO_MEMORY))
2208 warn_unexpected (connection, message,
2209 "a no memory error from asking test service to exit");
2213 _dbus_verbose ("Got error %s when asking test service to exit\n",
2214 dbus_message_get_error_name (message));
2216 /* Do this again; we still need the service to exit... */
2217 if (!check_send_exit_to_service (context, connection,
2218 service_name, base_service))
2223 if (!check_service_deactivated (context, connection,
2224 service_name, base_service))
2227 /* Should now have a NoReply error from the Exit() method
2228 * call; it should have come after all the deactivation
2231 message = pop_message_waiting_for_memory (connection);
2233 if (message == NULL)
2235 warn_unexpected (connection, NULL,
2236 "reply to Exit() method call");
2239 if (!dbus_message_is_error (message,
2240 DBUS_ERROR_NO_REPLY))
2242 warn_unexpected (connection, message,
2243 "NoReply error from Exit() method call");
2247 if (dbus_message_get_reply_serial (message) != serial)
2249 warn_unexpected (connection, message,
2250 "error with the correct reply serial");
2254 _dbus_verbose ("Got error %s after test service exited\n",
2255 dbus_message_get_error_name (message));
2257 if (!check_no_leftovers (context))
2259 _dbus_warn ("Messages were left over after %s\n",
2260 _DBUS_FUNCTION_NAME);
2269 dbus_message_unref (message);
2275 check_got_error (BusContext *context,
2276 DBusConnection *connection,
2277 const char *first_error_name,
2280 DBusMessage *message;
2283 dbus_bool_t error_found;
2284 const char *error_name;
2288 message = pop_message_waiting_for_memory (connection);
2289 if (message == NULL)
2291 _dbus_warn ("Did not get an expected error\n");
2295 if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_ERROR)
2297 warn_unexpected (connection, message, "an error");
2302 error_found = FALSE;
2304 va_start (ap, first_error_name);
2305 error_name = first_error_name;
2306 while (error_name != NULL)
2308 if (dbus_message_is_error (message, error_name))
2313 error_name = va_arg (ap, char*);
2319 _dbus_warn ("Expected error %s or other, got %s instead\n",
2321 dbus_message_get_error_name (message));
2329 dbus_message_unref (message);
2336 GOT_SERVICE_CREATED,
2337 GOT_SERVICE_DELETED,
2342 static GotServiceInfo
2343 check_got_service_info (DBusMessage *message)
2345 GotServiceInfo message_kind;
2347 if (dbus_message_is_signal (message,
2348 DBUS_INTERFACE_DBUS,
2349 "NameOwnerChanged"))
2352 const char *service_name, *old_owner, *new_owner;
2353 dbus_error_init (&error);
2355 reget_service_info_data:
2356 service_name = NULL;
2360 dbus_message_get_args (message, &error,
2361 DBUS_TYPE_STRING, &service_name,
2362 DBUS_TYPE_STRING, &old_owner,
2363 DBUS_TYPE_STRING, &new_owner,
2365 if (dbus_error_is_set (&error))
2367 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
2369 dbus_error_free (&error);
2370 goto reget_service_info_data;
2374 _dbus_warn ("unexpected arguments for NameOwnerChanged message\n");
2375 message_kind = GOT_SOMETHING_ELSE;
2378 else if (!old_owner[0])
2379 message_kind = GOT_SERVICE_CREATED;
2380 else if (!new_owner[0])
2381 message_kind = GOT_SERVICE_DELETED;
2383 message_kind = GOT_SOMETHING_ELSE;
2385 dbus_error_free (&error);
2387 else if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
2388 message_kind = GOT_ERROR;
2390 message_kind = GOT_SOMETHING_ELSE;
2392 return message_kind;
2395 #define EXISTENT_SERVICE_NAME "org.freedesktop.DBus.TestSuiteEchoService"
2397 /* returns TRUE if the correct thing happens,
2398 * but the correct thing may include OOM errors.
2401 check_existent_service_no_auto_start (BusContext *context,
2402 DBusConnection *connection)
2404 DBusMessage *message;
2405 DBusMessage *base_service_message;
2406 const char *base_service;
2407 dbus_uint32_t serial;
2409 const char *existent = EXISTENT_SERVICE_NAME;
2410 dbus_uint32_t flags;
2412 base_service_message = NULL;
2414 message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
2416 DBUS_INTERFACE_DBUS,
2417 "StartServiceByName");
2419 if (message == NULL)
2422 dbus_message_set_auto_start (message, FALSE);
2425 if (!dbus_message_append_args (message,
2426 DBUS_TYPE_STRING, &existent,
2427 DBUS_TYPE_UINT32, &flags,
2430 dbus_message_unref (message);
2434 if (!dbus_connection_send (connection, message, &serial))
2436 dbus_message_unref (message);
2440 dbus_message_unref (message);
2443 bus_test_run_everything (context);
2445 /* now wait for the message bus to hear back from the activated
2448 block_connection_until_message_from_bus (context, connection, "activated service to connect");
2450 bus_test_run_everything (context);
2452 if (!dbus_connection_get_is_connected (connection))
2454 _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
2460 message = pop_message_waiting_for_memory (connection);
2461 if (message == NULL)
2463 _dbus_warn ("Did not receive any messages after %s %d on %p\n",
2464 "StartServiceByName", serial, connection);
2468 verbose_message_received (connection, message);
2469 _dbus_verbose (" (after sending %s)\n", "StartServiceByName");
2471 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
2473 if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
2475 _dbus_warn ("Message has wrong sender %s\n",
2476 dbus_message_get_sender (message) ?
2477 dbus_message_get_sender (message) : "(none)");
2481 if (dbus_message_is_error (message,
2482 DBUS_ERROR_NO_MEMORY))
2484 ; /* good, this is a valid response */
2486 else if (dbus_message_is_error (message,
2487 DBUS_ERROR_SPAWN_CHILD_EXITED) ||
2488 dbus_message_is_error (message,
2489 DBUS_ERROR_SPAWN_CHILD_SIGNALED) ||
2490 dbus_message_is_error (message,
2491 DBUS_ERROR_SPAWN_EXEC_FAILED))
2493 ; /* good, this is expected also */
2497 _dbus_warn ("Did not expect error %s\n",
2498 dbus_message_get_error_name (message));
2504 GotServiceInfo message_kind;
2506 if (!check_base_service_activated (context, connection,
2507 message, &base_service))
2510 base_service_message = message;
2513 /* We may need to block here for the test service to exit or finish up */
2514 block_connection_until_message_from_bus (context, connection, "test service to exit or finish up");
2516 message = dbus_connection_borrow_message (connection);
2517 if (message == NULL)
2519 _dbus_warn ("Did not receive any messages after base service creation notification\n");
2523 message_kind = check_got_service_info (message);
2525 dbus_connection_return_message (connection, message);
2528 switch (message_kind)
2530 case GOT_SOMETHING_ELSE:
2531 _dbus_warn ("Unexpected message after ActivateService "
2532 "(should be an error or a service announcement");
2536 if (!check_got_error (context, connection,
2537 DBUS_ERROR_SPAWN_CHILD_EXITED,
2538 DBUS_ERROR_NO_MEMORY,
2541 /* A service deleted should be coming along now after this error.
2542 * We can also get the error *after* the service deleted.
2547 case GOT_SERVICE_DELETED:
2549 /* The service started up and got a base address, but then
2550 * failed to register under EXISTENT_SERVICE_NAME
2552 CheckServiceOwnerChangedData socd;
2554 socd.expected_kind = SERVICE_DELETED;
2555 socd.expected_service_name = base_service;
2556 socd.failed = FALSE;
2557 socd.skip_connection = NULL;
2559 bus_test_clients_foreach (check_service_owner_changed_foreach,
2565 /* Now we should get an error about the service exiting
2566 * if we didn't get it before.
2568 if (message_kind != GOT_ERROR)
2570 block_connection_until_message_from_bus (context, connection, "error about service exiting");
2572 /* and process everything again */
2573 bus_test_run_everything (context);
2575 if (!check_got_error (context, connection,
2576 DBUS_ERROR_SPAWN_CHILD_EXITED,
2577 DBUS_ERROR_NO_MEMORY,
2584 case GOT_SERVICE_CREATED:
2585 message = pop_message_waiting_for_memory (connection);
2586 if (message == NULL)
2588 _dbus_warn ("Failed to pop message we just put back! "
2589 "should have been a NameOwnerChanged (creation)\n");
2593 if (!check_service_activated (context, connection, EXISTENT_SERVICE_NAME,
2594 base_service, message))
2597 dbus_message_unref (message);
2600 if (!check_no_leftovers (context))
2602 _dbus_warn ("Messages were left over after successful activation\n");
2606 if (!check_send_exit_to_service (context, connection,
2607 EXISTENT_SERVICE_NAME, base_service))
2618 dbus_message_unref (message);
2620 if (base_service_message)
2621 dbus_message_unref (base_service_message);
2626 /* returns TRUE if the correct thing happens,
2627 * but the correct thing may include OOM errors.
2630 check_segfault_service_no_auto_start (BusContext *context,
2631 DBusConnection *connection)
2633 DBusMessage *message;
2634 dbus_uint32_t serial;
2636 const char *segv_service;
2637 dbus_uint32_t flags;
2639 message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
2641 DBUS_INTERFACE_DBUS,
2642 "StartServiceByName");
2644 if (message == NULL)
2647 dbus_message_set_auto_start (message, FALSE);
2649 segv_service = "org.freedesktop.DBus.TestSuiteSegfaultService";
2651 if (!dbus_message_append_args (message,
2652 DBUS_TYPE_STRING, &segv_service,
2653 DBUS_TYPE_UINT32, &flags,
2656 dbus_message_unref (message);
2660 if (!dbus_connection_send (connection, message, &serial))
2662 dbus_message_unref (message);
2666 dbus_message_unref (message);
2669 bus_test_run_everything (context);
2670 block_connection_until_message_from_bus (context, connection, "reply to activating segfault service");
2671 bus_test_run_everything (context);
2673 if (!dbus_connection_get_is_connected (connection))
2675 _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
2681 message = pop_message_waiting_for_memory (connection);
2682 if (message == NULL)
2684 _dbus_warn ("Did not receive a reply to %s %d on %p\n",
2685 "StartServiceByName", serial, connection);
2689 verbose_message_received (connection, message);
2691 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
2693 if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
2695 _dbus_warn ("Message has wrong sender %s\n",
2696 dbus_message_get_sender (message) ?
2697 dbus_message_get_sender (message) : "(none)");
2701 if (dbus_message_is_error (message,
2702 DBUS_ERROR_NO_MEMORY))
2704 ; /* good, this is a valid response */
2706 else if (dbus_message_is_error (message,
2707 DBUS_ERROR_SPAWN_CHILD_SIGNALED))
2709 ; /* good, this is expected also */
2713 warn_unexpected (connection, message, "not this error");
2720 _dbus_warn ("Did not expect to successfully activate segfault service\n");
2728 dbus_message_unref (message);
2734 /* returns TRUE if the correct thing happens,
2735 * but the correct thing may include OOM errors.
2738 check_segfault_service_auto_start (BusContext *context,
2739 DBusConnection *connection)
2741 DBusMessage *message;
2742 dbus_uint32_t serial;
2745 message = dbus_message_new_method_call ("org.freedesktop.DBus.TestSuiteSegfaultService",
2746 "/org/freedesktop/TestSuite",
2747 "org.freedesktop.TestSuite",
2750 if (message == NULL)
2753 if (!dbus_connection_send (connection, message, &serial))
2755 dbus_message_unref (message);
2759 dbus_message_unref (message);
2762 bus_test_run_everything (context);
2763 block_connection_until_message_from_bus (context, connection, "reply to Echo on segfault service");
2764 bus_test_run_everything (context);
2766 if (!dbus_connection_get_is_connected (connection))
2768 _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
2774 message = pop_message_waiting_for_memory (connection);
2775 if (message == NULL)
2777 _dbus_warn ("Did not receive a reply to %s %d on %p\n",
2778 "Echo message (auto activation)", serial, connection);
2782 verbose_message_received (connection, message);
2784 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
2786 if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
2788 _dbus_warn ("Message has wrong sender %s\n",
2789 dbus_message_get_sender (message) ?
2790 dbus_message_get_sender (message) : "(none)");
2794 if (dbus_message_is_error (message,
2795 DBUS_ERROR_NO_MEMORY))
2797 ; /* good, this is a valid response */
2799 else if (dbus_message_is_error (message,
2800 DBUS_ERROR_SPAWN_CHILD_SIGNALED))
2802 ; /* good, this is expected also */
2806 warn_unexpected (connection, message, "not this error");
2813 _dbus_warn ("Did not expect to successfully activate segfault service\n");
2821 dbus_message_unref (message);
2826 #define TEST_ECHO_MESSAGE "Test echo message"
2827 #define TEST_RUN_HELLO_FROM_SELF_MESSAGE "Test sending message to self"
2829 /* returns TRUE if the correct thing happens,
2830 * but the correct thing may include OOM errors.
2833 check_existent_hello_from_self (BusContext *context,
2834 DBusConnection *connection)
2836 DBusMessage *message;
2837 dbus_uint32_t serial;
2840 message = dbus_message_new_method_call (EXISTENT_SERVICE_NAME,
2841 "/org/freedesktop/TestSuite",
2842 "org.freedesktop.TestSuite",
2843 "RunHelloFromSelf");
2845 if (message == NULL)
2848 text = TEST_RUN_HELLO_FROM_SELF_MESSAGE;
2849 if (!dbus_message_append_args (message,
2850 DBUS_TYPE_STRING, &text,
2853 dbus_message_unref (message);
2857 if (!dbus_connection_send (connection, message, &serial))
2859 dbus_message_unref (message);
2863 dbus_message_unref (message);
2866 bus_test_run_everything (context);
2868 /* Note: if this test is run in OOM mode, it will block when the bus
2869 * doesn't send a reply due to OOM.
2871 block_connection_until_message_from_bus (context, connection, "reply from running hello from self");
2873 message = pop_message_waiting_for_memory (connection);
2874 if (message == NULL)
2876 _dbus_warn ("Failed to pop message! Should have been reply from RunHelloFromSelf message\n");
2880 if (dbus_message_get_reply_serial (message) != serial)
2882 _dbus_warn ("Wrong reply serial\n");
2883 dbus_message_unref (message);
2887 dbus_message_unref (message);
2893 /* returns TRUE if the correct thing happens,
2894 * but the correct thing may include OOM errors.
2897 check_existent_ping (BusContext *context,
2898 DBusConnection *connection)
2900 DBusMessage *message;
2901 dbus_uint32_t serial;
2902 message = dbus_message_new_method_call (EXISTENT_SERVICE_NAME,
2903 "/org/freedesktop/TestSuite",
2904 "org.freedesktop.DBus.Peer",
2907 if (message == NULL)
2910 if (!dbus_connection_send (connection, message, &serial))
2912 dbus_message_unref (message);
2916 dbus_message_unref (message);
2919 bus_test_run_everything (context);
2921 /* Note: if this test is run in OOM mode, it will block when the bus
2922 * doesn't send a reply due to OOM.
2924 block_connection_until_message_from_bus (context, connection, "reply from running Ping");
2926 message = pop_message_waiting_for_memory (connection);
2927 if (message == NULL)
2929 _dbus_warn ("Failed to pop message! Should have been reply from Ping message\n");
2933 if (dbus_message_get_reply_serial (message) != serial)
2935 _dbus_warn ("Wrong reply serial\n");
2936 dbus_message_unref (message);
2940 if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_METHOD_RETURN)
2942 _dbus_warn ("Unexpected message return during Ping\n");
2943 dbus_message_unref (message);
2947 dbus_message_unref (message);
2953 /* returns TRUE if the correct thing happens,
2954 * but the correct thing may include OOM errors.
2957 check_existent_get_machine_id (BusContext *context,
2958 DBusConnection *connection)
2960 DBusMessage *message;
2961 dbus_uint32_t serial;
2962 const char *machine_id;
2964 message = dbus_message_new_method_call (EXISTENT_SERVICE_NAME,
2965 "/org/freedesktop/TestSuite",
2966 "org.freedesktop.DBus.Peer",
2969 if (message == NULL)
2972 if (!dbus_connection_send (connection, message, &serial))
2974 dbus_message_unref (message);
2978 dbus_message_unref (message);
2981 bus_test_run_everything (context);
2983 /* Note: if this test is run in OOM mode, it will block when the bus
2984 * doesn't send a reply due to OOM.
2986 block_connection_until_message_from_bus (context, connection, "reply from running GetMachineId");
2988 message = pop_message_waiting_for_memory (connection);
2989 if (message == NULL)
2991 _dbus_warn ("Failed to pop message! Should have been reply from GetMachineId message\n");
2995 if (dbus_message_get_reply_serial (message) != serial)
2997 _dbus_warn ("Wrong reply serial\n");
2998 dbus_message_unref (message);
3002 if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_METHOD_RETURN)
3004 _dbus_warn ("Unexpected message return during GetMachineId\n");
3005 dbus_message_unref (message);
3010 if (!dbus_message_get_args (message, NULL, DBUS_TYPE_STRING, &machine_id, DBUS_TYPE_INVALID))
3012 _dbus_warn ("Did not get a machine ID in reply to GetMachineId\n");
3013 dbus_message_unref (message);
3017 if (machine_id == NULL || strlen (machine_id) != 32)
3019 _dbus_warn ("Machine id looks bogus: '%s'\n", machine_id ? machine_id : "null");
3020 dbus_message_unref (message);
3024 /* We can't check that the machine id is correct because during make check it is
3025 * just made up for each process separately
3028 dbus_message_unref (message);
3034 /* returns TRUE if the correct thing happens,
3035 * but the correct thing may include OOM errors.
3038 check_existent_service_auto_start (BusContext *context,
3039 DBusConnection *connection)
3041 DBusMessage *message;
3042 DBusMessage *base_service_message;
3043 dbus_uint32_t serial;
3045 const char *base_service;
3048 base_service_message = NULL;
3050 message = dbus_message_new_method_call (EXISTENT_SERVICE_NAME,
3051 "/org/freedesktop/TestSuite",
3052 "org.freedesktop.TestSuite",
3055 if (message == NULL)
3058 text = TEST_ECHO_MESSAGE;
3059 if (!dbus_message_append_args (message,
3060 DBUS_TYPE_STRING, &text,
3063 dbus_message_unref (message);
3067 if (!dbus_connection_send (connection, message, &serial))
3069 dbus_message_unref (message);
3073 dbus_message_unref (message);
3076 bus_test_run_everything (context);
3078 /* now wait for the message bus to hear back from the activated
3081 block_connection_until_message_from_bus (context, connection, "reply to Echo on existent service");
3082 bus_test_run_everything (context);
3084 if (!dbus_connection_get_is_connected (connection))
3086 _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
3092 message = pop_message_waiting_for_memory (connection);
3093 if (message == NULL)
3095 _dbus_warn ("Did not receive any messages after auto start %d on %p\n",
3096 serial, connection);
3100 verbose_message_received (connection, message);
3101 _dbus_verbose (" (after sending %s)\n", "auto start");
3103 /* we should get zero or two ServiceOwnerChanged signals */
3104 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_SIGNAL)
3106 GotServiceInfo message_kind;
3108 if (!check_base_service_activated (context, connection,
3109 message, &base_service))
3112 base_service_message = message;
3115 /* We may need to block here for the test service to exit or finish up */
3116 block_connection_until_message_from_bus (context, connection, "service to exit");
3118 /* Should get a service creation notification for the activated
3119 * service name, or a service deletion on the base service name
3121 message = dbus_connection_borrow_message (connection);
3122 if (message == NULL)
3124 _dbus_warn ("No message after auto activation "
3125 "(should be a service announcement)\n");
3126 dbus_connection_return_message (connection, message);
3131 message_kind = check_got_service_info (message);
3133 dbus_connection_return_message (connection, message);
3136 switch (message_kind)
3138 case GOT_SERVICE_CREATED:
3139 message = pop_message_waiting_for_memory (connection);
3140 if (message == NULL)
3142 _dbus_warn ("Failed to pop message we just put back! "
3143 "should have been a NameOwnerChanged (creation)\n");
3147 /* Check that ServiceOwnerChanged (creation) was correctly received */
3148 if (!check_service_auto_activated (context, connection, EXISTENT_SERVICE_NAME,
3149 base_service, message))
3152 dbus_message_unref (message);
3157 case GOT_SERVICE_DELETED:
3159 /* The service started up and got a base address, but then
3160 * failed to register under EXISTENT_SERVICE_NAME
3162 CheckServiceOwnerChangedData socd;
3164 socd.expected_kind = SERVICE_DELETED;
3165 socd.expected_service_name = base_service;
3166 socd.failed = FALSE;
3167 socd.skip_connection = NULL;
3168 bus_test_clients_foreach (check_service_owner_changed_foreach,
3178 case GOT_SOMETHING_ELSE:
3179 _dbus_warn ("Unexpected message after auto activation\n");
3184 /* OK, now we've dealt with ServiceOwnerChanged signals, now should
3185 * come the method reply (or error) from the initial method call
3188 /* Note: if this test is run in OOM mode, it will block when the bus
3189 * doesn't send a reply due to OOM.
3191 block_connection_until_message_from_bus (context, connection, "reply from echo message after auto-activation");
3193 message = pop_message_waiting_for_memory (connection);
3194 if (message == NULL)
3196 _dbus_warn ("Failed to pop message! Should have been reply from echo message\n");
3200 if (dbus_message_get_reply_serial (message) != serial)
3202 _dbus_warn ("Wrong reply serial\n");
3206 dbus_message_unref (message);
3209 if (!check_existent_ping (context, connection))
3212 if (!check_existent_get_machine_id (context, connection))
3215 if (!check_existent_hello_from_self (context, connection))
3218 if (!check_send_exit_to_service (context, connection,
3219 EXISTENT_SERVICE_NAME,
3227 dbus_message_unref (message);
3229 if (base_service_message)
3230 dbus_message_unref (base_service_message);
3235 #define SHELL_FAIL_SERVICE_NAME "org.freedesktop.DBus.TestSuiteShellEchoServiceFail"
3237 /* returns TRUE if the correct thing happens,
3238 * but the correct thing may include OOM errors.
3241 check_shell_fail_service_auto_start (BusContext *context,
3242 DBusConnection *connection)
3244 DBusMessage *message;
3245 dbus_uint32_t serial;
3248 message = dbus_message_new_method_call (SHELL_FAIL_SERVICE_NAME,
3249 "/org/freedesktop/TestSuite",
3250 "org.freedesktop.TestSuite",
3253 if (message == NULL)
3256 if (!dbus_connection_send (connection, message, &serial))
3258 dbus_message_unref (message);
3262 dbus_message_unref (message);
3265 bus_test_run_everything (context);
3266 block_connection_until_message_from_bus (context, connection, "reply to shell Echo on service which should fail to auto-start");
3267 bus_test_run_everything (context);
3269 if (!dbus_connection_get_is_connected (connection))
3271 _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
3277 message = pop_message_waiting_for_memory (connection);
3278 if (message == NULL)
3280 _dbus_warn ("Did not receive a reply to %s %d on %p\n",
3281 "Echo message (auto activation)", serial, connection);
3285 verbose_message_received (connection, message);
3287 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
3289 if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
3291 _dbus_warn ("Message has wrong sender %s\n",
3292 dbus_message_get_sender (message) ?
3293 dbus_message_get_sender (message) : "(none)");
3297 if (dbus_message_is_error (message,
3298 DBUS_ERROR_NO_MEMORY))
3300 ; /* good, this is a valid response */
3302 else if (dbus_message_is_error (message,
3303 DBUS_ERROR_INVALID_ARGS))
3305 _dbus_verbose("got invalid args\n");
3306 ; /* good, this is expected also */
3310 warn_unexpected (connection, message, "not this error");
3317 _dbus_warn ("Did not expect to successfully auto-start shell fail service\n");
3325 dbus_message_unref (message);
3330 #define SHELL_SUCCESS_SERVICE_NAME "org.freedesktop.DBus.TestSuiteShellEchoServiceSuccess"
3332 /* returns TRUE if the correct thing happens,
3333 * but the correct thing may include OOM errors.
3336 check_shell_service_success_auto_start (BusContext *context,
3337 DBusConnection *connection)
3339 DBusMessage *message;
3340 DBusMessage *base_service_message;
3341 dbus_uint32_t serial;
3343 const char *base_service;
3344 const char *argv[7] = {NULL, NULL, NULL, NULL, NULL, NULL, NULL};
3346 base_service_message = NULL;
3348 message = dbus_message_new_method_call (SHELL_SUCCESS_SERVICE_NAME,
3349 "/org/freedesktop/TestSuite",
3350 "org.freedesktop.TestSuite",
3353 if (message == NULL)
3356 if (!dbus_connection_send (connection, message, &serial))
3358 dbus_message_unref (message);
3362 dbus_message_unref (message);
3365 bus_test_run_everything (context);
3367 /* now wait for the message bus to hear back from the activated
3370 block_connection_until_message_from_bus (context, connection, "reply to Echo on shell success service");
3371 bus_test_run_everything (context);
3373 if (!dbus_connection_get_is_connected (connection))
3375 _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
3381 message = pop_message_waiting_for_memory (connection);
3382 if (message == NULL)
3384 _dbus_warn ("Did not receive any messages after auto start %d on %p\n",
3385 serial, connection);
3389 verbose_message_received (connection, message);
3390 _dbus_verbose (" (after sending %s)\n", "auto start");
3392 /* we should get zero or two ServiceOwnerChanged signals */
3393 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_SIGNAL)
3395 GotServiceInfo message_kind;
3397 if (!check_base_service_activated (context, connection,
3398 message, &base_service))
3401 base_service_message = message;
3404 /* We may need to block here for the test service to exit or finish up */
3405 block_connection_until_message_from_bus (context, connection, "service to exit");
3407 /* Should get a service creation notification for the activated
3408 * service name, or a service deletion on the base service name
3410 message = dbus_connection_borrow_message (connection);
3411 if (message == NULL)
3413 _dbus_warn ("No message after auto activation "
3414 "(should be a service announcement)\n");
3415 dbus_connection_return_message (connection, message);
3420 message_kind = check_got_service_info (message);
3422 dbus_connection_return_message (connection, message);
3425 switch (message_kind)
3427 case GOT_SERVICE_CREATED:
3428 message = pop_message_waiting_for_memory (connection);
3429 if (message == NULL)
3431 _dbus_warn ("Failed to pop message we just put back! "
3432 "should have been a NameOwnerChanged (creation)\n");
3436 /* Check that ServiceOwnerChanged (creation) was correctly received */
3437 if (!check_service_auto_activated (context, connection, SHELL_SUCCESS_SERVICE_NAME,
3438 base_service, message))
3441 dbus_message_unref (message);
3446 case GOT_SERVICE_DELETED:
3448 /* The service started up and got a base address, but then
3449 * failed to register under SHELL_SUCCESS_SERVICE_NAME
3451 CheckServiceOwnerChangedData socd;
3453 socd.expected_kind = SERVICE_DELETED;
3454 socd.expected_service_name = base_service;
3455 socd.failed = FALSE;
3456 socd.skip_connection = NULL;
3457 bus_test_clients_foreach (check_service_owner_changed_foreach,
3467 case GOT_SOMETHING_ELSE:
3468 _dbus_warn ("Unexpected message after auto activation\n");
3473 /* OK, now we've dealt with ServiceOwnerChanged signals, now should
3474 * come the method reply (or error) from the initial method call
3477 /* Note: if this test is run in OOM mode, it will block when the bus
3478 * doesn't send a reply due to OOM.
3480 block_connection_until_message_from_bus (context, connection, "reply from echo message after auto-activation");
3482 message = pop_message_waiting_for_memory (connection);
3483 if (message == NULL)
3485 _dbus_warn ("Failed to pop message! Should have been reply from echo message\n");
3489 if (dbus_message_get_reply_serial (message) != serial)
3491 _dbus_warn ("Wrong reply serial\n");
3495 if (!dbus_message_get_args (message, NULL,
3496 DBUS_TYPE_STRING, &argv[0],
3497 DBUS_TYPE_STRING, &argv[1],
3498 DBUS_TYPE_STRING, &argv[2],
3499 DBUS_TYPE_STRING, &argv[3],
3500 DBUS_TYPE_STRING, &argv[4],
3501 DBUS_TYPE_STRING, &argv[5],
3502 DBUS_TYPE_STRING, &argv[6],
3505 _dbus_warn ("Error getting arguments from return\n");
3509 /* don't worry about arg[0] as it may be different
3510 depending on the path to the tests
3512 if (strcmp("-test", argv[1]) != 0)
3514 _dbus_warn ("Unexpected argv[1] in shell success service test (expected: %s, got: %s)\n",
3519 if (strcmp("that", argv[2]) != 0)
3521 _dbus_warn ("Unexpected argv[2] in shell success service test (expected: %s, got: %s)\n",
3526 if (strcmp("we get", argv[3]) != 0)
3528 _dbus_warn ("Unexpected argv[3] in shell success service test (expected: %s, got: %s)\n",
3533 if (strcmp("back", argv[4]) != 0)
3535 _dbus_warn ("Unexpected argv[4] in shell success service test (expected: %s, got: %s)\n",
3540 if (strcmp("--what", argv[5]) != 0)
3542 _dbus_warn ("Unexpected argv[5] in shell success service test (expected: %s, got: %s)\n",
3547 if (strcmp("we put in", argv[6]) != 0)
3549 _dbus_warn ("Unexpected argv[6] in shell success service test (expected: %s, got: %s)\n",
3550 "we put in", argv[6]);
3554 dbus_message_unref (message);
3557 if (!check_send_exit_to_service (context, connection,
3558 SHELL_SUCCESS_SERVICE_NAME,
3566 dbus_message_unref (message);
3568 if (base_service_message)
3569 dbus_message_unref (base_service_message);
3577 BusContext *context;
3581 check_oom_check1_func (void *data)
3583 Check1Data *d = data;
3585 if (! (* d->func) (d->context))
3588 if (!check_no_leftovers (d->context))
3590 _dbus_warn ("Messages were left over, should be covered by test suite\n");
3598 check1_try_iterations (BusContext *context,
3599 const char *description,
3605 d.context = context;
3607 if (!_dbus_test_oom_handling (description, check_oom_check1_func,
3609 _dbus_assert_not_reached ("test failed");
3613 check_get_services (BusContext *context,
3614 DBusConnection *connection,
3619 DBusMessage *message;
3620 dbus_uint32_t serial;
3627 dbus_error_init (&error);
3630 message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
3632 DBUS_INTERFACE_DBUS,
3635 if (message == NULL)
3638 if (!dbus_connection_send (connection, message, &serial))
3640 dbus_message_unref (message);
3644 /* send our message */
3645 bus_test_run_clients_loop (SEND_PENDING (connection));
3647 dbus_message_unref (message);
3650 dbus_connection_ref (connection); /* because we may get disconnected */
3651 block_connection_until_message_from_bus (context, connection, "reply to ListActivatableNames/ListNames");
3653 if (!dbus_connection_get_is_connected (connection))
3655 _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
3657 dbus_connection_unref (connection);
3662 dbus_connection_unref (connection);
3664 message = pop_message_waiting_for_memory (connection);
3665 if (message == NULL)
3667 _dbus_warn ("Did not receive a reply to %s %d on %p\n",
3668 method, serial, connection);
3672 verbose_message_received (connection, message);
3674 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
3676 if (dbus_message_is_error (message, DBUS_ERROR_NO_MEMORY))
3678 ; /* good, this is a valid response */
3682 warn_unexpected (connection, message, "not this error");
3689 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_RETURN)
3691 ; /* good, expected */
3695 warn_unexpected (connection, message,
3696 "method_return for ListActivatableNames/ListNames");
3703 if (!dbus_message_get_args (message, &error,
3709 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
3711 _dbus_verbose ("no memory to list services by %s\n", method);
3712 dbus_error_free (&error);
3713 _dbus_wait_for_memory ();
3714 goto retry_get_property;
3718 _dbus_assert (dbus_error_is_set (&error));
3719 _dbus_warn ("Did not get the expected DBUS_TYPE_ARRAY from %s\n", method);
3728 if (!check_no_leftovers (context))
3734 dbus_error_free (&error);
3737 dbus_message_unref (message);
3742 /* returns TRUE if the correct thing happens,
3743 * but the correct thing may include OOM errors.
3746 check_list_services (BusContext *context,
3747 DBusConnection *connection)
3749 DBusMessage *message;
3750 DBusMessage *base_service_message;
3751 const char *base_service;
3752 dbus_uint32_t serial;
3754 const char *existent = EXISTENT_SERVICE_NAME;
3755 dbus_uint32_t flags;
3759 _dbus_verbose ("check_list_services for %p\n", connection);
3761 if (!check_get_services (context, connection, "ListActivatableNames", &services, &len))
3766 if (!_dbus_string_array_contains ((const char **)services, existent))
3768 _dbus_warn ("Did not get the expected %s from ListActivatableNames\n", existent);
3772 dbus_free_string_array (services);
3774 base_service_message = NULL;
3776 message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
3778 DBUS_INTERFACE_DBUS,
3779 "StartServiceByName");
3781 if (message == NULL)
3784 dbus_message_set_auto_start (message, FALSE);
3787 if (!dbus_message_append_args (message,
3788 DBUS_TYPE_STRING, &existent,
3789 DBUS_TYPE_UINT32, &flags,
3792 dbus_message_unref (message);
3796 if (!dbus_connection_send (connection, message, &serial))
3798 dbus_message_unref (message);
3802 dbus_message_unref (message);
3805 bus_test_run_everything (context);
3807 /* now wait for the message bus to hear back from the activated
3810 block_connection_until_message_from_bus (context, connection, "activated service to connect");
3812 bus_test_run_everything (context);
3814 if (!dbus_connection_get_is_connected (connection))
3816 _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
3822 message = pop_message_waiting_for_memory (connection);
3823 if (message == NULL)
3825 _dbus_warn ("Did not receive any messages after %s %d on %p\n",
3826 "StartServiceByName", serial, connection);
3830 verbose_message_received (connection, message);
3831 _dbus_verbose (" (after sending %s)\n", "StartServiceByName");
3833 if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
3835 if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
3837 _dbus_warn ("Message has wrong sender %s\n",
3838 dbus_message_get_sender (message) ?
3839 dbus_message_get_sender (message) : "(none)");
3843 if (dbus_message_is_error (message,
3844 DBUS_ERROR_NO_MEMORY))
3846 ; /* good, this is a valid response */
3848 else if (dbus_message_is_error (message,
3849 DBUS_ERROR_SPAWN_CHILD_EXITED) ||
3850 dbus_message_is_error (message,
3851 DBUS_ERROR_SPAWN_CHILD_SIGNALED) ||
3852 dbus_message_is_error (message,
3853 DBUS_ERROR_SPAWN_EXEC_FAILED))
3855 ; /* good, this is expected also */
3859 _dbus_warn ("Did not expect error %s\n",
3860 dbus_message_get_error_name (message));
3866 GotServiceInfo message_kind;
3868 if (!check_base_service_activated (context, connection,
3869 message, &base_service))
3872 base_service_message = message;
3875 /* We may need to block here for the test service to exit or finish up */
3876 block_connection_until_message_from_bus (context, connection, "test service to exit or finish up");
3878 message = dbus_connection_borrow_message (connection);
3879 if (message == NULL)
3881 _dbus_warn ("Did not receive any messages after base service creation notification\n");
3885 message_kind = check_got_service_info (message);
3887 dbus_connection_return_message (connection, message);
3890 switch (message_kind)
3892 case GOT_SOMETHING_ELSE:
3894 case GOT_SERVICE_DELETED:
3895 _dbus_warn ("Unexpected message after ActivateService "
3896 "(should be an error or a service announcement)\n");
3899 case GOT_SERVICE_CREATED:
3900 message = pop_message_waiting_for_memory (connection);
3901 if (message == NULL)
3903 _dbus_warn ("Failed to pop message we just put back! "
3904 "should have been a NameOwnerChanged (creation)\n");
3908 if (!check_service_activated (context, connection, EXISTENT_SERVICE_NAME,
3909 base_service, message))
3912 dbus_message_unref (message);
3915 if (!check_no_leftovers (context))
3917 _dbus_warn ("Messages were left over after successful activation\n");
3925 if (!check_get_services (context, connection, "ListNames", &services, &len))
3930 if (!_dbus_string_array_contains ((const char **)services, existent))
3932 _dbus_warn ("Did not get the expected %s from ListNames\n", existent);
3936 dbus_free_string_array (services);
3938 if (!check_send_exit_to_service (context, connection,
3939 EXISTENT_SERVICE_NAME, base_service))
3946 dbus_message_unref (message);
3948 if (base_service_message)
3949 dbus_message_unref (base_service_message);
3957 BusContext *context;
3958 DBusConnection *connection;
3962 check_oom_check2_func (void *data)
3964 Check2Data *d = data;
3966 if (! (* d->func) (d->context, d->connection))
3969 if (!check_no_leftovers (d->context))
3971 _dbus_warn ("Messages were left over, should be covered by test suite\n");
3979 check2_try_iterations (BusContext *context,
3980 DBusConnection *connection,
3981 const char *description,
3987 d.context = context;
3988 d.connection = connection;
3990 if (!_dbus_test_oom_handling (description, check_oom_check2_func,
3993 _dbus_warn ("%s failed during oom\n", description);
3994 _dbus_assert_not_reached ("test failed");
3999 bus_dispatch_test (const DBusString *test_data_dir)
4001 BusContext *context;
4002 DBusConnection *foo;
4003 DBusConnection *bar;
4004 DBusConnection *baz;
4007 dbus_error_init (&error);
4009 context = bus_context_new_test (test_data_dir,
4010 "valid-config-files/debug-allow-all.conf");
4011 if (context == NULL)
4013 #ifndef __SYMBIAN32__
4014 foo = dbus_connection_open_private ("debug-pipe:name=test-server", &error);
4016 foo = dbus_connection_open_private ("tcp:host=localhost,port=12436", &error);
4019 _dbus_assert_not_reached ("could not alloc connection");
4021 if (!bus_setup_debug_client (foo))
4022 _dbus_assert_not_reached ("could not set up connection");
4024 spin_connection_until_authenticated (context, foo);
4026 if (!check_hello_message (context, foo))
4027 _dbus_assert_not_reached ("hello message failed");
4029 if (!check_double_hello_message (context, foo))
4030 _dbus_assert_not_reached ("double hello message failed");
4032 if (!check_add_match_all (context, foo))
4033 _dbus_assert_not_reached ("AddMatch message failed");
4034 #ifndef __SYMBIAN32__
4035 bar = dbus_connection_open_private ("debug-pipe:name=test-server", &error);
4037 bar = dbus_connection_open_private ("tcp:host=localhost,port=12436", &error);
4040 _dbus_assert_not_reached ("could not alloc connection");
4042 if (!bus_setup_debug_client (bar))
4043 _dbus_assert_not_reached ("could not set up connection");
4045 spin_connection_until_authenticated (context, bar);
4047 if (!check_hello_message (context, bar))
4048 _dbus_assert_not_reached ("hello message failed");
4050 if (!check_add_match_all (context, bar))
4051 _dbus_assert_not_reached ("AddMatch message failed");
4052 #ifndef __SYMBIAN32__
4053 baz = dbus_connection_open_private ("debug-pipe:name=test-server", &error);
4055 baz = dbus_connection_open_private ("tcp:host=localhost,port=12436", &error);
4058 _dbus_assert_not_reached ("could not alloc connection");
4060 if (!bus_setup_debug_client (baz))
4061 _dbus_assert_not_reached ("could not set up connection");
4063 spin_connection_until_authenticated (context, baz);
4065 if (!check_hello_message (context, baz))
4066 _dbus_assert_not_reached ("hello message failed");
4068 if (!check_add_match_all (context, baz))
4069 _dbus_assert_not_reached ("AddMatch message failed");
4071 #ifndef __SYMBIAN32__
4072 if (!check_get_connection_unix_user (context, baz))
4073 _dbus_assert_not_reached ("GetConnectionUnixUser message failed");
4075 if (!check_get_connection_unix_process_id (context, baz))
4076 _dbus_assert_not_reached ("GetConnectionUnixProcessID message failed");
4079 /* Arun changes : some of the services which are not supported*/
4081 if (!check_list_services (context, baz))
4082 _dbus_assert_not_reached ("ListActivatableNames message failed");
4085 if (!check_no_leftovers (context))
4087 _dbus_warn ("Messages were left over after setting up initial connections\n");
4088 _dbus_assert_not_reached ("initial connection setup failed");
4091 check1_try_iterations (context, "create_and_hello",
4092 check_hello_connection);
4094 /*Arun changes : some of the services which are not supported*/
4096 check2_try_iterations (context, foo, "nonexistent_service_no_auto_start",
4097 check_nonexistent_service_no_auto_start);
4100 check2_try_iterations (context, foo, "segfault_service_no_auto_start",
4101 check_segfault_service_no_auto_start);
4103 // shilps check2_try_iterations (context, foo, "existent_service_no_auto_start",
4104 // check_existent_service_no_auto_start);
4106 /*Arun changes : some of the services which are not supported*/
4108 check2_try_iterations (context, foo, "nonexistent_service_auto_start",
4109 check_nonexistent_service_auto_start);
4111 check2_try_iterations (context, foo, "segfault_service_auto_start",
4112 check_segfault_service_auto_start);
4115 check2_try_iterations (context, foo, "shell_fail_service_auto_start",
4116 check_shell_fail_service_auto_start);
4119 /* Note: need to resolve some issues with the testing code in order to run
4120 * this in oom (handle that we sometimes don't get replies back from the bus
4121 * when oom happens, without blocking the test).
4123 check2_try_iterations (context, foo, "existent_service_auto_auto_start",
4124 check_existent_service_auto_start);
4126 // shilps if (!check_existent_service_auto_start (context, foo))
4127 // _dbus_assert_not_reached ("existent service auto start failed");
4131 // shilps if (!check_shell_service_success_auto_start (context, foo))
4132 // _dbus_assert_not_reached ("shell success service auto start failed");
4134 _dbus_verbose ("Disconnecting foo, bar, and baz\n");
4136 kill_client_connection_unchecked (foo);
4137 kill_client_connection_unchecked (bar);
4138 kill_client_connection_unchecked (baz);
4140 bus_context_unref (context);
4146 bus_dispatch_sha1_test (const DBusString *test_data_dir)
4148 BusContext *context;
4149 DBusConnection *foo;
4152 dbus_error_init (&error);
4154 /* Test SHA1 authentication */
4155 _dbus_verbose ("Testing SHA1 context\n");
4157 context = bus_context_new_test (test_data_dir,
4158 "valid-config-files/debug-allow-all-sha1.conf");
4159 if (context == NULL)
4161 #ifndef __SYMBIAN32__
4162 foo = dbus_connection_open_private ("debug-pipe:name=test-server", &error);
4164 foo = dbus_connection_open_private ("tcp:host=localhost,port=12435", &error);
4167 _dbus_assert_not_reached ("could not alloc connection");
4169 if (!bus_setup_debug_client (foo))
4170 _dbus_assert_not_reached ("could not set up connection");
4172 spin_connection_until_authenticated (context, foo);
4174 if (!check_hello_message (context, foo))
4175 _dbus_assert_not_reached ("hello message failed");
4177 if (!check_add_match_all (context, foo))
4178 _dbus_assert_not_reached ("addmatch message failed");
4180 if (!check_no_leftovers (context))
4182 _dbus_warn ("Messages were left over after setting up initial SHA-1 connection\n");
4183 _dbus_assert_not_reached ("initial connection setup failed");
4186 check1_try_iterations (context, "create_and_hello_sha1",
4187 check_hello_connection);
4189 kill_client_connection_unchecked (foo);
4191 bus_context_unref (context);
4196 #endif /* DBUS_BUILD_TESTS */